From 6916910a37f8742b55e5a8c1ab0d3f355bdf8297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Brychta?= Date: Thu, 14 Nov 2024 14:54:09 +0000 Subject: [PATCH 1/4] Use features vector for kNN queries #5823 --- .../scala/weco/api/search/models/index/IndexedImage.scala | 4 ++-- .../weco/api/search/elasticsearch/ImageSimilarity.scala | 4 ++-- .../weco/api/search/services/ImagesRequestBuilder.scala | 2 +- .../search/generators/AggregationDocumentGenerators.scala | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/common/search/src/main/scala/weco/api/search/models/index/IndexedImage.scala b/common/search/src/main/scala/weco/api/search/models/index/IndexedImage.scala index 300d4b86e..7cdf02241 100644 --- a/common/search/src/main/scala/weco/api/search/models/index/IndexedImage.scala +++ b/common/search/src/main/scala/weco/api/search/models/index/IndexedImage.scala @@ -3,9 +3,9 @@ package weco.api.search.models.index import io.circe.Json case class IndexedImage(display: Json, vectorValues: Json) { - lazy val reducedFeatures: Seq[Float] = + lazy val features: Seq[Float] = vectorValues.hcursor - .downField("reducedFeatures") + .downField("features") .as[Seq[Float]] .right .get diff --git a/search/src/main/scala/weco/api/search/elasticsearch/ImageSimilarity.scala b/search/src/main/scala/weco/api/search/elasticsearch/ImageSimilarity.scala index 65c4b1dc6..bfc4cb392 100644 --- a/search/src/main/scala/weco/api/search/elasticsearch/ImageSimilarity.scala +++ b/search/src/main/scala/weco/api/search/elasticsearch/ImageSimilarity.scala @@ -6,7 +6,7 @@ import io.circe.{Json, JsonObject} case object ImageSimilarity { def features: (String, IndexedImage) => JsonObject = - knnQuery("vectorValues.reducedFeatures") + knnQuery("vectorValues.features") private def knnQuery( field: String @@ -15,7 +15,7 @@ case object ImageSimilarity { .obj( "knn" -> Json.obj( "field" -> field.asJson, - "query_vector" -> image.reducedFeatures.asJson, + "query_vector" -> image.features.asJson, "k" -> 10.asJson, "num_candidates" -> 100.asJson, "filter" -> Json.obj( diff --git a/search/src/main/scala/weco/api/search/services/ImagesRequestBuilder.scala b/search/src/main/scala/weco/api/search/services/ImagesRequestBuilder.scala index 08791d9f9..276cc4e69 100644 --- a/search/src/main/scala/weco/api/search/services/ImagesRequestBuilder.scala +++ b/search/src/main/scala/weco/api/search/services/ImagesRequestBuilder.scala @@ -52,7 +52,7 @@ class ImagesRequestBuilder() sortByDate = dateOrder, sortByScore = searchOptions.searchQuery.isDefined || searchOptions.color.isDefined, - includes = Seq("display", "vectorValues.reducedFeatures"), + includes = Seq("display", "vectorValues.features"), aggs = filteredAggregationBuilder(pairables).filteredAggregations, preFilter = buildImageFilterQuery(unpairables), postFilter = Some( diff --git a/search/src/test/scala/weco/api/search/generators/AggregationDocumentGenerators.scala b/search/src/test/scala/weco/api/search/generators/AggregationDocumentGenerators.scala index b31c05540..ad6f02461 100644 --- a/search/src/test/scala/weco/api/search/generators/AggregationDocumentGenerators.scala +++ b/search/src/test/scala/weco/api/search/generators/AggregationDocumentGenerators.scala @@ -70,7 +70,7 @@ trait AggregationDocumentGenerators { "aggregatableValues" -> aggregablesJson, "filterableValues" -> filterables.asJson, "vectorValues" -> Json.obj( - "reducedFeatures" -> reducedFeaturePlaceholder.asJson + "features" -> featuresPlaceholder.asJson ) ) @@ -83,8 +83,8 @@ trait AggregationDocumentGenerators { private def toAggregable(value: String): String = s"""{"label":${value.asJson}}""" - private val reducedFeaturePlaceholder: Seq[Float] = - normalize(Seq.fill(1024)(random.nextGaussian().toFloat)) + private val featuresPlaceholder: Seq[Float] = + normalize(Seq.fill(4096)(random.nextGaussian().toFloat)) private def norm(vec: Seq[Float]): Float = math.sqrt(vec.fold(0.0f)((total, i) => total + (i * i))).toFloat From b40f7d15553b9f5fa778ada9f679e44ba83f0517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Brychta?= Date: Thu, 14 Nov 2024 17:31:02 +0000 Subject: [PATCH 2/4] Update config and test documents #5823 --- common/search/docker-compose.yml | 2 +- .../src/test/resources/ImagesIndexConfig.json | 1024 ++- .../src/test/resources/WorksIndexConfig.json | 1291 ++-- .../test_documents/image-production.1098.json | 6546 ++++++++++++---- .../test_documents/image-production.1900.json | 6548 ++++++++++++---- .../test_documents/image-production.1904.json | 6546 ++++++++++++---- .../test_documents/image-production.1976.json | 6548 ++++++++++++---- .../test_documents/image-production.2020.json | 6548 ++++++++++++---- .../test_documents/images.contributors.0.json | 6555 ++++++++++++---- .../test_documents/images.contributors.1.json | 6572 ++++++++++++---- .../test_documents/images.contributors.2.json | 6574 ++++++++++++---- .../images.different-licenses.0.json | 6543 ++++++++++++---- .../images.different-licenses.1.json | 6545 ++++++++++++---- .../images.different-licenses.2.json | 6545 ++++++++++++---- .../images.different-licenses.3.json | 6547 ++++++++++++---- .../images.different-licenses.4.json | 6547 ++++++++++++---- .../images.different-licenses.5.json | 6550 ++++++++++++---- .../images.different-licenses.6.json | 6549 ++++++++++++---- .../test_documents/images.everything.json | 6645 +++++++++++++---- .../images.examples.bread-baguette.json | 6546 ++++++++++++---- .../images.examples.bread-focaccia.json | 6548 ++++++++++++---- .../images.examples.bread-mantou.json | 6546 ++++++++++++---- .../images.examples.bread-schiacciata.json | 6548 ++++++++++++---- ...examples.color-filter-tests.blue-foot.json | 6197 ++++++++++++--- ...ages.examples.color-filter-tests.blue.json | 6167 ++++++++++++--- ...olor-filter-tests.even-less-blue-foot.json | 6244 +++++++++++++--- ...ples.color-filter-tests.even-less-red.json | 6244 +++++++++++++--- ...amples.color-filter-tests.orange-foot.json | 6241 +++++++++++++--- ...mages.examples.color-filter-tests.red.json | 6150 ++++++++++++--- ...-filter-tests.slightly-less-blue-foot.json | 6241 +++++++++++++--- ....color-filter-tests.slightly-less-red.json | 6189 ++++++++++++--- ...s.examples.contributor-filter-tests.0.json | 6561 ++++++++++++---- ...s.examples.contributor-filter-tests.1.json | 6559 ++++++++++++---- ...s.examples.contributor-filter-tests.2.json | 6544 ++++++++++++---- .../images.examples.genre-filter-tests.0.json | 6565 ++++++++++++---- .../images.examples.genre-filter-tests.1.json | 6548 ++++++++++++---- .../images.examples.genre-filter-tests.2.json | 6576 ++++++++++++---- ...ges.examples.linked-with-another-work.json | 6550 ++++++++++++---- ....examples.linked-with-the-same-work.0.json | 6550 ++++++++++++---- ....examples.linked-with-the-same-work.1.json | 6546 ++++++++++++---- ....examples.linked-with-the-same-work.2.json | 6550 ++++++++++++---- ....examples.linked-with-the-same-work.3.json | 6548 ++++++++++++---- .../test_documents/images.genres.0.json | 6552 ++++++++++++---- .../test_documents/images.genres.1.json | 6544 ++++++++++++---- .../test_documents/images.genres.2.json | 6566 ++++++++++++---- .../images.inferred-data.none.json | 231 +- .../images.inferred-data.wrong-format.json | 1034 +-- ...mages.similar-features-and-palettes.0.json | 5404 -------------- ...mages.similar-features-and-palettes.1.json | 5404 -------------- ...mages.similar-features-and-palettes.2.json | 5406 -------------- ...mages.similar-features-and-palettes.3.json | 5404 -------------- ...mages.similar-features-and-palettes.4.json | 5402 -------------- ...mages.similar-features-and-palettes.5.json | 5404 -------------- .../images.similar-features.0.json | 6251 +++++++++++++--- .../images.similar-features.1.json | 6232 +++++++++++++--- .../images.similar-features.2.json | 6238 +++++++++++++--- .../images.similar-features.3.json | 6222 ++++++++++++--- .../images.similar-features.4.json | 6227 ++++++++++++--- .../images.similar-features.5.json | 6225 ++++++++++++--- .../images.subjects.screwdrivers-1.json | 6555 ++++++++++++---- .../images.subjects.screwdrivers-2.json | 6556 ++++++++++++---- .../images.subjects.sounds.json | 6550 ++++++++++++---- .../images.subjects.squirrel,sample.json | 6567 ++++++++++++---- .../images.subjects.squirrel,screwdriver.json | 6566 ++++++++++++---- .../test_documents/work-production.1098.json | 284 +- .../test_documents/work-production.1900.json | 284 +- .../test_documents/work-production.1904.json | 284 +- .../test_documents/work-production.1976.json | 284 +- .../test_documents/work-production.2020.json | 284 +- .../test_documents/work-thumbnail.json | 293 +- .../test_documents/work-title-dodo.json | 268 +- .../test_documents/work-title-mouse.json | 268 +- .../work-with-edition-and-duration.json | 270 +- .../work.invisible.title-mouse.json | 4 +- .../work.items-with-location-types.0.json | 318 +- .../work.items-with-location-types.1.json | 345 +- .../work.items-with-location-types.2.json | 326 +- .../work.visible.everything.0.json | 844 ++- .../work.visible.everything.1.json | 805 +- .../work.visible.everything.2.json | 815 +- .../works.collection-path.NUFFINK.json | 266 +- .../works.collection-path.PPCRI.json | 266 +- .../test_documents/works.contributor.0.json | 281 +- .../test_documents/works.contributor.1.json | 281 +- .../test_documents/works.contributor.2.json | 294 +- .../test_documents/works.contributor.3.json | 294 +- .../test_documents/works.deleted.0.json | 6 +- .../test_documents/works.deleted.1.json | 6 +- .../test_documents/works.deleted.2.json | 6 +- .../test_documents/works.deleted.3.json | 6 +- .../test_documents/works.every-format.0.json | 275 +- .../test_documents/works.every-format.1.json | 273 +- .../test_documents/works.every-format.10.json | 275 +- .../test_documents/works.every-format.11.json | 275 +- .../test_documents/works.every-format.12.json | 273 +- .../test_documents/works.every-format.13.json | 275 +- .../test_documents/works.every-format.14.json | 277 +- .../test_documents/works.every-format.15.json | 275 +- .../test_documents/works.every-format.16.json | 277 +- .../test_documents/works.every-format.17.json | 277 +- .../test_documents/works.every-format.18.json | 275 +- .../test_documents/works.every-format.19.json | 275 +- .../test_documents/works.every-format.2.json | 275 +- .../test_documents/works.every-format.20.json | 277 +- .../test_documents/works.every-format.21.json | 275 +- .../test_documents/works.every-format.22.json | 277 +- .../test_documents/works.every-format.23.json | 188 + .../test_documents/works.every-format.3.json | 275 +- .../test_documents/works.every-format.4.json | 275 +- .../test_documents/works.every-format.5.json | 273 +- .../test_documents/works.every-format.6.json | 273 +- .../test_documents/works.every-format.7.json | 275 +- .../test_documents/works.every-format.8.json | 275 +- .../test_documents/works.every-format.9.json | 273 +- ...xamples.access-status-filters-tests.0.json | 336 +- ...xamples.access-status-filters-tests.1.json | 336 +- ...xamples.access-status-filters-tests.2.json | 335 +- ...xamples.access-status-filters-tests.3.json | 340 +- ...xamples.access-status-filters-tests.4.json | 340 +- ...xamples.access-status-filters-tests.5.json | 340 +- ...xamples.access-status-filters-tests.6.json | 335 +- ...ples.aggregation-with-filters-tests.0.json | 303 +- ...ples.aggregation-with-filters-tests.1.json | 299 +- ...les.aggregation-with-filters-tests.10.json | 303 +- ...les.aggregation-with-filters-tests.11.json | 303 +- ...les.aggregation-with-filters-tests.12.json | 299 +- ...les.aggregation-with-filters-tests.13.json | 303 +- ...les.aggregation-with-filters-tests.14.json | 305 +- ...les.aggregation-with-filters-tests.15.json | 303 +- ...les.aggregation-with-filters-tests.16.json | 305 +- ...les.aggregation-with-filters-tests.17.json | 305 +- ...les.aggregation-with-filters-tests.18.json | 303 +- ...les.aggregation-with-filters-tests.19.json | 303 +- ...ples.aggregation-with-filters-tests.2.json | 303 +- ...les.aggregation-with-filters-tests.20.json | 305 +- ...les.aggregation-with-filters-tests.21.json | 303 +- ...les.aggregation-with-filters-tests.22.json | 305 +- ...les.aggregation-with-filters-tests.23.json | 211 + ...ples.aggregation-with-filters-tests.3.json | 303 +- ...ples.aggregation-with-filters-tests.4.json | 303 +- ...ples.aggregation-with-filters-tests.5.json | 299 +- ...ples.aggregation-with-filters-tests.6.json | 299 +- ...ples.aggregation-with-filters-tests.7.json | 303 +- ...ples.aggregation-with-filters-tests.8.json | 303 +- ...ples.aggregation-with-filters-tests.9.json | 299 +- ...s.examples.availabilities.closed-only.json | 323 +- ...ks.examples.availabilities.everywhere.json | 437 +- ...works.examples.availabilities.nowhere.json | 266 +- ...s.examples.availabilities.online-only.json | 323 +- ...rks.examples.availabilities.open-only.json | 313 +- ....examples.contributor-filters-tests.0.json | 279 +- ....examples.contributor-filters-tests.1.json | 279 +- ....examples.contributor-filters-tests.2.json | 279 +- ....examples.contributor-filters-tests.3.json | 279 +- ....examples.contributor-filters-tests.4.json | 288 +- ....examples.contributor-filters-tests.5.json | 266 +- ...mples.different-work-types.Collection.json | 266 +- ...examples.different-work-types.Section.json | 266 +- ....examples.different-work-types.Series.json | 266 +- ...xamples.filtered-aggregations-tests.0.json | 281 +- ...xamples.filtered-aggregations-tests.1.json | 281 +- ...xamples.filtered-aggregations-tests.2.json | 281 +- ...xamples.filtered-aggregations-tests.3.json | 281 +- ...xamples.filtered-aggregations-tests.4.json | 281 +- ...xamples.filtered-aggregations-tests.5.json | 281 +- ...xamples.filtered-aggregations-tests.6.json | 281 +- ...xamples.filtered-aggregations-tests.7.json | 281 +- ...xamples.filtered-aggregations-tests.8.json | 281 +- ...xamples.filtered-aggregations-tests.9.json | 281 +- .../works.examples.genre-filters-tests.0.json | 315 +- .../works.examples.genre-filters-tests.1.json | 294 +- .../works.examples.genre-filters-tests.2.json | 294 +- .../works.examples.genre-filters-tests.3.json | 340 +- .../works.examples.genre-filters-tests.4.json | 398 +- .../works.examples.genre-filters-tests.5.json | 266 +- ...orks.examples.subject-filters-tests.0.json | 321 +- ...orks.examples.subject-filters-tests.1.json | 290 +- ...orks.examples.subject-filters-tests.2.json | 290 +- ...orks.examples.subject-filters-tests.3.json | 308 +- ...orks.examples.subject-filters-tests.4.json | 354 +- ...orks.examples.subject-filters-tests.5.json | 266 +- .../test_documents/works.formats.0.Books.json | 275 +- .../test_documents/works.formats.1.Books.json | 275 +- .../test_documents/works.formats.2.Books.json | 275 +- .../test_documents/works.formats.3.Books.json | 275 +- .../works.formats.4.Journals.json | 275 +- .../works.formats.5.Journals.json | 275 +- .../works.formats.6.Journals.json | 275 +- .../test_documents/works.formats.7.Audio.json | 275 +- .../test_documents/works.formats.8.Audio.json | 275 +- .../works.formats.9.Pictures.json | 275 +- .../test_documents/works.genres.json | 298 +- .../test_documents/works.invisible.0.json | 4 +- .../test_documents/works.invisible.1.json | 4 +- .../test_documents/works.invisible.2.json | 4 +- .../works.items-with-licenses.0.json | 302 +- .../works.items-with-licenses.1.json | 300 +- .../works.items-with-licenses.2.json | 298 +- .../works.items-with-licenses.3.json | 331 +- .../works.items-with-licenses.4.json | 266 +- .../works.items-with-other-identifiers.0.json | 329 +- .../works.items-with-other-identifiers.1.json | 329 +- .../works.items-with-other-identifiers.2.json | 331 +- .../works.items-with-other-identifiers.3.json | 331 +- .../works.items-with-other-identifiers.4.json | 329 +- .../test_documents/works.languages.0.eng.json | 272 +- .../test_documents/works.languages.1.eng.json | 272 +- .../test_documents/works.languages.2.eng.json | 272 +- .../works.languages.3.eng+swe.json | 280 +- .../works.languages.4.eng+swe+tur.json | 288 +- .../test_documents/works.languages.5.swe.json | 272 +- .../test_documents/works.languages.6.tur.json | 272 +- .../works.production.multi-year.0.json | 292 +- .../works.production.multi-year.1.json | 292 +- .../works.production.multi-year.2.json | 292 +- .../works.production.multi-year.3.json | 292 +- .../works.production.multi-year.4.json | 292 +- .../works.production.multi-year.5.json | 292 +- .../test_documents/works.redirected.0.json | 6 +- .../test_documents/works.redirected.1.json | 6 +- .../test_documents/works.subjects.0.json | 282 +- .../test_documents/works.subjects.1.json | 282 +- .../test_documents/works.subjects.2.json | 282 +- .../test_documents/works.subjects.3.json | 301 +- .../test_documents/works.subjects.4.json | 266 +- .../works.title-query-parens.json | 266 +- .../works.title-query-syntax.json | 266 +- .../test_documents/works.visible.0.json | 266 +- .../test_documents/works.visible.1.json | 266 +- .../test_documents/works.visible.2.json | 266 +- .../test_documents/works.visible.3.json | 266 +- .../test_documents/works.visible.4.json | 266 +- search/docker-compose.yml | 2 +- .../snapshot_generator/docker-compose.yml | 2 +- 234 files changed, 307071 insertions(+), 119232 deletions(-) delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.0.json delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.1.json delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.2.json delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.3.json delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.4.json delete mode 100644 common/search/src/test/resources/test_documents/images.similar-features-and-palettes.5.json create mode 100644 common/search/src/test/resources/test_documents/works.every-format.23.json create mode 100644 common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json diff --git a/common/search/docker-compose.yml b/common/search/docker-compose.yml index bad71bce3..b5d0ee9d8 100644 --- a/common/search/docker-compose.yml +++ b/common/search/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.3" services: elasticsearch: - image: "docker.elastic.co/elasticsearch/elasticsearch:8.4.0" + image: "docker.elastic.co/elasticsearch/elasticsearch:8.11.4" ports: - "9200:9200" - "9300:9300" diff --git a/common/search/src/test/resources/ImagesIndexConfig.json b/common/search/src/test/resources/ImagesIndexConfig.json index 311730f0c..cf4a3238e 100644 --- a/common/search/src/test/resources/ImagesIndexConfig.json +++ b/common/search/src/test/resources/ImagesIndexConfig.json @@ -48,45 +48,103 @@ }, "filterableValues": { "properties": { - "locations.license.id": { - "type": "keyword" - }, - "source.contributors.agent.label": { - "type": "keyword" - }, - "source.genres.label": { - "type": "keyword" - }, - "source.genres.concepts.id": { - "type": "keyword" - }, - "source.subjects.label": { - "type": "keyword" + "locations": { + "properties": { + "license": { + "properties": { + "id": { + "type": "keyword" + } + } + } + } }, - "source.production.dates.range.from": { - "type": "date" + "source": { + "properties": { + "contributors": { + "properties": { + "agent": { + "properties": { + "id": { + "type": "keyword" + }, + "label": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" + } + } + } + } + }, + "genres": { + "properties": { + "concepts": { + "properties": { + "id": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, + "label": { + "type": "keyword" + } + } + }, + "production": { + "properties": { + "dates": { + "properties": { + "range": { + "properties": { + "from": { + "type": "date" + } + } + } + } + } + } + }, + "subjects": { + "properties": { + "concepts": { + "properties": { + "id": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, + "label": { + "type": "keyword" + } + } + } + } } } }, "vectorValues": { "properties": { - "features1": { - "type": "dense_vector", - "dims": 2048 - }, - "features2": { - "type": "dense_vector", - "dims": 2048 - }, - "paletteEmbedding": { + "features": { "type": "dense_vector", - "dims": 1000, + "dims": 4096, "index": true, "similarity": "dot_product" }, - "reducedFeatures": { + "paletteEmbedding": { "type": "dense_vector", - "dims": 1024, + "dims": 1000, "index": true, "similarity": "dot_product" } @@ -195,9 +253,17 @@ } } }, - "contributors.agent.label": { - "type": "text", - "analyzer": "english" + "contributors": { + "properties": { + "agent": { + "properties": { + "label": { + "type": "text", + "analyzer": "english" + } + } + } + } }, "description": { "type": "text", @@ -253,21 +319,37 @@ "type": "text", "analyzer": "english" }, - "genres.concepts.label": { - "type": "text", - "analyzer": "english" + "genres": { + "properties": { + "concepts": { + "properties": { + "label": { + "type": "text", + "analyzer": "english" + } + } + } + } }, "id": { "type": "keyword", "normalizer": "lowercase" }, - "sourceIdentifier.value": { - "type": "keyword", - "normalizer": "lowercase" + "sourceIdentifier": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } }, - "identifiers.value": { - "type": "keyword", - "normalizer": "lowercase" + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } }, "images": { "properties": { @@ -275,9 +357,13 @@ "type": "keyword", "normalizer": "lowercase" }, - "identifiers.value": { - "type": "keyword", - "normalizer": "lowercase" + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } } } }, @@ -287,15 +373,43 @@ "type": "keyword", "normalizer": "lowercase" }, - "identifiers.value": { - "type": "keyword", - "normalizer": "lowercase" + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, + "shelfmark": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase", + "fields": { + "path": { + "type": "text", + "analyzer": "path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + }, + "dot_path": { + "type": "text", + "analyzer": "dot_path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + } + } + } + } } } }, - "languages.label": { - "type": "text", - "analyzer": "lowercase" + "languages": { + "properties": { + "label": { + "type": "text", + "analyzer": "lowercase" + } + } }, "lettering": { "type": "text", @@ -351,61 +465,208 @@ } } }, - "notes.contents": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, - "english": { - "type": "text", - "analyzer": "english" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { + "notes": { + "properties": { + "contents": { "type": "text", - "analyzer": "spanish" - }, - "swappable_characters": { + "analyzer": "lowercase", + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "english": { + "type": "text", + "analyzer": "english" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "base": { + "type": "text", + "analyzer": "base" + } + } + } + } + }, + "partOf": { + "properties": { + "title": { "type": "text", - "analyzer": "swappable_characters" - }, - "cased": { + "analyzer": "lowercase", + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "english": { + "type": "text", + "analyzer": "english" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "base": { + "type": "text", + "analyzer": "base" + } + } + } + } + }, + "physicalDescription": { + "type": "text", + "analyzer": "english" + }, + "production": { + "properties": { + "label": { "type": "text", - "analyzer": "cased" - }, - "base": { + "analyzer": "lowercase", + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "english": { + "type": "text", + "analyzer": "english" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "base": { + "type": "text", + "analyzer": "base" + } + } + } + } + }, + "referenceNumber": { + "type": "keyword", + "normalizer": "lowercase", + "fields": { + "path": { "type": "text", - "analyzer": "base" + "analyzer": "path_analyzer", + "search_analyzer": "whitespace" + } + } + }, + "subjects": { + "properties": { + "concepts": { + "properties": { + "label": { + "type": "text", + "analyzer": "english" + } + } } } }, - "partOf.title": { + "title": { "type": "text", "analyzer": "lowercase", "fields": { @@ -458,137 +719,6 @@ "analyzer": "base" } } - }, - "physicalDescription": { - "type": "text", - "analyzer": "english" - }, - "production.label": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, - "english": { - "type": "text", - "analyzer": "english" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { - "type": "text", - "analyzer": "spanish" - }, - "swappable_characters": { - "type": "text", - "analyzer": "swappable_characters" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { - "type": "text", - "analyzer": "base" - } - } - }, - "referenceNumber": { - "type": "keyword", - "normalizer": "lowercase", - "fields": { - "path": { - "type": "text", - "analyzer": "path_analyzer", - "search_analyzer": "whitespace" - } - } - }, - "subjects.concepts.label": { - "type": "text", - "analyzer": "english" - }, - "title": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, - "english": { - "type": "text", - "analyzer": "english" - }, - "english_without_shingles": { - "type": "text", - "analyzer": "english_without_shingles" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { - "type": "text", - "analyzer": "spanish" - }, - "swappable_characters": { - "type": "text", - "analyzer": "swappable_characters" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { - "type": "text", - "analyzer": "base" - } - } } } } @@ -599,56 +729,19 @@ "settings": { "index": { "analysis": { - "char_filter": { - "zero_width_spaces": { - "type": "mapping", - "mappings": ["\\u200C=>\\u0020"] - }, - "slash_remover": { + "filter": { + "pattern_replace_g_j": { + "pattern": "g", "type": "pattern_replace", - "pattern": "/", - "replacement": "" + "replacement": "j" }, - "remove_punctuation": { + "pattern_replace_j_i": { + "pattern": "j", "type": "pattern_replace", - "_name": "Removes non-letter, non-numeric, and non-whitespace characters. Respects other character sets.", - "pattern": "[^\\p{L}\\p{Nd}\\s]", - "replacement": "" - } - }, - "filter": { - "word_delimiter": { - "type": "word_delimiter_graph", - "preserve_original": "true" - }, - "asciifolding": { - "type": "asciifolding" - }, - "shingle": { - "type": "shingle", - "min_shingle_size": 2, - "max_shingle_size": 3, - "output_unigrams": true - }, - "arabic_stemmer": { - "type": "stemmer", - "language": "arabic" - }, - "bengali_stemmer": { - "type": "stemmer", - "language": "bengali" - }, - "possessive_english": { - "type": "stemmer", - "language": "possessive_english" - }, - "english_stemmer": { - "type": "stemmer", - "language": "english" + "replacement": "i" }, "french_elision": { "type": "elision", - "articles_case": true, "articles": [ "l", "m", @@ -663,19 +756,35 @@ "quoiqu", "lorsqu", "puisqu" - ] + ], + "articles_case": "true" }, - "french_stemmer": { + "pattern_replace_uu_w": { + "pattern": "uu", + "type": "pattern_replace", + "replacement": "w" + }, + "pattern_replace_vv_w": { + "pattern": "vv", + "type": "pattern_replace", + "replacement": "w" + }, + "hindi_stemmer": { "type": "stemmer", - "language": "light_french" + "language": "hindi" + }, + "pattern_replace_v_u": { + "pattern": "v", + "type": "pattern_replace", + "replacement": "u" }, "german_stemmer": { "type": "stemmer", "language": "light_german" }, - "hindi_stemmer": { + "english_stemmer": { "type": "stemmer", - "language": "hindi" + "language": "english" }, "italian_elision": { "type": "elision", @@ -702,206 +811,305 @@ "v", "d" ], - "articles_case": true + "articles_case": "true" }, - "italian_stemmer": { + "asciifolding": { + "type": "asciifolding" + }, + "possessive_english": { "type": "stemmer", - "language": "light_italian" + "language": "possessive_english" }, "spanish_stemmer": { "type": "stemmer", "language": "light_spanish" }, - "pattern_replace_vv_w": { - "type": "pattern_replace", - "pattern": "vv", - "replacement": "w" + "arabic_stemmer": { + "type": "stemmer", + "language": "arabic" }, - "pattern_replace_uu_w": { - "type": "pattern_replace", - "pattern": "uu", - "replacement": "w" + "french_stemmer": { + "type": "stemmer", + "language": "light_french" }, - "pattern_replace_v_u": { - "type": "pattern_replace", - "pattern": "v", - "replacement": "u" + "italian_stemmer": { + "type": "stemmer", + "language": "light_italian" }, - "pattern_replace_j_i": { - "type": "pattern_replace", - "pattern": "j", - "replacement": "i" + "word_delimiter": { + "type": "word_delimiter_graph", + "preserve_original": "true" }, - "pattern_replace_g_j": { - "type": "pattern_replace", - "pattern": "g", - "replacement": "j" + "bengali_stemmer": { + "type": "stemmer", + "language": "bengali" + }, + "long_query_token_limiter": { + "type": "limit", + "max_token_count": 75 + } + }, + "tokenizer": { + "dot_hierarchy": { + "type": "path_hierarchy", + "delimiter": "." } }, "analyzer": { - "arabic": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "german": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "decimal_digit", - "arabic_normalization", - "arabic_stemmer", - "shingle" - ] + "german_normalization", + "german_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "bengali": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "spanish": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "decimal_digit", - "indic_normalization", - "bengali_normalization", - "bengali_stemmer", - "shingle" - ] + "spanish_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "english": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "swappable_characters": { "filter": [ - "possessive_english", - "asciifolding", "word_delimiter", + "long_query_token_limiter", + "asciifolding", "lowercase", - "english_stemmer", - "shingle" - ] + "pattern_replace_vv_w", + "pattern_replace_uu_w", + "pattern_replace_v_u", + "pattern_replace_j_i", + "pattern_replace_g_j" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "english_without_shingles": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase": { "filter": [ - "possessive_english", "asciifolding", "word_delimiter", - "lowercase", - "english_stemmer" - ] - }, - "normalized_whole_phrase": { - "char_filter": ["remove_punctuation"], - "tokenizer": "keyword", - "filter": ["asciifolding", "lowercase"] + "lowercase" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "french": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase_token_limited": { "filter": [ - "french_elision", + "asciifolding", "word_delimiter", - "lowercase", - "french_stemmer", - "shingle" - ] + "long_query_token_limiter", + "lowercase" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "german": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "italian": { "filter": [ + "italian_elision", "word_delimiter", + "long_query_token_limiter", "lowercase", - "german_normalization", - "german_stemmer", - "shingle" - ] + "italian_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "hindi": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase_whitespace_tokens": { + "filter": [ + "lowercase" + ], + "type": "custom", + "tokenizer": "whitespace" + }, + "path_analyzer": { + "filter": [ + "asciifolding", + "lowercase" + ], + "type": "custom", + "tokenizer": "path_hierarchy" + }, + "dot_path_analyzer": { + "filter": [ + "asciifolding", + "lowercase" + ], + "type": "custom", + "tokenizer": "dot_hierarchy" + }, + "persian": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", "decimal_digit", - "indic_normalization", - "hindi_normalization", - "hindi_stemmer", - "shingle" - ] + "arabic_normalization", + "persian_normalization" + ], + "char_filter": [ + "zero_width_spaces", + "slash_remover" + ], + "tokenizer": "whitespace" }, - "italian": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "cased": { "filter": [ - "italian_elision", + "asciifolding", "word_delimiter", - "lowercase", - "italian_stemmer", - "shingle" - ] + "long_query_token_limiter" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "persian": { - "char_filter": ["zero_width_spaces", "slash_remover"], - "tokenizer": "whitespace", + "arabic": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", "decimal_digit", "arabic_normalization", - "persian_normalization", - "shingle" - ] + "arabic_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "spanish": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "bengali": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "spanish_stemmer", - "shingle" - ] - }, - "lowercase": { - "char_filter": ["slash_remover"], - "filter": ["asciifolding", "word_delimiter", "lowercase"], - "type": "custom", + "decimal_digit", + "indic_normalization", + "bengali_normalization", + "bengali_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "cased": { - "char_filter": ["slash_remover"], - "filter": ["asciifolding", "word_delimiter"], - "type": "custom", + "english": { + "filter": [ + "possessive_english", + "asciifolding", + "word_delimiter", + "lowercase", + "english_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "base": { - "char_filter": ["slash_remover"], - "filter": ["word_delimiter"], - "type": "custom", + "english_token_limited": { + "filter": [ + "possessive_english", + "asciifolding", + "word_delimiter", + "long_query_token_limiter", + "lowercase", + "english_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "path_analyzer": { - "filter": ["asciifolding", "lowercase"], - "type": "custom", - "tokenizer": "path_hierarchy" + "hindi": { + "filter": [ + "word_delimiter", + "long_query_token_limiter", + "lowercase", + "decimal_digit", + "indic_normalization", + "hindi_normalization", + "hindi_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "swappable_characters": { - "char_filter": ["slash_remover"], + "french": { "filter": [ + "french_elision", "word_delimiter", - "asciifolding", + "long_query_token_limiter", "lowercase", - "pattern_replace_vv_w", - "pattern_replace_uu_w", - "pattern_replace_v_u", - "pattern_replace_j_i", - "pattern_replace_g_j" + "french_stemmer" + ], + "char_filter": [ + "slash_remover" ], - "type": "custom", "tokenizer": "whitespace" }, - "lowercase_whitespace_tokens": { - "filter": ["lowercase"], + "base": { + "filter": [ + "word_delimiter", + "long_query_token_limiter" + ], + "char_filter": [ + "slash_remover" + ], "type": "custom", "tokenizer": "whitespace" + }, + "normalized_whole_phrase": { + "filter": [ + "asciifolding", + "lowercase" + ], + "char_filter": [ + "remove_punctuation" + ], + "tokenizer": "keyword" + } + }, + "char_filter": { + "slash_remover": { + "pattern": "/", + "type": "pattern_replace", + "replacement": "" + }, + "remove_punctuation": { + "pattern": "[^\\p{L}\\p{Nd}\\s]", + "_name": "Removes non-letter, non-numeric, and non-whitespace characters. Respects other character sets.", + "type": "pattern_replace", + "replacement": "" + }, + "zero_width_spaces": { + "type": "mapping", + "mappings": [ + "\\u200C=>\\u0020" + ] } } } diff --git a/common/search/src/test/resources/WorksIndexConfig.json b/common/search/src/test/resources/WorksIndexConfig.json index fea7d0348..fe5ad07ef 100644 --- a/common/search/src/test/resources/WorksIndexConfig.json +++ b/common/search/src/test/resources/WorksIndexConfig.json @@ -5,16 +5,16 @@ "aggregatableValues": { "properties": { "availabilities": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true }, "contributors": { "properties": { "agent": { "properties": { "label": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } } @@ -23,8 +23,8 @@ "genres": { "properties": { "label": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } }, @@ -33,91 +33,36 @@ "locations": { "properties": { "license": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } } } }, "languages": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true }, "production": { "properties": { "dates": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } }, "subjects": { "properties": { "label": { - "eager_global_ordinals": true, - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } }, "workType": { - "eager_global_ordinals": true, - "type": "keyword" - } - } - }, - "filterableValues": { - "properties": { - "format.id": { - "type": "keyword" - }, - "workType": { - "type": "keyword" - }, - "production.dates.range.from": { - "type": "date" - }, - "languages.id": { - "type": "keyword" - }, - "genres.label": { - "type": "keyword" - }, - "genres.concepts.id": { - "type": "keyword" - }, - "subjects.label": { - "type": "keyword" - }, - "contributors.agent.label": { - "type": "keyword" - }, - "identifiers.value": { - "type": "keyword" - }, - "items.locations.license.id": { - "type": "keyword" - }, - "items.locations.accessConditions.status.id": { - "type": "keyword" - }, - "items.id": { - "type": "keyword" - }, - "items.identifiers.value": { - "type": "keyword" - }, - "items.locations.locationType.id": { - "type": "keyword" - }, - "partOf.id": { - "type": "keyword" - }, - "partOf.title": { - "type": "keyword" - }, - "availabilities.id": { - "type": "keyword" + "type": "keyword", + "eager_global_ordinals": true } } }, @@ -126,6 +71,17 @@ "properties": { "indexedTime": { "type": "date" + }, + "mergeCandidates": { + "properties": { + "id": { + "properties": { + "canonicalId": { + "type": "keyword" + } + } + } + } } } }, @@ -133,49 +89,188 @@ "type": "object", "enabled": false }, - "query": { + "filterableValues": { "properties": { - "collectionPath": { + "availabilities": { + "properties": { + "id": { + "type": "keyword" + } + } + }, + "contributors": { + "properties": { + "agent": { + "properties": { + "label": { + "type": "keyword" + }, + "id": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" + } + } + } + } + }, + "format": { + "properties": { + "id": { + "type": "keyword" + } + } + }, + "genres": { "properties": { + "concepts": { + "properties": { + "id": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, "label": { - "type": "keyword", - "normalizer": "lowercase", - "fields": { - "path": { - "type": "text", - "analyzer": "path_analyzer", - "search_analyzer": "lowercase_whitespace_tokens" + "type": "keyword" + } + } + }, + "identifiers": { + "properties": { + "value": { + "type": "keyword" + } + } + }, + "items": { + "properties": { + "id": { + "type": "keyword" + }, + "identifiers": { + "properties": { + "value": { + "type": "keyword" } } }, - "path": { - "type": "keyword", - "normalizer": "lowercase", - "fields": { - "path": { - "type": "text", - "analyzer": "path_analyzer", - "search_analyzer": "lowercase_whitespace_tokens" + "locations": { + "properties": { + "accessConditions": { + "properties": { + "status": { + "properties": { + "id": { + "type": "keyword" + } + } + } + } + }, + "license": { + "properties": { + "id": { + "type": "keyword" + } + } + }, + "locationType": { + "properties": { + "id": { + "type": "keyword" + } + } + } + } + } + } + }, + "languages": { + "properties": { + "id": { + "type": "keyword" + } + } + }, + "partOf": { + "properties": { + "id": { + "type": "keyword" + }, + "title": { + "type": "keyword" + } + } + }, + "production": { + "properties": { + "dates": { + "properties": { + "range": { + "properties": { + "from": { + "type": "date" + } + } + } + } + } + } + }, + "subjects": { + "properties": { + "concepts": { + "properties": { + "id": { + "type": "keyword" + }, + "sourceIdentifier": { + "type": "keyword", + "normalizer": "lowercase" } } + }, + "label": { + "type": "keyword" } } }, + "workType": { + "type": "keyword" + } + } + }, + "query": { + "properties": { "alternativeTitles": { "type": "text", - "analyzer": "lowercase", "fields": { "arabic": { "type": "text", "analyzer": "arabic" }, + "base": { + "type": "text", + "analyzer": "base" + }, "bengali": { "type": "text", "analyzer": "bengali" }, + "cased": { + "type": "text", + "analyzer": "cased" + }, "english": { "type": "text", - "analyzer": "english" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, "french": { "type": "text", @@ -201,39 +296,76 @@ "type": "text", "analyzer": "spanish" }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { - "type": "text", - "analyzer": "base" - }, "swappable_characters": { "type": "text", "analyzer": "swappable_characters" } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" + }, + "collectionPath": { + "properties": { + "label": { + "type": "keyword", + "normalizer": "lowercase", + "fields": { + "path": { + "type": "text", + "analyzer": "path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + } + } + }, + "path": { + "type": "keyword", + "normalizer": "lowercase", + "fields": { + "path": { + "type": "text", + "analyzer": "path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + } + } + } } }, - "contributors.agent.label": { - "type": "text", - "analyzer": "english" + "contributors": { + "properties": { + "agent": { + "properties": { + "label": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + } + } + } + } }, "description": { "type": "text", - "analyzer": "lowercase", "fields": { "arabic": { "type": "text", "analyzer": "arabic" }, + "base": { + "type": "text", + "analyzer": "base" + }, "bengali": { "type": "text", "analyzer": "bengali" }, + "cased": { + "type": "text", + "analyzer": "cased" + }, "english": { "type": "text", - "analyzer": "english" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, "french": { "type": "text", @@ -258,180 +390,125 @@ "spanish": { "type": "text", "analyzer": "spanish" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { - "type": "text", - "analyzer": "base" } - } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" }, "edition": { "type": "text", - "analyzer": "english" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, - "genres.concepts.label": { - "type": "text", - "analyzer": "english" + "genres": { + "properties": { + "concepts": { + "properties": { + "label": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + } + } + } + } }, "id": { "type": "keyword", "normalizer": "lowercase" }, - "sourceIdentifier.value": { - "type": "keyword", - "normalizer": "lowercase" + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } }, - "identifiers.value": { - "type": "keyword", - "normalizer": "lowercase" - }, - "images.id": { - "type": "keyword", - "normalizer": "lowercase" - }, - "images.identifiers.value": { - "type": "text", - "analyzer": "lowercase" - }, - "items.id": { - "type": "keyword", - "normalizer": "lowercase" + "images": { + "properties": { + "id": { + "type": "keyword", + "normalizer": "lowercase" + }, + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } + } + } }, - "items.identifiers.value": { - "type": "keyword", - "normalizer": "lowercase" + "items": { + "properties": { + "id": { + "type": "keyword", + "normalizer": "lowercase" + }, + "identifiers": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, + "shelfmark": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase", + "fields": { + "path": { + "type": "text", + "analyzer": "path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + }, + "dot_path": { + "type": "text", + "analyzer": "dot_path_analyzer", + "search_analyzer": "lowercase_whitespace_tokens" + } + } + } + } + } + } }, - "languages.label": { - "type": "text", - "analyzer": "lowercase" + "languages": { + "properties": { + "label": { + "type": "text", + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" + } + } }, "lettering": { "type": "text", - "analyzer": "lowercase", "fields": { "arabic": { "type": "text", "analyzer": "arabic" }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, - "english": { - "type": "text", - "analyzer": "english" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { - "type": "text", - "analyzer": "spanish" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, "base": { "type": "text", "analyzer": "base" }, - "swappable_characters": { - "type": "text", - "analyzer": "swappable_characters" - } - } - }, - "notes.contents": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, "bengali": { "type": "text", "analyzer": "bengali" }, - "english": { - "type": "text", - "analyzer": "english" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { - "type": "text", - "analyzer": "spanish" - }, - "swappable_characters": { - "type": "text", - "analyzer": "swappable_characters" - }, "cased": { "type": "text", "analyzer": "cased" }, - "base": { - "type": "text", - "analyzer": "base" - } - } - }, - "partOf.title": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, "english": { "type": "text", - "analyzer": "english" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, "french": { "type": "text", @@ -460,72 +537,193 @@ "swappable_characters": { "type": "text", "analyzer": "swappable_characters" - }, - "cased": { + } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" + }, + "notes": { + "properties": { + "contents": { "type": "text", - "analyzer": "cased" - }, - "base": { + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "base": { + "type": "text", + "analyzer": "base" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "english": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" + } + } + }, + "partOf": { + "properties": { + "title": { "type": "text", - "analyzer": "base" + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "base": { + "type": "text", + "analyzer": "base" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "english": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" } } }, "physicalDescription": { "type": "text", - "analyzer": "english" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, - "production.label": { - "type": "text", - "analyzer": "lowercase", - "fields": { - "arabic": { - "type": "text", - "analyzer": "arabic" - }, - "bengali": { - "type": "text", - "analyzer": "bengali" - }, - "english": { - "type": "text", - "analyzer": "english" - }, - "french": { - "type": "text", - "analyzer": "french" - }, - "german": { - "type": "text", - "analyzer": "german" - }, - "hindi": { - "type": "text", - "analyzer": "hindi" - }, - "italian": { - "type": "text", - "analyzer": "italian" - }, - "persian": { - "type": "text", - "analyzer": "persian" - }, - "spanish": { - "type": "text", - "analyzer": "spanish" - }, - "swappable_characters": { - "type": "text", - "analyzer": "swappable_characters" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { + "production": { + "properties": { + "label": { "type": "text", - "analyzer": "base" + "fields": { + "arabic": { + "type": "text", + "analyzer": "arabic" + }, + "base": { + "type": "text", + "analyzer": "base" + }, + "bengali": { + "type": "text", + "analyzer": "bengali" + }, + "cased": { + "type": "text", + "analyzer": "cased" + }, + "english": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + }, + "french": { + "type": "text", + "analyzer": "french" + }, + "german": { + "type": "text", + "analyzer": "german" + }, + "hindi": { + "type": "text", + "analyzer": "hindi" + }, + "italian": { + "type": "text", + "analyzer": "italian" + }, + "persian": { + "type": "text", + "analyzer": "persian" + }, + "spanish": { + "type": "text", + "analyzer": "spanish" + }, + "swappable_characters": { + "type": "text", + "analyzer": "swappable_characters" + } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" } } }, @@ -540,29 +738,50 @@ } } }, - "subjects.concepts.label": { - "type": "text", - "analyzer": "english" + "sourceIdentifier": { + "properties": { + "value": { + "type": "keyword", + "normalizer": "lowercase" + } + } + }, + "subjects": { + "properties": { + "concepts": { + "properties": { + "label": { + "type": "text", + "analyzer": "english", + "search_analyzer": "english_token_limited" + } + } + } + } }, "title": { "type": "text", - "analyzer": "lowercase", "fields": { "arabic": { "type": "text", "analyzer": "arabic" }, + "base": { + "type": "text", + "analyzer": "base" + }, "bengali": { "type": "text", "analyzer": "bengali" }, - "english": { + "cased": { "type": "text", - "analyzer": "english" + "analyzer": "cased" }, - "english_without_shingles": { + "english": { "type": "text", - "analyzer": "english_without_shingles" + "analyzer": "english", + "search_analyzer": "english_token_limited" }, "french": { "type": "text", @@ -580,6 +799,10 @@ "type": "text", "analyzer": "italian" }, + "normalized_whole_phrase": { + "type": "text", + "analyzer": "normalized_whole_phrase" + }, "persian": { "type": "text", "analyzer": "persian" @@ -591,20 +814,10 @@ "swappable_characters": { "type": "text", "analyzer": "swappable_characters" - }, - "cased": { - "type": "text", - "analyzer": "cased" - }, - "base": { - "type": "text", - "analyzer": "base" - }, - "normalized_whole_phrase": { - "type": "text", - "analyzer": "normalized_whole_phrase" } - } + }, + "analyzer": "lowercase", + "search_analyzer": "lowercase_token_limited" } } }, @@ -620,56 +833,19 @@ "settings": { "index": { "analysis": { - "char_filter": { - "zero_width_spaces": { - "type": "mapping", - "mappings": ["\\u200C=>\\u0020"] - }, - "slash_remover": { + "filter": { + "pattern_replace_g_j": { + "pattern": "g", "type": "pattern_replace", - "pattern": "/", - "replacement": "" + "replacement": "j" }, - "remove_punctuation": { + "pattern_replace_j_i": { + "pattern": "j", "type": "pattern_replace", - "_name": "Removes non-letter, non-numeric, and non-whitespace characters. Respects other character sets.", - "pattern": "[^\\p{L}\\p{Nd}\\s]", - "replacement": "" - } - }, - "filter": { - "word_delimiter": { - "type": "word_delimiter_graph", - "preserve_original": "true" - }, - "asciifolding": { - "type": "asciifolding" - }, - "shingle": { - "type": "shingle", - "min_shingle_size": 2, - "max_shingle_size": 3, - "output_unigrams": true - }, - "arabic_stemmer": { - "type": "stemmer", - "language": "arabic" - }, - "bengali_stemmer": { - "type": "stemmer", - "language": "bengali" - }, - "possessive_english": { - "type": "stemmer", - "language": "possessive_english" - }, - "english_stemmer": { - "type": "stemmer", - "language": "english" + "replacement": "i" }, "french_elision": { "type": "elision", - "articles_case": true, "articles": [ "l", "m", @@ -684,19 +860,35 @@ "quoiqu", "lorsqu", "puisqu" - ] + ], + "articles_case": "true" + }, + "pattern_replace_uu_w": { + "pattern": "uu", + "type": "pattern_replace", + "replacement": "w" }, - "french_stemmer": { + "pattern_replace_vv_w": { + "pattern": "vv", + "type": "pattern_replace", + "replacement": "w" + }, + "hindi_stemmer": { "type": "stemmer", - "language": "light_french" + "language": "hindi" + }, + "pattern_replace_v_u": { + "pattern": "v", + "type": "pattern_replace", + "replacement": "u" }, "german_stemmer": { "type": "stemmer", "language": "light_german" }, - "hindi_stemmer": { + "english_stemmer": { "type": "stemmer", - "language": "hindi" + "language": "english" }, "italian_elision": { "type": "elision", @@ -723,206 +915,305 @@ "v", "d" ], - "articles_case": true + "articles_case": "true" }, - "italian_stemmer": { + "asciifolding": { + "type": "asciifolding" + }, + "possessive_english": { "type": "stemmer", - "language": "light_italian" + "language": "possessive_english" }, "spanish_stemmer": { "type": "stemmer", "language": "light_spanish" }, - "pattern_replace_vv_w": { - "type": "pattern_replace", - "pattern": "vv", - "replacement": "w" + "arabic_stemmer": { + "type": "stemmer", + "language": "arabic" }, - "pattern_replace_uu_w": { - "type": "pattern_replace", - "pattern": "uu", - "replacement": "w" + "french_stemmer": { + "type": "stemmer", + "language": "light_french" }, - "pattern_replace_v_u": { - "type": "pattern_replace", - "pattern": "v", - "replacement": "u" + "italian_stemmer": { + "type": "stemmer", + "language": "light_italian" }, - "pattern_replace_j_i": { - "type": "pattern_replace", - "pattern": "j", - "replacement": "i" + "word_delimiter": { + "type": "word_delimiter_graph", + "preserve_original": "true" }, - "pattern_replace_g_j": { - "type": "pattern_replace", - "pattern": "g", - "replacement": "j" + "bengali_stemmer": { + "type": "stemmer", + "language": "bengali" + }, + "long_query_token_limiter": { + "type": "limit", + "max_token_count": 75 + } + }, + "tokenizer": { + "dot_hierarchy": { + "type": "path_hierarchy", + "delimiter": "." } }, "analyzer": { - "arabic": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "german": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "decimal_digit", - "arabic_normalization", - "arabic_stemmer", - "shingle" - ] + "german_normalization", + "german_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "bengali": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "spanish": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "decimal_digit", - "indic_normalization", - "bengali_normalization", - "bengali_stemmer", - "shingle" - ] + "spanish_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "english": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "swappable_characters": { "filter": [ - "possessive_english", - "asciifolding", "word_delimiter", + "long_query_token_limiter", + "asciifolding", "lowercase", - "english_stemmer", - "shingle" - ] + "pattern_replace_vv_w", + "pattern_replace_uu_w", + "pattern_replace_v_u", + "pattern_replace_j_i", + "pattern_replace_g_j" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "english_without_shingles": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase": { "filter": [ - "possessive_english", "asciifolding", "word_delimiter", - "lowercase", - "english_stemmer" - ] - }, - "normalized_whole_phrase": { - "char_filter": ["remove_punctuation"], - "tokenizer": "keyword", - "filter": ["asciifolding", "lowercase"] + "lowercase" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "french": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase_token_limited": { "filter": [ - "french_elision", + "asciifolding", "word_delimiter", - "lowercase", - "french_stemmer", - "shingle" - ] + "long_query_token_limiter", + "lowercase" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "german": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "italian": { "filter": [ + "italian_elision", "word_delimiter", + "long_query_token_limiter", "lowercase", - "german_normalization", - "german_stemmer", - "shingle" - ] + "italian_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "hindi": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "lowercase_whitespace_tokens": { + "filter": [ + "lowercase" + ], + "type": "custom", + "tokenizer": "whitespace" + }, + "path_analyzer": { + "filter": [ + "asciifolding", + "lowercase" + ], + "type": "custom", + "tokenizer": "path_hierarchy" + }, + "dot_path_analyzer": { + "filter": [ + "asciifolding", + "lowercase" + ], + "type": "custom", + "tokenizer": "dot_hierarchy" + }, + "persian": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", "decimal_digit", - "indic_normalization", - "hindi_normalization", - "hindi_stemmer", - "shingle" - ] + "arabic_normalization", + "persian_normalization" + ], + "char_filter": [ + "zero_width_spaces", + "slash_remover" + ], + "tokenizer": "whitespace" }, - "italian": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "cased": { "filter": [ - "italian_elision", + "asciifolding", "word_delimiter", - "lowercase", - "italian_stemmer", - "shingle" - ] + "long_query_token_limiter" + ], + "char_filter": [ + "slash_remover" + ], + "type": "custom", + "tokenizer": "whitespace" }, - "persian": { - "char_filter": ["zero_width_spaces", "slash_remover"], - "tokenizer": "whitespace", + "arabic": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", "decimal_digit", "arabic_normalization", - "persian_normalization", - "shingle" - ] + "arabic_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "spanish": { - "char_filter": ["slash_remover"], - "tokenizer": "whitespace", + "bengali": { "filter": [ "word_delimiter", + "long_query_token_limiter", "lowercase", - "spanish_stemmer", - "shingle" - ] - }, - "lowercase": { - "char_filter": ["slash_remover"], - "filter": ["asciifolding", "word_delimiter", "lowercase"], - "type": "custom", + "decimal_digit", + "indic_normalization", + "bengali_normalization", + "bengali_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "cased": { - "char_filter": ["slash_remover"], - "filter": ["asciifolding", "word_delimiter"], - "type": "custom", + "english": { + "filter": [ + "possessive_english", + "asciifolding", + "word_delimiter", + "lowercase", + "english_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "base": { - "char_filter": ["slash_remover"], - "filter": ["word_delimiter"], - "type": "custom", + "english_token_limited": { + "filter": [ + "possessive_english", + "asciifolding", + "word_delimiter", + "long_query_token_limiter", + "lowercase", + "english_stemmer" + ], + "char_filter": [ + "slash_remover" + ], "tokenizer": "whitespace" }, - "path_analyzer": { - "filter": ["asciifolding", "lowercase"], - "type": "custom", - "tokenizer": "path_hierarchy" + "hindi": { + "filter": [ + "word_delimiter", + "long_query_token_limiter", + "lowercase", + "decimal_digit", + "indic_normalization", + "hindi_normalization", + "hindi_stemmer" + ], + "char_filter": [ + "slash_remover" + ], + "tokenizer": "whitespace" }, - "swappable_characters": { - "char_filter": ["slash_remover"], + "french": { "filter": [ + "french_elision", "word_delimiter", - "asciifolding", + "long_query_token_limiter", "lowercase", - "pattern_replace_vv_w", - "pattern_replace_uu_w", - "pattern_replace_v_u", - "pattern_replace_j_i", - "pattern_replace_g_j" + "french_stemmer" + ], + "char_filter": [ + "slash_remover" ], - "type": "custom", "tokenizer": "whitespace" }, - "lowercase_whitespace_tokens": { - "filter": ["lowercase"], + "base": { + "filter": [ + "word_delimiter", + "long_query_token_limiter" + ], + "char_filter": [ + "slash_remover" + ], "type": "custom", "tokenizer": "whitespace" + }, + "normalized_whole_phrase": { + "filter": [ + "asciifolding", + "lowercase" + ], + "char_filter": [ + "remove_punctuation" + ], + "tokenizer": "keyword" + } + }, + "char_filter": { + "slash_remover": { + "pattern": "/", + "type": "pattern_replace", + "replacement": "" + }, + "remove_punctuation": { + "pattern": "[^\\p{L}\\p{Nd}\\s]", + "_name": "Removes non-letter, non-numeric, and non-whitespace characters. Respects other character sets.", + "type": "pattern_replace", + "replacement": "" + }, + "zero_width_spaces": { + "type": "mapping", + "mappings": [ + "\\u200C=>\\u0020" + ] } } } diff --git a/common/search/src/test/resources/test_documents/image-production.1098.json b/common/search/src/test/resources/test_documents/image-production.1098.json index edbb88086..6152f0baf 100644 --- a/common/search/src/test/resources/test_documents/image-production.1098.json +++ b/common/search/src/test/resources/test_documents/image-production.1098.json @@ -1,1337 +1,5251 @@ { - "description": "an image with a production event in 1098", - "createdAt": "2023-11-21T14:25:44.352679Z", - "id": "rcwca9kx", - "document": { - "modifiedTime": "2021-05-29T16:02:15Z", - "display": { - "id": "rcwca9kx", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with a production event in 1098", + "createdAt" : "2024-11-14T14:37:56.596538Z", + "id" : "zim2up41", + "document" : { + "modifiedTime" : "2019-11-11T12:04:49Z", + "display" : { + "id" : "zim2up41", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/mve.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", + "linkText" : "Link text: Hl1nIcW", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/mve.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", + "linkText" : "Link text: Hl1nIcW", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#976732", - "source": { - "id": "xnvqzfdu", - "title": "Production event in 1098", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#8CC4A4", + "source" : { + "id" : "wqba6mvb", + "title" : "Production event in 1098", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "rcwca9kx", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xnvqzfdu", - "sourceIdentifier.value": "smkPZAWfwp", - "identifiers.value": ["smkPZAWfwp"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1098"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1098" + "query" : { + "id" : "zim2up41", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "wqba6mvb", + "sourceIdentifier.value" : "owgRJhdOqe", + "identifiers.value" : [ + "owgRJhdOqe" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1098" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1098" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [-27517622400000] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.015389621, -0.006893993, 0.027681857, -5.0940464e-4, 0.008137572, - 0.0044692853, -0.0024250597, -0.010597113, 6.2593416e-4, -0.026002243, - 0.0072320853, 0.009112138, -0.0031318886, -0.016682396, -0.014529821, - -0.015785895, -0.0022593173, 0.0076148566, -0.022055522, -0.017030915, - 0.014088417, 0.026192382, 0.017481832, -0.0025477356, 0.006788976, - -0.029088408, 0.023448113, 0.012057206, -5.7818537e-4, -0.03135451, - -0.0040010544, 0.0077773514, 0.014915755, -9.447141e-4, -0.009219859, - 0.009444581, -0.03510034, 0.012099661, -0.006518467, -0.007518085, - 0.015097561, 0.0047081714, -0.0075371824, -0.006485945, -0.020075716, - -0.009527758, 8.721197e-4, 0.008027045, -0.011366043, 6.0828525e-4, - 2.0114466e-4, 0.020104835, -0.004498138, 0.022256056, -0.003162827, - -0.008769095, -0.025328502, 0.01338632, 0.03144069, -0.012870673, - 0.01399841, -0.009532449, -0.016211914, 0.01225059, 0.005518127, - 0.011288201, 0.015791329, -0.014294455, -0.011242704, -0.011740774, - -0.01403173, -0.02579678, 0.0037197953, -0.00783758, -0.015015808, - -0.0015932095, -0.049036797, 0.008779597, -0.0073009534, -0.0072955107, - 0.014952768, 0.015907072, 0.009913435, -0.0063315155, -0.0069808047, - -0.010888246, 0.012367373, 0.022003002, 0.013858936, -0.012833399, - -0.0054926593, 0.0014473896, -0.006280219, -0.012923872, -0.002094191, - -0.005702038, -0.0079099685, 0.0063333125, -0.025231667, 0.025018258, - 0.0055890335, 0.010086619, 0.012732322, 0.009880469, 0.011901813, - 0.012090307, 0.034739148, -0.020587476, 6.6675816e-4, -0.014532796, - -0.001072149, -0.006837997, 0.00711836, 0.013874871, -0.020156108, - 0.0089029055, 0.024008052, 0.024876952, 0.008526992, -0.01994679, - -0.00663029, 0.02381439, -0.0123247, -0.0071740374, 0.025280127, - -0.03408379, -0.0028352754, 0.00751906, 0.01600814, 0.028702043, - 0.008897871, 0.0025219151, -0.008390447, -0.030484062, -0.008125094, - -0.0056951083, -0.028240819, 0.026569564, 0.007245108, 0.03555202, - -0.018597292, -0.011267749, -0.006408825, -0.010809766, -0.0063871983, - -0.010083119, -4.042383e-4, -0.007171359, 0.016592206, 0.0013464522, - -0.01459635, -0.0011865487, 0.029941596, 0.016198434, -0.02232467, - -0.0032309606, 0.023134138, 0.015240831, -0.011469334, 0.015038625, - 0.013301145, 0.0017923698, -0.0070603513, 6.582262e-4, 0.022897469, - 0.0067768553, 0.019895406, -0.0038473918, -0.04139887, -0.01791811, - -0.01805359, 0.017077014, -0.019563751, -0.011956865, -0.005213789, - 0.0044501787, -0.018417096, 0.014566451, -0.031581033, -0.008676665, - 0.0016456003, -0.0026044913, -0.007494967, 0.0010965515, 0.01308035, - 0.011460389, -0.001870373, 0.0036492653, -0.025626594, -0.021705138, - -0.021686938, -0.027382536, -0.010044403, 0.008880047, -0.02812958, - 0.012681955, -0.020026276, -0.0065281, -0.016642522, 0.016652772, - -0.007965352, 0.006848083, -0.0049260575, -0.018444667, -2.280694e-4, - 0.007161803, 0.02954922, 0.012553586, 0.013080925, 0.010368021, - -0.022534007, 0.008643665, -0.0067972094, -0.024179215, -0.006971041, - -0.007922917, 0.01621162, 0.030677479, -0.0042451895, -0.0036548253, - 5.6287897e-4, -0.0014305527, 0.017095441, -0.014993111, 0.012566667, - 1.5232823e-4, 0.016576177, 0.019091915, -0.0052654464, -0.003998901, - 0.0042056465, -0.0030347626, -0.008357751, -0.011311838, -0.003979304, - 0.0082192095, -0.0029609967, 0.008703045, -0.018260622, 0.0035370593, - -0.0032665837, 0.02881167, -8.5208117e-4, -0.01172441, -0.017373826, - -0.0059269327, -0.015684733, 0.012104686, -0.003572061, -0.015929347, - -0.003064115, -0.0012543587, -0.012630254, 0.0028408687, -0.0019452302, - 0.009847451, 0.0236372, 0.03043746, 0.014870626, 0.0026383703, - 0.0037780085, 0.003722479, 0.01446031, 0.019771308, -0.0018679083, - 0.023922473, 0.004606484, -0.008411839, -0.020406442, -0.0201325, - 0.02740884, -0.017506005, 0.0012069731, 0.012476117, -0.04259925, - -0.015195911, -0.04170994, 0.008693474, -0.0016454391, -0.025219232, - -0.005888211, -0.01143505, -5.397637e-4, -0.008257836, -0.0011642092, - 0.0114803715, 0.013428074, 0.015400508, -0.03146768, -0.021176497, - -0.023150384, 0.009668836, -0.013535843, 0.005270147, 0.015115105, - -0.022099579, 0.010666165, -0.008494464, 0.009511633, 0.015620059, - 2.2810149e-4, -0.023786454, -0.002590213, 0.0070495615, -0.035811085, - 0.012182465, -0.011993057, -0.020913756, -0.024371976, 0.0040571573, - -0.008184844, -0.0017940805, 0.0126127135, -0.018264975, -0.0022577515, - -0.003106823, -0.010988031, 0.015308925, -0.0019026742, 0.023988863, - 0.008177851, 0.0021196133, 0.0022543753, -0.010599109, -0.00959397, - 0.017762285, -0.017507942, -0.023455307, -0.0072588148, -0.014186771, - -0.020594839, -0.011498024, 0.0047779577, 0.005200498, 0.0067650108, - 0.016876187, -0.0033283448, -0.0033964487, 0.006346749, -0.0120284585, - 0.03729929, 0.003255879, -0.0035239002, -0.015384034, 0.009766389, - 0.0040954314, -0.0032452592, -0.021435032, -0.010187738, 0.026199622, - -0.031251136, 0.008985218, -0.0061876094, -0.0035723804, 9.960146e-4, - -0.03564709, 0.012709086, 0.020780751, -0.0055806558, -6.095673e-4, - -0.010920041, -0.001726735, 1.7235149e-4, -0.012800064, -0.0016732493, - -0.00794628, 0.012924412, 0.023582561, 0.009875783, 0.006488976, - 0.015189848, 0.0049209557, -4.922623e-4, -0.012299289, -0.0059062974, - 0.015768265, -0.010370043, 0.01787222, 9.7450445e-4, 0.0076964516, - 0.0069243317, -0.003439479, 0.010503792, -0.008979864, -0.018269842, - -0.011556917, 0.009958435, -0.0047695823, 0.013648325, -3.7707496e-4, - 0.02754728, 0.008617056, 0.014540375, 0.0043924246, -0.033727504, - -0.01354887, -0.03796011, 0.006874167, 0.015102397, -0.0059603555, - -0.0426581, 0.0032743274, 0.020099062, 0.012601654, -0.0072459956, - 0.017388165, -0.0077500995, -0.0108571695, 0.026048515, 0.021398026, - -0.01957291, 0.011648474, 0.0032716414, -0.01660823, -0.009659308, - -0.011006645, 0.002991125, 0.008551246, -7.119282e-4, -3.5122875e-4, - 9.2431897e-4, -0.01755607, -0.0043925764, -0.0024126174, -0.038861476, - 0.026322585, 0.006250107, -0.018566193, 0.0043820394, -0.017779397, - -0.0012638699, 0.00996822, -0.013240928, 0.012701018, -0.0057393196, - 0.0014107808, -0.0046175485, 0.008418696, 0.0018164639, 0.005544205, - 0.004708293, 0.007912609, -0.009174358, -0.0019131602, 0.024900436, - 0.011949747, 0.014916309, 0.019866357, -0.028218362, 0.0041490765, - 0.008293229, -0.017700749, 0.003380044, 0.021045947, -0.026876206, - -0.023675574, -0.01883295, 0.0029258954, -0.015583562, 0.020121522, - -0.009444452, 0.020610463, -0.00305979, -0.0018182038, 0.01819596, - -0.0034989952, 0.0067115217, 0.021835895, -0.017279258, 6.868837e-4, - -0.004362932, -0.0018954372, -0.030376837, 0.016565459, -0.03144331, - -0.014949449, 0.036258366, -0.0217268, -0.006709008, 0.0040051932, - 0.0056738458, -0.0129088145, -0.0074687703, -0.0065877326, -0.010868738, - -0.0038761208, 0.01002543, -0.005195223, -0.023673547, 0.018314926, - -0.0014285963, -0.0011920957, -0.02978895, 0.0055348165, 0.007689815, - 0.010859558, -0.021064369, -0.004406052, -0.0023326688, 0.018966362, - -0.007818577, -0.012950115, -0.028964438, -0.00969212, 0.01212381, - 0.042932574, 0.010230291, -0.011186862, 0.018842828, 0.00786396, - -0.029279849, -0.012602883, 0.009078254, -0.0024112884, -0.0021270385, - -0.0025892365, -0.020945927, -0.009249112, 0.011754928, 0.012325992, - 0.016784577, -0.021270465, -0.022021912, 0.0012272059, -0.0271069, - 0.021372035, -0.02569112, -0.0050515635, -0.015986541, -0.0137838, - 0.02139256, 0.031279195, -0.022709591, -0.008527539, -0.0075018513, - 0.028191222, -0.0012110957, 0.010420147, 0.024536237, -0.007840904, - 0.0050784755, 0.029056342, 0.012496966, 0.013481856, 0.014558325, - 0.003141217, 0.0075508743, -0.02786481, 0.016401865, -0.012793888, - 0.023358945, -0.008085668, 0.018002348, -0.014481478, -0.0027423103, - -0.013662145, -0.016945949, -0.009396345, -0.014532039, 0.022272408, - -0.006700259, 0.015610663, 0.0141045395, 0.011521934, -0.028855328, - -0.0024906253, 0.0055130296, 0.011368213, 0.029469261, -0.018028041, - -0.0026434122, 0.013898264, -0.008435902, 0.01575184, -0.01802095, - -0.0025660351, 0.012988215, 0.015486461, 0.016091365, -0.0038496652, - 0.016945519, 0.025694927, -0.012106763, -0.026031641, 0.011104645, - -0.018656231, 0.0043813945, 0.01591132, 0.008142447, 0.0010048841, - 0.007631149, -0.031526253, 0.014105919, -0.0207311, 0.03020721, - -0.003021325, -0.019949038, -0.021509307, -0.0045891837, 0.0155462995, - 0.030719092, -0.0032609622, 0.009608323, -0.03000705, 0.0017453108, - -0.005376775, -0.0025550532, -0.012073367, -0.010566062, 9.3446905e-4, - 0.036692876, -0.0141009465, 0.0032637394, -0.010001451, -0.0021931638, - -0.048793845, 0.042736914, 0.020176083, 0.014557576, -0.0024732433, - -0.023157226, -0.0105053745, -0.0056194984, 0.0027905307, 3.825155e-5, - -0.017320888, 0.01916449, -0.033392973, 0.0045790286, 0.0050037326, - -0.010669998, -0.02342367, -0.012980676, -0.0039942544, -0.02176434, - 0.011685969, -0.022594161, -0.0030825005, 0.013995707, 0.014754195, - -0.0018770335, -0.037782323, 0.0016072423, -0.01943065, -8.0615556e-4, - 0.0016339404, -0.0020741527, 0.03422162, 0.046223834, -0.011664627, - 0.0044216984, 0.0031897319, 0.022848405, -0.012764575, -0.01936021, - -0.0032459758, 0.0012374888, -0.022625761, 0.0057167835, -0.0043705828, - 0.012499592, -0.007122454, 0.03898881, 0.0034964036, 0.021001726, - 0.0037999025, -0.01141732, -0.007458347, 0.01722909, -0.0077584884, - -0.0053381394, -0.0058308947, -0.0039712735, -0.033994377, -0.006024357, - 0.022393772, -0.01353846, 0.011300763, -0.010908426, 0.004422749, - -0.011245857, -0.022691973, 0.017952403, -0.004932447, -0.0030377689, - -0.0052815326, 0.013431824, -0.007815104, -0.012129431, -0.0029160336, - 0.010722462, -0.006432479, 0.0026542712, 0.005797793, -0.017088642, - 0.04353001, 0.010772161, -0.004097353, 0.010064085, 0.0026789752, - 4.7280896e-4, 0.024053475, -0.015769202, -0.011277142, -0.005305745, - 0.021744981, 0.0040748375, 0.006285457, 0.016823541, 0.009059398, - -0.0026431694, 0.011050993, -0.0161802, -3.811315e-5, -0.008692583, - 0.022483997, -0.0040161824, -0.0020186717, 0.010755855, -0.0053641824, - -0.016290408, -0.031745818, -0.0074104667, -0.00732168, 0.0050932267, - 0.012511654, 0.014692847, 0.0041699037, -0.012498389, 0.0011216124, - 0.016544744, 0.021391729, 0.010913402, 0.016717058, 0.010958364, - -0.023490649, 3.2658386e-4, -0.01461128, -0.007918479, 0.0021670936, - -0.012395536, 0.00130952, 0.018411808, 0.0073398612, -0.034655128, - -0.020948717, 0.014542382, 0.011503008, -0.0072662868, 0.003935618, - -4.7746082e-4, -0.0142715005, -0.022624243, 0.0017030771, -0.03353735, - -0.018666929, 0.0010213034, -0.023542594, 0.010819134, 0.0077816434, - -0.028994184, -0.019799596, -0.0038770447, 0.0018147941, -0.02856016, - -0.002051213, -0.02082619, -0.0033744527, 0.0011500249, 0.003279775, - -0.008096831, 0.0028804645, -0.013359278, -6.083786e-4, 0.024028987, - 0.0071571623, -0.023085589, -0.006728838, 0.028021444, 0.00279951, - -0.0036083537, -0.0028105762, -0.012706463, 0.005686633, 0.012249182, - 0.01060135, -0.014644924, 0.015907625, -0.019257328, 0.012258055, - -0.002563399, 0.01522462, -0.0049706884, 0.029147798, -0.0021252062, - -0.0019368876, 0.009016897, -0.007911277, -0.0046149124, -0.0128102405, - 0.004163666, 0.008536052, -0.018804086, -0.014457897, 0.0050044614, - -0.0068944716, 0.003146171, 0.0020189611, -0.02780402, -0.014871003, - -0.008854577, 0.02319486, 2.547555e-4, 0.0025912963, -0.016058998, - -0.00361642, 0.02530341, 0.011126226, 0.008368212, 0.0037803396, - 0.034604345, 0.0027098148, 0.004559028, -0.0068298327, -0.007899899, - 0.0025034382, -0.008362784, -0.0134840505, -0.01306414, 0.0056518633, - 0.0068898224, -0.010973489, 0.0060695955, -0.030126536, -9.457065e-4, - 0.0079219565, -0.016220123, -0.011343364, -0.032324478, -0.017510666, - -0.009807907, -0.028232023, 0.008196413, -0.0022500427, -0.019598993, - 0.02002606, -0.010389561, -0.023942808, 0.010950022, 0.009081767, - -0.008779253, 0.023017611, -0.007823649, 0.020043142, -0.014296432, - -0.009416248, -0.0067645707, -0.0069363685, 0.0070622233, -0.020629534, - 7.898465e-4, -0.013637975, -0.008154224, 0.020932553, 0.02502897, - 0.0041770707, 0.0047457446, -0.0043107974, 0.0025949352, -0.01708636, - 0.0074568084, -0.009165009, -0.01613579, -3.807635e-4, -0.012315988, - 0.019082278, 0.0066069714, 0.008314058, 0.017320024, 0.012856502, - 0.016083015, -0.023728134, -0.013751876, 0.018885393, 0.032747373, - 0.020357864, 0.004001129, -0.006902478, -0.0030391717, -0.03491561, - -0.009038593, -0.010598774, -0.018071266, 0.012337173, 0.022612508, - 0.012718895, 0.0038524633, -0.013590739, 0.011079802, -0.022974504, - -0.01173952, -0.018928645, -5.484414e-4, -9.627268e-4, 0.00848042, - -0.008893036, 0.0169995, 0.005201473, 0.015237878, -0.0055606617, - -0.019585516, -0.015578263, 0.0019473891, -0.0017934393, -0.0016485164, - 0.018450696, -0.021028085, -0.0021840518, 0.0042260927, -0.0048106825, - -0.01327493, -0.004535331, -0.012933022, 0.0167184, 0.011686705, - 0.03992109, -0.008833846, 0.013760965, 7.58509e-4, -0.006835964, - -0.0016665567, -0.03081143, 0.018976294, 8.2714856e-4, -0.0063292836, - 0.0072580455, -0.0058569317, -0.0066193286, 0.0076611163, 0.020326477, - 0.017047055, -0.0038197886, 0.022172641, -0.002269679, 0.016950423, - 0.0045603993, 0.026329622, 0.005471156, 0.0037562337, 0.0072765555, - -0.003996736, -1.735494e-4, 0.011314566, 0.004481261, 0.02296403, - 0.042843238, -0.0025801628, -0.0125490865, -0.036615804, -0.0011910687, - 0.003068291, -0.002102049, -4.8779187e-4, 0.020450499, -0.03081312, - 0.027314669, -0.017320123, -0.007884904, -0.008600106, -0.012488328, - -0.014558491, -0.004566017, 0.02209784, -0.0025579517, -0.0017441699, - 0.0010810543, 0.0032158333, 0.0116686085, -0.026799733, 0.041730102, - 0.0055233403, -0.019658858, 0.021466866, -0.0048891404, 0.019398194, - -0.0033576414, 0.0049244263, 0.0029298707, -0.008450738, -0.0013630219, - 0.01478719, -0.016771719, -0.016610086, 0.021791162, -0.0032842204, - 0.01091031, 0.022511585, 0.018366091, 0.037706923, 0.016058303, - 0.006483917, -0.019686677, -0.02612341, 0.0019496555, -5.9894327e-4, - -0.0043579284, 0.018263476, 0.009950418, 0.010749381, 0.007095721, - 0.018667618, -5.265503e-4, 0.003572201, -0.011850684, 0.004321422, - -0.008473977, -0.004884608, 0.008434256, -0.009758047, 0.0024948195, - -0.010598351, 0.032938745, -0.01922989, -9.1541954e-4, -0.018504856, - 0.017091917, -0.0015249585, 0.018397482, -0.025638545, -8.987871e-4, - -5.653712e-4, -0.028359259, -0.023348011, 0.0023851062, 0.0027418646, - -0.008010501, 0.017988466, -0.009538346, -0.0076947887, -0.02805839, - 0.009901938, 0.011906496, -0.025128871, 0.015788473, 0.014296312, - 8.778394e-4, 0.02771823, 0.020544011, -0.025655592, -0.019035146, - -0.010070638, -0.002973067, -0.0071098623, 0.01191602, -0.03221666, - -0.01766865, -0.0042894552, 0.0029142199, 0.01488957, -0.020580739, - -0.01877234, -0.0033842237, 0.0048320317, -0.001458818, -0.0148243345, - 0.02419553, 0.018814545, -0.039423954, -0.03442248, -0.005371119, - -0.0026251911, 0.011777297, -8.198871e-4, 0.0017116365, 0.010321373, - -0.01670881, -0.019199373, -0.0047752718, 0.012794556, 8.425155e-4, - 0.0022980843, -0.023050355, -0.017560774, -0.013395215, -0.005341162, - -0.0064503904, -0.0056386366, -0.016278159, -0.001170299, -0.017824724, - 0.008090281, -0.007199183, -0.0054749735, -0.0032133341, -0.013461729, - -0.01363345, 0.0077143507, -0.010991133, 0.0018782871, 0.040850222, - -0.019097691, 0.016811358, 0.0063943462, -0.009591201, -8.710216e-4, - 0.024146557, -0.012973501, -0.012614292, 0.008263904, 0.008654097, - -0.0032231126, -0.028298536, -0.008792517, -0.008318345, 0.017428458, - 0.027919922, 7.1756274e-4, 0.010253769, 7.4784685e-4, -0.013211765, - -9.5112436e-4, 0.015762648, -0.011105344, -0.022247195, 0.018445248, - -0.0029987432, 0.025117585, -0.012694412, -0.0049020955, -0.014988628, - 0.018956825, 0.007627737, -0.014947871, 0.011388889, -0.003829185, - 0.02368028, -0.0018101058, 0.011791969, -0.0087439725, 0.007368287, - -0.01900962, 0.0029074799, -0.029342968, 0.009608364, -0.017530756, - -7.4880844e-4, 5.116558e-4, -0.014183301, 0.012309625, 8.829699e-5, - 0.002204111, 0.016587619, -0.012114938, 0.029386587, -0.009646737, - -0.008779215, -2.1134572e-5, -6.186406e-4, 0.011621174, -0.0048796674, - -0.00299861, -0.008715655, -0.008464628, 0.0023569018, 0.023888245, - 0.007252039, -0.009616234, -0.010722295, -0.028122576, -0.013960942, - -0.0031740451, -0.014581714, 0.0033924188, -0.0046527563, 0.014222105, - -0.008137263, 0.004192602, 0.013076556, -0.018455612, 0.03603112, - 0.010503652, -0.008325477, -0.012691794, 0.03412239, 0.01534247, - -0.0463396, 0.018977895, -0.0031907612, 0.008715581, -0.007832198, - 0.00478312, 0.03683276, -0.027096462, 0.0072355657, -0.012045989, - -0.021110108, -0.029951341, 5.845559e-4, -0.010122229, -0.03919748, - -0.014025675, -0.0072175055, 0.022042787, -0.0028608658, 6.157427e-4, - 0.002163471, -0.025150564, -0.010903571, 0.0032663385, -0.035625253, - 0.014169915, 0.024083005, -0.038749374, 0.010663823, 0.022114255, - -0.006408737, -0.0043798797, -0.00419373, 0.0014650973, -0.0060453163, - 0.026922561, 0.0014772312, 0.02161539, 0.0016255284, 0.005734045, - -0.007788101, 0.012722991, 0.029816268, -0.029172294, 0.021201001, - -0.015291589, 0.016731834, 0.007782412, -0.033459768, 0.028223617, - -0.040698983, 0.014280972, 0.008599639, 0.007893304, 0.024816072, - 0.0011558004, -0.019990206, -0.031599395, 0.012736551, -0.015925413, - -0.0033593199, -0.016432032, 0.0075342446, 0.008122348, 0.0072104814, - -0.021658836, -0.009991214, -0.0031946932, -8.35441e-4, 0.015156198, - 0.037864264, 0.003595548, -0.018839454, -0.03097246, 0.016760819, - -0.016403863, -0.0031163846, 0.0026821883, 0.0053538, -0.0139126545, - -0.013748825, -0.021243986, 0.011720816, -0.024608504, -0.02662943, - -0.004385425, -6.2979275e-4, 0.009232089, 0.012017821, -0.007118641, - 0.0034457305, 0.026786799, 0.006917095, 0.023538746, -0.012336087, - 0.0011848152, 0.026181946, -0.0069855573, 0.008367721, 0.004753814, - 0.02280944, -0.0068787835, -1.1299243e-4, -0.014143609, -0.01838227, - 0.010456001, 0.027135488, 0.013606835, -0.004335871, -0.003533766, - -0.03174193, 0.0020574173, -0.012087298, 0.02458602, 0.008753814, - 0.0027494251, 0.0025269827, 0.004820671, -0.0130928205, -0.004281005, - 0.02060684, -0.010168976, -2.7938894e-4, 0.0051382156, -0.004561423, - -0.008260641, 0.002218937, -0.009646393, -0.012490569, -0.0039789667, - -0.0109555805, -0.009786798, -2.4911942e-4, -0.008330209, -0.01916669, - -0.013866048, -0.040265527, -0.020500034, -0.024196206, 0.040354427, - -0.00429941, 0.018323733, -0.011521499, -0.014128413, -0.008665303, - -0.029159812, 0.0069886744, 0.016625453, 0.013371994, -0.0049607097, - -0.009199993, -0.0017412503, 0.019055316, -0.014638909, -0.004704345, - 0.033266574, -0.028336195, -0.012907043, 0.0045539355, -0.01391685, - -0.0122641055, 0.0192648, -0.023430737, -0.010791176, 0.017931046, - 0.0148924645, 0.020366402, -0.0030682834, -0.005933265, 0.0027878005, - 0.02103588, 3.2609593e-4, 6.751704e-4, 0.009627173, 0.037570897, - 0.014937203, 0.01474053, -0.0042953277, 0.010707105, -0.028106457, - -0.0021200383, 0.010784708, -0.015439773, -0.008700381, -0.01050888, - -0.0142347105, -0.013167781, -0.0045005903, 0.005222052, 0.009945546, - 0.036435924, -0.014340112, -0.0064932383, -0.03548175, 0.0065529784, - -0.029464832, 0.001880689, -0.009697074, 0.002359258, 0.0078389, - -0.02799113, -0.008545731, 7.976195e-5, 0.04679266, -0.025949402, - 0.018606301, 0.01559285, -0.011485516, -0.023216976, 0.0028700763, - 0.0130180195, -0.0076200753, 0.0051767337, -0.041236322, 0.01154604, - -0.006857371, 0.028402742, -0.015484647, 0.014166927, 0.020747375, - -0.024790619, -0.005730744, -0.024382655, 0.004979394, -0.012979948, - 0.015069293, -0.009666234, -0.02166446, -0.00879177, -0.010351448, - -0.01312469, -0.014280325, 0.007033511, 0.008269567, 0.032202695, - -0.0067808274, 0.025994364, 0.007676589, -0.012420107, -0.023149736, - -0.045394488, 0.002372673, 0.00655095, -0.0019513358, 0.0148050785, - -0.022087483, 0.024313653, -0.030594993, 0.0055418047, 0.007256264, - 0.011832095, 0.004451121, 0.004490463, 0.018005025, -0.0048965723, - 0.012297177, 0.02094698, -0.013648682, -0.017467089, 0.01724339, - 0.015582136, 0.018510692, 0.012573281, 0.0065959464, 0.0021130915, - -0.0119976215, -0.0029611508, 0.024383768, -0.0077183205, -4.1165596e-4, - -0.0082340995, 0.024651188, -0.008269988, -0.005034072, -0.0072094062, - -0.011993762, -0.006494942, 0.03182896, 0.0058021066, 0.021314887, - 0.018352821, 0.030856527, 8.254568e-5, -0.012393848, -0.008247572, - -0.0012072971, -0.018770175, 0.030664504, 0.0035245388, -3.4803632e-4, - 0.0025764275, 0.022298716, -0.02615622, 0.014030539, -0.02862315, - -0.017321164, -0.010422551, -0.008577042, -0.019729441, -0.009362766, - -0.010501325, -0.0077008605, -0.010566394, -0.0039427876, 0.010108409, - 0.007231172, -0.013514448, 0.023344468, 0.0064804126, -0.0127137, - 0.025310263, 0.019970268, 0.017813439, -0.014656819, -0.024690889, - -0.02646621, 0.0143926935, -0.023098335, -0.024440853, 0.013302522, - 0.003053336, -9.413623e-4, -0.017459085, -0.0053506126, 0.017163564, - -0.031432047, 0.002351609, 0.015483252, -0.0034882433, 0.0028851428, - 1.0357894e-4, 0.008692427, -0.0034123913, -0.0037011257, 0.022543026, - 0.009869669, 0.01934649, -0.017264964, -0.016149279, 0.001213889, - -0.017789759, 0.009351968, 0.0023605602, -0.058451936, 0.014054422, - 0.012823451, 3.1901058e-4, 0.020192824, -0.01348096, -0.001138166, - 0.0091336705, -0.02192151, -0.03219635, -0.0032562697, -0.010358299, - -0.023316016, 4.233467e-5, -0.011410587, -0.021973321, 0.036623675, - -0.020408565, -7.2255316e-5, -0.023564193, 0.010684287, -0.005388028, - 0.008827008, -0.009439404, -9.919311e-4, -0.006424666, 0.016956912, - 0.0039693196, 0.014595687, 0.006524618, 0.018592183, 0.006021998, - -5.024723e-4, -0.0053862412, -0.0034638382, -0.015065905, 3.5075693e-5, - 0.021752192, 0.006856233, -0.017171618, 0.008804763, 3.295826e-4, - -0.0020555768, 0.005876051, 0.021374568, 0.017134096, -3.6609595e-4, - 0.0073411856, 0.0027456621, -0.0025460706, -0.010350306, 0.0077869897, - -0.024762604, -0.023244474, 0.0052213026, -0.02671586, 0.004351632, - 0.011111093, 0.022832941, -0.013980558, 0.030996239, -0.009667317, - -4.624222e-4, -0.015674626, -0.025346117, 0.009301022, -0.03156414, - 0.016326122, 0.0027494167, -0.023319168, 0.01419963, 0.011415817, - -0.014322256, -0.015161525, 0.009734034, -0.016162973, 0.0053972737, - -0.018072965, -0.0095590595, -0.033852685, 0.0013129398, 0.0043980116, - -0.004353566, 0.0056277676, -0.02791986, 0.0100034075, 0.03336473, - 0.0115885725, -0.0046704197, -4.693448e-4, 0.027817206, -0.001140194, - -0.009830715, 0.0011750179, 0.013925773, 0.007339029, 0.006392013, - 0.017578185, -0.014231323, -0.004117595, 0.006872584, -0.02742043, - 0.0011566334, -0.014908987, -0.002576874, -0.0030091375, 0.020873992, - 0.013872072, 0.018683244, 0.0045630024, -0.00225645, -0.003150521, - -4.8113966e-4, 0.005822164, 0.0043448857, 0.0050572916, 0.024459457, - -0.019538702, 0.014595289, 0.01875101, -0.007978571, -0.006201704, - -7.3156715e-4, -0.007933112, 0.0334518, -0.007638622, 0.012813219, - -0.012514382, -0.010894141, 0.0188519, -5.6297716e-4, 0.036224227, - -0.013052734, 0.0026977065, -0.028605396, 0.0075604813, -0.027133213, - 0.009205597, -0.0023486123, -0.005876057, -0.007571404, -0.005192493, - -0.013172272, -0.013074749, -4.10225e-4, 4.3129522e-4, 0.003326495, - -0.007410406, 0.022002213, 0.009747997, -0.006768521, 0.02572425, - -0.012597625, 0.043742068, 0.012800771, 0.031497944, -0.014589757, - 0.008533643, 0.00545244, -0.033150077, 0.017520407, 0.0057746284, - 0.004931229, 0.0044154483, -0.012682678, -0.0068575945, 0.013954282, - 0.0231878, -0.005246125, -0.0126175005, 0.0010517865, 0.0045196074, - -0.014702588, -0.0261761, 0.004780991, 0.029785171, 0.0021199384, - -0.020741219, 0.02463916, 0.018719828, -0.008530627, -0.01150185, - 0.021403488, 0.021326387, -0.011189452, -9.896321e-4, -0.005354473, - 0.01282386, 0.010596009, -0.013289249, 0.0066725905, -0.012797621, - 0.007286605, 0.02665057, 0.00825182, -0.014278286, 0.008368432, - 0.001320828, 0.012602833, -0.013328883, 0.0071725594, 0.015562743, - 0.002242196, 0.03633189, -9.937801e-4, 0.011552754, 0.006864962, - 0.01981642, -4.58142e-4, -0.03747115, -0.011978341, 0.02251389, - 0.005606322, -0.012804675, -0.0076659177, 0.011909021, 0.008411751, - -0.006790077, 0.04475707, 0.013309092, -0.008429969, 0.0020939296, - -0.012901417, -0.0045832745, -0.04385309, 0.009399741, 0.004409859, - -0.01690484, -0.03718233, 0.0031967277, -0.0020141364, -2.1233968e-4, - -0.012717346, 0.0017228532, -0.016037397, -0.011594417, -0.006706769, - 0.0058070067, 0.0058658132, -0.015874358, 0.0075853583, 0.010121123, - -0.00954049, 0.010005494, 0.0022354298, 0.012340835, -0.013799487, - 0.010901123, -0.025730701, 0.023236727, 0.017790481, 0.005742523, - -0.0010938256, -0.0019779294, 0.03357126, 0.013038778, 0.014958114, - 0.004775902, 0.0023162037, -0.011155826, 0.005130583, -0.016304066, - -0.006490882, 0.01938111, -0.028190399, -0.012512725, -2.2364435e-4, - 0.008603722, -0.023613788, -0.01903953, -0.0019025546, -0.036886614, - 0.013559252, -0.0037887755, -0.027108964, -0.005049225, -0.0015339943, - 0.02175888, -0.0033387495, -0.007684418, -0.015462042, -0.010726503, - 0.006114836, -0.0131567195, -0.0070500216, 0.013405261, 0.008069432, - 0.012117227, 0.014054552, 0.010885123, -9.320625e-4, -0.02120867, - 0.0045407657, -5.8319146e-4, -0.0054266686, 0.016529437, -0.0073124175, - -0.0038260634, 0.013095106, 0.01253893, 0.009060198, -0.0030521965, - 0.0049190433, 0.009520978, 0.0017662217, 0.009317761, 0.013334108, - -0.007395898, -0.025409814, -0.008732675, -0.018791432, -0.024773989, - -0.020387627, 0.0011579915, -0.023493774, -0.0039356407, 0.001671611, - -0.0032727567, -0.015172682, -0.027969893, -0.023039376, -0.0015210268, - -0.010250445, 0.015949607, 0.018718727, -0.009607341, 0.0056935907, - -0.013049933, -0.0023616848, -0.015351028, 9.263428e-4, -0.009642018, - -0.033940006, 0.008206815, -0.001793183, 3.895513e-4, -0.008746033, - 0.003713689, 0.018217567, -0.0017096621, 0.02043913, -0.013790274, - -1.55275e-4, -0.006330856, -5.786184e-4, 0.01150208, 0.025561439, - 0.007553677, -0.0071326755, -0.0024002446, -0.007335344, 0.0033791042, - 0.014201704, 0.019569913, -0.020218667, 1.7715659e-4, -0.0036048708, - 0.010877131, -0.0075013726, 0.015253059, -0.035790406, 0.0035866543, - -0.002831643, -0.0018213982, 0.02142608, 0.005841612, -0.0049793976, - -0.0032789784, -0.01997059, -0.0023598433, 0.016806945, 6.3716364e-4, - 0.017066311, -0.015019689, 0.0105476845, 0.0011346817, 0.015083882, - -0.0069625066, 0.011353707, -0.01572676, -0.01641624, 0.008217137, - -0.008452929, 0.0011007446, 0.012159936, -0.011551078, -0.009858586, - 0.018952075, -0.022326423, 0.014963665, -0.0038608601, 0.012454199, - 0.02285592, 0.00440529, -0.0167676, -0.028322192, 0.022309933, - 0.0018919642, -0.009246311, 0.016212892, -0.006150479, 0.0324633, - -0.01672664, 0.022638703, 0.019979851, 0.012179782, 0.007898401, - 0.015051945, 0.015027515, -0.010103367, 0.017573588, 0.0063540647, - -0.0036037404, 0.00435336, -0.025288543, -0.0069144974, -0.0010383932, - -0.048524886, -0.004292725, -0.0023586007, 0.010306378, -0.026666993, - -0.015153345, 0.005508872, 0.023689535, -0.016869634, -0.0102161225, - -0.017672338, -0.0080970265, -0.011488767, -0.007966294, -0.0012224499, - 0.005012644, 0.021436134, 0.0065563726, -0.040210657, 2.5500482e-4, - 0.029141176, -0.0041445484, -0.012113644, -0.009015577, 0.012686486, - -0.0018280001, 1.5560711e-4, -0.02195269, 0.018962681, 0.0067569735, - 0.0013193454, 0.0113431765, -0.022103354, 0.020686917, 0.033757575, - 0.005439934, -0.014127413, -0.0028654744, -0.0144522395, -0.004809076, - 0.010494059, -0.013722005, 6.7430054e-4, -0.0067922585, 0.016614465, - -0.0030186845, -0.009193921, 0.011773466, 0.011194784, -0.01667789, - 0.0042708553, 0.023484295, -3.6683443e-4, -0.037172377, -0.012314694, - 0.021253077, -0.00243035, -0.004095724, 0.0021180795, -0.013327806, - -0.029730944, -0.028185837, -0.003952232, 0.0057937894, 0.01863869, - -0.011174251, -0.029023511, 0.008144414, 0.012128738, -0.016032208, - -0.004426556, 0.024974925, 0.013715374, 0.025472682, -0.011485725, - 0.01551603, 0.0058581918, -0.04781834, 0.0039594267, 0.0048312778, - 0.0016401293, 0.015145025, -0.017039483, 0.004304511, -0.022369318, - -0.025826687, -0.024303885, -0.023116197, 3.8630026e-4, 0.004702688, - 0.0024377478, -0.010013698, -0.01662162, 0.013494922, 0.006352494, - -0.017360253, -0.00392038, 0.009582658, -0.026644113, 9.641191e-4, - 0.006646145, -0.01430496, 0.016358603 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0035739208, -0.0018282797, -0.006290886, 0.015131728, 0.005484996, - 0.028891338, 0.0037922151, 0.009910208, -0.0017932546, 0.0012230454, - 0.004443441, -0.02265591, -0.016511109, -0.016692448, 0.0073715397, - -0.033774387, -0.016647564, 2.0462673e-4, -0.006767162, 0.00915469, - 0.007998238, 0.0109197255, 0.011386165, -0.01813061, 0.015020508, - -0.019806454, -0.02290968, -0.024336254, 0.005443984, -0.014253981, - -0.02266885, -0.0084822625, 0.020127311, 0.0096253995, 0.022742176, - 0.029798754, 0.016057005, 0.0066603804, 0.017898733, -0.006595452, - 0.032451496, 0.0023900082, 0.001979302, 0.00163056, 0.014672384, - 0.0239468, 0.0016085358, -0.004897631, 0.004682859, 0.014926135, - 4.6306697e-4, 0.012369213, 0.0087595815, -0.008504368, -0.0036918123, - -0.002151188, -0.018979222, -0.025092524, 0.024193436, -0.0034047633, - 0.005599523, 0.022569507, 0.013290378, 0.003156144, 0.02216109, - -0.02074832, -0.004090119, 0.006553862, -7.268636e-4, -0.010461706, - -0.006736264, -0.023480933, -0.004685472, 0.018183311, -0.004488179, - 0.012301463, -0.0057915933, 0.011630108, 0.033266865, 0.018150829, - 3.6799262e-4, 0.016983965, 0.01143874, -0.013048129, -0.0053642537, - -0.039666984, -0.017026542, -0.024731798, -0.005554715, -0.018390803, - 0.0018930722, 0.023105906, 0.0374966, -0.007984613, 0.006851219, - 0.00671315, -0.012417095, -0.006238077, -0.0013934148, 0.0053243004, - 0.018299425, 0.023746286, 0.021517877, 0.020254374, -0.010988421, - 0.013811826, -0.017237896, -0.015144414, 0.0049130553, -5.7486974e-4, - -0.0052345744, 0.0056035174, 0.0075206845, -0.0059236647, -9.224189e-4, - -0.022545861, 0.013985777, -0.010958135, -0.0032286877, -0.022147866, - 0.003083379, -7.16738e-4, 0.016390199, -0.03149447, 0.026820118, - -0.01821143, 0.015528256, 0.0298789, 0.013180421, 0.014204602, - -0.0024817903, 0.03830167, -0.016056893, 0.008957537, 0.008095929, - -0.009960378, -0.0043876395, -0.013435283, -0.006678036, -0.010614089, - -0.016626405, -0.0048360033, 0.0090969205, 0.0058662207, -0.014514839, - 0.01650486, -0.0025573054, -0.0011425649, 0.017527396, -0.027373815, - -0.004652241, -0.011361295, 0.0017188088, -0.020718852, -0.0019408314, - 6.3161575e-4, -0.011338381, 0.015507483, 0.0022831764, -0.002915431, - 0.012054981, 0.015159562, 0.01785627, 0.016416444, -0.023975227, - -0.013726214, -0.008538537, -0.0025808609, 0.019195763, -0.021514103, - 4.1453112e-4, -0.028465932, 0.009192478, 0.012369713, -0.005367219, - 0.019266335, 0.020893605, -0.024047082, 0.005229856, -0.01940661, - 0.005879086, 0.009500332, -0.017960232, -0.017127678, 8.604156e-4, - -0.025910843, 0.0039341818, 0.0037635567, 0.017425986, -0.0068465755, - -0.0037080233, -0.0037763934, 0.0072471085, -6.365447e-4, -0.0143200345, - -0.0046702973, 0.0024693422, 7.212132e-4, -1.2330548e-4, 0.0027754847, - -0.022588119, 0.004612495, 0.012549915, -0.014204145, -0.007545632, - -0.026362564, 0.007495508, -0.0050323084, 0.011383766, -0.01671987, - 0.015979746, 0.020561494, 0.015750522, -0.013898994, 7.502078e-4, - 0.005034818, 0.0011297703, 0.0047089974, -0.0013388674, -0.00648549, - -6.604784e-4, -0.009885871, 0.0040390417, 0.033509426, -0.004044408, - 0.0092437025, -0.008555852, 0.0055209966, -0.002117197, 0.01339055, - -0.0032503314, 0.0046566995, -0.015790414, -6.839717e-4, -0.030637396, - 0.02027339, 0.0010615408, -0.0031791762, -0.009518694, -0.027010435, - -0.004458361, 0.023992717, -0.021406323, -0.018381607, -0.024333717, - -0.01615369, 0.0014137031, -0.0060817986, 0.01574401, 0.013200069, - -0.01666252, 0.00887507, -0.031035889, -0.030076424, -0.001806322, - -0.004647994, 0.011297046, -0.017218169, -0.007348401, -6.4075936e-4, - -0.003703107, -0.026935592, 0.006476756, 4.1522383e-4, 0.021292465, - -0.0073503987, -0.010292979, -0.01254977, 0.0025873587, 0.015326146, - -0.011697459, 0.0057403394, -0.0095829135, 0.005488781, 0.016336098, - 0.014586341, 0.0061839567, -0.00606326, -0.016886827, 0.0031340085, - -0.0011981489, -0.032378294, -0.004915354, 0.005466599, -0.012344446, - 0.014030666, -0.011862746, -0.0061691143, 0.012661183, -0.009995466, - -0.01736277, -0.014443204, -0.021890765, -0.025683455, 0.006935575, - -0.012263422, 0.0115434425, -0.017134927, -0.0109299505, -7.310665e-4, - 0.01718717, 0.020054862, -0.0011149556, -0.001026862, 0.0103836935, - -0.018066257, 0.010052176, -0.0026329248, -0.0033361549, -9.256727e-4, - -0.0116387, -0.00501153, -0.0012799439, -0.012089197, -0.033696763, - 0.015457897, 0.001559877, -0.043267753, -0.0010155651, 0.0033614147, - -0.009363011, -0.0097011, -0.020871278, 0.0030308482, 0.027093869, - 0.015999367, 0.0061729318, 0.0065758293, -0.0042644925, -0.0056715906, - 0.015276864, -0.0016017478, 0.0012939824, -0.010456748, -0.010540741, - 0.00875702, -0.008467227, -0.007318915, 0.003616265, 0.0046867225, - 0.015597081, -0.023691844, -0.0072332066, -0.027872289, -0.015059994, - 0.014166135, -0.016362509, -0.0029781186, 0.007751518, 0.0111299, - 0.0065096403, 0.012698657, 0.016142061, 0.017984588, -0.0021665667, - -0.009134932, -0.021237455, 0.0142959105, 0.0016272723, 0.03879174, - 0.014609817, -0.004467211, 0.0070287976, 0.002987176, -0.0072511286, - 0.04190847, -0.0019990169, 0.014248686, 0.01294869, -0.0035037578, - -0.0039653345, 0.012790191, 0.001727575, -0.01610722, 0.006061198, - 0.021840006, -0.015948044, -0.0014778946, -0.012434996, -0.02790445, - 0.008831835, -0.014934722, 0.020498803, -0.025681071, 0.02592978, - -0.006984767, 0.009128105, -0.021438297, 0.008039335, -0.0024462908, - 0.0012774795, 0.03154454, 0.021153105, -0.026340263, 0.0054063676, - -0.0051147854, 0.012975966, 0.018482262, 0.019700365, 0.022419944, - -0.0012281922, 0.004107318, 0.0029929162, -0.020135105, -0.051028855, - 0.004675588, -0.0135565875, -0.0032363283, -0.011491131, 0.011094747, - 0.031808503, 0.0017639757, -0.022655023, -0.021011733, -0.018730868, - -0.008831442, 0.007522425, -0.01068778, 0.008446921, 0.01171165, - -0.04705491, -0.00950861, 0.034241453, 0.010479444, -0.01856829, - 0.008888228, 0.020212838, -0.011000358, 0.011191231, -0.0013035577, - -0.028625885, -0.013898085, -0.016738977, 0.008812519, 0.0027391242, - -0.028687622, 0.018674685, -0.013626661, -0.0161364, 0.0072202883, - -0.017618407, -0.023213744, 0.010361976, 0.0069135088, -0.0015760971, - -0.018350434, 0.0040252474, 0.008141675, -0.005477458, -0.023093825, - 0.0351801, -0.010113161, 0.029976163, 0.0067723836, 0.0023355328, - 0.0074932175, -0.012298958, 0.009061888, 0.007068632, -0.030704921, - -0.0051632025, -6.7628134e-4, -0.03564615, -9.88936e-4, 0.002127849, - -7.522122e-4, 0.0040494194, -0.002423075, 0.011109092, -0.021564696, - -0.0067546144, 0.0028184524, 0.017311634, -0.039264474, 0.005541505, - 0.018904818, -0.024548288, -0.009708955, 0.0149902, 0.006451727, - 0.0012051027, -0.009409664, -0.002292496, 0.010007502, -0.022225175, - 0.006679434, -0.02235294, -0.0047386778, 0.00558718, 0.0021551533, - -0.007788216, -0.031676017, 0.014604074, 0.004236088, -0.0029408152, - -0.015021663, 9.566896e-4, 0.019752115, -0.007998338, 0.014624844, - 0.019539325, -0.0017824121, 0.02095314, 0.005658167, -0.0022639611, - 0.0044509284, -0.008784649, -0.0120157795, 0.006831336, 0.02079675, - -0.01453051, 0.0013400766, 0.007314557, -6.846223e-5, -0.023572642, - -0.0026989724, -0.007605798, 0.00830603, 0.013685361, -0.020965312, - 2.5012532e-5, -0.0044327225, -0.003334071, -0.015904823, 0.012625039, - -0.0064835167, 0.008437537, 0.029652124, 0.0021630912, 0.02552933, - 0.0037621208, 0.0030779932, -0.027099399, 0.0019057896, -0.026849208, - 0.013629884, 0.015737822, 0.019879201, 0.020182405, 0.016833749, - 0.012208756, 0.0062492834, 0.0013536436, 0.016075727, -0.01742177, - 0.0074561206, -0.003433881, -0.023880076, -0.0021748855, -0.015392311, - -0.0029001196, 0.0087000085, -0.011657717, 7.504184e-4, 0.012187471, - 0.0067372834, 0.0051924717, 0.00679893, -0.012444179, -0.005274266, - 0.004700443, -0.030814605, 0.009165271, -0.030901168, 0.003465719, - 0.025007026, 0.027435461, -0.0038848156, 0.018832978, -0.0057310252, - 0.00458576, -0.017255472, 0.00937895, -0.015377318, -1.7629203e-4, - 0.0033928393, -9.6119114e-4, -0.011020348, 0.0074976445, 0.018335775, - 0.01510797, 0.017313853, 0.007093939, -0.013351612, -0.027437126, - -0.017893506, -0.036736626, -0.0065285903, 0.009603367, 0.0041854563, - -0.011343134, 0.0017188825, 0.0048689917, -0.0018070816, -0.018542908, - -0.025406294, -0.010488899, 0.026048033, 0.007085247, 0.00395984, - -0.001722363, -0.012062558, -0.008512066, 0.012328487, -0.0045456327, - -0.005974844, 0.007333601, 0.024799595, 0.01614621, 0.0014931011, - -0.003637393, 0.012180336, 0.016658505, 0.002457209, -0.015021099, - -0.02107732, -0.021739094, 0.0027780856, 0.033150382, 0.030278161, - 0.021057729, 0.00479382, -0.0045778723, 0.039868373, -0.009773715, - 0.012294558, -0.0063511506, -0.0011775474, 1.2515568e-4, 0.001367406, - -0.007946324, -0.0031503085, 0.013559839, 0.0062213396, -0.008896884, - -0.023619639, 0.001495203, 0.019411597, 0.01059428, 0.0051914845, - -0.004188074, 0.018914357, 0.017209226, -0.0019053669, 0.009080487, - 0.015438528, 0.0017652996, -0.0034288378, -0.0013334845, -0.0013271101, - -0.01937034, 0.0089346, -0.0027242668, -0.023074135, -0.0066899275, - -0.013869383, -0.017593563, 0.018179411, -0.039377034, -0.011685071, - -0.010301547, -2.7923932e-4, -0.017876683, 0.022698937, -0.019608362, - 0.0028512536, 0.010430571, 0.0074378247, -0.0025292349, -0.0121117905, - -7.648396e-4, 0.017716976, -0.017518807, 0.012885344, 0.014942902, - -0.005279464, 0.015700595, 0.0024786738, 0.012029249, -0.015435566, - 0.010513305, -0.01788307, 0.027109006, 0.013518274, -0.031357523, - -0.024293017, 0.004337932, -0.022033786, -0.0039049683, -0.0027079561, - 0.011131154, 0.005808075, -0.012138017, 0.005971573, 0.010611233, - -0.0056557693, -0.012513593, -0.024334788, 0.0034705764, 0.008254223, - 0.005750825, 0.0016777359, -0.021199897, 3.8426777e-4, -0.007157275, - -0.014570525, 0.01914051, -0.010218258, -0.012295004, 0.007659823, - 0.010330923, -0.0028266062, -0.0022888663, -0.0044474, -0.022160405, - -0.008931782, 0.019975318, -0.024865746, 0.017343586, 0.018942349, - 0.020262146, 0.005369827, -0.01262894, 0.0039031454, -0.0075823003, - -8.360344e-4, -0.0045010853, -0.002481456, 0.012959942, 0.012865239, - -0.0060716583, -0.01295007, -0.012141385, 0.016447654, -0.004741672, - 0.017891789, -0.012657793, 0.014156864, 0.024454648, -0.019747566, - -0.012568589, -0.011151854, -2.0591618e-4, 0.024345942, 0.014936555, - -0.04214345, -0.029594796, 0.0026070476, -0.013353915, 0.018537547, - -0.011559572, -0.021432992, 0.008282713, -0.0077193314, 0.007846311, - 0.020108346, 0.0016223144, 0.0037310827, -0.002555764, -0.0136362715, - -0.035342216, 7.2147226e-4, -0.03533061, 0.01921459, -0.043382477, - 0.027265394, 0.03306832, 0.010959037, 0.018635735, -0.011462844, - 0.007197856, -0.044306368, -0.0032172818, 0.0024302814, 0.0034022029, - -0.038397007, 0.026202183, -0.006438617, 0.01660566, 0.018351614, - 0.017305318, 4.4473622e-4, -0.0028825263, 0.0061442386, 0.027711568, - 0.013373845, 0.03253296, -0.013555668, -0.028146524, -0.01329209, - 0.02621966, 0.02197148, -0.027420236, 0.034822173, -0.015002558, - -0.006341803, 0.0049750735, -0.015173343, -0.02185273, 0.019972047, - -0.006120083, -0.0046418114, -0.001974646, 0.029919887, 0.006804579, - -0.005297584, 0.01727395, 0.0016827115, -0.004629278, -0.009568919, - -0.019265141, 0.00476304, -0.01858285, 0.010235214, -0.002541966, - -0.016691195, 0.004983745, -0.020124042, 0.011276562, 0.007157891, - 0.012820821, -0.0122464495, -0.0055120685, -0.0143854385, 0.02304535, - -0.003977286, 0.005765212, 0.0057902536, -0.01965009, -0.005882935, - -7.87039e-4, 0.0028885195, 0.010688376, 7.463917e-4, -0.011628347, - 7.1593426e-4, -0.026094303, 0.009252699, -0.0076007335, 0.011065667, - -0.0025036826, 0.00954106, -0.0012934054, -0.010398395, 0.019058544, - -0.009407616, -0.0020561186, -0.03569322, 0.026849378, -0.0010658391, - 0.008667303, 0.0047127637, 0.0086848065, 0.018322384, 0.03834474, - -0.023033509, -0.020625634, 0.003961674, 0.0046555833, 0.005026613, - -0.010787841, -0.0012760515, -0.0073133996, 0.022252018, 0.0018314254, - 0.02195785, 0.0047086566, -0.013665495, -0.0077785486, -0.011500538, - -0.036045443, -0.03355918, -0.0043962775, 0.015644595, -0.012860839, - -0.005695005, -0.017093062, -0.00231804, 0.013141198, 0.0019099369, - -0.0039747423, -0.00860573, -0.0046258736, 0.0069836876, -0.010990036, - -0.010271096, 0.0016622656, 0.026763866, 0.024609348, 0.010512318, - -0.0098457, 0.024509333, 0.022797732, 0.004347038, 0.025590522, - 2.1685768e-4, -0.0016610514, -0.026152236, 0.02141129, -0.016270662, - 0.0066738958, -0.015611242, -0.008397753, -0.0023939994, -0.0032307687, - 0.0104730055, -0.008029384, -0.028023912, 0.009961062, 0.010844817, - 0.021003427, -0.001143353, 0.0024695748, 0.002670632, 0.02306874, - -0.001679066, -0.031437308, 0.011145687, 0.012852001, -0.005502349, - 0.005105764, 0.025036741, 0.005896441, -0.011789737, -0.0028613263, - -0.020882422, -0.020883398, -0.009888724, -0.013722185, -0.011790262, - 0.03064394, -0.014134892, 0.009126568, -0.0014908343, 0.008107898, - 0.012525364, -0.0074095987, -0.005335615, 0.015315137, 0.02119166, - 0.019220047, -0.007818295, -0.018399397, 0.015466572, 0.019562384, - 0.011775067, -0.0046072043, 0.023341393, -0.011967753, 0.011665442, - 0.0045315064, -0.0146764, 0.02100106, 0.0045693466, 0.014582814, - -0.01914978, -0.017332753, 0.025015917, -0.00227362, -0.0068244427, - -0.01180701, -5.4150354e-4, 0.007047925, -0.006214327, -0.0055759302, - -0.008221438, -0.005281765, -0.0053363666, -0.033189107, -0.025288869, - 0.020635126, -0.021045987, -0.010146699, -0.0027938639, 0.029922815, - -0.013475409, 0.004309477, 0.0018878435, 2.5124502e-4, -0.02051439, - -0.013396789, -0.019562775, 0.006724887, 0.008814226, 0.005922764, - 0.0051656095, -0.02561344, -0.02010279, 0.0098013785, 0.00683127, - -0.013466753, -0.010012859, 0.016816286, -0.025100127, 0.020039778, - 3.0562657e-4, 0.019854859, 0.027755786, 0.017721057, -0.008040251, - -0.010618196, -8.420853e-4, -0.017374476, 0.011971928, 0.008345405, - -0.01251136, 0.008321287, -0.0016896393, -0.001534116, 0.009750412, - 0.004276053, 4.4264604e-4, 0.0072755436, -0.033847466, 0.013667364, - 0.015033353, 0.01003914, -0.022115234, -0.0022092026, 0.030289778, - -0.018512655, 0.034543697, 0.012754156, -0.006274501, -0.0033800933, - -0.027020289, -0.0035626772, -0.007236678, 0.016195882, -0.023023155, - 0.029278455, 0.0044144187, -0.04131607, -0.009490121, 0.03690965, - -0.012196985, -0.017149463, 0.020816088, 0.016848562, -0.014264407, - 0.015068251, 0.008722973, -0.0023112271, 0.022822365, -0.012235087, - -0.016371233, 0.016903896, 0.008531814, -0.0017486309, -1.2973222e-4, - 0.016315468, 0.0144233415, -0.004389333, -0.0072872383, -0.0077301012, - 0.011962274, 0.004410518, 0.0013397094, -0.0070803864, -0.017029343, - -0.0052532554, 0.007975144, -0.022159696, 0.014416763, -0.003570772, - -0.016130107, -0.014850184, 0.005547479, -0.0016216291, -0.018539606, - -6.1104336e-4, -0.007188512, 0.009832671, -0.03477464, 0.0051428773, - 0.022143276, 0.013939493, 0.011090415, 0.0044201906, 0.012806668, - 0.013093369, -0.010775306, -0.004624218, 0.014639764, -0.0014866921, - 0.019572232, 0.032465447, 0.008576552, 0.018274765, -0.02112841, - 0.011781828, -0.0064821253, 0.009217627, 0.016428955, -0.0063131093, - -0.0011206989, 0.0022362054, -0.017906379, 0.0088900225, 0.0049213627, - 0.03544943, 0.0051011774, -0.020050392, -0.0169649, -0.009378513, - -0.008114387, -0.011169362, 0.011815024, -0.03580208, 0.02613283, - -0.011134118, -0.0020792584, 0.0050737737, -0.017066028, 0.014931251, - 0.016321527, 0.014619163, 0.009370383, 0.018075095, -0.018451104, - -0.012028367, 0.014101199, -0.020587115, 0.023473673, -0.03330736, - -0.013082455, -0.0139747765, 0.026183914, 0.017495155, -2.9325482e-4, - 0.0013621453, 0.01794551, -0.011308258, 0.013304327, 0.0087193735, - -0.0076371306, 0.0037056694, 0.0055733873, -0.012657615, -0.0022532532, - 0.004792971, 0.0022218854, 0.007908283, -0.011628361, 0.014288527, - -0.025693692, 0.020980384, 0.002710456, 0.0034394844, 0.012928793, - 0.0024843789, 0.0054550855, 0.0010981691, 0.0053362558, 0.0075456025, - 0.010578934, 0.013487158, -0.002260572, -0.019104758, -0.001303953, - -0.0040658736, 0.012816896, 0.0119425375, 0.010182305, 0.0061608884, - 0.018097848, 0.018998185, -0.006518323, -0.023724256, 0.008986682, - -0.004972803, 0.012723734, 0.014718783, -0.015079353, -0.0061951764, - 0.0109799, -0.009401953, -0.01843785, -0.03194907, 0.014773141, - -0.009448289, -0.02335106, -0.024853412, 0.0036584137, -0.0041691395, - 0.025786037, -0.01791027, -0.02166455, 0.0010029647, 0.032694563, - 0.012670487, -0.016433949, 0.03130184, -0.0029557054, -0.004064263, - 0.011486413, 0.021328636, -0.0120217465, -0.014462388, 0.0024043908, - 0.018919883, 0.0063747843, -0.008308421, 0.008901448, -0.01222054, - -0.002495662, -0.011145657, 0.017897801, -0.0034437433, 0.012426575, - 0.010323693, -0.0032036721, -0.02771199, -0.015634738, -0.0024418614, - -0.0012071447, -0.0017195966, 0.019185828, 7.73927e-4, 0.017871177, - 0.0037619516, 0.0124949915, -0.010457724, -0.020596012, -0.009084084, - 0.002747022, -0.0142809665, -0.029904721, -0.0021145137, -0.015785888, - 0.018629994, 0.018075423, 0.003881263, -0.00655443, -0.008267159, - 0.031374164, 0.0110596195, -0.014446521, -0.020882979, 0.0081342235, - -0.023382861, 0.011323106, 0.019501785, -0.007138557, -0.014203722, - -0.010691879, 0.010410386, 0.008736148, -3.8952215e-4, 4.3551096e-5, - 0.009386249, 0.0019120424, 0.0139552, -0.008160111, 0.012840322, - -0.008270156, 0.0069695874, 0.03680531, -0.017565403, 0.015914602, - -0.016194241, 0.015403503, -0.017056528, -0.0034257227, 0.0013121958, - -0.0047848905, -0.005334778, 1.6065773e-4, -0.009462052, -0.0142905945, - 0.0065785414, -0.016857205, -0.012017463, -0.009518796, -0.007827805, - 0.008127896, 0.02697901, 0.010430289, 0.020882769, -0.0046879514, - -0.014997763, -1.3051274e-4, -0.0154440105, -0.0074682627, 0.0031776277, - 0.015299578, 0.0037864083, -0.021547476, -0.009644501, 0.0018094244, - 0.00193587, 0.012485269, 0.010954661, 0.0071757957, -0.007252125, - 0.021605976, 0.03564746, -0.033552304, 0.013243165, 0.007016269, - -0.02445332, 0.0027806878, -0.0075477073, 0.023630736, -0.00772145, - -0.0067346436, -0.017496811, -0.0021376943, -0.0072521125, -0.01565624, - 0.0023176407, -0.01063179, -0.018198563, 0.0034886866, 0.022019979, - 0.0021648575, 0.012795997, -0.0024813476, -0.0031467148, 0.015562767, - -0.024124261, -0.01025023, 0.015717719, -0.012157523, 0.025989749, - 0.033399493, 0.03064724, 0.020546017, 0.01942072, 0.0037469263, - -0.02002511, 0.026560916, -0.025843283, 0.010059535, -0.023663322, - 7.8537664e-4, 0.0132570425, -0.0092128655, 0.015917622, 0.010824191, - -0.017435413, 0.011706797, 0.0044114236, -0.0032639862, -0.0044728043, - 0.014151701, -0.015538546, -0.008350362, 0.008804584, -0.029739086, - -0.019094404, 5.92057e-4, 0.010065876, -1.5664365e-5, 0.018062908, - 0.014190517, 0.0033868055, 0.015415043, 0.0186847, 0.0134923775, - -0.019061638, 0.009653903, -0.015556938, 0.0052577136, -0.01568757, - -0.0022981344, -0.012677454, 0.012009842, -0.01334671, -0.030289516, - -0.009206921, -0.0124693625, 5.291451e-4, -0.00558689, 0.0017026302, - -4.7206986e-4, -0.012490248, 0.01512549, -0.027384708, -0.027141636, - 0.008938664, 0.013806853, -4.5228752e-4, 0.0050824876, 0.007510661, - 0.031137941, 0.01361742, 0.0024301615, 0.01145687, 0.016208734, - -0.015973879, -0.027540168, 0.01119209, 0.012642361, -0.014661303, - -0.02259286, -0.003697361, 0.0046897936, 0.0077551575, 0.014570396, - 0.0023776628, -0.021433879, 0.0038869644, 0.0046918485, -0.019962324, - 0.009491269, 0.008988718, 0.0059679993, -0.0202092, 0.008805799, - 0.01721845, -0.029702, -0.034958426, 0.0013003934, -0.015047766, - 0.004141163, -0.0037485831, -0.036185645, 0.03509148, -0.0072563407, - 0.01364898, 0.025114732, 0.005575376, -0.015814045, 0.008252104, - 0.0013995445, 2.7804915e-4, 0.008957266, 0.009873736, 0.011941759, - 0.0100488635, 1.8926067e-4, -0.0017594071, 0.016441321, 0.028972855, - -0.0036039941, -0.024229828, -0.025891088, -0.013739428, -0.0014127364, - 0.012032537, 0.016842002, -0.016000869, 0.014164019, -0.0057680514, - -0.009715688, 0.0015992338, -0.01990292, 0.014637128, -0.0012368308, - -0.018511742, 0.018902956, 0.012695457, 0.0014474544, -0.0056204097, - -0.0028751618, 0.019471342, -0.014950296, -0.009310241, 0.00779211, - 2.7472657e-4, 0.0071551916, 0.0012041286, -0.023319736, -0.018650614, - 0.0017945635, 0.036857143, -0.0011257102, -0.01467659, 0.017830504, - -0.010030102, -0.045827985, -0.018721616, -0.0022632757, -0.0063112117, - 0.006933382, -0.0024735802, 0.0223232, -0.026424982, -0.017973552, - 0.0049166046, -0.0034936822, -0.013868403, 0.032344088, 0.02989178, - 0.002342775, 0.020184124, 0.0057104803, 0.0026031616, -0.006302999, - 0.013098137, -0.006611366, 0.021225082, 0.0066421493, -0.011007267, - -0.03707465, 0.010659543, 0.004811225, -0.02002846, 0.0037524346, - 0.03862821, 0.0048062694, 0.0014362877, -0.024786541, 8.514881e-5, - -0.008275908, 0.004615993, -0.01917164, 0.009781791, -0.0055184234, - 0.004611983, -0.008775194, -7.9898036e-4, -0.004567465, -0.0050709373, - -0.010784423, 0.001004509, -0.031442463, 0.017830966, 0.010893412, - -0.016916582, -0.0028327918, 0.012742862, -0.021603895, 0.0052029337, - 3.1663862e-4, 0.028091395, 0.01260711, 0.01630695, -7.642992e-4, - -0.016322544, 0.012071509, 0.00559797, 2.0854703e-4, -0.009127904, - 0.0147517845, -0.005129887, 0.0091662975, 0.009171399, -0.021577032, - -2.051539e-4, -0.0063495585, -0.00918188, -0.002405474, -0.026946925, - -0.008949181, -0.028459605, 0.0015406773, 0.0064049703, 0.0036051935, - 0.0027763257, 0.0053826775, 0.0089632785, 0.006608313, 0.025440726, - 0.017468734, -0.019065216, 0.016891835, 0.005796803, 0.006555973, - -0.0010971996, 5.362079e-5, 0.030267058, -0.02099712, -0.03973166, - -0.013444498, 0.0023677642, -0.027136538, 0.011795354, 0.017758261, - 0.013622332, 1.9705371e-4, 0.011467174, -0.0074770786, -0.0023703175, - -0.012557272, 0.014417071, 0.0056427545, 0.013858169, -0.02506705, - 0.014425909, 0.015758056, 0.013134154, -0.037469547, 0.0057708113, - 0.024225926, 0.008812716, 0.01449262, -0.0053197024, 0.01021749, - -0.007406977, 0.0013245501, -0.014264892, 0.0019395989, 0.025568977, - -0.021652054, 0.002725656, 0.00880005, -0.0033649525, 0.026477411, - 0.020515816, -0.037101794, -0.005518747, -0.007330172, -0.0042671403, - -0.013689616, -0.029457103, 0.018427795, -0.013060803, 0.004598227, - 0.016855044, -0.0062824073, -0.005834124, 0.011595604, -0.015127197, - 0.010536572, 0.002044421, -0.027690383, -0.013419826, -0.033530656, - -0.015981525, 0.008997565, -0.03141838, 0.025330056, 0.011702217, - 0.029720573, 0.0035019508, -0.002371858, -0.019122003, 0.0054814015, - 0.021533731, 0.0030700604, 0.012587583, -0.010808792, -4.8724594e-4, - 0.016644737, -0.013242272, -0.0179639, 0.0015964183, 0.008365634, - -0.007953709, -0.008004708, -0.021897802, -0.015455051, -0.006582511, - -0.0064433827, 0.0336701, -0.0016912009, -0.002624448, -0.010724521, - -0.005969012, 5.123227e-4, -0.0055766217, -0.01557756, -0.0073619126, - 0.018155731, 0.007587897, 0.0077461363, 0.003975737, 0.0011679748, - 0.017185517, -0.0011459978, 0.03528196, 0.004720171, -0.017312607, - -0.0037011667, -0.013993513, -0.017854467, -0.008389842, 0.0075259074, - 0.0011444387, -0.009652211, 2.3731818e-4, -0.018958163, 3.8998903e-4, - 0.027565327, -0.011802647, -0.010797422, 0.024334706, -8.719101e-4, - 0.015889252, -0.010896026, 0.030343903, -0.008261563, 0.011428173, - 0.017809566, -0.013832992, -0.02008289, 0.04865917, -0.015167211, - -0.028712729, -0.027934715, 0.013295011, 0.0058872355, -0.0058578067, - -0.0044166897, 0.00858735, 0.002231399, -0.013584938, 0.022421943, - 0.020503247, 0.0022594347, -0.009199568, -0.013820689, 0.011479244, - 0.0045468695, -0.012543784, -0.0030710986, 0.004702723, -0.016629975, - 0.005565339, 0.028057946, -0.0038372562, -0.020672193, -0.0040703914, - -7.2504993e-4, -0.0038224142, 1.5558395e-5, -0.0047789225, -0.010028945, - 0.0034553946, -0.008995067, 0.025278786, 0.0029209987, -0.011464472, - 0.015648032, -0.006866846, 0.0078771645, -0.009762388, 0.0047248234, - 0.009576219, -0.001253747, 0.0018080453, -0.013703272, -0.011079396, - 0.030310074, 0.0078111365, -0.0078187585, 0.009005869, 0.026830228, - 0.0155276535, -0.019113502, 0.0019591074, 0.023442008, 0.0055276817, - 0.004517688, -0.020342972, -0.021808084, -0.012403276, -0.010718256, - -0.005946667, -0.015043702, 0.009397009, 0.016506974, -0.0094956625, - -0.028781489, 0.0150692435, 0.022226667, 0.012002486, 0.019495873, - -0.020490076, 0.0063071144, 0.013422339, -0.0048563024, -0.0068650935, - 0.01638706, -0.03851634, -0.013028627, -0.0066947658, -0.03320314, - 0.0025088028, 0.007852934, 0.0034750446, 0.02645892, -0.04301375, - 0.039720196, 0.020579845, -0.04370893, 0.0018408028, -0.02265403, - -0.023597768, 0.009780906, 0.019883433, -0.009552753, 0.024186188, - -1.9120271e-4, 0.007769624, 0.010799386, -0.02292548, -0.0034844761, - -0.0071871127, -0.0015631133, -0.02464099, -0.0037306866, 0.0072143273, - 0.0027726446, -0.00120506, -0.009067588, -0.0027939053, -4.0346154e-4, - 0.012735869, 0.010085938, 0.025751842, -0.016324934, 0.0037429684, - 0.021159487, 0.01665836, 0.016625619, -5.7513325e-4, 0.016176287, - -0.021276208, -0.0027737292, 0.026588859, -0.0023021298, -0.007814671, - 0.008663005, -0.02494743, -0.0031924092, 0.014764376, 0.006922614, - 0.025672862, -0.020142887, -0.001995834, -0.010601291, -0.028629776, - -0.032981224, -0.01406853, -0.019434117, -0.014247515, -0.025296405, - 0.01694875, 0.015736207, -0.027999597, -0.0012595177, 0.022054836, - 0.017995847, 0.0144144455, -0.002381245, 0.0064155324, -0.035323605, - 0.006715588, -0.019370437, 0.003728794, -0.031764984, 0.0145371165, - -0.027157128, -0.013639643, 0.015784558, 0.0017282707, 5.0774263e-4, - 0.016098378, 0.013546531, 0.01909138, 0.003909779, 0.016389614, - 0.0231303, 0.019171368, -0.0032624141, -0.007659165, -0.022744598, - 0.014580151, -0.007720459, 0.042491548, -0.011515005, -0.0019648913, - 0.0019024475, -0.0024998223, 0.0064303293, -0.0027005405, 5.113891e-4, - -0.014883847, 0.015830375, -0.029514771, -0.0071987747, 0.003863626, - -0.0074324617, -0.009411103, -0.020948831, -0.01443703, 1.8080527e-5, - 0.001143551, 0.024607634, -0.011983817, -0.008984957, 0.024487847, - -0.0061116866, 0.023090312, -0.013689947, -0.0023730868, 0.0054823803, - 0.02710725, 0.012125587, 0.028054139, 0.023764817, 0.0026428397, - -0.0062716412, -0.016076332, 0.027122056, 0.0041198386, -0.011193521, - 0.016725298, -0.0033946445, 0.0077563077, 0.01632265, -0.016692344, - 0.009479657, 0.003970693, -0.01989447, 0.011875851, 0.0103746895, - -0.004158802, 0.001733403, -0.017740613, 2.599385e-4, 0.009660334, - -0.01521587, 0.00660068, 0.003572153, -0.038881116, 0.023091234, - -0.006299821, 7.897812e-4, -0.01736316, 0.0013688139, 0.0036343576, - 0.023946168, 0.015032084, -0.006374127, 0.009647224, 0.01804539, - 0.0313776, -0.0106211705, 0.010443981, -0.003788959, 0.039981805, - 0.0020723743, 0.011137816, -0.0045963014, -0.008701979, 0.0035810166, - -0.011953902, 0.0016263028, 0.011504902, -0.0020828312, 0.028406337, - -0.013303342, -0.028497398, -0.010142272, -0.043540526, 0.0124725895, - 0.006473392, -0.016218154, 6.0003466e-4, -0.016112227, 0.0021776073, - -0.008438139, -0.010121407, 0.008020738, -0.005571714, -1.5346504e-4, - -0.018842598, 0.026921244, 0.0044006845, -0.015322053, 0.011227277, - 0.007839148, 0.0041492684, -0.03036969, -4.807768e-5, -0.02204732, - -0.0032067497, 0.021972144, 0.0036546595, -0.0053541437, 0.010684422, - -0.007689062, -0.0026028296, 0.02651243, 0.009842395, 0.005617308, - 0.0018357558, -0.014839611, -0.002691057, -0.002688389, 0.016139612, - 0.021684187, -0.02213598, -0.0056020394, -0.0045425138, 0.008787603, - 0.011665524, -0.024355631, 0.013812742, -0.005562662, 0.0024010877, - -0.012101857, -0.017538225, 0.010822113, -0.017573994, 0.021269625, - 0.008016537, 0.015416633, -0.024276556, -1.4262838e-5, -0.014683554, - 0.008499346, 0.008860757, -0.0041336077, 0.028444123, 0.008372, - -0.013467712, 0.00904411, 0.0017953207, -0.00923199, -0.01646255, - 0.009893833, -0.027841642, -0.017312583, 0.010097114, -0.018445762, - 0.0057615084, 0.0014902924, -0.015797764, -0.0059009604, 0.01200772, - -0.03113888, -0.00591429, 0.0027786833, -0.009074314, -0.0017734889, - 0.006297671, -0.012921229, -0.012879133, -0.0061384295, -0.009607755, - -0.003702191, -0.011553778, -0.018928431, -0.012463638, -0.014008683, - 0.035455186, -0.01647586, -0.002166927, -0.00583328, -0.010800596, - -0.00829674, 0.017242158, 0.022325985 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.0054768645, -0.002850648, 0.045677762, -0.028940149, 0.0051002093, - 0.02505331, -0.0254043, -0.016084969, 0.0036289694, 0.048896123, - -0.004672456, -0.004065955, 0.046304386, -0.0031047582, -0.023252638, - 0.011510517, -0.0052073845, -0.004828975, 0.014818107, -0.011507312, - 0.024000049, -0.03138923, -0.04838895, 0.09160282, 0.01066765, - -0.03487143, 0.031970352, 0.01843411, -0.006121091, -0.04309288, - 0.018392906, 0.03112728, -0.049999774, -3.138583e-4, -0.028308703, - 0.020088034, 0.010109187, 0.017182542, 0.025682708, -0.012885414, - -0.0077701504, 0.0039266977, 0.02017281, -0.019460002, -0.007900792, - 0.013778785, -0.0153971715, -0.024695378, 0.06971629, -0.01598396, - -0.026603509, 0.046602517, -0.004438057, -0.027355311, 0.007922827, - 0.008351093, -0.015544919, -0.016027309, 0.024141237, 0.044965975, - -0.019508878, -0.0020185616, 0.008438915, 0.0180512, -0.041944224, - 0.015892133, -0.01322133, -0.0129116895, 0.02050918, -0.07044486, - 0.039847422, -0.0016130153, -0.009322935, 0.0023490312, 0.016004253, - 0.026529912, 0.0033492313, 0.019575182, -0.0027874648, 0.040140957, - -0.008584931, -0.023728868, -0.058881376, 0.0040482944, 5.9518374e-5, - 0.010922653, 0.03505403, 0.03239312, -0.007507463, 0.0044583133, - -0.017805649, -0.0057424605, -0.06547148, 0.014593046, 0.018301914, - -0.008733456, -0.020545403, 0.053097732, -0.037118666, 0.030844476, - -0.01052429, 0.009126852, 0.030296316, -0.04626551, 0.019003307, - 0.035882205, 0.05473352, 0.013579511, 0.060333125, -0.02940418, - 0.09741775, 0.050875213, -0.05089795, -0.019832937, 0.0094269, - 0.0022412648, -0.015417257, -0.020158214, 0.03659057, 0.031073539, - 0.007420304, 0.02021927, -0.007162874, 0.005858243, -0.028472256, - 0.04076664, 0.030173253, 0.026198035, 0.016574532, -0.040267695, - 0.013090157, -0.026260903, -2.555155e-4, 0.0016325482, 0.005495016, - 0.054766983, 0.019635422, -0.019886395, 0.021920824, -0.012989887, - -0.009182052, 0.017317532, -0.044787444, -0.0037312717, 0.037827447, - 0.008003767, -0.036744677, -0.028471822, -0.032256998, -0.0035726656, - 0.0052565094, -0.029213535, -0.014074156, 0.0404909, -0.05914275, - 0.043709997, 0.041711614, -0.025036521, 0.06704238, 0.018463045, - -0.042435568, -0.0016264485, -0.010941339, -0.001717409, 0.012842685, - -0.053278815, -0.021101179, 0.017871393, 0.02927316, 0.032627564, - 0.0118852435, -0.03270546, 0.029402815, -0.021670356, -0.035695124, - 0.0033501466, -0.00516599, -0.008277496, -0.04372902, 0.025720391, - -0.0042536748, 0.06318655, -0.02448945, -0.04919526, 0.027546965, - 0.04372978, 0.013239568, -0.023470651, 0.024656054, 0.012647264, - 0.03061386, -0.008679265, 0.036178138, -0.0027911419, 0.010174512, - 0.020466866, -0.058096763, -0.0025399532, -0.024786996, -0.015026818, - -0.015204757, 0.028679851, 0.019633919, 0.011388314, 0.016066454, - 0.03026181, 0.034010302, -0.0023153536, -0.024539646, -0.0036557624, - 0.033202007, -0.041223362, 0.045755275, 0.026576402, 0.0066466792, - 0.003950226, -0.004648698, -0.02828372, 0.02436177, 0.014739232, - -0.005525737, -0.03509226, 0.019804884, 0.054282546, 0.030153798, - 0.0067624045, 0.06456683, 0.06959536, 0.012638956, 0.012387644, - -0.017535158, -0.026881985, 0.0063573364, 0.025808385, 0.06069483, - -0.04976962, -0.046611484, -0.016262943, -0.011584953, 0.013504826, - -0.0059949625, 0.029549012, 0.037452072, -0.0186972, -0.031375915, - -0.019663269, 0.010257038, 0.054518934, 0.02882934, 0.037918784, - 0.026747074, 0.02632867, -0.00883061, -0.04301286, -0.04025349, - 0.032856584, -0.017275447, 0.015466996, -0.0036572854, -0.0046274764, - 0.016779315, 0.0032391667, 0.0270511, -0.038185645, -0.020463442, - -0.048494045, -0.0014672081, 0.0185093, 0.019961918, -8.857697e-4, - -0.0817332, -0.013105368, 0.021990336, 0.017918505, 0.009399237, - 0.018576564, -0.027105799, -0.0024808988, 0.02810134, -0.03706639, - -0.009268558, 0.013113488, -0.008115214, -0.03232671, 0.04964893, - -0.04565401, -0.040864088, 0.042141385, 0.0055559715, 0.040044047, - -0.060381074, 0.036552668, -9.14685e-4, -0.016385734, -0.048381347, - 0.012123451, -0.0050294315, 0.04079951, -0.01620015, 0.014338633, - -0.0016822345, 0.035807095, 0.035234895, 0.0023119242, -0.026563594, - 0.024757355, -0.1110163, 0.04658056, 0.0030283239, -0.045680285, - -0.0046572196, 0.015216036, -0.013342797, 0.01909372, 0.029614855, - -0.013933918, -0.0039795768, -0.031070432, -0.013776245, -0.029120814, - -1.2990998e-4, 0.06954798, -0.010678675, -0.018109355, -0.018555526, - -0.010387221, 0.001273386, 0.0087109255, 0.053366344, -0.02791446, - -0.013317226, 0.023377176, -0.03095925, 0.028900232, -0.03918617, - -0.009924026, 0.011582709, -0.015530621, -0.008994083, 0.010568232, - -0.02935584, 0.04641076, -0.024962915, 0.043566614, 0.028808143, - -0.044109743, 0.06771811, 0.032125536, -0.002857488, 0.052547086, - -0.021464037, 0.027375892, -0.008916875, -0.008533924, 0.0117459055, - 0.06131569, 0.041494448, -0.018537685, 0.004654718, 0.04148588, - -0.023955956, 0.012889839, 0.008773015, -0.01269987, -0.02731482, - 0.03985889, -0.026174758, 0.007121113, 0.0027836051, -0.047005422, - 0.06954838, -0.04975845, -0.0018597007, 0.011463994, -0.06380978, - 0.026173541, 0.009120697, -0.038284548, -0.033853304, 0.051770076, - 0.027065236, -0.07371441, 0.016905725, 0.016251767, -0.036184452, - 0.0010402848, 0.06373553, 0.0044328086, -0.019465784, -0.03346573, - 0.0068762125, -0.07086332, 0.021796454, 0.017614368, -0.033318736, - 0.020478727, -0.020967647, 0.015269397, -0.050607163, -0.026782185, - 0.020303108, 0.003022443, -0.017932754, -0.0142806675, -0.012788701, - 0.014265264, 0.026891885, 0.036480773, -0.02568402, 0.03550474, - -0.014662296, -0.01651608, -0.0066782483, -0.014010058, 0.0724965, - -0.060756292, 0.03431407, -0.012404447, -0.03285006, -0.018450096, - 0.06457059, 0.046959564, -0.015495377, 0.046982348, 0.035357423, - -0.04944575, -0.028499229, -0.021108696, -0.023458187, 0.02100822, - -0.018504782, 0.0022041474, 0.00874312, -0.020632733, 0.03969349, - -0.018478733, -0.063523486, 0.022896025, -0.022371138, -0.014460613, - 0.013367863, 0.045838114, -0.017296989, -0.038498685, -0.029406704, - 0.00890654, -0.005876559, 0.055191107, -0.016072502, 0.013526363, - 0.022423474, 0.017063374, -0.05300227, -0.010613865, 0.0045857625, - 0.03639096, -0.008373214, -0.016987406, 0.04895461, -0.025697028, - 0.025044039, -0.005607198, -0.010249361, -0.006478417, -0.040186174, - -0.031334974, 0.021125732, 0.033335667, -0.06915381, 0.022843026, - -0.08138054, 0.06703513, 0.038541622, -0.00361346, 0.001579152, - 0.046135966, -0.021182463, -0.038032673, -0.040045973, 0.05698793, - 0.022679688, -0.06663669, -0.04406716, -0.006680047, -0.025712473, - 0.013664312, -0.033783723, -0.04689915, 0.008258452, 0.0027541704, - -0.025413377, 0.009822776, 0.013508261, -0.03327279, 0.040121436, - 0.035585936, -0.03473121, 0.02573996, -0.04594365, -0.0014651709, - 0.038593315, 0.005334368, 0.05428071, 0.009253059, 0.037419785, - 0.038667858, 0.019372718, -0.03907521, 0.022361727, -0.069372736, - 8.5232663e-4, 0.019942561, 0.008234199, -0.0042175, -0.012959788, - 0.061232634, 0.024810554, -0.056459513, 0.0041186074, 0.010015441, - 0.05193037, -0.025649937, -0.03440382, -0.054548744, 0.0277709, - -0.032793038, 0.030503675, -0.018137172, 0.0034536168, 0.010391562, - -0.018268678, 0.014664342, 0.017359946, -0.0018816658, -0.04849439, - -0.007908354, 0.009602034, 0.005266623, 0.0011922481, 0.013159249, - -0.0326332, 0.014583068, -0.047952976, 0.018884417, 0.0053184386, - -0.012722994, 0.09752992, 0.023009019, 0.012238107, -0.0010573249, - 0.004491493, -0.02235545, -0.02543986, 0.01239543, -0.047336232, - -0.025593556, -0.012534607, -0.05527965, -0.03633202, 0.00764687, - -0.014580916, 0.010885675, -0.014676313, -0.023482068, -0.009408059, - 0.019321866, 0.046626084, -0.008519009, -0.036775786, 0.065044045, - 0.030886235, 0.019954193, -0.002412962, -0.009145453, 0.021573579, - -0.02019543, -0.031875584, -0.020128103, -0.052033223, 0.05406702, - 0.047412455, -0.0064411378, -1.13002076e-4, -0.059966497, 0.0016363156, - 0.048190076, -0.0102426885, -0.0113787865, 0.018799005, -0.038411386, - 0.018603602, 0.0450779, -0.009979209, -0.03025898, 0.020747416, - -0.0027480265, 0.01597406, -0.0034448402, -0.022445392, -0.029095111, - -0.035319526, 3.203743e-4, 0.017256252, -0.02517142, -0.0053747226, - -0.003926164, -0.0119572105, -0.0046704854, -0.0423901, -0.025908459, - -0.027271282, 0.022977564, 0.03290127, -0.034772325, -0.03223378, - 0.03879646, 0.0015636191, 0.03059179, 0.01726787, 0.00637381, - 0.002436463, 0.08464991, 0.027703937, 0.02137199, 0.019018937, - 0.018098691, -0.051374625, -0.039039344, 0.037129454, -0.03402893, - -0.054205224, -0.024278676, -0.030780213, 0.048404153, 0.008742718, - 0.03155143, -0.092363946, 0.0052111307, -0.030332573, 0.03318344, - -0.019825488, -6.458202e-4, 0.023933308, -0.022087319, 0.0011940702, - -0.04814605, 0.015886597, -0.029142512, 0.058360554, 0.021886954, - -0.0419014, -0.043618735, -0.0050570327, 0.048174556, -0.041150633, - 0.009641928, 0.0409025, -0.005538415, -0.0028238671, 0.065597594, - -0.0154797705, 0.021951854, 0.045292392, 0.016925713, 0.0017266899, - 0.013363486, -0.011070514, -0.02905411, -0.0073613785, -0.0128072165, - 0.024441868, -0.018997617, -0.034095548, -0.006639638, 0.036733653, - -0.016188536, -0.04252125, 0.05138997, -0.016611448, 0.01191009, - 0.03900303, -0.07389236, 0.024371594, 0.00814323, 0.0011862557, - 0.028337322, -0.023696218, 0.020138014, -0.08493134, -0.025337875, - -0.021083657, 0.04214281, 4.424365e-4, 0.004393723, 0.05387956, - -0.062211357, -0.004599871, 0.016474068, 8.7639893e-4, 0.052759062, - -0.015172392, 0.035701465, -0.03034164, -0.026682615, 0.0073003443, - -0.021592712, -0.021498566, 0.0134172775, 0.011937525, -0.010407639, - -0.072222464, -0.04975309, -0.009760861, -0.014916214, -0.01522947, - 0.004977138, -0.009043017, -0.04657873, -0.0109481355, -0.021258857, - -0.047569342, -0.010217395, 0.039030757, -0.06241099, 0.027542455, - -0.004241086, 0.011123978, -0.0052130083, -0.023728944, -0.051856138, - -0.0018130814, -0.01915415, -0.032832343, -0.017498396, -0.0038321745, - 0.024460662, -0.04167648, 0.003601037, 0.022761518, -0.015818585, - -0.03859483, 0.006070293, -0.0017717646, -0.011840234, 0.015715953, - 0.010016283, -0.027590549, -0.006068542, 0.02580513, -0.02958731, - -0.013318197, -0.03632809, -0.007059151, -0.019223003, -0.022287589, - -0.010342529, -0.009400703, -0.041314375, -0.02630151, -0.005000825, - 0.030165846, -0.051517844, -0.0022688198, 0.008317502, -0.012409495, - -0.0070330864, -0.041792493, 0.019580109, 0.030507464, 0.027717315, - -0.0066044647, -0.030408965, 0.0050752526, -0.02083747, 0.06541528, - -0.051723003, -0.060528945, -0.059177626, 0.00481575, 0.013473684, - 0.014589542, -0.0014195315, -0.02290354, -0.013218056, 0.013453293, - 0.009913399, 0.020595329, 0.016131533, -4.397665e-4, -0.059197772, - -0.011902498, 0.01270909, 0.018411834, -0.020362776, -0.04287378, - 0.0050024996, 0.026592221, -0.07198201, 0.041466884, -0.031691484, - -0.027001394, 0.017295016, 0.014093339, 0.0023055093, 0.031707045, - -0.027795028, -0.0037860216, 0.012871839, 0.05152106, 0.017744724, - -0.017857796, 0.03296502, -0.026620613, -0.022717694, 0.012355974, - 0.014278907, 0.027871754, -0.0044224537, 0.038301665, -0.013913487, - 0.009300663, 0.031463347, -0.009627115, -0.03068965, -0.017758388, - 0.020912932, 0.0151913, -0.021998394, -0.016271163, 0.007269703, - 0.08089957, -0.03196092, 0.0026360843, 0.07527367, 0.015474895, - 0.016803183, 0.0014807127, -0.026588146, 0.050531443, -0.06634595, - 0.013308579, -0.007392756, -0.057419006, 0.020494305, 0.017805, - 0.0020914392, 0.0041177375, -0.0051607345, -0.031605948, -0.02714484, - 0.04500541, -0.085843526, 0.03045428, 0.020614984, -0.041543968, - -0.011694359, 0.019502439, 0.0073382664, 0.02586598, -0.030323366, - 0.0062833233, -0.025419699, 0.028642427, -0.010588261, 0.05297546, - -0.039683014, -1.0027799e-4, -0.04352698, -0.015452544, -0.011692121, - -0.016668567, 0.008725811, 0.027374404, -0.01128228, 0.045242917, - -0.010747797, -0.037083108, 0.029150132, -0.0051308693, -0.009801588, - 0.011476543, -0.08205186, -7.4894715e-4, -0.0055880765, -0.005912121, - -0.086179875, -0.021137109, -0.03210028, -0.005683198, -0.033254966, - 0.05815972, 0.052253164, -0.014153562, -0.07315193, -0.029156148, - 0.05257057, 0.005015253, -0.0045386637, 0.0192211, -0.04026408, - -0.038081955, 0.0032319785, -0.045631208, 0.01651917, 0.008315501, - 0.044742096, 0.043728046, 0.005628423, 0.0046546324, -0.03704829, - -0.0022657334, -0.0062448825, -0.010642335, 0.041271072, -0.02570556, - -0.002939132, 0.005285924, -0.0133269895, -0.034709185, -0.0014524674, - 0.0017831023, 0.044358607, -0.012178554, -0.027109716, -0.014839081, - -0.012700178, 0.004269627, -0.047595758, 0.029130293, -0.029162083, - 0.03517865, -0.017390562, -9.919968e-4, -0.009794824, 0.006360309, - 0.073879644, 0.003986061, 0.048687544, -0.0011086254, 0.009580604, - -0.014018426, -0.015379317, 0.050906904, -0.004763678, -0.018998355, - -0.072254695, -0.030032294, -0.03278613, 0.0087292055, -0.0033989733, - 0.017902354, -0.05538393, -0.07913102, 0.018868703, 0.023492735, - 0.015420397, 0.0011352304, -0.014415338, 0.009974186, 0.0034090464, - -0.010094788, -0.026120476, 0.0012483652, -0.005451714, 7.9806504e-4, - -0.011266895, -0.04940246, -0.010436947, 0.03827275, 0.06697998, - 0.02852148, -0.004323498, -0.05996084, 0.015880544, -0.0069419662, - -0.011970036, 0.0055828467, 0.011698266, 0.06722064, -0.0067425068, - 0.038057234, 0.05509627, -0.042252306, 0.023033258, -0.010378498, - -0.02648992, -0.038617652, 0.02924414, 0.039804135, -0.032746695, - 0.015754689, -0.030826842, 0.056338694, -0.059442725, 0.009422195, - 0.068117306, -0.00882995, 0.017095285, -0.005564191, 0.015561042, - 0.0036703718, 0.041699447, 0.07579778, -0.012328552, -0.015056056, - -0.038935095, -0.045466885, -0.01461089, -0.0011196939, 0.012706257, - 0.010146414, -0.029350113, 1.6288437e-4, -0.012806484, -0.02673419, - -8.598077e-4, 0.02251738, -0.033353634, -0.04174821, -0.036757194, - 0.0122033395, -0.004679438, -0.025361463, -0.026357623 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + -27517622400000 + ] + }, + "vectorValues" : { + "features" : [ + 0.026766865, + -0.005005164, + -0.009573154, + 0.0229686, + 0.010558052, + 0.005397114, + -0.024898924, + 0.005200391, + -0.007414086, + -0.0028702307, + -0.015328288, + -0.011492016, + -0.005514382, + 0.0114213815, + 0.0021235393, + -0.0033778762, + -0.010596702, + 0.037958585, + -0.020883292, + -0.0044557666, + 0.005038591, + 0.021339197, + 0.015495408, + -0.009086225, + 0.009895005, + 0.0061123716, + -0.0014080075, + 0.01448023, + -0.014311077, + 0.00894366, + 0.032040183, + 0.005501953, + -0.014212214, + 0.03291799, + 0.00856356, + -0.012758053, + 0.014585118, + -9.409866E-4, + 0.030353, + -0.013164264, + -0.015539447, + -0.02531828, + -0.030707033, + 0.020379012, + -0.0060149287, + 0.003226537, + -0.028991358, + 0.025465472, + -0.008156905, + 0.025424354, + 0.009029106, + 0.020385679, + -0.008969966, + 0.00610694, + 0.0011196436, + 2.9877658E-4, + -0.020605441, + -0.007259069, + -0.01338958, + 0.016114721, + -0.008196401, + -0.030406991, + -0.0014718189, + -0.0035912665, + 0.020877374, + -0.006210989, + 0.030014947, + -0.01234137, + 0.0031033158, + 0.0032056614, + 0.014840437, + 0.00974881, + 0.020471044, + -0.008456027, + -1.2288768E-4, + 0.009231567, + -0.024949536, + -0.0069482457, + -0.009442377, + -0.011926896, + -0.02268012, + 0.008620816, + 0.021452505, + 0.01864419, + -0.0024122673, + -0.020089807, + 0.050036907, + 0.04167241, + 0.0035476496, + 0.016053878, + 0.032404613, + 0.0135960085, + 0.006775766, + -0.012557343, + 0.0042027915, + -0.00460987, + 0.004564644, + -0.01269127, + -0.020417824, + 0.010513822, + -0.0074077165, + -0.003644378, + -0.013111903, + -0.0043711415, + 0.018926555, + 0.0085422555, + 0.007383968, + 0.016349012, + 0.020353386, + 0.02537284, + 0.008067566, + 0.010817473, + -0.004794078, + -0.015987676, + 0.017417055, + -4.010039E-4, + 0.0030934901, + -0.01027229, + -0.019850112, + 0.018927278, + -0.036173414, + -0.0021325322, + -0.008437799, + 0.013418887, + -0.004833519, + 0.021468518, + -0.015326776, + -0.016751282, + -0.011551061, + 0.0022240959, + -0.0047136666, + -0.011240484, + -0.0013796283, + -0.0069020437, + -0.00349178, + 0.008281267, + -0.010907419, + 0.022392405, + -0.008618874, + 1.2908522E-4, + 0.011505303, + 0.007591624, + -0.02799528, + 0.033858072, + -0.008776187, + -0.012912423, + -0.014357081, + -0.007857329, + 0.0041920603, + 0.0053325766, + 0.007709147, + -0.018157367, + -0.006059173, + 0.0054445, + 0.005230153, + 0.014521075, + 0.005007374, + -0.013553798, + 0.009820689, + 0.021360187, + -0.011709239, + -0.009308705, + 0.016372448, + 0.006998438, + -0.018096985, + 0.007555727, + -0.007643025, + -0.022337355, + -0.009154281, + -0.03437236, + -0.017267369, + -0.0044456283, + -0.00630087, + 0.01120918, + -0.012847352, + -0.006829879, + 0.0050654514, + 0.0032094428, + 0.02740296, + -0.0019849285, + 0.016295671, + 0.0070009567, + -0.00797814, + -0.005310735, + -0.0075016506, + -0.018307561, + -0.01783501, + -0.0046095224, + 0.008460693, + 0.037370216, + 0.0146770105, + 0.015672484, + -0.026556225, + -0.010979238, + 0.014209902, + -0.020012341, + 0.0074134283, + -0.0030131584, + -0.010004393, + 0.0019722164, + 0.014820484, + -0.005755238, + 0.003984864, + 0.008968093, + -0.021791238, + -0.020677308, + -0.010000527, + -0.002497754, + 0.012693354, + 0.013331236, + -0.010531218, + -0.0017861181, + -0.026329353, + -0.038178816, + 0.0037899783, + 0.019594565, + -0.01317665, + 0.0147461165, + -0.0033971767, + 0.024340207, + 0.010503216, + 0.009915346, + 0.022481011, + 0.016594885, + 0.003439624, + 0.0054494003, + -0.008626941, + 0.015898071, + 0.018455489, + -0.015844245, + 0.015800716, + -9.5540617E-4, + -0.013868961, + -0.009923759, + 0.02776732, + 4.7547705E-4, + 0.0033340997, + 0.021056518, + 0.0063470607, + 0.0012605003, + -0.0043301415, + -0.01483973, + -0.019233512, + 0.017128147, + 0.0027648408, + -0.0015906133, + -0.018532962, + 0.010388365, + -0.038486324, + 0.0020633147, + 0.0025017995, + 0.02129594, + -0.0066549317, + 0.020656804, + 0.02719566, + -0.01312886, + -0.010414034, + -0.04300376, + -0.01580174, + -0.00361811, + -0.023474377, + -0.039167885, + -0.023765223, + 0.0067297732, + -0.016283737, + 0.02474356, + 0.001537039, + 0.011426581, + -0.0033125703, + -0.01251005, + -0.009662567, + -0.0011990087, + 0.0064556263, + -0.014936479, + -0.0060598026, + -0.022629596, + -2.960886E-4, + -0.0013361234, + 0.004205033, + -0.018352533, + 0.0062271454, + -0.009708646, + -0.027376344, + 0.0075647924, + -0.013444611, + -0.0014344779, + 0.005914378, + 0.03926101, + -0.0110584535, + -0.025078597, + 0.0019971274, + -0.012056836, + 0.029539842, + -0.012542863, + -0.012148876, + 0.0046292, + 0.020733884, + 0.0076736226, + -5.062461E-4, + 0.015221117, + -0.014531571, + 0.016666805, + -0.0027917917, + 0.042232733, + -0.010409283, + -0.01135313, + -0.023808498, + -0.026714109, + -0.027243383, + -0.042567853, + 0.0025682326, + 0.004930204, + 0.004690056, + 0.016760547, + -0.00305375, + -0.002287964, + -0.015988164, + 0.0015297009, + -0.013919293, + -0.008072329, + -0.0038664427, + 6.175826E-4, + 0.014393318, + -0.008518042, + -0.0065220855, + -0.0030544514, + -0.0106309885, + -0.034177754, + -2.7663464E-4, + -0.023091448, + 0.013478695, + -0.0108093005, + 0.0060804375, + -0.005084701, + 0.0073283804, + -0.008561289, + 0.008910886, + 0.02173924, + 0.008940342, + -0.01117258, + 0.026498327, + 0.001043365, + -0.013704554, + 0.038762342, + 0.005015775, + 0.019510472, + -0.010971955, + 0.011701208, + -0.02350764, + 0.042105533, + 0.0032495013, + 0.023766253, + -3.5812857E-4, + 0.02204541, + 0.0073971804, + 0.010747519, + 0.0233955, + -0.028935714, + -0.048687775, + -0.0061953207, + 0.008112798, + 0.021952948, + 8.9513004E-4, + -0.002382413, + 0.024891641, + 0.006678003, + 0.0054963683, + 0.013099657, + -0.0034734092, + -0.0120927235, + -0.0069130226, + -0.008245353, + -0.0066862535, + -0.0067691137, + -0.016595243, + 0.024262302, + 0.020416537, + 0.0055131703, + -8.4633415E-4, + 0.004078862, + -0.0056371074, + 0.02185618, + -0.0053996816, + -0.021161849, + -0.012632467, + -0.016045712, + -0.0069608567, + -0.00432099, + 0.008126152, + 0.0063717584, + 0.02671253, + 0.0012843494, + -0.037539694, + 0.023754355, + -0.042383086, + -0.027041573, + 0.013291624, + 0.004891852, + -0.016850904, + -0.010900015, + 0.0074053407, + 0.011497684, + -0.005849133, + -0.005583378, + -0.0063676946, + -0.007075716, + -0.009005901, + -0.0063924254, + -0.008128115, + 0.008322961, + 0.007838313, + -0.0062203, + 0.013690314, + -0.0011617608, + -0.012660278, + 0.0038129892, + 0.042314067, + 0.018574715, + -0.034226295, + 0.010030421, + -0.00424149, + -0.0075981338, + 0.003149964, + -0.008997763, + -0.007814407, + 0.00797623, + 0.0022599464, + 0.022943957, + -0.0097276755, + -0.008898846, + 0.0017763101, + 0.0014642801, + 0.0014591595, + 0.019910641, + 0.0020158587, + 0.010685707, + -0.0031337822, + -0.008937572, + -0.005500847, + 0.010261596, + -1.8216103E-4, + 0.0012307246, + 0.007099072, + -0.030053776, + 0.004245344, + -0.0021661117, + -0.021128792, + 0.007255123, + 0.0032976726, + 0.0014359601, + -0.020238843, + -0.0037016156, + -0.004172682, + -0.017053295, + -0.0020945272, + 0.014872835, + -0.0075734486, + -8.5918413E-4, + -0.012828732, + -0.004813952, + 0.02197965, + -0.0048874565, + 0.010602744, + -0.035834726, + -0.0092361625, + -0.003822896, + -0.014377249, + -0.020908687, + -0.015214692, + 0.0024356782, + 0.014747868, + 0.0073911287, + -0.0024098281, + -3.107273E-4, + 0.0019818495, + 0.012799886, + 0.028955217, + 0.005043129, + -0.012605644, + -0.013566441, + -0.007971419, + 0.0052988287, + -0.0114718, + 9.8317796E-5, + 0.022647696, + -0.026681116, + -0.0019416611, + -0.0071187397, + 0.007413037, + -0.003773961, + 0.010424766, + 0.023307336, + -0.0056551755, + 0.017123945, + -0.017133756, + 1.6236167E-4, + 0.011096222, + -0.002530231, + 0.010982861, + -0.0070190784, + 0.021178862, + 0.016953103, + -6.896388E-4, + 0.009125424, + 0.016824797, + 0.0025662093, + 0.031556126, + -0.018847665, + -0.010732123, + -7.4506353E-4, + -0.03180499, + -0.039762918, + -0.014009102, + 0.02202967, + 0.023576368, + 0.003695203, + 0.05237109, + 0.01015548, + 0.0064303437, + -0.027786067, + -0.0041344217, + -0.005492492, + -0.006803679, + 0.0057015116, + -0.022854483, + -0.009255879, + -0.016502945, + -0.02172791, + 0.021479094, + -0.02118209, + 0.028016977, + 0.019296868, + 0.008660396, + -0.00786974, + 0.014764124, + -0.0058213584, + 0.006492848, + -0.025592525, + -0.012727725, + 0.020956187, + -0.0058206944, + 0.0015164652, + -0.004375393, + -0.025909543, + 0.028110374, + -0.008517893, + 0.012789797, + -7.7075406E-4, + -0.005175877, + -0.039587103, + 0.012839281, + -0.019429296, + -0.0064728484, + 0.0148790525, + 0.021178825, + 0.014733554, + 8.6684705E-4, + 0.023635352, + -0.0042275973, + 0.001354803, + -0.0013867785, + -0.0098889, + -0.0067710313, + -0.011259495, + -0.0072460463, + 0.013338778, + 0.010503657, + 0.03701168, + -0.014890895, + 0.009611365, + 0.0061946465, + 0.020155113, + 0.022243442, + 0.0075383973, + -0.004304727, + -9.4997586E-4, + 0.0043855053, + 0.0011830627, + -0.0137062315, + 0.008542602, + 0.0011079917, + -0.0040233936, + -0.0061525004, + 0.014796674, + -0.002566595, + -0.008124545, + 0.010506126, + 0.0072037196, + 5.497758E-4, + 0.016255092, + 0.005955923, + 0.0026523923, + -0.02662683, + -0.01476798, + -0.007141736, + 0.017300976, + -0.0011813374, + 0.010272489, + 0.0031536047, + -0.0015319723, + 0.0067907455, + 0.002830195, + -0.01766216, + 0.006525191, + -0.0149291055, + 0.009249225, + 0.009496991, + -0.028759632, + 0.02013656, + 0.030501382, + 0.0043665967, + -0.009571476, + -0.0051437877, + -0.008067015, + 0.016215298, + 0.008626757, + 0.0059169196, + 0.022804322, + 0.002541972, + -0.047541097, + -0.015446103, + -0.018590072, + -0.0069645885, + -0.0087949345, + -0.03844939, + -0.01868467, + 0.013740971, + -0.014554732, + -0.014874143, + 0.0012946494, + -0.017618159, + -0.017962318, + -0.03447127, + -0.034071434, + 0.006201966, + 0.008988696, + -0.013803505, + -7.389396E-4, + 0.014751785, + -0.008762292, + -8.308055E-4, + 0.01688427, + 0.007839498, + -0.030593999, + 4.6635832E-4, + -0.01907506, + -0.010589121, + -1.16877374E-4, + 0.017189657, + -0.002878261, + 8.349773E-4, + 0.031762447, + 0.0090057915, + 0.007567678, + -0.008311978, + -0.006223525, + 0.017730573, + -0.029359568, + -0.0053017396, + -0.0024911473, + 0.011041361, + -0.009273097, + -0.012834381, + -0.01411803, + -0.013080707, + -0.0026132541, + 0.01370038, + -0.0063577862, + -0.030955138, + -0.016457021, + -0.002216728, + -4.7136168E-4, + -0.011037913, + -0.009537851, + -3.8270996E-4, + 0.014730756, + -0.011715757, + -0.023763062, + -0.013687603, + -0.015146211, + 0.016288133, + 0.009814644, + 0.0055368776, + 0.0072659357, + -6.61948E-4, + -0.021346176, + -0.010696435, + 0.0116680795, + 0.02641813, + -0.01218886, + -0.0021160536, + 0.009348707, + 0.0017958103, + 0.019415919, + 0.0013464943, + 0.00479176, + 0.007456499, + 0.0129944645, + 0.01812258, + -0.011018294, + -0.0077578686, + 0.018755307, + -0.0012428862, + -0.01602696, + -0.008924619, + -0.0029699418, + 0.0035211085, + -0.011742114, + 0.0019314336, + 0.0053629777, + 3.264091E-5, + -0.0050804922, + 0.0017815931, + 0.0027099045, + 0.008674957, + 0.01705781, + -9.7436743E-4, + -0.015944527, + 0.018601475, + 0.017964173, + 0.012693659, + -0.008070473, + -0.012223318, + -0.032897055, + 0.019149316, + -0.02063482, + -0.01971882, + 0.0297996, + 0.008775663, + 0.01076262, + 0.0437174, + -0.0038997126, + -0.008650691, + 0.0017715358, + 0.02028884, + 0.029484367, + -7.5365114E-4, + 0.015553502, + 4.4068345E-4, + -0.0049726274, + 0.0014758355, + -0.018026793, + -0.0101147955, + -8.7273034E-4, + -0.010763724, + -0.012259381, + 0.015665133, + -0.0036004875, + -0.013349191, + 0.022210976, + -0.0014311649, + -0.0054510594, + 0.019225456, + -0.031358223, + -0.013631407, + 0.02643722, + -0.007885965, + -0.012162611, + 0.0073063527, + -0.043373905, + 0.0073750694, + 0.026921965, + -0.0116836615, + 0.0124601945, + -0.007780411, + -0.02997357, + 0.008681932, + 0.0036641515, + 0.017747361, + 0.013944165, + 0.0035208608, + -0.018363304, + -0.027359275, + -9.0782123E-4, + 0.004247668, + 0.0010921627, + -0.016971195, + -0.026588777, + 0.015850268, + 0.012472466, + 0.009496452, + -0.015316861, + -0.008805447, + 0.02287046, + 0.008350506, + -0.0014306852, + 0.01116976, + -0.00751101, + 0.005929273, + 0.0033628454, + -0.013184294, + -0.009956265, + -0.009406485, + 0.007933864, + 0.017270714, + -0.0074648634, + 0.021481799, + 0.026091816, + -0.0030953605, + 0.029431272, + -0.0010218285, + 0.0051155044, + 0.020174298, + -0.0040607117, + -0.0038624685, + -0.002362922, + 0.012891578, + 0.015281932, + -0.017995352, + -2.6720518E-4, + 0.0030119752, + 0.0069314544, + -0.0064340173, + -0.0107055325, + -0.01864179, + 0.017396856, + -0.011068893, + 0.01621723, + 0.006197975, + 0.0060769967, + 0.009003348, + 0.004091419, + 0.008015547, + -0.029051391, + 0.008973295, + -0.016278544, + 0.0115281185, + -0.023338346, + 0.0020335773, + 0.025529442, + -0.0025760776, + -0.013296666, + 0.024704367, + 0.010754426, + -0.0169141, + -0.025782445, + 0.013421984, + -0.033902764, + 0.014025191, + 0.031372093, + 0.02199876, + -0.013815162, + 0.017399538, + 0.007974947, + 0.0051674685, + 0.017979406, + -0.0019600762, + 0.007704081, + 0.0078079593, + 0.024672857, + 0.0061720475, + 0.011083023, + 0.0271215, + -0.012095982, + -0.009277125, + 0.0029526209, + -9.4364176E-4, + -0.010026111, + -0.0023507548, + 0.009667464, + 0.015410938, + -0.024317432, + 0.018539669, + -0.010571211, + -4.6028174E-5, + -0.007713078, + 0.010382891, + 0.011644434, + 0.020384401, + -0.019679172, + -0.008867559, + 0.0064425394, + -0.0063631576, + -3.8020092E-4, + 1.6673545E-4, + -0.018731881, + -0.0020421813, + 0.015903685, + -0.005527594, + -0.008468595, + -0.016471464, + 0.0037597606, + 0.023439802, + -0.019222999, + 0.017302377, + 0.00635839, + 0.008366812, + 0.01428586, + -0.03418691, + 0.0030078911, + -0.0080488315, + 0.0020836797, + -0.011855485, + -0.00429295, + -0.0028872082, + -0.0064700176, + -0.022501163, + 0.0021217898, + -2.7436973E-4, + -0.016836723, + -0.00218665, + -0.010743576, + -0.005231614, + -0.009238068, + 0.0038598508, + -0.01254913, + -0.028837072, + 0.0047682957, + 0.008964745, + 0.008815174, + -0.0034593958, + -0.003010623, + 0.0043172017, + -0.00727194, + 0.001761827, + 0.0146517595, + 0.0024134354, + -0.027838768, + 0.025061034, + -0.00858273, + 0.038256574, + -0.0054261563, + 0.010522914, + 0.033266317, + 0.011764728, + -0.017660584, + 0.0022409412, + 0.011151876, + -0.021119805, + 0.008337619, + -0.015341935, + 6.8178365E-4, + -0.0026500567, + 0.006784511, + 0.02128963, + 0.014416912, + 0.016900824, + 0.0077800103, + 0.02146147, + -1.8392795E-5, + -0.0052908184, + -0.003317341, + 0.017259562, + -0.04068067, + -0.013180598, + 0.0031762633, + 0.0054155183, + 0.021737903, + -0.00943318, + 0.002030206, + 0.010069432, + -0.021947622, + -0.011194413, + -0.0061448477, + -0.018681716, + -0.016692815, + 0.004445868, + -0.0028750952, + -0.01143689, + 0.020129407, + -0.008158347, + 0.025247552, + 0.021347364, + 0.012725919, + -0.04717682, + 0.024626598, + -0.018141124, + -0.031241078, + -0.008661862, + -0.018374063, + -0.013064592, + 0.010272442, + 0.014726074, + -0.013654947, + -0.0024476622, + 4.2720995E-4, + 0.0017072881, + -0.02851488, + -0.03972432, + 1.7090156E-4, + -0.009250246, + -0.007345457, + 0.006886254, + -0.010046973, + 0.023217876, + 0.007506296, + 0.024119113, + 0.0051281895, + 0.0049318033, + -0.014809174, + -0.021937495, + 0.01039352, + 0.017675065, + -0.0010413969, + 0.028905448, + 0.011353503, + -0.012462727, + 0.022893919, + 0.0040771747, + -0.005095252, + -0.0077329045, + -0.0058572534, + -0.0064263796, + 0.012918026, + 0.013860031, + -0.025913196, + -0.016170297, + 0.015622546, + 0.014458592, + 0.006602271, + -0.024205906, + 0.0019227637, + 0.0022234488, + 0.017419286, + 0.009157786, + -0.004352266, + -0.014648768, + -0.013044715, + 0.00961755, + 0.0024764682, + 0.005699973, + 0.01526252, + 0.0010185991, + 0.0031281263, + 0.0023473345, + 0.0027497783, + -0.018459857, + 0.007280437, + -0.018676769, + 0.013875815, + 0.020366935, + 0.01434241, + 5.1423773E-4, + -0.011115642, + -0.0016364155, + -0.010591497, + 0.011619875, + -0.0061408826, + 0.025896242, + 0.0073463996, + 0.009487045, + -0.009173302, + -0.01854717, + -0.005516374, + -0.0069930023, + 0.01776286, + 0.0028582674, + -0.0045586815, + 3.4426642E-4, + 0.013181934, + 0.014735925, + 0.009247316, + -0.0076248967, + -0.018843224, + 0.009770632, + 0.0075464905, + -0.0051479577, + -0.031733148, + 0.00460779, + 0.019919546, + 0.018737871, + 0.017022144, + -0.0077062068, + -0.008487613, + 0.028094882, + 0.017820306, + -0.013837433, + -0.011073479, + -0.0049247015, + -0.009389813, + -4.412604E-5, + -0.006592101, + 0.047095943, + 0.020703753, + -0.002840547, + 0.023093415, + -0.020373045, + -0.028066747, + -0.014520031, + -0.0077061076, + -0.016661486, + 0.0024952535, + 0.0011654391, + 0.023586143, + -0.008729831, + 8.714853E-4, + -0.0068255053, + -0.008478284, + 0.007476767, + 0.013429737, + -0.024935516, + 0.02168193, + -0.021581957, + 9.709739E-4, + 0.014163601, + -0.0108302, + -0.019786583, + 0.019136935, + 0.0038849222, + 0.008615327, + 0.0036292695, + 1.434236E-4, + -0.009012283, + -0.007077887, + -0.012406434, + 0.0010945826, + -0.010178348, + -0.005519346, + 0.044589803, + -0.018468484, + 0.027223727, + -0.0113998605, + 0.023203457, + -0.017919635, + -0.013370557, + -0.0033051125, + 0.006167025, + -0.003359744, + -0.013167231, + 0.021481762, + 0.018424671, + 0.005328531, + -0.012836227, + 0.0037737144, + 0.010894469, + 0.0031174144, + 0.015941555, + 0.012678975, + -0.013985002, + -0.017715609, + -0.006838839, + -0.006852565, + 0.042422615, + 0.022102963, + -0.01517536, + 0.0050121555, + -0.0030721324, + 0.008724149, + -0.0063449484, + -0.019201731, + 0.006231973, + 0.026250849, + -0.0075849146, + 0.022875689, + -0.0012901572, + 0.014849921, + -0.024143845, + 0.0067921267, + -0.0092192, + 0.0067040822, + 0.0040359586, + 0.034260377, + 0.0064733694, + 0.010382964, + 0.015277387, + 0.0072408174, + -0.014384688, + -0.0118617015, + -0.017387312, + -2.6853464E-4, + 0.0060892403, + -0.010464353, + -0.008794338, + 0.0076449816, + -0.0037350364, + -0.0036104152, + -0.010975739, + -0.016297271, + -0.009662353, + 0.017290343, + 0.018353635, + -0.0069365283, + 0.015542937, + -0.013858961, + 0.019875817, + 0.0031951698, + 0.010866684, + -0.00974771, + 0.006154997, + -7.1372365E-4, + -0.010853372, + -0.0029168227, + 0.010479951, + -0.021476654, + 0.0051308046, + -0.0011343631, + 0.0015800443, + -0.018594738, + 0.01584558, + 0.010022823, + -0.0033958657, + 0.011583537, + 0.01436215, + -0.00445535, + -0.016259156, + -0.007650096, + -0.0015179903, + -0.017926982, + -3.6846678E-4, + 9.915404E-4, + -0.02037134, + -0.0072191963, + 0.0093265595, + -0.0032784468, + -0.0024105504, + -0.024141613, + 0.02316175, + -0.015002382, + -0.017877782, + -0.009678927, + 0.018529177, + 0.0040151654, + 0.017506171, + 0.012315863, + 0.015135267, + 0.010285473, + 0.01871739, + -0.006111911, + -0.010374105, + 0.030805498, + 0.014849608, + -0.022904798, + 1.903005E-4, + 0.0024556532, + 0.005791792, + 0.009747484, + -0.007382926, + 0.008414082, + -7.832702E-4, + 0.00823604, + 0.03579987, + 0.008305575, + -0.025258658, + -0.0072885714, + -0.001430637, + 0.027281906, + -0.014329771, + 0.0042267353, + -0.0055245245, + -0.018487921, + 0.004531456, + 0.022065446, + -0.01101545, + -0.010414273, + 0.006198245, + 0.008015894, + -0.013237619, + 0.009100765, + 0.01951866, + 0.0078058806, + -0.012985786, + 0.018900722, + 0.009532733, + 0.009014595, + -0.024792023, + 0.0039639636, + 0.01481662, + 0.0050170296, + 0.006355365, + -0.0027479995, + 0.02883443, + -0.017755741, + -0.0028564923, + -0.006130621, + -0.00863602, + -0.0043832683, + 0.009391518, + -0.008060334, + -0.0073375725, + -0.0027720463, + 0.026525313, + -6.26229E-4, + 0.012443368, + -0.012052225, + -0.015954824, + 0.011789053, + 0.01837149, + -0.024090499, + 0.011108834, + -0.0025856346, + -0.015530537, + 0.03683523, + -0.006860366, + -0.005558699, + 0.006513576, + 0.0075402963, + -0.020798415, + -0.022327283, + 0.0029441023, + 0.009060648, + 0.01276895, + -0.026475552, + 0.01013473, + -0.002252818, + -0.003975909, + -0.013887094, + -3.770391E-4, + 0.0050944346, + 0.012032445, + 0.018728146, + 0.013875517, + 0.007923288, + -0.022360913, + 0.00387003, + 0.009079106, + -0.008843727, + -0.02083799, + 0.020431586, + -0.021664925, + -0.012850636, + -0.0167665, + -0.007827122, + -0.0031053883, + 0.016418628, + -0.004579888, + -0.011498572, + 0.038825337, + -0.0017266996, + -0.008542022, + -0.0058463663, + -0.01768664, + -0.015175331, + 0.0019270999, + 0.0043802406, + 0.0056531765, + 4.1152164E-4, + -0.0069223647, + 0.0153215, + -0.008671044, + -0.022467863, + -0.024032848, + -0.021299226, + 0.033629075, + -0.01011061, + -0.030185474, + -0.007902455, + 0.00946934, + -0.008594927, + 0.011098893, + -0.024239363, + 0.012273361, + 0.017242407, + 0.017016383, + 0.0089951465, + 0.005099853, + -1.2412644E-4, + -0.010898755, + -0.0065689017, + -0.0044080997, + -0.008521222, + 0.00820952, + -0.017445276, + -4.1963186E-4, + -0.018047722, + -0.0076361396, + 0.013669379, + 0.015240898, + 0.0015382146, + -0.023505233, + 0.0052992236, + 0.008821179, + 0.0116023235, + 0.0037698736, + -0.001890196, + 0.0036739632, + -0.028992547, + -0.008033882, + -0.005361544, + -0.028511867, + 0.021497456, + -0.021003671, + 0.018278413, + 0.019726519, + 0.0074384175, + -0.01573828, + -0.0018155989, + -0.014719048, + -0.044427987, + 0.024616389, + 0.0019769357, + 0.002490837, + -0.01657333, + -0.006517573, + 0.010583775, + -0.017715212, + -0.017575689, + 0.025329439, + -0.0042123985, + -0.018936556, + 0.0021729819, + 0.015476699, + -0.034169223, + 0.027458292, + -0.015498346, + -0.0061326763, + -0.010502014, + -0.0077558933, + 0.0030144874, + 0.0059034927, + 0.018299129, + 0.022355251, + 0.017044688, + 0.0057034544, + 0.013056815, + 0.013384353, + -0.00733215, + 0.005984243, + -0.027775958, + 0.013382648, + 0.04658702, + -0.00626237, + 8.688002E-4, + -0.013761343, + 0.007518259, + -0.0036623813, + 0.014746162, + 0.024991097, + 0.029325021, + 0.017506754, + 0.024728421, + 0.0060236873, + 0.0095936, + -0.006957793, + -0.012084739, + 0.00805558, + 0.02312656, + -0.022349153, + 0.026747525, + 0.020278804, + -0.010381595, + -0.031736083, + -0.016616892, + 0.0010255789, + 0.008683045, + 0.012436579, + 0.0074981735, + 0.007296742, + -0.017873786, + 0.014907409, + -0.011377204, + 0.0087636635, + -0.016676463, + -0.012340571, + -0.0059938533, + 0.007889859, + -0.004171037, + 0.005402808, + 0.0028400405, + -0.0030228302, + 0.02176031, + 0.0028640633, + 0.027792875, + 0.004282073, + 0.012419437, + 0.025681892, + 0.001154482, + -5.7701493E-4, + -0.014861608, + -0.017623596, + 0.010422049, + -0.01743157, + -0.012586513, + -0.014351037, + -6.985328E-4, + -0.0014714358, + -0.011966332, + 0.024934491, + 0.0149421, + 7.052498E-4, + -0.0047482923, + 0.007065997, + 0.014836763, + 0.021129634, + 0.013026561, + 0.018044693, + 0.020929256, + 0.0040805833, + 0.037176594, + 0.018120812, + 0.0068497118, + -0.008100363, + 0.016987689, + 0.016063487, + 0.010672103, + -0.011107313, + 0.013267953, + 0.009619813, + 0.0046274723, + 9.235693E-4, + 0.013745979, + 0.008087501, + -0.020113394, + 0.008972438, + 0.017564638, + -0.014600853, + -0.022662295, + 0.012387915, + -0.003647253, + 0.009055275, + -0.021486036, + -0.00571926, + -0.02178092, + -0.004700305, + -0.013613963, + -0.014217184, + -0.0055557974, + -0.019321544, + -0.024061259, + -0.01988643, + -0.04478181, + 0.005496795, + -0.0029620843, + -0.0050184894, + -0.025703514, + 0.011284085, + 0.008176618, + -0.006222972, + 0.0066448064, + 0.004233732, + 0.024997951, + 0.019390851, + -0.009939355, + -0.0014920374, + -0.016543575, + -0.013537991, + 0.018501759, + -0.004444546, + -0.01827967, + 0.014557042, + 0.011747653, + -0.019650145, + 0.0036815037, + -0.01759599, + -0.009596649, + -0.022698903, + 0.0026655297, + -0.011055052, + 0.012289038, + 0.022727283, + 0.020824654, + 0.007325571, + 0.013663843, + -0.0074996185, + -0.03429562, + 9.095067E-4, + 0.003499278, + 0.009883029, + 0.014443574, + 0.02083152, + 0.0022587925, + 0.012111082, + -0.0035800894, + 0.017101314, + -0.011385564, + 0.017618952, + 0.033162724, + -0.0017184102, + 0.0015310104, + 0.009567254, + -0.0072724633, + -0.010640623, + -0.01436271, + -0.0051900363, + -0.01145044, + -0.0049616327, + -0.013357489, + -0.0041123945, + 0.015019193, + -0.012607364, + -0.012837737, + 0.013610604, + 0.026392393, + 0.008406712, + 0.0016407245, + -0.003894387, + 0.009526431, + 0.014586186, + 0.0133510055, + 0.0045892014, + -0.0048199105, + 0.0023883479, + -0.020618906, + 0.012740433, + 6.5352157E-4, + 0.011813193, + -0.0116857495, + -0.016356548, + -0.013566382, + 0.022123618, + -0.008920175, + -0.00411384, + -0.025997804, + 0.025247604, + 0.0023423214, + -0.004434656, + -0.031296957, + 0.0074371453, + 0.012330052, + -0.02112617, + -0.0038195704, + 0.010828779, + 0.016618406, + -4.2785757E-4, + 0.012681071, + 0.002184314, + -0.024712112, + 0.014311683, + 0.0035364293, + -0.005792192, + 0.003193727, + 0.012030976, + 0.02438443, + 0.002547308, + -0.00398861, + 0.020273453, + 0.0030309274, + 0.0063184057, + 0.002851134, + -0.009378113, + 0.0049991896, + 0.002145292, + 0.034037393, + -0.013313273, + -0.0035820894, + -9.164853E-4, + 0.0023124677, + 0.0012878889, + -0.0095662875, + -0.016591728, + 0.0022504404, + -0.007515802, + 0.009077801, + 0.0015379823, + 0.035215378, + -0.012277987, + 0.003979397, + 0.012772734, + 0.02953461, + -0.009057341, + 0.012589497, + -0.0035721716, + 0.02882081, + -0.0074045835, + -0.0063749263, + -0.031209694, + 0.009283633, + -0.008062181, + -0.018520284, + -0.013311051, + 0.015600594, + 0.0042722644, + -0.015135496, + 0.016226877, + 0.016651988, + 0.011334906, + -0.011128969, + 0.014314604, + 0.020707825, + -0.03043333, + 0.012777925, + -0.03483232, + 8.077651E-4, + -0.02128642, + 0.03701148, + 0.023102047, + -0.029754197, + 0.005793405, + -0.0065299803, + -0.013423313, + -0.01727478, + 0.019986702, + -0.021771211, + 0.016265823, + 0.0037757398, + 0.009029133, + -0.014841718, + -0.014396936, + 0.012097346, + -0.008045988, + 0.0133278305, + -0.004527613, + 0.011132081, + -0.0076226383, + -0.02027224, + -0.0021072861, + 0.002021714, + 0.0071372166, + -0.0061728354, + 0.027993698, + -0.03767258, + 0.012236456, + -7.4418244E-4, + 0.014961385, + -0.011760716, + -0.011976374, + -0.00867811, + 0.013336529, + 0.008269621, + 0.036680896, + 0.023508074, + -0.019021932, + 0.010901561, + -0.0060953656, + -0.024978532, + 0.007439234, + -0.02405076, + -0.0068941074, + -0.018515347, + 4.1982022E-4, + 0.004462546, + -9.800032E-4, + -0.022727976, + 0.01947253, + 0.012220229, + 0.019257564, + 0.010902049, + -0.001134944, + -0.019334944, + 0.015612919, + 0.023139164, + 0.027385673, + 0.010727425, + 0.008764824, + -0.0061014164, + 0.03296254, + -0.02571698, + 0.004887045, + 0.0074140476, + -0.0067761303, + -0.0063111344, + 0.02992718, + -0.011468018, + 0.0071853795, + -0.0138403615, + -1.6196676E-4, + -0.020031378, + -0.011311886, + 0.015863428, + -0.012294782, + -0.015395467, + -0.0019129352, + 0.0011044568, + 0.010373245, + -0.025305768, + -0.001556708, + -0.0017936843, + -0.011256121, + 0.0014790946, + -0.011195404, + -0.012027529, + 0.025084043, + 0.042847924, + -0.013775586, + 0.019899927, + 0.007908883, + -0.010605228, + -0.014214998, + -0.01012044, + -0.0067006825, + 0.0047159377, + -0.017757153, + -0.02282887, + 0.006270332, + -0.0074594994, + 0.023865374, + -0.028075382, + 0.005535455, + -0.018308684, + 0.009398272, + 0.018362148, + 0.031985473, + 0.0025776648, + -0.0044859783, + 0.0011564615, + -0.012278451, + -0.021650767, + 0.015695028, + 0.011378801, + 0.0015682839, + 0.0010620292, + 0.011970126, + 0.006767804, + 0.00871704, + 0.002997449, + -0.0207364, + 0.001698974, + -0.009547751, + 0.012110513, + 0.01397082, + 0.00269464, + 0.0071248743, + -0.009283635, + 6.0330273E-4, + 0.032123577, + -0.0095643345, + -0.013377346, + -0.0027596161, + -0.019412002, + -0.02715113, + -0.0098240245, + 0.0017594892, + -0.00245009, + -0.008443535, + 0.005820856, + 0.017105501, + 0.0036355127, + -0.004688343, + 0.014700182, + 0.0054057613, + 0.015323924, + 0.011396238, + 0.011864721, + 0.012322286, + -0.030514175, + 0.005006113, + -0.019360632, + -0.018102085, + 0.019759912, + 0.00206553, + -0.0011994237, + 0.0066743535, + 0.0056367186, + 0.001840972, + -0.008968151, + 8.9739263E-4, + -0.0069350386, + -0.02198335, + -0.0021667373, + -0.032043956, + -0.016269606, + -0.02702961, + 0.017122665, + -0.0049349535, + 0.021801628, + -3.5211127E-4, + -0.0021880865, + 0.021901835, + 0.029974576, + -0.024425052, + -0.0011054411, + -0.018617228, + 0.017752705, + -0.009236061, + 0.0076786936, + 0.0023382015, + -0.02320537, + 0.03558768, + -0.0015402753, + -2.3005017E-4, + -0.0059947986, + -0.019992772, + 0.0058106654, + -0.020776026, + -0.007967927, + -0.008208147, + -0.00466182, + -0.008463146, + 0.008622695, + 0.0012615075, + 0.01700932, + -0.01899942, + 0.0010656002, + -0.027821455, + 0.0027203765, + -0.0024747688, + -0.010767351, + -0.0130399745, + -9.1787326E-5, + -0.010604806, + -0.008571535, + -0.0130546475, + 0.0056012836, + -0.01391241, + -0.0032563722, + -0.0048893713, + 0.005111795, + -0.022000264, + -0.009478465, + -0.017017763, + 0.012473394, + 2.9303166E-4, + 0.011795382, + 0.02362172, + 0.0015293773, + -0.006251401, + -0.015148779, + 0.0098814275, + -0.009029929, + -0.011029276, + 0.004737837, + 0.0076934383, + 0.011773436, + -0.0068960073, + -0.0032663166, + 0.014462201, + 0.012149386, + 0.0053147306, + -0.020207385, + -0.011237065, + 0.01559099, + -0.006200068, + 0.017202852, + 0.008401397, + -0.012309497, + -0.02276535, + -0.02037685, + 0.020475172, + 0.012912256, + -0.0011439507, + -0.01096105, + 0.01040776, + 0.018470518, + 1.1691858E-4, + 0.021176113, + -0.0027104132, + -0.018713592, + 0.0047695492, + 0.021185141, + -0.010200002, + -0.006059391, + -0.010784566, + 0.027862921, + 0.009617322, + 0.028361158, + -0.023370676, + 0.0132163605, + -0.023989545, + 0.01504176, + -0.015759068, + 0.0026045428, + -0.02156267, + 0.010506058, + -3.264504E-4, + -0.026974011, + -2.2406578E-4, + -0.0073168217, + 0.0011413796, + -0.018261168, + -0.0040409183, + 0.0027892033, + 0.032983575, + 0.021049557, + 0.0062182094, + 0.027768167, + -0.01095248, + 0.010942637, + 0.02620815, + 1.1235179E-4, + -0.0035206403, + -0.020672752, + 0.0056942985, + 0.009978109, + 0.004204741, + -3.5882776E-4, + 0.010129098, + 0.009047776, + -0.00595959, + 4.3558347E-4, + 0.0034603642, + -0.012570647, + 0.005623287, + -0.008982155, + 0.045525637, + 5.875492E-4, + -0.028531248, + 0.019532217, + -0.0035030672, + -0.017876392, + -0.018492078, + -0.004033926, + -0.01893551, + 0.0036084764, + 0.013798849, + -4.530161E-4, + 0.014697519, + 0.01270391, + -6.916374E-4, + 0.011395215, + 0.01048782, + 0.020325247, + -0.0073287026, + -0.018813854, + -0.02599916, + 0.0016643447, + 0.027271708, + 0.0031303917, + -0.04303182, + 0.014080475, + 0.0057584634, + -0.0039492613, + 0.0031013472, + -0.002104104, + -0.0040077716, + -0.009029199, + -0.0030996918, + 0.024434386, + 0.010355136, + 0.02214262, + 0.010452709, + -0.016150624, + 0.0010425698, + -0.0145611325, + 0.03240991, + 0.010022186, + 0.0037795103, + -0.0046232366, + 0.024543231, + 0.0027642215, + 0.038671464, + -0.01195953, + -0.0054352754, + 0.01999219, + 0.008485377, + -0.022160081, + 0.013339618, + -0.0048436522, + -0.021906376, + -0.01470036, + -0.012803541, + -0.025748165, + 0.024719689, + -0.01190722, + 0.030707316, + 0.0049626795, + 0.0011827366, + -0.028633675, + -0.0018595147, + 0.008123663, + 0.009060623, + -0.01444392, + -0.006649625, + -0.007823226, + 0.016978355, + -0.019241186, + -0.010052223, + 0.0054188888, + -0.0114542805, + 0.016327443, + -0.0021762564, + 0.022804465, + 0.0042586005, + -0.026826657, + 0.01103453, + 0.004678766, + -0.028422015, + -0.0309807, + -0.0062336223, + -0.030691534, + -0.020965658, + -7.4724056E-4, + -0.015779288, + 0.002077332, + 0.010865164, + 0.01243858, + 0.02072939, + 0.017636267, + -0.016058316, + -0.0050938097, + -0.034054235, + -0.020306613, + 0.0025319508, + 0.006752712, + 0.008767599, + 0.003768385, + 0.014770646, + 0.022217648, + -0.01816232, + -0.006258098, + 0.007798095, + -0.005501026, + -0.020629697, + 0.015784135, + 0.0057608536, + -0.03280189, + -0.010020149, + -0.014134268, + 0.0032441195, + -0.027713291, + -0.0014349684, + -0.0010178433, + -0.02831972, + -0.0060021235, + -0.0054697366, + -8.859611E-4, + -0.026577318, + 0.01276464, + -0.00113751, + 0.018151106, + -0.009718182, + -0.025553618, + -0.010093808, + -0.009696937, + -0.022209663, + 0.01634529, + -0.009907795, + -0.009920888, + 0.015569921, + -0.013239316, + 0.014376339, + -0.0014022647, + -0.003172069, + 0.019659152, + -0.01461353, + 0.0023803557, + -0.002024186, + -0.0030149648, + -0.01870742, + 0.02531441, + -0.013590932, + 0.009845352, + -0.00676145, + -0.014666597, + -0.019323125, + 0.021870438, + 0.002135685, + 0.017871194, + 0.010443924, + 1.2186476E-5, + 0.060001086, + 0.016556421, + 0.022041153, + 0.029875066, + 0.005876497, + -0.008123623, + -0.0021231344, + -0.0044549187, + -0.012444639, + 0.049462073, + 0.021973094, + 0.009376706, + -0.0019424375, + 0.0015171567, + -0.015029265, + 0.0077764005, + -5.730896E-4, + -0.019514626, + 0.0023711948, + -0.030344708, + -0.0045706043, + -0.0016650909, + 0.014228138, + -0.030103326, + 0.025535775, + 0.009095617, + 0.0045533204, + 0.003567691, + 0.016059415, + 0.0015335989, + -0.013978407, + 0.014999602, + -5.364887E-4, + -0.011442575, + 0.007455745, + -0.022696726, + -0.0043867566, + -0.02133516, + -0.0017956109, + -0.0011089011, + 0.006676545, + -0.009282141, + 0.014698254, + -0.026301064, + -0.0057237325, + -0.010847461, + -9.6085184E-4, + 0.009458726, + 0.0021179311, + -0.030976407, + -0.011026009, + 0.0276041, + -0.0011379659, + 0.0083765285, + 0.006455778, + 0.013825821, + -0.011097198, + 0.017353263, + 3.1409806E-4, + 0.011367994, + -0.042807948, + 0.0022563664, + 0.015878426, + -0.013713302, + 0.016979942, + 0.0027790873, + -0.011518189, + 0.00865503, + 0.0065801325, + -9.983329E-4, + 0.015048656, + 0.008720802, + 1.3819321E-4, + 0.008469246, + -0.01858688, + 0.0023777152, + 0.010026985, + -0.009466665, + 1.928778E-4, + -0.030647485, + 0.0063933297, + 0.026031725, + 0.02963486, + 0.008924571, + -0.016046466, + 0.020535223, + -0.0014445913, + -0.014005932, + 0.014528661, + -0.0033069928, + -0.023867384, + -0.0028770906, + 0.0019223874, + 0.0031349002, + 5.267534E-4, + 0.0030137023, + 0.014239475, + 0.009476972, + -0.028079305, + 0.031671744, + 0.01520352, + 0.020605505, + -0.019246474, + -0.023463387, + -0.024343075, + -0.014823059, + 0.0040923455, + -8.0190215E-4, + 0.0066773277, + 0.011524009, + 0.030384878, + 0.009670354, + -0.008396023, + 0.0030426953, + 0.023772035, + 0.008892098, + -0.02322821, + 0.008104482, + -0.008124979, + 0.0057999785, + 0.010493771, + -0.014776223, + 0.0024415634, + 0.0020106428, + -0.023002697, + 4.485302E-5, + 0.0034671468, + -0.0057069757, + -0.011904738, + 0.014386857, + 0.013809915, + 0.0047409185, + 0.006573095, + -0.012138009, + -0.0062860604, + 0.032326482, + -7.404138E-4, + -0.0023729124, + -2.1921674E-6, + 0.003847667, + 0.00958992, + -0.025209097, + -0.0056061735, + 0.012878944, + 0.003007875, + 0.028973421, + -0.001338364, + -0.004178754, + -0.021076703, + -0.008649006, + -0.0059595625, + -0.03552145, + 0.030795006, + -0.0061299745, + 0.013872641, + 0.008129674, + 0.003128166, + -0.0111380415, + 0.007950404, + 0.0014531624, + 4.973425E-4, + -0.006981335, + -0.011558219, + 0.012351016, + -0.026151005, + -0.0094854785, + -0.034280196, + -0.009693026, + -0.031025779, + 0.0018021504, + -0.005531417, + 0.0035649375, + 0.020299932, + 0.0108398525, + -0.019382726, + 0.0010297764, + 0.009868489, + 0.02247142, + -0.018625228, + -0.015057125, + -0.006623978, + 0.03401209, + -5.450841E-4, + -0.02794851, + 0.016879627, + -0.0037320915, + -0.0013426635, + 0.020756472, + 0.005712445, + -0.011200973, + 0.0013432811, + -0.0010107423, + -0.014368168, + -0.0049329107, + -0.01640219, + -0.035705563, + 0.02734632, + 0.007847864, + -0.021189328, + -0.008887831, + -0.005081959, + 0.0038060022, + -0.0011492666, + 0.007635158, + -0.010388892, + -0.022580361, + -0.034447614, + -0.0012043525, + -0.016009092, + -0.004664448, + 0.010294783, + 0.0029536756, + 0.020002214, + 0.0149964215, + -9.002194E-4, + -0.0036770815, + -0.017570624, + 7.8616606E-4, + -0.01399791, + -0.014355277, + 0.0125982575, + -0.0011137557, + -0.023693828, + 0.013782653, + -0.014922653, + 0.0026970212, + 0.031184908, + 0.026954932, + 0.0022432054, + 0.015963113, + -0.0023621637, + -0.008293873, + -0.011941259, + 0.028377982, + -0.017515184, + -0.028821837, + 0.0032510292, + 0.012885648, + 0.006006939, + 0.008098917, + -0.02355204, + -0.021447934, + -0.021240091, + -0.003142146, + 0.023809217, + -0.0052014375, + -0.0056407303, + -0.002166332, + 0.018468292, + 0.02272052, + -0.015584456, + 0.014314729, + -0.019479895, + 0.02989746, + 0.004718264, + 0.014567649, + -8.0390763E-4, + -0.0054831738, + -0.00209238, + -0.017014796, + -0.0035586203, + -0.0041885977, + 4.832017E-4, + 0.008453081, + -0.011299537, + -0.02760878, + -0.0029424538, + -0.005046844, + -0.006642282, + -0.0048388117, + -0.0037587609, + 9.800823E-4, + 0.015107086, + -0.016764456, + -0.025472794, + -0.014551059, + -0.0050975755, + 0.015390004, + -0.010524982, + -0.014019377, + 0.018922638, + -0.011390374, + -0.017173054, + -0.004711838, + 0.009936967, + -0.0010960315, + -0.017715761, + 0.028908528, + 0.009009331, + 0.018206548, + -0.019495782, + -0.018532995, + 6.2140473E-4, + -0.01554997, + -0.020385781, + 0.0128091015, + 0.0018511211, + -0.0117842695, + -0.0053666225, + 0.004973679, + 0.026150415, + 0.01123533, + 0.007535446, + -3.9993247E-4, + 0.02705554, + -0.01497201, + -0.008098908, + 0.0018828156, + -0.021083564, + 0.0029007865, + 0.007399129, + -0.001881686, + -0.02490027, + 0.008246903, + -0.01895391, + 0.007943148, + 0.019392913, + 0.009188306, + -0.0060908757, + 0.009395969, + -0.0064954525, + -0.0028167565, + 0.0017810556, + -0.009919791, + -0.015766077, + -0.023603432, + -0.005217123, + 0.022677131, + 0.0054492853, + -0.029856615, + -0.016791653, + -0.002953155, + -0.016961057, + 0.015403571, + 0.011236049, + -0.0054151514, + 2.5809265E-4, + 0.0019467598, + 0.023768563, + -0.02423349, + 0.0032027946, + -0.014919299, + 0.006228887, + 0.005737344, + 0.032709688, + 0.015285127, + 8.366595E-4, + 0.007171831, + -0.020906305, + 0.02026726, + 0.013302593, + -0.012070465, + 0.033385325, + -0.009545587, + -0.007823354, + 0.04187511, + -0.028281908, + 0.0020070798, + -0.011580507, + 6.584254E-4, + 0.016958991, + -0.0044324626, + 0.0021704806, + 0.0101824915, + -0.008451107, + 0.028782409, + -0.01579089, + -0.005129433, + 0.02855319, + 0.013040153, + 0.0052316645, + -0.019480845, + -0.009309237, + -0.0038403997, + 0.021571325, + -0.011378947, + -0.019235535, + -0.016897568, + -0.0027555958, + 0.015948415, + -0.0013465103, + -0.0040825484, + 0.003747241, + -0.010555219, + -0.008356394, + 0.05621069, + 0.032124054, + 0.0017548981, + -0.008785405, + -0.0035387955, + -0.006727494, + 2.2987882E-4, + -0.0119380215, + -0.011823831, + 0.027334882, + -0.01393297, + 0.025374563, + -0.012986148, + -0.017887173, + -0.0018429185, + 2.390626E-4, + 0.00524984, + -0.0145378895, + -0.006281915, + 0.0035919105, + -0.0029319096, + 0.007085698, + -0.015705008, + 0.019542372, + 0.022444755, + 0.009186429, + -0.016236225, + -0.013698285, + 0.014827605, + -0.018089775, + -0.011213216, + -2.8530307E-4, + -0.014036045, + -0.0035838515, + 0.010263979, + 0.024555322, + 0.010229884, + 0.0014363315, + -0.012770899, + 0.0045217425, + 0.01432993, + 0.002407777, + -0.014090486, + 0.022443572, + 0.009407257, + 0.00252402, + 0.018378958, + -0.0022546719, + 0.025548514, + 3.9274988E-4, + 0.015934289, + 0.0019279182, + -0.009764943, + 0.00834943, + 0.006127736, + -0.0045050243, + -0.004978605, + 0.0070835575, + 0.041990794, + 5.303932E-4, + -0.0027921817, + 9.1580366E-4, + -0.005499353, + -0.014626088, + 0.008063072, + -0.029939432, + -0.017229442, + 0.013357504, + 0.022601787, + -0.0080516515, + -0.014893316, + 0.0111092, + -0.038296573, + -0.020131482, + 0.007952273, + -0.0019716588, + 0.01576306, + 0.03129006, + -0.00967928, + 0.009025358, + -0.02329806, + 0.022667825, + 0.005767316, + 0.00640212, + 0.016106274, + -0.021812545, + 0.016234836, + 0.005873037, + -0.008269041, + 0.0089146, + -0.019389711, + 0.009921463, + 0.009074414, + 0.0012578714, + 0.023272062, + -0.014212205, + -0.027143085, + -0.018579042, + -0.033463717, + -0.047440756, + -0.0012565827, + 0.027298067, + -0.015714489, + 0.0027042984, + -0.005097349, + 0.023766886, + 0.006022469, + 0.0062619834, + -0.006648893, + 0.011508994, + -0.011116659, + 0.005715784, + 0.0020289407, + 0.032427542, + 0.018844808, + -0.021640804, + -0.0057974467, + -0.0233494, + 0.026342995, + -5.007816E-4, + 0.026107423, + -0.0119030755, + -0.00947231, + -0.011616195, + 0.0032238446, + -0.0042056246, + -0.003917782, + 0.0025516523, + 0.004489703, + 0.013123395, + 0.0049357703, + 0.0072977324, + -0.013914225, + 0.01841392, + 0.015077551, + -0.020122068, + 0.002992544, + -0.012941762, + 0.011465593, + -0.016491316, + -0.019834148, + -0.0026581073, + 0.0068364292, + 0.016432306, + -0.004031977, + 0.017681, + 0.012448309, + -0.008621684, + 0.004782338, + -0.0034476598, + -1.6813985E-5, + 0.01125816, + -0.0037481952, + -0.0019549541, + -0.008480799, + -0.008522477, + -6.638774E-4, + 0.03967189, + -0.028065473, + -0.008306357, + -0.013221705, + 0.00939851, + -0.0058758077, + -0.012333738, + 0.0034400695, + 0.017365845, + 0.02144043, + -9.780354E-4, + -0.016245078, + 0.0066504404, + 0.0048739198, + 0.0054184156, + -0.0019356402, + 0.01213782, + -0.0028374565, + 0.024426615, + 0.020052029, + 0.009320605, + -0.027230488, + 0.037746683, + -0.012369354, + -0.0024101774, + -0.032604728, + 0.0019073986, + -0.032175884, + -0.006334436, + 3.6177607E-4, + 3.9969556E-4, + -0.0027172007, + -0.010529918, + -0.0077513903, + -0.02416952, + -0.008652254, + 0.013399742, + 0.011757817, + 0.008133848, + -0.007445791, + -0.021516006, + -0.017488085, + -0.011275324, + -0.0015812673, + 0.033771012, + -0.018164432, + -0.004756571, + -0.015605042, + -0.030983876, + 0.02027395, + 0.004472792, + 6.452118E-4, + -0.008621766, + -0.0066111046, + 0.005262348, + -5.172107E-4, + 0.009716456, + -0.006234852, + -0.014482749, + -0.009509779, + -0.0058703898, + -0.004033315, + -0.019025546, + 0.0015985888, + 0.01068998, + -0.021159073, + 0.016157163, + -0.026369426, + -0.02163023, + 0.011126091, + 0.0045411596, + -0.0018806693, + -0.023524504, + -0.007902102, + 0.0078256335, + 0.01990105, + 0.013752905, + 0.017596522, + 0.011609042, + 0.0147581985, + 0.008023126, + -0.00781164, + -0.011286531, + 0.01215036, + -0.0060165925, + 0.0050264252, + 0.010194951, + -9.3243015E-4, + -8.317246E-4, + 0.0035547148, + -0.002470137, + 0.030092904, + -0.002330017, + -0.0069195735, + -0.006283181, + 6.0308294E-6, + -0.0137412995, + 0.006070208, + 0.0032802094, + -0.019703267, + 0.019996827, + 0.01594268, + 0.025922876, + 0.039076544, + -0.0078885425, + -0.022418126, + -8.865732E-4, + -0.004035225, + -0.0046943533, + -0.017930476, + -0.028329536, + -0.011873061, + -0.0055855806, + -0.021511467, + -0.0044505238, + -0.017030329, + 0.0051992843, + -0.0017181968, + -6.0133217E-4, + -0.0029635816, + -0.005134749, + -0.0032401318, + 0.008325579, + 0.0028167053, + -0.005316634, + 0.01529257, + -0.0072039682, + -0.016225453, + -0.033943295, + 0.016398452, + -0.0026518195, + 0.013434609, + 0.037796624, + 0.023475857, + 0.014454693, + -0.020983316, + 0.03166121, + -0.021764087, + 0.017708767, + -0.0072778463, + -0.0103962915, + -0.0020338818, + 0.019736916, + 0.0045169187, + 0.002147266, + -0.028985124, + 0.020798383, + -0.015450169, + 0.0037878044, + 0.007834051, + -0.0048313676, + 0.028197994, + 0.0044139526, + -0.01188912, + 0.023618357, + -0.0031892196, + 0.012754494, + -0.008317911, + 0.0020436544, + 0.026957715, + 0.0024933976, + 0.0051456653, + -0.011216409, + -0.004829358, + -0.009779189, + 0.015150857, + -0.010323098, + 0.0085029155, + -0.00560677, + -0.008446474, + 0.030067712, + 0.02153109, + 0.02090732, + -2.8680055E-4, + 0.0061372058, + 0.025227223, + 0.0042564604, + 0.014733465, + 0.010136731, + -0.013058339, + -0.009258832, + 0.022816855, + -0.004610693, + 0.020181758, + 0.018556874, + -0.016388278, + 0.0038048532, + 0.0034909958, + -6.8894407E-4, + -0.010733676, + -0.009610767, + -0.001463254, + 0.012079909, + -0.009693624, + 0.0011261886, + -0.02737844, + -0.0032710026, + -0.0025515007, + 0.010157189, + -0.0068065445, + 0.006072384, + 0.019094517, + 0.009188603, + 0.004932941, + 0.011848773, + -0.011474245, + 0.01375343, + -0.007580764, + -0.008667943, + -7.5301615E-4, + -0.017680343, + 0.0010291465, + 0.012294536, + 0.0045701214, + -0.006237967, + 0.0027008983, + 0.021882355, + -0.0052095656, + 0.015317906, + -0.0062269447, + 0.012434139, + 0.018704932, + -0.020314826, + -0.02841066, + -0.016430892, + 0.011238109, + 0.013037425, + 0.04627991, + 0.019801687, + -0.021826198, + 0.009349056, + -0.012243265, + 0.013993037, + -0.0024423131, + 0.025401073, + -0.0014704176, + -0.001526193, + -0.010510674, + -0.009163307, + 0.0055044787, + 0.03099736, + 0.0072595906, + 0.015935028, + -0.004228262, + 0.00488511, + -0.02212974, + 0.0040336396, + 0.0063034315, + -0.014369187, + -0.020948457, + 0.035023235, + 0.027025396, + -0.024102503, + 0.011973057, + 0.0031110984, + -0.015203287, + -0.025287028, + 0.013168375, + 0.015860189, + 0.0104675405, + -0.016314128, + -0.0045492095, + -0.032895368, + -0.0050568986, + -0.02240177, + -0.017053636, + 0.008294405, + -0.014106701, + 0.0057121124, + 1.3275107E-4, + -0.008445724, + -0.039332084, + -0.020134369, + -0.0019322233, + -0.025924176, + -0.0023920643, + -0.0148620205, + 0.021819096, + -0.035329368, + 0.01790259, + 0.018780125, + 0.004727502, + -0.030047258, + 0.012076042, + 0.021727685, + 0.0034799862, + -0.0041187727, + -0.024137376, + 0.0106755765, + -0.010226865, + -0.007920858, + 0.01887043, + 0.029200412, + -0.02904852, + -0.013795853, + -0.0029184602, + -0.010237696, + 0.011806394, + 0.0075220363, + -0.01769889, + 0.0032777255, + 0.009952164, + -0.0056704488, + 0.0015955832, + -0.0020590683, + 0.021308478, + 0.008890208, + 0.023715906, + 0.012388303, + 0.011551662, + -0.025839224, + 0.021589471, + -0.0047804224, + -0.002427094, + -0.015808957, + -0.008359701, + -0.014239963, + 0.014098381, + -9.0417154E-5, + 0.026091846, + 0.0014966935, + -0.0047612144, + -0.0048852023, + 0.0040668207, + -0.026770119, + -5.859307E-4, + -0.01075721, + -0.02119888, + 0.014350903, + -0.030671421, + -0.022972455, + -0.004006506, + 0.015084417, + 0.0032547312, + -0.0067724637, + 0.02595195, + 0.018334707, + 0.005147913, + -0.00666001, + -0.010560883, + 0.003772733, + 0.011571113, + 0.013872808, + -0.017031597, + 1.8130125E-4, + 0.003127373, + -0.027598545, + -0.016833298, + -0.019158518, + 0.0029049106, + -0.003921903, + 0.0060602026, + -0.038651463, + 0.0058729057, + -0.025957419, + 0.010263949, + -3.8303822E-4, + -0.0032976298, + -0.00168999, + -0.0013880869, + 0.0046346183, + 0.008475649, + 0.015823077, + 0.01255616, + -0.011142441, + -0.004987577, + -0.0120657515, + 0.0036171626, + 0.015163242, + -0.023787579, + -0.0023670143, + 4.9648836E-4, + 0.011995317, + 0.02188969, + -0.028473323, + -0.0023702336, + -0.001231774, + -0.02853634, + 0.025714085, + 0.018142033, + 0.0056003705, + 0.020046951, + 0.009083002, + 0.0038889777, + -0.0073574483, + 0.011696299, + 0.014284467, + 0.018321887, + -0.01896392, + 0.0016387615, + 9.849779E-4, + 0.013878619, + 0.013812544, + 0.0013990148, + -0.0093316, + 0.010674468, + 0.023162998, + -0.0046685943, + 0.006110518, + -0.0014215577, + -0.009374977, + -0.0027798454, + -0.0069262036, + 0.020898862, + -0.017421853, + -0.009934791, + -3.6925502E-4, + -0.0050596776, + 0.007325355, + -0.030696092, + -0.024344565, + -0.00823953, + 2.284014E-4, + 0.008711379, + 0.0040974463, + 0.0130693875, + 0.024460025, + -0.0073165363, + -0.008390996, + 0.032173075, + 0.017572887, + -0.003346648, + 0.010393275, + 0.03228586, + -6.2104844E-4, + -0.015655156, + 0.010053574, + 0.0037145128, + 0.027714964, + -0.023859657, + 0.01766285, + 0.012118244, + 0.020700151, + -0.019541306, + -0.004356879, + 0.01721591, + -0.03925515, + 0.023762567, + -0.016955247, + -0.004288883, + -0.0058588726, + -0.0051292293, + -0.017823672, + -0.002484979, + -0.008993867, + 0.012005011, + 0.017676497, + 9.2198537E-4, + -0.016125198, + 0.007550487, + -0.003769848, + -0.0016721894, + -0.006973699, + -0.012944627, + 5.059043E-4, + 0.009656605, + -0.025903888, + -0.022064399, + -0.008440177, + 0.011679989, + 0.011836558, + -0.002124751, + -0.009620741, + 0.0107241385, + 9.025972E-4, + 0.017056243, + -0.029973743, + 0.0028985068, + 0.0028604711, + -4.5782683E-4, + 0.028061701, + -0.0076683476, + 0.0069507486, + 0.001413043, + 0.0020897575, + -0.002607962, + 0.0048806653, + 0.011890099, + 0.03021617, + -0.013661509, + -0.023753006, + -0.0107649695, + 0.017761389, + -0.015921166, + -0.048693374, + 0.008970556, + 0.006202, + -0.008704285, + -0.027843645, + -0.0067508295, + 0.028015379, + 0.011661267, + 0.012002809, + 0.007448099, + -0.023677193, + -0.004002009, + 0.0057490426, + -0.016445803, + -0.007624527, + 0.009144682, + 0.00607907, + 0.007996179, + -0.025018902, + -0.023668231, + 0.010282372, + 0.004516149, + -0.0039860676, + -0.012182851, + -0.018499078, + 0.01605361, + -0.013007773, + 0.027557256, + 0.0031408397, + 0.0034962557, + 0.034486398, + -0.019909345, + 0.024383144, + -0.007165089, + -0.008916077, + -0.0013960426, + 0.0037877623, + 0.008894743, + 0.018251495, + -0.03445301, + -0.020316413, + 0.019820515, + 0.0010922981, + 0.01785565, + 0.010396681, + -0.007990579, + 0.006132083, + -0.01134914, + 0.008371967, + 0.02405638, + -0.021285066, + 2.2307706E-4, + -0.012780867, + -0.009685352, + 0.0037736213, + 3.626366E-4, + -0.005442202, + 0.0076336926, + 0.040458735, + -0.012980342, + -0.019357944, + -0.013036382, + 0.012191818, + -0.010708788, + -0.024081927, + 0.0069456897, + -0.029738192, + 0.028337106, + -0.002941113, + 0.024673022, + 0.023644762, + 0.003320307, + -0.008914195, + -0.0027663712, + -7.651382E-4, + 0.009288881, + -0.019294647, + -0.003723806, + 0.009875912, + 0.0032548832, + -0.036377314, + 0.0030575392, + 0.0018578463, + -0.02199928, + -0.0378611, + -0.004520687, + 0.031502582, + 0.024454419, + 0.011477615, + 0.011939241, + 0.013620825, + -0.0047211144, + -0.01833871, + -0.020794053, + 0.01191751, + -0.005014358, + 0.0063315956, + 0.011839465, + 0.0040482767, + -0.009530265, + -0.023820871, + -0.0015673025, + -0.01791202, + -0.027013317, + -0.0021681637, + -0.025822386, + 0.02262214, + -0.018705595, + -0.003389555, + -0.0155576365, + -0.0020989755, + -0.011062611, + -2.211945E-4, + 0.018784082, + -0.022458062, + -0.0012498237, + -0.015818942, + 0.018272031, + 0.01498562, + 0.037987992, + 0.006800277, + 0.0067596245, + -0.013649376, + -0.018800516, + 0.009771801, + 0.021301677, + 0.0013967927, + -0.024809694, + -0.0018100907, + 0.008633543, + 0.010687159, + -0.025963774, + -2.471683E-4, + -0.0062790546, + 0.010959995, + 9.037155E-4, + 0.00824925, + 0.008464365, + -0.01537644, + -0.0042692623, + -0.013818306, + -4.2479305E-4, + -0.010670745, + -0.009234388, + -0.014455993, + 0.010732214, + 0.012315064, + -0.015182735, + -0.012333447, + -0.025446553, + -0.027405309, + -0.013652036, + -0.005054088, + 0.010519035, + 0.0025065546, + 0.02498779, + -0.012504795, + -6.4083445E-4, + 0.029206498, + 0.01252628, + -0.0076754554, + -0.018894432, + -0.009599299, + 0.0018953328, + 0.020889424, + -0.008420332, + -7.776946E-4, + 0.016210457, + -0.0026446835, + -0.0016552797, + 4.6654623E-5, + 0.0031126903, + -0.039755557, + 1.7320617E-5, + 2.491109E-4, + -0.008236452, + 7.7365345E-4, + -0.007131509, + -0.01869595, + -0.0018002366, + -0.019996498, + 0.016636267, + -0.0052656014, + -0.0014627344, + -0.0013416847, + -0.029595783, + -0.017627515, + -0.014933571, + 0.0044603907, + -0.029663095, + -0.003259297, + -0.0034982564, + -0.017663706, + 0.004111301, + -9.2741265E-4, + -0.005693402, + 0.0076049007, + -0.011898991, + 0.016806267, + 0.002209997, + 0.01991222, + -0.002493799, + -0.0073599806, + 0.016038675, + -0.0092280945, + 0.0016928694, + 0.00309672, + 0.02748656, + 0.006707677, + -0.018339846, + -0.0077504558, + -0.004870754, + 0.013118548, + -0.0015925631, + -0.015937565, + -0.0028217682, + -0.003846919, + -0.0032927562, + 0.0025332482, + -0.021508323, + -7.644631E-4, + 0.0114725055, + 0.013902106, + 0.01830044, + -0.01982894, + 0.020381216, + 0.037484277, + -0.008889387, + 0.0021717974, + 0.023906702, + 0.0050726905, + -0.022613132, + -0.025641419, + -0.0029364328, + -0.0210988, + 0.012847184, + -0.011111971, + -0.012482506, + -0.025332667, + 0.018872954, + 0.0075341207, + -0.013492758, + 0.008301027, + 0.014009454, + -0.023039358, + 0.028650017, + 0.012870684, + 0.00804667, + 0.0144714555, + -0.011230335, + 0.009964315, + 0.031148382, + 0.010244773, + -0.01301683, + -0.003799986, + -0.01412028, + -0.009120614, + 0.026249427, + 0.019724598, + -0.004920224, + 0.015332994, + -0.03746827, + -0.01810192, + -0.0017344658, + -0.017333262, + -0.0076957457, + -0.008722463, + -0.0033623625, + -0.0017694434, + 0.01016932, + 0.009250464, + 0.03506836, + -0.008203291, + 0.010430609, + -0.012033906, + 0.023399292, + 0.016033726, + 0.004397574, + -0.02738018, + 0.01824275, + 0.0177888, + -0.010828782, + -0.0069727018, + -0.017049666, + 0.011552406, + 0.013246631, + 0.025525818, + 0.008718122, + 0.017394518, + -0.007362694, + 0.0068189935, + 0.008457227, + -0.002103222, + -0.01603824, + 0.006733518, + 0.02677289, + -0.0057184673, + -0.032264397, + -0.0012713812, + 0.0061716596, + -0.014921256, + 0.019654442, + 0.010317412, + -0.016945438, + -0.03377613, + -0.009329988, + -0.01965682, + 0.0021654572, + -0.009522099, + 5.914858E-4, + -0.009173576, + -0.030718762, + 0.014555124, + -0.012832938, + -0.0031475225, + -0.0042724633, + -0.009707862, + 0.0020365599, + -0.025733909, + -0.024744578, + -0.016080668, + -0.033384703, + 0.01855941, + -0.029968414, + -0.003760443, + 0.001108769, + 0.022165636, + -0.0090803085, + -0.0031093396, + 0.001116161, + 0.017318912, + 0.0032641904, + -0.014815998, + -0.0037058198, + -9.33055E-5, + -0.02043639, + 0.02143086, + 0.0024637699, + 0.0065848813, + -0.019221216, + 7.32861E-4, + -0.0027912538, + -0.020563152, + 0.00701971, + 0.021820972, + -0.025153426, + -0.024397867, + 0.018850144, + -0.014771932, + -0.0026285225, + -0.033574052, + -7.032572E-4, + 0.006888626, + 0.007273349, + 0.012255879, + -0.01549994, + -0.007076816, + -0.0123016825, + -0.0011503451, + -0.014129391, + -0.027924037, + 0.008364329, + -0.007826688, + 0.0077065164, + -9.486804E-4, + -0.003907187, + 0.019723807, + -0.0240219, + 0.026308136, + 0.009468695, + -0.03284965, + -0.023185592, + 0.014224581, + -0.020505643, + -0.027702289, + 0.010519392, + -0.014162248, + -0.0025497451, + 0.028785877, + -0.01698611, + 0.010307299, + 0.0012498143, + 0.005360911, + 0.0041425806, + 0.0186214, + 0.013808067, + -0.005042473, + 6.493508E-4, + -0.0016401251, + -0.026084306, + 0.014433106, + 0.008107705, + -0.0030866463, + -8.660464E-4, + 0.015706126, + 0.038665093, + 0.0010455301, + 0.027593572, + -0.0047451514, + -0.025457947, + -0.010338179, + 1.47138E-4, + -0.01682345, + 0.01727019, + -0.027543593, + -0.010510465, + -0.013630866, + -0.009836238, + -0.003999225, + 0.0019900578, + -0.010055757, + 0.008451306, + -0.01952451, + -0.002096688, + -0.022341685, + -0.015202319, + -0.008264192, + -0.0072855796, + -0.0052045034, + 0.020485139, + 0.029228816, + -0.008709276, + 0.007736197, + -0.0028406119, + -0.017161978, + -0.012904727, + 0.003373207, + 0.0114780795, + -0.011701605, + 0.0026473806, + -4.7824328E-4, + 0.022644708, + 0.019268993, + 0.004989102, + 0.013286356, + 0.011801397, + 0.0062099667, + -0.0015993055, + 0.014430095, + -0.027586313, + -0.012549138, + -0.016097842, + 0.018888988, + 0.01061672, + 0.00900873, + -0.025593763, + -0.02255374, + 0.0061273715, + 0.019686306, + -0.027414056, + 0.00950625, + 0.007991258, + -0.013218322, + 0.016092809, + 0.01904577, + -6.809402E-4, + 0.012416056, + -0.0028090258, + 0.014459776, + 0.014851047, + -0.0051728096, + 0.0071510975, + 0.033938523, + 0.004328686, + -0.024905652, + -0.014608721, + 0.030095138, + -4.1972593E-4, + -0.009388391, + 0.018238965, + 0.013496059, + -0.012361653, + 0.0061646625, + -0.004382272, + -0.0043113343, + 0.010202126, + 0.043314427, + 2.9668576E-4, + 0.009835178, + -0.023955466, + 0.005637359, + 0.0063034347, + -0.0036946998, + -0.0016214277, + -0.0014575785, + 0.023529373, + 0.0026322745, + 0.002861314, + -0.0026875718, + 0.001943605, + 0.0049630255, + -0.004878994, + 0.008049003, + 0.017250858, + 0.005579274, + -0.02249565, + 0.02804928, + 0.010066462, + -0.012208787, + -0.0072643673, + 0.035900947, + 0.008216299, + 0.028555164, + 0.007772128, + -0.024491379, + 0.019518228, + -0.0013394782, + -0.012001668, + 0.0052681803, + -0.018129248, + -0.03299614, + 0.012579697, + -0.01975244, + 0.015017644, + -0.004508001, + 0.005560829, + 7.882018E-4, + -0.004337088, + 0.008186088, + 0.032447815, + 0.02675506, + 0.01690941, + 0.04383155, + -0.02154437, + -0.01061002, + 0.011992484, + 0.020140024, + -0.011416736, + 0.006011813, + -0.029283794, + -0.005227279, + 0.006910429, + 0.016170569, + 0.0070205894, + 9.0930174E-4, + 0.015911074, + 0.0021494033, + -0.009303793, + -0.015461911, + 0.009709991, + 0.014106456, + -0.03583661, + -0.009150953, + -0.0043884576, + -0.012168952, + 0.017462462, + -0.020544074, + -0.0042420635, + 0.011555417, + 0.010529712, + 0.0033479286, + 0.0051054438, + 0.0035158636, + -0.014075796, + 0.005439783, + 0.026174724, + -0.026671883, + 0.011323239, + 0.011008763, + 0.009164495, + 0.016801937, + -0.0053336164, + -0.008335551, + -0.0021568253, + -3.285456E-4, + 0.024067363, + 0.024638558, + -0.019472405, + 1.8147516E-4, + -0.011160129, + 0.009052264, + -0.02098088, + -0.00556715, + -0.009534195, + 0.011538013, + -0.0071111233, + 0.028804492, + -0.009623421, + 9.668169E-4, + 0.03589427, + -0.02195537, + -0.0037408553, + 0.013461412, + 0.0069787325, + -0.015575711, + 0.00984512, + -0.032469813, + 0.0010605471, + 0.020592207, + 0.01409968, + 0.008223076, + -9.027048E-4, + -0.009134519, + -0.0032745535, + -0.004072686, + -0.025459431, + -0.0048903544, + -0.025771996, + -0.0024242138, + -0.022989491, + 0.01708574, + 0.007633901, + 0.013675653, + 0.0043213037, + 0.015405228, + -0.007417996, + -0.03648196, + 0.002080437, + 0.013959795, + 0.02199036, + -0.002624528, + 0.023068555, + 0.0045776432, + 0.024790276, + -0.01190246, + 0.01042922, + 0.01271642, + 0.009000218, + 3.667155E-4, + -0.00712533, + 0.013044713, + -0.019608874, + -1.0168068E-4, + 0.011979776, + -0.00672041, + 0.011889079, + 0.0125433365, + 0.034081414, + -0.01129357, + -0.006155758, + 0.01614298, + -0.029191565, + 2.2720791E-4, + 0.009000636, + -0.0076340693, + 0.017899001, + -0.022545036, + -0.022773108, + -0.0043204785, + 0.016184147, + -0.0057835733, + -0.041203327, + 0.035872627, + -0.010423609, + -3.6752224E-4, + -0.01422092, + 0.0036080126, + 0.012578879, + -0.010969855, + -0.0036574781, + 0.025889957, + 0.0026149962, + 0.021384196, + -0.01628086, + 0.018437937, + -0.0021488278, + -0.0019412953, + -0.0019612184, + -0.048452288, + -0.011973684, + 0.027934324, + 0.010173437, + 0.013256972, + -0.023785846, + -0.014335, + -0.0073528243, + -4.5213307E-4, + 0.0071847597, + -0.0059325057, + 0.0071284515, + 0.023083845, + -0.015768485, + -0.029125188, + 0.006118333, + -0.025113974, + -0.014283358, + -0.0036357848, + 0.023404254, + 0.016914079, + -0.005172858, + -0.0063786097, + 0.017086709, + 0.025720937, + -0.0046576173, + 0.01882708, + -0.030351829, + 0.02326291, + -0.0023098919, + -0.004115763, + -0.014322854, + -0.0034933328, + -0.008453324, + 0.0059852106, + -0.018635707, + 0.011271071, + -0.0132904, + -0.026524125, + 0.0021795093, + 0.01627932, + 0.015142133, + 0.01001495, + 7.257752E-4, + 0.030533731, + -0.00847485, + -0.016311964, + 0.020761523, + 0.014751329, + -0.008881673, + -0.002292986, + -0.029537756, + 0.0042065918, + -0.0031070376, + -0.017308835, + -0.014743085, + 0.012740312, + 0.0037331593, + -0.011476759, + 0.008738982, + 0.0052840253, + 0.00848599, + -0.025520638, + -0.004416759, + 0.0030695212, + 0.010689845, + 0.025609747, + 0.00602325, + -0.021582367, + -0.012829249, + 0.0072369524, + -0.0043956647, + -0.04000093, + 0.01181305, + -0.037058774, + -0.00551832, + -0.004472101, + -0.0012785268, + -0.0059386967, + -0.006451941, + 0.033789467, + 0.0018207978, + -0.032773938, + -0.008824218, + -0.019686941, + -0.0026969884, + -0.0237339, + -0.0033928715, + 0.018648727, + 0.010942841, + -0.0034468381, + 0.0089526875, + 0.0062261233, + -0.032929994, + 0.009670429, + -0.010091147, + 0.024664162, + -0.012245952, + 0.0112167895, + -0.0044678324, + 0.008485006, + -0.029099325, + -0.0020998635, + 5.326257E-4, + -0.007980915, + -0.0058523943, + 3.080054E-4, + 0.019260192, + 0.0020566792, + 0.033166986, + -0.0044309497, + 0.0012825094, + -0.015056716, + 0.0027231597, + 0.024624107, + 0.015109149, + 0.015636265, + -0.023937866, + 0.016422093, + 0.010010376, + 0.02315026, + 0.0049604625, + -0.008346663, + -0.011871895, + -0.0015420293, + -0.034650326, + -0.030189179, + -2.0325449E-4, + 0.008189056, + -0.011226892, + 0.0016294242, + 0.0031329521, + -0.0122017665, + 0.017241666, + -0.006177993, + 0.0037273199, + -0.016083723, + 0.016513037, + -0.0038160807, + 0.042897515, + 0.016173944, + 0.0024701634, + -0.013900154, + 0.019070677, + -0.0072991364, + -0.0054460117, + -0.03276636, + 0.0054388684, + 0.019493818, + 0.0071272, + 0.0015242847, + 0.012841943, + 0.02461413, + 0.025926447, + -0.0049459934, + -0.011649416, + -0.0016280756, + 0.006628424, + 0.0215955, + 0.009631433, + -0.008147014, + 0.006595236, + -0.014406365, + -0.01697901, + 0.017712042, + 0.006353278, + -0.009172257, + -0.0052885422, + 0.025157798, + -0.019679852, + 0.010036406, + 0.030017067, + -0.02289055, + 0.009897232, + -0.021364244, + -0.0078494055, + 0.008825272, + 0.012328333, + 0.024392314, + -0.0059559317, + -0.0039628255, + 9.400762E-4, + -0.0046982, + 0.019226417, + 0.007310846, + 0.020366326, + -0.0056290994, + 0.013424821, + -0.019234234, + 0.010252674, + 0.005654792, + 0.019828254, + 0.01849901, + -0.031271, + -0.0038207918, + -0.014608492, + 0.03905855, + -0.02590507, + 0.018253345, + 0.017047437, + 0.003330583, + -0.0043544625, + -2.823024E-4, + -0.02305429, + 0.010544795, + -0.006140286, + -0.013510092, + 0.0027879227, + -0.0039757127, + -0.0025999986, + 0.019196864, + -0.02074859, + -0.033520404, + -0.020801922, + -0.026759807, + 0.011143036, + 0.006262293, + 0.0053234803, + 0.00808142, + -0.026710758, + 8.9790154E-4, + -0.0125349965, + -0.009228304, + 0.017165089, + -0.013272727, + -0.024590723, + -0.0066141486, + 0.002760439, + -0.039046895, + -0.008684751, + 0.03494188, + -0.002713515, + 0.0039245537, + -0.009403545, + -0.0038359968, + -0.027964225, + 0.026046632, + -0.011854444, + -0.0015674427, + -0.010045815, + -0.005644932, + -0.008696436, + -0.0015132552, + -0.006249505, + -0.0014838148, + 0.009241707, + -0.022016563, + 0.003417847, + 0.009408002, + 0.013932629, + 0.006141845, + -0.015542237, + 0.0018779858, + 0.016560597, + -0.026386274, + 0.008205746, + 0.018718641, + 0.017478088, + -9.312156E-4, + 0.017702794, + 0.016383737, + 6.7192974E-4, + -0.010014999, + -0.016898748, + 0.008249768, + -0.0033739563, + -0.008055241, + 0.0037048599, + 0.027986482, + -0.0217498, + -0.0073432317, + -0.03620379, + -0.026518047, + -0.0076876874, + 0.028960422, + -0.012145313, + -0.001655933, + -0.009020523, + 6.1706104E-4, + -0.013531257, + 0.008172038, + -0.001259996, + -0.009185544, + -0.0015519867, + -0.005039087, + 0.035222717, + -0.015727699, + -9.6848665E-4, + 0.0042677536, + 3.3185247E-4, + 0.01765448, + -0.047494017, + 0.011764826, + 0.0052256417 ], - "paletteEmbedding": [ - -0.011550062, -0.028296204, 0.006771925, -0.009012336, 0.001963732, - -0.0021196702, -0.025852973, 0.009432315, -0.008928625, 0.0050934693, - -0.04207024, -0.019556193, -0.080890775, 0.026003173, 0.027845833, - 0.020766731, -0.009946814, 0.04505873, 0.020393977, -0.031345468, - 0.007435378, -0.025888402, -0.032411765, -0.020375043, 0.03804736, - -3.8302902e-4, 0.051577058, 0.046573527, -0.025061352, 0.007773326, - 0.04343307, 0.038342636, -0.010901326, -0.038480055, 0.011220565, - -0.004773017, -0.0051123593, 0.0029881583, 0.021352598, -0.047930602, - -0.027709449, -0.006328053, -0.052621573, -0.026434287, 0.016266428, - -0.0029395397, 0.018597435, -0.022946052, -0.011826307, -0.005357181, - -0.037885584, -0.025031365, 0.0054718866, 0.035216533, 0.028459933, - 0.014770068, -0.062137198, -0.031468075, -0.009339211, -0.08430837, - -0.057070833, -0.06025354, 1.9718276e-4, -6.848097e-4, -0.025653413, - -0.020776352, 0.035156947, 0.06759366, 0.02113064, -0.0072289947, - -0.060571138, 0.007999932, 0.015480856, -0.015381956, 0.034108184, - -0.012041362, -0.027588516, -0.006270268, 0.062428113, 0.009999128, - -0.04708752, 0.027121792, -0.022832872, 0.026888607, -0.024291584, - -0.022808377, 0.020175492, -0.054888766, 0.02256774, 0.035012826, - -0.007422016, 0.027329905, 0.016551089, 0.07400968, 0.030175213, - 0.023297207, 0.0028429485, -0.018592361, 0.061841533, -0.010238515, - -0.007734405, 5.659099e-4, -0.0020712197, 0.041412663, -0.026867352, - 0.016359312, 0.00476456, -0.03771432, 0.011978813, -0.06676306, - -0.004891998, -0.02806893, -0.047251515, -0.0152734695, 0.03539339, - 0.035243787, 0.012584407, 0.017779825, 0.063104846, -0.029483687, - 0.023808792, 0.015409445, -0.03635709, -0.0067944336, 0.032823827, - 0.04362591, 0.03184549, -0.008975442, 0.004610516, 0.060523994, - 0.008610388, 0.0056097126, -0.017770316, 0.003896075, -0.04415644, - -0.04985252, -0.02045067, -0.039008226, 0.02155017, -0.030713174, - -0.009624918, 0.016320297, 0.040541723, 0.03292406, -0.008971601, - -0.051105723, -0.029215347, -0.03810795, 0.023684224, 0.07180833, - -0.033584867, 0.0120548755, 0.04670142, -0.015616087, -0.02740114, - 0.040473815, -0.045204837, -0.004717035, 0.033814088, 0.007287992, - -0.003149123, 0.0043030777, 0.025665078, 0.02738759, -0.023983268, - 0.012850191, 0.040640958, -0.034044422, 0.0018443724, 0.04596227, - 0.047407065, -0.0030501948, -0.0075149294, -0.029672043, -0.041103788, - -0.026395716, -0.009673417, -0.043209292, -0.040005837, 0.019779878, - -0.0037769598, -0.0054100403, -0.035962414, 0.025518576, -0.014488397, - -0.016504025, -0.06322394, -0.026811182, 0.06000191, 0.001959461, - 0.03823459, 0.04600329, -0.02600728, 0.013411592, -0.059539337, - -0.009891865, -0.021538218, 0.0467094, -0.01450845, -0.009408349, - 0.003513314, -0.019812176, -0.008745836, 0.03490124, -0.014336066, - -0.0031870045, -0.046552945, 4.157216e-4, 0.0068237456, 0.03626955, - -0.051204976, -0.046011597, 0.013497658, 0.0311187, -0.017741494, - -0.01509207, 0.05726164, -0.005148498, 0.026703158, 0.019300694, - 0.08235795, 0.0055315043, -0.024067938, -0.026538549, -0.044058226, - -0.018135061, 0.04550188, 0.048900314, 2.912457e-4, -0.08468041, - 0.048578992, 0.023601888, -0.008183778, 0.015969755, -0.028806826, - -0.03731432, -0.035422094, -0.012399512, 0.010359262, 0.0070577087, - 0.0027861344, -0.018018834, -0.058501624, -0.017950138, 0.055917412, - -0.005145709, 0.056626096, 0.046911407, -0.036625486, -0.017614651, - -0.031756133, -0.0064548743, 0.008766727, -0.022690225, 0.018713467, - 0.03233279, -0.01563443, 0.009966967, -0.03870344, 0.04175976, - 0.05656459, -0.05834396, 0.016125854, 0.00999552, 0.0019805245, - -0.0038376045, 0.01013575, 0.039145015, -0.008334002, -0.027303832, - 0.014277087, -0.00779156, 0.05887982, -0.0027070353, -0.020818418, - -0.029006755, 0.028835917, -0.016797533, 0.034694154, 0.010479054, - -0.041126557, 0.00420994, -0.086625524, 0.030650064, 0.0143475905, - -8.509037e-4, 0.072253995, -0.027347982, 0.012954809, -0.0011920539, - 0.0062959976, 0.006612069, 0.03230714, -0.036709204, -0.024801888, - -0.0178121, -0.03789194, 0.008776773, 0.0037091617, -0.03267636, - -0.016361613, -0.014356885, 0.039295442, 0.020292684, 0.0033689335, - -0.011576239, 0.03856488, 0.047410816, -0.006684282, 0.01264397, - -0.028406305, 0.039370097, -0.01643226, 0.009344993, -0.03273014, - -0.023629073, 0.021877129, -0.022060342, -7.9795974e-4, 0.01845854, - -0.017014615, -0.03980103, 0.0072999513, 0.032836333, -0.0017911507, - -0.07126491, -0.023922658, 0.023674792, 0.01407776, -0.036645018, - -0.00724595, 0.018436637, 0.011397972, -0.006013779, 0.026164435, - -0.090137854, -0.010940998, 0.012315434, -0.04006076, 0.06374861, - 0.004121231, 0.0188127, 0.025218174, -0.042355772, -0.024683142, - 0.030243993, -0.03655479, 0.0026210337, -0.07159394, -0.010394283, - -0.008195818, 0.0055322894, 0.01055315, 0.05896915, 2.8424108e-4, - -0.012397576, 0.030380566, 0.024839504, 0.025482232, 0.030937478, - -0.016441595, 0.08036162, -0.0013051205, -0.029147074, 0.001923937, - -0.007873128, 0.05991778, -0.045436796, -0.012129224, 0.057379093, - -0.01571332, -0.0010884309, -0.014436527, 0.021067748, -0.047007125, - -0.01049039, 0.028552623, -0.017774222, -0.015408271, -0.030707188, - -0.051426273, 0.010522565, -0.03788753, 0.019984283, -0.066359885, - 0.018359661, -0.016928434, -4.67507e-4, -0.029323233, 0.024443824, - -0.019712238, 0.030993203, -0.018736612, -0.0059435326, 0.009381297, - 0.008137971, -0.018579636, -0.005193971, -0.0232727, -0.0011237417, - 0.007911678, -0.04500257, -0.032396276, -0.062453978, -0.03088973, - -0.0025333287, 0.034182176, -0.058658503, 0.046564747, 0.021799183, - 0.016728774, -0.030356994, -0.009162338, -0.014695539, -0.003380494, - 0.0094929645, -0.021147298, 0.03475112, -0.09745174, 0.013638798, - 0.034407195, -0.0023433587, -0.038744014, 0.027232338, 0.03412989, - -0.041954946, -0.012685116, -0.05402317, -0.0025836201, -0.058570605, - 0.0418232, 0.0101783015, 0.022668682, 0.014996666, 0.037738632, - 0.009216324, 0.022953814, -0.018190434, 0.054963153, 0.020098438, - 0.0061128694, 0.030511267, 0.044677038, 0.004469722, 0.04169456, - 0.024108563, 0.055350017, 0.05084097, 0.0037539713, 0.025411954, - 0.029946707, 0.027385678, -0.02087834, -0.011783527, 0.016317323, - -0.0049105287, 0.0129226195, -0.032285277, 0.0022855895, -0.022992225, - -0.051459227, -0.007778349, 0.011093499, 0.036201656, -0.049263168, - 0.0057531805, 0.037329286, 0.081503175, -0.007615068, 0.07475467, - 0.022570772, 0.035508346, 0.022151679, 0.028647393, -0.03353154, - 8.160312e-4, -0.06345461, -0.04644201, 0.030511085, 0.034178533, - -0.0015412614, 0.018382316, -0.0064265346, -0.022996498, -0.0019559131, - 0.07314135, 0.017121544, -0.008406456, 0.05466453, 0.02140933, - 0.06350522, 0.011678906, -0.044870712, -0.03963909, 0.006029812, - 0.007777613, -0.025830202, -0.017030308, 0.05348961, -0.028469816, - 0.0120100975, 0.009115424, 0.02866675, 0.010780605, 0.011760934, - -0.029431604, 0.01764007, -0.013188923, 0.003442448, 0.0027208827, - 0.015306545, 0.032659456, 0.030237814, 0.06625716, -0.038760934, - -0.077748746, -0.06092661, -0.014784725, -0.015685378, -4.2831272e-4, - 0.0452159, 0.05450318, -0.021151805, 0.02776509, 0.050658718, - -0.014635978, 0.044074338, 0.018441636, -0.031360827, -0.012208892, - 0.012654452, 0.015210424, 0.0149484575, -0.0066869636, -0.009140486, - 0.06074451, -0.028977597, 0.0679391, -0.013902823, -0.03679316, - 0.0063612056, 0.049981136, -0.0044641485, -0.014731241, -0.013020238, - 0.07284978, -0.016836204, -0.06295733, -0.0050419513, -0.044186343, - 0.038189705, -0.031911775, 0.012835214, -0.009443015, 0.010049734, - -0.016816752, 2.4039285e-4, -0.08136673, 0.042633977, -0.018144952, - -0.00807795, 0.037941907, 0.029210469, -0.043265566, -0.043464243, - -0.01308824, -0.0047676824, -0.024114272, 0.017952677, -0.045504943, - 0.03512885, 0.015209136, 0.03481308, -0.0058548036, 0.02602409, - -0.021810513, -0.021322416, 0.015047205, 0.08921074, -0.021387296, - 0.020426448, -0.020369781, 0.009619579, -0.015307469, 0.018697135, - -0.0088104205, 0.05296076, -0.006420567, -0.008800548, -0.014257853, - -0.023205256, -0.0018815248, -0.021439634, -0.01696264, 0.015784152, - -0.074163966, -0.023106439, 0.010579999, -0.027413763, 0.023043597, - 0.0251441, 0.042232096, 0.05055515, -0.016299214, -0.018593103, - -0.015129624, -0.03949943, -0.05370899, -0.040237404, 0.031064384, - 0.0017576157, -0.029775456, -0.012302665, 0.0137978885, -0.01295447, - -0.013525067, 0.027019998, -0.01653241, -0.051473103, 0.0035829362, - 0.0038521907, 0.040336456, -0.028024873, -0.006156398, 0.042252626, - -0.055269722, 0.016902702, 0.017445348, 0.013850536, 0.008066321, - -0.01573941, -0.00471759, 0.026205037, 0.023526678, -0.04437839, - -0.018192101, -0.017875863, -0.041130647, 0.020226816, -0.002049951, - -0.016056515, 0.020935217, -0.02672883, -0.02048278, -0.022883853, - -0.041844323, -0.029602999, 0.023230456, -1.674209e-4, 0.0018034034, - 0.068247706, 0.009529835, 0.012720886, -0.024389308, 0.017195227, - -0.014081563, -0.038187582, -0.028509447, -0.013423236, -0.11711611, - -0.005094408, -0.002260658, -0.01740132, 0.017564867, -0.046901736, - 0.013392449, 0.007481772, 0.044069633, -0.014290601, -0.026495911, - 0.034656424, 0.014275085, -0.0485747, -2.6245136e-4, -0.01145868, - -0.005372282, 0.028644346, -0.020900248, 0.055009402, 0.006944342, - 0.0032787914, -0.0033602908, 0.011621471, -0.030056298, -0.034808695, - 0.010038062, -0.019056568, -0.0016239616, 0.05696237, -0.025268141, - 0.010870724, -0.059075944, 0.03473267, 8.48162e-4, 0.023533741, - -0.017851714, 0.019372148, 0.026137222, 0.045858797, -0.034381434, - -0.03206802, -0.037640493, 0.010760219, 0.029726401, 0.048072897, - -0.029377336, -0.047374535, -0.036948577, 0.027734326, -0.025612472, - -0.021357719, -0.0034948655, -0.043092363, -0.03679797, -0.011549913, - 0.009024145, -0.009165709, 0.007764915, 0.014292887, 0.0075674555, - -0.009701111, 0.02330063, 0.014491956, 0.028399028, -0.0052085496, - 0.03481095, 0.045376863, 0.023588685, 0.031522896, 0.028082222, - 0.0054784874, -7.517058e-4, 0.003396101, -0.043914422, -0.023563227, - -0.069667995, 0.0050644283, -0.0010470089, -0.01441004, 0.014411513, - -0.015068722, 0.017644582, -0.014875702, 0.10791091, 0.040530547, - -0.030372828, -0.025431402, -0.023660367, -0.009629318, 0.037374195, - -0.016713973, 0.04345991, -0.013805611, 0.0020461942, 0.019340914, - 0.030724151, -0.051207848, 0.019270485, 0.037025712, 0.04378679, - 0.0133201685, -0.026998727, 0.003653983, -0.023043256, -0.004026982, - -0.018212046, -0.0021968046, 0.019503433, 0.0078042345, -0.038354386, - 0.021718545, 0.008852447, 0.05883986, 0.03988161, 0.036308866, - -0.024445772, 0.021698738, 0.019297855, -0.013197283, 0.019685151, - 0.014651146, 0.015058621, 0.049490757, 0.01953333, 0.025345754, - 0.034489587, 0.05389558, 0.016623193, -0.016426243, -0.023175688, - 0.0077701933, -0.022700226, 0.027288567, -0.01871653, -0.009914291, - -0.056024075, 0.013012147, 0.023585709, 0.037587453, -0.05189876, - -0.06817043, -0.017467553, 0.011946739, -0.0073384442, -0.041835234, - -0.006953417, 0.028769864, 0.020684296, -0.011852992, -0.030310314, - 0.039835647, -0.03886317, 0.010797563, 0.012826624, 0.0062036105, - 0.102378145, -0.01595, -0.025707016, -0.019033039, 0.014372606, - 0.0421854, -0.02402527, 0.02680974, -0.022188468, -0.06865744, - 0.013620472, 0.015722942, -0.00325675, -0.03772356, -0.0031998914, - 0.036560517, 0.02191372, 0.04648221, -0.02558291, 0.0052329632, - -0.0052557914, 0.013487325, -0.013496501, -0.024936847, -0.024092995, - -0.03474718, 0.0031454721, -0.017144384, -0.044424493, 0.012840275, - 0.0128577305, -0.006411026, -0.0032821014, -0.018571524, 0.027267262, - 0.03370711, -0.0013636479, 0.008254566, -0.041584037, 0.0661245, - 0.06170106, -0.027953424, -0.040683538, -0.050780512, -0.023977581, - 0.01471139, -0.009723481, 0.03990793, 0.0017372981, -0.037659157, - -0.031714007, 0.003662474, -0.03412693, 0.038121723, 0.06085562, - -0.04304653, -0.00696359, -0.022552917, 0.05585943, 0.01966172, - 0.029210337, -0.02808258, 0.02165984, -0.019331716, -0.00729433, - -0.06739093, 0.0070437808, 0.032098558, 0.006736055, 0.006508166, - -0.005632594, 0.035707768, 0.028049482, -0.008969989, 0.06277337, - 0.03254669, -0.053394802, 0.03457459, 0.012547776, 0.022444393, - 0.039976638, 0.0010112553, -0.011390554, -8.6819637e-4, 0.0036298446, - 0.012914328, -0.0037676038, 0.013940725, 0.034808934, 0.030687142, - 0.0035809516, 0.011499897, -0.010780439, -0.005058825, 0.010360737, - 0.04050269, -0.007576911, -0.037033465, -0.033663794, -0.014715386, - -0.08935264, -0.0205376, 0.0010227215, -0.02084101, 0.034971718, - 0.036209714, -0.01168137, 0.011923307, -2.4879386e-4, 0.018012535, - 0.02995338, 0.040541492, 0.011897837, -0.036975905, -2.2049078e-5, - -0.036177184, -0.025565362, -0.007619956, -0.027961196, -0.04047847, - -0.037258096, -0.026643544, 0.019997442, 0.06767565, -0.0077113113, - 0.012291524, 0.060250446, 0.048157513, -0.006055271, -0.019998537, - 0.019531863, -0.06728031, -0.019979522, -0.012472845, 0.010709967, - 0.010271492, -0.035615336, -0.008332075, 0.03594571, -0.030399872, - -0.04760059, -0.023172136, 0.020580575, -2.2946027e-4, -0.033605162, - 0.003616012, -0.012914118, 0.007356876, 0.025543055, -0.06934398, - 0.03574635, 0.018851122, -0.03604651, -0.009096332, -0.0025495344, - -0.024534853, -0.026699856, 0.05105933, 0.036929604, -2.1352747e-5, - 0.01108541, 0.049168292, 0.0067654653, 0.013246247, -0.016794695, - -0.052230332, 0.038972598, -0.0047935112, 0.007972875, 0.049107816, - 0.0014858848, 0.0057705035, -0.00607358, 0.043467354, -0.04424558, - -0.0049943677, 0.020056503, -0.05635177, -0.00783942, 0.021090921, - -0.021166312, 0.024928046, 0.037513774, -0.003923825, -0.022866767 + "paletteEmbedding" : [ + -0.004265803, + 0.042820178, + -0.039333668, + 0.01577529, + 0.088544704, + 0.032872938, + 0.003169116, + -0.053099193, + -0.011078261, + -0.026161822, + 0.03967884, + -0.026669491, + -0.030387923, + -0.0028392705, + -0.007687095, + -0.0124212345, + -0.05695327, + 0.035688665, + -0.03630447, + 0.026540758, + 1.6500718E-4, + -0.00902001, + 0.006926231, + 0.038860686, + -0.04306774, + -0.014246746, + -0.023593664, + -0.00641437, + -0.054911498, + 0.034842238, + -0.021351451, + 0.00433579, + -0.020813378, + -0.0312864, + 0.05921211, + -0.018639144, + 0.050522774, + 0.036197744, + 0.009856623, + -0.008034166, + 0.04774016, + 0.046257854, + -0.039062656, + -0.0598981, + -0.004064888, + -0.026628008, + -0.013935014, + 0.020113757, + -0.019839339, + -0.036672555, + 0.031311564, + 0.027043879, + -0.005810694, + -0.020111192, + 0.017775029, + -0.031344973, + 0.014757645, + 0.0027704057, + -0.034990817, + -0.02534993, + 0.028907424, + 0.032422677, + 0.006318686, + 0.039849497, + 0.026854172, + 2.0513678E-4, + 0.021916209, + 0.027331848, + 0.034081377, + 0.03184967, + 0.017209684, + -0.043136146, + 0.01873748, + -0.052708652, + 0.0105967885, + -2.0502883E-4, + 0.034165528, + -0.010350873, + -0.050300714, + 0.012467522, + -0.011464513, + -0.04110708, + -0.0053697606, + -0.03756101, + -0.010813045, + 0.009994716, + -0.056675214, + -0.016036686, + 0.009099234, + 0.030039215, + 0.020536367, + 0.033144757, + 0.012943696, + 0.004122367, + 0.0029344566, + 0.038337942, + -0.03192598, + -0.011670717, + 0.01553967, + -0.01845107, + 0.04611765, + 0.012015475, + -0.04556829, + -0.03649192, + 0.0770329, + -0.011600952, + -0.014914908, + 0.07370289, + -0.0011424622, + -0.010535961, + 0.021389296, + 0.0063752197, + -0.04405108, + -0.013458043, + -0.0031658425, + -0.018685682, + 0.006973518, + 0.0482904, + 0.015626261, + -0.046644256, + -0.009481204, + 0.037408344, + 0.017336259, + -0.048804093, + -0.00599133, + 0.016994687, + 0.007609343, + -0.017682238, + 0.041221987, + -0.032449666, + -0.0039055524, + -0.030273646, + 0.016416406, + -0.0057213893, + -0.043154802, + -0.031541064, + 0.057118397, + 0.020258786, + 0.013556361, + 0.039592072, + 0.026665963, + 0.07531054, + -0.03747833, + -0.027979424, + -0.0020283412, + -0.028961701, + 0.07247525, + -0.0043636635, + -0.03848807, + 5.57707E-4, + 6.38189E-4, + -0.043991197, + 0.024883486, + -0.02994655, + 0.009945856, + -0.0015438051, + 0.029770868, + 0.036448836, + -0.044998385, + 0.065648206, + 0.0032306607, + 0.02512097, + 0.0108064115, + -0.009635489, + 0.028808368, + -0.014343349, + 0.049612116, + -0.02775608, + 0.002751552, + 0.0019416298, + -0.025897797, + 0.008389177, + 0.020603709, + 0.011644118, + -0.038302407, + 0.0072043845, + -0.033640668, + -0.061373457, + 0.0026964268, + 0.05839059, + -0.01530455, + 0.004095314, + -0.022560375, + -0.07793343, + -0.033723496, + 0.028057152, + -0.032820456, + 0.008671316, + -0.0044324542, + 0.007232882, + -0.0025865778, + -0.017928937, + -0.019949697, + 0.014417992, + 0.011848451, + 0.036891464, + 0.021318482, + 0.014926593, + 0.03537462, + 0.016238578, + -0.029837675, + -0.012876378, + 0.029253772, + -0.07294577, + -0.040646408, + 0.066521324, + -0.0068058297, + 0.022543889, + -0.030182386, + -0.03576564, + -0.038690556, + 0.018043324, + 0.010655983, + 0.04572057, + -0.020696376, + 0.0013800268, + -0.044943582, + 0.007832927, + 0.009169597, + -0.037620235, + -0.008551227, + -0.011853851, + 0.025328131, + 0.008533548, + -0.07906668, + 0.0059509007, + 0.006893827, + -0.04949483, + 0.030291302, + 0.021490602, + -0.015300423, + -0.0014245986, + 0.008182338, + -1.7930925E-4, + -0.018795375, + 0.020558573, + 0.06564943, + 0.08085744, + 0.020018209, + 0.010538707, + -0.031069642, + -0.014106494, + 0.069110855, + 0.01030949, + 0.033763222, + 0.0065238294, + -0.009250767, + -0.02296159, + -0.004277213, + 0.023529429, + 0.004450045, + -0.02220484, + -0.059407067, + -0.014636016, + 0.014197419, + 0.0028617715, + 0.01577405, + -0.06396456, + 0.03560689, + -0.004800174, + 0.039069943, + -0.010760638, + -0.008284617, + 0.006903807, + -0.014990089, + -8.5853797E-4, + 0.025507027, + -0.038590167, + -0.047897067, + -0.019025108, + 0.027222803, + 0.06627579, + 0.04372322, + -0.060270783, + -0.028853787, + 0.023134744, + 0.017593445, + 0.0051077814, + -0.024565065, + 0.031094467, + 0.015124958, + -0.024056645, + -0.009603042, + -0.0543681, + -0.02482447, + -0.027918389, + 0.0025167395, + 0.020408792, + -0.011360721, + 0.009503678, + 0.006266764, + 0.03033484, + -0.021923825, + -0.0055097127, + 0.032707453, + 0.07219218, + 0.049688812, + 0.016552314, + -2.620555E-4, + -0.010956122, + -0.0027949093, + -0.060106363, + -0.04529065, + -0.018911662, + 0.0065539274, + -0.03486284, + 0.014016937, + 0.03211092, + -0.066812985, + -0.012798202, + -0.02524867, + -0.023597624, + -0.015871901, + 0.004134738, + -0.04149658, + 0.005426969, + 0.013884305, + 0.053430952, + -0.023465628, + -0.0066405246, + 0.07033796, + 0.009909536, + 0.03241017, + 0.0019971482, + -0.016463, + -0.022881426, + -0.065663956, + -0.021715755, + -0.04036039, + 0.08440093, + 0.008264171, + 0.014137933, + -0.0121317245, + -0.035882004, + 0.07402502, + 0.043775342, + 0.0694613, + 0.07323235, + 0.005885618, + 0.008371773, + -0.0021773782, + 0.057151474, + 0.037108783, + 0.0033456883, + -0.019006882, + 0.04982689, + 0.0016423323, + -0.026392188, + 0.08172118, + 1.5459712E-4, + -0.022745853, + 0.005890419, + 0.031619485, + -0.06740177, + -0.0016265335, + 0.01029981, + 0.029367493, + 0.008169995, + -0.019744553, + 0.020065894, + -0.006797717, + -0.0120632555, + -0.0061039315, + 0.038209848, + -0.07130867, + -0.028728493, + -0.022682067, + 0.046502694, + -0.07979604, + -0.03143475, + -0.013720428, + 0.005397254, + 0.0266386, + -0.0080232, + -0.0078034755, + -0.03234588, + -0.026190588, + 0.05845091, + -0.004402378, + 0.03262665, + 0.026751652, + -0.0024989878, + -0.060396276, + -0.0034122139, + 0.066787235, + 0.010666945, + -0.01895736, + 0.041920803, + 0.008445802, + -0.050947044, + -0.029302778, + 0.02200469, + 0.07956972, + 0.017241698, + -0.032145962, + -5.803373E-4, + -0.03373607, + -0.016675884, + 0.042207647, + -0.03164215, + 0.021233402, + 0.014778167, + 0.032841083, + 0.012697727, + 0.0074842344, + -0.007152354, + 0.030797936, + 0.07151817, + 0.014117363, + 0.038795233, + -0.003989924, + 0.009225138, + -0.0053875567, + -0.055708427, + 0.0019306487, + -0.06113444, + -0.019329935, + 0.011389356, + 0.08375538, + -0.031946532, + 0.034698743, + 0.023918405, + 0.03850712, + 0.009129954, + 0.015173275, + 0.025779491, + 0.046832643, + 0.01027256, + 0.034785643, + -0.022950688, + 0.03222808, + 0.04381519, + -0.01304767, + 0.007911944, + -0.01998721, + 0.053366102, + -0.029603805, + -0.009330093, + -0.02791674, + -0.01113297, + -0.045717735, + 2.660089E-4, + -0.058526345, + 0.003069155, + 0.021894041, + 0.022372834, + -0.040254846, + 0.0127009945, + 0.015546986, + -0.043375902, + -0.018173713, + -0.038056035, + -0.02884794, + 0.0024651971, + -0.010054218, + -0.008612152, + -0.009149052, + 0.088016465, + -0.0077848425, + 0.022523973, + 0.011592771, + -0.035561785, + -0.012043672, + 0.019345433, + -0.027241059, + -0.026236666, + 0.015574501, + -0.0299555, + 0.0053922925, + -0.025080604, + 0.018844422, + -0.023989115, + 0.04096568, + 0.025685985, + 0.027752887, + -0.0010969187, + 0.038957417, + -0.018495895, + -0.021741763, + 0.06367312, + -0.035028003, + 0.011896088, + -0.03357464, + -0.024206074, + -0.028109627, + 0.019903677, + 0.004483754, + 0.03469137, + 0.0067337533, + -0.0024497139, + 0.0016783517, + -0.01439628, + -0.049068686, + -0.0060373736, + 0.002383416, + 0.026535176, + -0.053976193, + 0.020125866, + -0.0106747905, + -0.008129303, + 0.02712507, + -0.0022307218, + -0.064503185, + -0.0073265526, + 0.058727544, + 0.023734316, + -0.04315962, + -0.002048646, + 4.5939407E-5, + 0.0500745, + 0.023042414, + 0.012686349, + 0.0013610761, + -0.052212756, + -0.022799063, + -0.03805676, + -0.0055591553, + -0.022583717, + -0.039293896, + -9.154644E-4, + -0.0031850408, + -0.034639552, + 0.021611243, + -0.017952986, + -0.01772991, + -0.0061166105, + -0.03334884, + 2.6805844E-4, + -0.057554442, + -0.01622382, + 0.04823715, + 0.0070941704, + -0.03352634, + -0.014947614, + -0.044868104, + -0.05637636, + 0.044443745, + 0.013395287, + -0.04017665, + 0.03341421, + -0.013479849, + -0.013480452, + -0.028231181, + -0.011168221, + -0.041449234, + 0.025853721, + 0.021999821, + 0.045097347, + 0.047046788, + 0.0051886644, + -0.008694241, + -0.007191855, + 0.024847299, + -0.008537152, + -0.019259214, + -0.0036203584, + -0.0015064783, + 0.011560525, + -0.04276179, + 0.034435023, + -0.022741597, + 0.028857823, + 0.03898549, + 0.038234144, + 0.0033828488, + -0.03788608, + -0.029764948, + -0.0017340058, + 0.060734898, + -0.036434308, + 0.036518253, + 0.013144242, + -0.0363306, + -0.015975274, + 0.03627603, + 0.022889657, + -0.04209732, + -0.0033571539, + -0.0076457257, + 0.03859747, + 0.0063799764, + 0.018941784, + 0.0010184172, + -0.004552416, + -0.05599303, + -0.0352297, + 0.028401308, + 0.029736461, + 0.06467666, + -0.008385085, + 0.03542645, + -0.029638328, + 0.02295441, + 0.01882712, + -0.011933014, + 0.01849331, + -0.052851044, + 0.05145026, + -0.012807327, + 0.010130104, + 0.0146033205, + 0.028841604, + -0.034152415, + 0.031411603, + 0.011374502, + 0.016339514, + -0.010986468, + 0.0026908873, + -0.02256807, + -0.028271524, + 0.016747734, + 0.0023401629, + -7.8605633E-4, + -0.035501834, + 0.02511619, + 0.0093802195, + 0.016214285, + -0.022139218, + -0.004227492, + -0.049529348, + -0.035227828, + 0.0023907253, + -0.035266753, + -0.033128537, + 0.008322754, + 0.06754734, + 0.061201755, + 0.037120216, + 0.0750404, + 0.01578293, + -0.02218299, + -0.006322574, + 0.0071373046, + -4.413437E-4, + 0.022440614, + 0.005681313, + -0.055330865, + -0.052635595, + -0.023919063, + 0.010392298, + -0.044208705, + 0.04840083, + -0.04312056, + -0.02823756, + 0.03770524, + 0.043718662, + 0.018539624, + -0.009467052, + -0.017583493, + 0.030935798, + 0.025530454, + 0.032175567, + 0.03809089, + 0.069650434, + 0.027223233, + 0.008026357, + -0.010563257, + -0.029203702, + 0.06131116, + 0.028574625, + 0.022934299, + -0.0877155, + 0.011063498, + -0.06141102, + 0.065662414, + 0.040571973, + 0.018166883, + -0.0018748345, + -0.061520625, + 0.009278441, + 0.0017700708, + -0.01811331, + 0.021355677, + -0.029319, + 0.0010197383, + 0.014629109, + -0.008911613, + -0.01930075, + 0.045424156, + -0.042307675, + -0.0329618, + 0.012162824, + 0.010197459, + -0.07533517, + -0.034466255, + -0.0073267054, + -0.048907634, + 0.028622964, + 0.047243588, + 0.012366845, + -0.010058639, + 0.021265985, + 0.05609869, + 0.020463211, + -0.030723719, + -0.016663022, + -0.024456192, + 0.01178738, + 0.020795772, + -0.009937068, + 0.02217781, + 2.0087129E-5, + -0.0031743075, + 0.0060334643, + 0.035200465, + 0.033850484, + -0.01954011, + 0.010737575, + 0.01894174, + -0.030372884, + -7.2158786E-4, + -0.029629517, + -0.018902345, + 0.051309455, + -0.0067279455, + 0.016718116, + 0.017215194, + 0.013667424, + 0.0060642282, + 0.0073839747, + -0.017234901, + 0.00963787, + 0.0065337773, + 0.018911254, + -0.009359785, + -0.053330135, + -0.02585891, + -0.0267746, + -0.06339218, + 0.009974265, + -0.005753968, + 0.015919784, + 0.03458871, + 0.03351258, + 0.023374334, + -0.027320461, + 0.0029695034, + -0.038340528, + -0.01699593, + -0.01455627, + 0.027987197, + -0.036534846, + 0.0073723574, + 0.01892612, + -0.066358335, + -0.020171184, + 0.0068947477, + -0.038338516, + -0.0028950828, + -3.2817415E-4, + 0.06663721, + 0.04013726, + 0.008028783, + 0.035568573, + 0.0309059, + 0.018184682, + 0.0093270885, + 0.034807533, + -0.0012595577, + -0.0031191388, + -0.008915278, + 0.022649283, + 0.014938155, + -0.038189545, + 0.025183411, + -0.0033863527, + 0.007877374, + -0.020823337, + 0.018792521, + -0.040207103, + -0.040004235, + -0.03592562, + 0.008617665, + -6.4650126E-4, + 0.004576002, + -0.020582926, + 0.011015073, + -0.037805595, + -0.055883713, + -0.034346044, + -0.025109299, + 0.053599205, + -0.040808596, + -0.041473527, + -0.036772333, + 0.015496072, + 0.010772586, + -0.021033246, + -0.001895447, + 0.011934197, + 0.052561983, + -0.008995158, + 0.046679344, + -0.015660005, + 0.017067883, + 0.01911366, + -0.007297052, + 0.032458812, + -0.007429543, + -0.009924709, + 0.014453808, + 0.009292892, + 0.009758513, + -0.025435766, + -0.013273193, + -0.008333722, + 0.03274529, + 0.027198408, + 0.018198013, + -0.007151637, + -0.013774588, + 0.08105166, + -0.0251716, + -0.007905249, + -0.01565869, + -0.035488043, + 0.004586499, + 0.012469029, + 0.02677189, + 0.08117736, + 0.030565927, + -0.02913904, + 0.032005753, + -0.006586415, + -0.04363093, + 5.681678E-4, + 0.021881675, + -0.019512989, + -0.023162562, + 0.045929614, + -0.058792435, + -9.7248476E-4, + 0.0058549116, + 0.02854266, + -0.015119429, + 0.016627813, + 0.0645716, + -0.024928419, + -0.04115761, + 0.04459934, + -0.031312674, + -0.08567376, + -0.04132628, + -0.002431394, + 0.015034678, + 0.010291132, + 0.06278904, + 2.6354028E-4, + 0.017617334, + -0.0011592789, + -0.043105308, + 0.0018352182, + 0.02163224, + 0.03494236, + -0.030997831, + -0.012694964, + 0.010448645, + -0.003222648, + 0.0025929532, + 0.0058244783, + 0.032558173, + -0.034388594, + 0.005290378, + -0.04612303, + 0.023023222, + -0.009883235, + -0.051167585, + -0.0039204527, + -0.001756982, + 0.04671018, + -0.047068212, + -0.0080371415, + -0.039804947, + -0.004123343, + 0.033280768, + -0.014010936, + -0.018814048, + 0.009007881, + -0.013586038, + 0.05728628, + -0.0046163257, + 0.009335884, + 0.024973407, + -0.01102691, + -0.020577561, + 0.02371938, + 0.046180885, + -0.02716573, + 0.047368124, + 0.0632291, + 0.012452661, + -0.030091165, + 0.014828944, + 0.008438369, + -0.014499186, + -0.025511911, + -0.025009533, + -0.026426442, + -0.0071161217, + 0.089527674, + 0.008236645, + 0.05194643, + 0.008784624, + -0.0056692604, + -0.026854964, + -0.042177595, + 0.07092743, + -0.034566093, + -0.023242744, + 0.031683203, + 0.015851257, + 0.0061738356, + 0.0064105694, + -0.009167112, + -0.02401678, + 0.018992638, + -0.023312911, + -0.002667437, + -0.03978294, + -0.03146809, + 0.037681174, + -0.014975469, + 0.06978629, + -0.012213533, + 0.014834534, + -0.014894461, + 0.015926573, + -0.06847073, + 0.051592913, + 0.031572726, + 0.0040438264, + -0.029331695, + 0.00826342, + 0.006524391, + -0.044510875, + 0.01981362, + 0.02328534, + -0.018942624, + 0.030519083, + -0.053157337, + 0.032841906, + 0.017465964, + 0.039941005, + -0.038682323, + 0.022979787, + -0.01937306, + 0.023383627, + -0.005200002, + 0.008044564, + -0.019233376, + -0.040880226, + -0.04395644, + 0.023073293, + 0.040796455, + -0.02677507, + 0.039716594, + -0.013166139, + -0.0680474, + 0.030840106, + 0.017568344, + -0.001490596, + -0.060633637, + -0.011958474, + 0.024537826, + -0.022136148, + -0.022333296, + 0.032474376, + 0.039169133, + -0.0068029584, + 0.037350897, + 0.018686939, + 0.012372608, + -0.005937967, + 0.050595116, + -0.024569266, + -0.010263222, + -0.03297821, + -0.055345453, + -0.008288548, + -0.02907052, + 5.956741E-4, + -0.022556575, + 0.0025850274, + -0.029494304, + -0.002777596, + 0.027745211, + 0.059555534, + 0.009702578, + -0.0070773396, + 0.041882288, + -0.012892665, + -0.020517992, + -0.008098135, + -0.032954585, + -0.027388396, + 0.023931906, + 0.019991256, + 0.011609595, + -0.0050882217, + 0.03820625 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/image-production.1900.json b/common/search/src/test/resources/test_documents/image-production.1900.json index e262c3762..0ce3724eb 100644 --- a/common/search/src/test/resources/test_documents/image-production.1900.json +++ b/common/search/src/test/resources/test_documents/image-production.1900.json @@ -1,1339 +1,5251 @@ { - "description": "an image with a production event in 1900", - "createdAt": "2023-11-21T14:25:44.301096Z", - "id": "ihnwqeiu", - "document": { - "modifiedTime": "1979-07-12T04:54:26Z", - "display": { - "id": "ihnwqeiu", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with a production event in 1900", + "createdAt" : "2024-11-14T14:37:56.576579Z", + "id" : "i8bakexw", + "document" : { + "modifiedTime" : "2037-01-20T18:12:21Z", + "display" : { + "id" : "i8bakexw", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/xZd.jpg/info.json", - "credit": "Credit line: 6nLsYfj0v", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", + "linkText" : "Link text: 026fuZlr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/xZd.jpg/info.json", - "credit": "Credit line: 6nLsYfj0v", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", + "linkText" : "Link text: 026fuZlr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#184DAB", - "source": { - "id": "qmixg0i6", - "title": "Production event in 1900", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#C67937", + "source" : { + "id" : "vqs9r5bs", + "title" : "Production event in 1900", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "ihnwqeiu", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "qmixg0i6", - "sourceIdentifier.value": "ge15SUUIsS", - "identifiers.value": ["ge15SUUIsS"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1900"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1900" + "query" : { + "id" : "i8bakexw", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "vqs9r5bs", + "sourceIdentifier.value" : "z5L2uS8Ouo", + "identifiers.value" : [ + "z5L2uS8Ouo" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1900" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1900" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [-2208988800000] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.0015023212, -0.00487172, 0.02465186, 0.012986781, -0.0033604114, - -0.028862359, -0.012737575, -0.01628293, 0.03333774, 0.015794687, - 0.0011693991, -0.019047113, 0.016536525, 0.029296724, 0.00929875, - 7.3084266e-6, 0.02455975, -0.0076991282, 0.021028511, 0.0102796005, - 0.005909106, -0.013903799, 3.0076364e-4, 0.012714998, -0.03272254, - -0.0061770696, -0.0027370336, -0.018861217, 0.022980696, 0.03357901, - -0.015307208, -0.011272225, 0.0143385595, 0.0114299515, -0.029000472, - 0.0026826072, -0.026612515, 0.00733732, 0.0023989342, 0.006812572, - 0.0059435274, -0.0020418982, 0.012602767, -0.0173446, -0.010971263, - 0.0061114575, 0.004095398, -0.0014482788, 0.005153948, 0.0022397635, - -0.01621089, 0.0012573556, -0.011000802, -0.0049596275, -0.017606212, - 0.020507876, -0.006424541, 0.010667916, -0.031542074, -0.017519908, - 0.012137898, 0.014763988, 0.020509826, -0.034534052, 7.6258194e-4, - -0.0090270145, -0.023826692, 0.0063596554, 0.007930605, 0.022803087, - 0.006964511, 0.015009458, 0.0022797722, 0.03699502, -0.013510406, - 0.019082572, 0.0076396014, -0.014592607, -0.016105376, 0.005378743, - 0.017129565, 0.009541013, 0.015279521, 0.015942676, 0.018259933, - 0.03729038, 0.006363502, -0.025497535, -0.010187446, -0.029221311, - 0.017176658, -0.010829746, -0.0010854575, 0.009209557, -0.0068532513, - 0.0061293864, 0.0035589715, 0.007628251, -0.011924939, 0.017811457, - -0.011003873, 0.008819136, -0.00449625, 0.005826417, 0.026901785, - 0.00576696, 0.03470272, -0.020694718, -0.022898285, 0.01772231, - 2.2991984e-5, 0.018252643, 0.006832826, 0.0030208959, -0.011033397, - 3.7416085e-4, 0.025560508, 0.0066766315, 0.015698688, 0.0013568989, - 0.021893678, -0.0094444975, -0.005864757, -0.0043124533, 0.008578509, - 0.0038955691, -0.0109091615, 0.004082843, -0.009136971, -0.012135907, - -0.0011142062, -0.016653974, -0.028132362, 0.03665989, -0.004086277, - -0.009298715, 0.0148860905, 0.0018725808, 0.0019860875, -0.033161663, - 0.0150595335, 0.023847807, 8.447439e-4, 0.0122877285, -0.020166734, - 0.010263803, 0.019210076, 0.026307857, 0.03331658, -0.0049935128, - 0.019305825, -0.012257682, -0.014875636, 0.0015496751, 0.009873262, - 0.020152211, -0.016184593, 0.002568247, -0.020401353, 0.022553215, - 0.0078976, -0.017313676, -0.01239081, 0.0057825567, 0.006743727, - -0.003989204, -0.008803872, -0.012828119, 0.013165715, 0.016592344, - -0.003544041, -0.0074170055, 0.02237842, 0.0016400258, 0.0019064377, - -0.005173469, 0.004746367, -0.0027054083, -0.002578141, 0.0020638201, - -0.007872531, 0.025435545, 0.01772239, -0.026879482, 0.0023971263, - -0.0012768606, -0.014626406, 0.0057718903, 0.028238693, 0.018036712, - 0.010488998, -0.0023207562, 0.013856517, -0.006524002, 0.02069949, - 0.026998697, -0.0054218844, -0.021646095, -0.014627303, 0.018675145, - 0.0048501994, 0.013691107, 0.018261923, 0.014517992, -0.011805085, - 0.02406383, 0.018732056, -0.027540946, 0.0086811725, 0.01970217, - -0.013193043, -0.03161409, -0.0074731894, 0.00829619, -0.0042116977, - 5.897399e-5, 0.0057087806, -0.004208659, -0.005465212, 0.028859211, - -0.011912824, -0.01696678, -0.004089277, 7.4181106e-4, -0.019105485, - -0.01039556, 0.022648815, -0.019744078, -0.008769788, 0.006213715, - 0.002774132, -0.0194064, 0.035207987, -0.010985627, -0.029399127, - 0.0016925093, 0.004787365, -0.0057812096, 0.020703074, 0.011458917, - -0.0011060156, 0.018958278, -7.2652096e-4, 0.031401742, 0.020644013, - 0.002623452, -0.0074402937, 0.004795771, -0.00628024, 0.0054215584, - -0.010360421, 0.012223941, 0.007010206, 0.019893555, -0.004455897, - 0.008659935, 0.008293058, 0.0037120394, 0.012820504, 0.0252848, - -0.0136501845, 0.0034711107, 0.006741916, -0.039528083, -0.002670856, - -0.012962032, 0.025999146, 0.017958395, -0.009238832, 0.013146905, - -0.010281145, -0.03995719, -0.013992982, 0.019509565, 0.04027137, - 0.0067149866, 0.025189765, 0.010325957, 0.0055420757, -0.037420057, - 0.0026132562, -0.018246312, 0.011486377, -0.014257116, 0.004709834, - -0.0019284645, 0.008473532, -0.00819803, 0.010500787, 0.0066015674, - -0.022572007, 0.010808403, 0.009820658, 0.017079003, 0.01210094, - -0.0031182447, -0.0078262035, -0.006474899, -0.015680313, -0.011600142, - -0.0076000555, -0.01468584, -0.014020958, 0.016528325, 0.0023393661, - -0.013024126, -0.0024487446, -0.01735416, -0.013297437, -0.031248236, - -0.023510847, 0.0071963496, -0.0068878266, 0.005888983, 0.025037799, - -0.01978669, -0.036135234, -0.023852358, -0.0073709413, -0.0046073482, - -6.184064e-4, -0.007874945, 0.007740542, 5.979363e-4, -0.0031078847, - 0.011098396, 0.011509251, -0.013102241, -0.01062048, -0.018350633, - -0.005689647, -0.036810603, 0.0049363445, -0.003313586, -0.020478534, - 0.0119323535, -0.015253059, -0.0143839335, 0.008855554, 0.0073663793, - -0.02315797, -0.014522444, 0.005223742, 0.0281278, -0.011657849, - -0.020067701, 0.027603876, 0.0017797897, -0.026731214, 7.094131e-4, - 0.0019435266, 0.03184901, -0.0074379016, 0.006212043, 0.0021394442, - 0.021861931, -0.0023325651, -0.023876559, 0.018438682, 0.01645142, - 0.003538602, 0.002653858, -0.0050910464, 0.017571926, -0.011352796, - 0.010334921, -0.0049984874, -0.032569773, -0.004499599, 0.010662017, - 7.5342885e-4, 0.004081535, -0.026835464, 0.009839138, 0.010271127, - 0.0012227412, 0.012816628, -0.011552113, -0.011797657, 7.0374395e-4, - 0.029836917, -0.01375664, 0.0038476868, -9.738099e-4, 0.013419815, - -0.0016276604, 0.028395414, -0.020354137, -0.009562153, 0.033287574, - 0.001036817, 0.012406135, -2.5968137e-4, -0.022536669, 0.008528573, - -0.014342364, 0.013153549, -0.03503168, 0.0033769705, 0.021524848, - -0.02120525, 0.03307255, -0.012042711, -0.0149738705, -0.009656997, - 0.019971035, 0.009093445, -0.0048053754, -0.02387125, -0.0098904455, - -0.024934294, -0.0049742106, 0.0014797845, -0.0045548794, -0.011849552, - 0.015348334, 0.0044885073, 0.0044654994, -0.010331204, 0.0037771391, - 0.0074977977, -0.0014401593, 0.024814347, -0.008812508, 0.008179733, - 0.0028980605, -0.028597483, 0.02916862, -0.0020252569, -0.028770791, - 0.011723869, -0.024542758, 0.0018360323, 0.010317852, -0.016597273, - -0.004163434, -0.0032276441, 0.015000228, -0.0059189373, -0.036527585, - -0.0024554702, 0.025840145, 0.02307076, 0.014831564, 0.029921504, - 0.001203239, 0.0015576398, -0.008469282, -0.0038614874, -0.021500885, - -0.015741952, -0.02542566, -0.0028055375, -0.023405425, -0.014219368, - 0.0054951883, -0.015577262, -3.4110513e-4, -0.0039652367, -0.024871117, - 0.0028090694, 0.014095253, 0.0087630665, -0.014893182, -0.020432943, - 0.01813832, -0.018114733, 0.004388841, 0.022233984, -0.021769732, - -0.013419573, -0.009057812, -0.00767452, 6.2758866e-4, -0.0051376754, - 0.011690994, 0.0021353404, -0.012175101, 0.020247618, 0.003221712, - 0.014573665, 0.0052470034, 0.024797525, 0.012989025, 0.0185612, - -0.0016347135, -0.0076386845, 0.011938127, 0.009105949, -0.018343233, - -0.02411976, 0.003791182, -0.012394158, 0.022080071, 0.0010564039, - 0.025221381, -0.0280879, 0.009127944, 0.018576443, -0.004786331, - -0.022493986, 0.010078218, -0.015478681, -0.032640003, -0.00895596, - -0.0048489757, -0.0078218635, -0.0025035455, -0.029668162, -0.031429324, - 0.021360552, 0.0032324598, -0.004578019, -0.019535452, -0.031282373, - 0.011140238, 0.0106908735, 0.0012261551, -0.015599873, 0.019608708, - -0.011542039, -0.019379267, 0.01025565, 0.0036646535, -0.019797938, - -2.8084137e-4, 0.011881089, 0.0018269165, 0.03841969, -0.031182408, - -0.011389627, 0.022625837, -0.013481247, 4.7362278e-6, -0.005213685, - -0.009226092, 6.101141e-4, 0.012792323, -0.018535659, -0.0016266796, - 0.0093116835, 0.010643538, -0.011060252, -0.009116317, 0.002413782, - 0.033468746, -0.0053247167, -0.01028188, 0.0091975145, -0.0047805267, - -0.0054253275, -0.0075629684, -0.025060145, 0.01983154, -0.0022083467, - 0.0047525377, -0.029455483, 0.008667426, 0.008367762, 0.009178764, - -0.0062722214, 0.0055681346, -0.0072085815, 0.027183224, -0.051524237, - 0.0027468195, -0.001012486, 0.0056617353, 0.019876493, 0.0015352062, - 0.0055744806, 0.03140857, 0.028697731, -0.02049947, 0.008775224, - -0.008042554, -0.009534633, -0.015184622, 0.022572003, 0.010330122, - -0.006675312, 0.0067334566, -0.0072934143, -0.02092745, -0.0024547884, - 0.0012587742, -0.0307067, 0.022822876, 0.020572819, -0.006171521, - -0.017684596, -0.0033102832, 0.0041206204, 9.081627e-4, 0.0049980814, - -0.011633382, 3.4420894e-4, -0.0013735584, -0.0055371234, -0.00552127, - 0.030255996, -0.03539717, -0.008990855, -0.002910455, -0.019698251, - 0.024424415, 0.012737709, 0.002912105, 0.0048901304, -0.012505667, - -0.0076144375, -0.012762533, -0.015401738, -0.01298783, 0.012791137, - 0.024709046, 0.024849512, 0.025305033, -0.006395932, -0.0015243286, - -9.823976e-4, -0.0076131164, -5.0528124e-5, 0.015938077, 9.75817e-4, - -0.008901071, -0.0037656142, -0.008785944, -0.00963463, 0.027455429, - 2.4919325e-4, 0.004423138, 0.01464197, -0.01185697, 0.00797648, - 0.012896551, 0.02036668, 0.033949375, 0.030497963, -0.009815066, - -0.02764039, -0.009629059, 0.009247083, -0.006984354, 0.00961322, - -0.006007616, 0.03047177, -0.01148083, -2.7068707e-4, -0.0066148955, - -0.017444601, 9.7183586e-4, -0.013476518, 0.0013104853, -0.0037316668, - -0.014480533, -0.008318799, 0.0032879517, 8.2673173e-4, 0.0069763595, - 0.0067964904, -0.037113935, 0.014029786, 0.01025661, 0.0077561964, - 0.018067455, 0.0034476155, 0.013789818, 0.0017443454, 0.01082757, - 0.012590326, -0.016520293, -0.001371539, -0.030035168, 0.021665042, - 0.00958564, 0.006226728, -0.01601121, 0.01862204, -0.019153394, - -0.007834695, -0.0077938293, 4.7031726e-4, 0.015319843, 0.003261664, - 0.011645822, -0.018841231, -0.0027938364, -0.013722806, -0.023807008, - 0.01058577, 7.197488e-5, -0.032936126, -0.03846797, -0.014015461, - 0.00664344, -0.0015475091, -0.003705592, 0.022750918, 0.0081174, - -0.00673953, -0.013362352, -0.0029277282, -0.0090965945, 0.00818493, - 0.047579203, 0.02213261, -0.009272161, 0.014936673, 0.020329295, - 0.0075211055, 0.027058799, -0.018691543, -0.026524032, 0.017199608, - 0.0056669377, 0.0021575757, -0.0067641474, 0.013995101, 0.00692313, - 0.061379343, -0.0036957916, 0.018661974, 0.012596544, -1.1259086e-4, - -0.0067485888, 0.024632385, 0.013999335, -0.0013154777, 0.00361515, - -0.021712748, -0.0020891349, -0.013090959, 0.027360952, 0.007156493, - -0.03752159, -0.015243812, 0.011394784, -0.027118687, 0.0069685695, - -0.015083292, 0.0024611426, -0.0056013805, 0.026763078, 0.010567715, - 8.6781353e-4, 0.008309142, -0.017858887, -0.0015182107, 0.011298588, - -0.011822204, 0.0025169582, -0.004058648, 0.006193475, 0.025786482, - -0.011301155, -0.008212985, -0.0035175765, 0.010433906, 0.024368903, - 0.0023607502, -0.0023839884, -0.0068919435, 0.0113403145, -0.029373646, - 0.018092325, -0.010258174, -0.015266951, 0.0019478775, -0.0057763252, - 0.010508128, -0.008035975, 0.026020128, 0.0154816685, -0.036326002, - 0.008907957, 0.013347572, -0.0061006434, 0.014016557, -0.0020131983, - 0.016444808, -0.011844963, -0.017400712, 0.0060555977, -0.011503575, - 3.7127626e-4, 0.005778087, -0.018145183, 0.0063296775, 0.019503139, - 0.0010312154, -0.015598347, 0.008520483, 0.008822472, -0.011303681, - -0.003881959, 0.01917335, 2.7414542e-4, 0.033798054, -0.034680374, - -0.008155931, 0.008325297, -0.0062986175, 0.0075559434, -0.0073191007, - -0.0033062506, 6.649424e-4, 0.02575288, -0.0045163394, 0.008872947, - -0.017447483, 0.013077076, 0.010875805, 0.032036033, 0.010490672, - -0.006378478, -0.015309198, -0.013913378, -0.014215023, -0.025753485, - 0.025620257, -0.002574571, 0.0055536157, -0.024081644, -0.033159297, - 2.476191e-4, -0.0010226801, -0.021202723, -0.01581125, 0.023580542, - 0.007143159, 0.025234362, -0.005197301, -0.01474692, 0.006442985, - -0.0037724865, -1.4183391e-4, -0.012352885, 9.92345e-4, -0.03764336, - -0.012867685, -0.017097862, 0.0069225286, -0.014512973, 0.011129786, - -0.041830767, 0.009194252, 0.011247574, 0.010605489, 0.0013829066, - -0.0015454602, -0.028325666, -0.009054192, -0.009153882, 0.026978197, - -8.4439886e-4, 0.004968177, -0.0010703584, -0.011467658, 0.011140596, - -0.012161271, 0.0011221633, 0.013927766, -0.011744384, 0.0042908266, - -0.0075577875, -0.015503496, -0.017809607, -0.012069497, -0.018152522, - -0.001516965, 0.023165507, -0.0036127486, -0.013286024, 0.0020619647, - -0.017065799, -0.016885748, 0.0037950187, -0.0012224789, 0.020212518, - 0.0029877273, -0.016118424, 0.004228007, 0.007581106, -0.003167619, - -0.008652745, -0.019624034, 0.004880102, -0.009870373, -0.012276139, - -0.0031905682, 0.0057750815, 0.011687239, 0.016017014, 0.02890636, - -0.017831754, -0.02521271, -0.0036273962, -0.022527236, 0.010769017, - 0.033795808, 0.01336528, 0.024719657, 0.027869737, 0.024461884, - -0.011750135, 0.0021983963, 0.004647941, -0.006474042, 0.01298515, - -0.025902154, -0.01113304, 0.01069853, 0.006331712, -0.02538554, - 0.0026713354, -0.007186334, 0.013842813, 0.013688783, -0.007948644, - -0.029680898, 0.033679165, 0.02695172, 0.022013133, 0.008324909, - -0.010088753, 0.0075707654, 0.0065055834, -0.0036367786, 0.023200147, - -0.016215928, 0.027207986, -0.0076744547, -0.01225276, 0.01689711, - 0.013307613, 0.0010929789, -0.008771099, -0.0054984726, -0.020820111, - -0.005031934, -0.0033513224, 0.017788658, 0.005579289, 0.021693457, - -0.008330827, 0.022400621, -0.005586703, 0.007873739, -0.016888196, - -0.016178152, -0.0134947905, -0.01610662, -0.013779983, 0.011006771, - -0.03277467, -0.022271829, -0.011223375, 0.019946689, -8.03125e-4, - 0.017460642, 0.016420294, 0.013079086, -0.008811415, -0.011270279, - 0.0072341263, -0.010077367, 0.002919534, 0.013736682, -0.004858656, - -0.011791569, 7.970072e-4, 9.406297e-4, 0.016995877, 0.009474184, - -0.008374661, 0.007972844, 0.01881713, -0.014502556, -0.005500801, - 0.022284513, 0.016056659, 0.011490385, -0.030409114, 0.013905355, - 0.013531071, 0.01832943, 0.0034676783, -0.008677213, 0.012804625, - -0.0059273927, -5.980533e-4, -0.013380706, 0.008462825, 0.0067612766, - 0.017866239, 8.4673654e-4, 0.014576331, -0.014839619, -0.018075537, - 2.0409754e-4, 1.7994714e-4, -0.008754854, 0.02901736, -0.009111793, - 0.0027534058, -0.0035943147, -0.022386106, -0.006838291, -0.020350652, - -0.01413389, -0.00693378, 1.2963684e-4, -0.045088705, -0.009979249, - 0.008438239, -0.021252556, 0.02380064, -0.0028903321, -0.039468583, - -0.0026153903, 0.021310592, 0.017761609, 0.015601905, 0.0043313764, - 5.1171315e-4, 0.0203406, 0.0196864, -0.011405412, -7.546449e-5, - -8.880184e-4, -0.009763942, 0.0022509578, -0.0082529625, 0.0076919775, - 0.016732216, 0.00918321, -0.0030338496, 0.0058375024, -0.0066532493, - 0.010698576, 0.02316246, -0.006380362, -2.0077513e-4, 0.001928819, - -0.023555273, 0.006468473, 0.0027544608, -0.0061369883, -0.003742275, - -0.033863924, 0.0034383023, -0.0029227966, -0.0031678807, -0.01372845, - -0.014331528, -0.008309653, 0.016971152, 0.016108466, -0.006739276, - -0.018512547, -0.009057868, -0.032804016, -0.027988888, -0.013104302, - -0.0045120106, -0.009605828, -0.0054000663, 0.0035258003, -0.0032524124, - 0.032918222, -0.0019798884, 0.003760569, -0.014089218, -0.0044568437, - -0.0037190244, -0.05666109, -0.03317367, 0.028136846, 0.03368443, - -0.005168388, 1.5801871e-4, -0.030378653, 0.010059709, -0.019763643, - -0.004512479, -0.0139482925, 0.029420692, 1.8023557e-4, 0.023253862, - -0.0050050425, 0.0048856265, -0.010207551, 0.0048318887, 0.0062961336, - -0.02237301, 0.011984253, 0.009503727, 4.3316532e-4, -0.012644876, - -0.013743793, -0.010156614, 0.01061746, 0.008368805, 0.006211241, - -0.0021052915, -5.536806e-4, -0.030759001, -0.004297367, -0.003221899, - -0.0147264, 0.0186808, 0.002943509, 0.0015877397, -0.038279857, - 0.0045424732, -5.6529813e-4, -0.019828223, -0.016424756, 0.0052373125, - 0.0039566136, -0.021150457, -8.509012e-4, -0.0037868165, -0.042381946, - -0.0044001527, 0.005810456, 0.024176084, 0.0038004676, 0.007149623, - 0.020903777, 9.0763386e-4, -0.00621668, 0.018571192, -0.01785559, - -0.016230496, -0.023566615, 0.018903514, 2.4223972e-4, 0.0019186845, - 0.01166247, 0.025549784, 0.01954017, -0.014701927, -0.032297894, - 1.01023914e-4, -0.0043115676, -0.034164857, -0.0128175765, 0.010405512, - 0.011294566, 0.001432954, 0.017227225, 0.026233185, 0.021298243, - 0.0069167917, 0.020686205, 0.01637243, -3.9344304e-5, -0.0054435097, - -0.02395681, -0.007277178, 0.008351949, -0.018059433, -0.009622878, - -0.038138717, 0.0049770065, 0.022881746, 3.4042762e-4, 0.007967443, - -0.0012934522, 0.0019571716, 0.0021415702, 0.0014297027, 0.0040733973, - 0.0067592766, 0.011481229, 0.0010831583, -7.007921e-4, -0.0023126667, - 0.007866197, 0.017781239, -0.0038180512, 0.012768078, -0.005564776, - 0.013441625, -0.012022695, 0.025158277, 0.029747598, -0.02844494, - -0.012229371, -0.0068995673, -0.03598745, -0.023841623, -0.025828669, - 0.016733797, -0.011070667, 0.016753469, 0.002877863, -0.0014496691, - -0.0083473455, 0.023355203, -0.017269388, 0.009462661, -0.0055240765, - 0.0086698765, 0.005870688, -0.025799355, 0.0027362204, 0.0052806865, - -0.021230197, 0.013602906, 0.0016385963, 0.008967832, 0.007908887, - 0.024690941, -0.0027439317, 0.002867595, -0.0015349211, -0.0065688137, - 0.010253626, 3.3785435e-4, 0.019580014, 0.007048175, 0.019708643, - -0.008446812, 0.020544844, 0.005043129, 0.011903299, -0.009556828, - -0.010702397, 0.012284134, -0.019804722, -0.016554669, 0.028772848, - -0.014146673, -0.014591963, -0.0017754427, -0.013274848, -0.027688608, - 0.0086881565, -0.015991433, 0.011389309, -0.017402716, -0.012421486, - -0.0023726777, -0.0027609621, -0.018573567, -0.0012038352, -0.024908138, - 0.021660337, -0.0042442842, -0.012006046, 0.0108687505, -8.3660247e-4, - 6.68452e-4, 0.014034811, -0.044469766, -0.018319355, -0.0060944688, - -0.013037685, -0.0110251075, 0.019677095, -2.0654504e-4, -0.022536585, - -0.0014326425, 0.014425117, -0.0069120303, -0.002546981, 0.033831578, - 0.008621524, -9.1212e-4, 0.01846167, 0.022604449, 0.011185481, - -0.027535709, 0.014632101, -0.0111279795, 0.00958769, 0.0076158894, - 0.01527885, -0.0070983307, 0.018014425, -0.008778742, 0.0041901083, - -0.01462074, -0.0014643711, 0.034431264, 0.009510968, -0.0069952984, - 0.009127436, 0.0011894478, 0.030504912, -0.0020240992, -0.004952525, - -0.008973356, 0.0030869048, 0.009764017, -0.031013906, 0.015900834, - 0.0077544763, -0.01822677, 0.015160639, 0.008697344, -0.003485146, - 0.023575082, 0.004507559, 0.012214644, -0.0045053395, 0.016954869, - -0.009506217, -0.005452244, -0.005299422, -0.009175193, -1.5623188e-4, - 0.0028423562, -0.022052258, -0.021568066, -0.013139631, -0.05807301, - 0.0027373838, 4.8108172e-4, -0.008956951, 0.030611783, -0.0051636226, - -0.0046660486, 0.008886089, 9.068383e-4, 0.018434418, -0.011333231, - -0.0026981712, -0.00809538, 0.0015330687, 0.015245158, -0.007319589, - -0.015266817, -0.016594132, -0.0035092775, -0.016479451, -0.012219011, - -0.0137563925, -9.369914e-4, -0.005758524, 0.0058306297, -0.0023395766, - 0.004246499, -0.039087713, -0.010695701, 0.008149774, 0.0018097665, - 0.03366102, -0.009040808, -0.015749266, -7.792975e-5, -0.028673211, - 0.0067476793, 0.0112974, 0.010873457, 0.013318506, -0.03261585, - 0.0092061255, -0.030501315, -0.019669957, -0.0017785875, -0.022808287, - 0.005234518, -0.0030460078, -1.1826188e-4, -0.0038371333, 0.019739525, - 0.0056069284, 0.014628967, -0.018972121, -0.0032166354, -0.007173483, - -0.0109595535, 0.008138366, -0.009385639, 0.0013379416, -0.0075909514, - 0.003697594, 0.006633543, -0.022244168, -0.010272603, -0.0085738115, - 0.024787882, 0.019221276, -0.006347888, 5.063906e-4, 0.0018211838, - 0.009366771, -0.010117036, -0.012814969, 0.0014008724, -0.012354981, - 0.007844543, 0.019337162, -0.013418186, 0.0047127386, 0.013017382, - 0.025265709, 0.0070217354, -0.0024263891, 0.0035486645, 0.01060262, - 0.015413123, 0.0025888039, -0.01828659, 0.013634773, -0.012025325, - 0.025347332, -0.020720264, 0.0034828626, 0.006389513, 7.7157526e-4, - 0.010639909, 0.0071114125, 0.014735206, -0.016371643, -0.009980733, - -0.009840103, -0.0134833325, -0.00972307, 5.780281e-4, 0.0027603796, - 0.005326669, 0.005717404, -0.007541222, -0.022256492, -0.0116447285, - 0.033001356, -0.011578067, 0.013154761, -0.013399479, -0.020196639, - -0.038103867, -0.0025544234, 0.004414276, 0.0029347246, 0.019609, - 0.019202627, 0.0017038899, 0.00143813, 0.0035425404, -0.011154286, - -0.024959253, -0.017843047, 0.022270119, 0.016891038, 0.013808966, - -0.003354075, 0.0064567383, -0.017353486, -0.02311849, -0.0028715075, - 0.049737964, 0.009246074, -0.00895428, -0.014436171, -0.016119355, - -0.012554619, 0.002568538, -0.009545083, 0.010770683, -0.015360664, - 0.0029073362, 0.019294595, 0.008641533, 0.004628828, -0.004536428, - -0.014574969, -0.015549701, 0.007547324, -0.007422688, 0.0069818893, - 0.0040333937, -0.034183737, 0.026344972, -0.015119281, 0.015339654, - 0.014488808, -0.029530343, -0.0042748214, 0.002461341, -0.010384254, - -0.0016886316, -0.021504315, 0.012270885, 0.013082708, 0.010380617, - 0.0039641857, -7.889166e-4, 6.6473056e-4, 0.009706346, -0.013515452, - 0.032945495, -0.032134764, 0.008203314, -0.0073365252, 0.010008379, - 0.0029802625, -0.030704439, 0.021872846, 0.014176882, 0.01460177, - 0.0031270685, -0.0349931, 0.010038269, 0.009686039, 0.01431853, - -0.034146648, 0.019619722, 0.015839737, 0.0017045127, 0.0077152043, - -0.0141201895, 0.017618217, 0.003379725, -0.033928037, -0.005744212, - 0.014352366, -0.009657923, 0.0021448217, 0.02002807, -0.012256378, - -0.030332819, 0.020225868, -0.008773944, 0.024280151, 0.029328227, - 0.0036770778, -0.013425306, 0.009424685, -0.009275498, -0.0070985164, - -0.040789716, 0.015958771, -0.01755446, -6.850791e-4, -0.0011934072, - 0.006238269, -0.023870332, -0.012030446, -0.02962349, 0.0018291433, - 0.0018427451, 0.010831314, -0.005853668, -0.0038381505, 0.0040577604, - -0.0059633716, -0.021575134, -0.0032876702, -0.028577639, 2.266468e-4, - -0.012767661, -0.0057905205, -0.0036630116, 0.00659818, -0.015337001, - -0.019882722, 0.010040052, 0.037760787, -0.0028556972, -0.0020675599, - -0.018373158, -0.00943034, 0.031161183, -0.013952961, 0.02804026, - -0.0034892794, -0.002606859, -0.015452674, -0.008676072, 0.013130583, - 0.011361215, -0.014576419, -0.03834214, 0.002145432, 0.008449029, - -0.010187775, 0.016783616, 0.008986641, -0.008297157, 0.006229712, - 0.016114533, -3.2213033e-4, 0.0080369655, -0.009476972, 0.011753816, - -0.0041668373, 0.0075138314, -0.012985765, -0.017482722, -0.0041582356, - 0.005937575, 0.02693877, 0.04534992, -0.026325796, 0.0035237325, - 0.005967303, -8.1508927e-4, 2.7343188e-4, -0.0032220832, -0.006680401, - -0.0054345587, -0.012546506, 0.012589853, -0.023803415, -0.0038471986, - -0.019474525, -0.009198918, -0.0037549161, 0.020706244, -0.014609497, - 0.027197473, 0.00848956, 0.025526542, 0.0102193905, -0.016304575, - 0.0056092683, -0.0131385075, 0.032703344, 0.025797544, -0.021042988, - 0.018221205, -0.0026906529, 0.0012798072, -0.0024182952, 0.011984575, - -0.01918216, 0.012403267, -0.013249656, -0.0012285311, -4.559077e-4, - 0.0058764187, -0.009790863, -0.0018171292, 0.01568117, 0.0038099189, - 0.02157935, 0.01382862, -0.008926763, 0.016568795, 0.014553477, - -0.010706888, 0.011208836, 0.01176065, -0.0014691114, 0.018714488, - 0.0031853043, 0.027907908, 0.008695729, 0.016701218, -0.005524521, - 0.017057301, 0.008116206, -0.008876532, 0.0052463603, -0.0040751738, - -0.018576924, 0.011293789, -0.003223224, 0.01532177, -0.016488925, - -0.0122701945, 0.011472739, -0.001002172, -0.019262679, 0.0026128574, - -0.0103718545, 0.013603173, -0.0032210392, 0.011632661, -0.0074486327, - -0.012868459, 0.0400706, 0.018851288, 0.01191993, -2.4709484e-4, - 4.2706923e-4, -0.036871485, 0.0066486546, 0.0055168397, -0.0074576586, - 0.028048303, -0.030237574, 0.009888912, 0.015551065, -0.009335881, - 0.015185963, 0.008057952, -0.0041541727, 0.0029017567, -0.006398424, - -0.031106813, 0.017981978, 0.00810201, -0.024744008, -0.004843002, - -0.010815371, 0.01660182, 0.011284371, -0.007831919, -0.02132438, - 0.013657426, -0.0059740175, -0.013292967, 0.018575778, 0.015074638, - 0.012593608, -0.017269276, 0.013662032, 0.008237918, -0.017400844, - -0.005353432, -0.008483921, 0.009305646, -1.9995143e-5, 0.009933932, - -0.026602425, -0.018479386, 0.0023334608, -0.01774037, -0.019609913, - 0.0064078346, -0.0012105933, -0.023239084, 0.008529924, -0.019066872, - 0.020614808, -0.026950216, 0.014613957, -0.011176407, 0.001039656, - 0.019117508, 0.028382882, 0.028442176, 7.098238e-5, 0.036259398, - -0.01247958, -0.0048041735, -0.0012954539, 0.019169517, 0.008047015, - 0.02294117, -0.0068608015, 0.009368614, 0.029951073, 0.011636765, - 0.0022270116, -0.0153284585, 0.020065643, -0.0065277857, 0.020417908, - 0.03228508, -0.010126078, 0.016781535, -0.005639212, 0.016432572, - -0.00857663, 0.024055196, -6.1644684e-4, 0.0050972328, -0.014183853, - -0.0029193726, -0.022406517, -0.014513633, -0.009113458, -0.0061583794, - -0.005738679, -0.021231234, 3.3752937e-4, 0.014399674, -0.031413764, - 0.014270575, 0.013615244, -0.020253517, -0.003341407, 0.005524537, - 0.015048668, 0.0010247035, 0.025796158, -0.016493462, -0.007018033, - 0.009710072, -0.02351481, 0.007853022, -0.014908122, 0.010823235, - 0.010730602, -0.003238072, -0.0012040251, -0.009851849, 0.01292736, - 0.018730547, 0.011517028, 0.016697543, -0.018414982, -0.001316651, - -0.02990861, 0.0047629112, 0.020707872, 0.004659942, -0.025306828, - 0.005959895, -0.0011777536, -0.004510695, -0.019208824, 0.015661815, - 0.0048642606, -7.8948046e-4, -0.008313497, -0.010640301, -0.016341, - 0.018066665, -0.014531149, -0.014744125, -0.05561761, 0.028002962, - -0.0014483221, -0.005523667, 0.020407317, 0.024458796, -0.004449392, - 0.0069600567, 0.003620135, -0.005339784, 0.020340854, -0.006332295, - 0.0032900483, 0.01422364, 0.0018615809, -0.001902725, 0.0207722, - -0.0138762975, -0.011120908, -0.0015020048, -0.0031332024, 0.022105008, - 0.0031145767, -0.0019427539, 0.0061742477, -0.005600465, 0.0088781165, - -0.015202517, -0.009063721, 0.010582332, -0.0027458821, -0.0026316752, - 0.026200267, 0.001330762, 0.008542173, -0.024876686, 0.002448193, - 0.0069452976, -0.0048282556, -0.030397883, 0.0019202816, 0.017502151, - -0.0115526905, 0.010324397, -9.1038045e-4, 0.0055297916, -0.014357644, - -0.021599695, 0.0041098585, -0.01804588, -0.026009034, -0.017232617, - -0.0061493632, 0.012367606, 0.003280922, 0.009589382, 0.015992869, - -0.029873759, 0.019978993, -0.01751564, -5.566966e-5, -2.0154228e-4, - 0.009210245, -0.006654766, 0.012718468, 0.0043437174, -0.01046787, - -0.0037387523, 0.019131657, -0.014839567, 0.0023295644, -0.0073093325, - -0.01669988, 0.002314511, 0.007814944, -0.023417402, 0.025407245, - 0.003321443, 0.011690869, 0.0036929075, 0.012463717, -0.01408827, - -0.0053053643, 0.0044386573, -0.003492824, -0.022490067, 0.0038223662, - -2.0397095e-4, 0.0024456808, -0.0042492226, 0.005159158, -0.007891112, - 0.020006645, 0.014956104, 0.0062563526, -0.008350059, 4.617578e-4, - 9.758082e-4, -0.004821398, 0.04007537, 0.015596847, -0.0038739154, - 0.0116758775, -0.008584726, 0.010285606, 0.025636254, 0.0054374347, - -0.0020234282, 0.024364965, 0.008986353, 0.012199655, -0.0036448909, - 0.0027891658, -0.032393143, 0.02459422, -0.0057951985, 0.010292726, - -0.0060151108, 0.00466612, -0.0086933365, -0.02649723, -0.0029891098, - -0.00604833, -0.006062837, 0.0048564365, -0.0112356255, 0.012064137, - 0.0047735088, 0.005518075, -0.012765954, -0.0029835196, 0.017978413, - 0.0059507783, -0.003679021, -0.017208494, -0.0077803945, -0.006539131, - 3.5028163e-4, 0.007179809, -0.0010689435, 0.021738268, -0.0010168155, - -0.020343527, -0.013985862, 0.006861184, -0.008214965, 0.020570986, - -0.0153855365, 0.0052896678, -0.0030289677, -0.005105755, -0.0029998058, - 0.0017761926, 0.016386816, 0.008638831, -0.0028774957, 0.0033423642, - 0.0199305, 0.00606181, 0.013812788, 0.009502136, 0.016627774, - 0.0023040932, 0.00971894, 0.0055754646, -0.015537745, 0.0056534214, - -0.0022604284, 0.025195168, -0.02061564, -0.015598491, 0.008439319, - -0.005126389, -0.007340855, -0.038554374, 0.015023224, -0.0061611673, - 0.037875857, 0.03114504, -0.01105818, 0.019672032, 0.006205355, - -0.010486917, -0.007219396, 4.1747183e-4, 0.0074123004, -0.027038332, - 0.027090853, 0.0062408885, 0.0033979102, 0.006641287, -0.030759692, - 0.002628362, 0.027227236, 0.008829239, 3.5155288e-4, -0.014550218, - 0.009953301, 0.011890603, -0.0027170926, 0.009285595, 0.012647996, - -0.0019183507, 0.004472323, 0.005193647, -0.0022220728, -0.0087424945, - -0.004148911, 0.009565227, -0.018257897, 0.03290875, -0.01200231, - -0.0023681787, 0.026243636, -0.008057126, 0.0069704554, 0.019127786, - -0.009043701, -0.010124195, 0.0040843235, 0.03899278, -0.022984242, - 0.008862531, -0.0057812347, -0.008530637, 0.0043440517, 0.022436453, - -0.014375829, 0.00356492, -0.0054735397 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.002184971, -0.030643793, -0.013419517, 0.005779528, 0.023282921, - 0.026264565, 8.7114755e-4, -0.005591499, -0.020481857, 0.01944354, - 0.0038503043, 0.033335693, -0.021097178, -0.035880726, -0.016131824, - 0.004943373, -0.018951226, -0.018479468, 0.019083723, -0.011495652, - 0.0066036074, -0.020990334, -0.010713118, -0.013304758, 0.0023431696, - 0.022866955, 0.0143645555, -0.008076877, 0.0103996135, -0.011184608, - -0.00949138, -0.002872103, -0.015311284, 0.0031337836, -0.004463035, - -0.01738406, 0.021266688, -0.0059881923, 0.013988385, 0.0027416686, - 0.004168459, -0.02432816, -0.0058272714, 0.008770877, -0.013284083, - -0.0072606583, 0.03428723, -0.0014562062, 0.025420135, -0.008547508, - 0.005067703, 2.1301083e-4, -0.018147655, 0.025166146, 0.0040192413, - -0.0060716104, -0.006685545, -7.7895605e-4, -0.0010657203, -0.005477091, - 0.011123749, 0.016627517, -0.015726393, 0.004965761, -0.033948343, - -0.0020254257, -0.0022307078, -0.016541976, 0.013006302, -0.00607772, - 0.0026630904, 0.011491803, 0.013499605, 0.016203756, -0.0045929244, - 0.009351467, 0.01522547, -0.0034940052, 0.011431114, -3.9591854e-5, - -0.011551046, 0.005457418, 0.003833889, -0.013621909, 0.034978442, - -0.007983843, 0.0074619297, -0.008048033, -0.013147601, 0.010716076, - 0.012812761, 0.0011235349, -0.015576137, 0.0044913115, -0.021397786, - -0.0012861382, 8.890832e-4, -0.025365755, 0.024181692, -0.024221571, - -0.014145453, -0.025102489, 0.0012236084, 0.016071722, 0.025110258, - -0.003843022, -0.008526836, -0.012775436, 0.010293597, 0.025794141, - -3.1783592e-4, -0.027049396, 0.002143823, 0.0015500855, 0.0207681, - 0.0095897475, 0.03903098, -0.020100407, 0.01823797, 8.0408284e-4, - -0.003923661, -0.0013389287, 0.0023679105, -0.012164865, -0.0048653306, - 6.0813455e-4, 0.0048272195, 0.031926777, -0.01661802, 2.3080416e-5, - -0.020117005, 0.00990906, 0.003999989, 0.013475969, 0.0097446805, - -0.03299934, -0.0050533423, 0.021225613, 0.01594522, 0.017255552, - -0.0034277244, 0.009137873, 0.0073795337, 0.0076585603, -0.012834938, - 0.022882223, 0.013118004, -0.022033803, 0.016308114, 0.003851237, - 0.016602745, 0.011042168, 0.035249513, -0.005489214, 0.023038734, - -0.024296876, -0.0029288782, 0.0076119723, -0.010014894, -0.022266641, - -0.008076593, 0.014431023, -0.0032402414, 0.01686269, -0.0023006222, - -0.017232534, -0.027601304, 0.0015350681, -0.0062346323, -0.001640192, - 0.0053213257, -0.0086158635, -0.024127472, -0.015277718, -0.002557947, - -0.005972989, 0.0353613, -0.013477735, 0.0075444933, 0.028857559, - -0.012643625, 0.0012454237, -0.0044239215, 0.017490484, -0.010418449, - 0.01218004, 0.016381778, 2.5626886e-4, 0.028644428, -0.017838271, - 0.020665873, -0.003184388, -0.01860551, -0.0043398244, 0.016000578, - -0.02440811, 0.02380901, -0.013948418, 0.0063693183, 0.0018263719, - 0.021691002, 0.012554958, -0.0034368103, 0.01004425, -0.008376961, - -0.009350184, -0.033159696, 0.02299401, -7.9795875e-4, 0.008663571, - 0.014890348, 0.00924276, 0.016081417, 6.6075934e-4, -0.011933592, - 8.45775e-4, -0.0055652666, -0.0018421087, -0.021993533, -0.0095199095, - 0.01620837, 0.0042409454, 0.0026967218, -0.026813049, 0.014687207, - -0.015432124, 0.023948409, 0.006731875, 0.030567132, -9.166522e-4, - -0.023330264, -0.0112695545, -0.0058612195, 0.022797052, -0.008224147, - 0.006033267, -0.0023499806, 0.02660645, 0.026967393, 0.010974689, - 0.008190714, 0.023690302, -0.010735393, 0.026315527, -0.018891115, - -0.019973494, 0.0098646665, -0.0027647924, -0.028567418, 0.014293117, - 0.011158487, -0.0039400705, 0.011060457, -0.018623782, 0.012877309, - 0.033888076, -0.021870727, 0.0010261795, -0.0069545694, -1.5809608e-4, - -0.030434113, 0.026818803, 0.0046408307, -0.026787648, -0.0075219586, - -0.020401506, 0.00551942, 0.026547972, 0.009629035, 0.0024608644, - 0.016905006, 4.2537542e-4, 0.0070693297, -0.022241624, -0.0010584855, - -0.0050047417, -0.009213791, 0.0034332296, -0.02082712, 4.128115e-6, - 0.009800497, -0.0024184568, -0.004682575, 0.01287075, -0.02188404, - 0.023734301, -0.015499885, 0.014134065, -0.017771097, 0.0021275305, - 0.0010570621, -0.0016437528, -0.0012325495, -0.015973061, 0.010723039, - 0.02319684, 0.032087106, -0.024075316, -1.8767282e-4, -0.016033253, - -0.020709353, 0.020125953, -9.4546395e-4, 0.0018707091, 0.0045397733, - -0.016565943, -0.029371733, -0.01071246, 0.02370745, 0.0383522, - -0.010149578, -0.007647025, -0.0015491629, 0.013852166, -0.018347053, - -0.03798724, -0.016809179, -0.025708348, -0.012515046, 0.050147813, - 0.013106301, 0.023256987, 0.01205944, -0.003756774, 0.0031374681, - -0.023780253, -0.0068729096, 0.0054958267, 0.0029280165, -0.0434031, - -0.02246484, 2.2848463e-4, 0.005900108, -0.004126167, 0.0077874786, - 0.009574733, 0.016477704, 0.002910884, 0.013924328, 0.0015917189, - 0.017094614, -0.028973354, 0.0012982439, 0.0013337351, -0.014731686, - -0.006203242, -0.017542044, -0.0074689956, -0.020670947, 0.014581332, - 0.0013254115, 0.016768722, -0.013654078, 0.025687473, 0.03837037, - -0.00780814, 0.010021089, -0.015789902, 0.017241722, 7.664099e-4, - 0.0018499088, -0.023585232, 0.017966153, -0.0075654304, -0.0081603415, - -0.026236836, 0.042645298, -0.039900836, 0.0048965868, 0.011288525, - 0.022069491, 0.01854857, 0.0100408, 0.009081741, -0.023625443, - -0.011664791, -0.0041909027, 0.010775819, 0.013977498, 0.035119202, - -0.03947875, 0.016517991, 0.01039864, 0.009092262, -0.010865427, - -0.013242359, -0.0024793588, 0.0071832067, 0.02411431, -0.016774014, - 0.024069468, 0.011613957, -0.012763842, 0.009210676, -0.00304629, - 0.0069016614, -0.030334821, -0.017326733, 0.014270515, 0.016485993, - -0.007448801, 0.019752702, 0.019698894, -0.045859188, 0.016118692, - 0.010099518, -0.0051172934, -0.011666318, -0.003002387, -0.004545022, - -0.006351282, -0.022971401, -0.012069668, 0.017950885, -0.013866525, - 0.012587562, 0.00606234, -0.017305532, -0.031684194, -0.008678788, - 0.019236289, -0.009691598, -0.022769297, -0.024732687, 0.041743692, - -0.011964233, 0.015259366, -0.012015868, -5.50106e-4, -0.003862797, - 0.02046249, 0.014451011, 0.017406674, -0.014454935, -0.0033963236, - -0.035054173, 0.038969483, -0.013250435, -0.014939495, 0.0241716, - 0.003146343, -0.029687496, -0.033404373, -0.006948956, -0.03131528, - 0.0083170375, -0.026971333, -0.01293332, -0.008070444, 0.009080303, - -0.006030736, -0.014634478, 0.0036976412, 0.01947176, 0.01134129, - -0.0021091152, -0.0024223432, 6.698038e-4, -0.010376939, -0.022067891, - 0.01766397, 0.013403103, -0.015063041, -0.0111854365, -0.016011762, - -0.0070546954, -0.010835908, -0.023352357, 0.011327612, 0.004557986, - 0.010281402, 0.0028221533, -0.012948354, -0.0053696753, 0.02027796, - -0.040136162, -0.016038174, -0.0031539474, 0.019904684, 0.015259087, - -0.0020381596, 0.014493178, 0.011945323, 0.019124018, 0.0066677346, - -0.008534696, -0.030217942, 0.026650934, 0.0011000335, -0.01708915, - -0.0025795966, -0.014089441, -0.015140918, 0.0067464183, -0.003523464, - -0.0053156004, 0.010464928, -0.0134768905, 0.012386702, -0.0045947474, - -0.020004867, -0.030527323, -0.019606037, -0.011792337, 0.010112941, - 0.024625031, -0.004905357, -0.017278101, 0.013908974, 0.0028368442, - 7.223354e-4, 0.017546205, -0.0034390886, 0.019776797, -0.032984786, - 0.013026969, 9.756932e-4, -0.0047132643, -0.022164872, -0.0028244392, - -0.02483603, -0.014028381, 0.010646882, 0.003960451, -7.223438e-4, - -0.018625554, -0.01156726, 0.0083383145, -0.0034437485, -0.008732461, - 9.70535e-4, -0.005471329, 0.01628697, 0.0055173733, 0.016822252, - 0.013329263, -0.005015837, -0.015623928, -0.017061004, 0.011068045, - 2.5503387e-4, 0.004704698, 0.011326051, -0.0063451463, -0.015320365, - -0.015815094, -0.0100200055, 0.029431107, 0.0012612775, -0.01126744, - 6.7512534e-4, -0.018613879, -0.0061323736, -0.031044807, -0.006290434, - -0.0063641793, 0.01509107, 0.018274374, 0.03238904, 0.013430825, - -0.013431888, -0.013704849, 0.017302135, -0.01555801, -0.005416989, - 0.02104433, -0.0032385043, -0.006078821, -0.024846802, 0.0054089813, - 8.549025e-4, 0.0076581887, 0.0328464, 0.018532846, 0.01171817, - -0.034996465, 0.0068053966, 0.008115169, 0.021899497, -0.005014502, - -0.010884597, -0.014287065, 0.016349263, -0.008113843, -0.011564558, - -0.02354297, -0.011912624, -8.8709546e-4, -0.004923339, 0.006383543, - -0.011890792, -0.0135310115, 0.013267429, -0.008627261, -0.0017818471, - 0.012596396, 0.044869605, -0.006834896, 0.03432054, 0.0011967571, - -0.004457937, 0.009148081, -0.022595676, -0.010934238, 0.0044598714, - -0.004216806, -0.010433883, 0.006448652, 0.012855229, -0.010824186, - 0.010144312, -0.0014411724, 0.037388805, 0.0017811492, -0.010921699, - -0.01397333, 0.0065648807, -0.040866155, -0.003997125, 0.011026346, - 0.03676427, -0.020659752, 0.027581206, -0.004818654, -0.001969958, - -0.0076322774, -3.6379288e-6, -0.015119606, 0.017431786, -0.0056791464, - 0.039112434, 0.010556309, -0.0072685424, 5.2387675e-4, 2.5890846e-4, - -0.01482521, -0.016703049, 0.00268588, 0.018466445, -0.013905244, - 0.018509505, 0.018532865, -0.027406186, -0.0019414282, 0.005161536, - 0.0023679875, 0.02571472, 0.011158328, 0.0046753497, 0.013698823, - 0.0066822427, -0.006779417, -0.014875789, -0.027180117, 0.023649963, - -0.016990684, -8.3011045e-4, -0.018053638, 0.010864554, 0.030330542, - 0.008374179, 0.019260863, 0.0067361323, 0.007244348, 0.0050784405, - 0.01955074, 0.014585136, -0.010564849, -0.0035139157, -0.018174589, - -0.0010781818, 0.0076367464, 4.3494446e-4, 0.013681699, 0.015452928, - 0.012053406, 0.0019373514, 0.026236378, 0.028173713, 4.150548e-4, - -8.8509254e-4, 0.018354908, -0.0030919244, 0.013414316, 0.0070875967, - 0.016773004, 0.007424983, 0.023850618, 0.010711804, -0.009644283, - -0.001168787, 0.011653632, 0.005966652, -0.0013454587, -0.02603985, - 0.0039668437, 0.008402784, -0.009879395, -0.0153529085, -0.026283165, - 0.011226543, -0.036495402, -0.0033624668, 0.011003663, 0.025843404, - -0.013530928, -0.01051104, 0.013056767, 0.018051086, 0.009267884, - -0.00410847, -8.7792147e-4, -0.00827084, -0.023940135, -0.013537275, - -0.013147619, 0.0060737254, -0.012055716, 0.019379899, -0.0032502618, - -0.005425656, 0.009168658, 0.011700745, 0.011840274, -0.022824008, - 0.0052054664, 8.327793e-4, 0.01269105, 0.005006786, -0.014656079, - -0.007634228, -0.03247577, -0.009500825, -0.0021224746, -0.010862141, - -0.01705198, 0.021349408, -7.755201e-4, -0.0035380924, -0.012403126, - -0.016247345, -0.0075739296, -0.013711094, 0.013336593, 0.0014510476, - 0.014250372, 0.005687559, 0.021255378, -0.006739581, -0.009424658, - 9.395832e-4, 0.0028748391, 0.011882474, -0.0070780367, -0.0013142563, - 4.5851534e-4, -0.018274328, -0.0020976588, 0.020102222, -0.007277474, - -0.009740326, 0.006513355, 0.02182848, -0.023063807, -0.012476925, - 0.0048862426, -0.017357685, -2.5889478e-4, -0.016902758, -0.00270877, - -0.0063618636, 0.011348052, -0.0048274253, 0.027201712, -0.016498717, - 0.007849625, -0.0074528023, -0.019331753, -0.02267824, -0.011812607, - 0.019280223, 0.022583084, -0.00867076, -0.007971354, -0.0020193942, - -0.021546917, -0.0025298381, 6.751565e-4, 2.6153168e-4, 0.020679355, - 0.020325873, -0.028424103, -0.011378109, -0.023246964, -0.013146128, - -0.030933732, 0.0027359487, 0.019144133, 0.002058269, -0.0035151434, - -0.031358458, 0.0015754141, 0.024070937, -0.002019401, -0.02348006, - 0.0015507567, -0.0031885572, 0.0056840773, 2.9843271e-5, 0.023695754, - 8.554984e-4, 0.017382778, 0.016739963, -0.013799645, -0.0077777687, - -0.019725194, -0.013422684, -0.014824298, -0.010045992, -0.0040636263, - 0.016093222, 0.0061666365, -0.008740891, -0.04269141, -7.467031e-5, - -0.01547044, -9.5028925e-4, -0.017295217, -0.009334668, -0.0020168403, - -0.02498179, 0.003320821, 0.013195188, -0.008650454, -0.009457755, - 9.0221205e-4, 0.011213, -0.005959944, 0.017238438, 0.0058552646, - -0.008221772, -0.016609855, -0.017487247, -0.0025592034, -0.005997439, - 0.010704918, -0.011507921, 0.026046777, -0.0064747664, -0.00402232, - 0.036436856, -0.013302971, -0.011437208, -0.010937984, -0.02450486, - -0.013081804, -0.003786794, 0.02125343, -0.02131725, -0.005190067, - -0.014880112, -0.003214403, 0.004814085, -3.7787063e-4, -0.0038422532, - -0.01120749, -0.012582411, -0.032385863, -0.0031932497, -0.024089415, - 2.535828e-4, 0.001909528, -0.0029702892, 0.02350642, -0.011930104, - 0.023514478, 0.01610361, 0.006229251, -0.02069649, -0.0044319537, - 0.013940179, 0.01748299, 0.040705882, 0.0132439295, -0.009753789, - -0.028191838, -0.008081468, 8.8165584e-4, 0.020411227, -0.0055665593, - 0.0074275057, -0.007820334, 0.0075069843, 0.012535076, -0.012959966, - -0.009876219, 3.2466478e-4, 0.024010386, -0.026962155, 0.016369866, - 0.0062359585, 9.862619e-4, -0.0063984827, -0.011361016, -0.005840817, - -0.004919072, 0.007244604, 0.013550324, -0.010768699, 0.0029579026, - 0.012725019, 0.0074650017, -0.023797808, 0.01274438, -0.00781485, - 0.013670929, 0.0014741644, 0.019598285, -0.032692548, -0.0063015404, - -0.015428178, -0.012140637, -0.00426925, 0.01681065, -0.0031922786, - 7.640623e-4, 0.013363517, -0.005144407, 0.010045873, 0.014560059, - 0.029729048, -0.0012617441, 0.011008044, 0.0054281643, -0.0078102318, - -0.022634458, 0.020816451, 0.016227923, 0.008642895, 0.0040757107, - -0.015355241, -0.009438526, 0.008516635, 0.016163206, 0.020403855, - 0.026055265, -0.007955988, 0.007648931, 0.025693184, 0.0014643287, - -0.014837547, -6.6959206e-4, -0.018078787, 0.026252907, 0.00995083, - 0.024716577, 0.009914686, 0.006451867, -0.021847943, 0.00407883, - 0.007099072, 9.357016e-4, -0.004581431, 0.012227269, -0.007948757, - -0.012808525, -0.00848709, -0.016362226, -0.013544905, 0.018303996, - -0.0060389577, 0.024377985, 0.009208229, -0.01076264, -0.021650486, - -0.010855955, -0.010810309, -0.0010721176, 0.01248462, 0.010055146, - -0.0010476738, 0.0052980143, 0.0520585, -0.007187206, -0.009295997, - 0.013864051, 0.006969741, -0.0111637935, 0.011547077, -0.0074585774, - -0.015724456, 0.0104806945, -0.0039332695, 0.019524021, 0.0034728749, - 0.0030732753, -0.012414348, 0.0049056318, 0.030596731, -0.025877874, - 0.013894684, -0.015738362, -0.04163676, 0.024874317, 0.0016779278, - -7.885858e-4, -0.023834996, 0.01288161, -0.015239733, 0.0011810692, - 0.0015647522, 0.0029833994, 0.0013654279, 0.018395307, -0.003708035, - -0.0020511658, 0.012747509, -0.025982806, -0.026765106, 0.006170809, - -0.019265663, -0.001890298, -0.0064014317, 0.018795678, -0.0027654713, - 0.0026112122, 0.0036965655, 0.015629826, 0.0021865019, 0.0054107527, - 0.00802784, 0.017908849, 0.019870387, 0.0032791963, -0.0039861267, - -0.023794498, 0.0040954156, -0.014711044, 0.014177972, 0.013032428, - 9.5486466e-4, 1.4780385e-4, -0.018192394, -0.004288842, 0.0037178055, - -0.00828862, -0.0015920412, 0.010154702, -5.189646e-4, -0.0057527297, - -0.016289944, -0.0031537923, 0.004172385, 0.006554273, -0.021083899, - -0.008918225, -0.025029123, 0.018061895, 0.0115410015, -0.0123716025, - -0.009480512, -0.015823074, 0.013976324, 0.0070768087, 0.016066156, - 0.005659523, 4.325219e-4, -0.027430398, -0.010533749, -0.021317525, - 3.6783272e-4, 0.01837152, -0.018239757, -0.018226467, 0.0064110155, - 0.032047965, 0.013211081, -0.028056145, 4.129753e-4, 0.0011128692, - 0.009886045, 0.0035407492, 8.2032324e-4, 0.010009535, 0.011946803, - -0.015654422, -0.011977972, -0.025603652, 0.004041048, 0.022551786, - -0.0062362333, 0.0034020913, -0.005257956, 6.3326146e-4, -0.0010973089, - -0.0038574704, -0.019019887, 0.005598276, 0.0027842426, -0.0027513872, - -0.0169645, 0.0047023026, 0.02159703, 0.018293528, -0.0116228685, - -0.013429481, 0.0011940788, -0.007401644, 0.02070134, 0.0032510585, - 0.008794538, -4.7489133e-4, -2.0943877e-4, 0.006902526, 1.4166003e-4, - 0.020059854, 0.016209045, 0.006011205, -0.0014224101, -0.004141342, - -0.03267772, -0.012573578, -0.015374551, 0.016087517, 0.016863598, - -0.015188353, -0.0016574401, 0.022762138, -0.020441124, -0.010671898, - -0.0063625197, 0.04386592, -0.014513622, 0.008388221, -0.0014832296, - -0.010616886, -0.0066412515, -0.0043300656, -0.034709264, 0.019543866, - -0.011764671, -0.011424611, -0.0061047347, 0.0108593255, 0.005225375, - -0.0051940517, 0.009880958, 0.003882435, 0.006786626, 0.0108877355, - -0.028450418, -0.028468225, 0.0074430825, 0.0025737148, 0.007591739, - 0.005192379, 0.009221879, -0.0070324703, -2.1010305e-4, 0.01889647, - 0.04016082, 0.009237455, -0.016978005, 0.018514482, -0.0034003484, - 0.014942455, -0.004401514, -0.029386777, 0.019231413, 0.018502427, - -0.0011991095, -0.018920043, 0.010929228, 0.017403493, 0.005487643, - 0.012180124, -0.009677597, -0.025003746, 0.005152317, 0.010121743, - -0.0067592096, -0.0047677495, -0.012754268, 0.025151685, -0.03260152, - -0.015071145, -0.0028991583, 0.007058699, -0.0128169535, 0.027961819, - -0.013666861, 0.013314382, -0.022793211, 0.0048521417, 0.009607886, - 0.023065547, 0.009748753, -0.0066122347, -0.03410449, 0.009640479, - 0.0037186847, -0.014979588, 0.009535955, -0.0077044247, -0.007702261, - 0.015421151, -0.016151767, 0.0013632503, -0.044907324, -0.02396302, - 0.0112314625, 0.00616763, 9.849616e-4, -0.019077096, 0.01077443, - 0.011853707, 0.004821451, 3.1676586e-4, 0.0070729195, 0.011960137, - 0.013262287, 0.0118669635, -0.025332224, -0.016945738, -0.007793031, - 0.013204198, -0.003144972, -0.0038114744, 0.009775271, -0.02126387, - -5.261916e-4, 0.0050027864, -0.020456556, 0.029556843, -0.01642601, - 0.022069698, 0.006829648, 0.008541745, -0.012401507, 0.0044445544, - 0.021816364, -0.014598302, -0.026110478, -0.009311715, 0.0072150244, - 0.00962006, -0.018470759, 0.018136732, 0.009530329, 0.037656624, - 0.025793362, -0.020836279, -0.021224745, -0.025953095, -0.009574497, - 0.0014882456, -0.028974991, 0.0069344067, -0.031324252, 0.004811419, - -0.014069016, -0.014540829, -0.0081538, -0.010179117, 0.017650316, - 0.0113011105, 0.005659372, 0.0049252063, 0.0033196048, 0.014150978, - 0.009886871, 0.008491525, -0.004448384, -0.012155171, 0.0017866042, - 0.009203364, -0.023953024, -0.00267909, 0.018228216, -0.0038878534, - -0.020614782, 0.0193756, 0.004775585, 0.0062635313, -0.013268418, - -0.013382312, 0.0057643703, -0.010888151, -0.008154515, -0.036103256, - 0.010358304, -0.0016744633, -0.016964821, 0.0021968686, 0.029595666, - -5.231723e-4, 0.009835505, 0.0017778722, -7.845226e-4, 0.011148757, - 0.0060700714, -0.013420552, 0.016976608, -0.0051632626, 0.014839909, - -0.002173151, 0.011604047, 0.0024262932, 0.01744989, -0.005804468, - 0.011872754, 0.007064636, 0.024998035, 0.01559863, 0.0031483492, - 0.0011033955, 0.02850086, 0.032420725, 0.004957099, 0.03758013, - -0.018160282, 0.023010513, 0.01437153, 0.0015925906, -0.018223107, - -0.0055879215, -0.0029080764, -0.0039218054, -0.017376665, 0.015124642, - 0.011299743, -0.012406853, 0.0260808, -0.01379191, 0.006562008, - 0.0125186145, 6.407201e-4, 0.0071163485, 0.0031879423, 0.018168341, - 0.0134352045, -0.0045961984, -0.021052666, 0.0070759514, -0.0012403104, - 4.7450734e-4, 0.007532904, 0.010733265, 0.004499958, -0.021529227, - -0.0013785422, 0.01432178, -0.010737215, 0.0061204284, 0.037154958, - -0.0013704691, -0.023764148, 0.008610394, -0.003645085, 0.012424979, - -0.011503529, -0.015033126, -0.01739113, 0.04324693, 0.008371377, - -0.016198924, -0.021835575, -0.026620457, -0.016363636, 8.6182635e-4, - 0.01859003, 0.020587532, -0.01570189, -0.007426514, 0.0013256134, - 0.010137454, -0.0022569548, 0.005056828, 0.0047564125, -0.04862242, - 0.0024913622, -0.009582855, -0.028617699, -0.0017390276, -3.844996e-4, - 0.010645969, 0.0012841776, 0.025865335, 0.02258346, -0.023132022, - -0.01952134, 0.0126899425, 0.010283594, -0.0024863956, -3.0586505e-4, - -3.9499623e-4, 0.0038466186, 0.0024873524, 0.020064924, 0.016383097, - 0.0018684426, -0.017551579, 0.0030112888, 0.016538322, -0.007951137, - 0.014633596, 0.009078992, 0.0011632857, -0.014218055, -0.014924735, - 0.011053177, 0.01236976, 0.019626979, 0.015968604, 0.013630362, - 0.010079074, -0.013176042, 0.022396097, 0.0033548258, 0.001000457, - -0.018762495, 0.0012664589, 0.002448447, -0.0023630506, 0.0057361806, - 0.030296616, 0.0019980606, 7.2289555e-4, 0.021900943, 0.0033563725, - -0.016613666, 0.011143041, 0.011849851, -0.020367764, 0.06005454, - 0.020843511, 0.016241107, -0.014340396, -0.0024242788, -0.003941616, - 0.03439892, 0.016215947, -0.0012794052, 0.011978712, -0.002636264, - 0.015334558, -0.009956104, -0.008110922, -0.0433351, -8.271178e-4, - 0.0046713934, 0.0043897503, 0.009299447, 0.015875902, -0.0031866205, - -0.014915616, -0.012271747, 0.025114192, 0.004082727, -0.0076233707, - 0.0099449195, -0.018960798, -0.028368043, -0.013604027, 0.008131874, - 0.0034346879, -0.030477528, 0.031122372, -0.011908689, 0.016005412, - -0.0074284766, 0.0139843, 0.0048913374, 0.004919031, 0.020341827, - 0.017167646, -0.004465628, 0.029872945, 0.0038290634, 0.0061509563, - 0.00826452, 0.009252488, 0.027236905, 0.020688014, 0.0035080963, - 0.011962096, 0.0049503245, 0.021766502, 0.0056838803, -0.0065287445, - 0.0036896733, 0.00193089, -0.028092638, -0.001544458, -0.006073919, - 0.006597792, 0.00670259, -0.008099611, 0.0031921358, 0.022530338, - 0.021047689, -0.018874492, -0.011558459, 0.016266277, 0.018230438, - -0.036095664, 0.007523016, -0.022039339, -0.010825737, -0.006121104, - 0.0050189304, 0.03278541, -0.039073218, 0.016200542, 0.021324033, - 0.026941255, -0.0036858628, -0.03352988, -0.026859507, 0.018370425, - 6.8742153e-4, -0.014426998, 0.0123623535, -0.003445713, 0.012379468, - 0.007970857, -0.009900855, -0.0040231356, 0.0014483848, -0.006913153, - -0.01490914, 0.011496175, 0.019913033, 9.462144e-4, 0.019339342, - -0.0074088085, -0.0066229245, 0.006162787, -0.00486701, 0.002097676, - -0.007018255, -0.006726231, -0.015410339, -0.010586243, 0.0067548356, - 0.004286466, 0.0016635038, -0.011624351, -0.007049167, 0.023896672, - -0.008428449, -0.024964627, -0.02197186, 0.0013172261, 0.04024362, - -0.011944691, -0.017063702, -1.747137e-4, 0.01510925, -0.01332937, - -0.0020189693, 0.012995947, -0.013547505, -0.003389583, 0.0041270987, - 0.021444669, -0.0051683104, 0.018260831, 0.01613766, -0.0061924863, - 0.014149986, -0.010492723, -0.0030729298, 0.0032049476, 0.025419788, - 0.009470648, 0.0021545812, -0.0061615747, 0.0075211767, -0.0015574238, - 0.0069422317, -0.016837787, 0.006921058, -0.004074244, 0.0073723937, - -0.008292258, 0.014641036, 0.032020032, -0.010674368, 0.022047596, - 0.014361253, 0.006394065, -0.0070625264, -0.0123028215, 0.009655096, - 7.1575254e-4, -0.011891876, 0.008451743, -0.014040012, -0.002522137, - 0.0015383353, 0.0054897466, -0.0021373918, -0.008722255, 0.007846476, - -0.0039467267, 0.003700443, -0.013068923, -0.016702015, 0.0148451505, - -0.02211964, -0.012283929, -0.023477988, -0.022152528, 0.022619503, - 0.01747468, -0.016582634, 0.012666681, 4.827349e-4, -0.012068564, - 0.02581863, 0.005218887, -0.022483073, 0.007333145, -0.021885412, - 0.013213194, -0.0031696947, 0.01943687, -0.001540971, 0.019489491, - 0.0047921003, 0.01382521, 0.009485505, -0.003542122, -0.0042412505, - 0.0032550187, 0.031145355, -0.0024256937, 0.008116227, 0.042469278, - 0.027478687, -0.004003713, -0.013385669, 0.009063261, 0.016146919, - -0.014402068, -0.010152277, -7.602752e-4, -0.030900499, 0.004937289, - 0.011102912, 0.017773783, -0.045253783, 0.027009388, 0.024085129, - -0.012608907, -0.023431363, 0.02760844, 0.014311427, -0.020181311, - 0.015031964, 0.0027255116, -0.00315229, 0.010923261, -0.0058589485, - 0.0072129425, 0.005513698, 0.0195331, -0.0044476325, 8.83998e-4, - 0.03114787, 0.004139843, -0.014696154, -0.04889615, 0.0074394243, - -0.013803748, 0.009335627, 0.0016018585, 0.02136607, 0.016527165, - -0.008957871, -0.0014191822, 0.0048399707, 0.03903165, -0.0068074483, - 0.022585126, -0.022412594, 0.013618198, 0.017445717, 0.0032755826, - 0.025547262, 0.011392903, 0.01592078, -0.019309727, 0.020456167, - -0.00863305, 0.013134511, 0.0043216106, -0.022509733, -0.022662919, - 0.008229003, 0.0065275286, 0.013586404, -0.00969558, 2.0718318e-4, - -0.036155574, -0.02071251, -0.0067929323, -0.02140393, -0.011329118, - 0.019336833, 0.0011075904, -0.010331131, 0.019538274, -0.019399626, - -0.03321973, 0.0033960468, 0.008034804, 0.0040719365, 0.011254806, - -0.010047786, 0.01750448, 0.014910742, 0.0058126533, -0.009489041, - 0.0012023349, -0.017625263, -0.024487754, 0.014644798, -0.02215482, - 0.026704138, -0.016586108, 0.01289486, -0.006652956, 0.005304128, - 0.006928503, -1.4035894e-4, 0.01534913, -0.0053616166, 0.0059875236, - -0.0016362484, 0.009635776, 0.012610671, -8.3105935e-4, 0.0136366, - -0.025222339, -0.022456553, 0.009426132, 0.021061894, 0.027055718, - 0.00211414, 0.0038957628, 9.5102e-4, 0.027389249, 0.006289571, - 0.0043385443, 0.020901369, -0.002819285, 0.0025689227, 0.013998542, - -0.009940815, -0.028060667, -0.035838448, -0.0073039057, 0.020982869, - -0.010482319, 0.0062303846, 0.008130047, -0.0010542815, -0.016375294, - 0.024332857, -0.003378929, 0.016965846, 0.0021712417, 0.009350196, - 0.02659281, 0.008715391, -0.013104963, -0.015131097, 0.005302225, - -0.021664659, 0.0017777372, 1.0330793e-4, -0.017313693, 0.026668457, - 0.006433815, -0.004984857, -8.740271e-4, 0.005345433, -0.0025710126, - 0.009383856, 0.0099087795, 0.007481633, -0.01158324, -0.004326856, - 0.0016613672, -0.0031187376, 0.015522966, 0.020127933, -0.0098682325, - 0.0111756185, -0.02282683, 0.021351995, 5.7072e-4, 0.027452726, - 0.020846771, -0.0026791864, 0.02178434, 0.014362045, 2.0762284e-4, - 0.010406147, 0.0113009205, 0.008331184, 8.246513e-4, -0.009323264, - -0.013075988, 0.002979805, 0.0032764443, -0.0070998957, 0.0087114675, - -0.021734837, -0.0043815607, -0.0032919934, -0.027906857, 4.5058908e-4, - 0.0194184, 0.01305735, -0.0029310018, 0.030321287, 0.0059787156, - 0.013552354, -0.01011156, 0.0026895246, 0.020858072, -0.020130947, - 0.015119352, 0.0013413965, -0.011356596, -0.007431239, 0.0036963804, - 0.02798952, 0.00453261, 0.0064166477, -0.009126752, 0.020898419, - 0.019993221, -0.011640374, 0.035828985, -9.128497e-4, -0.026028669, - 0.0077767707, -0.01627135, -0.01203517, 0.010074787, -0.016876034, - 0.008820824, -0.017453507, 0.011556247, -0.024392713, 0.0011420948, - -0.020594858, -0.0065629436, 0.0019191591, 0.012387706, -0.020833077, - 0.023578105, -0.016131883, -5.2764534e-4, -0.015169509, 0.0013148807, - -0.005940525, -0.016837263, 0.023476018, 0.012191531, 0.004585476, - 0.0056449007, -0.0068192063, 0.0133371595, 0.003486387, -2.5227311e-5, - 0.0020115876, 0.0044970443, 0.03103051, -0.011170774, 0.0098152505, - -0.021502286, -0.012749768, 0.0019703135, -0.0044388818, 0.008641698, - -0.0064060776, 0.015868982, -0.0077789086, -0.0048373956, -0.033991493, - 0.011343723, 0.010203843, -4.0088553e-4, -0.0084218355, -0.03106788, - 0.00847813, 4.589161e-4, -0.01129378, 0.0120121585, -0.01286912, - 0.0052426956, 0.016446052, 0.01373852, 0.0056764446, -0.01402041, - 0.005714552, 0.0072616213, 0.0073645487, 0.014226582, 0.007329795, - -0.02164934, -0.012656251, -0.008891663, 0.0091742, -0.024947325, - 0.0022109284, 0.02460586, -0.003707845, -0.01589013, -0.012616354, - -0.008215431, -0.007725386, 0.0063982354, 0.021789363, -0.006442925, - 0.006424722, -0.008656599, -0.014863888, -0.003908896, 0.00863705, - 5.9693943e-5, 0.0019519747, -0.0044723917, -0.011876773, -0.015052921, - 0.020541433, 0.014395199, 0.021796165, -0.016071312, 0.012396373, - 1.1405103e-4, -0.00649536, -3.4632997e-4, -0.0013448813, -0.013799372, - -0.013264937, 0.009500399, 0.01634944, -0.016475605, -0.015807308, - 0.028073223, -0.011201116, 0.0089912005, 0.004228785, -0.01979711, - -0.003993155, 0.005900177, 0.017113224, 0.0060625183, -0.012308184, - -0.012989731, 0.014549907, -0.022114014, -0.026715964, 0.008267886, - 0.019155495, -0.017756734, -0.010427745, -0.0014714719, -0.018693572, - 0.006881853, -0.0010640837, 0.017894655, -0.008281188, -0.0062126424, - -0.024161803, 0.037199285, -0.002332481, -0.0038436917, 0.01432013, - 0.017268801, -0.017053517, 0.008452186, -0.01654297, 0.0048356415, - 0.0049153618, 0.005004049, -0.0037358527, -0.0021914938, 0.0066378606, - -0.016564922, -0.012608537, -0.012669203, -0.012415498, 0.019208705, - 0.010802158, -0.0028343932, 0.005303939, 0.016330592, 0.011610193, - -0.03581786, -0.0131229265, -0.008281039, 0.014527729, -0.025553858, - -0.0045843525, 0.0222248, -0.023145791, -0.0061239647, 0.0070541273, - 0.0330862, 0.0035102903, -0.014876274, -9.034286e-4, -0.010312148, - -0.011712943, 0.017535947, -0.004533044, -0.010839669, 0.009754672, - -0.015628323, -0.006724491, -0.0035897186, -0.001919896, 0.027648695, - -0.023335071, 0.012628567, -0.038547352, 0.02452082, -0.02173644, - 0.0077824285, 0.007933688, 0.0040889047, 0.009628253, 0.014311983, - 0.026680004, 0.0367933, -0.0065513514, 0.011657543, 0.033227842, - -0.022243481, 0.0049234056, 0.007875074 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.010027084, -0.08596995, 0.016428746, 0.051068373, 1.992999e-4, - -0.037727527, 0.015511311, -0.0014019321, 0.016875971, 0.024400339, - -0.0016183332, -0.037919182, -9.910756e-4, 0.004286425, 0.026294596, - 0.009646335, -0.0266892, -0.0074093887, 0.03695619, 0.03385813, - -0.026044305, 0.0019779012, -0.029800706, -0.04248242, 0.035689864, - -0.047909208, -0.015229589, 0.067262396, 0.03299894, -0.014164963, - -0.04902817, 0.030343907, -0.043578796, -0.031424, 0.027474312, - 0.0028859416, -0.015066196, 0.011743785, -0.028289713, 0.04566038, - 0.029295797, 0.03267184, -0.008198032, -0.013491449, 0.028936729, - 0.017859755, -0.08316163, -0.027173752, -0.024109071, -0.047940865, - -0.04969551, -0.003702868, 0.014666705, 0.06412828, -0.022752717, - -0.037502367, 0.0073970803, 0.041116267, -0.03236769, 0.009303774, - 0.041441057, 0.0071552857, 0.06461428, -0.004818015, -0.03759101, - 0.028426755, 0.0124529665, -0.04167491, -0.014023763, 0.05226938, - -3.4960327e-4, -0.026262362, -8.66869e-4, -0.016232202, -0.033909947, - -0.006825094, -0.036513664, 0.014106455, 0.017489474, -0.0051819547, - -0.026237886, 0.036034, -0.003064819, -0.012031773, -0.0073942086, - 0.029408922, 0.005735651, 0.021262906, -0.013153229, 0.015698174, - 0.047526956, 0.010683737, 0.0078414185, -0.0016605972, -0.010231676, - -0.030341623, 0.016707482, 0.021630947, 0.0353135, 0.042452097, - -0.0014424642, -0.009851194, -0.006570854, 0.056676123, 0.013591364, - 0.016724478, 0.064029746, -2.4888475e-4, -0.0069477432, -0.028701294, - 0.013682896, -0.018662492, 0.011558564, -0.04959946, -0.043098394, - -0.003217782, -0.0023171413, -0.06570265, 0.0027476544, -0.0012394198, - -0.02967777, -0.011157786, 0.02655198, -0.061645813, 0.024649158, - -0.0055825673, 0.03545285, 0.042294484, 0.026677508, -2.6724616e-4, - -0.0026736434, -0.021892613, 0.049983803, 0.018051302, 0.013724387, - 0.034319125, -0.027526317, 0.01421718, 0.023843046, -0.014680488, - -0.01672736, -0.033534963, 0.041796517, 0.054215588, 0.03211822, - 0.01737165, -0.054870076, -0.0014106223, -0.023360107, -0.03751124, - 0.011056009, 0.0572584, 0.041715052, 0.054651916, 0.06246659, - -0.012669121, -0.031694647, -2.1963895e-4, 0.012881758, 0.04230578, - 0.0017724974, -0.08976485, 0.021242037, 0.005412624, 0.06532219, - -0.03264245, -0.05044648, -0.016120255, -0.015300133, -0.011302767, - -0.0015276237, -0.037719652, -0.020629045, -0.029301735, 0.0084877275, - -0.021134181, 0.025003934, 0.040589612, 0.005048672, -0.014171818, - -0.04125697, -0.06168316, -0.021754075, 0.0024209365, -0.019498566, - 0.020474067, 0.052920375, 0.037784837, -0.007470837, -0.011069917, - 0.054852635, -0.007592458, -0.02234412, 0.0080151465, 0.0037560049, - 0.0175998, -0.048171792, -0.0116352355, -0.0264092, 0.03843521, - -0.014918618, 0.03219575, -0.03449462, 0.03545887, 0.0021706426, - 0.05892136, -0.002991145, -0.023526967, -0.012340204, -0.023065422, - -0.040470548, 0.024751944, -1.8716702e-4, 0.010488259, -0.0065942495, - -0.03543192, -0.050252862, 0.039302394, 0.013169515, -0.016915543, - -0.0021460757, 0.0130104, -0.064304836, 0.02881716, -0.0504581, - 0.0024202869, 0.03891163, -0.051871542, -0.0026088185, -0.012749467, - 0.021560002, -0.045965325, -0.04009825, 0.038492024, -0.04600818, - -0.0049835215, -0.0031675517, 0.0066365353, -0.029373156, -0.014032821, - -0.049270496, 0.012951471, -0.017356468, -0.0032838366, 0.004791801, - 0.0049046725, 0.034617808, -0.008739997, -0.006489787, 0.039020207, - -0.020323688, -0.005311634, 0.0045121363, -0.007328959, 0.010675126, - -0.0071569625, 0.06047596, 0.08511869, -0.027411645, 0.03371263, - 0.04973464, -0.025492745, -0.010413824, -0.01774747, -0.054943055, - 0.01806684, 0.066270165, 0.03662149, 0.0060006776, 2.2070546e-4, - 0.03977724, -0.014506385, -0.040574204, -0.02261851, 0.04104122, - -0.019046674, 0.014726807, 0.013563003, -0.01493233, -0.054402288, - 0.017894536, -0.04639135, 0.016198032, -0.002084131, 0.01801943, - 8.400958e-4, -0.020414306, 0.01331395, 0.049065746, 0.021541301, - 0.025181383, -0.04252966, 0.027526565, -0.015340033, -0.027985021, - -0.011834912, 0.0809757, -0.037256353, 0.018268839, 0.012117553, - -0.00922611, 0.026456123, -0.01096226, 0.01747492, 0.0670876, - 0.015056596, -0.008377802, -0.009895511, -0.04010474, -0.003479284, - 6.009894e-4, -0.03615277, 0.023026062, -0.021251077, -0.004531458, - 0.0066931285, 0.026287887, 0.046315733, -9.279545e-4, -0.017527137, - -0.03741586, -0.029421384, 0.0029246926, -0.0029737751, -0.002235715, - 0.03242576, -0.020073265, -0.052324057, 0.021128485, 0.0030023204, - 0.027279152, 0.01997841, 0.03937038, -0.004692075, 0.007883356, - -9.951037e-4, 0.038277976, -0.0024745862, -0.0045201196, 0.01835599, - 0.031775024, 0.020609893, -0.007787872, -0.011624007, 0.024285072, - 0.061820436, -0.015392045, -0.05746585, 0.049812846, 0.062086634, - -0.011961997, 0.01261624, 2.218249e-4, 0.0018025818, 0.04999095, - 0.009870313, 0.0011786507, 0.031416446, -0.004627136, -0.029550174, - 0.044660505, -0.03535316, 0.013000588, 0.014586953, 0.01609406, - -0.02062378, -0.007933945, 0.024341697, 0.0073243175, 0.03499882, - 0.02450974, 0.024097743, 0.0052256864, 0.018089322, -0.025165357, - -0.0758653, 0.021697283, 0.022230078, 0.038543995, -0.042403698, - 0.022188628, -0.04097566, 0.011374091, 0.02690254, 0.01616801, - -0.016734662, -0.010936925, -0.0044379393, -0.011736104, -0.008680188, - -0.014159803, -0.016321069, -0.03836142, -0.027437203, 0.048389036, - 0.01412859, -0.048856426, -0.01322922, 0.006327448, -0.008049137, - -0.0072749006, -0.038235083, -0.058067225, 0.011801287, -0.03746208, - 0.002041766, -0.042050686, 0.0072324346, -0.0481949, 0.022294387, - 0.0019650015, -0.040272128, 0.026795728, 0.011410619, 0.02503481, - 6.403326e-4, 8.4606546e-4, -0.009436306, 0.025543917, 0.0020182251, - 0.031749807, 0.036515214, 0.047925685, 0.02869856, -0.020779788, - 0.010879659, 0.0019835755, -0.055205636, 0.022649718, -0.0513591, - -0.0061434307, 0.015301711, 0.020555822, 0.05533158, -0.056419805, - -0.02872355, 0.022646017, 0.01703832, 0.05496268, 0.034213338, - -0.023255238, 0.07537893, 0.06482911, 0.00287184, 0.022639783, - -0.00858741, -0.0032358419, -0.026318857, -0.017885894, 0.034664992, - 0.0032558627, 0.033221774, -0.008766894, 0.06772645, -0.037060726, - -0.029934566, -0.06419533, 0.030130584, -0.0038507627, -0.06982853, - -0.017116502, 0.024304971, 0.044810075, 0.0027817858, -0.025148513, - -0.0149297435, 0.0604727, 0.010757762, 0.03210985, 0.006788559, - -0.009640946, -0.04344784, -0.019858517, 0.04185212, -8.463254e-4, - -0.0061950944, -0.004712208, -0.030016784, 0.0016685547, 0.010390265, - -0.027205208, 0.038804594, -0.04335597, 0.017539177, -0.013900861, - 0.055884935, 0.03158396, -0.025013741, 0.053113878, -0.029162645, - 0.02801946, 0.043910637, 0.039566595, -0.004038995, -0.0115734525, - -0.048095174, -0.0361042, -0.010365609, 0.014331899, 0.06413211, - 0.06649685, 0.017340599, 0.017824914, 0.05285231, 0.027873779, - -0.033659574, 0.021805977, 0.005030598, -0.066688955, -0.025423784, - -0.037598252, -0.057535317, 0.021473723, 0.010672831, -0.04904076, - -0.013194852, -0.039299943, 0.026760815, -0.007535969, -0.031444434, - -0.020714654, 0.042374607, -0.023948602, 0.008257314, 0.014357636, - -0.055107027, -0.038179975, 0.0035465257, 0.0104716765, 0.013287274, - 0.034883693, -0.025032107, -0.018801883, 0.01944623, -0.019687707, - -0.02502692, -0.05891979, -0.0042244312, -0.02374107, 0.028375797, - -0.02228156, 0.016021648, 0.020620545, -0.0066229654, 0.035741832, - 0.056703106, 0.07370462, -0.021640707, -0.01914488, 0.0019456849, - 0.008405289, 0.01324537, 0.011699718, -0.049820356, -0.027475053, - 0.06951598, 0.018951723, -0.013426808, -0.073148444, 0.052499518, - -0.03594463, -0.022431012, -0.027473997, 0.0029808022, -0.03437069, - 0.03443885, 0.028571067, -0.017598363, -0.029750621, 7.839535e-4, - -0.030823667, 0.028690647, 0.023082685, -0.021296145, 0.043119714, - -0.0074191303, 0.031953666, -0.05419863, -4.3371745e-4, 0.039735258, - -0.0033740555, 2.525547e-4, -0.033384826, 0.06746669, -0.014910634, - -0.0034396574, 0.011743656, 0.009482437, 9.816475e-4, 0.022244703, - 0.048699968, -0.013665915, -0.015269771, -0.010451032, -0.032679636, - 0.02003201, 0.035277247, 0.037787307, -0.00573527, -0.007303818, - 0.02612719, 0.013856058, 0.012623928, 0.033926643, -0.031006519, - 0.032811135, 0.0024947065, 0.027077045, -0.015451603, 0.050337456, - 0.032344207, 0.009909139, -0.06404222, 0.022974031, 0.036361996, - 0.020217262, 0.0070651607, -0.022468993, 0.007865719, -0.0034685384, - 0.0043919636, 0.05860366, -0.012733695, 0.055676226, 0.057228364, - 0.040094692, -0.036064863, 0.015961036, 0.008132814, -0.010195176, - 0.019022798, -0.043690823, -0.02399936, 0.06898233, 0.00971021, - -0.028003868, -0.008043748, -0.0094186505, -0.021787126, -0.0023833727, - 0.05301121, -0.009054194, 0.0067023225, -0.05456502, 0.056109663, - 0.021034636, 0.01589992, 0.04671609, 0.015359908, 0.013418342, - 0.006536066, -0.028782135, 0.013564016, 0.060120676, 0.024597222, - -0.047726754, 0.08542157, -0.07330938, 0.06643669, 0.034282465, - 0.0034538705, -0.038242184, 0.020610675, 0.02275447, 0.04127518, - -0.016046451, -0.008958832, 0.05573358, 0.019796098, 0.00542202, - 0.047629345, 0.005137835, 0.035314783, 0.0025922167, -0.05371476, - 0.031952947, 0.039568078, -0.011784095, 0.04856661, 0.057834156, - -0.01816586, -0.018652702, 0.02048114, 9.372872e-4, -0.0060547227, - 0.011562441, -0.043250114, -0.035079785, -0.043120377, 0.030685598, - 0.016345005, 0.0091879945, -0.024679122, -0.028239084, -0.0064700874, - 0.008807448, -0.0018233322, -0.03457947, -0.0022875238, 0.0080785155, - 0.007848478, 0.072277375, 0.029495662, -0.031643085, 0.012226061, - 0.03921853, -0.008408101, -0.026418703, -0.03463159, 0.008460173, - 0.024431182, 0.04333543, -0.0026730008, 0.0064375577, 0.030453352, - 0.013443762, 0.014222281, -0.03550047, -0.0050871675, -0.004875738, - -0.013507492, 0.07322695, -0.04698591, -0.011240857, 0.005562111, - -0.0055214297, -0.0020693436, -0.017265568, 0.011251383, 0.045718063, - 0.03646876, 0.020740146, 0.056998853, 0.025353853, -0.00276449, - 0.024257455, 0.039118752, -0.033092357, -0.005594465, 0.02208608, - -0.01277474, -0.05868616, 0.050179753, 0.07046684, 0.005704533, - -0.05901572, -0.034558717, -0.08816268, -0.004919375, 0.014744891, - 0.026562717, 0.0032104305, 0.035750926, 0.009238347, -0.0027662818, - 0.01598767, -0.050151534, -0.042183556, -0.002015456, 0.03908486, - 0.023674995, 0.03546038, 0.006363898, 0.011877225, -0.004682039, - 0.022754753, 0.032957207, -0.02835028, -0.015820935, -0.0019867637, - 0.015208082, 0.0067319805, 9.986225e-4, 0.010695181, 0.05275579, - 1.8919352e-4, 0.052331064, -0.04388894, -0.0019151516, 0.042254105, - 0.013704268, 0.011761057, 0.0138564855, 0.0059618424, -0.03603474, - -0.014731198, 0.005863413, -0.031171924, 0.028159745, -0.008644284, - 0.040496662, -0.0060060546, -0.03918476, 0.0030240892, -0.02735979, - 0.010510861, -0.010624309, -0.009622, 0.0052398783, -0.06473317, - 0.024938243, 0.023163114, 0.006914212, 0.066349976, 0.03669741, - -0.058346685, -0.04186653, -0.024638668, 0.008785144, -0.045327127, - 0.027612131, 0.010954965, 0.034010142, 0.049316105, -0.04274001, - -0.03213274, 0.0044817, -0.03811045, 0.026980454, 0.021983996, - -0.030328315, -0.014125837, -5.451553e-4, -0.043777082, -0.03817087, - 0.022450343, -0.06372284, -0.02470121, 0.024214735, 0.04904446, - 0.0014972335, -0.020590052, 0.044742946, -0.029062359, -0.0032355299, - 0.0026746704, -0.024694547, -0.024110135, 0.07390393, -0.016770951, - 0.031184005, 0.0424204, 0.0066404045, 0.029917415, 0.032110523, - 5.853354e-4, -0.015445413, 0.012578932, -0.031234851, -0.03091333, - 0.05064336, 0.014701986, -0.016689187, -0.0047817677, -0.009108156, - 0.008299043, -0.03975792, -0.0011255421, -0.030937199, 0.009379136, - 0.019945662, -0.019890072, -0.0155942505, -0.016117483, 0.013428034, - 0.011037512, 1.80027e-4, 0.035834726, 0.0017607403, -0.075371385, - -0.0049443864, 0.022133015, -0.01519284, 0.0285349, -0.0061586737, - 0.009096196, -0.002616315, 0.055646647, -0.024334067, 0.055130586, - 0.03942227, 0.0100963535, -0.020923106, -0.019063422, 0.072576344, - 0.058201574, -0.024204038, -0.04249328, -0.07851264, -0.017911697, - -0.003851682, 0.0072806193, 0.040516492, 0.014642789, 0.00729698, - 0.046793938, 0.030609852, 0.017439263, -0.0341726, 0.026094727, - -0.02993349, -0.0492399, 0.05566895, -0.00870143, -0.0016259149, - 0.035300534, -0.025252305, 0.0066955136, 0.025594892, 0.015196517, - -0.00116943, -0.046318606, -0.017300177, -0.027402729, 0.034922834, - 0.021792427, 0.0041727857, -0.027184857, 0.045900695, 0.004306892, - 0.03833713, -0.010278971, -0.04308425, -0.031379115, 0.0022945742, - 0.035486944, -0.00923171, -0.0036038647, 0.06072988, 0.050226796, - -0.021547364, 0.043800805, 0.02381079, -7.370398e-4, -0.02958265, - 0.009468845, -0.07355511, -0.019459747, 0.035019524, -0.009380217, - -0.022252647, 0.019986622, 0.019834451, 0.01507049, -0.04081927, - 0.006035511, 0.012634468, -0.011924585, -0.07573583, 0.008227886, - -0.022144675, 0.01248547, 0.022145443, -0.018348295, 0.045741748, - 0.003408713, -0.044807665, 0.024992809, 0.02264428, 0.0028148943, - -0.024673453, -0.018759469, 0.021100178, 0.020989811, -0.010290517, - 0.021927949, -0.008284083, 0.020207059, -0.011366037, 0.04899219, - -0.013285109, 0.006556314, -0.01877752, -0.024702396, 0.05109218, - -0.022360547, 0.028279368, -0.013785605, -0.0054219854, -0.045157757, - 0.0067598294, 0.005741097, 0.0077876165, 0.070656925, -8.5827353e-4, - -0.007475206, -0.00437031, 0.004571206, 0.02134587, 0.006884527, - 0.0068797395, -0.024028486, 0.018697608, 0.036982596, -0.0024971226, - -0.01233073, -0.021843243, -0.058851946, -0.053860944, -7.7687575e-5, - 0.023937026, 0.032160718, -0.025563782, -0.03216959, -0.011773853, - 0.028245058, -0.035399944, 0.012778073, 0.02297031, -0.0016825346, - 0.0044140117, -0.0011792387, 0.008043372, 0.02327203, -0.060818397, - -0.0027188703, -0.039621573, -0.027900565, -0.042575657, 0.0034798826, - 0.028006444, 0.024842512, 0.019834992, 0.05501645 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + -2208988800000 + ] + }, + "vectorValues" : { + "features" : [ + 0.0047968123, + 0.015364653, + -0.01583392, + -0.017023362, + -0.01909012, + 0.005428295, + -0.014278596, + -0.010099527, + -0.004787642, + -0.0051108147, + -4.2812526E-4, + 0.016275471, + -0.0013865436, + -0.008934739, + -0.027007965, + -0.005779731, + 0.040681597, + -0.0077439887, + -0.0067343423, + -7.308772E-4, + 0.0032923364, + -0.0025346538, + -0.0013042948, + -0.00235294, + 0.019601544, + 0.0025850777, + -0.014345591, + 0.0036153102, + -0.0020966982, + -0.012998866, + 0.02322873, + -0.031488646, + 3.6753778E-4, + -0.01923803, + -0.004415261, + -0.02157167, + -0.004882065, + -0.009514565, + -0.004899514, + 0.0038635116, + 0.012862078, + -0.020039793, + 0.005096966, + 0.017589085, + -0.018684879, + 0.007180822, + 0.008964377, + -0.014812276, + 0.0011462581, + -0.005803868, + 0.023767319, + -0.022866126, + -0.009741796, + 0.016668782, + 9.804586E-4, + 0.030469086, + 0.014792217, + 0.02299035, + -0.0055794716, + 0.0067153615, + 0.00526831, + 0.019192476, + 0.009894354, + 0.0043148957, + -1.827377E-4, + 0.010770058, + -0.009037269, + 0.028906275, + -0.0045323586, + 0.0077433144, + 0.013815943, + -0.012823814, + 0.022950843, + -0.027655201, + 0.029460276, + -5.9780426E-4, + -0.010060354, + -0.003090609, + -0.019497098, + -0.0046933806, + -0.016136222, + -0.012351047, + -0.009321732, + -0.0050743655, + 0.030184424, + -0.007177615, + 0.007570534, + 0.016915856, + 0.024426294, + 0.0023813967, + -0.0012539121, + 0.0029189975, + 0.005470735, + -0.026198683, + 0.005580163, + 0.022290424, + -0.009743071, + -0.0051884414, + 0.014714124, + -0.022230273, + -0.0043381415, + 0.0034479513, + 0.010805119, + -0.0137430625, + -0.0059979064, + -1.4178276E-4, + 0.01962044, + 0.005078501, + 0.013213781, + -0.0058486396, + 0.0029961867, + -0.007219625, + -0.0053627663, + -0.019187473, + 0.008317326, + 0.0155499065, + 0.011265224, + -0.006289104, + -0.0015631262, + 0.0064403443, + 0.029317042, + -0.02082188, + -0.008891839, + 0.018054778, + -8.2076335E-4, + -0.006623701, + 0.0035145853, + -0.01748301, + -0.012712131, + -0.0041412734, + 4.5278136E-4, + -0.0036912258, + 0.018369896, + -0.003119559, + -0.0075842417, + -0.020686299, + -0.013022959, + -0.017515073, + -0.0017506417, + 0.0368223, + 0.03194833, + 0.00784198, + -0.008073638, + -0.01897208, + -0.035568938, + -0.008182912, + -0.0018929332, + 0.01503582, + 0.024811238, + 2.2288048E-4, + 0.011168682, + -1.1114354E-4, + -0.015157875, + -0.035317555, + 0.011235472, + -0.01937993, + -0.016673777, + -0.019538838, + -0.005636517, + 0.022945587, + -0.011144471, + -0.0066092876, + 0.012491357, + -0.015416368, + -0.015140223, + -0.010615597, + 0.002604885, + 0.011991706, + -0.023571739, + -0.014626231, + 0.006773523, + 0.0066401325, + 0.009368306, + -0.0025679935, + -0.01814628, + 0.012083151, + -0.010402237, + -0.004442497, + -0.009549204, + -0.0021241673, + 5.5880327E-4, + 1.0259613E-4, + -0.0024127262, + 0.021309413, + 0.008518314, + -0.012376627, + 0.028809942, + -0.025451833, + -0.009503659, + 0.0027753839, + 0.019119238, + -0.009899941, + 0.025921922, + -0.019380014, + 0.039625667, + -0.034154896, + 0.0016420151, + -0.017943477, + 0.0015946386, + 0.0050101224, + 0.017093211, + -0.016851865, + 0.015392108, + 0.027859561, + -0.03062717, + -0.0026830097, + 0.0077681392, + -0.009477847, + -0.014626818, + -0.0111119775, + 0.037803605, + -0.010893261, + 0.020821692, + -0.0062525957, + 0.007248906, + 0.01082693, + -0.027025683, + -0.026480205, + 4.8421187E-4, + -0.016470835, + -0.01805666, + -0.01073866, + 0.00796864, + -0.019437063, + -0.0052839443, + -4.1345233E-4, + -0.019575471, + 0.016492052, + 0.004998636, + -0.02186543, + -0.023793705, + -0.002595744, + 0.029212294, + 0.0017076498, + 0.010593849, + 0.0073690917, + 0.019151459, + 0.013748861, + 0.010780494, + 0.012099283, + -0.02097063, + 0.0140051, + 0.002085268, + 0.0014202959, + 0.006176853, + -0.006629278, + 0.013568396, + -0.021468611, + 0.024773994, + 0.0048918175, + 0.009867843, + -0.004056385, + -0.021707097, + 0.0050422987, + 0.0030429584, + -0.024319377, + -0.0046814526, + -0.018383285, + -0.0055952338, + 0.039275147, + 0.025331438, + -0.0044785757, + -0.022609664, + 0.017236946, + 0.017615687, + -0.012522245, + 0.017844338, + 0.006313354, + -0.013504357, + -0.009110461, + -0.024788119, + 0.005471792, + 8.1348384E-4, + -0.009134004, + -0.01893794, + 0.03059649, + -0.0043607987, + 0.006994164, + 0.006045645, + -0.011842645, + 0.0060446872, + 0.026570557, + 0.0058247377, + 0.0044222903, + 0.015278131, + -0.007096781, + -0.020625714, + -0.0067412658, + -0.00635039, + 0.043514784, + 0.02664607, + -0.022767557, + 0.009486642, + -0.010364553, + 7.523361E-4, + 0.0028538946, + 0.005819759, + 0.021557009, + 0.0075582257, + 0.016260399, + -0.014269908, + 0.0056210607, + -0.008444652, + -0.015080891, + 0.0071243513, + 0.0069468524, + -0.018126793, + 0.01930085, + 0.008474003, + 0.011491649, + -0.0022987565, + 0.015577482, + 0.0030460577, + -0.006973147, + -0.01463767, + -0.033143204, + -0.013756457, + 0.0069235037, + -0.028584128, + -0.007117546, + 0.0034698856, + -0.007443322, + -0.00981475, + -0.0056029246, + -0.004803692, + -0.019219372, + 0.026958242, + -0.00624607, + 0.021235611, + -0.004087502, + -8.616338E-4, + 5.355582E-4, + -5.852938E-4, + 0.03042279, + 0.0010601428, + -0.0021335334, + 0.0057267053, + 0.018216727, + 0.01995943, + 0.010460198, + -0.0018945446, + 0.008044317, + 0.035734616, + 6.766267E-4, + -0.008666513, + -0.016651083, + 0.013616285, + 0.019921018, + 0.00398767, + 0.016072132, + 0.03306357, + -0.007746287, + 0.011866164, + 1.9804777E-4, + 0.008388199, + 0.009982389, + 0.02175611, + -0.010196829, + -0.025011525, + -0.008116258, + 0.029072242, + 0.014657127, + 0.010337088, + -0.002510555, + -0.02423985, + 0.03283977, + -0.0043224674, + -0.006194414, + -0.043696582, + 0.0032105222, + 0.007839554, + 4.65313E-4, + 0.002942818, + -0.0103846565, + 0.0019109162, + -0.0078925835, + -0.0050242413, + 0.017211098, + 0.001973736, + 0.013246674, + -0.0356751, + -0.0068394025, + 0.0070855, + 0.0022981106, + -0.010665507, + 0.002748974, + 0.010330733, + -0.0064634415, + -0.0022896347, + 0.002354429, + 5.7529064E-4, + 0.0046293596, + -0.018989611, + 0.026387377, + 0.043380287, + 0.0069937496, + -0.0018375879, + -0.007789147, + 0.02004032, + -0.015228643, + -0.005065762, + 0.016822657, + -0.01601385, + 0.0028789914, + 0.025634164, + 0.01892354, + -0.024525577, + -0.01683581, + 0.00607001, + 0.0014555327, + -0.016755681, + 0.009940466, + 0.013385497, + 0.008387842, + -0.0011088394, + -0.013262719, + 0.0193593, + -0.008419573, + 0.007629933, + -0.0024364523, + -0.0054680975, + -0.017009454, + -0.008642225, + -0.030735606, + 0.014221033, + 0.013878811, + 0.0060329256, + -0.025059486, + 5.469642E-4, + -0.017133635, + -0.012962017, + -0.014398789, + 0.009886949, + -2.2328293E-4, + -4.0290342E-4, + -5.566487E-4, + -0.016193442, + 0.007314878, + -0.0057956884, + -0.0029185226, + -0.00807229, + 0.005110561, + -0.015237337, + -0.009175511, + -0.00537806, + -0.0065465076, + 0.0128136175, + -0.010193591, + -0.006910659, + -0.023120075, + 0.023639413, + 0.013829096, + -0.009158533, + 4.8445407E-4, + -0.032300692, + -0.006452269, + 0.01861446, + -0.014390729, + -0.026177928, + 0.015608794, + 0.005745219, + -0.010586541, + -0.015465942, + -0.014104106, + -0.021507712, + -0.01008153, + -0.009047142, + -0.022756843, + 0.008504182, + -0.006761332, + 0.016535532, + -0.013143661, + -0.029825706, + -0.002834978, + 3.3814865E-4, + 0.021155026, + -0.01145868, + 0.03357623, + 0.013726765, + 0.026399972, + -0.023826191, + -4.490778E-4, + -0.008754405, + 0.0053379615, + -0.005585293, + -0.010421064, + -0.025265878, + -0.037155576, + 0.015859023, + 0.0071275793, + 0.0011023995, + -0.023703454, + -0.02826827, + 0.03307666, + -0.0274259, + -0.010854047, + -5.192823E-4, + -2.5172756E-4, + -0.014333607, + -0.00281118, + -0.01601176, + 0.01576914, + 0.01407325, + -0.024277966, + 0.0014108628, + -0.008807395, + -0.005857648, + 0.006226484, + -0.0044189636, + 0.0048760837, + 0.001697031, + -0.0050535593, + 3.2092602E-4, + -0.03517766, + -0.0031362437, + -8.8811864E-4, + 0.009371478, + 0.013563805, + -0.029263014, + -0.017639587, + -0.0022859613, + -0.0026121181, + 0.017999822, + -0.0061965813, + 0.005473627, + -0.009297868, + 0.005111592, + 0.013190856, + -0.023164934, + -0.00962489, + -0.005303034, + -0.0047031464, + 0.004118925, + 0.018260622, + 0.0014666263, + -0.014155411, + -0.0068405312, + 0.0023741422, + 0.0053065377, + 0.01219068, + 0.038655184, + -0.0013474581, + -0.024647301, + 0.008305678, + -0.010025198, + 0.0062453253, + 0.013612269, + 0.032871604, + -0.00920733, + 7.9537225E-5, + -0.027742827, + 0.013531186, + 0.02613425, + 0.020339157, + 0.01104719, + -0.0010170599, + -0.013717902, + -0.0062672687, + -6.745764E-4, + 0.015169413, + -0.004259748, + 0.021345053, + -0.01467035, + -0.017812941, + 0.0047916835, + -0.0022387642, + 0.010959238, + 0.012752214, + -0.016156333, + 0.0026674916, + -0.040118217, + -0.017520025, + 0.002456578, + -0.0030060057, + -0.015201021, + -0.011958404, + 0.0075225993, + 0.0202118, + 0.007354831, + -0.008575583, + 0.0043666246, + -0.009418478, + 0.015307999, + -0.01155028, + 0.0016941042, + 0.021788701, + 0.035752032, + -0.003424335, + -0.015490327, + -0.025025139, + 0.0088531375, + -7.965226E-4, + -0.032644294, + 0.008208022, + -0.036094036, + -0.002796662, + 0.0136201335, + 0.015771432, + 0.021401837, + -0.02011087, + -0.018866232, + 0.0013768708, + 0.007076889, + -0.014922403, + 0.022379605, + -0.008287714, + 0.011410706, + -0.0029293008, + 0.004643127, + 0.02847159, + 0.006258357, + -0.0013285925, + 0.019522741, + 0.021211684, + 0.001947821, + 0.024334436, + 0.009917631, + -0.008705189, + -0.0067469594, + 0.005248452, + 0.008467733, + 0.001298381, + 0.010892278, + 0.0063840896, + -0.02807264, + 0.0019777226, + -0.00661578, + -0.0033453254, + 0.0067490595, + -0.01696649, + -0.0016733686, + 0.007473387, + -5.5542856E-5, + -0.013922738, + 0.006581052, + -0.0072974684, + -6.2142883E-4, + -0.014248251, + 0.019503335, + 0.0025083865, + 0.008933392, + 0.025302151, + 0.0038662637, + 0.002595527, + 0.009121507, + -0.0033369742, + -0.016255425, + 0.011741237, + 0.004345139, + 0.0076800957, + -0.011196517, + -0.010804108, + -0.00820453, + -0.045996204, + -0.018468095, + -0.011520877, + -0.007844429, + 0.013098571, + -0.033717506, + -0.012673121, + -0.013656421, + -0.005024726, + -0.0029327518, + -0.0067522, + -0.0022653686, + 0.012543152, + 0.017482383, + 0.022307053, + -0.011013418, + -0.006850872, + -0.020339454, + 0.004739598, + 0.0061732577, + -0.0039214967, + -0.01580371, + -0.01319778, + 0.021144405, + -0.01417483, + -0.023133747, + 0.027766308, + -0.0042156396, + -0.025999378, + -0.0065908944, + -0.0012303102, + -0.010677195, + -0.012310086, + -0.0024460456, + -0.0035658143, + 0.018350475, + -0.004506011, + 7.818376E-4, + 0.020601735, + -0.015181605, + 0.009809986, + -0.018777808, + 0.00902684, + -0.012781256, + -0.011000814, + -0.022793235, + -0.012930301, + -0.009395479, + -0.004365759, + 0.0028343531, + 0.02244475, + -0.019195227, + -0.0025667758, + -0.004249604, + -0.008290373, + -0.013536974, + 0.0022847946, + 0.0051007085, + 0.008361864, + -0.0016685583, + 0.01634016, + -0.014613487, + 0.0068811476, + 0.018665172, + -0.008991997, + -0.009804973, + -0.0039920686, + 0.0038016674, + -0.0054771677, + 0.031200463, + -0.011388192, + 0.037498325, + -0.011534012, + 0.020177368, + 0.015920363, + -0.011298732, + -0.011555519, + 0.009027104, + -0.032303642, + -0.0065763122, + -0.00878904, + -0.006818318, + -0.00907078, + -0.024563404, + -4.0257297E-4, + 0.0039053755, + 0.010955621, + -0.007122961, + 0.026778163, + -0.018582508, + 0.010264162, + -0.024794368, + 6.527747E-4, + 0.019761117, + 0.01687456, + 0.015005626, + 0.03348416, + 0.0053775865, + -0.005886192, + -0.024127405, + 5.554568E-4, + -0.015005188, + 0.018622011, + 0.019774212, + -0.011912867, + 0.021223666, + 0.016357433, + -0.0010204945, + -0.015241109, + -0.002928289, + -0.025922935, + -0.0042493716, + -0.0035399923, + 0.021781253, + 0.0029370857, + 0.010148833, + -0.011754234, + 0.007385325, + -0.0012870805, + 0.019183783, + 0.008318699, + -0.009064063, + -0.008040351, + -0.0040051257, + -0.0025741635, + -0.013227585, + -0.0154209435, + -0.014821, + 9.3045057E-4, + 0.01358841, + -0.0100266365, + 0.015559287, + -0.009998592, + -0.028451832, + 0.0011808889, + -0.007723415, + -0.01048609, + -0.0098774955, + 0.0041567185, + 0.015325002, + -0.029206958, + -4.7542067E-4, + -0.02573345, + 0.0173185, + -0.018337214, + 0.006491744, + -8.918611E-4, + -0.0080284085, + -0.012118455, + -0.0046876604, + 0.007061407, + 0.0030782549, + -0.009243008, + -0.006321134, + -0.009889335, + 0.0041205925, + -0.023342665, + -0.0028324595, + -0.016910622, + -0.04058025, + 0.030936722, + -0.0032792517, + 0.006556477, + 0.018778345, + 0.011775589, + -0.003004974, + 0.0067872284, + 0.011892015, + -0.004414036, + -0.0062831794, + -0.02267381, + 0.002604124, + 0.033518832, + -0.021797322, + -0.0016649192, + -0.015382829, + -0.007577515, + 0.00572481, + -0.031812437, + 0.00858219, + 0.0045427424, + -0.01313725, + -0.0070751063, + 0.021197977, + 0.022161614, + -0.007540096, + 0.009869097, + 0.01642004, + 0.023013152, + 0.018873768, + 0.0072119087, + 0.019534253, + 0.017842779, + -0.026391823, + -0.010560526, + 0.0013839055, + 0.012549102, + 0.01688072, + 0.013539614, + 0.007927427, + 0.0215229, + 0.0054456573, + -0.0045579467, + 0.00823884, + 0.033599813, + 0.007645916, + -0.006404044, + -0.0023222547, + 0.023219064, + 0.02679227, + 0.023343561, + 0.026746495, + -0.013932397, + -0.011058145, + -0.0014546891, + 0.008317597, + 0.013227239, + -0.015453672, + 0.020981658, + 0.005647643, + 0.010446535, + 0.020935416, + -0.02152004, + 0.0089211585, + 0.008426679, + -0.004792046, + 0.0025303038, + -0.008269993, + -0.0175081, + 8.039201E-5, + 0.018051792, + -0.009499016, + -0.011842149, + -0.007280971, + -0.04461031, + 0.0038713599, + 6.029094E-4, + 0.006123004, + 0.006353819, + -0.028347021, + -0.008475404, + -0.004115677, + -0.0021326018, + 0.015892105, + 0.016045215, + 0.014645862, + -0.013809257, + -0.020829659, + -0.0039220294, + 0.004168723, + -0.012825401, + -0.020107636, + 6.084994E-5, + -0.0103999935, + 0.04095921, + 0.008739619, + -0.024945337, + -0.0019347447, + -0.004861844, + -0.004112106, + 0.009729538, + -0.035413317, + -0.0015042697, + 0.0049997442, + 0.017813897, + -9.810509E-4, + -0.011873882, + 0.015171557, + 0.022467524, + 0.03654337, + 0.010999033, + -0.0085065495, + 0.0037046561, + 0.004518171, + 0.013290482, + -0.016288208, + -0.010747731, + -0.02108883, + 0.0030096564, + 0.006423388, + -0.022683047, + -0.011397756, + 0.007942585, + -0.011803698, + -0.0087445825, + -0.026912848, + 0.019407835, + 0.008636652, + -0.024114018, + -0.019117266, + -0.011530295, + 8.080714E-4, + -0.0039838054, + 0.010219142, + -0.0014430478, + -0.015336241, + 0.0036887126, + -0.0033051763, + -0.005021673, + -0.008285516, + -2.6854925E-5, + 0.023454575, + 0.023804845, + -7.439901E-4, + -0.033043124, + -0.023554353, + -4.9820996E-4, + 0.0012685077, + 0.033751696, + 0.016719947, + -0.0040001255, + 0.022866234, + -0.042717945, + 6.650773E-4, + -0.006753223, + -0.0046555093, + 0.0033424683, + -0.021750567, + 0.0068101934, + -0.005500007, + -0.021672117, + -0.016518649, + 0.010086022, + 0.0036085765, + 0.0021573398, + -0.0077109933, + -0.013047837, + 0.004274067, + -0.013208854, + 0.024308093, + 0.012387772, + -0.019564169, + 0.012805084, + 0.013430531, + 0.003719061, + 0.0062943357, + -0.0043481067, + 0.009302428, + -0.024236659, + -0.009375204, + -0.0056624357, + -0.0077007376, + 0.0036250653, + 0.008003351, + 5.19901E-4, + 0.0017913654, + 0.0021480694, + 0.008027636, + 9.27151E-4, + 0.011394211, + -0.022060243, + 0.008441254, + 0.007232956, + 0.015370837, + 0.007400392, + 0.016433423, + -0.01077248, + 0.0095517645, + 0.019730544, + 0.004773288, + 0.013799837, + -0.012228656, + -0.0026702448, + -0.015604489, + 0.010099641, + -0.025443975, + 0.0029020899, + -0.00954594, + -0.0017831298, + -0.039551936, + -0.015407237, + 0.0033772837, + -0.005696694, + -0.01664699, + -0.0012689595, + 0.024197245, + -0.0011285675, + 0.023353333, + 0.011321021, + -0.01183828, + -0.0025281985, + 0.020051526, + -0.0031405666, + 0.01695656, + -0.008718884, + 0.02633325, + -0.009286489, + -0.02441792, + -0.030612262, + 0.015558205, + 0.011437755, + 0.010655691, + -0.01478911, + 0.01986159, + -0.0065208725, + -0.018899096, + 0.005522718, + 0.0041895825, + 0.03114198, + 0.019063719, + -0.010622798, + 0.01573224, + -0.032042824, + 0.0062194983, + 0.0033710941, + 0.015149833, + -0.0054614786, + 0.0024359862, + 0.0071971132, + 0.005953012, + -0.0030887667, + -0.014930936, + -0.008780042, + 0.026620554, + -0.0014811143, + -0.008881838, + -0.010021028, + -0.0075874096, + 0.0020351403, + -0.026662739, + -0.0055527124, + 0.008015691, + -0.014247633, + -0.017277995, + -0.012472008, + -0.004712044, + 0.016395345, + -0.021045845, + 0.009814416, + 0.0016872592, + 0.011812184, + 0.005346148, + 0.03090099, + 0.0097640995, + 0.015221811, + -0.01584518, + -0.0036856232, + -0.0011326344, + 0.0076289517, + 0.012725265, + -0.026449917, + 0.0021876742, + 0.030066043, + -0.0064305873, + -0.0025916072, + 0.007363279, + -0.010687004, + -0.013159993, + 0.03893361, + -0.012660626, + 0.022694571, + -0.014347814, + 0.0052840887, + 0.019111425, + 0.011167003, + -0.025588363, + 0.0023345891, + 0.0015474904, + -7.99365E-4, + -0.018035598, + -0.0045862063, + 0.01247937, + -0.018710185, + -0.03037867, + -0.01887057, + 0.01286178, + -0.006036858, + -0.0011467108, + -0.008904017, + -0.017854989, + 0.0020328474, + -0.027348302, + -0.01854716, + -0.01617238, + 0.008880383, + 0.0031031214, + -0.010897826, + 0.0072591025, + -1.17534066E-4, + -0.0016316626, + 0.0054172035, + 0.011802317, + -0.013877399, + 0.011031552, + 0.011832696, + -0.014752796, + -0.011979674, + 0.0044165715, + 0.00707776, + 0.011579303, + 0.0033054242, + -0.036337003, + 0.03717862, + -0.018811598, + -0.01922761, + 0.014652719, + 5.6517165E-4, + -0.0064822794, + 0.029140793, + 0.009960735, + -0.017563727, + 0.013285177, + 0.015687382, + -0.013860678, + -0.005566888, + 0.002337715, + 0.027105516, + 0.0083095925, + -0.020067172, + -0.009576403, + -0.007613934, + 0.011034527, + 9.6313196E-4, + -0.004340345, + 0.0034822733, + -0.005237722, + -3.8269197E-4, + -0.022848064, + -0.033525374, + 0.026294393, + 0.006132204, + -0.0015042764, + -0.03242257, + -0.016725957, + 0.0076918853, + -0.005717318, + 0.026732258, + -0.02936688, + -0.027485782, + -0.029540421, + 0.0034734614, + 0.008486778, + 0.01877696, + 0.021751897, + 0.028079998, + 0.006570362, + 0.019043446, + 0.006502753, + 0.0060122265, + 0.021594768, + 0.026418077, + -0.020878574, + 0.016000161, + -0.006845016, + -0.019387117, + 0.017863123, + 0.014242543, + 0.0036930023, + 0.0030865336, + -0.0055796923, + 0.0025976645, + 0.0137501415, + 0.004572581, + 0.020475684, + 0.03823445, + -0.034520384, + -2.4101684E-4, + -0.025345666, + -0.0298128, + -0.00950016, + 0.0038454533, + 0.001320605, + 0.005982062, + 0.0049583493, + 7.137013E-4, + -0.0044875797, + -0.007173817, + -0.020880181, + -0.0035643734, + -0.0083331745, + 0.01925674, + -0.0017438206, + 0.018895276, + 0.0195503, + 0.0057935915, + -0.01162851, + 0.009904415, + 0.019867217, + -0.0011153837, + -0.018204432, + 0.0020781034, + -0.003036266, + -0.013168723, + -8.50376E-4, + -2.6706057E-5, + 0.02900978, + -0.0058649704, + -0.006798248, + 0.012763552, + 0.019078871, + -0.0036250115, + 0.0052855667, + -0.003399009, + -0.018343069, + 0.03400945, + -0.0034080315, + 0.016466368, + 0.014083497, + 0.0137311295, + -0.003800529, + 0.018762155, + 0.020169692, + 0.016539605, + 0.010503495, + 0.012752917, + 0.02374534, + -0.010684841, + 0.010881432, + 0.022403201, + 0.024564918, + -0.009394234, + 0.013021894, + -0.019771395, + -0.013853764, + -0.0015439048, + -0.006527718, + 0.0039481907, + -0.012166153, + 0.010557615, + -0.0104150735, + -0.007306376, + 0.016097847, + -0.0011242627, + 0.0051759747, + 0.006945901, + 0.011624494, + -0.014195683, + -0.0056645335, + -0.012911701, + 0.0068566934, + -0.02333501, + -0.013679222, + -0.003795294, + -0.028437795, + -0.01838462, + -0.015042049, + 0.031120628, + -0.027250374, + -0.007818242, + 0.02249184, + 0.005106439, + 0.015819173, + 0.004853183, + -0.022631181, + -0.010595307, + -0.023511805, + 0.027214028, + -0.0076810145, + -0.00905452, + 0.018960033, + 0.008580994, + -0.0045409556, + 0.009987393, + -0.012957805, + -0.0057175765, + -0.03230088, + 0.009724193, + 3.712526E-4, + 0.020525023, + -0.006177606, + -0.0076641007, + -0.032467324, + -0.016604476, + -0.022400802, + 0.0081915, + -0.0025092305, + 0.007286772, + -0.010026011, + 0.0013380982, + -0.020675264, + -0.006499861, + 0.0014495924, + -0.005368637, + 0.021817265, + 0.02138541, + -0.013184583, + 0.022102661, + -0.017449576, + -0.007968753, + -0.008386258, + -0.01992148, + -0.010561107, + 0.004081746, + -0.021781068, + 0.023213262, + 0.012476461, + 0.011631976, + 0.014396703, + -0.020808319, + -0.0023261225, + -0.027186202, + 0.0062548774, + 0.021740267, + -0.0010627524, + 0.0025967485, + -0.008743669, + -0.03290272, + 0.012819213, + 0.0048266137, + -0.017884025, + 0.0037421489, + 0.014376541, + -0.020697799, + 0.0051318277, + -0.013069235, + 0.024833553, + 0.022408374, + 0.014444604, + -0.03405904, + -0.003932767, + -0.015201457, + -0.008799006, + 1.9928596E-4, + 0.0065357853, + 0.017054802, + -0.018092396, + -0.023267282, + -0.008201788, + -9.898142E-4, + -0.0017584295, + -0.010326061, + -0.03163179, + 0.0021898781, + 0.013865468, + -0.024041824, + 0.014200319, + -0.012398738, + 0.013827277, + 0.0016368394, + -0.00598774, + 0.019390646, + 0.023529312, + 0.0040754685, + 0.023629995, + 0.008729412, + -0.005086641, + 0.0076531596, + 0.021403925, + -0.016363395, + 0.016755486, + 0.020583028, + -0.019711075, + 0.0021518148, + -0.005314086, + -0.0027484237, + -0.013181038, + -0.019248245, + -0.013095696, + 0.010888626, + -0.012685678, + -0.00437038, + 0.020667026, + 0.004656461, + 0.013756739, + 0.019179773, + 0.026256077, + -0.034385502, + -0.0024011438, + -0.00158864, + -0.01160013, + -0.0036607215, + -0.023497349, + -0.01684539, + 0.018621579, + -0.009137134, + 0.012135752, + 0.018776432, + -0.001992025, + 0.0059626442, + 0.007944623, + -0.003953743, + 0.012595923, + 0.02176391, + 0.002161234, + 0.0376376, + 0.019092873, + 0.011192116, + 0.011573437, + 6.2444876E-4, + 0.014871699, + 0.03144228, + 0.012925492, + -0.01161441, + 0.008840577, + 0.009980936, + -0.019664438, + 0.02278287, + -0.010792926, + 0.03633317, + 0.02164882, + -0.015405524, + 0.0014281645, + 0.0054381043, + -0.017428314, + -0.008740292, + 0.013210261, + -0.004959828, + -0.029710764, + -0.042208973, + -0.034362905, + -0.010367063, + 0.0023105163, + -0.0035731774, + -0.01488363, + -0.0024179525, + 0.027802004, + 0.017010776, + 0.0026734676, + -0.011575892, + -0.01670447, + -0.010294245, + 0.0059074424, + -0.009530105, + -0.0046493183, + -0.004459429, + 0.0012931265, + -0.024347246, + 0.009811012, + 0.004470897, + -0.012887005, + -0.004986577, + -0.015364311, + 0.0011439294, + -0.018406352, + -0.0019261024, + -0.032949973, + 0.010303388, + 0.016774023, + 0.0013824902, + -0.029906988, + 0.004210275, + -0.0030596673, + 0.0017004187, + -0.034563202, + -0.006564554, + 0.007826425, + -0.011701238, + 0.0070032002, + 0.0068279314, + -0.032011695, + 0.014570836, + 0.016216172, + 0.004335962, + 0.018119015, + 0.022262555, + -0.021080723, + 0.0026282398, + -0.01892521, + 0.009292199, + 0.001955896, + -0.011252555, + -0.036082372, + 0.020140832, + -0.0012871413, + -0.0035281018, + 0.0337815, + -0.033957023, + -0.017436361, + 0.012377709, + -0.011984396, + -0.009156583, + -0.002854084, + 0.0015343904, + 0.011051571, + -0.023617595, + -0.02643379, + 0.004010026, + -0.028031874, + 3.7540236E-4, + 0.0061906218, + 0.018871766, + 0.0061127306, + 0.009943344, + -0.001418902, + 0.0039068493, + -0.0060871076, + -0.006842496, + 0.007102814, + 0.007858785, + -0.039202318, + 0.015405454, + 0.014791588, + -6.488736E-4, + -0.012038572, + 0.012652478, + 0.0059402524, + -0.030137815, + 0.0046168864, + -0.017421294, + 0.010342621, + -0.0044258228, + -0.0023373328, + -0.0074857166, + 0.016901005, + -0.02945247, + -0.015738934, + -0.022098206, + -0.009087749, + -0.04223476, + -0.020647978, + 2.7060552E-4, + -0.014094142, + -0.004806829, + 0.006091234, + 0.0045894524, + -0.0028658733, + 0.001841941, + -0.0029526686, + 0.006238854, + 0.0050946367, + 0.0013705522, + -0.030884938, + 0.0022585944, + -0.04060644, + -0.0137147, + -0.040751293, + -0.011288174, + 0.004020322, + 0.026292674, + -0.018624224, + -0.0032134338, + 0.015373656, + 0.0056471583, + 0.01596643, + 0.020830983, + -0.0064321957, + -0.004988465, + -0.014960129, + -0.019553155, + -0.0052188607, + 0.029494071, + -0.009236208, + -0.020679548, + 0.0122128315, + 0.009817785, + -0.007903698, + 7.400367E-4, + -0.0024766917, + 0.0029602062, + -0.01085074, + 0.010357872, + -0.0021309708, + -0.017279249, + -0.0060449173, + 0.009043565, + -0.00941256, + 0.0019274964, + 0.0036730126, + -0.0034760777, + -0.008166816, + 0.0010037175, + 0.006571576, + 0.010396551, + -0.010642923, + 0.02968026, + -0.0081115225, + 0.0028514152, + -0.0043882607, + -0.011935146, + 0.0015922784, + 1.4446279E-4, + 0.0046971724, + 0.009607384, + 0.013751014, + -0.017113097, + 0.004385572, + 0.014054786, + 0.021702828, + 0.010961028, + 0.0095381625, + -0.015193791, + 0.021581009, + -0.0013891167, + 0.0076594334, + 1.6604982E-4, + -0.012743454, + -0.0069519184, + 0.0076755835, + -0.028603459, + 0.009131005, + 0.008754035, + 0.012433609, + 0.0063583264, + 0.02394388, + -0.007824235, + 0.004069288, + 0.009001299, + -0.017205581, + -0.0011315123, + -0.010093766, + -0.0092164725, + 0.016801944, + 0.010654128, + -0.0017053438, + 0.016119089, + 0.020931395, + -5.927579E-4, + -0.020912921, + 0.029124944, + 0.013943148, + -0.03946552, + -0.021742733, + -0.0038323875, + -0.014986536, + -0.015966717, + -0.012172826, + -8.612111E-4, + 0.027534304, + -0.023026118, + -0.00537278, + -0.012485857, + -0.007851128, + -0.004023491, + -0.0050773043, + 0.0051320856, + 0.02131557, + -0.006041062, + 0.00606725, + 0.018135324, + -0.0014623075, + 4.6113614E-4, + -0.014266761, + 0.012542511, + -0.0026835315, + 0.022069657, + -0.0054564388, + 0.0026417803, + -0.014168977, + 0.021243164, + -0.014271895, + -0.003952171, + -0.011718279, + 0.009558213, + 0.03325341, + 0.023255993, + 0.014962472, + -0.004496775, + -0.0059079775, + -0.013836229, + 0.0118740415, + -0.006410479, + -0.012122738, + 0.03869056, + 0.013909759, + -0.032685563, + 0.004978505, + 0.0330552, + 0.0065855808, + 0.027416619, + -0.0077352608, + -0.022314247, + -0.011023484, + -0.021163872, + -0.0020217092, + -0.0076002567, + 0.012175941, + -0.006409167, + -0.01969939, + 0.01576504, + -0.0029822676, + 0.010779036, + 0.023448583, + -0.014522296, + 0.014542308, + -0.004448193, + -0.017700888, + -0.0073447297, + -0.002574376, + 0.004952999, + -0.0071440083, + -7.0128083E-4, + -0.0033391316, + -0.0045450055, + 0.0052955244, + -0.0034106108, + 0.0021544246, + 0.032806575, + -0.0153718665, + -0.007541338, + -0.020658866, + 0.0055435556, + 0.0067410055, + 0.0010557882, + 0.0069068493, + -0.008303715, + 0.0073553547, + -0.0062843156, + -0.015609716, + -0.0027730206, + -0.028784549, + -0.016842688, + -0.004648654, + 0.0063773375, + -0.0068254694, + 0.001525117, + -0.012146119, + -0.0011081481, + 0.002201178, + -0.0030320836, + 0.026088573, + -0.02939013, + -0.015680585, + -0.014005733, + -0.045827035, + -0.006637373, + -0.015851492, + -0.020199735, + 0.010401789, + -0.0165822, + 0.0089235855, + 0.0011096955, + -0.010891595, + 0.002950403, + 1.2277296E-5, + -0.029338162, + -0.010515959, + -0.020711431, + -0.008230568, + -0.0112022385, + -8.4117206E-4, + -0.016386285, + 0.018825483, + -0.0051286737, + -0.023714503, + -0.0061729206, + -0.0036466457, + 0.027275024, + 0.007985192, + -3.4423082E-4, + 0.0070006787, + -0.00227187, + -0.0025045772, + 0.016245492, + 0.006729463, + -0.005346407, + -0.025159542, + -0.023656776, + 0.024054851, + -0.011768964, + -0.019608812, + 0.0094398605, + -0.0050152573, + -0.004280587, + 0.00681515, + -0.0035441099, + 0.0056906496, + -0.012443786, + -0.011157207, + 0.016482279, + 0.013779561, + 0.019014804, + -0.001210366, + -0.005285117, + -0.014109145, + 0.0071576033, + 0.0010813564, + -0.011766076, + 0.01929124, + 0.008674108, + 0.02627549, + -0.0076235263, + 0.01002907, + -0.022742148, + 3.0737335E-4, + 0.0153112905, + 0.005372929, + -0.013205573, + -0.0058119553, + -0.043108605, + 0.0016742239, + 0.022684004, + 0.017776143, + -0.012099311, + 0.0037128695, + -0.02368225, + 0.02441865, + 0.006981143, + 0.0021267654, + 0.013743256, + -0.017288165, + 0.005613032, + -0.0072205975, + -0.025988115, + -0.007916348, + -0.022475006, + 0.0129388645, + -0.012072158, + 0.0064152502, + 0.012827175, + -0.012424556, + 0.029837994, + -0.04064301, + 0.026901558, + -0.031373516, + 0.018183839, + 0.013192865, + -0.018145304, + 1.8835005E-4, + -0.022677839, + -0.009999966, + 0.002747232, + 0.011501562, + -0.01505998, + 0.018350698, + -0.008123488, + -0.010779357, + 0.019470466, + -0.007816619, + 0.032173052, + -0.010147923, + -0.01009239, + -0.007193593, + 0.014058221, + -0.030775303, + 0.0067243753, + -0.019082922, + 0.010629761, + 0.016183484, + 0.013736574, + -0.0149462465, + 0.0075098113, + 0.012583439, + -0.020535046, + 0.011618356, + 0.020081943, + -0.027014453, + 0.012660267, + -0.011321072, + -0.003149822, + -5.855018E-4, + -0.0034072155, + 0.0017619284, + 0.005773234, + 0.006335904, + -0.008599816, + -0.029384699, + 0.04294885, + -0.007588448, + -0.004020403, + 0.012435093, + 0.013310166, + -0.024503594, + -0.0038445138, + -0.005232497, + -0.010240519, + 0.0064402195, + 0.03030105, + -0.0056470996, + -0.0042128037, + -0.0056157843, + 0.015702717, + -0.009784227, + 0.004965122, + -0.0051109195, + -6.1293563E-4, + -0.008268855, + 0.028916912, + -0.020760324, + 0.017482175, + -0.00860503, + -0.02112154, + 0.003925233, + -0.015422955, + 6.764858E-4, + 0.014196149, + 0.0041979686, + -0.0046306276, + 0.006918629, + -0.0051727537, + -0.0121202255, + -0.019191235, + 0.01873126, + 0.008200251, + -0.03511068, + -0.01203312, + -0.008215241, + -2.0577289E-4, + 0.01137829, + -4.0409862E-4, + -0.0062174755, + 0.012086307, + -0.011975947, + 0.0013727985, + 0.007876055, + 0.00411183, + -0.019236365, + 0.020880947, + 0.0022814155, + 0.018346677, + -0.018749714, + -0.022891004, + 0.019781433, + 0.039188847, + -0.011736119, + 5.5993686E-4, + 0.02398432, + 0.013338224, + -0.008970982, + -0.0087686805, + -0.010620402, + -0.012548821, + -0.016707446, + -8.034533E-4, + 0.004741528, + -0.0011918555, + 0.0014766675, + 0.017496627, + 0.0011586695, + -0.014938725, + -0.023960846, + -0.0047148336, + 0.003737544, + 0.002351422, + -0.0043839146, + 0.02574003, + 0.031635165, + 0.0049865204, + 0.017288657, + 0.01840984, + -0.012843756, + 0.017805912, + 0.024513068, + 0.017193455, + 0.00283568, + 0.0051639336, + 0.0067717144, + -3.7571424E-4, + 0.0150986435, + -0.010713986, + -0.012123501, + 0.006267619, + -0.02380609, + -0.012945643, + 0.0070929104, + -0.002588942, + 0.0070609897, + 0.019869113, + -4.6862094E-4, + 6.5983343E-4, + -0.01802459, + 0.0067806933, + -0.0049297274, + 0.020848803, + 0.008298345, + 0.01567506, + -0.022550583, + -0.02683155, + -0.030177463, + 0.007286005, + -0.004325966, + 0.0040412294, + 0.0293405, + -0.012491503, + 0.015663236, + -0.0034834142, + -0.0030095489, + 0.01858833, + -0.009199441, + -0.007514437, + -0.018010229, + -0.0025846143, + 0.0077084107, + -0.02373711, + 0.004751504, + -0.012389758, + 0.020086389, + 0.010273407, + -0.002618806, + -0.024835695, + -0.025403421, + -0.011501966, + 0.022748692, + -0.031401686, + 0.010266485, + 0.013863295, + 0.02580855, + -0.018066054, + 0.008159286, + 0.014633632, + 0.006147751, + -0.0127222, + 0.015603359, + 3.8627378E-4, + -0.008369628, + -0.0068920217, + 0.019017456, + 0.020703943, + 0.013929949, + -0.012380811, + -0.017468216, + 0.010952795, + -0.025767773, + 0.020907704, + 0.0036972843, + 0.018979022, + -0.00849461, + -0.01840339, + -0.008524633, + -0.006455755, + 0.009137591, + 0.011461746, + -0.00588073, + 0.0041871755, + -0.0093781985, + 0.006441917, + 0.01613775, + -0.0050035394, + 0.0057937223, + -0.013252402, + -0.0020359075, + -0.020043151, + 0.024950016, + 0.031236527, + 0.02253723, + -0.0038196386, + 0.0025877436, + -0.0562613, + -0.023733353, + 0.011970986, + 0.0044108243, + -0.009562827, + 0.0030018894, + 0.011560983, + 0.012116508, + 0.033177853, + 0.01814738, + 0.015658747, + -0.013666884, + -0.02318088, + 0.011695146, + 0.012361958, + -3.5123172E-4, + -0.02763887, + 0.0037738087, + 0.01119148, + 0.007971094, + 0.0031317163, + 0.023187289, + 0.023549536, + -0.029414974, + -0.004913333, + -0.00919288, + 0.009437195, + -5.0683203E-4, + 0.0075377356, + -0.0021840287, + 0.011227744, + 0.01672004, + -0.01612905, + 0.01043935, + 0.011241105, + 0.0051705805, + 0.0018191942, + 0.013267249, + -0.010194867, + -0.002012265, + -0.009965103, + 0.014215002, + 0.0040913224, + 0.037149705, + 0.0019087619, + -0.018660571, + 0.009749082, + 0.011926478, + -0.002611716, + 0.0026146928, + 0.006035079, + 0.0065820413, + 0.0051876227, + -0.020395562, + -0.01541976, + 0.0013850016, + 0.018873757, + -0.0040814052, + -0.008475632, + 0.031064909, + -0.010492959, + 5.4768095E-4, + -0.013442255, + 0.020791456, + -0.01643641, + -0.019294284, + 0.013680914, + -0.004686803, + -0.0010529732, + -0.03136144, + -0.014803514, + -0.012765168, + 0.01558654, + 0.006948052, + 0.0033097751, + -0.0125416815, + -0.011159145, + 0.016479133, + 0.0027730423, + 0.036916263, + 0.013833132, + 0.008651255, + 0.012333742, + -0.024929171, + 0.0018329276, + 0.0035474985, + 0.005909955, + 0.0050691217, + -0.013572092, + -0.022699136, + -0.008932629, + 0.006086409, + -0.009916258, + 3.9305512E-4, + 0.002793073, + -0.0056586266, + 0.016347386, + -0.005474696, + -0.0057853977, + -0.0023204621, + -0.025522271, + -4.2359935E-4, + 0.0018016694, + 0.0031816107, + 0.03599013, + 0.021040792, + 0.02500618, + 0.007917427, + -0.017340207, + -0.0020585023, + -0.014749684, + -0.0026718746, + -0.0066586332, + 0.0028281137, + 0.025470963, + 0.007987726, + -0.012620792, + -0.0045599607, + 0.011731542, + -0.023211822, + -0.0038804526, + 0.0019052973, + -0.00396249, + -0.020388445, + 0.011325421, + 5.6546734E-4, + 0.007982293, + -0.003560107, + -0.026329884, + -0.00674546, + 0.0014659342, + 0.009126857, + -5.9632055E-4, + -0.0015276574, + -0.009207635, + -0.009718037, + 0.0135920495, + -0.004234592, + 0.0027189124, + -0.01785056, + 0.0131104225, + -2.1754584E-4, + -0.010907088, + -0.0030038129, + -0.002751214, + 0.031591114, + -0.021158824, + 2.8592657E-4, + 0.018117612, + -0.029097358, + -0.006370088, + 0.0030998774, + -0.0072502787, + 0.0100229075, + -0.0038355582, + -0.0022198416, + -0.005528887, + 0.024375346, + -0.0039857025, + -0.015389378, + -0.0044537554, + -0.0039011736, + -0.019246496, + 0.024238668, + -0.024599867, + -0.008793361, + -0.0062283413, + -0.020379018, + 0.0293919, + 0.012056015, + 0.013202025, + 0.012076353, + -0.018771956, + 0.0041733114, + -0.023233475, + -0.030908277, + -0.0017098535, + -0.01935502, + 0.008043145, + -7.518621E-4, + 0.018507387, + 0.01966687, + -0.028164612, + -0.012352822, + -0.0250376, + -0.012399763, + 0.0075524305, + 0.011869419, + -0.004078874, + -0.013966795, + -0.0094206445, + -0.014826748, + 0.007521774, + 0.01775202, + -0.0056122527, + -0.0028872478, + 0.010992952, + 0.020381816, + -0.016336566, + 0.014033961, + 8.9331734E-4, + -0.015616509, + -0.033543196, + -0.014991154, + -0.01824183, + -0.0016231226, + 0.005900479, + 0.017613199, + -5.3384126E-4, + -0.00305351, + -0.020130705, + 0.0017906942, + 0.030639436, + -0.0062420517, + -0.011878357, + -0.015053382, + -0.010760597, + 0.0018442255, + -0.0069173872, + -0.007570072, + 0.022490138, + 0.0241789, + -0.021741856, + 0.008744275, + -0.015857287, + 0.0124935135, + -0.0023876613, + -0.013705117, + -0.009900854, + -0.020747637, + 0.03836786, + -0.02379441, + 0.018722754, + -0.006786981, + 0.02536811, + 0.003002908, + 0.011681196, + -0.00751688, + -0.024012445, + 0.037553832, + -0.0069219256, + -0.005762647, + -3.2074365E-4, + 0.0042311, + 0.014062281, + 0.03413897, + 0.016592203, + -0.033541102, + -0.009864184, + 0.0050673103, + 0.0041272887, + -0.0033125626, + -0.005155325, + 0.007516269, + 0.0062199007, + 0.014891936, + -3.6384162E-4, + 0.008498033, + -0.0010139281, + -0.011819417, + -0.030365616, + -0.022492949, + 0.01100164, + 0.01910232, + 0.0017380697, + -0.011915188, + -5.821539E-4, + 0.008923617, + -0.009318704, + -4.18617E-5, + 0.011070984, + 8.3591655E-4, + 0.0061658435, + 0.0029258768, + -0.0060320864, + -0.02954792, + -0.005154931, + -0.01999499, + 0.004820686, + 0.0046028933, + -8.648979E-4, + -0.008517553, + 0.006473919, + -0.005793899, + 0.01676178, + -0.011439182, + -8.0284063E-4, + -0.019321986, + 0.004889613, + 0.033091526, + -0.017057894, + -0.0048360773, + 0.0040996787, + -0.018922795, + -0.023730027, + 5.2104547E-4, + -0.010559607, + 0.011171536, + 0.001050956, + -0.0151630705, + 9.98841E-4, + 0.031479787, + 0.019373849, + -0.0088837845, + -0.013641553, + -0.018975308, + 0.02494683, + -0.02256571, + -0.015765974, + 0.014863751, + 0.036568645, + -0.010638545, + -0.007176561, + 0.0044213864, + 0.0059422017, + -0.026623085, + 0.0066864, + 0.0133530535, + 0.0042584664, + 0.002843118, + -0.007734598, + -0.027411498, + -0.00211632, + 0.0012656753, + -0.014526177, + -2.6498685E-4, + -0.0036084391, + 0.012574971, + -0.0071235257, + 0.022035372, + -0.012705756, + -0.0044616307, + 0.014067584, + 0.0042932346, + -0.01753823, + -0.006959815, + 0.0039817803, + -0.0018835987, + 0.030129002, + -0.024700204, + -0.012108221, + 0.013833917, + -0.0022586863, + -0.0100954175, + -0.020248562, + -0.0011914847, + 0.0011974237, + 0.03715564, + 0.0029548744, + -0.014816133, + 0.016881699, + -0.012209702, + 0.035634223, + -9.057891E-4, + 0.009699001, + -0.0030571294, + 0.030785747, + 0.014897589, + 0.023340875, + -0.034717724, + 0.0023099454, + -0.0068349075, + -0.014466814, + -0.025289606, + -0.031188725, + 0.0014096863, + 0.013340623, + 0.008837033, + -0.01537164, + -0.007618567, + 0.017716063, + -0.013425068, + -0.0034683505, + 0.003399704, + 0.0052416935, + -0.0087103285, + 0.0068979366, + -0.014234385, + -0.0041772937, + -0.021461157, + -0.021207504, + -0.0033354505, + -0.01401723, + 0.014290035, + -0.00411086, + -0.00496521, + -0.0040667555, + 0.010403061, + -0.001263346, + 0.014464894, + 0.019909387, + -0.011030166, + -0.049468283, + 4.961556E-4, + 0.0060375016, + -0.0020201316, + -0.0064861416, + 0.03352464, + 0.011635188, + 0.010650782, + -0.022961035, + -0.010225206, + -0.011496433, + -0.034388825, + -0.013885478, + -0.00450216, + -0.024562456, + -0.003609149, + -0.007550013, + 0.0014117254, + 0.018809397, + 0.008525623, + 0.0045815073, + 0.0120562725, + -0.0041191354, + -0.020187294, + 0.013951985, + 0.006890486, + 0.0035225493, + -0.0226404, + 0.043259516, + 0.019030834, + -0.0013707755, + 0.0123767685, + -0.010779288, + 0.021259118, + -0.0038667682, + 0.0111465035, + -0.021239785, + -0.013179424, + -0.038658027, + 0.011487168, + -0.015110461, + 0.020836867, + 2.782437E-4, + -0.0013262425, + -0.006041941, + 0.011582619, + 0.0033962803, + -9.953959E-4, + -0.008082989, + 0.008785584, + -0.008582682, + 0.021771727, + -0.0033868067, + 0.009396028, + -0.00948437, + 0.03174375, + 0.008744298, + -0.007635127, + 0.039077442, + 0.016708646, + 0.0059281415, + 0.009283357, + -0.016574075, + -0.022751112, + 0.014322878, + -0.006798691, + 0.014540807, + -0.04073563, + -0.009316469, + -0.0057750964, + -0.004880633, + 0.024972009, + 0.008049324, + 0.0035400568, + -0.0046669412, + -0.028829625, + 0.025790315, + -0.0024179318, + 0.006925994, + -0.018105038, + 0.017758342, + 0.008166629, + -0.014032381, + 0.017434662, + -0.0022363546, + 0.008777703, + 9.602468E-4, + 0.008787338, + 0.0060460637, + 0.007713779, + -0.0024665503, + -0.006905666, + 0.032755442, + 0.0066587892, + -0.021223, + -0.002440028, + -0.019183213, + 0.0075162663, + -1.16904266E-4, + 0.0016145057, + 0.023193372, + 0.007906151, + 0.012271845, + -0.021530671, + -0.01042718, + -0.02029678, + 0.008366659, + 0.023754666, + -0.017268067, + 0.012577404, + -0.021578057, + -0.0037417815, + 0.008324301, + 0.0070614144, + 0.024063993, + -0.0039829137, + -0.012650728, + 0.011874998, + -0.02648238, + 0.029222984, + 0.024790226, + 0.021786889, + 0.010715574, + -0.012060546, + -0.0166493, + 0.03029318, + 0.023194341, + 0.032158755, + 0.018454364, + -0.0015338709, + 0.0032937692, + -0.008252324, + -0.012105508, + 6.748274E-4, + 0.0016601065, + -0.010980513, + -0.023390228, + 0.011437133, + 0.017842751, + 0.012250337, + 8.825773E-4, + 0.009938703, + 0.04088401, + 0.009397112, + -0.03729276, + 0.008172819, + 0.0036750613, + -0.01533752, + 0.03388534, + 0.0035252545, + -0.0076701497, + -0.016228613, + -0.014503978, + 0.009772394, + 0.021645196, + 0.010601636, + -0.00112307, + 0.0110739, + -0.010595839, + -0.00604967, + -0.0030396306, + -0.014426446, + 0.0017651592, + -0.010431996, + -0.017315509, + -0.021285983, + -0.008870189, + -0.0011164874, + -0.0011881555, + 0.008226255, + 0.015953215, + 0.0043428075, + -0.0036714566, + 0.016244212, + 0.0133941285, + 0.009786753, + -0.005405771, + 0.027479308, + -0.015315368, + -0.026502267, + -0.019516082, + -0.009164329, + -0.004610408, + -0.018660074, + -0.013649034, + 0.042141587, + -0.014141147, + 0.019720262, + 0.007907212, + 0.01707403, + -0.029177574, + 0.014499271, + 0.0017855782, + -0.007074574, + -0.009641618, + -0.011984513, + -0.010843428, + 2.5776948E-4, + -0.02759669, + 0.022627661, + -7.8746735E-4, + 0.036594566, + -0.030707786, + 0.03417949, + 0.013657537, + 0.008641935, + 0.0129300635, + 0.018281015, + 0.011239623, + -0.0074767973, + -0.0071133873, + -0.008190275, + 0.004425653, + -0.013540662, + -0.014338458, + -0.013705225, + -0.003544093, + -0.021325232, + -0.0024714163, + -0.007881698, + 0.018096657, + -0.0041015977, + 0.0098219365, + -9.2696364E-4, + -0.008753157, + -0.0038018683, + -0.017124495, + 0.006784748, + 0.010427979, + -0.029981751, + 0.011264266, + -0.020836117, + 0.005647989, + -0.013278604, + -0.028605944, + -9.411981E-4, + -0.0076918565, + -0.016855372, + -0.006472187, + 0.005396267, + -0.004420505, + 0.0034103345, + 0.0012128295, + -0.028163373, + 0.00913971, + -0.015157594, + -0.014888675, + 0.011918967, + -9.499294E-4, + -0.013774407, + 0.026344592, + 0.012773127, + -0.028998947, + 0.011479044, + -2.2495874E-4, + -0.018984111, + -0.01730834, + -0.0069964626, + -0.008662837, + -0.019181324, + -0.017517198, + -0.0028000327, + -0.0037485324, + 0.04222048, + -0.016887369, + 0.015001484, + 0.0099270595, + 0.036114827, + 0.0016362382, + -0.023261754, + 0.024728337, + 0.007061439, + -0.012082304, + 0.026292466, + 0.020025186, + -0.012105273, + -0.021224136, + -0.016353728, + 0.013449362, + -0.015165778, + 0.02960258, + 0.03144518, + -0.037627645, + 0.003672896, + 0.0022383516, + -0.006798935, + 0.013298454, + -0.021721004, + 0.011538627, + 0.033932738, + 0.014698477, + -0.02050685, + -0.0028550064, + -0.02323428, + 0.01312739, + 0.0010031437, + 0.012954274, + 0.0018265451, + 0.00792593, + -0.022510178, + -0.01741825, + -0.033728078, + -0.02233203, + -0.01669025, + -0.008377875, + -0.010198904, + -0.015467679, + -5.371237E-4, + 0.007753878, + -0.011016927, + 0.012988356, + 0.009941688, + 0.018816462, + -0.007120463, + -0.023974009, + -0.028713696, + 0.02274214, + -0.026486875, + -0.013535945, + 0.022557894, + 0.011453291, + 0.0055051185, + -0.013942104, + 4.664523E-4, + -0.009397605, + -0.025808677, + -0.008808854, + 0.029993849, + 0.011132129, + -0.012625228, + -0.01265341, + -0.012998396, + -0.001890021, + -0.013064033, + -0.002942419, + -1.9953784E-4, + -0.016400348, + 0.03469073, + -0.0010787115, + 0.018100422, + -0.0074328086, + -0.023004413, + 0.0035967052, + -0.013377031, + -0.0024414929, + -0.013841679, + -7.893139E-5, + 0.009615443, + 0.018663187, + 0.024735235, + 0.030750658, + -0.00884851, + 0.00487878, + 0.017421229, + -0.013909684, + -0.0014785747, + -0.0026916105, + 0.0066805477, + 1.4905163E-4, + -0.0021886698, + -0.0020396637, + 0.0061527924, + 0.012259393, + -0.0061793714, + 0.00537765, + 0.015530871, + 0.025067564, + 0.02849484, + -0.032676697, + 0.003743423, + 0.02065007, + 0.0058199456, + -0.016626546, + 0.009047555, + 0.006846661, + -0.0046498985, + 0.0126805045, + 0.0016418906, + -0.025449684, + -0.004798381, + 0.010428046, + 0.009898885, + -0.022295931, + 0.0021876816, + -0.0072079515, + -0.005443184, + -0.011799137, + -0.028400552, + -0.01409326, + -0.0042281565, + 0.012948177, + -0.0013298189, + -0.011738285, + 0.0152938925, + -0.01932364, + 0.016041677, + -0.0094842985, + -0.0034417917, + -0.016771667, + -0.009655743, + 0.027737811, + -0.018933725, + -0.017038506, + -0.01791086, + 0.0025141297, + 0.029437367, + 0.0022802835, + 0.01126973, + 0.026807107, + 0.021853926, + 0.012932364, + -0.0011445201, + -0.0029129267, + -0.0024177725, + 0.0020813213, + -0.0096575245, + -0.0038439957, + -0.018498065, + 0.0025367693, + -0.0039207092, + -0.01500186, + 0.009235359, + 0.0045122704, + 0.0038591481, + -0.003362268, + -0.006789003, + 0.006507528, + -0.008706672, + -0.012056372, + 0.0016453161, + 0.0052719605, + -0.03295519, + 0.0096695535, + -0.008244244, + 0.007377374, + -0.012549827, + 0.01833947, + 0.0023962636, + 0.008677704, + -0.0034002245, + 0.014874118, + 0.012920506, + -0.021942602, + -0.004376064, + 0.014091041, + -0.008184249, + 0.017822137, + 0.0023087806, + -0.0031567472, + -0.012454917, + 0.012561784, + -0.0013310551, + -0.008589642, + -0.017749589, + -0.004534988, + 0.01257367, + -0.0035283694, + -0.013701655, + 0.021070218, + 0.003817414, + 0.0035594986, + -0.010637673, + 0.0031592424, + -0.018965041, + -0.021367509, + 0.018435707, + -9.874685E-4, + 0.022519937, + 0.007013593, + 0.003744274, + 0.0121222725, + 0.034133326, + 0.0072688325, + -0.0081606135, + 0.022132006, + -0.028575798, + -0.028023252, + -0.013404733, + 0.009545618, + 0.024839947, + -0.037910253, + -0.010118943, + 0.011237666, + 0.0061478065, + 0.019884508, + 0.0077274395, + -0.006949228, + -0.030038726, + 0.00569911, + -0.010847228, + 0.0043833535, + -0.0010378413, + 0.005352772, + 0.013296404, + 0.0053021256, + 0.02498139, + 0.010904982, + -0.020771433, + 0.011508468, + 0.025028504, + 0.0048869713, + 0.012882109, + 0.0027823055, + -0.02303866, + -2.957287E-4, + -0.0067958217, + 0.012843812, + -0.025632527, + -0.0021503067, + 0.0051820404, + 0.01123508, + 0.013183518, + -0.027822202, + 0.00706948, + 0.008639495, + 0.011044704, + 0.008481617, + -0.007971292, + -0.009532908, + 0.01149697, + -0.0071996264, + -0.023289178, + -0.011071063, + 0.024310343, + -0.012835946, + -0.0055033895, + 0.01627331, + 0.016967641, + 0.0041688904, + 0.016694762, + 0.0013139136, + -0.0032001417, + -5.197214E-4, + 0.021128004, + 0.0035673445, + 0.006153894, + 0.025174947, + -0.01376197, + 0.027293138, + 0.005036732, + -0.0063971113, + -0.030389579, + 0.0055426247, + -0.013575646, + 0.015158196, + 0.0069096307, + -0.025405614, + -0.0047161034, + -0.011002016, + 0.0058573396, + 2.6336243E-6, + 0.0084819505, + 0.017183421, + -0.0056198593, + 0.018145686, + 0.022903023, + 0.026097117, + -0.0010133747, + 0.011900654, + 0.0046149376, + 0.0042043375, + 6.4784527E-4, + 0.002498056, + 0.010455987, + -0.026687872, + -0.026151177, + -0.00127063, + -0.010516718, + -0.009526589, + 0.02743548, + -0.014424901, + 0.022789024, + 0.010167924, + 0.0019212718, + 0.03341714, + 0.018210327, + -0.0044250875, + -0.013569532, + 0.008303125, + 0.0072352393, + 0.017383903, + -0.0054946793, + 0.003590111, + 0.014860806, + -0.022891833, + -0.022275362, + 0.0044582984, + -0.027284263, + 0.027869446, + 0.0041021705, + -0.031769525, + 0.011990245, + -0.0027302818, + -0.010029905, + -0.019940116, + -5.4316036E-4, + 0.008279368, + -0.014213968, + -0.019715577, + -0.034479056, + 0.020423295, + 0.028782232, + -0.01301077, + 0.0067634606, + -0.011427435, + 0.0032538266, + -0.0051704757, + -0.010750466, + 0.009675361, + 0.011077853, + 0.013428664, + 0.009302978, + -0.004193269, + -0.003523655, + 0.008620575, + -0.016007274, + 0.011076802, + 0.0105947135, + 2.1578434E-4, + 0.028101888, + 0.0033366918, + 0.007096822, + -0.013965374, + 0.0075789304, + -6.9974625E-4, + -0.023142954, + -0.001372721, + -0.030067995, + 0.021047153, + -0.008581058, + 0.016055297, + 0.01643645, + 0.0055493927, + -0.022065112, + -0.025749704, + 0.009474069, + -0.003790756, + -0.0021793114, + 0.0044984473, + -0.010716741, + -0.0015516931, + -1.0131217E-4, + -0.010771755, + 0.013656606, + 0.010606415, + -1.3332865E-5, + -0.0058723195, + -0.016723597, + -4.315973E-4, + -0.008714786, + 0.0064586494, + 0.011521313, + -0.0072548427, + -0.010264226, + -0.0036104387, + -0.006164262, + -0.010297573, + -0.0049773785, + -0.007751842, + 0.024651712, + -8.9762843E-4, + 0.002745041, + -0.0039082696, + -7.393533E-4, + 0.009944082, + -0.0047381637, + -0.003001221, + 0.012071127, + 0.016103156, + 0.01079366, + 0.020821404, + -0.0040279496, + 0.011378727, + -0.0010323199, + 0.00785348, + -0.013666944, + -0.004984267, + -0.010742796, + 1.5766316E-5, + -0.014277822, + -0.012626422, + -0.004958636, + -0.014241403, + 0.002312857, + -0.021615101, + -0.004071581, + -0.012772175, + 0.015080986, + -0.010132268, + -0.004390749, + 0.03810827, + 0.014282488, + 0.0016418697, + -0.016086094, + -0.034994736, + 0.012655825, + -0.0053423145, + 0.0060434863, + -0.009027306, + -0.0120429015, + -0.01812783, + -0.002950052, + 0.010213465, + -0.0051555117, + -0.011570892, + -0.02499866, + -0.015585989, + -0.022261703, + 0.020722521, + -5.9581606E-4, + -0.021874772, + 0.010160788, + 0.010165662, + -0.0018076925, + -0.0050651077, + -0.0070665907, + 0.007414314, + -0.004366226, + 0.0028883156, + -0.0036982114, + -0.0072341273, + -0.017252458, + -0.0056454996, + -0.012801512, + -0.008694934, + 0.0057298606, + 0.0143657075, + -0.009629262, + 0.013337259, + -0.0093238205, + -0.032235768, + -0.0028278877, + -0.014700906, + -0.0010076979, + 2.6854852E-4, + 0.015442212, + -0.0023028268, + -0.011317814, + 0.0130156595, + 0.00813781, + 0.03338874, + 0.036879316, + -0.018730698, + -6.0435355E-4, + 0.0044878633, + 0.010070818, + 0.017200187, + -0.03750137, + 0.02529355, + -0.012811171, + 0.003346092, + 0.007926749, + -0.0034368257, + -0.0053182156, + 0.020134654, + 0.026709208, + 0.002301982, + -0.007860805, + 0.011511192, + -0.008081479, + 1.6416908E-4, + 0.017256642, + 0.011537184, + -0.0021435823, + -0.0044874, + -0.015143185, + 0.016857281, + -0.004210267, + -0.0021290442, + 0.013107926, + 0.0036506816, + -0.014873676, + 0.010459454, + 0.0140962, + 0.01973105, + 0.007948135, + 0.0069314204, + -0.009220883, + -0.0016068364, + 0.008098684, + -0.016551318, + 0.0089901285, + 0.004398864, + 0.006620361, + -0.019269459, + -3.6772853E-4, + 0.013565176, + 0.0040763305, + 0.0080596795, + 0.0053337356, + -0.003600264, + -0.013524583, + -0.015794106, + 1.2230652E-4, + -0.02024853, + 0.016682757, + 0.029546306, + -0.018961241, + 0.032332785, + 0.014096698, + -0.029246533, + 0.0011266717, + -0.021694161, + -0.004846785, + 0.014355688, + 0.028957643, + 0.0072929035, + -0.020430349, + -0.008991574, + -0.016063802, + -0.0125069795, + 0.021833653, + -0.021542246, + -0.015234663, + -0.015308524, + -0.023068227, + 0.022905523, + -0.0039929016, + -0.010563965, + -0.008659842, + 0.0071586883, + 0.016771784, + 0.008026664, + 0.0076964847, + 0.015725201, + -0.0076455977, + 0.016116098, + -0.001964145, + 0.01494865, + 0.024501806, + 0.02858528, + 0.0029499293, + -0.0065130023, + -0.02144665, + 0.0015145565, + 0.012248185, + 0.03223142, + 0.0011016072, + -0.009212012, + 8.7935047E-4, + -0.019952314, + 0.027881943, + -0.03260574, + 0.0147399185, + -0.005529055, + -0.008733343, + 0.014723314, + -0.008108288, + 0.016693305, + -0.0075669657, + -0.032158006, + 0.0072958255, + -0.016275384, + 0.002171059, + -0.01871306, + -0.003975333, + 0.03803006, + 0.0024050819, + 0.015316398, + -1.6907055E-5, + -0.022238292, + 0.014781106, + -0.003881284, + -0.0069538783, + 0.009722428, + -0.0036687653, + 0.008175508, + 0.007078085, + -0.020111166, + -0.008784797, + 0.022671636, + 9.6272345E-4, + -0.026869891, + 0.012412556, + -6.450617E-4, + 0.009743189, + 0.031122444, + 0.0040295846, + 0.0055089663, + 0.018997576, + -0.022600463, + 0.0018634573, + 0.011043301, + 0.00783283, + 0.045989476, + -0.0052424157, + -0.007682987, + 3.2498984E-4, + -0.054084577, + -0.03032793, + -0.009762754, + 0.009133257, + -0.0013011227, + 0.015484138, + 0.013659499, + -0.020025874, + 0.0111401025, + 0.0038096244, + -0.022921436, + 0.027269162, + 0.0027841837, + 0.019234534, + -0.0163722, + 0.012227656, + 0.0023210591, + 0.02490379, + 0.0129579855, + 0.011614417, + 0.0017308932, + -0.01784906, + -0.020653361, + 0.0028519318, + -0.0035857423, + -0.010581888, + -4.959059E-4, + 0.004669192, + -0.011314086, + 0.021551011, + 0.017231416, + -0.03876417, + 0.011432742, + 0.013049801, + -0.00399438, + 0.0055746105, + 0.007232041, + 0.016414426, + 0.009846692, + -0.007431266, + 0.01709184, + 0.009355647, + 0.010551422, + 0.025022408, + -0.00617165, + -0.012104188, + 0.010328857, + -0.011804489, + 0.0017157953, + -0.015097541, + 0.022540946, + -0.010401304, + 0.0018382545, + -0.03424792, + 0.0073795277, + 0.008894009, + -0.018342048, + 0.021508524, + -0.006529633, + -0.0059932433, + 0.022184392, + 0.010492883, + -0.0026489813, + 0.021149104, + 0.03516832, + 0.017866414, + 0.014886665, + 0.008922831, + -0.016051596, + 0.01602751, + -0.03504389, + -0.04191533, + 0.02248818, + 0.013228688, + 0.017976495, + -0.010031465, + 0.006016923, + 0.01043185, + -0.01977128, + -0.010765898, + -0.013356821, + 0.018990355, + 0.0054895193, + -0.029620288, + 0.0015065519, + -0.031346336, + 0.015436457, + -0.02285298, + -5.304028E-4, + 0.004891357, + 0.019909432, + 0.0074470732, + -0.0062255277, + 0.008940899, + -0.01677008, + 0.02703376, + 0.0033044582, + 0.01825945, + -0.012370837, + -0.002303194, + 0.012592093, + 0.004638566, + -0.014660368, + 0.0016451873, + 0.0017728728, + 0.030987402, + -0.011139168, + 8.9286827E-4, + -0.0065598967, + -0.019214196, + -0.032093506, + -0.0075159785, + 0.0052454504, + 0.016468203, + -0.023405164, + 0.00750553, + 0.011715373, + 0.0145548005, + -0.011119095, + -0.011545749, + 0.017548393, + 0.009945862, + 0.01252532, + 0.017344309, + -0.019059306, + 0.0061464156, + -0.016673774, + -0.011412738, + 0.0023410462, + -0.0018186772, + 0.017485263, + -0.0042604576, + -0.010643048, + 0.008543691, + 0.0062992866, + 0.0018962193, + 0.004247367, + 0.0068941885, + -0.027099462, + 0.013612159, + 0.0029324675, + 0.0086843865, + -0.011005743, + -0.011614834, + -0.0077913776, + -0.019832324, + 0.016193466, + 0.012105159, + 0.009377664, + 0.009754956, + -0.0041199606, + -0.023951145, + -0.01622872, + -0.028941603, + 0.022843603, + 0.015424906, + -0.02114155, + 0.028419696, + 1.04166254E-4, + 0.009954623, + 0.007925237, + -0.03050198, + -0.036628846, + -0.0010907439, + 0.04169034, + 0.034329902, + 0.004265537, + -0.009580737, + 0.0016579505, + 0.020721562, + 0.0029101416, + 0.017131357, + -0.020426905, + -0.022306908, + -0.00491528, + 0.004796044, + -0.0031488948, + 0.007385579, + -0.028617145, + -0.005664856, + -0.008317257, + -0.0044671283, + 0.0011899661, + 0.0010849277, + 0.027668765, + 0.0014312563, + 0.026529701, + 0.013573321, + -0.0037677852, + -6.806042E-4, + -0.014252994, + -0.0025441088, + 0.0010730382, + 0.01129258, + -0.006536926, + 0.0068166843, + -0.008083238, + -0.009779471, + 0.022399034, + -0.0044996506, + -0.016340204, + 0.00763874, + 0.02193502, + 4.0225842E-4, + -0.009213915, + 0.02456695, + -0.011512656, + 0.0013676658, + 0.018201746, + -0.0028214843, + 0.002308466, + -0.009670538, + -0.017032364, + -0.004080795, + -0.005022624, + 0.00991221, + 0.040613066, + 0.00805182, + -0.008579919, + 0.0052329036, + -0.008054083, + 0.030539343, + -0.0044912286, + -0.008961007, + -0.015395099, + 0.01401497, + -0.01295817, + 0.007055523, + 0.013020081, + -0.025154518, + -0.0061227516, + 0.005140436, + 0.0028560383, + 0.029812144, + -0.024693167, + 0.0061895833, + 0.0031103455, + 0.0021828727, + 2.6357759E-5, + 0.011340835, + 0.009064298, + -0.019352479, + -0.027467825, + 0.012588493, + -0.019955616, + -0.002115837, + 0.032800976, + -0.006389016, + 0.010280982, + 0.039669856, + -0.011134234, + -0.0032919596, + 0.012718945, + -0.010577128, + 0.002498729, + 0.014588171, + -0.005276331, + -0.0061676144, + 0.023133336, + -0.014916374, + 1.8669918E-5, + 0.00832071, + 0.0038400206, + -0.019682014, + -0.010174485, + -0.033315614, + -0.010353935, + -0.013377119, + 0.0057977308, + -0.025170028, + 0.0059827818, + -0.014386191, + -0.013130077, + 3.3800423E-4, + -0.004814887, + 0.0048694103, + -0.027277993, + -0.0037512698, + -0.025933165, + 0.029825358, + 0.023075707, + -0.023077719, + 0.008906292, + 0.0043455055, + -0.014608723, + 0.022816444, + 0.015130243, + -0.03142428, + 0.0072601656, + 0.043956645, + 0.01953651, + 0.0028478696, + -0.012238338, + 0.035921525, + -0.017097093, + 0.034536365, + 0.009444037, + 0.029902682, + 7.224625E-4, + -0.001974222, + 7.635926E-4, + -0.012170678, + -0.0060799066, + 0.0032932335, + 0.032383855, + 0.008369867, + 0.026749773, + -0.032399956, + 0.022290459, + 0.018057253, + -0.009155944, + -0.004598802, + 1.1760582E-4, + 0.0032937145, + -0.04922589, + 0.02540914, + 0.012234529, + 0.03507169, + 0.0099433465, + -0.016176792, + 0.0042108395, + -0.0033021984, + -0.007412147, + 0.030770868, + 0.006704038, + -0.019040551, + -0.029264584, + 0.010284052, + -2.1617119E-4, + 0.010276443, + -0.013179731, + -0.008248481, + -0.009475343, + -0.023426183, + -0.023586204, + 0.011344002, + -0.029061811, + 0.016600458, + -0.0047929715, + -0.004188275, + 0.029093353, + 0.019893695, + -0.009325892, + 0.006292355, + -0.00135751, + 0.02070027, + 0.010850322, + 0.012399184, + 0.0031325861, + -0.018466046, + -0.025558688, + 0.00203439, + -0.014173881, + 0.015721193, + -0.0071482626, + -0.01974578, + 0.01785981, + -0.013160813, + -0.018244527, + 0.0037762057, + -0.023871845, + 0.009351953, + -0.0025039343, + 0.0068201046, + -0.0069896826, + -0.019397242, + -0.0039360337, + -0.016568786, + 0.018390024, + -0.008292327, + 0.00359655, + -0.004764164, + 0.011101571, + 0.004448469, + -0.008450734, + -0.015376981, + 0.013217214, + -0.015673561, + -0.01928542, + -0.017341921, + -0.01107226, + 0.011356877, + 0.044294395, + -0.012932753, + -0.015604058, + 0.024432395, + -0.010169814, + 0.017664954, + 0.002063313, + -0.004879233, + -0.027400322, + -0.026932959, + 0.01950068, + -0.015976725, + 0.008956535, + -0.007655989, + -0.020350466, + 0.009713523, + -0.0065785944, + -0.007697739, + -0.031797357, + 0.056306086, + 0.009949581, + 0.0017791593, + -0.010794205, + -0.0046502333, + 0.010924822, + 0.01321812, + 0.024774233, + -0.017665355, + 0.03094666, + 0.01193203, + -0.00910673, + -0.016256955, + 0.014007331, + 0.00132193, + -0.0036302914, + 0.0064985394, + -0.016458644, + -0.021462008, + -0.020563213, + -0.029855628, + -0.0024747525, + 0.01644927, + 0.006243174, + 0.0069188974, + 0.0071335398, + 0.010521364, + 0.01691471, + 0.017159944, + 0.0044422513, + -0.011087562, + -0.014864442, + -0.014286639, + -0.018290536, + -0.0012953724, + -0.0067080855, + 0.006707099, + 0.0046162065, + 0.008667971, + -0.006957738, + -0.020579256, + 0.023823064, + 0.0061798682, + -0.014907226, + 0.011088541, + 0.0073067658, + -0.009505252, + 0.01333968, + 0.0057433737, + -0.0144383125, + 0.014504442, + 0.009223873, + 0.01270098, + -0.011153818, + 0.014707501, + -0.0013883498, + -0.026818315, + -0.023538087, + -0.019724447, + -6.6659064E-4, + 0.031069404, + -0.017781582, + 0.0073731137, + -0.010774622, + 0.0120886965, + -0.016598083, + -0.014634082, + 0.014858194, + 0.02403847, + -0.014377467, + -0.009975704, + -0.011540811, + 0.0061219116, + -0.010028104, + 0.018092541, + -0.016470788, + 0.0013042565, + -6.086614E-4, + 0.0016114304, + -0.021043418, + -0.004839844, + -0.0062894514, + -0.015836924, + -0.0066819023, + -0.0016759624, + 0.014890111, + 0.01981106, + 0.0018395651, + -0.019317197, + -0.0038733815, + -7.4735435E-4, + 0.0041307365, + 0.021751715, + -0.016352005, + -0.028980777, + 0.012978255, + 0.018588012, + 0.0033974226, + 0.011343516, + -0.010097551, + -0.0065676025, + -0.009585586, + -0.02760276, + 0.0097009875, + -0.0025923853, + 0.0023622692, + 0.002388491, + 9.7484264E-4, + 0.017565116, + -0.014911489, + -0.0026213448, + -0.007916425, + -0.024679173, + -0.002138944, + -0.024633648, + -0.024820676, + -0.01568128, + 0.013480178, + 0.02840771, + -0.011215691, + -3.6962378E-5, + -0.023331203, + -0.010953697, + -0.016890924, + 0.0013517578, + 0.017303945, + 0.017034212, + -0.04374615, + 0.02615346, + -0.009009557, + 0.004733087, + -0.022845399, + 0.013076994, + 0.0038562077, + -0.030691408, + -0.005853101, + 0.040267944, + 0.013337384, + -0.015002873, + -0.0031657873, + -0.020708561, + -0.012973008, + -0.01784507, + -0.008508645, + -0.007588504, + 0.010346379, + -0.018446561, + 0.0056725224, + 0.0059483815, + 0.013911063, + -0.007274321, + 0.019282205, + -0.013178587, + -9.491568E-4, + 0.009316071, + -0.00751084, + 0.025886072, + -0.005325062, + -0.006748658, + -0.011211487, + 0.0011863427, + 0.0023044937, + -0.007293623, + -0.0135882385, + 0.0018676387, + 0.0046538203, + -0.0067024697, + -0.004908316, + 0.0075733126, + -0.035914764, + -0.013013568, + 0.007965158, + 0.016365098, + -0.012677632, + -0.005812498, + 0.0027545823, + 0.028004505, + -0.017924672, + 0.0079468405, + -0.0045409296, + 0.017543893, + 0.026046745, + -0.028376998, + 0.033409033, + 0.033533394, + -0.008760755, + 0.017427223, + 0.007973736, + -0.013634993, + 0.0038418514, + -0.017214239, + 0.01296011, + -0.0053487695, + 0.011096134, + -0.025666755, + -0.0043357816, + 0.0025185703, + -0.00512266, + -0.021376528, + 0.013909964, + 0.0013786876, + -0.016536336, + 0.026054122, + 0.004258764, + -0.012785388, + 0.018193074, + -0.029427597, + -0.01687605, + 0.013088332, + -0.0017507679, + 0.0034151825, + -0.02068863, + -0.021697488, + -0.011385746, + -0.021122731, + 0.0037540735, + -0.006544984, + 0.042128798, + 0.028430633, + -0.0022800372, + 0.017977495, + 0.0037178188, + 0.0026105763, + -0.006313221, + 6.219723E-4, + -0.013498776, + 0.009411628, + 0.012585632, + 0.026214534, + 2.9262458E-4, + -0.005518557, + 0.013139683, + -0.02125309, + -0.002116554, + -0.0024707196, + -0.036610592, + 0.010100236, + -0.019574823, + 0.0068829944, + 0.0016896301, + 5.889703E-4, + 0.0062337285, + -0.024107272, + -0.01882413, + 0.008393643, + 0.00500892, + -0.018574774, + -0.008921082, + 0.01881404, + 1.8778283E-4, + 0.02704277, + -0.015420039, + 0.01750858, + 0.0075675617, + 0.014025251, + 0.007015296, + 0.021107221, + 0.01850943, + 0.00583541, + -0.004643505, + -0.022479938, + -0.005052247, + -0.016529623, + -0.0041260906, + -0.023772774, + 0.015790422, + 0.020923927, + -0.015211666, + -0.00797336, + 0.008074648, + 0.015570295, + 0.020393448, + 0.0012466067, + -0.004971861, + 0.012316877, + -0.016606981, + 0.02875094, + 0.01166548, + -0.026472172, + -0.02136295, + 0.011865821, + -0.0011484434, + -0.032743957, + 0.002185857, + -0.001793349, + -0.0024639633, + 0.015945187, + 0.010284451, + 0.006541881, + -0.02431323, + -0.020307923, + 0.014817351, + 0.011419699, + 0.026197582, + -0.011720226, + 0.011050992, + -0.008666806, + 0.025474792, + 0.015611012, + -0.0070931995, + 0.0067172423, + -0.009625129, + -0.01044432, + -0.0042460063, + 0.014634657, + 8.183303E-4, + 0.01097942, + 0.0134705, + -0.002600708, + 0.0051646484, + -0.006876406, + 0.005890037, + -0.03107757, + -0.0075065335, + 0.034197412, + -0.0012028901, + -0.0028310674, + -3.8042612E-4, + -0.014331112, + -0.0021156485, + -0.008429674, + 0.0049471087, + -0.025929354, + 0.02367865, + 0.022999816, + -0.0043731467, + -0.015474756, + -0.0070529957, + 0.007866727, + -0.017115146, + 0.0031570666, + 0.0050632274, + 0.009622772, + -0.01097641, + -0.007730995, + 0.03755848, + -0.015893487, + 0.016280225, + -0.0066199247, + 0.001818146, + 0.011832133, + -0.020615341, + -0.016520295, + -0.010654572, + -0.020360664, + 0.010017425 ], - "paletteEmbedding": [ - 0.045787025, 0.05060971, -0.04034703, 0.004221373, -0.015688762, - -0.044530455, 0.05063904, 0.03253484, 0.023928188, -0.03736058, - 0.030899841, 0.025382083, -0.01932237, 0.019780463, -0.022715608, - 0.04999306, -0.015196271, -0.042257868, 0.0035708249, -0.009527034, - 0.009460909, -0.026771035, 0.059982803, 0.0078121508, -0.005135156, - -0.0013871357, -0.044732325, -0.0040098066, -0.040929813, 0.011549173, - -0.027450753, 0.032700554, -0.018946704, 0.093252584, -0.005701707, - 0.0027626313, 0.028667528, -0.036496162, 0.015699914, -0.05464096, - 0.03450456, 0.018960068, -0.009961392, -0.0049930546, -0.010475845, - -0.010422208, -0.02478051, -0.034898937, -0.013529738, -0.016225863, - -0.012353997, -0.026604874, -0.064610615, 0.042141706, 0.006128202, - 0.0053823157, 0.024664164, -0.039661497, 0.015558991, -0.010177339, - -0.052643135, 0.0073513654, -0.0038142828, -0.016490312, -0.03202034, - 0.023048569, -0.013356321, 0.016748598, -0.006882614, 0.016854469, - 0.0129813645, 0.0098234825, 0.0016647122, -0.0077536576, -0.01877064, - 0.024031928, 0.0121279685, -0.0054962523, 0.03909857, 0.013538158, - -0.03545216, -0.020184148, 0.008940456, -0.009766014, 0.00792572, - -0.025336793, -0.0046114814, 0.0070234057, -0.015096127, -0.038401686, - 0.02838891, -0.0349288, -0.021412833, -0.049085576, -0.037020706, - 0.034942385, -0.06354395, -0.01550173, 0.022842187, -0.044591974, - -0.041896358, 0.0015955884, 0.016564753, -0.00916426, -0.030041607, - -0.014989206, -0.019444615, -0.020330228, -0.013484355, 0.03720362, - 0.06656364, 0.0016846242, -0.074957676, -0.03877057, -0.008535939, - -5.4224435e-4, -0.04519732, 0.0019524649, 0.020310082, 0.015032568, - 0.043645624, 0.011924038, 0.0065468717, 0.008399788, -0.03169113, - 0.0015665062, -0.0031858946, 0.026190402, 0.019594077, -0.011378194, - 0.061979465, -0.0048538106, 0.018157344, 0.027071971, 0.047998577, - 0.027884921, 0.009016748, 0.002683874, 0.011221685, -0.018265473, - 0.016011696, 0.0030890661, 0.027837204, 0.0011745486, -0.0012002478, - 0.040251024, 0.04219533, -0.030302592, -0.038484942, -0.014696108, - -0.044860784, 0.027436914, -0.073148854, -0.009171783, 0.01554747, - 0.0034456355, -0.010866861, -0.011091595, -0.025531814, 0.0039727124, - -0.026289456, 0.02222718, -0.06659697, -0.029680016, 0.040527627, - 0.020117484, 0.023613967, 0.05538811, -5.622672e-4, -0.026055263, - 0.034591515, 0.014862474, -0.04297906, 0.027819185, -0.047321137, - -0.02061976, -0.021794358, 0.044599622, -0.007739827, -0.0054751686, - -0.034457862, -0.015665479, 0.072459385, 0.0023021079, -0.031036412, - -0.034818687, -0.0011032849, 0.0015756018, 0.029864864, -0.048253532, - -0.029351434, 0.0012917498, -0.017838594, -0.02387284, -0.027757337, - -0.027826305, -0.007995794, -0.015923075, 0.01630014, 0.011569636, - 0.012890023, 0.041299842, 0.0062694005, 0.0029354093, -0.008005429, - -0.024073537, -0.031641584, 0.011055879, -0.024458043, 0.037364274, - 0.011223644, 0.027180245, -0.007486481, 0.009506282, -0.085939966, - 0.07540729, -0.018491842, 0.01305424, 0.025173303, 0.0013676293, - -0.009191969, -0.05063496, 0.0055328137, 0.02098067, -0.042311944, - 0.005652513, 0.043009616, 0.019575886, 0.021741489, -0.028059952, - 0.024085147, 0.00423515, 0.0042674653, 0.03883219, -0.030637937, - 0.023097388, -0.032655843, 0.01946005, 0.035619576, -0.008641341, - -0.043636587, 0.048987072, -0.0060116528, 0.019324072, 0.009878323, - -0.045274585, 0.002415526, 0.028780436, 0.020228455, 0.018570855, - -0.0015950871, 0.066502295, -0.046372905, -0.008664205, 0.0044164914, - 0.03932881, -0.0074747237, -0.010509002, 0.022792254, -0.005137874, - 0.07407336, -0.024986625, 0.013244511, 0.004287353, -0.022218438, - 0.010077987, 0.03909245, -0.03700761, -0.043059688, -0.090301394, - 0.030041631, 0.018105995, -0.020570718, 0.0392362, -1.15962925e-4, - -0.066713415, -0.008462304, 0.010211438, -0.043609604, 0.0010377751, - -0.022529118, 0.04273735, -0.018300414, -0.022637075, 0.014723162, - -0.007719976, 0.024472743, -0.031588774, -0.033249527, 0.0056818034, - 0.0403572, 0.044709437, -0.034513105, -0.019938774, -0.04227329, - -0.05900024, 0.0555306, 0.045389395, -0.004624758, 0.061250366, - 0.057479214, 0.017330587, -0.043615635, -0.03344706, -0.021637298, - -0.003911986, 0.025949003, -0.0141863795, -0.013077018, 0.030616881, - -0.023883877, 0.00971214, 0.008338727, -0.009967623, 0.0025050126, - -0.04000695, 0.04484365, 0.012960225, 0.006382484, -0.03997447, - 0.016714191, -0.0058026556, 0.05333324, -0.017755512, 0.0032813216, - 0.022059299, 0.006924965, 0.025044462, -0.034149375, -0.050607424, - 0.0021627843, -0.024697127, 0.0167306, 0.009992519, 0.032769438, - -0.0014901366, -0.028105099, -0.07567949, 0.009874093, 0.041090943, - -0.03303012, 0.03239363, 0.027350534, 0.028341243, -0.007517184, - 0.03017992, -0.025968276, -0.009457161, -0.021479912, -0.03676099, - -0.05210198, 0.0050321864, -0.054754972, -0.01764054, 0.027862774, - -0.033581775, 0.019288674, 0.0015975115, 0.020518832, -0.02079892, - 0.013987014, -0.002298927, 0.018146917, -0.007211128, -0.0069996775, - 0.041978758, 8.0625335e-4, -0.0063594715, -0.03681518, -0.01164715, - 0.01067272, 0.0061010774, -0.05420839, 0.048618283, 0.050966445, - 0.03591747, 0.015945744, 0.012324708, 0.05673838, 0.033516083, - 0.02780222, -0.029675681, -0.03065405, -0.014958542, -0.009994119, - 0.008517275, -0.04505576, 0.028144, 0.05222613, 0.049734857, - 0.0057948777, -0.045567855, -0.03139369, -0.022926265, 0.009904361, - 0.008523279, -0.038888972, -0.013484886, -0.05181328, 0.025211606, - -0.036833365, -0.0017466932, -0.028097982, -0.048471354, -0.017950827, - -0.028722797, -0.022357719, 0.01949565, 0.023361389, 0.07094791, - 0.063187875, -0.052238476, 0.0059919604, 0.024379501, -0.0047656465, - -0.022773944, -0.004053893, -0.05562777, 0.035068706, -0.047791995, - -0.031208638, -0.011376333, 0.019012699, -0.003074194, 0.019056097, - 0.0067759384, 0.002324663, -0.0049916124, -0.017304221, -0.017410647, - 0.011238408, 0.011743171, 0.019528361, 0.009426821, -6.6400634e-4, - 0.019028286, -0.027501492, 0.006853169, 0.055436503, 0.028417703, - 0.013026676, -0.014785276, -0.0141136525, -0.020203454, -0.0440635, - -0.032869004, 0.012867465, -0.0027707804, -0.012228667, -0.00888512, - -0.024594441, -0.031660624, 0.045954205, 0.0054941373, -0.012702274, - -0.002354819, -0.0064751925, -0.024229823, -0.0053095864, -0.02857085, - 0.035710633, 0.02318579, -0.00834004, -0.053010717, 0.0068517025, - 0.07690658, 0.006163481, -2.1601516e-4, 0.01829232, 0.029407322, - 0.005492531, 0.0020934886, 0.004118294, -0.019215943, 0.012819608, - 0.009139055, 0.08205162, 0.0023457035, 0.035907194, -0.008948125, - -0.015632968, 0.028744498, -0.067520395, -0.02704575, -0.029105557, - 0.023410818, 0.012699162, -0.014930717, -0.028871387, 0.0069246287, - -0.053343415, -0.04235856, 0.017345713, -0.03277343, 0.023214903, - -0.0026121677, -0.07588605, -0.021101544, 0.009524132, -0.043599054, - 0.0030540237, -0.010951629, -0.02643994, 0.023556525, -0.037915442, - 0.01137465, 0.044951115, 0.03397272, 0.009618296, -0.010649246, - -0.05115996, 0.0030825653, 0.014080875, 0.023172274, 0.026666652, - -0.012144188, 0.041725077, -0.047711026, -0.026555974, -0.028914757, - 0.023356559, 0.0035991042, 0.005120009, 1.2098076e-4, -0.02319344, - 0.012705571, 0.022188758, -0.039574295, -0.001576129, -0.039115302, - 0.009870091, 0.043769233, -0.012097876, 7.869975e-5, 0.012680778, - -0.0049414905, -0.0046002767, -0.055652533, -0.021158213, 0.026767027, - 0.007583595, 0.027909355, -0.0074712387, -0.043940537, -0.040239446, - -0.041843295, -0.01963904, -0.023320062, 0.027128957, 0.008166449, - -0.036307145, 0.02473542, 0.023566594, -0.038375814, 0.0072936956, - 0.060305927, 0.013049594, -0.032585375, -0.04863245, 0.01201489, - -0.0010186717, 5.6062604e-4, -0.0025291194, 0.0021519507, -0.05052158, - 0.04216358, 0.03085122, 0.033028495, 0.058962714, -0.035876114, - -0.03891807, 0.053735062, 0.044242736, -0.027891854, -0.0075102686, - -0.0070987083, 0.04276538, 0.011937505, -0.0097513255, 0.008477683, - -0.03345048, -0.04321495, 0.017130155, -0.013445971, -0.004299713, - 0.016671482, 0.01968408, -0.008350218, -0.014435713, -0.007637854, - -0.007336876, 0.05336675, -0.012999619, -0.0019647428, -0.008794496, - 0.035529297, 0.026070165, -0.011691318, 0.04109339, 0.047925256, - 0.05964997, -0.0015255905, -0.0018044381, -0.001761838, -0.03830129, - -0.06358056, 0.03220899, 0.07146253, 0.028860264, -0.013894132, - -0.0044943853, -0.026174406, 0.04655127, -0.048426047, -0.0438457, - 0.026491823, -0.07602974, 0.0086944215, -0.0072732507, -0.010045296, - 0.0028333091, 0.029742276, 0.011930403, -0.022643538, 0.04030656, - -0.011598637, -0.016821649, -0.011573914, 0.023257174, 0.017297262, - -0.03384954, -0.008950536, -0.008690164, -0.04932136, -0.041218754, - 0.052997757, -0.043831903, 0.019848919, 0.007591519, 0.106901176, - -0.014087008, 0.0029583282, 0.0038718088, 0.017185269, 0.001767911, - 0.0150120985, 0.016935049, -0.010326636, 0.02766104, -0.032403234, - -0.030181333, 0.0075303316, -0.0154539915, -4.1883084e-4, 0.0028250352, - 0.020886326, 0.058254305, 0.009938263, 0.008975163, -0.022635246, - 0.011700762, -0.015846541, 0.025674, 0.008103787, -0.00389787, - -0.059747156, 0.014608523, 9.4283704e-4, 0.006945794, -0.028027019, - 0.09062823, -0.011802388, -0.028407548, 0.0014219313, -0.037576217, - 0.055869497, 0.012793755, -0.023912089, -0.054550834, -0.02622039, - 0.012647867, -0.020748029, -0.05804429, 0.109418325, 8.0667516e-5, - 0.009239352, -0.0345767, 0.06193296, -0.017947882, 0.017853694, - 0.04038841, -2.0947553e-4, 0.037082724, -0.043516725, -0.025442805, - -0.051405698, -0.020668942, -0.029967993, 0.0048116017, 0.0313539, - 0.040870864, 0.01897568, -0.042096358, -0.049365155, -0.0020934853, - 0.043720428, -0.005010836, -0.038108535, 0.021298083, 0.019689605, - -0.001999447, 0.0055911783, -0.057993446, -0.006614659, -0.0017775333, - 0.052139714, -0.01584293, 0.02326191, -0.065186016, 0.001279893, - 0.0076332665, 0.0023580315, -0.010458843, -0.028034069, 0.016825594, - 6.110257e-4, -0.04710196, 0.0045949062, -0.010275918, 0.012255541, - 0.038093396, 0.005958819, 0.009192684, -0.05576667, 0.032325972, - -0.023723908, 0.005349117, -0.023888191, 0.0494219, -0.016629484, - 0.037050698, -0.009278312, -0.0060982397, -0.049786482, 0.014973298, - 0.012207852, -0.019034764, -0.029173339, 0.074176, -0.055826638, - -0.033258803, -0.020264423, 0.018067822, -0.018124904, 0.009718994, - -0.002079586, -0.030108286, -0.017379303, -0.011451269, 0.0064389203, - 0.0091676, -0.00412305, 0.036391005, -0.01745324, 0.002173629, - 0.025012666, -0.005698181, -0.049485695, 0.053373776, 0.014827415, - 0.03899413, -0.010793665, -0.056334347, -0.022539845, -0.06425969, - 0.041476656, 0.022238467, 0.021675624, 0.012420723, 0.024005676, - -0.016657911, -0.037035316, 0.03450288, 0.0048877606, -0.013414843, - -0.023636503, -0.011412071, -0.016055994, -0.049940847, 0.032873522, - -0.0054135043, 0.0014828965, 0.031309187, -0.0062117605, -5.7599536e-4, - -0.07591041, 0.007228442, -0.0067036417, -0.041557405, 0.04145766, - -0.029181642, -0.008468077, 0.0069164517, 0.017772676, 0.01920598, - -0.050017435, 0.021487877, 0.043961205, 0.030004729, 0.021425294, - 0.029114349, 0.011013075, -0.023488004, -0.03887313, 0.0039871153, - -0.031323858, 0.004031992, -0.048991747, -0.022287225, 0.018216655, - 0.058101933, 3.457378e-4, 0.031004446, -0.036726397, -0.030337283, - -0.020544833, -0.04262619, 0.035936855, -0.028071133, 0.009883517, - -0.045925286, -0.056451082, 0.052554447, -0.06873335, 0.004159172, - -0.026718589, -0.00662019, 0.09917023, 0.020839285, -0.012480022, - 0.02068959, 0.043307878, 0.06336246, 0.029751778, -0.0025377804, - 0.052076202, 0.017906282, -0.036859095, -0.025311323, 0.0010707489, - -0.01744776, -0.027830571, 0.05801492, 0.028058115, -0.012793957, - -0.007895168, 0.029249294, -0.0057885875, 0.028269423, 0.018079843, - 0.0080038, -0.010707311, -0.0068174, -0.015424134, -0.008891067, - 0.008584004, -0.045493912, -0.072507285, 0.006651521, 0.0023972767, - 0.008870093, -0.07304185, 0.014793778, 0.06699923, 0.04472109, - -0.011911862, -0.045022223, -0.04675229, -0.07089962, 0.011608835, - -0.0042821243, 0.04482341, -0.014247188, -0.01143074, -0.038588185, - 0.0048303087, 0.057846155, 0.027647726, 0.009108673, 0.0077836183, - -0.052188456, -0.002981957, 0.04763694, 0.029565418, -0.0261032, - -0.03146567, 0.045013204, 0.058157623, -0.014315537, -0.014515657, - 0.036573965, 0.04323049, -0.033928856, -0.05641081, 0.00890889, - 0.037375882, -0.03940019, -0.026518442, -0.078115754, 0.053760707, - -0.062756136, -0.0070213424, -0.022773396, 2.8815402e-5, 0.047078937, - 0.06551105, 0.018700924, -0.0234739, 0.0014525512, 0.016445147, - 0.016978437, -0.031981707, -0.0010855402, 0.024195885, -0.0035841996, - -0.056890868, -0.021745859, -0.0026070152, 0.028979328, -0.002923517, - 0.012616436, 0.04264676, -0.013163228, 0.039085817, -0.022568494, - 0.05424367, -0.018031398, -0.009959355, 0.06010756, -0.031024383, - 0.0113840345, 0.02174648, 0.031993426, -0.004068819, 0.03474885, - 0.011597862, -0.023310106, -0.02765576, 0.018681062, 0.011057883, - 0.021181447, 0.04003171, 0.022861507, 0.021439306, -0.0710003, - 0.0112723885, -0.035851683, -0.0035188522, 0.018448751, 0.037218977, - -0.014304865, 0.038926937, 0.052988153, -7.5556e-4, -0.02322274, - 0.002829002, 0.00969667, 0.018791787, 0.026835514, 0.05442647, - 0.014267707, -0.03263546, -0.043710392, 0.07339896, -0.01910069, - 0.051920604, -0.01133514, 0.00803387, -0.03646444, -0.05496664, - -0.034758855, 0.087088406, 0.016596649, -0.061949003, -0.0010496549, - 0.040440205, -0.029309336, -0.07100776, 0.024986032, -0.013707127, - -0.038394686, -0.016473258, 0.034790844, 0.0028410403, -0.051675685, - 0.05274461, 0.0152606545, -0.018074816, -0.035635624, -0.025141349 + "paletteEmbedding" : [ + -0.0010269998, + -0.02583155, + 0.0204062, + -0.02192696, + -0.0062425723, + 0.031751234, + -0.04771067, + -0.048873086, + 0.03759383, + 0.04396084, + -0.028042879, + 0.009733978, + 0.03629665, + -0.047441054, + 0.05852499, + 0.021084188, + -0.0059335562, + 0.06394401, + -0.008053154, + -0.048773564, + -0.02498608, + 0.028410126, + -0.0114454385, + -0.015698913, + -0.010755106, + -0.0031339645, + 0.023425484, + 0.029707244, + 0.018692076, + 0.04187519, + -0.011302254, + -0.010055766, + 0.028161863, + -0.027416315, + 0.028625486, + -0.054759417, + 0.021530023, + -0.030500025, + -0.011139901, + 0.07764468, + 0.0043742624, + -0.012945802, + 0.008297285, + -0.033091154, + -0.046265583, + 0.043103565, + -0.0039616507, + -0.02683695, + 0.029725654, + 0.027831133, + 0.022930626, + -0.044743534, + 0.0085619185, + -0.002019512, + 0.047446202, + -0.031176174, + -0.038136575, + 0.03397176, + 0.06727093, + 0.024836121, + 0.061493363, + 0.019663444, + 0.01243988, + 0.026979575, + 0.027506026, + 0.040072616, + -0.01667724, + 0.015095826, + -0.0321014, + -0.026441727, + -0.011727208, + -0.006736441, + -0.021074435, + 0.01519018, + -0.02427808, + 0.0014190616, + -0.0072562248, + -0.007007391, + -0.028853854, + -0.018597182, + -0.006082192, + -0.011178683, + -0.022444267, + -0.008052992, + -0.034995656, + -0.009405343, + 0.032300755, + 0.0080914935, + 0.041818175, + -0.0053736856, + -0.034030817, + -0.029455453, + 0.0058302446, + 0.0032439926, + -0.043376602, + -0.034289278, + -0.02275626, + 0.01410313, + 0.032324787, + 0.10288781, + 0.040181953, + -0.02201999, + 0.008557622, + 0.006059141, + -0.043446317, + 0.021644223, + -0.0063385107, + -0.021918017, + -0.017132374, + -0.060484517, + 0.0327092, + -0.05176122, + 0.04296629, + 0.024769265, + 0.025542516, + -0.014130347, + 4.7466136E-5, + 0.021181513, + -0.014931914, + -0.011202102, + 0.024781352, + 0.012598223, + -0.04243949, + -4.631103E-4, + 0.024352476, + 0.009718901, + 0.023572933, + 0.006087313, + 0.03431407, + 0.009188437, + 0.06587673, + 0.022665624, + -0.039094727, + 0.016275229, + 0.018647248, + 0.060366508, + 0.04514282, + 0.021117276, + -0.011976799, + -0.04119254, + 0.016065124, + -0.027055534, + 0.040265143, + -0.037482277, + 0.010059186, + 0.039485026, + -0.027663298, + -0.014440543, + -0.003767134, + 0.017442405, + -0.030571723, + -0.0076185595, + 0.02509247, + -0.037537277, + -4.2335563E-5, + -0.014910452, + 0.012323341, + 0.08368547, + -0.03335224, + -0.003103152, + 0.031504564, + 0.003014154, + -0.015792627, + -0.018456284, + 0.011058922, + 0.0031808678, + -0.0107453205, + 0.03152656, + -0.049000617, + -0.026971826, + 0.018005114, + -0.031794365, + 0.014156984, + -0.029871905, + 0.004577326, + 0.0229662, + 0.021495514, + -0.006086764, + -0.040599998, + 0.016781142, + 0.04231825, + 0.014585731, + -0.049781583, + -0.025818015, + -0.0050154743, + -0.057150267, + -0.021185677, + -0.04662313, + -0.0077372575, + -0.014543147, + 0.0034268866, + 0.021009898, + 0.0109479, + 0.035632364, + 0.023283677, + 0.022637388, + -0.015443842, + 0.04045966, + -0.044517286, + 0.0399887, + -0.019562427, + -0.006603091, + 0.02762805, + 0.009721432, + 0.008863228, + -0.012744535, + 0.0052379556, + 0.012161877, + 0.0016058164, + -0.041020818, + 0.062421322, + -0.033012245, + -0.05147108, + 0.041334894, + 0.023402752, + -0.05070205, + -0.0012539076, + 0.040229313, + -0.063508935, + 0.0074636363, + -0.021735653, + -0.0018264559, + 0.05239506, + 0.018517384, + 0.04504582, + -0.015306366, + -0.004293634, + 0.0010026204, + -0.011608684, + -0.049315054, + -0.015090761, + -0.010225253, + 0.03216103, + -0.003412521, + -0.0323182, + 0.027161399, + 0.030261599, + 0.04167821, + 0.009842327, + -0.0075660227, + 0.048758388, + -0.07992969, + 0.004971298, + 0.013167886, + -0.034728754, + -0.008729263, + -0.0018175358, + 0.014845673, + -0.03843536, + -0.0055220514, + -0.016019888, + -0.012074364, + -0.008955579, + 0.06287532, + -0.0018861986, + 0.040984925, + -0.020147724, + -0.011655671, + -0.005747457, + 0.03240661, + 0.028956251, + -0.014899371, + 0.013223904, + -0.017754495, + -0.032074016, + 0.03106861, + -0.040819418, + 0.0075762863, + 0.0014515098, + -0.001515054, + -0.03270781, + -0.045524135, + -0.0025286265, + 0.040715232, + 0.050154496, + 0.027882745, + 0.022417514, + -0.029008543, + -0.016717281, + 0.045316294, + 0.0093351165, + -0.0067773596, + 0.023616029, + -0.007208263, + 0.029471947, + 0.022493886, + 0.03692828, + 0.029776795, + 0.07704893, + 0.03285231, + -0.057431694, + 1.2368047E-4, + -0.058212377, + -0.0061522746, + -0.0037981316, + -0.06720214, + -0.015539776, + -0.037030246, + 0.0054889997, + -0.019776778, + -0.052257497, + 0.009385599, + 0.032502525, + 0.0042153546, + -0.07076854, + 0.0072992262, + -0.022251599, + 0.005554218, + 0.026169494, + 0.06351457, + -0.0213013, + 2.668417E-4, + -0.035272054, + 0.033285838, + -0.008554358, + 0.026440157, + -0.052409433, + 0.01156585, + 0.0048582526, + -0.010696912, + -0.08983149, + 0.030788938, + -0.024844958, + -0.0076885005, + -0.024481935, + 0.029508041, + -0.051434487, + -0.041106187, + 0.016764743, + 0.0015720956, + 0.0048248875, + -0.0049829907, + -0.012002063, + 0.040267207, + 0.05660403, + -0.02121202, + -0.0075020385, + -0.02503768, + -0.013562177, + 0.0047551994, + -0.03266952, + -0.054946486, + 0.03850067, + 0.03086637, + 0.044405885, + 0.03807816, + 0.06698312, + 0.00986217, + -0.010269946, + -0.040293507, + -0.010256341, + -0.0049058325, + 0.056457624, + -0.023289032, + 0.020470206, + -0.0035045708, + -0.03565191, + 0.039979696, + -0.048573747, + -0.0028906385, + 0.0317533, + -0.018495021, + -0.0107200695, + -0.026898736, + 0.036480524, + -0.009585775, + 6.5858365E-4, + -0.002972125, + 0.012587021, + 0.036256462, + 7.9658325E-4, + -0.020942299, + 0.014043131, + -0.049913537, + 0.043053407, + -0.013656306, + -0.01585422, + 2.1308349E-4, + -0.026818609, + -0.021456873, + 0.051093984, + 0.012383891, + 0.035015944, + 0.0068068276, + -0.059411414, + -0.023285367, + 0.008962619, + -0.010273891, + -0.06488242, + 0.014495794, + 0.037559282, + -0.051840354, + -0.02268947, + -1.8949235E-4, + -0.0019640566, + 0.01763853, + 0.0022672447, + 0.047383726, + 0.020994442, + -6.038574E-4, + -0.008352941, + -0.036081128, + 0.038996004, + 0.008145137, + 4.052408E-4, + 0.020619811, + 0.024676092, + 0.012744546, + 0.04134386, + 0.02572602, + 0.019257484, + 0.028605511, + 0.0014943404, + -0.013457793, + 0.03668147, + -0.008506901, + -0.029554306, + 5.842857E-4, + 0.03963949, + 0.019233689, + -0.015177796, + 0.012509707, + -0.0699759, + 0.041363385, + 0.045060903, + 0.03421802, + 0.020312266, + -0.0012764025, + -0.025127029, + -0.03130658, + 0.008421066, + 0.011980207, + -0.015084067, + -0.027356202, + 0.03349002, + -0.0074372496, + 0.03244315, + 0.0015832685, + -0.047957726, + 0.028838094, + 0.016219828, + -0.003080116, + -0.022757197, + -0.01406582, + -0.054193974, + -0.0043825447, + -0.05125254, + 0.037108194, + 0.0487135, + -0.012066896, + 0.020136643, + -0.020709785, + -0.04043631, + -0.02469029, + -0.023935195, + -0.025984349, + -0.02429848, + -0.016672397, + 0.07517852, + 0.020740062, + -0.034941267, + 0.02609563, + 0.011018745, + 0.010163568, + 0.029993525, + 0.039194398, + 0.02938139, + 0.022632787, + 0.035201803, + -0.06934871, + -0.02525661, + 0.067528635, + -0.02797445, + 0.012871725, + -0.023214936, + -0.053214375, + 0.03953254, + -0.02775331, + -0.009889497, + -0.025156401, + 0.0053798608, + 0.011822983, + -0.08264721, + 0.023567649, + -0.02202236, + 0.01843281, + -0.008281811, + -0.07103791, + 0.021650195, + -0.04287232, + -0.007699634, + -0.046170063, + -0.02076585, + 0.055141836, + -0.09504227, + 0.047519453, + -0.03311104, + 0.012094549, + 0.0074900966, + -0.02935733, + 0.0016674764, + 0.020516481, + 0.027788267, + 0.07995512, + 0.03200118, + -0.0256567, + 0.022200262, + -0.03513988, + -0.05223488, + 0.09377618, + -0.01877952, + 0.016847247, + -0.0444312, + 0.040916312, + 0.03089249, + 0.014821086, + -0.003957444, + 0.011202579, + 0.01005991, + 0.018295677, + -0.0022570568, + -0.052596904, + 0.035655323, + -0.08057769, + 0.05710151, + -0.0067733023, + -0.011874397, + -0.024233175, + -0.03444487, + 0.030256778, + -0.09511241, + 0.0429085, + 0.06684174, + 0.025078889, + 2.1023359E-4, + 0.013967727, + -0.015542734, + -0.0444625, + -0.0029028205, + -0.023120701, + -0.011470961, + -0.029651858, + 0.021491041, + -0.014367205, + 0.059514996, + -0.02116643, + 0.032363396, + -0.029291445, + 0.004243102, + -0.025351701, + 0.019400664, + -0.031703476, + -0.0079724025, + 0.015256675, + 0.013396358, + -0.024346972, + -0.056324895, + -0.06077492, + -0.05496325, + -0.027595613, + 0.020157292, + 0.003010513, + 0.007771742, + 0.0026983963, + -0.008781451, + 0.00904858, + 0.035322495, + 0.00518038, + 0.048068605, + -0.003482758, + -0.011638814, + -0.027513647, + 0.007002497, + 0.0052272268, + 0.06125726, + 0.024098901, + -0.0035216107, + -0.033067144, + 0.0024592557, + -0.006603983, + -0.023995548, + -0.01575457, + 0.024192326, + -0.055019137, + -0.024286276, + 0.013521863, + 0.0064962516, + 0.03580084, + -0.04503516, + -0.027677411, + -0.02728035, + 0.022364017, + 0.01916438, + 0.004599629, + 0.027368357, + 0.020522535, + 0.0010780077, + -0.032318197, + -0.012279038, + -0.017930083, + -0.018142043, + 0.057363927, + -0.04354237, + -0.024865141, + 0.009813568, + -0.033760253, + 0.01000399, + 0.0036282372, + -0.008040566, + 0.052385345, + -0.0140274735, + -0.030377584, + -0.045175973, + -0.037735295, + 0.018741427, + 0.027386509, + -0.0149977, + 0.031511784, + 0.014495521, + 0.0019134778, + 0.022659255, + -0.029158954, + -0.032550123, + 0.035050023, + -0.025030004, + 0.017164716, + 0.002567646, + -0.046744052, + 0.03301353, + -0.032504674, + 0.004835881, + -0.054141857, + -0.042729482, + 0.028763235, + -0.025898328, + -0.009647699, + 0.024028286, + 0.03766239, + 0.06372517, + 0.037655212, + -0.059903953, + 0.043589126, + -0.01351534, + -0.014063661, + 0.00795376, + 0.015210434, + 0.0031200165, + 0.012696294, + 0.03247491, + -0.009280741, + 0.04050725, + 0.009180121, + 0.0020848517, + 0.039588396, + 0.02244723, + -0.012043333, + 0.020949956, + 0.005149574, + -3.5135078E-4, + -0.031141263, + 0.027408252, + -0.024306582, + 0.044971175, + 0.05329458, + -0.022356868, + 0.0015182358, + -0.03898738, + -0.0312481, + 0.005253066, + 0.04480464, + -0.030981192, + -0.047917027, + -0.0047959783, + 0.019210888, + -0.016314954, + -0.0516457, + -0.010115029, + 0.049172904, + -0.008537032, + -0.03463848, + 0.01718464, + -0.06802926, + 0.013749257, + 1.1598045E-4, + 0.056269385, + 0.010057657, + 0.02733536, + 0.017744964, + 0.038214937, + 0.03088864, + 0.035205007, + -0.047295563, + 0.050223455, + 0.016984448, + 0.007983848, + 0.08463319, + -0.037731856, + 0.012744064, + 0.0037276438, + 0.0029871021, + 0.008585158, + -4.7543486E-5, + -0.04166864, + -0.0117403455, + -0.014311122, + 0.044782445, + 0.060802132, + -0.018886846, + 0.04189937, + -0.031472187, + 0.03450857, + 0.013495769, + 0.043596815, + 0.043976754, + 0.003268727, + 0.021214645, + -0.006744934, + 0.032749366, + 0.009286863, + -0.020669507, + 0.034110352, + -0.019992212, + 0.030901292, + 1.1243553E-4, + 0.007525466, + 0.00883864, + 0.06779798, + 0.01009336, + -0.03905229, + 0.011236047, + -0.04536595, + -0.038994405, + -0.057334516, + 0.012237725, + -0.035956003, + 0.062259667, + -0.014108183, + -0.015409671, + 0.034324266, + 0.013803685, + -0.039357007, + 0.049937528, + -0.009626333, + -0.028530957, + -0.06867379, + 0.008182455, + 0.030726345, + 0.03165608, + -0.01360882, + -0.010724747, + -0.010081284, + 0.04643175, + -0.030692983, + 0.037257213, + 0.04580872, + 0.011185973, + -0.042239502, + 0.007931738, + 0.006977422, + 0.0180121, + 0.04314493, + -0.0130937835, + -0.08983581, + 0.011410663, + 0.024360768, + -0.014569655, + 0.03464247, + 0.03387302, + -0.037947893, + -0.04692528, + 0.008307104, + -0.004508633, + -0.013779929, + 0.031226877, + -0.015641633, + 0.038202137, + 0.00851978, + 0.02454581, + 0.010259265, + -0.0010808349, + -0.03526124, + -0.02610923, + -0.009661323, + 0.016944744, + 0.015713876, + 0.017390246, + -0.011448917, + 0.07142384, + 0.0028142338, + -0.004888856, + -0.050145194, + 0.014797367, + -0.051387526, + -0.030957967, + 0.026727248, + -0.017394748, + 0.0016890373, + 0.03952249, + 0.017851796, + -7.618585E-4, + -0.031202296, + -0.009436065, + -0.012213809, + 0.029709764, + -0.026129674, + 0.0040538115, + 0.014500834, + -0.0020371927, + 0.012318656, + 0.022111852, + -0.029095648, + -0.011273087, + 0.064283535, + -0.027079234, + 0.009667059, + -0.006196366, + -0.018887106, + 0.077861704, + -0.021108013, + 0.035984408, + 0.005868176, + 0.010749331, + -0.05743822, + -0.012887558, + -0.012312873, + -0.02552196, + -0.0414711, + 0.020563697, + -0.018887596, + 0.016737398, + 0.061717097, + -0.010249771, + -0.046849106, + -0.021122841, + -0.039319042, + -0.022398377, + -0.034363925, + 0.06120856, + 0.020292519, + 0.013351278, + -0.0045073787, + -0.017616194, + -0.022322308, + -0.05647634, + -0.0022429875, + 0.011063065, + -0.014877235, + 0.032969665, + 0.03995559, + 0.05253116, + 0.0053281877, + 0.022403419, + 0.019006558, + 6.483342E-4, + -0.030051947, + -0.0066622817, + -0.015227153, + -0.03335377, + -0.011976408, + 0.022730088, + 0.024748476, + 0.020811671, + -0.041821018, + 4.1370504E-4, + 0.020225022, + 0.013678601, + 9.1413944E-4, + 0.006500407, + 0.0811223, + -0.011869077, + -1.4274521E-4, + -0.039511178, + 0.023383018, + 0.0018476002, + -0.03203453, + 6.3515257E-4, + 0.008069303, + 0.02043053, + 0.00799078, + 0.0026448858, + -0.008028134, + -0.019546477, + 0.0068085124, + -0.022271065, + 0.014153189, + -0.021681601, + 0.03640175, + -0.019287786, + -0.012707354, + -0.002785865, + 0.031087585, + 0.031928137, + 0.027080957, + 0.053219534, + 0.0059523736, + 0.026738314, + -0.020178482, + 0.057218276, + 0.06701922, + 0.036066268, + 0.033219688, + -0.0012262536, + -0.0122444015, + 0.027156685, + 0.006151981, + 0.023751352, + -0.048777536, + -0.013795749, + 0.019649187, + 0.01288976, + -0.02716114, + 0.027050888, + -0.042308252, + -0.021149812, + 0.025667889, + 0.0022748641, + -0.023204532, + 0.012452021, + 9.696306E-4, + -0.03883211, + 0.048559874, + -0.008672686, + -0.018515049, + -0.020607157, + -0.034111343, + 0.01391738, + -0.02814334, + 0.033143193, + -0.050191615, + 0.02939985, + 0.0012400027, + -0.027518902, + -0.016580453, + -0.03751085, + 0.009010145, + 0.0053739874, + 0.011775208, + 0.022500973, + 0.010740518, + -0.010346516, + -0.048625387, + -0.0058838017, + -0.03199258, + 0.0093368245, + -0.0138436435, + 0.01047558, + -0.0496036, + 0.033587918, + 0.016287956, + -0.0019763228, + -0.06116999, + -0.006633445, + 0.07329912, + 0.076811455, + 0.025906032, + 0.035671905, + 0.1108736, + -2.1265396E-4, + 0.011459495, + 0.034173474, + -0.027717292, + -0.0072550992, + -0.03311827, + -0.032154992, + -0.017603409, + -0.0740186, + 0.029946672, + -0.0058557824, + -0.036772896, + -0.025569834, + 0.023857094, + 0.010486091, + 0.050055575, + 0.02590227, + 0.03321889, + -0.016224492, + -0.0283711, + -0.00195945, + -0.052771144, + -0.046481825, + 0.008806112, + -0.008837944, + 0.01932055, + -0.002817974, + -0.019946871, + 0.037457272, + 0.053807385, + -0.029500667, + 0.040833566, + -0.0126240915, + 0.04863878, + -0.022559434, + -0.0344501, + -0.0044211363, + -0.0016454344, + 0.030764142, + 0.020025318, + -0.06292055, + 0.03227403, + 0.020544065 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/image-production.1904.json b/common/search/src/test/resources/test_documents/image-production.1904.json index f05c6a8d9..5377b1fb4 100644 --- a/common/search/src/test/resources/test_documents/image-production.1904.json +++ b/common/search/src/test/resources/test_documents/image-production.1904.json @@ -1,1337 +1,5251 @@ { - "description": "an image with a production event in 1904", - "createdAt": "2023-11-21T14:25:44.335617Z", - "id": "8r3h7lpn", - "document": { - "modifiedTime": "1963-02-05T12:54:03Z", - "display": { - "id": "8r3h7lpn", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with a production event in 1904", + "createdAt" : "2024-11-14T14:37:56.586389Z", + "id" : "zj4rti6w", + "document" : { + "modifiedTime" : "1954-03-26T03:10:59Z", + "display" : { + "id" : "zj4rti6w", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/so5.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", + "credit" : "Credit line: UiijDELo", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/so5.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", + "credit" : "Credit line: UiijDELo", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#6464C1", - "source": { - "id": "kfljldzq", - "title": "Production event in 1904", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#CF839A", + "source" : { + "id" : "fytxlujd", + "title" : "Production event in 1904", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "8r3h7lpn", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kfljldzq", - "sourceIdentifier.value": "fz40xS5Yvd", - "identifiers.value": ["fz40xS5Yvd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1904"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1904" + "query" : { + "id" : "zj4rti6w", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "fytxlujd", + "sourceIdentifier.value" : "Ali8NMeqhr", + "identifiers.value" : [ + "Ali8NMeqhr" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1904" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1904" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [-2082844800000] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.009591192, 0.006082146, -0.001597857, -0.0046401205, 0.007132261, - -0.0054441434, 0.015413347, 0.036637668, 0.012778856, 0.018113084, - 0.0018808629, 0.0077679954, -0.036696125, 0.018955909, 0.009945685, - -0.0012284738, 0.018569965, 0.026136758, -0.029359391, -0.0025188958, - 0.02225899, 0.0121782655, -0.007741863, 0.011880959, 0.007088549, - 0.002721434, -0.01976548, 0.016857894, -0.008404516, -0.012318726, - -0.011659201, -0.0049311076, 0.005556333, 0.009810215, 3.8992285e-4, - 2.7247667e-4, 0.01475389, -0.027826604, 0.014736089, -0.01223834, - -0.017138897, -0.009093237, -0.009641193, 0.011932414, 0.011089131, - -0.018548712, -0.019312847, -0.009136293, -0.012947266, 0.010844801, - 0.03416207, -0.008005171, 0.016760094, 0.0039011673, 0.007925435, - 0.010334147, -0.03299561, 0.014017434, 0.0069861924, -0.012847088, - 0.004919776, 0.018434318, -0.015277072, 0.019097337, -0.028586337, - 0.0014631555, -0.022400953, -0.0038400122, 0.036728088, 4.2648593e-4, - 0.004692468, -0.010014714, -0.0064125885, 0.0054746065, -7.505194e-4, - -0.001811568, 0.019816259, -7.5021654e-4, 0.0018191931, 0.0071736802, - -0.03859488, -0.011749199, 0.0038627149, 0.032121856, -0.009256977, - -0.030747188, -0.0077919574, 0.014510178, -0.005288678, -0.01058551, - -0.0036506676, -0.03165624, 0.011043728, -0.008852763, -0.01651012, - 4.6224002e-4, -0.02153246, -0.018083405, 0.017026976, 0.014094641, - 0.029536579, -0.008251292, -0.0036001466, -0.014761637, -0.010567479, - -0.013167557, -0.006623021, 0.016087588, -0.015671732, -0.013318802, - 0.030462287, 0.02107661, -0.002578862, -4.0023483e-4, 0.0067715384, - 1.3739456e-4, 0.0062207617, 0.019315245, -0.008345364, 0.0140479645, - 0.01089737, 0.02079879, -0.0038418164, -0.007163956, -0.0034411957, - -0.0022606172, -0.004494748, 0.012743787, 0.004462238, -0.010686783, - 0.022839572, 0.0147310225, -0.0062838555, 0.022304982, -0.01565988, - 0.0022674527, 0.0015547312, -0.012631598, -0.003973133, -0.0027343738, - -0.005828078, 0.008624062, -0.013842696, -0.016336842, 0.025628561, - 0.012255638, -0.025432859, -0.0053623016, 0.01892414, 0.0038774803, - 0.024445463, -0.007747741, 0.0035061368, -0.0033357858, -7.4478216e-4, - -0.011084995, -0.025741046, -0.0019866168, 2.8921105e-4, -0.009382873, - 0.0031339703, -0.006725802, 0.005321014, -0.008758151, 0.012185867, - 0.007372104, 0.0052205776, 4.1192924e-4, 0.022065103, -0.012887813, - -0.008498152, 0.001421601, 0.0012652832, -0.0126753645, 0.03507886, - -0.017039817, 0.002680918, -0.022461912, -0.009620626, 0.0053243083, - -0.003603377, -0.011690342, 0.008749399, 0.019966519, 0.011974438, - -0.002367392, -0.017700931, -2.0276025e-4, 0.0017316227, 6.450472e-4, - -1.5066213e-4, 0.021171577, -0.022808604, 0.02242389, -0.024497677, - 0.026526557, -0.0076644444, -0.0064877262, 0.02060482, -0.014602384, - -0.014115307, 0.047035053, 0.030728195, -0.03361765, -0.010749191, - 0.022403175, -0.030937219, 0.007548553, 0.005535289, 0.009518173, - 0.0074189794, -0.004204321, -0.04188821, -0.0107522085, 0.0064394465, - -0.019287415, -0.011069995, -0.01631654, 0.008475458, -0.015301604, - -0.004232665, -0.0114186015, 0.0042225434, -0.007117682, -0.019837486, - 0.029534267, 0.0062227864, 0.0023403866, 0.0014466044, -0.01982459, - 0.018186506, 0.01095681, -7.069184e-4, -0.008232553, -0.011338096, - -0.006808556, -0.0086926855, 0.01248239, -0.026674656, -0.015341258, - 0.003624371, -0.015582589, 0.0077289734, 0.020627053, 0.007040723, - 0.02046307, -0.0011705568, -0.016244207, 0.01581591, 0.0051614046, - -0.00700905, -0.0119397435, 0.004668454, 0.021980021, 0.010061819, - -0.010601482, -0.02226886, -0.0050884457, -6.825742e-4, -0.0052164737, - 0.009787953, 0.020753458, 0.010078146, -0.016835393, -0.0026346513, - -0.007060576, -0.010806144, -0.016710531, -0.009221213, -0.027829649, - -0.018211283, 0.007942333, 0.0017430955, 0.0022342382, -5.047189e-4, - 0.01874179, 0.0067025395, -8.958652e-4, -0.020831078, 0.0012035493, - -0.01048066, -0.014628261, -0.0056701605, 0.005127606, -0.003488696, - -0.016008856, 0.02380881, 0.016803674, -0.01414278, -0.0075571407, - 0.003437474, -0.001584897, -0.0024442615, -0.017284768, 0.015028588, - 0.02511886, 0.038587898, 0.01407923, 0.0018985925, 0.021723691, - -0.014507283, 0.029494155, -0.016515292, 0.008246747, 0.013367175, - 0.031846035, -0.015404261, -0.004580197, 0.027215691, -0.0018633321, - -0.013468374, 0.016973093, 0.002102157, 0.018168401, 0.008757805, - -0.017846063, 0.02679014, 0.024194995, -0.0033051148, 0.014048718, - 0.021767292, 0.012497221, -0.0022575962, 0.0011618076, -0.002013352, - -0.0021323094, 0.005551754, -0.015000771, 0.013556886, -0.020113979, - -0.016186133, 0.023661973, -0.0023444234, -0.0065371064, 0.012768246, - 0.0033160048, 0.0034532333, 0.018549185, -0.020884369, -0.01750493, - 0.01776076, 0.0053672246, 0.014394999, -0.022198549, -0.0057497295, - 0.017562991, 0.0018591959, 0.011890133, 0.010591194, -6.94449e-4, - -0.002936174, -0.009403891, -0.015973479, 0.001400957, 0.0086697955, - 0.01551792, -0.0014748449, -0.012936972, -0.001963592, 0.016518699, - 0.02274553, -0.0051122145, -0.0022148585, 0.027687557, -0.021285687, - 0.024840118, 0.0019973244, 0.027404469, 0.021077635, 0.015539888, - -0.005983055, 0.0076329634, 0.02628668, 0.037887402, 0.0048611434, - -0.007575019, -0.030502517, -0.009998702, 0.004744375, 0.0059549813, - 0.009687648, -0.018025655, -0.0038729578, -0.02148732, -0.0015361377, - -0.0056562633, 0.009729735, -0.02020886, 0.008843314, 0.0032480918, - -0.004547006, 0.0058525726, -0.0010359596, 0.0020990334, 0.02702131, - -0.0060490617, 0.015451981, 0.003011649, 0.0015772715, -0.007381303, - -0.0034073945, 0.0027584226, -0.0075238575, 0.0042756395, 0.009000924, - 0.022499062, 0.0149078155, 0.010979361, 0.0027888103, 0.0088658715, - -0.011091026, 0.025037896, 0.019531066, 0.009595284, 0.020953404, - -0.025105225, 0.014517044, -0.033358216, 0.0047262562, 0.00174511, - 0.008731558, -0.013783997, -0.005148797, 0.0027101347, -0.007192828, - 0.011754502, 0.025344761, 0.018133838, 0.022970764, 0.010295582, - 0.007327963, 0.015869986, -0.014780383, 0.0114451405, -5.390449e-4, - -0.01325783, -0.030531134, -7.434053e-5, 0.020819422, 0.02186364, - 0.007031698, 0.011535162, 0.011458065, -0.03776043, -0.025378913, - 0.010294759, 7.6765433e-4, 0.028108148, 0.007741347, 0.013590062, - 0.0014970341, -0.02342027, 0.005319379, -0.007993089, -0.0052254084, - -0.01036741, -0.032869056, -0.026037475, -0.022229748, 0.012954265, - -0.013323709, -0.016716927, 0.011112561, -0.012864747, -0.017059254, - 0.013595404, -0.0037093025, -0.021818867, 0.012541327, 0.005947578, - 0.004496814, -0.007884964, -0.027357804, -0.011350422, -0.02156641, - 0.028203305, 0.028162668, 0.0033915082, 0.010411144, -0.027873361, - -0.017058883, 0.003828996, 0.030347692, -0.022040604, -0.023808751, - 0.02197017, 0.003693793, 0.0018694092, -0.0069139036, 0.004509549, - 0.027389798, -0.006428202, 0.029024865, 0.020969873, 0.021951074, - -4.9139606e-4, -1.267098e-4, 0.022353007, -0.008021919, -0.0013623338, - -0.023409978, -0.0069779535, -0.0036512068, -0.0053902473, -0.012138085, - 0.012520101, 0.03033773, -0.012005723, -0.016500797, 0.0057829283, - 0.025922006, 0.0026812144, -0.011982407, 0.013067807, 0.0051530167, - -0.0067096883, 0.02049611, 0.0061538373, -0.018068591, 0.009270359, - 0.010413963, 0.014093747, 0.011194344, -0.021101218, 0.02698605, - 0.02299888, -0.015583968, -0.016934294, -0.0034021242, -0.019563045, - -0.035180423, -0.005221447, -0.012199641, -0.031226156, 0.006059096, - 0.0010786614, -0.005267323, 0.0099735735, -2.4062215e-4, 0.027699046, - 0.0158295, 0.0014635993, 0.026657203, -0.014960722, -0.02919865, - -0.02119573, -0.0017754753, -0.01071459, 0.010877289, 0.03496443, - 0.0012263468, -0.004217878, 0.0076331464, 5.456116e-4, -2.1779818e-4, - -0.0046474217, -0.0019586477, 8.39461e-4, -0.018509876, 0.020535532, - 0.023377178, 0.0146325175, -0.015636966, 0.0052254805, -0.014994889, - 0.01833963, 5.721301e-4, -0.0011116334, -0.009120324, -0.003746614, - -0.0047893315, 0.0071559246, 0.00794906, 0.006171582, 0.005843226, - -0.029725613, 0.002747685, 0.008253348, 0.0034494824, -0.0200166, - 0.008293619, 0.015017944, -0.006440099, -0.0012272041, -0.010277919, - 0.0111515215, -0.032834306, 0.0186983, 0.0036872828, -0.002035944, - 0.010784337, -0.0130026145, -0.011745926, 0.009302187, -0.015688745, - -0.012235342, 0.0118885115, -0.01638089, 0.010954374, 1.4835349e-4, - 0.013886534, 0.008768986, -0.004616047, 0.009522652, -0.020415897, - 0.0020916588, -0.014474283, -0.016985763, 0.014661474, 0.014784801, - -0.012927724, 0.022800598, 0.02440645, 0.013782881, 0.008541461, - 5.4024067e-4, 0.009900382, -0.0044215396, -0.021858742, -0.008673452, - -0.0063819196, -0.010735743, -0.013265189, 0.016098602, 0.006054402, - 0.025679238, -0.0038834345, 0.027130924, 0.015163274, -0.013551494, - -0.017381813, -0.0062138136, -0.011707079, -0.0072197476, -0.0035346043, - -0.012884225, 0.004539131, -0.007953474, -0.02087608, 0.0059669935, - -0.033542763, 0.0010855772, -0.0028051913, 0.021329599, -0.013067025, - -0.0064528123, -0.011954362, 0.004287155, -0.0024651473, 0.021316739, - -0.016658913, -0.023854058, 0.025530592, -0.0050247833, 0.008233157, - 0.011692542, -0.002628771, 0.0016044024, 0.029799737, 0.0071715447, - -0.023784226, -0.008101814, -0.0021665662, 0.013010527, -0.016247135, - 0.025233012, -0.008579887, 0.0046747103, -0.0058080363, -0.009244672, - 0.0041804495, -0.0036319222, -0.030747414, -0.0072860746, 0.0037361532, - 0.027306492, -0.015364008, -0.0011874972, -0.03465589, -0.025529435, - 0.007894645, -0.0026847573, 0.0024383669, 0.020253703, 0.0028009089, - -0.004668688, 0.009181827, -0.014511426, 5.783859e-4, -0.0024727727, - 0.021206597, 0.0049132835, 0.0059964177, -0.011545799, 0.002867287, - 0.005606666, 0.0021102584, 0.008918017, -0.024144458, 0.004324774, - 0.0014451608, 0.002506703, -0.01136148, 0.017202143, 0.0034448477, - 0.0031498766, 0.024570888, -0.0152181415, 0.009692107, 0.014550135, - 0.024974836, -0.023940116, -0.020371143, -0.0062546185, 0.01594117, - 0.007733585, 0.033963267, 0.022346262, 0.016850194, 0.010542804, - -0.017166313, 0.008817639, 0.014606159, 0.025342392, -0.019900322, - -6.7219476e-4, 0.012926581, 0.015470026, 0.0144013455, -0.0065119066, - 0.0063332426, -0.012731297, 0.008060746, -0.023252029, 0.0047396463, - 0.0011377952, -0.002335754, -0.005627621, 0.019829636, -0.015104834, - -0.018813137, -0.017664075, 0.036277458, 0.009333819, 0.0022817682, - 0.00828773, -0.01048366, 0.011179164, -0.007353171, 0.026279831, - -0.0075041694, 0.023157753, -0.007646045, 0.025698384, -0.0018583047, - 0.0115664555, 0.0077853673, 0.0360837, -0.010445831, -0.004881162, - -0.009066457, 0.023427645, -0.0017465266, 0.019406028, 0.017514724, - -0.01005386, -0.01946938, 0.00632546, -0.014415186, -0.004299361, - -0.009726284, -0.0055534644, 0.022432547, -0.011251056, 0.030060984, - 0.011892354, -0.0017389441, 0.0084922565, -0.011997006, 0.029472258, - 0.009090801, 0.011332123, 0.0074904715, -0.002102482, 3.765697e-4, - -8.296507e-4, -0.011412222, 0.016959568, -0.018016247, 0.032177094, - -0.0154626155, -0.011046899, -0.030848682, -0.001061966, 0.0021457202, - 0.011089292, 0.009797177, -0.015293958, -0.0018642496, 0.01567872, - 0.02151822, -0.011009706, -0.025557088, -0.012542601, 0.02141416, - -0.0056479233, -8.237376e-4, 0.009664187, -0.022624318, 0.035859596, - -0.021530792, 0.017530784, 0.0017388827, -0.011596786, 0.0017150944, - 0.013905107, -0.013194347, 0.0076775206, -0.021006655, -0.021524046, - 0.0034635516, -0.019190256, 0.015679793, -0.021407194, 0.017077796, - -0.034098864, -0.004763011, 0.0043741544, -0.014518307, -0.013823859, - 0.010117967, 0.0057001426, -6.6963123e-4, -0.013323335, -9.3401823e-4, - -0.019749286, -0.030687427, -0.02057892, -0.026166314, -0.0030925982, - 0.029234523, -0.012765495, -0.017828917, 0.031478114, 0.011061775, - -0.013743213, -0.009321589, 8.401267e-4, 0.007821421, 0.015144536, - 0.009406296, 0.0049473285, 0.0020200734, 0.024315398, 0.011648914, - -0.0042506247, 0.012283769, -0.045355134, 0.0016856325, 0.022032395, - 0.011992899, -0.0084083965, 0.012446546, 0.013275695, 2.499487e-4, - -0.02101267, -0.0113482885, -0.023161124, 0.0056965407, -0.026687127, - -0.025491035, 0.012695087, 0.0015367828, 0.0026225958, 0.00886973, - 4.5462014e-4, 0.0058404715, 0.019663826, -0.019276278, -0.0135384975, - -0.013441051, -0.012250845, 0.016134718, -0.001618911, -0.011573591, - -0.035915527, 0.024789207, 0.012998228, -0.031359922, 0.019117137, - -0.020418141, 0.006407904, -0.007931088, 0.006691182, 0.0165176, - 0.006396913, 0.022803353, 0.0029505894, 0.016367428, 0.014619334, - -0.027178347, 0.031049104, -0.00546815, 0.0160996, -0.005186231, - -0.012552728, 0.0075907907, -0.030712688, -0.0063616037, -0.0013100179, - -0.006267126, 0.004091656, -0.030496031, 0.0058459467, 0.011605103, - -0.019298682, 0.015939428, -0.026595373, -0.030961791, -0.007139387, - 0.0059788036, 0.008546036, 0.011291352, 0.014039545, -7.566961e-4, - 0.0034413128, 0.0032323464, 0.0032201917, 0.001866815, -0.009353245, - -0.0062061264, -0.020031719, -0.025597375, 0.006725455, -0.0056784586, - -0.003407097, -0.004343838, -0.013765746, -0.018516937, -0.014735261, - 0.0057507334, 0.010746044, 0.006775065, -0.02341644, 0.003914884, - -0.016033791, -0.028694829, 0.013895015, 0.01988531, -0.0038809367, - 9.461725e-4, -0.008996154, -0.016418703, -0.025963524, -0.008809237, - 0.0015164552, 0.0021159998, 0.023440685, 0.01299768, -0.013595445, - 0.02285737, 0.008022296, -0.00730318, -0.014911252, -0.041614383, - -0.003346261, 0.031369336, -0.01021816, 0.011259557, -0.0041113896, - -0.00496358, 0.010985743, -0.022962477, 0.02506279, -0.013770668, - -0.008594318, -0.001466133, 0.010499209, -0.0037950047, -0.017532289, - 0.0037681924, -0.013615368, -0.012141417, -0.021779373, 0.0047093662, - -0.008668107, 0.009739349, 0.018780945, -0.013235627, 0.021724131, - 0.025974002, -0.015177741, -0.0050901636, 0.010779602, -0.019773327, - 0.03202206, 0.01357068, -0.009454451, 0.031450454, 0.0076080468, - 0.014389796, 0.005308835, -0.017950688, 0.013633434, 0.0021674824, - -0.02567278, -0.010448528, 0.017738232, 8.2123996e-4, -0.006839812, - 0.0060818726, -0.021993866, 0.012811198, 0.012691166, 0.011300218, - -0.0051887888, -0.0019847641, -0.009487288, -2.2609098e-4, 0.002708769, - 0.003748147, 0.023514232, -0.023852948, -0.004179201, -0.02059822, - -0.003953977, -0.0029200981, 0.010488301, 0.003527868, 0.007050626, - -0.002605501, 0.006945864, 0.01080364, 0.0016920647, -0.0065287217, - -0.014438626, -2.3090188e-5, -7.239203e-4, 7.289563e-4, -0.014154198, - 0.0023956704, -0.033020407, 0.028968146, -7.8676053e-4, 0.007087799, - -0.006876706, -0.010777392, -0.0045803622, -0.022335611, 0.004327656, - 0.009421315, 0.0059426622, -0.023334295, -6.7824894e-4, 0.013601682, - 0.0012987765, 0.007130738, -0.004391029, 0.0017384855, -0.0037330352, - 0.018546686, -0.0041116634, 0.01344677, -0.0069300327, -0.01141387, - 0.011235615, -0.009293115, 0.007962468, -0.0022157743, -0.0038683899, - -0.014505971, -0.0037287876, -0.024047766, 0.001487815, 0.0070549897, - -0.003971664, 0.010396382, -0.013415013, -6.748677e-4, 0.012425977, - 0.023802435, -0.033338085, -0.026183862, -0.044279374, -0.005060058, - -0.017223174, 0.0045088767, 0.0024380647, -0.027572898, -0.013074532, - -0.0066222907, 0.003994916, -0.0032203333, 0.003356404, -0.037277903, - 0.027248533, -0.011526219, 6.576853e-4, 0.011870124, 0.016382374, - -0.044510767, 0.014342945, 0.032364737, -0.0058142957, 0.007150188, - 0.0012679575, 0.0025834313, 0.008228563, 0.0032753511, -0.0051584393, - -0.010562546, 0.021652043, 0.012410567, -0.009429595, 0.022138525, - 0.0066821724, -0.0044653993, -0.006932736, 0.005221426, -0.021217285, - -0.013367576, 0.013788621, -0.021069054, 0.015905643, -0.00867189, - -0.006410501, 0.0076791355, 0.0057961424, -0.02388842, 0.014589623, - 0.0012421021, -0.029096553, -0.01041287, 0.020717835, 0.019886266, - 0.0076182657, 5.042998e-5, -0.0022239466, 0.017084535, -0.005590037, - -0.017591001, -0.004073225, 0.0010362681, -0.0070189843, -0.008175982, - -0.013075852, 0.064233966, -0.010035814, 0.015840486, -5.848624e-4, - 0.005942397, 2.649706e-4, -0.0016723973, 0.006580237, -0.008364361, - 0.008868991, 0.006834754, 0.0020167008, -0.030723378, 0.008131866, - -0.020254059, 0.00484976, 0.028246779, -0.0015193429, -0.0077346484, - 0.023669738, 0.014994183, 0.014592561, 0.006840154, 0.01344926, - 0.008424743, -0.004736162, 0.015064477, -0.007748827, -0.009637254, - -0.015090775, -0.002598338, 0.009469198, 0.019708177, -0.003875556, - 0.02309825, -0.007503695, 0.012696151, -0.018872743, -0.0109505365, - -0.018190375, 0.018924898, -0.0063089975, 0.0017284666, -0.029087313, - 0.027459692, -0.04903015, -0.003068468, 0.0144365495, 0.0056888396, - -0.008865063, 0.02441818, -0.0032614996, 1.2573354e-4, -0.013953331, - -0.0016477417, 5.347983e-4, -0.036895566, 0.006559862, -0.013415749, - 6.660618e-4, -0.024549004, 0.018681923, 0.024390794, 0.0074562663, - -0.008849619, 0.007466889, -0.013537589, -0.033833202, 0.0068210694, - 0.034361806, -0.022887642, -0.0037936957, -0.016594384, -0.0049077817, - 0.009615802, -0.02050456, 0.012779529, 0.021457912, 0.01680679, - -0.003601952, 0.032355558, 0.010828221, 0.001035531, -0.013815515, - -0.025070716, -0.013015232, 0.0015920997, 0.01659639, -0.0032508988, - 3.0280463e-4, -0.021354599, -0.0011592578, 0.009105575, -0.04136915, - -1.5401086e-4, 0.018657213, -0.011239981, -0.007338403, 0.01595513, - 0.009483984, 0.025510104, -0.015884321, 0.023178864, 0.010352509, - 0.010112687, 0.018684894, 0.038640466, 0.030689849, -0.008806328, - -0.008591164, -0.017566847, 0.021290293, 0.0073605543, -0.010451019, - -0.010076399, 0.009907242, -0.0125326235, -0.025969146, 0.022283973, - 0.03392109, 0.0035427369, 0.015679829, -0.030244919, -0.0025616812, - -0.005075837, -0.021164306, 0.023444206, -0.006823155, 0.020794734, - 0.015435374, -0.00805509, 0.028748222, 0.01623127, 0.016474813, - 0.006013735, -0.0050583016, 0.0050623002, -0.017301489, -0.032569453, - -0.035323516, 0.025946742, 0.02575129, 0.014082867, -0.012922152, - -0.018971534, -0.019506492, 0.0016394448, -0.016453696, 0.010387911, - 0.025194973, 0.010578734, 0.016863003, -0.00942145, -0.013200829, - -0.004043392, -0.014090498, 0.012591014, -3.0044338e-4, 0.022275496, - 0.00805667, 0.004248954, 0.006691245, 6.316159e-4, -0.002020158, - -0.019734988, 0.019111382, -0.0041071502, -0.0061004334, -0.025406849, - 0.013293558, -0.01874236, 0.007343282, 0.011663727, 0.02296406, - 0.012414623, 0.004885619, -1.9531914e-4, 0.003785837, 0.015584106, - 0.0066752774, -0.007815874, -7.973063e-5, -0.009265777, -0.00829089, - -0.0034478821, 0.012073116, -0.021240631, -0.0069374833, 0.004783991, - -0.007624542, 0.01656162, -0.00741413, -6.1339623e-4, -0.017123671, - 0.0032204362, 0.034654766, -0.0044707777, 0.01414923, -0.012460471, - 0.024725243, -0.016305441, 0.0068711247, -0.007301627, -0.028049031, - -0.021463191, -0.01661087, -0.001989625, -0.0014833508, -0.0015104823, - -0.02439948, -0.0089877, -0.0046557416, -0.029045295, 0.0016595789, - 0.02560386, 0.0074336734, 0.010173361, -0.019814538, 0.0103670275, - 5.460416e-4, 0.013399803, -0.007959444, 0.02207747, 0.013419239, - -0.0033055756, 1.7093506e-4, -0.0046677133, -0.0033980715, -0.018516473, - 0.014121998, -0.020023474, 0.017341195, 0.02629946, -0.005178636, - 0.013438756, 0.01781368, -0.0125872, 0.015723312, -0.005775073, - -0.0028290797, 0.028928371, 5.8211776e-4, 0.027534382, 0.0023014436, - 4.035684e-4, -0.0011819059, 0.0055638617, 0.010748173, -0.018742526, - -0.008058082, 0.007451376, -0.027141048, -0.020127233, 0.0188481, - 0.0030862452, -0.0060244175, 0.019175986, 0.0051909387, -0.040109884, - -0.002936855, 0.006179191, -0.01591307, 0.0018808288, 0.0025725276, - 0.008047887, 0.030871414, -0.008817294, 0.0042382753, 0.010161444, - -0.012895493, 0.017361902, 0.014217929, -0.014126735, -0.0055345725, - 0.008913389, -0.028910426, 0.007901401, -0.024581015, -0.003293042, - 6.877105e-4, 0.011467799, -0.026747873, 0.014829025, -0.024402853, - -0.004370161, -0.018542571, -0.0072352597, -0.008495648, -0.003325293, - -0.00940008, -0.00949018, 0.0014812293, 0.022603663, -0.017560316, - 0.018323312, 0.03110785, 0.0019675407, 0.0011836704, -0.007625755, - -0.008065844, 0.021373011, 0.010760979, -0.0149791995, -0.017829401, - 0.010282805, 0.0037252237, -0.021004206, -0.0037986864, -0.022605436, - 0.015980318, -0.01523709, -0.0010978007, -0.008850063, 0.01296512, - -0.010338592, -3.7995566e-4, 0.019480625, 0.024612308, -0.025130235, - 0.01951156, -0.0038219774, -0.037068117, 0.011312038, -0.01680848, - 0.020014506, 0.0018333035, -0.0059312996, 0.002449813, -0.0032448636, - -0.026678566, -0.0327609, -0.014476909, 0.0096717905, -0.010737863, - 0.019095933, 0.003773598, 0.005500753, 0.0139095215, 0.013731496, - 0.00115538, -0.009271995, -6.1842415e-4, -0.009702226, -0.015775304, - -1.7302297e-4, 0.02628767, 0.015313912, -0.004039228, 0.008519393, - 0.0036287596, 0.03001023, 0.013223376, -0.026564462, -0.015036298, - 0.0093009705, 0.0019038288, -0.004091317, -0.009713044, 0.0010454584, - -0.013896668, 0.0030023907, 0.0030465263, -0.004329089, 0.0022790588, - 0.009329179, -2.2615907e-4, -0.0018408021, 0.019852607, -0.0030950007, - 0.025747066, -0.022201184, -3.5384847e-4, -0.015396419, 0.013355042, - 0.023366315, 0.0076534622, 0.014465147, 0.028148271, 0.03392757, - 0.008640567, -0.004115972, -6.280815e-4, -0.016633423, 0.017464248, - 0.023463499, 0.0059540337, 0.016793508, -0.005535583, 0.0019749263, - 0.008836835, -0.010618472, 0.026649037, 0.0077677895, -0.006902886, - -0.036730997, -0.024583863, -0.026181515, 0.03483883, 0.0067446204, - -0.018921161, -0.022910146, 0.0012693634, -0.0013251791, -0.003095837, - -0.025075369, 0.010470421, -0.008446892, -0.0028198028, -0.004671765, - 0.030660672, -0.018328015, -6.3464657e-4, -0.033344887, -0.008758902, - -6.560101e-4, 0.012463685, -0.011712587, 0.001908302, 0.014184347, - 0.007832718, 0.015447801, -0.0047491784, -0.0054975813, 0.016833697, - -0.019267835, -0.0056596906, -0.0012322308, -0.0069255647, 0.009695421, - -0.013603837, 0.0026099284, 0.02501169, -0.022372259, -0.024685238, - 0.014844996, -0.013069767, 0.02284658, 8.0262986e-4, 0.009457951, - -0.0010393981, -0.01610208, -0.016095484, -0.0038107808, -0.012398251, - 0.0068573514, 0.0029726573, -0.015353509, -0.010258888, 0.0107631665, - -0.0048999945, -0.0074937893, -0.028973788, -0.019751737, 0.005815427, - 8.196989e-4, 0.005281526, -0.0021995972, 0.022470608, 1.9218653e-4, - 0.003998721, 0.04007591, 0.00941946, -0.015024043, 9.611175e-4, - 0.02534947, -0.021140715, -0.003055867, 0.014823349, -0.015309374, - -0.005897134, -0.012732051, 0.017058382, -0.031267818, 0.024026057, - 0.0053703682, 0.008864498, -0.01497858, -0.017424047, -4.927612e-4, - -0.021357212, 0.012698182, 0.0140563445, -0.0049883137, -0.0165974, - 0.02066293, -0.012039027, -0.0036371332, 0.02588929, 0.01835097, - 0.031779632, 0.012356035, -0.0021454252, -0.0030026308, -0.008999621, - -0.023724161, 0.004221342, -0.0059897555, 0.004496819, 0.015651032, - -0.011594048, 0.010572923, -0.0063179904, -0.016304854, 0.016093358, - -0.010298101, -0.009766653, 0.0011223387, -2.569818e-4, 0.028145975, - -0.019244183, 0.0061337613, 0.010794704, 0.011153629, 0.0013778636, - 0.018454695, -0.016424634, -0.028184364, 0.011755197, -0.025680782, - -0.0044454774, -0.009854419, 0.018522508, -0.008621392, -8.076204e-4, - -0.002414771, 0.0017648104, 0.0035210813, 0.006177349, 0.0045580785, - 0.0011760643, 2.0633034e-4, 0.032384165, 0.01904466, 0.029392226, - 0.03246833, -0.009662981, -8.340324e-4, 0.024303036, 0.006488325, - -0.026837599, -0.006904061, -0.026207497, -0.008142142, 0.019913886, - 0.015322707, -0.014477428, 0.01450393, 0.027932225, 0.006481054, - 0.0069088656, 0.0014942618, 0.02846191, 0.009836767, -0.014738211, - 0.018979535, 0.018636748, -0.0070402827, 3.833402e-4, 0.011049309, - -0.010866889, -3.8700548e-4, 0.015694674, -0.0026409018, 0.015036006, - -0.0067815506, -9.1010897e-4, 0.0014346235, 1.5234288e-4, 0.024046412, - 0.0054583703, 0.009149711, -0.0064412775, 0.02229773, 0.0021474212, - -0.011588674, 0.013792072, -0.006117839, 0.0024786824, -0.0120125925, - 0.0051142033, -0.003220279, 0.001670127, -0.020004453, 0.0076437728, - 0.009787956, -0.015350118, 0.022726122, 0.021989172, 0.0023344576, - 5.6114946e-5, 0.013042088, -0.007128241, 0.0069400216, 0.0032781924, - 0.0033106715, -0.025609406, 0.024627617, 0.010500638, 5.900594e-4, - 6.99556e-5, -0.036822982, 0.0069037136, 0.011087565, -5.488326e-4, - 0.01620025, 0.0140008265, -0.012114252, 0.013608976, -0.030436544, - 0.015817981, 2.1248945e-4, 0.009184599, -0.012211456, 0.027352873, - -0.025675682, -0.0033899432, 0.011425021, 0.0058568204, -0.0024250636, - -0.0064532803, -0.0041639, -0.009091051, -0.0046617696, 0.026151856, - -0.02043394, -0.014596894, -0.030501269, -0.008928131, -0.037229348, - 0.009155523, 0.027513133, 0.0035456491, 0.017283902, 0.03421553, - 0.0053078053, -0.017231382, 0.0019669454, 0.013087246, -0.008959885, - 0.0062857186, 0.025921127, 0.018010886, -0.008847595, -0.0052325614, - -0.015146777, 0.012418552, -0.0022980012, 0.015678804, -0.0016750017, - -3.1755262e-4, -0.0201275, -0.0077268826, -0.020345343, -0.011560419, - -0.0074100895, -0.022875205, -0.0031766973, 0.008399706, 0.0010084902, - 0.006319542, -0.014271369, 0.01245079, 0.0047052084, 0.0041156183, - -0.00632499, 5.6280856e-5, -0.009860959, 0.041011225, 0.014784519, - -0.021829424, -0.008589238, -0.018336194, 0.021557355, 0.0042814324, - -0.043379433, 0.0025035364, 0.017300166, -0.012794825, -0.022250801, - 0.021041604, 0.012312789, -0.019464372, 3.4027317e-4, 0.004307216, - -0.0071161618, 0.034547623, -0.0090759685, 0.01515737, 0.009927375, - -0.006477139, 0.029260699, 0.006007934, 0.017963786, -0.024318611, - 0.008164195, -0.003952364, 0.0019098952, -1.4261634e-4, 9.540546e-4, - -0.016972285, 0.008504844, 0.026308488, -0.0023203664, 0.011484107, - 0.0016599123, -0.0027342255, -0.015118244, -0.022363221, 0.0017875012, - 0.039982826, 0.015450399, -0.00615312, -0.021429354, 0.01822056, - 0.018417854, 0.021824293, -0.0033069486, -0.0041865855, 0.010204652, - -0.024903702, 0.018983224, -0.027577253, -0.0077309664, -0.01232789, - -0.012703745, -2.3383196e-4, 0.007460107, -0.039135683, -0.0096423, - -0.001887445, 0.03634822, -0.025841847, 0.016780691, 0.0025206849, - -0.006443859, 0.023115743, 0.021692539, 0.028216714, -0.0053300317, - -0.013021479, 0.01852115, -0.01006193, 0.0075973235, -4.6686304e-4, - 0.01185409, -0.007576791, 0.006846157, 0.01248918, 0.013155133, - 0.017059999, -6.3165685e-4, 0.0072292374, 0.015324219, 0.013499076, - 0.0061275237, -0.019287437, -0.010314202, 0.0041930536, -0.009787726, - -0.006443798, 0.005358046, -0.034456704, -0.022966446, -0.008447885, - 0.0018538089, -0.0049378467, 0.0053968537, 0.010084056, -0.007614215, - 5.828701e-4, 0.015103847, 0.023605395, 0.030562196, -0.023172, - 0.015219614, -0.0027026632, 0.0021771917, 0.009940258, -0.020059524, - 0.011858738, 0.00822866, -0.009587197, 0.03430143, 0.012092917, - 0.025265403, -0.005302457, -0.0030126965, -0.018006464, -4.979839e-4, - -0.008220145, -0.001985704, -0.005875145, 0.0010620964, 0.013805712, - 0.005162825, -0.0256612, -0.0044378014, 0.023897473, -0.009859646, - 0.031779885, 0.010921969, -0.0046811583, -0.03922776, -0.010733626, - 0.03166855, 0.03071742, 0.022784738, 0.018832892, -0.004914887, - -0.004407896, 0.008696126, 0.005082093, -0.0033196385, -2.636712e-4, - -0.006637406, 0.0022749933, -0.01131262, 0.006053503, -0.0013522633, - -0.021199584, 0.014307537, 0.019127995, -0.00993591, -0.020614322, - -0.002569477, -0.015204798, -0.0017234297, 0.00865913, -0.008496442, - 0.018536711, 0.0029646964, 0.012766829, -0.011874023, -0.009974244, - 0.020532196, -0.0071831183, -0.011165012, -0.019626213, -0.008958774, - 0.016839733, 0.0062265806, 0.013088115, -0.010028774, -0.0041162, - -0.016154412, -0.014955451, -0.006165557, -0.0057569924, 0.013675724, - 0.0059621735, 0.0045077424, 0.0016682082, 0.026171006, -0.011926198, - 0.036884766, -0.008921742, -0.003085669, 0.028207287, -0.00876969, - 0.007108402, 0.017025422, -0.0074896566, -0.0063621053, 0.014660323, - -0.018660499, 0.0043359827, -0.023531979, -0.015559097, 0.0147771565, - -0.005060763, 0.010037411, 0.0028879212, 0.004968994, 0.007963132, - -0.010563427, 0.013686317, -0.017626654, 0.0075572296, 0.008906775, - 0.030737605, 0.0058626723, 0.017129933, -0.021391524, 0.023291666, - -0.018816251, 0.011054386, 0.011529127, 0.01255261, 0.0024379233, - -0.015349149, -0.0034174146, -0.01850185, 0.013452238, -0.02525746, - 0.00556872, -0.00278529, -0.0064175995, 0.005180236, -0.006543451, - -0.006302616, 9.5133524e-4, -0.015010411 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.002362657, -0.026336377, -0.004854052, 0.008792101, 0.008970286, - -0.0030814048, -0.0025278828, 0.019742139, 0.015820138, 0.009103636, - -0.008822224, 0.0021789167, -0.008833599, 0.004506464, 0.009375252, - -0.010369547, 0.0069152447, -0.009267548, 0.014312828, -0.013755181, - 0.015384313, -0.009812715, 0.021022761, -0.002293242, 0.015509464, - -0.017800827, -0.0043560998, 0.006609414, -0.0048104557, -0.0072933077, - 0.01694842, -7.5819425e-4, 0.0027593502, 0.0016764443, -0.022849014, - 0.002726364, -0.0025490255, 0.02503073, 0.023466757, -0.0037765938, - -0.008843635, 0.018848611, 0.012003092, 0.008901728, -0.0077602477, - 0.002954563, 0.017752005, 0.0036062323, 0.008178203, -0.0030938499, - -0.008574937, -0.013488184, -0.0072384835, -0.018650042, 0.020971034, - 0.0023110125, -0.005490845, -0.016193515, 0.007503103, 8.101001e-4, - -0.031158552, -0.02549665, 6.6522625e-4, -0.0026508884, 0.004245676, - -0.020986244, 0.010366013, 0.0227009, 0.012271897, 0.005927537, - 0.015462555, -0.009799426, -0.018789193, 0.0064354734, 0.0049257777, - -0.012905814, 0.0048894645, -0.0037106161, 0.004296141, 0.013274155, - -0.0076535554, -0.008571216, 0.0034120341, -0.02927361, -0.036900613, - 0.022586554, 0.012629641, 0.0023951153, 0.020075327, 0.0246423, - 0.024234345, 0.007491, -0.01174881, -0.012467172, 0.00967189, - -0.009845087, -0.007636929, 0.017960506, -0.018264623, 0.001973288, - 0.008721049, 0.0036863992, -0.017073182, -0.011577089, -0.030239033, - 0.016215188, 0.004816547, 0.0037077388, -0.0039590057, -0.020671891, - -0.0012714089, -0.012770692, 0.0010115408, 0.020090578, 0.03229479, - 0.00832101, -0.023085516, 0.01751644, -0.019754866, 0.0076524224, - 0.009654789, 0.029095767, -0.012268819, 0.032170758, -0.016696164, - -0.0048088334, -0.0052722823, 0.013136851, -0.007559402, -0.015375359, - -0.0014119803, 0.009537395, -0.013716923, 0.008702459, 0.011661292, - 0.010970436, 0.03099582, 0.013168355, 0.0063531203, 0.027263528, - -0.03536924, 0.02391508, -0.0037642606, -0.011462545, -0.026423553, - -0.004256248, -0.008866838, 0.0045311125, -0.018806497, -0.0058159763, - -0.005856057, 0.001120869, 0.0028858264, -0.01222116, -0.011286411, - 0.025100607, -0.005631554, 0.002949822, 0.024558812, 0.0033260752, - -0.0040182592, -0.012710388, 0.03352791, -0.014056225, -0.016528292, - -0.007893691, -0.0016069956, 0.0062904414, 0.013715938, -0.02485715, - -0.0034670993, -6.4115814e-4, 0.008384867, -0.013833301, -0.013903722, - -0.01006086, 0.0058147367, 0.008590925, -0.011958052, 0.034280684, - -0.0047283233, 0.01790926, -0.010848055, -0.011799855, 0.017345924, - 0.011564275, 0.011180477, 0.0019701961, -0.01605944, 0.01024197, - 0.015749713, -0.0044849617, 0.009485426, -0.016689857, -0.016265498, - -0.02806168, 0.004142497, 0.016338862, 0.0087742, -0.017383372, - -0.011974888, 8.582826e-4, 0.003490638, 0.010243939, -0.0037303427, - -0.009352332, 0.005523618, -0.0018950355, 0.006315758, 0.002270369, - -0.03177427, -0.01980859, 0.011170563, -0.0011563485, 0.0027735382, - 0.010726972, -0.02745099, -0.008874647, 0.01962167, 0.020957878, - -0.013914802, 0.024279682, 0.022411143, 5.0518365e-4, 0.026651498, - -0.017146261, -0.017535398, -0.02493343, 0.0076325214, 0.01099029, - -0.010947938, 0.015180709, 0.028422145, 0.003169829, 0.016535006, - -0.023435866, 0.0054168114, -0.015906401, 0.01888954, -0.028985675, - -0.015539143, -0.009905836, -0.02241899, -0.005345054, 0.02145353, - 0.0073211407, 0.020468628, -3.0425016e-4, -3.1844765e-4, -0.004628343, - -0.026975034, 0.009065185, 0.010205608, 0.022725519, -0.008838364, - -0.009240604, -0.025549572, 0.0036840271, -0.015259057, -0.021780709, - 0.020667847, 0.002785566, 0.0042826454, 0.013581675, -5.4554973e-4, - 0.016946035, -0.03393921, 0.019480178, 0.0051547303, -0.017885124, - -0.0021534003, 0.019968295, 0.004123567, 0.012101003, 0.022238005, - 0.015605767, -0.010787463, 0.0029184523, 0.009341337, 0.009053794, - 0.013972178, -0.014675675, 0.00368057, 0.014337437, -8.001033e-4, - 0.005807503, -0.0064335, 0.0017099394, -0.017811205, -0.015247506, - -0.016627552, 0.022066476, -0.0013886864, 0.018882323, 0.00133657, - -3.9404404e-4, -7.503992e-4, 0.017540678, -0.007995819, -0.0060638813, - -0.014138487, 0.010745974, 0.0024723373, 0.01476593, 0.03210572, - -0.007192307, -0.005788896, 0.025227679, 0.012421307, -0.02314248, - 0.015647344, 0.012773741, -0.015065652, 0.0058520106, 0.027086858, - -0.0041615744, 0.0020887975, 0.015223487, -0.007645664, 0.0041834703, - 0.0067429743, -0.022631356, -0.024116501, -0.009440126, -0.028028423, - 0.016520454, -0.00555375, -0.0043720966, 9.3397713e-4, 9.144777e-4, - -8.0105755e-4, 0.0012753678, 0.009462204, -0.00772417, -0.023171172, - 0.006197157, -0.0054448564, -0.016192164, 0.01960535, -0.0077515277, - -0.007261975, 0.0295843, -0.009752441, -0.0029710978, -0.016987244, - -0.0065846806, -0.007765417, -0.015473159, -0.00204079, -0.02224033, - 0.0013954925, -0.019363953, -0.027256148, -0.035469864, 0.010429622, - 0.035568427, -0.010472769, 0.02313609, -2.0975851e-4, -0.0065245186, - 0.016732909, 0.018332414, -0.025399623, 0.0030750514, -0.013264225, - -0.025851237, -0.004245432, -0.006949226, -0.001345525, -0.010104405, - 0.015208997, -0.024214981, 0.0068075615, -0.039189067, -0.011697771, - -0.0150604155, -0.0016718716, 8.983462e-4, -0.02173445, -0.007499184, - -0.010695084, 0.0038327281, 0.0059941392, -0.019569134, 0.018656943, - -0.012022545, -0.013595361, -0.0019319388, 0.02268746, 9.924414e-5, - -0.0017423168, -0.024628047, -0.022690805, -0.0053208466, -0.024180036, - -0.031021643, 0.018272813, 0.018200813, 0.004628962, 0.0052295625, - -0.02627004, 0.016600268, -0.02455921, -0.0047482518, 0.03366644, - 0.01201144, -0.009099407, 0.005728565, -0.011691533, 0.0123497965, - 0.013791286, -0.0014227275, 0.019965487, -0.012652969, 0.006110772, - -0.027690273, 0.021019246, 0.008774878, 4.6722285e-4, -0.013261549, - -0.01920205, 0.02904668, -0.024268566, 0.014663023, 0.0064121005, - -7.081908e-4, 0.024241136, -0.0058689215, -0.013377604, -0.013250392, - -0.010501137, -6.2015525e-4, 0.018379651, 0.016276475, 0.0010744957, - -0.010391434, -0.011455606, -0.0069682654, -0.022083297, -0.017416313, - -0.009275798, 0.015588419, 0.020563442, 0.018654041, -0.020913254, - -0.00776117, -0.0025118005, -0.0065105655, 0.027081864, -0.016792428, - -0.013191119, -0.0010285323, -0.009839397, -0.025451038, -0.006379333, - -0.008904961, -0.009417459, -0.0121303005, -0.027503878, 0.0060454807, - -0.035751686, -0.030654222, -0.0034762917, 0.009542454, 0.0041208523, - 7.31757e-4, 0.017051738, -0.019345608, -0.0104195, -0.030370785, - -0.031604722, -0.0016945158, -0.03551681, 0.028201442, -0.007378542, - 0.017830096, 0.012913107, -0.002770003, 0.00911498, -0.002465735, - -0.013358193, 0.028761921, 0.01135695, -0.0055054002, 0.014183838, - -0.001245747, 0.034938123, -0.004713332, -0.0033511203, -0.028145261, - -0.018204145, -0.01022543, 0.017181387, -0.011644798, -0.007982705, - -0.015282911, 0.04577202, 0.0029206362, -0.0034266969, -0.0069968738, - 0.0035119783, 0.013996156, -0.006013108, 0.025821604, 0.0036423309, - -0.020003147, -0.008984306, -0.00287995, -0.009268961, -0.011890016, - -0.0026403016, 0.02603013, -0.0071476637, -0.014434158, -0.0071525783, - -0.0021858162, -0.008335695, -0.013733345, 0.016006837, 0.0072632967, - -0.014688271, 0.0114049325, 0.0074847285, 0.011535168, -0.013559304, - -0.024923764, -0.0037699866, 0.0036867254, 0.035967823, -0.009433729, - -0.041444246, 0.01430181, -0.0035803143, 0.022715198, 0.004244129, - 0.023957552, -0.008140715, 0.0038978334, 0.0040523806, 0.004784741, - 0.024486534, 0.0022727356, -9.0932107e-4, -0.008062446, -0.022887023, - -0.014587437, -0.007443265, 0.012147816, -0.0051600114, 0.009606289, - -0.0021903324, 0.0047244523, -0.016199874, 0.015110292, -0.01090328, - -0.0015761966, -0.03244288, -0.0050147856, -0.010434317, 0.016488826, - 0.011498709, 0.019002771, -0.007865261, 0.020867415, 0.013458919, - 0.018545505, -0.013014187, 0.008910416, 0.015608963, -6.4776793e-7, - 0.04302588, 0.036517847, -0.01327612, -0.032002985, -0.02480962, - -0.0037988988, -0.011626179, -0.03578215, -0.013088365, -0.020285323, - -0.041119285, -0.007175423, -0.004275085, -0.019212402, -0.004591914, - 0.012586448, -0.018560221, 0.0041209417, -0.0016633943, -0.009395648, - 0.008367574, 0.0034890578, 0.0049990728, -0.0074371067, -0.014015272, - -0.0046523195, -0.009772611, -0.003037174, 0.032659423, -0.017216153, - 0.017026313, 0.0049718935, -0.008317602, 0.006403871, 0.0045690043, - 0.036417488, 0.023625387, 0.0015139735, -0.016742414, -0.002556944, - 0.0208516, 0.003982254, 0.0015245766, -0.0036423577, 0.0038628299, - 0.0015432227, -0.0016705958, 0.017863298, 0.013364098, 0.0015883576, - -0.0323568, -0.009739117, 0.009772873, -0.013718332, 0.02358181, - 0.009975559, -0.0020958637, -0.0063753417, 0.018832209, 0.011672391, - 0.009668976, 0.005984069, -0.021812772, 0.020928277, 0.020129792, - -0.017100878, -0.00850813, -5.677732e-4, 0.006619389, 0.015340187, - -0.00245943, -0.020303594, -0.012183635, -0.0013941855, -0.015371548, - -3.837359e-4, 0.021208655, 0.025307996, 0.002680889, 0.01587134, - 0.0021926598, 0.003874811, -0.008036944, -0.017474936, -0.0066356463, - -0.0043050842, -0.013026705, -0.015473965, -0.0017878119, 0.016411282, - -0.010363407, 0.012992379, -0.009720594, 0.015107026, -0.0013504488, - 0.0039524846, -0.0016954397, -0.02517487, -0.018875778, 0.021652991, - -0.017496552, 0.013025995, -9.780434e-4, -0.019047555, -0.027192485, - 0.0077108876, -0.018076884, -0.015341352, 0.007828035, 0.023508709, - 0.0020190822, -0.0062253936, -0.021202572, -0.019006643, 0.021793984, - 0.012019558, 0.0031385026, 0.0017209343, -0.010648475, 0.010494367, - 0.00885731, -0.019947987, -0.004049221, -0.002359097, -0.026944872, - -0.021505564, -0.03456263, 0.0040453435, -0.008437459, -0.010167854, - -0.0023375335, 0.016675794, 0.03216983, -0.013939732, 0.019792028, - 0.01177893, 0.013501525, -0.008636367, -0.021991378, 0.008565906, - 0.011618825, 0.007879312, 0.012763573, 0.00130442, -0.015805265, - -8.797645e-4, 0.0068833907, -0.0070905252, 0.011814761, 0.013588284, - -0.018970426, -0.005080737, 0.012303329, -0.034469128, -0.021801863, - 0.0023611898, 0.016231779, -0.018715778, 0.012823277, -0.037315425, - 9.1519934e-4, -0.005877193, -7.981407e-4, 0.006416279, -0.0012431216, - 0.0053073834, 0.012214066, 0.01993494, 0.017342215, 0.04143819, - -0.0082293, -0.0070688785, -0.011493656, 0.015421427, 0.024362035, - -0.01675258, -0.009112954, 0.019869784, -0.019895177, 0.0113475565, - -0.016970461, 0.010734515, 0.0033842954, -0.008085168, -0.02488098, - -0.006543844, -0.029047921, 0.040986605, -0.0065060677, -0.004992688, - 8.7692955e-4, -0.025048576, -0.023880923, 0.0018369156, 0.0017263851, - 0.023977542, 0.042800575, -0.008735488, 0.012531336, -0.0039555826, - -0.008460569, 0.006363535, 0.01696364, -0.007088492, 0.010268349, - -0.008450211, 0.0081055, -0.0018608158, 0.0027171075, -0.006279275, - -0.002317486, -2.3624697e-4, 0.013359096, -0.012585582, -0.009485482, - 0.01535261, -0.009129949, 0.012319673, -0.022903368, -0.0033545087, - 0.0037424928, -0.004078526, 0.0092061795, -0.013136716, -0.004120823, - 0.002458648, -0.028141778, 0.0014742367, 0.020071607, -0.0031708058, - 0.02764652, -0.0138496, -0.017897561, 0.009444022, -0.022437781, - 0.010192045, -0.011221933, 0.019396147, -0.015844472, -0.031488296, - 0.013229901, 0.0044664317, 0.008962954, -0.0048174635, -0.021659002, - -0.0053490233, -0.0066590253, 0.0012643699, 0.0018230102, -0.008878027, - 0.0077578123, 0.025701916, 0.0036777516, -6.65909e-4, 0.018567596, - 0.005461092, -0.0054158727, -0.0010811925, -0.012823088, -0.025239877, - 0.034768797, -0.004131115, 0.01843702, 2.029074e-4, 0.02333228, - 0.034539007, -0.0010383199, 0.04214505, -0.0070122653, -0.036748573, - 0.01061759, 0.0062086624, -0.012823038, -0.012276744, 0.027839437, - 0.0065466175, 9.6760964e-4, -0.009553128, 0.038299643, -0.006842486, - -0.019332372, -0.0027048518, -0.008372584, -0.0036772194, -0.018934153, - -0.009594901, -0.0057500396, 0.0043380246, 0.0104687875, -0.0029857226, - -0.008776414, 0.032060813, -0.0252961, 0.0067052795, -0.002322623, - 0.011241936, 0.0031510976, -0.019538755, 0.0149741955, -0.006334172, - 0.012935045, -0.022312313, 0.018719181, -0.0033919956, 0.0084799705, - 0.002942555, 0.021731595, 0.01634619, 2.9625205e-6, -0.024070155, - 0.006597964, 0.0031361817, 4.532458e-4, 0.012401507, -0.006272308, - 0.007766107, -7.15627e-4, -0.015513676, -0.007247777, 0.009274053, - -0.038965296, 0.016467059, 0.01200105, -0.0074118874, 0.013909145, - -0.018491816, 0.009627494, -0.011222841, 0.026238032, -0.0082825925, - 0.018355586, 0.04164799, -0.0046468643, 0.022314206, -0.03723685, - -0.0105758, 0.0065087015, -0.0371545, -0.010134292, -0.014748682, - 0.040309228, 0.0014260513, 0.0082997, 0.018596433, -7.9492683e-4, - 0.0039145816, 0.016442578, -0.023431374, -0.0040021017, -0.0045388034, - -0.010757455, 0.011420572, 0.03777115, 0.017814329, 0.0060126423, - 0.0052950215, -0.013617941, -0.011631103, -0.015958749, 0.002701189, - -0.008117081, 0.033830423, -0.0066941455, -0.0039566755, 0.015461427, - -0.0240149, -0.00813554, 0.011623661, 0.021555983, -0.009765588, - -0.009069825, -0.002690321, -0.027245114, 0.0031053368, -0.005235897, - 0.0119700115, -0.02727705, 0.01094631, -0.018743876, 0.014649365, - -0.0336128, -0.029829787, -0.0020903046, 0.022061808, 0.0173644, - -0.010636868, 0.0016269238, 0.024184465, -0.015918113, -0.034769475, - -0.022139503, 0.009198311, 0.02749232, 0.009126485, -0.0017594838, - 0.025654592, -0.016449237, 0.0075905574, 0.012375079, 0.02353421, - -0.01322161, 0.021661382, -0.018162327, 0.016433109, 0.016400754, - 0.01717226, 0.006178609, -0.0071225744, -0.0051696645, -0.013029719, - 0.007895569, -0.012724486, -0.0033143822, -0.0023981445, 0.031699896, - 0.033180967, 0.006155193, 0.02088454, 0.013727843, -0.06598616, - -0.025008813, 0.020525007, 0.005797676, -0.034107264, -8.3133724e-5, - 0.0060050283, 0.0039914027, -0.034364335, -0.0022462057, 0.025717825, - -0.017556734, -0.0036468897, 0.0077245445, 0.008469398, -2.7121857e-4, - 0.0019469017, -0.00813813, 0.015474179, -0.008398096, -0.016203703, - 3.9628908e-4, -0.0047075516, 0.016687725, 0.01297628, -0.016286287, - -0.035624497, 0.025218591, -0.012209039, -0.013947504, -0.004627112, - -0.004182936, 0.04333638, -0.010177282, -0.0029938605, -0.033965837, - 0.027042529, 0.0107229045, 0.014534319, 0.00434559, -0.007223492, - 0.0014692376, -0.0047091898, -0.0062447926, 0.008513738, -0.0073050675, - 0.0027919442, 0.021320004, 0.021576539, -0.0065149358, 0.010683294, - 0.004357896, 0.0089224195, 8.7908853e-4, 0.017133927, -0.0020497942, - 0.020928085, 0.011131433, 0.022946559, 7.681537e-4, -0.021354012, - -0.015671203, 0.0077871107, 0.011659648, -0.021142354, 0.014872545, - -0.00989064, 0.0022808565, -0.01875804, -0.009233761, -0.030008655, - -0.006675006, -0.022255333, 0.0012994444, 0.027063664, -0.0092043, - 0.028974585, -0.014198777, 0.009934754, -0.019718666, 0.020702878, - -0.015788665, -0.00399583, 0.024883423, 9.701277e-5, -0.01676542, - -0.037089046, -0.014501853, 0.015304815, 0.01770242, 0.033795077, - 0.0022009804, 0.0059338096, -0.0057243016, -0.03329102, 0.030021546, - 0.005127522, -0.016680244, 0.011473408, 0.021757875, 0.017160133, - -0.018882608, -0.038161784, 0.02289973, 2.188537e-4, -0.0134127475, - -0.026800582, 0.003003965, 0.0012683393, -0.0026297928, 0.014422029, - -0.0022157857, 0.015170496, 0.009310275, -0.00456019, 0.0039856923, - 0.005738681, -0.0018870806, 0.0026821436, -0.029563474, -0.006934258, - 0.011251402, 0.023920147, 0.0025443565, -0.0067870207, -0.030343108, - -0.014197457, -0.0037569748, 0.009706583, 0.0037664955, -0.00530927, - 0.022105793, 0.036293585, -0.013393557, 0.014016673, -6.902567e-4, - 0.008232861, -0.027384592, -0.011866868, -0.012808376, -0.012077877, - -0.019798333, 0.0035917528, 0.015463111, -0.0036239438, 0.001235618, - 0.0068034455, -0.011069271, 0.02506831, 0.0046344413, -0.018505892, - -0.018962545, 0.0027703047, -0.0061494373, -0.0073810276, 0.013663513, - 0.040123425, 0.0070094727, 0.004046232, 0.010331173, -0.031398658, - -0.013606929, -0.0031706758, 0.013397861, -0.013855461, -0.026873479, - 0.025623111, 0.010502613, 5.461617e-4, 0.013087558, -0.0072440407, - 0.028520398, 0.011001974, -0.01623049, 0.009039919, 0.023450779, - -0.008625916, -0.0036503712, -0.019213805, 0.024779296, -0.021043746, - 0.015613863, 6.370895e-4, -0.010945109, 0.03488608, 0.00828813, - -0.0356835, -0.012629721, -0.009653346, -8.9215743e-4, -0.0049727494, - 0.015308148, 9.598289e-4, 0.012259159, -0.0039318753, 0.014308082, - 0.015985815, -0.010445238, -0.031271774, -0.011810423, 0.0034285611, - 0.010870533, 0.014542223, -0.0020057363, 0.00408886, -0.0135398125, - -0.0061234473, 0.017188165, 3.8347596e-5, 0.009968491, 0.003660126, - 0.012292253, 0.011284755, 0.020452578, -0.0055475426, 0.015684517, - 0.034265995, 0.029318856, 0.0020516117, 0.0015700249, -0.012544986, - 0.014270107, -0.019311903, 0.031144211, -0.012069176, 0.0032235247, - -0.019330097, 0.009043257, -0.0037936217, 4.7510644e-4, -0.0148371775, - -1.6744743e-4, 0.008340229, -0.003514025, 0.01801622, -0.005340752, - 0.0048417686, -0.005132114, 0.0012190633, 0.016739199, 8.3484844e-4, - -0.013417844, 0.01109807, 0.00462955, 0.0012058176, 0.0044722185, - 0.0153539125, 0.02956217, 0.0043036654, 5.527316e-4, -0.012106715, - 0.012015665, 0.018129326, -0.017410876, 0.0023977272, 0.01252143, - 0.010945606, -0.015480485, -0.02801306, 0.0100379065, 0.0044613457, - -0.0040074084, 0.0031938057, -0.0067217196, 0.009955788, 0.0024575829, - -0.012263141, 0.0037263904, -0.005924207, 0.005609184, -0.0028824066, - -0.0034782528, -4.764792e-4, 0.019475698, -0.012116198, 0.026405472, - -0.0035119297, -0.018863771, -0.0018990005, 0.009561843, -0.0125435935, - 0.012758505, 0.007437744, 0.013017626, 0.036135554, 0.0040238122, - 0.0017667422, 0.0028160405, 0.0028619124, -0.002920382, -0.01579786, - 0.026231747, -0.009943771, 0.010078217, -0.013853676, -6.4449164e-4, - 0.0021003862, 0.020621555, -0.0027875332, -0.0031836512, -0.030970305, - 0.0031285996, -0.03496968, 0.013668952, 0.008538613, 0.009138344, - 0.0062666573, 0.0013838975, 0.017468633, -0.013205217, 0.019280959, - -0.022900585, 0.03159382, -0.009864402, -0.0054614125, 0.008936562, - -0.0021575359, 0.013700028, -0.0066668033, 6.1678735e-4, 0.016417796, - -0.024517532, 0.0050175344, -0.0065080086, 0.0019797287, -0.0067060892, - -0.003089247, -0.00751772, 0.018221458, -0.0048905774, -3.9458013e-4, - 0.02970671, -0.019887108, -0.031745546, 0.017959258, 0.0016433079, - -0.013646627, 0.015827462, -0.005759131, 7.0936885e-4, -0.012773558, - 0.017195122, -0.023552645, -0.011514712, 8.0495747e-4, -0.017742941, - -0.0023694367, -0.0040016845, -0.02314916, -0.00959946, -0.003825737, - -0.002974974, 0.01876261, -0.011982176, -0.003042412, 0.0078070434, - 0.0022185885, 0.030918917, 0.006067187, 0.014097643, -4.942589e-4, - -0.005144984, 8.3143194e-4, -0.017107122, -0.018972062, -0.03593205, - -0.01146368, -0.017644443, 0.033163898, 0.020828247, 0.022444872, - -0.0024285163, 3.872871e-4, -0.0062929895, 0.021207815, -0.01700602, - 0.013611251, -0.016501246, 0.0049756295, -0.0017042811, -0.019022653, - -0.020110551, 0.0051998845, -0.015836377, -0.0032447851, -0.0033055723, - 0.0029084857, -7.4819825e-4, 0.031008627, -0.029021146, 0.022252932, - 0.005211171, -0.009394874, 0.0209706, 0.0032275417, 0.014021764, - -0.0032356614, 0.011212293, 0.013060088, 0.018867427, -0.002076979, - -0.02347831, -0.0017365136, -0.01411427, 0.014395828, -0.039366696, - -0.0017054128, 0.06324543, 0.0064041764, 0.026501535, -0.0023640988, - 0.013249523, -0.021013325, -0.013830055, 0.011493085, -0.0054688826, - -0.008910759, -0.008463753, -0.0071471855, -0.012113764, 0.0135982875, - 0.01438232, -8.129167e-4, 0.022727178, -0.002364841, 0.003766255, - -0.009231804, 0.022530548, 0.010315177, 0.006414412, 0.0032843903, - -0.010161366, 0.013243016, 6.241678e-4, -0.008424442, 0.0128163565, - -0.015637616, -0.0152573045, 2.723497e-4, 0.017229997, 0.022813277, - 0.028879257, 0.018868966, -0.034862142, -8.562333e-4, 0.024319941, - 0.008331335, 0.0065642204, 0.0058418144, -0.02108336, 0.014797238, - -0.011262571, 0.023324676, 0.0048878617, -0.016859673, -0.01191099, - -0.015312641, 0.016527064, 0.004825051, -0.030208612, -0.010089684, - -0.008747624, 0.03460071, -0.020739812, 0.011113008, 0.029479474, - 0.024315596, -0.020586835, 0.004160415, 0.0068038683, -9.595691e-4, - 0.0032970028, 0.0056489906, -0.031166816, 0.03145207, -0.0065827672, - -0.007593097, 0.01126171, 0.01640794, 0.0015008462, -0.020498412, - 0.018225066, 0.0015606894, -0.0091117695, -0.01972234, 0.010911516, - 0.0066756485, 0.014422726, -0.00387331, 0.015661154, -0.0013227691, - 0.0015271882, -0.007547174, -0.0043951026, 0.008872316, -1.9562022e-4, - 0.006790431, 0.016829554, -0.006742156, -0.002397697, 0.013547521, - 0.015210669, -0.009042064, -0.0052965684, 0.0031176752, -0.009860482, - 0.020542892, 0.027031658, -0.011192552, 0.0061864764, 0.012899945, - -0.0040634433, 0.013167433, 0.0018074303, -0.025293203, -0.007453937, - 0.012279878, 0.007620877, -0.024393262, -0.018285492, 0.027858306, - -0.009695995, -0.011241295, -0.003849878, 0.02520189, -0.008903448, - -0.008512354, 0.005821056, 0.007528305, -0.010388348, 9.99502e-5, - -0.007257165, -1.8749389e-4, -0.009944035, 0.013361888, 0.02150276, - -0.01481784, 0.009573423, -0.016232181, 0.0031550187, -0.02278504, - 0.023580011, 0.006257226, -0.02386107, -0.008684179, -0.005429674, - -0.002842348, -0.022437654, -0.013714344, -0.004603744, 9.144704e-4, - -0.00867523, -0.022738948, 0.0238416, -0.018017614, 0.01086845, - -0.030806134, 0.022165623, 0.013240521, -0.030334203, 0.025384644, - -0.0075933393, 0.018503802, 0.005026909, -0.011223389, 0.010726131, - 0.011736727, -0.020927923, -0.011857807, -0.031660292, -0.008769388, - -0.007863663, 0.0041225264, -0.0112519385, 0.014170743, 0.014712459, - -0.008137797, -0.010723509, 0.03959191, 0.0324756, -0.005419561, - 0.013953613, -0.009348195, 0.00513892, -0.009758749, 0.009554173, - 0.01792327, 0.0032989972, 0.011459201, -0.009907262, 0.0062897904, - 0.011572254, 0.0061456505, -0.04560289, -0.021280212, 0.017695362, - -0.012533224, -0.029583296, -0.008577682, 0.01965324, 0.002653687, - 0.017964216, -5.739616e-4, 0.03034478, 0.019845795, 2.5766724e-4, - -0.007619382, 0.0024010418, -0.015364048, -0.00391783, 0.017450115, - -0.014931536, 0.010600673, 0.01489895, 0.0036249785, 0.016069634, - -0.030174017, 0.0042225756, 0.014382588, -0.009980083, 0.009685252, - 0.009792698, -0.018203132, 0.009446661, -0.0013736004, 0.028159166, - -0.020395976, -0.006998058, -0.004343764, -0.0050594886, 0.0024788578, - -0.006322478, 0.008721819, 0.016301448, -0.019272953, 0.0018740161, - -0.032551408, -0.0027336222, 0.004648411, 0.0065449853, 0.0032293661, - -0.002931454, -0.016423238, 0.031208282, -0.009057479, 0.03270405, - 0.01898087, -0.027087927, -0.020405052, 0.029260118, 0.012511734, - 0.011898572, 0.005641226, -0.015911587, 0.004659648, 0.0076680114, - 0.04055955, 0.009260783, 0.020823257, 0.009130302, -0.019393917, - 0.0129256295, -0.017664282, 0.0034422104, 0.012614739, -0.014192935, - 0.01076596, 0.0153382765, -0.024355756, -0.019986238, 0.017132603, - -0.0022796814, 0.011738752, -0.0015651023, 0.002282581, -8.232026e-4, - 0.012191692, -0.010408854, -0.030604482, 0.0050798603, 9.2936517e-4, - -9.137765e-4, -0.003999482, 0.01108174, -3.409445e-4, -0.03204395, - 0.0022518109, -0.0049971826, -0.013757894, -0.032573096, -0.006686884, - 4.4218494e-4, -0.00537205, -0.0024234958, -0.015079999, -0.0030139473, - -0.023194214, 0.016321186, 0.0053649554, -0.0021799458, -0.01066063, - -0.0076796855, -0.020872675, -0.0068673636, 0.0019023458, 0.008829805, - 0.024418121, -0.0037686408, 0.006517562, 0.028938314, -0.007720883, - -0.012129221, -0.020258976, -0.013303854, -0.004707639, -0.008717185, - -0.008267875, 0.01766112, 0.009253594, -0.0045955856, 0.019663656, - 0.015972676, 0.023021953, 0.016543686, -0.006295123, 0.0053676404, - -0.009393826, 0.015564219, 4.4267974e-4, 0.006917948, -0.013868885, - 0.00559993, 0.008338377, 0.00993401, 0.0012430317, 0.0018031605, - 0.013717272, 0.025324129, 0.0019044431, 0.0037924247, 0.0086450195, - 0.016497463, 0.0052015744, -0.037825346, 0.02352422, -0.0027462256, - -0.020525768, -0.0170329, 2.1913713e-4, -0.031329922, -0.009658954, - 0.006479746, 0.0026415365, -0.017116675, -4.903718e-4, 0.0036467393, - -0.019501762, -0.02868058, -0.00782176, 0.027791716, 0.02178588, - 0.015371617, 0.011354625, 0.0087248115, -0.010733706, 0.0046210284, - 0.009888362, 0.013790655, -6.310899e-4, 0.012329171, -0.0024315629, - 0.009439521, 0.011312179, 0.014475173, -0.017792488, 0.007927383, - -0.02114693, 0.01491048, -0.016480446, -0.023426166, 0.008670641, - 0.01165042, 0.023826236, 0.006745116, -0.003246157, -0.023681182, - 0.016652526, -0.007494335, 0.0013963013, -0.0106587075, 0.011587404, - -0.019720407, 0.012311954, -0.022723695, -0.00659423, -4.6246196e-4, - -0.0033295306, -0.0070689335, 0.023809617, 0.017550426, -0.00813711, - 0.014239295, 0.007395068, -0.0062268884, -0.008750825, 0.008318445, - 0.024068436, 0.025105536, 0.0078674285, 0.005472286, -0.0265965, - -0.0062986105, -0.0067712003, -0.015174944, 4.7141506e-4, 0.0041878303, - -0.014840807, -0.009947668, -0.005565568, -0.02257285, 0.014401928, - -0.020069988, 0.004863542, -0.015186507, -0.00708793, 0.006991871, - 0.0035426214, -0.0022065104, -0.019351808, 0.030936915, 0.0072786557, - -0.008275094, 0.0043103904, -0.03661693, -0.0093612755, -0.004068758, - 0.013423457, -0.0088078845, 0.011773853, -0.005945692, 0.014539655, - -0.010917628, 4.2829415e-4, -0.003153465, 0.0027477883, -0.007969094, - -0.0046121697, -0.010342943, 0.010462491, -2.0009268e-4, -0.008067924, - -0.028563248, -0.004302054, -0.010260649, 0.0036349096, -0.024835411, - -0.0043414664, 0.028809, 0.012028738, -0.012107849, -0.018580992, - 0.0118801, -0.0126573155, 0.0010143404, -0.021104882, 0.021404805, - -0.0016259439, 0.008334878, 3.083549e-4, -0.00923187, -0.0017498371, - -0.011872735, -0.0015808692, -0.022798937, -0.008205329, -0.017145148, - -0.014767527, 0.001407734, -0.01151055, 0.020743027, -0.01945574, - 0.0042292466, -0.00981814, -0.0297003, -0.029811244, 0.022141173, - -0.018775256, 0.005167488, 0.021954508, 0.019687587, 0.015414145, - 0.015366333, 0.018252367, -0.014810074, 0.0031232303, 0.008134021, - 0.016730651, -0.004562089, 0.010036515, -0.011284842, 0.011491083, - 0.00651799, 0.0112550575, -0.009975621, 0.0018198369, -0.007823572, - 0.001811661, -6.906162e-4, -0.0024674765, 0.0045113317, -0.007706004, - 0.015293148, -0.0038534636, -0.01819384, -0.02275011, -0.0043688808, - -0.016903164, -0.010925036, 0.008696805, 0.0035255628, -0.011552633, - 0.01959561, -0.014930464, -0.002900577, -0.0018052434, 0.029722022, - -0.015765155, -0.003812189, -0.0050871475, 0.016509825, 0.031982746, - -0.012119188, -0.012014095, -0.0026288293, 0.0056812116, -0.021484794, - -0.015221028, 0.029147692, 0.010089598, -4.8322472e-4, 0.011031442, - 0.01397728, 0.011276395, -0.020647485, -0.0012691558, 0.018713525, - 0.022498438, 0.013627621, 0.017087357, -0.020636266, 7.817714e-4, - 0.01411158, -0.0066975397, -0.0067983335, -0.0141405715, 0.027465912, - 0.014984066, -0.01872322, -0.014704959, 0.02429382, 0.011331471, - -0.029977353, -0.013806233, 0.006114663, -0.006182501, -0.027955446, - -0.009986339, 0.026818268, -0.009198447, 0.044971127, 0.0019288729, - 0.009135856, 0.008036473, 0.01955159, 0.0019197017, -0.0018027219, - -3.987493e-4, 0.003084461, 0.014108524, -1.9867861e-4, -0.0057202224, - 0.020591084, -0.0132281035, -0.016191341, -0.0061321077, -0.008537395, - -3.1557542e-4, -0.0010613946, 0.0034588608, 0.011749452, -0.02529584, - 6.061302e-4, 0.0052653644, 0.010420675, 0.001169105, 0.0116022965, - 0.02707435, 0.03278456, -0.003852277, 0.019120732, -0.004082669, - 0.0059925723, 0.015258452, -0.016371759, 6.644608e-4, 0.011884854, - -0.013849577, -0.021808961, 0.016893163, -0.002399542, -0.0050018453, - 0.004252593, -0.008674894, 0.017254848, 0.011126474, -0.015331506, - 0.0010784765, -0.0020706446, -0.010044636, 0.014302735, -0.009442818, - -0.009083188, -0.015876807, -0.011192617, 0.0023307551, -0.009488859, - -0.017981837, -0.009890541, 0.018625367, 0.012503894, -0.01348301, - 0.0034775934, 0.0010738233, 0.004704226, 0.011637953, -0.015580403, - -0.009227917, -0.005173963, -0.0037001655, -0.020379324, 0.027840678, - -0.014309093, -0.003422375, 0.032251466, -0.0067708674, -0.023383431, - -0.016371151, 6.684443e-4, 0.02784049, 0.011995187, 0.010859805, - 0.008553714, -7.489242e-4, 0.019521002, 0.009034346, 0.03160063, - 0.00829965, -0.032830443, -0.021213083 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.016468564, 0.034238122, 0.036808297, -0.023511002, 0.023028929, - 0.0055418825, -0.0054269442, -0.015634067, 0.033001024, -0.05325769, - -0.010698526, 0.055055864, -0.068644315, -0.022461217, 0.0030624552, - 0.011148899, 0.06281468, -0.024462674, -0.02575875, 0.033946298, - -0.04827243, 0.04866578, -0.0047256188, 0.024262015, -0.03479637, - 0.009977861, -0.0031460323, -0.019244501, -0.029135903, -0.032285187, - -0.006334909, 0.04152771, 0.051213834, -0.023809321, 0.012847864, - -0.014340561, 0.025870364, 0.0134832775, -0.04871692, 0.039489508, - -0.01407982, 0.0146219935, 0.0032668042, -0.003950768, 0.013057582, - -0.009761906, -0.0351814, 0.006574069, 0.01990123, 0.005216319, - -0.026221069, -0.062272836, -0.012156212, 0.046918556, -0.020903543, - 0.014583529, -0.008759103, 0.028355975, -0.04950602, -0.0077233613, - -0.042478982, -0.008255747, 2.3653569e-4, -0.00843941, 0.006186315, - -0.04049293, -0.013585743, 0.0046628225, -0.010897242, 0.031313207, - 0.08379549, -0.026163323, 0.00544614, -0.021322373, -0.04355485, - -0.021499597, -0.011152697, 0.024668327, -0.0077153207, -0.0032594523, - -0.02577917, -0.03166213, -0.04498927, 0.0041724625, -0.044086684, - -0.08472678, 0.0374203, -0.035101254, 0.031693697, 0.027787752, - 0.019947264, 0.010925243, -0.049173724, 0.044979423, -0.05377377, - 0.004140499, 0.026151273, -0.01373041, -0.060098555, -0.004896337, - 0.043330874, 0.07426483, -0.01886779, -0.011201834, 0.051172316, - -0.008121628, 0.029086392, 0.01717074, -0.036321074, -0.004192667, - 0.029674545, -0.0038928408, 0.0028081024, 0.0073917713, 0.0066596586, - 0.052889343, -0.01957228, -0.029562628, 0.02551191, 0.05968392, - -0.046109915, -0.058082048, 0.03686817, -0.035887323, -0.048775718, - 0.021348769, -0.029197903, 0.024341898, 0.013813202, 0.005823072, - 0.027073149, -0.055342782, -0.023987887, -0.029489372, -0.029331505, - 0.019317623, -0.050363705, -0.026582254, 0.0043056407, -0.019462459, - 0.03514543, -0.008507255, 0.0050177523, 0.008571023, 0.042526387, - 0.029100815, 0.061698034, -0.010999241, 0.0026854423, -0.0029901457, - 0.0308557, 0.012625337, -0.029684335, 0.039190587, -0.04119161, - -0.023806415, -0.020861996, -3.2667155e-4, -0.02215778, -0.0071142195, - -0.03622757, 0.035083942, -0.006961723, -0.023185585, -0.023297863, - 0.013573638, -0.02212898, 0.05599362, 0.015226017, -0.010769915, - -0.022677727, 0.0048879264, 0.002770947, 0.0066302647, -5.376977e-4, - -0.011172994, 0.03066426, 0.06662188, -0.0068819127, 4.9452577e-4, - 0.016957805, -0.039141275, 0.07967609, 0.040717468, 0.014269669, - 0.04649275, 0.060886253, 0.013598402, 0.0045816298, -0.010918971, - -0.009745996, 0.036660727, -0.045911178, -0.019018335, 0.022513947, - 0.053356316, -0.023852596, 0.0077814213, 0.042918548, -0.012046592, - -0.008740766, -0.0298767, 0.023318391, -0.01157241, 0.030414453, - -0.005064707, 0.034594346, -0.010171981, 0.0064892266, -0.041614674, - 0.008976832, -0.021356534, 0.008027019, -0.0145608885, 0.0077209543, - -0.04172165, -0.0018505087, -0.034811903, -0.022767331, -0.0062770406, - 0.0059759063, 0.01879099, 0.033968635, 0.054377507, -0.029251518, - -0.007944033, -0.02874224, 0.003973081, 0.0037922196, -0.03220385, - -0.013142601, 0.021721393, -0.037004642, -4.2277112e-4, -0.029725552, - -0.023018876, -0.028897097, 0.06655595, -0.0255994, 0.02148552, - -0.052638724, -1.7586813e-4, 0.002686724, 0.007044767, 0.026168833, - -0.051801044, -0.022777526, -0.028168123, -0.01002405, -0.00715816, - -0.010851489, -0.031342372, 0.0050465665, -0.008975549, 0.030980516, - 0.04023006, -0.002735636, 0.05081763, -0.028781664, 0.028098416, - -0.0077024666, 0.022368863, -0.0184861, 0.059110112, 0.015850738, - -0.016418045, -0.019059189, 5.7900255e-4, -0.03865098, -0.008173664, - -0.023621824, 0.02813318, 0.015390105, -0.016502736, 0.058737833, - -0.04462328, 0.0539197, 0.021603754, -0.0061191865, 0.017501658, - -0.030446483, 0.007593313, -0.018101435, -0.07133748, -0.03977303, - 0.012068091, 0.020062461, 0.04783379, 0.014411974, 0.046856847, - -0.004248447, 0.034152668, -0.021929584, -0.025282327, 0.021039207, - 0.02790882, 0.0036125463, -0.03698207, -0.01631202, 0.036784165, - -0.015387546, -0.045629397, 0.029649304, -0.020505594, 0.029577542, - 0.0058827884, -6.173727e-4, 0.0142607195, -0.013516356, -0.018224215, - 0.011932611, 0.0030882014, -0.033213098, -0.004352423, -0.07512915, - -0.011457345, -0.06230329, 0.014980116, -0.033050846, 0.0353869, - -0.03421807, 0.03009615, -0.026918352, 0.07666023, -0.015278134, - -0.051240243, 0.018069671, -0.009626284, -0.03215309, 0.025731165, - -0.010317536, -0.006206087, -0.014105913, 0.07111113, 0.027775744, - -0.011213063, -0.048582662, 0.012602477, 0.0137307495, -0.02492327, - 0.008623665, -0.0031503304, -0.020642823, -0.023233226, 0.01834117, - 0.077320464, 3.1105202e-4, 0.006287986, 0.040038947, 0.016919332, - -0.04507785, -0.02156525, 0.038290363, 0.012045858, 0.02634037, - -0.003399219, 0.070343524, 0.07491887, 0.025074014, -0.053861097, - 0.07098005, 0.047371954, -0.0024424298, -0.0077276723, 0.0068969186, - -0.042811055, 0.029991431, -0.067750484, -0.01718166, 0.03453489, - -0.05727084, 0.010527206, 0.008729067, 0.056036662, 0.010644836, - -7.6830253e-4, 0.016153542, -0.054833274, 0.0046891915, -0.037779216, - -0.0065508173, -0.0064377664, -0.013135502, -0.01452793, -0.05116271, - 0.0067769913, 8.057051e-4, 0.037468527, -0.03457763, 0.015130234, - 0.032703515, -0.052826, -0.017715404, -0.03282668, -0.08722478, - 0.026684362, 0.071448684, -0.0010094789, 0.024736503, 0.03190926, - 0.0013097918, -0.024775345, -0.0010519712, 0.02963423, 0.0057171867, - -0.0025782888, -0.026882093, 0.013431173, 0.004822171, 0.014486452, - 0.0353716, -0.013093847, 1.437204e-4, 0.028681811, 0.017182946, - 0.0059335358, -0.01879532, -0.0145221315, -0.07667242, 4.292982e-5, - -0.039038546, -0.031162316, 0.043005902, -0.0037862572, 0.01880162, - 0.0028603857, -0.028199138, 0.002674963, -0.051720746, -0.023047911, - -0.03119026, -0.018463654, -0.052265838, -0.01535954, 0.057215087, - -0.011045179, 0.016999256, 0.0146382665, -0.008921803, -0.024630727, - 0.029594358, -0.019012302, 0.03561268, -0.050302584, 0.020207677, - 0.021811873, -8.088563e-4, -0.02060775, -0.015633773, -0.0061205146, - -0.027841374, -0.024844911, -0.029778158, -0.017293451, -0.015137533, - -0.0014845071, -0.02152554, 0.016203916, -0.042442363, -0.05391027, - -0.0259588, -0.025313029, -0.008659865, -0.004410308, -0.060009856, - 0.013620202, -0.020656819, -0.03150009, 0.038049806, 0.05251218, - -0.013562151, -0.040678855, 0.027889539, -0.00199391, 0.05949142, - -0.015524823, -0.029933512, 0.021598307, 0.0033600165, 0.0621539, - -0.016669385, -0.048736274, -0.020029735, -0.0072541917, 0.022614252, - 0.0067781787, 0.012641665, 0.04558383, -0.0099438485, 0.029407356, - 0.01836653, -0.04393312, -0.01680755, 0.061487295, -0.016649194, - -0.034049, 0.0025190173, -0.004893666, 0.04310235, -0.06656042, - -0.04457642, -0.030135065, 0.03777553, -0.021761697, 0.062495485, - 0.011178195, 0.0119495, 0.0024493278, 0.02362433, -0.019761754, - 0.0068702116, -0.026285721, 0.03747824, -0.020736124, 0.015831, - 0.03256082, 0.007113225, 0.08070176, -0.008195977, -0.06001444, - -0.032416675, -0.05794477, -0.0064376364, 0.021398585, -0.031485584, - -0.0076687397, -0.005735434, -0.018406423, 0.012342347, 0.038215894, - -0.041427735, -0.027457654, -0.03792922, 0.040687118, 0.025335189, - 0.050485983, 0.014508137, -0.022952417, -0.056151748, 2.65373e-4, - 0.0040862486, -0.039946366, 0.0038262468, 0.028907537, 0.004903938, - -0.027488092, -0.01623957, -0.02685716, 0.029100342, -0.010098058, - -0.022235947, 0.006082636, -0.04051142, 0.015584923, 0.019523436, - -0.00847342, 0.038692236, 0.019391418, -0.009798917, 0.013011953, - 0.0028450608, -0.044066366, -0.035197645, 0.049395498, -0.007610574, - 0.004134028, -0.00541402, -0.0151378, -0.035633743, -0.0654416, - 0.04112261, -0.022793574, 0.00927611, 0.0020422358, 0.050726797, - 0.044946995, 0.010845873, -0.022807164, 0.034604114, -0.05149364, - 0.020174792, 0.029583333, 0.012520419, -5.199267e-4, -0.01893739, - -0.025527436, -0.020320779, -0.031214505, -0.07246329, -0.05042852, - -4.5880995e-4, -0.04478546, 0.0034786875, -0.009106266, -0.04942412, - -0.046839796, -0.017346397, 0.02157002, 0.027266739, 0.016728574, - 0.018186396, -0.020152414, -0.010907762, 0.04869549, 1.6652435e-4, - 0.061932392, -0.017173799, 0.01809764, -0.0037116297, -0.024569064, - -0.044655614, 0.027498843, -0.05369378, -0.038795445, 0.013315728, - 0.037567645, 0.022960119, -0.009283277, -0.0015556639, 0.050064642, - 0.028617399, 0.012766992, 0.02460103, -0.046628054, -0.011256854, - 0.005921793, -0.027596617, 0.03322194, 0.029396972, 0.010431558, - -0.004048701, 0.061096, 0.006022307, -0.02579488, 0.009562581, - 0.0749112, -0.001731537, -0.006447867, 0.012720787, 0.03725039, - -0.040692285, 0.005498011, -0.06040002, -0.035577655, -0.0054862667, - -0.009584416, -0.04028248, 0.11153379, -0.0033090818, -0.048119478, - 0.014515296, -0.07776307, 0.023435729, 0.0058852485, 0.039706334, - 0.021699313, 0.014606596, -0.06823196, -0.046608515, 0.01391775, - 0.013151811, 0.013979576, 0.0060918266, 0.038802896, -0.008742573, - -0.04381664, -0.00242379, 0.03352559, 0.020313775, -0.025514595, - 0.018935686, -0.027948817, 0.030648766, -0.04958801, 0.019810302, - -0.076478876, -0.00514458, 0.030152397, 0.039614353, -0.061645813, - -0.030047748, -0.028457446, -0.025901264, -0.028730478, -0.011584669, - 0.0010270516, -0.022984294, -0.0045646103, 0.03593564, -0.02643758, - -0.013295351, 0.021591514, -0.00885004, 0.028661668, 0.03900572, - -0.0032588996, 0.032309685, 0.014540479, -0.011083062, 0.0036335583, - 0.018275462, -0.015789628, 5.3710915e-4, -0.020171663, 0.029837683, - -0.0073864115, -0.053562026, -0.050999053, -0.002705191, 0.009975281, - 0.003357123, -0.01476867, 0.01796367, 0.012711696, -0.0013386075, - -0.008318277, -0.035244312, -0.05273265, -0.039827317, 0.031549767, - -0.038648978, 0.005678589, -0.011636679, -0.0048058815, 0.02047289, - 0.055873454, -0.026819158, -0.011187765, -0.021465356, -0.0034901355, - -0.03822304, -0.0065486343, -0.038237017, -0.05591421, 0.0028440158, - -0.013614809, 0.020604746, 0.017682925, -0.012779685, 0.028335791, - 0.011859669, 0.0293909, -0.045371715, -0.008841862, 0.045694698, - -0.0018306194, 0.055081222, 0.007526598, 0.032382984, 0.04662728, - 0.02089184, 0.0028672828, -0.048008554, -0.0153257465, 0.03738061, - 0.0099422075, -0.006505075, -0.03272432, -0.035990518, -0.013994383, - 0.0030878738, -0.040710624, -0.01668565, -0.017242188, 0.06436724, - -0.027028495, 0.0223938, -0.020024814, 0.002731599, -0.020449035, - -0.010276114, -0.0075697894, -0.001856929, -0.00580041, -0.050221693, - 0.021830168, 0.023036407, -0.017020404, 0.0016182811, -0.04726653, - 0.0077667804, -0.0284132, 0.0037074864, 0.004375268, -0.037483934, - 0.05078157, 0.036028523, -0.009382749, -0.0077636535, 0.028624313, - 0.02973362, -0.06662212, -0.082991414, 0.019475367, -0.025314854, - -0.0057315775, 0.012029467, 0.031319488, -0.030028068, -0.014373396, - -0.004208407, -0.03271138, 0.014544537, 0.0024884508, 0.010796575, - 0.032178454, -0.055534072, 0.014123699, -0.019591294, -0.0029232881, - -0.039533094, -0.03967717, -0.0043372037, -0.011120428, 0.056230623, - -0.06598822, -0.005531272, -0.059470214, 0.020298645, 0.02645348, - 0.020544913, -0.07293136, 0.0099502485, -0.010519882, 0.017700272, - 0.010351581, -0.013800432, 0.017103007, -0.006737488, 0.022074219, - -0.019848516, -0.015921766, 0.005694127, 0.03803727, -0.051755596, - 0.03554568, -0.021906475, -0.029684113, 0.02916419, -0.03597201, - 0.015168721, 0.015947249, -0.017436711, 0.05963586, -0.0037564696, - -0.04736777, -0.005037563, 0.03186653, 0.061773214, 0.0408586, - -0.037409406, 0.07607022, -0.0070499405, -0.020337824, -0.015267113, - 0.02177324, 0.024227822, -0.016635222, -0.027160134, 0.010038533, - 0.022248333, -0.03385392, -0.007429706, -0.003793329, -0.038270682, - -0.0059929485, -0.03486577, 0.07023107, -0.0024642933, 0.029857755, - 0.029021494, -0.020611754, 0.016724693, -0.06799733, 0.007611312, - -0.0050358144, 0.05721908, -0.0090699745, -0.0020582536, -0.004231464, - 0.016523601, -0.004272955, -0.019004013, -0.0268649, 0.036707148, - 0.040888947, -0.022010809, 0.04585635, -0.019051567, -0.020677047, - 0.0052296002, -0.023567509, -0.022837138, -0.049059268, 0.05263248, - -0.0052144094, 0.03980616, 0.013690457, -0.010485043, -0.03288176, - -0.0042751976, -0.03464385, -0.0091805225, -0.003484484, -2.0074734e-4, - 0.010373474, 0.0022774562, -0.008037128, 0.03604983, 0.02057231, - 0.042133912, 0.017068923, 0.0031551686, -0.04842271, 0.018900605, - 0.051860176, -0.0037529392, -0.040311143, 0.024882162, -0.066787206, - 0.0025182522, 0.022157384, 0.0017092704, -0.041578896, -0.035666503, - 0.010457851, -0.025847958, 0.012768956, -0.045717437, -0.0045714425, - -0.03159542, -0.011357663, -0.018914891, -0.055401623, -0.014283287, - -0.012236737, -0.033727705, -0.06794178, 0.025739104, 0.015045029, - 0.034409832, -0.0025541328, -0.06652564, 0.05832767, -0.010514518, - -0.01925676, -0.014207916, -0.02331013, -0.0016788335, -0.0130146425, - -0.0053813495, -0.04673658, -0.016877683, -0.04158695, -0.011410774, - 0.046244346, 0.017776994, -0.019903604, 0.020627128, 0.03571285, - 0.016018197, -0.0035648684, -0.0013348336, 0.002428329, -0.005514505, - -0.053824164, 0.020960981, 0.007297211, -0.0015355849, 0.04297173, - 0.004464814, -0.004531995, 0.025561249, -0.020524131, -0.028539067, - -0.010262446, 0.036485728, -0.0711986, 4.632951e-4, 0.00534358, - 0.0024871777, -0.042465724, -0.03124434, -0.011067927, 0.06222146, - -0.041703522, 0.041388992, -0.0155161815, -0.027936587, -2.94425e-4, - 0.009292274, 0.0065484988, 0.07489608, -0.034015752, 0.03509033, - -0.01973122, -0.004646926, -0.00359132, 0.017352544, 0.039606817, - -0.05651589, 0.025651723, 0.02503626, 0.029903637, 0.007457025, - -0.03195248, 0.0032413017, -0.020580653, 0.051337503, 5.992487e-6, - -0.0121450545, -0.07160463, 3.7097937e-4, -0.027884932, -0.00578665, - 0.03395913, 0.028167143, -0.020125382, 0.03756191, 0.0077101705, - -0.011070796, -0.003822286, 0.0035129166, 0.056805205 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + -2082844800000 + ] + }, + "vectorValues" : { + "features" : [ + 0.010363603, + 0.010966938, + 0.0011999448, + 0.009635852, + -0.015189338, + -0.005104871, + -0.0044038873, + 0.03293003, + -0.008945471, + 0.009761149, + -0.010674922, + 0.017223619, + -0.0030124446, + 0.0140309455, + -0.010366325, + 0.00179021, + 0.0047533484, + 0.015302665, + -0.0055201813, + -0.02672546, + 0.017474582, + -0.010746141, + -0.010513915, + -0.008906146, + -0.018576896, + 4.1088596E-4, + -9.716791E-4, + -0.006398947, + 0.007162092, + -9.3549665E-4, + 0.00871859, + 0.019249061, + 5.325528E-4, + -0.014956049, + 0.018796865, + 0.004122659, + 0.0029456383, + 0.005791982, + -0.016037965, + -0.0045307125, + 0.0021744128, + 0.0028585114, + -7.6566095E-4, + -0.0067183347, + 0.0017900834, + -0.013717692, + -0.013159832, + 0.01719208, + 0.010898665, + -0.022478603, + -0.0038279858, + 0.01007121, + 0.02069881, + -0.0019105186, + 0.005321291, + 0.021634804, + -0.019350374, + -0.041290365, + 0.005666796, + 0.004843603, + 0.009750824, + 0.024893278, + 0.007383666, + -0.04362522, + -0.018936582, + -0.0073129423, + 0.00655437, + -0.0013430337, + -0.012298131, + 0.017999656, + -0.018344957, + 0.008213985, + 0.018288989, + -0.0054987282, + -0.0012967074, + -5.154231E-4, + -0.004816533, + 0.0028247167, + -0.009273273, + -0.0019567292, + -0.0016126722, + 0.0045939977, + 0.010392506, + 0.008074842, + -0.018721439, + 0.008805263, + 0.01612689, + -0.00806378, + -0.010595795, + -0.0036730287, + -0.011104354, + 0.011556698, + 0.009098472, + -0.0028160303, + -0.015261665, + -0.022057954, + 0.0033009567, + -0.011593578, + 0.0018848848, + -0.002523552, + 0.0056402073, + -0.0014349413, + -0.0025856523, + -0.027592108, + -0.00310468, + -0.016546732, + -0.011906603, + 0.018143399, + -0.036115475, + -0.028415086, + -0.006626032, + -0.020965895, + 0.0051505677, + -2.1642976E-4, + 0.0078263255, + 0.005150274, + -0.019181097, + 0.0015818307, + -0.0012983526, + 0.016124232, + 0.011161201, + 0.0029057106, + 0.030315073, + -0.0028013124, + -0.012269358, + -0.0026772716, + 0.011039651, + -0.031982366, + -0.05356367, + -0.018398393, + -0.008251784, + -0.011135543, + -0.0012122353, + 0.01121556, + -0.033273228, + -0.023570355, + -0.0065643233, + 0.018288834, + 0.003168498, + 0.00801558, + 0.0041187257, + 0.026488438, + 0.0036330712, + -0.04478305, + -0.018299995, + -0.009682773, + 0.03889874, + -0.0074480586, + 0.002594592, + -0.007725064, + 0.031738408, + -0.012372179, + 0.0072199656, + 0.008308135, + 0.0017208768, + -0.001581204, + 0.019908939, + -0.02183839, + -0.0019958213, + -0.008575772, + -0.021857385, + -0.0049213585, + 0.0018768557, + -0.010185612, + -0.009258292, + -0.027696364, + 0.0086793825, + 0.0034384395, + 0.01306077, + 0.036847804, + 0.016905868, + -0.006678602, + -0.0016963374, + -0.017948443, + 0.012729389, + 3.918429E-4, + 0.005166725, + -0.012679829, + -0.011092253, + 0.0014224336, + 0.01643396, + 0.0086480165, + 0.006910631, + -0.015680121, + 0.031927604, + -0.004147655, + 0.020125663, + -0.009919344, + -0.008655781, + 0.019272346, + -0.011552225, + -0.0070943194, + -0.006791264, + -0.017149966, + 0.017043378, + -0.028066374, + 0.0077349083, + 0.016310904, + 0.0216943, + 0.002321575, + 0.0047746967, + -0.013797213, + -0.015288909, + 0.017990042, + 0.01896081, + 0.025351727, + 0.0077137053, + 0.012813163, + 0.009203569, + -9.776586E-4, + 0.0017173827, + -0.008359526, + -4.2032968E-4, + -0.0042319335, + 0.005312903, + -0.011085416, + 0.009843409, + 0.0014103291, + 0.0154508045, + 0.013569132, + -0.0029194267, + 0.026126077, + 0.0048795557, + 0.01284884, + 0.013593217, + -0.008116934, + -0.01472189, + -0.022794507, + -0.0049653957, + -0.01767737, + -0.021448245, + 0.040945645, + 0.0022683563, + -0.024306271, + 0.01318706, + -1.72523E-4, + 0.027222704, + 0.0053637167, + 0.0062008067, + 0.0047973366, + 0.014638127, + 0.0036338894, + -0.021564124, + 0.0020401322, + -0.0021764245, + -0.009300394, + -0.013788116, + 0.00540239, + -0.008363714, + -0.039541733, + 0.016793625, + 0.019150797, + -0.0011197682, + -0.019747473, + 0.03257909, + -0.024215996, + 0.0036168944, + 0.004636336, + -0.0071639647, + 0.03033633, + 0.007204521, + 0.015649782, + -4.426932E-4, + -0.0020231076, + 0.019943157, + 0.024060989, + 0.0109884925, + -0.010612973, + 0.0013256882, + 0.0017137851, + 0.020069852, + 0.0013981701, + 0.0023648466, + -0.010214938, + 0.005644877, + -0.009668013, + 0.0390257, + -0.052417237, + -0.0068263444, + 0.0078499615, + -0.017880699, + 0.004814172, + 0.019021166, + -0.012084337, + 0.008306924, + -0.0038770724, + -0.013155048, + -0.012633993, + 0.004143399, + -0.01844449, + 0.023649585, + 0.013401976, + -0.03154892, + 0.0057032816, + 0.030011417, + 4.5915408E-4, + 5.3202788E-5, + -0.013915238, + 3.6634112E-4, + 0.011797349, + -0.009721097, + -0.016575193, + 0.009839073, + -0.014668662, + 0.015375188, + -0.002311059, + -0.008884025, + -0.005168338, + 0.019343032, + -0.010563511, + 0.006052713, + -0.005756816, + 0.0175255, + -0.0041929046, + -0.0016375352, + -0.0039107436, + -0.023176463, + -0.017349925, + 0.016603203, + -0.03652824, + -9.3523413E-4, + -0.0015507136, + -0.019278467, + -0.0026771233, + 0.013940906, + -0.018151155, + -0.009256223, + 0.008367345, + -0.014008663, + -0.006131718, + 0.010259549, + -0.02498087, + 0.017059227, + -0.0018222036, + 0.0068556275, + -0.0037598824, + 0.002296143, + 0.021469044, + 0.032354347, + 6.3810806E-4, + 0.0029746576, + -0.0051532276, + -0.015906747, + 0.0028836532, + 0.0056094625, + 0.01218232, + -0.037096865, + 0.0049721464, + -0.026829345, + -0.022193778, + 0.0012665017, + -0.03126313, + -0.0035917119, + -0.0019931495, + 0.04330276, + 0.0087366495, + 0.018119816, + 0.010884917, + -0.0130993705, + -0.019722588, + 0.0041581206, + 0.009653961, + 0.011849017, + -0.027725065, + -0.0094689205, + -0.0065606306, + 0.029608648, + -0.014150301, + -0.013534955, + -0.020702295, + 0.0071392115, + -0.038934022, + 0.0059712157, + 0.027176455, + -3.20111E-4, + 0.008628811, + -0.0029756015, + 0.0015359909, + -0.018496916, + -0.02806122, + -0.0010577278, + 0.012163966, + -0.007856147, + -0.006345719, + -0.0043349112, + -0.011602536, + -0.010958747, + 0.021428816, + -0.021415256, + 0.02763834, + 0.0054081795, + 0.012389284, + -0.0025867682, + -0.014709686, + -2.8164242E-4, + 1.608466E-4, + -0.00314079, + 0.0074658454, + 0.012905743, + 0.010816584, + -0.019942079, + 0.04451859, + -0.020807924, + -0.011969031, + 0.008910615, + -0.016253399, + 0.0017780719, + 0.010135411, + 0.006067636, + -0.0020902401, + -1.0008693E-4, + 0.0045658275, + 0.0037559564, + -0.024376333, + -0.014055611, + 0.0023371011, + 0.011815134, + 0.0040502087, + -0.019684182, + 0.0010993271, + -0.011497886, + -0.007443227, + -0.020458775, + 0.006993703, + 0.014633324, + 0.005786906, + -0.009356697, + 0.009678559, + 0.009593673, + 0.012985778, + -0.0071383705, + -0.003105281, + 0.008415347, + 0.014901556, + 0.004108527, + -0.018333983, + 0.014258887, + -0.013356154, + -0.011594165, + -0.0051366896, + -5.2116456E-4, + 0.006761149, + 0.021605995, + 0.002551625, + -0.004958897, + 0.0056068413, + -0.0042361934, + -0.0030592072, + 0.002454762, + -0.019831613, + -0.03464766, + 0.011789474, + -0.0022035714, + 0.037745293, + -0.023183797, + 0.032223172, + 0.018247712, + 0.005703735, + 0.018961592, + 0.001582299, + 0.0052060676, + -0.0035678796, + -0.0011934851, + -0.0052638296, + -0.010555382, + -0.00515288, + -0.019586133, + 0.016345467, + 0.0264838, + -0.002689868, + -0.017392486, + 0.0075067016, + 0.016524155, + -0.003981696, + -0.0020706065, + 0.0055693076, + -0.005788984, + -0.010840967, + 0.03284067, + 0.004971561, + -0.03135401, + 0.008345737, + 0.0215048, + -0.01256169, + 0.018631356, + 0.01071121, + 0.0071982895, + 0.0105993925, + 0.011298633, + -0.019105451, + -0.011105464, + -0.0027678218, + 0.022532431, + -0.0074611185, + 0.0067669507, + 0.008338309, + 0.0069282176, + -0.016403707, + 0.013585318, + -0.0033897213, + -0.02422401, + -0.002088846, + -0.014756168, + -0.0030061835, + 0.021281432, + -0.02727005, + -0.022231154, + -0.011200695, + 0.008799235, + 0.0018005439, + -0.008583653, + 0.023637041, + -6.01357E-4, + 0.009236236, + -6.067656E-4, + 0.02526353, + -0.007214006, + -8.315425E-4, + 0.02642908, + -0.009752515, + -0.025635058, + -0.023131968, + -0.0022739642, + 0.006580192, + 0.0030399233, + 0.013180527, + -0.009339088, + -0.004622632, + -0.0059033874, + -0.008878347, + -0.0030955768, + -0.00118101, + -0.028979268, + -0.0053406246, + 0.028546175, + -0.012686622, + 0.030025229, + -0.002291354, + -0.004709898, + 0.019649245, + 0.0016399069, + -0.026141996, + -0.0024922376, + 0.002183962, + -0.03154034, + 8.819059E-4, + -0.0019071213, + -0.02929659, + 0.007575455, + 0.0056640534, + -0.00518016, + -0.012698038, + 5.968152E-4, + 0.01990894, + 0.015660355, + -0.010550222, + -0.020292247, + 0.0026646198, + 0.014840732, + 0.023702864, + -0.0059265974, + -0.0023870037, + -0.006568643, + 0.006593768, + -0.023313645, + 0.002549195, + 0.03409045, + 0.0127327135, + -0.021739505, + -0.009448627, + -0.0135431625, + -0.019495295, + -0.008999639, + 5.038513E-4, + 0.008294943, + -0.0071134423, + -0.004718723, + 0.0046214685, + 0.017566647, + 0.032123707, + -0.01664299, + -0.0064631505, + -0.026497066, + 0.015463265, + -0.021798376, + -0.01594882, + -0.01022104, + -0.008993201, + 0.0033376953, + -0.030372838, + -0.01655679, + -0.01855579, + 0.009386224, + 0.03220698, + 0.033046704, + -0.005855384, + 0.02149936, + -0.015142545, + 0.009077487, + 0.0032672128, + -0.015814397, + -0.013607664, + -0.014297795, + 0.006163341, + 0.023255168, + 0.009746966, + 0.0086226, + -0.010638518, + -0.011942556, + -0.014700989, + -0.012941814, + -0.022241337, + 0.007866958, + 0.004846082, + -0.012018953, + -0.01127771, + 0.0040559373, + -0.013577, + 0.009818078, + 0.0041346694, + -0.024191007, + 0.019332493, + 0.0041814637, + 0.009950865, + -0.029748783, + -0.017135471, + 0.0066993725, + -0.031934895, + -0.0035735723, + 0.035263255, + -0.010726644, + 0.014117137, + 0.033759136, + -0.0050837183, + -0.014851229, + 0.024423977, + -0.035555407, + 0.0033609583, + 0.011627001, + -0.0042428696, + -0.0013369397, + -0.017870193, + 0.0045039225, + 0.004150689, + -0.0013010955, + -2.4666236E-4, + 0.02342183, + -0.003219691, + -0.04191149, + -0.0058657317, + -0.005133949, + -0.002206073, + -0.015345195, + 0.017097974, + -0.012814831, + 0.019947583, + 0.0022316505, + 0.0017203498, + -0.010328377, + 0.010401399, + -0.02190761, + -0.0027066264, + -0.011282626, + -4.6293694E-4, + -0.00217916, + -0.020370709, + -0.019595006, + 0.006127466, + 0.014475168, + -0.010053081, + -0.007978285, + -0.009088645, + -0.007918741, + 0.016672498, + -0.0013793544, + -0.010029936, + -0.0050257305, + -0.014843495, + 0.02627283, + -0.0023555334, + -0.004566694, + -0.0026320005, + 0.007195641, + -0.009316151, + -0.018846534, + 0.0019724998, + 0.00414991, + -0.0012001763, + 0.0013293256, + 0.001978928, + 0.008080389, + -0.011924594, + -0.009335368, + 0.022105765, + -0.0052205897, + -0.003157707, + 0.023878686, + -0.015220331, + -0.014754286, + -0.0011706174, + 0.0107286405, + -0.020700311, + -1.3567094E-4, + 0.018061996, + 0.01109239, + -0.012945121, + -0.0033334657, + 0.0064886515, + -0.010984887, + -0.011124416, + -0.002844678, + -0.0070136376, + -0.0016574875, + -0.012222438, + 0.0010189204, + 0.014065946, + -0.012475417, + 0.012864934, + -0.016403893, + 0.0052072816, + 0.02369332, + 0.019326681, + 0.004227047, + 0.0018943064, + -0.024617942, + 5.858485E-4, + -0.022205552, + 0.0038827208, + -0.008344355, + 0.0070346887, + -0.029256474, + -0.01482391, + 0.022832353, + 0.034809694, + -0.028291076, + -0.01534258, + -0.006144554, + -0.0060539786, + 3.2277917E-4, + -0.010689621, + 0.019430978, + 0.0062815626, + 0.011358059, + 0.043838296, + 0.024602192, + -0.0049892524, + -0.0058034915, + 0.01868882, + 0.017031442, + -0.037501793, + -0.012391135, + 0.0047421493, + -0.01833196, + -0.007357473, + -0.005049391, + -0.010063704, + -0.0354673, + 0.01271117, + -0.032151304, + -0.008725426, + -0.0155409705, + -0.015272918, + -9.927142E-4, + -5.6181656E-4, + 0.0071258824, + -0.026858525, + 0.003171614, + -0.008994757, + 0.01270876, + 0.022999004, + -0.007985838, + 0.016771438, + 0.0248427, + -0.016905319, + -0.008152374, + 0.017098963, + -0.012174124, + -0.019566938, + -0.010667352, + -3.9451057E-4, + -0.0040750313, + -0.013303162, + -0.02364247, + 0.022367837, + -0.00773921, + 0.0044967635, + -0.014947036, + 0.011092939, + -0.0031309077, + 0.017371867, + -0.016169332, + -0.0050105616, + -0.014018245, + 0.009137252, + -0.035696916, + 0.021325741, + -0.021205077, + -0.013382649, + -1.6070054E-4, + -0.015104519, + 0.009930328, + 0.0017819215, + -0.0063138246, + 0.014094893, + -0.024714118, + 0.01216672, + 0.009472003, + -0.013264101, + -0.008895668, + -0.011530773, + -0.035175342, + 0.007695579, + 3.5974194E-4, + -0.01105675, + 0.046616267, + 0.016952487, + 0.0033656321, + 0.01961691, + -0.009155879, + 0.0156733, + -0.0030487275, + -0.0018180652, + -0.018132437, + -7.753919E-4, + -0.0067236084, + -0.014691748, + -0.0063422895, + -0.017165018, + -0.0029955336, + 0.006026363, + 0.005619412, + -0.029566174, + 0.011114447, + 0.003901766, + -0.0027575467, + -0.0020450577, + -0.0135499025, + -0.0209844, + 5.315345E-4, + -0.0190642, + 0.007914476, + 8.6593605E-4, + 0.006757536, + -0.022284938, + -0.0019359239, + -0.0100048445, + 4.1524187E-4, + 0.020235995, + 0.031149616, + 0.007820854, + 0.0012400259, + 0.04308491, + -0.013006876, + 0.020302353, + -0.007405246, + -0.019972032, + 0.011341838, + -0.020793457, + 0.017408207, + -0.015400574, + -4.8646308E-4, + 0.002605225, + 6.209321E-4, + -0.0024682458, + 0.011593889, + 0.011842148, + -0.020222764, + 0.009041576, + 0.01636182, + -0.009185614, + 8.190456E-4, + 0.008981309, + 0.006922774, + 0.0034585658, + 1.416362E-4, + 0.015119412, + 0.024656063, + 7.7031145E-4, + -0.0036675243, + 0.003971764, + 0.016510187, + -0.0024096295, + 0.008673432, + 0.03883856, + 0.015121776, + 0.0025432725, + 0.012569562, + 0.023581693, + 0.0038282552, + 0.022481339, + -0.0023628965, + 0.009737019, + 0.005199895, + 0.026446287, + -0.015010244, + 0.039072454, + -0.014404296, + -0.016570697, + 0.0015063965, + 0.0015834905, + 0.01035334, + -0.0191492, + 0.004022244, + 0.005230684, + 9.659409E-5, + -0.013780137, + 0.0048806863, + -0.018111167, + -0.03593829, + 0.010223162, + 2.1216355E-4, + -0.022716256, + -0.010859738, + -0.0014935649, + -0.021995606, + -0.0045433785, + -0.024437908, + 0.016426299, + 0.03348686, + -0.011609962, + -0.016505131, + 0.024903141, + -0.023316251, + -0.0068323226, + 0.020466026, + -6.9305615E-4, + 0.009689357, + -0.038162, + 0.025416447, + -0.013463908, + 0.025717018, + 0.018277591, + -0.015598551, + 0.0030428458, + 0.0015140504, + -0.0077766753, + 0.013287653, + 0.038459938, + 0.0019917628, + -0.030611511, + 0.0083729755, + 0.001961295, + 0.0024038742, + 0.0067049405, + 0.00215306, + -0.002948464, + -0.004153219, + 0.011202669, + 0.018556561, + -0.00821375, + -0.026535807, + -4.3736654E-4, + -0.00555102, + -4.945102E-4, + 0.023209576, + -0.0046532014, + -0.016318453, + 0.015693318, + -0.021235097, + 0.02302991, + 0.0039222133, + -0.006227439, + -0.004822448, + 0.024042567, + -0.016870087, + 0.003342251, + 0.01205143, + 0.0015776289, + 0.007481949, + -0.01845147, + -0.03150084, + 0.0018317895, + -0.015033185, + -0.007940328, + 0.025232451, + -0.002186138, + -0.02403349, + -0.027788026, + 0.00403844, + -0.003397496, + -0.018104251, + 0.004125211, + 0.013827098, + 0.019552194, + -0.007258348, + -0.032264277, + 0.02301955, + -0.013565449, + -7.7047915E-4, + 0.009243278, + -0.021586817, + -0.013834016, + -0.007078477, + -0.0272445, + 0.012399216, + 3.7991884E-4, + 0.007148321, + -0.024807388, + 0.014525113, + 2.4632458E-4, + 0.023927791, + 0.051497467, + 0.004016635, + -0.004151835, + 0.014831619, + 0.014482014, + 0.026332675, + -0.015555754, + -0.002311909, + -0.0116738845, + -0.0067627854, + 0.017674068, + -0.020585654, + -0.019786555, + -0.010724089, + 0.0062787696, + 0.01046877, + 0.029162947, + -0.017899891, + 0.003686759, + -0.006174333, + -3.717187E-5, + 0.0031868804, + 0.029890116, + 0.018735055, + 0.0060557863, + 0.018863719, + -0.019097239, + -0.0041132336, + 0.01918506, + 0.0023610257, + 0.0033635267, + 0.020659283, + -0.0035364823, + 0.024782525, + 0.0103940405, + -0.02310702, + 0.02604653, + -0.017877573, + -0.0036645285, + -0.011568388, + -0.0142922, + -3.3290384E-4, + -0.017060583, + 0.0072166906, + -0.008054239, + -0.020205334, + -0.026638947, + -0.018414939, + 0.015086107, + -0.0056662066, + 0.0016321468, + 0.015735665, + 0.0023999424, + 0.010218076, + -0.021853967, + 0.012582058, + 0.005842432, + -0.0035934355, + -0.0016037549, + 0.0038290487, + 0.015962088, + 0.029300867, + 0.002979719, + 0.0013233388, + -0.0032817957, + 0.0076329065, + 0.004932559, + 6.501862E-4, + 0.0049755983, + 0.014695871, + 0.029132182, + 0.008862904, + 0.010798638, + 0.0083689, + -0.00727041, + -0.009283344, + -1.2594905E-5, + -3.9734138E-4, + 0.034072418, + -0.01572669, + 0.022233773, + -0.0054615433, + -0.017410696, + 0.0025480678, + 0.0027561341, + -0.025648644, + -0.0070239995, + -0.013553827, + 0.010301638, + 2.242178E-4, + 0.0015439199, + -0.0036539743, + 0.018685143, + -0.0029741076, + 0.021596227, + -0.0054491917, + -0.019322323, + -0.01146258, + -0.013259026, + 3.9019983E-4, + -0.013017487, + 0.01712752, + 0.017043846, + -0.029483028, + -0.028480398, + 0.01838042, + -0.010043486, + 0.0075462125, + -0.02386446, + 0.012561941, + 0.008261884, + 0.010570083, + -0.013870845, + -0.004660244, + 0.019952975, + 4.5180814E-6, + 0.002619981, + 0.035712503, + 8.522366E-5, + -0.03894176, + 0.010878649, + 0.013298462, + 0.029632354, + -0.03550083, + -0.0074822437, + -0.024916979, + -0.017094703, + -0.0110234, + 0.0024473805, + -9.934787E-4, + 0.021930048, + -0.014155666, + 0.013907814, + 0.010824853, + -1.4592834E-5, + -0.023965403, + -0.02860206, + 0.013041989, + -6.3057296E-4, + 0.019892247, + 0.017564535, + 0.0029490818, + -0.018685693, + -0.003784277, + 0.01549329, + -0.011047227, + 0.013749169, + -0.00377651, + 0.0036147523, + 0.0023734944, + 8.7003136E-4, + -0.033296123, + 0.0276977, + 0.0135752065, + -0.017982977, + 0.030294329, + -0.028929273, + 0.00431603, + -0.0036176967, + -0.018640075, + -0.020003838, + 0.0031897214, + -0.006941739, + -0.005155571, + -0.0012452748, + -0.013605202, + 0.005730728, + -0.0029963134, + 0.008285022, + 0.007081825, + -0.013320814, + 0.005285083, + 0.013571465, + 0.021532472, + -0.012973094, + 0.013977914, + -0.03347373, + 0.020482548, + 0.015437747, + -0.0040289806, + 0.0037818248, + -0.009644116, + 0.013461301, + -0.009529453, + -0.011024703, + 0.030890252, + 0.027168322, + 0.006401514, + 0.007468596, + 0.011393217, + -0.0020395273, + 0.0022918642, + -0.017620008, + 0.012782076, + 0.014815451, + 0.009088186, + -0.042903125, + -0.00470076, + 0.0027448535, + 0.0014506641, + 0.018098138, + -0.02727683, + -0.0127662225, + 0.004442619, + 0.020231456, + -0.025767064, + 0.019786825, + -0.001653999, + 0.024756905, + -0.017424533, + -0.0072378856, + 0.010268289, + -0.0054659285, + -0.0051098657, + -0.013828475, + 0.00784276, + -0.03566161, + 0.0011775348, + 0.0036392554, + -0.024678813, + -0.004496476, + 0.016874209, + -0.008555845, + 0.013810108, + 0.010944277, + -0.0059723463, + -0.0029054536, + 0.027550323, + -0.01985103, + -0.0077559026, + 0.0036155393, + 0.0034926708, + 0.010846956, + 0.014527447, + 0.01891175, + 0.02856605, + -0.03183718, + -0.016715808, + 0.0048873043, + 0.003286076, + -0.012815972, + 5.248266E-6, + 0.00790233, + 0.003264283, + 0.0029167526, + 0.004364331, + -0.0067461, + 0.014510667, + -0.0031244524, + 0.0029144748, + 0.0031175902, + 0.0118583795, + -0.0102413865, + -0.0062839165, + 0.023250608, + -0.0038858727, + -0.0050407853, + -0.009623321, + 0.020822503, + -0.011554898, + -0.0085104415, + -0.040741596, + -0.004216893, + 3.0064993E-4, + -0.008754006, + 0.014931021, + 0.019707914, + -0.010977539, + 0.0024764666, + -0.011724186, + -0.002393993, + 0.019728368, + -0.022890452, + -0.0066386163, + 0.025406437, + -0.016625676, + 0.0050867484, + -0.0019982362, + 0.013334292, + 0.008351905, + -0.007476736, + -0.010762749, + -0.0015179609, + -0.028696168, + -0.0010153487, + -3.523411E-4, + 0.009496042, + -0.012071495, + -0.009859894, + 0.027762575, + -0.0056458456, + 0.0024367664, + 0.0033292815, + 0.014705004, + 0.0070951837, + 0.015049889, + -0.0075261286, + 0.0062384005, + -0.026583042, + 0.01647215, + -8.051976E-4, + 0.011639249, + 0.03434256, + 9.92289E-4, + -0.019079035, + -0.035896793, + -0.0017824909, + -0.01090554, + 0.0077954056, + -0.006218616, + -0.022242105, + 0.008417821, + 0.00525729, + 0.008109592, + 0.004004317, + 0.026624447, + 0.007847639, + -0.0039030279, + 0.005409009, + 0.005442441, + -0.009446351, + -0.0039281165, + 0.0062776036, + -0.03868366, + -0.0076451725, + 0.0017559438, + 0.03424526, + 0.010466194, + 0.014749105, + 0.011992293, + -0.010480893, + -0.026722051, + -1.1542888E-4, + -0.024547448, + -0.0046637724, + -0.005833106, + 0.020468406, + -0.0198518, + 0.04765179, + -0.017245423, + 0.0026248496, + 0.008447984, + -0.01559503, + 0.02266446, + 0.0036042861, + 0.0046858597, + 0.029506149, + -1.2361418E-4, + 0.010833003, + -0.0070439354, + -7.1893104E-5, + 0.003336947, + 0.00669987, + -0.005307525, + -3.43267E-5, + -6.1436946E-4, + -0.009183498, + -0.005696936, + -0.016137082, + -0.004643705, + 0.01099519, + 0.0038815455, + -0.010688061, + 0.028177084, + -0.0067804544, + 0.0076194457, + 0.050641622, + -0.023026137, + -0.008105736, + 0.018624658, + -0.028864482, + -0.018353825, + 0.0025444224, + 0.0122949695, + 0.027501684, + -0.003556604, + -0.010869168, + 0.0022383372, + -0.021240355, + -0.008676543, + 0.0025538448, + 0.012001663, + 0.0011626888, + 0.00881548, + -0.036297813, + 0.0027303912, + -0.012548602, + -0.0028922113, + 0.004712493, + -0.029521625, + -0.03191452, + -0.0028265247, + 0.00583477, + 6.087222E-5, + 0.008500136, + 0.00788536, + 0.014662514, + 0.03293766, + 0.005746864, + -0.017735787, + -0.0013447973, + 0.011541401, + -0.0013708818, + -0.01675054, + 0.024902187, + -0.010428651, + 0.015552404, + -0.005437159, + -0.0010451702, + -6.6192774E-4, + -0.009472239, + -0.0058398424, + 0.012328506, + -0.014429196, + 0.018728027, + -0.020923976, + -0.0348497, + 0.011914861, + -0.012777612, + 0.01085503, + -0.016131878, + 0.010319981, + -0.006642688, + 0.0103418715, + -0.020380368, + 0.007092805, + 0.0127540445, + -0.0019078207, + -0.017984645, + -0.028201751, + 0.0029021078, + -0.025905892, + 0.004317448, + 0.037234712, + 0.024003342, + -0.008119904, + 0.02567946, + -0.0025319988, + -0.014490589, + 0.0027194028, + 0.008460032, + 0.008418303, + 0.008989942, + -0.01499573, + 0.019557832, + 0.016711587, + 0.0041173873, + -0.016289968, + -0.024616102, + 0.009026997, + 0.026779914, + 0.003084458, + -0.0074993614, + -0.009680334, + -0.021717919, + 0.009165232, + -0.031502113, + -0.022287404, + -0.016574806, + -0.015942166, + 0.009846251, + 8.304602E-4, + -0.0046477537, + -0.04294785, + 0.0064162356, + -0.026531192, + -0.02568523, + 0.017160969, + -0.020463353, + 0.023645848, + -0.021534937, + -0.007623626, + 0.0020657752, + -0.010656113, + 0.0069410205, + -0.029673237, + -0.01668495, + 2.798182E-4, + 0.03362824, + -0.024032515, + 0.010378455, + 0.009570127, + 0.021709796, + 0.008539885, + -0.004915769, + -0.0067655435, + 0.0168916, + -0.002851674, + -0.0030990983, + -0.004516021, + -0.001843438, + -0.001625932, + 0.01796811, + 0.027191117, + -0.0038859067, + 8.534687E-4, + 0.0056166034, + -0.022606669, + 0.012915464, + 0.01742332, + -0.0049818885, + -0.017227024, + 0.013786397, + 0.012388283, + -0.004445574, + -0.016444348, + 0.012756438, + -0.009017032, + 0.016529916, + 0.029091174, + 0.0033478905, + 0.019481273, + -0.026482318, + 0.0020364388, + -0.0021743465, + -0.0087877195, + -0.0077914097, + -0.02305526, + -0.006159695, + 0.01935567, + 0.01804414, + 0.003300991, + -0.040265333, + -0.0057388423, + -0.021325639, + 0.043586943, + -0.00442481, + -0.010234439, + 0.040585335, + -0.009457689, + -0.012244654, + 0.0024264248, + 0.004016165, + 0.0019698334, + 0.025468161, + -0.019972097, + 0.012780309, + -0.0044629243, + 0.023607556, + 0.0047949837, + -0.00838978, + -0.02540076, + 0.0043291124, + 0.02739774, + -0.016934473, + -0.005229666, + 0.017554209, + 0.023218146, + 0.009440582, + -0.0077302037, + 0.0052836062, + -0.0019456949, + -0.03395598, + -0.008808324, + 0.012065218, + -0.010538277, + 0.022359388, + -0.0013534789, + 0.0022473123, + 0.0013969528, + -0.00817172, + 0.011896901, + 0.01336265, + 0.010455186, + 0.004033298, + 0.019221462, + -0.014000765, + -0.0035836957, + -0.009630931, + 0.011418092, + -1.0626179E-4, + -0.024846332, + -0.02101418, + 0.010133572, + 0.01780704, + -0.028427238, + -0.02191833, + -0.014111928, + -0.001591341, + -0.023975687, + -0.002616307, + -0.004629855, + 0.014858001, + 0.0065615713, + 0.006120659, + 0.012465953, + -0.009486796, + 0.0012429934, + -0.029495688, + 0.0018717345, + -0.019776076, + 0.010092104, + -0.013788037, + -0.032748815, + -0.02097935, + -0.004276007, + 0.016838953, + 0.014154168, + 0.016762482, + 0.02528257, + -0.01445458, + -0.00221034, + -0.02329961, + 0.007588151, + -0.02304372, + -0.0114796925, + 0.011982024, + 0.012896043, + -0.024664093, + -0.032148544, + -0.013619475, + 0.00829251, + 0.02179266, + 0.019607881, + 0.016955964, + 0.01859503, + -0.029096998, + -0.003506969, + 2.0670536E-4, + 0.028734712, + 0.0122137265, + 0.016639097, + -0.018770019, + -0.027682213, + -0.0027954106, + 0.021628482, + -0.009552509, + -0.0010871963, + -0.0065966374, + 0.015740067, + 0.011051335, + 0.012257968, + -0.0033226712, + -0.026854735, + 0.0032028663, + 0.024173366, + -0.0054061674, + -0.008439473, + 0.026721561, + 0.034720346, + 0.002001122, + 0.010555507, + -0.033496298, + 0.0035718302, + -0.017454432, + -0.010164573, + 0.019462936, + -0.008925536, + 0.022746712, + -0.016226826, + -0.0033604612, + 0.014140628, + 0.0014744231, + -0.006032285, + 0.012540365, + 0.009828806, + 0.011970906, + -0.008595364, + 0.019320033, + 0.0038062544, + -0.014542692, + 0.002302944, + 0.043682627, + 0.009389465, + 0.024802878, + -0.011405064, + -0.01110862, + -0.0025866095, + -0.009050054, + -0.0050701387, + 0.019471474, + -0.02450533, + -0.028512621, + 0.005581782, + 0.010396748, + -0.0029589024, + 0.011319037, + 3.4834057E-4, + 0.0090578925, + 0.017180756, + -0.0067464793, + -3.2356664E-4, + -0.020252524, + -0.011491506, + 0.023411456, + 0.0024352984, + -0.006737895, + -0.010041828, + 0.017971748, + 4.118358E-4, + 0.007160167, + 0.0050146664, + -0.0028514713, + 9.135978E-4, + -0.011158936, + 0.0065297172, + 0.006716329, + -0.0071113445, + 0.008918459, + 0.0058150855, + -0.006618013, + -9.164747E-4, + -0.0030617926, + -4.2699077E-4, + -0.007784533, + -0.018398827, + 0.0030191815, + 0.0041467207, + 0.0017731021, + -8.479337E-4, + 0.033837855, + 0.02198946, + -0.0068922043, + 0.0035937605, + 8.8460924E-4, + -0.003769079, + 0.007557736, + -0.011668377, + -0.022346135, + -0.020127691, + -0.02099816, + -4.0257326E-4, + -0.010129361, + 0.012261928, + 0.024758277, + 0.022184806, + -0.016262678, + -0.0016224167, + 0.018246168, + 5.2675572E-5, + -0.023279613, + -0.044820853, + 0.03133263, + -0.019169, + 8.782478E-4, + 0.0029442105, + -0.00897224, + -0.004617022, + -0.023530092, + -0.014267435, + 0.018071974, + -0.021363948, + -0.014545173, + 0.03909937, + -0.0063813287, + -0.006468705, + 0.0016714749, + -0.013450879, + 0.04441911, + 0.014394709, + 0.008158825, + -0.016456278, + 0.00789354, + -0.014794308, + -0.020494314, + 0.009428005, + 0.0055200313, + 0.0072157523, + -0.011885085, + -7.6348503E-4, + -0.014868551, + -0.012034881, + 0.007414759, + 0.0027356152, + 0.0047771703, + -0.047734715, + -0.02441565, + 0.0024400814, + 0.0027624655, + -0.013740823, + 0.02026839, + 0.00842996, + 0.01700864, + -0.0029285152, + -0.0015641901, + -0.027680088, + 0.026919339, + -0.00898366, + -0.018295676, + 0.019032177, + -0.025641339, + 0.031662777, + 0.0014727308, + -0.022570696, + 0.010062705, + -0.0025055436, + 0.018954134, + 0.01281578, + -0.017949682, + 0.007431371, + 0.013830352, + 0.0031593132, + -0.0047659455, + 0.016747305, + 0.020021362, + -0.022243103, + -0.003879359, + 0.0038494146, + -0.0056855697, + 0.009436531, + -0.019511169, + -0.014503847, + 0.008542072, + -0.021756336, + -0.006165622, + 0.004453746, + -0.02121692, + -0.008457382, + -0.01872652, + 0.018011212, + 7.9690886E-4, + -3.2235635E-4, + 0.009341296, + -0.010841629, + -0.008758147, + -0.0057094754, + 0.013304588, + -0.013021883, + 0.019739626, + 0.014384991, + 0.009881679, + -0.0073498986, + 0.009118995, + -0.010664726, + 0.0031999883, + -0.010457396, + -0.0019533893, + -0.022102373, + -7.5967296E-4, + -0.009187878, + 0.011843467, + 0.002380381, + -0.026591858, + -0.0020372486, + 0.0104895225, + -0.024149477, + -0.017174423, + 0.0035378565, + 0.0061254986, + 0.014456629, + -0.004205166, + 0.0032341946, + -0.0071524573, + 0.021560105, + -0.014777855, + 0.016112803, + 0.008361192, + 0.02596833, + 0.02390032, + -0.010852466, + -0.01170653, + 6.0571235E-4, + -0.00629481, + 0.0065165465, + -0.0046015563, + 0.022209324, + 0.008986581, + -0.017560473, + 0.026161833, + 0.036460556, + -0.0022388261, + -0.020619523, + 0.0076587554, + -0.016675536, + 0.01004421, + 0.015088743, + 0.031508733, + 0.002581437, + -0.0012874126, + -9.805415E-5, + 7.7555556E-4, + -0.012583985, + 0.015307384, + 0.0051750736, + -0.0010436575, + -0.0076888036, + -0.011268417, + -0.002045863, + 0.001232937, + 0.018508626, + -8.626364E-4, + 7.677738E-5, + 3.9685747E-4, + -0.0050964886, + 0.01702566, + -0.0110692065, + 0.012071461, + -0.008442294, + 0.010087895, + -0.031617533, + 0.016930694, + -0.0064166565, + 0.002200853, + -0.03610052, + -0.02698731, + -0.01864176, + 0.009924576, + 3.941421E-4, + 0.019816432, + 0.0039891885, + -0.025306333, + 0.0034469517, + -0.0017317871, + 0.003624128, + 0.0016454806, + 0.026710665, + 3.1807364E-4, + 0.0029196683, + -0.0025673814, + 0.016130015, + -0.007441302, + 0.011440994, + 0.008554382, + -0.0050159404, + 0.010089599, + 0.036366556, + -1.7102198E-4, + 0.005545165, + -0.010399255, + 0.013155357, + 0.0049009435, + 0.009113472, + 0.005251275, + -0.02378944, + -0.011475517, + -0.013790877, + -0.031899244, + 0.0035534878, + -0.016338203, + -0.010198947, + 0.02320408, + 0.013183223, + -0.0020989452, + -0.006711062, + 0.0151798595, + 0.0029519873, + -0.016636772, + -0.0047219396, + 0.020209199, + -0.008658422, + -0.0049843956, + -0.0059145465, + 0.0027056118, + -0.0041047498, + -0.013679513, + -0.002895611, + -0.010051099, + 0.014143788, + 0.030162342, + 0.009624723, + -0.025287744, + 0.0060542896, + -0.032190885, + 0.015915837, + -0.019562926, + -0.0018829498, + 0.019926423, + -0.010990015, + -0.0075264974, + 0.010157744, + -0.0108051505, + -0.03473599, + 0.003191106, + 0.012061953, + -0.020084823, + -0.0052063167, + -0.013867133, + 0.019931251, + 0.0060787112, + -0.009084338, + -0.017197639, + -0.00890398, + 0.014029428, + 0.04260986, + -0.0050655887, + -0.0017661455, + -0.0023784777, + 0.005085025, + 0.0029207955, + -0.018119872, + 0.030634163, + -0.0140729295, + 0.014668826, + -0.008309333, + -0.024865627, + -0.011541225, + 0.0034945956, + -0.008585846, + 0.006955757, + -0.022605361, + 4.925364E-4, + 0.015495426, + -0.004975241, + 0.0017169613, + -0.0050222687, + 0.0010675509, + 0.010088884, + -0.019146381, + 0.012446, + 0.0047893617, + -0.0033427728, + -0.00528133, + 0.017539423, + -0.010371235, + -0.0066729668, + -0.02080823, + 0.0211528, + 0.0077562677, + 0.0026057372, + 0.0035772282, + -0.018177828, + 0.028501825, + 0.0154872, + -0.013658279, + -0.014031849, + -0.015225512, + 0.027528511, + 0.037048906, + -0.008587293, + 0.020047026, + 0.0023674797, + 0.016981665, + 0.033004276, + 0.008273456, + -0.0024247714, + 0.010118279, + -0.029271556, + 0.029052898, + -0.009157423, + -0.005211111, + -0.01610643, + -0.0025076503, + 0.00220714, + -0.0043458273, + -0.01496386, + -0.0052071367, + -0.022886345, + 0.013723678, + 0.015882995, + -0.025354305, + -0.011497492, + -0.008736605, + 0.008436617, + -0.015028292, + -0.006917846, + 0.014420949, + -0.014729286, + 0.0055397497, + -0.0063530407, + -0.022695148, + 0.014445653, + 0.008179683, + 0.010974539, + 0.018827671, + 0.006163588, + -0.005946747, + -0.011044173, + 0.010678093, + -0.006707397, + -0.03058704, + 0.011684021, + -0.004360004, + -0.011408866, + -0.043648887, + -0.0079626925, + 0.0051914975, + -0.0011845117, + 0.003727642, + -0.020222418, + -0.0015428179, + 0.0037594899, + -0.0013667295, + 0.015780114, + 0.03455422, + 0.0026427552, + 0.021708306, + 0.013701533, + 0.030072734, + 0.010290005, + 0.0051920866, + 0.0040947488, + -1.9716415E-4, + 0.0059006778, + 0.004825311, + -0.010415035, + 0.015513277, + -0.010903036, + -0.011242285, + 0.027861787, + -6.4900785E-4, + 0.017237019, + -0.021000048, + -0.0016112858, + -0.025577689, + 0.017491015, + 0.014507618, + -0.016358854, + 0.012774923, + 0.020739887, + 0.0034801015, + 0.0080944635, + 0.011172867, + -0.018479282, + -0.01805324, + -0.025741573, + -0.005573528, + 0.03891036, + 0.017634228, + 0.0034032157, + -0.0041091363, + -0.01875433, + -0.016224306, + 0.004945414, + 0.0018784031, + -0.012758066, + -0.009769354, + -0.00848268, + -0.0077850334, + 0.008020608, + -0.015006714, + 0.008640143, + -0.013708186, + -0.014472195, + 0.011027416, + 0.01183149, + 0.007317656, + -0.0031145872, + -0.019671435, + -0.014382557, + -0.0052150255, + -0.03341359, + 0.0025325916, + 0.0019538668, + -0.021460524, + -0.009212995, + -0.0026542896, + -0.025351448, + -0.017798563, + 0.012449053, + -0.01395022, + -0.018644746, + -0.033280555, + -0.010853742, + 0.015109406, + -0.0042546685, + -5.041703E-4, + -0.01971927, + 0.019187162, + -0.0037323276, + -0.0049271807, + 0.026598606, + 0.024633043, + -0.005553826, + -0.018875185, + 0.005037342, + -0.025019083, + 0.010016016, + -0.0055323, + -0.010140525, + -0.012140793, + -0.02260163, + 0.010518576, + -0.014217105, + -0.01761527, + 0.014147722, + 0.012510565, + -0.004689753, + 0.004281026, + 0.016543759, + 0.013165105, + -0.027901892, + 0.004427884, + 6.228197E-4, + -0.01327913, + 0.023980284, + -0.016727552, + -0.016192101, + 0.008594409, + -0.014159837, + 0.018028837, + 0.0027904403, + 0.014527109, + -0.0034178905, + -0.021194976, + -0.0038843604, + -0.023108248, + -0.0068321624, + 0.0073513994, + 0.035229076, + -0.016778918, + -0.016984854, + 0.0055134515, + -0.022480344, + -0.0052543203, + -0.010994896, + 0.030576693, + -0.0149707105, + -0.0050917612, + -0.014548095, + -0.01841043, + -0.019449955, + -0.003714933, + 0.018748302, + -0.023451034, + 0.0031551924, + 0.0033203699, + -2.3407437E-4, + 0.0055955555, + -0.006995161, + -0.015500874, + 0.011627346, + 0.012972023, + 0.0022603436, + -0.0025836956, + 0.03969882, + 0.0056051966, + -0.011305837, + 0.0110948235, + -9.437736E-4, + 0.005313324, + 0.01221694, + -0.007931131, + 0.022955261, + -0.012550275, + -0.007094345, + 0.010647376, + -0.008720796, + -0.0027675063, + -0.010470679, + 0.010847034, + -0.022735259, + -0.0281973, + -0.015887983, + -0.0043262993, + -0.0020457297, + -0.018407563, + -0.015040953, + 0.009974985, + -0.020857768, + -0.009472513, + -0.0047314605, + -0.01273482, + -0.0105274655, + -0.028516727, + -0.016639147, + 0.00449152, + 0.0143778315, + -0.017901165, + -0.011487969, + -0.018138895, + 0.0041879863, + 0.008371014, + -0.015601322, + 0.020093627, + 0.015096153, + 0.005518544, + 0.009231819, + -0.018118847, + 4.6303065E-4, + -0.0029110713, + -0.008669027, + 0.006308961, + 0.022996617, + -0.020481985, + -0.017130088, + -0.0011797897, + 0.030392056, + -0.017908582, + -0.020868817, + -0.0015482422, + -0.0064397417, + 0.005597006, + 0.0073776883, + -3.1042655E-4, + -0.002022702, + 6.7445537E-4, + -0.012759847, + 0.019044288, + 0.0042548836, + -0.0075215423, + 0.016443053, + 0.017613765, + 0.005007435, + -0.0013571555, + 0.0012564542, + -0.006872029, + -0.0066298475, + 0.030118814, + -0.003461878, + -0.010613843, + -0.027011108, + 4.1483645E-4, + 0.004036102, + 0.0152791655, + 0.015345166, + 0.0031582061, + -0.0018307993, + -0.009192377, + -0.016224664, + 0.0021529987, + -0.005238224, + 0.0016791187, + -0.026684891, + 0.009682051, + -0.004663509, + -0.005236739, + -0.014671586, + 0.0061385077, + 3.6033284E-4, + -0.018771315, + -0.011819973, + -0.026115283, + -0.019674594, + -0.009881139, + 0.0013106924, + 0.030923897, + -0.0040141167, + -0.018564876, + -0.026969932, + 0.010550383, + 0.012924653, + 0.002262283, + -0.0060966457, + -3.1197647E-4, + 0.007473918, + 0.0020681464, + -0.0013181899, + 0.008730384, + -0.00890527, + 0.029421277, + -0.013495565, + -8.7121263E-4, + -0.0070344065, + -0.013703225, + -0.0148101, + -0.014572731, + 0.029417692, + 0.011942544, + 0.010788656, + -0.007636936, + -0.014231693, + -0.0037511725, + -9.0821827E-4, + 0.0012905162, + 0.020098632, + -0.00849323, + -0.008894883, + -0.02875685, + -0.0023955507, + -0.021775508, + 0.00566097, + 0.0056240754, + 0.020562017, + 0.0025682463, + -0.01425906, + -0.006866038, + -0.04002106, + 0.006035891, + 0.012354504, + -0.012255174, + 0.010631426, + -0.009045247, + -0.0013619558, + 0.017069506, + -0.016154446, + 0.0025677003, + 0.010479511, + -0.003300274, + 0.005505456, + -0.014600434, + 0.0055802832, + -0.009006107, + -0.0010332807, + -0.01933208, + 0.013642236, + 0.012388391, + 5.165063E-4, + 0.018456226, + -0.008842666, + 0.004478622, + -0.019175887, + -0.032019213, + -0.004514975, + 0.013472156, + -0.009801562, + -0.015622956, + -0.020221738, + 0.018331666, + -0.0034501473, + -0.0040710815, + 0.0025832185, + -0.006199198, + -0.004524086, + -0.016288761, + -0.0072474643, + -0.0063493242, + -0.038308542, + 0.018496903, + 0.012687051, + -0.0035053669, + -0.009174892, + 0.008522142, + 0.027146755, + -0.0015814806, + -0.012344771, + -0.0058223554, + -0.024238318, + -9.908897E-4, + 0.008167769, + -4.6180685E-5, + 0.0025073835, + 0.0046064956, + -0.013256132, + -0.01642342, + -0.019666098, + 0.03042934, + 0.0066770855, + -0.0072631477, + -2.5652023E-4, + -0.03909585, + -0.024141436, + 0.0041358764, + -0.00479636, + 0.028450416, + -0.013851697, + 0.0037072028, + 0.010537364, + -0.0013924511, + 0.018442897, + 0.0071822032, + -0.0073512485, + 0.00860762, + -0.0016185255, + -0.00915012, + -0.0015760818, + -0.010865484, + 0.010642954, + 0.012720151, + -0.006308522, + 0.013290351, + 0.013042064, + -0.0058768513, + -7.4714137E-4, + 0.0034395051, + 0.0066331816, + 0.0015072818, + -0.0058596157, + -0.009909001, + 0.006394587, + 0.02048884, + -0.016552752, + -0.008241821, + 0.022917166, + -0.011875699, + 0.010645798, + 0.008798659, + -0.015638974, + 0.0031835393, + 0.0030390422, + 0.007169211, + -0.0187335, + 0.012550834, + -0.0016083852, + -0.0010334357, + 0.0033575103, + 9.2797383E-4, + 0.02760358, + -0.0017029947, + 0.024715008, + 0.014430331, + 5.2500435E-4, + 0.024126152, + -0.0038535674, + 0.01525723, + 0.015734648, + 0.051239613, + -0.0035885295, + 0.040047012, + 0.019795086, + -0.003420332, + 0.00854619, + -0.021024872, + -0.0031193516, + -0.009151595, + -0.0010221507, + 0.010233973, + 0.006746178, + 0.0054790433, + 0.0042537195, + -0.009439017, + 0.035594925, + 0.010631924, + -0.016826766, + 0.018241988, + 0.03730534, + -0.021066206, + -0.0073354635, + 0.01906501, + -0.022151347, + -0.0020688854, + 0.0026656652, + 0.0060408316, + -0.024328819, + -0.0010723835, + 0.0055912696, + 0.0028500499, + -0.016494937, + 0.008633215, + -0.008733476, + 0.0052089775, + 0.013187957, + -0.0019604526, + 0.018016914, + -0.009185, + 0.009158308, + 0.015923671, + 7.7223254E-4, + 0.017844293, + -0.0019169651, + -0.03287052, + 0.013658097, + -0.0040570726, + 0.017499782, + 0.0020655163, + -0.013758796, + -0.008332079, + 0.0075049866, + 0.044154882, + 0.023225311, + -0.007947802, + 0.002968855, + 0.016889915, + -0.046269044, + -2.7896508E-4, + -0.011515442, + -0.0057036295, + 0.014312121, + 0.0038355938, + -0.019885104, + 0.0043053837, + -0.013600877, + 0.0050148764, + -0.01662234, + 0.019765077, + -0.007983046, + -0.020592464, + -0.001228296, + -0.037459902, + 0.002518198, + -0.03209358, + -0.016577587, + 0.019476332, + -0.020668589, + -0.012295309, + 0.0022290756, + 0.020175494, + 0.01763828, + 0.013684436, + 0.0064116297, + 8.7559735E-4, + 0.006099081, + -0.009321172, + 0.0033571536, + 0.010336496, + 0.010489978, + -0.0035957422, + 0.0020347433, + -0.005732638, + 0.01120439, + 0.0039970027, + 0.005684286, + -0.007697327, + -0.025275312, + 0.016169291, + 0.0028932057, + -0.0029742604, + 0.012538644, + -0.0045392797, + -0.002881961, + -0.03258769, + 0.0040951166, + 9.80771E-4, + 0.013923516, + -0.0019367231, + -0.00764082, + -0.016643828, + -0.0017635386, + 0.007524468, + -0.008943159, + 0.004339288, + 0.012715489, + -0.012696317, + 0.009449674, + -0.03468187, + -0.019894157, + -0.006531268, + 0.015204304, + -0.017966125, + -0.013806202, + 0.003192581, + 0.014457467, + -0.019948239, + -0.016479451, + 0.0113823395, + -0.005635132, + -7.8627025E-4, + -0.0044244216, + 0.00619307, + 0.013800658, + 0.023260213, + -0.003684358, + -0.003004697, + 0.010438925, + 0.0015664649, + 0.03618864, + 0.0038817783, + 0.011704178, + 0.01226281, + -0.002002998, + 0.0067690136, + -0.02935435, + 0.0248473, + 0.015534676, + 0.012913433, + 0.01228766, + -0.015211282, + -0.003873671, + 0.0036156576, + -0.011444979, + 0.021851098, + 0.0021926486, + 0.020765916, + 0.01334439, + 0.018618608, + -0.0027050064, + -0.0074958564, + -0.014456908, + 0.010488492, + -0.0028214934, + 0.008902552, + 0.012996518, + 0.009765119, + -0.032537006, + -0.008110652, + -0.009966719, + 0.012085455, + 0.018386967, + -0.0022325376, + -0.0155319525, + 0.01513628, + 0.0029967176, + 0.0016071866, + -0.0016359297, + -0.016922161, + 0.016810866, + 0.025012057, + -0.027003387, + 0.047924902, + 0.011619666, + -0.0057992814, + -0.0052105533, + 0.025613137, + -0.029544292, + 0.0040593273, + 0.025534967, + 0.007647121, + -0.009598141, + -0.0025674966, + -0.008390827, + 0.021055184, + 0.0054678195, + -2.8753793E-4, + 0.013480708, + -0.01919582, + 0.029546326, + -0.037637632, + 0.030998534, + -0.0029456508, + 0.024448393, + -0.0049884557, + -0.012519019, + -0.004314019, + 0.014957348, + 0.012864854, + -0.046892293, + -0.02108151, + 0.006634729, + -0.021272853, + -1.5257289E-4, + -0.007875873, + 0.012483354, + -0.012579747, + 0.009231456, + 0.0070661404, + -0.01887864, + -0.012332898, + 0.008461894, + 0.005677784, + 0.016367592, + 0.012074692, + -0.01107935, + -0.008050983, + -0.004936968, + -0.010008896, + 0.008478278, + 0.026617682, + -0.014559006, + -0.011492517, + 0.0033250533, + -0.03639755, + 0.04967141, + 0.0067754895, + 0.012030093, + 0.006609649, + -0.006325759, + 0.008153665, + 0.015938658, + 0.008002249, + 0.01712984, + -0.017076267, + -0.020595592, + 0.0020933237, + 0.0016618079, + -0.03157249, + 0.019127877, + 0.004809221, + 0.02446441, + -0.02408119, + -0.01518064, + -0.0074830754, + 0.024418786, + 0.015408716, + -0.004751304, + 0.012562501, + -0.018819595, + -0.00440126, + -0.024550514, + 0.001434955, + -0.006928131, + 0.009599534, + -0.0137127545, + 6.2233966E-4, + 7.1753794E-4, + -0.006088978, + 0.035570946, + -0.009034055, + 0.00996713, + -0.0100374045, + -0.0033304873, + -0.0068422095, + 0.0011062255, + -0.008465654, + 0.0049048252, + 0.024756813, + 0.016363554, + 0.029743226, + 0.007477714, + 0.010643508, + -0.023634247, + 0.030417087, + -0.011932125, + -0.007967225, + 0.01641344, + 0.0078224, + -0.0074352915, + -0.00264596, + -0.04785843, + 0.009536296, + 0.004373358, + -0.009161665, + 0.0034735808, + -0.00827245, + -0.005941825, + 0.012677993, + -0.006468155, + -0.032162722, + -0.014328533, + 0.017440915, + 0.016116979, + 0.0016008639, + 0.013612151, + 0.027245685, + 0.004045058, + 0.015694639, + -0.0014808587, + -0.010982409, + 0.019818576, + 0.012444412, + 0.017821837, + 0.0044626333, + 0.0027430777, + 0.025472814, + 0.004656266, + -0.007137354, + -0.00983014, + -0.010648925, + -0.0062571117, + 0.012967973, + 0.0045079277, + 0.004507351, + 0.02726226, + 0.033316355, + 0.0017496541, + 0.008523521, + -0.024525084, + 5.8184017E-4, + -0.013682987, + 0.025395345, + -0.022681002, + -0.02598937, + -0.0053744996, + 0.0018547906, + 0.012706541, + -0.0063386187, + 9.774557E-5, + 0.00703608, + 0.014935118, + 0.027181184, + -0.0025173496, + 0.027730048, + -0.022390239, + -0.0074362024, + -0.031028947, + 0.0056471988, + 0.023906725, + 0.009338074, + -0.0031566161, + -0.025388123, + -0.013316854, + 0.005204332, + 0.0064760195, + -0.0015922268, + -0.008439481, + 1.1784557E-4, + -0.0043659275, + -0.01773269, + -0.00442641, + -1.2901257E-4, + 0.010455711, + -0.015183693, + -0.017603243, + -0.004334871, + -0.03596744, + 0.0034640443, + -0.027812555, + 0.018819878, + -0.049490314, + 0.023412775, + -0.0031826429, + 0.0013003073, + -9.888705E-4, + -4.364157E-4, + -7.456096E-4, + 0.0051602786, + -0.010622331, + -0.011098644, + -0.007378447, + 0.032266736, + -0.011168846, + -0.018104699, + -0.038139656, + 7.282556E-4, + 0.016377212, + -0.004721652, + 0.005600298, + 0.021114646, + -0.019726917, + 0.015661146, + 0.0370925, + 0.011180394, + -0.02511942, + 0.014140053, + 0.001377484, + 0.012966379, + 0.013365766, + -0.016120698, + 0.015720611, + -0.021201987, + -0.0034459287, + -0.016825942, + -0.020000713, + -0.0290057, + -0.026351944, + -0.028763138, + -0.01754802, + 0.010080424, + -0.023961555, + -0.02678648, + -0.0011719733, + 0.01697732, + 0.0019338172, + 0.024935814, + -0.011553867, + -0.015983306, + 0.0024820846, + 0.012648608, + 9.2019804E-4, + -0.0011212858, + -0.0010882837, + -0.009676254, + -0.006165805, + 0.0014141485, + -0.0036660593, + 0.012652795, + 0.023052713, + -0.011364774, + -0.0034674965, + 0.0034920105, + -0.023548085, + 0.005021694, + 0.017208263, + 0.006510592, + 0.019704567, + -0.030544354, + 0.02087203, + 0.0036657779, + 0.016710838, + -2.370692E-4, + 0.0070114164, + -0.00595228, + 0.017312307, + -0.014514663, + 0.0059198258, + 0.021761512, + -0.020145433, + 0.015674038, + 0.008424459, + -0.009621792, + -0.013288598, + -0.025565596, + 9.298763E-4, + -0.0050894786, + 0.031788003, + -0.0019007529, + 0.008238593, + -0.00564791, + 0.015094594, + 0.0037724643, + -0.0023443603, + 0.005921105, + -0.02439392, + -0.023970198, + 8.957926E-4, + 0.0061442317, + -0.00448249, + -0.029653803, + -0.018176394, + 0.012114951, + -0.010844293, + -0.012879049, + -0.014238973, + -0.03354935, + 0.013747059, + 0.03239384, + 0.012759342, + -0.003836955, + -0.01632767, + 0.020218851, + 0.008985424, + 0.013097543, + -0.0030732309, + 0.0063266098, + 0.002381771, + 0.021669874, + -0.013879319, + -0.0035117334, + -0.0048293946, + 0.02345209, + -0.0265942, + 0.020373533, + -0.00846697, + 0.013166514, + -0.0055784294, + 5.3490134E-4, + 0.009610015, + 0.010044806, + 0.016720306, + -0.01149714, + 0.012315246, + 0.009150965, + 7.9614314E-4, + 0.0047849338, + 0.0064327237, + -1.2220674E-4, + 0.007079169, + -0.017771874, + -0.0069267387, + 0.024985833, + -0.0050793895, + -0.041521244, + 0.014489844, + 0.005743111, + -0.017081026, + 0.024404248, + 0.0035777937, + 0.014649587, + -0.0023925768, + 0.023406453, + 0.011328376, + -0.014842365, + -0.030757165, + 0.0013824173, + -0.005786108, + 0.0019035689, + 0.013421989, + -0.01477179, + 0.013082889, + -0.004544863, + -0.0088070715, + -0.0010241737, + 0.01720623, + 0.014087227, + 5.9102505E-4, + -0.01727911, + 0.01725186, + 0.025557924, + -0.022794852, + -0.007245309, + -0.022451723, + 0.029881833, + -0.0027447317, + -0.017069638, + -0.011901017, + 0.010818969, + 0.014019546, + -0.013418491, + 0.0062113074, + -0.043375835, + 0.013519559, + -0.017838737, + -0.010603121, + -0.0016406584, + 0.0048147133, + 0.024170062, + -0.017669756, + 1.841782E-5, + -0.026581602, + -0.002418304, + 0.018547397, + -0.0069485735, + 0.008038234, + 0.030277831, + 0.009590511, + 0.03837234, + -0.017172042, + -0.004309579, + -0.0045322264, + -0.010459693, + 0.0015454144, + 0.019035079, + -0.015383159, + -0.009771819, + -0.0077285417, + -0.0014437921, + -0.016796002, + 0.0013831692, + -0.013942998, + 0.010231079, + -0.0042409482, + 0.009755126, + 0.007896883, + -0.01503151, + 0.022883663, + 0.02439385, + -0.0049191387, + -9.292288E-4, + -0.010544347, + -0.025648052, + -0.0288393, + -0.016318163, + 0.0017336082, + -0.009294827, + -0.021339478, + 0.004357922, + -0.001660943, + 0.006820447, + -0.016781421, + 0.024312466, + -0.007275712, + -0.018958213, + 0.005027948, + 0.014634165, + 0.0013714475, + 0.0054032276, + 0.022494614, + -1.9859652E-4, + 0.021433558, + -0.022925198, + -0.014643544, + -0.017104136, + -0.01433746, + 0.011092483, + 0.0036026572, + 0.010104849, + 0.007408291, + 0.032108165, + 0.01166449, + -0.0075817597, + 0.011263438, + -0.0057515004, + -0.039929513, + -0.0031107042, + 0.006824733, + 0.0044145356, + -0.019835925, + -0.001681798, + -0.012384263, + -0.0017167166, + 0.0016031975, + -0.0111164665, + -0.008203135, + -0.0060143787, + 0.0074420166, + -0.0036463384, + 0.0018948711, + -0.007578358, + -0.012068668, + 0.02647584, + -7.9094985E-4, + 0.00468253, + 0.021491054, + -0.0032484806, + 0.015120493, + 0.0066983285, + -0.017933195, + -0.0016163231, + 0.0028795928, + -0.0014304784, + 0.004111937, + 0.004155511, + 0.0011200893, + 0.002314901, + -0.021377143, + 0.010308078, + 0.0036606202, + -0.0014399657, + 0.0074737174, + -0.0048474474, + 0.005876268, + -0.0033645958, + 0.025324352, + 0.00896298, + 0.0066893357, + 0.018359674, + -0.012014244, + 4.4892394E-4, + 0.0011344485, + 7.089652E-5, + 0.0043993276, + -0.0027843257, + -0.012147936, + -0.0151509885, + 0.012670176, + 0.024988431, + -0.046807304, + -0.012531182, + 0.0148052, + -0.0010124551, + -0.0017871599, + 0.021904545, + 0.014291173, + 0.011109033, + 0.008624612, + -0.0029076233, + 0.016499117, + -0.0017720342, + 0.009373157, + 0.003217945, + -0.013630323, + 0.012424091, + 0.0033908158, + 0.0033656734, + -0.009592568, + -0.019408554, + -0.00772911, + -0.021520345, + 0.014640127, + -0.0067934664, + -0.042862065, + -0.012817219, + -0.007862279, + -0.007359631, + 0.007998869, + -0.017047938, + 0.0040636496, + 0.004213978, + -0.0032086228, + -0.01707057, + -1.4843457E-4, + 0.0057290136, + -9.0469513E-4, + -0.0056015733, + 0.0031015642, + 9.526156E-4, + -0.004372311, + -0.026738955, + 0.012089146, + -0.03557794, + 2.6808027E-4, + -0.0026089163, + -0.01052783, + 0.0030613365, + -0.017659618, + -0.0062849196, + -0.021827802, + -0.025341285, + -0.005814167, + 0.022423515, + 0.0028639524, + -0.017276954, + 0.017868092, + 0.0025031324, + 0.029043036, + 0.0026439591, + 0.0020837842, + 0.014665427, + -0.010369862, + -3.4834043E-4, + 0.0013443669, + -0.014382418, + -0.004499449, + -0.011597266, + 0.03390864, + 0.009123359, + 0.0028571456, + -0.008640538, + 0.017819395, + -8.089746E-4, + -0.03038624, + 0.0057278136, + 0.015231992, + 2.9493237E-4, + 0.009210363, + -0.0034975864, + -0.009674313, + -0.017791532, + 0.012864472, + -0.004396773, + 0.021865368, + -0.010748308, + 0.011743317, + 2.1941109E-4, + -0.015912164, + 0.022669835, + 0.024215767, + 0.010864109, + -0.004887889, + 0.020623874, + -0.03002854, + -0.0044085956, + 0.022122653, + -0.0012949833, + -0.007730825, + -0.012804556, + -3.5460488E-4, + -8.3727326E-4, + -0.01755265, + -0.028830504, + 0.0031195378, + -0.0071289567, + -0.015048458, + -0.018161511, + 0.022274524, + -0.0015202393, + -0.030746924, + 0.02221452, + -0.003959768, + 0.018160546, + 0.010558613, + -0.007958298, + -0.03524325, + -0.0053999256, + -0.053346075, + 0.024195574, + 0.032548625, + -0.0074013057, + -0.015897902, + 0.027961634, + 0.004123009, + 0.02297951, + 0.017363073, + 0.014538064, + 0.0025926689, + -0.0031458812, + 0.009017594, + -0.016932432, + -0.025884965, + -0.0067961086, + -0.012517616, + -0.010227655, + -2.5827673E-4, + -0.016130282, + -0.013209969, + 0.0045760875, + -0.017982, + 0.0018437045, + 0.009019393, + -0.0068914443, + -0.019697372, + -0.004862659, + 0.0039925897, + 0.012405853, + 0.008597472, + 0.014826474, + -0.014093628, + 0.0058596507, + -0.011533156, + -0.010940071, + 0.015649764, + 0.0045920787, + 0.0020583677, + -0.0142188845, + -0.0030282284, + 0.011006356, + -0.035523012, + -0.030625924, + 0.010331405, + 8.9536293E-4, + 0.0059029367, + -0.0077851717, + -0.01640259, + -0.0030062825, + -0.0066604908, + 0.008003622, + -0.015800837, + 0.0017178762, + -0.022583071, + -0.018914364, + 0.0151739735, + -0.013174303, + -0.0023699405, + 0.007085917, + 0.003931285, + -0.003642036, + -0.0056310557, + 0.020768262, + 0.019766109, + -0.01839272, + 0.007492846, + 0.02251671, + 0.0054030255, + 0.007973253, + 0.022545645, + -0.0080178585, + 0.0011431002, + -0.025589202, + 0.008860545, + 0.013022229, + -0.028167875, + 0.003016031, + 0.016041314, + -0.009211297, + 0.040832173, + -0.0075623016, + 0.011606035, + 0.018624954, + 0.01201602, + 0.0014961408, + 0.008026899, + -0.011422288, + -0.0010689184, + 0.0018634298, + 0.005547372, + 0.02303899, + -0.010025156, + -0.0016787655, + 0.0034761291, + 0.0029175354, + 0.017316706, + 0.0017276611, + 0.0037085766, + -0.017968317, + 0.00815131, + -0.021405272, + 0.008504495, + -0.0011835743, + 0.026202366, + 0.0036606642, + 0.0027350711, + 0.00100035, + 0.012282729, + -0.0103021115, + 0.030676123, + 0.018677805, + -0.025569126, + 0.016084922, + -0.013501823, + 0.005980101, + -0.034261778, + 2.874432E-4, + 0.029835064, + 0.010967498, + 0.005160027, + 0.0017041217, + 0.010814725, + -3.387987E-4, + -0.018801726, + -0.019860374, + -0.010574442, + -0.0029906833, + 0.02564236, + 0.002310011, + 0.004200711, + -0.011520778, + 0.017363315, + -0.0152819995, + -0.0074099125, + -0.016745288, + 0.0010374141, + 0.010202681, + -7.5154554E-4, + 0.0046881284, + -4.9742544E-4, + -0.0013617218, + 0.006974963, + 0.025622731, + -5.085539E-5, + -0.001246913, + -0.009880996, + 0.013106319, + 0.012060465, + -0.014649368, + 0.01341318, + 0.034991045, + -0.00689168, + 0.007966897, + 0.029209469, + -0.037720937, + -0.0069781085, + 0.024117673, + 0.012311244, + -0.016663538, + 0.006865396, + -0.016388908, + -0.017502315, + 0.034247667, + 0.014880543, + -0.012895502, + 0.0034247725, + 0.038545847, + -0.02284682, + -0.019382903, + 0.022520065, + -0.0067744, + -0.0063487445, + -0.008523566, + 0.010522155, + 0.010632818, + -0.007154602, + -0.0044449307, + -0.019745292, + 0.012080814, + 6.545921E-4, + 0.016217293, + 0.02005804, + 0.005821244, + 0.017872553, + -0.012586697, + -0.0028124836, + -0.025982976, + 0.0056473827, + 0.013120993, + 0.021471383, + -0.018416861, + 0.0011463688, + 0.007331314, + -0.0046374314, + -0.001898192, + 0.020294575, + 0.02093362, + -0.028179592, + -0.0051981146, + 0.0032921245, + -0.016040912, + -8.6475065E-4, + 0.023543859, + -0.013248059, + -0.0053600823, + 0.011042369, + 0.009983498, + 0.0015614238, + 0.003963875, + -0.010429886, + 0.020740854, + -0.009461813, + -0.020859744, + 0.012250634, + 0.005888957, + 0.017412972, + 0.003511883, + -0.003990084, + 0.01227201, + 0.001366675, + 0.005012339, + -0.028720722, + -0.006331662, + 0.00243075, + -0.009952583, + -0.019692622, + 0.019698711, + -0.017258735, + 0.022444898, + 0.0012466197, + 0.006369518, + -0.036732476, + -0.002083968, + 0.015815433, + -0.008118756, + 0.007029122, + -0.004275797, + 0.024024025, + -0.012783445, + 0.016736668, + -0.0040063863, + 0.022159154, + 0.025299666, + 0.002692258, + 0.018008756, + -0.010495858, + -0.0083974525, + -0.0024252792, + -0.0030873886, + -0.007815956, + 0.0019801895, + 0.012194851, + 7.090565E-5, + 0.0090789525, + 0.007638973, + 0.012421048, + 0.00742657, + -0.0070800046, + 0.018704666, + -0.0014847511, + -0.011941581, + -0.03170665, + -0.015523278, + 0.004545878, + -0.0031928602, + 0.0029342482, + 0.028453916, + -0.0010971144, + 0.029964361, + -0.019853327, + 0.00345216, + -0.032103516, + 0.002226318, + -0.030691136, + -0.013739997, + -0.007864009, + -0.015237337, + 0.007894714, + 0.0110067865, + 0.010847167, + -0.0032852718, + -0.013908189, + -0.045598596, + -0.0068086134, + -0.0013330568, + -0.0104287155, + 0.008489019, + 0.016378649, + 0.01950359, + -0.004115211, + -1.2241248E-5, + 0.008977241, + 0.017696628, + 0.026077094, + -0.009440245, + -0.001277065, + -0.007601972, + -0.002883825, + -0.0043171416, + 7.6691045E-5, + -0.009282512, + 0.009573213, + 0.0271522, + -0.034582082, + 0.003265733, + 0.01503208, + -0.0026538218, + 0.001634997, + 0.035612285, + 0.013239343, + 0.0014107487, + -0.013562568, + 0.010850559, + 0.014065766, + 0.020515753, + 0.018664936, + -0.0032063664, + 0.00974484, + -0.021450546, + 0.029001825, + 0.019414604, + -0.022097271, + 0.0028134012, + 0.027808988, + 0.013178359, + 0.0211166, + -0.0029014172, + -0.030136164, + 0.004911379, + 0.0021281391, + -0.02236006, + -0.007016879, + -0.008031392, + -0.0082984, + 0.021238945, + -0.0125603955, + -0.0032575503, + 0.018310498, + 0.031834904, + 0.0333926, + 0.0075989226, + -0.004248492, + 0.0066368976, + 0.011149109, + 0.001553241, + 0.006045902, + 0.0024133758, + -0.0070473645, + -0.0010392186, + -0.011042827, + -1.228021E-4, + -0.018600816, + 0.011472001, + -0.0073789456, + 0.01841822, + -0.017878162, + -0.012725244, + -0.017023053, + 0.016658712, + -0.03718531, + 0.0056258384, + -0.037967008, + 0.027629737, + -0.007170186, + 0.017213676, + -0.014200557, + 0.00230121, + -0.009657176, + 0.011039628, + -0.0022636435, + -0.014821036, + 0.0012248324, + 0.0025171316, + 0.03490876, + -0.0218275, + -0.0030401666, + 0.0042471294, + 0.01863409, + -0.010101796, + 0.014075039, + 0.00782164, + 0.017438892, + 0.002174794, + -0.0072105518, + -0.010480953, + 3.4187143E-4, + -0.020073876, + 0.0428616, + -0.010627035, + -0.0050581447, + 0.0057946444, + -0.0047438624, + -0.009506428, + -0.029807754, + 0.014173196, + -0.0074322745, + 0.01174513, + -0.017469302, + -0.03167214, + -0.0045531816, + -0.008622427, + -0.017671978, + 0.014407043, + -0.0030280245, + 0.01987145, + 2.3113101E-4, + -0.031763088, + 7.328321E-4, + -0.03023034, + 0.0133604, + -0.01334859, + -0.0059611984, + -0.013938061, + 0.010593806, + -0.016198562, + 0.010437329, + 0.0126184365, + 0.012570016, + -0.0035880236, + -0.008585704, + 0.010108435, + 0.0021243645, + 0.012334757, + -0.0062474133, + 0.012738831, + 0.007992953, + -0.011082675, + -0.0019062429, + -0.006429365, + 0.010603672, + 0.0052294987, + -0.007014374, + 0.023106202, + 0.022996927, + -0.034271676, + 0.01663117, + -0.004620054, + -0.03355191, + -0.010730598, + 0.002906359, + -0.010647685, + -0.011092367, + 0.004340369, + -0.0155893825, + 0.020246867, + -0.008236918, + -0.0012112157, + -0.005308018, + 0.0023811532, + -0.012705528, + -0.0101674935, + -0.019751634, + 0.00436656, + 0.008401886, + 0.025085874, + 0.026784372, + 0.003939575, + 0.007289612, + 0.008759852, + 9.5609936E-4, + -0.0035237432, + -0.005863221, + -8.6026394E-4, + 0.019730372, + -0.0061849225, + 0.0017072861, + -0.008566153, + 0.025543394, + -0.012753678, + -0.0055712443, + 0.036361273, + -0.008264617, + -0.012850802, + 0.013697277, + 0.009552721, + -0.011918568, + 0.021771723, + 0.02080851, + 0.01043261, + -0.013895187, + 2.9878906E-4, + 5.587442E-4, + 0.0075795427, + 0.0057057007, + -0.0097015435, + 0.006654578, + -0.032977834, + -0.005995579, + -3.658357E-4, + -0.011983375, + -0.018042985, + -0.0065391613, + -0.014305641, + -0.00651793, + -0.0045353184, + 0.015034861, + -0.001821012, + -0.00959755, + 0.016782857, + -0.028414078, + 0.024858508, + 0.018266302, + -0.0040405067, + -0.019714005, + 1.2743453E-4, + -0.0025964116, + 0.0063889828, + 0.014726631, + -0.010439522, + 0.012286434, + 0.019894546, + -2.7073076E-4, + 0.009132285, + 0.014827041, + 6.030346E-4, + -0.0032053692, + -0.01277072, + -0.012787917, + -0.0040497086, + 0.018442681, + -0.01470966, + -0.00555656, + -0.015177563, + 0.001339184, + 0.0141590135, + 0.007411657, + 0.009755554, + 0.029567324, + -0.0073275724, + 0.015784295, + -0.005783951, + 0.014059284, + 0.02985917, + -0.025906583, + -0.0043332083, + 0.0115925325, + 0.0075837653, + 0.005558787, + -3.516811E-5, + -0.009620789, + -0.011825199, + 0.001829046, + 0.012221619, + 0.004271253, + -0.0073067425, + -0.0036635175, + -6.218269E-4, + 0.008873159, + 0.016196825, + 0.0083648395, + 0.005450924, + -0.025786987, + 0.018765356, + -0.014405337, + 0.0107139135, + 0.026643613, + 0.016906155, + -0.012225376, + -0.009922921, + 0.0074170674, + -0.016895909, + -0.00590569, + 0.011832978, + -0.009455376, + -0.009236726, + -0.0022639697, + 0.014607483, + -0.031210357, + 0.011449264, + -0.010075803, + -0.023306184, + 0.023303583, + 0.008297093, + -0.008855663, + 0.016039753, + -0.0011553856, + 0.007595071, + -0.010524658, + -0.02178062, + -4.2926148E-4, + 0.03304578, + 0.0058641704, + -1.8143562E-4, + -0.011216887, + 0.04496226, + 0.017464824, + -0.016085189, + -0.007093518, + 0.019205932, + 0.0027853942, + -0.030112175, + 0.0079039885, + 0.014222921, + 0.0121401, + 0.0031961051, + -0.015301007, + -0.005693538, + -0.024028016, + -0.017858969, + 0.0026231946, + 0.013444851, + 0.01112611, + 0.012650715, + -0.0034085903, + 0.034736745, + 0.008352135, + 0.010038548, + 0.011459677, + 3.9206102E-4, + 0.038775016, + 0.00782389, + -0.011625007, + 0.013295185, + 0.0270412, + -0.0021202597, + 0.015299524, + 0.002244235, + -0.017985193, + 0.007969252, + -0.009577028, + 0.027235832, + 0.017456649, + -0.030243106, + 0.0017392884, + -1.00626465E-4, + 0.021407038, + -0.020400554, + 0.02265927, + 9.4998186E-4, + -0.016551785, + 0.0048230635, + 0.017722568, + -0.008235745, + -0.014951901, + 0.010218391, + -0.0070935655, + -0.009786615, + -0.020790683, + -0.013616029, + 0.01141663, + 0.010113674, + -0.0031991543, + -0.0033638736, + 0.0035280494, + -0.0021824667, + -0.018840317, + -0.009910967, + -0.020347575, + 0.0092814285, + 0.008931792, + 0.0070290496, + -0.023260303, + -0.009609378, + -0.008503613, + -0.016137201, + -0.017044399, + 0.0037335586, + -0.046715356, + -0.0015223592, + -0.007495661, + 0.008094727, + -0.0073551605, + -0.024420207, + 0.023708325, + 0.02018034, + -0.004293983, + -0.0043454934, + 0.00474672, + -0.004278147, + 0.008627319, + 0.031775765, + 0.008681023, + -0.026395349, + -0.0075643486, + 0.032161303, + -0.03132587, + 0.011414483, + 0.021623142, + 0.009676866, + 0.034847867, + -0.008031274, + -0.0029843573, + 0.004502654, + -0.0020371554, + 0.028319025, + 0.020068862, + -0.028026644, + -0.012693642, + 0.008067013, + 0.0075568594, + -0.014209327, + 0.008708893, + 0.010562458, + -0.013163108, + 0.0074205752, + -0.007580176, + -0.010287544, + -0.0040042214, + 0.015276424, + 0.015218978, + -0.0056973766, + 0.014887867, + -0.009354798, + 0.012621649, + -0.005388776, + -0.013828455, + 0.006167193, + 0.007122499, + 0.009022528, + -0.002594326, + -0.015372937, + 0.03765957, + -0.008324695, + 0.025480831, + -0.0055196076, + 3.9534507E-4, + 0.0151231885, + 0.019202875, + -0.0038509911, + -0.011581764, + 1.2663308E-4, + -0.0044923825, + -0.003807694, + -0.015615155, + 0.02751041, + 8.234633E-4, + 0.0056622988, + -0.021216102, + 0.019453265, + 0.035743434, + 0.0097877085, + 0.03411512, + -0.0049570897, + -0.0036855456, + 0.012784244, + 0.0062880022, + -0.009876554, + -0.010320973, + 0.017037531, + 0.009347068, + -0.0032774748, + 0.012160752, + 0.022061225, + -0.015291542, + -0.018509278, + -0.021106603, + -0.005939592, + -0.013043465, + -0.02612674, + 0.004923976, + -0.0045120884, + 0.019401593, + 0.012981591, + 0.025256095, + -6.297862E-4, + 0.003106733, + 0.008348848, + 0.009053726, + -0.0119601125, + -0.005261323, + -0.011256207, + -0.027806604, + 0.024148516, + -0.0064643486, + 0.031240461, + -0.0055283527, + 0.012968389, + 0.0341169, + -0.020415133, + -0.009871591, + 0.003998505, + -2.4199358E-4, + 0.00270241, + 0.022654518, + 0.009590716, + 0.024925692, + -0.02108597, + 0.017736781, + 0.011922432, + -0.030234981, + 0.016994637, + -0.022924399, + -0.015521529, + -0.017934572, + -0.014455651, + 0.007863196, + -0.010118888, + 0.0013946595, + 0.0073286905, + -0.049401447, + 0.014290971, + 0.0175267, + 0.008637946, + 0.011923471, + 0.02491035, + -0.01828609, + 0.004862969, + 0.01160289, + -0.0084196925, + 0.03044281, + -0.015571669, + 0.0063597015, + 0.0012683279, + 0.018981744, + -0.013553679, + 0.013933738, + -0.01365085, + 0.01392171, + -0.020946162, + 0.009991898, + 0.0054249438, + -0.0071070925, + 0.0029867333, + -0.012764011, + -0.023557102, + -0.01842382, + 0.009907432, + -0.00959912, + 0.0028125898, + -0.019542906, + 0.039341953, + -0.006312185 ], - "paletteEmbedding": [ - -0.010717396, 0.017435433, -0.024292408, 0.02503589, -0.008592654, - 0.01991915, -0.022440666, 0.06367492, 0.041273616, -0.010949778, - -0.039797496, -2.871137e-4, -0.0160267, -0.0026642391, -0.02091297, - -0.008045637, 5.616196e-4, 0.015611544, -0.050575532, -0.018643051, - 0.059167024, 0.052199468, 0.0017054348, 0.008660078, 0.03943364, - -0.0197489, 0.08479357, -0.084765084, -0.026011657, 0.042286903, - 9.291142e-4, -0.023707254, -1.864583e-4, -0.005597476, 0.012994803, - -0.040433697, -0.027737925, -0.05936229, 0.014715515, 0.021195918, - -0.027969304, 0.02464222, -0.055918273, 0.011958771, 0.004334056, - 0.033526357, -0.0055084745, 0.007888571, -0.006162518, -0.01734257, - -0.023184327, 0.026355851, 0.04131096, -0.048122276, 0.038045894, - -0.05258057, 0.032373633, 9.311654e-4, -0.0038562003, 0.055462126, - 0.026203787, -0.0037209974, 0.024330106, -0.026679771, 0.009395998, - 0.062133305, 0.007611208, 0.018000554, 0.014232741, 0.044536542, - 0.027921002, 0.07722981, -0.03743895, -0.0030672026, -0.008936991, - -0.019086685, -0.0025467302, 0.037197206, 0.04815065, -0.020560088, - 0.011585688, 0.025006142, -0.01428614, -0.011430244, 0.0140649965, - 0.03483816, 0.016426696, 0.009193765, 0.006065273, -0.037676174, - -0.032409485, -0.045132216, -0.0045819003, 0.016334062, 0.08277243, - -0.037669096, 0.037628386, 0.00790064, -0.020914692, -0.053188805, - 0.0010417096, 0.029239949, -0.0034333032, 0.0225834, -0.019378869, - -0.024726452, -0.016488507, -0.01179266, -0.01777817, 0.004988416, - -0.0073060123, -0.028809369, -0.010783777, 0.032228913, -0.005211578, - -0.020162234, -0.042380694, -0.0076947394, -0.025094409, 0.072414786, - 0.05746658, 0.015491708, -0.0028658125, -0.042322427, -0.014467687, - 0.015474411, 0.013625009, -0.078266956, -0.05446425, -0.022132775, - -0.019326529, -0.029743444, 0.03129321, -0.05584642, 0.038216412, - -0.0058651296, -0.064059354, -0.04752978, -0.028430577, 0.00954085, - 0.02342917, 0.02213287, -0.024224814, -0.028913293, -0.009910031, - -0.025987927, 0.04106934, 0.043425594, 0.008878022, -0.05238028, - 0.0247663, -0.07599107, 0.0045987736, -0.062362313, -0.03516382, - 0.0018364001, 0.0142598655, 0.008974328, -0.06732354, -0.0028642872, - 0.0028964363, 0.020554323, -5.9255323e-4, -0.0017910276, 0.037141792, - 0.026281392, -0.03171235, -0.054944653, 0.0037306454, 0.0151408715, - -0.0011885414, -0.0015980265, 0.059422728, 0.0034621023, 0.06211789, - 0.041941058, -0.025131185, 0.049511876, -0.012333703, -0.02589209, - -0.0064808633, -0.035403974, 0.03520651, -0.032075793, 0.024041783, - 0.0049099852, -0.05581853, -0.03501983, -0.011646297, -0.0075090495, - 0.02114239, 0.0052573653, 0.034203514, -0.02501376, 0.014747297, - 0.022142146, -0.01476152, 0.021882145, -0.025884755, -0.017558571, - 0.009321379, -0.010666262, -0.030905623, -0.003523282, 0.0015519256, - -0.010364434, 0.042135704, 0.0056312275, -0.02669191, 0.005022482, - -0.047983117, 7.572778e-6, -0.013435062, -0.061789293, 0.017189857, - -0.05461897, -0.013998499, -0.010271476, -0.01866328, -0.0041544763, - -0.03491427, -0.018356021, -0.033024665, -0.05162037, -0.06381575, - 0.0094141625, -0.049015276, 0.020287454, -0.038359065, -0.028478071, - 0.035755612, -0.023021795, -0.027290752, 0.0019206244, -0.06240243, - -0.030855684, 0.00793572, 0.07782291, 0.013710489, -0.045167267, - 0.021140335, -0.032975614, 0.022946663, -0.0027156323, -0.0151921045, - -0.036383267, 0.043944232, -0.0073634163, 0.031943593, 0.0051306686, - -0.043090288, 0.026188644, 0.004267867, 0.07746471, -0.01455506, - 0.02665078, 0.0077346233, -0.019060515, 0.0024435255, -0.0032289338, - -0.025412181, -0.0039995797, 0.024062788, -0.032310702, 0.011234525, - -0.049529836, 0.0021726063, 0.0018676663, 0.018487532, 0.006483417, - 0.018631637, 0.010832944, -0.005989574, 0.005871197, 0.0057602013, - 0.013081486, 0.020572308, -0.020615991, 0.05078331, 0.048671577, - -0.014929125, 0.030002663, 0.026306588, 0.03537069, 0.06315341, - 2.45528e-4, -0.0069468347, -0.0061586522, 0.009859625, 0.009666528, - -0.06671501, 0.012779071, -0.021151956, -0.04187306, 0.032951288, - 0.031413306, 0.030975573, 0.023872484, -0.041342217, 0.033023704, - -0.06326784, 0.016648756, -0.027888412, 0.025801975, -0.0033141766, - 0.018804982, -0.016597554, 0.020535102, 0.017006194, -0.03436023, - -0.05677592, -0.007344334, 0.04843997, 0.066124186, 0.0026629707, - 0.021691585, -0.01887227, 0.090274855, -0.013167959, -0.021715658, - 0.026682219, 0.01602005, 0.026920741, 0.02344724, -0.0056453063, - -0.015582491, 0.053690787, -0.020449817, -0.045883887, -0.017870808, - -0.015614731, 0.049216058, 0.019925456, -0.020824784, 0.026230436, - 0.012753647, -0.004140934, -0.0499057, -0.061833944, -0.0069081686, - 0.023555629, -0.0042024725, -0.0035250124, 0.0024607375, 0.00914139, - -0.016986536, -0.043553714, -0.006137909, 0.0014044904, -0.011203195, - 0.003896962, -0.012051222, 0.029912448, -0.02317128, -0.011849097, - 0.03876599, 0.014653743, 0.0060100895, 0.007990313, -0.032656707, - -0.007319936, 0.029824309, 0.012107716, -0.065576166, -0.03261438, - 0.006366718, -0.013570254, -0.009813726, 0.012179751, -0.012137358, - -0.0021611182, 0.01081387, 0.009602317, 0.014872172, 0.0046012695, - -0.027416425, -0.016582977, 0.020563547, 0.006022802, -0.012035384, - -0.015961355, 0.012890567, -0.0012737596, -0.0024260168, 0.012915331, - 0.02352394, 0.050362807, 0.009658345, 0.0016813404, 0.04841248, - -0.02124407, 0.01099624, 0.030472279, 0.053376183, -0.026830291, - 0.021946933, 0.040397793, -0.025085159, 0.03185315, -0.055067517, - 0.022209985, -0.0053930474, -0.043478765, -0.012321541, -5.041603e-4, - 0.0426021, -0.091291785, 0.013766308, -0.031191068, 0.015304265, - 0.016145054, -0.022770938, -0.02515908, 0.076066874, -0.023794238, - 0.004032553, -0.04954855, 0.05029034, -0.015546535, 0.045188367, - 0.03001565, -2.4208086e-4, 0.067074716, -0.015655328, -0.021165082, - -0.030410122, -0.018297913, 0.016723774, 0.0036766597, 2.8588113e-4, - 0.032463238, 0.023381539, 0.051494718, 0.015304852, 0.035433244, - -0.038862403, -0.02331329, -0.058099084, 0.015166425, -0.037577417, - 0.060437683, 0.03262843, 0.0039862557, -0.053696666, 0.004712815, - -0.005719416, -0.010824233, 0.044616777, -0.007536514, 0.027089396, - 0.007091556, 0.01886361, 0.0088255685, -0.07692147, -0.015491195, - 0.05372478, -0.035892963, -0.009224733, -0.024220096, 0.023164768, - -0.021893783, -0.0541236, -0.006211663, 0.02389868, -0.0034207061, - -0.0031589973, -0.037198577, -0.04370405, 0.0539141, 0.005858125, - -0.03758845, 0.02001535, 0.01648318, -0.008156259, -0.0036642465, - 0.033987366, 0.043221764, 0.047096793, 0.06407084, -0.058470488, - 0.0066566304, 0.06474759, -0.0060007107, 0.027958019, -0.048459798, - 0.016438266, -0.061665993, -0.03265757, 0.04590039, -0.031688455, - 0.018555664, -0.0047671515, -0.0029218185, 0.0072562476, 0.015181192, - -0.003020602, 0.0057300725, 0.033817295, 0.011256367, 0.07078051, - 0.0057825996, 0.0019266227, 0.02156167, 0.011813482, 0.011043538, - 0.0071390783, -0.016674656, -0.003682364, 0.033069998, 0.017301947, - 0.022293532, -0.04574518, -0.038327936, -0.018020658, 0.027788833, - 0.018432407, -0.01451256, -0.0105411755, 0.010182007, 0.032121886, - 0.0013483136, -0.06477823, 0.0060718306, 0.021872545, -0.0019902915, - -0.025515093, -4.159697e-4, 0.0115016205, 0.0023387545, -0.0061197956, - 0.053479634, 0.04308477, 0.05342787, -0.006324765, -0.041906975, - -0.07635685, -0.052085962, -0.04066843, -0.020570405, -0.028103095, - 0.010780688, 0.029713137, 0.026726492, -0.0024637515, 0.06543104, - -0.006855892, 0.01274804, -0.003361386, -0.006621498, -0.0018162627, - 0.026028646, -0.026104009, -0.014524132, -0.0026532833, -0.035394095, - -0.0072366414, 0.022674633, 0.087162286, 0.005347011, -0.053795315, - 0.027775172, -0.0051716864, 0.026739096, 0.020937232, 0.021105733, - 0.037890382, 0.015879216, -0.072224, 0.010433436, -0.029241946, - -0.041044686, 0.027139686, 0.026741639, -0.022866743, -0.015975736, - 0.030167516, 0.0043765735, -0.028120872, -0.03803559, -0.031384435, - 0.005066257, 0.029682964, 0.037995275, 0.058836166, -0.024803787, - 0.07135072, 0.06280521, -0.030690888, 0.008159075, 0.015596381, - -0.018212475, -0.03519321, 0.015299133, -0.033020765, -0.022475582, - 0.048189826, 0.01680687, -0.007083343, -0.016358588, 0.001520758, - 0.04636715, 0.0029571482, -0.006952469, 0.07146028, -0.010528443, - -0.013441519, 0.009232542, 0.016663833, 0.015665997, 0.017566767, - -0.029780123, 0.015956664, 0.023011543, -0.036767516, 0.043270383, - -0.03633004, -0.015284084, 0.0047136657, -0.016148463, 0.025640968, - -0.0429677, -2.6500193e-4, -0.022004606, -0.022717716, -0.02494562, - 0.05035608, 0.022415174, 0.03470533, 0.039376877, -0.04723187, - 0.025346747, 0.018980516, -0.007847883, -0.012946342, -0.039594855, - -0.009688132, 0.019805154, 0.019913483, -0.0050897836, 0.0477976, - 0.07176415, 0.020364374, -0.013659908, -0.005943718, -0.0014122704, - -0.01342861, 0.0143178515, 0.004288246, 0.019006312, 0.024893915, - 0.01770227, 0.034348827, 0.02245549, -0.036474198, -0.017992498, - -0.068536, -0.0042067063, 0.006237879, -5.48472e-4, 0.002029829, - -0.011523593, -0.0085221445, -0.0046902397, -0.029991785, 0.062365793, - 0.011089369, 0.017076893, 0.03049698, -0.0010475068, -0.008176456, - 0.044847578, 0.0077112946, -0.036982164, -0.03835328, -0.0034287795, - -0.028661994, 0.06238779, 0.018455092, -0.043802183, 0.020395828, - -0.0150671955, 0.06206671, 0.0064780423, 0.0012482542, -0.034129024, - 0.007056509, 0.026451942, -0.060311045, 0.020944666, 0.019325309, - 0.05393158, 0.03190944, -0.0098084165, -0.0016045595, 0.017995099, - 0.03595344, 0.010420984, -0.019957352, -0.018303724, -0.04209932, - -0.013987503, -0.015987782, -0.042159986, -0.013745002, -0.04404001, - -0.019723838, -0.06839815, -0.030486627, 0.030223936, -0.00907578, - -0.050367285, 0.0015134742, -0.026067412, 0.049063116, 0.067817405, - 0.02995033, -0.024137624, 0.030694114, 0.045069166, 0.023530418, - 0.016205184, 0.03459052, -0.051131457, -0.016933413, 0.02071006, - -0.01948469, -0.0112177385, 0.032187987, 0.0058499356, -0.04534195, - 0.004994262, 0.041316856, 0.016595606, -0.036122557, 0.0112326965, - -0.022186164, 0.062155228, -0.038557395, -0.02645018, 0.007043466, - -0.024691774, -0.042536464, 0.022600979, 0.02114773, 0.01959569, - -0.06420964, 0.03420118, 0.020598795, 0.07600218, -0.001608217, - 0.005738508, -0.0019003283, -0.0010953204, -0.039265092, 0.010921886, - -0.027473584, 0.014706447, 0.03190792, 0.014881007, 0.02499832, - -0.011865384, 0.011174052, 0.028887177, -7.138766e-4, 0.00695908, - 0.009825206, -0.0049258173, 0.007396757, -0.0026367202, -0.067507856, - -0.07509386, 0.05693223, 0.0022458546, 0.024699634, -0.03582494, - -0.01058795, -0.0033645746, -2.643924e-4, -0.008290437, -0.028848324, - 0.0055621243, 0.0030741517, 0.010261292, -0.004943468, -0.017651841, - -0.056152448, -0.032623652, 0.0020646679, 0.041891187, 0.01993291, - 0.040788274, 0.023873338, -0.055943154, -0.04554568, -6.7997247e-4, - -0.048771255, -0.014705482, -0.06734015, -0.019822229, -0.03332076, - -0.014677239, -0.024876101, -0.02192486, -0.020413825, -0.0041275993, - 0.015592672, 0.051142823, -2.9965467e-4, 0.011874504, -0.029908767, - 0.017879635, -0.036782075, 0.026364222, -0.008552909, -0.025202999, - -0.04363304, -0.01615022, -0.025081681, -0.0034411591, -0.012211139, - 0.052426983, -0.020831997, -0.018173242, -0.055311054, -0.054245707, - -0.044541575, -0.0061366335, -0.019081825, -0.010021721, 0.0027633654, - 0.004061412, -0.01698339, -0.013245036, 0.06833698, -0.07097292, - 0.0064119226, 0.018216176, -0.0237824, 0.032233506, 0.005372283, - -0.032793548, 1.3956588e-5, -0.040317386, -0.0214127, -0.0126348995, - 0.0048460686, -0.021282999, 0.051378824, 0.03553181, -0.06512382, - -0.047066513, 0.039495144, 0.025827339, -0.031358052, 0.0068288436, - -0.023531143, 0.036354985, -0.0016020262, -0.042326808, -0.031185264, - -0.01599065, 0.022260558, 0.010447699, -0.0071282163, -0.005483232, - 6.182567e-4, 0.0089492, 0.03981812, 0.0027929915, -0.025537154, - 4.1867147e-4, -0.016437951, -0.01226764, -0.044190396, 0.021662699, - -0.0024835018, 0.01904005, -0.0061736926, -0.0025749537, 0.0045227464, - -0.006003839, -0.035031237, -0.050460026, -0.00593028, -0.011177984, - 0.0034945915, -6.5384415e-4, -0.033811, -0.048717964, 0.059114654, - -0.0022245292, -0.023693375, -0.015124848, 0.01613582, -0.013774279, - 0.022395298, 0.062623516, -0.055507142, -0.020314876, -0.034712605, - -0.009578628, 0.025962753, -0.050730977, -0.030156508, 0.058959763, - 0.070419654, -0.0069616428, 0.0135629615, -0.017686779, 0.016305726, - -0.045290716, -0.021231428, -0.0041084336, -0.041642755, -0.05246771, - -0.04345108, 0.062263668, -0.016379425, -0.0168392, 0.024881534, - -0.02171467, 0.030048748, -0.029759044, 0.036167283, 0.0075147864, - 0.0020118195, 0.040863868, 0.0017391524, -0.021987304, 0.00692504, - -0.05492956, -0.015050093, 0.04463988, 0.03779089, 0.0026513229, - -0.054525305, -0.041851558, 0.016973589, -0.012970206, -0.03368204, - -0.0076630167, -0.021192897, 0.034649383, -0.02104321, 0.0057726055, - 0.03579318, -0.023277786, 0.041367665, 3.14048e-4, -0.021885127, - 0.107460976, 0.008646795, -0.04328353, 0.014898907, -0.02729119, - -0.009372917, -0.00642105, 0.008371598, 0.021051034, -0.02098537, - 0.014846283, -0.02408658, 1.6187027e-4, -0.028881304, -0.019183774, - -0.020582842, 0.04291404, -0.046324737, -0.055812016, 0.010575498, - 0.028308297, 0.030705081, 0.019932883, 0.023573536, 0.0767782, - -0.005855563, 0.0064000483, 0.049395982, 0.018755434, -0.040341582, - -0.02093173, 0.0037685041, -0.053733643, -0.049430314, -0.071517855, - -0.006027015, 0.012297184, 0.05646907, 0.020925032, 0.0038020273, - 0.042178866, -0.031130822, 0.020061987, 0.014681755, 0.019823246, - -0.042207442, -0.048242517, -0.04612793, 0.044723377, 0.04567248 + "paletteEmbedding" : [ + 0.012751499, + 0.0021211202, + 0.040509477, + 0.012346011, + 0.003977258, + -0.027537605, + -0.019228458, + -0.026119309, + 0.0051308665, + 0.0105932895, + 0.05393501, + -0.05149036, + 0.024875984, + -0.03012658, + 0.0017310543, + -0.022052748, + 0.018067785, + -0.019503929, + 0.017480694, + 0.022235742, + -0.01967766, + -0.0019902464, + -0.01273452, + -0.010580988, + 0.0023727915, + 0.0074934205, + 0.012681885, + 0.028745504, + -0.008533043, + -0.033166673, + -0.06395147, + -0.0031672984, + -0.004504815, + 0.03293659, + -0.048558358, + -0.021454526, + 0.041196432, + -0.005773702, + 0.030135546, + 0.051272124, + -0.0025077504, + 0.03747051, + 0.013583599, + -0.00774579, + -0.03957791, + -0.0072478913, + 0.030359278, + 0.011633415, + 0.0012061957, + -0.027056245, + 0.03164718, + -0.040505983, + -0.031080939, + 0.01106652, + -0.02984091, + 0.03734836, + -0.02270174, + -0.047422253, + -0.034365013, + -0.025153408, + 0.019795097, + 0.030147757, + 0.0013910406, + 0.04394901, + -0.020267962, + 0.02417162, + -0.013666603, + 0.0010786824, + 0.015893275, + 0.015839448, + -0.045067407, + -0.018168008, + 0.042678546, + 0.015169535, + -0.036227144, + -0.029418828, + 0.023460537, + -0.06352195, + -0.03779138, + 0.072974086, + -9.548171E-4, + -0.021398226, + -0.0075585647, + -0.027156038, + -0.05229821, + -0.042703923, + 0.0057523483, + -0.0055580265, + 0.008286302, + -0.01570493, + 0.0053095166, + -0.024487212, + -0.036886156, + 0.024149029, + -0.02976433, + 0.014920693, + 0.013427476, + 0.039925784, + -0.057619657, + 0.03282649, + -0.03359492, + 0.028603788, + 0.028397063, + 0.024917828, + -0.00434524, + -0.051234797, + -0.025946932, + 0.0076467884, + -0.030532384, + -0.002115528, + -0.06954289, + 0.015257168, + 0.020692745, + -0.007422144, + -0.011158623, + -0.014989105, + 0.03140228, + -0.07404342, + 0.0065733567, + 0.04859755, + -0.028092192, + 0.018003901, + -0.018642941, + 0.0036977655, + -0.018121822, + 0.015234209, + -0.002057911, + 0.027765304, + -0.016716711, + -0.04315945, + -0.10369049, + -0.011882964, + 0.025693351, + -0.040067844, + 0.014357033, + 0.03363847, + -0.006883999, + 0.036667716, + 0.05034975, + -0.07370792, + -0.005744179, + 0.027345814, + 0.01846713, + 9.245881E-4, + -0.038879864, + 0.016352123, + -0.037728477, + -0.009843487, + 0.0025268681, + -0.035110205, + -0.036769506, + -0.044285573, + -0.026377978, + -0.0055019874, + -0.095542066, + 0.031847205, + 0.019822214, + -0.020819021, + -0.02422374, + -0.021952264, + 0.035912998, + 0.007301074, + 0.011162474, + 0.007102085, + -0.008174144, + 0.014608777, + 0.04311555, + 0.0198201, + -0.024792839, + 0.044655498, + -0.047184844, + 0.055649072, + 0.012847022, + -0.042055316, + -0.02629959, + 0.035222296, + 0.015767753, + 0.015466408, + 0.056679513, + -0.027429303, + 6.401076E-4, + -0.037428673, + 0.014121625, + 0.05165351, + -0.02197654, + -2.275963E-4, + -0.028089596, + 0.0118921185, + -0.06675185, + 0.0163712, + -0.01984916, + 0.038598105, + -0.046162233, + 0.0455831, + 0.01904223, + 8.3521864E-4, + 0.020981146, + 0.048134662, + 0.03076186, + 0.052346542, + -0.017579757, + -0.020949459, + 0.0091892965, + 0.0018100326, + 0.005331959, + 0.0065896395, + -0.0069890856, + -0.0059989532, + -0.016424844, + 0.019180225, + 0.018154176, + 0.009244856, + 0.009073325, + 0.0013353237, + 0.0024978963, + 0.045567553, + 0.04948434, + 0.07312884, + 0.02039133, + -0.027988335, + -0.018397333, + -0.023409318, + -0.04151661, + -0.0623584, + -0.004238724, + 0.054632086, + -0.014640425, + 0.0052022818, + -0.03527449, + -0.017851595, + 0.032266002, + -0.027290724, + 0.024268996, + -0.031329013, + 5.986637E-4, + -0.04695464, + -0.056336116, + 0.016111208, + 3.712385E-5, + -0.026696978, + 0.04824013, + 0.029037278, + -0.016210493, + 0.0195567, + 0.048899975, + 0.027905498, + 0.0041064178, + 0.002780007, + 0.03927432, + -8.542753E-4, + -0.047787257, + -0.041152988, + -0.010581026, + -0.0043903026, + 0.025167476, + 0.039124046, + 0.030613733, + 0.023087788, + 0.011596097, + 4.4900342E-4, + -0.024701076, + 0.015817551, + -0.0019263619, + -0.016577397, + 0.057652954, + -0.044762168, + 0.016728794, + -0.045490853, + 0.04942903, + 0.014931971, + -0.01803052, + 0.06418349, + -0.0117019415, + 0.012198131, + 0.039130688, + 0.015229826, + -0.0487703, + -0.018403657, + -0.033866517, + -0.040933114, + -0.061887342, + -0.009631009, + -0.0115727065, + 0.02574896, + -0.04546998, + 0.037607748, + -0.031173963, + 0.017301103, + 0.007612746, + -0.022510106, + -0.023298843, + 0.026327042, + -0.0255732, + 2.918787E-4, + -0.046157956, + 0.041212413, + -0.024392068, + 0.10147035, + -0.026301945, + 0.009804993, + -0.012757734, + 0.025164716, + 0.033222172, + -0.019771092, + 0.016185202, + -0.013885457, + 0.017079642, + -0.020744592, + -0.040399924, + -0.013535793, + -0.0071977656, + 0.005183683, + -0.02640958, + 0.048946433, + -0.033788264, + 0.0023932774, + 0.008836, + 0.041372232, + -0.0034409885, + -0.0034145496, + 0.045757614, + 0.030410644, + -0.050001457, + 0.029071156, + -0.009305999, + 0.00822145, + -0.0013124476, + -0.022411926, + -0.0027086816, + -0.03501216, + -0.0033651532, + 0.019187966, + 0.027906368, + -0.009781586, + 0.0051105847, + -0.0030322028, + 0.007891726, + 0.045078408, + -0.020055456, + 0.030751217, + -0.025920486, + -0.041234147, + 0.029791709, + 0.026745396, + -0.027015926, + -0.0661339, + 0.025761861, + -0.0033777575, + -0.045243375, + -0.06701343, + 0.009944987, + -0.014436053, + -0.05535526, + 0.038894016, + -0.01929318, + -0.057533562, + 0.03246865, + -0.030763958, + 0.014139311, + -0.022212325, + 0.04171603, + -0.028813437, + 0.010155382, + 0.005715449, + -0.0029075444, + -0.068641335, + -0.027193611, + -0.017325101, + -0.002373907, + 0.023836037, + 0.029022286, + -0.013099847, + -0.07071614, + 0.0045565483, + 0.008771268, + 0.065364584, + -0.017317872, + 0.027580224, + -0.02976151, + -0.01425624, + 0.0027615186, + 0.027687425, + -0.027100394, + -0.025710303, + -0.0023194193, + -0.026695034, + 0.057742823, + 0.0111344475, + 0.0020867526, + 0.048216492, + -0.026190707, + 0.011983315, + 0.017043315, + 0.020865291, + -0.01819627, + -0.018770872, + -0.016185388, + 0.02899282, + 0.016879607, + -0.002053415, + -0.024151398, + 0.013831497, + -0.0069418964, + 0.03534026, + -0.014853902, + 0.002049347, + -0.026882, + -0.005869811, + -0.016226243, + -0.0126980925, + -3.466564E-4, + 0.006686271, + 0.016351815, + 0.014169575, + 0.0055294605, + -0.012759631, + -3.997578E-5, + -0.051251836, + 0.020203562, + 0.03644893, + 0.0040466553, + 0.08762714, + 0.0716462, + 0.014134178, + 0.01684913, + -0.06476853, + 0.03369994, + 0.013346032, + 0.013777519, + 0.0051523694, + 0.033141296, + 0.0017887647, + 0.012927956, + -0.06777505, + -0.015534622, + 0.017499031, + -0.015161853, + -0.008141949, + -0.06438988, + 0.013498998, + 0.029471075, + 0.05273247, + 0.024917196, + 1.984228E-4, + 0.0044371528, + 0.05272669, + -0.007039677, + -0.03880444, + 0.016735753, + 0.014784922, + 5.2784884E-4, + -0.0013987097, + -0.054650903, + 0.093662515, + -0.015156988, + -0.030996311, + -0.04291623, + 0.0044199885, + -6.412612E-4, + 0.07036934, + -0.038333226, + -0.04796736, + -0.01977616, + 0.024524963, + 0.001828161, + 0.015325551, + 0.018655308, + 0.016298542, + -0.010754171, + -0.0049946452, + -0.04966261, + 0.01931069, + 0.022675604, + 0.004680655, + -0.0117472345, + 1.9862637E-4, + 0.0021716065, + -0.011502469, + 3.8810135E-4, + -0.012390317, + 0.0069471067, + 0.019618314, + -0.019763252, + 0.053553898, + -0.030131187, + -0.010769762, + -0.032701857, + -6.709679E-4, + -0.02796244, + 0.0039050542, + -0.027979529, + -0.059943926, + -0.02424934, + -0.0040290672, + 0.009624523, + 0.005673382, + -0.023674559, + 0.0324234, + -0.03555749, + -0.05527637, + 0.010965372, + 0.006005657, + -0.020107655, + 0.046932485, + -0.007853925, + -0.035017643, + 0.065109946, + 0.021830706, + -0.007010918, + -0.026543569, + -0.005734887, + -0.06417705, + 0.04570241, + 0.04030034, + 0.018256854, + 0.04175773, + 0.019554738, + 0.046197776, + 0.059771374, + 0.031780526, + -0.012511137, + 0.054223035, + 0.0032715886, + -0.07289342, + -0.0061335512, + 0.048454642, + 0.042427063, + -0.0028554914, + -0.026311904, + 0.0105525665, + -0.0086402325, + 0.03059731, + -0.013928925, + 0.0050232713, + -0.03190037, + -0.008492793, + -0.0029367837, + 0.06480081, + 0.00395178, + -0.032024607, + 0.0051683816, + -0.013041922, + 0.016325297, + 0.0017977883, + -0.0061335242, + 0.0120125795, + 0.046795692, + -0.034352895, + 0.028426683, + 0.012057209, + -0.017600724, + -0.018830203, + 0.032544944, + 0.04345773, + 0.06178434, + 0.0102082295, + -0.004393678, + 0.0039689452, + -0.019658338, + -0.01550955, + 0.036213093, + -0.044044524, + 0.015397609, + -0.036847543, + 0.051379215, + -0.015007183, + -0.013944106, + 0.046758406, + 0.0448754, + -0.0422806, + -0.0032330274, + -0.008175937, + -0.005805141, + -0.033746105, + -0.0033692492, + 0.03777024, + 0.039890587, + -0.013682195, + -0.039834436, + -0.020410756, + 0.02396025, + 0.05321547, + -0.04607326, + -0.011831784, + -0.053126983, + -0.006081932, + -0.005480674, + -0.0070469286, + 0.030947717, + -0.013447322, + 0.05465545, + -0.08590369, + 0.024108129, + 0.015561488, + 0.027299577, + -0.021305254, + 0.028926868, + -0.037997436, + -0.021249838, + -0.012102131, + -0.017271116, + -0.018060964, + -0.022038573, + 0.017425723, + 0.0032169041, + 0.035726905, + 0.008884232, + 0.019258779, + -0.02007665, + -0.0019324032, + 0.0302779, + 0.011226774, + -0.028461372, + -0.018986221, + 0.03421486, + 0.033186994, + 0.009368882, + -0.016163072, + 0.053067066, + 0.03744466, + 0.03386188, + 0.03426417, + -0.043420777, + -0.05856519, + 0.026938923, + -0.005396657, + 0.021186337, + 0.056270294, + -0.053364877, + 0.006982296, + 0.028641785, + -0.0070534414, + 0.0010394732, + 0.009425298, + -0.01656137, + -0.0066882554, + 0.02503432, + 0.05058883, + -0.003924417, + -0.028049562, + -0.038676184, + -0.030213293, + 0.057313617, + -0.05453041, + 0.033300765, + -2.95889E-4, + -0.036094483, + 0.029645344, + 0.030971669, + 0.010381202, + -0.021432454, + -0.027073227, + 0.010226426, + -0.0053559304, + -0.0057434803, + -0.0016361945, + -0.009405439, + -0.04761863, + -0.04683858, + -0.024083417, + 0.027462237, + -0.0066632307, + -0.0077954386, + -0.032326408, + -0.08440831, + -0.0011167572, + 0.005918052, + 0.009870999, + -0.0063853604, + 0.046074416, + -0.042865563, + 0.01025158, + 0.042683985, + 0.023429437, + -0.04334796, + -0.02143447, + -0.022994265, + -0.033409405, + -3.5802746E-4, + -0.010770075, + 0.047475558, + -0.043814193, + -0.0064802594, + -1.7084878E-4, + 0.009887193, + 0.071167335, + -0.043328647, + 0.016186712, + 0.024244878, + -0.007031107, + 0.0046944846, + 0.033062987, + 0.06178308, + -0.013313797, + -0.025735334, + 0.056116898, + 0.0240674, + 0.035482816, + 0.0080582565, + 0.015305395, + 0.0071199504, + 0.009291322, + 0.028429607, + 0.053071808, + -0.014202125, + 0.044969305, + -0.0013774122, + 0.0102411425, + 0.008367511, + 0.006945124, + 0.0167066, + -0.0142456675, + -0.055248216, + -0.037353233, + 0.021898622, + -0.027182695, + 0.06220857, + -0.019126307, + 0.027189193, + -4.5032485E-4, + -0.0027377862, + -0.020871323, + -0.028894067, + 0.018927382, + -0.027484024, + 0.009057678, + 0.06002578, + 0.048244983, + -0.0328583, + 0.02617524, + -0.07103269, + -0.02059756, + -0.0053319726, + 0.007721181, + 0.0011341891, + 0.0496363, + 0.03831738, + -0.038453072, + -0.037351105, + -0.018732695, + -0.04380614, + -0.026191697, + -0.02410843, + -0.009762021, + -0.024925139, + -0.03622274, + 0.047421854, + -0.004208441, + 0.042560264, + -0.016255068, + 0.0013970875, + 0.015197749, + -0.015250225, + 0.049138937, + 0.044785567, + -4.1305277E-4, + -0.0058190823, + -0.023150425, + -0.05059814, + -0.060206693, + 0.0411777, + -0.037332125, + 0.011651494, + 0.03993373, + -0.0150763495, + -3.0304826E-4, + 0.02213952, + 0.015470184, + 0.027720084, + -0.020972345, + -0.016130658, + -0.022300288, + -0.019034237, + -0.00994375, + 0.03979023, + 1.7317483E-4, + 0.014502872, + 0.09026696, + -0.035200305, + 0.024796389, + -0.06366023, + -0.005367745, + -0.037742175, + 0.021329891, + -0.033041056, + 0.06344826, + -0.05294058, + 0.038128857, + 0.02832504, + 0.09273428, + 0.03643632, + -0.05245833, + -5.1987987E-5, + 0.004018493, + 0.023746865, + -0.0011264458, + -0.043938473, + -0.005672574, + 0.0050109546, + 0.046498578, + 0.01507268, + -0.013325008, + 0.059581563, + 0.004704032, + -0.047750827, + -0.020654233, + -0.0025924172, + 0.013564699, + -0.013395073, + -0.037065525, + -0.025187684, + 0.0021381371, + 0.04481601, + 0.019467901, + -0.041608714, + 0.008626578, + -0.009367578, + 0.025366232, + 0.04474761, + -0.021598859, + 0.014533967, + -0.0011245004, + 0.024023635, + -0.018997958, + -0.019051159, + -0.08896931, + -0.055417903, + 0.045757804, + -0.034854583, + -0.04763026, + 0.012916456, + 0.034393035, + -2.315591E-4, + -0.014857825, + 0.018259872, + -1.4754906E-4, + 0.025086625, + 0.0040110587, + -0.07405767, + -0.016613819, + 0.0011633462, + 0.011100493, + -0.0041798465, + 0.017651536, + 0.011012838, + -0.076975845, + -0.035965353, + 0.01754592, + -0.02556119, + 0.072512425, + -0.0064551644, + -0.0126366615, + 0.010342659, + 0.0059893862, + -0.044039495, + -0.022505505, + -0.042893786, + 0.052366726, + 0.02688049, + 0.012008852, + 0.0019541988, + 0.020007996, + 0.0056870477, + 0.014447309, + -0.056192383, + -0.032214254, + -0.037531372, + -0.02025218, + 0.052119233, + -0.00559867, + -0.054103605, + 0.013010079, + -0.01266059, + -0.0145655945, + 0.032703966, + 0.032368742, + 6.387557E-4, + 0.019753668, + 0.0012897981, + -0.010009165, + 0.0068407245, + -5.782687E-4, + -0.039632674, + 0.04201527, + 0.018102245, + 0.0034441708, + 0.014862406, + -1.9748314E-4, + -0.026382927, + -0.02060138, + 0.0011062231, + 0.068827994, + -0.002304527, + 0.049844313, + 0.021288015, + 0.012530704, + -0.038257554, + 0.039372172, + -0.0057632015, + 0.0039175875, + -0.0016799356, + -0.05749431, + 0.09093513, + 0.061518125, + 0.03381958, + 0.010506781, + -0.05546227, + 0.011610131, + 0.017117523, + -0.039414432, + -0.028323462, + 0.007674407, + 0.01659877, + 0.010261948, + -0.042778876, + -0.027730413, + -0.010714614, + -0.0074615018, + 0.06200801, + 0.059278343, + -0.040274728, + -0.021250354, + 0.07306635, + 0.060997188, + 0.024218261, + -0.03988384, + 0.03720632, + -0.022300042, + 0.034836564, + -0.009917665, + -0.011776624, + 0.027269505, + -5.73074E-5, + 0.01085069, + 0.020404773, + -0.0056890934, + -0.0012422726, + -0.029282853, + -0.045485094, + -0.0056745815, + -0.0071482155, + -0.060395993, + 0.006414681, + 0.0025825375, + -0.023407122, + 0.022989145, + -0.00740107, + -0.013088983, + 0.0060820235, + -0.007952467, + 0.10548749, + -0.016100135, + -4.9818103E-4, + 0.010897507, + -2.423146E-4, + 0.03330172, + 0.044844955, + 0.014097824, + -0.017759204, + -0.024903711, + 0.021812169, + 0.024552954, + 0.037253786, + -0.008785588, + -0.0022220542, + 0.020942124, + 0.010782771, + -0.009154958, + -0.060644444, + -0.0026954575, + -0.031803124, + -0.025562229, + -0.01205027, + -0.010157747, + 0.011231663, + 0.029081175, + 0.021173088, + -0.0058624935, + 0.015343549, + -0.0084693115, + 0.022937976, + -0.0051976983, + -0.01231808, + -0.029285071, + 0.0035174105, + 0.055058327, + -0.05528105, + -0.005116523, + -0.025358088, + -0.0144182565, + -0.03869553, + 0.01259228, + -0.0061029796, + 0.050485887, + -0.023112245, + 0.029497547, + -0.06702474, + 0.011546527, + -0.015498233, + 0.014304997 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/image-production.1976.json b/common/search/src/test/resources/test_documents/image-production.1976.json index 8ffdeecac..cea035647 100644 --- a/common/search/src/test/resources/test_documents/image-production.1976.json +++ b/common/search/src/test/resources/test_documents/image-production.1976.json @@ -1,1337 +1,5253 @@ { - "description": "an image with a production event in 1976", - "createdAt": "2023-11-21T14:25:44.323395Z", - "id": "vgcwcshr", - "document": { - "modifiedTime": "2024-03-22T05:14:37Z", - "display": { - "id": "vgcwcshr", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with a production event in 1976", + "createdAt" : "2024-11-14T14:37:56.581590Z", + "id" : "4zkzs8jw", + "document" : { + "modifiedTime" : "2028-08-26T11:12:55Z", + "display" : { + "id" : "4zkzs8jw", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/SLM.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", + "credit" : "Credit line: 2syMgrwY", + "linkText" : "Link text: CbnDcl", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/SLM.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", + "credit" : "Credit line: 2syMgrwY", + "linkText" : "Link text: CbnDcl", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#11CA79", - "source": { - "id": "lsk7bw9v", - "title": "Production event in 1976", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#4DBE5F", + "source" : { + "id" : "ks4dduhu", + "title" : "Production event in 1976", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "vgcwcshr", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "lsk7bw9v", - "sourceIdentifier.value": "mHEZk5gjNy", - "identifiers.value": ["mHEZk5gjNy"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1976"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1976" + "query" : { + "id" : "4zkzs8jw", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ks4dduhu", + "sourceIdentifier.value" : "PhedPctLWp", + "identifiers.value" : [ + "PhedPctLWp" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1976" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1976" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [189302400000] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.006338954, -0.0029549475, -0.026020626, -0.0022588712, -0.013231957, - -1.8741663e-4, 7.6874974e-4, 0.007941943, 0.0266809, 0.0068593123, - -0.019317573, -0.026469667, 0.014345597, -0.009634829, 0.0100355875, - 0.030925471, -0.009989733, -0.007718696, -0.026524108, 5.231334e-4, - -0.007819942, 0.011186552, 0.015260505, 7.780114e-4, 0.0073882826, - -0.009572071, -0.00208526, 0.01196067, -0.006728552, -0.030784039, - -0.01822487, 0.008313565, -0.0147394, -0.008957845, -0.0030036925, - -0.028343584, -0.0018979822, 0.0049403985, 0.031026268, -0.009934703, - -0.0036949296, 0.010733027, -0.02426221, -0.0018546517, -0.024500282, - 0.014048389, 0.022134893, 0.020793568, -0.024620274, 0.015992232, - 0.013845874, 0.011428963, 0.0074504646, -0.015124435, -0.018693151, - -0.013217964, -0.0020860725, 0.015193938, 0.0011055992, -0.011720282, - 0.006854592, 0.022577558, 0.024944577, -0.025946382, -0.02464774, - 0.0012475767, 0.00907839, -0.012202433, 0.013705208, 8.71478e-4, - 0.025569355, -0.0028957473, 0.0028449874, 0.00226172, -0.0055366787, - -0.0054009035, 0.010686877, -0.007988795, -0.0028822226, 0.008015608, - 0.0013580219, 0.004779519, 0.018059347, -0.0060635246, -0.017671669, - -0.033212554, -0.0036313203, -0.014569013, -0.0060681417, 2.146053e-4, - 0.016635226, 0.010636021, 0.013668848, 0.022828907, 0.024198445, - 0.012662541, -0.009681031, -0.019688204, 0.0069592735, -0.011772288, - 0.0018765801, -0.013880394, 0.009956172, -0.020029953, 1.218235e-5, - -0.0036029038, -0.012169803, 4.8821766e-4, 0.0030722935, -0.011657409, - 0.009738277, -0.022969091, -0.0013685058, -0.01260601, 0.005126704, - -0.024524853, 0.009105248, -0.014619554, 5.552248e-4, 0.009702263, - -0.023353666, 0.010311563, -0.006602252, 0.015680138, -0.0065596336, - -0.0077421325, 0.01523772, -0.013059643, 0.017154656, -0.005981007, - -0.014163101, 0.019597499, 0.004615491, 0.010607766, -0.015382737, - 0.0077451584, -0.011219769, -0.008551914, -0.0021891794, 0.026069656, - -6.8874063e-4, 0.0023666352, -0.0018589608, 0.008793535, 0.004531742, - 0.03297263, 0.0048301267, 0.0020685096, 0.0031809208, -0.011314324, - 3.2051187e-4, 0.0013421508, -0.0019704832, 0.012966476, 0.0155757405, - 0.006210842, -0.0011264032, -0.068353325, -0.002046697, 0.0016695936, - -0.00502597, 0.015810743, 0.0014463082, -7.44975e-5, -0.002039943, - 0.0030609146, 0.0151326535, 0.0031944667, 0.022397488, 0.037739538, - 0.017076494, -0.0045148265, -0.018008485, -5.436517e-4, 0.017995417, - -0.031550173, 0.014132124, 0.007267629, 0.016986191, -0.019459248, - 0.003725438, -0.0041045975, -0.0030961838, 0.017832156, 0.005615618, - 0.017631665, -0.0023456516, 0.032927196, -5.820529e-4, -0.015048791, - -0.008277262, 0.011432878, 0.014112693, 0.010590289, 0.009278883, - 0.0030576072, 0.0017052226, 0.013370804, -0.025184117, -0.03279934, - -0.01050833, -0.0058518704, -0.017426979, 0.01509424, -0.02199266, - -0.0021141488, 0.0025726864, -0.018035024, -0.0060258806, 0.003578641, - 0.008433102, -0.012495293, 0.008672714, 0.011995821, 0.030756207, - -7.4362213e-4, -0.036827132, -0.010029453, -0.011724318, 0.015243492, - 0.030811097, 0.007995492, 8.3573617e-4, -1.383569e-4, -0.003017362, - -0.02093149, -0.027196381, 0.012380653, -0.0030945516, -0.01233708, - 0.009991651, -0.0019860729, -0.015585462, 0.004425326, -0.01888721, - 0.022757001, 0.0158979, -0.005627245, -0.013980868, -0.034942087, - 0.0049403924, -0.008840479, -5.2737625e-4, -0.011080879, 0.002737369, - 0.050594192, 0.031311426, 0.004504054, -2.5779931e-4, 0.006956727, - -0.023834897, 0.01766248, 0.015225582, -0.00911194, 0.005276047, - -0.015736366, -0.014873754, -0.01436209, 3.424421e-4, -0.009459315, - -0.0010024391, 0.00805617, -0.0064554303, -0.023572413, -0.0041508884, - -0.018027108, 0.0052588773, -6.3640566e-4, 0.019066554, -0.012976121, - -0.013085356, -0.0102339545, -0.019979507, 0.020968063, -0.018898373, - 0.015446048, -0.019245286, -0.0094127795, 0.032141574, 0.0055085314, - -0.002484881, 0.005770197, 0.0124406, 0.002912857, -0.004511932, - 0.012372178, 0.03598429, 0.0017699358, 0.007295677, -0.0065865517, - 0.0011104892, 0.02681406, 0.0013223677, 0.017857062, -0.016764184, - 0.009399623, 0.010619169, 0.002995037, -0.051835585, 0.0058941124, - -4.826558e-5, 0.026760677, 0.018173978, 0.011507991, -0.019045003, - -0.007839428, -0.018629517, 0.017156767, -0.008460127, -0.0072846105, - -0.0039005533, -0.0038287418, -0.0019967526, 0.012604187, -0.008128158, - -0.0047111725, -0.018235628, 0.0015979724, -0.023673482, 0.016345842, - 0.013781504, 0.0068282117, -0.027444128, -0.0076303, 0.003950485, - -0.012714716, 0.034466907, -0.033827662, -0.0010573766, -0.018225415, - 0.029992497, -0.017252915, 0.007092973, -0.004830549, 0.03086219, - 0.0020803732, 0.01569421, -0.004008968, -0.015305429, -0.019507555, - -9.908114e-4, 0.0040486166, -0.005173387, -0.009409657, 0.019786404, - -0.022516895, -0.017088318, 0.009496906, -0.02615202, 0.0068436298, - -0.02284158, 0.016525313, -0.013305557, -0.006744131, -0.008065364, - 0.032059733, -0.0017780992, -0.0018342194, -0.005234859, -4.5585743e-6, - 0.008581003, -0.0057003642, -0.0072776363, 0.011864772, -0.007678273, - 0.010701798, 0.014069765, -0.0035115208, -0.0025921986, 0.0034355226, - -0.011715484, -0.008809371, 0.0070422012, -0.0191273, -0.015972182, - -0.0071294215, 0.011837681, -0.0074088224, -0.014439236, 0.013515272, - -0.013339221, 2.9282202e-4, 0.0073494804, -0.0018927128, -0.008057836, - 0.032266617, 0.016015153, 0.018321747, 0.0043362477, 0.020860046, - 0.0031190056, 0.008533006, -0.013360045, 0.013389816, -0.006227206, - 0.006559947, 0.026267862, 0.018383926, -0.006240316, -8.0563815e-4, - -0.0123778405, -0.011945269, -0.034078807, 0.026126042, -0.029017638, - 0.02273453, 0.02819437, 0.01080459, 0.0036114878, -0.025712498, - -0.008975614, -0.02560804, -0.012088595, 0.01046008, -0.015204053, - 0.0036562935, -0.021791102, -0.011241299, -0.01242501, 0.011492122, - 0.002414288, 0.027808612, -0.0029432524, -0.018349465, -0.011176739, - -0.008109063, 0.018956449, 0.003342345, 0.007998446, 0.010601098, - 0.0014731863, 0.008850577, 0.009875869, -0.021110514, -0.0023367628, - -0.008044927, 0.006564121, 0.023863519, 0.018762749, -0.011343385, - 0.0065827407, 0.0020080362, 0.0022633097, 0.0017018659, 0.012507003, - -0.0055942503, 0.0010036925, 0.016767971, -0.01314044, -0.0021282765, - 0.015833246, 0.0010832138, -0.021163294, -0.009760548, -0.0019605425, - -5.483721e-4, 0.008626513, -0.005165851, -0.0137152085, 0.008063127, - 0.011567269, 0.006543387, -0.0027182754, -0.0265216, 0.030810617, - -0.01181711, -0.01056725, -6.53879e-4, -0.003899849, 0.012554005, - -0.03819785, 0.02626669, -0.0042333067, 0.013638738, 0.020460254, - 0.0066682426, 0.020806896, -0.016575133, -0.0029783424, -0.018873872, - -0.0011501452, 0.017804034, -0.015111855, -0.0028781644, 0.031372573, - -0.022810312, -0.0199125, 0.001080423, -0.011854101, -0.002727943, - 0.0030190297, 0.032060854, -0.0120957205, 0.016929256, -0.0010515781, - -0.014907976, 0.01972172, 0.009734081, 0.031983018, -0.00459818, - -0.0017117788, 0.019622851, -0.006598593, -0.018337864, -0.040859386, - 0.025561348, 0.020691646, -0.010100709, -0.011512788, 0.031821184, - 0.0015523139, -0.0047928984, 0.0070908903, 0.013973182, -0.0021875235, - 0.015470349, -0.020721542, 0.0056228754, -0.0027731564, 0.02146683, - -0.017592544, 0.018965214, 0.014202076, -0.0074999775, -0.010760438, - 0.0045076907, -0.007709653, 5.7812355e-4, -0.019225636, 0.008841482, - -0.0012378048, 0.007231832, -0.007425106, -0.011501732, 0.016606042, - 0.007130001, -0.012161038, 4.4275928e-4, 0.008626917, 0.0052087912, - -0.026708335, -0.0013964514, 0.004604984, 0.032884665, -0.0089936135, - 0.041573655, 0.014997173, 0.0020549651, -0.014085518, 0.004713994, - -0.0042559826, 0.007277736, 0.01557831, 0.005986996, 0.034244288, - 0.011452007, -0.007739413, 0.0010259849, 0.0058713797, 0.016997823, - -0.013811546, -0.025454145, -0.010760332, -0.0048124585, 0.008952741, - -0.0018529806, 0.0021673623, -0.028439295, -0.008614121, 0.017878111, - -0.016815268, -0.023091905, -0.014287646, -0.002099029, 0.024965772, - 0.0061642323, 0.011186395, 0.016360264, -0.013359449, -0.008247981, - -0.008268584, 0.018043922, -0.014308315, 0.021174662, 0.024463903, - 0.0016514943, -0.0081692645, -0.028744217, 0.015141058, 0.0016052856, - -0.019713167, 0.016664645, -0.004651413, -2.7695397e-4, 8.0407294e-4, - 0.0029043057, -6.01015e-4, 7.931154e-4, -0.020987822, 0.019084727, - 0.013000621, 0.007249525, 0.003299813, 0.00398886, 0.016357392, - 0.0041319747, 0.027320635, 0.029691689, -0.005985172, 0.008136768, - 0.004554467, 0.0012314183, -0.009833473, 0.005528199, 0.024837976, - -0.006513934, 0.019418277, 0.021844786, 0.0017468706, 0.011632368, - -0.007778693, 0.011815815, 0.0026089645, -0.004979124, 0.0087359, - 0.0019741033, -0.008375844, 0.0018801967, -0.028399186, 0.009755719, - 0.002616311, 0.003864854, -0.008088322, 0.020237846, -0.027238712, - 0.00876332, 0.016967654, -0.013312452, 0.0037501752, -0.010124724, - 0.0027600813, 0.020376671, -0.0029218767, -0.011216003, 0.015091289, - 0.00629422, -0.010199087, 0.014301512, 0.0046854676, 0.0122192325, - -0.004251208, -0.012210993, -0.009135584, -0.007165549, -0.0019339998, - -0.006366547, -2.3143637e-7, 0.022542795, -0.004613774, -0.007971139, - -0.0063618436, -0.0066101206, 0.041898753, -0.008984571, -0.0010883822, - -0.025868984, 0.01670479, 0.0076433374, 0.025234947, -0.017443925, - 0.0055059623, -0.0025095448, -0.034084354, -0.038287763, 0.028991459, - -0.013713034, 0.014376735, -8.096419e-4, 0.011438936, 0.018050686, - -0.007576362, -0.005930475, 0.006051602, 0.024223613, 0.014944198, - 0.0017404299, 0.041076884, 0.0051945457, 0.009609132, -0.008861151, - -0.030991288, -0.0022036736, -0.006858683, -0.0013779461, -0.0053484705, - -0.011737017, -0.0053128027, -8.28478e-5, 0.0068212533, 0.003558503, - -0.015543436, -0.0030981475, 0.014592786, 0.015074715, 0.0032789009, - 0.008376093, -0.0053143133, 0.036407236, 0.009956552, 0.017081058, - 0.013030701, 0.00588051, 0.010444359, 0.020780532, 0.0041347984, - -0.016150545, -0.0015958115, -0.023199515, -0.035607915, -0.0018376772, - -0.039069086, -0.019672614, 0.015674286, 0.018525105, 0.008695525, - 0.0068142423, -0.005228205, -0.018013423, 0.021665553, 6.5095676e-4, - 0.005568315, 0.009765129, 0.0093775755, -0.019295292, 0.0037806886, - 0.013628464, 0.016901819, 0.009149988, -0.0116484985, -0.007609441, - -3.193278e-4, -0.011629376, 0.0017977955, 0.02870035, 0.00913206, - 0.005208709, 0.001821287, 0.00640282, -0.011307257, 0.011725142, - -0.0014473886, 0.0015447055, -0.0010424475, -0.011619393, 0.0068216524, - 0.004252596, 0.017190786, 0.013904174, 0.013957934, 0.01952268, - -0.0021909429, 0.0019470991, -0.0033548113, 0.027381614, 0.014297174, - 0.0110726785, -0.009509091, -0.027857725, 0.005822963, -0.024745619, - -0.015123852, -0.006759193, 0.008260589, -0.013938971, -0.0023677372, - 0.025269328, 0.015735164, -0.001536519, 0.020825485, 0.014109793, - 0.001122467, 0.008830872, 0.008367653, -9.593461e-4, -0.0017330842, - 0.0162207, 0.0056342175, 0.011375916, 0.006499536, 0.022093868, - -0.015879562, -0.021549108, 0.0054792683, -0.009943337, -0.0039151423, - -0.013777303, 0.010237153, -0.015536834, 0.015000589, -0.045222994, - 0.020086206, -0.03838938, 0.003045477, 0.018648483, 0.02241581, - 0.007907605, 0.0076415525, 0.0045145266, 0.005831261, 0.011811124, - -0.0040717986, -0.038716882, 0.011458905, 0.030844698, -0.019831084, - -0.018080896, 0.019222213, -0.019961063, -0.020599008, 0.0033707994, - -0.01695195, -0.0035415373, 0.043295514, -0.011590473, -0.009907546, - -0.001919414, -0.007895091, -0.00493087, -0.00896158, -0.0035778757, - -0.03874971, 0.008827178, 0.013275713, 7.711146e-4, 0.0145869255, - -0.010342692, 0.030744793, -0.011726173, 0.0043730247, -0.027694764, - 0.017522257, -0.009030802, 0.009449981, -7.667743e-4, 0.019570777, - 0.018210964, 0.008990625, 0.010130684, 0.023583386, 0.033252414, - -0.032243647, 0.021114223, -0.014699166, 0.003780911, -0.02215959, - 4.119092e-4, 0.012841451, -0.009080709, 0.007782457, 0.0029027886, - 0.026109664, -0.014795349, -0.010667383, 0.007815388, 0.007294702, - -0.017905796, 0.0040855156, 0.011126573, -0.0016672459, -0.002001004, - -0.012078376, -0.012988228, -0.006556485, -0.0023042404, 0.016732661, - 0.011818223, 0.010787715, 0.006177308, 0.008233571, -0.013347245, - -6.635972e-4, 0.015740007, -0.011912778, -0.010361073, 0.009947339, - 0.016223352, 0.034152333, 0.023664823, -0.024464492, -0.00912209, - -0.0032003834, 0.013496081, 0.01337881, 0.0062995125, 0.004095536, - 0.008446105, 0.008850595, 0.006897674, -0.012864437, -0.005146031, - 0.007073288, 0.016268738, -0.0054437807, -0.0056900154, 0.009959107, - 0.026963076, 0.021343578, -0.02639106, -0.0062601184, -0.014515358, - -0.0017589664, -0.018746357, -0.0014654925, 8.83338e-4, -0.019914676, - -0.004256633, -0.034013018, -0.013346251, 0.0039096265, -0.0144557245, - 0.0061435415, -9.1375667e-4, 0.005346036, -0.0035641561, -0.00874256, - 0.015848821, -0.008384018, 7.198957e-4, -0.013254756, 0.0036862083, - -0.02719139, 0.012644522, 0.0057890634, -0.0053356746, 0.011456817, - 3.7397386e-4, -0.0013153112, 0.0036630495, -0.005523245, 0.013138129, - 0.013589978, 0.014887239, 0.0021261217, 0.030045245, -0.0026973183, - 0.020340856, 0.018675689, 0.022995066, 0.006340081, -0.01640213, - -0.019424606, -0.008806001, 0.0062546814, -0.024294332, -0.013640218, - 0.015769811, -0.018199045, -0.016662423, -0.025034832, -0.014989836, - -0.009092043, 0.006196116, -0.0046067745, -0.017513039, -0.0075657866, - -9.132484e-4, 0.0036493167, -0.010313485, 0.0055456823, 0.011754592, - 0.01184556, 0.017660238, 0.027847221, 0.0023433736, 0.016180634, - -0.010808693, 0.0061281854, -0.035704773, 0.0011864568, 0.031709746, - 0.032885112, -0.0322593, -0.0021115227, -0.011787555, 0.0039091893, - 0.005699887, -0.009383943, -0.0059286156, 0.015795482, 0.011303048, - -0.0022074282, -0.011395686, 0.018964175, -0.007732702, -0.036536187, - -0.005678462, -0.034671646, 0.008609447, 0.0025811733, 0.005787425, - -0.0052061644, -0.01543025, 0.0032659667, 0.008322169, -0.017289875, - -0.01615774, -0.0017064518, -0.01192594, 0.012425538, -0.002622793, - 0.006846507, 0.017232904, -0.01602653, -0.01848246, 0.001179603, - -6.100908e-4, -0.006080635, 4.73886e-4, 0.010004685, 0.013783581, - -0.0069251168, -0.027123934, 0.018528908, 0.023606881, 0.031256173, - -4.773435e-4, -0.0065793325, 0.020616278, -0.020618584, -0.0062112403, - 0.02768829, 0.009973611, 0.005246707, 0.0053596096, -0.015930248, - -0.025200002, -7.1113167e-4, -0.011660566, -0.006861633, 0.032090776, - 0.024918716, 0.029951192, 0.0020644406, 0.0033410054, 0.01712356, - 0.014798139, -0.0011303185, -0.0029824008, -0.0024023314, 0.00170843, - 0.016904427, -0.0030979775, 3.1355466e-4, 0.027874477, -0.0054447465, - 0.032503195, -0.017945547, -0.0067396755, -0.024163896, 0.010008779, - 0.0014068966, -0.008041729, 0.0031544366, -9.615498e-4, -0.029430605, - -0.0042657135, -0.019750923, 0.02307373, 0.00404039, 0.028111782, - -0.009257072, -0.0029906356, 0.009076424, -0.004710098, -0.0051014773, - 0.016671583, -0.0055332743, 0.001814671, -0.0073954156, -0.010259936, - 0.0010762934, -0.01785144, -0.015083508, -0.013115609, -0.0011540625, - 8.4019714e-4, -0.009396611, 0.0073366384, 0.01865386, -0.027609142, - 0.0092515135, 0.0030171208, -0.017286079, -0.0041879704, 0.01778597, - -0.009360543, -0.0064510764, 0.015267758, -0.01602955, 0.03043921, - 0.010630726, -0.021235628, 7.991871e-6, -4.921728e-4, 0.0071628857, - 0.006007644, 0.012462559, 0.010298751, -0.012191321, 0.014465854, - 0.013552229, -0.011251985, -0.018444892, 0.004816088, -0.01084523, - -0.003974207, -0.017741859, -0.012347008, -0.010125297, -0.0024069406, - -0.0146499295, -0.018261604, -0.014448109, 0.0047025583, -0.008802832, - -0.0023007581, 0.02379017, -0.021683453, 0.0037851075, 0.031149281, - -0.0087605305, 0.0028032067, 0.030560266, 0.029559985, -0.025195701, - -0.012614063, -0.011109565, 0.022991918, 0.0152730495, -5.1953987e-4, - -0.021262297, 0.009711998, 0.012964688, -0.002020505, 0.0378412, - 0.024977474, -5.908012e-4, -0.019401047, 0.010935463, 0.013993812, - 0.017004956, 0.0022527915, -0.012244167, 0.005110594, -0.004370168, - -0.015129239, 0.011167794, 0.0022101316, -0.001188753, -0.010850177, - 2.9152327e-5, 0.018726647, 0.0058395457, -0.006147818, 0.014653281, - -0.006726779, 0.017680468, 0.009021479, -2.1344151e-4, 0.016326904, - 0.0014775989, -0.027079936, 0.015027237, -0.025709711, 0.010350294, - 0.026889442, -0.001095211, -0.027345967, 0.0146341035, -0.011351967, - 0.009925009, 0.018060537, -0.00838775, -0.014518276, -0.009150774, - 0.009057979, -0.011465561, -0.004209072, -0.013012761, -0.007889846, - -0.011636697, 0.0054310504, 0.015631797, 0.010834462, 0.011128217, - -0.001999431, 0.0029147435, -0.007554978, -0.010720285, -0.019004332, - 0.01710706, -0.0037343786, 0.008035812, 0.0039564604, 0.015829654, - -2.3729964e-4, -0.024434162, -0.01031963, -0.005685085, -0.011493917, - -0.015415135, 0.004193737, 0.0011357656, 0.0061502308, 0.031162547, - 0.01994197, -0.002206178, -0.003966883, -8.912328e-4, 0.015624987, - 0.002808724, 0.010323977, 0.014703759, -0.010128876, 4.0797752e-4, - -0.0045426474, 0.03145461, 0.0075081005, -0.014629873, -0.001743718, - -0.003609592, 0.020766877, -0.011423291, -0.017510975, 0.005523229, - -0.008362152, -0.0152442055, -0.0053072176, 0.0051396396, 0.02724665, - -0.0035378197, 0.009506164, 0.021899033, -0.022981986, 0.028762927, - 0.020484328, 0.002305505, -0.047351535, -0.023106322, 0.007446159, - -0.0054249866, -0.010665435, 0.014330941, 0.0061876294, 0.0051578875, - 0.023136579, 0.0061800955, 0.026501799, 0.025837254, 0.023922795, - 0.014563475, 0.0057671396, 0.035225045, -0.006447804, -0.022486743, - 0.008945755, 0.024333008, -0.0212391, 0.013440429, 0.0030056501, - 0.0025905545, -0.02054429, -0.019119808, 0.020656303, -0.0068919905, - 0.005864967, -0.00853211, -6.485251e-4, 0.010863478, -0.0010955163, - 0.0030946832, 0.0064597502, -0.002202729, -0.0090553, 0.016327864, - 0.015807526, 0.020115303, 0.010791362, -5.585277e-4, -0.00526994, - -0.009950479, 0.02168357, -5.9307483e-4, -0.03144212, 0.009755485, - 0.016891832, 0.030434547, 0.007475566, -0.017981557, -0.0088348985, - 0.009871036, -0.0017313578, 6.767286e-4, -0.017286204, -0.009483195, - 0.021560859, 0.0055537103, -0.0075434553, 0.0040776976, 0.033738777, - -0.02387532, 0.005371934, -0.010807616, 0.016665222, -0.005151775, - 0.0017169957, 0.011820931, -0.006704548, 0.030217858, -0.018343296, - -0.0019383208, -0.02314127, 0.019003961, -0.028983189, 0.010226127, - 0.007637318, 0.015545364, 0.0041561085, 0.009036012, 0.009333098, - -0.013326554, 0.015332391, -0.0074965865, 0.020034594, -0.0067032813, - -0.004703829, 0.0133886915, -0.00958923, 0.011043003, -0.0046561942, - 0.013271436, 0.006796274, 0.0038173124, 0.011684891, 0.019710539, - 0.010861827, -0.019945003, 0.017040044, 0.013164787, 0.009053512, - 0.034150805, -0.0011939266, -0.003025204, -0.026412884, -0.025414795, - -0.039591502, 0.024144862, -0.012642436, 0.023605155, -0.004860453, - 0.01202791, -0.004307115, 0.0121893855, 0.0047666333, -0.01868721, - 0.046490867, -0.007046469, 0.01415479, -4.645469e-4, 0.00899441, - 0.014333495, 0.037421692, 2.5033628e-4, 0.01371056, 0.021534968, - -0.0010211203, -0.016937848, 0.0100000845, -0.022591734, -0.040257644, - 0.0127497455, -0.008348227, -0.020853158, -0.0018850688, 0.04019652, - -0.002111498, 0.01726221, 0.043849405, -0.01485668, -0.01178924, - 0.016698932, -7.193428e-4, -0.020423919, -0.018674655, -0.0040133065, - 0.008364113, -0.0010241076, -0.02046387, 7.0657703e-4, 0.010872647, - -0.019485654, 0.015419544, 0.016648104, -0.005945499, -0.010863186, - 0.0060970243, -0.004073712, 0.0106773265, 0.0063240514, -0.014226356, - -0.03231254, 0.014154633, 0.009068367, 0.02134497, 0.0016186074, - -0.0027893016, 0.013467254, -0.017138196, 0.011719125, 0.029277166, - -0.029989446, 0.0056185396, -0.002620933, -0.006649901, -0.010984084, - 0.01924491, 0.023010118, -0.002316526, 0.023373222, 0.031736255, - -0.0069396277, 0.032911446, -0.003564323, -4.2616055e-4, 5.0623424e-4, - 3.317829e-4, -0.01966546, -0.004177024, -0.010133316, -0.025268812, - -0.01379087, -0.013148873, -3.1775318e-4, -0.016954677, 0.027792556, - -0.020996623, 0.021619314, -0.02496473, 0.007834159, 0.0041460344, - 2.7756245e-5, 0.021715496, -0.027638508, 3.8891836e-4, -0.024018237, - -0.018069124, 2.9091403e-4, 0.018577825, 0.019864315, 0.0045052697, - -0.003486372, 0.006865965, -8.3918613e-4, -0.023416145, 0.004165594, - -0.012842172, 0.034001857, 0.0076427944, 0.016599357, 0.0080663245, - -0.02294101, 0.00528587, 0.017577905, 0.020802805, 0.021600885, - -0.022249823, -0.0035423003, -0.017465299, 0.010862934, 6.939472e-4, - -0.024754478, 0.036725912, -0.005194284, -0.019740568, 0.012781786, - -0.014622805, 0.032043356, 0.014613807, -0.00915321, 0.027864227, - 0.022350462, -0.028767198, -0.004514433, -0.0090387305, 0.007180398, - -0.013157791, -0.0051619327, 0.0063912678, -0.032901235, 0.007871942, - 0.0041330354, -0.015399958, -0.016796434, -0.012750775, -0.008551688, - -0.006741784, 0.016275419, 0.0214872, -0.0051660263, 0.0038862126, - -0.0056417948, 0.032642175, -0.016459668, -0.0022975092, -0.0016724328, - -0.03205698, -0.016200854, 0.019325173, 0.007927955, -0.0079991, - -0.0036044696, 0.02094431, 6.6579354e-4, -0.0025907408, 0.0033417474, - 0.021494579, 0.0024402032, 0.012961571, 0.011482173, -0.014958937, - 8.9584937e-4, 0.0045196684, 0.0036939809, -0.016314775, 0.0015487617, - -0.009291055, 0.021120695, 0.0068794275, 0.010298455, -0.0071045677, - -0.019725008, 0.006439306, 0.013283243, 0.01562735, -0.0048043607, - -6.1342536e-5, -4.065444e-4, -0.0022526225, -0.026590904, 0.00191312, - -0.005794429, 0.037568126, 0.003528319, -0.021469705, 0.014344171, - -0.0034914552, 0.024690602, 0.005593261, -0.015961029, -0.026616847, - 0.010638451, -0.0018897434, -0.007616802, 2.9531424e-4, -0.007902518, - 0.0015856542, 0.009289513, 0.00428591, -0.0015218107, -0.0035363247, - -0.0037623395, -0.017585682, 0.010388034, -0.015267428, -0.0036080417, - 0.013059253, 0.013792838, 0.0015855992, 0.0024451304, 0.00752899, - 0.021132722, 0.015327168, -0.045929328, 0.0121546285, -0.0042739636, - 0.007364238, -0.026097883, -0.011680225, -0.024446031, -0.010628853, - 0.0398947, -0.003568167, 0.020699205, 0.029723419, 0.0052273218, - -0.007588667, -0.03154144, 0.023744725, 0.006447166, -0.014404704, - 4.612142e-4, 0.012924169, 0.028028555, 0.0058844993, 0.0034852058, - 0.015353675, 0.026130863, -0.018264212, -0.017109571, -0.008405177, - -0.004351768, 0.021514341, -0.012637109, 0.0355236, -0.004904198, - -0.006860254, -0.026838856, -0.019981442, -0.004039973, -0.002677969, - 0.0050445343, -0.018748205, -0.017897781, 9.951553e-5, -0.02796792, - -0.0057496466, 0.013862213, -0.010246548, -0.033547126, 0.03636953, - -0.022650456, 0.0029434129, 0.0069198934, -0.020666793, 0.012535799, - -0.0031886636, -0.02140896, -0.027399462, 0.009470338, -4.9735693e-4, - -9.766768e-5, 0.015907161, -0.014126434, -0.02486771, -0.005034369, - 8.920075e-4, -5.830137e-4, -0.013994698, 0.025482044, -0.010016057, - -0.020333601, 0.0141258985, 0.0013170845, -0.012825925, 0.014046797, - -0.0034246892, -0.024510637, 0.01850024, -0.020538934, 0.0042291656, - 0.006202155, 0.009349911, -0.025581224, -0.0020979433, -0.008537136, - -0.017202888, 0.010869963, 0.0056699067, 0.009736321, -0.0021060451, - -0.04959719, 0.013767048, 0.014064973, 0.01279378, 9.191364e-4, - -0.016521877, 0.03528245, -0.039700344, -0.011119126, -0.003422017, - 6.893455e-4, 0.021563143, -0.0119900005, -0.010250503, -0.009987353, - 0.0086015845, 0.010081188, -0.006629159, 0.012312259, -0.012478123, - -0.019134028, 0.005321711, -0.004631083, 0.02278122, -0.010029353, - 0.014060301, 3.8729762e-4, 0.00816504, -0.0153439855, -0.025319565, - 0.024041222, -0.0048834444, 0.0028500939, 0.006120384, 0.011653529, - -0.0013252829, 0.0123732425, 0.015964769, -0.016620563, -0.043407314, - 0.020679502, 3.2107567e-4, -0.018852133, 2.1613563e-5, -0.0059185023, - 3.9035914e-4, -0.024969302, -0.032228593, -0.004281574, -0.010636042, - -0.029596563, 0.0035539267, 0.01851789, 9.957709e-4, 0.0016730987, - 0.017776342, -0.023977324, 0.011557983, 0.0202997, -0.003986226, - -0.0125427125, 0.008019395, -0.009860811, -0.0070903515, 0.009769727, - -0.009988544, 8.326e-5, 0.0063704373, -0.009700556, -0.004311519, - -0.0054709744, 0.02895327, 0.002631774, 0.027844379, 0.00592482, - -0.009243379, -0.0043028016, -0.0117971655, 0.021029761, -0.011856073, - -0.019013168, -0.011321583, -0.02073618, -0.007665524, -0.00743854, - 0.0011190119, 0.013357359, -0.00243216, 0.034315858, 0.008267123, - -0.016968805, -0.006598377, 0.004639085, -0.03609574, 0.0039126496, - -0.002514171, 0.01656178, 0.0038302636, 0.009097278, 0.0027701638, - 0.013306295, 0.0029735256, 0.011367064, -0.0056684697, 0.004557123, - 2.551454e-5, 0.0011763392, 0.03457386, 0.00932731, -0.012698109, - -0.0011280237, -0.027076105, 0.0018419396, -0.0142842755, -0.007626247, - -0.004678282, -0.011364741, -0.00708366, 0.008995126, -0.012389734, - -0.008496658, -0.010166143, -0.028813021, 0.03510317, -0.0037076457, - -0.010116917, 0.017718177, 0.01681522, -0.0014748691, -0.0153004285, - -0.016662372, -0.018918745, -0.0082873935, -0.014823331, 0.030735362, - 0.009070398, -0.0035970225, 0.008316761, -0.002930769, -0.013060055, - 0.010562863, 7.1839785e-4, -0.016297294, -0.0064579546, 0.009360476, - 0.0026486486, -0.0027320215, 0.010843764, -0.011697508, -0.0033516027, - 0.011809361, -0.0160177, 0.0029562637, 0.014797659, 0.008177444, - -0.024850497, -0.005368955, 0.023399794, 0.018129887, 0.0037705526, - -0.022888765, 0.031444777, 0.0049778232, -0.0018689652, 0.0053258627, - -0.02200807, 0.012057616, -0.01173901, -0.0069245454, -0.04045845, - 0.01740055, -0.011475959, -0.013502866, -0.004209132, -0.021895444, - -0.010053416, 0.0024868015, 0.0054519027, -0.018606339, 0.010633629, - 0.02946764, 0.020279856, -0.021972338, -2.051048e-4, 0.02989083, - 0.007016793, 0.03459603, 1.9922341e-5, -0.030528702, 0.020411255, - -0.013864671, -0.0013605207, 0.0023147448, -0.01874382, 0.013448411, - 0.016009368, 0.02563917, -0.024597563, 0.0061213793, -0.0038487457, - -0.0011471671, -0.011209885, 0.012754387, -0.024770616, -0.016932517, - 0.01588921, -0.028495114, 0.009222503, -0.011941351, 0.013287474, - 0.0086140605, -0.009655133, 0.0028270602, 0.013344046, -0.019547364, - 0.023558348, 0.0037241569, 0.023942111, -0.010657105, 0.0031600362, - 0.005497675, -0.01912426, 4.90569e-5, -0.007897509, -0.006513406, - -0.029280433, 0.0016807482, 0.011618417, -0.013369001, -0.010284324, - -0.013011995, -0.017652832, 0.00988676, 0.0031260692, -0.007226051, - 0.0073649953, -0.0093512535, -0.02326601, -0.019746311, -0.016419034, - -0.00284365, 0.0019149978, -0.0039132773, -0.016664667, -0.019447403, - -0.0342619, 0.017520271, 0.0068111224, -0.0104402285, 0.011318238, - 0.0062623746, 0.012897682, -0.0029399025, 0.007905624, -0.012931541, - -0.009133859, 0.00882132, -0.0051032575, 0.028296558, 0.0030662597, - -0.002033526, 0.023443654, -0.018779142, -0.030783081, 0.008011789, - -0.026526125, -0.012398645, 0.009869885, 0.0024502685, 0.0020434777, - 0.026525218, -0.0038838831, 0.0091367345, -0.0074088853, 0.0452377, - -1.8967857e-4, -0.012942871, 0.0062275445, -0.0065968954, -4.1127668e-4, - 0.019783944, -0.01593065, -0.010340997, -0.020124266, 5.104836e-4, - 0.0020227686, 0.0053837, -0.009106497, -0.004445709, 0.015058663, - -0.0054540746, -0.013870418, 0.029351348, 0.022987021, 0.00953929, - 0.0048358296, -0.0017273802, -0.014790239, 0.015271186, 0.015001798, - -0.0224392, 0.03082832, 0.008938789, -0.02070153, 0.003162403, - 0.0036883052, -0.012549166, -4.575744e-5, 0.0287007, 0.0072271572, - 0.014791089, -0.017159948, 0.0011541283, -0.012670041, 0.009602615, - 2.3307328e-4, 7.814208e-4, -0.008933917, 0.006942822, -0.011804979, - -0.005341743, -0.008130342, -0.017404256, -0.02769937, -0.032293882, - 0.0020913484, -0.020573845, 0.017422982, -0.039095957, 0.005348147, - -0.008032718, -0.013522959, -1.8647854e-4, 0.003179451, -0.007995269, - -0.049297642, -0.02838659, -0.007015715, -0.008927298, -0.022475, - -0.0048896465, 0.018141698, 0.01591702, 0.01114071, 0.008960324, - 0.0060618073, -0.017718153, -0.0015611529, 0.040367782, 0.019280454, - 0.008591821, -0.017172493, 0.012976527, 0.03911672, -0.003012508, - -4.460154e-4, -0.005713919, -0.019410744, 0.011538338, -0.016289866, - 0.0029293024, 0.009836401, 0.0042262115, -0.0123454025, 0.0043005915, - -0.031349253, -0.022675436, -0.014298357, -0.00500818, 0.002524375, - 0.011748088, 0.007103564, 0.008363253, 9.43094e-5, 0.007523404, - -0.018341303, -0.0045265146, -0.006933659 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.010897841, 0.025349414, 0.0018127343, -0.0040276996, 0.005366133, - -0.025132002, 0.011110579, -0.03680116, 0.0021372554, -0.018690333, - -0.0090656895, -0.007680323, -0.002294114, -0.03356928, -0.00915806, - 0.037084214, 0.0038431454, -0.008144415, 0.009527675, 0.012762206, - 0.0045657223, -0.012462846, -0.0016351335, -0.0065504294, 0.0074086874, - 0.0056043104, 0.005159334, -1.479141e-4, -0.028244833, -5.05894e-4, - 0.01563261, 0.006476421, -0.029597508, 0.013737604, -0.006038862, - -0.0057640327, 0.017217614, -0.0055860686, 0.022900347, 0.007061129, - -0.017839493, 0.014750491, -0.0065188445, 0.034283057, 0.024791213, - -1.2243802e-4, 0.009190752, 0.013337201, -0.01882828, -0.010331884, - -0.0075209336, -0.012500299, 0.034855496, -0.0015032642, 0.013218548, - 0.033318058, -0.0066300933, 0.015565451, 0.010594447, 0.02394379, - -0.015174866, -0.00307944, -0.0020936017, 0.0045216363, 0.012689232, - 0.01622695, -0.0038348315, -0.020007448, -0.011339433, -0.003547034, - 0.011167628, -0.012505286, 0.049132135, -0.014075916, -0.010488354, - -0.011318344, 0.0035006618, 0.0070661297, 3.8807935e-5, -0.010507054, - 0.007102136, -0.012167261, -0.0077564064, 0.008081081, -0.009708495, - -0.023016943, 0.0036879503, 0.001396039, 0.022285046, -0.0059767277, - 7.484944e-4, 8.0858386e-5, 0.018173415, -0.008269843, -0.0020389468, - -0.00377148, 0.012923522, 0.008193517, -0.03367757, -0.0061911545, - -0.013672005, 0.0145865325, -0.016293919, 0.019739214, 0.0091790445, - 0.011219376, 0.006285562, 0.012295885, -0.0035280094, 0.0059435344, - -0.013698255, 0.0047643906, 0.0077726874, -0.030705778, -0.009157745, - 0.004728978, 0.026384974, 0.002295656, 0.015643988, -0.021064928, - -0.028377822, 0.0015890809, -0.009674854, -0.008038976, -0.016888117, - -0.007491762, -0.0026543487, 0.017438207, 0.030028585, 0.008269623, - -0.0075499546, -0.009745201, 0.016692322, 0.02221035, 0.010849346, - -0.004407796, 0.014736791, 0.008915592, -0.024524195, 0.017444095, - -5.57457e-4, -0.010411025, 0.019045034, 0.011104108, 6.505317e-4, - 0.008734193, 0.00925274, -0.007967733, -0.01110556, 0.00560344, - 0.007822714, 0.0076837162, 0.016312847, 7.527187e-4, -0.0046235, - -0.02213878, 6.5007305e-4, -0.0053412276, 0.007798782, -0.0020466337, - -0.017034408, 0.031246938, -0.033767, 9.883482e-4, 0.018325584, - -0.0078706695, -0.0047548846, 0.019134136, -0.002221596, -0.0080228755, - 0.020083368, -0.010347631, 0.02221655, 0.027436163, -0.015283353, - -0.019276697, -0.0054254807, 0.00400825, 0.021250963, 0.045059953, - -0.035665568, 0.019908676, -0.0019538135, -0.025804661, -0.011634641, - 0.019721633, -0.016346626, -0.034012802, -0.018688524, -0.006343553, - 0.020024518, 0.011144053, 0.0027405177, -0.026381798, 0.03863884, - -0.035754427, -0.0020665552, -0.019819684, -0.025339419, -0.0023926678, - 0.037130408, -0.0055456595, -0.0029432243, 4.5970923e-4, 0.015551158, - -0.027825704, 6.904843e-4, 0.026208071, 0.008258836, -3.048841e-4, - 0.02275271, 0.008534862, 0.0076583805, -0.021779275, 0.010085788, - 0.0052392767, -0.0058139274, 7.038631e-4, 0.017644249, 0.012089025, - 0.011135469, -0.030932672, 0.006454669, -0.003976906, 0.0037722888, - -0.003792123, -0.0016314209, -0.016945139, -0.01636264, -0.013541918, - 0.026027678, -0.006883996, -8.302032e-4, 0.005887165, 0.028689323, - -0.0077789696, 0.009902902, 0.0059364047, 0.009927469, -2.4313605e-4, - -0.017953206, -0.014841283, 0.037581854, -0.024193088, 0.007808901, - 0.0077176047, -0.013068444, -0.017614443, 0.0068194065, -0.012857489, - 0.0056451764, -0.006532503, -0.01040274, -0.0106549, -0.033413816, - 0.0018589805, -0.0028967564, 0.025377054, 0.0015517953, 0.01318395, - 0.009795417, -0.011178736, 0.019741993, 0.015863495, -0.007584844, - 0.024945265, -0.016473573, 0.006620619, -0.025070982, -0.014367572, - 0.018221095, -0.014360049, -0.009317106, 0.017530555, -0.018836245, - -0.008451572, 0.010769752, -0.008247823, 0.0010022025, 0.010994657, - 0.0012103963, -0.010344738, 0.006795953, -0.008895764, 0.0033269662, - 0.012590158, -9.509554e-4, -0.020493302, 0.03634081, -0.021580009, - 0.006573473, 0.016388552, -0.034303036, 0.012935976, 0.0010958435, - -0.015042969, -0.013189888, 0.01367404, 0.0027916403, 0.03540528, - 0.006214386, 0.012580331, 0.032807633, -0.005324973, 0.014260459, - -0.03398579, 0.015040873, -0.0138973035, -0.015898284, 0.011731206, - -0.011676676, 0.0193854, -0.003253536, -0.010834433, 0.019730555, - -0.013630531, -0.020707535, -0.0013958731, 0.021721767, -0.0077969045, - 0.004880436, 0.010190743, -0.0028601317, 0.0061836517, -0.016473494, - -0.013969594, 0.0012585882, -0.008660952, 0.019220099, 0.005543452, - 0.005448389, 0.028846268, 0.007412928, 0.013499727, -0.024167301, - -0.0024526094, -0.017456412, 0.002209488, -0.02206161, 0.030309116, - -0.019018898, 0.007708431, 0.027400725, -0.012802986, -0.008700045, - -0.010530422, 0.0027171054, 0.011556005, -0.019017018, -0.004301674, - -0.011365894, -0.026600875, 0.018990595, -0.010338155, 0.03250452, - -0.019275816, 0.008355713, 0.006264751, 0.0019758872, -8.5425907e-4, - 5.574257e-4, -0.006265824, -0.021767944, 0.0036707555, -0.019493248, - -0.009723126, 0.011690225, 0.01374589, 0.006345034, -2.0969125e-4, - 0.0046783504, -0.033512305, 0.011465317, -0.015554381, 0.032462355, - -0.013897452, -0.028341072, 0.01091367, -0.016967956, -0.016707487, - 0.0012129731, 0.0040943013, -0.0147138275, 0.005529791, 0.0027418425, - -0.018977866, 0.013564993, -0.0016655655, -0.002159956, 0.005017478, - -0.0032446731, 0.001664776, -0.0018159404, 0.017809538, -0.005360005, - -0.017717429, 0.0037634762, 0.009791476, 0.01014926, 5.54272e-4, - 0.012975083, 0.02166938, 0.0063434998, -0.012663479, 0.0075590117, - 0.0054557165, 0.008499537, 0.036049776, -0.027288308, -0.0035823667, - 0.023821719, -0.015570548, -0.013536253, -0.025513038, 0.0073252404, - 0.0016817044, 0.027531693, 0.026892608, -0.0039077946, 0.0017571099, - 0.01578534, 0.009548252, -0.010230732, -0.010617342, -0.013260999, - -0.025196008, 0.033144794, -0.0040027467, 0.030521633, -0.02413376, - -0.02806307, 0.015337888, -0.003487703, 0.0038502242, -0.015646443, - 0.006601526, -0.0107284635, 0.0062613143, 0.015034837, -0.02168646, - -0.008912061, -0.03636928, 0.034985613, -0.0020373466, -8.554186e-5, - 0.0030684585, 0.0020512869, -0.024742316, 0.020545969, -0.040288366, - -0.002081253, 0.015154775, -0.0051048114, -0.012635914, 0.0041881516, - -0.004405235, 0.011269532, 0.012868862, -0.010617773, -0.017104466, - 0.009408479, -0.0018119649, -0.015894867, 0.013092339, 0.002471337, - -0.015981957, -0.002555576, 0.018849578, -9.4248785e-4, -0.009056064, - 0.0046291384, 0.009039816, -9.552075e-4, 0.02307067, -0.005250289, - 0.0034512125, -0.014089699, -0.0057681096, 0.010673965, 0.017090444, - -0.006667679, -0.015023777, -0.023814544, 0.029169999, -0.0053797155, - 0.005674342, 0.0042875097, 0.043028627, -0.0078036194, -0.007893434, - -8.9110504e-4, -0.031415924, 0.01633081, 0.031899784, -0.009169091, - -0.014262481, -5.1957514e-4, 0.020816166, -0.0065821214, -0.02483594, - -0.0018659105, -0.015672034, -0.025715724, 0.027016617, 0.010404986, - 0.009179352, 0.017888298, 0.012538027, -0.022324327, 0.0029877669, - 0.031544004, -0.0024333287, 0.0029907695, -2.7490017e-4, -0.0039055385, - -0.015265216, -0.008746547, -0.0033763843, 0.0039107134, -0.0061118193, - -0.018927662, -0.011902118, -0.008138942, 0.008485502, 0.008658862, - 0.0069833426, 0.01539204, -0.025649635, -3.5991863e-4, -0.02109298, - -5.774156e-4, 0.008841779, -0.028234903, 0.0080092065, 0.005155918, - -0.036292326, -0.010263906, 0.012207483, 0.007865721, 0.0071816235, - 1.9662303e-4, -0.018774234, -0.005814148, 0.0045448462, -0.0081278905, - 0.0021390691, 8.4502646e-4, 0.027186804, -0.014966341, -0.011336993, - -0.005749285, 0.008504114, -0.016854046, -0.001408862, -0.0010990232, - 0.0035427248, 0.03814731, 0.011757013, -0.020249069, 0.014538957, - 0.01298148, -0.009482462, -0.005558429, 0.012273062, 0.0029240039, - -0.018290011, 4.000712e-4, 0.002824978, -0.016602028, 3.0120515e-4, - -8.931087e-4, 0.019610425, -0.019571329, 0.02597662, -0.018689489, - -0.015717639, 0.027889922, -0.010076666, -0.027658835, -0.013794935, - 0.021000214, -0.0026276878, 0.028033197, 3.0479254e-4, 0.035768606, - 0.009762984, 3.1293614e-4, 0.0052166446, 0.0042001554, -0.008127473, - 0.014024577, 0.032381482, 0.010621645, -0.017805476, -0.0051909736, - 0.017063301, -0.003907252, -0.017951358, 0.016378265, 0.027157396, - 0.014931761, 8.832394e-4, 0.010014837, 0.018060481, 0.003165904, - 0.004527928, 0.008801731, 0.014499629, -0.0032397443, 1.1765131e-4, - -0.017583264, 0.011299142, -0.00497771, -0.012562311, -0.012051932, - 0.020820672, 0.0122075435, 0.018478928, -0.015668683, 0.004972674, - -0.0037212325, 0.007448448, -0.022516673, -0.013935779, -1.9730713e-4, - -0.024140572, 0.03334551, -0.02756601, 0.018321682, 0.00785619, - 0.01615059, -0.005835641, -2.6942417e-4, 0.01716362, 0.007252041, - 0.025329616, -0.023739573, -0.010389484, 0.012454562, 0.006129342, - -0.024459895, 0.008315467, -0.016498212, 0.015149458, 0.01937882, - 0.013380736, -0.0030617157, 0.033336043, -0.010136172, 0.0057559144, - 0.01169385, 0.017189099, -0.0065946043, -0.017209282, -5.4374477e-4, - 0.027055312, 0.01954776, -0.017140584, 0.0024811053, -0.016607212, - 0.0066799438, -0.006676439, 0.009724539, 0.0078942515, -0.0033271196, - 0.010674101, 0.009085706, -0.013022129, -0.032098904, -0.00438577, - 0.016619967, -2.1434178e-4, -0.026030613, -0.019312369, -0.010988256, - 0.0016097, -0.009362938, 0.009700842, -0.003526753, 0.0069344235, - -6.7894516e-4, -0.008456655, 0.014243707, 0.009456817, -0.014113044, - 0.0018671062, 0.010933801, 0.004686204, -0.0066985055, 0.01652817, - -0.010705318, -0.016469758, 0.004137309, -0.023570826, 0.025168639, - 0.005013406, -0.009703357, -0.002930364, 0.004351235, -0.023053477, - 0.013022453, -0.01780856, -0.0039185463, -1.2307211e-4, -0.013484366, - -0.024842821, 0.0075705964, -0.0077239918, -0.012413629, -0.012330903, - -0.0077927094, 0.026139408, -0.024944868, -0.010725476, 0.012630113, - 0.008454112, -0.0024213518, -0.019607512, -0.010942471, -0.027343143, - -0.0014433797, -0.004856834, 0.0023147645, -0.02190606, -0.01869058, - -0.020326043, 0.013590417, 0.0061097606, 0.0048231217, 0.0041111633, - 9.189341e-4, -0.004022091, 0.005569125, -0.02053959, 0.010514911, - 0.009451065, 0.004513179, -0.013478693, 0.017631415, 0.008643372, - 0.0082522975, 0.008046461, 0.007730157, 0.0059150346, 0.011165663, - 0.0125584835, -0.0027152111, -0.007184315, -0.007010757, -5.4722506e-4, - -0.005440657, -0.019181097, 0.014183156, 0.009805924, -0.013881136, - 0.016420107, 0.0054076817, 0.032359026, 0.007112071, -0.0050720894, - -0.009909497, 0.011404951, -0.028095897, -0.0036972724, -6.2827015e-4, - -0.008278684, -0.014554327, 0.005885961, 0.02401011, 0.015799996, - -0.009971705, -0.00521612, -0.021768456, 0.004852695, 0.011196627, - -8.401834e-4, -0.023279635, 0.012260963, 0.0022306505, -0.027318016, - -0.007880483, 0.014121232, 0.0054669706, 0.015802756, -0.017906306, - 0.024269683, 0.026143325, -0.0029736243, -0.008467033, 0.0017760784, - 0.03501006, -0.0060567865, 0.0018902258, 0.019655773, -0.011026899, - -0.010854781, -0.0033884235, -0.034540415, 0.0019884924, 0.012550858, - -0.0072033317, -0.0016131143, 0.005061913, 0.015672555, -0.009259916, - -0.0063549466, -0.022791393, -0.0107355, -0.0042973408, -0.005733297, - -0.014631067, -0.010883608, -0.005282755, 0.020356985, -6.6513143e-4, - -0.007464616, -0.013382775, -0.011374589, -0.01493222, 0.014991883, - 0.029140908, -0.021141553, -0.015037706, -0.008435832, -0.040826794, - 0.038322985, 0.0064215665, -0.0035323782, -0.016337827, -0.015903497, - 0.0030146872, 0.0021998493, 0.0019273744, 0.011187162, -0.013609087, - -0.019411076, 0.017169265, 0.03673654, 0.027835308, -0.015337596, - 0.0035879575, 0.0034868056, -0.0027045086, -0.017803514, -0.004355488, - -0.0032239866, 0.0108119985, 0.014546646, 0.0017255389, -0.023818813, - -0.023541017, 0.021986743, 0.0055713993, 0.016704967, -0.002963983, - -8.935774e-5, -0.008068657, -0.019663222, 0.01685194, 0.0031370122, - 0.021768672, 0.009224756, 0.017297035, 0.009937291, 0.015718145, - -0.012818212, -0.010509802, 0.015215106, 0.0060759922, -0.014019304, - 0.015809877, -0.018380128, -0.014510025, 0.017314823, 0.007988072, - -0.0127881775, 0.015832426, 0.016160322, -4.3046428e-4, -0.010992144, - 0.01378657, -0.008924737, -0.020968452, -0.005382755, -0.01578827, - 9.744175e-4, -0.018512823, 0.015281176, 0.031093607, -0.008637894, - 0.0168529, -0.0073986487, -0.032466594, -0.01259992, 0.0033297385, - 0.010662559, -0.008493935, -0.018663852, -7.197053e-4, -0.00820059, - 0.014483448, -0.002093828, -0.0075346953, 0.011133984, -0.007508735, - 0.013562643, 0.022551132, -0.007977019, 0.012404194, -0.013469132, - -0.012407009, 0.008080261, -0.015085199, -6.6837145e-4, 0.04889032, - -0.027653774, -0.025607038, -2.1987978e-5, 0.0140796825, -0.0037340631, - -0.0050408025, 0.018929118, -0.016847849, 0.021365624, -0.00310755, - -0.021864234, -0.0016762908, -0.008316685, -0.004745397, -0.031177789, - 0.0036930349, 0.05399427, -0.014893039, 0.013415806, -0.018730069, - 0.009875667, 0.029126963, 0.0011801088, 0.011359415, 0.008321138, - 0.021776708, 0.010782913, 0.045602813, 0.0077849533, 0.027861549, - 0.00511999, 4.2627487e-4, 0.00557058, 0.028480625, 0.004191378, - -0.014538721, -0.0037724022, 0.005987901, 0.00670389, -0.02006149, - 8.223078e-4, -0.009367704, -0.027079975, 0.01687034, 0.017754124, - -0.02403769, -0.008640447, 4.8521676e-4, 0.0026634508, 0.01143013, - -0.018036833, 0.030454103, -0.020814337, -0.012645821, 0.035946514, - -0.011018397, -0.0010843471, -0.0033126585, -0.0058947275, 0.004393992, - 0.00425744, -0.019116232, -0.015557355, 0.0013291476, 0.0076787975, - 0.0025735039, 0.00899897, -0.018298443, 0.0035835302, -0.016161162, - 0.0024272692, 0.03679929, -0.024983143, -0.006911039, 0.019659746, - -0.0026783454, -0.0033166122, -0.007616031, -0.03675351, 0.0014037568, - -0.005213444, -0.0153278, -0.0071911686, 0.03587195, -0.013292767, - 6.466332e-4, -6.054917e-4, -0.007247127, -0.014539002, -0.009335432, - -0.004350991, 0.026386304, 2.9777177e-4, 0.02413595, -9.4030297e-4, - -0.011457461, -0.01837811, -0.00679717, 0.018430248, -0.0070099817, - 0.012015767, 0.0061412333, -0.0041783927, 0.0120100295, 0.008721199, - -0.0025540078, -0.012850314, 0.0016996063, 0.0049919058, 0.016575996, - 0.0017838747, 0.02911767, -0.016822143, 0.0054866783, 0.001661009, - -0.01273944, -0.0076667015, 0.013180869, 0.002557131, 0.037181236, - -0.0099926395, 0.0027214512, -4.4814512e-4, 0.020347062, 0.0014041328, - 0.019865936, 0.0072003626, 0.006769454, 0.0023368613, -0.021221105, - 0.011079327, 0.014717278, 0.0057762, 0.008676977, 0.008581045, - -0.007837686, -0.018190399, 0.024016116, -0.011516325, -0.016838029, - -2.8113357e-4, 0.0017026835, 0.008206713, -0.0057740826, 0.016534388, - 0.02540198, -0.013748403, -0.011793821, 0.0030557408, 0.004050833, - 0.01501875, -0.009673588, 0.006002428, -0.030298552, 0.019239217, - -0.0018252551, 0.021126775, -0.007138756, 0.022220153, -0.019946028, - 0.011005497, 0.021823868, -0.001162989, -0.033359736, -0.01497729, - -0.004920573, 0.0048152753, 0.014350002, -0.021586351, 0.012979061, - -0.010183446, -0.014115342, -0.03584953, 0.008798139, 0.03291179, - 0.0074715973, 0.027716039, 7.942144e-4, -0.0064545763, 0.007778026, - 0.014083733, 0.006723712, -0.035721388, 0.02249615, -4.2058335e-4, - 0.0177892, -0.03091239, 0.021436341, 0.018629802, -0.019415122, - 0.006737184, 0.013091858, -0.007422711, 0.020235976, -0.012177325, - 0.021674858, -0.005961673, 0.008079716, -0.012773472, 0.009157653, - -0.004076364, 0.027353076, 0.019748386, 0.013874135, 0.0037455317, - -0.02190993, 0.0033104673, 0.009284654, -0.011820425, -0.011852733, - -7.9280254e-4, -2.313107e-4, -0.0026253543, -0.017248651, 0.008620899, - -0.01154163, -0.006625178, -0.026960475, -0.011737552, -0.014890731, - 0.013248641, -0.02341967, 0.015782164, -0.020290349, -0.003240736, - -0.012471124, -0.0028755239, 0.013405461, -0.012971888, 0.025718529, - -0.0042642024, 0.009148589, -0.01047748, -0.018151624, 0.0028807258, - 0.0063203154, -0.015048627, -0.010301338, 0.004855037, 0.02680331, - 0.014919977, 0.008600967, 0.0071316133, 0.0053833975, -0.0020205802, - -0.0035488314, -0.0020309305, 0.0014759743, -0.0350519, -0.015423218, - -9.425353e-4, -0.001954821, 0.0038516044, 0.009269794, 0.007928171, - -0.040988367, -0.010468193, 0.016047673, 0.016481802, 0.017964618, - -0.018576669, 0.010671909, -0.019505689, -0.0026573797, -0.014326217, - 0.031500883, 0.005341974, 0.0030157655, 0.022222614, -0.002020926, - -0.001466158, 0.002973237, 0.0023229015, -0.002069942, 0.0038784735, - 0.011475735, 0.017746927, -0.011466565, -0.036374222, 0.025699064, - -0.020046419, -0.0053735306, -0.038043447, 0.0035879044, -0.001989588, - 0.007951414, 0.026486952, -0.014677656, 0.0056128837, 0.030012555, - 0.011933128, 0.038582962, 0.013039073, -0.009722086, -0.0031639014, - -0.009870352, -0.006254156, -0.0055069253, -0.01473162, -0.007748498, - -0.015727738, 0.006539415, -0.007804657, 0.022482054, 0.01155465, - -0.030622525, 0.010906897, -0.043689616, -0.05359216, 0.014413664, - 0.023409894, 0.015936036, 0.0014999144, 0.02681354, 0.0076534273, - 0.004768405, 0.011044983, -0.006862736, -0.0033529203, 0.003767106, - 0.02073037, 0.0018868789, -0.018398603, 0.012432278, 0.009220878, - -0.008976774, -0.0036448753, 0.010534956, -0.0071391785, 0.011719629, - 0.017672582, 0.0065101353, 0.007204195, 0.005273997, 0.0015464777, - -0.005991036, -0.0025337404, -0.012236386, -0.013872065, 0.022561187, - 0.0061721965, 0.032270093, -0.012356726, -0.017585136, 0.019960929, - 0.0375756, 0.005076179, -0.0020014113, -0.0076095834, 0.012022901, - 0.014891687, 0.0023575989, 0.005234603, -0.0020506966, -0.011534225, - -0.022139873, -0.04153528, 8.9483464e-4, -0.020996086, -0.02533998, - -0.004124905, -0.0025645653, -2.6237147e-4, 0.012224635, -0.022171732, - -0.00613436, -0.012736215, 0.001035824, -0.0060038012, -0.0065979515, - 0.010336483, 0.00780427, -0.013165904, -0.013030449, -0.014371253, - -0.018955655, 0.026854618, -0.013127748, 0.0015616162, 0.008819812, - 0.00793759, -0.022523327, -0.019042902, 0.030041445, -0.020669451, - -0.022246128, -0.012276674, 0.0130010545, -0.00879495, 0.022908032, - 0.010765423, 0.01375255, 0.013824968, 0.0046315463, -0.019073257, - -0.015576887, 0.03170827, 0.027373103, 0.028179819, -0.022055108, - -0.0037181657, 0.007734738, 0.0028409078, -0.015053494, -0.008028938, - 0.011266305, -0.0046319277, 0.0051907366, 0.011321102, -0.0176001, - 0.022232989, 0.0027698707, -0.019526295, 1.8405833e-4, 0.018239185, - 0.026379744, -0.004686301, -0.0024004625, 0.030816013, -0.0013744786, - -0.022124372, -0.0022453459, 0.002131867, 0.0015219914, -0.017978128, - -0.003903512, 0.02211464, -0.00507641, -0.015398116, -0.0017526094, - 0.0036728864, -0.001820534, -0.009363395, 0.0059768693, -0.0117017245, - 0.014716007, -0.007680794, 0.004158471, -0.004360387, 0.012669885, - 0.0019343676, -0.0023194668, -0.005135407, -0.020586992, 0.02608277, - -0.0035103417, -0.012509187, 0.005034509, -0.02156837, -0.013842915, - -0.005297881, 0.0119958, 0.03616782, 0.015945192, 0.0042641666, - 0.008215092, 0.0012515102, -0.008709409, 0.020308085, 0.008573601, - 0.017101377, 0.025919432, 0.023167528, 0.021565696, -0.008462282, - -0.012809554, -0.005812232, 0.009872782, 0.009019059, 0.04007929, - -0.009547419, -0.002554045, -0.0128744785, 0.029626185, 0.022998407, - -0.007285545, 8.623148e-5, 0.011363182, -0.008916016, 0.0041877, - 0.007374464, 0.029105596, 0.006508726, -0.022906506, 0.004210945, - -0.01329352, -0.008410268, 4.901978e-7, -0.006060883, 0.0039617205, - 0.0096336, -0.008820476, 0.01228196, 0.023702709, 0.020801635, - 0.008605284, 0.0050733755, 3.5754475e-4, 0.023045907, 0.020030007, - -0.0048501994, -0.011785351, -0.01188558, 0.021162918, -0.016604392, - -0.041030522, 0.00646893, 0.0086834915, -0.014069408, -0.013349907, - -0.029005896, -0.011280347, 0.036711108, -0.018463716, 0.026608737, - -0.014436386, -0.028996745, -0.02826604, -0.0061310846, 0.018873252, - 0.03299951, 0.0017000914, 0.005430698, -0.0025622912, -0.00767437, - -0.012653987, -0.0023686741, 0.031177124, -0.013306251, 0.024610436, - -0.007504478, 0.003660429, -0.030493686, 0.022364838, -6.717816e-4, - 7.9140044e-4, -0.0040136743, 0.004891334, 0.0021329513, 0.025943287, - 0.016959725, 0.010361592, 0.021251217, 0.031562734, 0.030668646, - 0.0071703447, 0.0033212132, 0.004359256, 0.012600633, 0.019047955, - -0.0068877195, -0.021269178, 0.004294823, 0.001999239, -0.007595909, - 0.0021074237, -0.012764989, 0.019028414, -0.00351485, -0.0035427972, - -0.014544488, -0.007971619, -0.022168161, -0.008858685, -0.003035415, - 0.007288509, -0.0038750675, -0.0012498553, -5.1304646e-4, 0.010474499, - 1.4855752e-6, -0.009383965, 0.008410005, -0.026771193, -0.0050172, - -0.0030379554, -0.0027115261, 0.01870274, 0.023363935, 9.405563e-5, - 0.02547956, 0.011309983, -0.010134887, 6.565693e-5, 0.007052698, - 0.01776779, -0.017230531, 0.010220553, -0.03227958, 0.020545604, - -0.0029929741, 1.698843e-4, -0.027183471, -5.028923e-4, -0.005054814, - 0.018426932, 0.017895026, -0.016831, -0.020793343, -0.018235566, - -0.0060383584, -0.008621476, -0.016158974, -0.007237754, 0.018924229, - 0.012427475, 0.012162556, 0.0035319955, -0.014054929, -0.0065234466, - -0.004048643, 0.0023850577, 0.00821091, -0.010305688, -8.310828e-4, - 1.8689434e-5, -0.026245562, 0.004003981, -0.009617451, 0.018814946, - -0.0059975036, 0.010151411, -0.006935095, -0.031929836, 0.01754864, - 0.015031514, 0.0013153036, 0.02381389, 0.006459401, -0.015925229, - 0.007686966, 0.025413293, -0.009653024, -0.016179955, 0.00667793, - 3.1090553e-5, -0.007446662, 0.02017925, 0.0068389378, 0.015612799, - 0.014432199, -0.021378001, 0.0036290456, -0.062197078, 5.967788e-4, - -0.01517522, 0.03523692, -0.002488545, -0.023916068, -0.03510825, - 0.008500978, 0.007132416, -0.021043561, -0.0071690204, 0.00221173, - 0.012185158, -0.014545193, -0.017287092, -7.4200117e-4, 0.010917633, - 0.009187608, -0.002606034, -0.013527716, -0.0025225715, 0.0045844973, - 0.0039855605, -0.014707241, -0.00704165, -0.023334188, -0.019578332, - -0.010208939, 0.00739723, 0.00678902, -0.008817697, 0.016294336, - -0.0066257883, -9.176014e-5, 0.0136170285, -0.0112781115, -0.006772986, - -0.00459182, 0.012870124, 0.0029660608, -0.006703131, 0.04427509, - -0.009128613, 0.010907246, -0.014358511, 0.008959179, -0.0057901125, - -0.025831789, 0.008004325, 3.1738658e-4, 0.0035772403, 0.009910747, - 0.0062781298, -0.0075685624, 0.012645369, -0.011847836, 0.010311833, - -0.0050042043, 0.018540392, -0.0047490867, -0.0099637555, -0.012924909, - 0.027104283, -0.0086393, 0.014044047, 0.026553696, 0.0018885728, - -0.008327866, 0.0024000788, -0.0132343285, -0.0011347269, 0.007890722, - -0.010537286, -0.0011389825, -0.007843119, -0.007851189, -0.005030736, - 0.00897313, -0.009886802, 0.0194796, 0.008688022, 0.001406301, - -0.0071786568, 0.0035463204, -0.022929264, -0.012022248, -0.018636627, - 0.016520254, -0.0019732653, 0.010186998, 0.0159029, 0.013187737, - 0.034676306, 0.0030713782, -0.015066592, -8.01678e-4, 0.013990722, - -0.012963414, 0.002787555, -0.022526555, 0.01432165, -0.029430026, - 0.002798759, -0.04078201, 0.01224566, 0.0120220715, -0.010993765, - -0.019189123, -0.005865171, 0.004265415, 1.8295187e-4, 0.029092072, - 0.04656059, 0.00567995, 0.0015165225, 0.002638584, -0.01574424, - -0.023176251, -0.005591467, 0.018728927, 0.0042928034, -0.009202932, - 0.0016537692, -0.014160049, -0.019557897, -0.014879325, -0.0042629982, - -0.0072833006, -0.006413528, -0.0012028054, -0.015053562, -0.0079682, - 0.008586895, 0.023410372, -8.6441e-4, -0.004217205, -0.01469393, - -0.008504829, 0.0022014037, -0.003842114, 0.002026329, -0.012133859, - -0.0035402619, -0.01003551, -0.026969442, 0.03157031, 0.024361309, - -0.027654989, 0.031859882, -0.012137538, 0.019203154, -0.017916745, - 0.019886363, -0.0049487627, -0.0037251737, 0.032835778, 0.002711378, - 0.0077368305, -0.013563861, 0.028532585, -0.007653331, 0.0063729608, - 0.029311186, -0.0021094421, 0.0059357868, 0.0063665826, -0.013898196, - 0.01136624, 0.013836496, 6.512559e-4, 0.01938513, 0.03994902, - 0.0012685262, 1.8382279e-4, -0.0038320553, 0.0016560081, 0.003040534, - -0.0065047955, 0.0031745487, 0.0068856967, 0.014566361, -0.03677581, - 0.010583777, 0.0031102598, -0.0109632155, 0.027741326, -0.0057067326, - -0.00590404, -0.028266177, 0.006978959, -0.015633252, -0.0018397934, - 0.0029757356, -0.0019525496, -0.003401246, -0.0034772528, 0.0038629726, - -0.024304414, 0.020996613, -0.0021921645, 0.0021788822, 0.018653277, - -0.0141963605, 0.018335259, 0.0044163647, -0.011829476, -0.004467527, - 0.029083803, 0.016565038, 0.03438892, -0.0013212261, -0.010119149, - -0.011283142, 0.016463246, 0.010392295, 0.010057819, -0.005643933, - -0.005157807, 0.018657483, -0.007970889, -0.026480546, 0.025099767, - -0.002419391, -0.016775632, 0.023425423, -0.020174272, -0.019818546, - -0.0016206605, -0.010557715, 0.016098125, 0.0280618, -0.003260236, - 0.014095332, -0.044348583, 0.024482545, 0.005770014, 7.2739334e-5, - 0.012910299, 0.0034411126, -0.0031097606, -0.011926777, 0.0072968826, - -0.0035441616, 0.0032239112, -0.026648281, 0.0020694972, -0.0073322193, - -0.009836352, 0.0018417554, 4.3535855e-4, -0.012158472, -0.0142051205, - -0.00653924, -0.007641809, -0.0032489335, -0.0060978937, -0.0076749744, - 0.016630698, 0.00819911, 0.005824015, 0.004160216, -0.019564485, - 0.0083891535, 0.0023999254, -0.017304474, 0.009588807, 0.0016952854, - -0.0035354467, 0.009297869, -0.01412969, -0.026633456, 0.007867818, - -6.898175e-4, -0.021257782, -0.0058369855, -0.009449794, 0.0226834, - 0.0072276634, -0.004327277, 0.030032761, 0.0057400647, -0.007214223, - -0.0057180836, 0.016328646, 0.0015495282, 0.0029837484, -0.013416092, - -0.0029371488, 0.0019308346, 0.0048907152, -0.012572347, 0.013597058, - 0.008019819, -0.008400236, -0.008202878, -0.026182419, -0.0107349, - 0.006478525, -0.0022204386, 0.01719253, 6.880475e-4, 0.0050174673, - -0.0029237645, 0.013037893, 0.0025286367, -0.04758269, -0.010386138, - -0.01197948, -0.0018443418, 0.018798705, -0.01768937, -0.008024317, - 0.007296385, 0.028786764, 0.0020048686, -0.027456297, 0.002630634, - -0.022143606, 0.013045141, 0.012122285, 0.011405121, 0.025859049, - 0.0048871487, -0.0028002642, -0.007623944, -0.031554706, 0.019030401, - 0.007882375, 0.011278191, -0.022487147, 0.020782676, -0.019821165, - 0.027279027, -0.0019016981, 0.021318488, -0.0013116425, -0.027669678, - 0.009177108, 0.01637356, 0.032435194, -0.008384894, -0.0136082135, - -0.018000726, -0.0040197694, 9.903515e-4, 0.0051216595, -0.03412365, - -0.0015487248, -0.022309717, -0.018473396, 0.015153233, -0.020561855, - 0.03284549, 0.011965134, 0.0064919437, 0.02759734, 4.6291688e-4, - -0.0066584763, 0.0073781624, 0.011752439, 0.007467734, -0.0032905797, - 0.03482991, -0.026156379, -0.011800679, -2.1816774e-4, -0.0014417927, - -0.0019172145, -0.00961658, -0.015065903, -5.203811e-5, -0.0053770198, - -0.013456888, 0.012450488, 6.6080963e-4, -0.0053349095, 0.0021671872, - -0.014150777, 0.0057492773, 0.02075576, -0.0060436684, -0.01361194, - -0.007440191, -0.0058412654, 2.8491678e-4, 0.017443309, 0.026193501, - -2.758132e-4, 0.020750089, -0.036665723, 0.015401922, -0.021457473, - 0.021951407, 0.031197196, -0.015728123, 0.006426276, -0.0047299373, - 0.031550713, 0.0049855984, -7.0710236e-4, -0.00733432, 0.01335089, - 0.0029502006, 0.007757359, -0.0022088112, 0.029378094, 4.1132324e-4, - 0.0015749772, 0.01513509, -0.006554053, 0.0012504264, -0.01855456, - 0.0036768666, 0.002549626, -0.0138257565, -0.013717341, 0.008290848, - -0.0051965234, 7.653843e-4, 0.034682523, 0.015213118, 0.0038795832, - 0.003117049, 0.0039139995, -0.01477866, 0.029524483, -0.011782047, - 0.012290937, -0.016230794, -0.002035514, -0.008148215, -0.0036502166, - -9.7033643e-4, -0.042916287, -0.013202923, -0.0058993483, -0.024739645, - -0.0021097953, -0.006464844, -0.024008805, 0.0016114593, 0.0049112635, - -0.013333103, 0.020080533, -0.008161924, -0.011462462, 0.014013779, - 0.009409576, -0.009966033, -1.5186693e-4, 0.008997988, 0.0032587645, - -0.0069015278, 0.0096682925, 0.03961767, -0.024245035, -0.017243259, - -0.0062087746, 0.005854599, 0.009620344, -0.007015026, 0.010768566, - -0.025972033, 0.035054807, -2.1171058e-4, 0.013043232, 0.009642928, - 0.008267394, -3.1967467e-4, 0.012923118, 0.0062855715, -0.0059300577, - 0.016002374, -0.010371229, -5.084384e-4, 0.0034965884, 0.004290503, - 0.0019663598, 0.014983417, 0.02461226, 0.0064377063, 0.0050842483, - -0.004086416, -0.008389456, 0.007078924, 0.0017821853, -0.004916551, - 0.003649703, 0.0023697135, 0.016347907 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.05898402, 0.0052608466, 0.03993357, 0.04243032, 0.04098855, - 3.0851466e-4, -0.07399368, -0.022293046, 0.031534236, 0.019187953, - 0.018317359, -0.052466616, -0.06020448, -0.024227414, -0.0205477, - 0.015912151, 0.0027991855, 0.05932537, 2.4156607e-4, -0.024427887, - -0.020922912, 0.006900456, 0.0071968012, 0.0050395797, -0.00539269, - -0.06525935, 0.010999979, 0.02044365, -0.061958928, 0.01061979, - -0.025942253, 0.040013794, 0.051933125, 0.037621997, 0.04611445, - -0.016431745, -0.015765173, 0.016895235, -0.0059525697, 0.017647872, - -0.055599816, -0.018558925, 0.023169767, -0.016194982, -0.022571813, - -0.044469703, -0.052242104, -0.013854879, -0.01509508, -0.004681877, - -0.007396157, 0.011724475, -0.021079361, -0.06596296, 0.061307386, - 0.06077538, -0.0016747398, -0.01043697, -0.03060107, -0.034797423, - -0.0076975157, 0.015386042, 0.03940429, -0.015226248, -0.004415956, - 0.022595972, 0.039147843, 0.023585368, 0.0748215, 0.03369644, - 6.673908e-4, 0.016984127, 0.015118146, -0.060802158, -0.01779188, - 0.024769638, -0.0071517164, -0.028894601, 0.030281119, 0.004723932, - -0.013926188, -0.035109747, -0.021988938, 2.0023443e-4, 0.055602286, - -0.0059416043, -0.0192334, -0.040701546, -0.02394644, 0.018998222, - -0.0019721873, 0.011392436, 0.03360861, -0.010816233, -0.007826901, - -0.022274122, 0.013521001, -0.011589829, -0.0011330598, 0.011384039, - 0.02373496, 0.00849465, 0.0012002599, -0.008172052, -0.0034302636, - -0.001192614, 0.05366408, 0.016821181, -0.0010993978, -0.0099376915, - -0.016939923, 0.06810887, 0.007752673, 0.013719136, 0.026874835, - 0.020823216, -0.010689557, -0.019678406, 0.020848997, -0.0037466825, - 0.036497895, -0.0077593867, 0.023344753, -0.05338363, -0.01626328, - 0.0541362, -0.0634335, 0.04666248, -0.015138254, 0.014148866, - -0.047692206, -0.029834518, 0.023780812, 0.023781031, -0.02660036, - 0.0025125535, 0.039221883, -0.025722096, 0.042227168, 0.0017397315, - -0.016252015, -0.026953772, 0.017604383, 0.004817636, -0.031550873, - 0.015159643, -0.019493228, 0.026493007, 0.04476506, -0.029410707, - 0.0044785026, -0.022445122, 0.012783395, 0.024082525, 0.01803642, - 0.00892142, -0.03162061, -0.0070021087, 0.01359954, 0.010911166, - 0.012772125, -0.007411745, -0.010488566, 0.003900987, 0.023978416, - 0.04897922, 0.034128126, 0.018390115, -0.026690226, -0.006926338, - -0.0039304574, -0.004852265, 0.007442577, 0.0078644585, 0.037864316, - 0.046803154, 0.04751924, -0.013052421, -0.020673415, 0.013560917, - 0.0011206637, -0.09490057, 0.004050351, -0.005020372, 0.022160018, - -0.009606291, 0.017954996, -0.018571777, 0.045391623, 0.022167142, - 0.0020268871, 0.010510966, 0.051529072, 0.0119806, 0.005341823, - -0.055407267, 0.025954885, -0.009154952, -0.020767305, -0.012446158, - 0.025154477, -8.3785394e-4, -3.052917e-5, 0.008490458, 0.032816138, - -0.0073757092, 0.018763632, -0.00822328, -0.01621259, -0.0456246, - 0.010325446, -0.00841706, -0.04197664, -0.03501433, -0.008126885, - 0.009633761, 0.0062083057, -0.021562647, 0.005196915, -0.027298158, - 0.01356086, 0.04574268, -0.036738675, 0.002563852, 0.006491779, - -0.033811428, 0.0014921904, 0.005436405, -0.024513418, -0.010330354, - 0.010610091, -0.018219886, -0.017177902, -0.011316611, 0.03918469, - -0.009873597, 0.05126074, -0.026987515, -0.0071202, -0.022419946, - 0.0018687821, -0.040958233, -0.054336157, -0.0056200814, -0.058688458, - -0.01554369, -0.10045309, -0.0054112365, 0.00809968, 0.06647167, - 0.01033926, -0.030345343, 0.004662126, 0.0035129539, 0.029304774, - -0.02654444, 0.029274521, -0.018381227, 0.019005034, 0.035894625, - 0.003552318, 0.031530883, 0.008118291, 0.033045325, -0.019346884, - -0.015555289, -2.4479692e-4, 0.035618976, -0.016385328, 0.002637576, - -0.008884133, -0.03797215, -0.04748535, -0.043895766, 0.0068132426, - 0.045738403, 0.016798194, 0.012357869, -0.027305508, -0.006564463, - -0.010733082, -0.004056365, -0.019883951, -0.010752784, -0.036018755, - 0.026118783, 0.018839346, 0.021185908, 0.031545304, -0.021980448, - 0.029074179, -0.002870247, -0.007552623, 1.6972987e-4, 0.014167129, - -0.03739941, -0.015448961, -0.026187276, 0.012130704, 0.017831612, - -0.06257455, 0.025612254, -3.8097365e-4, 0.026107067, 0.0064266957, - 0.02894872, 0.02152442, 0.03282369, 0.011419423, 0.06406635, - 0.035288647, 0.073429905, 0.055478234, 0.01812091, 0.0059752073, - -0.0060282075, 0.01975712, -0.044916607, 0.017239532, -0.06881438, - -0.0461592, 0.017355444, 0.04328094, 0.04124189, 0.005013469, - 0.01335489, -0.010680104, 0.041712992, -0.03167488, -0.040689953, - -0.022576412, -0.041576855, 0.03902637, 0.009630163, -0.0023455664, - -0.013552637, 0.03997832, -0.04682203, 0.020667382, 0.022145823, - 0.055856336, -0.04579417, 0.018041227, -0.053085197, 0.014312335, - -0.034371004, 0.004323571, 0.088357426, 0.007816426, 0.031107634, - -0.0075829234, 0.002669921, -0.026707774, 0.023843968, 0.018041307, - 0.03326913, 0.07364124, 0.04336303, -0.023929376, 0.010454956, - 0.030909093, -0.06347074, 0.0062143896, -0.039639495, 0.025961589, - -0.048154622, 0.018126285, 0.029716365, 0.023675058, 0.020328611, - 0.036266442, -0.017155448, 0.02349734, 0.011713441, -0.0063335667, - 0.06315927, -0.022868045, 0.04252852, -0.035771683, 0.03350114, - -0.049782082, -0.017562484, 0.020514697, -0.03878647, 0.0058647, - 0.014560358, -0.017700506, -0.020457461, -1.2197069e-4, 0.023655446, - -0.034771778, -0.071983896, -0.03567545, -0.003788993, -0.016859224, - 0.025611034, 0.03435181, -0.046542466, -0.024799008, 0.02324152, - -0.0506798, -0.047857735, -0.04542238, -0.03236706, -0.005194929, - -0.062700406, -0.023159863, -0.035937116, -0.011155479, 0.06936546, - 0.0330985, 0.044258136, 1.2355846e-4, -0.014899306, 0.03261749, - -0.00493013, 0.044548165, -0.036852393, 0.015646039, 0.030378642, - -0.035196546, 0.011626751, -0.025826544, -0.010163773, -0.023432653, - -0.017037868, -0.0454547, 0.0029649104, -0.02169495, -0.06867024, - -0.019060152, 0.015995612, -0.062042024, 0.050628535, -0.0148811815, - 0.0111873085, -0.02914086, 0.029515592, -0.009310318, 0.011694257, - 0.042181417, -0.0292422, -0.025222773, -0.050441276, 0.0037360347, - -0.022660881, -0.011322875, 0.005350425, 0.02999958, 0.026945833, - -0.04048238, -0.010962139, 0.013685041, -0.0559169, 0.02698021, - -0.0037043968, -0.011547966, -0.006151983, 0.020453962, 0.0023025565, - -0.03312844, -0.039090127, 0.010663497, 0.011228821, -0.016836163, - -0.038510595, -0.009597376, 0.024794891, -0.01246433, -0.033272736, - 0.04236484, 0.018667975, -0.007298208, -0.04205175, -0.02861632, - 0.01516294, -0.028373845, -0.030566417, -0.0054191495, 0.016202513, - 0.06781841, 0.048619416, -0.07113261, 0.002363938, -0.015597291, - -0.037747156, 0.028495606, 0.046726797, -0.043578416, -0.030156909, - -0.027537776, -0.052830644, 0.078775175, -0.0040219203, 0.031491235, - 0.0032369157, 0.035325263, -0.0105165, -0.0245934, 0.028264903, - -0.026895834, -0.01813195, 0.02968135, 0.028608771, -0.0045007057, - -0.0038983307, 0.029777056, -0.029443786, -0.020800956, 0.018575238, - 0.0076233614, -0.04486164, 0.027542414, -0.020159837, -0.057189565, - 0.03633271, 0.023859197, -0.011065656, -0.023828374, -0.025288973, - -0.04458077, -0.0043369285, 0.027844684, -0.045120377, 0.04672509, - 0.009680474, 0.0024568483, 0.023239132, -0.017437048, -0.021381175, - 0.03763166, -0.026469894, 0.027037736, -0.016578171, 0.013156469, - -0.021917172, 0.009069174, -0.008434829, 0.023541067, -0.0037201839, - 0.002443032, -0.061126128, -0.016892392, 0.022307942, -0.0027083864, - 0.02259606, -0.021291485, -0.029402152, -9.570654e-4, 0.07746063, - 0.015043777, 0.035769384, 0.047725108, -0.0021020726, -0.047461256, - 0.031737, -0.018461177, -0.049717534, 0.037980724, 0.014229491, - -0.003968151, 0.0020587286, 0.031269737, -0.015245574, -0.0077041024, - 0.03840766, -0.0026920352, 0.034637753, 0.018783676, 0.017377919, - -0.01267685, -0.0047672084, 0.049228344, 0.021152267, 0.004421712, - -0.018813666, -0.0349514, 0.020653868, 0.015996967, -0.030655853, - 0.006451083, -0.006937389, 0.051247243, -0.0026155077, 0.042935792, - 0.023245193, 0.044356756, -0.036537886, 0.010914474, -0.05415586, - -0.034095097, 0.014104559, -0.008923806, 0.010244497, 0.03420502, - -0.024608366, 0.01687758, 0.00660119, -0.007111783, 4.7348163e-5, - -0.0042166486, 0.01634658, -0.06686671, 0.018855058, 0.011448221, - -0.0062872567, 0.043307085, 1.4703932e-4, 0.011642854, -0.035126798, - -0.04676388, 0.025818938, -0.019821024, -0.024852399, -0.05905348, - -0.04306314, 0.0109700365, 0.008275552, -0.0073067825, 0.022760408, - -0.032855205, -0.059440963, -0.07684631, 0.014876086, 0.010987812, - -0.007663477, 0.047252163, 0.0246553, 0.008357245, 0.015316366, - 0.019814521, -0.0037289914, 0.02908105, 0.013433175, -0.04573427, - 0.030345116, 0.0013799535, -0.00285009, 0.028546527, 0.019592796, - 0.012664391, 0.036239315, 0.016357686, -0.029340545, 0.019640574, - 0.034047008, 0.008536651, 0.009846857, 0.0036256548, -0.035519693, - 0.012808296, -0.013483877, -0.018364284, -0.0035592557, -0.037931643, - 0.057695225, 0.0019033867, -0.036299016, -0.020531612, 0.055988513, - -0.011901917, 0.01562403, -0.039416768, 0.060356095, -4.8023116e-4, - -0.036973413, -0.0061962362, 0.008326191, -0.0040907906, 3.5526708e-4, - -0.011890539, -0.09437059, -0.0056942548, -0.03303925, -0.0153387, - -0.014081067, 0.006395594, -0.010035395, 0.0022948193, 0.0064998325, - -0.023515342, 0.027912715, 0.018511249, 0.07676483, 0.03040075, - -5.9304305e-4, 0.038877312, 0.023409499, -0.036318764, 0.034020126, - 0.01671351, -0.014096104, 0.023839515, -0.021005895, 0.01835739, - 0.03274561, 0.0061562005, -0.007259307, 0.01329055, 0.028334336, - -0.008179987, 0.0013135503, -0.0103271, -3.299797e-4, 0.095104195, - -0.02304842, 0.011742558, 0.03242075, 0.04049985, -0.036506202, - 0.02793717, -0.07238973, -0.072034776, 0.034755386, -0.025546841, - -0.057226278, 0.006403388, -0.016121153, 0.023193864, 0.004276863, - 0.014435545, -0.03862595, 0.008407415, -0.007353972, 0.038389675, - -0.025724847, -0.038137075, 0.025749188, 0.0065154047, -0.02800175, - 0.0026372583, -0.001454467, -0.042713996, -0.00845186, -0.061322894, - 0.003753003, -0.018521367, -0.01183711, -0.011325843, 0.010073298, - 0.0069456734, -0.021155717, -0.036950354, 0.042938944, 0.006758492, - -0.015872078, -0.004188485, -0.041270837, -0.016921883, 0.03115307, - 0.03675561, 0.03842577, -0.013744873, 0.009556839, -0.039102428, - -1.3867025e-4, -0.009328027, 0.043270227, -0.034694113, 0.020530242, - -0.024728052, 0.01921472, -0.015671253, -0.044513315, -0.036605027, - -0.042046476, -0.032677054, 0.044762425, -0.061887797, 0.029698111, - 0.010314587, -0.015331347, 0.019240944, 0.018187108, -0.018145502, - -0.021745307, 0.0146151325, -0.04422882, 0.00357533, 0.042531293, - 0.029640332, -0.026209934, 6.9375447e-4, -0.03023786, -0.06985469, - -0.06967965, 0.0012777941, 0.008437042, -0.021300837, -0.0096747205, - 0.008941963, 0.03482456, 0.006449467, -0.012967564, 0.009516149, - 0.06477205, -0.0100414585, 0.0019110815, -0.015544391, -0.031720217, - -0.0037375784, 0.038424086, -0.040115464, 0.03324875, 0.031146716, - 0.011515164, 0.025044218, 0.022783061, -0.014204069, -0.03046261, - 0.054300245, 0.046973355, -0.023117727, -0.026761856, -0.0141865, - 0.02426913, 0.0672629, 0.04113369, 0.04027416, 0.034548536, 0.05703057, - 0.035667956, 0.019186398, 0.0053862915, 0.027295833, -0.017733395, - -0.020027932, -0.02434068, -0.032069404, 3.3651997e-4, 0.002730333, - 0.0044715945, 0.033760626, 0.008813562, -0.01823315, 0.021762766, - 0.051883947, 0.03021435, -0.011533588, 0.005494496, 0.017647274, - -0.0027039498, 7.3307665e-4, -0.02238366, 0.0057618623, -0.010516283, - -0.058447655, -0.023195291, -0.029820303, -0.023954429, 0.037529174, - 0.028506188, 0.012543258, 0.030439874, -0.012538465, 0.0028714307, - -0.021291595, 0.008297456, 0.011740293, -0.0030972357, -0.008709568, - -0.019675096, -0.032646425, -0.057938997, 0.008087265, -1.18763455e-4, - -0.029723836, -0.07401759, -0.053785942, -0.0017698378, 8.2680304e-4, - -0.035755094, 0.047286406, -0.0030791385, -0.0047683422, 0.041621212, - 0.062467325, 0.035944115, -0.006902837, 0.055876285, 0.06843478, - -0.0146123795, -1.9785765e-4, -0.0063193585, 0.012138128, 5.723291e-4, - -0.056234792, -0.0133459475, -0.025125874, 0.046740465, -0.003841683, - -0.027509606, -0.02380279, 0.02883027, 0.037912462, -0.063294336, - -0.0140853105, 0.067305006, 0.037543613, -0.04474778, -0.0063313865, - -0.017259382, 0.04717381, -0.015358489, 0.046631247, 0.03713356, - -0.016199496, -0.031079073, -0.043060504, -0.0071195187, -0.002717512, - -0.031873595, 0.004314642, -0.05034605, -0.019593276, 0.030206604, - -0.02889423, 0.018970711, -0.07078814, 0.042119507, -0.032056075, - -0.019475842, -0.0021087006, 0.00606589, 0.043211665, 0.014620557, - 0.021573754, -0.017339082, -0.010524909, -0.047198232, -0.045468695, - -0.013091829, 0.028737403, -0.007695187, -0.0084432075, -0.070706025, - -0.064874545, 0.045173284, 0.059969764, 0.030040003, 0.026186235, - -0.0067212274, -0.035299897, 0.00948205, -0.039081782, 0.038085822, - -0.013814147, -4.0036277e-4, 0.0020429709, -0.016937954, 0.027235469, - -0.038034342, 0.037669417, 0.008809327, -0.028009206, 2.0577612e-5, - -0.081076846, 0.030568268, -0.032699496, 0.04490577, -0.0015519131, - 0.049128626, 0.023628158, -0.015294608, 0.015568444, -0.015762936, - -0.059651088, 0.08429893, -0.04660375, -0.00394207, 0.016444072, - -0.04825075, 0.01815699, 0.02563754, 0.041125003, -0.060280126, - -0.0012987187, 0.050797977, 0.038254187, -0.038370285, -0.0065974668, - 0.028860357, -0.012412434, -0.06775209, 0.056247883, -0.030796448, - 0.028337752, 0.0025119835, 0.05515894, -0.0020196873, -0.0029559436, - 0.004569196, 0.0031587002, 0.016736178, -0.029755466, 0.03352955, - -0.06475757, 0.00560246, 0.0030463147, -0.0013717238, -0.018537603, - 0.10376473, 0.024917878, 0.018203024, 0.017161395, -0.053988006, - 0.035770155, 0.03247375, -0.042520232, -0.020955358, -0.031025898, - 0.012469995, 0.024816342, 6.470074e-4, -0.040724795, -0.06989705, - -0.023317728, 0.008747564, 0.023222897, -0.010227002, 0.005713711, - -0.034576945, -0.04695063, 0.009161416 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + 189302400000 + ] + }, + "vectorValues" : { + "features" : [ + 0.008132671, + -0.0189312, + -6.1867543E-4, + 0.0038661498, + 0.014187435, + 0.008343061, + -0.02522893, + 0.015558366, + -0.0032527728, + -0.021746732, + -0.0015264819, + 0.0012950874, + -0.0056629735, + 0.02107462, + 0.003367882, + 0.0076012798, + -0.01614914, + -0.0026248666, + -0.02422166, + 0.018078694, + -0.019632017, + -0.015837874, + -0.016739625, + -0.009592274, + -0.024572242, + -0.002272935, + 0.01314111, + -0.0030233152, + -0.030086914, + 0.011214848, + -0.0046714805, + -0.030269621, + 0.001943082, + 0.01021838, + -0.0074683228, + -0.008103823, + -1.2631345E-4, + -0.029809466, + -0.020815764, + 0.024559475, + 0.006885547, + -0.011513738, + 0.014171908, + -0.013153545, + -0.0050025214, + 0.016990881, + -0.005134127, + 0.009793934, + 0.014724162, + 0.0072495774, + -0.021788426, + 8.266219E-4, + 0.0057893256, + -0.005514867, + 0.008916765, + -0.027550021, + -0.014915756, + 0.01013394, + -0.0031746528, + 0.026031286, + -0.007145149, + -0.016266342, + 0.010839787, + 0.0067396853, + 0.013598262, + -0.00450868, + -0.011032263, + -0.023192048, + 3.948886E-4, + 0.0063066348, + 0.0052045416, + 5.8238584E-5, + -0.008053614, + -0.024198199, + -0.03265069, + 0.015433255, + 0.012299778, + 0.004387604, + 3.0057694E-4, + 0.00433054, + -0.0059686485, + 0.055996757, + 4.8707615E-4, + 0.03376165, + -0.017038034, + -4.5544686E-5, + -0.017248712, + -0.042141013, + 0.0014417904, + -0.01577809, + 0.043157026, + 2.8286898E-4, + -0.013227215, + 0.012054009, + -0.009906401, + 0.019341191, + -0.014353065, + 0.0037477836, + -0.0018455947, + 0.02024947, + -0.018872183, + 0.007785872, + 0.020792326, + -0.011314343, + -0.016386198, + 0.015736207, + 0.015754573, + 0.018175228, + 0.0034358776, + 0.01922383, + -0.010918181, + 0.007481779, + -0.038698882, + 0.024950175, + 0.015083012, + 0.023128586, + -0.02031941, + 0.005695643, + -0.0136099495, + -0.0105574755, + -0.007555607, + -0.015872769, + -0.0073726876, + -0.0035951338, + -0.031719267, + 0.011094746, + -0.012166186, + 0.006314429, + -0.0037284552, + -0.0014347511, + -0.02587718, + 0.009708615, + 0.0039956733, + 0.006362451, + 0.031074623, + -0.02545456, + 0.00791409, + 0.012883932, + -0.023209134, + 0.00832998, + -0.022160234, + -0.008523025, + 0.040991385, + -2.729317E-4, + -0.01518192, + -0.024436092, + -0.01152391, + 0.018929075, + 0.015903799, + -0.0023145657, + -0.018252667, + -0.0053664385, + 9.541732E-4, + 0.003903693, + 0.012040491, + -0.0016964627, + 0.00491975, + -0.024234906, + -0.00646994, + 0.007901393, + -0.010683191, + -0.008134508, + -0.031335697, + -0.0086531555, + -0.0035383755, + 0.011530272, + 0.0014431053, + 0.0022394657, + 0.0063050697, + 0.03390216, + 0.0023720139, + 0.005337539, + 0.0024848543, + -0.005408823, + 0.012791037, + -0.02200626, + 0.017614191, + 0.033869565, + 0.013496221, + -0.012064583, + -0.0044119344, + 0.014526113, + 0.002506299, + -0.030413857, + -0.025762187, + -0.014388442, + -0.0035369159, + -0.008039045, + -0.018632669, + 0.009468852, + -0.02434934, + -0.001766647, + -0.007264999, + -0.014287007, + 0.026384657, + 0.014870225, + 0.018270655, + -0.006227196, + -0.0069896374, + 0.02173663, + -0.028185422, + 0.024137352, + -0.0066871615, + -0.041283894, + 0.029802943, + -0.0103247, + 0.005977595, + -0.0011736723, + -0.025874676, + -0.0038583726, + -0.023777047, + -9.966344E-4, + -0.0035392758, + -0.008274249, + -0.026829945, + 0.04131032, + 0.01663728, + 0.021872979, + 0.019030694, + -0.008463468, + 0.025153698, + 0.008118944, + 0.0053324713, + 0.012600666, + -0.03956219, + -0.006907744, + -0.057746734, + 0.00574545, + 0.002853951, + -0.004458936, + 0.0070739347, + -0.008215798, + -0.006273598, + -0.017722804, + 0.0010545454, + -0.002686777, + -0.014343008, + 0.0023718935, + -0.010914786, + 0.028345848, + 0.022206055, + -0.0016717379, + -0.030059215, + 0.0025611017, + 0.01038147, + -0.01985381, + -0.0072547705, + -0.004949782, + -0.004743137, + -0.020891156, + -0.012882135, + -0.010860982, + -0.01685036, + 0.01485579, + 0.009145542, + 1.3131069E-4, + -0.0031032118, + -0.017641494, + -0.0021192094, + -0.047848497, + 0.0038713121, + -0.005081877, + 0.0022450732, + -0.031218128, + -0.007220322, + 0.010045339, + -0.011985015, + 0.01119409, + -0.024848433, + 0.0058798078, + 0.0070499033, + -0.0024111099, + 0.019763667, + 0.008935315, + 0.010346934, + -0.03308075, + -0.026173666, + -0.024081107, + 0.019759435, + -0.022811502, + 0.014294094, + -0.0048191035, + 0.0441768, + -0.014485378, + -0.0072430097, + 0.019530235, + 0.030980865, + 0.021603756, + 0.0062691937, + -0.014160499, + 0.0016372375, + 0.006511719, + 0.01783178, + 0.0059046117, + 0.011423553, + -0.012451337, + -0.011208059, + -0.021325683, + -0.0152234165, + 0.01281591, + 0.04220162, + -0.008442489, + 0.015873484, + 8.28676E-6, + 0.007226091, + -0.026559787, + 0.01180032, + -0.033906713, + 0.022584021, + -0.007890931, + -0.01745515, + 7.0810353E-4, + 0.019830666, + -0.0045719068, + 0.018603126, + -0.0241864, + -0.0068005426, + 0.028149707, + -0.024364121, + -0.015611973, + -0.0056714923, + 0.038680486, + -8.9187204E-4, + -0.013555032, + -0.002007977, + 0.0033606053, + 0.011937231, + 0.0061973943, + -0.021492258, + -0.023949059, + -0.0017844285, + -0.016231226, + 0.012275202, + 0.019702151, + -0.0149516165, + -6.902659E-5, + 0.022036422, + -0.020677142, + 5.1982736E-4, + 0.012355125, + -0.010001861, + 0.0039841933, + 0.014470657, + 0.009838214, + 0.0062990007, + 0.02429064, + -0.0058479863, + 0.011414716, + -0.0037034464, + -3.447098E-4, + -0.029250016, + -0.003765972, + -0.010281951, + -0.01903245, + -0.0036296055, + 0.014900734, + 0.009570325, + 0.013357528, + 0.010714116, + -0.006097383, + -0.033556487, + -0.017375272, + 0.031945284, + 0.005368568, + -0.009436507, + 0.006350374, + 0.0044462853, + -0.026696842, + 0.013955975, + 0.014595622, + 0.0065247705, + 0.020048399, + -0.005952523, + -0.0018834885, + -0.0018490485, + -0.0044891555, + -0.022424323, + -0.025276741, + 0.0024596485, + -0.018579016, + 0.004561169, + 0.0045645772, + -0.016681172, + -0.025323102, + -0.0052014207, + -0.0024865335, + -0.054544974, + 0.0032323715, + 0.015350673, + -0.01247315, + 0.005639417, + 0.0029732387, + -0.003983379, + 0.019159442, + 0.010479624, + 0.019949593, + 0.002502004, + 0.0050280145, + 0.027548684, + -0.014464023, + -0.026553601, + 0.009047939, + 8.8926766E-4, + 0.02841009, + -0.013793084, + -7.9271814E-4, + 0.0018367846, + 0.019947, + 0.01230094, + -0.030969292, + -0.0067797517, + -0.0016921789, + -0.0019990467, + 0.0028485276, + -0.005008826, + 0.0049214414, + -0.0036826336, + 0.010501929, + 0.008797008, + -0.013391022, + 0.0015496912, + -0.016958678, + -0.007881558, + 0.0014905771, + 0.008225978, + -0.00828724, + -0.0020687592, + 0.0081007555, + -0.008628325, + -0.029984003, + -0.017976642, + 0.019379161, + 0.023470696, + 0.0025779922, + -0.0015556865, + 0.010813036, + 0.0038847118, + 0.012523862, + 0.032471523, + 0.029601116, + 0.011859271, + -0.013928033, + 0.031680472, + 0.015707335, + -0.013447087, + -0.03145122, + -0.021626968, + -0.008500061, + 0.011732951, + -0.021854987, + -6.604208E-4, + -0.003426788, + 2.8857493E-4, + -0.005482049, + 0.0071373964, + 0.014613646, + 0.011960014, + -0.014533003, + 0.021559687, + 0.007798116, + -0.017206512, + -0.013747898, + -0.010463157, + 0.014497326, + -0.006810449, + 0.01902622, + 0.012590341, + 0.017401118, + -0.02982819, + 0.02774478, + 0.025796115, + 0.0011468469, + -4.4576742E-4, + 0.013478178, + -0.015180807, + 0.034316722, + -0.002354054, + 0.020601684, + 0.033061676, + -8.8270975E-4, + -0.010002116, + 0.029161774, + -0.018761348, + 0.002026907, + -0.003981191, + 0.004809092, + 0.024495844, + 0.024179839, + 0.028879857, + -6.538472E-4, + -0.0017278099, + -0.02250347, + -0.011558914, + -0.0098349145, + -0.0106328055, + 0.018597396, + -0.013633501, + -0.0037761386, + -0.010889484, + -0.006226541, + 0.019302327, + -0.0026903169, + -0.013522962, + -0.0029324233, + 0.008971737, + 2.9579588E-4, + 0.01035807, + -0.0051338216, + 0.005024104, + -0.018575737, + 0.021407586, + 0.017159473, + -0.018406142, + -0.012603264, + -0.007716706, + 0.005705464, + 0.041635398, + 0.019209703, + 0.023125056, + -7.736589E-4, + -0.024418619, + -0.029989986, + 0.013070282, + 0.008605631, + 0.010223481, + -0.009447382, + 0.01794446, + -0.003256643, + -0.01655089, + 0.0021713988, + -0.013799397, + 0.0035949796, + 0.016843135, + -0.021041296, + -0.024887396, + -0.011354206, + -0.011928225, + -0.024685686, + 0.0011416079, + 0.031126924, + 8.4814854E-4, + -0.0034915726, + 4.4735603E-4, + -0.010524804, + -0.011296865, + -0.010844034, + 0.011022158, + 0.016338075, + -0.012293798, + 0.011541368, + 0.001347543, + -0.0048009795, + 0.0039013566, + -0.0031617845, + 0.0019523875, + 0.0042379857, + -0.013315976, + -0.014313592, + 0.021587962, + 0.04766023, + -0.01331215, + -0.0016072922, + -0.009283816, + 0.020720894, + 0.013710871, + -0.013492097, + 0.0032888376, + -0.014252204, + -0.005053268, + 0.002992413, + 0.012482675, + 0.010971464, + -0.029948262, + 0.0032958763, + -0.008266957, + -0.0103329765, + -0.0036919909, + -0.013400032, + -0.008149058, + 0.022833938, + 0.020897783, + -0.0025735851, + -0.03168529, + 0.014497599, + 0.0020160652, + -0.009387959, + 0.0031991904, + -0.011120956, + 0.031850833, + 0.0073233773, + 0.01722059, + -0.017452167, + 0.036984734, + 0.01223856, + 0.029987998, + -0.0037058739, + 0.019277994, + 0.009856272, + -0.009153214, + -0.010672566, + 0.043496214, + -0.019871505, + -0.007072015, + 0.022300119, + -0.002457758, + 0.041400943, + 0.029049562, + 0.0032733355, + -0.033030096, + 0.015465213, + 0.0015574114, + 1.9458584E-4, + 0.005027795, + 0.023317898, + 0.03377022, + -0.0022405195, + 0.0020937624, + 0.0035270343, + -0.014468836, + -0.0024987676, + -0.011558472, + -0.0154895205, + -0.013249659, + -0.009566191, + -0.0049495967, + -0.0111431, + -0.0057069957, + 0.004428605, + -0.007554392, + 9.120601E-4, + -0.018320033, + 0.015535555, + 0.024048967, + 0.015135254, + 0.018051323, + -0.019580228, + -0.017651744, + 0.0051500136, + 0.0037763028, + -0.009783861, + 0.01981836, + -0.02962877, + -0.01740844, + -0.017887745, + 0.026642261, + 0.010410981, + 0.01481552, + -0.0077985125, + -0.0067723333, + 0.017458832, + 0.014966635, + -0.033536684, + -0.020348513, + 0.024182484, + -0.002826383, + 0.0034053714, + -0.026505705, + 0.020545574, + -0.0051331413, + -0.013336433, + -0.01091299, + -7.955387E-4, + -0.009650202, + -0.010107649, + 0.0028192345, + -0.006466912, + 0.0018787269, + 0.011809322, + 0.0131930765, + 0.027731696, + 0.010963507, + -0.0051390734, + 0.00927216, + -0.024668574, + 0.028753135, + -0.022908255, + 0.0043644896, + -0.02506789, + -0.007581927, + -0.018830106, + 0.03086459, + 0.009816136, + 0.0029112494, + -0.029082697, + -0.018428778, + 0.012029733, + 0.012918352, + -0.011220517, + 0.021088557, + -0.0038874603, + 0.0151499305, + 0.0037036827, + 0.024565708, + 0.009053408, + -0.0050466023, + -0.011055573, + 0.00314802, + 0.0137443775, + 0.04094309, + -0.011298052, + 0.015586696, + -0.005014108, + -0.006316162, + 0.009038388, + 0.008440119, + 0.001481128, + 0.025979165, + -0.008234129, + -0.018195605, + -0.0017183776, + 0.0115936175, + 0.002519837, + -0.00586853, + 0.014577319, + -5.78401E-4, + -4.8491114E-4, + 0.0072291596, + 0.00658367, + 0.023364931, + 0.016420892, + -0.0032384875, + 0.0020101832, + 0.0034860093, + 0.028292513, + -0.0030699268, + 0.01810557, + 0.024542121, + -0.0021629918, + 0.0037041253, + -0.024786215, + 0.005008172, + 0.04083957, + -0.021346146, + -0.010710593, + 0.0042357836, + 0.0036997458, + 0.024838785, + 0.0025648063, + -0.017828252, + -0.021974778, + 0.016189255, + -0.0032582153, + -0.0038452789, + 0.009700584, + 0.014205888, + -0.029049456, + 0.0011873012, + -8.591072E-4, + -0.024439842, + -0.018801365, + 0.002072827, + -0.0030229478, + -0.042097658, + 0.028361456, + 0.01048151, + -0.028429829, + -0.02601745, + 0.020600341, + 5.198765E-4, + 0.015965002, + -0.004403379, + 0.02725779, + 0.012023499, + 0.025179105, + 0.017117603, + 0.019584253, + 0.013775602, + -0.023748647, + -0.032737747, + -0.024742136, + -0.01870712, + -0.006646111, + 0.024645215, + 0.009766721, + 0.007847091, + 0.002866687, + 0.0052145394, + -0.020576162, + 0.020261059, + -0.004737493, + 0.0115278205, + 0.022719273, + -0.012381441, + 0.001597001, + 0.016154986, + 0.01067211, + -0.0151284, + -0.0214756, + 0.008156645, + 0.019331537, + -0.023938585, + 0.009027709, + 0.022741059, + -0.02470669, + -0.013267537, + -0.008646212, + -0.02510593, + -0.008047021, + 0.013199207, + -0.0037315227, + -0.004599673, + 0.01166555, + 0.009885151, + -0.019178415, + -0.0056433934, + 0.003909589, + -0.008758806, + -0.005398992, + -0.008543484, + 0.0062208576, + 0.006579405, + -0.0031628972, + -0.022207815, + 0.0062694415, + 0.03413493, + 0.005736875, + 0.0059368433, + 0.005113676, + 0.0062817764, + -0.005166954, + 7.4994034E-4, + -0.007872898, + -0.025976434, + 0.003020763, + 0.011348271, + 0.0033524423, + 0.010131732, + -0.022446968, + -0.011667104, + 0.0017533719, + 0.033927087, + -0.009473456, + -0.0036858276, + 0.016436407, + 0.012602967, + 0.00505602, + 0.030577142, + 0.024687845, + -0.010637331, + -0.0070406036, + -0.05090517, + -0.009471941, + -0.0040056445, + 0.009778017, + -0.02837923, + -0.015991487, + 0.024474008, + 0.029949918, + 0.019471139, + -0.025665382, + -0.028498227, + -0.008833303, + -3.6091697E-5, + 0.016744897, + 0.013847054, + -0.015243524, + 0.007334192, + 0.023204701, + -0.016071262, + -0.028182687, + -0.022939738, + 7.4694486E-5, + 0.0016755849, + -0.007894627, + -6.705806E-4, + -0.03005416, + 0.0084771095, + 0.012539537, + -0.012253418, + -0.014589187, + -0.0023879227, + 0.0059514535, + 0.005479591, + -0.018261163, + -9.347723E-4, + 0.00680549, + 0.019195694, + 0.012650536, + -0.0019555956, + 0.001687859, + -0.007897918, + -0.035728086, + -0.015613412, + -0.015580102, + 0.018480774, + 0.023778578, + 0.013577205, + -0.0060784337, + 0.0060675144, + -0.018185139, + 2.8371776E-4, + -0.011898335, + 0.0065250085, + -0.010518468, + -0.0036920647, + -0.0062346817, + 0.017380942, + -0.020883765, + 0.002848915, + -0.022763917, + 0.0026932622, + -0.019803315, + -0.008201178, + 0.016443407, + -0.0183768, + -0.044625178, + 0.0075778216, + 0.04102651, + -0.005234654, + -0.001838299, + 0.01691919, + 0.0058600903, + 0.006359195, + -0.019223314, + -3.0258205E-4, + -0.01165237, + 0.03681886, + -0.0045759887, + -0.0034780065, + 0.014216302, + 0.013428349, + 0.0014668194, + -8.55393E-4, + 0.033886623, + -0.016253792, + -0.010968109, + -5.5611144E-5, + 0.0032996049, + 0.0020232175, + 0.037780523, + 0.015781017, + 0.011312417, + -0.0064619156, + -0.017690519, + -0.010117936, + 0.0123379165, + 0.0020231022, + -0.01618123, + 0.009166484, + 0.016219687, + -0.033620253, + 0.008035675, + -0.029966906, + 0.01030709, + -0.003637495, + 0.016190812, + 0.016712587, + 0.009710004, + -0.012650721, + -0.0058354847, + -0.0035412407, + 0.006709313, + -0.013870935, + -0.007986217, + -0.032980382, + 0.015158723, + 0.013012429, + -0.016188618, + 0.0028288043, + 0.0074756537, + -8.8072725E-4, + 7.92929E-4, + 0.013726005, + -1.4662925E-4, + -0.004205525, + -0.018761242, + -0.004374863, + -0.0027313645, + -0.001823164, + 0.019833896, + -0.009397495, + -0.0067604473, + -0.0121098915, + 0.029013934, + -0.0031103864, + -0.006049859, + 1.908951E-4, + 0.003066752, + 0.011387429, + -0.0091791535, + -0.008025436, + -0.011785106, + -0.0421922, + 0.0024062716, + -0.007772773, + -0.01911005, + 0.004102914, + -0.010456378, + -0.0038322958, + -0.0013631237, + 0.023508947, + -0.002163642, + 0.030369531, + 0.0026090508, + 0.010625682, + -0.0067725433, + 0.015949106, + -0.0028008984, + -0.028506618, + -0.0040750895, + 0.007748336, + -0.0012516114, + -0.0056204307, + 0.017288337, + -0.030347176, + -9.284999E-6, + -0.01949907, + -0.016422594, + -0.023871845, + -0.015461906, + -0.015689867, + -0.015002665, + -0.003451858, + -0.006876129, + 0.01584126, + 0.0037700778, + -0.0049646795, + -0.010804539, + -0.028988613, + -0.013744976, + 0.022937363, + -0.016596504, + 0.010710982, + 0.0017224791, + -0.014429369, + 2.9641404E-4, + 0.02614427, + 0.0072484612, + 0.004083721, + -0.010847738, + 0.009599317, + -0.015222507, + -0.02705096, + 0.0013669212, + -0.010361203, + 0.00829299, + -0.016483838, + 0.01607296, + 0.014175482, + -0.036202528, + 0.017935028, + -0.0112626, + -0.005082678, + 0.009756642, + 0.0150141055, + -0.020604283, + -0.009989014, + 0.0103805885, + 0.019170012, + -0.016402856, + 0.018980628, + 0.011264677, + -0.00962478, + -0.0044078054, + -0.031266186, + -6.822547E-4, + 0.0069391592, + 0.013540263, + 0.0060298704, + -0.03205635, + -0.021318672, + -0.006192779, + -0.016068857, + 0.03361901, + -0.007832146, + 0.007881348, + -0.0027779168, + -0.002047507, + -0.0032644419, + -0.016966294, + 0.0035019815, + -0.01301425, + 0.010075545, + 0.0055902763, + -0.0026488078, + -0.0013926876, + 0.0060931463, + -0.0067873383, + 0.0033580142, + -0.018290628, + -0.030765211, + 0.0097318785, + 0.007563779, + -0.023732673, + -0.010567542, + 0.030166598, + 0.014587967, + 0.008620516, + -0.019802414, + -0.013303766, + 0.030960526, + -0.073849335, + 0.023932863, + -0.0047007874, + 0.012576747, + 0.0037182516, + -0.012595333, + 0.031736594, + 0.0039123157, + -0.0030516014, + 0.008086859, + -0.016992465, + 0.0067948783, + 0.0027599789, + 0.0033290545, + 0.0013589428, + 0.013000776, + 0.024290377, + 0.017633917, + 0.0051805684, + -0.010470616, + -0.033114385, + 0.022926707, + 0.0014957365, + -0.008453147, + 0.0091739455, + -0.016069366, + 0.007215315, + 0.010842675, + -0.0056811892, + -0.015481257, + -0.006927508, + -0.015575008, + 0.011857523, + 0.025893204, + -0.004103373, + 0.014348754, + -4.035782E-4, + 0.04209842, + 0.014317174, + -0.01636884, + -0.0023460973, + 0.008141958, + -0.005817923, + 0.00232434, + 0.012847109, + -0.002479628, + 0.0025172748, + -0.011765338, + -0.004279134, + 0.0040889503, + 0.003451071, + 0.002481462, + 0.013355663, + 0.01435139, + -0.013009131, + -0.0073918984, + 0.015842272, + 0.0016534949, + 0.016459478, + 0.0033518614, + 0.013149619, + 0.05315053, + -0.013012881, + 0.009014501, + -0.0043425653, + 0.011587814, + 0.026208652, + 0.0010582823, + -0.00826944, + -0.026228005, + 0.018959967, + -0.0042953733, + 0.0042711617, + -0.02039196, + 0.014481432, + -0.0023426854, + -0.023249531, + -0.014690862, + -0.008432259, + 0.009013084, + -0.0065656784, + -0.0027060045, + 0.032595553, + 0.015672445, + -0.0023858878, + 0.012770094, + -0.004402688, + -0.0024395832, + -0.018239971, + -0.009474774, + 1.331463E-4, + 0.030880459, + -0.0036858537, + -0.024057116, + -0.001999155, + -0.0032334202, + -0.0018821155, + -7.069773E-5, + -0.00465636, + -0.010174204, + -0.018281944, + -0.017380627, + 0.015520468, + -0.015180151, + -0.014599219, + 0.01110813, + -0.010104253, + -0.016386487, + 0.017908819, + -0.049657326, + -0.029919496, + -0.022236206, + 0.0065511535, + 0.0038412213, + 0.012331399, + -0.0046543726, + -0.016863314, + 0.009615172, + -0.015497437, + 0.012084195, + -0.010071024, + -0.0032030132, + 9.249826E-4, + 0.0115786465, + 0.004614157, + -0.025729526, + 0.027484434, + -5.0304714E-4, + -0.00306218, + -0.017310755, + -0.008317917, + -0.0019965458, + 0.004579551, + -0.007214295, + -1.4171214E-5, + 0.022078982, + 0.011430928, + -0.0047685234, + -0.03602436, + 0.0033801298, + -0.009536006, + 0.025143027, + 0.021720955, + 0.022540063, + -0.015145354, + 0.0024948574, + 0.006710429, + -0.026407884, + 0.0023708853, + -0.012491743, + -0.026247932, + 0.024608178, + -1.8144626E-4, + 8.4865984E-4, + -0.008698071, + 0.024421373, + 0.0062571466, + -0.012202897, + -0.027762936, + 0.017178383, + -0.0035370255, + -0.0060285325, + -6.261899E-4, + -0.012442355, + 0.023621006, + 0.0050689783, + 0.00834508, + 0.01770005, + 0.009647032, + -0.016408054, + 0.012865887, + 0.0053636488, + 0.020363297, + -0.027124241, + -0.014810882, + 0.010260603, + 0.027825937, + 0.015819231, + -0.0042460947, + -0.026916916, + -0.015127105, + 0.020418555, + -0.010548331, + -0.008300411, + -0.029140428, + 0.0107475445, + -0.010581927, + 0.01238809, + 0.033524625, + 0.008351933, + -0.011059787, + 0.021668823, + 0.008730941, + -0.0060428567, + 0.014930026, + -6.595195E-4, + -0.012926574, + -0.003579669, + -0.011341296, + -0.013595685, + -0.010301806, + 0.0054472894, + -0.016155751, + 0.024164878, + -0.018459346, + -0.0052115535, + 0.0034739112, + -0.0064000846, + 0.005053213, + 0.0053691873, + -0.013340677, + 0.013638735, + 0.012677145, + -0.031870373, + 0.004823279, + 0.0064900937, + 0.0055248393, + 0.0036868467, + 0.0024192743, + 0.016444769, + -0.012276852, + -0.002577126, + -0.027031353, + 0.0062251124, + -0.0077628717, + -0.003016916, + 6.0640945E-4, + 0.0053960434, + 0.009342317, + 0.017384093, + -0.009816558, + -0.012966415, + -0.0034286224, + 0.0033281655, + 0.013329639, + 0.011615174, + -0.009972771, + 0.04232198, + -0.024491267, + 0.0018156961, + -0.0058720815, + 0.009635843, + 0.009388906, + 0.015643205, + 0.029684808, + 0.011884539, + -0.017834088, + 0.007785976, + -0.008918016, + 0.0020041382, + 0.006551378, + -0.017622232, + -0.007960494, + 0.0050369184, + 0.0104647195, + -0.013407004, + -0.006698601, + -0.006358238, + 0.012120106, + 0.003940577, + 0.018682597, + -0.0027705655, + -1.7301565E-4, + -0.004491639, + -0.01104928, + -0.0037226584, + 0.01803291, + -0.004007738, + 0.0024238334, + 0.03342013, + 0.005707292, + 0.0011863825, + -0.007939095, + 0.025439454, + 0.0051056338, + 0.033471823, + 0.008099707, + 0.01141836, + -0.018174903, + 0.02944318, + 0.0038296336, + 0.01702904, + 0.007465983, + 0.003459437, + -0.0037915823, + -3.3086684E-4, + -5.5419875E-4, + -0.025760869, + 0.020511368, + 0.0014639959, + 0.020535864, + 0.003965109, + 0.0364349, + 6.400014E-4, + -0.006135463, + -0.013274072, + -2.7953496E-4, + 0.004858134, + -0.0028292292, + -0.015387562, + 0.002860433, + 0.018501757, + 0.009331546, + 0.024353491, + 0.014556586, + 0.0074832705, + 0.01646764, + 0.008086112, + -0.006336433, + -0.012950321, + 0.016393885, + -0.011787104, + -0.015119988, + 0.007682716, + 0.00648771, + -0.007298278, + 7.387759E-5, + -0.01638299, + -0.04644629, + -0.023932854, + -0.007415835, + 0.0023930897, + 0.005850078, + 0.0044558006, + 0.011611956, + -0.0040623485, + 0.02198198, + 0.003967973, + -0.0069573913, + -0.0077033453, + 0.019097418, + -0.028653476, + 0.011672324, + -0.016228765, + -0.024396148, + 0.0027527246, + -0.03129173, + -0.03638692, + -0.01619857, + -0.018948758, + 0.023559919, + -0.024294466, + -0.0062719453, + 0.0039441288, + 0.018076662, + 0.013781652, + 7.6920487E-4, + 0.020991309, + 0.00745068, + -0.025573108, + -0.009201167, + -0.013159819, + -0.026251981, + -7.7159464E-4, + -0.028443458, + -0.037446782, + 0.0076862266, + 0.017075289, + -0.025962641, + 0.0030997945, + 0.002482585, + -0.0120741315, + 0.010552761, + 0.021058213, + 0.02267037, + 0.013980094, + 0.0151018305, + 0.015446313, + -0.002998849, + -0.0068640993, + 0.010255369, + 0.012146501, + 0.007917711, + 0.011491215, + -0.016883515, + 0.009451552, + -0.040468935, + -0.005891417, + 0.022589603, + -0.029707158, + -0.0046306415, + -0.002363233, + -0.013303207, + 0.010870599, + 0.008077497, + -0.011969351, + 0.0050350875, + 9.978546E-4, + -0.02060717, + -0.024800273, + 0.016434127, + 0.029570926, + 0.011555119, + 0.015534746, + 0.017449388, + 0.02350747, + -0.017725509, + -0.0056392793, + 0.024677843, + -0.0115799215, + -0.02454847, + -0.021955676, + -0.013690586, + 0.009683086, + -0.014648735, + -0.007982582, + 0.01104423, + -0.0029444443, + 0.018355554, + -6.787088E-4, + -0.017921023, + 0.03254203, + 0.0070104795, + -0.0028150382, + 0.016055519, + -0.026689658, + 0.008022156, + -0.007550513, + 0.029027222, + 0.002455698, + -0.005160363, + -0.020187732, + 0.003642157, + 0.00167206, + -0.019505804, + -0.004574482, + 0.001725509, + 0.02647031, + 4.7946922E-4, + 0.00904465, + 0.025236826, + 9.488734E-4, + 0.032809556, + -0.030255878, + 1.3702994E-4, + -0.00557087, + 0.015646992, + -0.023722995, + 0.037729416, + -0.0032575887, + -3.864641E-4, + 0.021713156, + 0.007158563, + -0.0023630057, + -0.01814736, + -0.007299394, + 0.025511311, + -0.024300411, + -7.602639E-4, + 0.010893117, + -0.0013567235, + 0.0099517265, + -0.011685356, + 0.018651491, + -0.02197721, + 0.02601494, + -0.011330456, + 0.007989538, + -0.008565382, + -0.016013173, + 0.009470873, + -0.009976803, + -0.019587977, + 0.018869422, + 0.00794032, + 0.015341486, + 0.013819579, + 0.0150627075, + -0.012833083, + -0.0017662755, + -0.024739685, + -0.010867811, + 0.020160193, + 0.014521753, + -0.006267215, + 0.02168822, + -0.010746382, + -3.3537E-4, + -0.006065765, + -0.02801344, + -0.012059872, + -0.01501912, + -0.01281921, + -0.006146379, + 0.0024688968, + 0.0012160362, + -0.014985715, + -0.019071402, + -0.005402896, + -5.569578E-4, + 0.009926943, + -0.0068639517, + -0.007870052, + 0.008364044, + 0.011203684, + 3.025916E-4, + 0.01334408, + 0.0028587002, + -0.00339074, + 0.03168158, + 0.011644118, + 0.020125417, + -0.004164627, + -0.0055591865, + 0.03613703, + 0.0076738866, + 0.0060606315, + -0.015318273, + 0.015737459, + -0.021305481, + 0.017902989, + 0.0014786895, + -0.0063451314, + 0.0034978394, + 0.004548951, + 0.008472381, + -0.013538835, + 0.0138186775, + 0.035835817, + 4.062825E-4, + -0.016752787, + 0.014356205, + -0.008163067, + -0.0027917696, + 0.0057443497, + 0.0011669785, + -0.011303419, + 0.007792645, + 0.0029143589, + -0.019175798, + 0.007462724, + 0.0063869096, + -0.0025474501, + 0.0089190705, + -0.015744902, + 0.013712316, + -0.018199643, + -0.009055254, + 7.624485E-4, + -0.0033846572, + 0.01727692, + 0.014671209, + -0.015736738, + -0.009059865, + -2.6065158E-4, + 0.009255842, + 0.016060673, + -0.005037394, + 0.0067402096, + 0.013626985, + 0.0068031857, + 0.004873754, + 0.0027911754, + -0.017000174, + 0.0032294104, + -0.0062960833, + 0.005647032, + 0.01076844, + 0.009289213, + 0.033626072, + -0.001627414, + 0.017815046, + 0.0038113769, + -0.0066954535, + -0.013557232, + -0.007334371, + -8.0451067E-4, + 0.0060514044, + -0.008714248, + -0.013230725, + 0.0046606916, + 0.001216195, + -0.031476922, + -0.012327044, + -0.019022146, + -0.011912412, + 0.020578036, + -0.0061668074, + -0.022622004, + 0.010384794, + -0.0072227935, + -0.029394163, + -0.02117548, + 0.013941236, + -0.0025115774, + -0.008566064, + 7.3700043E-4, + -0.002110388, + 7.7566924E-4, + -0.022505697, + 2.7749912E-4, + 0.006982889, + 0.021333192, + 0.0014385533, + 0.019877704, + -0.0015454096, + -0.015913032, + -0.016160686, + 0.0045026224, + 0.036828, + -0.022895226, + 0.01035608, + 0.0024909752, + 0.003984769, + -0.0065307724, + -0.032687917, + 0.019598095, + -0.016672017, + -0.0052736225, + 0.016871028, + 0.0069010924, + -1.3143198E-4, + -6.8455026E-4, + -0.003555265, + 0.009651334, + -0.019806378, + -0.019798579, + 0.007881605, + -0.007417382, + 0.012301902, + 0.026218891, + 0.0047480925, + -0.012589593, + 0.0068747383, + -0.015042795, + 0.0059518777, + 0.012584178, + 0.031731665, + 0.0055261864, + 0.0094580585, + -2.5303403E-4, + -0.0040145908, + 0.016473882, + 0.0022029513, + 0.004340663, + -0.0063949, + -0.0015270942, + -0.020263502, + -0.012558952, + -0.008889223, + -0.023824632, + -0.017460888, + 0.006465279, + -0.011523119, + -0.026705235, + 0.0051984456, + 0.012746833, + 0.0032246634, + -0.0108939605, + 0.004391555, + -0.0034008161, + -0.016190767, + -0.0064720744, + 6.5140426E-4, + 0.02104925, + 0.013072071, + 0.005804936, + 0.025674125, + -0.012034968, + -0.017779928, + 0.023209797, + -0.018990774, + 0.0035618828, + -0.0024320167, + 0.00808234, + -0.0015641379, + 0.0034715421, + -0.002609507, + -0.005276406, + 0.012062024, + -0.0025155467, + 0.026825458, + 0.022533257, + -0.008442865, + -1.2388494E-5, + 0.006770753, + -0.004235459, + -0.011588582, + -0.012240253, + -0.016765634, + 0.006437384, + -0.0105563495, + 0.031683993, + -0.009107216, + 0.009699086, + 0.010380866, + 0.0020994465, + 0.020238005, + 0.015365411, + 0.0066997083, + 0.0016091965, + 0.008911732, + -0.0047437116, + 0.005025524, + 2.4891327E-4, + -0.015064963, + -8.1622525E-4, + 0.021355048, + -0.0015734772, + 0.012875385, + -0.007814424, + -0.021579668, + -0.0015382428, + -0.0048257173, + -0.033163723, + 0.01795685, + -0.0047889184, + -0.0027086928, + -0.01218954, + 0.005612104, + 0.008142647, + -0.009214105, + 0.008208336, + 0.009369688, + 2.8511597E-4, + -0.0067736385, + 0.014883291, + 0.0060709836, + -0.006203671, + 0.009223251, + 0.01729052, + -0.0056511345, + 0.026902555, + 0.014482792, + 0.013067228, + -0.0036692622, + 0.007972218, + -0.025566122, + 0.011561059, + 0.018847352, + -0.005508639, + 0.028592847, + -0.007786725, + 0.015253686, + -0.011697663, + -0.033076495, + -0.009120472, + 0.0026716648, + 0.017903455, + -0.011158545, + 0.022501273, + 0.009423024, + 0.021706002, + 0.0035281195, + -0.010600507, + -0.04304875, + 0.010888894, + 5.3651945E-4, + -0.004046747, + 0.025112452, + -0.004404484, + -0.0019425342, + 0.013978461, + 0.020393025, + -0.007797246, + -0.010216918, + 0.025682084, + -0.031911448, + -0.0041906224, + 0.008855691, + -0.008802385, + 0.0026243282, + 0.033948053, + -0.0124083115, + -0.0019741636, + 0.0021655904, + 0.018839397, + 0.015607134, + 0.0049463008, + -0.024672162, + -9.606288E-4, + -0.0073382766, + 0.018694893, + -0.0038668292, + 0.0082413405, + -0.017894587, + -0.008660403, + 0.012245274, + -0.0036890903, + -0.010816778, + -0.005285594, + -0.0061397357, + -0.030327057, + 0.023297327, + 0.0039498582, + 0.021893807, + -0.009143779, + -0.008990721, + 0.022879912, + 0.025321469, + -0.0048656724, + -0.0059269406, + -0.0024826664, + -0.012398711, + 0.0016109011, + 0.042245552, + -0.0032907405, + 0.01619818, + -0.01810396, + 0.006867901, + -0.0018700728, + 0.0044244854, + -0.0017600674, + 0.007663733, + -0.01372239, + -0.0043417686, + -0.0034105855, + 2.1080334E-4, + 0.0038848633, + -0.0050528813, + -0.010274628, + 0.0013865009, + -0.011693842, + -0.01847361, + -0.011080434, + -0.004765964, + -0.012452498, + 0.009576022, + -0.013113878, + -0.022350304, + 0.015558845, + -0.0163608, + -0.011227893, + 0.012498128, + -0.014159715, + 0.014130041, + -0.028263213, + 0.01489994, + 0.009308635, + 0.017228141, + -0.0012801522, + -0.006344078, + 0.01002162, + -0.028024076, + 0.018396664, + 0.0014713943, + 0.014536409, + -0.027764387, + -1.2889915E-4, + -0.0076218187, + 0.014067059, + 0.01071894, + 0.022520926, + -0.0059307357, + 0.012490663, + -0.02317693, + 8.87018E-4, + 0.015477666, + -0.01563274, + 0.0059504826, + 0.0041023106, + 0.013986788, + -0.0061545135, + 0.013179078, + -0.0067099086, + 0.0063885446, + -6.208297E-4, + -0.012691531, + 0.0016144136, + -0.0042395764, + 0.0037874633, + 0.006060728, + 0.01209847, + 0.006492289, + 0.0024807977, + 0.01606803, + 0.0080786655, + -0.00513233, + 0.0014356986, + 0.005192308, + 0.015634937, + 0.0134344315, + 0.008281274, + -0.012191304, + -0.00851794, + -0.0029662733, + 0.006171425, + -0.001189898, + 0.014112464, + 0.010216909, + -0.01925093, + -0.026859544, + 0.013830445, + -0.002144425, + 0.0024540375, + 0.009893996, + -0.010318462, + 0.008016383, + -0.0067710197, + 0.024423372, + 0.025390632, + -0.030173922, + -0.0084742345, + 0.03839861, + -0.015247111, + 0.016406897, + -0.020480592, + -6.707941E-4, + 0.009951238, + 0.0066076764, + 0.021051234, + -0.010973998, + -0.007820565, + -0.022089764, + -0.014831311, + -0.027649282, + -0.012957596, + -0.03353699, + 7.9885335E-4, + -9.948874E-4, + -0.0073802173, + 0.018405281, + -0.008981923, + 0.0027743282, + 0.020110711, + -6.971306E-4, + -0.018942663, + 0.013370001, + -0.009833091, + -0.021058775, + -0.0011451977, + 0.0032063061, + -9.4729435E-4, + -0.004926211, + 0.018291589, + 0.018736614, + 0.00315154, + 0.020177864, + -0.009623101, + -0.005795607, + 8.5804187E-4, + 0.019421065, + 0.0054214424, + 0.014311624, + -0.01816019, + -1.4249285E-4, + 0.02998918, + -0.032899834, + 0.0075474, + 0.0052743773, + 0.011893068, + -0.019174382, + -0.02060386, + 0.010555794, + 0.03370423, + -5.336336E-5, + 0.018236874, + -0.009438301, + -0.0026738516, + -0.010538525, + -0.007582542, + -0.02225749, + 0.0080804415, + -0.0046310765, + -0.017930733, + 0.009357599, + 0.001460828, + -0.019629022, + -0.013485173, + -0.016829254, + 0.010879771, + -0.014116685, + -0.010572829, + 0.0010915534, + -0.0104796495, + -0.008491527, + 0.023840314, + -0.03630707, + 0.008446513, + -0.0027404518, + 0.014276042, + -0.002643667, + -0.004880636, + -0.0015455935, + -0.017154904, + 0.015134821, + -0.001751705, + 0.026325807, + -4.4435845E-5, + 0.0012615381, + -0.0100358855, + -0.010716517, + 0.02418822, + -0.009209159, + 0.0140092, + -0.00822469, + 0.007517843, + 0.00974871, + -0.023863085, + 0.01718347, + 0.001206369, + -0.011806814, + 0.0032086237, + -0.0049296846, + 0.03199246, + 0.016330076, + -0.031178556, + 0.036331333, + 0.021780027, + -0.008075269, + -6.2759285E-4, + -0.0014200542, + 0.03595446, + 0.01377488, + 0.00636089, + -0.008172897, + -0.0026207638, + -0.015127183, + 0.0058914414, + -0.025354693, + -0.029671595, + 0.01634327, + 0.020959035, + -0.005985959, + 0.010579913, + -0.01120132, + 0.0049556387, + -0.0076287747, + -0.0014771126, + -0.020859465, + 0.01589306, + -0.019423045, + 0.021091247, + -4.157522E-4, + 0.035938676, + -1.5380382E-4, + -0.0030019775, + 0.019145066, + 0.007712665, + 2.4897422E-4, + -0.021893768, + -0.017403377, + 6.845601E-5, + -0.028486872, + -0.020802492, + 0.016987639, + 0.0068506096, + 0.0031950313, + 0.011411289, + -0.006654729, + -0.009872093, + -0.013349773, + 0.02805665, + -0.004631202, + 0.0051528555, + 0.014305336, + 0.006526624, + -0.007934913, + -0.019063113, + -0.0024514636, + 7.806923E-4, + 0.020853106, + -5.681655E-4, + -0.02096244, + 0.02570172, + 0.0034857572, + 0.012731991, + -0.012150071, + 0.021764413, + -0.012071422, + 0.003761598, + -0.0013217293, + -0.02104657, + -0.017001603, + -0.030302105, + -0.008848747, + 0.03903722, + -0.011553021, + 6.1827654E-4, + -0.00871446, + 0.01002682, + 0.0063236505, + 3.958552E-4, + 0.0026920806, + -0.006459507, + 9.529132E-4, + 0.008787172, + -0.009960028, + -0.0018961221, + -0.005573291, + 0.027026167, + -0.026620679, + -0.007857852, + -0.0067552654, + 0.028353594, + 0.006888058, + 0.0084254965, + 0.0104626175, + -0.00891786, + -0.006963279, + -0.008166733, + -0.009409244, + -0.024798153, + 0.018990714, + -0.0044251075, + -0.012844766, + 0.008355623, + -0.014561561, + 0.009752615, + 0.011498176, + 0.018430742, + 0.023558125, + -0.0465118, + -0.009811029, + 0.019673271, + -0.017104007, + -0.007492646, + -0.008245425, + 0.019496059, + 0.008641352, + 0.0014382557, + 0.0055413605, + 0.010083964, + -0.024851697, + -0.0012490783, + -0.002952069, + -0.0075746784, + -5.1853625E-4, + 0.011303251, + -0.0121185, + 0.037537776, + 0.011953388, + -0.0022421854, + 0.021516897, + 0.0077029094, + -0.010928786, + 0.009230332, + 0.00935719, + -0.0013301601, + -0.012756386, + 0.012483347, + 0.022730466, + -0.0031240033, + -0.012777892, + 0.014507192, + -0.009367619, + -0.012091209, + -0.0044851666, + -0.013908839, + 0.003661581, + 0.009866023, + -0.01763069, + -0.0037934564, + -0.022898845, + -0.003325048, + 0.017699156, + 0.0026213082, + 0.018270478, + 0.0043777796, + 5.0749496E-4, + -0.025347264, + 0.0012774603, + 0.011876989, + -0.012122907, + -0.0152447885, + -0.005678584, + 8.685953E-4, + -0.011045152, + 0.011926489, + 0.006952847, + -0.016139682, + -0.0037769277, + 0.0012966405, + 0.005074703, + 0.0065883487, + 0.029649688, + -0.0133975465, + 0.0069366056, + 0.0070234737, + 0.003021288, + 0.010542149, + -0.012040047, + 0.0032221987, + 0.024904868, + -0.012956263, + 3.4125752E-4, + -0.010357163, + -0.025385544, + 0.021513192, + 0.0022653416, + 0.0035814007, + -0.011516311, + -0.013505301, + -0.013280806, + -0.0015970452, + 0.01959586, + -0.029432729, + -4.9459364E-4, + -0.014664421, + -0.0074227694, + 0.00422177, + 0.011007456, + 0.0045827045, + 6.840892E-4, + 0.006465241, + 0.0043552537, + 0.0047350302, + -0.0055222576, + 0.012539234, + -0.0023820503, + 0.007374522, + 0.014965923, + -0.024837296, + -0.032478113, + 0.017028047, + 0.012613496, + -0.015599701, + -0.014759084, + 0.0023555916, + -0.0057374197, + -0.012548146, + 0.010440033, + -0.0032866886, + 0.046633977, + 0.029618347, + -0.0038359852, + -0.012204471, + 6.5706624E-4, + -0.006508588, + -0.0017346503, + 0.0109184, + -0.0082953125, + 0.007587244, + 0.0070703514, + -0.034227975, + 0.004643815, + 0.023276942, + 0.013379649, + 0.0038539493, + 0.0025274751, + 0.0057196664, + 0.014200643, + -0.010370812, + -0.011557863, + -0.011943566, + -1.39357E-4, + -0.012820989, + -0.019023767, + -0.0065844865, + 2.4917067E-4, + 0.01818226, + 0.0018728435, + 0.009206976, + 0.004415325, + -5.4037577E-4, + 0.014137471, + -0.011667685, + 0.009977017, + -0.01143491, + -0.007334922, + -0.03555488, + -0.0020307968, + 0.034435894, + 0.009163802, + -0.03793933, + -0.00513443, + -0.014399991, + 0.02545328, + -1.10411E-4, + -0.0064924634, + -0.013418007, + -0.0026187713, + 0.02071937, + -0.010968396, + 7.4624683E-4, + -0.0110904295, + 0.020178534, + -4.822702E-5, + 0.0055779275, + 0.0063406, + 0.01909469, + -0.0017218386, + -0.0145528, + 0.006076591, + 0.018874126, + 0.011226627, + 0.0054131187, + -0.010190287, + 0.014010969, + 0.017823892, + -0.006396722, + -0.0077529615, + 0.02020961, + 0.020835372, + -0.009061274, + -0.019319784, + -0.0018087398, + -0.019312033, + -0.0067529213, + -0.0078010564, + -0.010189751, + -0.011050041, + 0.009089687, + 0.032267157, + -0.015841806, + -0.012473699, + -6.4618845E-4, + -0.031577602, + -0.023788061, + -0.0013047844, + 0.018302511, + 0.006011143, + 0.011219746, + 0.016254073, + 0.012897446, + -0.01429311, + -0.009353608, + -0.011309122, + -0.029081056, + -0.02053128, + -0.026225347, + -3.1567898E-4, + 0.023690771, + -8.566268E-4, + 0.003442097, + 0.0128716165, + 6.758587E-4, + -0.0030686664, + -0.013676, + -0.0035434137, + 0.0020015624, + 0.0071707186, + 0.015272306, + 0.0030064462, + 0.009276603, + -0.012290832, + 0.021101914, + 0.007109656, + -0.024066102, + 0.029976856, + -8.2276977E-4, + -0.0044996007, + 0.016758416, + 0.020638775, + 0.006369034, + -0.024702802, + -0.03332966, + -0.011424496, + -0.0023740141, + 0.008863856, + 0.016586946, + 0.010679865, + -0.0074461508, + 2.1419971E-4, + 0.018644294, + 0.003433569, + -0.017973462, + -0.01117981, + 0.012782537, + 0.015070088, + -0.03779893, + 0.0011758332, + 0.005957988, + 0.0012948221, + -0.020296663, + -0.019537747, + -0.010595958, + 0.009314778, + -0.015849067, + 0.027910458, + 0.012529668, + 0.011904535, + 0.0054721045, + 0.0060542584, + -0.024765568, + 0.008279684, + -0.006396243, + -0.006732658, + 0.0029472988, + -0.007656795, + 0.015405396, + -0.018343918, + 0.033449493, + 8.8094144E-5, + -0.005811528, + -0.0019666739, + -0.0016850038, + -0.0055988478, + -0.013950938, + 0.0077951294, + -0.002670631, + 0.009254459, + 0.0024339983, + -0.013542809, + -0.008205716, + -0.007118794, + 0.0013143298, + -0.0059114103, + -0.006503605, + -0.011392582, + -0.014669375, + -0.03062956, + 0.005159706, + -0.0042404463, + 0.009614282, + -0.008072651, + 0.026457513, + -0.012320112, + -0.017738068, + -0.0096762525, + -0.0013749585, + -0.006134747, + 0.012473627, + -8.080996E-4, + -0.028687336, + 0.01714117, + -0.0030805746, + 0.01677601, + -0.010137907, + 0.0037919402, + -0.008657396, + -0.0011459222, + 0.029683085, + 0.008930321, + -0.012253997, + 0.008252156, + 0.013536715, + -0.0038705159, + -0.038820174, + -0.014703116, + -0.021634955, + 0.006493655, + 0.006946246, + -0.016336352, + -0.0121419355, + 0.017206572, + 0.019520445, + 0.0070204698, + 0.013408939, + -0.016213842, + 0.010961372, + -0.02033287, + 0.010150191, + 0.028427105, + -0.00618034, + 0.0015152757, + 0.021978201, + 0.0046510226, + 0.019393446, + -0.0035441108, + 0.01253619, + 0.0039821095, + -0.010377997, + 0.0069302307, + 3.1227665E-4, + 0.029402206, + 0.03134764, + 0.005737418, + -0.008043801, + 0.0046024118, + -0.01001647, + 4.770206E-4, + -0.00481523, + 0.0057251975, + 0.014753846, + 0.02667639, + -0.008448391, + 0.001348381, + 0.004085865, + 0.013481058, + 0.008629719, + 0.0063615874, + -0.0046583815, + 0.0042073117, + -0.032792136, + -0.0022292202, + 0.006463684, + 0.0041305083, + 0.020395026, + 0.019688874, + 0.014414755, + 0.026938094, + 0.0020759618, + 0.0063134255, + -0.012735524, + 0.019375227, + -0.013783877, + -0.0016974306, + -0.0142866615, + 0.0034988336, + -0.006325335, + 0.0014008576, + -0.046298623, + 0.011560466, + 0.021441864, + 0.017786268, + 0.024204196, + -0.007946154, + -0.0027776319, + 0.013451959, + -0.016088234, + -0.0107004475, + 0.0018804312, + 0.00938083, + -0.01042475, + 0.0038134272, + -0.026840601, + 0.026053904, + -0.016550688, + 0.027000884, + -0.011689143, + 0.052238666, + -0.008464622, + 0.007731357, + -0.004279884, + -0.005436517, + 0.021343239, + 0.0013181171, + 0.023429757, + -0.0036245745, + -0.021918781, + 0.0040773004, + 0.006476097, + 0.0062379497, + 0.010215971, + -0.0044548474, + -0.009850161, + 0.0078086257, + 0.021500036, + 0.0037732248, + 0.023573255, + -0.0076284516, + -0.00905862, + 4.9405516E-4, + -0.005614125, + -0.014857097, + 9.00068E-4, + 0.00995867, + 0.0058719683, + 0.024327585, + -0.008109327, + 0.0049044886, + 0.0019031493, + 0.014567097, + 0.01940105, + -0.021711718, + 0.004383039, + 1.6405826E-4, + -0.02355597, + -0.009609201, + 0.014335799, + -0.015420014, + -0.00874985, + -0.03247518, + 0.010899683, + -0.006426702, + -0.0065513034, + -0.015690759, + 0.0023372225, + 0.0018777235, + -6.707475E-4, + 0.009092458, + 0.051250286, + -0.012128254, + -0.009851906, + -0.0120955575, + -0.016581023, + -0.0059103845, + 0.008348987, + 0.03688239, + 0.0057052877, + 0.025693897, + 0.01566507, + 0.014061614, + -0.027245304, + 0.0068159145, + 0.01744857, + -0.027853668, + 0.026764978, + 0.014253472, + 0.02142408, + 0.03164271, + 0.0037319323, + -0.0062025106, + 0.0064774775, + -0.018527316, + -0.008328539, + -0.0059887357, + 5.5811316E-4, + 0.0060298736, + -7.38656E-4, + -0.022629581, + 0.0029335474, + 0.0020024292, + 0.004911483, + 0.020786293, + 0.035554398, + 0.0029559636, + -0.044583485, + 0.0144308405, + -0.008094409, + 0.026224244, + 0.0066743344, + 0.0024696435, + 0.0016813833, + -0.01233601, + 0.0110394955, + 0.009033756, + -0.010791843, + -0.009726196, + -0.020194694, + 0.017092198, + -0.0091316225, + -0.010283563, + 0.024667881, + 0.007850042, + 0.0065655485, + 0.023292491, + -0.010364787, + 0.010295293, + -0.03459504, + 0.03596938, + 0.024967434, + 0.0068199807, + -7.1901115E-5, + -0.0062270737, + -0.010531719, + 0.01441099, + 0.010183234, + -0.019883921, + 0.006290114, + -0.008400732, + 0.013757252, + -0.0063479235, + -0.02146508, + -0.0076597696, + -0.0031070716, + -0.0013407213, + 0.01563884, + -0.0031822054, + -0.0120365415, + -0.009484017, + -5.783157E-4, + -0.014541841, + -0.017101014, + -0.004092034, + -0.007154134, + -0.012803842, + 0.0020521858, + -0.022362418, + 0.0152202975, + -0.015920125, + 0.018462723, + -0.015188699, + -0.00986157, + 0.021317203, + 0.028094782, + 0.024271257, + 0.019563744, + 0.00969464, + -0.003919964, + -0.009943018, + 0.0124110235, + 0.0156421, + 0.003942863, + -0.013681924, + 9.0360345E-4, + -0.009009867, + 0.034110423, + -0.007954446, + -0.004577759, + 0.0047192993, + -0.012808048, + 0.004422802, + 0.005350975, + -0.015079806, + 0.027307676, + 0.031696465, + -0.0054911748, + 0.007843492, + -0.011927026, + 9.142365E-4, + -0.023115538, + -0.024541128, + 0.0022809063, + -0.022165077, + -0.014071015, + 0.036669023, + 0.0073906737, + 0.0074474188, + 0.0069035585, + 0.0110395355, + 0.008154122, + 0.002384102, + -9.249311E-4, + 0.011396582, + 0.005752013, + -0.01586889, + 0.026635872, + 0.03407209, + -0.011005433, + 0.033201713, + 0.009110898, + 0.006391697, + 0.020224176, + 0.00834491, + -0.010708525, + 0.015246546, + -0.0068325843, + 0.020377796, + 0.010265284, + 0.018111033, + -0.017728714, + -0.0064506265, + 3.784799E-4, + -0.026273286, + 0.01685871, + -0.01784479, + 0.012348193, + -0.0024870439, + 0.0075592855, + 0.015840922, + 0.0019403853, + 0.021672487, + 0.0012294183, + -0.018519687, + -0.010452375, + 0.010245446, + 0.0024071455, + 0.00812874, + -0.039613657, + 0.0059434674, + 0.009012252, + 0.006942509, + -0.008787979, + 0.0055768224, + -0.0143299, + -0.011381048, + -0.031016937, + -0.014097727, + 0.002853643, + -0.0011414052, + 0.014900009, + 0.027258776, + 0.0070347846, + -0.01678607, + 0.012589433, + 0.0029581648, + 0.015558888, + 0.014929288, + 0.0203019, + 0.0035491819, + 0.03753975, + 0.003825305, + 0.023009306, + 0.019647649, + 0.031627364, + 0.011153855, + -0.0055625453, + -0.0047480953, + 0.011460362, + 0.01868629, + -0.007641615, + 0.01930373, + -0.0015486086, + -0.030313112, + -0.02102482, + -0.010886128, + -0.012298097, + -0.0025115865, + 0.013485825, + -0.020579886, + 0.012307508, + -0.015103652, + 0.026315857, + -0.017918937, + 0.0024737788, + -0.011702735, + 0.027808152, + 0.004402317, + -0.0071726576, + 0.0019608983, + 0.013232744, + -0.011200894, + -0.0293697, + -0.010208639, + -0.011203876, + 0.01328799, + -0.015512009, + -0.022935057, + 0.010973797, + 0.0011965419, + -0.0013615161, + 0.025329938, + -0.004910093, + -0.0019910038, + 0.0032372628, + -1.0492148E-4, + 0.03147703, + 0.0057689818, + -0.006751504, + 0.01796263, + 0.013801036, + 0.0028578322, + -0.03343595, + -0.009889527, + -0.017554296, + 0.0039430014, + -0.015840229, + 0.010416972, + 0.015048786, + -0.0077176914, + 0.019498901, + -0.03208105, + -0.011847535, + 0.00848147, + -0.0021360952, + -0.01569481, + -0.018334476, + -0.0021697215, + 0.007667362, + -0.030754037, + -0.02208835, + -0.025600074, + -0.004797654, + -0.0078079714, + 0.0072826226, + 0.009523341, + -0.020816589, + 0.014153003, + -0.0024633384, + 0.023363004, + -0.009390346, + -0.0110019855, + 0.0034743992, + -4.60724E-5, + -0.01763691, + 0.0020612043, + -0.011778512, + -0.0086822575, + -0.0023139738, + -0.012135116, + 0.0029077174, + -0.009390363, + -0.014384288, + -0.012459829, + -1.8791271E-4, + -0.0065288926, + -0.017566614, + 0.0041594915, + 0.01295777, + 0.015272984, + 0.012965067, + -0.026507916, + -0.0011576588, + -0.010518405, + -0.0037210707, + 0.009794575, + -0.03400427, + 0.010212732, + 0.022065232, + -0.015376004, + -0.01722152, + -0.009645505, + 0.0026265793, + -0.0041790036, + -0.017942127, + -0.0036295485, + 0.017826889, + 0.0206796, + -0.02608847, + 0.006722912, + 0.04443186, + -0.03589885, + 0.02422012, + -8.456961E-4, + -0.013752088, + 0.008009532, + -0.03212848, + -0.028225025, + -0.008338229, + -0.010938923, + 0.03470981, + -0.017895281, + -0.006388788, + 0.008194277, + 0.030569714, + -0.009361873, + -0.013569182, + -0.0034914606, + 0.008198744, + 0.010184335, + 0.012781181, + 0.0025277918, + -0.016496511, + 0.013446008, + -0.04057835, + 0.03468138, + 0.018398982, + 0.007571279, + -0.028023822, + -0.0041958964, + -0.047135748, + -0.0024283186, + -0.0040075453, + -0.0076028802, + 0.026792726, + -0.04058892, + 0.0072405087, + 0.019356031, + -0.035123028, + -0.009245427, + 0.01988652, + -0.0012608694, + 0.019413259, + 0.0053305333, + 0.012180184, + -0.002543132, + -6.1596086E-4, + 0.010731753, + 0.0201588, + -0.007431833, + 0.013863728, + 7.730146E-4, + 0.025769228, + -0.00947221, + -5.637122E-4, + -0.008248535, + 0.0059466264, + -0.013859262, + 0.009440742, + 0.024077246, + -0.012045496, + 0.004802356, + -0.0243427, + 0.023100525, + 0.021320248, + -0.012009621, + 0.01703571, + -0.0022041798, + 0.012676116, + -0.0190052, + -0.005463196, + -0.0076640877, + -0.0058656973, + -0.0011058718, + 0.02415438, + 0.015592813, + -0.007924531, + 0.0035641713, + -0.015285803, + 0.010808653, + 0.006917313, + 0.011834784, + -0.0055040387, + 0.022532977, + -0.009746817, + -0.0069231438, + -0.00738038, + 0.0014276821, + -0.029994277, + 1.2898196E-4, + 0.017656574, + -0.0021193272, + -0.014990016, + 0.014944988, + -0.013697204, + -0.023571586, + -0.021810753, + 0.018867312, + 0.005015685, + -2.561575E-4, + -0.011487332, + 0.0040078424, + 0.016509365, + 0.013752668, + 0.008881176, + 0.019780278, + 0.0029306503, + 0.013173287, + -0.02016654, + 0.030023098, + -0.013705817, + 1.7425111E-4, + 0.008814999, + -0.002619289, + -0.0031222661, + 0.021058276, + -0.0010037286, + -0.01881394, + -0.015769621, + 0.011314672, + 0.018115457, + -0.010023424, + 0.016655128, + -0.0122696655, + 0.0015398582, + 4.993597E-4, + 0.008262961, + 0.0019339155, + -0.0077204457, + -0.016291948, + -0.0076072305, + -0.009204541, + -0.0287855, + 0.003255987, + 0.023593657, + -0.0019646203, + 0.012151605, + -0.03214498, + 0.023989657, + 0.0015456894, + 0.005040398, + -0.0021681497, + 0.01740226, + -0.009918521, + -0.01534507, + -0.010690717, + -0.0065668225, + 0.012475167, + -0.0049975524, + -0.028748615, + 0.014222741, + -0.0058869896, + -0.0169527, + -0.011725442, + 0.031262625, + 0.014900434, + -0.0132498825, + -0.0145647405, + 0.012899401, + -0.0028727767, + -0.017240336, + -0.0027188621, + -0.0065336474, + -0.008828843, + 0.009042068, + 0.023092506, + 0.0022197845, + -0.0096456725, + -0.0022004112, + -6.890736E-5, + -0.024489209, + 0.011995601, + -0.004084551, + 0.0029810325, + -0.02079594, + -0.0054572048, + -0.007687128, + 0.0016689046, + -0.0047306553, + 0.018461455, + 0.0035951538, + -0.014972335, + 0.0024692076, + 0.016969096, + -0.0056351675, + 0.0037416187, + 0.0018964069, + 0.004621434, + 0.0081294, + 0.014929811, + 0.0025002423, + -0.026102696, + -0.013831877, + -0.0032643843, + -0.016496195, + -0.01457185, + 0.007858751, + 0.0037360804, + 0.016526124, + 0.0016336213, + 0.007921466, + -0.0081913015, + -0.008524715, + -0.018798092, + 0.028180625, + 0.0154427765, + 0.0061526797, + -0.0058125947, + -0.016119983, + 0.0063652913, + 0.023903647, + -0.0010885483, + 0.021785995, + -0.0014374406, + -0.0016724797, + -0.005032074, + 0.019677749, + 0.018313263, + 0.010644169, + 0.0101104, + -0.005497044, + 0.0052890624, + 0.0044164048, + -0.0064647156, + 0.018083844, + 0.0048487717, + 0.030605152, + -0.01616317, + 0.031508505, + -0.017223023, + 0.006268213, + -0.0079881735, + -0.0054232758, + 0.0076423474, + -0.0116951605, + 0.011941525, + 0.02492765, + 0.008670206, + 6.372929E-4, + -0.01284044, + -0.01110944, + -0.010989862, + -0.012497305, + 0.025807345, + 0.011967928, + -0.006678535, + -0.020888925, + -0.004683031, + -0.0123096695, + -8.3194696E-4, + 0.0022843194, + -0.0134268915, + -0.006791676, + -0.003590011, + -0.005416992, + 6.854426E-4, + -0.028636197, + -0.013862124, + 0.004708693, + 0.025714455, + -0.021009535, + -0.017243326, + -0.018393096, + 9.0086815E-4, + -0.01255659, + 0.008566421, + 0.0012395497, + -0.010132803, + 0.002958061, + 0.007980397, + 0.013501529, + 0.0020433655, + -0.014754877, + 0.040048555, + 0.014894101, + -0.013899038, + 0.009660452, + -0.006841507, + 0.0025372955, + 0.020161819, + 0.012854637, + 0.025381286, + 0.0015471571, + -0.012654771, + 4.573752E-5, + 0.0016107545, + 0.0038943496, + -0.019723607, + 0.01277062, + 0.033371013, + -0.0067901276, + 0.030552829, + -0.0048774327, + -0.017912868, + -0.013801201, + 0.0063786046, + 0.021741398, + 0.0059381793, + 0.0018573666, + 0.0070447177, + 0.0016932611, + -0.0047162287, + -0.02839634, + -0.007741145, + 0.037083745, + -0.017021228, + -0.012514748, + -0.007198556, + -0.009511872, + -0.0015323727, + 0.027921239, + 0.0023894748, + 0.0053485627, + -0.009674665, + 0.0028741634, + -0.025012, + -0.017627545, + 8.9890807E-4, + 0.016214844, + -0.015824998, + 0.0035248369, + 0.005804035, + 0.012785609, + -0.0059806434, + 8.420411E-4, + 0.011445564, + 0.012229506, + -0.012984385, + -0.015014734, + 0.014767534, + 0.014124936, + -0.019772852, + -0.0028464315, + -0.038009394, + -0.01741842, + 0.001968175, + 0.01675548, + -0.0128941005, + 0.002262606, + -0.0019853236, + -9.077132E-4, + -0.004796376, + -0.009966085, + -0.01299016, + -0.012575, + 0.0047227256, + -0.010963835, + -0.0021498075, + 0.007829457, + 0.012259524, + -0.004357404, + -0.019107291, + -0.012376468, + 0.017294278, + -0.007620958, + -0.024730597, + 0.0026151706, + -0.006566034, + -0.007018823, + 0.023766074, + -0.021047005, + 0.015151227, + -0.0025532655, + -0.018409397, + -0.03435044, + -0.006003348, + 0.0044068866, + 0.0032600695, + -0.016269539, + 0.005948801, + -0.018522458, + 0.026821392, + -0.0062877242, + 0.011632342, + -0.0038011002, + 0.022768134, + -0.019492865, + -0.017531298, + 0.015061582, + 0.032114454, + 0.0014475546, + 0.00466715, + -9.695439E-4, + -0.005648591, + 0.012194203, + 0.039103784, + -7.5828127E-4, + 3.9056622E-4, + -0.007983839, + -0.0075154784, + -0.006149893, + 0.009195735, + -0.009205211, + 0.023963844, + -0.018103953, + -0.0063206567, + 0.0069131535, + -0.0012345462, + -0.0053045205, + -0.0130680455, + 0.02499411, + -0.0073603494, + -0.015204513, + -0.03157884, + -0.013545962, + 0.0038344166, + 0.009893762, + -0.011735781, + -7.289701E-4, + -0.010488282, + 0.0286562, + -0.032135945, + 0.010150674, + -0.02776206, + -0.015510576, + 0.0019874696, + -0.007959929, + -0.0134067265, + 0.0128674805, + -0.013076495, + 0.009884221, + 0.01704488, + -0.027178966, + 0.011056457, + -0.024967274, + 0.00554082, + 0.011551, + 0.012539753, + -0.0067743193, + 0.0058262576, + -0.024190957, + 0.008499445, + 0.009157431, + -0.015326837, + -0.024054524, + -1.6724215E-4, + 0.0046856226, + 0.011934534, + 0.013828038, + 0.012984744, + 0.014950573, + -0.019752424, + 2.4191698E-4, + 0.008996633, + 0.003980411, + -0.012480607, + -0.005567672, + -0.040392168, + -0.021128574, + 0.009515005, + -0.0045719948, + 0.013016667, + 0.00977543, + -0.0011031143, + 0.040466346, + -0.0067817955, + -0.0109586315, + 0.0024625717, + -0.011892602, + 0.018356098, + -0.0033079754, + -0.0018661534, + -0.0015378273, + -0.02036672, + -0.028037257, + 0.0020928518, + 0.00312593, + 0.005072407, + 0.01496173, + -0.01849185, + 0.0029368303, + 0.012219845, + 0.021049244, + -0.0405715, + -0.010973956, + 0.0073365755, + -9.697009E-4, + -0.022353988, + 0.0061977566, + 0.0066093095, + 0.012569023, + 0.016487142, + -0.007337151, + -0.01735489, + 0.007013091, + -0.02774975, + -0.004216519, + -6.6796225E-4, + 0.0030643062, + 0.030769996, + 0.026808735, + 0.0066645164, + -0.015337873, + 0.015258268, + -0.0071668266, + 0.019351201, + -0.016162079, + 0.021664556, + -0.0034521238, + 0.024024548, + -0.026514072, + -0.008805538, + 0.0034164123, + -0.0043045427, + 0.0022740443, + -0.007980117, + 0.016744599, + 0.021260347, + 0.0076351003, + -0.020014923, + 0.016195135, + 0.023449766, + 0.008670932, + 0.040073123, + 0.028104853, + -0.014110369, + -0.023184517, + -0.008495511, + 0.016527511, + -0.0014931308, + -0.008775661, + -0.012298721, + -0.027637612, + -0.0014871564, + -0.0076858676, + -0.014033918, + 0.0033223361, + 0.037941877, + -0.0071857637, + 0.009942073, + 0.00653673, + 0.021850042, + -0.009191516, + -0.031015938, + 0.018104332, + -0.012780988, + -0.013233072, + -0.009282468, + 0.0066942736, + 0.0058019767, + 0.007751394, + 0.00466217, + 0.0061560743, + 0.0044313017, + 0.013338664, + 0.021427786, + 0.007322971, + -0.008298348, + -0.019910218, + -0.002993597, + -0.011855757, + 0.0010957633, + -0.038322378, + 0.0036433453, + 0.009090653, + 6.5169035E-5, + -0.01618134, + 0.007912665, + 0.02875049, + 0.008827887, + 0.031304814, + 3.6149618E-4, + 0.014166893, + -0.005544258, + -0.0020220536, + 0.014163384, + -0.014526251, + -0.035454396, + 0.0010552556, + 0.005608159, + 0.018486535, + -0.0140319625, + 5.093793E-4, + 0.011565653, + 0.024095938, + 0.018418662, + -0.0057534287, + 0.007438531, + 0.011891105, + -0.0022766597, + -0.012620865, + 0.02023628, + 0.00856101, + -0.014096947, + -0.019494416, + 0.016749892, + -0.013830829, + -0.0053571574, + -0.028712003, + 0.0031188105, + 0.0036946672, + -0.010550561, + 7.5182325E-6, + -0.02178597, + 0.007906635, + -0.0015120959, + -0.013169608, + 0.0076233177, + -0.024570668, + 0.016162625, + 0.00329842, + -0.0075066146, + 0.0068442933, + 0.012073112, + -9.568315E-5, + -0.0066070566, + -0.022291904, + 0.016447928, + 0.004095603, + 0.0021690794, + 0.013500903, + 0.020028105, + -0.020478113, + -0.0066967746, + 0.0035881791, + 0.014548788, + -0.016493194, + -0.011223297, + 0.011883931, + -0.014354339, + 8.218422E-4, + -0.009556397, + -5.246356E-4, + -4.2043222E-4, + 0.0062245913, + -0.042181097, + -0.012040365, + 0.045853503, + 0.010993837, + 0.012357956, + -0.015997443, + 0.0026890705, + 0.01722937, + -0.0189515, + -0.00586163, + -0.017639356, + -0.0116191255, + 0.016854718, + 0.00395407, + -0.014293042, + -0.00425585, + 0.0054670777, + -0.0042619556, + 0.018251346, + 0.0050025405, + 0.026094668, + -0.016063426, + 0.017531212, + 0.00639508, + 0.0037583548, + 0.025612928, + 0.013790194, + -0.012153341, + -0.007952572, + 0.0016373127, + -0.012739998, + -0.0050271573, + -0.002022045, + -0.019630969, + 0.016043965, + 0.01228992, + 0.010823006, + 0.011362577, + 0.019340489, + 0.0047356924, + -6.0952135E-4, + 0.0018595067, + -0.017743114, + -0.021307519, + -0.00707245, + 0.014298611, + -0.011258023, + -0.0112970015, + 0.020669831, + 0.01374768, + -3.5493117E-4, + -0.00555409, + 0.022230303, + 0.010030611, + -0.0052442225, + -0.055782057, + -0.008322011, + -0.022189135, + -0.021700177, + 0.0010450076, + 0.008320402, + 3.5933545E-4, + -0.0059501245, + 0.004545167, + -0.009185457, + 0.008248928, + -0.00878711, + 0.023412216, + 6.5317884E-4, + -0.024058044, + 0.018649371, + 0.018129306, + 0.0075952383, + 3.5751067E-4, + 0.0017235271, + 8.8527176E-4, + 0.004881977, + -0.005295258, + -0.0062003895, + 0.0162977, + 0.004112438, + 0.025422763, + 0.008394922, + -8.620834E-4, + 0.0019118763, + 0.014285605, + 0.010359035, + 0.0066509163, + 0.00555665, + -0.0038504933, + 0.010546996, + -0.020055432, + 0.010315967, + 0.021695007, + -0.0051890677, + 0.016299382, + 0.04861768, + 0.01207754, + 0.0030440453, + -1.8598621E-4, + -0.012712745, + -0.017800659, + -0.021750627, + 1.03455444E-4, + -0.00606766, + -0.01677464, + 0.0073088296, + 0.010616173, + -0.037540518, + 0.0034277036, + -0.015989527, + -0.0013678656, + 0.0040504457, + 0.002095408, + -0.002679661, + -0.0058110137, + -0.011095895, + 0.012977699, + -0.010317197, + 0.0020480882, + -0.020067906, + -0.010363051, + -0.016562795, + 0.018342678, + 0.008034188, + -0.014274485, + -0.012116, + -0.003396587, + -0.01700531, + 0.0034788281, + -0.0015390683, + 0.01951074, + 0.02997976, + -0.035644576, + 0.02079366, + -0.025669489, + -0.014195502, + 0.015443716, + -0.022686007, + 0.0012797302, + 0.0115422495, + -0.002020324, + 0.005490698, + 0.020828495, + -0.013143988, + -0.021915289, + 0.01909702, + -0.044797707, + 0.005855604, + 0.0013652743, + 0.0029197843, + 0.0016512106, + 0.0019414844, + -7.528663E-4, + -0.025876671, + 0.0133917155, + 0.0018692876, + 0.02907274, + -0.011564734, + 0.008906588, + -0.0066490727, + 0.017666604, + -0.013765836, + -0.027864352, + -0.017768811, + 0.010991478, + -0.015048193, + -0.008771035, + -0.006626164, + 0.011718458, + -0.021364816, + -0.023264877, + -0.03171091, + -0.008213672, + -0.014934271, + -0.019794181, + 0.020501044, + -0.0033874055, + 0.0026007593, + -0.026097579, + 0.005385651, + -0.021347435, + 0.005311995, + -5.511135E-4, + 0.010536229, + -0.010111287, + -0.020554088, + 0.001799731, + -0.018553168, + -0.022365509, + 0.012081078, + 0.006196977, + 7.809263E-4, + -0.0054186704, + 0.006435156, + -0.017573442, + -0.01910778, + 0.034552116, + -0.0034292093, + -0.02769923, + 0.0051444923, + 0.011328344, + -0.009966919, + 0.0066872668, + -0.009996048, + 0.0063869855, + -0.03723731, + -0.018793292, + -0.014496469, + -0.033125125, + 0.035145987, + -0.01589753, + -0.009102614, + 0.0041890666, + -0.003636711, + 0.0050092046, + 0.0028186603, + -0.016286045, + -0.010522087, + 0.008814458, + 0.013330523, + -7.73072E-4, + 0.0081262505, + 1.4312135E-4, + -0.004645684, + -0.0146033615, + -0.021693075, + -0.0029295352, + 0.028113676, + 0.01849927, + -0.01836877, + 0.003124637, + -0.0031975613, + -0.011203595, + 0.009013642, + 0.01733615, + 0.010189979, + 0.0038485678, + 0.010474787, + -0.007833742, + 0.021962037, + 0.016556198, + -0.006178751, + -0.012783333, + -0.009689785, + -0.0035563295, + 0.0059396112, + 0.0047863075, + 0.0051702284, + 0.0017110028, + -0.004951512, + -0.022845054, + 0.004285772, + 0.02949179, + -0.014823983, + -0.012505189, + -0.022627726, + -0.017781133, + -0.02189636, + -0.014403584, + -0.025952298, + -0.0034827006, + -0.00447232, + 0.0067756763, + 0.009338905, + -0.019758157, + -0.0036145018, + -0.0034990911, + -0.020526085, + 0.013228176, + 0.013121431, + -0.0036301613, + -0.01981046, + 0.006243113, + -0.010610984, + 0.0039221086, + 0.0023178111, + -0.008685784, + 0.042061497, + 0.0033052522, + 0.004847812, + 0.024698135, + -0.012355312, + 0.011300962, + 0.013423817, + -0.0010227767, + -0.0017656595, + -0.021513676, + -4.7269354E-5, + 0.0074673663, + -0.004910959, + 0.0026156986, + -0.009239103, + -0.0036777656, + 0.0036038312, + -0.008127939, + 0.015491433, + 0.02435803, + -0.006692034, + -0.014793134, + -0.010511274, + -0.016413888, + 0.013985184, + 0.0070446883, + -0.0050173467, + 0.0045677307, + 0.010329277, + 0.009173843, + -0.02800962, + -0.009486391, + -0.0045512533, + -0.0018583126, + 0.0021994615, + -0.022089746, + -0.0037709856, + -0.016537553, + -0.015062055, + 7.756249E-4, + 0.03647726, + 0.010352325, + 0.023364924, + -0.0044255625, + -0.009710617, + -0.0033469035, + -0.024250029, + 0.013060128, + -0.01048543, + -0.021849377, + 0.006137704, + 0.0077049816, + 0.001412023, + -0.012404327, + -0.0012813489, + 0.0068277563, + -0.028881826, + -8.1622344E-4, + -9.1076177E-4, + -9.635843E-4, + -0.0128486855, + -0.013711406, + 0.0041362694, + -0.007201993, + -0.0073623154, + -0.0046810373, + 0.012290545, + -9.990574E-4, + 0.011364922, + 0.033698782, + -0.0018757749, + -0.0039031447, + 0.013744998, + 0.004549443, + -0.016462151, + 0.014747705, + -0.004670091, + -0.0035917321, + 0.0042019254, + 0.010909403, + -0.0026447757, + 0.026671637, + 0.0072115324, + -0.028506009, + 0.03176283, + 0.0013045893, + -0.013010337, + -0.0124873975, + -0.011772014, + 0.02921833, + 0.028643196, + 0.015063587, + -0.01048887, + 0.008157952, + -0.0084834425, + -0.009255811, + -0.017077897, + -0.011053274, + -8.8661653E-4, + -0.026384836, + -0.0026352569, + 6.406016E-4, + 0.042054873, + -0.014226565, + 0.00630706, + 0.013650789, + -0.019047998, + 0.0065739355, + -0.004923101, + 0.012591556, + -0.002727734, + 1.9059662E-6, + -0.006442832, + 0.0045949924, + 0.010301214, + 0.012126969, + -0.0127057135, + -0.027342845, + -0.00406319, + -0.014432131, + 0.010833592, + 0.012769008, + -0.01464341, + -0.015474583, + 0.0013066683, + -8.3153247E-4, + 0.002626898, + 0.022173345, + 0.003628762, + 0.011660576, + -0.015893457, + 0.002805939, + 0.007913639, + 0.01855669, + -0.0063032825, + 7.815659E-5, + -0.0018086928, + -0.010154309, + -0.039028954, + 0.015530561, + -0.013801151, + -0.038719147, + 0.011348275, + -0.018248886, + 0.01867023, + 0.0027067915, + -0.00489208, + 0.015546362, + 0.03642086, + 0.008109653, + -0.0014800992, + 0.014974208, + 0.013940812, + 0.009188701, + -0.015469656, + -0.0108044585, + 0.0057117315, + -0.0099880295, + -0.0144043, + 0.013246348, + 0.009355459, + -4.9880554E-4, + 0.02050792, + 0.0026696452, + -0.026644932, + -0.012028304, + -0.0029167547, + 0.012729711, + -5.307147E-4, + 0.006020708, + -0.003488299, + 0.0022607038, + -0.009204158, + 0.006725246, + 0.0026910815, + 0.035227884, + 0.027620183, + -0.002710466, + 0.0014579401, + 8.067854E-6, + -0.0045673433, + 0.0067569576, + -0.002746914, + -0.016047386, + -0.017493812, + -0.0025668407, + 0.016888173, + 0.0074709123, + -0.009991066, + 0.0023140248, + 4.9489165E-5, + -0.0043077855, + 0.01881312, + 0.012724339, + 0.0243252, + -0.027155964, + 0.016137134, + -0.015911518, + 0.007490194, + -0.024180612, + -0.018370587, + -0.0021533612, + -0.009468663, + 0.026429787, + -0.0036094831, + 0.023226054, + 0.022479603, + 0.014579285, + 0.009641258, + -0.021067599, + -3.803571E-4, + -0.021943824, + -6.8378245E-4, + 0.0027468633, + 0.011361401, + 0.0029324156, + 0.018080657, + 0.017835833, + -0.01762482, + -0.006344385, + -0.008606156, + -0.023548953, + -0.011324284, + 0.0049709883, + -0.0076161562, + 0.005224223, + 0.028740503, + 0.016845295, + -0.006714011, + -0.009301143, + 0.018118747, + 0.0042722085, + -0.013970974, + 0.010477437, + 0.019932942, + 0.01605509, + -0.0041530235, + -0.01353407, + -0.0015579165, + -0.02412357 ], - "paletteEmbedding": [ - 0.0017296937, -0.023939496, -0.016085984, 0.04699376, -7.034866e-4, - 0.06456118, 0.022655377, -0.0012593591, 0.044094574, 0.05335424, - 0.07648955, -0.019015906, -0.010314203, 0.030040566, 0.012816914, - -0.0063499818, -0.07447178, 0.062858686, -0.007748609, -0.0096950345, - -0.05305294, 0.011581659, 0.075974815, 0.027126178, -0.06666868, - 0.013786757, 0.044655804, -0.03453307, 0.017861594, 0.042476013, - -0.0046063946, 0.05497296, 0.06962607, 0.0023077528, 0.046735995, - -0.01976966, 5.1053107e-4, 0.008404126, 4.2768972e-4, 0.047498867, - 0.022183822, 0.017379494, -0.0015143792, -0.04247966, -0.004639698, - 0.025543496, 0.00908056, 0.008948129, 0.03404622, 0.006944622, - -0.017574668, 0.0030368902, -0.014849498, 0.03783077, 0.06456725, - 0.050235532, 0.00641969, 0.036028035, 0.0047461074, 0.02010353, - -0.050931495, -0.009373784, 0.048401274, -0.0075448263, -0.020043824, - -0.0051682517, 0.01255091, 0.011899757, 0.0013492252, -0.04927075, - -0.067540295, 0.029110523, -0.018175451, 0.011991435, -0.01632661, - 0.0073827677, -0.0069276895, -0.021415304, 0.04842495, -0.012238466, - -0.054537408, -0.04230043, -0.038288806, -0.015228536, 0.012537891, - -0.020799272, -0.024310552, 0.042096652, -2.3213206e-5, -0.012778725, - -0.009183455, -0.02430944, 0.08383363, -0.0452916, 0.012091897, - 0.024817728, -0.00459382, -0.004302711, -0.014082559, -0.036148377, - 0.033075895, 0.033718724, -0.022700468, 4.058962e-4, -0.01790486, - 0.03488859, -0.001500918, 0.021009676, -0.009314786, -0.008727718, - 0.020381315, 0.0031595512, 0.04985261, 0.018406529, 0.011649978, - 0.025910068, 0.00787462, 0.02350273, -0.0066662226, -0.0067568985, - 0.004403092, 0.010473987, 0.03980103, -0.054476563, -0.031638753, - -0.04771513, -0.010297484, -0.00798341, -0.026881, -0.043089814, - -0.040094852, 0.0024103548, 0.008035804, 0.06264341, -0.022811512, - -0.013303379, 0.015698882, -2.7988793e-4, -0.0034151638, -0.0072413804, - 0.0165512, 0.048666567, -0.03036886, 0.027740033, -0.0011744852, - -0.01455093, -0.03242755, 0.04188074, -0.014237733, 0.018775394, - -0.018956635, -0.06637993, -0.053738292, -0.038950182, 0.01662551, - 0.029997732, -0.025764022, 0.07125795, 0.016620694, -0.013781164, - 0.019958856, -0.012792586, -0.04494405, 0.009356795, -0.010264363, - 0.0098555265, -0.05094261, -0.018280558, -0.02429422, -0.011671659, - 0.009800983, 0.011973482, -0.02270872, -0.008172083, -0.02301497, - 0.050387092, 0.027267475, -0.035014395, 0.009284342, -0.011513295, - -0.03934293, 0.011823201, 0.004913198, -0.002844673, 0.047319468, - 0.0029229608, -0.05429535, 0.019726539, 0.0053557088, -0.05294262, - -0.01837968, 0.032144435, 0.022356352, 0.012044756, -0.010127046, - 0.033913285, 0.0064331326, 0.061790533, 0.028947173, -0.036214832, - 0.0013470094, 0.005852558, 0.019127615, 0.0010157608, -0.020845415, - 0.016299153, 7.211056e-4, 0.022498757, -0.011936103, 0.0049405773, - -0.021609858, 0.012450723, -0.04408793, 0.029871576, -0.01978122, - 0.0022295108, -0.06017604, 0.051325314, 0.039032552, -0.011437267, - -0.05241185, 0.001559169, 0.046806775, -0.0047214516, -0.040852953, - 0.002873598, -0.012337693, 0.0023233034, -0.010432502, 0.013589447, - -0.0017271858, 0.03481296, 0.0030467033, -0.08428603, -0.009137794, - 0.009906763, -0.03338097, 0.04597599, 0.04224755, -0.032161746, - -0.011378233, 0.031189863, 0.03938201, 0.024897654, -0.03251455, - 0.044963177, 0.015419275, -0.039217878, 0.013591808, 0.024634676, - -0.068513915, -0.031099368, -0.0017397169, -0.09269737, -0.0040729544, - 0.0015890044, -0.011225878, -0.022461658, 0.010276554, 0.0028696114, - -0.09368882, -0.00967259, 0.027926803, 0.025495853, 0.008189808, - 0.0055286293, -0.00283984, 0.009016655, 0.063705474, -0.03036224, - 0.051483087, -0.025828486, -0.022708502, -0.026553413, -0.035946254, - 0.06341816, -0.0017474445, 0.023175908, -0.0076485258, 0.024912555, - -0.0066327266, -0.04588713, 0.0040487126, 0.029116973, 0.019302394, - 0.009588102, 0.005820757, 0.004907052, 0.013899255, 0.005144162, - -0.0013901299, -0.03411472, -0.03230228, -0.0041528493, 0.03014558, - -0.0016605324, -0.0013378839, 0.018464737, -0.072231494, -6.8550586e-4, - 0.034462444, -0.066912666, 0.012233577, -0.030007996, 0.01675304, - -0.041851353, -0.0042743315, -0.020889806, 0.01299395, 0.010674441, - -0.006952763, 0.012354628, 0.048133496, -0.012761603, -0.009445235, - 0.022591086, -0.026389502, -0.0102918, -0.0113395145, 0.045533422, - 0.04141783, 0.051603865, -0.02285725, 0.0134372, 0.04674906, - 0.0110983625, 0.03374419, -0.02612593, 0.014919413, 0.02527046, - 0.01595049, 0.035565138, -0.038557347, 0.020008413, 0.012319624, - -0.026513524, -0.008990873, -0.01918782, -0.05929627, -0.0033100012, - 0.0032253964, 0.0077655287, -0.0036387807, -0.014241012, -0.017754544, - -0.015198522, -0.009826204, -0.008883589, -0.04401369, -0.01778845, - 0.02439809, -0.011486088, 0.038180474, 0.015798058, 0.015994785, - -0.010128926, 0.029328909, 0.07021308, 0.040999185, 0.030260243, - 0.027956698, -0.025554972, 0.003854237, 0.008371845, -0.053260043, - -0.0016241058, 0.026230756, 0.034036987, 0.003299261, 0.030782454, - 0.07104035, -0.055151254, 0.052298162, 0.0063171354, 0.01204659, - 0.013452645, -0.036804415, 0.0023678187, -0.03490821, 0.013410465, - 4.4383333e-4, -0.013093602, 0.05854864, 0.076800734, -0.021513421, - -0.0134584475, 0.0011083629, -0.014286113, 0.018776206, 0.005841659, - 0.036982004, 0.019952264, -0.025960123, -0.035204064, 0.008623014, - -0.02213707, 0.039998002, -0.009489715, 0.014343552, -0.05921102, - -0.046559393, -0.012206776, 0.01972319, -0.008660855, 0.021629568, - 0.018975992, 0.004814512, -0.011267764, 0.028759047, 0.034741573, - -1.4687466e-4, -0.024215544, 0.010974817, 0.045157265, -0.002149106, - 0.029996814, -0.0049310303, 0.017467348, 0.0071951817, -0.02916455, - -0.055892996, 0.0072968355, -0.016170982, 6.668971e-5, 0.0034893283, - -0.03453472, -0.031089092, -0.018102277, -0.040701907, -0.02028253, - 0.040545013, -0.014968248, 0.023820361, -0.016285928, -0.03792586, - 0.050013375, -0.024705067, -0.026320202, -0.020686353, -0.049290225, - 0.028623255, 0.007688445, -0.028215261, 0.027730955, 0.017780457, - 0.009626593, 0.026176002, 0.012529431, -0.006757679, 0.054759875, - 0.029456707, -0.007830024, 0.0072791656, 0.022587238, -0.01537578, - -0.011597374, 0.01876374, -0.009994775, -0.015367808, -0.054752674, - 0.012218672, 0.003841047, -0.011442361, -0.0122178495, 0.0043334905, - 0.0030500432, -0.014928228, -0.04522874, -0.006162092, -0.101966955, - 0.037548795, -0.014635894, 0.022933729, 0.014033805, -0.0033018806, - 0.014344736, 0.046098173, -0.003238465, 0.02096652, 0.015870256, - -0.03356849, -0.0061276923, 0.05470332, -0.020925611, 0.02069027, - 0.015772305, -0.01693361, 0.022285296, -0.0021276872, 0.019590972, - 0.06105641, -0.017648512, 0.029551903, -0.058551937, -0.03328744, - -0.032347813, 0.014980865, 0.019272206, -0.012109128, 0.017397227, - -0.0070856125, -0.01840833, 0.017340299, 0.09353322, -0.065743364, - 0.0529082, -0.0067236284, 0.0025404673, -0.013410348, 0.0122559825, - 0.046308044, -0.045918055, 0.0035199902, -0.024100918, -0.046221785, - 0.06204927, 0.0021281615, -0.029430391, 0.024827328, -0.023969416, - -0.023831796, 0.037261825, -0.029270552, -0.032837775, 0.03580615, - 0.036579587, -0.017318875, 0.021438545, 6.187453e-4, 0.066177115, - 0.04550673, 0.001975367, -0.011872692, 0.013063806, 0.008708462, - 0.039915558, -0.0061244937, -0.0076684486, -0.04256918, -0.06608862, - -0.015615111, 0.042610176, -0.0055501196, -0.018566454, -0.069160126, - 0.030830467, -0.006176681, 0.032448832, -0.054796804, -0.046100166, - 0.044038013, 0.0031687727, 0.0030162618, 0.017367266, -0.04007346, - 0.08796282, 0.046044618, -0.020215027, -0.042134617, 0.032958735, - 0.0047505014, -0.046963453, -0.008994791, 0.017229296, -0.014170774, - -0.019883532, 0.007596303, -0.054809246, -0.003646821, -0.009601878, - 0.042927887, 0.052587826, -0.032795623, 0.022463366, -0.014223607, - 0.027235515, -0.01377165, -0.018687736, 0.021058397, -0.06356868, - -0.027347662, -0.031224376, 0.0045934566, 0.0012795794, 0.016146298, - 0.012750567, 0.050006825, -0.015970157, -0.015011896, 0.0200785, - -0.018017069, -0.014444338, -0.017103225, -0.0035997657, 0.01452094, - 0.002965531, 0.05796591, -0.016985895, -0.007391565, 0.029233804, - -0.04777792, -0.06560982, 0.038695965, 0.042924426, -0.046641793, - 0.026656859, 0.010100316, 0.029948818, -0.044248693, 0.011593088, - -0.038731646, 0.067083, 0.020098206, -0.019905917, -0.021783698, - -0.013609451, -0.008336326, -0.020806154, -0.0033482672, -0.030580672, - -0.028508315, -0.04086788, 0.057240847, -0.005077919, 0.011718308, - -0.022496475, -0.012784008, -0.0052983277, -0.025711661, -0.012539593, - -0.0034246033, 0.014147928, 0.061679654, -0.052957635, 0.0042831735, - -0.017978104, 0.029537702, 0.035650153, 0.018707607, 0.04135609, - 0.073046386, -0.018879665, 0.05647873, -0.029098984, -0.05042569, - -0.033466328, 0.0012934727, 0.083405524, -0.020968372, 0.04165475, - 0.016122427, -9.3674706e-4, -0.012533887, 0.0026386876, 0.04706308, - -0.0054792683, 0.0065365448, 0.0053733946, 0.010690774, 0.053376775, - -0.022334158, -0.02293513, 0.004571563, -0.031204376, -0.03280891, - -0.0128706675, 0.016652243, 0.016171442, -0.03606605, -0.019657834, - -0.0012568757, -0.012370053, 0.039202042, -0.015445927, -0.021228006, - 0.019255228, -0.0045811622, 0.012184047, -0.01677762, 0.010265846, - -0.012014245, -0.0074283495, -0.0077114813, -0.023997601, 0.011013773, - -0.011727961, -0.011529049, 0.0020464982, 0.035972524, 0.040732972, - 0.06066429, 0.018390322, 0.038978737, 0.0076112766, -0.025663204, - -0.038124397, 0.03243571, 0.051135585, -0.034352746, -0.017539462, - 0.0015914841, -0.0075536715, 0.018976355, -0.043546252, -0.005750248, - 0.025529612, 0.05859658, 0.029505333, -0.0253376, 0.024162896, - -0.04811298, 0.03379763, 0.025712045, -0.009583775, -0.006184916, - -0.0014525254, -0.0018225078, -0.018183043, -0.033118196, 0.011327416, - 0.05989364, -0.037622627, -0.007828011, -0.010226993, -0.046533473, - 0.0085557755, 0.039612044, -0.041439705, 0.0039229654, 0.031030409, - 0.0432286, 0.06082281, -0.020366723, 0.049615663, 0.008544022, - -0.016139708, -0.03920595, 0.012775276, 0.05238485, 0.012070112, - -0.0416785, 6.873965e-4, 0.03810653, 0.021238003, -0.03962929, - -4.6947488e-4, -0.0023739703, -0.015408951, -0.029764365, 0.06245578, - -0.022243332, -0.02243487, -0.036196258, -0.023980774, -0.019644061, - -0.017535698, 0.024903696, -0.0020585547, -0.008563986, 0.008931667, - -0.024296835, 0.00827801, 0.053129263, 0.03861924, 0.008190907, - 0.06725835, -0.008891472, -0.028882334, 0.0045506787, 0.04771771, - -0.0037213033, -0.06836059, 0.035262294, -0.02021233, 0.057555646, - -0.039236445, -0.027114613, 0.02227621, 0.008841776, -0.013903556, - 0.023499738, -0.0021344442, 0.008567337, 0.077947505, 0.024088977, - 0.007887869, -0.0016787269, -0.006474252, 0.07090846, 1.4844185e-4, - 0.028704783, -0.025675455, -0.012320007, -0.0023510505, 0.025257988, - -0.017179223, -0.043070428, 0.033310164, 0.012419793, -0.021561706, - 0.040090065, -0.01355359, 0.072629, -0.012641634, -0.028831866, - 0.01674808, 0.017234463, 0.0066814744, 0.0071679833, -0.04446251, - -0.011111291, -0.03657456, -0.020754086, -0.014688437, 0.028194401, - -0.044471778, 0.020174593, 0.0010386943, 0.03151928, -0.08420077, - 0.07590689, 0.04254548, -0.014594323, 0.005277583, 0.06790387, - -0.01801709, -0.02505758, 0.030644579, 0.008584515, 0.0069316127, - 8.727565e-4, 0.017801763, 0.014415958, 0.02357743, 4.4664447e-4, - 0.0067525995, -0.04657396, 0.045163825, -0.03816764, 0.041259825, - 0.053724434, -0.015910901, 0.04899589, -0.038352057, -0.019712731, - 0.013675901, 0.019786052, 0.01935315, -0.03507003, -0.024896972, - 0.021581601, -0.046511393, -0.008051595, -0.01188586, -6.665436e-4, - 0.037803866, -0.0052403496, -0.02370064, -0.009482214, -0.083923124, - -0.014483595, -0.014785094, -0.037640877, -0.022166748, -0.020635072, - -0.010171156, 0.087544136, -0.049002994, -0.058690332, 0.03074275, - 0.04202935, -0.003716581, -0.05792337, -0.0075413985, -0.010401249, - 0.013313227, -0.026145851, -0.004356147, -0.046641238, 0.027776338, - 0.03732296, 0.024809279, 0.064717665, -0.020590963, 0.010072893, - -0.024026798, -0.015657991, -0.03271208, 0.047524586, 0.02984444, - -0.066033244, -0.016231189, 0.013811843, 0.021358151, 0.10256268, - 0.0419791, 0.00736961, -0.0046874247, 0.0479546, -0.056635603, - -0.0019402336, 0.049318057, 0.020467326, -0.025673164, 0.038343243, - 0.016766232, 0.0061313445, 0.014499347, 0.040012203, -0.01663022, - -0.029028406, -0.009094275, 0.018619435, 0.042137083, -0.026562322, - -0.04542286, 0.028099464, -0.022462752, 0.03261597, 0.025100973, - 0.02036229, 0.008341828, 0.009934819, -0.02084029, 0.042578556, - 0.021740612, 0.029744819, -0.0036902884, 0.008479097, 0.036094174, - -0.026556432, 0.023552332, -0.036062427, 1.1482445e-4, 0.03395954, - -0.012336645, -0.047223248, -0.012966511, 0.06603793, 0.0052627935, - 0.01071626, -0.012113401, -0.03170083, 0.009566043, 0.03431874, - 0.05172906, -0.025892233, 0.012370295, -0.038358934, 0.034891672, - -0.053799387, 0.027643753, 0.0059685283, -0.044168822, -0.028277572, - -0.024667421, 0.04196299, 0.037090305, 0.03575793, 0.013466118, - 0.030924233, -0.017746648, -0.04737644, -0.0041087028, 0.011637447, - -0.012483417, -0.033851817, 0.016147956, -0.038728017, -0.019984309, - -0.045314588, -0.00454577, -0.0069091176, 0.03450305, 0.0033658931, - 0.008010268, 0.010150919, -0.0062365453, 0.006269352, -0.03088401, - -0.027971731, 0.049829762, 0.03227877, 0.05486301, -0.061485242, - 0.033970058, -0.02896818, -2.9535757e-4, 0.008495171, 0.081472754, - 0.04538655, -0.013128179, 0.032855745, -0.0108163925, -0.020405978, - 0.03369712, 0.020494545, 0.030092055, -0.06053401, -0.027636224 + "paletteEmbedding" : [ + -0.06583936, + 0.020060135, + 0.013187716, + 0.029732632, + 0.036189333, + 0.0067056487, + 0.057753164, + -0.07660931, + -0.030991828, + 0.029957816, + 0.017490303, + 0.046089966, + -0.08274752, + -0.03491093, + -0.0295519, + -0.030105613, + 0.024389196, + 0.040563516, + 0.021720715, + 0.006951794, + -0.025623186, + -0.02545539, + 0.031890582, + 0.040991217, + 0.032773156, + 0.04385294, + 0.0015779496, + 0.019226823, + 0.0064306855, + 0.01977267, + -0.0012741135, + -0.071081385, + 0.039442953, + 0.017467247, + 0.01491424, + 0.01476119, + -0.037260134, + 0.017529234, + -0.0033190975, + 0.019956792, + -0.01234176, + -0.037934195, + 0.024373788, + -0.027995419, + 0.03784454, + -0.02798777, + 0.011046965, + 0.069588915, + -0.026684739, + -0.03743326, + -0.03846473, + -0.038862117, + 0.008593217, + 0.0030762772, + 0.037991848, + 0.02801821, + -0.024636127, + -0.030041294, + -0.010900357, + 0.06910945, + -0.024528783, + 0.042674303, + -0.024396462, + 0.052592404, + 0.009938124, + 0.026653057, + -0.055570584, + -0.019905152, + 0.0013220519, + 0.0689578, + -0.0016199761, + -0.023524556, + 0.02825678, + 0.0042712996, + 0.011537141, + 0.026784297, + -0.008535672, + 0.029749472, + -4.5501805E-4, + 0.02080973, + 0.047981896, + 0.015481797, + -0.027929155, + -0.0047020125, + -0.0663586, + 0.012642432, + -0.026073197, + -0.019173265, + 0.0138787385, + 0.01949126, + -0.013401846, + 0.0014665405, + 0.019920764, + 0.0593192, + -0.0793518, + 0.022901932, + -0.022054289, + 0.0026775606, + -0.0650373, + -0.024303822, + -0.032380436, + 0.016517824, + -0.0400525, + 0.0050951536, + 0.0091602495, + -0.00651231, + -0.037431423, + -0.03823153, + -0.023789993, + 0.02208149, + -0.020513056, + -3.3851128E-4, + -0.0061540874, + -0.012555917, + 0.0011318544, + -0.010466863, + 0.017444275, + 0.06252706, + 0.025742237, + -0.0020652679, + 0.04798473, + 0.03552494, + 0.026021026, + -0.0060225045, + -0.0068246634, + -0.0077361637, + 0.0016955136, + -0.02238017, + -0.031370647, + 0.0616931, + 0.026110234, + -0.027965186, + -0.023146924, + 0.007853527, + -0.0774633, + -0.012864469, + 0.03686605, + 0.029350355, + 0.011539171, + -0.012334086, + -0.024588898, + -0.039848175, + 0.043714847, + -0.0100360885, + 0.015584826, + 0.031863067, + -0.0024780543, + -0.036059257, + -0.002448818, + 0.036083974, + -0.0646435, + 0.006210505, + 0.026353722, + -0.023513095, + -0.04919055, + 0.008000139, + 0.057260673, + -0.011778307, + -0.011685396, + -0.0010414365, + 0.007085167, + -0.030960668, + -0.020439282, + -0.029208945, + 0.03239151, + 0.05941053, + -0.022428665, + -0.034568507, + -0.02654529, + -8.187544E-4, + -0.053711064, + -0.0018792598, + -5.7753467E-4, + 0.05568339, + -0.037713356, + 0.038158957, + 0.01681754, + -0.027916621, + -0.011076923, + -0.026341755, + -0.028410291, + 0.034932844, + 0.017539207, + -0.020588603, + -0.0075586503, + 0.008580687, + -0.013279888, + -0.02116462, + -0.028413983, + 0.0015031863, + -0.03281195, + 0.0072528236, + -0.06416646, + 0.014077981, + 0.011289624, + 0.0038848098, + 0.012372805, + 0.0147569645, + -0.007316026, + 0.024230836, + 0.0205014, + -0.03773193, + 0.012517382, + 0.014768634, + 0.022548607, + 0.03166431, + -0.006378119, + 0.017785823, + 0.054372735, + 0.015907764, + -0.016060606, + -0.036927607, + -0.019100787, + -0.026115332, + 0.014142818, + -4.162682E-4, + 4.1901862E-4, + -0.0528393, + 0.04190689, + -0.011966987, + 0.0018008507, + -0.026732279, + 0.01749117, + -0.05669299, + 0.041126918, + 0.058591925, + 0.028327525, + 0.015827406, + 0.0065752356, + -0.021944514, + 0.015151509, + -0.009153292, + 0.02545692, + 0.01924864, + -0.016776873, + 0.0060384246, + -0.011903177, + -0.009901776, + -0.04604776, + -0.035023697, + -0.0026907336, + -0.015138273, + -0.0198586, + 0.0042747706, + 0.027880818, + 0.0059668496, + -0.052165918, + -0.012225939, + -0.001924776, + -0.0048154313, + -8.0416707E-4, + 0.02046119, + -0.0032350505, + 0.041496646, + -0.04729843, + 0.030747266, + -0.045355033, + 0.021872437, + -0.0030265031, + -0.016438738, + 0.029309936, + 0.032076884, + -0.008286326, + 0.030977005, + 0.0069527477, + -0.004581398, + -0.015659971, + 0.0069349483, + 0.03856922, + 0.034104966, + -0.033779442, + 0.020615827, + 0.0608425, + 0.0038538692, + 0.035613593, + -0.033585053, + 0.026566036, + -0.00706005, + 0.028090883, + -0.013775104, + 0.030786503, + 0.021369062, + -0.029110324, + -0.008011128, + 9.0644177E-4, + 0.024556285, + 0.0023834, + 0.0060908203, + 0.05863076, + 0.043820046, + 0.017537745, + 0.020472568, + 0.019636968, + 0.07735117, + -0.010248203, + 0.006118994, + -0.04433413, + 0.032837342, + -0.019150235, + 0.03359706, + 0.020031713, + 0.062346917, + -0.005327242, + 0.05426437, + -0.0043802587, + -0.047507953, + -0.020856312, + -0.062293682, + -0.015652852, + 0.027591234, + 0.020737093, + -0.06898444, + 0.032998335, + 0.034931015, + 0.027306627, + 0.03326093, + 0.021409966, + -0.013459415, + 0.037362903, + -0.029558782, + 0.0052170353, + -0.053593446, + 0.010640125, + -0.02372191, + 0.039660174, + 0.041679494, + 0.034540016, + 0.021905798, + 0.011183669, + 0.05010899, + -0.010891533, + 0.009544904, + -0.019200396, + -0.014569113, + -0.0063049216, + -0.011171579, + -0.0064579593, + -0.0103041995, + 0.0026530896, + 0.0039727734, + -0.022184845, + 0.021701947, + -0.004065136, + -0.021533413, + -0.017937979, + -0.012662749, + -0.018554315, + 0.008455409, + 0.040241532, + 0.014455828, + -0.014349126, + -0.048273772, + 0.04399453, + -0.057521492, + -0.081635885, + -0.009597201, + 0.027004335, + 0.028095247, + 0.0030542093, + 0.01767899, + 0.003659788, + 0.06193, + -0.007552111, + -0.005120847, + -0.012448581, + -0.063095406, + 0.035085216, + -0.017928023, + -0.056944493, + 0.025019059, + 0.071505636, + 0.024823623, + -0.05221328, + -0.044622064, + -0.00736161, + -0.022076728, + -0.0119027905, + 0.04794959, + 0.0131734405, + -0.0019083174, + 0.0040797964, + 0.07909482, + -0.021521958, + 0.0031013407, + 1.17483665E-4, + -0.009082085, + 0.03214152, + -0.018263483, + 0.0051094093, + -0.020273661, + 0.024596341, + 0.03137406, + 0.009720168, + 0.04185274, + -0.017241763, + -0.002051774, + 0.0578661, + -0.06797951, + -0.014686157, + 0.005297212, + -0.030623078, + 0.06900871, + -0.05681972, + -0.009628938, + -0.049847085, + -0.015067347, + -0.0050817253, + -0.0027567395, + 0.025385113, + 0.026096059, + -0.045708563, + 0.05915929, + 0.015202899, + -0.001721949, + 1.1289704E-4, + 0.022623576, + 0.042835586, + -0.032248326, + 0.016777728, + 0.006610863, + 0.006731257, + -0.03116781, + -0.0017990227, + -0.025376191, + 0.0027722272, + -0.005616126, + 0.0018485435, + -0.018349461, + -0.046572465, + -0.04506913, + 0.046315964, + -0.06955632, + -0.054841142, + -0.041313045, + -0.025605628, + 0.019034754, + -0.027255176, + 0.011440033, + -0.033611108, + -0.009029375, + 0.01211945, + -0.039872464, + 0.06537241, + 0.013716708, + 0.060746472, + 0.017950878, + 0.046166494, + -0.039241537, + 0.0010765226, + 0.041021463, + -0.014175733, + -0.0012080817, + 0.012347346, + 0.003622969, + 0.04961697, + 0.0050640446, + -0.0082271835, + -0.0021110256, + -0.042712502, + 0.041559957, + 0.018116737, + 0.003954357, + 0.017434824, + -0.026640648, + -0.054438904, + -0.033652328, + -0.015759612, + -0.044579837, + -0.021703122, + -0.027409507, + -0.02798616, + -0.026550032, + -0.014477537, + -0.06763197, + 0.0014505209, + -0.02240465, + 0.025785536, + 0.016085178, + -0.055307813, + 0.010422524, + 0.029738814, + 0.01867521, + 0.00897409, + -0.028263126, + -0.054689404, + -0.0068639177, + -0.032344475, + 0.019492904, + -0.045999784, + -0.009453004, + 0.064247325, + 0.051717713, + 0.03791656, + -0.0061059208, + 0.024702743, + 0.0068633123, + 0.03986032, + 0.041989695, + 0.012568328, + -0.053828504, + -0.026866844, + -0.001348859, + -0.012130155, + -0.026367636, + -0.006260945, + -0.027123539, + -0.018393876, + -0.009796071, + -0.010406883, + 0.002811005, + -0.031996533, + 0.09899575, + -0.029180543, + 0.009856569, + -0.009291404, + 0.016945168, + -0.01838566, + 0.024508288, + 0.04093829, + 0.038899224, + -1.1045279E-4, + 0.016211515, + 0.012786105, + 0.03772498, + -0.053546786, + 0.030048732, + 0.011319941, + -0.048304524, + -0.019569306, + 0.069376506, + 0.03689979, + 0.012500543, + 0.016334973, + 0.035549678, + -6.5178325E-4, + 0.02039371, + -0.010010214, + -0.012821536, + -0.02896879, + -0.021846337, + 0.04032379, + -0.061083544, + -0.02899195, + 0.004334297, + -0.0075440044, + -0.00933449, + 0.051470116, + -0.0062965285, + 0.0054146578, + 0.032608904, + 0.016233837, + -0.0061182417, + 0.030380052, + -0.015597447, + 0.042112093, + -0.032193262, + -0.010692136, + 0.019785503, + 0.028640777, + 3.5932215E-4, + 0.001605781, + -0.0019093049, + 0.010540121, + -0.03865268, + 0.008094479, + -0.032931834, + 8.5780554E-4, + -0.035874262, + -0.050936643, + -0.0018294005, + 0.05080591, + -0.011280118, + -0.01732487, + -0.009170441, + -0.019537276, + 0.033447355, + 0.049523264, + 0.011055922, + -0.013929134, + -0.06347466, + -0.04316875, + 0.0031356835, + -0.0210347, + 0.0018440323, + 0.013201247, + -0.007923623, + 0.0660489, + 0.003097859, + 0.031964317, + 0.0030600051, + 0.014705834, + -0.0069408426, + 0.020165619, + -0.011013365, + -0.020104032, + 0.0025107602, + -0.026959315, + 0.051805403, + -0.009560315, + -0.0037924373, + -0.01814639, + 0.011968201, + 0.0027073915, + -0.026026865, + 0.08314856, + 0.044811856, + 0.058389347, + 0.0016735386, + 0.014210393, + -0.09519918, + 0.0073309555, + 2.1423313E-5, + 0.09602731, + -0.0038581474, + -0.04151205, + 0.04375241, + 0.0066346806, + -0.021003814, + -0.04135682, + 0.001229537, + 0.021469062, + 0.021651508, + 0.014278649, + 0.011806898, + -0.035258405, + 0.020175317, + -0.010881818, + -0.046068005, + -0.018058954, + 0.013055934, + -0.021420548, + 3.0304014E-5, + -0.003613604, + 0.05032866, + -0.009499568, + 2.2749224E-4, + -0.013030764, + 0.014914056, + 0.022159442, + 0.013024086, + -0.0541896, + 0.042733032, + 0.0062372866, + 0.01317498, + -0.047033455, + -0.019057821, + -0.016741842, + 0.003776985, + 0.017667457, + 0.018999748, + -0.0070953057, + 0.04226329, + -0.039349798, + 0.024821516, + 0.011202743, + -0.011408682, + 0.034177735, + 0.0552913, + -0.034566045, + 0.030655034, + -0.018472318, + -0.0042178165, + -0.014116848, + 0.045248795, + 0.004964936, + -0.018870916, + 0.051153272, + 0.063195944, + 0.0111897895, + -0.009692254, + 0.012179984, + -0.019138265, + 0.046339966, + -0.03028126, + 0.03450111, + -0.012236062, + 0.03484166, + -0.004333288, + -0.043848883, + 0.025567846, + 0.062611885, + 0.005977245, + 0.025364831, + 0.0107879415, + -0.056971733, + 0.062082592, + -0.020071153, + 0.036592014, + 0.011731179, + -0.0072906674, + -0.0042284336, + -0.038635764, + 0.031634796, + 0.054314405, + 0.04651547, + 0.048892368, + -0.031464826, + 0.032068133, + -0.021379307, + 0.0073653366, + 0.055154793, + 0.036439624, + -0.015390085, + 0.014386762, + -0.010050473, + -0.0202045, + -0.029953603, + -0.007505237, + 0.029222412, + -0.0014265191, + 0.011882276, + -0.012785345, + 0.006832699, + 0.03231639, + 0.028039968, + -0.02504203, + -0.05436747, + 0.005981455, + -0.020056656, + 0.05076772, + -0.023790421, + -0.019204479, + 0.003741412, + -0.0063043754, + -0.024256095, + 0.015966445, + 0.017694762, + -0.037550457, + 0.03981941, + -0.06089246, + 0.012469661, + -0.03020797, + -0.06630981, + 0.009015783, + 0.003803513, + -0.08400738, + -0.023578344, + -0.036696795, + -0.011394436, + -0.03057784, + 0.05025744, + 4.9073575E-4, + 0.0011981747, + 0.048357572, + -0.0170766, + 0.045564678, + 0.049879577, + 0.04443313, + -0.011703172, + 0.045796607, + 0.019040264, + -0.08377743, + 0.004526572, + 0.0021757795, + -1.5838074E-5, + -0.038204916, + 0.040419642, + -0.040723447, + -0.07727611, + -0.013027625, + 0.041524805, + 0.014943346, + 0.05708414, + 0.0013360168, + -0.009648722, + -0.035685204, + -0.014458716, + 0.0071944664, + 0.038889237, + 0.031989083, + -0.00796176, + 0.002675395, + -0.01480767, + 0.044325925, + -0.016119456, + 0.029685592, + 0.040327612, + 0.021417664, + 0.048774116, + -0.021151196, + -0.016024442, + -0.020255852, + 0.02767865, + -0.0391439, + 0.02172046, + 0.0373451, + 0.090578906, + -0.022013817, + -0.012012485, + 0.04395349, + 0.06840513, + 0.0060315593, + 0.012121964, + -0.01858499, + -0.028333092, + -0.042559534, + 0.047930732, + 0.005545436, + 0.053605884, + -0.0087912595, + 0.0047655688, + 0.015926762, + -0.004485107, + -0.06127664, + 0.022069018, + 0.054847192, + -0.009262681, + 0.01118576, + -0.010140951, + 0.0110874735, + -0.017946707, + 0.009392636, + 0.026243571, + -0.056134924, + -0.041186042, + -0.044641003, + -0.012004748, + 0.03559569, + -0.03262248, + -0.031496365, + 0.016876888, + -0.016948154, + -0.0017155865, + 0.008340879, + 0.021343417, + -0.06819927, + 0.010241471, + 0.03183464, + 0.01754334, + 0.012240199, + 0.0013618422, + 0.0045098118, + 0.018994993, + -0.035701737, + 2.9955304E-4, + 0.007783144, + -0.017170543, + 0.03245801, + -0.07998962, + -0.007894687, + -0.06532571, + -0.031813778, + -0.006629708, + 0.0294674, + 0.030900544, + -0.03734288, + 7.149177E-4, + 0.021040479, + 0.010082189, + 0.009038341, + -0.023956334, + 0.014052772, + -0.028333347, + -0.014886556, + -0.0053822207, + -0.02887977, + 0.023342794, + 0.055602264, + 0.020738328, + 0.032154914, + 0.032800417, + 0.0073623527, + -0.009137001, + 0.060171053, + 0.011311333, + -0.008525802, + 0.0035121904, + 0.034225713, + -0.0057131057, + -0.032965638, + -0.02628136, + -0.0020390018, + 0.019489795, + 0.0073470417, + -0.0048431098, + 0.025728736, + 0.05689224, + 6.0075126E-4, + -0.0021596248, + 0.021439636, + -0.0018098127, + -0.008592416, + -0.019526944, + 0.0058555147, + -0.035049636, + -0.023729471, + -0.006515623, + -0.00341964, + 0.017278297, + -0.010946999, + 0.0241988, + -0.034097705, + 0.051386297, + 0.028542832, + -0.046439532, + -0.03249101, + -0.012495094, + 0.012439456, + 0.02935615, + -0.012258633, + -0.0038056206, + 0.035068933, + -0.015736803, + -0.02022473, + -0.030800464, + 0.0516493, + -0.035295878, + 5.377852E-4, + 0.0454379, + 0.025011072, + -0.05519523, + 0.09664996, + -0.030788073, + -0.016549284, + 0.055812325, + -0.035245612, + 0.036265265, + -0.008837515, + -0.014578135, + 0.01095512, + 0.039243158, + 0.02664263, + -0.00232812, + -0.0028452983, + -0.007288294, + -0.029954115, + 0.051667895, + -0.02210576, + 0.016894836, + -0.041347854, + -0.07034309, + 0.028414851, + -0.0129114445, + 0.024407241, + 0.009229139, + -0.008542242, + 0.080087885, + 0.03049848, + 0.003924233, + 0.0032203328, + -0.0051960037, + -0.013826481, + -9.6165534E-4, + -0.023751909, + -0.0038845057, + -0.0054129814, + -0.0015686898, + -0.051300805, + -0.0076622954, + -0.005788014, + 0.025672693, + 0.029294776, + -0.009046493, + -0.052897777, + 0.00951447, + -0.0019589127, + 0.018360926, + -0.006968805, + 0.07277273, + -0.010615774, + -0.02496828, + -0.04793458, + -0.019352334, + 0.018069055, + 0.009297891, + -0.019971795, + -0.023983274, + 0.039070707, + -0.04263931, + -0.058365382, + -0.0104277795, + -0.02029681, + -0.012764271, + -0.039157163, + 0.04556184, + 0.021175643, + 0.07310801, + -0.00400257, + -0.026853928, + 0.007917988, + 0.019337136, + 0.006764265, + 0.011690774, + -0.02474314, + -0.05750549, + -0.007659125, + 0.0033263594, + 0.03290384, + -0.023494387, + 0.01993445, + -0.0150241805, + 0.030439645, + -0.086873114, + 0.02653188, + -0.02550438, + 0.023845386, + 0.00454462, + -0.013060011, + 0.008353026, + -0.057070903 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/image-production.2020.json b/common/search/src/test/resources/test_documents/image-production.2020.json index 19ef7f2ab..c3dad6fdd 100644 --- a/common/search/src/test/resources/test_documents/image-production.2020.json +++ b/common/search/src/test/resources/test_documents/image-production.2020.json @@ -1,1341 +1,5249 @@ { - "description": "an image with a production event in 2020", - "createdAt": "2023-11-21T14:25:44.342537Z", - "id": "fh2wwbhh", - "document": { - "modifiedTime": "2010-05-28T21:46:34Z", - "display": { - "id": "fh2wwbhh", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with a production event in 2020", + "createdAt" : "2024-11-14T14:37:56.591202Z", + "id" : "m2rbdwgt", + "document" : { + "modifiedTime" : "2056-12-21T22:29:43Z", + "display" : { + "id" : "m2rbdwgt", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/0FX.jpg/info.json", - "credit": "Credit line: uKP6ycc", - "linkText": "Link text: b2QxcE3", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/0FX.jpg/info.json", - "credit": "Credit line: uKP6ycc", - "linkText": "Link text: b2QxcE3", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#C9269E", - "source": { - "id": "4n3gviws", - "title": "Production event in 2020", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#D70B8B", + "source" : { + "id" : "smbunmln", + "title" : "Production event in 2020", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "fh2wwbhh", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "4n3gviws", - "sourceIdentifier.value": "L4PFpFBzKI", - "identifiers.value": ["L4PFpFBzKI"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["2020"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 2020" + "query" : { + "id" : "m2rbdwgt", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "smbunmln", + "sourceIdentifier.value" : "299HseGjKZ", + "identifiers.value" : [ + "299HseGjKZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "2020" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 2020" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [1577836800000] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.009343985, 0.03963669, -0.009038073, -0.009029213, -8.940216e-4, - 0.0036201926, 0.0052960836, -0.012483196, 0.027134346, 0.004633592, - 0.007791839, -0.0011451348, 0.02809699, -0.013984094, -5.008067e-4, - 4.378519e-4, -0.019136626, 0.006620515, -9.648413e-4, -0.005327527, - -0.0011003403, 0.0074718078, 0.015451414, -8.518113e-4, 0.0010024105, - 0.002949827, -0.0058023436, -0.023052556, -0.010205138, -0.008785578, - -0.011343134, -0.015977921, -0.005242119, 0.010020736, -0.019174255, - 0.013094378, 0.012720323, -0.031866595, 0.0075406944, 0.011079438, - -0.030222058, 0.0069091436, -0.02028747, 0.0073812646, -7.0834864e-4, - 0.009307015, 0.017824147, -0.007892578, 8.4354443e-4, -0.033955984, - 0.0077111726, -0.007674509, -0.010297314, -0.0049894117, -0.037971064, - -0.0066142706, 0.0069146147, 0.0048100045, -0.008753728, -0.013532255, - 0.019709745, 0.012603501, -0.018493764, -0.012188211, 0.011770749, - 0.022495415, 0.0029990687, -0.0037421025, 0.007881617, -0.02184651, - 0.0045241355, -0.020881185, 0.0038053277, -0.02113007, 0.013092336, - 0.007470962, 0.0017760323, 0.0071488735, 0.018264318, 0.028375734, - -0.0060421545, -0.016505258, -0.0037595984, -0.020617578, 0.0053333268, - -0.020443378, -0.0010561269, 0.017226532, -0.0017504252, 0.016048588, - -0.014067416, -0.0067128027, -0.0022694627, -0.02005106, -0.027712766, - 0.012933412, -9.58535e-4, -0.009465722, -9.042257e-4, 0.0034793653, - -0.0011297388, -9.710152e-4, 0.017025875, 0.003789302, 0.002420964, - -0.015793538, -0.0018459612, -0.023012053, 0.009687286, 0.0012523488, - -0.0046030716, 0.023452478, -0.016700841, -0.03653569, 0.002054694, - -0.0057553533, -0.0024505816, 0.016232183, 0.019953895, 0.016798763, - 0.009264638, -0.021159152, 0.0015979031, 0.007780313, 0.0046325754, - 0.0251226, -0.0073712603, 3.6888162e-4, -0.009781586, -0.025368579, - 7.1781385e-4, -0.003923605, -0.009188126, -0.010574519, 0.003533902, - -0.021423494, 0.023906628, 0.0020486717, 0.0035778205, -0.005021087, - -0.0076556834, 0.014918566, 0.017374007, -0.005126524, -0.009728133, - 0.0024636155, 0.006438023, -0.010272212, 0.0027347757, 0.015637262, - -0.013209552, -0.0068712225, 0.0028567999, -0.007666888, 0.0069544683, - 0.0028748452, -0.011027749, 0.005936192, 0.0033891522, 0.01490517, - -0.0023563178, 0.0056255427, 7.9325394e-4, 0.004434836, 0.04390917, - -0.017320741, -0.012384882, -0.0033151119, -0.006234955, -0.02612683, - 0.011941819, -0.017464526, -0.020015419, 0.0048089228, 0.005694992, - 0.028769404, 0.03297853, 0.0043635513, 0.012921582, -0.027166106, - 0.027119236, -0.0045440192, -0.028999938, 0.029570943, -0.0011609889, - -0.004428082, 0.006865581, 0.045613088, 0.01079478, 0.0029206004, - -0.009019272, 0.011261703, 0.014686703, 0.010182552, 0.020698564, - -0.0067249327, -0.008560445, 0.025442667, -0.016474295, -0.001364175, - 0.030619824, 0.010165527, 0.015859282, 0.0059990687, -0.0041404846, - -0.022410633, -7.1868155e-4, -0.002504656, -0.011941684, -0.015434243, - 0.017253378, -0.004242737, 0.026943782, 0.007982509, -0.017484492, - -5.924578e-4, 0.009973934, 0.010883596, -0.0016514346, 0.020923078, - -0.022465268, -0.007473365, -0.015618218, 0.015894894, -0.015744522, - 8.941335e-4, -0.03040855, 0.006643292, -0.0049470374, -0.011115351, - -0.0051616356, 0.003077457, 0.026001528, 0.014747076, 0.024350539, - -0.014424406, 0.021994542, 0.029224705, 0.00823172, 0.021278981, - -0.010802729, 0.017547447, 0.010315583, 0.022934983, -0.017970331, - -0.007947428, 0.0035630832, -0.022674559, 0.019507185, 0.0064069857, - -0.008588819, 0.0116290925, -7.6125964e-4, 0.018275421, -0.0012204151, - 0.026496256, -0.004213154, 0.012976281, -0.003554524, 0.02053848, - 0.02022685, -0.015162559, -0.0010475977, 0.011360173, -0.017293077, - -1.3237238e-4, 0.012458451, 0.007720339, 0.02165404, -0.0032863698, - -0.0037294019, 0.015657201, 0.0021550297, -0.009191403, -0.010192809, - -0.018261937, -0.0062568863, 0.001195165, 0.019227512, 6.631946e-4, - -0.004850487, -0.042509623, -0.015177413, -0.007862829, 0.010687973, - 0.0058060447, -0.012026753, -0.0055032014, -0.015154425, 0.004187438, - 0.01228532, 0.025061702, -0.0052754567, 0.033384357, -0.018902393, - -0.028873136, -0.008197274, 0.0059262114, -0.017423166, 0.0065602125, - 0.014505998, -0.024539575, -0.008391629, -0.004609119, 0.004982838, - -0.0047023217, 0.017391838, 9.081824e-4, -0.005981237, -0.016473275, - -0.034535244, 0.0043337313, -0.014804422, 0.0022632515, 0.0019236214, - 0.002235546, 0.01525954, 0.00856025, -0.011723798, 0.019000461, - 0.043672893, -0.01668342, -0.012041303, 0.0071343007, 0.0090941265, - 0.02235793, -0.008553382, 0.028429735, -0.026949724, -0.0043522804, - 0.023805585, 0.01626945, -0.0040480755, -0.0068868813, -0.0038101552, - -0.0020303535, 0.03832875, -0.005422548, 0.0057392325, 0.0049339207, - 0.01651373, -0.014272286, 0.009851611, -0.010317475, 0.0027493094, - -0.009530304, 0.0069184825, 0.006499614, 0.011781062, -0.006365378, - -0.027484234, -0.003220122, -0.01314683, -5.9845025e-4, 0.0031849456, - -0.0011448398, -0.00356405, -6.605464e-4, -0.033150423, -0.022211649, - -0.001967185, -0.0012799135, 0.016170934, 6.8825897e-4, -0.04289446, - -0.016007992, 0.019760452, -0.011429069, -5.9955596e-4, -0.022032922, - 0.0018310269, 0.007637516, 0.01233798, 0.015776834, 0.019665647, - -6.3948194e-4, 0.012119162, -0.0043956, 0.017856847, 8.063622e-4, - -0.015450329, -0.0040112208, -0.019209126, -0.0054416154, -0.0117137935, - -0.0039792545, -0.0036186927, 0.012740448, 0.013181761, -0.005196455, - -0.03081875, 0.022454469, -0.0036068957, -0.0076224776, 0.003801817, - 0.0054886555, 0.019591786, -0.010766919, -0.04761211, 0.015541398, - -0.021423746, -0.008383697, -0.035248656, -0.014192668, 0.04111426, - -0.009253441, -0.0015241422, -0.015473685, -0.008219806, 0.011705808, - 0.02797122, -0.011087516, 2.924254e-4, 0.023539826, -0.017758353, - -0.004675468, -7.031424e-4, 0.014279279, -0.010768832, 6.563533e-4, - 0.0065551237, 0.020180883, -0.014623022, -0.006498177, 0.008212416, - 0.018653784, -0.015035482, 0.0038248799, 0.0060524954, -9.671524e-4, - -0.04162915, 0.023497801, -1.3298007e-4, -0.008210556, 0.001285221, - 0.00262451, -0.027390167, 0.020950578, -0.008446758, -0.016808495, - -0.029422332, 0.0069878567, -0.012955188, -0.01801749, -0.010109165, - -8.2692935e-4, -0.024058297, -8.224674e-4, 0.010991065, 0.0030468463, - -0.012297585, 3.8465994e-4, 3.564783e-4, -0.008108924, -0.0216192, - 0.012811577, -0.0023646306, -0.0031670197, 0.01953645, -0.018668866, - -0.017479535, -0.025839401, -0.019317416, 0.012814667, -0.009938191, - 0.0031322155, 3.8032912e-4, -2.1531689e-4, 0.0028826296, -0.010848225, - -0.0027630904, 0.0010530268, 0.0042122314, -0.0055651483, 5.913277e-4, - -0.002549188, -0.021746766, 0.03404779, 0.016363613, 0.01769139, - -0.0042951386, -0.0071472614, 0.009191245, 0.0057670176, 0.0102312295, - 0.02910162, 0.023311153, 0.023544513, 0.0021754887, 0.0068406058, - 0.025360385, -0.01433208, -0.011097737, 0.038331516, -0.025481714, - 0.0074132266, 0.0016219465, -0.0050666183, -0.007559175, -0.009880099, - -0.04561795, 0.0020387683, 0.032482166, -0.0027082565, 0.014742914, - 0.021978395, -0.0032492976, -0.0075070956, 0.00807472, 0.013053599, - 0.012100701, 0.004891498, 0.019684918, -0.012509959, -0.0011955274, - -0.0072093573, 0.0032630689, -0.019435132, 0.013615436, 0.013084252, - -0.015636545, -6.3857195e-5, 0.0031466102, -0.0014566758, 0.01965947, - 0.015308773, 0.032654494, 0.0046425746, 0.012840475, -0.016538667, - -0.001708925, -0.0056902, 0.02089548, 0.008075336, -6.6351105e-4, - -0.00248624, 0.044538345, -0.008059327, 0.010310173, 0.0128042605, - 0.008120747, 0.018140443, -0.009262203, -0.0027985135, 0.014469777, - -0.006124823, -0.01795428, 0.04363129, 0.010823446, -0.018148862, - 0.0071854214, -0.002476152, 0.012740862, 0.012413261, 0.019400762, - 0.01795427, -6.1094284e-4, 0.024166757, -0.005257622, 0.0020646297, - 0.005317036, 0.0170183, 0.014321745, -0.0188156, -0.0038979808, - 0.015491069, 1.5039211e-4, 0.0058390056, -0.00824626, 0.0017415415, - 0.013512103, 6.522733e-4, 0.011079246, -0.010979693, -0.024190849, - -0.016004672, -0.011786121, 0.012670463, 0.024948806, -0.019775312, - 0.019013533, 0.007133838, 0.02726757, 0.004093087, -0.013793578, - 0.0023847127, 0.0020912117, -0.0108123645, -0.026147068, 0.051736552, - -0.0059823804, -0.014564111, -0.0058416007, -0.024856254, 0.004959355, - 0.017077012, -0.003587886, 0.0045043253, -0.026431313, 0.021037858, - 0.008543039, 0.0051523205, 0.019715196, 0.005486555, 0.005716076, - 0.017479148, 0.009174895, 0.001416078, -0.0035586716, -0.009724482, - -0.020916557, -0.017398633, -0.018530063, 0.014281716, 0.017173454, - -0.02422315, -0.005014177, -0.016943306, 0.011256881, 0.010098754, - 0.033409268, 0.016254393, -0.016728768, 0.004892975, -0.00583422, - 0.01385078, -0.022147745, 0.012580575, 0.018597316, -0.013022666, - -0.0125496, 0.009799008, 0.00514629, -0.0034391494, 0.026057592, - -0.01183392, 0.008733616, -0.011733279, -0.002896879, 0.015935622, - 0.019255225, -0.011700385, 0.0035956441, -0.036245506, -0.03287767, - -9.914022e-4, -0.01096925, -0.0029011043, 0.0114333555, 0.0033147307, - 0.013247842, -0.015595665, 0.017427076, 0.034172654, 0.03784951, - -0.010974458, 5.858396e-4, 0.009049731, -0.003772206, -0.018580643, - 0.027928343, 0.008245662, 0.019639, -0.020792866, -0.014775685, - -0.034465287, 0.010958222, -0.005366583, 0.010588712, 0.002972335, - 0.016418166, 0.0061286762, 0.020884, 0.019372875, 0.016914885, - -0.0013063621, 0.0012047614, -0.008515813, 0.0040389295, 0.008112629, - 0.0067405202, -0.017152907, -0.011667462, 0.007848228, 0.008713816, - -0.019503895, 0.007815725, 0.0013508726, 0.011805641, -0.02028749, - 0.0093922345, -0.02255968, -0.018402869, 0.010655343, -0.015771376, - 0.012501056, -0.0355653, -0.02444113, -0.005131457, 0.007947096, - -0.0056578447, 0.0032631066, -0.032967456, -0.012634174, -0.011336286, - -3.4086293e-4, -0.008792634, -0.0012393466, -0.0044778767, 0.009491473, - -0.020566845, -0.0043911827, 0.019603403, -0.020640329, 0.0075368485, - -4.1665716e-4, 0.017410168, 0.0010662843, 0.02297509, -0.01027109, - 0.0047972808, -0.02350427, -0.004519017, -0.017274221, -0.011397711, - -0.017613903, -0.0043824967, 0.006183193, 0.014701215, 0.0061416538, - 0.035249863, 0.01833564, 0.0034647367, -0.021299787, -0.012524267, - 4.4257013e-4, 0.0027392036, 0.014732041, -0.036656942, 0.002490043, - 0.025713906, -0.010174776, -0.0032536748, -0.011018442, 0.00511344, - -0.008235118, -0.011536786, -0.0029043083, -0.015530867, -0.0014853615, - 0.016518673, 0.005804998, -0.015960725, -7.662483e-4, 0.014862036, - 0.010647863, 0.015123155, -0.0010156636, 0.0034680474, -0.014373825, - -0.012907991, 0.035437554, -0.013365947, -4.1856625e-4, 0.0046356344, - 0.0015089593, -0.020936018, -0.0044128904, 0.0050689466, -0.0013875369, - 0.0033535515, 0.011986942, 0.020466378, 0.009888683, 0.01052193, - -6.3790026e-4, 6.1498553e-4, -0.0037346014, -0.03246137, 0.0198256, - -0.0066669714, -0.014988862, 0.003130355, 0.019832835, 0.044203598, - 0.023457227, 0.0073302547, 0.024729136, 0.010919256, 9.2987844e-4, - -0.006800789, -0.022914615, -0.014495221, -0.008683356, -0.020073265, - -0.020587223, -0.020022765, -0.017091125, -0.0062919515, -0.0021223526, - -0.009555234, -9.102815e-4, 0.0024788864, -0.028870927, 0.028119251, - 0.029249065, 0.032464977, 0.0109038595, -0.003835813, -0.0070508006, - 0.0010088988, -0.010178587, -0.011084472, 1.89114e-4, -0.011506727, - 0.008135352, -0.0075462395, 0.005219703, -0.024755895, -0.0028338567, - -0.017996425, -0.041987706, -0.01518403, -0.0090582045, -0.009156932, - -0.0014422935, 0.008690763, 0.0060284184, -0.012027196, 0.012777893, - -0.014473648, 0.010341731, 0.00790319, 0.013901277, 0.004721335, - -0.0071321893, -0.002092751, 0.0019016484, 0.021207446, 0.010424938, - -0.018683119, -0.024034474, -0.021548977, 0.006958615, -0.020978682, - -0.0074916044, -0.015099343, 0.010915463, 0.021588143, 0.03165227, - 0.002315296, -0.0060685556, -0.0015504471, 0.015583986, -0.0036365276, - 0.0022618608, -0.0019010867, -0.009424443, 0.008875012, -0.0038166528, - -0.004043682, 0.023971045, 0.0064680614, 0.0023466304, 0.0026669453, - 0.009832814, 0.003800425, -9.3484545e-5, -0.0046965554, 0.008467418, - -0.024339939, 0.013149852, -5.0433684e-4, -0.024809128, -0.03228242, - 0.0071453955, -0.021873422, -0.03220599, 7.459039e-4, -0.013733102, - 0.017345501, 0.003955646, -0.0174582, 2.4256502e-4, -0.03266506, - 0.019924117, 0.0029061765, 0.016978374, -0.012914433, 0.005827532, - 0.0058813873, 0.01626292, 0.0010270989, -0.027293537, -0.030290201, - -0.0012693817, 0.0034073167, -0.021595428, 0.00890698, -0.005523365, - 0.012705942, 0.0024303524, 0.01690688, -0.034944452, 0.002943394, - 0.013543545, -0.020898525, 0.022110289, 0.00736095, 0.003343865, - 0.019811938, -0.0049478444, -0.022227323, -0.029464964, 0.0055204458, - 0.020657802, -0.0097959805, 0.010704713, 0.025505798, 0.016262628, - -0.010031128, 0.002151871, 0.036465194, -0.028691722, -0.009555117, - 0.004128296, -0.0056153527, -0.003996352, 0.0014711951, -0.014338659, - -0.0054927412, -0.034134693, 0.0051821168, -0.010175364, -0.0021862169, - 0.007771515, 0.007488174, 0.020645829, 0.010140476, -0.022390353, - 0.013213405, -4.2019528e-4, -0.0020076786, -0.010118705, -0.0064128777, - 0.02265422, 0.0051229545, -0.018699002, 0.024516761, -0.00253945, - -0.018114327, 0.010925558, 0.013212796, -0.030862762, -0.017445225, - -0.029079467, 0.0045881886, -0.006543962, 0.012251554, -0.018702257, - -0.002893335, 0.033542283, 0.027046947, 0.010670618, 0.0017041418, - 0.0023126253, 0.0034907684, 0.014572746, 0.014861994, -0.0013117755, - -0.016065456, -0.012524456, -0.0029513703, 0.011323521, -0.010977417, - 0.009716113, -0.017384473, -0.014976866, -0.02840774, -0.008428075, - -0.0074915593, -4.501295e-4, -3.8512025e-4, -0.010505249, -0.0064158007, - 0.016504945, 0.005692166, -0.009230769, 0.0032835272, 0.0320861, - 0.0024698724, -0.004935395, -0.039624657, -0.013974226, 0.016743263, - -0.013910855, -0.017841913, 0.029375553, 0.03544038, 8.0535765e-4, - -0.020679966, 2.2272112e-4, 0.02947938, -0.0366484, 0.011290945, - -0.0068002325, -0.03204903, 0.010860149, 0.0031467357, -0.0019652585, - -0.015919859, 0.0060328287, 0.031238932, 0.0066985474, 0.0072361683, - 0.010109169, 0.0039515113, 0.0056826123, -0.008665869, -0.0024448682, - -0.028001241, 0.024997424, -0.0075857677, -0.0066414317, 0.007385853, - 0.014431568, -0.0030427265, 0.021591472, 0.010489586, 4.6490657e-4, - -0.010706533, 0.02020951, 0.0025210837, -0.006721242, 0.007923149, - 0.0033037523, 1.0107338e-4, 0.015871601, 0.025251389, -0.0036590765, - 0.013192552, -0.0065967273, 0.0033277476, 0.007926354, 0.0018577187, - -0.041539956, -0.020125508, 0.011164405, -0.03912924, -0.013245152, - -0.009290959, 0.0046457965, 0.008246306, -0.0044948547, 0.021146769, - 0.010595071, 0.0034163538, -0.014834199, -0.03336471, -0.02621143, - 0.012062427, -0.0021641264, -0.010863363, -0.0130395, -0.019592457, - -0.016806386, 0.0067634247, 0.013255774, -0.012568025, 0.004227998, - -0.0077032517, -0.0057097063, 0.021307554, 0.016270548, -0.02503396, - 0.011822993, -0.012120194, 0.0024504731, 0.03711374, -0.0041458914, - 0.0019729678, -0.00812879, 0.010244547, 0.0035616336, -0.015086569, - -0.002757941, -0.0073835524, -0.020334797, -0.0014429765, -0.0048734476, - 0.024653846, 0.021138033, 0.00510581, -8.0021995e-4, 0.008377448, - -0.0014195534, -0.018634787, -0.027493658, -0.001560965, 0.011901861, - 0.032753795, -0.003167979, -0.011520512, 0.020043982, -0.02720759, - 0.017506726, 0.004414483, 0.018203577, 0.032537557, 0.010202027, - -0.0017170723, -0.0058872984, 0.0110690165, 0.01304877, -0.03840809, - -0.026338466, 0.017376333, 0.018919997, 0.009451407, -0.015769426, - -0.0115619, 0.029943073, -0.0062971287, 0.0139243975, -0.0014157897, - 0.0104342215, -0.0058171903, 0.0064923014, 0.009868049, -0.011998069, - 0.0033110029, -5.81769e-4, 0.0073621487, -0.0026214167, 0.001170173, - 0.0017320706, 0.010511677, 0.013432745, -0.0060698283, -0.0010381242, - 0.003634941, -0.023113726, -0.009038221, 0.006674436, -0.015792308, - -0.002174399, -0.0074289925, 0.006128566, -0.012331428, 0.016052516, - 0.0014468381, -0.031017972, 0.005044457, -0.0037664117, 0.008417367, - 0.006885814, -0.02217195, 0.006206281, 0.029350452, -0.007753704, - 0.006236424, -0.0030134434, 0.0040920544, -0.001642571, 0.0021865543, - 0.009597246, -0.004968649, 0.015623382, 0.0055498667, 0.008587176, - 0.0089051565, -0.0151836565, -0.0242683, -0.0045965808, -0.005338173, - -0.0043505616, 0.0019853294, 0.012519989, -0.031021323, 0.028617999, - 0.011711217, -0.007769549, -0.0037713593, 0.041080605, 0.02119363, - -0.009134712, 0.0056833667, 0.006834393, -0.012885482, 0.028643144, - 0.008560235, -0.020039255, 0.0043629585, -0.037727907, -0.0043781083, - -0.012354662, -0.009099518, 0.01711913, 0.002982724, 0.0059515056, - 0.007975861, 0.0076664677, 0.03842525, -0.003146766, -0.01707086, - -0.013623886, -0.0093531925, 0.0054584187, -0.0037624808, -0.014190016, - 0.002361658, 0.019818231, 0.011143641, 0.0013640365, -0.0024539756, - 0.01569951, 0.004392573, 0.023994831, 3.696435e-4, 0.04340609, - -0.010349049, 0.006155755, -0.009822164, -0.0107212905, -0.0113139935, - 0.014423042, 0.011874734, -0.015107933, 0.026247198, 0.005913811, - -0.02694591, 0.013817201, 0.016570076, 0.0012570326, -0.0020837258, - -0.024008062, 0.01497849, 0.0045934324, -0.016659474, -0.0044316757, - -0.00488344, 0.033056617, -2.531726e-5, -0.013767942, -0.004153387, - 0.0049839206, -0.0038067396, 0.014043422, -0.0076398887, 0.01847508, - -0.017274242, 0.021795271, 0.012910255, -0.021486154, 0.00328292, - 0.011979246, 0.0065036025, -0.012220757, 0.023189077, 0.0064165504, - 9.5233554e-4, 0.011213896, 0.0048350696, -0.006756319, -0.009929472, - 0.010542589, -0.007915584, -0.0063069114, -0.007643189, -0.0018988239, - -0.008062195, 0.024867535, -0.027986906, -0.011780662, 0.0059069274, - -0.008420901, 0.018071555, -0.009656161, 0.0062830704, 0.035970263, - -0.02149905, 0.018479228, 5.107937e-4, -0.0035020255, 0.009131184, - 0.0087996805, 0.012655086, -6.6539884e-5, -0.0058561238, -0.01484535, - -0.020639673, -0.0058116536, -0.0166188, -0.0030374108, -0.009136966, - -0.011723663, -0.011932477, -0.0053968267, 0.007186385, -0.009112591, - 9.141635e-4, 0.001986529, -0.019106701, -0.011329695, 0.021391654, - -9.257752e-4, 0.002835522, 0.0024179986, 0.006926709, -0.014527317, - -0.021831265, -0.006292897, -0.01861951, 0.02119717, 0.01293777, - 0.017457085, 0.020288367, 0.008331646, 0.013559206, -0.0053846897, - -0.02109272, 0.008009519, -0.0028105718, -0.027203273, -0.00841715, - -0.009995349, -0.005288451, 0.01391208, -0.0043983366, -0.023913171, - 0.005921868, 0.013567382, 0.026076687, -0.022956137, -0.013489031, - -0.0105187725, 0.028127423, 0.030405335, 0.019621713, 0.01504855, - 0.03326205, 0.021824734, 0.0010873737, 0.022713257, -0.0033761032, - -0.030665997, 0.0051941653, -0.016003953, -0.004758576, 0.022385214, - 0.033082318, 0.015411749, -0.016215118, 0.009707506, 0.0065853787, - -0.0024591654, 0.0080770925, -0.0071580545, -0.0020851695, -0.016010115, - 0.004933669, 0.0027849637, -0.024680827, 0.0012690312, -0.004645023, - 0.012484978, -0.014597211, 0.0146783665, 0.024839595, -0.0017155489, - 0.019329047, 0.014480436, 0.030059056, 0.018474806, 0.017365528, - 0.020195942, 0.02119898, 0.015300726, -0.031010533, -0.027427437, - -0.0066097267, -0.008455018, -0.0017827633, -0.03272523, 0.019008487, - 0.024153307, 0.0062951883, -0.02370752, -0.0067265765, 0.016531022, - 0.010888171, -0.0044285394, 0.028720886, -0.02545659, -0.0039347652, - 0.01695566, 0.0010548712, -0.0018136131, -0.020095974, -0.03004712, - -0.0011199748, -0.013900662, 0.011212942, -0.008125732, -0.016509077, - 0.020683045, 0.028266331, 0.005079913, -0.0075868615, 0.032298237, - 0.028667113, -0.023032105, -0.009929334, 9.564193e-4, 0.0063436683, - 0.0063472567, -0.0029231503, -0.011715993, 0.0177727, 0.015427226, - 0.024923053, 0.013870593, 0.021637445, -2.2939166e-4, -0.008085756, - -0.017186206, -0.02257903, 8.933359e-4, 0.023646185, 0.0015513237, - -0.0018667264, -0.00888068, 0.018862143, 0.007930567, -1.3216331e-5, - 0.016798792, 0.015905133, -0.0078035924, 0.012918032, -0.015169495, - -0.0396521, -0.009227879, 0.0022070513, -0.00340207, 0.010224205, - 0.013881762, -0.019422762, 0.016727379, 0.012365443, 0.038572125, - -0.0047355397, 0.030358242, 0.0055428883, -0.020261435, -0.01070502, - 0.02328215, 0.004444424, -0.0020382188, -0.002380979, 0.008412097, - -0.0045555267, 0.006702718, -0.002018803, 0.00424417, -0.0111277, - -0.0019282138, -0.021438021, 0.015630528, -0.013071646, 0.025771113, - 0.016082795, -0.016474525, -0.03180454, -0.024181431, 6.7506084e-4, - -0.0015146955, 0.010721614, -0.0052409153, 0.017525036, -0.0065041203, - 0.0179821, 0.020391315, 0.015564446, 0.031613708, 3.3233716e-4, - -0.01507253, 0.009851597, -0.021015856, -5.620893e-4, -3.6278032e-4, - -0.009945778, 4.1044626e-5, 0.015416334, 0.038379546, 2.819402e-4, - 0.005545478, -0.008050098, -0.0014493954, -0.017731681, 0.018916965, - 0.0019208669, -0.006978861, -0.017200785, -0.014895019, 0.0066445535, - -0.0135898655, 0.0017845797, 0.018258065, -0.01464018, 0.016960043, - 0.005781511, 0.021344189, 0.010040718, -0.001899997, -0.024687823, - 6.44384e-5, 0.0071940194, -0.012210581, -0.036249556, -0.005634338, - -0.020407455, -0.014029033, 0.016713617, 0.0012508027, 0.00593959, - -0.0024220843, 0.0060416535, -0.019547163, 0.009126039, -0.007490301, - -0.012159349, 0.02046006, 0.008931762, -0.002865407, 0.026169052, - 0.004858637, 0.0024664232, 0.02045988, 0.008529378, -0.019374486, - 0.0069505605, -0.0030713505, 0.0026410792, 0.01240266, -0.012996313, - -0.0015166404, -4.4602845e-4, 0.030430242, 0.014423102, -0.010464787, - 0.0022146392, 0.015373203, 0.0013894748, -0.009317161, 0.005360927, - 0.005419038, -0.024356484, 0.0033208798, -0.0051853214, 0.033259757, - 0.017829724, 0.008126092, -0.033668067, 0.016218694, 0.011469376, - -0.013653132, 0.01511453, 0.041940305, 0.011911034, 0.011366716, - 0.015570443, 0.026031764, 0.0131485, -0.03942079, 0.0026035449, - 0.0065529523, -0.013195742, -0.006037579, -0.014168373, -0.018737024, - 7.8842277e-4, 0.032071248, -0.0017204037, -0.007813879, 0.0024177362, - 0.009898173, -0.019298293, -0.02584129, 0.002501914, -0.0028103592, - -0.0027287225, -0.026035491, -0.020248944, 0.0026540074, -0.00448578, - -0.0094590895, 0.026864221, 0.00712486, -0.02012081, 0.026855594, - 0.0032210036, 0.012558687, -0.014946758, 0.0038434681, -0.03813553, - -0.006182503, -0.01974996, 0.00512909, -0.012929871, -0.01230669, - 0.031630814, 0.012609313, -0.0051426953, -0.020685734, -0.03498687, - 0.014618475, -0.0021333483, 0.024512416, -0.003248004, -0.039199784, - 0.030233005, -0.031293675, -0.004276884, 0.005913033, -0.01638628, - -0.0011199882, -0.0041614417, -0.009868045, 0.015562505, -0.013395007, - 0.005003601, 0.03463001, 0.022597449, 0.016287787, -0.019426892, - 0.029084755, -0.02595383, 0.011079919, 0.0061981766, -0.026146123, - -0.0050239675, -0.0061886376, -0.022571336, 0.0011082203, 0.0058574337, - -0.010294108, -0.0017174538, -0.007881708, 0.019863002, 0.0041703614, - 0.008250073, -0.004311158, 0.014237763, 0.0089571215, 0.001130359, - 0.013281574, 0.04165704, 0.010161378, 0.0060990374, -0.0081145, - -0.014221242, 0.0092773745, 0.0033901152, 0.033955432, 0.01922642, - 9.0165343e-4, -0.0109283365, 0.019343207, 0.005840669, -0.017365227, - -0.004923467, 0.01044362, 0.015218178, -0.016391397, -0.0018513033, - 0.008631536, -0.002843349, -9.827443e-4, 0.024834916, 0.018039098, - -0.0069195395, 0.0183275, -0.01488912, 0.010299339, -0.038149245, - -0.024702923, -0.010465521, -0.007897714, -0.0049488675, -0.007959293, - 0.015999358, 0.0020251141, 0.0110299075, -0.012074409, -0.016616395, - -0.01608371, 0.014951351, 0.026771344, -0.009394283, 0.027323736, - 0.02215501, 0.004018201, -0.008360377, -0.0034521853, -0.031776275, - -0.021011814, -0.011017135, 9.0594694e-4, 0.016569631, 6.7294657e-4, - 0.026827812, -0.016917832, -0.031025205, -0.018214956, 0.017799001, - -0.010458246, 0.0047243466, 0.010968929, 0.0073318896, 0.008831923, - -0.012435986, -0.001641332, -0.002482922, 0.013966368, -0.018241853, - -0.036328256, -0.005608434, 0.016028132, 0.025671555, -0.017543538, - 0.03974129, -0.0020988306, 0.0043356596, 0.014919238, 0.011472135, - -0.016378598, 0.023185223, -0.011012339, -0.003515784, 0.002584043, - 3.5025255e-4, 4.906428e-4, 0.0030481813, 0.022278007, -0.01563162, - 0.017598396, 0.011647865, 0.0023549204, 0.0036674382, 0.012402234, - 0.0011195174, -0.02532841, 0.015866116, 0.01644358, -0.01727287, - -0.0037566016, -0.011847197, -0.0057120495, -0.025066214, 0.0150823975, - 0.00932071, 9.6740044e-4, 0.0026128043, 0.029416906, -0.024092693, - -0.022563245, 0.0026527597, -0.016726684, 9.887689e-4, -1.5624287e-4, - 0.015306712, -0.026465163, 0.009879119, 0.0101528885, 0.0042410893, - 0.0011912454, 0.026928382, 0.009228933, 0.020180393, -0.002756141, - -0.015199819, 0.026427861, -0.018878136, -0.01726371, 0.0013871663, - -0.008163913, -0.0045682807, -0.009233997, -0.00343767, 0.007632842, - -0.009767212, 0.019792661, -5.499716e-4, -0.043320794, 0.011236877, - -0.007322663, 0.005878726, 0.019233225, -0.0062501407, -0.015918223, - -0.009044509, 0.002275285, -0.013407808, -0.018164797, -0.0050233975, - 0.017082915, 0.003827407, 0.0038238347, -0.00927708, -0.013080965, - -0.02241399, -0.017043537, 0.015440632, -0.018361636, 0.019508125, - 0.01033267, -0.0092676245, 0.002411929, 0.017324714, 0.024534378, - 0.0143714, -0.0055120187, 0.024475424, -0.0033209384, -0.010189392, - -0.007633893, 0.0011536264, -0.012059068, -8.873094e-4, 0.013797681, - -0.020231772, -0.007477096, -0.011654592, -0.015129964, 0.002907121, - 0.01692139, -0.002190235, -0.003014961, -0.014167854, 1.4455453e-4, - 0.001846048, 0.020776898, -0.010083906, -0.02163528, 0.0053765723, - 0.010221848, -0.021382216, -0.011209273, -0.010593401, 0.0070793494, - 0.018071493, -0.008537989, -0.0284651, -0.005269437, 0.0022738404, - 0.007810315, -0.0065046977, -0.005896756, -0.0028315093, 0.024037758, - -0.035230454, -7.498893e-4, 0.015534661, 0.02594737, 0.014338999, - 0.020383101, -0.020953702, -1.6872873e-4, 0.016173132, 0.027855493, - -0.045474783, -0.006226564, -0.027409434, 0.010785937, 0.017888846, - -0.002214389, -0.011615657, 0.0024408197, -0.0120215705, -0.032722406, - 6.3479965e-4, -0.0013180673, -0.012837164, 0.010631322, 3.4571707e-4, - -0.0069608283, 0.016672343, 0.014842158, -0.0022474022, 0.011490459, - 0.022489108, -0.0077235512, 0.031401157, -0.027913336, -0.0064259972, - -0.0033857867, 0.025260981, -0.023014465, -0.007900115, 0.044162866, - 0.04589894, -0.0032086167, -0.010646546, -3.9348853e-4, 0.010642135, - 0.0075694155, 0.009777682, -0.009571221, -0.0010225993, 0.013415855, - -0.010893375, -0.0053383764, 0.013585687, -0.0010217297, 0.010548126, - 6.865786e-4, 0.007015753, -0.00780385, -0.0018265296, -0.015540437, - -0.004362296, 0.020896323, 0.008875671, 0.007622359, 0.0016709818, - -0.028740792, -0.0018991618, -0.0019038424, -0.009273641, 0.021437826, - 1.4469137e-4, -0.0244587, -0.0023152954, 0.0035296858, -0.00563506, - 0.009922524, 0.020276774, -0.0068526, -0.009245068, 0.0065069376, - 0.024100687, 0.003358349, -0.0013128722, -0.020989945, 0.002286448, - -5.8963976e-4, -0.006068148, 0.012407344, 0.015823532, 0.020687807, - -0.017220892, -0.008699701, 0.010990256, -0.013018383, 0.0083926115, - 0.002471848, -0.0010066571, 0.02008947, 0.0055474984, 0.006652663, - -0.015093531, -0.0061035953, -0.008664702, -0.002135327, -0.015368473, - 0.0091417525, 0.030506738, -0.0011112394, 0.002346844, 0.01980669, - 0.0042565847, -0.019899681, 0.017570404, 0.027454395, -0.024757082, - 0.01634532, -0.021295732, 4.4719153e-4, -0.0057600606, -0.0032294637, - -0.008011438, -0.0028682933, -0.013803838, -0.021976547, -0.004002819, - -0.014294144, -0.008945451, 0.008004848, 0.0130074425, 0.0076184673, - -0.0063547767, 0.0092666475, -0.008236966, -0.00677123, 5.560121e-4, - -0.026719412, 0.0023383219, 0.0035881537, -0.017496824, -0.008829181, - -0.0032567747, 0.004562965, 0.029276632, 0.00399835, 0.0034835294, - 0.012714733, 0.024264676, -0.018026236, 0.014150559, 0.002656908, - -0.012660691, 0.029360317, -0.007808555, 0.016916128, 0.0041297604, - -0.011423256, -0.015481853, 0.0028978558, 0.009118713, -0.0072559733, - -0.0042279493, 0.0031719648, -0.0096696075, 0.007251332, -0.008532057, - 0.002406487, 0.009414711, -0.012298442, -0.009793562, 0.023273047, - -0.005910536, 0.0010301959, 0.0036724864, 0.02131451, 0.0020362828, - 0.012895462, -0.013915044, -0.01415769, -0.009785854, -0.0036123777, - -0.008645727, 0.0070383856, -0.0135396505, -0.008255445, 0.018125301, - -0.0026323805, -0.0185865, 0.024988273 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0057274126, -0.0039014113, -0.020076877, -0.018682273, -0.01832342, - -0.0087594725, 0.0050610136, -4.0276613e-4, -0.023349328, -0.021910552, - -0.005306531, 0.002642402, -0.026323738, 0.032267857, -0.011596114, - -7.4177334e-4, 0.017904026, -0.013099254, -6.1282626e-4, 0.0034020238, - 0.02933071, 0.008384477, -0.014002855, 0.008790216, 0.016835455, - 0.0068754395, -0.014385983, -0.0030778174, -0.009726988, -0.0071705817, - 0.024674784, -0.02000673, 0.024230134, 0.0070344256, -0.0034875562, - -0.0022733433, -0.011359003, 0.015395761, 0.010461042, 0.0070283497, - 0.019166274, 0.019276299, -0.007412281, 0.0042535104, 0.016187223, - -0.008369881, 0.009665741, 0.006342338, 0.0071285055, 0.012545792, - -0.007211051, 0.02222057, -0.0070661046, -0.019890385, 0.0015227313, - -0.015081817, 0.004390404, -0.017139185, 0.012544866, 0.031999853, - 0.03267269, -0.016620059, 0.007843901, 2.863631e-4, 0.02348402, - -0.045859344, 0.0049816757, 0.020810483, 0.0077467947, -0.030740231, - -0.0070181866, 0.014583819, 0.01283428, 0.004290585, 0.021302478, - 0.01405711, 0.02350861, 0.0097815255, 0.04581925, -0.0031250243, - -0.018043812, -0.015756726, 0.006930992, -0.01362283, 0.0072130915, - -0.03654932, 0.013092669, 0.024780853, -0.0017123661, 0.01940006, - -0.0029781628, 0.0075326706, -0.009843581, -0.042887125, 0.022714328, - 0.013889372, 0.004620498, -0.018499576, -0.0018879888, 0.0258293, - -0.009945046, -0.005333686, 0.010195259, 0.0074223876, 0.014363669, - -0.019458756, -0.022738932, 0.01801261, -0.011941331, -0.0035734153, - -0.0069311424, 0.02215478, -0.05515044, -0.0072914744, -0.008849061, - 0.011687482, 0.0022091346, -0.012441462, -0.012331793, -0.022032693, - -0.0038561586, 0.02457158, 0.015476992, -0.018198792, 0.016147893, - -0.0037228663, 0.01330193, 0.030500373, 0.025421094, 0.015525364, - -0.003826364, 0.004271685, -3.699907e-4, 0.046498768, -0.020206274, - -0.005625326, 0.01636943, -0.0056590857, 0.0068977005, 0.019425573, - 0.008651113, -0.020196073, 0.00723517, -0.029952178, 0.005926161, - -0.018032061, -0.021121819, 0.0126275355, 0.0036874486, -0.013335745, - 0.022811942, -0.0016510368, -0.011938698, -0.024838122, 0.0027600133, - -0.025887204, -0.003490814, -0.0068576033, 0.019998401, 4.6627276e-4, - -0.0018607349, -0.0067177587, -0.006062841, -0.00714088, 0.011043373, - -0.0026998746, -0.014374476, 0.025658702, -0.012665805, 0.007483651, - 0.0027588902, -0.0020720155, -2.4697013e-4, -0.034215514, -0.0020485916, - 0.03801688, -0.025302049, -0.0036698666, 0.026157549, -0.0023945859, - -0.020495277, 0.0094875125, -0.028720504, 0.010325469, 0.016415315, - 0.014865193, -0.014262437, 0.0024171104, 0.013693961, 0.0073075476, - -0.0067912205, -6.609917e-4, 0.006714437, -0.0069535985, 0.00904688, - -0.0026847098, -0.00949711, 0.0057748226, 0.011426162, 0.0026238447, - 0.0037086168, 0.02180079, -0.014677774, -0.0130809015, 0.013557655, - 0.030508427, -0.0078023006, 0.0032693266, -0.011195177, 0.010504514, - 0.0119995, -0.009569601, -0.0040497524, 0.0021482818, 0.022959847, - 0.012290787, 0.006343119, 0.03351695, -0.016079515, -6.080382e-4, - 0.004840899, -0.0071738004, -0.022671701, 6.48391e-4, 0.0020613666, - 0.0042126244, -0.0015593696, 0.025757745, -0.0065827803, -0.0035795034, - -0.005998302, -0.033019826, -0.035592612, -0.011941581, -0.022279937, - -0.03024616, -0.019970832, 0.023330495, -0.009468577, -0.015747761, - 0.011128846, 7.379585e-4, 0.016935114, -0.0013583808, 0.011202676, - -0.02160267, 0.0070127132, 0.01234081, -0.0059932456, -0.04184934, - -0.022648996, 0.02253329, -0.018664053, -0.033469245, 0.01471514, - 0.0067748013, -0.005071911, 0.0043744794, 0.012751782, 0.013690791, - 0.0023705987, 0.015718302, -0.016833156, 0.025049029, 0.033592224, - -0.0068132957, -0.025411502, -0.0104726935, -0.01175255, 0.03213967, - -0.0044379365, -0.008041936, 0.013959256, -0.010977117, 5.997056e-4, - 0.012141002, 0.006592985, -0.0060495017, -0.011676514, -0.0103842495, - 0.010983483, -0.013442705, -0.040296774, -0.0023017183, 0.006035762, - -8.9015474e-4, 0.012540346, 0.013990792, -0.017684469, -0.015662342, - 0.013431232, -6.2153605e-4, -0.016109375, 0.0052858405, -0.0033402152, - 0.014799103, -0.008160011, -0.0075795026, -0.0067784595, -0.011890505, - 0.012013843, -0.0054622754, -0.0032977103, -0.029093299, -0.013844151, - 0.0018069969, -0.0032493523, 0.004953514, -0.025661508, 0.013065299, - 0.01782057, 0.006942073, -0.0016400126, -0.005334595, 0.004874531, - -0.013127821, 0.008698911, -0.030204482, -0.01599952, 0.03692882, - -0.0013101934, -0.005247526, 0.004208934, -0.009152183, 0.0058933496, - 0.006617031, 0.028688485, -0.019157141, 0.017615655, 0.001833932, - 0.049403887, -0.001102364, 0.0054375967, 0.0060814996, -0.0071922983, - 0.0042946404, 0.019313393, 0.046630394, -0.014458582, 0.026025813, - -0.024611916, -0.0027505627, -0.0109677315, -0.0013406008, -0.014700464, - 0.019859415, 0.008636621, 0.012535081, -0.010121435, 0.0063043977, - -0.00970744, -0.0021069604, -0.007554084, -5.0162635e-4, -0.0082607465, - 0.0082573015, 0.023496937, 0.032162018, -3.7609303e-4, 7.5365475e-4, - -0.00580652, -0.013108982, 0.010532775, 0.005986635, -0.01640088, - 0.03523479, 0.03288891, -3.2328416e-4, -0.0050106444, -0.021022322, - 0.016947659, -0.0057537616, -0.0026075216, 0.016588781, 0.024834799, - 0.011272446, 0.002891461, 0.017278988, 0.017479192, -0.011846043, - 0.0018420508, 0.024292247, 0.00357707, -0.0033622643, -0.011025815, - -0.03681733, 0.0014780597, -0.026350396, 0.024523808, 0.0072904704, - 0.0066898013, 0.016100777, -0.014782019, 0.017171571, 0.0012314016, - 0.0015580318, 0.012940351, -0.030880028, -6.517504e-4, 0.027931284, - -0.0021432093, 0.033142872, -0.0050837602, 0.008172623, 0.0038527583, - 0.014125621, -0.01769971, -0.012860404, -0.0020384416, -0.016400617, - 0.02259588, 9.844099e-4, -1.6316258e-4, -0.005984381, -0.009825326, - -0.0014118569, 6.4307253e-4, 0.013724076, -0.014507154, -0.014570015, - 0.005691087, 0.0023610604, -0.02116404, 0.0028975955, -0.0109295305, - -0.012774745, 0.0054304935, 0.032608736, 0.005298549, 0.011616459, - 0.0011798481, 0.0217652, 0.032574557, 0.013959615, 0.0013121421, - 0.0065194108, -0.0030579765, -0.0109782955, 0.029952489, 0.013550837, - -0.02201506, -0.026934888, 0.012878223, 0.028889557, -0.0019678425, - -0.010301473, 0.0017449345, -0.0056136884, 0.010963582, -0.014578916, - -0.015134424, -0.0274197, -0.01016251, 0.009674587, 0.00952333, - -0.007250064, 0.010000472, -0.009837424, -0.002543475, 0.0018884655, - 0.01477645, 0.018242855, 0.013487644, -0.0131301815, 0.025963616, - -0.04285534, -0.017512921, 0.013006605, -0.024899041, -0.0113354465, - -0.003716885, 0.0183394, 0.015548133, 0.004809957, 0.016963566, - 0.03338873, 0.0027506559, 0.021463973, 0.023645684, 0.0069347387, - -0.01112583, -0.018221784, 0.01651879, 0.016917609, 0.034081053, - -0.011267126, -0.026136646, -0.027917158, -0.025026731, -0.0017634504, - -0.014008143, 0.014137916, -0.0038838172, 0.012799123, 0.0027221616, - -0.0064894897, -6.881679e-5, 0.0144717395, 0.030324081, 0.017519275, - 0.01915095, 0.012675283, -0.018712463, -0.013764363, -0.005484109, - -0.015531533, -0.031233761, 0.032301206, 0.0026218363, 0.024329044, - -0.011348698, 0.009479903, -0.010410997, 0.015897239, 0.002028252, - -0.021692725, 0.016141014, -0.002338705, -0.0021168324, 6.1456813e-6, - -0.0065103415, -0.021466041, 0.018716425, 0.041335806, 0.002767045, - -6.64923e-4, -0.0077051427, -0.003479155, 0.01274439, 0.003153442, - 0.0022172285, 0.030852854, -0.017312996, 0.018529134, 0.0019980515, - 0.008785384, -1.1665264e-4, 0.001675809, 0.0016676699, 0.015630506, - 8.331215e-4, 0.0014077484, -0.005578066, 0.0073360917, -0.02803872, - 0.0045979675, 0.0104361195, 0.013083146, -0.030219892, 0.0029276137, - 0.019319251, 0.002092506, -0.011021222, -0.006408906, 0.0068485993, - -0.0017376796, 0.018643837, 0.0045582578, 0.0044045476, -0.023765441, - -0.020872073, 0.016117362, 0.011726214, -0.014295316, -0.01589049, - -0.010253933, 0.011029034, 0.0060458085, -7.1492184e-5, -0.009865854, - 0.002664376, 0.0019332133, 0.0024451974, -0.015963443, -0.00884346, - 0.0020559928, -0.0035199851, 0.01996929, 9.174902e-4, -0.00727898, - -0.0028854008, -0.013865238, -0.00229569, 0.0074441764, 0.0031570767, - 0.0019061194, 0.0050521255, 0.032595824, 0.017983496, 0.025013842, - 0.006734876, 0.02419417, -0.0016515733, 0.008831221, 0.011236827, - -0.044302087, 0.00648212, 0.0034956832, 0.03930346, -0.011792919, - -0.017265687, -1.653145e-4, 0.009697191, 0.016306017, -0.010457448, - -0.0027078583, 0.006327729, -5.517081e-4, 0.0050679795, -0.0071241884, - -0.0061543356, 0.0047272826, 0.027085412, -0.009922787, 0.0021248746, - -0.0376944, 0.007722427, 0.006305585, 0.025273407, 0.0032360202, - -0.01395764, 0.013945841, -0.010874487, -0.01446568, -0.011015774, - -0.031489674, -0.004277778, -0.013774828, 0.012405486, -0.0030079954, - -0.004812204, -0.029779354, -0.003981213, 0.012685198, -0.0059835925, - 6.140139e-4, -0.02332088, -0.01283091, -0.019601347, -0.022858066, - -0.0010968113, 0.0019185453, 0.017675368, 0.02300449, 0.01800313, - -0.0063247504, 0.0117310155, 0.008427105, -0.012748087, -0.012569496, - -0.022846486, 0.00975589, -0.002454939, -0.008103404, 0.0058311005, - 0.008437956, -0.012285498, 0.016972963, -0.012103806, 0.017188068, - -0.0024543097, 0.044376645, 8.069149e-4, -0.0035864622, -0.0012081657, - -0.0067701633, 0.014400539, 1.8670064e-4, 0.0022504989, 0.0059815696, - 0.0068410416, 0.006250492, -0.0115566095, -0.0016321813, 0.009686432, - -0.0099429665, -0.009285625, -0.0012380277, -0.0026166013, 0.021200065, - -0.02788291, -0.002014003, -0.018794363, 0.0060210866, -0.023745172, - 0.0038677962, 0.005553591, 0.018053345, -0.024892204, -0.007231535, - 0.024036072, -0.016519643, 0.011770422, 0.006961105, 0.025997633, - -0.0069416715, 0.00529897, 0.018728958, 0.0036957082, -0.00543472, - 0.010025222, 0.024189672, -0.021382315, -0.025810374, -0.0064740186, - -0.009316704, -0.0024250718, 0.016515061, -0.004677232, 0.0031716435, - 0.0013968662, -0.0053553577, -0.011987702, -0.019219518, -0.0042813173, - -0.0091515845, 0.016675668, -0.021663964, 0.013574207, 0.025846295, - 0.02102515, -0.011569224, -8.788279e-4, 0.004665828, -0.010504808, - -0.014234352, -4.0867276e-4, 0.025457703, 0.013338814, 0.024433209, - 0.014916684, -0.014819519, -0.022899007, 0.007859236, -0.01418967, - 0.009083695, -0.017376773, 0.0018128809, -7.297257e-4, 0.0033790667, - 2.965506e-4, -0.013131894, 0.008868111, 0.019600954, 0.020842753, - 0.006230876, -0.01489394, -0.0011257081, 0.027211117, 0.0039552096, - -0.010173971, 0.014677089, -0.0058501097, 0.015693175, -0.0051639187, - 0.02398554, 0.0064495658, 0.0021586325, 0.008804351, 0.025331793, - -0.020802597, -0.0018534503, 8.166074e-4, 0.023333851, 0.019352483, - -0.024127107, -0.00614544, -0.004283955, -0.01691922, -0.023812572, - -0.0031261963, -0.0089169275, 0.03595691, -0.0070567406, -0.0021290483, - 0.0065128114, -0.0073716613, -0.0028377674, -0.020322885, 0.0011067868, - 0.042721666, -7.8020105e-4, -0.0068253065, 0.007448044, -0.009737273, - 0.0053784517, 0.011398675, -0.008369142, 0.02598485, -0.027610574, - 0.004163142, -0.012179975, 0.0030513797, 0.007589441, 0.016767459, - 0.008238108, 0.0018261112, 0.029037144, -0.022579212, -0.0023860727, - 0.02115823, -0.031855933, -0.010095275, 0.029161753, -0.0029321676, - -0.008548635, -0.034957737, -0.011192556, -0.013266767, -0.0011892503, - -0.03278001, 0.01885732, 0.013371776, 0.016896592, -0.021401545, - 0.0064100176, -0.008857132, -0.019526716, 0.014469135, -0.0016543152, - 0.0068119657, 0.0070290077, -0.011452062, -0.01659014, 0.020068102, - -0.016692596, 0.01724109, -0.0051347534, -0.011195401, -0.015504568, - 0.0075091748, -0.009906151, 0.010264324, 0.0015344655, -0.013057014, - 0.010794126, 0.016958427, -0.011778834, 0.003206022, 0.01094007, - -0.018103134, 3.329046e-4, -0.038028855, -0.0026163554, 0.020571675, - -0.008041839, 0.007994741, 0.015522831, 0.013515848, 0.004648311, - -0.0033375414, -0.025731234, -0.0031750633, -0.005421851, -0.005778003, - 0.028040266, 0.02476875, -0.0016534774, -0.003290334, -0.011389291, - 0.012188941, 0.023562197, 0.0041674045, 0.0053347377, 0.022789732, - 0.023094872, 0.019940132, 0.00862206, -0.014397049, -0.0010165938, - 0.012858892, 0.016474368, 0.010131223, 5.2494976e-5, 0.034319665, - 0.0059988615, 0.00949985, -0.004304567, 0.0021786182, -0.0043756957, - 0.014977318, -1.5435698e-4, -0.012866309, 0.023539284, 0.0073785526, - 0.0088310335, -6.1631657e-4, 0.00838351, 0.017845308, 0.04056252, - -0.0066075935, 0.024257693, -0.003375171, 1.8012914e-4, 0.0019438723, - 0.002740101, 0.01650741, -0.033191707, 0.0012713046, -0.009023696, - 0.021585975, -0.025688445, -0.004026936, 0.0152236, -5.141156e-4, - -0.010967858, -0.008857502, 0.014246654, 0.02128743, -0.022620475, - 0.003735903, 0.024090294, 0.005579864, -0.015249991, 0.0086179115, - -0.004143261, -0.014177159, -0.0046503926, 1.4307431e-4, 0.008665232, - 1.956561e-4, -0.010094195, 7.116909e-4, 0.0052720415, 0.006349048, - -0.019017596, -0.006117469, -0.023736985, -0.0022554984, -0.036508206, - -0.04022602, 0.016374812, 0.007749418, 0.032659948, 0.0014566235, - 0.027195524, -0.022786692, -0.0014940376, 0.0093802465, -0.029772704, - 0.016657474, 0.010986357, 0.021070298, 0.010150641, -0.006265107, - -0.006143726, 0.026800798, 0.021920098, 0.0023751536, 0.01197026, - -0.011743312, 0.019916939, 0.0032462806, -0.025859684, 0.010059523, - 0.0075771166, -0.009041694, 0.024313226, 4.2295596e-4, 0.009252851, - 0.0026025863, -0.009111231, 0.006844166, 0.016661968, -0.018615967, - 0.0099462345, -1.08440894e-4, 0.014551706, 0.0015287079, 0.004965283, - -0.0034098565, -8.9626614e-4, 0.0040068794, 0.008660933, -4.437746e-4, - 0.0075726756, 0.0065297973, -0.01652351, -0.016607353, -0.016518226, - -0.0057653696, -0.020601556, 0.006007005, 0.0040715286, -0.012257899, - -0.006751538, -0.01809434, -0.018430619, 0.0056568324, 0.026576519, - -0.001374235, -0.007052393, -0.008719957, -0.015420328, 0.014938965, - 0.011948534, 0.014251365, 0.005504865, 0.011799516, 0.013116407, - -0.02997223, -0.01377253, 0.018182566, 0.02774311, -0.013211317, - -0.009022932, 0.012084363, 2.6478808e-4, -0.0027085794, 0.01165888, - -0.02936386, -0.0029525976, -0.0030470302, -0.016399736, 0.023401584, - -0.009031112, 0.006544106, -0.012827152, -0.016534284, -0.0031676851, - 0.01234488, 0.022779798, -0.028204238, -0.007264453, 0.0063040126, - 0.034574855, -0.018917078, -0.006718295, 0.0070233424, 0.0040162127, - 0.006259614, 6.943756e-4, 0.001018466, -0.0054716216, 0.013484839, - -0.015487698, 0.008670343, 0.011277205, -0.0051565845, 0.007946233, - -0.032509953, 0.0033759854, -0.015475208, 0.016984938, -0.012684673, - 0.0087996675, 0.019384459, 0.009269181, -0.0048584356, 0.0112925405, - 9.6889795e-4, 0.010285614, 0.0089365365, 0.004089791, -0.007828335, - -0.0026079856, -0.013567654, 0.028515857, 0.01991555, 0.01180701, - 0.0032421588, 0.0061751534, 0.012897113, 0.019043555, 0.0031127392, - -0.027393108, 0.002224737, -0.015743725, -0.030557862, 0.030420644, - 0.0044866866, 0.021677058, -0.0052670073, -0.0015638684, 0.007432338, - 0.028915329, 0.0012008543, 0.006148345, 0.022655256, -9.77053e-4, - -0.013517739, -0.010034655, 0.0057351547, -0.00438667, -0.00620786, - -0.02465786, -0.0036397977, -0.032610286, -0.035091724, 0.015726833, - 0.018049333, 0.0037397598, 0.003175768, 6.8727095e-4, -0.020084996, - -0.023003265, 0.032002255, 0.009347382, 8.410968e-5, 0.010247004, - 3.217917e-4, 8.5624604e-4, -0.0037246684, 0.0026710334, -0.012486337, - 0.0026258875, -0.005993253, -0.00848649, 0.007012058, 0.024421036, - 0.0051498613, 0.0036033748, 0.028226877, 0.011040447, 0.0025634202, - 0.030103529, -0.009577779, 0.019727288, 0.0043892297, -0.020001737, - 0.0011957592, -0.016495297, -0.008559211, -0.011468711, -0.0041269986, - 0.005470781, 0.0075273286, -0.018537588, 0.031896394, 0.015693277, - 0.018148746, -0.017465895, -0.009108863, -0.0035884243, -0.003558976, - -0.017457858, -0.021338047, 0.022266727, 0.011373976, -0.01466968, - -0.0023456775, 0.0073136985, 0.014420767, -0.030677982, 0.008174504, - 0.012384309, 0.0024479285, 0.008595098, -0.0014523224, 0.014194721, - -7.0997246e-4, -3.5793727e-4, 0.010047067, 0.02095865, 0.015402288, - 0.022992982, 0.02546956, -0.01207801, -0.015853869, -0.01999568, - -0.0018018974, -0.0052876943, -5.3697557e-4, -0.009328911, -0.028289966, - -0.019995622, 0.026576614, 0.0010734105, -0.019630343, -0.022016127, - 0.0024281444, -0.025123227, 0.016842255, -0.0018961893, 0.0063402313, - -0.024759673, 0.032494154, 0.020250376, -0.012080269, 0.025583109, - -0.031931996, 0.017539442, -0.0024554688, -0.0013496651, 0.012143318, - -0.02228647, -0.00855741, 0.018812161, 0.011219742, -0.019783994, - 0.0031516505, -0.0032548176, 0.0107871685, -0.0073308577, 6.448626e-4, - -0.0019704914, 0.011971141, 0.022797706, 0.004481153, 0.017575882, - -0.0036523654, -0.0054404764, -0.016947556, -0.035350144, 0.0045332434, - 0.0121700615, 0.0023259046, -0.03261511, -0.007978437, 0.015196944, - -0.015623563, 0.004966928, 0.0055662203, -0.016366297, 0.01985516, - 0.012899279, 0.018595427, -8.9930836e-4, -0.0047409297, 0.0010851878, - 0.0030961467, 0.011160036, -1.1213087e-5, 0.013171322, 0.00651201, - -0.012489247, 0.007914389, 0.007888107, -0.024670117, 0.006108907, - -0.006809672, 0.011237611, 0.010528816, 0.025416464, 0.016352206, - -0.0066332035, 0.0055166124, -0.011211492, -0.049996942, 0.021849114, - 0.0096918605, -0.016391924, 0.022158636, -0.0033480376, -0.002646726, - 0.013258695, 3.2373462e-4, 0.014179403, 0.013595413, 0.00970486, - 0.015347258, -0.016906256, 0.019884922, 0.018819626, -0.03009638, - -8.0566836e-4, -0.01775802, -0.008435309, 0.0043547237, -0.0143565675, - -0.041752875, -0.004434424, -0.012128688, 0.0026814998, -0.03248637, - 0.0051772795, -0.0050543644, 0.005790737, 0.004835899, -0.015068823, - 0.03977049, -0.021044325, -0.008933367, -0.0058454033, -0.013639605, - 0.016781254, 0.00931529, 0.0029280172, 0.02354284, 0.027314134, - -0.013154733, 0.010211188, -0.028809555, 0.0035730002, -0.003569565, - -0.015322284, -0.014918878, 0.019620135, 0.015259745, 0.018375153, - -3.8863e-6, 0.006118283, 0.0057982537, -0.021082398, 0.0045071878, - 0.008555754, -0.023305735, 6.4379576e-4, -0.003896134, 0.0123671675, - 0.030038647, -0.007544697, 0.009614426, 0.012016157, 0.0011680152, - -0.0013291663, 0.021603502, -0.020781692, 0.0062045273, -0.027366566, - -0.0019785832, -0.00594446, -0.008317182, -0.038160477, -0.0044591883, - -0.011049531, 7.4028637e-4, 4.0207882e-4, -0.012271677, 0.010244539, - 0.01891709, 0.02902791, 0.006284025, 0.0059887203, 0.015623139, - -0.012165747, 0.01452505, 0.030669747, -0.013334688, -0.024545288, - -0.009860113, -0.014573393, -0.0026814912, -0.004361067, 0.0034471145, - -0.0031324052, -0.0024149683, 0.028102815, 0.002619328, 0.013095058, - -0.0058768666, 0.007282219, 0.011928237, -0.00933825, -0.004249865, - 0.013349388, 0.0031644125, 0.0065413555, 0.014878203, 0.021364218, - 0.02956489, -0.008012349, 0.012568381, 0.0032536048, -0.016754493, - 0.005389411, 0.011780448, -0.016472552, 0.010467414, -0.03876374, - -5.3985196e-4, -0.006516399, 0.00832011, -0.019634344, 0.0072141048, - 0.010240005, -0.0035662202, -0.012613061, 0.01305065, 0.0017168589, - -0.008443738, -0.03421654, 0.015405095, -0.017032517, -0.014763993, - -0.006243818, 0.0054803346, -0.0021657094, 0.0043809665, 0.011148486, - -0.0051173, 0.015372062, -0.005515464, -0.02289811, 0.031421036, - 3.0275734e-4, 0.001393593, -0.013008463, -0.004913394, -0.0087085245, - -0.017700206, 0.019332515, 0.04570578, -0.0084052645, 0.01964438, - 0.013956671, -0.014851209, -0.008539101, 0.006177694, -0.0070483075, - 0.033196624, -0.024047561, 0.0013645892, -0.022766167, -0.0047847666, - 0.015512413, 0.013241273, -2.7491583e-4, -0.009407797, -0.0022458725, - -0.022799555, 0.018808194, -0.016947577, -0.008381879, 0.0018734565, - -0.022473507, 0.020981818, 0.0022184849, -0.032052074, 0.0026604473, - 0.021860676, 0.0038458584, -0.013873091, -0.028907843, -0.0038106106, - 0.033146802, -0.013412147, 0.0032940903, 0.004265334, -0.023265796, - -0.010507686, 0.008027996, -0.0040547075, -0.013622548, 7.385088e-5, - -2.7020127e-4, -0.015222247, 0.00455925, -0.0045989314, 0.02572944, - -0.014916054, 0.012754005, -0.0037249674, -0.012169557, -0.009341897, - -0.004834764, 0.01187956, -0.0041463575, 0.0047080494, -0.013298249, - 0.010927989, 0.0021588765, -0.00814215, -0.015297524, 0.039393388, - 0.023004718, 0.0024229928, -0.011293293, -0.0085867075, -0.0074422113, - 0.0026618307, -0.009440713, -0.0050027003, 0.008412849, 0.01433429, - -9.1962196e-4, 0.003625751, 0.019252233, 0.011264637, -0.022103054, - -0.013347728, -0.010462373, 0.013019619, 3.8829132e-4, 2.726581e-4, - -0.020646093, -0.017090801, -0.010180179, -0.00417918, -0.001724167, - -0.0045709494, 0.027517723, -0.024301542, -0.0012778561, 0.0128674675, - -0.01779753, 0.0058939555, -0.025792629, -0.0060178684, -0.028793339, - -0.034890383, 0.011356798, 0.013257661, 0.01662778, 0.00542299, - -0.02478811, -0.018173493, -0.009338432, -0.011063577, 7.3039596e-4, - -0.029878708, 0.0020976893, -0.027089309, 0.0037354722, 0.006456579, - 0.00848171, 0.014364175, 0.0076707103, 0.0015886787, 0.005442169, - -0.016479777, -0.0280137, -0.012797266, -0.009980844, 0.012939377, - -7.418131e-4, 0.0028452666, 0.0010265189, -0.004772693, -0.009425281, - -0.0012532426, -0.013099417, 0.02818266, -0.005871627, 0.010615393, - -0.031174699, -0.032526113, -0.007832587, -3.1486005e-4, -0.0028677525, - -0.0049380227, -0.012511448, -0.03137893, 0.022256112, -0.008798225, - 0.0012129153, 0.009172418, -0.0017606781, 0.0124487365, -0.0021004218, - 0.03404584, -0.020440219, 0.0030455063, 9.2259166e-4, 5.5809517e-4, - -0.026803892, 0.007921924, -0.016801279, -0.008308435, -0.018961387, - 6.311954e-5, 0.0040608603, 0.008124534, 0.018720204, -0.009315845, - 0.007996217, 0.032030795, -0.008288725, -0.0036211405, -0.0078042573, - 0.02970021, 8.956428e-5, -0.0050344625, 0.042404454, -0.0024097578, - 0.011394523, 0.009756897, -0.0061283293, 0.024125265, 0.026140857, - -0.015362861, -0.006665094, 0.0074272524, 0.0022337206, 0.0046913596, - -0.010369068, -0.0157229, -0.019891765, 0.002173598, 0.019022712, - 0.009114484, -0.0046955454, 0.023998283, -0.017814267, -0.016233753, - 0.0041954773, 0.03288288, -0.028208282, -0.0074580177, 0.003214038, - 0.0125156855, -0.022106556, -8.469071e-4, -0.0044990256, -0.001455369, - -0.015130355, 0.01384865, 0.010796198, 0.004206753, -0.017067172, - -0.011128285, 0.008134775, -0.01637674, -0.0026956506, -0.0016165555, - 0.015098278, 0.01160402, 0.0024859097, 0.010047475, -0.005264011, - -0.007291351, -0.008588207, 0.0073059113, 0.005518285, 0.014921697, - 0.016690182, 0.0029062608, 0.004517509, -0.027243866, 0.003323903, - -2.2301136e-4, -0.018880533, -0.0067903497, 0.003851318, -0.0033896228, - 0.0039970526, -0.0014249496, -0.010621507, -0.0050478685, -0.0018342636, - -0.004450854, 0.02327574, 0.026562141, -0.019444501, 0.003759653, - 0.019187834, 7.4638455e-4, -0.022657577, 8.295563e-4, 0.038386073, - 0.022334415, 0.0022754122, 0.0036471675, -0.0056395703, 0.01422364, - -0.005353342, -0.008456932, 0.002425737, -0.0044595264, -0.0056016077, - 0.02776221, 0.0044216723, -0.0066068703, 0.018454483, 0.0019571516, - -0.027832361, -2.0073775e-4, -0.0012594006, 0.042272117, -0.029434195, - 0.015459117, -0.009383152, -0.035775978, -0.012807495, -0.02371409, - -0.0047995187, 0.031738058, -0.005602047, -0.007035042, -0.02564824, - -0.0022814195, 0.016121157, -0.024271468, -7.2252733e-4, -0.016657025, - 0.026983332, 0.0010900886, 0.018109212, -0.020505162, 0.0097503085, - -0.0059549427, 0.02433345, 0.02409388, -0.024860825, 0.0015132676, - 0.03461624, 0.0046109664, -0.0044036475, 0.0051985946, -0.0012412696, - -9.0389384e-4, -0.011377822, 0.0054395893, 0.0059017288, 0.013256312, - 0.026951622, 0.01170221, -0.005165463, 0.008788513, 0.010552334, - 0.009466931, -0.027980851, -0.013510031, 0.025780631, -0.02556248, - -0.001938127, -0.0014092595, -0.021328323, 0.025702633, -0.0027765324, - 0.0059275506, 0.013353254, 7.268593e-4, -0.010428381, -0.012687495, - -0.0070784707, 0.024819445, -0.034788016, 0.013480373, -0.02249504, - 0.023777714, -0.006314736, 0.029308118, -0.0368601, 0.0060466984, - -0.026091157, -0.013006161, -9.2664204e-4, 0.008722104, -0.024087096, - -0.014820971, 0.012551936, -0.024753109, 0.015642462, -0.0090649305, - -0.009237717, 0.028918471, 0.012851293, 0.009290602, 0.016219584, - 0.017697252, 0.002578926, 0.009423102, 0.0146941915, -0.02421852, - -0.0109138815, -0.015232256, -0.008478977, 0.039095458, 0.027662532, - -0.017786799, 0.009831682, 0.015119428, 0.004616008, 0.0020869938, - 0.0021524914, 0.010605987, -0.010058097, -0.010233811, 0.015546573, - 0.005863884, -0.01643566, -0.0035268082, -0.014021933, -0.019106356, - 0.0063646142, 0.0040212795, 0.0027574755, -0.029257713, -0.0077710897, - 0.0025727933, 0.014375025, -0.014629083, -0.015678765, -0.002586811, - -0.006062725, -0.024639254, -0.0035317235, 0.01554253, -0.004052625, - -0.019822452, -0.012763538, -6.5591076e-4, -0.003639548, -0.015515189, - 0.004687581, -6.32889e-4, 0.0038780486, -0.0045576133, -0.019407792, - 0.01495464, 0.0031028953, 0.0024774543, 0.0316275, -0.016061055, - 0.0042750863, 0.014575797, 0.032665875, -9.159982e-4, -0.01754665, - -0.0061235945, 0.015635503, 0.020529727, -0.017477538, -0.015573511, - -0.017674247, 0.012257952, 0.0096396655, -4.367226e-4, -0.010013015, - 0.007657255, -0.010405776, 0.01642611, -0.01504027, 0.0077949446, - 0.0044598733, 0.029507836, 0.0040805354, 0.009319594, 0.010247846, - 0.01690244, -0.002561956, 0.00147643, 0.010154755, 0.0031395766, - 0.0046101403, -0.011160222, -0.009283653, 0.008006624, -0.022191199, - 0.025100226, 0.013552502, 0.009839714, 8.6433976e-4, -0.022297062, - 0.028881174, 0.0016889329, 9.7620673e-4, -0.0062473854, 0.0061344868, - -0.013095591, 0.006562462, -0.004201893, -0.03201949, 0.026672602, - -0.004099946, -0.015969697, -0.015769536, -1.7695844e-5, 1.6933719e-4, - -0.022284169, -0.016961075, -0.01018249, 0.008508607, -0.004506354, - 0.009794122, -0.032294545, 0.008105681, 0.01731774, 0.011934816, - -7.6119864e-4, -0.018225411, 0.006852431, 0.008805348, 4.7448662e-4, - 0.012960878, -0.0352611, 0.020181801, 0.010591808, -0.017820556, - -0.006256463, 0.008782201, 0.0047773696, 0.022986291, -0.0012938122, - 0.015452742, -0.0020133771, -0.01659581, -0.017210737, 0.01367271, - -0.005780785, -0.017432505, -0.010041961, -0.01779447, -0.0012007696, - 0.0019287409, -0.032459684, 0.038426742, -0.0057716323, 0.003568725, - -0.0226427, -0.009687531, 0.007810423, 0.0065224897, -0.015281393, - 0.021108825, -0.005341702, -8.0077426e-4, -0.011175703, 0.0027177073, - -7.925669e-4, -0.01239954, 0.006451429, -0.0035894294, 0.0071856226, - 0.012601233, -0.011131303, -0.005873162, -0.0102978395, 2.5632398e-4, - -0.011427787, 0.005755356, 0.016626917, -0.0115135815, -0.030876547, - -0.016500402, 0.009408307, -0.0060848524, -0.014434993, 0.030883849, - -0.011975874, -1.7077127e-4, 0.0046800007, -0.0037502386, -0.017549999, - 0.0037672075, -0.023526412, -0.014845359, -0.00870414, -0.0053072586, - 0.0054665273, 0.033158157, -0.010425556, 0.0076666074, -0.005891745, - 0.021731088, 0.0021451896, 0.03232559, -0.015981399, -0.027448641, - 0.0042994297, -0.0017900353, -0.01141846, 0.0035012795, -0.005187682, - 0.005156715, -0.0050287535, -0.034074463, 0.014287591, -0.019404296, - 0.01516867, -0.02039068, -0.01566056, 0.034179293, 0.008033721, - -0.031985577, 0.022975901, 0.038115863, 0.029291922, -0.031627275, - -0.0026632121, 0.009136931, -0.00927273, 0.007243035, 0.011848347, - 0.0014203853, -0.007051012, -0.014152098, -7.0323993e-4, 0.021788603, - -0.010416566, 0.016056152, 0.010187399, -0.0064730565, -0.018466627, - 0.003726402, -0.0020305861, 3.3132915e-4, -0.005448271, 0.007917617, - 6.1177503e-4, -0.01929498, -0.005302485, -0.017070826, -0.012906746, - 0.02598675, 0.006327628, -3.421072e-4, 0.0050656884, -0.021682393, - 0.017530816, 0.015413015, -0.019433951, 0.0029459894, -0.02424076, - -0.0013400683, -0.006224108, -0.014535974, -0.024276257, -0.018306343, - -0.010573117, -0.0037046494, 0.009622662, -0.0019772034, 0.013383557, - -0.017287146, -0.018767396, -0.0089124115, 0.015385891, 0.025625765, - -0.016496412, 0.008641108, 0.016250832, 0.007912453, 0.014225937, - 0.0069677467, -0.0032668817, 0.0012941473, -0.0030891707, -0.0032423534, - 0.007471739, -0.020375561, 0.0074897604, 0.013336595, -0.0031840003, - -0.011666056, -0.010836755, 0.0011539974, -0.016247967, 0.027532812, - -0.018884014, -0.0122460015, 0.0024324742, 7.2831544e-4, -0.0061637517, - -0.008896854, -0.010558221, 0.011654171, -0.022654306, 0.01880617, - 0.0014938168, 0.0067510544, 0.0062784133, -0.034559224, -0.033382297, - 0.0014938578, -0.0041106613, -0.0037428895 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.04842414, 0.028889263, -0.0756724, -0.0045958664, 0.086110465, - -0.020109527, -0.035924368, -0.0067494577, -0.0322218, -0.018580655, - 0.035790488, -0.0017111338, -0.015607895, -0.0042723883, -0.005048237, - -0.012042309, 0.022929132, -0.010096723, -0.0011335956, -0.005307832, - 0.010023037, 0.017484874, -0.022175716, -0.0529214, -0.04652335, - 0.06372821, 0.08867387, -0.02450625, -0.021576528, 0.022753095, - -0.0015411696, 0.004537915, 0.015454319, -0.031991977, 0.061418578, - 0.0075831003, 0.019132664, -0.036222517, -0.068218715, -0.05428322, - 0.011421987, 0.01660112, -0.010722298, 0.05911602, -0.07068465, - 0.034961473, -0.0486609, 0.0019604147, -0.013388368, -0.06619964, - -0.0012072602, 0.0026744653, -0.027706692, 0.0073490515, -0.0207775, - -0.0030502256, 0.0029919352, 0.020032678, -0.04767518, 0.022328127, - -0.0358607, -0.0067128534, 0.01841705, -0.05106774, -0.04932595, - -0.020973425, -0.043874964, -0.009034181, -6.698129e-4, 0.060181018, - 0.031910602, -0.012823049, 0.048243735, 0.015462005, 0.031924088, - 0.060083065, 0.015814167, -0.025853194, -0.021499602, -0.061720658, - -0.0038174826, -0.012449374, -8.791028e-5, -0.06797349, 0.015774397, - -0.010341886, -0.009468753, -0.021895291, 0.059792362, 0.07124371, - 0.027236555, -0.05079127, -0.003596056, 0.08961678, -0.013880695, - -0.015291006, -0.04630903, 0.016647419, 0.013698013, -0.06284565, - 0.010263127, -0.0032679744, -0.05749921, -0.0083051, -0.031047868, - 0.046391603, -0.043291263, 0.008525284, -0.0025852735, 0.0289495, - -0.028123515, -0.07347948, -0.015151049, 0.029532373, -0.023522476, - 0.060053747, -0.0069337445, 0.012569836, -0.010215094, 0.035522163, - 0.01956282, -0.03411177, 0.060004544, 0.032089386, 0.012924263, - -0.0025108103, -0.017985169, -0.018094953, -0.015329876, 0.008394022, - -0.023821374, 3.150154e-4, -0.03684758, 0.010531258, 0.011701617, - 0.005313405, 0.023202406, 0.025847578, 0.048923265, 0.03900807, - 0.062484026, -0.048542015, -0.027672885, 0.018540727, 0.020305319, - -3.8712285e-4, -0.02878389, 0.0015566327, -0.012728733, 0.009503618, - 0.015275789, -0.046405915, -0.02557025, -0.012449186, -0.030573837, - 0.06646419, 0.02665697, -0.0155424625, -0.0049302, -0.012692023, - -0.026654363, 0.013327192, -0.009411774, -0.0015188371, -0.012404395, - -0.0011805563, -0.07105502, -0.04529157, -0.0037863385, -0.038194936, - -0.013542805, -0.011689891, -0.005591986, 0.021198679, -0.035747997, - -0.006289615, -0.021995427, 0.031997576, 0.030683644, 0.03186835, - -0.016306337, -0.0078809615, 0.00985327, -0.006744281, -0.029883478, - -0.049158003, -0.017128246, 0.0028645738, -0.040518884, -0.03142157, - 0.035574224, -0.009780276, 0.01751863, -0.013681962, -0.035946973, - -0.055903316, -0.026844263, -0.047491424, -0.03181081, -0.027020304, - -0.04556919, 0.002436204, 0.008021785, 0.0031423757, -0.010430409, - 0.0048784316, 0.033431638, 0.043903317, 0.043917883, 0.026461072, - -0.03361428, 0.009140203, -0.048043475, -0.005655229, 0.014851015, - 0.0016444296, 0.052618608, 0.03527069, 3.3472155e-4, -0.01962806, - -0.04196054, -0.023399897, -0.034699343, -0.054798845, 0.008722637, - -0.0052264896, 0.017077662, -0.03199434, -0.013833299, -0.034907106, - 0.012229649, -0.012573972, -0.022469971, 0.005530536, 9.023686e-4, - -0.014693364, -0.0031697452, 0.039236847, -0.03818819, -0.033368476, - 0.032100666, 0.041810196, 0.004814224, 0.032217022, -0.026052328, - 0.038669497, 0.018657975, -0.044688366, -0.042230178, 0.03334569, - 0.0018302357, -0.041788593, 0.0042656115, 0.043127798, -0.032639775, - -0.0319967, 0.0034964504, -0.014886748, -0.015066554, -0.047603436, - -0.008238679, 0.008880502, -0.027388204, -0.038652875, -7.823945e-4, - 0.0012689556, 0.011352077, -0.011784778, -0.00838913, -0.052848175, - -0.034895144, 0.0056869457, -0.08809772, -0.025679328, -0.016667642, - -0.008796494, 0.015664918, -0.048614062, -0.014206578, -0.016476419, - -0.014214098, 0.023777243, 0.058758978, -0.03330739, -0.02564766, - 0.0046159322, -0.023337761, 0.017009078, -0.0027929319, 0.032938983, - -0.009570986, 0.030702982, 0.011156072, 0.013116785, 0.01384787, - 0.006603752, -0.047027078, 0.0043939925, -0.014317128, 0.06650977, - -0.008305375, -0.021534339, 4.921821e-4, 0.004670181, 0.007830765, - -0.07499782, -0.049638838, -0.012553692, -1.3198105e-5, -0.024177859, - -0.04642128, 0.019590106, 0.012089729, -0.02739178, 0.067774184, - 0.035269618, -0.05158233, 0.0071747033, -0.0066083386, -0.055915114, - 0.024260756, 0.011483727, 0.029750524, 0.0120905405, 0.0069294567, - -0.028824395, 0.007501595, 0.017640667, -0.021491908, -0.03143688, - -0.0017808963, -0.0032477484, -0.04734477, -0.005527665, -0.019597374, - 0.042694487, 0.007247987, 0.02370258, -0.0036438983, -0.012728133, - -0.04454781, 7.362929e-4, -0.0047595007, -0.06715289, -0.05862402, - 0.008791519, -0.035921063, -0.009321249, 0.020562356, 0.0052136816, - -0.053813662, 0.042876024, 0.002814203, -0.017973788, 0.05340611, - -0.01278771, -0.005795117, -0.06812947, 0.012882912, -0.07809959, - -0.010281506, -0.042608764, 0.016493717, 0.02034966, -0.0010168866, - -0.009246485, -0.056692768, -0.062420376, -0.006837698, 0.019821076, - 0.03934342, 0.016436124, -6.52918e-4, -0.035371155, -0.02735239, - 0.03431422, -0.04219333, 0.020068148, 0.007345556, -0.007883975, - 0.058001075, 0.021052366, -0.0063327374, 0.015123161, 0.013785654, - 0.010920016, 0.02827909, -0.021005483, -0.01908189, 0.035300143, - -0.01760667, 0.028019112, 0.0018828069, 0.004788074, -0.008853981, - 0.032367617, 0.017240485, 0.017318966, -6.6866865e-5, 0.017876439, - -0.009651979, 0.019787684, -0.05241382, 0.044726513, 6.642579e-4, - -0.0049356264, -0.024299635, 1.1209271e-4, 0.009729928, 0.008964031, - -0.0037240495, 0.017809102, 2.7174616e-4, 0.006995649, 0.004070296, - 0.01711485, -0.0101962825, -0.056909002, 0.02035008, -0.0056725, - 0.044631105, 0.0046294564, -0.0107964445, 4.4631565e-4, 0.045002293, - -0.020351186, 0.04607463, 0.019815313, 0.012450164, -0.040169228, - 0.041159347, -0.035062414, -0.022363376, 0.026559543, 0.044367943, - 0.022368494, 0.008265487, 0.057903122, 0.028251458, 0.02535886, - -0.035686348, -0.00782731, -0.011053813, 0.017949611, -0.05962891, - 0.017489238, -0.0075317174, 0.040066104, 0.006082466, 0.059089955, - 0.018036537, -0.06827218, -0.03289871, -0.011793672, -0.03591918, - 0.028433176, -0.0010025739, 0.059562743, -0.038584307, -0.01156424, - 0.037899073, -0.024270903, -0.004952106, -0.014983159, -0.01268893, - -0.040040914, -0.0222948, -0.030126045, -0.02838732, 0.014812206, - -0.028860848, -0.022901544, -0.09228065, 0.038280025, 0.022929754, - -0.016985688, -0.031085484, 0.011093221, -0.060059056, -0.015423385, - 0.035903387, -0.013386517, -0.006578776, -0.020709954, -0.04800909, - -0.017592674, 0.023112677, 0.011455632, -0.04615143, -0.030219426, - -0.001320365, 9.437897e-4, -0.030180052, 0.009125483, 5.973486e-4, - -0.024291726, -0.0011581606, -0.02697789, -0.021730825, -0.0075991265, - -0.068714686, -0.009686859, -0.033752386, -0.03396404, 0.08106492, - 0.0032798536, 0.009180271, -0.070460215, -0.032027207, -0.010482979, - -0.033909842, 0.0081985835, 0.043649226, 0.07502271, -0.026593339, - 0.0036248788, 0.036514677, 0.03270871, 0.035833143, -0.04704414, - 0.03369606, 0.033998195, -0.021172678, 0.010335633, 0.028450405, - 0.0033973192, 0.03258843, 0.028638173, 0.0070604864, -0.026561068, - -0.0130337, -0.035739277, 0.012241383, -0.03544898, 0.0096975295, - -0.048800875, -0.06877193, -0.017888756, -0.010716014, 0.0025756615, - 0.045075662, -0.05623867, -0.01887094, -0.013317188, 0.029043343, - -0.03349676, -0.035635013, 0.012239955, -0.008083437, 0.04150751, - -0.02951979, 0.022558132, -0.033100825, -0.02494365, 0.03126664, - -0.012594675, 0.034262065, 0.034597024, -0.01566174, 0.07212697, - -0.038575936, 0.0034854328, -0.03138855, 0.038323592, -0.002888064, - -0.006126539, 0.012708548, -0.0570016, -0.049162135, 0.033816364, - 0.037885748, 0.018170882, 0.023317032, 0.00792117, -0.019381294, - 0.026017541, 0.022930175, 0.012979401, 0.0525742, -0.02966104, - 0.00865039, 0.0038653654, -0.026014606, -0.059302725, -0.013051331, - 0.008455943, 0.0010533129, 0.0053663636, 0.023727434, 0.0075560394, - 0.0060746227, 0.0018554544, 0.08128589, 0.020894147, -0.053818256, - 0.02680676, -0.034720827, 0.011566993, -0.021984281, 0.026223017, - -0.0067787375, 0.027704313, 0.009915021, 0.0011168976, -0.0029729218, - -4.5398937e-4, 0.016406985, 0.030095395, -0.030970352, 0.014235802, - -0.019788958, -0.012077308, 0.007205503, 0.017630968, 0.017380033, - 0.027049117, 0.029289506, -0.032149702, 0.038374897, -0.0506083, - -0.0074850777, -0.026684094, -0.021133581, 0.053900734, -0.020380132, - 0.014295977, -0.040097848, 0.0011293914, -0.013331591, -0.0035779027, - -0.022095714, -0.034142278, 0.008542044, -0.0137365665, 0.031631622, - 0.02085184, -0.01544944, 0.03965742, 0.016440088, 0.052888762, - 0.025220154, 0.06823498, 0.04848488, 0.011005881, -0.02414598, - -0.02087925, -0.038953733, 0.014157602, 0.029403249, -0.045635186, - -0.033993028, -0.012184045, -0.016582614, 0.03175449, 0.012774276, - 0.045644112, 0.016543515, 0.0042066756, 0.0105916, 5.7629535e-5, - 0.025743702, 0.032465763, 0.0039851195, -0.04283571, -0.019689348, - -0.029696543, -0.046328977, 0.045704614, -0.015336438, 0.059623275, - -0.042450063, -0.0052967723, 0.018292192, 0.060304463, 0.005153018, - -0.0016737318, 0.011187321, -0.017401539, 0.020728856, 0.0022598326, - -0.03381391, -0.0052182674, 0.005228337, -0.03625287, -0.012973221, - -0.046626467, -0.0048783827, 0.0025917087, 0.004498246, 0.029122764, - -0.009374703, 0.009676442, -0.02757096, 0.044622783, 0.015784683, - 0.04155969, 0.027842859, -0.024370594, -0.01387646, 0.040034216, - 0.015508235, -0.0017579371, -0.012732145, 0.01021911, 0.005910093, - -0.03521507, 0.002309917, -2.6185374e-4, -0.029752338, 0.07748387, - 0.027908923, -0.038413834, -0.032669257, -0.049404807, 0.01806613, - -0.020671956, -0.016670557, 0.03455329, -0.08147464, 0.0060109315, - -0.012144307, 0.0034901728, -0.05346471, -0.0015441638, -0.014622564, - -0.026151707, -0.0050183837, -0.01971191, 0.010423278, 0.011829543, - 0.009791041, -0.012062659, -0.021545764, 0.023194784, -0.0041834814, - 0.043541603, -0.03264517, 0.0077327634, 0.018621027, 0.00118061, - -0.0048358655, 0.053759053, 0.050707143, -7.8671146e-4, 0.052453574, - -0.04938189, -0.039188065, 0.009239901, 0.019707605, 0.002204906, - 0.0156181315, -0.017610122, 0.053952545, -0.021457776, -0.06292161, - -0.040285423, 0.06498204, 0.03693167, 0.03521416, -0.053411804, - 0.020453619, -0.0017923942, 0.040400706, -0.0032313103, -0.0037056864, - -0.0027731583, 0.012090115, -0.037596587, -0.03248321, -0.0071642045, - -0.005840224, 0.0076598236, -0.044377312, -0.04099995, 0.07183155, - -0.005650013, 0.021728275, 0.012643355, -0.010714997, -0.012962459, - 0.074693546, 0.0382409, 0.015347969, -0.0066974186, -0.001885985, - 0.021983594, 0.024367135, -0.047619086, 0.014998328, 0.02547971, - -0.021595934, -0.003600384, 0.058020182, 0.009330221, -0.020211304, - -0.03667539, 0.0054411744, 0.040443607, -0.020588096, -0.010274691, - 0.060455624, 0.009372528, 0.009429093, 0.014559756, 0.024568107, - 0.013160634, 0.02254326, 0.026837504, -0.09374004, 0.055128742, - 0.043130394, -0.04180242, -0.041476857, 0.018695604, 0.04212147, - 0.0194102, 0.02971967, 0.03268806, -0.044575665, -0.06900639, - -0.017647145, -0.034952063, -0.010718878, 0.05102173, -0.062092066, - -0.0076543484, 0.018745808, -0.03744951, -0.018727059, 0.06364034, - 0.023384886, 0.02215146, 0.017708361, -0.0018502683, -0.030143738, - -0.016077189, -0.046126083, 0.0036476005, 0.013738834, 0.04276261, - -0.012824351, -2.3844121e-4, 0.016047474, -0.079309076, 5.8506086e-4, - -0.019159578, 0.015625596, 0.020714916, -0.042199194, -0.0038320282, - 0.044001706, -0.029575484, -0.021061135, 0.03130509, 0.0029412077, - 0.03022453, 0.017372549, 0.009288702, -7.8069646e-4, 0.021608233, - 0.05491857, 0.031771645, 0.026418822, 0.004792532, -0.016357413, - -0.008500642, 0.01647312, 0.0036793023, -7.2810106e-4, 0.03877572, - 0.025746223, -0.015201324, -0.03507951, -0.004259069, 0.048476357, - 2.955859e-4, -0.015247135, -0.005515327, -0.0204257, -0.046966918, - -0.031216202, 0.0059498255, -0.03015038, -8.7958435e-4, 0.04075654, - -0.018805867, -0.034744136, -0.016224444, -0.043243613, 0.04061569, - -0.03362369, -0.004442562, 0.0077032703, -0.0018760365, 0.04161914, - -0.00795445, -0.021397268, -0.019072725, 0.024038166, 0.007919813, - 0.023854943, 0.021222372, -0.026448416, -0.010660165, -0.029423041, - -0.0216401, -0.01231312, -0.035394963, -0.0042093773, 0.019573098, - 0.019928904, 0.035029907, -0.027811019, -0.013375399, 0.0065710666, - 0.037861373, -0.026314612, 0.05187796, -0.045701105, -0.013427728, - -0.020639908, 0.045528043, 0.033697966, -0.022800475, 0.027665649, - -0.004076101, 0.054194555, 0.016607167, 0.022776788, -0.029133363, - -0.03489325, 0.004266661, 0.026830466, 0.035881314, 0.008414569, - 0.06797985, 0.005234423, -0.040741444, -0.0034228666, -0.04192404, - 0.01657346, -0.0010772161, -0.0014128932, 0.007982674, -0.0019470108, - 0.023112258, 0.00900013, -0.025788283, -0.02755798, -0.020503331, - 0.015307021, 0.03560894, 0.0046914653, 0.0021047294, -0.04873294, - 0.01372376, -0.011044386, 0.0111880135, 0.024889663, 0.0075346986, - -0.015048797, -0.01991094, -0.06160485, -0.010294945, 0.029472131, - -0.049557865, 0.044230662, -0.05757997, 0.002778364, -0.022852957, - 0.029195497, 0.024926288, 0.036579292, 0.003295594, -0.022611817, - -0.005223331, -0.010115684, -0.011914711, -0.03962919, 0.037914466, - -0.047568504, 0.0013579578, -0.027921174, 0.048966266, 0.02690059, - 0.087430924, 0.05056691, -0.01631307, -0.015483994, -0.0016943836, - 0.02243205, -0.06195421, 0.002038602, 0.03533889, 0.043775994, - -0.020356249, -1.5952362e-4, 0.009374642, -0.030335004, -0.07798793, - 0.029052898, 0.0019512451, 0.005386659, 0.05107076, -0.054505713, - -0.0054856134, -0.011963228, -6.485487e-4, 0.008657665, 0.028300585, - -0.02528322, -0.008955239, -0.058382027, -0.070434034, 0.0073337355, - 0.016191753, -0.04403304, -0.026940562, -0.060401436, -0.017991541, - -0.011743593, 0.017704543, 0.00947407, -0.004307239 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + 1577836800000 + ] + }, + "vectorValues" : { + "features" : [ + 0.0051434813, + -0.011234555, + -9.6152583E-4, + -0.016825104, + -0.0024826885, + -0.0108411005, + 0.004124401, + -0.0038891202, + -0.019821296, + -0.032350026, + -0.007368222, + -0.0054420345, + -0.022347335, + 0.024994306, + -5.118075E-4, + 0.013777589, + -0.01007322, + -0.0073531866, + 0.008670498, + -0.0111996615, + -0.010315022, + 0.002532447, + 4.19005E-5, + -0.0045539713, + -0.02555828, + 0.0013539058, + -0.022477454, + 3.7860475E-4, + 0.0059021884, + 0.0011049355, + 0.011608916, + 0.0023848705, + -0.011499315, + 0.023536393, + -0.03270767, + -0.013763611, + -0.0029024999, + 0.024018954, + 0.014576811, + -0.013754214, + -0.010600302, + -0.0057337163, + 0.011371429, + -2.297449E-4, + 0.007931506, + 0.011088272, + 0.008969418, + -0.017506555, + 0.007325902, + 0.007434987, + 0.00969605, + 1.6268999E-4, + 0.0069341348, + -0.034957856, + 0.008579965, + -0.011538165, + 0.016906677, + -0.0195167, + 0.016493632, + 0.0035181625, + -2.284193E-4, + -0.028203163, + -0.012515767, + 0.0055884854, + 0.015081524, + 0.0030219352, + -0.014971708, + -0.017571775, + 0.031031938, + -0.032206077, + -0.010816306, + -0.006069342, + -0.0059526963, + 0.005719932, + -0.0049712323, + -0.011866503, + 0.015030113, + -0.028373543, + -0.011182366, + 0.015059245, + -0.005251653, + 0.0105819255, + -0.01728175, + 0.0076394957, + -0.0078070527, + 0.01988227, + 0.0111901965, + 0.0057217795, + 0.012901001, + 0.029834516, + -0.027100787, + 0.0047638128, + 0.006376894, + 0.0038433122, + 0.024276167, + -0.030533813, + 0.007935647, + 0.014246989, + -0.024309296, + 0.0045583127, + 0.021960648, + 0.023517806, + -0.0045648017, + -0.032893937, + -0.015094352, + -0.01383471, + 0.00338619, + -0.028066369, + 0.0028614984, + 0.012843226, + -0.008264887, + 4.46595E-4, + -0.022620808, + -0.0044379532, + -0.027430391, + 0.0063717244, + -0.019948374, + 0.0015112258, + 0.016722266, + 0.007188846, + -0.03048334, + -0.017707815, + 0.017236693, + 0.008393996, + 0.0013968938, + 0.019799545, + -0.016589837, + 0.018639827, + -0.006717039, + -0.021398153, + -0.015445352, + 0.001205445, + -0.004292336, + 0.0032168487, + -0.0025553463, + -0.01655036, + 0.013678514, + -0.020825472, + -0.019980658, + -0.0031896567, + -0.0035650756, + 0.008788474, + 0.0046871747, + -0.023972582, + -0.033192307, + -0.0084572835, + 0.02185945, + -0.012404517, + 4.872135E-4, + -0.015474803, + 0.008233197, + -0.02640502, + -0.01916125, + -0.012734348, + -0.0114585515, + 0.005384031, + 0.028497793, + -0.033189308, + 5.6489086E-4, + -0.027494382, + -0.01038181, + -0.0050453614, + 0.002867828, + 0.020038817, + -0.0061759795, + -0.039243754, + 0.016110083, + 0.01021687, + -0.01238714, + -0.003274116, + 0.004874388, + 0.0065087467, + -0.004822758, + 0.006553503, + -0.0043560765, + 0.019944273, + 0.00930587, + 0.006420239, + -0.022013905, + 0.025102844, + -0.011784958, + -0.011214342, + -0.018962262, + 0.03161736, + -0.029002469, + 0.019390924, + -0.017193872, + -0.026514152, + -0.03103952, + -0.009816581, + -0.0058046295, + -0.016908847, + -0.022898264, + 0.013822569, + 0.00634436, + -0.04896026, + 0.003167789, + 0.02816561, + 0.013980759, + 0.01049911, + 0.018670127, + 0.019438008, + 0.015454938, + -0.021572396, + -0.023676643, + 0.005517573, + 4.4235637E-4, + 0.0032290039, + -2.3934407E-4, + -0.007768536, + 0.0120630525, + -0.021181786, + 9.318538E-4, + -0.010687428, + -0.012525754, + -7.7110727E-4, + -0.0068248804, + -0.009905136, + -0.009307686, + 0.010957696, + -0.009396518, + -0.034056906, + 0.0066381125, + -0.02268105, + 0.011792481, + 0.0025090922, + -0.01709648, + 0.026291156, + 0.0069435015, + 0.0266062, + 0.019963458, + -0.025163876, + -0.01326607, + -4.5956532E-4, + -0.017303493, + 0.023994232, + -0.005467129, + 0.004378643, + -0.025180304, + 0.039171685, + 0.008151043, + -0.025848774, + -0.02138982, + 0.011774963, + 0.011106738, + 0.016032841, + -0.002863799, + -0.013902769, + -0.004497268, + 0.0023531239, + -0.011887279, + -0.004555569, + 0.0014100076, + 6.676534E-4, + -0.004043404, + 0.034725074, + 0.010725128, + 0.0026592312, + 0.022185294, + 0.008169722, + 0.019193174, + -0.0033980163, + 0.008046955, + 0.048995774, + 7.4592413E-4, + 0.008302207, + -0.017063404, + 0.006853092, + 0.0021603918, + 0.028874543, + -0.012229064, + -0.0036899473, + 0.025014915, + 0.002046135, + -0.0070165633, + -0.002500511, + 3.8979264E-4, + 0.0189338, + 0.0038008336, + 0.008503373, + 0.02560048, + 0.004075651, + 0.020182448, + 0.011092665, + 0.006437622, + 0.00643664, + 0.017229982, + 0.0051439563, + -0.013650269, + -0.013829054, + -0.018251365, + 0.022165336, + -0.017792527, + -0.012773927, + -0.01936521, + 0.012282404, + 0.0043112985, + 0.0141750015, + -0.014084917, + -0.0024461586, + 0.014975627, + 0.0074729566, + -0.007778042, + -0.024846675, + -0.0041991766, + 0.005044867, + -0.0026706527, + -0.020828076, + -0.018022241, + 0.006585414, + 0.012470212, + -0.013775842, + 0.028823145, + 0.014589743, + -0.0053296895, + 0.01643319, + 8.345964E-4, + 0.0032483141, + 0.008600395, + -0.0148600275, + 3.071711E-4, + -0.011818186, + 0.025682747, + -0.009902503, + 0.011086198, + -0.0024704696, + -0.006308776, + 0.007685335, + 0.034461375, + 0.018973423, + 0.007737125, + 0.0293387, + -0.011168218, + -0.0010040853, + 0.005403676, + 0.022664072, + -0.013073837, + 0.010573656, + -0.024877831, + 0.0036678584, + -0.012443363, + -0.0022918496, + -0.017207852, + 0.008549589, + -0.0062084673, + 0.026357824, + -0.0012242803, + 0.02617395, + -0.009130142, + -0.0079476535, + 0.007687419, + 0.007666855, + -0.015033259, + -0.01153493, + -0.01889888, + 0.007017085, + 0.025696585, + 0.024596091, + 0.010179524, + -0.01780058, + 0.027397688, + 0.024936963, + 0.015952261, + -0.0012388087, + 0.050842676, + 0.0038812193, + 0.015026058, + -0.0019595139, + -0.010577103, + -0.017708588, + -0.028297503, + 0.017427014, + 0.001222994, + -0.0063223215, + -0.027240062, + -0.002206348, + 0.015358444, + 0.019986598, + -0.0018732097, + -0.019727996, + -0.028847812, + -0.008455814, + 0.031697128, + 0.023165355, + -0.0151575385, + -0.027622722, + 0.007563279, + -0.0013525516, + -0.015387637, + 0.0056463354, + 0.0082978895, + -0.005229137, + -0.010158057, + 0.0067372606, + 0.0038325617, + -0.018585453, + 0.0048224297, + 0.01000341, + 0.009703229, + -0.0042091077, + -0.017078057, + 0.014999267, + 0.004818021, + 0.006804332, + 0.0125168925, + -0.0013086206, + -0.0037507743, + -0.0088544935, + 0.011383224, + 0.02609528, + 0.0074018054, + 0.012212915, + 0.023250379, + 0.0030344534, + 0.031179003, + -0.010330139, + -0.0053002886, + 0.021635836, + -0.01280459, + 0.008943965, + 0.0011112713, + 0.037448015, + -0.0130858, + 0.0046953, + 0.025343332, + -0.012976801, + -0.0031656337, + -0.0041976245, + 5.542076E-4, + 0.007027004, + 0.023579316, + 0.016594121, + -0.028417328, + 0.009611763, + -0.015721232, + 0.012125798, + -0.011175506, + -0.0056576896, + 0.0064706802, + 0.006764667, + -0.011517414, + 0.020472957, + 0.013632674, + -0.006098367, + 0.011044769, + -0.006495942, + 0.0131557, + 0.0043783225, + -0.012955274, + 0.017784657, + -0.0043504173, + -0.010992693, + 9.527557E-4, + -0.012754351, + 0.0047082845, + 0.0026855054, + 0.024900055, + -0.0010755113, + 0.017417168, + -0.014252462, + -0.0052801645, + -0.009713594, + 0.017079309, + 0.016035594, + 0.02026324, + 0.016774556, + 0.02662277, + 0.014124469, + 0.0061107688, + 0.009641054, + 0.0075316736, + -0.0017795363, + -0.05329192, + 0.0025107628, + -0.029863643, + 0.012574353, + -0.021592716, + 0.004386307, + -0.0035319387, + 0.014199132, + -0.0063828058, + -0.013996495, + 0.0087122945, + -0.013418803, + -0.0032951953, + -0.005068537, + 0.007639928, + 0.014247084, + -0.036084972, + -3.1290486E-4, + 0.009233739, + -0.03125452, + -0.018278856, + 0.02317723, + 0.01564028, + -0.015932437, + 0.005654493, + 0.003170421, + -0.009905716, + -0.012229941, + 0.0019284999, + 0.017998679, + -0.010369018, + -0.00478533, + 0.0051266043, + 0.033355378, + -0.008618514, + 2.8059565E-4, + -0.01688195, + -0.010228094, + 7.222537E-4, + 0.0046873586, + 0.009355646, + 0.0018349468, + 0.023933647, + -0.007854023, + 0.018377062, + 0.019065082, + 0.03266245, + -0.0035063901, + -0.0106325755, + 0.030094678, + 0.020781191, + 0.0126188975, + 0.0042145187, + 0.016415698, + -0.004886863, + 0.009382799, + 0.004925056, + -0.0015474446, + 0.012949479, + 0.011255396, + 0.0025099274, + 0.022614619, + -0.02832897, + -0.011571251, + 0.017124223, + 0.012136136, + 0.008078514, + 4.8554616E-4, + -0.02140125, + 0.0014866028, + 0.012363165, + -0.030645827, + 0.020755084, + 0.012951543, + -0.0046234317, + 0.01769914, + -0.007259784, + -0.026462698, + 0.029735398, + 0.020446718, + 0.006929971, + 0.01717832, + 0.0068162843, + 0.02641492, + 0.005019808, + 0.009043218, + -0.02260494, + -0.008112619, + 0.0074180444, + -0.014787528, + -0.011884942, + 0.0036599806, + 1.3542548E-4, + -0.005712677, + -0.01393809, + -0.012850313, + 7.643834E-5, + -0.0054996805, + -0.01336957, + -0.012429621, + 0.014757576, + 0.012059386, + 0.0043792194, + 0.02076591, + 0.009098984, + 0.0034773205, + 1.1490724E-4, + 0.0049165203, + -0.026682865, + -0.0082988525, + 0.0044976636, + -0.0102343615, + -0.017581573, + -0.0029154473, + -0.014740381, + -0.0098429555, + -0.00586411, + -0.018038554, + -0.018104898, + 0.010387121, + -0.008841053, + 0.014614666, + 0.014071191, + -0.0048733614, + -0.0029340873, + -1.0909355E-4, + -0.0017939666, + 0.026910516, + 0.022996921, + -3.3023852E-4, + 0.0031531998, + 0.014136271, + 0.013916424, + 0.023101788, + 0.003974062, + 0.0024431199, + 0.0040516425, + -0.029035913, + -0.028963408, + 0.007198241, + 0.009848185, + 0.012856565, + -0.020748734, + 0.019801158, + 0.022015242, + -0.019314012, + -0.013625476, + -0.00981984, + -0.0057842773, + -0.009673611, + -0.005615978, + 0.003855873, + 0.017457426, + 0.017746847, + 0.015952384, + -0.014313933, + 0.012594706, + 0.024453264, + -0.029206851, + -0.012024076, + -0.008674367, + 0.012316651, + -0.034321286, + -0.026359191, + 7.727264E-4, + -0.005290902, + -0.011236325, + -0.011232075, + 0.004379215, + -0.008849717, + 9.470954E-4, + -0.025007784, + -0.016513104, + -0.008091993, + -8.805112E-4, + -0.018593635, + -0.0076694665, + 0.02134062, + -0.03262, + -0.022137843, + 0.014298622, + 0.0042518293, + 0.0010471886, + 0.01089908, + 0.040533327, + -0.0031900574, + -0.02355606, + -1.5402304E-4, + 0.00812958, + -0.004921333, + 0.0034490058, + -0.00794265, + -3.595202E-4, + -0.0049857404, + 3.9515394E-4, + 0.02300252, + -0.023624633, + 0.006694167, + -0.004182517, + -0.019851523, + -1.09080975E-4, + 2.3487986E-4, + -0.03300758, + 0.0010086197, + 4.4348135E-4, + -0.0012987275, + -0.017230967, + -0.0044429926, + -0.010673557, + -0.0059179305, + -0.01645124, + -0.0058217207, + 0.0030321747, + 0.009463452, + 0.023675974, + 0.017013878, + -0.042776886, + 0.0015700519, + 0.016415384, + -0.019962687, + -0.008822213, + -0.005452493, + -0.021096304, + 0.010290937, + 0.004102177, + -0.01171992, + -0.0058776992, + -0.009643865, + 0.01817827, + 0.018352779, + 0.007976394, + -0.014463471, + -0.012108202, + 0.0058733984, + -0.0063469964, + 0.0039032502, + -0.015255141, + -0.0081681395, + 0.03150233, + 0.003619723, + 0.007800724, + -0.019783897, + 0.011824602, + 0.006909576, + 0.0025351194, + 0.015413321, + 0.016746769, + -0.02665401, + 0.013117927, + 0.0014763064, + -0.010476122, + 0.020126058, + 0.007211777, + 0.016074678, + -0.005634065, + -0.010052281, + 0.01148877, + -0.010582859, + 0.0030676655, + -0.0351175, + -0.0148444045, + 0.029870173, + 0.013694406, + -0.010689282, + 0.0055574793, + 0.0038769706, + 0.003016398, + -0.025313852, + 0.02065322, + -0.007091614, + 0.004791979, + -0.0013597225, + 0.0041551464, + -0.0030603483, + 0.0014321286, + 0.026434353, + -9.583825E-4, + 0.0057319156, + -0.016860008, + -0.018364012, + 0.0030787734, + -0.012795306, + -0.011574529, + 0.020992385, + -0.019910416, + 0.0039410135, + 0.022653935, + 0.014530907, + 8.415651E-4, + -0.0045032315, + 0.0037320985, + 0.021663427, + 0.017597234, + -0.0028788517, + -0.016649507, + 0.021674594, + 0.0018852978, + 9.375102E-4, + 0.013391733, + 0.0020690248, + 0.007402058, + 0.0010800601, + 0.014139856, + -0.0018100147, + -0.0046554813, + -0.002950177, + 0.017082307, + -0.010820599, + 0.003077116, + 0.0032445, + 0.004550023, + -0.0155158695, + 0.003443871, + -0.0060777226, + 0.02350899, + 0.0085281655, + -0.005481711, + 0.0068120044, + 0.0059752003, + 0.0026664676, + -0.0017561986, + -0.013920797, + -0.006693282, + -0.013721128, + 0.015103683, + -0.013703656, + 0.007182116, + 0.01150579, + 0.0068136854, + 0.031147879, + -0.0030525336, + -6.204011E-4, + 0.012647343, + -0.008187155, + 0.006926523, + 0.026346343, + 0.0030508589, + 0.006865374, + 0.03485114, + -0.01116665, + -0.016324468, + 0.011793016, + -0.01322327, + -0.0034384935, + -0.012613303, + -0.0014323731, + -0.0077409684, + 0.0041697677, + -0.004080369, + 0.006266155, + -0.007224446, + -0.010899528, + 0.010508279, + -0.0016449093, + 0.010568839, + -0.0012991949, + -0.00940365, + -0.023990314, + -0.017328834, + -0.014733648, + 8.8938505E-5, + -0.0065773916, + 0.01803937, + -0.011288948, + 0.0053940797, + -5.926063E-4, + 0.009149458, + 0.005531535, + 0.017271198, + -0.005322505, + -0.014137785, + -0.0067996606, + -0.03137863, + 0.005442186, + -0.0061637135, + 0.017373974, + -0.0035271149, + 0.013770852, + -0.016835688, + -0.01082648, + 0.010682869, + 6.606318E-4, + 0.022265868, + -8.336804E-4, + 0.0141799385, + 0.022244368, + 0.009024561, + 0.017733708, + 0.018460723, + -0.012353582, + -0.012762328, + -0.017280625, + -0.008023176, + 0.0117647955, + 0.037207346, + 0.0052018994, + -0.010488393, + -0.026317231, + -0.007576717, + 0.023026533, + -0.020068191, + 0.015677692, + 0.029780287, + -0.0030601225, + 0.007195384, + 0.00870917, + -0.005699011, + -0.012544914, + 0.0027606317, + 0.0010084873, + -0.01890862, + 0.012129194, + -0.015760401, + -0.003373415, + 0.0068649733, + 0.008849407, + -0.003143382, + 0.002089928, + -0.010565093, + 0.005571031, + -0.010557624, + 0.008566549, + -0.031485185, + 0.026985548, + 0.016116034, + -0.012169488, + -0.0037975824, + -0.01713806, + -0.016858954, + 0.015817948, + -0.0035148677, + 0.01612321, + -0.008675831, + 0.027738402, + -0.002637838, + -0.026411232, + 9.449962E-4, + -0.010763367, + -0.0067741, + -0.0068842187, + 0.02950951, + 0.013131589, + -0.007738093, + -0.00236549, + -0.008984054, + 0.016225612, + 0.022305418, + -0.003127751, + -0.032602813, + -0.00866451, + -0.018728767, + -0.0136930775, + -0.0057869777, + 0.008288312, + -0.0035775285, + 0.002447407, + -0.0190528, + -0.0027263162, + 1.5164017E-4, + -0.001854439, + 0.017925112, + 0.006344341, + -0.0057686353, + -0.006716531, + 0.0076476065, + -0.0025203791, + -0.0010928751, + 0.019345453, + 0.009493577, + -0.014299482, + -0.0021861824, + -0.01778498, + -0.0073155863, + 0.01824156, + -0.009766587, + -0.006011747, + -0.0058625345, + 0.004934604, + -0.021210978, + 0.010919897, + 0.009434366, + -0.026697578, + -0.015330864, + -0.008416503, + -0.007866545, + -0.0036055183, + -0.0030581953, + -0.021609422, + -0.011477861, + -0.016564952, + -0.014088468, + -0.028618714, + 0.0027667645, + 0.012381357, + -0.0075915135, + 0.0070715863, + -0.019668406, + -0.020483427, + 0.016135963, + -0.037079558, + 9.925079E-5, + 0.014591426, + 0.02224489, + -0.0030937935, + 0.026396723, + 0.045800973, + 5.757244E-4, + -0.0072940663, + 0.015570837, + -0.012562436, + -0.005254228, + 0.011457753, + 0.027369473, + 0.0017879661, + 0.017784152, + 0.01476104, + -0.015820514, + -0.0016039318, + 0.022721307, + 1.3041931E-4, + -0.0016210434, + 0.0047681592, + 0.017695187, + 0.0038418157, + 0.0057725008, + 0.015805654, + -0.01342332, + -0.012532361, + -5.8509375E-4, + -0.0068319486, + -0.024620514, + -0.013763279, + 0.022368973, + 0.0063491017, + 0.014909368, + 0.0193181, + 0.0044879755, + -0.0024089154, + -0.01340514, + 8.103815E-4, + 0.0036372412, + 0.0034483748, + 0.0067281206, + 0.02746947, + 0.011118472, + -0.01195648, + 0.0237733, + 0.0063545904, + -0.013021831, + 0.0073360023, + -0.01701686, + -0.019780181, + -0.019589778, + 0.018739648, + 0.0018343328, + 0.009081218, + 0.0020807188, + -0.0044756224, + -0.0015707711, + -0.01975367, + -0.0031961259, + 0.006266716, + -0.008434966, + -0.013861215, + 0.028098973, + -0.008820447, + -0.007030259, + -0.016354086, + -0.0029349006, + -0.024678847, + -0.014968695, + 0.020487305, + -0.009165867, + 0.010891239, + -0.011057816, + -0.013432349, + 0.01880074, + 0.019102154, + 0.010734379, + 0.02788483, + -0.015498624, + 0.0118841175, + 0.009325441, + -0.005978501, + 0.015405522, + 0.011062989, + -0.019751491, + -0.011687583, + -3.0628085E-4, + -0.012980106, + -0.003246839, + 0.0036317839, + 0.003311127, + -0.035466857, + -0.009349782, + -0.018957287, + -0.0034726497, + -0.013313835, + 0.0028069955, + 5.8636337E-4, + 0.0045342045, + -0.030296478, + -0.013255208, + -0.005147483, + -0.0041704415, + -0.01154583, + 0.016229412, + -0.008051878, + 0.014062622, + 0.014369193, + -0.007306607, + -0.02039292, + 0.014382832, + -0.020112589, + -0.015056659, + -0.0057038865, + -0.0179634, + 0.004735237, + -0.013160324, + -3.2333E-5, + -0.011669156, + -0.005279467, + 0.0057251523, + -0.007147907, + -0.0069512688, + -0.023345463, + 0.005322173, + -0.016827468, + -0.0018870268, + -0.0126160905, + 0.018538516, + -0.01477615, + -0.0060884315, + 0.018524574, + 0.011058154, + 0.015996246, + 0.027342647, + -0.017704705, + -0.023619361, + 0.0037717286, + 0.010542441, + -0.017551538, + -0.032049425, + -0.003082348, + -0.010035355, + 0.007857729, + 0.015149257, + 0.015155665, + 0.014319648, + -0.0030756828, + -0.038741507, + -0.021416327, + 0.011065172, + 0.0052999575, + 0.022869254, + 0.0034204908, + -0.010320445, + 0.007016714, + 0.003528417, + 0.0011894334, + -0.004523248, + 0.0074181627, + -0.010461743, + -3.425785E-4, + -0.017935155, + 0.014533359, + -0.010326172, + 0.0014816204, + -0.008774284, + 0.007568154, + 0.006843218, + -0.009760735, + 0.0010094865, + -0.0050166068, + 0.037825476, + -0.016093094, + -0.011130593, + 0.005976139, + 0.018769087, + -0.0063932664, + 0.010562419, + 0.01689017, + 0.009504254, + 0.005658218, + -0.028073477, + 0.0014067736, + -0.0030352897, + 0.014502877, + -0.02775552, + 5.8023556E-4, + 0.018040089, + -0.0044279248, + 2.9573427E-4, + -0.012508482, + -0.025455676, + 0.01962368, + -0.023044733, + 0.0070083523, + -0.008648085, + 0.004503652, + -0.01672749, + -0.010476567, + 0.018425718, + -0.012121696, + -0.008195486, + 0.012196909, + -0.0037586577, + -0.023012018, + -0.008300684, + -0.02766132, + -7.42697E-4, + 0.0017692763, + -0.030917656, + 0.006673743, + -0.0013899582, + 0.01304744, + -0.0066637234, + 0.009322697, + -0.005676743, + -0.017799761, + 0.014295304, + -0.002266823, + 0.0051497086, + 0.005728087, + -0.0022743307, + -0.020066626, + 0.015787778, + 0.0087005915, + 0.02028341, + 0.006627571, + -0.016922092, + -8.7071327E-4, + 0.031179579, + 0.013968301, + -0.013628978, + -0.00641004, + -0.010543856, + -0.007777722, + -0.00581649, + 0.019004319, + 0.01035088, + -0.011206767, + 0.008781102, + 0.0036064007, + 0.019869274, + -0.026409686, + -0.009536379, + -0.033889804, + -0.0064015407, + 1.4942852E-4, + 0.024209213, + -0.02648384, + -0.007728217, + 2.5130558E-4, + 0.012396729, + -0.0022803806, + -0.0015755242, + -0.021979244, + 0.0011890983, + 0.002398266, + -0.014979567, + -0.008540624, + 0.0014206201, + 0.016802479, + -0.0031664441, + -0.023903077, + -0.02070819, + 0.022304311, + -0.0117960395, + -0.00269837, + -0.04237293, + 0.008928465, + -0.008665057, + 0.02091723, + 0.022200009, + -0.021431156, + 0.012475639, + -0.0026466534, + 0.015449117, + 0.013801038, + -0.0152048385, + 0.0018499875, + 0.0058850725, + 0.008593455, + 0.0017796495, + 0.025763115, + -0.0064937756, + -0.0013352841, + -0.027421206, + 0.026267646, + 0.01968952, + -0.019453071, + 0.020315975, + -0.0078350855, + -0.02219033, + 0.030934626, + -0.02237818, + 0.02538189, + 0.013068148, + -0.0035455746, + -0.0014553845, + -7.333664E-4, + -0.004730822, + 0.021352924, + -0.012056956, + -0.008276943, + -0.02239482, + -0.025705148, + 0.007395791, + -0.009000189, + -0.0067287176, + 0.02650589, + -0.013891253, + -0.012110779, + 0.021126894, + -0.0074974294, + 0.031130021, + 0.007824268, + 0.0099976305, + 0.018629802, + -0.0013278273, + -0.0076318276, + -0.011240116, + 0.038541544, + 0.003555337, + 0.005133278, + -0.011390305, + -0.032577638, + 0.012919241, + -0.017558966, + -0.02706552, + 0.0037515154, + -0.0069921003, + -0.0016457663, + -0.0031207239, + 0.011056283, + -0.0064267823, + 0.01706499, + -0.013622928, + 0.019965021, + -0.011249112, + -0.02579817, + -0.006643336, + -0.024203317, + -0.0021425684, + -0.02117809, + -0.0022996527, + -0.0045049326, + 0.0033092564, + -0.026378825, + -0.0016061581, + -0.0053448463, + -0.004981899, + -2.9333163E-4, + 0.00399463, + -0.053831425, + -0.040358536, + -0.015241339, + 0.022084888, + 0.0035540494, + -0.0025809158, + 0.012080835, + -0.017158194, + -0.0048152264, + -5.815777E-4, + -1.8902848E-4, + 0.004970359, + 0.025957981, + 0.0111734085, + 0.023242163, + 0.022536412, + 0.009029545, + -0.028015014, + -0.006770893, + -0.01632718, + 0.016514603, + -8.145431E-4, + -0.02309153, + 0.008367868, + 0.020039715, + -0.0044171424, + 7.7535346E-4, + -0.017901024, + -0.029480081, + 0.0022500386, + 0.016487762, + 0.020469297, + -0.017197106, + 0.0102409525, + 0.015755465, + -0.011595052, + -0.017691815, + -0.0070191566, + 0.019310668, + 0.02178468, + 0.0043699862, + 0.025529426, + -0.020571517, + -0.016736725, + -9.750456E-4, + 0.015210943, + -0.01201256, + -0.016045902, + -0.022090305, + 0.0044859783, + -0.006052807, + -0.01031107, + 0.02320656, + 0.03488488, + -0.01589811, + -0.014100808, + 9.0807985E-4, + 0.02829227, + 0.013992095, + -0.0037834432, + 0.01625272, + 0.0056364234, + -0.011473388, + 0.034927733, + -0.009938079, + -0.0057212953, + -0.0062809116, + 0.0028473814, + 0.02616933, + -0.0101609295, + -0.029485237, + -0.012358477, + -0.028839244, + -0.020782534, + 0.017955348, + 4.8792094E-4, + -0.015848484, + -0.0026174397, + -0.007437467, + 0.018887335, + 0.025842875, + -0.011281108, + 0.02383834, + 0.009945794, + -7.409247E-4, + 0.02383522, + 0.011340572, + 0.014663567, + 0.0031115683, + 0.017611383, + 0.0022762825, + 0.017716208, + -0.01847989, + -0.010245057, + -0.003210532, + -0.008501902, + 0.0065345904, + 0.016004268, + 1.7458807E-4, + 0.0032390454, + -0.016051408, + 0.012175206, + -0.0012133816, + 0.008479388, + 0.020994974, + -0.0030541301, + -0.008733791, + 0.0011289492, + -0.026322858, + 0.0077124736, + -0.022773158, + 0.004791069, + 0.027603641, + 0.006074761, + 1.3266379E-4, + 0.005129834, + 0.0057827355, + -0.021675408, + -0.003504881, + 0.0060601835, + -0.013498299, + 0.010978808, + 0.003566003, + 0.0071489033, + -6.2743964E-4, + 0.016742334, + -0.003939866, + 0.024441078, + -0.007877005, + -0.0012655843, + 0.013229548, + -0.009442634, + -0.010439986, + -0.016944021, + -0.0069441264, + 0.0060132416, + -4.8646083E-4, + 0.020657906, + 0.0029147607, + 0.0092137735, + -0.012957857, + -0.0032651676, + 0.00740807, + 0.018214775, + -0.019837398, + 0.026854658, + -0.01820176, + -0.017440436, + -0.016594674, + 0.015022275, + -5.5289496E-4, + -0.0031044704, + -0.0067238035, + 0.0022844714, + 0.010644353, + -0.011029993, + 0.012810707, + -0.00185275, + 0.0036115395, + -0.0153266005, + -0.021347076, + -0.015418273, + 0.0033224777, + 0.027622769, + -0.034243435, + 0.021684814, + -0.009045873, + 0.00927528, + 0.019177675, + -0.021133948, + 0.017812055, + -0.019868104, + -0.01969213, + 0.030035743, + -0.008820949, + -0.0032190746, + 0.0018015383, + 0.0071314727, + -0.0138942115, + -0.010367836, + -0.022055954, + 0.0027738966, + 0.024869045, + -0.023019608, + -0.031830594, + -0.03770992, + 0.01810922, + 0.0046674297, + 0.023798998, + -0.0032095753, + -0.016722506, + 0.033615775, + -0.006868843, + 0.025520027, + -0.016737418, + -0.017156333, + -0.005439264, + 0.013730171, + 0.018196462, + 0.0047013112, + -0.017076949, + 0.018198857, + -0.005286982, + 0.0042497, + -0.010999383, + 0.023413563, + -0.01366019, + -0.021856712, + -0.039102472, + 0.03454387, + -0.005659609, + -0.008991004, + 0.024131428, + 0.03439199, + -0.011928556, + 0.00857407, + 0.012601308, + 0.0045211134, + 0.014846865, + 0.0046869917, + 0.01033811, + -0.038199216, + -0.014974308, + 0.004310058, + -0.021536388, + 0.009658751, + 0.009278568, + -0.024230048, + 0.012544482, + -0.007137504, + -0.021224411, + 7.572538E-5, + 0.0010506674, + -0.015155968, + 0.009563433, + 0.0055866516, + 0.023773089, + -0.017726826, + 0.010224732, + 0.0062086727, + 0.014200814, + -0.013544778, + -0.006772038, + 0.030514132, + -0.01787192, + -0.020797532, + -0.0016120002, + -0.0038119326, + -1.5682532E-4, + -0.012616256, + 0.010857496, + -0.0059012887, + 0.008627849, + 0.01140367, + 0.014648104, + 2.8300114E-4, + -0.013526481, + -0.012449271, + -0.02880423, + 0.003324255, + 0.004436446, + 0.013686339, + -0.03645438, + 0.022256086, + 0.010714016, + -0.012947481, + -0.033830546, + 0.032025203, + -0.008182785, + -0.03996569, + 0.0017783662, + -0.008393583, + 0.001634603, + -0.013359888, + 0.013301942, + 0.0022623874, + 0.026584368, + -0.030810835, + 0.0014788217, + -0.014119888, + 0.0061946902, + -0.0012330255, + -0.026378354, + 0.021148488, + 0.026574345, + 0.008260564, + -0.0074947244, + 0.012918353, + 0.020261036, + 0.0016665377, + 0.030839672, + 0.018354775, + -0.0021006279, + 1.5817113E-4, + -0.0030181024, + -0.001709124, + 1.1670328E-4, + 7.6982536E-4, + -0.04371948, + 0.0045680124, + 0.008688625, + 0.00924552, + -0.0050836354, + 0.012415344, + -0.011255319, + -0.004232359, + -0.017086405, + -0.02749836, + -0.00510368, + -0.020581916, + 0.016971793, + 0.009981323, + -0.0197957, + -0.020354627, + -8.2397735E-4, + -0.0053993547, + -0.0019588494, + -0.0042681526, + -0.0031272967, + -0.011639316, + -0.0053409347, + -0.0019339295, + 0.0062248213, + 0.015824515, + 0.0038509767, + -0.013311493, + -0.0054580187, + 0.0036708114, + -0.029565224, + 0.016080128, + 0.013871763, + -0.008576256, + -0.0015319698, + 0.0054508615, + -0.004695981, + -0.008787641, + 0.027669769, + 0.007842023, + -0.013188146, + -0.012499878, + -0.057282146, + -0.007913978, + -0.017105335, + 0.029865764, + -0.0038786982, + -2.980951E-4, + -0.034137815, + -0.03211717, + -0.021256778, + 0.008719191, + -0.0012349361, + 0.025758853, + 0.026163792, + 0.015291088, + 0.002192802, + 0.0029579299, + 0.011692158, + 0.028263751, + 0.0019491867, + 0.0030569595, + -0.022992074, + -0.007973627, + 0.011031896, + 0.0047312374, + 0.036715783, + -0.010777744, + -0.031025102, + -0.017154386, + 0.02748168, + -0.003603268, + -0.007370977, + -0.0039893743, + 0.0020749734, + -0.016810995, + -0.025312193, + 0.016122349, + -0.017689817, + 0.0023360716, + 0.036725916, + 0.01799872, + -0.029847573, + -0.013555471, + 0.003715032, + 9.391666E-4, + -0.013956361, + 0.0067122863, + -0.016600117, + -0.030610126, + 0.005800094, + -0.016236013, + -0.028943058, + -0.026821325, + -0.0012795691, + 0.025064256, + 0.027710699, + -0.0012289804, + -0.011353589, + -0.001059494, + 0.016451871, + -0.010274117, + 0.0020172347, + -0.008190387, + -0.041417312, + -0.0105322255, + 0.021868361, + -0.008160099, + 0.019895455, + -0.0035392807, + 0.021471672, + -0.0051338086, + 0.019417055, + 0.017646777, + -0.0038061775, + -0.0237978, + -0.0059797135, + 0.0017617471, + 0.016903192, + -0.013166088, + -0.015945148, + 0.008227795, + -0.01136455, + 0.011584002, + 0.0040764525, + 0.029892799, + 0.022325886, + 0.007935189, + 0.0022599366, + 0.029055765, + 0.0072804727, + -0.0072928434, + 0.012404188, + -0.011226728, + 0.0073652416, + -0.0053300234, + -0.0017902468, + 0.011418398, + 0.008754472, + -0.002072696, + 0.0015155716, + 0.02785847, + 0.012233047, + -0.0021139903, + 0.02275792, + 0.013260352, + 4.770723E-5, + 0.0028435553, + -0.019867843, + 0.015781587, + -0.0011734025, + -0.021464188, + -0.009288914, + 0.013700648, + -0.019340176, + -0.0044455156, + 0.03279019, + -0.010249719, + -0.013334641, + -0.031008882, + 0.012616776, + -0.011435194, + -0.010358096, + 0.022993695, + 8.7704614E-4, + -0.026037946, + -0.019076493, + 0.0035639268, + 0.008162027, + -3.6691363E-5, + -0.012058953, + 0.028304331, + 0.007570417, + 0.027744243, + -0.0020478375, + -0.02152325, + -0.001378728, + -0.011442625, + 0.010973845, + -0.025064409, + 0.017691119, + -0.020129446, + 0.003621094, + 0.014635404, + -0.0066133263, + 0.0143724, + 0.01069928, + -0.0070607467, + 0.03193521, + -0.016935088, + 0.01697303, + -0.0057550836, + 0.005440251, + -0.02225167, + 0.0017082312, + -0.0036205053, + -0.016391475, + -0.0014496791, + 0.007809618, + -0.0042763366, + 0.021698773, + 0.0089041935, + 0.014088609, + 0.010748777, + -0.014047567, + -0.005667429, + -0.022523098, + 0.0017531221, + 0.00653237, + 0.028581057, + -6.3983514E-4, + -9.92413E-4, + -0.0065856255, + 0.022480179, + -0.008272215, + -0.008350373, + 0.0043229098, + 0.022100912, + 0.0067708315, + -0.008976131, + 0.0118319355, + -0.008515934, + 0.027348585, + 0.0018732668, + -4.7629874E-5, + 0.013462964, + 0.009402758, + -0.0016041, + 0.0128359655, + -0.006506396, + 0.015080435, + -0.0032702356, + -0.0095221875, + 0.007120435, + -0.0030923754, + 0.009151341, + -0.0018164049, + 0.0041370345, + 0.008630629, + -0.009283443, + -0.007567418, + 0.0023760959, + -0.02646114, + -0.01761543, + -0.016313884, + -4.8895064E-4, + 0.010419732, + 0.01476289, + 0.015279122, + 0.0060080267, + 0.007860291, + -0.017770784, + 0.009370425, + -0.0015637425, + -0.013114577, + -0.007669353, + 0.02889718, + -0.005818595, + 0.017763577, + 0.02973616, + -0.005836574, + 0.009317059, + -0.0102307135, + 0.0033357993, + 0.025143709, + -0.017852865, + 0.008558337, + 0.019390538, + 7.094326E-4, + -0.00312951, + 0.011480433, + -0.022232428, + 0.011581608, + 0.014487199, + 0.033053137, + 0.0013808409, + -0.018775674, + -0.0067928312, + -0.007905906, + 0.0040660813, + 0.015211426, + 0.0073751365, + -0.003723772, + 0.008917477, + 0.005054828, + 0.029742926, + -0.011310263, + 0.039103936, + 0.017989505, + 0.011511098, + 0.013062786, + 0.0063440553, + 0.028431209, + 0.03883608, + -0.0132201975, + 0.0035691326, + -0.0077508613, + 0.012607611, + -0.02800756, + -0.0016718295, + 0.008608852, + 0.0083474815, + 0.033477843, + -0.014250865, + 0.011413184, + -0.0014814225, + -0.02122701, + -0.0062438925, + -0.0027131727, + 0.012116617, + 0.014758894, + -0.013465491, + -0.017344307, + 0.005308221, + 0.008672524, + 0.0071601933, + -0.0036272258, + 0.014371439, + 0.024773901, + 0.005409229, + 0.021415362, + 0.010290279, + 0.018925719, + -0.017132953, + 0.021090738, + -0.004027563, + 0.0027003132, + -0.001418305, + 0.00567521, + -0.0020782398, + -0.018451227, + -0.004817837, + -0.008072539, + -0.01160934, + -0.019572943, + 0.01856178, + -0.0068164933, + -0.01016544, + -0.0052314866, + -0.011528953, + -0.0070691775, + -0.004422073, + -0.02861927, + 0.010935617, + 0.005927135, + 0.027306907, + 0.0038656567, + -0.015854616, + 0.010797439, + -0.005657356, + -0.007999775, + 0.0035290762, + -0.031011218, + -0.0014408724, + 0.026049042, + 0.0038894503, + 0.0014115911, + -0.0028901738, + 2.6315063E-5, + -0.0026389607, + 0.0023941905, + -0.0013046643, + 3.5237186E-5, + -0.034326565, + 0.011201767, + 0.005993293, + 0.012644448, + -0.014776362, + -0.006192122, + 0.00655436, + -0.009639838, + 0.0035396048, + 0.020293182, + 0.011898903, + -0.013554999, + 0.011480514, + 0.0059716613, + -0.009878246, + -0.00411433, + 0.006919181, + -0.0042231744, + 0.0029080706, + 0.017490655, + -0.034510445, + 0.0052643567, + 0.009711762, + 0.014992674, + -0.009661731, + -0.00306282, + -0.0049006986, + -0.003716655, + 0.001905794, + -0.0058587007, + -0.02156102, + -0.005739427, + -0.0031487145, + 0.011280494, + -0.0058370326, + -0.014990825, + 0.002729352, + -0.012358703, + 0.006924595, + 0.011454302, + 0.007315615, + -0.009252951, + -0.012940307, + -0.008417332, + -0.014794637, + 0.031811234, + 0.017142557, + 0.012225766, + -0.0037101277, + -0.021085994, + 0.012459315, + -0.003225287, + -7.4922806E-4, + 0.015140271, + 0.018581739, + 0.029963026, + -0.020390775, + -0.014356928, + 0.0072955126, + 0.01795523, + -0.030263683, + 0.027249077, + -0.009115817, + 0.006116859, + 0.0048934487, + 0.010206715, + -0.005936069, + 0.010249818, + -0.008437483, + -0.009547165, + 0.024853943, + -0.018961607, + 0.010627751, + 0.0029551317, + 0.020340633, + 0.0027293903, + 0.007907687, + -0.0043453653, + -0.0077604526, + 9.0301654E-4, + 0.028872957, + 0.03089657, + -4.4749724E-4, + -0.0077010486, + -0.033006, + -0.019793745, + 0.0018260219, + 0.0034196568, + -0.003542316, + -0.019881789, + -0.002615418, + 0.009287033, + -0.010308174, + 0.008910404, + 0.02550792, + -0.0088918535, + 1.5283338E-4, + -3.6065426E-4, + -0.008057932, + 0.01210209, + 0.013150151, + -0.00429134, + -0.0022252488, + -0.0045694816, + 0.019725243, + -0.026913224, + 0.009856258, + -0.011154918, + -0.019085437, + -0.010673515, + 0.01151459, + 0.017661203, + -0.014460274, + 0.0013125946, + 0.003602981, + 0.026640942, + -0.010740232, + 0.008425075, + 0.02409826, + -0.029882943, + -0.02817557, + -2.2680844E-4, + -0.016049648, + 0.0064310334, + 0.018651323, + -1.3413127E-4, + -0.011226114, + 0.0067514596, + -0.006706059, + -0.0024258548, + -0.0045214193, + -0.020353053, + 0.010039936, + 0.026352352, + -0.0010341498, + -0.024379, + 0.011835407, + -3.7035887E-4, + 0.016673768, + -0.0061347196, + -0.022964668, + -0.009545078, + -0.0021810718, + 0.019286927, + -0.004545425, + -0.054862473, + 0.02446064, + 0.005044681, + -0.004697161, + -0.00394145, + 0.008841497, + 0.009838595, + -0.0011983152, + 0.015353099, + 0.009205946, + 0.015502137, + -0.011879072, + -0.009045797, + -0.016883189, + 0.015517987, + -0.022559127, + -7.4948365E-4, + 0.01728512, + -0.022661116, + 0.004639052, + -0.006907132, + 0.018628221, + 0.011551469, + 5.276949E-4, + 0.0025631129, + -0.0011837466, + 0.0030624182, + -0.020127308, + -0.003209144, + 0.014323841, + 0.016572002, + 0.014311321, + 0.024221547, + -0.014989837, + -0.01925821, + -0.001440117, + -0.010961548, + 0.02203934, + 0.009806862, + -9.4142504E-4, + 0.0075213728, + 0.0029721826, + 0.004030193, + -0.006823597, + 0.020899236, + -4.0623642E-4, + 0.0047475314, + 0.021721186, + -0.010261973, + 0.020933274, + 3.3651534E-4, + -0.009746527, + -0.03798245, + -0.0068741976, + -0.01163735, + 0.028333478, + -0.01132272, + -0.02876052, + 0.013409127, + 0.015498961, + -0.010100787, + -0.014920648, + 0.01993744, + -0.0056953505, + 0.007913725, + 0.012282417, + 0.022743847, + -0.008968839, + 0.013528874, + 0.007512306, + 0.0041679856, + -0.0071772956, + -0.011223199, + -0.007468034, + -0.00961399, + -0.023329698, + 0.002257538, + -0.007910484, + -0.0035185497, + -0.029519297, + -0.0019014681, + 0.006487412, + 0.018754832, + -0.010217561, + -0.008778099, + 0.013784764, + -0.0017598972, + -0.014993735, + -0.03362788, + 0.025500517, + -0.025379412, + -0.003775387, + 9.857251E-4, + -0.0073434105, + 0.04736677, + 0.034897223, + -0.027227841, + 0.027983772, + -0.009915226, + -0.0072180135, + 0.008657154, + -0.015617373, + 5.311199E-4, + -0.002425737, + -0.002588307, + 0.012378082, + -0.008828442, + -0.027604925, + 0.0043050684, + 0.012293409, + -0.0026074913, + -0.009258962, + 0.0016995359, + -0.0040683984, + 0.017252164, + 0.0019303227, + 0.0075563113, + -0.018862316, + 0.027357234, + 0.009279191, + 0.010355272, + -0.0036566167, + 0.0026361707, + -0.033279754, + 0.010289488, + 0.028795093, + 0.012511667, + -0.0013608556, + 0.008782728, + 0.0039757653, + 0.0075369296, + -0.013787234, + -0.00961338, + 0.006254054, + 0.029616892, + -0.019594256, + -0.023144824, + 0.00896371, + 0.015532335, + -0.015098173, + 0.01287034, + -0.008238744, + 0.010134343, + 7.680565E-4, + 0.015819684, + 0.03561071, + -0.0035734568, + -0.021626947, + -0.029269962, + -0.014145834, + -0.0381125, + 0.008265987, + -0.0013846178, + 0.010112414, + 0.009343374, + 0.017979056, + 0.035941113, + -0.0026752674, + -0.016130997, + 0.0038189238, + -0.015602164, + 0.0017023307, + 0.0150784915, + 0.008298363, + 8.421665E-6, + 0.015075465, + 0.013669997, + -0.024364512, + 0.019330487, + -0.011458198, + -0.010266166, + -0.02936829, + 0.008081178, + 0.006754068, + -0.023554819, + -0.014590262, + 0.010930559, + -0.010354924, + -0.015032623, + 0.0050611943, + 0.02510805, + 0.027686207, + 0.012666469, + 0.0065473374, + 0.012831804, + -0.010405248, + 0.007874097, + 0.020670408, + 0.005118479, + -0.0077306605, + 0.009547253, + 0.014551187, + -0.00704006, + -0.0153742945, + -0.0050833956, + 6.48095E-4, + -0.0064932546, + 0.010260567, + -0.022399485, + 0.028864384, + 0.013062434, + -0.027754383, + 0.030832268, + -0.010470773, + -0.012274986, + -0.010251914, + 0.012547188, + 0.0142334625, + 0.0043447004, + -0.0032411283, + 0.021077188, + -2.245957E-4, + -0.016473647, + 0.014633543, + -0.006463464, + -0.0036001073, + 0.008599109, + 0.0047630304, + 6.860432E-4, + 0.010834064, + -0.030843614, + 0.018073896, + 0.00798916, + 3.1200683E-4, + 0.00177201, + -0.024568047, + -0.002170504, + -0.0104560135, + -0.026464287, + -0.023662977, + 0.0076114214, + 0.0066669844, + 0.0012097282, + 4.316214E-4, + 0.0050314125, + 0.012654648, + 0.0022903115, + 0.009635894, + -0.037221253, + 0.016384065, + 0.03947726, + -0.016492777, + 0.008127014, + 0.005992311, + 0.009717496, + -0.0061200666, + 0.010068921, + 8.0448063E-4, + 0.005517631, + 0.0021754932, + 0.010632659, + 0.007925925, + 0.0193799, + 0.0050830096, + 0.018065821, + 0.039735287, + -0.026621226, + 0.0122096175, + 0.008393446, + -0.00401201, + -0.013887569, + -0.0068140686, + 0.015025241, + 0.00745052, + -0.019972255, + 0.026756419, + -0.02500548, + 0.012200549, + -0.0026667132, + 0.029133452, + 0.0030009432, + 0.010719058, + 0.02577502, + -0.008755404, + -0.0038998448, + 0.011508715, + -0.008173205, + 6.776068E-4, + -0.0027380744, + 0.010824474, + 0.010834843, + 0.0022854903, + -0.0083894655, + -0.03507068, + -8.259369E-4, + -0.0042371587, + 1.2996947E-4, + 0.015736662, + -0.019820442, + -0.02290387, + 0.0022692897, + -0.031123364, + -0.00639222, + 0.02587923, + -0.010865035, + -0.00725498, + 0.013421726, + 0.017026126, + 0.01178189, + -0.0011929736, + -0.018411376, + 0.011594542, + 0.023176737, + -0.006093363, + 0.020176126, + -0.003620138, + -0.009615035, + -0.006091562, + 0.047347408, + 0.0052679144, + 0.024163807, + -0.011819823, + -0.004418576, + 0.00538439, + 0.010186563, + -0.007875606, + 0.017930564, + -0.009444141, + 0.002733408, + 0.0043697366, + -0.005408681, + -0.021695051, + 0.010782018, + -0.0046216403, + 0.013119633, + 0.023006571, + -5.990968E-4, + -0.014934235, + 0.025946338, + -0.012909436, + -0.009119514, + 0.018391283, + 0.027191844, + 0.0053726966, + -0.01791837, + 0.013701957, + -0.011491303, + -0.01054955, + -0.0028992104, + -0.012564094, + 0.0019441595, + -0.028188948, + 0.0020383506, + 0.022267401, + 0.022617, + 2.8394518E-4, + -0.0083283875, + 0.004136004, + -0.021983, + 0.015109652, + 0.022854583, + 0.0073500383, + -0.0027510377, + 0.01014237, + 0.020419486, + 0.0059758597, + -0.01287462, + -0.008335202, + 0.021060267, + -0.00590159, + -0.028294552, + 0.0041021886, + 4.6018447E-4, + -0.023462353, + -0.01738989, + 0.018638369, + 0.0063323104, + 0.0038825313, + -0.013568124, + -2.8254205E-4, + -0.003038261, + 0.004045968, + -0.0033571133, + 0.01751106, + 0.0014877341, + -0.013570137, + -0.026005747, + 0.011643512, + -0.0016164703, + 0.0030679116, + -0.0025332856, + 0.008073468, + 4.911805E-4, + 0.014910539, + 0.0060250415, + 0.01406388, + -0.012940223, + 0.011493678, + -0.012240636, + 0.02229406, + -0.014893651, + 0.010560916, + 0.013241632, + 0.026173856, + -0.036996305, + -0.009608403, + -0.013509676, + -0.025660038, + -0.015857976, + 0.0044340705, + 0.017428154, + -0.00714, + 0.011309649, + -0.020296816, + 0.026128283, + -0.016594546, + -0.006894114, + -0.016755488, + -0.0037958599, + -0.010617682, + 0.004965565, + -0.022797586, + -0.003605011, + -0.0075164484, + -0.0031079056, + 0.02085159, + -0.0068442947, + 0.008915343, + -0.0063371705, + 0.0047710706, + -0.0023700404, + 0.011071837, + 0.012411809, + -0.032156125, + -0.0023144032, + -0.020677898, + -2.1034013E-4, + -0.028389325, + 0.026497405, + -0.0038584105, + 0.012863973, + -0.010912408, + -0.013150836, + 0.01684397, + -0.011846386, + 0.022945572, + 0.017139044, + -0.011215291, + 0.007867966, + 0.0022658566, + -0.011684514, + 0.0010552102, + -0.0029105037, + -0.0057007843, + 0.010050777, + -0.00975311, + -0.007604072, + 0.0052747736, + -0.014497236, + -0.017613875, + 0.002393369, + 0.036336187, + 0.0058896756, + 0.004295538, + -0.026548384, + -0.0024956788, + 0.012222281, + 0.00791614, + 6.158011E-4, + -0.0040427907, + -0.002979035, + -0.013229157, + 0.015258382, + -0.013135631, + 0.017086789, + 0.027337572, + -0.024678795, + -0.0020454975, + -0.021553727, + -0.0019980355, + 0.019722011, + -0.022015413, + 0.011388416, + 0.0037079928, + -0.008194224, + -0.028576465, + 0.017618502, + 0.011652795, + 0.001398793, + 0.00670353, + -0.03753576, + 0.0029013453, + -0.010677906, + 0.023916828, + 7.345693E-4, + -0.017942624, + 0.0024839009, + 0.0026172977, + 0.030800743, + 0.02955798, + -0.014998793, + 0.014519489, + -0.0023768304, + -0.010054123, + -0.011215244, + 0.01444929, + -0.0051254253, + 0.0063259215, + 0.0058504203, + -0.024079567, + 0.012710767, + 0.0060376264, + -0.014792106, + 0.010691083, + -5.3651544E-4, + -0.019020924, + 0.028485315, + 0.03792957, + -0.009126422, + -0.010253131, + -0.012483042, + 0.0028109003, + -0.022356631, + 0.008070972, + -0.023119021, + 0.002537873, + 0.01623141, + -0.0062046424, + -7.930205E-4, + 1.9001681E-4, + 9.165563E-4, + -4.245948E-4, + -0.011428853, + -6.8359217E-4, + -0.010443858, + 0.0097217895, + -0.008955464, + -0.022088688, + 0.013172753, + -0.008265637, + 0.0029989074, + -0.048025597, + 0.009011347, + -0.011475084, + -0.021552637, + -0.011118319, + 0.015149062, + 0.0029504837, + -0.0141955605, + 0.009438073, + 0.012130938, + 0.0056781773, + -0.014966597, + -0.005017376, + 0.015190624, + -0.0156222135, + -0.016092626, + 0.014860026, + -0.016001264, + 0.030206218, + -0.006470301, + -0.0071103014, + 0.0095191905, + 0.007322196, + -0.023396917, + 0.0027079433, + -0.014281451, + 0.017950576, + -0.010090164, + -0.010102744, + -9.385064E-4, + 0.0037572128, + 0.0017669722, + -0.014981596, + 0.02147773, + 0.0054132477, + 0.010716625, + -0.041396335, + 0.023034655, + -0.031185297, + -0.015723398, + -0.019101938, + -0.012047, + 0.0019402896, + 0.028148638, + -0.0025035744, + 0.0011770008, + 0.015908267, + -0.014307779, + 0.005725893, + 0.0084836725, + -0.010674208, + 0.037574988, + -0.0018587984, + -0.020802692, + 0.0072078765, + -0.012669605, + 0.033720788, + -0.015792534, + 0.0060412916, + 0.006548078, + -0.03109886, + 0.01744592, + -0.024800938, + 0.0040414184, + -0.019811142, + 0.0048279325, + -0.01847663, + 0.014215729, + 0.022035347, + -0.005240708, + -0.03637401, + 0.0066989884, + 0.006716289, + 1.479913E-4, + 0.0050843176, + 0.019950176, + -0.015343729, + 0.0037146884, + 0.03633913, + 0.009713605, + -0.020980855, + 4.5551613E-4, + 0.008382112, + 0.0051357155, + -0.0028367015, + 0.0022407991, + 0.015730428, + -0.005499408, + -0.0079977, + 0.022221496, + -0.03739826, + 0.018605882, + -2.1188258E-4, + 0.0019466183, + -0.03334337, + -0.0060898224, + 0.015567754, + 0.00767573, + -0.016501827, + -0.006326764, + 0.014976826, + -0.021873191, + -0.0068477807, + 0.024234634, + 0.016889617, + -0.014599964, + 0.014680664, + -0.0033854472, + -0.005737167, + -0.010852972, + -0.01695887, + -1.06797714E-4, + -0.0069510737, + 0.012700392, + -0.017704181, + 0.0011356237, + -0.006018508, + 0.0072618756, + 0.009080332, + -0.008746339, + 0.0010378733, + 0.0015588161, + -0.007925336, + -0.005010284, + 0.0012624932, + -0.0074512484, + -0.013973909, + 0.0070986603, + 0.0030255169, + 0.019388763, + 0.0010359525, + 0.0027219532, + -0.019034581, + -0.036275044, + 0.00293627, + -7.445981E-4, + -0.027174115, + -0.037269313, + 0.010578385, + 0.0019507231, + -0.006611841, + 0.014642419, + -0.015486566, + -0.0070188185, + 0.017657753, + -0.0021463234, + -0.036429256, + -0.030941337, + -0.005897976, + 0.003500428, + 0.0127016995, + 0.019156612, + -0.0080592455, + 0.026620585, + 0.01110257, + -0.039432306, + -0.009758028, + -0.005218736, + -0.0022128695, + -0.004025722, + -0.009509247, + 0.016596055, + -0.008454638, + 0.01364991, + -0.018921643, + 0.0364997, + 0.001983671, + 0.02015775, + 0.022102062, + -0.007576339, + -0.0013821247, + -0.02910341, + -0.021643111, + 0.014731005, + -0.026548909, + -0.026244326, + 0.02703907, + -0.0017893771, + -0.009631995, + -0.0077399528, + -0.0057677436, + -0.0074180034, + 9.1032457E-4, + -0.020930031, + 0.0332442, + -0.0010484331, + -0.01688689, + 0.019225618, + -0.003551354, + -0.028335799, + 5.235691E-4, + 0.003406081, + -0.012803957, + -0.017197609, + 0.0100318985, + 0.01350301, + -0.015777318, + 0.02697021, + 0.0016315064, + 0.006391037, + 0.010513484, + 0.008730744, + 0.0012087199, + -0.007646901, + -0.01007878, + -0.021127857, + -0.031070225, + 1.2203083E-4, + 0.0147786485, + 0.016685242, + 0.04772018, + -0.016285144, + 0.017180186, + -0.01792529, + 0.031353515, + -0.017237201, + 0.0052774823, + 0.011266307, + 0.020948179, + 0.014302298, + -0.019730186, + -0.017286247, + -0.02343421, + 0.0127781425, + -0.018209228, + -0.018779432, + 0.015695246, + 0.010622511, + -0.0063824286, + -0.009078944, + 0.006500103, + -0.020985339, + -0.0064531807, + 0.007028974, + 0.0010249546, + -0.01741288, + -0.005316425, + -0.005782885, + -0.017288769, + 0.02180125, + 0.0050053103, + 0.012173998, + 0.00958733, + -0.013191523, + -0.0064401194, + -0.008044899, + -0.005894978, + -0.022896193, + 0.013115271, + 0.0033055346, + 0.007952238, + -2.611169E-4, + -0.00418567, + -0.0018392166, + 0.016256368, + 0.011597978, + -0.0064351405, + 2.9976704E-4, + -0.0039547263, + -0.014153005, + 0.037983622, + 0.006615329, + 0.034350418, + -0.008808693, + 0.022622589, + 0.0051803472, + 0.027883861, + -0.011276687, + 0.0082162265, + 0.0016939158, + 0.0041281227, + -0.014321123, + -0.004934657, + 0.01196836, + -0.008351926, + 0.023507426, + 0.008321775, + -0.0060240356, + 7.8317575E-4, + -0.012609808, + -0.0032249412, + -0.021740794, + 0.015299441, + 0.016802048, + 0.008607384, + -0.004746837, + -0.023369407, + -0.01562603, + -0.022575434, + 0.0257396, + -0.0046588373, + -0.017336473, + -0.0063771377, + 0.022509543, + 0.0094591025, + 0.018384298, + 0.028727785, + 0.0053115943, + 0.015267792, + 0.0036632535, + -0.030491952, + -0.019170577, + -8.240058E-5, + -0.015259777, + -0.004788999, + -0.004883354, + 0.012187955, + -0.0030435545, + -0.00502513, + -0.008722903, + 0.011598105, + 0.006250179, + 0.008321749, + -0.031768557, + 0.0039463965, + -0.004663264, + 0.017644303, + 0.016238507, + 0.00813153, + 0.022477714, + 0.027208291, + -0.0155428, + -0.010767065, + -0.037477586, + 0.025605304, + 0.007536124, + 0.011046598, + -0.0054704873, + -0.031253204, + -0.007061656, + 0.009112353, + 0.0047275224, + 0.012585632, + 0.031980015, + -0.0048107104, + -0.004321082, + 0.0015611, + 0.024615012, + 0.0011186531, + -0.0040874165, + 0.027602183, + 0.0034404064, + 0.024864139, + -0.034923796, + 0.008530248, + -0.008203487, + -0.01618714, + 0.017078549, + 0.014644673, + -0.012909697, + -0.011204822, + -0.008480467, + 0.005719572, + 0.008426153, + 0.0148029, + 0.046487764, + -0.015270355, + 0.0027427413, + -0.011076038, + 0.005188919, + -0.012028851, + 0.013284848, + -0.006281783, + 0.0032728561, + -0.00792064, + 0.015611468, + 0.0041643465, + -0.011521273, + 0.00884839, + -0.009798479, + -0.002213424, + -0.017681386, + -0.010578031, + 0.020131597, + 0.014484334, + 0.021093834, + 0.039625987, + 0.022563372, + -0.019316256, + 0.017879982, + -0.0068740933, + -0.0074363546, + 0.011474387, + -5.212913E-4, + 0.0033141843, + -0.021103265, + -0.005500571, + -0.015548849, + -0.008442248, + -0.009247449, + 0.0080430815, + -8.4595225E-4, + 0.0035614243, + -0.0021092386, + 0.023058672, + -0.035742722, + 0.025812468, + 0.023294257, + 0.006369177, + 0.01736585, + -0.010039292, + 0.008841655, + -0.0068236305, + 0.0019128865, + 0.0140437735, + -9.027134E-4, + -0.018609943, + -6.021645E-4, + 0.0018539391, + -0.02002934, + -0.019623492, + 0.013252089, + -0.017535802, + 0.009413357, + 0.00891012, + -0.013090715, + -0.015533722, + 0.0129813375, + -0.014385691, + -0.008058046, + -0.010402724, + 0.01783702, + 0.012003243, + -0.021765916, + -0.00461034, + 0.0049256934, + -0.0056749163, + -0.01278472, + -0.0020470703, + 0.009737452, + 0.004380646, + 0.004132146, + -0.014619563, + -0.009325308, + 0.030991925, + -0.042046003, + 0.016082853, + 0.013780703, + -0.007155208, + -0.0065140543, + -0.017122032, + 0.004083021, + 0.0014322317, + -0.015079662, + 0.03143565, + 0.010097715, + -0.028253619, + 0.012022459, + -0.014840226, + 0.0121694375, + 0.013015964, + 0.017891947, + 0.008919911, + 0.0047252905, + -0.00838616, + 0.01405592, + -0.0046719112, + 2.6437314E-4, + 0.025761703, + -0.009385679, + 0.005602557, + -0.0042391745, + -0.011214882, + -0.02370418, + -8.8053563E-4, + -0.017027013, + 0.0026740874, + 0.01150609, + -0.011879848, + 0.03631695, + -0.00827047, + -0.008971908, + 0.010372409, + 0.010893105, + -0.0010183273, + 0.00559351, + 0.0074043237, + -0.006454514, + 0.017169468, + -1.487945E-4, + 0.030724723, + 0.021333793, + -0.0070614233, + 0.018936293, + 0.010271594, + -6.582848E-4, + -0.026910666, + -0.018183392, + -0.025582487, + -0.007135228, + -0.006422268, + 0.016891947, + 0.013072346, + -0.008258316, + 0.010461518, + -0.0067434483, + -0.0072780405, + -0.011022273, + 0.015462551, + 0.021363275, + -0.0037326813, + -0.005305936, + 0.025835956, + -0.007847291, + -0.002537812, + -0.0057896343, + 0.015958294, + -0.011037692, + -0.0014158755, + -0.0071513583, + 0.0018517948, + 3.628397E-5, + 0.0118616065, + -0.017088456, + -0.014450422, + 0.0028801216, + 0.01596147, + 0.012943144, + 0.015632099, + 0.005508104, + -0.0038964034, + -0.028874498, + 0.0150451185, + 0.0030834454, + -0.0010356003, + -0.006310917, + 0.02370123, + -0.014121062, + -0.008578971, + -0.0011852274, + 0.006859119, + -0.010418543, + 0.022338584, + 0.02340291, + 0.013123063, + 0.024175804, + -0.04574764, + 0.0050404253, + -0.012583425, + -0.0040708436, + -0.009187829, + 0.025796495, + 0.009026406, + 0.013671401, + 0.019638553, + 0.020803798, + -0.020735225, + 0.01449466, + 0.008249327, + -0.0075506163, + 0.024381332, + -0.0023704842, + -0.0061508985, + -2.1739892E-5, + -0.02591957, + -0.0059509184, + -0.001323904, + 0.0069451258, + 0.02441513, + -0.016188068, + -0.007990533, + 0.008174178, + -0.01804991, + 0.015461273, + -0.010738996, + -0.003487142, + -0.022241907, + -0.019888906, + -0.03740476, + -6.871941E-5, + -0.015475462, + 0.0072156154, + -1.3555921E-4, + 0.013723059, + 0.007173296, + -0.021398412, + 0.0056332555, + -0.009063185, + -0.045576986, + -0.019354392, + 0.0033577362, + 0.0041522803, + 0.0048207287, + -0.0019170989, + 0.0026360394, + -5.075412E-4, + -0.00858261, + 0.001419542, + -0.014748489, + -0.0033727565, + 0.02462114, + 0.013738106, + 0.023379529, + -7.514193E-5, + 0.003473505, + -0.042691626, + 0.015791107, + 0.030611418, + -0.012113935, + 0.027266402, + 0.002469743, + 0.0134914825, + -0.013700934, + -0.013494067, + 0.015578575, + 0.04459316, + 0.0022199713, + 0.011614917, + 0.0116793215, + -0.0021596914, + -0.033596136, + -0.017515374, + -0.0025743125, + -0.0013284066, + 0.0065255184, + -3.2924807E-5, + 0.0013853826, + 0.0029855985, + -0.03377836, + 0.024680821, + -4.2714018E-4, + -0.012943493, + 0.0056982245, + -0.0017194523, + -0.007735948, + -0.0029225282, + -0.007512178, + 0.01003532, + 0.01733676, + 0.010140342, + 0.01553337, + 0.0035410454, + 0.014285576, + 0.016242513, + 0.008777195, + 0.0025390736, + -0.0028954132, + -0.013777866, + 0.022180479, + 0.011591372, + 0.012089419, + 0.02610878, + -0.006901434, + -0.01019552, + 0.0048969556, + -0.005468667, + 0.014360677, + 0.012431046, + 0.0121134855, + 0.012534278, + -0.009214539, + 0.03842295, + 0.0020815355, + 0.025021644, + -0.0060534077, + -0.0068853684, + 0.0041747997, + -0.004408713, + 0.015689874, + -0.011098483, + 0.017491262, + -0.028418208, + 0.015731307, + -0.0201594, + 0.0076654907, + -4.482421E-4, + -0.006226128, + 0.013733254, + 0.017102169, + 0.0028510254, + -0.015291307, + 0.0046864487, + 0.0020700963, + -0.0038249614, + 0.021714337, + 0.007496448, + 0.021307534, + -0.022035047, + 0.00387319, + -0.02060209, + -0.0042948443, + -0.008019227, + 0.012637562, + -0.022795906, + -0.024370864, + 0.0048758653, + 0.022267738, + 0.008581524, + 0.027814278, + -0.022380581, + -0.00642069, + -0.03570386, + -0.003909719, + 0.003376383, + -0.0021770964, + 0.0011527155, + 0.026479185, + 0.005814775, + 0.01024529, + -0.018096289, + 0.006804488, + 0.008892876, + 0.01597315, + 0.025119197, + -0.018367372, + 0.014303129, + 0.0067751277, + -0.042153582, + 0.04546543, + 0.027080972, + -0.0066877934, + -0.01919464, + -0.002026267, + -0.020347586, + -0.013147812, + -0.018527279, + -1.4621227E-4, + 0.008373079, + -0.009651561, + 0.020633781, + -0.009067043, + 0.0022930214, + -0.026016915, + 0.014900816, + -0.025041588, + 0.013102285, + -0.0038136444, + -0.01875246, + -0.0011234068, + 0.02799714, + -0.029147703, + -0.02020627, + 0.0076724873, + 0.019705547, + -0.009375884, + 0.0019317967, + -0.012167779, + -0.03427914, + 0.017064475, + -0.0053631165, + 0.0031657133, + -0.03788161, + -0.015922396, + -6.233615E-4, + -0.021193713, + 0.0038651044, + -0.00927096, + 0.013787418, + 0.023044746, + 0.01499777, + -0.012853662, + -0.02569855, + 0.002723471, + 0.006890378, + 0.016127495, + 0.025548453, + -0.010156175, + 0.015636079, + 0.013451974, + 0.0057914155, + 0.023995796, + 0.01910616, + 7.500106E-4, + 0.018833933, + -0.016867535, + -9.104727E-4, + -0.008280947, + 0.01826502, + 0.035475515, + 0.014936824, + 0.024977343, + -0.009785568, + -0.01427587, + -0.005411929, + -0.044731293, + 0.011772646, + 0.028392462, + -0.006603776, + -0.0075005363, + 0.0046192394, + 0.020245798, + -5.06974E-4, + 0.021404654, + -0.015577666, + -0.014972885, + 0.022487653, + -0.0059345826, + -0.008537882, + 0.0038695184, + -6.9649395E-4, + -3.6265652E-4, + 0.02371717, + 0.003317088, + 0.016082074, + 0.0014256515, + -8.1877783E-4, + -0.011403684, + -0.0043231305, + 0.0055393293, + 0.0064380295, + 0.006381056, + -0.006941785, + -0.0028899938, + 0.021344902, + 0.013620307, + 0.020244943, + 0.0023407207, + -0.007971145, + 0.0153485155, + -8.731292E-4, + 0.008036119, + 0.0140571715, + 0.005981259, + 0.002665046, + -0.03531145, + 0.011091941, + 0.00664949, + -0.016341342, + 0.0018734267, + -0.0075874794, + -0.021293843, + -0.0061893715, + 0.0069484194, + -0.02435641, + 0.008860561, + -0.011436924, + 0.01140433, + 0.016114097, + 0.022121014, + -0.0022595788, + -0.0059272503, + -0.0024012357, + -0.010220264, + -0.008584961, + -0.0056808805, + -0.0035322935, + -0.0034675722, + 0.007144414, + 0.007872796, + -0.022397391, + 0.0030838859, + -0.013341196, + 0.00755082, + 0.015794963, + 0.010988265, + 0.021290252, + -0.017381644, + 0.004591312, + -0.001067105, + -0.02681994, + 0.022069141, + -0.025941512, + 0.012423125, + -0.018856354, + -0.0102092605, + -0.0079896, + -0.0021178802, + -0.02480439, + 0.01039588, + -0.026026215, + 0.004164443, + -0.0120242275, + -0.002283703, + 0.014086056, + -0.0048032496, + 0.008537657, + 0.03895248, + -0.0056718467, + -0.0040166583, + -0.021089282, + 0.009407698, + 0.0048777773, + 6.491304E-4, + -0.009157669, + -0.0055516125, + -0.0076571535, + 0.017694341, + 0.015159238, + -0.021623543, + -0.01713531, + -0.0028747593, + 0.0037311777, + -0.0071789683, + -0.008876553, + 0.0074368534, + -0.016324122, + -0.009207952, + 0.0030976443, + 0.009987316, + 0.02244681, + 3.7526217E-4, + -0.010503768, + 0.0089161815, + -0.003980183, + 0.021054573, + -0.0012579843, + -0.0045175436, + 0.00388269, + -0.022097638, + -0.0024452617, + 0.037533037, + -0.007114789, + -0.0104719475, + -0.022293275, + 0.051425762, + -0.0210244, + 0.022030924, + 0.008159116, + 0.015554347, + 0.0070261206, + -0.012404686, + 0.023354605, + -0.0119227795, + -0.007154725, + 0.005851743, + -0.04203532, + 0.01320021, + -0.0060266983, + 0.007436811, + -0.010214898, + -0.016163638, + 0.0031163993, + 0.009239445, + -7.72781E-4, + 0.024559442, + 0.035723, + 0.009701843, + -0.009637446, + 3.071852E-4, + -0.006045281, + -0.0134557225, + -0.013142768, + -0.004592943, + 0.0012728149, + -0.006560984, + -0.014244982, + 0.0056365305, + 0.012626403, + -0.019572798, + 0.0063060173, + 0.00931714, + 0.008355123, + 0.022455681, + -0.01787364, + -0.0038334017, + -0.021628294, + 0.007226294, + 0.020720186, + 0.016002692, + 0.024869392, + -0.021496458, + 0.02335674, + 0.02273198, + -0.017827163, + 0.0060435818, + -0.0055033597, + -0.0063480265, + -0.0013495008, + 0.009892476, + 0.022206279, + 0.021313533, + 0.019445354, + -0.015777048, + 0.015347974, + 0.008834173, + -0.010767448, + -0.020191483, + -0.02028704, + 0.0064888545, + -0.014063741, + -0.013514545, + 0.014952474, + -0.022379156, + -0.01955388, + -3.94765E-4, + -0.0036323748, + -0.009061684, + 0.043032195, + 0.0014959654, + 0.008255829, + -0.02111, + 0.008540732, + 0.020018047, + -0.0064239684, + -0.013686746, + 1.6899618E-4, + -0.03314709, + 0.0065033436, + -0.00831471, + 0.01574041, + 7.0371566E-4, + 0.01948906, + -0.01403488, + 4.565982E-4, + -0.0032047401, + -0.027259856, + 0.01123581, + -0.012107184, + 5.1349134E-4, + -0.0026676864, + 0.01576457, + -0.009444149, + -0.0016279393, + 0.02384529, + 0.0115845185, + 0.026100447, + 0.0058051324, + -0.026084362, + 0.014756662, + 0.016816467, + 0.018400427, + 0.013342564, + 0.012923686, + -0.020505434, + -0.018005108, + 0.035244815, + 0.009918896, + -0.012975513, + -0.0078110383, + -0.007042393, + 0.0134465685, + -0.0076848823, + -0.0038401224, + 0.004765014, + 0.006062834, + 0.0049928892, + -0.010207612, + -0.0055251964, + 0.011524048, + 0.019765632, + 0.007910075, + 0.010301649, + 0.031961232, + -0.022661855, + 0.016336814, + -0.011883656, + 0.008464015, + -0.011582844, + -0.0035720733, + 0.008264999, + 1.5995635E-4, + 0.010508685, + 0.023349376, + 0.01794877, + -0.0011766187, + 0.0037970673, + 0.035182524, + 0.0067851394, + 0.011038565, + -3.440994E-4, + -0.024573606, + 0.0030420087, + -0.0019015686, + 0.020134794, + -0.0010770706, + -0.0018018192, + -0.002357119, + 0.0012323818, + -0.037726898, + -0.01025919, + 0.021047037, + 0.02031573, + 0.007847266, + 0.0101709375, + 0.006342968, + 0.030797645, + 0.011386478, + -0.002371579, + 0.0042802743, + 0.03568628, + -0.02254462, + 0.0059970743, + -0.011015752, + 0.014279652, + 0.013495602, + -0.014315344, + -0.020562937, + 0.0044666, + 0.017895022, + 0.0059458036, + -0.022956258, + -0.003498787, + 0.0031163918, + 0.009009019, + -0.032246966, + 0.009262359, + 0.032699272, + 0.0025456066, + -0.007223557, + -0.0100465845, + 0.012023789, + 0.0020486168, + -0.03550431, + 0.0072290804, + -0.025678227, + -0.006705996, + -0.020741176, + -0.010843312, + 0.020273665, + 0.0012097311, + 0.019878328, + -0.028744578, + 0.02284037, + -0.021656053, + 0.005549069, + 0.0013223484, + 0.015362913, + 0.016378794, + -0.009539525, + 0.0097796945, + -0.019023467, + -0.027188059, + 0.002508784, + -0.0027705312, + 0.012779564, + -2.7415392E-4, + -0.020554755, + 0.01226089, + -0.037296098, + 0.023616051, + 0.019209579, + -0.005956382, + -0.016229363, + 0.013034581, + 0.0030288266, + -0.006723106, + 0.014076383, + -0.020815648, + -0.002841164, + -0.009324002, + 0.004855677, + 0.01131178, + 0.014758744, + -3.661904E-4, + -0.00390899, + -0.005530099, + 9.676142E-4, + 0.011029044, + -0.012871256, + -0.016964313, + 0.009605912, + -0.0245068, + 0.022498352, + -0.024639018, + -0.016628122, + -0.01789132, + 0.0015186488, + 0.011122007, + 0.0010547028, + -5.9513067E-4, + -0.0018250912, + 0.0019689512, + 0.009343417, + -0.007712031, + 0.020107543, + -0.032806862, + -0.029407648, + -0.021146255, + -0.019372137, + -0.0058116377, + 0.0033604552, + 0.013944137, + -0.004783147, + -0.0060555753, + -0.0033045895, + -0.008902689, + 0.0012789491, + 0.009603314, + -0.0016903213, + 0.012809441, + 0.008478102, + 0.014106078, + 0.021761969, + -0.006477164, + -0.0117526455, + -0.015010885, + 0.017160797, + -0.010420212, + -0.010335479, + 0.026020661, + -0.00205015, + -0.013742174, + 0.0062263133, + 0.002853957, + -0.0037000275, + -0.01502262, + 0.025066713, + -0.0026925898, + 0.010913066, + 0.0020323873, + 0.0029936603, + 0.023578132, + -0.007950902, + -0.0039443593, + 0.01875361, + -0.007892176, + 0.00553392, + 0.009113083, + 0.022117188, + -0.005254124, + 0.036081668, + -0.029583061, + -0.016042976, + -0.017020352, + -0.0069222376, + 0.0056571136, + -0.00416778, + -0.0010072544, + -0.007424604, + 0.005551009, + -0.013734834, + -0.011387643, + 0.004346201, + -0.016223263, + 0.004932942, + -0.020548595, + -0.0043799677, + 0.032170333, + -0.0050080665, + 0.015525324, + -8.915834E-4, + 0.009754385, + 0.015146084, + -2.2457978E-4, + 0.0013795979, + 0.0020065182, + 0.015819874, + -0.008618452, + 0.016119735, + -0.02929287, + -0.019985167, + 0.0031037861, + -0.019780904, + -0.0067729694, + 0.016360754, + -0.011299027, + -0.002544898, + -0.018908663, + -0.014160612, + 0.002607438, + 0.017320676, + 0.010476416, + -0.012814291, + 0.034480385, + -0.014058535, + 0.021393567, + -0.012482836, + 0.024562573, + 0.02951573, + -0.009937405, + -0.0031365983, + 0.011238587, + -0.002542502, + -0.007859191, + -0.0072586825, + -0.0037159398, + 0.0107536595, + -0.011959442, + 0.00132336, + -0.008523643, + 0.005221913, + 0.03413956, + 0.015705671, + -0.0019289277, + 0.018393952, + 0.00233758, + 0.007220274, + -0.021380808, + 0.019577766, + -0.015211814, + -0.004841383, + -0.0017099831, + -0.030458303, + 0.011624375, + 0.01420824, + 0.029227369, + 0.0014677743, + -0.010488811, + -3.41815E-4, + 0.020558344, + 0.018428383, + -5.3786766E-4, + 0.007891283, + -0.016514948, + 0.01969228, + 0.020387294, + 0.012295295, + 0.0063883197, + -0.0051710904, + 0.0052292803, + -0.013575526, + -2.5542153E-4, + 0.0015547372, + -0.02523486, + -0.0019461605, + -0.014371222, + 4.465332E-5, + -0.00786934, + 0.021264361, + -0.0016298919, + -0.0069478005, + 0.0037357013, + 0.018368363, + -0.012861601, + 0.0012879684, + -0.0072937813, + 0.014366097, + -0.023885697, + -0.0014866468, + 0.01124276, + -0.007566062, + -0.007901979, + -0.022416046, + 0.021950997, + 0.02738718, + 0.0044931606, + 0.023044664, + 0.010847157, + 0.045241755, + 0.0053822715, + 0.0019520922, + 0.026097093, + -0.010277125, + -0.016439047, + 0.015234088, + -0.023350732, + 0.015252007, + 0.013874985, + 0.014689708, + 0.006572597, + 0.0014987215, + 0.00876247, + 0.0038024331, + -0.027222542, + 6.688566E-4, + 0.0053602555, + -5.425769E-4, + -0.005399212, + 0.026378816, + 0.012477808, + 4.114099E-4, + 0.014377161, + 0.006895101, + -0.014955351, + -0.018593721, + -0.009078347, + 0.0039526927, + -0.028153328, + 0.0136166345, + 0.007849949, + 0.020722369, + -0.012972766, + -0.0069215386, + 0.029546207, + -0.00762625, + -0.011299515, + -0.0058367485, + 0.011480272, + 0.012855871, + 0.022362916, + 0.015094469, + 0.015071824, + -0.009170689, + -1.155673E-5, + 0.009262763, + 0.0010923645, + -0.016963307, + -0.022491546, + -0.00848095, + -0.0195163, + -0.011537819, + 0.014513931, + 0.002739762, + 0.006655972, + 6.8444456E-4, + 0.029926267, + -0.004891449, + -0.020099336, + 0.015127333, + -0.0041582193, + 0.0033035488, + -0.041935228, + -0.025296314, + 0.0058544, + -0.0033385456, + -0.0124175325, + 0.010942481, + -0.023720073, + -0.015290792, + 0.004841418, + 6.980397E-4, + 0.036501728, + 0.0049164286, + 0.019194419, + 0.028907424, + 0.0029151961, + 0.034929495, + -0.0020370272, + -0.005253295, + -0.0019299793, + 0.0018344948, + 0.022811767, + -0.021379955, + 0.035399623, + -0.005362713, + -4.561823E-4, + -0.0014258513, + -0.0014045031, + -0.009655489, + -0.02438164, + -0.019316884, + 0.011369588, + 0.018389884, + -0.02962009, + -0.013088413, + 0.01542279, + -0.019211289, + -0.00768901, + -0.023719396, + -0.011036799, + 0.016145747, + -0.0071074474, + -0.0036902532, + -0.02029512, + 0.020759095, + 7.961399E-5, + 0.0252919, + -0.017196866, + 0.004782796, + 0.015812777, + 0.042359322, + 0.008583693 ], - "paletteEmbedding": [ - 0.0043462366, 0.0025241578, -0.026053838, -0.018682376, 0.015808903, - -0.015479424, 0.015440122, 0.032075707, 0.034213178, 0.023991711, - 0.021811504, -0.020705203, -0.056136068, -0.029452845, -0.050560325, - 0.024691844, 0.022630416, 0.042483713, -0.0030982418, -0.0075446903, - 0.042051, -0.019453311, -0.0027513013, 0.012170739, 0.022849124, - -0.018672671, -0.013509995, 0.031589366, -0.025589153, -0.03672459, - -0.008822765, 0.0023158677, 0.015022825, -0.025728984, 0.006432059, - 0.014194137, 0.013835042, 0.005645349, 0.025770249, 0.047437973, - 0.012301042, -0.03705655, -0.01700416, -0.049871225, 0.006032724, - 0.008092661, 0.020432273, 0.01809728, -0.020165136, -1.2729198e-4, - -0.018240107, -0.0065160454, -0.0204593, 7.2259374e-4, 0.0038498193, - 0.0013212295, -0.015678763, -4.680708e-4, 5.01204e-4, -0.031565152, - -8.8316627e-4, -0.03781441, 0.027666964, -0.0022336924, 0.024222098, - 0.057293348, -0.012932951, -0.034367166, -0.021017397, 0.004153939, - -0.02158155, 0.05325758, -0.0070861736, -0.009522438, -0.029356416, - -0.0063387174, 0.037913576, 0.047194336, 0.031103926, 0.025448596, - -0.028931098, 0.0024412854, 0.02098538, -0.012522375, -0.015743699, - 0.020763628, -0.03267436, -0.06684208, 0.004354221, 0.038950324, - -0.036124416, -0.006551071, 0.035582345, 0.008039872, 0.040012933, - 0.0273558, -0.04317103, 0.060754735, -0.031126218, -0.026572479, - -0.030289948, -0.05031666, 0.023327528, -0.012104692, -0.014317996, - 0.012872602, 0.03079111, -0.007412101, 0.010075482, -0.10266195, - 0.015193069, 0.013382206, 0.062403444, 0.035593525, 0.027165174, - -0.021373155, -0.009481948, -0.009041637, -0.104109816, -0.01758342, - -0.012427463, -0.011286016, -0.020395556, -0.06586726, -0.021079578, - 0.0046239593, 0.026922254, 0.014435585, -0.006145338, -0.007851461, - -0.03251844, 0.0060439156, 0.038403604, 0.0037752842, 0.05963085, - -0.050417162, -0.009811971, 0.033678032, -0.04329654, 0.008185471, - -0.026557902, -0.008220531, -0.013715651, 0.038107857, 0.038384203, - -0.015575387, 0.019032924, 0.013131147, 0.0046868008, -0.0039354526, - 0.029826893, -0.026910182, -0.028024765, 0.030633729, -0.049595747, - -0.02815859, -0.006414553, -3.4725334e-4, -0.003283292, 0.0022347397, - 0.052939527, 0.017817345, -0.010428929, 0.006804665, -0.01790093, - -0.0039746566, -0.026208764, 0.043341953, -0.0060801078, 0.032442525, - 0.0056680036, 0.033439673, -0.010046004, -0.059807204, 0.031248864, - 0.010990803, 0.033942863, -0.03394903, -0.01115624, 0.052850682, - -1.4472769e-5, 0.0065368474, -0.035036743, -0.042245258, -0.03512753, - -0.022621196, -0.05342021, 0.018591333, 0.013330766, 0.023015061, - 0.057975136, 0.05043442, 0.009107922, 0.040672857, -0.017199919, - -0.060857005, -0.033867158, 0.053443566, -0.042262197, 0.035892494, - 0.01953724, 0.02024554, -0.0144798, -0.038691767, -0.028380988, - 0.014091853, -0.0131899705, 0.012123925, -0.0088621415, -0.04710142, - 0.058534548, -0.020937772, -0.08681079, -0.011106548, 0.0015927897, - 0.05619352, -0.023698792, 0.032013535, -0.016515227, -0.007065813, - -0.009590135, 0.03124905, -0.06502934, 0.0054680803, -0.014490926, - -0.041454356, 0.010485912, -0.014389516, -0.018039946, -0.018978454, - -0.08069767, -0.0058035296, -0.031309303, 0.010537934, 0.030021163, - -0.013869437, -0.0022924151, 0.02559539, -0.03076601, 0.011160543, - 0.06907477, 0.026069822, 0.012027746, -0.021994293, -0.019619586, - -0.011776473, -3.8952607e-4, 0.029934796, -0.001724401, -0.036242563, - -0.014067477, -0.045440495, 0.0066125775, 0.01151922, 0.03046724, - -0.017530456, -0.05764993, -0.038872473, 0.0014786754, 0.02750719, - 0.02736099, -0.06282033, -0.034056343, -0.013049687, 0.027215172, - 0.006806635, 0.008535899, -0.045087937, -0.005421554, 0.046982836, - 0.028739939, 0.024052368, -0.011229947, -0.024491036, 0.010807984, - -0.011360342, 0.037188616, 0.028951067, -0.011510083, 0.04355042, - -0.033417962, 0.03954946, -0.07292036, 0.02996501, -0.024532346, - 0.022244202, -0.039030883, -0.0064138086, -0.004756431, 0.0079320995, - -0.026110308, 0.013777168, -0.030829845, -0.009019195, -0.048109557, - 0.044876836, 0.057159983, 0.0032965657, 0.071559355, -0.0551942, - 0.030793663, -0.02911217, -0.014137232, 0.011355422, -0.022159591, - 0.015021701, 0.0218484, -0.054660145, 0.04349905, -0.0059433626, - 0.047706332, -0.009974416, -0.033544075, 0.08076875, -1.6406458e-4, - -0.020341977, -8.4934843e-4, -0.04338949, 0.016867265, -0.0029437284, - 0.012074869, -0.076586954, 0.026948124, 0.028182352, 0.0028030854, - 0.009804673, -0.044877276, -0.031871308, -0.009211273, -0.03169534, - -0.02693441, 0.006427972, -0.020260418, 0.0040414343, 0.03379341, - -0.019233683, -0.068358175, 0.04813142, 0.0074373647, -0.011235789, - 0.043527637, -0.0068344367, 0.0040826765, 0.008407656, 0.016831443, - -0.014033936, -0.013255274, -0.016475422, 0.018944725, -0.0059419046, - -0.0039814003, 0.031506486, 0.013251215, -0.051867865, 0.04665383, - -0.008722896, 0.026288223, 0.025715448, -0.022872481, 0.026923886, - 0.044082243, 0.008622265, -0.026809232, -0.0016565477, 0.03362021, - -0.0027882748, -0.028174674, 5.8133586e-4, -0.0073203295, -0.04889733, - -0.01320527, 0.047516238, -0.008446382, -0.013532119, -0.013000318, - 0.015018997, -0.04177387, 0.05360777, 0.014236694, 0.0048807273, - 0.0042080292, 0.004007175, -0.0123500135, -0.006852519, 0.013362071, - 0.060965728, -0.043989025, 0.022040859, 0.009783278, -0.015853453, - -0.04953232, 0.012653782, -0.059728917, 0.030168897, -0.022533495, - -0.013059613, -0.0420679, -0.0061872513, -0.010813179, 0.04866655, - 0.0057264296, 0.014289946, 0.005549255, -0.011991171, -0.009316065, - -0.03281853, -0.052201033, -0.0066352687, 0.009644823, 0.025097232, - -0.031391025, 0.034028653, 0.026169827, 0.019013623, 0.086321756, - -0.0326543, -0.024581274, 0.013590965, -0.0017259656, 0.025365865, - -0.01789733, 0.024832128, 0.012443463, 5.253535e-4, -0.020211695, - -0.017712707, -0.053592283, -0.008369205, 0.01688832, 0.02885593, - 0.008399293, 0.007309507, 0.012620239, 0.026853316, 0.021015005, - 0.01900531, 0.031276505, -0.0669122, 0.0031862152, -0.070185184, - -3.5193688e-4, -0.021500899, 0.024931636, 0.010075445, 0.018348277, - 0.0013566647, 0.017226353, 0.05555138, -0.001380777, -0.013858523, - 0.015128671, -0.004706203, -0.0043218797, -0.020402698, -0.049017116, - -0.004432657, 0.0076203924, 0.0117116, -0.012783411, 0.03309987, - -0.008231492, -0.04669102, 0.030615557, -0.020466771, -0.033247698, - -0.0063196598, -0.012611014, -0.023012215, 0.05150348, -0.051445518, - 0.0034964317, -0.014400905, 0.04596623, 0.0022658969, -0.044265755, - 0.0155995, -0.030121006, 0.02124151, 0.019281158, -0.014524425, - 0.012755503, 0.046990093, 0.025018983, 0.0029050885, -0.036614213, - 0.01969782, 0.0038375119, 0.0037222537, -0.023551913, 0.033425402, - 0.0012931474, -0.069921, 0.024160018, -0.004028093, 0.019170338, - -0.033824686, 0.009889826, 0.016805058, -0.004064412, 0.02325915, - -0.008613447, -0.015992792, 0.025418662, 0.035360847, 0.037138004, - -0.034098543, 0.016902871, -0.03888999, 0.010242748, -0.04030545, - -0.024010587, -0.0068631894, 0.007573816, -0.002063715, -0.004258692, - 0.030241406, -0.02788493, 0.003913298, 0.11146274, -0.023033736, - -0.06455271, -0.025928643, 0.09279547, -0.05556909, -0.058038935, - 0.0016799595, -0.041756842, -0.0014611708, -0.035101548, -0.019591635, - 0.017775703, -0.036741722, 0.034816287, 0.0043711714, 0.030364357, - -0.008012277, -0.010288782, 0.008878369, 0.012267204, 0.008831143, - -0.016156996, -0.0081786495, 0.022061298, 0.048936583, 0.0067705265, - 0.07030568, 0.010396886, -0.017644366, -0.02808028, 0.03455656, - 0.04597816, -0.034665227, 0.021488477, -0.011462915, 0.014687417, - -0.01310412, 0.038871113, -0.044210088, -0.033072777, 0.035825815, - -0.007956031, 0.055321094, -0.04861647, -0.019572085, 0.060079366, - 0.010939421, 0.05520284, -0.016448772, -0.017394593, -0.034955643, - -0.019798018, -0.019165797, 0.022487443, -0.022954345, 0.007957792, - 0.012798471, 0.03481255, -0.014466136, -0.021082837, -0.01759855, - 0.029090922, 0.013134606, -0.022554014, 0.0055084717, 0.02150529, - 0.03216321, 0.028092561, 0.0054324423, 0.007995636, 0.043063402, - 0.07258159, -0.0253731, -0.03238982, -0.03945157, -0.036378406, - 0.015666256, -0.016648317, 0.018823145, -0.004798944, -0.015270305, - -0.040937398, 0.028882142, -0.01749617, -0.033357322, -0.06883244, - 0.01718656, 0.018991997, -0.08147991, -0.008213263, 0.008410484, - 0.052182052, 0.01764897, 0.038392235, 0.015649106, -0.05962829, - 0.0058120578, -0.013689422, 0.034837823, -0.0027338036, 0.049590535, - 0.048505787, 0.038481556, -0.02059299, 0.041046828, 0.06340511, - -0.016498543, 0.004879725, 0.04172436, -0.008695785, 0.028923383, - -0.016630473, 0.06473827, -0.0109500475, -0.025651552, -0.017484639, - -0.02816935, 0.017391345, 0.03325314, -0.017750675, 0.0075067943, - -0.09984741, -0.050690167, 0.008885439, -0.028986853, 0.00905921, - 0.033463106, 0.035137974, 0.05006953, 0.026188295, -0.015325517, - -0.05359806, -0.023005083, 0.006059387, 0.078448765, -0.008451206, - 0.017409569, -0.033400092, 0.026864948, -0.01734703, 0.01843496, - -0.03375167, 0.021739991, 0.0106693925, 0.00448214, 0.042019676, - 0.054078173, -0.030432668, -0.019993352, 0.022156933, 0.028395656, - -0.0034733054, -0.022745958, 0.0636936, -0.030008301, 0.030835906, - -0.017946685, -0.018720044, -0.042200018, 0.020484835, 0.022379791, - 0.04383696, 0.0455627, -0.09297325, 0.039118696, -0.008953197, - -0.02080809, -0.009088618, -0.029710028, 0.02457275, -0.016660016, - 0.046449006, 0.025828928, -0.026723, 0.067924544, -0.033463113, - 0.04232219, -0.026698185, 0.017149923, -0.062171694, -0.04553565, - 0.006548784, 0.022808013, 0.011557621, -0.046076298, 0.013752961, - -0.018536806, -0.03420229, -0.05511702, 0.008962908, -0.013683961, - -0.008605827, -0.015485457, -0.0019536382, -0.0028213388, -0.04941097, - -0.019935999, -0.018900067, 0.00250885, 0.010672132, 0.019709779, - 0.020504577, 0.0061287754, 0.0013554519, 0.033941012, 0.06163813, - -0.046379678, 0.07228194, 0.026429234, 0.031845234, 9.833499e-4, - 0.04414474, 0.014839656, -0.014658853, 0.045946326, 0.020786429, - 0.013458967, 0.0067230416, -0.03594469, -0.03292716, -0.038795423, - -0.018766975, -0.033217862, 0.018598806, 0.029021092, -0.011187409, - -9.296463e-4, -0.018091002, 0.015345866, -5.1145884e-4, 0.047531947, - 0.035310626, 0.016241934, 0.020918086, 0.032975934, 0.025867624, - -0.01563014, 0.013058571, 0.0213005, -0.023999508, -0.023299675, - -0.0043740165, -0.04158528, 0.016416807, 0.0074789743, 0.022268059, - -0.030498542, 0.022355966, 0.025837002, -0.012385218, 0.011002516, - -0.04615784, -0.008031469, 0.0018915671, -0.03745484, -0.03564278, - -0.012724049, 0.032408576, -0.06781207, 0.009633836, 0.046583265, - -0.04583891, 0.0144180935, -0.029674804, 0.033154942, 0.027919972, - -0.0045122704, 0.0062983027, 0.05782378, 0.028267838, 0.05652736, - -0.0212212, -0.0120150745, -0.06012873, -0.06754729, -0.07901393, - -0.0012386455, 0.013957954, -0.033090577, 0.04602252, -0.021382006, - -0.029642815, 0.054078672, -0.01023381, 0.018885368, -0.027338097, - -0.0122904675, -0.022034438, -0.024231367, -0.0035420079, -0.025575807, - -0.032974973, -0.024107378, 0.006703279, -0.008789971, 0.053835947, - 0.013127724, -0.008798764, -0.01697787, 0.011657443, -0.06828677, - 0.022780951, 0.018796943, -0.0035512883, -0.042908728, -0.04239728, - 0.024691341, -0.024745014, 0.023692628, 0.017706048, -0.027938778, - 0.047838613, -0.0061703674, -0.029847067, -0.016065594, 0.0043094293, - -0.071994826, 0.0026968294, 0.036448248, -0.03929337, -0.0125079695, - 0.018772023, 0.017978024, 0.005436841, -0.022534022, 0.022920087, - -0.022001158, -0.026168514, 0.0054206597, -0.020009458, 0.0070702494, - 0.07351637, 0.008282037, -0.005992319, 0.009342143, 0.043780822, - -0.014419119, 0.04081094, 0.019536925, 0.028167324, -0.08329047, - -0.010561579, 0.068740495, -0.007624353, -0.0048818095, -0.010053273, - -0.01481028, 0.010916946, 0.022935437, -0.033970945, -0.013041209, - 0.037505917, 0.043222792, -0.026331691, -0.016254075, 0.043967593, - -0.009971948, -0.044560213, -0.0072900653, -0.004724488, -0.037444275, - 0.0075182663, 0.025464531, -0.05126817, -0.036816083, 0.03511656, - 0.01673964, 0.07240426, -0.032599304, 0.023154873, 0.06324973, - 0.012515664, -0.07995886, 0.028117668, 0.018268822, -0.022293845, - 0.016795555, 0.014768573, -0.073595054, 0.013877558, 0.01887321, - -0.012262247, 0.0070044575, 0.002588463, 0.02300471, -0.025986454, - 0.027439108, 0.038294893, -0.0611039, -0.010628041, 0.025276598, - -0.035244122, -0.0054708314, 0.032318152, -0.0038394623, -0.013776463, - 0.029659575, 0.0117474785, 0.004686684, -0.046721205, 0.0027774489, - 0.03180594, -0.03400243, -0.005447381, -0.0604397, 0.060426548, - -0.010052044, 0.010234926, -0.022038959, -0.036742594, 0.02041083, - 0.013493614, -0.034726176, 0.03763404, -0.026705151, -0.09459385, - -0.027357636, -0.0032769302, 0.024844894, 0.034665674, 0.028951265, - -0.036102373, -0.010875081, -0.0034868058, -0.03846877, -0.0021389842, - -0.039587293, 0.010493131, -0.029791009, -0.021155141, 0.015165361, - -0.042530492, 0.0036998831, 0.006856025, 0.022432892, -0.052264053, - -0.025916712, -0.033707246, -0.025451627, -0.009598104, -0.0106880255, - 0.0016312088, 0.02543716, 0.03705583, -0.060029488, -0.0032282183, - -0.054553606, 0.0058561247, 0.012060748, 0.042078182, 0.012561038, - 0.011660108, -0.058112785, 0.006114638, 0.0041132844, -0.015273024, - 0.009493581, 0.020303292, -0.010191353, -0.030385558, 0.0012494584, - -0.01755288, 0.037156172, -0.027695918, -0.042035643, 0.002236824, - -8.2998595e-4, -0.030845396, 0.04018283, -0.08123556, 0.021307243, - 0.031135242, 0.041626323, 0.059005734, -0.0636398, 0.028890014, - -0.049747176, 0.030452883, -0.012604337, 0.004624816, 0.04031739 + "paletteEmbedding" : [ + 0.037654314, + 0.04222703, + -0.013481896, + -0.013507548, + -0.07752734, + -0.016691234, + -0.03776352, + -0.01623837, + 0.0042172037, + 0.019445488, + -0.01661174, + 0.019494552, + 0.014591243, + 0.064399555, + 0.008397193, + -0.016682269, + -0.03471047, + 0.0073742596, + 0.010610205, + -0.031421043, + 0.012093555, + -0.03052258, + -0.015499087, + -0.0051883785, + 0.022400333, + -0.04397727, + -0.014418277, + -0.023418939, + 0.050689097, + -0.0037554072, + 9.3980134E-4, + 0.026215233, + 0.0015072746, + -0.02704055, + 0.012658001, + -0.04160687, + -0.012488721, + -0.0048855976, + -0.012683284, + 0.06970147, + 0.0416309, + -0.0027210016, + 0.023132127, + -0.030192213, + 0.016491288, + -0.025573824, + -0.04046654, + 0.01928573, + 0.07903856, + -0.013185388, + 0.009692562, + -8.899818E-4, + -0.052599505, + -0.06453786, + -0.020223295, + -0.0061884047, + 0.029605007, + 0.03930952, + -0.049447034, + 0.044993713, + -0.010364134, + -0.0042395587, + -0.050087746, + -0.044244498, + -0.0031070493, + 0.022071851, + -0.023576826, + -0.019734215, + 0.043985225, + 0.01451638, + -0.038294535, + -0.052493244, + -0.015515178, + 0.008160658, + 0.033890557, + 0.029670687, + 0.018306706, + 0.0077961083, + 0.023821214, + 0.012196055, + 0.0053595733, + 0.020205518, + -0.004284595, + -0.014951713, + 0.011748557, + -0.0036525612, + -0.06370496, + 0.010018449, + 0.010615474, + -0.06825408, + -0.0077666277, + 0.041309446, + 0.009932048, + -4.7934023E-4, + 0.0120412335, + -0.010853245, + 0.022713777, + -0.027610017, + 0.020627113, + -0.02254896, + 0.0075473166, + 0.017979132, + -0.042537168, + 0.007999709, + -0.013107767, + 0.010513226, + 0.015948506, + 0.024376098, + -0.0077429507, + -0.03220099, + -0.016192745, + 0.05692699, + 0.050575066, + 0.008696157, + -0.032630485, + 0.002946086, + 0.012618867, + 0.010959485, + 0.025872204, + 0.044978365, + 0.05800353, + 0.0165592, + 0.009789785, + -0.027939674, + -0.008660529, + -0.013198726, + 0.04053991, + -0.051886022, + 0.048471328, + 0.046710707, + -0.066467725, + 0.062544726, + -0.004551357, + 0.018691147, + -0.005646264, + -0.03475561, + 0.0177068, + 0.01787199, + -0.030300895, + 0.010010134, + 1.387457E-4, + 0.043524787, + -0.014212894, + 0.008334523, + -0.02729489, + 0.020454543, + -0.017121619, + 0.0135734705, + -0.03561694, + 0.035504535, + 0.053560324, + -0.030144408, + -0.003517274, + 0.0047648796, + -0.03911241, + -0.01469498, + -0.039683264, + 0.005722385, + -0.027124805, + 0.022197427, + 0.009663996, + -0.026038935, + -0.012140489, + 0.010921162, + -0.024858726, + 0.019620223, + 0.02536243, + 0.0018661701, + 0.03693742, + -0.056524284, + 0.013869034, + 0.05186383, + -0.0480877, + -0.024506444, + 0.045269895, + 0.023330564, + -0.035938546, + 0.012753161, + 0.03316753, + 0.025055394, + -0.0016721489, + -0.02081872, + -0.003916261, + -0.09044512, + -0.012846302, + 0.002959962, + 0.021101495, + -0.015730135, + 0.001081056, + 0.0040120976, + 0.06670779, + 0.032649204, + -0.055241577, + 0.011583567, + 0.06437174, + -0.025383957, + -0.013766505, + 0.010552381, + 0.03762158, + -8.342223E-4, + -0.05530289, + 0.008198262, + -0.03252914, + 0.005566382, + 0.035835642, + -0.008869672, + -0.012845374, + 0.032469478, + -0.008940261, + 0.04527935, + -0.0043935403, + -0.015433228, + -0.050671402, + -0.02268551, + 0.028309982, + -0.010630191, + -0.022284523, + 0.042219944, + -0.056775864, + 0.041593052, + -0.010257737, + 0.044790734, + -0.0065958686, + 0.026575426, + -0.07817465, + 0.0010349501, + -0.024294132, + 0.018041471, + 0.0066620116, + 0.053636808, + -0.04674631, + -0.024451781, + 0.016485425, + -0.060421195, + -0.054663073, + -8.1181753E-4, + -0.011080456, + -0.01085396, + 0.043539204, + -0.021649733, + -0.026398223, + 0.035230923, + -0.035171244, + -0.065206245, + 0.018715499, + -0.040397562, + -0.045778584, + 0.032861717, + 0.0021798797, + 0.02232716, + 0.011765478, + -0.0054222145, + -0.016314177, + 0.04795565, + -0.058269516, + -0.023844026, + 0.030194905, + -0.06328452, + -0.03227139, + 0.021485072, + 0.0030673917, + 0.0796538, + 0.010505259, + 0.03895503, + -0.023481758, + 0.03339887, + -0.02813607, + 0.035989583, + -0.027005872, + 0.012250863, + 0.030806482, + -0.01659889, + 0.019352002, + -0.037816506, + 0.009731614, + -0.008993184, + -0.035952907, + -0.016393114, + 0.025345352, + 0.002517391, + 0.016413791, + 0.039536413, + -0.011460113, + 0.01392785, + -0.033921767, + -0.03701568, + -0.013936311, + -0.055776566, + -0.030715873, + 0.011227096, + 0.007074749, + -0.05589508, + -0.0054001343, + -0.0027650946, + -0.028918818, + -0.02668357, + -0.049916882, + -0.02262148, + 0.017174669, + 0.038066536, + 0.028883608, + -0.0139508825, + 0.0054577384, + -0.043597315, + -0.0038340818, + -0.041225117, + 0.01230394, + -0.04032659, + 0.009416848, + 0.0031483418, + 0.012078169, + 0.034132864, + -0.025292277, + 0.0071026688, + -0.02188487, + -1.788782E-4, + 0.012896224, + -0.012738074, + 0.0039024095, + 0.013592203, + -0.0033468944, + 0.022000922, + -0.0024954334, + 0.017554868, + 0.0045030136, + -0.042964835, + 0.038025863, + -0.022696402, + -0.047576368, + 0.020066006, + -0.037611846, + 0.0107350955, + -0.050989106, + -0.0028081094, + -0.027232634, + 0.012964992, + 0.04502168, + -0.054482587, + 0.0064998684, + -0.030526089, + 0.025076699, + -0.0014471632, + -0.049730264, + 0.05402526, + -0.009470088, + 0.023068622, + 0.014247053, + -0.0115813175, + 0.10400953, + -0.0126425605, + 0.03850109, + -0.0078053037, + 0.024946114, + 0.0018275995, + 0.027808193, + 0.08425937, + 0.016730312, + -0.031040104, + -0.019583147, + 0.033533253, + 0.07553677, + 0.02606127, + 0.020900916, + 0.033563092, + 0.029628748, + -0.022686787, + 0.020716652, + 0.02899746, + -0.009920466, + 0.021562373, + 0.05091387, + 0.03792706, + 0.0061258837, + 0.006597313, + -0.027159544, + -0.045694742, + 0.0040945704, + 0.017930001, + -0.020112097, + 0.027196134, + 0.011716734, + -0.004272776, + -0.011122556, + -0.029941227, + -0.044682506, + 0.0013298076, + 0.03739021, + 0.09208083, + -0.026433712, + 0.08170879, + 0.023992145, + 0.0027561907, + -0.007052434, + 0.041477982, + -0.029909665, + -0.010414773, + -0.016456133, + 0.025535401, + 0.04951833, + -0.028979186, + 0.036088884, + 0.017725619, + -0.025761353, + -0.0014540089, + 0.026364941, + -0.049807772, + 0.01907023, + -0.004035939, + 0.06237296, + 0.004035034, + 0.037820376, + -0.04063551, + -0.023063831, + 0.018521566, + -0.045434304, + -0.005135828, + -0.0134209385, + 0.010841519, + -0.03277197, + -0.057300042, + 0.037834715, + 0.019377764, + -0.028477736, + -0.015750848, + 0.020665206, + 0.0055976156, + -0.018126497, + 0.005774234, + -0.023457184, + -0.0022495324, + -0.02837617, + 0.04484002, + 0.05621624, + 0.01777538, + -0.040886853, + -0.025585074, + -0.015376072, + -0.028299255, + 0.032055642, + -0.0037540616, + -0.027327703, + -0.015842348, + 0.08449379, + 0.0029689493, + 0.017363979, + -0.07286707, + -0.011755039, + -0.010824709, + -0.03062753, + 0.030151762, + 0.023455258, + -0.012700733, + -0.014208244, + 0.015119657, + -0.018292418, + -0.019391378, + -0.053820062, + -0.007203197, + 0.023048656, + -0.061577547, + 0.037695777, + -0.0035034686, + -0.031910658, + 0.019385675, + -0.0186068, + 0.0013912497, + 8.923167E-4, + -0.005135249, + -0.046074174, + 0.027934335, + 0.05624654, + 0.0085570775, + -0.03606058, + 0.054350574, + 0.0112438835, + 0.024929315, + -0.0024833197, + 0.019692324, + 0.057460554, + 0.013883099, + -0.046126485, + 0.018794479, + 0.02739651, + 0.009281412, + -0.082371734, + 5.4769047E-5, + 0.050924636, + 0.031259947, + 0.014747393, + 0.014158365, + -0.043805815, + -0.026858637, + -0.02734466, + 0.0022079698, + -0.025544515, + -0.006648065, + 0.013104944, + -0.02381215, + -4.931565E-4, + 0.0205487, + -0.032018155, + -0.015057103, + -0.0049891775, + -0.03579284, + 0.016780969, + 0.025540547, + 0.052331157, + -0.060277883, + -0.035726193, + -0.039916255, + -0.017586129, + -0.050354, + -0.01592777, + 0.040117506, + -0.005912352, + 0.009693071, + 0.006948863, + -0.013713781, + -0.007647212, + 0.028759023, + 0.0035815367, + 0.028899489, + 0.005959792, + -0.04022195, + 0.013471518, + -0.024461001, + -0.013060037, + -0.02826891, + 0.004167041, + -0.0037671414, + -0.04081407, + -0.009073613, + -0.027804753, + 0.055977605, + -0.015966037, + 0.011579765, + 0.019523414, + 0.07354808, + 0.048242714, + 0.032901105, + -0.020846684, + 0.05755666, + -0.020736428, + 0.041689437, + -0.024073187, + -0.028277371, + 0.01020729, + -0.02177512, + 0.004559547, + -0.027093433, + -0.015272355, + -0.01793799, + 0.006350666, + 0.054220114, + 0.02348508, + -0.0102866525, + -0.020412065, + -0.040022645, + -0.024592018, + 0.027546164, + -0.006926049, + 0.0022827259, + -0.0073600486, + 0.024815988, + -0.013757295, + 0.017530052, + 0.008620671, + 0.0105321, + 0.022495644, + -0.020258823, + -0.02389899, + -0.014950133, + 0.0094575, + -0.040817015, + 0.042558566, + 0.053366028, + -0.004324695, + -0.023751888, + -0.045474816, + 0.010434052, + 0.037742928, + 0.0031496119, + -0.07607329, + 0.016576312, + -0.0027320173, + -0.097689085, + 0.0043519028, + -0.059628285, + -0.02715347, + -0.052076954, + -0.0022060394, + 0.017083082, + -0.052344438, + -0.020632116, + 0.01293851, + -0.0085921865, + 0.025652092, + -0.032168906, + -0.043658685, + 0.06612438, + 0.011833065, + 0.026616085, + -0.011191256, + -0.032270014, + -2.8658725E-4, + 0.021294743, + 0.007186079, + 0.046374355, + 0.020733537, + 0.023379747, + 0.008956207, + 0.015345937, + -0.0107774045, + 0.04180679, + -0.009365368, + -0.03033701, + -0.041168436, + -1.3957312E-4, + -0.027758576, + -0.017197458, + 0.0010126928, + -0.01938671, + -0.06297347, + -0.015489501, + -0.013731219, + 0.051685613, + 0.0037660848, + 0.010934763, + -0.05628285, + -0.0083844615, + -0.028897101, + 0.04445202, + -0.0041089077, + 0.054711033, + 0.054425467, + -0.0053772326, + 0.03543776, + 0.0041834326, + -0.037016124, + 0.056986887, + -0.02562006, + -0.03755826, + -0.010900012, + -0.03368563, + 0.0060145827, + 0.01659743, + 1.0581744E-5, + 0.007018953, + 0.015945215, + 0.018213263, + -0.008663892, + -0.027369646, + 0.03715078, + -0.08894714, + -0.03418104, + 0.01895862, + 0.006954945, + 0.018352348, + 0.047754295, + -0.07530771, + -0.018731268, + 0.0015909107, + 0.032949705, + -0.029120574, + 0.00785932, + 0.018632105, + -0.011225918, + -0.034125455, + 0.0042093117, + -0.008043954, + -0.019458385, + 0.0249747, + -0.030635396, + 0.06911622, + 0.037185516, + -0.030015387, + 0.016931979, + 0.05125248, + 0.023421096, + 0.0033949185, + -0.0144358985, + 0.019930758, + 0.043847546, + -0.043477498, + 0.01776216, + 0.009508349, + 0.0040784017, + -0.018594021, + -0.028039893, + 0.029415146, + 0.010988127, + -0.0358199, + -0.0071247695, + 0.0013206267, + -0.0046895826, + 0.019946812, + -0.0028142894, + 0.007930775, + 0.021905974, + -0.008790518, + 0.051999092, + -0.045136824, + 0.00302721, + 0.036581475, + 0.033103816, + -0.020561876, + -0.033218484, + 0.03630044, + -0.0015492303, + 0.014073911, + 0.0029362822, + 0.0012030223, + 0.027438037, + 0.030126745, + -0.015562966, + 0.042660873, + 0.04196131, + 0.023870878, + 0.039122704, + 0.11101169, + -0.014318419, + -0.043889828, + 0.03483123, + -4.1782385E-4, + 0.038639393, + 0.0052281646, + -0.009954584, + -0.0074713645, + -0.02474982, + 0.01250833, + 0.020856015, + 0.029472146, + -0.010267742, + -0.047677632, + 0.06749002, + -0.037994083, + -0.026390966, + -0.016772952, + -0.021689825, + -0.07293024, + -0.010055286, + -0.050072424, + 0.009768616, + 0.078201294, + 0.00740303, + 0.030083789, + -3.4087524E-4, + 0.015482695, + 0.02128993, + 0.025803711, + 0.014465149, + 0.0038739012, + 0.03339967, + -0.03524085, + 0.009043947, + 0.0053528543, + 0.029279932, + 0.077549115, + -0.012710005, + 0.007866287, + 0.013815825, + 0.006994294, + -0.025399672, + 0.06912595, + 0.022047544, + -0.00813088, + -0.0026376392, + 0.048321478, + -0.06607173, + -0.01475299, + 0.0673404, + -0.01973746, + 0.002894134, + 0.046125315, + -0.05548814, + 0.01000355, + -4.6078372E-4, + -0.0499065, + -0.008796717, + -0.05115869, + -0.03908925, + -0.02667125, + 0.04873994, + 5.4990675E-4, + -0.024842631, + -0.081708156, + -0.013720372, + -0.019769624, + -0.013288792, + 0.037284363, + 0.024790512, + -0.041817266, + 0.001428737, + 0.021268198, + -0.039907955, + 0.0036566984, + 0.02696485, + 0.020007221, + 0.032892928, + 0.0028147907, + 0.023379315, + 0.037834764, + -0.047001734, + 0.0133701535, + -0.046889085, + -0.014113284, + 0.054862414, + 0.052894104, + -0.011250244, + 0.005049969, + -0.028444776, + -0.030255804, + 0.010424084, + -0.031390436, + 0.0037765705, + 0.0038217288, + 0.019881314, + -0.033050638, + -0.0039054933, + 0.003177862, + 0.06298422, + 0.0126008475, + 0.014957868, + -0.026364097, + -0.029345706, + 0.026805276, + -0.018241333, + -0.021653743, + 0.016985403, + -0.012062733, + -0.024051884, + 0.031030042, + 0.04432465, + 0.043621194, + 0.012552605, + -0.043527257, + -0.010797707, + 0.00669888, + 0.024836166, + -0.032940123, + 0.028081961, + -0.01002774, + 0.026759522, + 0.009253679, + 0.048831142, + 0.006671898, + -0.03306082, + 0.01926437, + 0.004174037, + 0.02139882, + -0.009835602, + 0.028932443, + 0.04940929, + 0.0035684933, + -0.006042147, + 0.034165863, + 0.031815622, + 0.016017636, + -0.010984763, + 0.0013036174, + 0.033478003, + -0.046959538, + 0.006734703, + -0.031633217, + -0.056994062, + 0.031691436, + 0.002844521, + -0.0023712106, + -0.018364016, + -0.032806028, + 4.5465186E-4, + -0.06113497, + -0.023820024, + -0.0109301945, + -0.008653045, + 0.01779173, + 0.0480679, + 0.0029060333, + -0.0041239206, + -7.3377107E-4, + -0.011791298, + -0.020395758, + 0.0033581262, + -0.012760579, + -0.0249273, + -0.043350644, + -0.020509385, + 0.015725687, + 0.03367486, + -0.037978925, + -0.027894126, + 0.07645673, + 0.009938224, + -0.026786672, + 0.0067979833, + 0.04514334, + -0.026164964, + 0.05001771, + -0.03212859, + -0.0015313444, + -0.02029055, + -0.07685239, + 0.01087403, + 0.016392667, + -0.022515945, + -0.019692436, + -0.0076587736, + -0.03435724, + 0.023087168, + 0.06191842, + 4.668036E-4, + 0.01751356, + -0.03693952, + -0.014475479, + 0.03502233, + 0.0037558717, + -0.015408168, + -0.03352119, + 0.016296167, + -0.008911038, + -0.034958664, + 0.052052546, + -0.07258311, + 0.030208262, + 0.0061084186, + 0.009459183, + -0.04076809, + 0.006637079, + 7.3718675E-4, + 0.010745899, + -0.014889368, + -0.0013079913, + -0.016592843, + 0.008592744, + 0.023974191, + 0.00478446, + 0.029857645, + -0.018420972, + -0.026163856, + 0.0063063637, + -0.056921717, + 0.026769247, + -0.013380913, + 0.00968986, + -0.036133315, + 0.01035809, + -0.008865536, + -0.006541233, + 0.040015236, + 0.0020487155, + -0.0017530022, + 0.009203621, + 0.013320877, + -0.051519055, + 0.0068001314, + -0.024806108, + 0.03447244, + -0.06497898, + -0.051508762, + 0.010061848, + 0.03303353, + -0.007447831, + 0.023465976, + 0.030039208, + 0.041658726, + 0.082367174, + -0.03400763, + 0.01310749, + 0.027821958, + 0.020364556, + -0.01939136, + 0.040070046, + 0.060903173, + 0.012077856, + -0.038335912, + -0.05964009, + 0.011093168, + -0.004849721, + 0.06426692, + 0.054012924, + 0.043921024, + -0.014784859, + 0.016610386, + 0.0060912506, + -0.044591572, + -0.008345411, + -0.010224501, + 0.0037806786, + 0.009182776, + 0.06351612, + -0.04454191, + 0.028660214, + 0.0068121753, + 0.037747137, + -0.004472998, + 0.027479459, + -0.057201944, + -5.429346E-4, + -0.007972972, + -0.004649543 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.contributors.0.json b/common/search/src/test/resources/test_documents/images.contributors.0.json index bda0c72f3..065685c1c 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.0.json +++ b/common/search/src/test/resources/test_documents/images.contributors.0.json @@ -1,1349 +1,5260 @@ { - "description": "images with different contributors", - "createdAt": "2023-11-21T14:25:43.866569Z", - "id": "mherdyx0", - "document": { - "modifiedTime": "1984-06-19T23:29:34Z", - "display": { - "id": "mherdyx0", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different contributors", + "createdAt" : "2024-11-14T14:37:56.374848Z", + "id" : "s6atajrq", + "document" : { + "modifiedTime" : "1991-06-19T20:23:45Z", + "display" : { + "id" : "s6atajrq", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/FVn.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/FVn.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#347B0C", - "source": { - "id": "finvqvzj", - "title": "title-PY7FKabVjb", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#A1CC20", + "source" : { + "id" : "ioczclpg", + "title" : "title-YmNK8KG02u", + "contributors" : [ { - "agent": { - "label": "carrots", - "type": "Agent" + "agent" : { + "label" : "carrots", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "mherdyx0", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["carrots"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "finvqvzj", - "sourceIdentifier.value": "Gaa78d1Wqw", - "identifiers.value": ["Gaa78d1Wqw"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-PY7FKabVjb" + "query" : { + "id" : "s6atajrq", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "carrots" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ioczclpg", + "sourceIdentifier.value" : "kndclg5FbZ", + "identifiers.value" : [ + "kndclg5FbZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-YmNK8KG02u" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"carrots\",\"type\":\"Agent\"}" ], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["carrots"], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.024088731, -0.008135508, 0.006827099, 0.0015003604, 0.027946196, - -0.027466968, -0.011669253, 0.0031014874, -0.021452166, 0.006535171, - 7.745922e-4, 0.0021983134, -0.009303908, -0.008428745, -0.0041769682, - -0.022014545, 0.0015386937, 0.020613458, 0.0057365927, 0.02544812, - -2.3534389e-5, 0.004309512, -0.0028979229, -0.0051895804, 0.00782582, - -0.009353783, -0.019847693, 0.016438356, -0.024865035, -0.015192696, - -0.010405754, -0.009134021, -0.012673201, -0.02165392, 0.008278372, - -0.0023952846, -0.0014931015, -0.024870483, -0.0048569147, 0.019279862, - -0.0048416927, -0.00965844, 0.007164505, -0.0070055327, -0.0049218163, - 0.032279503, -1.2607682e-4, 0.0023841397, 0.012862979, 0.031232487, - -0.014247492, 0.0016543661, -0.0036674382, -0.015967814, 0.0087290425, - 0.014078168, -0.004653864, 0.012330823, 4.6130465e-4, -0.0070941197, - 0.004906604, -0.01079896, 0.010164584, -0.012060872, 0.038323667, - 0.001092386, 0.033613753, -0.010988847, -0.027780652, 0.021545826, - 1.0398938e-4, -0.014400882, 0.0021977196, -0.022308333, -0.0010838403, - -6.9829816e-4, 0.011646243, -0.019346045, -0.007719326, 0.0058938945, - 0.01909271, 0.030496133, -0.007391064, -0.030362373, -0.01581987, - -0.0030353768, -0.007298492, -0.023592357, -0.0067881774, -0.0010040652, - -0.022879034, 0.0052872426, 0.004768275, -0.006258245, -0.032203984, - -0.00592465, -0.021727903, 0.003793519, -0.03632052, 0.0266462, - -0.014038904, 0.025745915, -0.023198418, 0.0044971267, 0.0021949688, - -0.00534517, -0.0031244196, -0.013491763, -0.009351878, -0.017289083, - -0.0025353048, 0.008669423, 0.0025290125, 0.03195413, 0.035911676, - -0.007397441, 0.0027730267, 0.002764043, -0.011161604, 0.027413461, - 0.018737437, -0.0069441474, 0.011443143, 0.018726368, -0.02515325, - 0.005813303, -0.014514038, 0.0031320956, -0.022644943, 6.6354877e-4, - 0.018962098, -0.007253918, -0.026622506, -0.026075609, 0.0077881557, - -0.022587506, 0.012311508, -0.012421926, 0.0045777336, -0.013443688, - -0.0243563, -0.019083157, -0.018499745, -0.0032316453, -0.0047046077, - -0.01286715, -0.009092185, -0.008738093, -0.02428823, 4.6428748e-5, - 0.0023225823, -0.022713846, -0.037896823, -0.013770739, 0.012951496, - 0.019874392, 0.022382285, -0.028357742, -0.009650423, 0.009884251, - -0.019791907, -0.0019143114, -0.01170202, 0.0043274243, 8.8643533e-4, - -0.010454639, 0.018485203, -0.008194483, 0.01292702, 0.020641517, - 0.02083151, -0.008570298, 0.0012461623, -0.008728954, -0.014832941, - 0.0142059475, 0.0047138506, -0.020034127, -0.0048422813, -0.00557077, - -0.0022118904, 0.021313941, -0.013479453, 0.010481777, -0.0058432748, - -0.037105683, -0.011879938, -0.015650976, 0.0018051672, 0.010224125, - 0.017469954, 0.0069630025, 0.038793035, -0.007880905, 0.007880864, - -1.4365543e-5, 0.011421888, 0.0050665224, -0.0022154409, 0.0020361803, - 0.017514953, -0.029146101, 0.028754, -0.004273288, 0.0016537771, - -0.036184214, -0.009466812, -0.006611007, 0.019262685, 0.021163097, - 0.0049692024, -0.015406232, -0.0063231024, -0.033184327, -0.0018385695, - -0.01200141, 0.008510655, 0.035571765, 0.00837056, -0.0027225206, - -0.009824907, -0.0070350054, -0.0031646562, 0.0015648953, 0.008368084, - 2.1685063e-4, 0.0074475748, 0.013791515, 0.0022681945, 0.017690046, - 0.011100173, -0.023734689, -0.0046332884, -0.031850073, -0.025599314, - 0.015270075, -0.0044461936, -0.0025124294, -0.0022865532, 0.020439325, - -0.023483565, -0.0019684199, -0.0031846652, -0.0010134237, - -0.0044102445, 0.007244155, 0.015638033, -0.03697086, 0.012820277, - -0.00622155, -0.016140109, 0.019567616, -0.007062133, 0.004063156, - -0.009892449, -6.138692e-4, 0.014018251, -0.0033903124, 0.011915994, - 0.01694584, -0.026434373, -0.014623676, 0.010085622, 0.015921433, - 0.027223928, 0.008521771, -0.011389237, -0.0077108587, 0.0073778233, - -0.0037286743, -0.01886119, -0.013758684, 0.015750721, 0.0026072455, - -9.0810825e-4, 0.00538249, -0.004180096, 0.015904592, -0.006359915, - 6.5663346e-4, -0.013264268, 0.023100559, -9.374389e-4, -0.0011724316, - -0.010914906, -0.011238716, 0.009320437, 0.0010764147, 0.008617355, - -0.0060079554, -0.0010672439, -0.013228206, 0.005703032, -0.016830156, - 0.0065044467, 0.0025442853, 0.01017534, 0.005520099, -0.010416023, - 0.003232298, -0.028921705, 0.016787026, -0.0059075076, -0.0044136737, - -7.344144e-4, 0.014709608, -0.0075107557, 0.008434585, 0.02194999, - -0.017506657, 0.010218362, 0.010790755, -0.018575802, -0.0062226676, - 0.031349193, -0.014630378, 0.023792565, -0.022727596, 0.004311041, - 0.0010424564, 0.00434134, 0.006877246, 0.012458849, 0.009353122, - -7.722393e-4, -0.0011337394, 0.0024058104, 0.0011918582, -0.00904834, - -0.013563342, -0.007572871, -0.031339146, -0.016513908, 0.024119878, - -0.02736959, -0.035407085, -0.0028597398, -0.008406305, 0.0015041425, - 0.00676038, 0.022433462, 0.029559245, -0.0015714081, -0.042464994, - -0.030149385, -0.0030749252, -0.0032648144, 0.020027306, -0.029856747, - -0.0067312876, 0.0022019793, -0.031550325, -0.009316854, 0.010241855, - 0.0064323703, -0.006175477, -0.023953065, 0.0027147236, 0.029260164, - 0.034224678, 0.021241747, -0.0103696715, -0.01859442, 0.0014502755, - -0.0056014284, 0.004892562, 0.026308598, -2.6179917e-4, -0.004320064, - -0.012801018, 0.02116179, -0.025328966, 0.010840169, -0.010645463, - -0.016505482, -0.0065480974, 0.02672223, 0.02085786, 0.0015781673, - 0.0036119386, 0.005756596, 0.025637785, -0.021601733, 0.002177866, - 0.0012395091, -0.00803294, 0.031103078, -0.0074294806, -0.016223606, - -0.0018917939, 0.015985774, 0.0110109085, -0.005417295, -0.0033212418, - -0.016739946, 0.01680051, -0.004577026, 0.003394625, -0.026558569, - -0.018515697, 0.021452451, 0.013560409, -0.023592692, -0.015167919, - 0.010843235, -0.012601245, 0.01508349, -0.0033941683, -0.024922602, - 0.005485577, -0.0120913, 8.113747e-4, -0.008481651, 0.024130028, - -0.001316295, -0.008387424, -0.004104989, -0.0016572803, -4.4774774e-6, - -0.026682843, 0.015276586, 0.002993105, 0.00623809, 0.015663147, - 0.027117334, -0.025468001, 0.004131753, -0.005947973, 0.0137495585, - -0.0090829255, 0.008767145, -0.007738281, -0.009921909, -0.0058235475, - 0.0021450578, 0.0036961664, 0.019873075, -0.0072172214, 0.008435501, - -0.0048039183, -0.01911926, -0.018591957, -0.024558026, -0.007998363, - 0.029098578, 4.5403995e-4, -0.017450422, 0.0018122898, 5.595806e-4, - 0.015997335, -0.013045716, 0.011304905, 0.0012606109, -0.0030344937, - -0.0018163838, -0.0013002846, -0.0070949607, -0.016020373, - -5.4819766e-4, -0.0328511, -0.024668412, 0.006594577, -4.6340824e-4, - 0.011792392, -0.016585989, -0.008308368, -0.028649554, 0.020234061, - -0.010824495, -0.004044978, -0.023716653, -0.0055048275, 0.025868172, - 3.7882847e-4, -0.017083125, 0.0050842627, -0.016179366, 0.019388778, - 0.005552746, -0.014830249, 0.00605879, 0.0015578716, -0.0021655776, - 0.008093971, 0.010508642, -0.0021103835, -0.037186064, 0.017538534, - 0.0073068924, -0.010372659, 0.01406504, 0.0034166465, 0.031352215, - 0.00960443, -0.009564793, -0.003455321, 0.012553711, 0.01324399, - -0.0012389671, -0.01443002, 0.010951929, -0.0045938333, 0.0082118185, - -0.011657262, -0.01063717, 0.014315787, 0.03178194, 0.017890204, - -0.01617704, 0.0028028362, -0.004442035, -0.014184584, -0.010706774, - 0.012888493, -0.011575442, -0.0077362326, -7.6141505e-4, 0.010845065, - -0.008052658, 6.0762506e-4, -0.02354061, -0.01769409, -0.021594856, - 0.0073472145, -0.005200681, -0.020118974, -0.030249052, -0.014730109, - 0.01573775, 0.011575304, -0.013118105, 0.010660753, -0.0015869972, - -0.014636598, 0.0054003997, 0.009901689, -0.013121664, -0.011678308, - -0.023779146, -0.0048723053, 0.003400625, 0.026566375, -0.009851636, - 0.014451549, 0.0064732344, 0.006355573, -0.007160307, 0.010608534, - 0.013766076, 2.468142e-4, -0.017725421, -0.00402544, -0.02773667, - -0.026116554, -0.011923979, -0.00518481, 0.021147031, -0.010344401, - 0.00838478, 0.0052655153, -0.023018472, -0.022931535, 0.0055432334, - -0.034549043, 0.030432308, 0.026338322, 0.009060036, -0.0033788162, - -0.0120035065, -0.018492788, -0.034014493, 0.006531112, -0.007948294, - 0.019066392, -0.02022073, -0.0063120974, -0.002385994, -0.0012345233, - -0.0065915477, -0.008864529, -0.034883216, 0.0032590975, -0.013471951, - -0.008419407, 0.013760884, -0.020603552, 0.03369681, 0.01944565, - 0.0020850669, -0.017344877, -0.015117182, 0.008968222, 0.009038065, - -0.0017564868, -0.009100932, -0.018836958, 0.009526251, -0.010857551, - 0.004384989, -0.005204946, -2.083163e-4, 9.2180097e-4, -0.006234148, - 0.011183297, -2.853425e-4, -0.0040052743, -0.0054822583, -7.6781627e-4, - -0.019519692, 0.029047238, -0.02200675, -0.0027670853, 0.037361562, - 0.011694763, 0.021042574, 0.01148422, -0.0051387725, -0.024950914, - 8.885865e-4, 6.9107313e-4, 0.012895203, 0.021038024, 0.0055845906, - 0.012327429, -0.0033165028, 0.007521058, 0.012033824, 0.0147015145, - -0.018478788, 0.009365544, 0.0060427357, -0.025358224, 0.03010885, - -0.008922199, -0.025563873, 0.019705785, -0.00971923, 0.008832736, - 0.02034596, 0.030574976, -0.020391837, -0.017908575, -0.01551873, - 0.0015640378, -0.021265851, 0.002253307, -0.0074935076, 6.3447515e-4, - -0.023306917, -0.017771699, 0.021079287, 0.0026475273, 0.01389793, - -0.009880106, 0.006585454, -0.007863719, 0.0016496899, 0.0061563, - -0.018712353, 0.016175576, 0.012830118, 0.006697773, 0.014052229, - -0.010700314, 0.023343101, -0.014129643, -0.01158984, -0.036166452, - -5.32035e-5, -0.01287763, -0.0060784863, 0.00391195, -0.03465446, - -0.01050434, -0.004620328, -0.013965131, 0.0104260165, -0.0033631327, - -0.0023208165, 0.004180617, -0.014374483, 0.009489437, 0.0036612956, - -0.017679296, -0.0036872327, -0.016462674, -0.011483375, -0.013865838, - 0.027095389, 0.006924326, -0.008439296, 0.01579376, 0.02894517, - 0.02234193, 0.03271369, 0.030347934, -0.008610758, -0.013277905, - 0.0066845496, -0.01445668, 0.047771093, -0.010744901, -0.008688499, - 0.026126346, -0.020516086, -0.032620568, 0.011844082, 0.01657499, - -0.007756963, -0.0037715803, 0.007772283, 0.0022609963, -0.014023948, - -0.0061480887, -0.0027842403, 7.180924e-4, 0.020483598, 0.01428213, - 0.0051905573, -0.012457747, 0.011727569, 0.0066413255, -9.7320176e-4, - -0.027511274, -0.027100695, -0.006781923, 0.017559888, -0.0062144645, - -0.027442018, -0.0014668094, -0.020256344, -0.013081367, -0.01203505, - 0.014303231, 0.025363352, 0.008015029, -0.0024248608, -0.027628697, - 0.03601976, -0.005945385, 0.009680742, -0.0027532766, -0.0039195456, - 7.3826936e-4, -0.007626103, -0.016154503, -0.024222787, 0.011679453, - 0.013805098, 0.0013071486, -0.007645047, 0.0061911494, 0.022583868, - 0.008690937, 0.0032217077, 0.0073805507, -0.0021750715, -0.013743579, - -0.0118992105, 0.009574185, -0.01570263, 0.0106754815, 0.0075932057, - -0.022553159, -0.0029255522, 0.016413135, -0.0035023873, 0.0012991016, - -0.004570602, -0.004288288, -0.035758972, -0.026038907, -0.01066044, - -0.00805392, -0.007206283, -0.017137043, 0.018458791, 0.0033556763, - -0.009712786, -0.0026073095, 0.00149386, 0.014436191, 0.026242316, - 0.0061067417, 0.03473311, 0.008893515, 0.011568527, 0.001231242, - 0.025461586, -0.008707718, 0.0096717505, 0.00929018, 0.037862062, - 7.016589e-4, 0.024861827, 0.008823678, 0.0016587412, 0.0013487143, - 0.010802756, -0.0114946645, -0.0018149792, -0.0055527654, 0.022332275, - 0.0066313017, 0.013467759, -0.00316422, -0.029064113, 0.00391952, - 0.016153013, 0.018114898, 0.004281615, 0.0032884546, -0.01097752, - -0.015374206, 0.011515401, -0.0076090796, 0.005003583, 0.01675481, - 0.0062022954, -0.024809778, -0.0028232767, -0.018683583, -0.008776237, - -8.4456697e-4, -0.028176103, -0.0021662198, -0.013155421, -0.012641608, - -0.008748315, -0.009210912, -0.017684521, 0.026809745, 0.011347219, - 0.009172506, -0.005772472, 0.032008246, 0.023648052, 0.017126895, - -3.4747198e-5, 0.012842798, 0.043036707, -0.019148884, -0.005414011, - -0.0027173266, 0.013692838, -0.025469964, -0.013080939, 0.014855871, - -0.0068610576, 2.2653048e-4, 0.041104842, -0.014391949, 0.03205609, - -0.009576434, -0.0010605692, -0.017697526, 0.008846519, -0.021870771, - -0.010166548, -0.0100469645, 0.016496073, -0.020361472, -0.0018650811, - -0.009206414, 0.00965057, 0.014942332, 0.0013560652, 0.009381539, - 0.009012917, -0.0050456617, -0.014751859, -8.2672003e-4, 0.013235343, - 0.003458475, -0.03155847, -0.011794372, -0.021795396, -0.009862502, - 0.008753993, -0.02676549, -0.0069512236, -0.004275934, 0.002209828, - -0.008560331, 0.0033882754, 0.009975057, 0.007975515, -0.009055121, - -0.010043862, -0.002944283, 0.0046145273, 0.013480258, -8.063356e-5, - -0.036677483, -0.0011618953, -0.007894865, -0.002400621, -0.010420775, - -0.012976598, -0.013516461, 0.0026328561, 0.0055196104, 4.913796e-4, - -0.011379265, 9.327349e-4, -0.009653141, -0.0044809366, -0.011175441, - -0.019188398, 0.0037201813, -0.013229776, 0.011235615, 0.01759996, - 0.026625391, -0.0059148767, 0.014806817, -0.023607286, -0.021688703, - 0.008812919, -0.016317882, 0.01634495, 0.036964107, 0.011718938, - 0.021389332, -0.011832733, 0.0123020625, 0.018314613, 0.008609587, - -0.014338956, 0.003402533, 0.012602296, -0.014654046, -0.0053628837, - -0.017082272, 0.038735352, 0.019059103, 0.033427663, -0.004968593, - 0.0075690565, -0.008431577, -0.0047197132, -0.014280649, -0.027057953, - 0.020274086, 0.01638399, -0.0052675987, -0.013184854, 0.0011888988, - -0.005577647, -0.029034985, 0.0023184537, -0.019604376, 0.012384559, - -0.0121436, -0.010782313, -0.0026588738, 0.010128156, 0.023960505, - -0.005216931, 0.02509216, -0.02545652, 0.0025381765, -0.01999442, - -0.027730912, 0.01726064, 0.009720541, 0.011998665, -0.01916782, - -0.01461624, -0.0038719694, 0.016054131, -0.0075238976, -0.015307486, - -0.012116774, -0.005503677, -0.0027632234, -0.012217184, -0.0091127325, - -0.0054927357, 0.03229974, 0.008669489, -2.3088734e-4, -0.00864153, - -0.027412673, -0.0047903582, -0.011282662, -0.005099528, 0.014419195, - -0.0014299733, 0.011345613, -0.0028803402, 0.008466285, -0.011432202, - 0.016769517, -0.0029088096, -0.015929012, 0.00455885, 0.009767488, - -5.583387e-4, -0.02788449, -0.004208025, 0.0076265973, -0.006014237, - 0.001985355, 0.011477344, -0.009849033, -0.031656187, -0.0050147194, - -0.014690086, -0.015686238, -0.019620627, 0.037658393, -2.2913454e-4, - -0.0191534, -0.0068585076, -0.015781911, 0.02029383, -0.0034589933, - 0.005730924, 0.010008465, 0.028368698, -4.057817e-4, 0.008446646, - -0.03120195, -0.01631342, -0.008062811, -0.01730916, -0.0012699261, - -0.007616426, 0.01901697, 0.013796852, -0.009169317, 0.015576747, - 0.0122931525, 0.019565057, 0.005396217, 0.020719584, -0.022950405, - 0.0033819284, -0.0020697801, 0.0011293284, 0.017444469, -0.009597439, - 0.0023483129, 0.011711724, 0.0011626, -0.0017503467, -0.01264503, - 6.459764e-4, -0.0071795485, 0.002553151, -9.96471e-4, 0.008017868, - -0.03245084, 0.001712001, -0.027228592, -0.021843757, 0.032041933, - 0.023438465, 0.002557285, -0.028487744, 0.017068783, -0.005620178, - -0.030278405, -0.002030251, -0.020895028, -0.006211731, -0.008939119, - -0.013282809, -0.0061052633, 0.0010081372, -0.0022623332, 0.009028094, - 0.019000866, -0.014954575, -0.005861195, -0.008014184, -0.026890546, - -0.0014825296, 0.006776165, -0.010596317, -0.036261905, 0.029024694, - -0.022139868, 0.0019404284, 0.012632165, 0.011581994, 0.013617238, - -0.012768453, 0.0024923135, 0.003727709, 0.031609118, -0.012115867, - -0.0071367724, 0.0050062276, -0.019549856, -0.04003608, 0.0060154195, - 0.026083991, 0.018779112, -0.008318676, 1.3187288e-4, -0.023765733, - -0.026210606, -0.009205117, 0.0106781265, -0.039984826, 0.03862021, - 0.0045413603, 0.017515458, -0.03505446, 0.0081976345, 0.0037986494, - 0.018568015, -0.008232421, -0.012512485, -0.021428132, -0.013451298, - -0.0066107907, 0.015194546, 0.00431863, 0.0076296786, 0.0040217023, - -0.025562264, -0.030511469, 0.008011674, 0.03560057, -0.0010415541, - 0.019722056, 0.0068340176, 4.918359e-4, -0.0471886, 0.02062866, - 0.010699194, -0.033899996, -0.0076068304, 0.032884378, -0.008473049, - 0.02073878, -0.013059637, 0.009811507, -3.497219e-4, -0.021697007, - 0.0075844275, 0.01466088, -0.0046871793, 0.029505951, -0.017115919, - -0.009727499, 0.018769829, 0.012534617, 0.016323503, 0.028662538, - -0.0055057458, 0.015955081, -0.016939953, -0.0035021142, -8.3162985e-4, - -0.0033864575, 0.0053934306, -0.0031994826, -0.025408737, -0.011510582, - -0.0064348057, -0.013501751, -0.016809586, -0.020739516, 0.013097305, - -0.004023301, -0.009460888, -0.0059465114, 0.0073126433, 0.026402337, - -0.0066933716, 0.0056118337, 0.00708378, 0.016149228, 0.0077183023, - 0.013266089, -0.0026655265, 0.0055162096, -0.026246795, 0.014235233, - -0.0044150697, 0.004983898, 0.0272654, 0.005506366, 0.00585904, - -0.012810231, 0.0020589472, 0.0071472954, 0.002951328, -0.014928905, - 0.04157546, 0.015856456, -0.012964686, 0.021214763, 0.019566827, - -0.011475506, -0.007739338, 0.016566282, 0.012252669, -0.0023556987, - 0.004375791, 6.3099887e-4, -9.6016465e-4, -0.008408219, 0.01835058, - 0.011472544, 0.025164792, -0.005058179, 0.007401913, -0.00564517, - 0.009378935, -0.013855038, -0.0035873384, 0.0060229544, 0.00873442, - -0.011418345, -0.019817984, -0.0048836735, -0.0070330394, 0.016126662, - 0.012294449, -0.0055603646, 0.010582149, -0.051703434, -0.011657324, - 0.023618832, -0.004863744, 0.011988388, -0.0066673025, -0.0015413024, - 0.0019444419, 0.006981769, -0.007478864, 0.0021175498, 0.0023142663, - 0.0073987255, -0.007897519, 0.0019328605, -0.025330368, 0.016076554, - -0.0151467025, -0.0013916342, 0.009749144, 0.021236312, -0.012576311, - -0.03545791, -0.0035130528, -0.02334504, -0.020260021, 0.02272908, - 0.016179914, -0.029504228, 0.040323447, 0.050527703, 2.33762e-5, - -0.0041327258, -0.006020048, -0.012353389, -0.017436977, 0.008489817, - -0.023580166, 0.0034519387, 0.0107734185, -0.012061929, 0.012362575, - 0.0081982985, 0.001261726, 0.0045635756, 0.019944008, -0.010333643, - -0.005732623, -0.028204404, 0.02044951, -0.0037342806, 0.042374413, - -0.0033161875, 0.025638094, -0.015396672, 0.01248447, -0.0049852063, - -0.020316407, -0.00770405, -0.008565011, 0.012047964, 0.01129556, - -0.0024369704, 0.0038366618, -0.03217008, -0.0032463903, -0.007593708, - 0.002322014, -0.013677062, -0.0025620118, -0.010130342, 0.005381169, - -0.011805944, 0.0045458036, -0.011529796, -0.042227488, 0.013840466, - 0.01604562, 5.3663895e-4, -0.013301618, -0.019861113, 0.0021041469, - -0.006044862, -0.019761031, 0.0010040451, 0.0040687816, 2.690822e-4, - 0.005914536, 0.012167137, -0.01545828, 0.010578347, -0.014491078, - -0.012132321, 2.1936184e-4, -0.009975495, 0.021540685, 0.03883755, - 0.0028986451, 0.030824244, 0.01787058, 0.011055951, -0.014878045, - -0.0186056, 0.001995021, 0.0045588384, -0.019964809, -0.01622295, - -0.0078014475, -0.0011440589, -0.008951639, 0.0101091135, -0.020638956, - -0.014527378, 0.0060048928, 0.017554533, -0.031514674, -0.0034898918, - -0.0020042572, 0.008100871, -0.004880959, -0.0012988878, 0.002835191, - 0.029842632, 0.026497483, -0.008486334, -0.010305343, -8.2124607e-4, - 2.7632815e-4, -0.0017035181, 0.0015258605, 0.0027328664, 0.013927647, - 0.0034359812, 0.007685109, -0.01256892, 0.0066077, 0.011589886, - -0.016389731, 0.010784843, 0.0075427, -0.010993285, 0.004163071, - 0.013833667, 0.0037959288, -0.017193787, 0.035930384, 8.326942e-4, - 0.022248115, 0.011628208, -0.010226527, 0.018313084, -0.016119879, - 0.015965313, 0.008030829, 0.014659927, -0.001830621, 0.020588044, - -0.01433925, -0.016591553, 0.011179095, 0.0012456763, -0.012471484, - 0.017654086, 0.007084835, 0.0010495927, -0.00886392, -0.032756407, - -0.0044756397, -0.0025692505, -0.018739872, 2.9116563e-4, 0.0058718207, - -0.015642114, 0.0038689463, 0.018333256, 0.009854567, 0.008973548, - -0.0059775766, 0.018814294, 0.022431133, 0.006568448, 0.02252371, - -0.009284669, 0.010689289, 0.017094979, -0.026810823, 0.0075692823, - 5.196486e-4, -0.035106782, 0.00370305, 0.0027703876, -1.9042517e-4, - -0.0041033826, -0.005480648, 0.01270119, -0.04187364, 3.464783e-4, - -0.01784655, -0.0058158045, 6.339405e-5, 0.009006681, -0.0058366973, - 0.012152849, -0.0055646203, -0.007456678, 0.0025999637, 0.0011490495, - 0.0012931506, -0.0020689855, 0.0064388504, -0.014874398, 0.0032896104, - 0.0020541532, 0.0066648503, 0.007893541, -0.019095872, 0.014069305, - -0.022069592, 0.00856975, 0.0076509262, -0.0014324473, -0.009783132, - 0.008861905, -0.030486617, -0.0097501995, 0.010728926, -0.021373296, - -0.01327854, 0.014822073, 0.011332621, 0.009279616, 0.009902757, - -6.409335e-4, 0.024454474, -0.011882792, -0.011656885, -0.0024541481, - -0.0026360117, -0.00882856, 0.015549955, 0.03518935, 0.027977116, - -0.017176356, -0.008874047, 0.0172467, 0.0073213493, -0.023547715, - -0.002402143, -0.007723668, 0.011223297, -0.009865279, 0.0061012562, - -0.004095025, 0.012672921, 0.011927891, 0.0097954, -0.014049747, - -0.0068309046, -0.03147768, -0.014128541, 0.0053902385, 0.0074535734, - -0.03765572, -0.027105749, 0.0014935025, 0.0061795157, 0.0072702044, - 0.0028364304, 0.04971424, -0.013821279, -0.012435545, -0.007374491, - -0.01181861, -0.0013914156, 0.015119439, 0.0012642728, -0.0058409404, - -0.0146989245, 0.0074662967, -0.010261917, -0.0020736803, 0.0063986173, - 0.018154906, 0.018779825, -0.01037533, -1.6929113e-4, -0.0024558692, - 0.015612337, 0.009823772, -0.03447708, -0.0017345989, -0.012194185, - -0.0042162444, 0.022146104, -0.028875953, -0.00865177, 0.022245985, - -9.4400486e-4, 0.017141256, -0.014395703, -0.010622354, -0.0037636852, - 0.006154294, 0.009464982, 0.008866199, 0.013961352, 0.004562599, - -0.003486011, -0.014139422, -0.004756042, -0.030854277, -0.0011202852, - 0.004351409, -0.00978327, 0.02454692, -8.2499406e-4, 0.030268192, - 0.01520728, -0.00825828, 0.022027105, -0.0099712005, -0.0014863084, - -0.0057250494, 9.378851e-4, -0.008687138, 0.012505483, -0.0057558324, - -0.006337676, -0.013437424, -0.028586155, -0.019823208, -0.027241508, - -0.01221253, -8.551464e-4, -0.008490599, 0.00796903, -0.0033482164, - 0.020179639, 0.006275824, -0.0015057684, 0.014606453, -0.021407032, - -0.03277961, 0.028232193, 0.010539856, -0.0043837223, -0.03789518, - 0.026205882, 0.0019150511, -0.019134795, -0.0016521285, 0.015658963, - -0.021370249, -0.021394711, 0.0067335116, 0.00242593, -0.009198063, - 0.0027834962, -0.006626326, 0.011680039, -0.012477901, 0.008581175, - 0.0102701625, -0.001016597, 0.014887681, -0.0132787125, -0.0018977902, - -0.001276281, -0.026466863, -0.033750203, 0.0061157322, -0.024369065, - -0.0019166266, -0.0011615406, 0.014788088, -0.0022210942, 0.028053045, - -0.03328314, -0.020852992, -0.003218798, 0.009593631, -0.01166978, - -0.0065317764, -0.008004571, -0.027727185, 0.041455284, 0.033397455, - -0.00804039, 3.1284674e-4, 0.011498018, -0.016529698, -0.015388765, - 0.004013084, -0.008926101, 0.01678796, 0.005539889, -0.022148453, - -0.0029815065, 0.0076106167, 0.006456186, 0.012641781, 0.008523821, - -0.008023819, -0.0015084179, -0.011212771, 0.004825682, 0.0055197445, - -0.014013738, 0.0026990434, -0.0113082575, -0.018438056, 0.014955183, - 0.0016965955, 0.007101256, 0.009222026, 0.019692693, -0.006694359, - 0.013042909, -0.007653258, -0.013853951, 0.024612855, 0.002602519, - 0.020242436, -0.008760919, -0.007224561, -0.010797241, -0.008253458, - 0.02836928, -0.007871997, -0.0060005123, 0.0059888833, -0.0057784333, - 0.022085086, -2.6464404e-4, -0.0039849486, 0.00659856, 0.027841313, - -0.015285776, -0.018194448, 0.014876141, -0.00615202, -9.949367e-4, - 0.028868612, -0.005006996, -0.03550667, 0.010092228, -0.0029688333, - 7.914575e-4, 0.014649061, -0.013067899, -0.03468331, 0.0020613598, - -0.045359954, 0.005989552, -0.0047865403, -0.017262418, 0.009392228, - 0.014508695, -0.0129901385, 0.02287609, -0.01789998, -0.008266653, - -0.0050870306, -0.017310506, -0.01779492, 1.2349845e-4, 0.010277105, - -0.0095804585, 0.019574376, 0.0106474785, 0.011051716, -0.010137629, - -0.00597315, 0.003800198, -0.033536054, 0.00890512, 0.011609619, - 0.023294121, -0.03465716, 0.021094952, 0.008076991, -0.006574046, - 0.0104729, -0.00290218, -0.011471118, -0.01329017, 0.008334625, - 0.024980657, -0.0016483355, -0.0194877, -0.008333958, 0.008561232, - 0.0030928976, -0.0021298942, 0.009865297, 0.013691645, -0.013767746, - 0.02657891, -0.009855288, -0.016473431, 0.0143678915, -0.0012790042, - -0.0073906966, 5.053578e-4, -0.019017162, -0.02421751, -0.011251035, - -0.011003496, -0.006097895, -0.017113632, 0.014118947, 0.023052387, - -0.020186776, -0.0027916767, 0.0038507013, -0.0054780687, -0.008551932, - 0.00371368, 0.023410497, -0.02260049, 0.011779401, -0.010145745, - -0.0036121376, -0.0034096462, -0.006196545, 0.004594455, 0.0057933386, - -0.0055071837, 0.011434523, 0.014198862, -0.022853883, 3.204263e-4, - -0.003331473, -0.025254803, 0.006307313, 0.009195537, -0.013019058, - 0.01755713, -3.235832e-4, 4.6827726e-4, -0.023945216, -0.0071794735, - -0.0032598923, -0.021368088, -0.010529784, 0.009374918, 0.008529521, - 0.027086599, 0.02346335, 0.011153512, 0.043768805, 0.013186195, - -0.03471719, 0.018494448, -0.0019606089, -0.0066814637, 0.0032836553, - -0.04443714, 0.013967632, 0.019028744, -0.025594736, -0.008876861, - -0.014278688, 0.008004246, 0.008210511, 0.01277364, -0.0069113495, - -0.009522958, -1.1327823e-4, 0.009405177, 0.011190367, 0.03144228, - -0.018414492, 0.028354252, -0.034366943, -4.3401602e-4, 0.0070191533, - 0.0033026433, 0.020200524, 0.00874766, 0.0045208056, 0.0052541653, - -0.009999434, 0.0074904338, 0.0019484117, -0.023906155, -0.027532978, - -0.0022570635, -0.008296256, 0.01124909, 0.0076955995, -0.0017025414, - -0.008000739, -0.027253099, -0.0070369067, 0.02351444, 0.0088162925, - 0.009486699, -0.015019168, 0.0062475023, 0.011103375, 0.0017371096, - 3.2716786e-4, -0.015034364, -0.00423415, -0.0068340595, 0.0037785694, - -0.016425785, -0.0023106034, 0.0068066698, 0.022370316, 0.0120897405, - -0.010550741, -0.007928415, -0.019823866, 0.004620326, -0.0055164364, - -0.01723129, -0.0048105195, 0.005441162, -0.018714894, -0.0023777275, - 0.010277021, 0.013123999, -0.014767735, -0.0014699426, -0.0031533535, - -0.034334224, -0.014721223, -0.005012562, -0.0117462, -0.01481729, - 0.028241234, 0.015285671, 0.0120173795, -0.020305365, 0.00436363, - 0.014519123, -0.009279653, 0.0062052407, -0.01340239, 0.015190843, - 0.01361099, 0.017646383, 0.01645081, -0.0036066251, -0.017617732, - -0.008265759, -0.022984454, 0.01643185, 0.017353047, 0.018298423, - 0.026653362, -0.025375897, -0.009790076, 0.022651792, 0.0023052744, - -0.017829936, -0.029803813, -0.025027407, -0.0030005602, 0.014859217, - 0.012594766, 0.0111878365, -0.006179019, 0.003700526, -0.003110698, - 0.024809817, 0.024171712, -0.017710641, -0.0070779, -0.011801575, - -0.013375418, -0.014611068, -0.0053438772, -0.018716719, -0.011582312, - 3.4092297e-4, -0.010293434, -0.008049745, -0.031972133, -0.0016745696, - -0.0065711476, -0.04364336, -0.0015347626, -0.008442751, -0.0023134854, - 0.018414766, 0.006235773, -0.0055064983, 0.01683565, 0.027065044, - -0.006410578, 0.01136478, 0.0072592376, -0.014395615, 0.013446393, - -1.1535001e-5, -0.0093555, -0.038650632, 2.8735184e-4, 0.039201688, - 0.006551735, 0.011232322, 0.016835079, 0.015063876, -0.008478651, - -0.015463166, -0.0056145103, -3.5467307e-4, -0.012150806, 0.005489994, - -0.009933469, 0.01711928, -0.015165747, 2.9302508e-4, 0.012039222, - 2.904944e-4, -0.006736956, -0.028963717, 0.0064457203, -0.010852572, - 0.02078398, -0.017028907, 0.009347608, -0.015958443, 0.00789837, - -9.1678917e-4, -0.0012662606, 0.0036860467, 0.032082673, -0.0043044933, - 0.004057088, -0.016608022, -0.004282969, -0.008734609, 0.019100586, - -0.023625202, -0.0032159276, -0.0016595382, 0.0087893745, 0.009875582, - -0.031904276, 0.02612446, -0.019523311, -0.003790585, 0.0076500396, - -0.003618067, 0.010855583, -0.009020739, 0.0063897385, -0.014253532, - -0.038576633, 0.02248635, -0.005917451, -0.007453741, 0.013544601, - 0.011041178, -0.012201557, -0.004117813, -0.0034317607, 0.012432333, - -0.024733849, 0.0044210954, 0.0030362357, -0.006063387, 0.03933808, - 0.030773846, -0.017430704, 0.031030117, -0.016493505, -0.011115416, - -0.028030932, 0.0040602223, 3.524361e-4, -0.011257108, 0.009846386, - 0.007413461, -0.01995082, 0.014988499, 0.010011414, 0.004428518, - -0.020977834, -0.0064620147, 0.020833675, 0.008594861, -0.0050244364, - -0.0045453585, 0.0033076531, 0.0077504013, 0.007191964, 0.028092593, - 7.4605504e-4, -0.007122652, 0.02381587, 0.013840233, 0.0050411844, - 0.0018703003, -0.03015414, -0.0013437242, -0.0021437998, 0.010955841, - -0.01467133, 0.008232244, 0.020170351, -0.024229674, -0.0043573948, - 0.003645465, 0.008996071, -0.008184529, 0.010180716, 0.01011235, - 0.0016756625, -0.007832728, 0.024075821, -0.0057038614, -9.5267233e-4, - 3.297106e-4, 0.0082650315, -2.929012e-4, 0.011343023, 0.012721553 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + "carrots" + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.0068969624, -7.0455676e-4, 0.017322797, 0.022190256, -0.011369801, - -0.033604696, -0.019781131, 0.0019813068, -0.012821095, -0.009381692, - 0.0035797537, 0.0029767444, 0.024950283, -0.012636501, -0.0020162493, - -0.016974438, 0.023541767, 0.016721861, -0.016755374, -0.013069307, - -0.0043312255, -0.011705109, -0.0013542328, 0.012242493, -0.0011186481, - -0.010623058, -3.162241e-4, 0.04410752, -0.013067653, -0.0015166418, - 0.023693867, 0.010364527, -3.4434928e-4, -0.007673818, 0.014987355, - 0.020525133, -0.004642741, -0.0070101526, 0.0066073937, -0.048870705, - -0.009166605, 0.0047509284, -0.004527701, 0.00545946, 0.030535966, - 0.016707381, 0.019942436, -0.019893637, 0.020743143, 1.3781697e-4, - 0.025372261, -0.0034596252, 0.007244466, -0.0034408225, 0.0032518771, - -0.032138243, -0.021975787, 0.0072075664, 9.164287e-5, 0.019592976, - 0.0075216778, 0.018367628, 0.03200287, 0.04016836, 0.0022225955, - -0.004736752, 0.026197571, 0.0034691049, 0.021809699, -0.0089166565, - -0.027350014, -0.0066010985, -0.0057496484, -0.009856451, -2.221466e-4, - 0.011488101, 0.03302601, 0.010508929, 0.015870104, -0.0035556464, - -0.015936585, 0.035574175, 0.015268008, 0.0037739985, -0.0025194401, - 0.0045087077, 0.002672213, -0.025950672, -0.026971672, 0.028693553, - 0.003592161, -0.0016667676, 0.015120338, -0.0114984475, -0.017572246, - -0.0011917736, -0.0026236668, -0.005187988, -0.020562245, -0.010511006, - -0.017050322, -0.01592662, -0.031676732, 0.0020000173, 0.010763977, - 0.0030013027, -0.0016421889, -0.010416847, 0.016639527, 0.008140995, - 0.008317444, 2.7340194e-4, 0.013129319, -0.0061645466, -0.019731604, - 0.018085992, 0.029203968, 0.012004663, -0.033633664, -0.010437644, - 0.0043325787, -0.011546401, 0.020926958, 0.024970904, 0.022415183, - 0.0017195717, -0.017355515, -0.011715163, 0.0056274845, -0.008647492, - 0.018115735, 0.0057375883, -0.023418933, 0.0022341416, 0.02313949, - -0.007871595, -0.00846314, 0.018940507, 0.02786032, -0.012318507, - 0.011504988, -0.0028180496, -0.025319904, 0.0051140343, -0.022524694, - 0.021278303, 0.003056897, -0.017985811, 0.020041494, -0.011264895, - 0.010067881, -0.0062796553, 0.0043544336, 0.0074321125, -0.029186215, - 0.013036335, 0.028612843, 0.01629373, 0.010948789, -0.022057686, - 2.0737371e-4, 0.025513584, 0.018444844, 0.014572118, -0.004751821, - 0.0011799512, -0.006094567, -0.001825453, 0.0100216735, -0.0076323575, - 0.025759906, -0.005971669, -6.4109266e-4, -0.010150487, -0.0035072968, - -0.0039785486, 0.011284778, 0.0053993007, 0.031301726, 0.02000019, - -0.019545292, 0.0014803606, -0.0069818664, 0.0055046477, -0.02989955, - -0.007032087, 0.014775878, 0.013264946, -0.010125108, 0.011590954, - 0.01192518, 0.009259005, 0.0019425651, 0.002632336, 0.014080862, - 0.0025045718, 0.02728875, 2.837572e-4, -0.013471883, 0.006290109, - 0.0064004823, -0.0029566023, 6.775044e-5, 0.014226658, 0.021314831, - -0.0052687223, -0.027121378, 0.013264334, 0.0023085128, -0.014426089, - -0.011554111, -0.011373783, -0.010598822, 0.0248756, -0.0224337, - 0.006480651, -0.0025664575, 0.005799086, 0.014678194, -0.01356604, - -0.018589135, -0.017040199, -0.004438515, 0.0059901606, 0.012702501, - 0.02545015, -0.014734265, 0.018317422, -0.0019042591, 8.207359e-4, - 0.021884244, 0.0054266797, 0.027537081, 0.024192598, -0.0212943, - 0.025144251, -0.0015078308, 0.013164555, -0.0052794726, 0.022856304, - 0.016012864, -0.005884993, -0.008672468, 0.0020293102, 0.0028884485, - 0.023591679, -0.012801138, 4.0245935e-4, 0.010936134, 0.0038349906, - -8.0591295e-4, -0.020706058, -0.00685, 0.02064113, -2.307418e-5, - 0.01712101, 0.013441028, 0.017522221, -0.0012778954, 0.011191712, - -0.0017415417, 0.0018178272, 0.013481369, 0.0015478784, -0.030116644, - -0.007951069, 0.007791189, -0.01190404, -5.5356015e-4, 0.02032809, - -0.0047767777, -0.011757533, -0.030707862, 0.0087441765, -0.034681566, - 0.025324145, 0.009444841, 0.0013340862, 0.0044886153, 0.030055659, - -0.013065467, -0.018107066, 0.0012181725, -0.0102061, -0.014672407, - 0.025062788, 0.003266962, 0.017340394, -0.005907652, -0.013808363, - -0.03059403, 0.020427158, 0.0048955553, 0.008414462, 0.0050134496, - -7.3459465e-4, -0.016526302, -0.010576676, 0.0070782076, -0.002271424, - 0.0022188092, 0.017534574, -0.0043678074, -0.0131414095, -7.8825623e-4, - 0.006173249, 0.004018147, 0.02237445, -0.0038162386, 0.0058593536, - 0.019587172, 0.025209444, 0.0033449894, -0.025306907, -0.00796034, - -0.026215326, -0.010342314, 0.0045737843, -0.022172736, 0.021591311, - -0.0179029, -0.021787222, -0.010289734, 0.010617234, 0.0066888267, - 0.035567068, 0.011113227, 0.007549031, -0.015976574, 0.014206798, - 0.011491439, 0.008115306, -0.008029892, 0.010566228, 0.0034364173, - 0.015054112, -0.0061674723, 0.024347562, -0.026488474, 0.014228504, - -0.012259455, -0.020694854, 0.0053107166, 0.022093553, 0.0034796735, - 0.014506512, 0.0027838878, -0.009803441, -0.0015217505, -0.009049051, - -0.031355046, -0.033325363, -0.002906153, -7.8094157e-4, 0.017242337, - -0.019290403, -0.01256973, -0.0048599564, 0.032383945, 0.020826356, - -0.027367236, 0.013522521, 0.007234802, -0.0137835415, 0.011221814, - -0.019570986, 0.002618355, -0.0069724615, -0.004272824, -4.255457e-4, - -0.014290604, 0.010213961, -0.012937825, 0.027720531, -0.0017252773, - 0.015997473, -0.002615465, -0.0044586556, 0.007422144, -0.040211406, - 0.007755659, 0.019551182, -0.0049718595, 3.2885617e-4, 0.031283855, - 0.00937979, 0.0011079002, 0.009102564, 0.028073002, -0.011294381, - -0.0032392882, -6.500196e-4, 0.012183563, 0.011010421, 0.015238065, - -0.021632805, -0.016040696, -0.022466365, -0.0031063573, 0.005136056, - -0.010359839, 1.7420936e-4, -0.026144722, 0.0021682144, 0.0020720519, - -0.013546152, 0.0027452046, 0.011253791, 0.018757053, -0.014581274, - 0.015494673, 0.024866976, -0.018104644, -0.0012268666, 0.022471331, - -0.018638877, 0.0021606407, -0.0077389674, 0.005963643, -0.00422235, - -0.005955852, -0.006691188, -0.013667317, -0.0030300936, 0.0030729573, - -0.007560857, -0.01910143, -0.012684181, 0.002787901, -0.009372515, - 0.004732785, -0.015628625, -0.008158959, -0.0019671642, -0.03718435, - 0.035740394, -0.020920757, 0.0016388168, 0.03504582, -0.0080194995, - 1.900076e-4, -0.007429777, -0.01637999, 0.008020462, -0.028404994, - -0.016103884, -0.010287797, -0.0069982586, 0.027229635, 0.009386121, - 7.267457e-4, 0.0025375015, -0.020013085, 0.024330596, 0.015047956, - -0.015444777, -0.0026947218, 0.006606448, -0.00183468, -0.010633013, - 0.0028764457, -0.005853451, -1.6358528e-5, 0.019321408, -8.4876694e-4, - 0.0138122365, 0.004910134, -0.020095114, 0.023932986, 0.0017223806, - -0.017510585, -0.009164308, 0.0065018623, -0.03326149, 0.01122305, - 0.0034575388, 0.013461104, 0.04120536, 0.016471285, -0.018384133, - -0.021884935, 0.012722693, 0.02063939, 0.01032104, 0.008158836, - 0.017285956, -0.012005112, 0.010511662, -0.0012643392, 0.026598252, - 0.0031342495, -0.019956805, -0.021378519, 0.0021655466, -0.007763693, - -0.026840214, 0.013576327, 0.0015105709, -0.020987935, -0.006116168, - -0.0013206031, 0.01655664, 0.009640199, 0.015237274, -0.013925445, - 0.010858874, -0.0017240393, 0.01368825, 0.009754732, 0.0075274166, - 0.0046643745, -0.01016527, 6.8111497e-4, -0.006913682, 0.018109173, - -0.0016358857, 0.010047779, 0.013811486, 0.021208905, 0.005680359, - -0.0095698135, -0.023074012, 0.01288841, 0.005881716, 0.007547578, - 0.014373917, 0.011253012, -0.018415391, -0.027736628, 0.02396265, - -0.0056102835, -0.03005264, -0.006989907, 0.009406476, -0.002471208, - 0.024859153, -0.013592781, 0.0067755315, 0.03401523, -0.0024556522, - -0.011995461, 0.0041786386, -0.008760617, -0.0038010213, -0.015751962, - 1.4077045e-4, 0.010094925, -3.7158836e-4, -0.012968937, 0.0011337464, - -0.016252873, 0.019764394, -0.0025090494, -0.010000293, 0.006761836, - -0.0047965134, 0.013691164, -0.020709086, -0.013489321, -9.7014126e-4, - -0.0094124405, 0.0041596997, -0.014214696, 6.2079416e-5, -0.008207252, - 0.0045420458, 0.011340163, -0.013994282, -0.0026672748, 0.016727349, - -0.023824485, -0.029997706, -0.016875645, 0.016910769, 0.0026521494, - -0.009141827, 0.01281406, 0.0026618484, -0.002939045, 0.025817698, - 0.0054917047, -0.021044215, 0.012101323, 0.01753131, -0.002037432, - 0.004771464, -0.014595029, 0.014967061, 0.0075977133, -0.0014839537, - -0.010552302, 0.023124658, -0.002503362, 0.0019515675, -0.0050388314, - 0.005242272, 5.3031003e-4, 0.021161297, -0.031766783, -0.012672046, - 0.009321875, 0.03866293, 0.006106161, -4.5350962e-4, 5.555852e-4, - 0.0032724272, 0.012501523, -0.023283958, -0.0049473527, -0.017301375, - -0.0046264553, -0.029262744, 0.00903851, -1.5112282e-4, 0.022076849, - -0.0040953197, -0.021085218, 0.02958534, 0.018242072, -0.014290793, - 0.0052845823, 0.024029316, -0.017479131, -0.011422346, 0.036775284, - 0.005196829, -0.02011806, -0.007316067, 0.007535132, -0.005740422, - -0.0034375421, 0.035719745, 5.740036e-4, -0.0027511404, -0.031553138, - -0.021013562, 0.0055957157, -0.010046556, 0.003887813, -0.023218399, - 0.02340922, 0.024592359, -0.02391444, 0.0056176134, 0.0078015006, - 0.02235358, 0.0330473, 0.008010545, -0.023160359, 0.0051965932, - 0.0021532646, -0.0022315606, 0.014058428, 0.006312432, -0.010683939, - -0.005358512, -0.002993582, 0.004144705, -0.0034483126, -0.00558209, - -0.0040691504, -0.0027153832, -0.010959584, 0.016367136, 0.013664643, - -0.0054807165, -0.0039498466, 0.011223223, 0.0041899662, -0.023672216, - 0.0068966653, 0.029495273, -0.028279021, -0.0118677765, 0.002445431, - -0.008136048, 0.023570301, 0.007774397, 4.1359523e-4, -0.0012361964, - 9.813942e-4, -0.012921188, 0.0037441177, -1.1036368e-5, 0.0037840463, - 0.008288513, 0.0040795645, -0.012216074, 0.031089228, 0.0011646491, - 0.013287564, 0.030833203, 0.041051954, 0.0070630405, 0.0020573835, - -0.0021488646, 0.0053544613, 0.0115693705, -0.00884946, -0.008788779, - -0.028547999, 0.018406114, -0.012994828, 0.021657793, -0.0023907935, - -0.011267208, 0.0199227, -0.015675563, -0.022090891, 0.01918037, - 0.010162374, 0.01831171, 0.016019179, -0.008931456, 0.023354912, - 0.03446374, -0.0043425057, 0.01800442, -0.005007427, -0.01580001, - 0.0016958147, 0.022493033, 0.0018563527, -8.0310775e-4, -0.0070756185, - -0.026364133, -0.011165725, 0.022286637, -0.010273944, 0.024455216, - 0.004464184, 0.012560195, 0.0042462484, -0.02869966, 0.0074228663, - 0.009832794, -0.0051555745, -0.0095929615, 0.012035724, -0.009917596, - -0.006222803, -0.040319815, 0.016399773, 0.016854605, 0.0028327645, - 0.009331721, 0.036157724, 0.004290541, 0.0077220127, -0.006426462, - -0.009623589, -0.019597292, -0.026593722, 0.0023783129, 0.015351198, - -0.0021388708, 0.005081338, -0.014538032, 0.0239588, 0.013745594, - -0.004756201, -0.015060301, -0.006211703, -0.005477717, -0.0031084644, - -0.002104593, -0.015288834, 0.03281627, 0.04461208, 0.0039709625, - 0.00563584, 0.024269478, -0.0021047955, 0.0203648, 0.020093525, - -0.019841071, -0.015165347, -0.017824367, -0.01996643, 0.019814773, - 0.01919539, -8.731488e-5, -0.0036141153, 0.014444673, 0.017368037, - -0.011143675, 0.011538619, -0.015579799, -0.0097797895, -0.006533943, - -0.011679065, -0.009641752, 0.003275672, -0.014310137, 0.00540913, - 0.01138369, 0.008292903, -4.6831902e-4, 0.020563256, -0.016907068, - 0.02818749, -0.0068517285, -0.008320432, 0.020540206, 0.008192093, - -0.021087205, 0.003366708, -0.021416286, -0.002895064, -0.0218882, - -0.024775455, -0.012642402, -0.010316443, 0.026395956, 0.021685895, - -5.0113787e-4, 6.6294706e-5, -0.00424076, -0.0062533165, 0.0036806872, - 0.011884029, -0.005232457, 0.008928688, 0.040333837, -0.013864054, - -0.0014941709, 0.028662115, 0.0016802117, -0.008655116, 0.027626494, - 0.024405323, -0.012440244, -0.004915145, -0.0046041273, 0.012838866, - -0.0048550535, 0.008405973, 0.015880177, 0.030198729, -0.010837044, - 0.013865303, -0.022659097, 0.018541893, -0.005351147, -0.010261298, - -0.002299434, -0.0068561514, 0.016665304, 0.024645697, -0.014304319, - 0.002814179, 0.01723551, 0.0095150415, 0.007815725, -0.0019651921, - -0.0038391997, 0.0046376935, 0.018329682, -0.017121151, -0.011456858, - 0.014562338, 0.0025866847, -0.01714752, 0.028584752, -0.006575989, - -0.0046632565, -0.011840989, -0.024172064, 0.028189914, 0.015507753, - -0.030848868, 2.3847118e-4, 0.021202115, 0.008664873, 0.002249581, - 0.011682981, 0.0048995316, 0.017110625, 0.013457632, 0.0159885, - 0.009164111, -0.016327871, 0.012652299, 0.0020413634, -0.005195821, - 0.018089706, -0.009189913, -0.002049909, 0.013788044, 0.005198644, - 0.022979556, 0.0109457085, -4.2467003e-4, 0.019043013, 0.029706858, - 0.01742212, -0.014011461, 0.003740758, 0.014636271, -0.0066067716, - 0.010603574, 0.023953257, -0.0134825315, 0.0031011163, -0.004963495, - -0.014936771, 0.014505455, 0.03873067, -0.018068548, -0.031568635, - 0.0059819473, 0.011349349, -5.612217e-4, 0.014459577, -7.968153e-4, - 0.023068832, 0.018408211, 0.015503352, 0.019380072, -0.023923181, - 0.0059793084, 0.020474875, 0.02033744, 0.023203643, -6.045466e-4, - 0.008559131, 2.2013408e-4, -0.019197049, -0.0049799406, 0.023018625, - 0.01876899, -0.010627169, 0.001730705, -0.030885704, 0.012659177, - -0.012437694, -0.0031919316, -0.002036605, 0.0014105637, -4.8158097e-4, - -0.043327592, -0.003752269, 0.018169872, 0.006557967, -0.0039556236, - 0.010643323, -0.010633838, -0.0026731556, 0.02350946, 0.0020384514, - 0.005389546, -0.020726867, -0.035359878, 0.015040933, 6.326836e-4, - 1.8775598e-4, 0.0055395192, -0.0039655385, 0.0045117526, -7.1878306e-4, - 0.018652873, -0.0052346853, 0.02544857, 0.010059869, 0.001573174, - -0.0053476, -0.007275873, 0.017300095, -0.010267241, -0.008790339, - -0.0060183215, -0.020887453, -0.0068908646, 0.019299617, 0.015427641, - 0.0101712225, -0.032949746, 0.0022784637, 0.019701868, -0.047233187, - 0.010507022, 0.020941924, -0.014561707, 0.016898654, -0.018498518, - -0.0010073504, -0.0044064033, 0.010625956, 0.011988739, 0.027187604, - 0.010359289, 0.010152419, 0.009359297, -0.0013691236, -0.0027183702, - -0.013219339, 0.0046949796, -0.010898364, -0.0046875034, -0.019609015, - -0.006972893, -0.009072087, 0.0048450665, 0.024825444, 0.005091032, - 0.0026715312, 0.010653287, -0.016706103, 0.0065595987, 0.0023768053, - -0.011258904, -0.004616116, 0.0148646105, 0.010183324, 0.029642746, - -0.035558607, 0.010058974, 0.0020804256, -0.010293544, -9.9453384e-5, - -0.018551663, -7.900468e-5, 0.0035799874, -0.017497454, 0.0122740865, - -0.0155645795, 0.012501894, -0.009857299, -0.016378086, -0.0064660325, - -0.03301265, 0.01161215, 0.004253894, -0.010520734, 0.0015221073, - 0.01560155, 0.017937865, -0.030847099, 0.020491708, 0.014373509, - -0.009456008, -0.0020822214, -0.012466296, 0.0019890035, -1.2140548e-4, - -6.174343e-4, -0.026555652, 0.009636584, -0.010175099, -0.024080817, - 0.020060463, -0.009234683, -0.025446026, -0.009787881, -0.01639921, - -0.019369544, -0.0075746397, 0.015374286, 0.018580385, -0.011354241, - 0.014671452, 0.013960353, 0.021699587, 0.0071464092, 0.0020316695, - -0.0057185036, 0.0028560082, -0.011111905, -0.007484977, -0.013519656, - -0.018929683, 0.008436014, -0.0023470637, 0.011508363, -0.041192643, - 0.03339909, -0.008057863, -0.0049688676, -0.004612865, 0.0045128833, - -0.003913771, -0.019231332, -0.0030198987, -0.0189178, -0.034555074, - 0.003254951, 0.0031033168, -0.0016033397, 9.645306e-4, 0.022436775, - -0.010802087, 0.03358968, 0.010146594, 0.011824171, 0.018036805, - -0.0045293826, 0.03744846, 0.015232769, 0.016367182, 0.018839026, - 9.6461736e-4, 0.014515148, -0.008997056, 0.0031070607, 0.00920083, - -0.009000024, 0.006545527, 0.01664981, 0.022666296, 0.008196608, - 0.03249079, -0.008334191, -0.02074601, 0.007189692, -0.0013624417, - 0.0067533366, -0.0016555062, 0.006099592, 0.010690051, -0.014940421, - -0.0119477995, -0.006432396, 0.0019111675, 0.003641276, 0.012537464, - 0.017339017, -0.021498807, 0.0055287327, -0.022036696, -0.011179034, - 0.028000452, -0.034179293, -0.004518004, 0.023724284, 0.007247243, - -0.01349152, -0.011780465, 0.025639335, -0.0059201517, -0.011246669, - 0.014987312, 0.012438083, 0.02514417, 0.008636584, -0.00546322, - 7.3431386e-4, 0.023434335, 0.003014108, -0.0058347047, -0.014743572, - 0.011228516, 0.015600178, 0.003562978, 0.0033562232, 0.01919474, - 0.009849505, -0.009047549, 0.0021861654, -0.003254523, 0.009998406, - -0.025913406, 0.003987833, -0.0075178086, 0.025025137, -0.016832087, - 2.1283184e-4, 0.01864648, -0.0053868443, 0.027657906, 0.0022689127, - -0.019665472, -0.027054453, 6.982534e-4, -0.02454765, 0.011683268, - -0.0066455863, 0.008341332, -0.0052103456, 0.035573505, 0.0033867802, - -0.010532602, -0.0020998875, 0.0051207053, -0.026421394, 0.026473856, - 0.0066097225, -0.013651828, 0.0029421118, 0.015216368, -0.01805759, - -0.012949972, -0.012396857, -0.013416965, -0.020112887, 3.72079e-4, - -0.026725855, 0.0125915175, -0.024831686, 0.0018588117, -0.008211656, - -0.002275999, 0.010186228, 0.004033907, 3.0010354e-4, 0.008562656, - -0.004813399, 0.0044489657, -0.0018434928, -0.007100995, 0.013142868, - 5.923464e-4, -0.019245269, -0.0040605203, -0.011914047, 0.01774564, - -0.022571713, 0.035607304, 0.022424227, 0.003075576, 0.021825833, - -0.024410835, -0.0097589195, 0.007179463, -0.037210118, 0.029066008, - 0.0018335272, -0.015109164, 0.0026548435, 0.0025655143, 0.015309626, - 0.008529683, 0.016234389, -0.012920324, 0.017304564, -0.011168734, - 0.0037644415, 0.017358828, 0.0101307435, -0.013283638, -0.009148348, - -0.012697395, -0.023128945, 0.021351656, 0.009761704, -0.0042928834, - -0.023865717, 0.010265508, 0.01793248, -0.0012715514, 0.024419786, - -9.015446e-4, -0.006178425, 0.015244788, 0.013041945, -0.01001939, - -0.0035380584, -0.013774112, -0.017543033, -0.00497635, -0.008972766, - 0.034777496, -0.013500196, -0.0063905846, 0.013414665, -0.011084284, - 0.008668363, 0.008282948, 0.02752878, 0.0036206748, 0.0014499907, - 0.005830534, -0.030277839, -0.012616662, -0.045682516, -0.034610547, - -0.0053348187, -0.008610812, -0.012510407, 0.0069830944, -0.0021332158, - -0.0318491, -0.004694621, 0.012890913, 1.07803964e-4, 0.0060929516, - -0.014814754, 0.0028816224, 0.025178552, -0.03488626, -0.0083243875, - -0.020392723, 5.8214675e-5, 0.007969299, -0.014481505, -0.002359116, - -7.6871633e-4, -0.017455362, -0.015958231, -0.014269574, -0.011062927, - -0.048823033, -0.0030173946, 0.007011525, 0.0031014779, 0.010913011, - -0.02400249, -0.0120821, 0.0017987224, 0.019089125, -0.00902182, - -0.024948437, -0.0049506947, -0.020274429, 0.02109491, -0.021695103, - 0.0020661596, -0.009189711, -0.019498983, -0.0014078877, 0.014348522, - 0.04144665, 0.00887463, -0.01902073, 0.011977455, 0.0030681514, - -1.02700295e-4, -0.02090008, -0.018858695, 0.019582808, -0.044625405, - 0.0071716825, 0.01603026, -0.011044173, -0.021248013, -0.019228717, - 0.0062710545, 0.014098556, -0.015935818, -0.012854639, 0.01109813, - -0.037698574, 0.004307414, -0.00521593, 0.0028828292, 0.0047352216, - 0.020839995, -0.0059837853, 0.016413048, 0.019169895, -0.0010223605, - 0.013317024, -0.028698511, -0.0026174055, -0.01702663, 0.0204665, - -0.009641126, -0.012919827, 0.0013880909, -0.00952406, -0.0053107324, - -0.011805157, -0.025777467, 0.01767333, 0.021855759, -0.0217899, - 0.019660404, -0.006661764, -0.007878826, 0.0010564368, 0.0038449196, - -0.05204681, 0.014959038, -1.4057873e-4, 0.007811611, -0.002718292, - -0.007204894, -0.0015752529, -0.010720247, 0.026090926, -0.0039541004, - -0.008422151, 0.0056117945, 0.0012553064, 0.021484397, -0.009210129, - 0.026681656, -0.020103762, 0.017306369, -0.00720355, -0.015824627, - 0.0045120823, 0.007928143, -0.0037310787, -0.010614282, 0.00743533, - 7.4966194e-4, 0.017243965, -0.0054639825, -0.025916107, 0.006835314, - 0.0070021045, -0.010594523, 0.004855132, 0.0020492692, -0.006374391, - -0.010962062, -0.00999726, -0.0018068727, -0.008356443, 0.020900976, - 0.017278258, -0.026643274, -0.0030044853, -0.021894414, 0.0066597345, - -0.027227586, 0.013359979, -0.014045761, -0.019224877, 0.0025479912, - -0.0124596935, 0.002903852, 0.003347056, -0.032655936, 0.0032382892, - 0.007637248, -0.023129933, -0.003291251, 0.004184057, 7.7602314e-4, - -0.022468163, 0.008329697, 0.02186834, -0.011784011, -0.032165375, - -0.022770405, -0.010318227, 0.0064907223, -0.028234927, -0.009245256, - -0.009832583, -0.013363895, 0.033456903, -0.010372207, 0.006416545, - -0.0033751754, -0.009594987, 0.022372684, -0.0017291474, 3.5453943e-4, - -0.010780916, -0.01303943, 0.002338329, 0.004260461, -0.0012704711, - 0.003721273, 0.035335265, -0.0010831958, -0.010508896, -0.013399769, - -0.011317217, 0.022608744, 0.01921647, -0.0038554263, -0.00422528, - -0.0099788625, -0.019932315, 0.018836575, 0.005136317, 0.007003509, - 0.015719354, 0.01209149, -0.0037848277, -0.0045797126, -1.0595535e-5, - -0.011815639, -0.017303705, -0.015609956, -0.0021147598, 0.022885343, - -7.614777e-4, 0.0030821238, 0.010277914, -0.004197929, 0.046014465, - -0.0063331528, 0.026443101, 0.01775452, -0.012577281, 0.0054338994, - 0.0130589735, 0.017647399, 0.003019011, -0.0054124426, 0.010999386, - 0.016901433, -0.007647627, 0.0018875643, -0.014783354, -0.027676782, - -0.010917421, 0.010078063, -0.035893377, 0.002710869, 0.008409728, - -0.008284709, 0.021472499, -0.014568302, -5.40675e-4, 0.012395059, - -0.02041072, -0.029941788, 0.0089557385, 0.035248794, 0.009491228, - -0.02368237, -0.014366984, -0.0043536555, -0.0017738513, -0.015187089, - -0.015403037, -0.0018960506, -0.0146895405, -0.004867306, -0.0015795039, - -0.016425924, -0.015178168, -0.0021883685, -0.011525985, -0.018996125, - 0.0017373696, 0.0067646424, 0.007979458, 0.012709526, -0.022628762, - 0.0018452235, 0.0039963815, -0.012226288, 0.02442755, 0.01053365, - -0.006132505, -0.0016381193, -0.024448391, 0.0026147384, 0.027158845, - -0.017041966, -0.014886034, -0.0031726987, 0.008464409, -0.026078852, - 0.0043310514, 0.0019934985, -0.014872375, 9.750163e-4, 0.017541792, - -0.020344516, -0.0062200665, 0.008694529, 0.0013364954, -0.027509805, - 0.0062068272, 0.016590433, 3.4389936e-4, -0.010630742, 0.042216677, - -0.016030291, -0.027491113, 0.02027493, 0.00677835, -0.010760074, - -3.378217e-4, -0.0031432153, -0.015908778, 0.019426743, -0.0040120916, - -0.0022590398, -0.002907239, 0.026145935, 0.007970448, 8.4088754e-4, - -0.004752295, -0.0056764726, -0.016890112, 0.0069819097, 0.009253997, - 0.027537083, -0.01601348, -0.017960714, 0.004404454, -0.05153557, - -0.0015238203, -0.0043108715, 0.01988165, 0.021060137, 0.008633251, - -0.0026003348, -5.5510685e-4, 0.008785632, -0.007006416, 0.0024015293, - 0.010044684, -0.006713691, -0.0067874943, 0.0055257343, -0.010799143, - 0.012798559, 0.0109625105, -0.00653178, -0.0091839945, 0.0033059963, - -0.0013594988, 0.017419469, 0.016371252, 0.025019491, 0.0057695312, - 0.006677389, -0.016409617, 0.016471045, 7.6014106e-4, 0.012167346, - -0.0074248663, -0.012711993, -0.006235884, 0.031143256, -0.0029987174, - 0.01925238, -0.01197436, -0.010571519, 0.0040326584, -0.014453101, - -0.023211252, -0.0012441152, 0.019369159, -0.005326875, -0.0145014, - -0.0048904642, 0.003981946, 0.013625853, 0.008716114, 0.0106130615, - 0.0029115886, -0.0063988934, -0.009344022, -0.011295978, 0.020361714, - 0.011483245, -0.030405631, -0.014908074, 0.012673211, 0.026810015, - 0.005867092, -0.016090775, -0.028122317, -0.016251275, 0.0028844438, - -0.019542642, 0.0052104434, -2.7733433e-4, 0.012289023, -0.017942706, - 0.007845896, -0.02884593, 0.0011573167, 0.0077460804, -0.009593021, - -0.010841474, 0.029834233, 7.7997515e-4, -0.028795885, -0.021489343, - 2.3415829e-4, -0.0029521096, -0.0017394858, 0.014402973, 0.015802983, - 0.007411255, -0.026889067, -0.012219332, -0.011811078, 0.0030536924, - -0.018531773, -0.0373591, 0.0058332947, -0.0288633, -1.3914537e-4, - -0.02877864, 0.0039757197, 0.035311546, 0.014997045, 0.0031233402, - 0.002513391, -0.00837634, 0.0050587463, 0.006767466, -0.011754711, - -0.0025501507, -5.4302363e-5, -4.5253264e-4, 0.021936512, 0.013182697, - 0.0088091055, 0.004892108, -0.010231553, -0.015807683, -0.015386615, - 0.018958373, -0.014518265, -0.005596345, 0.014177499, -0.02435832, - -0.007839701, -0.0058841705, 0.021249037, -0.012805922, 0.00473801, - -0.016087485, -0.033178408, 0.0013053705, 0.011711492, 6.8608107e-4, - 0.003148568, -0.01726396, 0.020051058, -0.018968806, -0.0016129283, - -0.004591037, -0.007786469, 0.0013218254, -0.017954594, -0.013206734, - -0.029501433, 0.013145196, -0.01840854, -0.0042539295, -0.02565038, - 0.007096193, -0.020529848, 0.010213019, 0.050761722, -0.015099328, - -0.004534963, 0.010093795, -0.023876123, -0.003025057, 0.006330178, - -0.009134318, 0.0057236906, 0.014481536, -7.1088225e-4, 0.0040434166, - 0.03347732, -7.0212263e-4, 0.007124771, 0.008212812, -0.011404985, - 0.020853952, 0.019750014, -0.0054041254, -0.010985556, 0.021354197, - 0.0019321023, 0.016975773, 0.011036492, -0.005711121, -0.002815785, - 0.005387926, 0.02546337, 0.013232022, 0.003165614, -0.013118085, - 0.0036258332, -0.012465524, 0.0126421545, -0.01582278, 0.026871454, - -0.004327638, -0.0039552343, -0.024724, -0.005693647, -0.016463151, - 0.023933167, -1.929457e-4, 0.0067770053, -0.011383346, 0.013545308, - 0.0087210415, -0.0016149642, 0.013888939, -0.009688354, -0.014457456, - 0.009748042, -0.024347864, 0.017716942, -0.012390815, 0.010613767, - 0.0058755516, 0.019359995, 0.0020657086, 0.010463758, -0.020888524, - 0.01857924, -0.009256209, 0.028732873, -0.01671739, -0.019114105, - 0.021998106, 0.008407424, -0.032340128, 0.008362618, 0.010817277, - -0.009129739, 0.0057894923, -0.006580043, 0.017978182, -0.006478591, - 0.00912387, -0.031956982, -0.014075788, -0.05659575, 0.0020446894, - 0.00814569, -0.022979079, -0.016500723, 0.006179524, 0.012702806, - -0.01359094, -0.02580643, 0.008518075, -0.0068855304, -0.011191409, - -0.008174077, -0.0040378748, 0.021092936, 0.0062758285, 0.01635184, - 0.01550995, 0.014072517, -0.019311024, 0.018460155, 0.008156124, - -0.0099711465, -0.04777167, -0.008882139, -0.004789337, 0.004090903, - 8.911072e-4, -0.0010184103, 6.657906e-4, -0.012654434, -1.7695886e-4, - 0.020599788, 0.005797552, 0.0068617933, -0.016643045, -0.01500592, - -0.014979274, 0.020105178, 0.015176306, 0.004846458, 0.022962326, - -0.016592, -0.012094182, 0.02289285, 0.002519124, 0.0065416866, - -0.0061493255, -0.05336682, 0.007959822, 0.008590836, 0.02196964, - 0.014150328, -0.0028280981, -0.0011873209, 0.0071938606, -0.009932235, - -0.0066243894, 0.005456665, -0.013343983, 0.007929367, 5.265585e-4, - 0.0044928836, 0.02381379, -0.014367766, -0.004254918, 0.009447789, - 0.01838467, -0.022846559, -0.0076132743, -4.0832825e-4, -0.003162365, - -0.0012620301, -0.031983294, 0.007909505, -0.0064816754, 0.025810705, - 0.01106753, 0.014065568, -0.022722408, -0.023583636, -0.010810662, - -0.015081596, -0.0025446094, 0.020291565, 0.00880925, -0.0013698526, - 0.0104717845, 0.013904065, 0.028618833, 0.02372999, 0.01135079, - 0.022929031, -0.002311572, 0.008196451, -0.012600201, -0.012499143, - -0.011216952, -0.0021489004, 0.027707133, 0.0074946014, 0.02835024, - -0.021618484, 0.015440695, -0.019221006, -0.0035390896, 0.025608959, - -0.013935454, -0.033278085, -0.013860822, 0.041697953, -0.032947604, - -0.0076725446, 0.012276198, -5.109559e-4, -0.008613474, -0.028761195, - 0.021287687, -0.016269939, 0.0036650724, -0.02088498, 0.0117268795, - 0.014739011, -0.01608594, -0.0029113232, -0.020113591, 0.006118132, - 0.015895644, 0.009436292, 0.022029456, -0.016768552, -0.0069125635, - -0.0020965477, 0.01038812, -0.007403982, 0.008739403, -0.007364635, - 0.004835526, 0.013340414, 0.011331144, 0.0292658, -0.013377722, - 0.038115148, -0.017150553, -0.01638756, 9.545129e-4, 0.005243368, - -0.026580287, 0.0052931956, -0.0033785214, 0.008950532, 0.018395124, - -0.009349259, 0.01786926, -0.018884504, -0.0033564013, 0.01970112, - -0.01958, -0.018710153, 0.015760409, -0.0018592386, 0.01957381, - 0.02362068, -0.0171121, -0.013892775, 0.022125455, 0.018081125, - 0.0125891445, 0.012002392, -0.015005085, 0.008436038, 0.022780506, - -0.011985429, 0.006521316, -0.02256945, 0.0031341482, 0.006986877, - -0.003960061, -0.04664684, -0.010123269, -0.017675089, 0.0018972451, - -0.0093636755, 0.010033363, 0.0014237452, 0.0043472224, 8.954936e-4, - -0.01430136, 0.024896298, 0.010718179, 0.022379547, -0.01525001, - -0.0074903565, -0.0023542808, -5.4146757e-4, 0.017971275, -0.013806228, - 0.0020673925, -0.002814934, -0.005368538, 0.016203228, -0.033188492, - 0.0011432567, 0.0057464764, -0.0059379684, -0.006949766, -0.008094045, - -0.010776265, -0.013272377, -0.0051874565, -0.008101614, 0.012314874, - -0.0029323108, -0.0018127796, 0.008037888, -0.0063093123, -0.015196396, - 0.008921637, 0.0047407434, -0.0011519805, 0.0021083062, -0.022181502, - 0.026488705, -0.010167371, 0.029290993, 0.0034091389, 0.001191059, - 9.2661683e-4, -0.009893275, 0.011265054 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.017486678, 6.067152e-4, -0.051188607, -0.0931873, -0.037298765, - 0.029125785, -2.8810502e-4, 0.040645618, -0.030570516, 0.020759271, - 0.036243126, -0.007914199, -0.023573697, 0.02064305, -0.009401772, - 0.0022605436, -0.032259926, 0.026942354, -0.00600227, 0.018571297, - -0.019373722, 0.010840479, -0.0011622284, 0.010629846, -0.01163881, - 0.024387978, -3.879919e-4, -0.037342727, 0.0124136945, -0.032351717, - 0.021738537, 0.041552883, 0.07036721, -0.06365586, -0.046747018, - 0.013336743, 0.02014106, 0.005626379, 0.012720616, -0.010795947, - -0.004506616, 0.015973514, -0.013648678, 0.017535936, -0.014909696, - 0.04653811, 0.028833231, 0.039321057, 0.020710638, -0.004674258, - -0.0217249, 0.0043186806, -0.060998484, -0.05377951, -0.008108174, - 0.006815295, 0.011572854, -0.0047062295, -0.017895648, -0.069319114, - -0.026221663, 0.003438604, -0.015044774, -0.04601138, 0.007559215, - -0.034299538, 0.04154463, -0.020311175, 0.02365752, -0.024367243, - 0.074268624, 0.011711483, -0.018952738, 0.008200641, -0.040702585, - 0.025169542, -0.057411566, -0.015244912, -0.055138525, 0.012046738, - -0.026414718, 0.02811193, -0.005244216, -0.009449122, -0.010997111, - -0.035489082, 2.8938814e-5, 0.04443039, 0.02026075, 0.0068588248, - 0.0096874405, -0.034418374, -0.032164633, -0.03218006, -0.012507673, - 0.023500565, 0.015705325, -0.030165628, -0.018058227, 0.035474345, - -0.010638366, 0.0571541, -0.003334043, 0.016916007, -0.018632472, - 0.011548645, -0.0530212, -0.014724667, -0.043576345, 0.0131698875, - -0.012976759, 0.008728189, 0.024969732, 0.030873781, -0.08379856, - 0.042225588, -0.024729317, -0.04320997, -0.027702818, -0.032261267, - -0.024578597, 0.039412774, -0.01350502, 0.015198375, 0.014184531, - 0.018465431, 0.032269336, 0.0010813309, -0.009530703, -0.0024302918, - -0.034453835, 0.011678592, -0.025857838, -0.0033625143, 0.021906575, - -0.035759702, -0.022462526, -0.021260101, -0.024585031, -0.04177201, - -0.04140846, -0.038415816, -0.003488387, -0.027531542, -0.020126225, - 0.017410556, 0.0013844998, 0.0076314514, 0.05710669, -0.015363743, - 0.0473497, 0.019365149, 0.008480306, -0.0019619488, -0.07886958, - -8.2545716e-4, 0.0030210614, -0.030398957, 0.014762787, -0.04076937, - 0.019103024, 0.055786505, -0.010518971, 0.10531083, -0.050535563, - -0.11066614, 0.03172053, -0.073176876, 0.009792917, -0.0061567426, - 0.05616632, 0.013306177, -0.02758564, -0.038339213, -0.052254736, - 0.015078816, -0.047468897, -0.0076538837, -0.021219183, -0.013217421, - 0.008186627, -0.032692224, 0.076744996, -0.016881162, 0.022864513, - -0.04568566, 0.02329985, -0.001969771, 0.048652027, -0.0521697, - -0.0020942239, 0.013665335, -0.036018897, 0.02407305, -0.017731912, - 0.028793227, -0.010243406, 0.040270172, -0.049693245, -0.046581123, - -0.007850467, -0.012010675, 0.021753745, 0.037685506, -0.0059375623, - -0.001618763, 0.007459954, -0.023933247, 0.004239524, 0.01170056, - 0.012825536, 0.013315986, -0.018574513, 1.13029135e-4, -0.035067283, - 0.008850371, -0.045238946, 0.08084114, -0.050693527, -0.004886746, - -0.011990974, 3.8302984e-4, 0.050170667, -0.009840668, -0.012742082, - 0.004759259, 0.01899641, -0.045502756, 0.024063135, 0.02573486, - -0.056272373, -0.051749177, -0.022691054, 0.045933828, -0.013063571, - -0.028762147, -0.074973084, 0.036807843, -0.031934604, -0.08537626, - 0.020985566, 0.012738329, 0.04668139, 0.061716016, -0.026768217, - 0.0067996043, 0.016197972, -0.021333557, -0.053699754, -0.009138177, - -0.015986469, -0.0374295, 2.7359687e-4, -0.016463652, -0.03669809, - 0.07182877, 0.012704138, -0.010549544, 0.017472444, -0.015783504, - -0.003716169, 0.020508617, 0.074323125, -0.015214675, -4.006559e-5, - 0.027124083, 0.025701, -0.013618626, -0.019343704, 0.036206152, - 0.011380836, -0.02985236, -0.0010713799, -0.06595622, 0.04375038, - -0.010142056, -0.027260039, -4.9914996e-4, 0.05244017, -0.016999684, - 0.012192217, 0.06362792, -0.036887113, 0.014560152, -0.0066025076, - 0.02064432, 0.034638997, 0.03809906, -0.047413602, 0.038958598, - 0.06737519, -0.003404185, -0.048518434, -0.032292064, -0.019696856, - -0.016963989, 0.02223144, -0.05909686, 0.012706378, 0.012886455, - -0.0075887875, 0.06493234, 0.009963628, 0.038903777, 0.056356173, - 0.013020283, 0.026360102, -0.013907989, 0.05525029, 0.0074154106, - 0.018280743, 0.0149887735, -0.031569604, 0.013851131, 0.029134003, - 0.010330837, -0.024505047, 0.014631263, -0.0021880344, 0.011482353, - 0.03120638, 0.010968079, 0.011150443, -0.001426171, -0.05013006, - -0.0028405539, 0.028543033, 0.038083065, -0.0037841867, 0.034136374, - -0.031467356, -0.07297305, 0.0068024998, -0.04377427, -0.013893871, - 0.030960737, 0.016562587, 8.86621e-5, -0.018918417, 0.018316833, - -0.02270498, -0.0040819035, -0.0032842031, -0.004873319, -0.10688229, - 0.035127595, 0.009719983, 0.022496827, -0.016277026, 0.01109206, - 0.007114199, 0.009504361, 0.0056506055, 0.016304018, 0.035881743, - 0.074122585, -0.008535591, 0.0011846231, -0.02778303, 0.025680905, - -0.021428633, -0.024251053, -0.04937438, -0.013567081, 0.066818744, - -0.052615453, -0.0040092617, -0.054464687, -0.0046808408, 0.014438908, - -0.0069721807, 0.01548721, 0.0027272333, -0.021860186, -0.020093994, - -0.04108121, -0.014184233, -0.025767094, -0.038898177, 0.030609895, - 0.01788804, 0.0014018351, 2.7899467e-4, 0.0030208325, -0.034698796, - -0.007398176, 0.029463299, -0.003653258, -0.07038403, 0.036118668, - 0.012957959, 0.04114887, 0.021131406, -0.030718058, 0.013321736, - -0.06777126, -0.052565552, -0.012236114, -0.0180563, 0.016034475, - 0.0061064437, 0.032058015, 0.008269767, 0.0129280565, 0.009595424, - 0.006997101, 0.0013284594, 0.0038525057, 0.004938856, 0.0087362295, - -0.029432073, -0.023093447, -0.010196349, 0.011254685, 0.051262792, - 0.017897902, -0.027301546, 0.011691951, 0.06952615, -0.025063744, - 0.024101606, -0.027414918, -0.04701454, -0.045302868, -0.07200263, - 0.04279127, -0.004316937, 0.029424464, 0.0036369548, 0.011594916, - -0.0011733324, -0.009627972, -0.014894998, 0.009063266, 0.050781026, - -0.0028581845, -0.003949727, 0.0141688315, -0.01819659, -0.09750469, - 3.2548502e-4, -0.006397769, -0.014378421, 0.004028039, 0.015666576, - -0.057486955, 0.038248546, 0.0010442808, 0.04893815, 0.0010165526, - 0.021694597, 0.030490186, 0.005249252, -0.03169019, 0.030408923, - 0.054123186, 0.0123412125, 0.009168853, 0.053869814, 0.062349413, - 0.0668629, -0.057524346, 0.03845151, -0.015152015, -0.013110737, - 0.022131566, 0.0022018866, 0.001438678, -0.026709784, -0.022465782, - 0.0063413344, -0.039111797, 0.0026344357, 0.032005917, -0.005331552, - 0.07457636, 0.0399561, 0.04186713, 0.025780248, -0.031668667, - -0.003817013, -0.037659064, -0.005382652, -0.004564698, 0.040489502, - -8.7027304e-4, 0.029673414, 0.00482315, 0.038357124, 0.015618698, - 0.051889807, -0.017689012, 0.034211013, 0.034459036, -0.020393057, - 0.015962675, 0.041205578, -0.030967172, -0.030918172, -0.036980525, - -0.021015564, 0.024096597, -0.0041562915, -0.0044971984, -0.013698909, - -0.036232855, 0.052296367, 0.022035098, -0.037772857, 0.017244527, - 0.011944356, -0.018392053, -0.01331559, -0.042111613, -0.029730393, - 0.009945519, -0.01769029, 0.037957955, 0.044839222, -0.017063996, - -0.01609741, 0.010304655, -0.010681499, 0.02517312, 0.06767124, - 0.014825036, -0.013036397, 0.08693703, 0.01447408, 0.058324285, - -0.068024755, 0.011851809, 9.919965e-4, 0.014610024, -0.002889768, - 0.011261647, 0.014240965, 0.049614772, 0.002932893, -0.023338847, - 0.0075623672, 0.065638416, -0.0049128057, -0.022520903, 0.0069186203, - 0.008330244, 0.03434209, 0.00750024, -0.0021885608, 0.06496707, - 0.013294189, -0.017311193, -0.0098347245, 0.007130852, 0.007341601, - -0.0030570505, 0.010936177, -0.011756894, 0.008891204, 0.0013199479, - -0.0013509326, 0.0064101, 0.016161563, -0.03808388, 0.006663225, - -0.06294073, -0.059920765, 7.4966456e-4, -0.053503286, -0.0051972484, - -0.009771333, -0.014210985, -0.051995207, 0.023812087, 0.061610155, - 0.024632895, 0.06116422, 0.0012581227, 8.5046433e-4, -0.021735225, - -0.024661234, 0.013106557, 0.02315195, -0.0010583448, -0.0013460874, - -0.0075177155, 0.063701466, 0.022966422, 0.03363589, -0.021529702, - 0.03704465, -0.036286, 0.02382185, -0.090783045, 0.008660978, - 0.0036169565, 0.030242488, 0.021094838, -0.051804267, 0.013440543, - -0.022037616, -0.056193672, -0.038110882, 0.037255455, -0.0080793, - -0.014564156, -0.011718711, -0.013977288, 0.037120678, -0.057617057, - -0.050126664, -0.019010909, 0.03130139, -0.023898356, 0.0039292094, - 0.04209956, 0.050221097, -0.013440379, -0.054059666, 8.4913545e-4, - -0.04076171, -0.046623673, 0.0107035935, -0.08050141, 0.041396968, - 0.03386687, 6.6604983e-4, 0.018703373, 0.02512752, -0.028337529, - -0.028324973, -0.0061442065, 0.033390112, -0.027000425, 0.0030722397, - 0.012465488, -0.0148920575, -0.02377262, 0.015281624, -0.017415958, - -0.0103895655, -0.020458154, 0.0059036333, -0.006462343, -0.05542744, - -0.0026860721, -0.023617586, -0.013735519, 0.002155621, 0.042509813, - -0.020012341, 0.011885791, -0.0030909372, -0.018969256, 0.005716767, - 0.029752033, 0.0020069447, 0.0368172, 6.037278e-4, 0.035485893, - 0.019924464, 0.015831707, -0.011336695, -0.016287986, 0.0035642455, - 0.053170063, 0.010759885, -0.024752028, -0.031528912, 0.045224465, - -0.00879309, -0.0035894683, -0.010116682, -0.040281277, 0.005532055, - 0.01467237, -0.07153458, 0.048409503, -0.023581985, 0.024879202, - 0.040305965, -0.032212883, -0.004332175, 0.011542049, 0.047261283, - 0.01942176, 0.004994746, -0.024890821, 0.05284655, 0.010527891, - 0.013919232, -0.034748435, -0.035993386, 0.026247429, -0.010229808, - 0.0021651424, 0.008664689, -0.0015363799, 0.03274614, 0.025429728, - 0.004517499, -0.019232512, -0.0075724553, 0.029706467, 0.01421393, - 0.025065565, -0.028358385, 0.06508665, -0.02962505, 0.013502846, - 0.0048296144, -0.014675874, -0.014908689, -0.04085009, -0.014926643, - -0.0015941951, 0.023164766, 0.04168822, -0.050601408, -0.031455174, - -0.009655109, 0.037087984, -0.04471743, 0.0023355647, 0.041386254, - -0.01896074, -0.002870411, 0.010041325, -0.009422845, 0.020844372, - -0.016828448, 0.006762169, -0.056270044, -0.01765929, 0.039004646, - -0.032438677, 0.004179082, -0.014205123, 0.06396228, 0.03817022, - 0.02418978, 0.0062331078, 0.025334677, 0.027703876, -0.016582223, - -0.043442227, -0.048504416, -0.022529488, 0.031386107, 0.019545479, - -0.04898052, -0.017992634, -0.01540575, -0.027403023, -0.022133736, - -0.024392163, 0.020749604, 0.0045745987, -0.023368314, 0.029300192, - 0.013921604, 0.015321203, -0.011685824, -0.019995105, -0.008955661, - 0.036729727, -0.028526075, 0.029948823, 0.018400561, 0.01741694, - 0.008256906, -0.005804934, 0.021098213, -0.01628196, -0.0046368926, - 0.014239546, -0.0011537339, -0.012254698, 0.025347948, 0.023094753, - 0.01916738, 0.05891366, 0.064606935, 0.060553093, -0.030497124, - -0.018981794, 0.029087646, 0.030839145, 0.030397674, 4.0701995e-4, - -0.035708115, -0.018077912, -0.007619556, -0.036796015, 0.022080533, - -0.021318799, -0.0332952, 0.012851884, -0.032378163, -0.012455134, - -0.023476314, -0.041175663, 0.03581448, -0.008242933, 0.038063556, - -2.234111e-4, 0.037135042, 0.036526766, 0.018860295, -0.0013235258, - -0.009881747, -0.026550556, -0.017217385, -0.008590787, 0.016494496, - -0.0051041357, 0.0057782014, 0.011201766, 0.016592346, -0.040851746, - -0.040924057, 0.05799074, -0.008280275, -0.011727134, 0.012853856, - 0.07351245, -0.0076701436, 0.028431274, -0.02010069, 0.008313669, - 0.0060216705, -0.020742122, 0.057402488, -0.016585158, 0.007993218, - 0.013278393, 0.0031332897, 0.044681013, -0.029448403, -0.0065912963, - -0.02257703, -0.006817727, 0.03500825, 0.01606773, 0.010950163, - 0.02112467, 0.0047636055, 0.011437792, -0.0020654635, 0.004611882, - 0.037323616, 0.006358982, -0.02562326, -0.0076576737, -0.021834487, - 0.027732259, -0.016870692, -0.027681867, -0.01923074, 0.01094237, - 0.04145545, -0.015476454, 0.048418965, -0.0051878556, 0.04221686, - 0.06687181, -0.06266513, -0.036442988, -0.04753192, -0.007294025, - 0.06132414, -0.0026752807, 0.00567081, 0.031546153, -0.010358176, - -0.008141607, 0.053355727, 0.015906438, -0.06801058, 0.013332553, - -0.020440932, 0.024167249, 0.0083235055, 0.021971596, -0.044715524, - 0.0043664128, -4.982616e-4, 0.010292288, 0.037652917, -0.019837396, - -0.056554366, -0.03371629, -0.024078244, -0.015270234, -0.013744462, - 0.008132039, 0.008090832, -0.012047374, 0.036002927, -0.018950243, - 0.0061134486, 0.0054846494, 0.027750816, -0.011177174, 0.032012492, - -0.014337122, 0.019637097, -0.007705855, 0.0240354, -0.028137933, - 0.043967485, -0.0045045754, 0.053270288, 0.045407284, -0.029919326, - 0.02021326, -0.02083498, 0.010185473, 0.024668189, 0.052847404, - -0.01202558, -0.031563077, 0.030964784, -0.01066245, -0.063831374, - 0.0075555416, -0.030570604, -0.017616645, -0.03230454, 0.026374063, - -0.008956863, -0.034930516, 0.012673696, -0.038238052, -0.00656287, - 0.017238304, 0.011722366, -0.017921427, -0.014627016, -0.045994338, - 0.024791557, 0.022017462, -0.062126227, 0.029464113, 0.0057317936, - 0.04983207, 0.043058023, -0.0120893745, -0.012089705, -0.009787872, - 0.019745566, -0.0025385886, -0.01374126, 0.019122154, -0.020217557, - 0.04071591, 0.04655633, 0.00719949, 0.043021064, -0.036403537, - -0.020410106, 0.018603224, -0.089271724, 0.007268461, -0.029286973, - 0.037308104, 0.011300609, 0.0014614485, -0.038049098, 0.059401497, - -0.0060034175, -0.06666864, 0.034231417, -0.053605624, -0.04977026, - -0.0034521427, -0.0749049, 0.028771546, 0.015948389, 0.0449556, - 0.0057224957, 0.014772656, 0.022673344, -0.008094644, 0.0332322, - 0.02051255, 0.0062157093, 0.029789235, 0.009349858, -0.022314118, - -0.051815145, -0.03524212, -0.045455, 1.312866e-4, -0.041383617, - 6.8295817e-4, 0.008186145, 0.023326335, -0.01259438, 0.06242637, - -0.0010674471, 0.008717612, 0.011554256, 0.048099745, -0.009760923, - 0.033928346, -0.024380738, -0.0377521, -0.007080344, -0.007913025, - 0.02077641, 0.02177447, -0.01775095, -0.02783422, -0.0044501, - 0.018461056, -0.024162382, 0.00869836, 0.04791475, 0.04934308, - -0.015316157, -0.025370605, -0.016923588, -0.022114675 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 8.4422267E-4, + -0.021801956, + -8.682923E-4, + -0.034609977, + 0.021985, + 0.0022901713, + 0.005569461, + 9.2865963E-4, + 0.0068415175, + -0.013221107, + -0.014472967, + 0.016644867, + -0.0157082, + 0.004568269, + 0.009666086, + -0.002983813, + 0.0016294776, + -0.0036426971, + -0.0019620345, + 0.008741449, + 0.024795888, + -0.010404263, + -0.010031039, + -0.033165116, + -0.005901209, + 9.7250834E-4, + -0.015246081, + -0.014080523, + 0.014578409, + -0.018417291, + 0.037438497, + -0.029976027, + 0.005637094, + 0.021453895, + -0.035427507, + 0.0070823855, + -0.010967501, + 0.004712482, + -0.015598135, + 0.0071988935, + 0.018665915, + 0.015230937, + -0.011500621, + -0.02815835, + 0.02137606, + -0.0060910597, + 0.021868128, + 0.027671782, + -0.0022445356, + -0.009134622, + -0.006195342, + -0.0038287172, + -2.7556198E-5, + 9.6769456E-4, + 0.0039573247, + 0.0020231323, + -0.0045774425, + -0.004298178, + -0.007864288, + -0.036650486, + 0.025642682, + -0.003348169, + -0.02741605, + -0.007891075, + 0.029693078, + 0.012719201, + 0.0024069343, + 0.020332256, + 0.014588178, + 0.013718219, + 0.01135799, + 0.0035695941, + 0.010692846, + 0.039281007, + 0.019473411, + 0.010422596, + -0.014791741, + -0.010662205, + 0.0028489642, + -0.012317802, + 0.006418106, + 0.010481959, + -0.0020264504, + -0.019318936, + 0.0024968255, + -0.01054503, + -0.0021339785, + 0.01878129, + -0.0034000387, + -0.0016532762, + 0.0077829193, + -0.012972853, + 0.02285585, + -0.0044156997, + 0.0062979325, + -0.0148352245, + -0.009673235, + 0.028742239, + 0.0044969926, + 0.008523649, + 0.018501943, + -0.016735401, + 0.003697759, + -0.018604614, + 7.1504543E-4, + 0.015721327, + 0.005229835, + -0.0010922186, + -0.011912322, + -0.011169554, + 0.014298164, + 0.01912905, + 0.006976606, + 0.018215407, + 0.00797651, + -0.019859893, + 7.4738474E-4, + -0.019935397, + 0.027630188, + -0.008717635, + 0.0025700254, + 0.003287574, + -0.004353984, + 1.9199617E-4, + 0.021693705, + 0.016295176, + 0.016706713, + -0.0032557528, + -0.009721895, + -0.009375753, + 0.015640385, + 0.016866595, + -0.010985048, + -0.0021860856, + 0.019831136, + -0.0122882845, + 0.012448595, + 0.0151883345, + 0.016912745, + -0.013790914, + 0.0040080124, + 0.013991877, + -0.0031486768, + -0.012261172, + -0.008709374, + 0.0072781476, + 0.0014095828, + 0.008073982, + 0.003161251, + 0.0015250925, + -0.0043822993, + 0.0159246, + 0.0025951809, + -0.0056262724, + -0.040116433, + 0.006602782, + -0.006156504, + -0.0013964868, + -0.014369844, + -0.006887671, + 0.012897415, + -0.006403936, + -0.03488554, + -0.0059684394, + 0.0155509235, + -0.01980869, + -0.0036591906, + -0.01723464, + -0.010860507, + -0.013130193, + -1.5016856E-4, + -0.015561828, + 0.0017663281, + 0.0035033152, + 0.020103784, + -0.01241607, + 4.5055212E-4, + -2.538215E-4, + -0.008238684, + -0.006696644, + 6.7603146E-4, + 0.010413518, + 0.009118248, + 0.012488004, + 0.016014038, + 0.011118454, + -0.023694236, + 0.018626796, + -0.010172497, + -0.0065096878, + -0.013908599, + -0.0047782892, + 0.0011321359, + -5.7188486E-4, + -0.008455565, + 0.023092344, + 0.0059967516, + 0.0067655076, + 1.8171606E-5, + 0.019682748, + 0.021787973, + 0.012114063, + -0.0016134608, + 0.013255374, + -0.025150187, + -0.009962148, + 0.013487427, + -0.014694893, + 0.017094009, + -7.4041117E-4, + 0.013012451, + 0.013184907, + 0.0021864069, + -0.006007293, + 0.020828366, + 0.021796616, + -0.017472023, + 0.0045303255, + -0.0068508, + -0.009092687, + -0.003980946, + -0.002824291, + -0.018767534, + -0.0038643717, + -0.0044705356, + -0.0067914594, + -0.018323189, + 0.0041060927, + -0.02617781, + 0.012132119, + -0.004995117, + -0.019028673, + -0.021838423, + 0.016185593, + 0.003039972, + 0.002690002, + 0.005939604, + -0.0029722117, + 7.141619E-4, + 0.0042611756, + -0.0021749474, + 5.28229E-4, + -0.04686276, + -0.02679011, + 0.027460216, + -0.015458621, + 0.0042017326, + -0.005461093, + -0.016801799, + -0.0022748746, + -0.0036725695, + -0.0016427671, + 0.017713128, + -0.0034749145, + -0.013919232, + 0.0019981023, + 0.012065012, + 0.029538203, + 0.004759795, + -0.0050635156, + -0.02447789, + -0.012215462, + 0.0037834528, + -0.016068807, + -0.012618775, + 0.01239304, + 0.006321978, + -0.017444037, + 0.015022278, + -0.0068240156, + -0.0030626643, + 0.0095732035, + 0.044158086, + -0.01524641, + 0.010484641, + 0.011411916, + 0.014444659, + -0.014029595, + 0.016686354, + -0.0025415705, + -0.007699446, + 0.0074732336, + -0.014531704, + -0.019157453, + -0.0045494866, + -0.010207766, + 0.0019394208, + 7.4745045E-4, + -6.3582335E-4, + -0.016953385, + 0.011624429, + -0.0020336576, + -0.007486245, + 0.005886591, + -0.0038139378, + 0.037470244, + 0.015056267, + -0.008497605, + -0.02966781, + 0.012664936, + 7.763003E-4, + -0.008342826, + 0.008357143, + -0.0085017765, + -0.0014239377, + 0.0021200615, + 0.0024034982, + 0.012836666, + -0.020901926, + 0.016598849, + -0.009437459, + -0.0021637734, + -0.007505729, + 0.020746334, + -0.015513039, + 0.005289308, + -0.009125319, + 0.01374772, + -0.010755989, + -0.0047099013, + 0.03140447, + -0.018055465, + 0.0045679, + -0.011190916, + 0.025335701, + -0.015521268, + 0.0051322933, + -0.0051134494, + -0.004525495, + -0.035846584, + 0.020031178, + -0.009910907, + 0.0086025065, + -0.004021943, + 0.028744582, + -0.008118981, + 0.0034624403, + -0.01689226, + 0.009438021, + -0.004358044, + -0.01652398, + 0.012675504, + 0.027174504, + 3.5169543E-4, + 0.032254953, + 0.021617023, + 0.01095921, + 0.018688576, + -0.018930154, + -0.035812482, + -0.007406208, + -0.019657167, + 0.014300163, + -4.4024442E-4, + -0.03777695, + -0.0136402445, + -0.00978112, + 0.018982872, + -0.0026587597, + -0.02995561, + 0.010786764, + -0.018012874, + 0.0075306636, + -0.010291866, + 0.02806757, + 0.0172792, + -0.010451431, + 1.7814976E-4, + -0.014726038, + -0.03335727, + -0.009301037, + 0.0142112095, + 0.015432365, + 0.0096253855, + 0.011649355, + 0.0069958344, + 0.02950765, + 0.015634155, + -0.0092462655, + 0.017329512, + -0.0032416086, + -0.015062153, + 0.013917303, + 3.1686015E-4, + 0.01379671, + -0.02853157, + 0.0036947362, + 0.0032812457, + -0.0029305094, + 0.010922797, + -0.007893102, + 0.015528874, + 0.0086871665, + 0.0056302906, + 0.013475252, + -0.002957979, + 0.012222702, + -0.004778918, + -8.3067676E-4, + -0.019350989, + -0.018248968, + -0.019150048, + 0.02227729, + -0.03367096, + -0.0035308728, + -1.6529212E-4, + 0.009379626, + 0.0071385223, + -0.0043451805, + 0.0065648113, + 0.016478399, + 0.011284444, + 0.04340884, + -0.014550969, + 0.018873522, + -0.0061100326, + 0.022773053, + 0.019939225, + 0.009379146, + 0.013082324, + 0.024348455, + 0.0028441863, + -0.0043140776, + -0.004537873, + -0.0053720004, + 0.019493585, + 0.013547893, + -0.009092413, + -0.017473198, + -0.015092151, + 0.017042363, + -0.02412558, + 0.0022169573, + 0.011593259, + 0.012988705, + 0.0376266, + -0.014528153, + -0.028477902, + -0.012860702, + 0.020589784, + -0.01878597, + -0.021887524, + 0.0028702694, + 0.0024790084, + 9.209012E-4, + 0.010341087, + -2.7505387E-4, + 0.0042854813, + -0.014302985, + -0.012674134, + -0.012556195, + 0.0026607292, + 0.028502218, + -0.0039189025, + 0.013549393, + 0.009390597, + 0.013242171, + -0.017080009, + -0.026865909, + 0.0015005579, + -0.010265837, + -0.0071189096, + 0.03200362, + 0.0028403236, + 0.0032739898, + 0.0033077055, + -0.012686137, + -0.031149419, + -0.005539914, + 0.0110902395, + -0.0053432263, + -0.01564678, + -0.026487408, + -0.04276226, + 5.3029595E-4, + 0.010987082, + -0.00837339, + -0.003374767, + -0.008540259, + -0.006676344, + -0.0013626703, + 0.027783114, + -0.0055261045, + 0.003076678, + 0.008744821, + -0.0028340581, + 0.0016238182, + -0.0063077505, + 0.0019898296, + 0.019189958, + 0.00782384, + -0.013298511, + 0.015312632, + 0.014679234, + 0.0032011454, + 0.024210993, + -0.0077579413, + 0.011156029, + -0.007508444, + 0.0023119606, + 0.024212439, + 0.012205195, + 3.8241193E-4, + -0.007838392, + -0.006941972, + 0.020270891, + 0.008743282, + -0.003704916, + 0.021493101, + 0.010745371, + -0.002684184, + -0.007204966, + -0.0045419605, + 0.014659031, + -0.020560568, + 0.010387648, + -0.006367546, + 0.010675869, + -0.014900679, + -0.0021539652, + 0.014547861, + 0.009962785, + -0.0010476172, + -0.02608771, + 0.029679926, + -0.015213355, + 0.010094402, + -0.0013329566, + 0.0049756053, + -0.0036597175, + -0.002223527, + 0.019524438, + -0.0012111481, + 8.47439E-4, + 0.003025654, + 0.009195844, + 0.015326676, + -0.012637829, + -0.01754084, + -0.009278747, + -0.008673959, + -0.0010336414, + -0.007664391, + 0.0079663, + 0.00620321, + 0.014198195, + 0.009940994, + 0.009509742, + -0.0012863729, + 0.0119020585, + 0.013054879, + 0.020600641, + -0.01058007, + -0.020390248, + 0.01581707, + -6.5800763E-4, + 0.003156374, + 0.0024202086, + -0.004283976, + -0.004698034, + 0.010757148, + 0.0050601875, + -0.005044781, + -0.01282258, + -0.010034729, + -0.018961426, + 0.009569633, + 0.021170156, + -0.016312653, + -0.006167942, + 0.003476326, + 0.0062805153, + -0.0035674272, + 0.018075988, + 0.013585998, + 0.005779843, + -0.009719451, + 0.0032353303, + -0.011391863, + 0.033789612, + -0.0021702077, + -0.018030923, + -0.009773266, + -0.014019058, + 0.010154305, + -0.0016253318, + -0.042917114, + 7.1642385E-4, + -0.011831599, + -0.003446241, + 0.025083655, + -0.010943602, + 0.010292019, + -0.00836297, + -0.0052153165, + -0.008634879, + -0.03322905, + -0.005624312, + 0.0126496395, + 0.010180957, + 0.025287732, + 1.5740166E-4, + -0.026225535, + -0.014449887, + 0.036609437, + 0.017790483, + -0.010593431, + -0.030701434, + -0.0054770624, + 0.022923116, + -0.012794525, + 0.0014026808, + -0.023975255, + 0.029893389, + -0.017577874, + 0.008461224, + -0.025783384, + 0.022502892, + 0.00905386, + -0.006316231, + 0.013524444, + -0.006773163, + 0.005649935, + -0.0031439012, + 0.020840617, + 0.005077387, + 0.0073037837, + 0.021721045, + 0.01697565, + 0.0010122402, + -0.023688553, + 0.008437656, + 7.59668E-4, + 0.03371082, + 0.0061741737, + -0.0066813985, + 0.015861297, + -0.005134101, + 5.7620497E-4, + -0.0063026976, + -0.016632682, + -0.015829792, + -0.033504438, + -0.0018884363, + 0.014800614, + -0.015890136, + 0.002624054, + -0.015901405, + 0.031922948, + 0.006331381, + -0.005450157, + -0.0060485825, + 0.033156868, + -6.186679E-4, + -0.0048237266, + -0.005319535, + -0.033184875, + -0.026417943, + 0.017050942, + -0.0071123997, + 0.008355741, + 0.0032614209, + -0.019302875, + -0.014464638, + -0.018460402, + 0.021240678, + -1.1842374E-4, + 0.035822567, + 0.0038692905, + 0.011738629, + -0.0024779642, + -0.0060196635, + 0.031620108, + 0.012615744, + -0.018850693, + -0.002030343, + 0.0014612548, + -0.0073711416, + 3.0999756E-5, + 0.0030540668, + 0.0076508885, + 0.0015808846, + 1.8046155E-4, + 0.027828263, + 0.0064180563, + 0.02852472, + -0.016465979, + -9.235188E-4, + 0.013732901, + 0.009577675, + 0.040708646, + 0.005128606, + -0.013180482, + 0.01461863, + 0.01584834, + -0.02612903, + -0.00986076, + -0.01100093, + -0.0092925625, + 0.010759241, + -0.0018056137, + 0.024596753, + 0.011805688, + 0.028042085, + 0.007092639, + 0.0073358426, + 0.0015879377, + 0.023215504, + -0.0011224857, + 0.01173583, + 0.023198899, + -0.013006507, + -0.016097212, + 0.010126632, + 0.018343523, + -0.015166485, + 0.0092060855, + 0.019735213, + 0.0031168603, + 0.009625859, + -0.0017768898, + 0.022584938, + -0.0069183167, + -0.0014601882, + 0.012924545, + 0.012014552, + 0.005552554, + 0.023379784, + -0.013352296, + -0.009635381, + -0.020989373, + 0.009926239, + -0.00476959, + -0.024521504, + 0.020823548, + -0.0059776916, + 0.021897936, + 0.020639222, + -0.0014322385, + -0.015066917, + 0.012371909, + -0.002682369, + 0.015179955, + -0.005919444, + 0.011313137, + -0.0017269435, + -0.0015216785, + 0.0047574365, + 0.003376916, + 0.004459022, + -0.020059666, + 0.0048197517, + -0.0029949762, + 0.03405494, + 0.02200682, + 0.0036171281, + -0.013086833, + -0.05382195, + 0.01849575, + 0.01754101, + -0.0059606982, + -9.824992E-4, + -0.009957476, + -0.011397198, + -0.026933132, + -0.020743571, + -0.012105659, + -0.0034676148, + 0.011830004, + 0.030099448, + -0.02498342, + -0.016234154, + 0.0013299086, + 0.01321746, + 6.965539E-4, + 0.0024599025, + 0.012844647, + 0.020465842, + 0.004375557, + 0.036917105, + -0.0034503327, + -0.004136473, + 0.01597729, + -0.01368119, + 0.004557917, + -0.024683507, + 8.207911E-4, + -0.026526624, + 0.009955658, + -0.009591589, + -0.015514866, + 0.017985558, + 0.0069500683, + -0.015610685, + -0.003695209, + -0.017497756, + 0.031059956, + -0.01017286, + 0.011028487, + -5.900005E-4, + -5.0634175E-4, + -0.010167939, + 0.0020756242, + -0.017395366, + -0.020479633, + -0.0013416298, + 6.911067E-4, + 0.006911045, + -0.0019212236, + -0.0037271976, + -0.037268903, + -0.0052533173, + -0.025233418, + -0.023516055, + 8.350079E-4, + 0.020440571, + -0.01035678, + -0.016358677, + 0.0014955085, + 0.013258491, + 0.006567258, + -0.015064488, + 0.011469303, + -0.00196154, + 0.0035573798, + 0.007291078, + 0.0045256824, + 0.01695865, + -0.007859273, + 0.039066494, + -1.0285299E-5, + -0.027441721, + 0.006737108, + -0.012789644, + -0.01086637, + 0.016737465, + -0.013761483, + 0.006450755, + -0.008017459, + -0.006346254, + -0.007925127, + -3.6386606E-5, + -0.033068504, + 0.008876218, + -0.026498733, + -9.680877E-4, + 0.0017301908, + -0.010039054, + -0.0066350545, + 0.013582823, + -0.008557687, + 0.0013708535, + -0.019909961, + -0.014267821, + -0.016019203, + 0.00840023, + -0.01360431, + 0.029180521, + 0.029532705, + -1.19849145E-4, + 0.0058978805, + -0.007839168, + 0.02168954, + -0.019141065, + -0.01659531, + 0.0053390753, + 0.018415328, + 0.02018941, + -0.020465849, + -0.008398832, + -0.005061219, + 0.005774093, + 0.012934692, + -0.013299113, + 0.020475496, + 0.011661191, + -0.015941806, + 0.0014980012, + 0.0050410605, + 0.010447349, + 0.023641936, + 0.00967438, + 0.006588517, + -6.134905E-4, + -0.0021752706, + -0.005609575, + 0.021260738, + 0.015399695, + 0.011994996, + -0.015831288, + -0.016546765, + -0.033000886, + -0.0074037905, + 0.022488102, + -0.021538502, + -0.015324022, + 0.0038941025, + -0.0062741684, + 0.001191398, + 0.009216573, + -0.0057533057, + 0.0043720896, + -0.0036914938, + -0.0030825562, + 0.009538292, + -0.0034191925, + 0.0046659256, + -0.005359373, + 0.004689441, + -0.013221449, + 0.004909377, + 0.0051269475, + -0.010769414, + 0.003580092, + -0.0074267397, + -0.0021304376, + 0.011190179, + -0.002414456, + -0.014188626, + -0.01763514, + -0.01158794, + -3.55529E-4, + 7.993094E-4, + -0.017351301, + 0.022319457, + 0.013707993, + 0.035429735, + -0.0072290865, + -0.014214788, + -0.00510738, + 9.3321886E-4, + 0.012327301, + 0.027350178, + 6.4797647E-4, + -0.015700538, + 0.0226692, + 0.012635905, + -0.021404268, + 0.01327537, + -0.018335007, + 0.014520841, + 0.031149901, + 0.00796144, + -0.0016300029, + 0.024937434, + -0.00432377, + 0.028422799, + 0.0039652428, + 0.020736992, + 0.027118044, + 0.006648858, + 0.010265199, + 0.0049326955, + -0.022041772, + 0.020783216, + -0.021901924, + 0.005360091, + -0.006697752, + 0.012373747, + -0.007830259, + -0.0062256297, + 0.003035631, + 0.0020843789, + -8.254505E-4, + -0.02143245, + -6.1641564E-4, + -0.012709909, + 0.022304269, + 0.013339612, + -0.010559061, + 0.025617667, + -0.0046830713, + 0.016420377, + 0.020671144, + 0.007894467, + -0.01613736, + 0.026632417, + -0.017298466, + 0.012124865, + -0.017084224, + -3.0185317E-4, + -0.014719316, + 0.0076794894, + 0.015887367, + -0.016297145, + 0.022327933, + -0.0017412656, + 0.0058430424, + 0.0020096058, + 8.528562E-4, + 2.3863262E-4, + -0.007335427, + 0.023629207, + 0.0062666535, + 0.026525063, + -0.0060392385, + -0.00839785, + -0.011242457, + 0.035927054, + -0.0013154236, + -0.018538313, + 0.013481864, + -0.0013768713, + 0.004796999, + 0.010720085, + -0.007089077, + 0.030761894, + 0.013656236, + -0.012126896, + -0.015456899, + 0.010542052, + 8.280296E-4, + -0.018046932, + -0.001065176, + -0.011054447, + -0.020674143, + -0.01628384, + -0.02175423, + -0.015711997, + 0.0054402514, + -0.012475528, + -0.004005327, + -0.04311315, + 0.008780417, + 0.007318518, + 0.0037436236, + 0.0027728889, + -0.009285004, + -0.016182572, + -0.022056492, + 0.0059261336, + -0.011304446, + 0.0033054748, + 0.006494995, + 5.303286E-4, + -0.016252263, + 0.016345568, + -0.0077537675, + -0.034252863, + 0.014777204, + -0.034637578, + -0.0040149577, + 0.009058161, + -0.0015553173, + 0.0029278186, + 0.010046114, + 0.014428217, + 0.0040199333, + 0.0036214045, + 0.023538487, + 0.009016301, + 0.013787964, + 4.1923753E-4, + -0.023542734, + 0.012089026, + -0.0059426776, + -0.0061912322, + -0.004177999, + 6.929466E-4, + -0.019188907, + -0.017940823, + 1.5866806E-5, + 0.011817216, + -0.0020968912, + 0.014615885, + 0.0056468877, + 0.0061919065, + -0.0049528456, + -0.028833853, + 6.5437774E-4, + 0.006102151, + -1.2155519E-4, + -0.013894784, + -0.0075754235, + 0.008692252, + -0.013373553, + -0.0193094, + -0.009273864, + 0.0074124453, + 0.009060007, + -0.013179685, + 0.017393595, + -0.009815336, + 0.027910814, + 0.042614624, + 0.009891854, + 0.023319542, + -0.00820992, + -0.011817939, + -0.0046040863, + 0.008599407, + 0.0044092396, + 0.032018222, + -0.01967979, + 0.021852344, + 0.015189516, + -4.1657255E-5, + -0.007607491, + -0.014395041, + -0.03439324, + 0.0017261062, + 0.0124806585, + 0.019383729, + -0.003058121, + -0.020031177, + 0.0066199573, + 0.021563368, + -0.025924942, + -0.009724523, + 0.018212326, + 6.707173E-4, + 0.023877656, + 0.011941747, + -0.016610231, + -0.016795292, + -0.008111817, + 0.007445134, + 0.00685779, + 0.04612779, + -0.03546109, + 0.010469112, + -0.008305012, + -0.0031335051, + 0.01014103, + 0.015859889, + 0.005272324, + 0.01555801, + 0.016056407, + -0.012821008, + -0.013693536, + 0.023529863, + -0.0022733149, + 0.017411629, + 0.008107283, + -0.005718078, + -0.024753125, + 0.022929557, + 0.014121829, + 0.030806614, + 0.007593582, + 0.01916549, + -0.022228861, + -0.011487625, + -0.025348537, + 0.0039783083, + -0.025822528, + -0.011154138, + 0.007758584, + -0.003145515, + -0.007088742, + -0.027913691, + 0.01315144, + -0.0034022655, + 0.041643843, + -0.0023171846, + -0.0031773793, + -0.018339843, + 0.0069164173, + -0.002333317, + 0.011757952, + 0.011789909, + -0.016163763, + 0.0030327889, + 0.006099866, + -0.022029929, + 0.014738373, + -0.0048340973, + 0.0066676796, + -0.024508405, + -0.0015595964, + 0.012534126, + -4.2225615E-4, + 0.028135946, + 0.0049993643, + -8.7890534E-5, + -0.0038288997, + 0.012054166, + -0.010268022, + -0.028422493, + -0.02843459, + -0.019130435, + 0.015069986, + -0.011774298, + 0.016140332, + 0.009331857, + -0.0014850987, + -0.008090528, + 0.005688873, + -9.2463405E-4, + -0.008281992, + 0.011668415, + 0.0093995165, + 0.010630027, + 0.015914401, + -0.009884414, + -0.002971648, + 0.0048629865, + 0.045127172, + 0.016736098, + 0.009288741, + -0.013797578, + -0.00609369, + 0.007321451, + 0.011799768, + -0.008699738, + -0.009565328, + 0.0066772862, + -3.9432914E-5, + -0.0070446227, + -0.004144287, + 0.004662899, + 0.01383441, + -0.0024057294, + 0.021355517, + 0.021740522, + 0.0037521787, + -0.010890997, + 0.006979748, + -0.03003629, + -5.4803275E-4, + 0.029526582, + -0.016101599, + 0.012234693, + -0.007664132, + -0.014254466, + 0.0024315799, + 0.01161368, + 3.5979156E-4, + -0.030486515, + 0.03414116, + -0.009886742, + -0.0034477282, + 0.008558211, + -0.008947365, + -0.026695611, + -0.0038869171, + -0.012709673, + 0.011987163, + -0.02784167, + 0.011548177, + 0.0020775197, + -0.009146599, + -0.0010184497, + 0.008639172, + 0.0027147082, + -6.343231E-4, + 8.686882E-4, + -0.0010871608, + -0.011483363, + -0.030915437, + -0.015114781, + -0.018279541, + 0.00857759, + -0.032381874, + 0.0028597517, + -0.030739227, + -0.013567209, + -0.0016219958, + -0.011967625, + 0.010500947, + 0.00788849, + -0.00880951, + -0.00681707, + 0.02360176, + -0.017812017, + -0.0054157055, + -0.013489445, + -0.012843347, + -0.010383773, + -0.008553861, + 5.3954136E-4, + -0.031223817, + -0.0032574262, + -0.032720383, + -0.008648189, + 0.008736266, + -0.011131167, + -0.012153399, + -0.0100403335, + 1.2387632E-4, + 0.008324211, + 0.014021163, + 0.010077757, + 0.0032997862, + 0.0069371173, + -0.015634935, + -0.013500526, + 0.007723301, + -0.004772299, + 0.0029733586, + 0.008260205, + 0.0102849575, + -0.0012580893, + 0.008600759, + 0.018927557, + 0.004139759, + -0.026506098, + -8.5596344E-4, + -0.025621776, + 0.004842798, + -0.011786441, + 0.015181577, + -0.020827714, + -0.018273856, + -0.004689887, + 9.3505747E-4, + -0.0032894, + 0.027954344, + 0.010608962, + 6.173926E-4, + 0.026190093, + 0.003642815, + -0.015362598, + 0.008160337, + -0.017725322, + -0.018935848, + -0.00619261, + -0.016009904, + -0.031695433, + 4.0384656E-4, + 0.00823534, + 0.013667375, + -0.033158455, + -0.021685153, + -0.029627198, + -0.016643357, + -0.016332349, + -0.03552133, + -0.0051960587, + -0.011931351, + -0.0035577498, + -0.017254308, + -0.01194715, + -0.0021653336, + 0.0033841347, + -0.024424095, + -0.0257847, + 0.012239956, + 0.012505572, + 0.017405478, + -3.8664824E-5, + 0.020669714, + -0.020961221, + 0.008920077, + -0.002693784, + -0.0016818179, + -0.017631525, + -0.009925216, + 0.016325887, + -0.016128408, + -0.005908249, + 0.011424834, + -0.005504905, + 0.0052129757, + -0.0031926502, + 0.016658502, + 0.024597082, + 0.025750494, + -0.011728815, + 0.0017085532, + 1.9543563E-4, + 0.009100895, + -0.007020127, + 0.007929127, + 0.021370815, + -0.021972086, + 0.014278313, + 0.01011448, + 0.0029817754, + -0.018192884, + -0.0037425167, + 0.014235252, + 0.025889901, + -8.354184E-4, + 0.027762946, + -0.008352739, + 0.0012535679, + 0.017471047, + 0.006781427, + 0.01215003, + 0.009807962, + -0.010299363, + -0.01748867, + -0.004421876, + -0.0021528162, + -0.008197486, + 0.018592633, + -0.003406487, + -0.0027614722, + 0.011499896, + -0.027083863, + -0.011179622, + -0.028085943, + 0.006436477, + -0.0046056677, + 0.0074709975, + 0.0027761753, + -0.008313153, + 0.0011892153, + -0.019333137, + -0.016560797, + 0.031064847, + -0.034206815, + -0.0029041, + -0.0010542637, + 0.0053526093, + -0.0045343656, + 0.012850584, + 0.044068206, + 0.0017796368, + 0.015099287, + 0.026874611, + -0.008479956, + -0.023826526, + 0.0022733589, + -0.0015782227, + 0.02050835, + -0.016112791, + 0.006375181, + -0.006019195, + 0.037152927, + -0.0012944584, + 0.02603363, + 0.009736011, + -0.0014974038, + -0.008804295, + -0.0038556159, + 0.01662986, + 0.0048544914, + -0.023991095, + 0.0022560123, + 0.032387033, + 0.01487031, + -0.0042016963, + 0.005191219, + -0.001027725, + -0.011060856, + -0.00987268, + -0.013675525, + 0.011076789, + -0.020409608, + 0.013893338, + 0.0030390588, + 0.006211045, + 3.3675888E-4, + 0.026521625, + 0.006206198, + -0.001662851, + -0.010729061, + 0.023729332, + -0.019614836, + 0.009115863, + 0.0040858444, + -0.008519809, + 6.924179E-4, + -0.018164786, + 3.415311E-4, + 0.015098679, + 0.031313714, + 0.019810535, + -0.0019382341, + 0.011526595, + 0.0050156205, + -5.2008766E-4, + -0.022406831, + 0.013418768, + 0.016886815, + 0.02493215, + -0.0048455065, + -0.017765302, + -0.018320825, + 0.03181237, + 0.0062682102, + 0.0053747906, + -0.012245668, + 0.021325236, + -0.030530544, + 0.007122004, + -0.023325605, + -0.0012854835, + 0.01730786, + -0.0042562294, + 0.0057311095, + 0.015016224, + 0.015772626, + -0.0048966072, + -0.0049422863, + 0.005298306, + -0.0033944065, + 0.010944334, + -0.002270223, + -0.015772186, + 0.0010737985, + 0.0021578409, + 0.00729636, + -0.003619032, + 0.01752532, + -0.0052198847, + -0.01585067, + -0.02648393, + -0.028729733, + 0.012871697, + -0.0045397403, + 0.010742542, + -0.044579536, + 0.04460783, + 0.0061841374, + -0.017347703, + 0.01986129, + -0.013319822, + 0.0011929403, + -0.0027305179, + -0.005133563, + 0.002969595, + 0.015523701, + -0.031611893, + -0.0038786165, + 0.008959176, + 0.011121172, + -0.0028373662, + 0.021694172, + 0.0065716384, + 0.0127445785, + 0.015049109, + -0.011729336, + -0.011540236, + 0.021786906, + -0.010554619, + 0.024166001, + -0.010203304, + 0.004273002, + -0.007567978, + 0.026428068, + 0.011152558, + -0.0027156828, + -0.023671838, + -0.0039668293, + -0.022982016, + 7.799418E-4, + 0.017663263, + 0.0066439495, + -0.0013601246, + -0.013454022, + 0.0045742095, + 2.4876805E-4, + -0.0248552, + -0.015622945, + -0.016258955, + -0.0033480795, + 0.022879409, + 0.023590464, + 0.0042176056, + 0.0036481237, + 9.583512E-4, + -0.006987342, + 0.004843399, + 0.019733671, + 0.026831117, + 0.008634375, + -0.009119007, + -0.026173826, + 0.0177369, + -0.018742684, + 0.017897949, + -0.007256878, + -0.009414528, + 0.01521764, + 0.0027123238, + -0.022903133, + -0.020674618, + 0.00769173, + 0.005306006, + -0.037589427, + -0.017259995, + 0.011250382, + 0.007978126, + 0.025748331, + -0.005810782, + -0.0118431235, + -0.0020784887, + 0.04952087, + -0.023628818, + -0.010935059, + -0.001257561, + -0.00118122, + -0.002656092, + 0.01518112, + -0.0015798145, + -0.025962632, + -5.884096E-4, + -0.0058636437, + -0.0099241985, + -0.00543783, + 0.026430251, + -0.0019709754, + 0.0041652834, + 0.003694344, + 0.029002305, + -0.011601958, + 0.008071162, + 6.40188E-5, + -6.442507E-4, + -0.01281326, + 0.0043587913, + -0.011117451, + 0.015835486, + 0.007686081, + -0.021224648, + -0.008097143, + 0.0010280045, + -0.008126492, + -0.010007054, + -0.015062687, + -0.011330804, + -0.019135501, + 0.0069408305, + 0.0030171263, + 0.017806975, + -0.0060979254, + 0.00958511, + -0.005941306, + -0.01590867, + -0.0069269217, + 0.0137898745, + -0.0077376952, + -0.012990679, + 0.03331068, + -0.029559834, + 0.010821616, + 0.016260855, + 0.014307184, + -0.018377598, + 0.019213436, + 0.0049266038, + -0.014325113, + 0.02970548, + 0.019293526, + 0.011405602, + -0.021741467, + -0.028296972, + -0.01949767, + -0.01254434, + -0.0053551206, + -0.00842603, + -0.0035285295, + 0.018018208, + 0.018202616, + 0.015395247, + -0.013777222, + 0.009439337, + 8.1907876E-4, + 0.00897955, + 0.014094763, + 0.011925123, + -0.014905501, + -0.0027860918, + 0.0023718183, + 0.020892333, + 0.012849102, + 0.0055406843, + 0.0035174107, + 0.0044116275, + 0.0045606336, + -0.023436248, + 0.029425282, + -0.00513288, + 0.00788752, + 0.011008068, + 0.03090379, + 0.0077507477, + -0.01622007, + -0.0013013687, + 0.012695654, + -0.009051691, + -0.025479257, + 0.014890978, + -0.008381671, + 0.03188145, + 0.025603194, + 8.07173E-4, + 0.004878282, + -0.021655304, + -0.007760122, + 0.012527315, + 0.027022466, + 0.017693872, + 0.006625817, + 0.010599732, + -0.004669104, + -0.011996637, + 0.019667046, + 0.0025757994, + 0.009125295, + 0.01664955, + -0.010550297, + -0.018165294, + -0.0092835445, + 0.016528234, + -0.0068379743, + 0.008950574, + -0.0047437684, + -0.017941859, + -0.0063314675, + 0.027812075, + -0.013958591, + -0.01010636, + 0.003582499, + 0.015947433, + 0.008320195, + 0.005933034, + -0.010884191, + 0.004634435, + 0.009064938, + -0.013805291, + -0.004546054, + -0.0030467086, + 0.006310254, + -0.0026119666, + -0.008845548, + 0.019286651, + -0.02524762, + 0.0069990824, + 0.009183089, + -0.022342376, + -0.010916389, + -0.012996352, + -0.039923824, + 0.0091559235, + 0.03852738, + -0.028943488, + 0.0025797996, + 0.030847972, + 0.004911147, + -0.0045874272, + -0.026739132, + -0.010813725, + 0.011526105, + 0.022859726, + -0.0064886007, + 0.007871412, + -0.013247382, + -0.0046984055, + 0.014525173, + -8.919178E-4, + -0.01677873, + 0.0050910865, + 0.0034117852, + 0.023799343, + 0.007704406, + -0.0063018897, + 0.017694043, + -0.0061739725, + -0.0036050496, + -0.033484906, + 0.008036672, + -9.234048E-4, + 0.0087504005, + -0.004191736, + 0.026115598, + 0.005574584, + 0.023708753, + -0.022529058, + 0.040057242, + 0.0067370003, + -0.017941015, + 0.0066742036, + 0.031105628, + -9.867892E-4, + -0.0084372815, + 0.011932273, + -0.0048403726, + 0.0039625173, + 0.008633777, + 0.0050626374, + -0.010267932, + -0.017557805, + -0.025027595, + -0.022161739, + -0.006557172, + 0.018780606, + 0.010456303, + -0.0041881516, + -0.020873025, + 0.012581072, + -0.007749249, + 0.008822623, + 0.008982371, + -0.007983369, + -0.0010021636, + -0.025446935, + 7.6489575E-4, + -0.0067967344, + 0.0026030696, + -0.010369233, + -0.0036175188, + -0.018664975, + 0.007955825, + -0.004678789, + 9.775965E-4, + -0.022111874, + 0.039831057, + -0.006489492, + 1.4897625E-4, + -0.004745727, + 0.04066878, + -0.02470032, + -0.009422804, + 0.0025800762, + -0.020359065, + -0.012798236, + -0.006334214, + 0.017651565, + -0.007889596, + -0.0133359535, + -0.0079367515, + -0.011650833, + 0.002282492, + 0.022617985, + -0.009537639, + 0.016047334, + -0.006940979, + -0.011571765, + -0.0090387985, + -0.0010462735, + -0.030354746, + -0.013507245, + 0.032125544, + 0.00400549, + -0.006976186, + 0.0045630555, + -0.007128985, + 0.016298337, + -0.010373875, + -0.011994723, + 0.01210485, + -0.011034394, + 0.0022534856, + -0.011342848, + -0.029511936, + 0.008577032, + -0.016809301, + 1.9618325E-4, + 0.0104166465, + 0.00482724, + 0.003349101, + -0.0023500626, + -0.010924014, + -0.007812517, + 0.0015835887, + -0.018063942, + 0.014315065, + -0.03721031, + 0.00976905, + 0.022529772, + 0.016267328, + -0.011041036, + -0.027156794, + 0.0026938424, + -0.0026169827, + 0.009982243, + 0.003034431, + 0.008323827, + -0.02167943, + 6.136447E-4, + -1.650404E-4, + -0.029266927, + 0.013093382, + 0.014746457, + -0.0019531585, + 0.03046179, + 0.0029751128, + 0.013969389, + -0.028342044, + -0.0086466, + -0.0027332015, + -0.019913454, + -0.011830016, + 0.008134046, + 0.009660947, + -0.0028661948, + -0.0051925746, + -0.002742519, + -0.0010601396, + -0.01729668, + 0.003837265, + 0.0038775748, + -0.012992533, + 0.026989931, + -0.010006937, + -0.025716923, + -0.033593975, + 0.03449559, + 0.0017328077, + -0.0011223154, + -0.014138052, + 0.005867667, + -0.0041598408, + 0.005176337, + 0.0035060828, + 0.03544304, + 0.01507242, + -0.017096575, + 0.0029544935, + 0.01780453, + 0.0022123947, + -0.012704505, + 0.02168679, + 0.0011577457, + -0.0051054703, + -0.008578736, + 0.022151582, + 4.9751677E-4, + 0.0074998867, + -0.0069601634, + 0.0027719922, + -0.01032419, + -0.007811984, + -0.038007822, + 0.0011645571, + 0.004508703, + -0.02273766, + -0.029082721, + 0.017738186, + 0.012197896, + 0.012352744, + 0.00951989, + 0.007753121, + 8.062137E-5, + 0.011473116, + 0.009766157, + 0.009526107, + 0.004106893, + 0.0023277288, + 0.0073144566, + -0.020820748, + 2.9415585E-4, + 0.0050021214, + -0.0010447779, + -0.005344959, + 0.011916471, + -0.023538627, + -0.0406637, + -0.014675588, + -0.010519977, + 0.006874234, + 0.005769779, + 0.01670462, + -0.005929148, + 0.0052349055, + 0.006082283, + -0.026797688, + 0.007500884, + 0.0058928803, + 0.005706619, + 0.0010588786, + -0.009726246, + -0.008435018, + 0.024174497, + 0.0017962857, + 0.006397747, + -0.0011016978, + 0.022703396, + -3.7608005E-4, + 0.0054457798, + 9.365988E-4, + -0.036013715, + 0.013378507, + -0.026151123, + -0.0114419805, + -0.008556532, + -0.027311813, + 0.0070896214, + -0.0042632786, + 0.036421727, + 0.007105389, + 0.021803312, + 0.021100156, + -0.011779218, + -0.016999356, + -0.03405506, + -0.028993653, + -0.011070312, + -0.0039642877, + 0.0077193477, + -0.0035921165, + -0.014338443, + 0.0043748333, + -0.001495051, + -0.014368936, + -6.713652E-4, + -0.01500233, + -0.015206842, + 0.0016623329, + -0.009309062, + -0.0042296625, + -0.0020128132, + 0.005650731, + 0.0029410834, + -0.009309898, + -0.009739992, + 0.0021850993, + 0.00571285, + -0.0013147644, + 0.01950907, + 0.019116497, + 0.022506343, + 0.015334743, + 0.029340327, + 0.00475295, + -0.01702883, + -0.009028938, + 0.01251854, + 0.007541651, + -0.017463192, + -0.026185846, + 9.2944916E-4, + 0.02407328, + 0.0055019143, + -0.0035949626, + -0.010536381, + 0.012641565, + 0.02444583, + -0.0055456865, + 0.021086756, + -0.011057768, + 0.014052277, + -0.012214712, + 0.035278242, + 0.008714911, + -0.037294973, + 0.024469493, + -0.008882518, + 0.03503719, + -0.034222487, + -0.017611556, + -0.0136238765, + 0.005923024, + 0.01377027, + -0.04223985, + -0.01751158, + 0.008478254, + 0.02189645, + -0.009738684, + 0.0059344694, + 0.0069371862, + 0.019632641, + 0.00904676, + -0.024076102, + 0.016441762, + 0.015059036, + -0.0040701623, + -0.0038921414, + 0.0049701463, + -0.00643829, + -0.006379669, + 0.019041186, + -0.0292697, + -0.0040776925, + 0.029712219, + -0.0024636588, + -0.0015939043, + -0.010034464, + -0.011012945, + -0.0019429524, + 0.006058476, + -0.0056223436, + -0.021037051, + -0.009263122, + 0.017107703, + -0.024757668, + 0.012503863, + 0.013233698, + 0.005114799, + -0.006865956, + -0.012158654, + 0.004855205, + 0.004756959, + 0.02650619, + 0.008863093, + 0.007975691, + -0.014106788, + -0.016345942, + 0.013793696, + 0.0049253865, + -0.016281884, + -0.0046361564, + 0.00952345, + -0.03201162, + 0.012758529, + -0.0050961114, + 0.04668786, + 0.012216232, + 0.014588179, + -0.0044627935, + -0.00501239, + 0.01353226, + 3.7152675E-4, + 0.0014158927, + 0.02190863, + -0.00183054, + 0.01693899, + 0.04203047, + 0.0048474083, + -0.0120198205, + -0.024861807, + 0.020837598, + -0.024888093, + 0.014569077, + -0.0013705638, + 0.006292295, + 0.0035095275, + 0.019210279, + -0.014251287, + 0.010466298, + -0.002322102, + 0.0035029657, + 0.01856844, + -0.009768048, + -0.004363053, + 0.01762096, + -0.016888188, + -0.003054663, + -0.015573129, + 0.028282639, + -0.029400963, + -0.0041831434, + 0.00803545, + 0.025007572, + -0.0021255082, + -0.018991424, + 0.019187279, + 0.022871584, + -4.9738705E-5, + 0.0047135577, + 0.009462988, + -0.019177992, + 0.021926224, + -0.0010235287, + -0.006042117, + -0.0066838884, + -0.004692855, + -0.006806823, + 0.0058309482, + -0.01883203, + 0.04227486, + -0.0057526664, + 0.009618869, + 0.0062198215, + -0.020788308, + 6.1955815E-4, + -0.011438235, + -0.012258124, + -0.0015846483, + -0.0065119327, + -0.008685163, + 0.003396463, + -0.021172035, + 0.01615912, + 0.009458977, + 0.02950318, + 0.00748356, + 0.0076449905, + -0.016270854, + 0.016304446, + -0.02590644, + -0.011627741, + -0.003875176, + 0.009931678, + 0.005698473, + -0.017739048, + -0.010535572, + 0.0043265535, + -0.013262053, + -0.0047378712, + 0.014617188, + 0.025498722, + 0.027995877, + 0.006316135, + 0.005898976, + 0.020269465, + 0.015917728, + -0.027352538, + 0.0074037146, + -0.0034513404, + -0.007967042, + 0.0066240416, + -0.011495803, + 0.012287258, + -0.02459221, + -0.02120258, + -0.007774053, + -0.009867352, + -0.025277995, + 0.0043071723, + 0.010656632, + 0.020745222, + 0.02785156, + -0.018405728, + -0.0010040858, + -0.013491085, + 3.475643E-4, + -0.03628513, + -0.0036541736, + 0.0049019414, + 0.025691329, + -0.004821405, + 0.005218345, + 0.0012325447, + -0.009810456, + -0.00259631, + 0.015312501, + 0.0013067774, + 0.017738674, + 0.015487528, + -0.0023239574, + -0.011959628, + -0.011272751, + 0.009992463, + -0.0032537384, + -0.0040315813, + 0.0015231412, + 0.01712018, + -0.00942923, + 0.012370061, + -0.007758902, + 0.0041163033, + 0.008558056, + -0.031018458, + 0.032667942, + -0.0016891541, + -0.004595416, + 0.008019484, + 0.03877356, + 0.007081473, + 0.025110036, + 0.011010107, + 0.024946487, + 0.0065489206, + -0.003975718, + -0.025633827, + 0.0035984227, + -0.0015179975, + 0.0070453812, + -0.01873429, + 0.0033785831, + 4.247405E-4, + 0.0067565073, + 0.01634176, + 0.016089853, + 0.022927646, + 0.0040365327, + 0.015707932, + 0.012342752, + -0.006388856, + -0.017027184, + 0.025633728, + 0.015590603, + 0.022138366, + 0.0033356983, + -0.01629306, + 0.024159828, + -0.017769923, + -0.009969523, + -4.006819E-4, + -0.018934123, + 0.03781865, + -0.016051909, + -0.0049545537, + -0.006182946, + 0.005761771, + 0.006373146, + -0.0048499564, + 0.00577711, + 0.017905228, + -0.0030681775, + 0.016923338, + -4.521851E-4, + 0.016514612, + -0.009658058, + 0.013764961, + 0.0075980485, + -0.0034370124, + 0.00166511, + -0.011572511, + 0.010454257, + -0.010107787, + -0.017675323, + 0.00680443, + -0.0031520668, + -0.015214599, + -0.013688142, + 0.008626266, + -0.0043355916, + 0.01497717, + -0.019109167, + -0.009962368, + 0.014704985, + -0.02195917, + -0.015289066, + 0.0125498, + -0.006051161, + 0.0076037985, + 0.018458309, + -0.013466101, + -0.019294608, + -0.04799543, + -0.027079517, + 0.0077327527, + 0.009420103, + -0.0063242796, + 0.0027763904, + -0.0040905536, + 0.0045029917, + -0.015446873, + -0.029014202, + 0.011251991, + -0.0040762094, + -0.009254136, + -0.0021899478, + 0.0036026833, + -0.013341744, + 0.01281783, + -0.009696427, + -0.0019423277, + 0.013183409, + 0.015533154, + 0.011926173, + 0.002377899, + 0.024783995, + -0.006373048, + 0.011094225, + -0.0051733325, + 0.0095971655, + 0.008608095, + -0.020915158, + -0.011379746, + 0.003033984, + 0.016038615, + 0.017784068, + 0.018608587, + 0.007063092, + 7.397886E-5, + -0.0042109396, + -0.027488476, + 0.008302617, + -0.0017620735, + -0.025663752, + 0.0070528444, + -0.018466141, + -0.012106686, + 0.013351273, + -0.0049657784, + 0.0032665436, + -0.01187822, + -0.026739309, + 0.009173893, + -0.025281867, + -0.023345824, + 0.009717718, + 0.01765318, + -0.025118548, + -0.013571116, + 0.0059807315, + 0.0072421385, + 0.0037204858, + 0.01727043, + -0.009385385, + -0.0037232917, + 2.150869E-4, + 0.010621704, + 0.008851558, + 0.0041100383, + 0.006523195, + -0.0042686667, + 0.013737879, + 0.025512615, + -0.023500666, + 0.013540242, + 0.021568798, + -0.00418947, + -0.019680034, + -0.026494198, + -0.003345338, + 0.014429331, + -0.0064292243, + -0.022253351, + -0.016028598, + -0.0031640483, + 9.153712E-4, + 0.0018675177, + -0.005218162, + -0.0013178509, + 0.0038919272, + 0.008169174, + 0.012689263, + -0.012433462, + -0.0023753655, + 0.029248074, + -0.013976265, + -0.020141535, + -0.022427391, + 0.002891261, + -0.0420206, + 0.01943838, + 0.002782553, + 0.002589643, + -0.0061040246, + -0.016365139, + -0.0012746255, + 0.0015191138, + -0.010377599, + 0.0019590363, + -0.011711689, + 0.0038689238, + -0.02495363, + -0.008359735, + -0.01042971, + -0.014217733, + 9.977688E-4, + -0.01868897, + -0.0030242053, + 6.9745723E-4, + 0.013628057, + 0.014445848, + 0.0018919053, + 0.020445535, + 0.0158506, + -0.023955321, + 0.0044903886, + -0.038601026, + -0.005191915, + -9.5509563E-4, + -0.011869535, + 0.02063032, + -0.0018747294, + -0.0018496334, + 0.0010459262, + -0.014972413, + 0.011545051, + 0.018116595, + -0.014364692, + -0.023539372, + 0.0071053747, + -0.010460926, + 0.014342148, + 0.010819934, + -0.0019315499, + -0.03644662, + -0.0015471571, + 0.0062739565, + -0.0015607711, + -0.00134335, + 0.014029659, + 0.011923069, + 0.011908231, + -0.022745568, + 0.028447105, + -0.0046142875, + -0.027629562, + -0.009625145, + -0.005000137, + 0.010727919, + -0.0063692294, + 0.023470325, + 0.003190494, + -0.0044999844, + 0.0029242302, + 0.01926518, + -0.012375966, + -0.012323554, + 0.007455327, + 0.015359619, + -0.004445155, + 0.0069528786, + 4.470173E-4, + -0.034234256, + 0.010843208, + -0.012047005, + -0.008435165, + 0.016442727, + -0.018688159, + 0.002183553, + -0.006650307, + -0.010616661, + -0.018042276, + -0.015812483, + 0.008283432, + 0.011693213, + 0.021363545, + 0.025885325, + -7.2048664E-5, + 6.0351985E-4, + 0.02080272, + -0.021887861, + 0.0038798724, + -0.010229753, + -0.0037918284, + -0.014927275, + -0.01108335, + -0.0010834518, + 0.01971447, + 0.006530521, + 0.017297028, + -0.022367366, + 0.016787969, + 0.0156226605, + 0.0018293594, + -0.018678386, + -0.012786963, + 0.019084852, + 0.0030548763, + 0.0021266097, + -0.02246966, + -0.01661955, + 0.021823369, + -0.018941242, + -0.007563928, + -0.0084460825, + 0.003693592, + 0.022314977, + 0.0019582813, + -0.009935221, + -0.0020706374, + -0.0022304424, + -0.0065839714, + 0.049769405, + -0.0018339662, + -6.332908E-5, + -0.004191429, + -0.008497161, + -0.007385671, + -0.03693789, + 0.007279735, + 0.007988903, + 0.0019511023, + -0.0068541733, + -0.008863013, + 0.005792525, + -0.016423281, + 0.022887537, + -0.01635374, + 0.0150981825, + 3.8655504E-4, + 0.0055085747, + 0.011340816, + -0.01574744, + 0.008127086, + 0.026963374, + 0.0061394884, + 0.003597461, + -0.025621679, + 0.012335183, + 0.009309211, + -0.020249378, + -0.016356114, + -0.027515681, + 0.0073890267, + 0.017349705, + -7.7875936E-4, + -0.019528203, + -0.025498848, + 0.0027599528, + 0.0101822745, + -0.017954668, + -0.0030371486, + 0.012278021, + 0.008895114, + -0.012491678, + -0.023809813, + 0.008146524, + -0.0137102045, + 0.009255469, + -0.032848906, + 0.022337139, + -0.013995847, + 0.014047401, + -0.01967855, + 0.019113204, + -0.015511129, + 0.0114621185, + 0.010112402, + 0.011998737, + -0.008004528, + -0.0073645734, + -0.029582646, + 0.020040993, + -0.01715491, + 0.00703369, + -0.022699196, + 0.017275885, + 0.026810568, + -0.018185947, + 0.036167014, + 0.026187293, + 0.026785547, + -0.01779336, + 0.028002225, + 0.011418938, + 0.02290467, + -0.0034706434, + 0.0031933566, + -0.017885782, + 0.005251927, + 0.039349277, + 0.011633602, + 0.016446939, + -0.0022891848, + -0.039541334, + 0.012080964, + -0.029836139, + -0.021287432, + 0.006898807, + -0.010239606, + -0.031839754, + -0.0025945967, + -0.0023020764, + -0.024300179, + -0.015587267, + 0.0029532905, + 0.025329204, + 0.016181255, + 0.015160307, + 0.025689408, + 0.004303357, + 0.006813961, + 8.1282586E-4, + 0.0018058048, + 0.008560834, + 0.0145861525, + 0.019661302, + -0.017721703, + 0.0072184443, + 0.007838852, + -0.0077474415, + 0.010478785, + 0.0065367264, + -0.0053263693, + 0.0084685385, + 0.009774914, + -0.01591202, + -0.034606166, + 8.8799594E-4, + 0.0024251973, + -0.0062435945, + 0.023459377, + -0.022467574, + -0.027462458, + -0.01036567, + 0.0072168317, + -0.012229924, + 0.0085420655, + -0.005595651, + 0.014112188, + 0.037047, + 0.026794462, + 0.0023530098, + -0.01756119, + 0.024173852, + -0.0064567043, + 0.01759404, + 0.018350128, + 0.019013159, + 0.011780603, + -0.01569747, + 0.029082103, + -0.011594538, + -0.011932309, + 0.03386225, + -0.007877729, + -0.017077696, + 0.009703361, + 0.016394865, + -0.012769183, + 0.011593202, + 0.0098450985, + -0.004732655, + -6.6047336E-4, + 0.0013633518, + 0.02051617, + -0.009614772, + 0.017102076, + 0.018676182, + -0.012048626, + 0.012121341, + -0.02125087, + -0.0059517664, + 0.014912736, + -0.0056904615, + -0.024443645, + 0.013765778, + 9.741594E-5, + -0.020163443, + -0.013036427, + -1.8998605E-4, + -0.017485578, + -0.004555999, + -0.014632255, + -0.0029502555, + 0.02342627, + 0.0032198704, + -0.0103426585, + -0.016474156, + 0.0071296263, + 0.045807194, + 0.013979344, + 0.0042389547, + -0.01646621, + -0.0049972828, + 0.01227452, + 0.016619097, + -0.0020048332, + -0.0040428354, + 0.012097896, + -0.0053763357, + -0.019070664, + 0.0036569382, + 0.03034732, + 1.0541155E-4, + 0.021847492, + 0.030129477, + -0.018438134, + -0.02118169, + -0.008075836, + -0.030620879, + 0.0043611396, + -0.009167774, + -0.012020436, + -0.03124376, + -0.014169354, + 0.03905295, + -0.0059521864, + 0.019413682, + 0.016112117, + -0.004988112, + -0.002323826, + -0.0072673857, + -0.008348342, + 0.018293472, + -0.016751692, + 0.0023918531, + -0.004581973, + -0.015576767, + -0.0036019941, + -0.009152817, + -0.011622621, + 0.005406347, + 0.007695183, + -0.006198677, + 0.01378619, + 0.0030622021, + -0.02764343, + 3.1960964E-5, + -0.0033856835, + -0.005594355, + 0.010700481, + -0.024465358, + 0.005404359, + -2.6229155E-4, + 0.0023230026, + -0.0018410797, + 0.014339145, + 0.014623257, + 0.012959027, + 0.0047385455, + -0.004469256, + -0.0032477817, + -0.0058372803, + 0.020167047, + -0.010342945, + -0.029346028, + 0.01937472, + 0.03439964, + -0.0016059116, + -5.8104575E-4, + 7.848334E-4, + -0.024423312, + 0.0042621032, + 0.0025887026, + 0.0059088566, + 0.0031343189, + -0.032026615, + 0.0042433925, + -0.008893046, + -0.013613161, + -0.0056105456, + -0.009826311, + 0.01561436, + -0.023000984, + -0.024583468, + 0.02650856, + 0.01647352, + -0.016273245, + 0.020724466, + -0.02577218, + -0.010119418, + 0.009864294, + -0.023597999, + 0.004249713, + 0.029198429, + -0.009135105, + 0.011463008, + -4.631322E-4, + -0.011624445, + 0.01944034, + 6.16457E-4, + -0.021820173, + 0.0013869661, + -0.015471172, + -0.0121182725, + -0.014052378, + 0.033093683, + 0.022357857, + 0.010996748, + -0.017944114, + -0.0048504905, + -0.010032616, + 0.024641357, + 0.011538022, + -0.023869462, + 0.0060982844, + -4.928526E-4, + 0.053560637, + -0.009565396, + 0.012020972, + 0.030920018, + -0.021412583, + -0.003641701, + 0.02637073, + -0.008824579, + 0.005894536, + -0.0033810935, + 0.010321055, + 0.016203139, + -0.0331699, + -0.0014179007, + -0.021809189, + -0.0021148724, + 0.0037857122, + 0.00381217, + 0.019971736, + 0.024031451, + -0.02191819, + 0.0032003098, + 0.00813138, + 0.0020746905, + 8.98899E-4, + 0.012556026, + 0.014794166, + -0.014409625, + -0.033301674, + -0.017819649, + 0.015272038, + -0.0062590865, + 0.0023740106, + -0.022320261, + -0.0048732013, + -0.0034765683, + 0.013479155, + 0.0080229435, + 0.028557185, + -0.012960145, + 0.0011698742, + 0.017321052, + -0.03444988, + -0.011901191, + -0.013216158, + 0.01726719, + -0.030795678, + -0.013620403, + 0.01132361, + 0.0061115935, + 0.014968428, + 0.007990811, + 0.006603979, + -0.013344477, + 0.0029342999, + 0.0120738195, + -0.0107673695, + 0.021141838, + 0.035526108, + 0.019088546, + -0.013231641, + 0.0098754205, + 0.0062161344, + -0.018173408, + 0.0027971123, + -0.016622638, + -3.144266E-4, + -0.010652387, + -0.011616918, + -0.003954649, + 0.022556841, + 0.009949072, + -0.018965688, + 0.022082658, + 0.009948322, + 0.007498533, + 0.014692716, + 0.019154001, + 0.024738746, + 0.0020118232, + -0.0036700848, + -0.0035560236, + -0.003379729, + 0.0136255855, + -0.008627602, + -0.004453869, + -0.009193728, + 0.0052324645, + -5.807032E-4, + 0.022789447, + 0.03511171, + 0.020411275, + -0.0029696128, + -6.1589835E-4, + -0.016075218, + -0.011893179, + -0.028730083, + 0.012695858, + -0.01922775, + 0.016097195, + 0.011776139, + -0.022457402, + -0.012807345, + 0.005841249, + 0.0015463, + -0.008752052, + -0.011891608, + 0.022339847, + -0.022668704, + 0.0072159064, + -0.0018040653, + -0.009309833, + 0.014231259, + 0.034843337, + 0.013728561, + 0.0060895043, + -0.008374645, + 0.0031226417, + -0.0033165435, + 0.0076619852, + 0.011681392, + 0.0016279628, + -0.0021936966, + 0.02222644, + 2.5706796E-4, + 0.003993902, + 0.0010525059, + -0.026242554, + 0.012176554, + 0.026468426, + 0.035196025, + -0.0073002824, + -0.00914429, + -0.012915068, + -0.012465232, + 0.01032115, + -0.038106907, + -0.0027503246, + 0.020378223, + -0.0053903777, + 0.0053691627, + -0.022110207, + -0.0074468767, + 0.0036598234, + -4.4155042E-4, + -0.016473608, + -0.011999229, + -0.013464672, + 0.010015146, + 0.02185444, + 0.015322511, + 0.010071336, + 0.0026753156, + 0.008590214, + 2.6888427E-4, + -0.004253937, + 0.0038674371, + 0.011032967, + 5.023551E-4, + -4.97008E-4, + 0.011302526, + 0.026167067, + 0.025434688, + 0.004079683, + 0.011441433, + -0.011678189, + 0.01625569, + 0.0038688683, + 0.024046533, + 0.01381747, + 0.018840907, + 0.00834478, + -0.012375662, + 0.004310949, + 0.02401426, + -0.008994868, + 0.007112608, + 0.015029008, + -0.002984308, + 0.01779246, + -0.01671841, + 0.030448161, + 0.0061540175, + -0.013959956, + 0.0045678266, + -0.019446203, + -0.010515873, + 0.009388425, + 0.011293368, + 0.026684556, + 5.5723876E-4, + 0.011955916, + 0.0082694115, + -0.007454531, + -0.016484272, + 0.03018438, + -0.023362396, + -2.9524192E-4, + -0.025294974, + -3.215519E-4, + -0.02679938, + 0.012456525, + 0.028003879, + -0.005773322, + 0.0020560774, + 0.0027873258, + -4.0152008E-4, + -0.0025580977, + 0.01174242, + -0.009711382, + 0.012016449, + -0.030308919, + 0.018169662, + -0.016532872, + 0.011535001, + -0.0046093995, + -0.004467283, + 0.026192715, + -0.0029786848, + -0.019389698, + 0.009146242, + -0.021132145, + -0.014304087, + 0.015021798, + 0.021702932, + 0.008996867, + 0.014386874, + -0.007025599, + -0.0014369114, + 0.009327115, + -0.018949341, + 0.021708198, + -0.007240674, + 0.0041271676, + 0.018061278, + 0.01504907, + -0.0073355576, + -0.018000023, + 0.011847597, + -0.026305618, + -0.008508049, + 0.006862945, + 0.010858657, + 0.0035522666, + 0.022533813, + -0.009276298, + 0.010068, + 0.030455936, + -0.004332837, + 0.031206049, + 0.011817881, + 0.008627081, + 0.020460853, + -0.0070206467, + -0.001884841, + -0.0058607403, + -0.003456895, + -0.021124113, + 0.015540046, + -0.0036428117, + -0.008371468, + -0.0028509118, + -0.018559733, + 0.01897132, + 0.002154926, + 0.0058223316, + -0.01980681, + 0.0065983394, + 0.023235977, + -0.013393343, + 0.018159987, + -0.02845611, + 0.011531628, + -0.017673124, + 0.013365598, + 0.008778336, + 0.010631132, + -0.00792645, + -0.012132111, + -0.00923211, + 0.016055282, + -0.018551454, + 0.0026285716, + -0.0010568532, + -0.0033657628, + -0.03355392, + -0.009495746, + -0.004464166, + 0.0043741274, + 0.009134911, + -0.024089655, + 0.012529171, + -0.009171806, + 0.004010813, + -0.0039743795, + -0.01519611, + -0.017866487, + 0.018860148, + -3.187718E-4, + 3.838475E-4, + 9.292509E-4, + -0.004177385, + -0.008357092, + 3.303161E-4, + -0.008471066, + 0.017367616, + -2.4977862E-4, + 0.003996458, + 0.01653165, + -0.031641494, + -0.017720565, + -0.005390532, + -0.020768229, + 0.010994799, + 0.018829541, + -0.017796205, + -0.010078485, + -0.00470432, + 0.0055258223, + 0.0034052928, + 0.010975333, + 0.005732284, + -0.011383327, + -0.011020523, + -0.018524218, + 0.012537403, + 0.004157393, + -0.022427728, + -0.004558729, + -6.9126213E-4, + -0.001481517, + 0.009638045, + -0.016178053, + -0.026035056, + -0.008000553, + -0.0016192839, + 0.025149165, + 0.016002955, + 0.008779235, + -0.015188026, + 0.009775739, + -0.007166651, + 0.004236805, + -0.002505415, + -0.013400586, + 0.009303107, + -0.019177213, + 0.0035876022, + 0.024436852, + -0.022557996, + 0.013639887, + 0.011915504, + -0.01255016, + 0.011017156, + -0.008826999, + 0.016993584, + 0.0030903446, + -0.014501317, + -0.0053321263, + 0.0056600245, + -0.010547024, + 0.019409923, + 0.006024423, + -0.014691487, + 0.0034389135, + 0.02184095, + 0.012027743, + -0.026809243, + 0.0136783095, + -0.005999282, + 0.0123618925, + -0.012836087, + 0.021030944, + 0.0012161946, + -0.01140931, + -0.016027145, + -0.0091223465, + -0.006980133, + -0.00817647, + 0.008926246, + -0.016709516, + 0.0044058035, + -0.022787323, + 0.010927401, + -5.1849906E-4, + -0.024317753, + 0.018916782, + 0.0052232477, + -0.0061091715, + 4.4642366E-4, + 0.010343824, + -0.0016645974, + 0.014225013, + 0.003164178, + -0.007912368, + 0.00459895, + -0.0017024183, + -0.028501904, + 0.0057188184, + -0.0106109055, + -0.010368295, + -0.037080616, + -0.0191904, + -0.01427543, + -0.0012992442, + -0.001740838, + -0.011934229, + 0.0066388794, + 0.020802217, + 0.024733031, + -0.021432213, + 0.0148808975, + -0.04940601, + 0.008320802, + -0.0037978839, + 0.018672112, + -0.02865158, + 0.023233183, + 0.01719744, + 0.0042280992, + 0.026752038, + 0.023414273, + -0.0076617273, + -0.008503738, + 0.0211696, + -0.032092232, + 0.024540735, + 0.014967807, + -0.012596469, + -0.026493581, + -7.3185685E-4, + -0.030275064, + 0.0065162554, + -0.0010294259, + 0.022785604, + -0.026226593, + -2.2212423E-4, + 0.014527103, + -0.0032696696, + 0.005100476, + 0.01911772, + -0.016553223, + -0.0021503777, + -0.018252691, + 0.016865686, + 2.3515162E-5, + 0.019706523, + 0.033906836, + -0.017125523, + -0.032576997, + 0.020655954, + 0.0017399791, + -0.026105551, + -0.014052623, + -0.023344044, + -0.020553611, + -0.009027616, + 0.023923347, + 0.0051155766, + -0.004847172, + 0.023324864, + 0.03200436, + -0.02293452, + 0.013565193, + 0.01778456, + -7.562382E-4, + -0.013479318, + -0.002308759, + -0.0052683726, + 0.014204208, + 0.0036228593, + -0.03780197, + 0.018266212, + 0.0027421555, + -0.013443889, + -0.018198028, + 0.028844034, + -0.0060609956, + 0.01038603, + -0.0050021587, + -0.005494945, + 0.013247887, + -0.019514803, + -2.7899747E-4, + -0.0029660235, + 0.010734427, + -0.010927879, + -0.008736916, + -0.013138909, + 0.0050187535, + 0.017902493, + -0.0026872281, + -0.0039078915, + 0.003738082, + 0.016852714, + 0.013382852, + 0.0051242197, + -0.011666196, + -0.028914068, + -0.022674004, + 0.03167468, + -0.015123575, + 0.014900759, + -4.623973E-4, + -0.005285119, + -0.0017547604, + -0.023447808, + 0.0018049976, + -0.011810545, + 2.8913722E-5, + 0.015370921, + -0.003925941, + -0.031382702, + -1.3381726E-5, + 0.02880543, + 0.01812379, + 0.03409405, + 0.0030185757, + 0.004488528, + -0.0016845845, + -0.01801861, + -0.018082429, + -0.018697804, + -0.016452897, + 3.9719304E-4, + 0.013248343, + -0.02969699, + 0.005837099, + 0.011821962, + 0.017552147, + -0.0038685312, + -0.0078245895, + 0.03165557, + -0.004026759, + -6.0034543E-4, + 0.008896312, + 0.0051132767, + 0.0018877249, + -0.0014017569, + -0.01063194, + 9.1447704E-4, + -0.034023643, + -0.005995297, + -0.011638874, + 0.022508021, + -7.64669E-4, + 2.1576956E-4, + 0.0148557145, + -0.02716185, + -0.038062803, + -0.001063253, + -0.0012798279, + -0.0036496771, + -0.0035304388, + -0.003057037, + 0.015785506, + 0.02032061, + -0.023830693, + 0.0054400326, + -0.01719622, + -0.035306145, + -0.01834082, + -0.018393291, + 0.010370529, + 0.0055861273, + 0.030048173, + 0.0032515551, + 0.019155614, + -0.0030095777, + -0.030432038, + 0.015808234, + 0.013892963, + -0.016340619, + 0.001586719, + 0.01157377, + -0.014993177, + 0.010827637, + -0.010579074, + 0.007328303, + 0.013314475, + -3.745116E-5, + 0.016670592, + 0.023720648, + 0.01269714, + 0.0034011262, + -0.04459284, + -0.03717649, + -0.013398384, + 8.611718E-4, + -0.002594438, + 0.013195678, + -0.008232066, + -0.01849972, + -0.023976322, + 0.01511548, + 7.7709457E-4, + -0.0011468936, + 1.696061E-4, + 0.0062434454, + -0.013909797, + 0.0044425516, + -0.005976085, + -3.2590842E-4, + 4.975086E-4, + -0.01766546, + 0.0045197275, + -0.010565871, + -0.013903058, + -0.008377807, + -0.007539605, + -0.008818356, + 0.0063856086, + 0.003987073, + 2.5817266E-4, + -0.0045539523, + 0.006680835, + 5.253267E-4, + 0.012878916, + 0.027675653, + -0.020001521, + -8.60219E-4, + 0.003590974, + -4.571474E-4, + -0.006612212, + -0.016123883, + 0.036743663, + 0.01100709, + 0.012499935, + -0.006490686, + 0.010425195, + -4.568962E-4, + -0.034211725, + -0.020062845, + 0.01558036, + -0.028756805, + -0.0038573602, + 0.007496705, + 0.0035211348, + -0.01186154, + 0.010088276, + -3.6562E-4, + 0.0225805, + -0.0010350143, + -0.026276559, + 0.0069318116, + 0.008586991, + 0.034739196, + 0.01298405, + 0.028697137, + 0.033207662, + 0.015704144, + -0.01820526, + 0.0014773252, + -0.014151111, + 0.011888954, + -0.0064172666, + -0.0074056424, + 0.0010154475, + -0.012362594, + 0.03203869, + -0.0017829614, + 0.021810498, + 0.004637103, + 0.0146808345, + -0.02738182, + -0.015762348, + 0.015334947, + -0.011868355, + 0.04767475, + -0.022035027, + 0.008816482, + -8.023095E-5, + 0.012649742, + 0.008518001, + -0.009678822, + -0.026566705, + -0.014561359, + 0.016767366, + -0.016366724, + -0.0080852965, + -0.016225537, + -0.018564206, + 0.021625707, + 0.009334408, + 0.018563176, + -0.0031127692, + 0.02844124, + -0.014021791, + -0.018279808, + 0.006610936, + -0.009017213, + -0.013613004, + -0.0016284168, + -0.005018359, + -0.015025692, + -6.1045104E-4, + 0.018320449, + 0.0055330424, + -0.006224393, + 0.0041361055, + -0.025954738, + -0.0028303813, + -0.033451207, + 0.016474424, + -6.019209E-4, + 0.010838852, + 0.00615915, + 0.015482031, + -0.019128766, + -0.0057847784, + 0.008556355, + -0.009589106, + -0.0050210324, + 0.021206802, + 0.02478625, + 0.014455085, + -0.007212098, + -0.019874807, + -0.027934087, + 0.0017841619, + 0.0054964293, + -0.010239256, + -0.0032111711, + -0.0056349677, + 0.020911036, + 0.008127212, + 0.012089419, + -0.032494444, + -0.004105162, + 0.001961633, + -0.0048750644, + 0.0022623257, + -0.028329374, + -9.2717464E-4, + 0.013530292, + 0.010366447, + -0.0061062775, + -0.017742816, + 0.013931392, + 0.003905089, + -0.007969926, + 0.0015518368, + -0.0018497866, + 0.008695264, + 0.018725354, + -0.016847806, + -0.03188243, + 3.6885697E-4, + -1.2725616E-4, + 0.0055529596, + -0.01245121, + -0.007812817, + 0.0047335224, + 0.024887387, + 0.008069718, + 0.022457518, + -0.0065169744, + -0.016302314, + -0.03152024, + -0.011145432, + 0.008968253, + 0.017632386, + -0.013685844, + -0.018878026, + 0.008076374, + -0.009032536, + -0.00730872, + 0.012171057, + 0.0056501688, + 0.015910907, + -0.0581381, + 0.019294215, + -0.018541489, + 0.007957019, + -0.011197641, + -0.0024227165, + -0.0055467407, + -0.0049549784, + 4.993974E-4, + -0.017271549, + -0.0046568397, + 5.234636E-4, + 0.00534369, + -0.014233607, + -1.3836569E-4, + 0.0220465, + -0.009752728, + -0.025661964, + -0.015648065, + -0.015750179, + 0.024437938, + 0.013409638, + -0.0050620297, + -0.0047214734, + -0.032336626, + 0.01659932, + -0.006494021, + -0.0042289053, + -0.004826236, + -0.018101467, + 0.01215523, + 0.010998038, + 3.4719528E-4, + -0.037012592, + -0.002721326, + -0.03902275, + 0.019804372, + -0.033390373, + -0.009278352, + 0.025652995, + 0.0044333586, + 0.0029354226, + 0.0012050017, + -0.00785792, + -3.1883313E-4, + 0.018491372, + -0.0013895805, + -0.020307954, + -0.011901015, + -0.024527729, + -0.01577138, + -0.013369598, + -0.0015239383, + 3.672075E-4, + -0.011949437, + 0.042722106, + 0.003343495, + 0.011503656, + 0.025756804, + -0.042038817, + -0.0031690872, + -0.002699634, + -0.014809203, + 0.016776938, + -0.030260632, + -0.008057604, + 0.028589863, + -0.015745033, + 1.291316E-4, + -0.0032306386, + -5.8575104E-5, + 0.0020347165, + 0.0041874903, + -0.023958258, + -0.023960685, + -0.016363855, + -0.013644313, + -0.0074553294, + 0.024018874, + 0.013651665, + 6.2548683E-4, + -0.022344211, + 0.008782087, + -0.037872225, + -0.0019245218, + 0.010556606, + -0.008410514, + -0.023255521, + 0.017626287, + -0.00684587, + 0.007526071, + -0.008339378, + 0.0129718175, + -0.01737035, + 0.029716678, + -0.0036676582, + -0.02591239, + 0.0062878784, + 0.014495818, + 0.0015720701, + -0.0017573058, + -0.02528729, + -0.0032605529, + -0.024356268, + -0.034363545, + 0.0059407325, + -8.4348954E-4, + -0.041888956, + 0.023963554, + 0.017801318, + 0.011578827, + -0.007400402, + 0.025288824, + 0.017495582, + 0.008337042, + -0.0046932134, + 0.0062565985, + 0.023242524, + 0.008847148, + 0.0012224824, + 0.016411869, + 0.02003693, + -4.5114965E-4, + -0.0043437057, + -0.027960885, + 0.041454747, + -0.0323458, + -0.0027895009, + -0.01129509, + -0.00805984, + 0.024539866, + 0.01123332, + -0.033514902, + -0.035366725, + -6.526725E-4, + 0.0012176298, + 0.009253031, + 0.004685974, + 0.020961192, + 0.01728253, + -0.0028274283, + -0.01171939, + 0.02838404, + 0.026859647, + 0.008731304, + -0.0010243444, + -0.0056533404, + -0.0112048555, + 0.0043202452, + 0.022189999, + 0.009208198, + -0.0155313015, + -0.0044894456, + -0.0045104837, + -0.0046196715, + -0.016155547, + 0.010042101, + -0.012289429, + -0.034086946, + 0.001874478, + -0.017838372, + -0.015697068, + 0.0056149536, + 0.015425993, + 0.01358931, + 0.004827898, + 0.032566193, + -0.02817669, + 0.001675454, + 3.7317592E-4, + -0.019930208, + -0.0065203076, + 0.0028960924, + -0.0065593584, + 0.0022671523, + 0.009052068, + -0.0062222984, + -0.019530294, + 0.009080864, + 0.019846262, + -0.002185403, + -0.01504773, + -0.0040113004, + 0.015856925, + 0.0074911425, + 0.0018184778, + 0.019804183, + -0.034926448, + 0.011768821, + -0.0031139133, + 0.006723676, + -0.0036411977, + 0.009556403, + 0.01802467, + -0.011301277, + -0.009258371, + 0.01792479, + -0.008068119, + -1.9578922E-4, + 0.0075254063, + 0.016154302, + 0.023232073, + -4.288203E-4, + 0.021708285, + 0.0012391866, + -0.021374976, + 0.025276395, + 0.016935576, + -0.030655025, + 0.0010222186, + 0.010748841, + -0.0047611534, + -0.012695372, + 0.0016934451, + -0.0035663764, + 0.008060659, + -0.02080666, + -8.0119574E-4, + -0.01710745, + 0.014689851, + -0.0010602191, + 0.005288632, + 0.020261087, + -0.00831481, + 0.0041363784, + -0.018878918, + 0.009520609, + -0.020560142, + -0.002057307, + -0.021747565, + -0.005769438, + -0.020109782, + -0.017125588, + -0.007421169, + -0.026421012, + -0.023702757, + 0.0070829364, + -0.004466785, + -0.0072288583, + -0.0120569095, + 0.011415346, + 0.013018415, + -0.010793587, + 0.0076323873, + 0.004592706, + 0.030566512, + -0.02305403, + -0.01748874, + -0.007075824, + 0.011231491, + 0.023930708, + 0.0385194, + 0.018183686, + -0.012052789, + 0.0030121682, + -0.009107409, + -0.01884144, + 0.003541664, + 0.0031478344, + 0.0042891717, + -0.011515801, + 0.009739172, + -0.030150222, + 0.01589077, + -0.018010681, + -0.008414548, + 0.04036111, + 0.00401228, + -0.0135791525, + 2.9238506E-4, + 0.023459185, + -0.016769778, + 0.017023517, + 0.02569588, + -0.007385167, + -0.011691888, + 0.013053916, + 0.028390523, + -0.009129551, + -0.027867265, + 0.008026978, + 0.004793349, + 0.0012339462, + -1.0236028E-4, + -0.007896172, + -0.012322746, + 0.023379529, + 0.03556097, + 0.021578837, + -0.003596171, + 0.007526487, + -0.019761449, + 0.011669104, + 0.02161887, + 0.0042831684, + 0.023546379, + -0.022895964, + 0.011620845, + -0.0060773487, + 0.006519931, + -0.025337663, + 0.029015351, + -0.028616391, + -0.006427211, + 0.0177527, + 0.020770468, + 0.0026695079, + -0.028875744, + -0.016111415, + -0.008076301, + 0.0018709291, + 0.0028068353, + 0.009717478, + 0.009646936, + 8.2028564E-4, + 0.023833668, + 0.021488369, + -0.01776597, + -0.017172538, + 0.0032989886, + -0.0039913054, + 0.020132283, + -0.0056494055, + -0.014155793, + 0.014095598, + 0.013508247, + 0.012949156, + -0.015420766, + -0.010422443, + 0.002295337, + 0.008168163, + -0.0010440989, + 0.00593871, + 0.018287564, + -0.007865403, + -0.0041316114, + -0.032163046, + -0.0072939075, + 0.00668464, + 0.03005582, + 0.014945922, + 0.035530258, + -0.008449684, + -0.014076265, + -0.0046679936, + 0.022598278, + -0.0053547695, + -0.0073968717, + 0.017454129, + 0.0151992785, + -0.0026314498, + -0.004664169, + -0.009562909, + -0.011341561, + 6.4297416E-4, + -0.011856758, + -0.008202062, + 0.020579342, + -0.0027015847, + 0.01579712, + -0.013667181, + -0.0011894658, + -0.010154382, + -0.0069672205, + 0.020546803, + 8.974026E-4, + 0.011351684, + 0.006178845, + 0.008568424, + 0.0032025313, + -0.0010665198, + -0.01406098, + -0.020817349, + 0.014584084, + -0.008408773, + 0.020960372, + -0.019667797, + 0.008901795, + -0.010519198, + 0.0141925905, + -0.015805878, + -0.012483151, + 0.014194873, + -0.019677725, + -0.009277425, + 0.0058948305, + -0.0024291126, + -0.030432753, + 0.019418791, + -0.022657959, + -0.0295495, + 0.010026563, + 0.019423248, + -0.009902061, + -0.0230221, + -0.017832696, + -0.008861275, + -0.0076911086, + 0.007277098, + 0.036146566, + 0.020009913, + -0.009105063, + -0.025063122, + -0.0051780054, + 0.024526896, + -0.0010256752, + 0.015560675, + 0.0060624573, + -0.013891994, + 0.029515661, + 0.0057099345, + -0.008579562, + 0.0023010892, + 0.008454783, + 1.32477E-4, + -0.010544146, + -0.0030527168, + -0.0143746575, + -0.025272002, + -0.03391919, + 0.030677214, + -0.012366779, + 0.019501356, + -0.0010114525, + 0.027657678, + -0.0040386384, + -0.0067753494, + 0.016540628, + -0.0075937384, + -0.019977381, + 0.014528716, + 0.022844085, + 0.008454172, + -0.006073502, + -0.021870272, + 0.0028801884, + -0.0014940858, + -0.012141635, + 0.021834424, + -2.664149E-4, + -0.023815114, + 0.0145496, + 0.0082137585, + 0.008553674, + -0.002696022, + 0.029674452, + 0.002900356, + -0.0061608236, + 0.003974458, + 0.00907446, + -0.013078258, + -0.02183856, + 0.0039736726, + -0.0027517437, + -0.0077306004, + 0.0029361048, + -0.012910549, + -0.032798477, + -0.004486329, + 0.03376133, + -0.017796537, + 0.0038139487, + 9.873902E-4, + -0.0027653626, + -0.01109118, + 6.616958E-4, + -0.006497363, + -0.029308867, + 0.027156675, + 0.009184355, + 0.01977412, + -0.0062518306, + -0.01941015, + -0.011942579, + 0.0049411175, + 0.009566775, + 0.0018227665, + 0.006393747, + 0.012432998, + 0.045180008, + 0.014801551, + -3.824445E-4, + 0.00921293, + -0.010515274, + 6.837893E-4, + 0.015766567, + -0.0071173185, + 0.0053387494, + -0.0024504135, + -0.0021538425, + 0.0033596524, + 0.02752413, + -0.012518909, + -0.010175418, + -0.011742939, + -0.030652873, + 0.02626158, + -0.01549678, + -0.0059559103, + 0.0014992844, + 0.010695879, + 0.020591749, + -0.016024139, + 0.0048043597, + -0.028333277 ], - "paletteEmbedding": [ - 0.008287494, 0.03785299, -0.030883377, 0.028228238, 0.020337237, - 0.075906426, -0.019479394, -0.052376527, -0.024117257, 0.06238809, - 0.014220503, -0.021003334, 0.0022311308, -0.0070073116, -0.036245618, - -0.038903017, -0.013218562, -0.032964252, 0.035736505, 0.044440933, - 0.0047307317, 0.062248778, -0.016037643, 0.006535617, 0.0038037277, - -0.0068564266, -0.050452486, -0.0152253015, 0.03209876, -0.016917007, - 0.03107526, 0.0063832556, -0.02932462, -0.01653379, 0.026274353, - -0.017712386, -0.0019565034, 0.029366389, -0.02277941, -0.017714908, - 0.042347357, -0.008785183, 0.02200562, -0.0035330185, -0.04641868, - 0.03083901, -0.03793502, 0.014549454, 0.028646955, 0.016330902, - 0.013085104, 0.057202917, -0.0038891614, -0.0262709, -0.012461172, - -0.027286706, 0.03784733, 0.011296054, 0.03680807, 0.023403743, - 0.032205764, -0.024669025, 0.009388318, 0.042845726, 0.0038960017, - 0.0074395766, 0.007329517, 0.05359826, 8.424638e-4, 0.042929836, - -0.03943626, -0.0043058256, -0.029630112, 0.01180947, -0.026503133, - -0.037574694, 0.006105041, 0.004347655, -0.03040949, -0.03258395, - -0.038466293, 0.0056888023, 0.046524543, 0.07022774, -0.052127942, - -0.060349207, 0.0018141329, -0.03078232, -0.009197807, -0.008006886, - 0.0072785537, -0.027405819, -0.032687232, 0.041139387, -0.031632185, - -0.0026993111, 0.032318093, -0.011910552, 0.027705768, 0.028935736, - 0.016063944, -0.030283367, 0.017425323, -0.007999874, 0.0076457704, - 1.756718e-4, -0.011675592, -0.04267176, -0.03220313, 0.007485509, - -0.052056108, 0.009824059, -0.06529394, 0.030470192, 0.03267126, - 0.053510096, 0.07808296, 0.023326637, -0.019222762, -0.008710115, - -0.06317, -0.06532978, 0.008332307, -0.022638047, 0.026291428, - 8.791567e-4, 0.038873423, -0.044887774, 0.02469567, 0.04532224, - -0.04584525, 0.0021293256, -0.020190092, -0.06750346, 0.0077122026, - 0.033178143, 0.01627043, -0.01461553, 0.021750722, -0.0647367, - 0.05119018, -0.0073331, 0.05262564, 0.018927438, 0.01900338, - 0.027611148, -0.038664326, -0.019828787, 0.013998862, -0.062283833, - 0.018300967, -0.009287029, 0.01023792, -0.001417597, -0.029685088, - 0.026008256, -0.010736426, -0.033570264, -0.005267136, -0.034937143, - -0.026930925, -0.017997522, -0.015623699, -0.016015144, -0.035568085, - -0.0017712528, -0.010785728, -0.06645512, -0.030572454, -0.0052201874, - 0.010644389, -0.0059987395, -0.025190858, 0.011540674, 0.031405907, - -0.033715785, 0.008787288, 0.00963991, 0.088364296, 0.035534542, - -0.008005077, 0.02304009, 0.012323379, 0.011931484, 0.008905434, - -0.01395491, -0.042398397, 0.019239495, 2.5580524e-4, -0.0034824589, - 0.01157354, -0.0017167372, -0.014845349, -0.032612305, -0.0018880113, - 0.0048496383, -0.012605269, -0.031923026, 0.0024301957, -0.019007158, - -0.043513197, -0.011492157, 0.027373584, -0.026341202, -0.045131765, - 0.015508162, -0.025409311, -0.017344303, -0.03594118, -0.00911912, - -0.022242803, 0.0033398455, 0.010924954, 0.036227733, -0.018033333, - 0.008714648, -0.012862599, -0.0013986778, -0.019595878, 0.03242066, - -0.04788635, -0.027351866, -0.037534248, -0.027329652, 0.03497449, - -0.040884335, -0.02628855, 0.03235543, -0.030487807, 0.05443457, - -0.04199052, -0.017000567, 0.01146618, 0.00776542, 0.018345272, - 0.048727572, -0.00700061, 0.03491037, 0.070983194, -0.015770523, - -0.03638453, 0.053023275, 0.031062642, -0.0019319565, 0.04139521, - 0.004907389, -0.018438838, 3.8725385e-4, -0.05760472, 0.020515589, - 0.013222473, 0.030428648, -0.0057815393, 0.033190824, -0.0187919, - -0.013609011, 0.0063751433, 0.030516734, 0.029988894, -0.008987156, - 0.0054374584, 0.042265896, -0.0051398934, 6.0333486e-4, 0.0122953, - -0.014122491, -0.0024269265, -0.015633864, 0.0063807024, 0.021122638, - -0.032534327, 0.028656352, -0.003460889, 0.0486014, 0.008304877, - -0.031805206, -0.040544845, 0.01902711, 0.018123139, -0.006944929, - 0.0025141644, -0.044711743, 0.002569408, -0.048710797, -0.0052624196, - 0.0070573045, 0.033915136, 0.010587473, -0.030057684, 0.0039181486, - -0.04267147, 0.021098508, 0.031985935, -0.00519488, -0.0136159165, - 0.019012615, -0.051233206, -0.027715502, -0.059874933, -0.08251286, - 0.038439296, 0.004913243, 0.03557776, 0.024286577, -0.019594137, - 0.022720668, 0.041712124, 0.022159928, 0.011950155, 0.023894487, - -0.023799466, 0.042815894, 0.009321525, -0.024258483, 0.020175165, - -0.003952474, 0.050904077, -0.019638145, -0.0066479365, -0.080447435, - 4.2298582e-4, 0.016745828, 0.06077095, -0.0057198503, 0.040782288, - -0.013920784, 0.027309421, 0.03234299, 0.010697712, 0.004562275, - 0.018544763, -0.011484078, 0.023077367, -0.062354743, 0.0057152226, - -0.007789254, -0.04164711, -0.051381446, -0.03469094, 1.0289359e-4, - 0.018251264, 0.059198827, -0.025002271, -0.0035429022, 0.022168506, - 0.013684935, 0.0137428045, -0.030469323, 0.01632862, 0.027061375, - 0.06857057, -0.021945437, 0.0021833926, -7.1958284e-4, -0.035552815, - -0.028013907, 0.025997963, -0.0020804682, -0.050544687, 0.0059034834, - 0.007185704, 0.02587373, 0.043412514, 0.007238885, -0.046923213, - 0.052289248, 0.036414523, -0.007921769, 0.02904234, 0.007103793, - -0.013083435, -0.0064990115, -0.013408679, 0.009644873, -0.008194644, - -0.004642877, -0.042127334, -0.028921468, 0.055952776, 0.028517883, - 0.0061757388, -0.04084798, -0.0060269125, 0.047981065, 0.039565206, - -0.028205337, -0.045819886, -7.0189635e-5, 0.042461965, -0.02018078, - -0.018472461, -0.012753119, 0.05244642, 0.018998658, 0.0013074521, - -0.041705187, 0.0070053726, -0.016998095, -0.035991147, 0.011074327, - 0.044253945, 0.012503343, -0.0015604921, 0.008602939, 0.020296114, - 0.03817213, 0.05153675, -0.010849152, -0.047941487, -0.03680176, - 0.02127348, -0.031945556, -0.019867405, -0.05222764, 0.04060383, - -0.0019323832, -0.040841814, 0.043787207, 0.045739047, 0.02840801, - 0.025128717, 0.024415297, -0.01522181, -0.043060407, -0.013843053, - -0.059061136, 0.0029228954, 0.018080514, -0.04752997, 0.021635232, - 0.014666297, 0.026379539, -0.0038956595, -0.065947, 0.01567777, - -0.007086978, -0.04443123, -0.013162354, 0.0025350326, -0.022667488, - 0.017327353, 0.047425613, -0.0052069067, -0.018920993, -0.012038043, - 0.0018766854, 0.027542679, 6.419889e-4, -0.021384286, -0.0069144326, - -0.025428347, -0.004252939, 0.003052556, -0.015489932, 0.018131258, - 5.91935e-5, 0.041257814, 0.009542933, 0.011568802, 0.03671118, - -0.041233797, 0.018579477, 0.01782649, 0.032901704, -0.023236047, - -0.010803373, -0.025380125, 0.020895632, 0.054702003, 0.04865385, - -0.012819313, 0.05555793, 0.020009192, -0.021887636, 0.0024296446, - -0.023152214, -0.019940618, -0.023016013, -0.037418358, 0.025774684, - -0.005387358, -0.0065545198, 0.011184259, -0.03358046, 0.023808356, - -0.0060327123, 0.057425093, -0.024963506, 0.021218881, -0.037709773, - -0.028746203, 0.045347106, -0.03384683, 0.003601722, 0.026757888, - 0.026183393, 0.061446186, -0.04049994, -0.05985264, 0.010832203, - -0.0499711, 0.013314565, -0.016475838, 0.022790894, -0.019511763, - 0.030378249, 0.011405317, -0.047396902, -0.03883475, 0.038236734, - 0.02456369, 0.0029097763, 0.005826762, 0.0039321007, -0.04938766, - 0.046198558, -0.045964655, -0.029804304, 0.00849676, -0.039193068, - 0.048668347, -0.015284645, 0.014685029, 0.040673856, -0.0193421, - -0.02531819, 0.015146639, 0.0022088808, -0.035798863, 0.022851255, - 0.09405989, -0.011093089, -0.015067166, -0.030013109, 0.029658042, - 0.029623013, -0.051834416, -0.01581009, -0.0017408575, -0.0069814585, - -0.01494488, 0.0052888957, 0.028052285, -0.033279896, 0.045930043, - -0.022850057, -0.02767815, 0.022923905, 0.03695227, 0.032721616, - -0.0028666898, 0.010632587, 0.043644093, -0.012989724, -0.008268834, - 2.196379e-4, 0.020782208, 0.02923503, -0.08265877, -0.015469228, - -0.026049323, 0.055495653, 0.0031738963, 0.006614077, -0.03155275, - -0.019014891, -0.050866123, -0.022366747, -0.0509396, 0.03504566, - -0.0419866, 0.012400554, 0.076231815, -0.0108426735, -0.030498771, - 0.02534001, 0.06773905, 0.029218363, -0.003053158, 0.025738684, - 0.008062389, -0.005031639, -0.050497457, -0.027246242, -0.020169972, - 0.030112376, 0.018027563, 0.032870885, 0.037074238, 0.06207802, - 0.026377238, -0.010637248, 0.016183812, 0.047990374, -0.04147801, - 0.021889148, 0.07731132, -0.039748006, -0.04751456, 0.040142596, - -0.055959556, 0.02446126, -0.03527358, -0.009097668, 0.045688786, - 0.032023072, -0.02421836, -0.0149351265, 0.011501444, 0.008003244, - 0.02819214, -0.026467288, -0.019205753, -0.04378852, -0.004275843, - 0.046887957, -0.07625406, 0.0047452166, -0.06894568, 0.014675599, - -0.018479379, 0.012614803, -0.0028786769, 0.012894182, 0.017717615, - 0.016864274, -0.0013297363, -0.012837241, 0.029537281, 0.016818535, - 0.0043905084, -0.06155932, -0.012220182, 0.009652006, -0.028064135, - 0.005295938, 0.06427481, -0.0067099654, 0.005244315, 0.06658894, - 0.07146318, -5.2760646e-4, -0.020627812, 0.008419451, -0.0151026035, - 0.01556768, 0.059482448, -0.009005617, -0.06861564, 0.026114238, - 0.019352242, -0.0039672256, -0.031186268, -0.03200023, -8.3187653e-4, - -0.013751496, -0.0042804647, -0.018483086, -0.020442624, -0.0013622397, - 0.02766359, -0.013049033, -0.0286951, -0.028706096, -0.03101306, - -0.06745764, 0.030530643, 0.07378141, -0.03103237, 0.0077036745, - -0.00982938, 0.02007626, 0.04153053, 0.052939374, -0.02210464, - 0.031988814, 0.01124261, -0.013169676, -0.037920937, -0.02366405, - -0.010231096, 0.027366957, 0.030689396, 0.029195126, 0.047571518, - 0.05226561, 0.050715234, 0.060982622, -0.033564504, 0.044748817, - -0.083866954, -0.016981063, -0.03851783, -0.034228824, 0.016122898, - -0.017939245, 0.0021496825, -0.035688058, 0.002104978, -0.02862127, - 0.033839222, -0.029963223, -0.016872805, 0.027606808, -0.0349223, - -0.026557581, 0.023105873, -0.020688128, -0.06702205, 0.038406774, - 0.03507454, 0.055818737, 0.029011758, -0.031260278, 0.03595787, - 0.05948154, 0.046288975, -0.069652595, 0.09697196, 0.013133523, - -0.03732924, 0.017056014, -0.056519024, 0.037243877, 0.011429338, - -0.003493612, 0.030022794, 0.014617848, 0.030287059, 0.0926903, - 0.012067351, 0.015425167, 0.03489047, 0.0147901755, 0.036535908, - 0.05281802, -0.041809533, 0.03900131, -0.035871584, 0.006216377, - 0.037270337, 0.0034700555, 5.707417e-4, -0.00571874, 0.025029723, - -0.0034203797, -0.027939092, -0.048031893, 0.059298463, 0.0186954, - 0.014782965, -0.032322492, -3.4653637e-4, -0.018886192, 0.041323047, - -0.03279218, 0.0032821249, -0.024223728, -0.0074091125, 0.0083569, - -0.008528281, -0.0106337285, 0.030776225, 0.0022415845, -0.041133102, - -0.004924255, -0.011872615, -0.022465492, 0.01923696, 2.5158667e-4, - 0.0026642554, -0.007294466, 0.027585145, -0.06535046, 0.017603507, - 0.016009891, 0.014264381, 0.04631514, 0.002708371, -0.044582084, - 0.026964488, -0.025629241, -0.021002702, -0.005255512, 0.003552667, - -0.033601835, 0.0034599528, 0.035544652, -0.008523162, -0.037894517, - -0.00284822, 0.053761885, 0.006533071, -0.041021064, 0.0010143862, - 0.08557421, 0.027120722, 0.052150965, 0.051978763, -0.019715982, - -0.049812946, 0.0038448726, -0.023261372, -6.5788464e-4, 0.049450397, - 0.043248303, 0.022100527, 0.017524214, -0.014460715, -0.0059445514, - -0.10271102, 0.037067924, -0.032891043, -0.065522924, 0.029392714, - 0.042418636, -0.012836842, -0.015647274, 0.028742839, 0.030383253, - 0.033635404, 0.03163411, -0.004020596, -0.03150034, 0.024581695, - 0.025082005, -0.010970262, 0.00977822, -0.0038830054, -6.2499935e-4, - -0.023554934, -0.008516508, 0.0132114, -0.040220182, -0.0036968966, - 0.014172121, 0.0294977, 0.03505059, -0.011730422, -0.024116632, - -0.015237557, -0.00940075, -0.006532544, -0.024248771, -0.025737636, - -0.011821163, -0.044922654, -0.05171678, 0.05860688, -0.004264163, - -0.0048578246, -0.019592933, -0.019606521, -0.0382151, -0.028022425, - -0.0072133937, 0.07488915, -0.0060832333, -0.044436935, -0.033872027, - -0.0068076826, -0.0068440763, -0.030838054, -0.030271951, -0.078820385, - -0.04747895, -0.006729784, -0.024114946, 0.019175138, -0.009484101, - 0.014649883, -0.0090858955, 0.038618956, 0.08227481, -0.0021839587, - 0.010273502, 0.005261384, -0.020271732, 0.0065782145, 8.742437e-4, - -0.011935908, 0.057209536, -0.030950928, -0.025678733, 0.0041954224, - -0.012933643, 0.03814927, -0.006315953, 9.2284987e-4, 0.025202176, - -0.039915476, -0.0014925478, 0.003296682, 0.004172919, -0.017775657, - -0.03728938, -0.034803487, -0.022785854, -0.011714912, -0.055322267, - -0.0060436535, -0.031144002, -0.025782267, 0.017489163, -0.05044151, - 0.028683983, 0.0037913367, -0.030754222, 0.066261426, 0.03632411, - 6.792872e-4, -0.0012675404, 0.026202355, 0.018372096, 0.042840347, - -0.0018333982, 0.021970036, 0.006865469, -0.07693536, -0.072368674, - -0.007755379, -0.028596409, 0.0077875224, 0.06018538, 0.0051699034, - 0.014291013, 0.01222298, 0.035282772, -0.025300266, 0.052140757, - 0.004920464, -0.03946135, 0.02642562, 0.06306019, -0.04213306, - 0.019840132, 0.03407136, -0.0040308386, 0.0132019315, 0.022720233, - 0.022943608, 0.0062704254, -0.060380593, -0.012573177, -0.009291345, - 0.034556247, 0.0370682, 0.0032550413, -0.049750462, 0.027479907, - 0.014480495, 0.010296047, -0.023675404, 0.03779539, 0.03116469, - -0.019701784, 0.037371352, 0.01915151, 0.009889508, -0.050012596, - -0.036539298, 0.011051059, -0.011443939, -0.027635874, -0.010347433, - -0.024519863, -0.021425605, 0.035688706, -0.026604204, 0.05987977, - -0.0068140756, 4.1531157e-4, -0.004303944, 0.011523767, -0.03389711, - 0.042928737, 0.0046969284, 0.044752255, 0.021625863, -0.016655788, - 0.011204691, 0.0050243665, 0.040792163, -0.025237853, 0.010109817, - -0.025061827, -0.0039179027, 0.033462793, -0.0025346705, -0.0032047317, - -0.027375031, 0.01747443, 0.028283922, -0.041413046, 0.028758315, - 0.017104259, 0.018337863, 0.013028825, 0.010171307, 0.009987646 + "paletteEmbedding" : [ + 0.050384644, + 0.03814256, + -0.0063891374, + -0.00476114, + 0.025976282, + -0.006604606, + 0.054757133, + 0.06413747, + 0.017641246, + -0.045104604, + 0.00103162, + 0.029487059, + -0.037267685, + 0.0032426047, + -0.036474902, + -0.0072771255, + -0.01828803, + -9.5572206E-4, + -0.03050291, + -0.04854178, + 0.043037817, + 0.027916517, + 0.008720285, + -0.0052217823, + -0.01483883, + -0.03472349, + 0.0037380015, + -0.013465229, + 0.008176226, + -0.007932328, + -0.020269783, + -0.010406639, + 0.0024888397, + -0.02540476, + 0.0033802073, + -0.029653061, + -0.010033175, + 0.06438467, + 0.0014258465, + -0.02809535, + -0.04617589, + 0.034823846, + -0.013711224, + -0.008242963, + -0.020438163, + -8.5078983E-4, + -0.028947009, + -0.049382426, + 0.016201098, + 0.031450514, + 0.021607177, + -0.014168409, + 0.05061154, + -0.036431286, + -0.035015278, + 0.009547683, + -0.008227253, + -0.02668154, + -0.04358931, + 0.06215225, + 0.030736893, + -0.019065673, + 0.02328161, + -0.044636298, + 0.048282225, + -0.021082385, + -0.03318797, + -0.005431891, + -0.03563928, + 0.011825094, + -0.03401812, + -0.024488533, + 0.029006528, + 0.011954306, + 0.07427416, + -0.05497265, + -0.020479606, + 0.02441481, + 0.009665629, + -0.027459485, + -0.037917458, + 0.003979231, + -0.024350835, + -0.013447951, + -0.035544783, + -0.023268085, + 0.090091124, + -0.045138545, + 0.010907085, + -0.018394645, + 0.018460656, + 0.0072788717, + 0.0011774191, + 0.04674917, + 0.038029756, + -0.025399646, + -0.044284925, + 0.012193378, + -0.024117265, + -0.012275878, + 0.002744205, + 0.04721353, + 0.0016192237, + 5.848629E-4, + 0.012052033, + -0.017759508, + -0.014097107, + 0.0038990236, + -0.0029201475, + -0.048746977, + 0.048314307, + -0.09085299, + -0.016351428, + 0.054308448, + 0.007662644, + 0.032794833, + -0.030782035, + -0.041105893, + 0.013658079, + -0.06013646, + -0.0026185974, + -0.020025237, + -0.0061086165, + 0.03803934, + 0.021782799, + -0.005167448, + 0.040728275, + -0.01236594, + 0.018429289, + 0.03330079, + 0.0028901554, + -2.104622E-4, + 0.030235281, + -0.03370905, + 0.03347642, + 0.016777169, + -0.014426489, + -0.015705997, + 0.030325856, + 0.044435564, + -0.01466513, + -0.019674517, + 0.025227822, + -0.021976158, + 0.01351824, + 0.10017847, + -0.023878975, + -0.008564884, + -0.0057581724, + -0.010465785, + 0.02755456, + -0.030358946, + 0.015824206, + -0.006997344, + -0.041767623, + 0.018598037, + -0.034629118, + -0.03981347, + -0.003384104, + 0.031750817, + -0.05645756, + 0.01271765, + 0.002198918, + 0.053290594, + 0.008009759, + 0.041048504, + 0.015709065, + -0.015562655, + 0.011977432, + 0.022193396, + -0.007566692, + -0.033426255, + 0.049155172, + -0.021073624, + -0.04536897, + -0.0034269062, + -0.0074955337, + 0.023285745, + -0.013503423, + -0.049945503, + 0.023846429, + -0.01712988, + -0.014149129, + -1.4079023E-4, + -0.015379251, + 0.018878886, + -0.011732233, + 0.010469243, + 0.020166788, + 0.043964133, + 0.0028721474, + 0.050290957, + 0.021579018, + 0.015530171, + 0.008067776, + 0.06523136, + -0.020806553, + -0.036051977, + -0.015283329, + 0.035968684, + 0.010303286, + 0.03928024, + 0.06475483, + 0.060557097, + 0.0065775476, + -0.019568432, + -0.02804502, + 0.017700447, + -0.0038756432, + -0.0074322782, + 0.007434759, + 0.057664406, + -0.031916462, + 0.026902048, + -0.004153869, + 0.018003033, + 7.471036E-4, + 0.042005364, + 0.053445663, + 0.048163652, + 0.07562783, + 0.025142182, + 0.014610855, + 0.023636926, + 0.017165102, + -0.038880296, + 0.008976072, + 0.039219588, + -0.009096539, + 0.03905345, + -0.048394088, + -0.041929774, + -0.03739518, + -0.04177378, + -0.07965325, + -0.025904395, + 0.03305928, + -0.005508559, + -0.013249869, + 0.012052701, + -0.0056394306, + -0.101840205, + -0.0065996144, + 0.006788156, + -2.0774418E-5, + -0.019592913, + -0.022605557, + -0.021269832, + -0.024516828, + 0.040224787, + 0.024464319, + 0.04479752, + 0.0366587, + -0.11100648, + 0.07521184, + -3.2004088E-4, + 0.03709523, + -0.029420817, + 0.022376522, + 0.016074944, + 0.023881039, + -0.09102213, + -0.03982367, + -0.016197894, + -0.028225772, + -0.015199433, + -0.03160603, + 0.006560954, + 0.008992616, + 3.9216166E-4, + -0.03811903, + -0.040122867, + -9.593434E-4, + -0.015379962, + -0.058590166, + 0.016034806, + 0.014742332, + -0.00930021, + 0.044872925, + -0.055003494, + -0.012036977, + 0.051034138, + -0.017362475, + -0.0047335597, + 0.015709823, + -0.03904121, + 0.006489249, + 9.3532813E-4, + 0.015381234, + 0.015856547, + 0.008600529, + -0.0046643, + -0.06641443, + -0.026575465, + -0.02469241, + -0.060714923, + 0.021781268, + -0.017172478, + 0.017806834, + 0.018714836, + 0.032191314, + -6.592514E-4, + 0.021267332, + 6.7499175E-4, + -0.008623838, + -0.028083397, + -0.0058861873, + 0.0067839045, + -0.03293456, + -0.018848732, + 0.019938955, + 0.0019419192, + -0.05434466, + -0.050790373, + -0.049479876, + -0.030888135, + 0.044964604, + 3.1907062E-4, + 0.01595899, + -0.021552548, + 0.007169782, + -0.04424942, + -0.005784387, + -0.022526314, + 0.025929164, + 0.01891813, + 0.0343402, + 0.04188479, + -0.01849969, + -0.06400603, + -0.030473776, + -0.047307197, + -0.004554966, + -0.05168647, + 1.517123E-4, + -1.4375542E-4, + 0.015801534, + -0.007253062, + 0.04256613, + -0.01614983, + 0.032965135, + -0.010634739, + 0.008973749, + -0.017869752, + -0.0056121177, + 0.023763081, + -0.04568028, + 0.05284924, + -0.041126918, + 0.0042401208, + 0.049129933, + -0.010749157, + -0.0026302123, + 0.005426271, + 0.001798657, + -0.050680112, + -0.020493764, + 0.0542473, + -0.02612492, + -0.0078068264, + 0.006159889, + 0.06766796, + -0.0046282215, + 0.010928672, + 0.0148224095, + -0.043845553, + -0.046206687, + 0.024605852, + 0.03497757, + 0.02921478, + 0.054541666, + 1.0660141E-4, + -0.0071329856, + -0.011578775, + 0.044554904, + 0.0049333484, + 0.006409877, + 0.020885369, + 0.030260222, + -0.024777444, + -0.03614051, + -0.05808238, + -0.022595823, + 0.011507784, + 0.0061064283, + 0.0036616034, + 0.010917135, + 0.077297695, + -0.024367861, + 0.001626344, + -0.031736016, + 0.020809088, + 0.020030538, + 0.049576633, + -0.026664054, + 0.03101981, + 0.0065834452, + -0.01779988, + -0.02612318, + -0.028818173, + 0.0063405805, + 0.06780331, + -0.008047456, + -0.024610527, + 0.0332816, + -0.027470576, + -0.06682016, + -0.050285026, + -0.031402484, + -0.0389586, + 0.011812532, + -0.028111793, + -0.02163438, + -0.0059038773, + 0.027873881, + -0.011682693, + 0.038577586, + -0.02210992, + -0.106279254, + 0.04735369, + -0.008664257, + 0.0065955487, + 0.040467888, + -0.012434721, + 0.029540006, + -0.01163237, + -0.023251265, + -0.047194224, + -0.043659884, + 0.056469318, + 0.020134747, + -0.002425995, + 0.056296784, + -0.01736042, + 0.019879472, + -0.005710625, + 0.0040729987, + 0.002716783, + 0.010506366, + 0.0025671127, + 0.03600106, + -0.017290585, + -0.03476999, + -0.0015340942, + 0.009387244, + 0.0066797216, + -0.05623116, + -0.060754552, + 0.009980659, + -0.008210063, + 0.02414653, + 0.018879823, + -0.020788275, + 0.005547118, + 0.030886082, + -0.021414725, + 0.024169175, + -0.015090537, + 0.058802415, + 0.047206804, + 0.0018744289, + -0.027401108, + 0.038521256, + -0.0055058203, + -8.418933E-4, + -0.016640423, + 0.042537812, + -0.008893888, + 0.0010578263, + -0.0057602394, + -0.0013540533, + 0.07045611, + -0.03402924, + -0.008142584, + 0.017980162, + 0.016175091, + 0.010196524, + 0.0015746744, + -0.041378, + 0.010193036, + 0.0080772815, + -0.013442485, + -0.0024237605, + 0.03242343, + 0.042097844, + -0.028824175, + 0.028658083, + -0.01439933, + -0.019232593, + -0.03635599, + -0.018743845, + 0.004851144, + -0.039249532, + -0.014365692, + -0.03717509, + -0.0210328, + 0.034506798, + 0.035945904, + 0.02969356, + -0.0061538047, + 0.05586147, + -0.042470843, + 0.0016561362, + -0.06697813, + 0.013133718, + 0.03490772, + 0.046167094, + -0.044752464, + 0.02197421, + 0.027945146, + 0.026143715, + 0.047762357, + -0.012391331, + 0.06298058, + -0.07469336, + 0.021326398, + 0.021391343, + -0.013450806, + -0.016239565, + -0.024951184, + -0.012387992, + -0.014377932, + -0.030568635, + 0.013863637, + 0.0082327835, + 0.015625728, + -0.009855654, + 0.005895616, + 0.042982526, + -0.008554246, + 0.007907292, + 0.0055891117, + -0.01489517, + -0.03330669, + -0.015780812, + -0.0029378636, + -0.0020978583, + 0.029087802, + -0.033317737, + 0.011977409, + -0.020147849, + 0.0032244148, + 0.0047310777, + -9.7085093E-4, + -0.03442008, + 0.023621695, + -0.030174065, + 0.029610114, + -0.032165963, + -0.042651996, + -0.01529381, + -0.03315115, + -0.026536893, + -0.00462471, + -0.04461006, + 0.0531779, + 0.039917853, + 0.011321614, + 0.02460018, + -0.006992052, + 0.031071752, + 0.04250085, + 0.02607071, + -0.005622074, + 2.0459645E-5, + -0.03690135, + 0.0014889268, + 0.01826209, + 0.009014069, + 0.017848046, + 0.012264569, + 0.016296223, + 0.054771543, + 0.051030852, + 0.022333484, + 0.020086383, + 0.013495884, + -0.0081200935, + -0.021889197, + 0.009595681, + -0.031770404, + -0.020705417, + 0.017463285, + 0.02484733, + -0.051330723, + 0.005626034, + 0.0014366606, + -0.010760348, + -0.011723507, + 0.03043551, + 0.028056392, + 0.052991826, + 0.013958185, + 0.053129476, + -0.00953727, + -0.02810505, + 0.07622829, + 0.03979221, + -0.00650397, + 0.022599118, + -0.015787158, + -0.024933822, + -0.0024699115, + 0.046994194, + -0.012543108, + 0.012701304, + -0.004372006, + -0.02390881, + 0.036439788, + -0.018935889, + -0.011479557, + 0.02191954, + -0.03889741, + -0.023548096, + 0.0376409, + -0.017084487, + 0.007593622, + 0.0137506435, + -0.019230263, + 0.007870708, + -7.0880225E-5, + -0.01835451, + 0.059514634, + 0.042898487, + -0.005638012, + 0.012776193, + 0.014513161, + 0.07320062, + 0.006946268, + -0.05374486, + 0.0096833855, + -0.039921697, + -0.017062504, + -0.028315378, + -0.002902978, + 0.009160157, + -0.027103672, + -0.014878772, + -0.012587634, + 0.07576935, + -0.049007602, + -0.011440302, + -0.0028795004, + -0.022269903, + -0.04322157, + -0.050062932, + 0.050015613, + 0.041744184, + 0.027524594, + 0.018282287, + -0.0076330667, + -0.08531853, + 0.0053810645, + -0.0049249404, + -0.008578655, + -0.051298726, + -0.017563274, + -0.07600877, + 0.01799624, + 0.055906355, + -0.026566379, + 0.031187596, + -0.016983744, + 8.674604E-4, + -0.026742516, + -0.016221752, + 5.496888E-4, + 0.0595665, + -0.05593836, + -0.0041386597, + 0.016702548, + 0.008069705, + 0.0185413, + 0.0060280524, + 0.014150077, + -0.009542241, + -0.07882385, + -0.060247615, + -0.02010374, + 0.007482472, + 0.020511396, + 0.056714527, + 0.0024540354, + 0.016193569, + 0.0038060595, + 0.050929967, + -0.021010797, + 0.0396987, + 0.04663641, + 0.013861667, + -0.01060768, + 5.189027E-5, + 0.03486696, + -0.024042768, + 8.399834E-4, + 0.0037344228, + 0.0108838435, + -0.024398364, + -0.036317, + -0.0060431645, + 0.019132672, + 0.020746289, + 0.05272731, + -0.018609675, + 0.0033110103, + -0.025639206, + 0.04274511, + 0.040301792, + -0.037377756, + -0.04330674, + 6.405765E-4, + 0.011339084, + 0.017623914, + 0.016320014, + 0.041368965, + 0.033109464, + -0.037729, + -0.021990284, + -0.010458557, + -2.4253965E-4, + 0.0054780673, + 0.027041469, + 0.0144081805, + -0.0115981065, + -0.019250963, + 0.029872777, + -0.028557494, + 0.012719809, + 0.009466211, + -0.032529354, + -0.036043018, + -0.013370872, + -0.0019042816, + -0.046490647, + -0.027092448, + -0.030036418, + -7.308347E-4, + -0.0021100822, + -0.03391942, + 0.0019604838, + -0.0112163965, + 0.038666513, + 4.0307298E-4, + 0.010061297, + 0.007341186, + -2.8015068E-4, + -0.010808908, + 0.0040135975, + 0.05578416, + -0.0097154835, + 0.06890699, + -0.005247716, + -0.028787836, + -0.08674055, + 0.035714436, + 0.026544102, + 0.01789996, + 0.013176039, + 0.009586984, + 0.006443888, + -0.038356733, + 8.386375E-4, + -0.08311394, + 0.010331038, + 0.02485607, + 0.051489808, + 0.045298953, + -0.006423648, + -0.0031290085, + 0.019413842, + 0.0025167186, + 0.047639474, + -0.05379044, + 0.018023912, + 0.056058805, + -9.761744E-4, + 0.013757356, + 0.007605234, + 0.03325214, + 0.005722227, + 0.00843493, + 0.0074959486, + -0.012393513, + -0.006779288, + 0.009498022, + 0.03568824, + -0.02226388, + 0.012684505, + 0.033374436, + -0.037806593, + 0.012707914, + 0.024528151, + -0.03218833, + 0.014283068, + -0.011181519, + 0.033223443, + -0.019956356, + -0.020831535, + -0.030266646, + 0.07207734, + 0.027432926, + -0.008355158, + 0.031560168, + 0.046397883, + 0.02881734, + 0.03732594, + 0.001845623, + -0.005512105, + 0.001917809, + -0.02515441, + -0.034766626, + -0.012955388, + -0.060102116, + -0.049353275, + -0.0010720526, + 0.017917842, + -0.03044809, + -0.0049965456, + 0.008044406, + 0.0862344, + -0.022074247, + -0.033590585, + 0.0053212587, + 0.039681204, + 0.06411059, + -0.055181462, + 0.024085071, + -0.0046309656, + -0.030133348, + 0.013050481, + 0.032786675, + 0.015558292, + 0.01211838, + -0.014035837, + 0.023611957, + -0.0024529195, + 0.023885382, + -0.0066786436, + -0.0761395, + -0.0113265775, + -0.0066022035, + -0.020945117, + 0.026934346, + 0.0347342, + -0.0047485833, + 0.021917308, + -0.033734214, + 0.0033261687, + 0.009754866, + 0.041100636, + -2.7156883E-4, + -0.031675577, + -0.017416766, + 0.0028872588, + -0.05195611, + -0.01914197, + 0.01716407, + -0.06921521, + 0.022478772, + -0.0379847, + -0.07250015, + 0.065572485, + 0.015753312, + -0.016341079, + -0.041746687, + 0.018440895, + 0.018762186, + 0.027757574, + -0.02876829, + -0.045557935, + -8.01545E-5, + 0.0020557167, + -0.013215868, + 0.03264676, + -0.03966789, + 0.029412579, + 0.015639946, + 0.008453568, + -0.021513319, + -0.020421054, + -0.035321143, + -0.036289096, + 0.017098187, + 0.013708433, + 0.023826193, + -0.007232561, + -0.06336798, + 0.029499851, + -0.031222666, + -0.018981835, + -0.0663243, + 0.016029844, + 0.013860581, + -0.0035392798, + -0.042677093, + -0.037216876, + -0.019766083, + 0.025719503, + -0.015094855, + 0.031427868, + -0.017279938, + 0.008699187, + 0.030131875, + 0.023437284, + -0.026457345, + -0.013838236, + 0.010600833, + -0.086772576, + -0.022538621, + -0.048615348, + 0.040433325, + 0.017644787, + -0.0044858493, + -0.018500075, + 0.0156223755, + -0.01846263, + 0.010162719, + 0.0067715957, + -0.055978294, + -0.014772217, + 0.054377872, + 0.0018623093, + -0.026973512, + 0.014547052, + 0.036157202, + -0.007987172, + 0.013744488, + -0.0022713142, + -0.03246035, + 0.0058721798, + 0.0391356, + 0.02445669, + 0.028300742, + -0.03595198, + 0.02832744, + 0.08696721, + -0.014426126, + 0.06542031, + -0.06431286, + 0.046725444, + 0.012121447, + -0.036040522, + 0.012808341, + -0.003934996, + -0.013277879, + 0.016389597, + 0.05025863, + 0.020551084, + -0.0075688623, + 0.061281364, + 0.011217692, + 0.032971084, + -0.0044305734, + -0.016468145, + -0.037926786, + 0.020080209, + -0.0055425763, + -0.014761452, + 0.019640401, + -0.0076544182, + -0.007609408, + -0.02477567, + -0.011506396, + -0.028141215, + 0.05954322, + -0.07221013, + -0.043972347, + 0.06098404, + 0.05009396, + 0.0050057922, + 0.004898537, + -6.8254943E-4, + 0.0019524993, + -0.037601955, + -0.022764036, + -0.01242716, + 0.036126938, + -0.023257498, + 0.012063175, + 0.013613963, + -0.0034390893, + -0.06808097, + 0.0116173765, + 0.016873617, + 3.5565151E-4, + -0.002010142, + 0.0043975916, + 0.0229201, + 0.0077357125, + -0.0043634903, + 0.085442506, + 0.031852227, + 0.059726257, + -0.0152795175, + -0.027066514, + 0.02397114, + 0.008589185, + -0.021268338, + -0.01486546, + -0.0057344665 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.contributors.1.json b/common/search/src/test/resources/test_documents/images.contributors.1.json index dcce9d24d..8feb1659b 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.1.json +++ b/common/search/src/test/resources/test_documents/images.contributors.1.json @@ -1,1359 +1,5275 @@ { - "description": "images with different contributors", - "createdAt": "2023-11-21T14:25:43.876303Z", - "id": "q7isn7gh", - "document": { - "modifiedTime": "2055-10-11T18:35:24Z", - "display": { - "id": "q7isn7gh", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different contributors", + "createdAt" : "2024-11-14T14:37:56.379788Z", + "id" : "8p59sfry", + "document" : { + "modifiedTime" : "2021-10-07T09:48:56Z", + "display" : { + "id" : "8p59sfry", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/3a3.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", + "linkText" : "Link text: YQuA86b", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/3a3.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", + "linkText" : "Link text: YQuA86b", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#892E6E", - "source": { - "id": "kgqlujt2", - "title": "title-8UNLanNxpL", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#BD862E", + "source" : { + "id" : "zejavmqr", + "title" : "title-FrRzbLm9dz", + "contributors" : [ { - "agent": { - "label": "carrots", - "type": "Agent" + "agent" : { + "label" : "carrots", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "parrots", - "type": "Organisation" + "agent" : { + "label" : "parrots", + "type" : "Organisation" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "q7isn7gh", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["carrots", "parrots"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kgqlujt2", - "sourceIdentifier.value": "rocvsAjYTL", - "identifiers.value": ["rocvsAjYTL"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-8UNLanNxpL" + "query" : { + "id" : "8p59sfry", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "carrots", + "parrots" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "zejavmqr", + "sourceIdentifier.value" : "4xvNzKQ7nP", + "identifiers.value" : [ + "4xvNzKQ7nP" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-FrRzbLm9dz" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"carrots\",\"type\":\"Agent\"}", "{\"label\":\"parrots\",\"type\":\"Organisation\"}" ], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["carrots", "parrots"], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.017489694, 0.0017442165, -0.021751104, -0.009788335, -0.021288916, - 0.0052879793, -0.0064430214, -0.012901007, -0.0014663634, -0.009287773, - -0.0026721219, 0.0048113773, -0.0067172344, 0.003170666, 0.0037952883, - 0.0022794108, -0.008258261, -0.0011113641, -8.990447e-5, -0.022269262, - -0.0044480576, -0.0028404028, -8.862598e-4, 0.0013812241, 0.021225736, - 0.0059933267, 0.017307602, 0.0052526975, 0.01210678, -0.020423576, - 0.025531812, -0.02055603, 0.0076589053, -0.033799976, -0.009246959, - 0.030149842, 1.2976458e-4, 0.02053213, -0.006654683, 0.00869139, - 0.022646695, -0.018809076, -0.032485645, 0.010413658, -0.027979031, - 0.03423252, 0.025503198, 0.01281591, 0.0016552849, 0.015596507, - -0.003521759, -0.022076936, 0.0011978457, -0.023773763, 0.0108265625, - 0.0064196605, -0.024958428, 0.0026407014, -0.001301863, -0.008548819, - -0.010609049, 0.0062027713, 0.0109361755, -0.027808273, -0.008246889, - 0.0012060949, -0.019538611, 0.00980425, 0.017858922, -4.7847384e-4, - 0.020211216, -0.0019148166, -0.013788933, 0.019682067, -0.0032588744, - -0.014919176, 0.007079345, 0.0059066517, -0.0032299622, 0.008296874, - 0.031994954, -0.026689587, 0.026066376, 0.016030718, 0.010489567, - -0.010023457, 0.032776788, 0.0077320407, 0.0011531452, -0.017476717, - 0.023403486, -0.008754974, 0.02314325, 0.0121765165, -0.02508063, - -0.01708588, -0.0055924375, -0.001738134, -0.045807097, -0.016526533, - -0.0015268795, 0.005738999, 0.003934899, 0.012594252, -0.015426481, - -0.05127481, -0.0026020147, -0.01442193, 0.012953705, 0.024377307, - -0.0052248, -0.0064986274, -0.0012391722, -0.01771497, -0.007673222, - -0.009146944, -0.007439985, 0.023057975, 0.014252786, -0.0039638323, - -0.0096616745, -0.003230855, 6.229411e-4, 0.0061041536, -0.006060934, - -0.022691278, 0.0063983295, -0.008408749, -0.0021760135, -0.008750907, - 0.016506677, 0.01628788, 0.025189558, 0.0024716235, -0.010717424, - -0.01170327, 0.019203246, 0.0036627594, 0.018822936, -0.009161262, - -0.008172226, -0.0104215555, 0.020770296, -0.008210812, -0.010212879, - -0.0033523482, 0.018060764, 0.006346658, 0.024107574, 0.01241716, - -0.0013119297, -0.006910355, -0.008138175, 0.027648069, -0.0033413619, - 0.014096357, 0.0061256797, -0.0050780205, 0.017395968, 0.013277344, - -0.020206816, 0.01429087, 0.013893606, -0.0059343907, -0.019273743, - 0.017717227, -0.014352605, 0.019817317, -0.011556202, 0.0013548803, - 0.003924398, -0.016978486, 0.00475533, 0.0076349643, -0.029606082, - 0.0193917, -0.012372843, -0.019022537, -0.010642895, 0.0059662634, - -0.011688369, 0.013804894, -0.0028755364, -0.03824471, -0.01707163, - -5.0330453e-4, 7.5710927e-6, -0.0036527223, -0.014408844, -0.017254326, - 0.007438076, -0.027850425, 0.003951088, 0.0022865508, -0.019195642, - 0.008954122, 0.0010907856, -0.0017803482, -0.001793123, 0.008809577, - 0.007772344, -0.0053530284, 0.025480883, 0.01096535, -0.004294993, - 0.0040558204, -0.007322298, 0.022548346, 0.008750983, 0.005775219, - -0.013852688, 0.007438565, -2.3380727e-4, 0.015595388, -0.011043015, - 0.0042232075, -0.006261937, 0.012073195, -0.001014426, 0.02107674, - -0.0022974222, -0.018564776, 0.008517558, 0.032852374, 7.4905046e-4, - -4.868811e-4, 0.0023343356, 0.001742538, 0.011255983, -0.0011248207, - -0.014670628, 0.023346355, -0.004577309, 0.0018915357, 0.009918094, - 0.019148346, 0.025733715, 0.005969287, -0.012231021, -0.011604721, - 0.005248499, 0.00584657, -0.0028318516, 0.0047348463, -0.027601708, - -0.010988924, 0.0019391027, 0.0036849885, -0.021026682, 0.0054058656, - 0.0153384, -0.021027677, 0.014742282, 0.017321518, 0.012750539, - 0.024876678, -0.014424315, 0.032552965, -0.006365567, -0.03010903, - 0.023798335, -0.0090667885, 0.02475387, 0.023782171, -0.009359288, - 0.0013765207, 0.0013511365, 0.011751362, -0.014480666, 0.010504873, - 0.023267286, -0.012023652, -6.880402e-4, -0.017463548, 0.00917243, - 0.020049896, -0.0010677119, 0.024181735, -0.012909267, 0.0015635677, - -0.019650703, -0.015976243, -0.0033167717, -0.0069091003, 0.010205319, - -0.012318939, -0.0024318837, -0.007831603, 0.009781706, 0.00736052, - -0.017516227, -0.010219315, 0.015128526, 0.0054600732, 0.035154, - 0.0029166706, -0.008150604, -0.016121162, -0.0059046866, 0.019891744, - 0.022299113, 0.014552974, -0.012885967, 0.008492243, 0.0021352037, - -0.002914559, -0.028024307, -0.0012773825, -2.7905795e-4, 0.042348456, - 0.012541004, -0.033879906, 0.03607013, -0.016614273, -0.020596, - 0.004139485, 0.0075062183, 0.010443001, -0.008624162, 0.004537212, - -0.016315205, 0.0111401165, 0.013477277, -0.0024136936, -0.012135019, - 0.012012252, 0.0020270748, 0.0042955265, 0.029982304, -0.0078301765, - 0.010931619, -0.014521462, 0.017975233, -0.00896304, 0.008106414, - -0.011904137, 0.003836417, 0.009835596, -0.013153228, 0.01306589, - 0.015146605, -0.032456424, -0.01625633, -6.0692325e-4, -0.006795198, - -0.026161704, 0.010006725, 0.021478316, -0.0034138456, -0.0154040065, - -0.008376165, -4.5219008e-4, -0.008253554, -0.014607044, -0.008936244, - 0.023190599, 0.0016809324, 0.0037442872, -0.009648804, -0.013391347, - -0.011754808, -0.011085993, -0.0029973781, 0.0049711606, -0.006208222, - -0.031896155, 0.033977903, 0.014268913, -0.011506437, -0.026901942, - -0.04654657, -0.005260548, 0.020524302, -0.028907621, 0.012795804, - 0.031764414, -0.028902812, 0.00837786, -4.7267036e-4, -0.0042503914, - -0.0106976945, -0.024905326, 0.013066505, 0.009441545, -0.011219285, - 6.800814e-4, 0.012613427, 0.002342996, -0.0033425037, -0.0038280825, - 0.022546923, 0.021093499, -0.004841092, -7.0884515e-4, 0.013371308, - 0.020832771, -0.0043682507, 0.006993446, -0.0066892477, 0.020370211, - -0.016733067, 0.027951, 0.011996739, -0.024975266, 0.012483233, - -0.0012378751, -0.0034800821, -0.018012973, 0.0034737752, -0.007736735, - -0.018235575, 0.0027134689, -0.008051426, 0.019165946, 0.008338138, - -0.015262962, 0.010353956, 0.0069239163, -0.0030209809, 0.014776628, - -3.1330143e-4, 2.4452442e-4, 0.027593652, -0.01963457, 0.007188019, - -0.005915467, -0.0120379515, 0.01100752, 0.024250349, -9.5958845e-4, - 0.010972966, -0.010491368, -0.028037257, -0.007867905, 5.376724e-4, - -0.009589303, -0.02425931, 0.004789358, -0.001302217, -0.018029526, - -0.0031780617, -0.024416747, 0.009208148, 0.013475176, -0.007678556, - -0.016739985, 0.02005588, 0.002016529, 0.007055232, 0.020165656, - 0.0121808965, -0.004081514, 0.0015715137, 0.035191033, -0.0034555497, - 0.0141716525, 0.0045009265, -0.0095500415, -0.025701642, 0.011417821, - -0.012007553, 0.016377555, -0.012760137, 0.016918125, -0.0011860334, - 0.009797161, -0.004366263, 0.0017415697, -0.020011093, -0.01085585, - -0.011621283, 0.03104706, -0.0033047432, -0.009937345, 0.02476762, - 0.027220188, 0.0035622523, -0.0012670411, 0.0087012565, -0.007319633, - -0.0055074166, 0.0033782255, -0.014651961, 0.005722698, 0.03305314, - -0.008371126, -0.021799104, -0.006994283, -0.025625512, 0.019716136, - -0.006547285, 0.014324038, -0.0120892115, 0.0016020411, -0.006093426, - -0.0019096021, 0.016466, -0.008010649, 0.014549338, -0.012968856, - -0.0016446861, -4.7696663e-5, 0.004444823, -0.023550456, 0.004541575, - 0.017181234, -0.024722636, 0.012011195, -0.008761276, 0.0044059483, - -0.005600408, -0.0043384545, 0.0018191693, 0.0052110464, -0.005826698, - -0.015379358, -0.008403769, -0.03198748, -0.036170784, 0.03274568, - -0.015970148, -0.00580279, 0.015891194, -0.005998437, 0.006430131, - 0.016830336, -0.023039777, 0.010429417, -0.0015271023, 0.006833756, - -0.031358145, -0.027879141, -0.014932307, 5.848981e-4, 0.0045107347, - -0.020993097, -0.004396329, 0.010154431, -0.023250055, -0.015940074, - -0.04114042, -0.016340723, -0.0012286108, 0.019210702, 0.0021966754, - -0.0046566436, -0.0011245892, 0.0088826055, -0.002431303, -0.005167516, - 0.001878619, 0.004595101, 0.019954415, 0.026203878, 0.030638695, - -0.009077437, 0.01737364, 0.0010661251, -0.005224379, -0.029472351, - 0.019245049, 0.0024217945, 0.011759436, -0.024715884, -0.006564388, - -0.005898364, -0.0058833524, -0.0154475635, -0.03006051, -0.016736723, - 0.0066706524, 0.0048677134, -0.004469971, 0.01263092, -0.010298261, - 0.009210018, 0.016189294, 0.038784325, -0.0026649712, -0.019192759, - 0.021787945, -0.0026617497, -0.011009599, -0.0064192708, 0.017579207, - 0.004713244, 0.023789154, -0.006023559, 0.014551002, 0.008855554, - -0.01843078, 0.011590236, -0.0030778877, 0.022922266, -0.022726085, - -0.0022262253, -0.018625846, -0.005530342, -0.010452379, -0.037864987, - 0.020339252, 0.005259631, -0.013208221, 0.038159054, -0.015772995, - 0.015035321, -0.0073443907, 0.024108298, 0.008800856, -0.0036824995, - -0.013915309, 0.011500719, -0.023708668, 0.019345548, 0.0076122754, - 0.012257077, -0.021882, -0.0037169217, 0.013467583, 0.00906806, - -0.0028026495, -0.012121453, 0.004566274, -0.0049228915, -0.00471468, - -0.02997047, -0.0013606495, -0.02968735, -0.0039448244, 0.013138074, - 0.022292674, 0.012087676, 0.016954742, 0.022841735, -0.01485597, - 0.006469051, 0.011703469, -0.022053251, 0.005207429, -0.006593302, - -0.021757733, -0.023002662, -0.021287961, -7.1484887e-4, 0.018935584, - -0.014729567, 0.003618538, -0.021057079, -0.019669792, -0.015787294, - -0.0062660766, 0.0019003184, 0.016807362, 0.001555096, -0.002757437, - -0.013428964, 4.7598666e-4, -0.011010818, 0.01586283, 0.016542051, - 0.0058732033, -0.0012366073, -0.035470374, 0.016991109, 0.026603572, - 0.008204187, 2.8293945e-5, -0.025486227, 1.3373511e-4, 0.0020681166, - 0.0142608145, 0.0068064616, -0.04914332, 0.020948369, -0.01144428, - 0.0013138212, 0.010487755, -0.0124941915, 0.006548212, -0.010910663, - 4.7156127e-4, 9.5765333e-4, -0.009616598, 0.007924338, -0.011849581, - 0.0013240597, 0.009293001, 0.008668886, -0.0113571435, 0.023676384, - 0.01333077, 0.027048761, -0.013086818, 0.014211556, -0.015323763, - -0.0074022342, -0.00917913, -0.014842588, 0.0029517654, -0.0014059553, - 0.0048920345, 0.027830059, -0.006517229, -0.019911705, -0.0021008523, - -0.010762714, -0.011025815, 0.008737536, -0.0078025125, 0.011780354, - 0.0016278394, 0.0028098826, -0.0041832533, -0.0044452935, 0.037478924, - 0.011851478, -1.2040184e-4, -0.039296478, 0.0075019756, 0.029645652, - 0.034434803, -0.016514178, 0.023197053, 0.009383045, -0.0147843445, - 0.0028459285, 0.002442359, 0.014071507, 0.010276643, 0.014418385, - 0.00953553, -0.0030670897, 0.023569232, -0.0037993162, -0.011873122, - 0.024716677, 0.01603021, -0.0019985298, 0.036138963, -0.0051103435, - -0.029715177, 0.024528788, -0.0034487206, 0.013283148, -0.0030461296, - -0.0026845504, -0.0032511156, 0.021197869, 0.018301694, -0.009501451, - -0.023190193, -0.008929567, -0.003891408, 0.020113882, -0.015357762, - 0.011525205, -0.013846257, -0.0031540021, 4.7308335e-4, 0.0048969276, - 0.0013077635, -0.020202339, 0.007298825, -0.01247169, -0.015095075, - -6.9859985e-4, 0.008130691, 0.016959617, 0.0071803667, -0.04346514, - -0.0022198053, 0.010367691, 0.0060336366, -0.011727503, -0.009246477, - -0.0333491, 0.0040563974, -0.017766135, -0.016293166, -0.00684769, - 0.013707935, -0.008551535, -0.015772365, 0.0059100506, 0.007899977, - -0.014797016, -0.011016929, 0.004354716, -0.010177451, -0.014911122, - 0.007852081, -0.018713946, -0.0038447296, -0.008776986, -0.018573696, - -0.0016459607, 0.0079638995, 0.015724204, 0.017796155, 0.018167429, - -0.017346412, 0.029639527, -0.004802459, 0.010542779, 0.029013146, - 0.008804067, 0.02073176, 0.0048128697, -0.017866623, 0.026136082, - 0.019639913, 0.01012279, -0.02541897, -0.024022916, 0.015524335, - -0.003271234, 0.016532412, -0.014416209, 0.04018938, 0.02167739, - -0.011160319, -0.007008336, 0.0032157735, -9.87868e-4, -0.0039120084, - -0.0043766084, -0.009114807, 0.03341087, 0.0024472903, 0.0038875877, - 0.0035730302, -0.003691184, -0.015801389, -0.0075618788, -0.0031632795, - -0.011159154, 8.7272935e-4, 0.013504687, -0.01880522, 0.017155273, - -7.0395303e-4, 0.022573361, 0.036690228, -0.019476408, 0.004517482, - -0.0011939667, 0.0018976578, 0.03009959, 0.00958419, 0.016696481, - 0.0038256836, -0.0037347097, -0.0076935817, -0.021113293, 0.010387393, - -0.0044751186, -0.016961645, 0.017623123, 8.571571e-5, -0.013965064, - 0.014126349, -0.0022731002, 0.0026644105, -0.025832586, -0.0043877866, - 0.011033202, 0.017716648, -0.003699615, 0.007823415, -0.011356926, - 0.010055563, 0.01643992, -0.012710259, -0.010285436, 0.011394565, - -0.022260427, -0.022577206, 0.015517927, -0.0061446643, 0.017148957, - -0.016497485, -0.014215912, 0.0070588016, 0.038702663, 0.0054292157, - 0.016379178, -0.004898736, -0.013056333, 0.00873539, 0.017631609, - -0.01145736, 0.011807904, 0.016517408, 0.007200065, 0.005817171, - 0.0015186566, 0.024072276, -6.97349e-4, 0.01461998, 0.012797497, - -0.022231745, -0.004124234, -0.001157035, 0.007932726, -0.027925473, - 0.00496654, -0.013610668, -0.017200615, 0.011324448, -0.014486372, - 0.009284286, 2.1036949e-4, 0.006679908, 0.009472736, 0.0014007924, - -0.003970556, 0.029490154, 0.013244327, -0.012859254, 0.008593246, - 0.028264616, -0.009963425, -0.002762029, 0.0058417786, 0.011584817, - 0.022843366, 0.024669971, -0.0040740534, 0.010406466, 0.01613738, - -0.03316159, 0.0065273433, -0.01073808, -0.005787323, -1.561517e-4, - -0.020356702, 0.0047557303, -0.020138664, -0.0033544013, 0.005932955, - -0.03049049, -0.0011620551, 0.026377963, -0.010715252, -0.0046915547, - -0.002043918, 0.031693865, 0.0035103045, -0.0076230876, 0.013806846, - -0.013695727, -0.0054919836, -0.005147311, -0.005555359, -0.0065903664, - -0.004469464, 0.017782407, -0.017344415, 0.008239805, 0.004028248, - 0.016462605, 0.0063931905, -0.028246045, 8.8949286e-4, 4.405322e-4, - 0.005815367, -0.005593969, -0.03522957, -0.024491683, 0.008224834, - 0.0023955589, 0.0022976543, -0.01064046, 0.026788967, 0.01538953, - -0.021772906, -0.01586032, 0.008632177, 0.010342357, -0.0129737565, - 0.027072215, -0.016817417, 0.008867249, 0.0016775824, 0.003687547, - 0.012640458, -0.016113268, -0.008794581, -0.017679393, -0.01905987, - -0.016307538, 0.017536795, 0.0060420604, 0.027477609, -0.013566042, - 0.013824178, -0.03314994, -0.016578062, -0.0081603145, -0.0149341235, - 0.013973882, -0.012491523, -0.029189246, 0.017258994, 0.0025031872, - 0.010917546, 0.029278163, -0.01446944, -0.008026368, 0.019500783, - -0.02127032, 0.01907394, -0.014811668, -0.026807545, -0.015045526, - 0.023630058, -0.018947372, -0.0033626289, -0.012677033, 0.0034154132, - -0.0040808655, -0.0047909357, 0.013579304, -0.018738903, 0.013200527, - -0.016241902, -0.0111470325, 0.0021965844, -0.0075301253, 4.3236607e-4, - -7.358317e-4, 0.0010163339, 8.8886474e-4, -0.01822574, 0.008350621, - -0.014162412, 0.02675068, -0.009761989, 0.010425963, -0.037424292, - 0.011289002, -0.026492838, 0.004699274, 0.017179562, 0.01123273, - 0.008439534, 0.009981886, -0.016009975, 0.011523272, 0.019557042, - -0.007938115, 3.2145908e-4, -0.025154503, 0.023041671, -0.008645977, - 0.003909234, -0.0346465, 0.022856295, 0.005416071, -0.012600213, - 0.021936875, 0.0035105345, 3.2565344e-4, -0.0072203972, -0.002307265, - -0.011559326, -0.034181178, -0.012247859, 0.01755737, 0.0131463865, - -0.013822754, -0.016839113, 0.0066024573, -0.018606314, -0.021494836, - -0.0020677724, -0.00762892, 0.0043343804, 0.012115688, -0.010033406, - -0.0069730124, 0.022605803, -0.006255374, -0.038658965, 0.010471086, - 0.007362072, -0.010972985, -0.009737294, 0.0015540244, 0.0032326018, - -0.0101197865, 0.0030169492, -0.016622832, 0.003942313, 0.01731036, - 3.2758126e-5, 0.010282996, 0.008625547, -0.013794309, 0.0012681173, - -0.01293841, -0.021366946, 0.0113056, -0.0103110345, -0.0029354435, - 0.004678011, -0.018749427, 0.012676572, 0.004736247, -0.009918007, - -0.012974669, 0.018039571, 0.017084016, 7.4457447e-4, 0.012729025, - 0.0050310283, 0.010508059, -0.01086755, 0.03087419, 0.030390637, - 1.6644536e-4, 0.01844394, -0.00404258, 0.010998533, -8.202181e-4, - 0.024261072, -0.029485414, 0.0039256522, 0.003924204, 0.0114751635, - -0.011063973, 0.016159985, -0.0014944867, -0.011418861, 0.007071776, - 0.013091118, -0.008842935, -0.011508784, 0.0017980483, 0.015347492, - 0.00987631, -0.008179016, -0.01296527, -0.011607784, 0.042416062, - -0.024285411, 0.005844065, -0.014603788, -7.226775e-4, 0.01971805, - 0.018147025, 0.0066063358, -0.015999507, -6.3371647e-4, 0.0011232722, - 0.0052539706, 0.0023929717, 0.02186219, 0.018526938, -0.010219567, - -0.018170428, -0.01296737, 0.016186154, -7.5787643e-4, -0.015318358, - -0.0054069455, -0.015900947, -0.017312996, 0.03802668, -0.01444246, - 0.01642457, 0.008674476, -0.010084095, -0.003302092, 0.006872945, - -0.026677996, 0.002445863, -0.01921117, -3.737404e-4, -0.016312769, - 0.0106470585, -0.010556054, 0.0042845006, 6.5842184e-4, -0.009264461, - 0.02638841, -0.023830557, -0.011784903, -0.024964849, 0.011800454, - -0.022486148, -0.0032135316, -0.010827222, -0.021215862, -0.0060139596, - 0.01243665, -0.03023361, -0.030788215, 0.011721862, -0.019708492, - 0.009261666, 0.005717502, -0.004065863, -0.017571405, 0.011278848, - 0.014881466, 0.011401483, -0.026944175, 0.01830512, 0.016614648, - -0.00990976, -0.0025253326, -0.0071634455, -0.006136919, 0.0057613137, - 0.03364961, 0.01136712, -0.01869013, 0.02453188, -0.010036731, - 0.011624065, -0.027992534, 0.022702115, -0.014668315, -0.04032123, - -0.006784177, 0.010574617, -0.012593591, 0.011069658, 0.0018113928, - -0.012703057, 0.0156056555, -0.02280328, -0.0050480827, -0.009426034, - -0.002748496, -0.011629329, -0.0037043195, -0.0036048137, -0.011141271, - 0.016309941, 0.007528335, 0.0012120015, 0.0026817196, 0.008858327, - -0.00102239, 0.006573687, 0.021967418, 0.017107926, 0.037814442, - 0.006598425, 0.0011912143, 0.030740252, -0.010254548, 0.008572063, - -0.017016, 0.0040058712, -0.003928288, 0.02629186, 0.0021304295, - 0.021505727, 8.2875736e-4, 0.011490806, -0.018867565, 0.010576722, - 0.0043429337, -0.022778558, -0.0065867044, -0.002867409, -0.018278386, - 0.019241102, -0.0014071531, -0.0019899749, -0.008529966, -0.008931442, - 0.009162307, 0.011438441, 0.005687937, 8.116745e-4, -0.020194246, - -0.011915417, 0.02737285, 0.027925817, -0.010717312, -0.0077980794, - -0.015864575, 1.1058616e-4, -0.0065239933, 0.029333442, -0.0030758984, - 0.028466444, -0.0018946552, 0.009155784, 0.014308033, -0.0030168314, - 0.014432714, 0.0018775958, 0.027078504, -0.026252069, 0.0047173295, - -0.009700847, -0.019252026, -0.0038956546, -0.020130308, -0.029227912, - 0.0191834, -0.0014787728, 0.0060932986, 0.0017157941, 0.026969753, - 0.0039795307, -0.008061537, -0.005165765, 0.0071150092, 0.04103926, - -0.015682373, -0.0075410614, -0.0114993295, 0.010777174, 0.012895706, - -0.010640596, 0.0086100595, -0.008542615, -0.003915407, 0.0077990703, - -0.013774852, -7.277339e-4, -0.0016845487, 0.016599096, -0.008770168, - 0.04628705, 0.010908805, 0.011006015, 0.003287383, -0.024453288, - 0.004992946, -0.00381536, 0.0062917364, -0.010289073, -0.016703604, - -0.01260478, -0.0037939227, 0.015154966, -0.009758275, 0.009731421, - 0.019228542, -1.0473921e-5, -0.0073653283, 0.0030624312, -0.02063364, - -0.010905628, 0.030550953, 0.020433936, -0.009216332, -0.020393245, - 0.014904953, -0.009955062, -0.017873116, 0.021760492, 0.010808343, - -0.0043038568, -0.0014607075, 0.019067315, -0.006618372, 0.011280556, - -8.9869776e-4, -0.004944726, -0.005403057, 0.020524869, 0.022804402, - -0.004505569, 0.041828513, -0.02244166, 0.005442584, -0.004683182, - 0.011019526, 0.028891856, -0.019166192, 0.003300434, -0.006488534, - 0.015940938, -0.025390329, 0.020182922, -0.022603387, -0.009942044, - 0.019279214, 0.00781525, 0.0025098734, -0.01533796, 0.0050772834, - -0.020214416, 0.002053536, 5.860867e-4, 0.018641936, 0.024525853, - -0.016270502, -0.015680974, -0.006375699, -0.019207746, -0.018782703, - -0.011777501, 0.024871744, 0.0144236265, -0.0068348404, -0.012338214, - -0.03303377, -0.019923618, 0.021770729, -6.468714e-4, 0.0010298033, - -0.011577814, 0.027274018, -0.013817105, -7.522601e-4, -0.010061618, - -0.009011193, -0.023407182, 0.007250012, 0.021591606, -0.018367901, - 0.008099803, 0.018495884, 0.016314644, -0.0377512, 0.021698274, - -0.011613861, 0.010374052, -0.016951108, -0.028250458, 0.0060350946, - 0.0043324945, 0.008564604, 0.0325168, 0.009798741, 0.007073378, - 0.0064924057, 0.009152806, -0.019932374, -0.007688265, -0.006178134, - 0.0046507516, -0.032927666, -0.0018743863, 7.769634e-4, 0.0033617537, - -0.0346465, -0.035125, -0.02105347, 0.009473933, -0.0068401657, - -0.0026690827, 0.02644054, 0.02286249, -0.0037852018, -0.0076520713, - -0.043436788, 9.845373e-4, 0.004217376, -0.010361588, 0.021407649, - 0.013202923, 0.0016895843, -0.003354738, 0.0026387342, -6.551145e-4, - -0.029662516, -0.024119355, -0.009666653, -0.018741388, 5.442628e-4, - 0.022984745, 0.0034082506, 0.028757175, 0.0019051222, -0.0070383586, - 0.0036689206, -0.011444434, 0.0010705541, -0.007444227, -0.0134931635, - -0.0038881653, -0.006502851, -0.014095897, -0.016904414, -0.028187266, - -0.0040128017, -0.017756512, -0.0033695225, -0.024763202, 0.005068384, - -0.017704023, -0.004281943, 0.009628342, 0.027696954, 0.0076825186, - -0.022240253, -0.040977057, -0.018318314, 0.01230653, -0.012706308, - 0.011496023, -0.014245171, -0.022056282, -0.01649236, 0.012187447, - 0.008534873, 0.006589331, 0.015429067, 0.0017543839, 0.002692378, - -0.0153442975, 0.0044292323, 0.016937558, -6.390732e-4, -3.8119656e-4, - 0.0030416362, -0.023071907, 0.0037805391, 0.016639918, 0.017188674, - 0.004298614, -0.0016807931, -0.013297252, 0.023717139, 0.016266001, - 0.0086952625, -0.004403936, 0.02495845, 0.012692579, 0.011589726, - 0.0020524482, 0.007497817, 0.019352201, 0.01979353, -0.009813617, - 0.02620001, 0.029572545, -0.009823583, -0.0181087, 0.030124728, - 0.026254678, 1.9214394e-4, 0.004669144, 0.007726193, -0.014574801, - -0.0046080463, 0.0073205796, 0.0029660126, -0.0037475454, -0.0079837525, - 0.013512747, 0.0026205452, 0.001605993, -0.007476954, -0.005450795, - 0.0075097214, -0.0039404067, -0.0028450226, -0.0065979525, -0.00989903, - 0.010177592, -0.006344577, -0.0016593065, 0.029392378, -5.1404233e-4, - -0.004982442, 0.007702662, -0.006225981, 0.03360802, -6.808977e-4, - -0.023352433, 0.0050933133, 0.020545805, -0.007935055, 0.011382813, - 0.0059627565, 0.022065181, -0.026122417, 0.016501782, -0.004613709, - 0.01591888, 0.006676238, -0.023026189, -0.008417851, 0.004083331, - -0.0153776435, -0.010451086, 0.0033815503, -0.012935365, -0.014222578, - -0.004358579, -0.00649743, 0.020031726, -0.00101058, 0.018168464, - -6.8337057e-4, 0.010580634, 0.004338215, 0.0046434635, -0.0114170415, - 0.0069952435, -0.003010597, 0.008813514, 0.013253094, 0.019623341, - 1.7300154e-4, -0.019655835, 0.016825695, -0.012561064, 0.004352297, - 0.026833637, 0.01929253, -0.0075038644, -4.015227e-4, 0.0120985275, - -0.032765202, -0.0059393966, 0.0011370206, 2.9839278e-4, -0.006373994, - 0.014769025, 0.002623559, -8.0163876e-4, 0.0011095445, -0.0011657192, - -0.010990757, -0.020238029, -0.0095402915, -0.0058241794, -0.0116874995, - -0.015642354, 0.021283064, -0.0037420916, -0.021417288, 0.011227077, - -0.009565957, -0.0021244115, -0.0053721634, -0.003971633, 0.013605828, - 0.014607084, -0.012006021, 0.012234636, 0.017724276, -0.023595842, - -0.013469068, -0.015600757, 0.016959416, -0.014597141, -0.011622501, - 0.0037542954, -0.018274285, 0.0034266566, -0.04819962, -0.016479649, - -0.020720575, 0.019118443, -0.016848886, 5.968093e-4, -0.0015624943, - 0.05724137, 0.007852131, -0.0071486444, -0.0031211958, -0.008881489, - -0.0189827, 0.012329645, 0.025773924, 0.010590505, 0.025983727, - -0.02694722, -0.015420403, -0.011389156, -0.0045200167, 0.008845484, - -0.0058314293, 0.013892589, -0.0040911855, 0.0016436349, -0.013861261, - 0.013757664, -0.022167355, -0.0036526981, -0.0053032157, -0.0061512236, - 0.014250412, -5.4932013e-4, -0.00888414, 0.009904965, -0.012125384, - 0.022622578, -0.02430642, 0.015757361, -0.012541149, 0.026200255, - -0.025128182, 0.0030030175, -0.003014324, -0.017358111, 0.005255585, - 0.027458858, 0.0043813884, -0.0064677913, 0.02805993, -0.01664266, - 0.009896602, -0.002625396, -0.013652978, 0.0059978887, 0.016331973, - 0.007984523, 0.0071951523, -0.0255717, 0.022908393, 0.0018093203, - -0.01054412, 0.017715689, 4.3229645e-4, -0.009975009, 0.024212306, - 0.01287376, 0.01776426, 0.015019648, 0.0183454, -0.013053282, - -0.017486338, -1.4085659e-4, 0.022937426, -0.021402346, 7.404023e-4, - -0.010511855, 0.001047115, 0.041493915, 3.4561058e-4, 0.0020077962, - 0.002917652, -0.010697025, -0.016301293, 0.0118281515, 0.0028952495, - 0.020681886, -0.025942996, -0.0024413962, -0.005524163, -0.011960012, - -0.02963856, -0.0049767797, -0.019516766, 0.0037437435, -0.007237135, - 0.020160599, 0.011443631, -0.0011735832, -0.013287966, 0.002190156, - -0.0032334542, 0.0032228143, -0.012596858, -0.0041599176, -0.01292679, - -0.02369376, -0.014225539, 0.013704022, 0.009680417, -0.0167615, - -7.5406104e-4, -0.034612894, -0.01083162, 0.014790219, -0.012532903, - 0.009238097, 0.03551291, 0.002551632, -0.008644904, 0.004777047, - 0.014402704, -0.005115672, -0.020711794, -0.005219141, -0.009428913, - 0.0331018, 0.006677667, -0.01944779, -0.009418482, -0.007218994, - -0.017257445, -0.006470304, -0.0011545877, -0.031369068, -7.151588e-7, - -5.229953e-4, 0.005981314, 0.0055204197, 0.0061575957, -0.003733737, - -4.1460127e-5, -0.009195774, -0.008786617, -0.009931719, 0.01015129, - 0.03351906, -0.0026728795, -0.006353836, -0.0027315682, -0.003970234, - -0.022308337, 0.021038668, -0.031228757, -0.020561438, -0.0028282714, - -0.0058714147, 0.030590398, -0.013629436, -0.0121956365, 0.008060024, - 0.009755476, 0.004398154, -0.006816674, -9.615353e-5, -0.015482908, - -0.0039230697, 0.009475179, 0.003154544, -0.029237375, -0.0037643064, - 0.001241706, -0.0071841828, 0.0056875977, 0.013370732, -0.014569921, - 0.03396077, -0.0081793945, 0.028405372, -0.010252192, -0.0029959634, - -0.018304132, 0.019841662, -0.007971621, -0.033618934, 0.010797082, - 0.0106042735, -0.022827838, -0.0064982404, 0.015190407, -0.012388754, - 6.553039e-4, -0.015539008, -0.02395077, -0.042575188, -0.0036946281, - 0.002830001, 0.020973235, -0.006303977, 0.016352894, -0.001973545, - 0.02675491, 0.0132561205, 0.004549566, -0.024401434, -0.00571942, - -0.03370649, 0.042082924, 2.3490674e-4, 0.006344041, 0.006327433, - 0.007945982, -0.0022261103, -0.011659885, -0.0037382978, 0.022840023, - 0.005332247, -0.024685694, -0.0101132225, -0.007973648, 0.015330162, - -0.027386984, 0.0070823347, 0.019334005, 0.0046343748, -0.0032594656, - -0.03795781, 0.010827143, 0.008403031, 0.022999717, -0.020557323, - 0.013903555, 0.013704895, -0.016972022, 0.005521716, -0.009739085, - -0.012027557, -0.006401926, 0.020437175, -0.038780905, -0.016381022, - -0.021596761, 0.018549966, 0.024640117, 0.013459179, 0.0033768085, - -0.011564077, -0.04159887, 0.0051975795, 0.027751932, -0.013932859, - 0.0077121733, -0.022007933, 0.019870035, 0.0027270578, -0.007662139, - 7.8649295e-4, 0.013756028, -0.011372106, -0.022535969, 0.0042379843, - 0.010105895, -0.01928781, 0.009221941, 0.002761612, 0.002873295, - 0.003023305, -0.008906399, -0.012919019, 0.0013546199, 0.026700964, - -0.009841839, 0.018669061, 0.009973383, -0.0029563773, 0.021315677, - 0.017117647, -0.015548699, -0.010664891, 0.007988425, -0.0025662817, - -0.03680315, 0.019802483, 0.010368157, -0.0035079, 0.0031384884, - -0.007609491, 0.007109243, 0.015115197, 0.011065399, -0.018821847, - -0.023045518, 0.039225437, -0.026678087, 0.0068734605, -0.0087135965, - 4.1346697e-4, 0.010678033, -0.0048235874, -0.019671928, 0.01783117, - 0.0056513813, 0.012055734, -0.007298926, -0.016804647, -0.00679967, - -0.010949214, 0.026612256, 0.0067526456, -0.011717172, -0.010741961, - 0.015551392, 0.00824937, -0.02036229, 0.008464886, -0.020251712, - 0.0044871275, -0.0061061047, -0.01287046, 0.010435151, 0.011508919, - 0.0098129995, -0.009666054, 0.033835452, 0.0097984895, -0.019407561, - 0.013377082, 0.011023355, 0.009183584, -0.022839572, -0.027410671, - -0.008037039, 0.025747456, -0.03510103, 0.016522784, -0.004135457, - -0.004867577, 0.0060215546, 0.012535749, 0.014855067, -0.0035094742, - 1.8988398e-4, -0.0074537448, -0.003290937, 0.013167296, 0.00761164, - 0.0067859115, 0.0044271485, 0.014625553, -0.011201933, 0.0029202148, - 0.012637703, -0.014124952, -2.9371005e-5, -0.013752396, -0.016124865, - -0.0066130627, 0.0040495377, 0.023416333, -0.02546576, 0.015690701, - -0.011959989, -0.0049058083, -0.0242857, 0.028743826, 0.0064514577, - -0.0022053686, -0.0021568846, 0.0030817462, 9.857401e-4, 4.5457622e-4, - -0.023949616, -0.0021611175, -0.010047898, 0.010342129, 0.0038121238, - -0.009487175, 0.041092683, 0.025288707, 0.020234289, 0.0014862493, - 0.03250075, -0.014189929, -0.0023258447, -0.014791324, 0.007777988, - 0.032831308, -0.009475144, -0.0028661, -0.021896595, -0.013353441, - 0.012838119, -0.013816243, 0.020994172 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + "carrots", + "parrots" + ], + "source.contributors.agent.id" : [ ], - "features2": [ - 0.01984825, 0.02439034, 0.021774095, 0.01426651, 0.0029702839, - -0.03192843, 0.008365251, 0.016817015, -0.03498482, 0.008872861, - -0.00250738, 0.017481787, 0.018945698, 0.02228429, -0.016343359, - 0.0079233, -0.02885567, 0.016229289, 0.034733266, 0.008138702, - 0.0062745153, 0.0022027316, -0.01135323, 0.012191736, -0.0036488343, - -0.0068221223, 0.019663766, -0.010304662, -0.015908767, -0.0076136943, - -0.004132949, -0.017308429, 0.020449944, 0.0109116025, 0.026945695, - -0.019514194, 0.020150742, -0.0144641185, -6.743035e-4, -0.024405098, - 0.010308915, 0.0037309187, -4.7787646e-4, -0.007573043, -0.0086131655, - 0.013992024, 0.009989761, 0.009241956, 0.018406386, -0.013511738, - 0.0016699735, -0.0067961095, -0.026931264, 0.0020872068, 0.012464981, - 0.0015082103, -0.02192035, 0.004391498, 0.010765892, -0.02030414, - 0.015764521, 0.012089799, -0.013009944, -0.0047375048, 0.017669005, - 0.009094899, 0.008395133, -0.009104105, 0.005431964, 0.015660899, - -0.007695189, 0.022488352, -9.040699e-4, -0.0011295176, 0.0078110658, - 0.0025454904, 0.0037620235, 0.012942455, -0.021977562, 0.013426797, - -0.0060418057, 0.015124454, -0.0030753356, -0.01138386, 0.007459295, - -0.01692447, -0.020280564, 0.008160253, 0.044266846, -0.015140664, - 0.059280515, -0.018690394, -0.0051935962, 0.020488726, -0.009933303, - 0.020314975, -0.019493159, -0.016335871, 0.0057814266, -0.0028163802, - 0.019635027, 0.0071855914, -0.02218389, 0.010250317, 0.021371126, - 0.026981376, -0.03430877, 7.2311197e-4, 0.0075597647, 0.009997919, - -0.03615212, -0.0024272806, -0.0015476665, -0.012164594, -0.029615242, - -0.0010779024, 0.017537316, -0.0133485785, -0.0036211754, -0.020833928, - -0.005276818, 0.014852151, -0.025136216, -0.014568609, 0.00803529, - 0.025948295, -0.018655544, -7.3907286e-4, -0.031152165, -0.0076573086, - -0.017411755, 0.023271084, -0.0071836943, -0.00623617, -0.013779516, - 0.0032333932, -0.0070829117, 0.0023539953, -0.02170916, -7.4982597e-4, - 0.0039397236, -3.833148e-4, 0.027337696, -0.034293175, 3.8046168e-5, - -0.002645121, -0.004531754, -0.024649229, -0.011938059, -0.009400945, - 0.013354155, -0.017868925, 0.020801459, 0.00112257, -0.0148681225, - 0.019212147, -0.029797297, 0.022463972, -0.010438086, -0.008643799, - 0.021025967, 0.01628016, -0.015834246, 0.002432021, 0.0017966968, - -0.0022009565, 0.02563899, -0.0047288705, -0.019903751, -0.0095944, - 0.0064216075, 0.025172774, -0.001495854, 0.017360423, 0.009097278, - -0.01787298, -0.023295647, -0.01900605, -0.023346866, -0.019570256, - 0.0065284315, 0.012082104, 0.0064705047, 0.004288244, 0.021878665, - 0.0023842778, -0.0055790315, -0.02813923, -0.022130707, 0.024077808, - 0.020569276, -0.015121239, -0.0019186516, -0.007225209, 0.010905917, - -0.0057962444, -0.011108719, -0.018439421, -0.028073093, 0.0015221584, - -0.0012716207, -0.003916807, 0.027022416, 0.0195104, -0.009888368, - 0.006857878, -0.023638815, 0.0024235765, -5.9554435e-4, -0.004189278, - -0.008085579, 0.012483114, -0.0058695087, -0.016095215, 0.016197985, - -0.005020779, 0.020117886, 0.004466683, -0.0025972135, 0.014585317, - -0.015725607, 0.03483285, 0.008357434, 0.023461757, 0.0016376195, - -0.015592423, 0.009394739, 0.0131525425, 0.0083784945, 0.002557151, - -0.013613788, 6.968438e-4, 0.015413047, 0.0038298476, 0.00540301, - 4.535604e-4, -0.020801522, -0.0050409115, -0.010587619, 0.0103405975, - -0.00369738, 0.0075495164, 0.046805203, -0.005991633, -0.019760696, - 0.003052924, -0.02084063, -0.011960914, 0.013214232, 0.00939991, - 0.013889199, -0.01849563, -0.01390152, -0.026637945, -0.004921423, - 0.0299299, 0.02401965, 0.0032400412, -0.015435787, -0.0061893384, - -0.0018934711, 0.003616291, 0.006636794, -0.014457892, 0.016699715, - -0.01476341, -0.008132253, -0.021233251, 0.0026787857, 0.007888971, - -0.014859434, -0.00779855, -0.0041032517, 0.023776453, 0.0061206194, - -0.01957323, 0.016685376, -0.024464436, 0.0019617812, -0.015726548, - -9.391595e-4, -0.0077959644, -0.0033690247, 0.021452302, -0.0073122242, - -0.0032228578, -0.0072731506, -0.00589449, 0.020824676, -0.0018797007, - 0.021908056, -0.016053556, -0.021946976, -0.01131023, 0.012312503, - 0.01180637, -0.0012366726, -0.008771023, 0.015944708, 0.011878112, - -0.015068073, -0.01799644, -0.016126366, -0.013934623, 0.027401054, - -0.019262273, 0.035530142, -0.006212973, 0.009120017, -0.030030971, - 9.3047926e-4, -0.02144708, -0.0041917725, 0.03142865, 0.01237807, - -0.019751048, -0.008752742, 0.035583235, 0.015817724, -0.01168194, - -0.008994169, 0.013758031, -0.0016774617, 0.017859956, 6.0530787e-4, - 0.02489785, -0.0068656304, 0.008879561, 0.001860778, -0.007742792, - 0.005018321, -0.0038101613, -0.02385392, -0.006059289, -0.011916267, - 0.0034915956, -0.0082030315, 0.015417623, 0.027745109, -0.0018744471, - 0.004807325, -0.003583096, -0.004295636, -0.0020483711, 6.108068e-4, - 0.015274873, 0.025574105, 0.019715542, 0.023285156, -0.004268812, - 0.0014667241, -0.0056577306, -0.009549841, 0.00580945, -0.022745384, - 0.0059459866, -0.019301549, 0.008762026, 0.019580176, -0.0055363127, - 0.010293732, 0.01630479, -0.0049998453, 0.005504514, -0.032614335, - 0.013170092, 0.0053869127, -0.027158597, 0.008408825, -0.012527436, - -0.023450267, -0.016257148, -6.6317024e-4, 0.015204233, 0.024172705, - 0.0123699345, -0.008237223, 0.012376713, 0.009979217, 0.009280703, - -2.8222968e-4, 0.02966244, -0.016726524, 0.0040812367, 0.0017300159, - -0.017344955, 0.011035998, -0.006144604, 0.01175436, -0.0037862272, - 0.0055489284, 0.009065642, 0.005087089, -0.03165887, -0.010220649, - -0.005523741, -0.0012378988, -0.008417625, 0.013631279, 0.022618229, - -0.009805423, 0.012075163, 0.028758697, 0.012281856, -0.0070887515, - 0.030669773, 0.007097387, 0.018653331, 0.012427035, 0.0035495565, - -0.008689796, 0.013649212, -0.008736952, -0.0062127495, 0.015692942, - -7.0060475e-4, -0.015297614, 0.014867182, -0.009319616, -0.0047980915, - 0.0031050646, -0.0054794718, 0.0065091182, -0.033053484, -0.003089064, - 0.0028136552, 0.014257143, -0.009474886, 0.0109707685, 0.01709077, - -0.010515541, 0.0035582294, 0.027611246, -5.010739e-4, 0.0032528443, - -0.014554304, -0.03391752, 0.0020275177, -9.5756154e-4, -0.0068620765, - 0.010223938, -0.002755345, -0.026237039, -0.0014661087, 0.020972209, - 0.030282285, 0.016849877, 0.0027524214, -0.01362106, 0.008141102, - 0.022463208, 0.014070437, -0.020947935, 0.002801435, -0.013625818, - 0.0066887713, 0.009176878, 0.013491973, -0.010834609, 7.4572454e-5, - -0.009321577, 0.0075515984, -0.035337854, 0.004655666, 0.0046373704, - -0.016493576, -0.009670951, 0.008998677, 0.0010388865, -0.0015970895, - -0.0017123938, 0.010977414, 0.020698244, -0.012965399, -0.013041635, - -0.011237093, -4.6165579e-4, -0.0073739267, -0.017758993, 0.035862084, - 0.0023334818, -0.013655249, 0.030152092, 0.00521302, 0.004868947, - 0.019205919, -0.0017209512, 0.003415855, 0.03283242, 0.019519096, - -5.5927376e-4, -3.1134256e-4, 0.0027913689, -0.004384885, -0.0016956613, - -0.004224504, -0.024085185, 0.0069275657, -0.0019339741, 0.0019827783, - -0.0033102643, -0.008699749, 0.01062528, -0.011394461, 0.0033155354, - -0.0020190384, 0.04319452, -0.012250371, 0.009486276, -0.014681452, - 0.005536574, -0.002644282, 0.0038802067, -0.01025207, 0.019637914, - 0.0022211205, 0.0100274375, -0.010587186, 0.01228507, -0.019322993, - -0.026853295, 0.0036990778, -7.8275765e-4, -0.0012338692, 0.008551387, - -0.008578318, -0.015832499, -0.013641012, -0.023806328, 0.009630148, - -0.017710067, 0.05418244, 0.016276145, 0.016705552, 0.0026864416, - -0.008713753, -0.021127913, 0.01113548, 0.003723139, -0.0126542235, - -0.01825366, -0.015841512, -0.013425262, 0.005261295, -0.005474612, - 0.0072027063, -0.003949707, -0.0071771243, 4.5284658e-4, -0.010106521, - 0.01575827, -0.007140322, 0.011063112, 0.002106871, 0.011301032, - -0.0011275007, 0.0063556363, -0.0082051465, -0.014127014, -0.007807351, - -0.009764406, 0.024898674, -0.014848694, 0.0013136802, 0.01053333, - 0.031055577, -0.001717507, 4.9329783e-6, -1.3358062e-4, 0.010074877, - -0.0070865303, 0.011494756, -0.011927068, -0.002721407, -0.005053478, - 0.001340591, 0.015020176, 0.0077053253, -9.1236254e-4, 0.0017320398, - 0.015523345, -0.019774208, -0.024383184, 0.021722937, -0.00757675, - 0.0055591995, -0.005851434, -0.0047801826, -0.001191665, -0.020294799, - -0.016642516, -0.011815386, 0.018602286, -0.013769761, -0.009206936, - 0.008471624, -0.0012115805, -0.0030466667, 0.025821608, -0.0046828073, - -0.0014196624, -0.007482696, 0.012420486, -0.010590027, -0.0031727068, - -0.015060922, 0.008262019, -0.004341121, -0.033036325, -0.0033829887, - -0.010713586, -0.0063580093, 0.008424831, 0.011942205, 0.021672977, - -0.0239997, 0.0135619445, -0.0020154396, 0.017794088, -0.006536873, - -0.011875418, 7.433509e-4, -0.01144275, 0.0010938421, 0.0029907369, - 0.00972894, 0.009897098, -0.009466985, 0.013752131, 0.0067466125, - -0.0030604084, -0.015426682, 0.0044407016, 0.0071785864, -0.006085376, - 0.012859789, 0.013128056, -0.025465127, -0.009881565, 0.010423659, - 0.010020855, 0.02472671, -0.01436499, 0.0059422394, -0.043612666, - 0.004316341, -0.005598904, 0.0032970677, -0.021356715, 0.017053017, - -0.007894449, -0.011225185, -0.023311578, -0.011768515, 4.2006234e-4, - 0.005329177, 0.02297719, 0.009434278, -0.013510512, 0.026185153, - 0.0026763135, -0.017638799, -0.0084262155, 0.0054161414, 0.028255152, - 0.014012265, -1.1045543e-4, -0.012841592, 0.0048112758, 0.006657551, - -0.007167967, 0.021090927, 0.0101078935, 0.011838006, -0.017160883, - -0.012491389, -0.0018363687, 0.009838894, -0.034185305, -0.0025890495, - 0.011164089, 0.0027008771, 0.014257978, -0.0070039798, -0.026274063, - 0.010191781, -8.715981e-4, -0.018843425, 0.0095563475, 0.017783817, - 0.015387614, 0.0018120124, 0.005486523, 0.0057401606, 0.0016534966, - 0.029397706, -2.688102e-4, -0.03221739, 8.510511e-4, 0.014216129, - -0.014191088, -0.03152229, -0.025764506, 0.010629705, 0.035517298, - 0.025068833, 0.0051657227, 0.01044052, 0.008636735, 0.0023204149, - -0.02196009, 0.023304798, -0.049348712, -0.018406052, 0.0024585708, - -0.019686341, -0.0153370965, 0.025448294, -0.01813732, -0.013922951, - -0.011902873, 0.017115513, -5.5345305e-4, -0.015629211, 0.02685082, - -0.012595728, -0.019297589, 1.6467724e-4, -0.027719988, -0.0027143522, - -0.019336786, 0.0023326343, 0.0059920023, -0.016564498, 0.015502023, - -0.0012900247, -0.012563978, -0.01915279, -0.025777759, 0.0027604364, - 0.016437141, -0.028589044, 0.022044906, -0.0047426294, 0.003545969, - 0.009430763, 0.0021303156, -0.0069420077, -0.013979921, 0.011616259, - 0.016345583, 0.0039255577, 0.019682128, -0.009194911, -0.014764344, - 0.020745998, 0.008081966, -0.015261205, -0.030434975, 0.01691422, - -0.03855009, -0.01152232, -0.027990915, 0.010000473, -0.0012023256, - -0.023984263, 0.028541932, -0.00792509, 0.0073338435, -0.012099035, - -0.004995418, 0.010718632, -0.0238306, 0.007870679, -0.012223639, - 0.010387044, 0.014194108, 0.02349007, 0.0452533, 0.0031645112, 0.015975, - -3.643076e-4, -0.0063688294, 0.010024005, -0.02059959, -0.0013497681, - -0.019655034, 0.011341994, -0.032840062, 0.01522839, 0.0117351385, - -0.01928263, 0.008596846, -0.01534191, -0.002829281, 0.014870919, - 6.232773e-4, -0.012790975, 0.01878689, -0.017782, -0.0023768125, - 0.008754701, 0.020398568, 0.028679106, 0.004702752, -0.0020862303, - -0.016316473, 0.015001369, -0.010856626, -0.028684672, -0.020366156, - 0.024578309, 6.357247e-4, 0.03324764, -0.0012391729, -0.028012002, - 0.0022066971, 0.0078393845, 0.017228985, -0.0070084934, 0.013394924, - -7.996622e-4, -0.015630238, 0.011499719, 0.009464095, 0.010860919, - -0.0076985024, 0.004811308, -0.007165799, -0.0105974525, 0.007689102, - 5.9628655e-4, -0.005600886, 0.02268912, 0.008158393, -0.023216154, - -9.229432e-4, 0.015657604, -0.001312356, -0.002347994, -0.0076173027, - 0.017372986, 0.015974388, -0.002017844, -0.0061542857, -0.0011319637, - 0.006469805, 0.010883226, 0.011568083, 0.013462449, -0.029641688, - -0.0058138026, 0.014306848, -0.0026434085, 0.018672056, 0.0069281193, - 0.0043521477, 0.017877232, -0.0020076744, 0.018944316, -0.04609106, - 3.1774925e-4, 0.0031894483, -0.025332151, -0.0048765647, -6.758167e-4, - -0.007251977, 0.002966271, -0.022130927, 0.0012567034, -0.01232486, - -0.0073040496, 0.03378206, 0.016000483, 0.0019543136, 0.018261438, - -0.00592775, 0.018354673, -0.014029736, 0.03637185, -0.015479184, - 0.021272877, 0.037207726, 0.040650625, -0.030929033, -0.0056439843, - 0.027522217, 0.013584285, -0.020654479, -0.028036373, 0.0013760674, - -0.007816174, 0.010160446, 0.0044489983, 0.008010162, -0.033385288, - 0.011701096, -0.009910978, 0.0066633476, -0.0361703, 0.045584287, - -0.020255063, 0.0033018296, 0.0069950353, -0.018566716, -0.012899388, - 0.022617565, 0.011086187, 0.01978447, -0.03949548, -0.0073791244, - -0.0077597876, 0.0018631971, 0.005593913, -0.014135786, -0.0022527908, - -0.025156146, -0.0061422023, 6.7724084e-4, -0.016491855, 0.013730073, - -0.027849663, -0.004822911, 0.014759527, 0.007008917, 0.0021605783, - 0.01062029, -0.022197485, -0.018002018, -0.019372415, -0.006131383, - 0.004533882, 0.010100134, 0.019528864, -0.008741117, -0.013531726, - -0.016005008, 0.012324553, -0.02606325, 0.004775441, -0.00732565, - 0.027539035, -0.0021308546, -0.0053311116, -0.0043404764, 0.007633121, - -0.0014016443, 0.019543527, 0.03150597, 0.014370825, 0.029509934, - 0.0035080402, 0.009277582, -0.009997163, -0.03244052, 0.010010727, - 0.033014145, 0.0012570722, 0.016084123, 0.011464796, 5.92414e-4, - -0.010535323, -0.021315215, -0.0021046074, 0.0011655609, 0.017514134, - -0.011115011, 0.024231423, 0.023303773, 0.002243316, 0.0054166303, - 0.010413791, 0.01742412, 0.002006973, 0.017658636, 0.011279937, - -0.0024386852, -0.028315488, -0.023068465, -0.008686318, -0.011592144, - -0.0074540717, -0.016021691, 0.019604826, -0.005949463, -0.007499449, - -0.011751366, 0.038007047, 0.012095423, -0.030929986, 0.0075357985, - -0.005101551, 0.02410151, -0.0033726995, -0.011732905, 0.007846551, - -0.019218482, -0.025588535, 0.0064638313, 0.002270485, -0.0054983324, - 0.0068940446, 0.03543495, -0.010177807, 0.011528156, 0.013088521, - -0.0098350225, -0.006377785, 0.008877368, -0.0075820177, 0.0133076655, - 0.03328759, 0.016996924, 0.01673291, -0.038380936, 0.013907926, - 0.013371366, -0.022061782, 4.8981915e-4, 0.030317195, 0.009886421, - -0.008868137, 5.7443243e-4, -0.004684379, -0.0030343395, 0.005985358, - -0.002437931, -0.011937173, -0.02326561, -0.006952111, -0.023911867, - 0.0060652504, -0.025931472, -0.022074467, -0.0074198944, 0.01311791, - -0.0077982186, 0.04078323, 0.023432482, -0.0048452523, -0.01392626, - -0.009777846, -0.016838124, 0.015700255, 0.008989336, 0.014219003, - -0.007902048, 0.01877343, 0.009755812, -0.004417912, -0.009407053, - -0.019821214, -0.015262694, -0.008396686, 0.015945278, 0.009357991, - -0.003635052, 0.0076684966, -7.8383036e-4, -0.033280198, 0.0027224056, - 1.7002427e-4, 0.002522113, -0.014269178, -0.011194466, 0.0021616102, - -0.0022756283, -0.011916634, -0.0012321157, 0.007699949, -0.015556059, - -0.01927626, 6.648291e-4, 0.0013314388, 0.008917155, -0.01762819, - -0.022046255, -0.008139374, 8.735602e-4, -1.2352459e-4, -0.02316997, - 0.022947319, 0.009911207, 0.0149151385, 0.004080777, 0.0036882698, - 0.012959426, -0.0026662075, -0.00295773, 0.031224273, -0.011388288, - -0.016588112, 0.011082176, 0.0018702614, 0.005524731, -0.0024739113, - -0.04123259, 0.03568927, 0.0012570677, 0.0027237658, 0.0315156, - -0.0015758448, -0.018018067, 7.988573e-4, 0.00758082, 0.01945131, - -0.013450497, 0.006586332, 0.0057512247, -0.007343211, -0.009098585, - -0.009541584, 0.01605609, 0.009002512, -0.0102812005, -0.0050624236, - 0.046216384, -0.008838092, 0.043284573, 0.0026788053, -0.018174028, - 0.009592107, -0.0070554535, 0.008686769, -0.0103718415, 0.02027087, - 0.007305877, -0.009219108, 0.012361807, -0.0070047663, -0.012304633, - 0.011019723, -0.023027526, -0.009646658, 0.02419294, -0.0016019265, - 6.676556e-4, 0.012649488, -0.012738516, 9.695033e-4, -0.0074822516, - 0.012073564, 0.01624168, 0.02176839, -0.020117147, 0.010953135, - -0.0076072062, 1.733864e-4, -0.0066665183, 0.0049769687, 0.019193217, - 0.016600106, -0.009086802, 0.0016342773, -0.005460249, -0.030926382, - 0.012981849, -0.0136015285, 0.006406968, 0.0098743485, -3.716079e-4, - 8.1128074e-4, 0.011268943, -0.0074975635, 0.0021030966, 0.02287185, - -0.0031976083, -0.0036150543, -0.0032257955, -0.005156054, -0.016638886, - -0.0142261125, -0.0060804156, 0.013436575, -0.0034079335, -0.01465113, - 0.007837287, 0.010380222, -0.0066451593, -0.0044893264, 0.0020247395, - 5.907199e-4, -0.0023313176, -0.006658313, 0.018906213, 0.038539752, - 0.037665125, -0.022634257, 3.4143453e-4, 0.012998353, 0.010143113, - -0.0023482176, -0.023278205, 0.021714142, 0.0077708177, -0.03410105, - 0.0077187237, 0.004492261, -0.009978802, -7.816468e-4, 0.012876708, - 0.0054736584, -0.009729988, 0.01615255, 0.009388551, -0.0078014727, - 0.012791641, 0.012932765, -0.0014292144, -0.009856293, -0.0022278724, - 0.010396683, 0.0035521702, 0.004409539, 0.03126121, 0.0076803565, - -0.011464002, -0.012795982, -0.020733794, 0.03996219, -0.0063738655, - -0.011171656, -8.519195e-4, -6.0456764e-4, 0.022186844, 6.598885e-4, - 0.011681399, 0.0057690083, -0.019607373, -0.013622212, 0.0054234616, - -0.01485871, 0.005142673, 0.011925669, 0.022179523, 0.020428, - -0.016130457, -5.8912794e-4, 0.0109765325, 0.016872656, -0.012587804, - 0.025330631, 0.016906893, 0.009879347, 0.022484552, -0.0026397672, - 0.002643605, 0.031298235, 0.022026597, 0.021054255, 0.04064212, - -0.046565115, 0.005173207, -0.011089111, 0.021365633, 0.007703666, - -3.9785978e-4, -0.016501619, -0.01738457, -0.01056639, 0.005774032, - -0.0061311712, 0.021750787, 0.0037188472, 0.025425306, -0.012115362, - 0.018819856, 2.757324e-4, 0.011958644, 0.0054753083, -0.006481537, - -0.02651663, 0.01383145, -0.028268047, -0.0019284509, -0.0032906202, - 0.033123422, 0.015263223, -0.0036103928, -0.006831403, -0.041216068, - -0.012375081, -0.0010828978, -0.009823922, 0.0073939855, -0.035749402, - 0.018542772, -0.015090069, 0.0019232995, -0.016043732, 0.0018013347, - -0.02399251, -0.01226083, 0.018254535, -0.020050216, 5.321467e-4, - -0.008565227, -0.016815988, -0.021872303, 0.006927364, 0.0035162317, - 0.02473071, -0.0068408786, 0.013814401, 0.017193677, -0.016110007, - -0.018532878, 0.018195098, 0.0059062056, -0.0042775664, -0.022605095, - -0.0023371414, -0.0042177024, -0.014809755, -0.00880846, 0.010402301, - 0.0045962227, 8.307208e-4, 0.0033021432, -0.02210731, -0.011664461, - 0.0051679453, -0.0066705416, -0.015995089, 0.0027625794, 0.017112937, - -0.001206154, 0.02668808, -0.012259972, -0.017015483, -0.0026918722, - -0.0033772418, 0.009524103, 0.021221671, 0.009656097, -0.001067209, - -0.005050644, 0.0017920395, -0.0300203, 0.025501376, -0.022906814, - 0.029392468, -0.0013975316, -0.008484701, -7.7633787e-4, -0.006610346, - 0.036357906, -0.004072557, 0.016009558, -5.0006615e-4, 4.757221e-4, - 0.023936272, 0.01528563, 0.009317333, 0.0032427153, -0.012391653, - 0.014392853, -0.026879882, 9.487327e-5, 0.0029441016, 0.010469984, - -0.0031144249, 0.0014412622, -0.010816112, -1.3263054e-4, -0.03126828, - -0.0028589217, 0.017119907, -0.002125559, -0.009027115, -0.009951893, - -4.9352524e-4, 0.0030076802, 0.012067827, -0.014897501, -0.023932239, - -0.008632396, 0.0072456338, 0.018827936, 0.01612174, 0.013991093, - 0.023553265, 0.010328589, -7.757903e-4, -0.00776828, -0.0074257054, - -0.015631612, 0.0209691, -0.0060031945, -0.0017836046, -0.012379413, - -0.03964238, 0.00678353, 0.02161264, 0.013214771, 0.004617789, - -0.0032362265, -0.0027529644, -0.0018134138, 0.012029988, 0.009922776, - -0.0045922133, -0.009241267, -0.0033499512, 0.009496134, -0.0047052167, - -0.031104537, -0.018607719, 0.005312054, 0.0016917507, 0.005162971, - 0.0052626804, -0.0018310015, -0.020339506, 0.0042929393, 0.007277388, - -0.0015728209, -0.0046710665, 9.856374e-4, -0.0041002105, 0.008211955, - 0.019326027, -0.021308826, -0.013479512, -0.015547089, -0.020284055, - 0.022309592, 0.013971006, -8.662092e-4, -0.006160724, 0.015477303, - -0.012265569, 0.007457649, -0.002551979, -0.02395938, -0.0030519767, - 0.018842299, -0.024561103, 0.007694087, 0.0029842053, -0.025709316, - -0.013825645, -0.022094687, -4.0534468e-4, 0.010695468, 0.026127666, - 0.0062606614, -0.026047902, -0.006884085, -0.033979148, 0.011593627, - 0.0115453005, -0.0072264005, 0.022088887, 0.012617649, -0.02206871, - 0.018905256, 0.026579613, 0.007062093, 0.021254819, 0.0044751544, - -0.0036916449, 0.013920617, 0.008756417, 0.008252279, 0.0045075924, - -0.007757311, -0.0038786316, -0.007797397, 0.0023910115, -0.01424798, - -0.007669065, 0.0073809004, 0.014805832, 0.035996985, -0.01663739, - -0.0076147555, 0.004014101, -0.0158637, 0.013835161, -0.00794261, - -0.014571984, 0.027456595, -0.0092731835, 0.0056435713, 0.007476259, - 0.011904977, 0.014060914, -0.009037935, -3.1290748e-4, -0.014637113, - -0.0020571726, -0.00740314, -0.036158532, -0.016318237, 0.0013475084, - 0.014222806, 0.018449333, -0.0023777918, -0.016883645, -0.007059779, - -0.007962384, -0.01006111, -0.007121146, 0.005985045, -0.04128355, - -0.00785099, -0.0021903203, 0.0043184855, -0.038431823, 0.008697115, - 0.011708051, -0.004721662, 8.453681e-4, 0.0012562358, -0.0044228, - -0.030922335, -0.010800793, 0.017367104, 0.0019065669, 0.0016614652, - 0.010170206, 0.0011980726, 0.0010476349, -0.017783066, -0.02819175, - 0.0044640405, 0.005949919, 0.01202044, -0.008636516, 0.007799721, - 0.044560947, 0.009466112, -0.014537901, -0.011044435, -0.0037062, - -5.4719974e-4, -0.01986727, -0.0050490624, 0.0060461075, -0.013401969, - -0.0059114927, -0.019402664, -0.013723401, 0.032573793, -0.021449251, - 0.02206792, 0.014795461, 0.017844463, 0.009840109, -0.005571043, - -0.012250224, -0.016885895, 0.015793936, 5.027526e-4, 1.9296371e-4, - -0.0017430102, 0.015254051, -0.047584724, 0.0036725854, -0.010711367, - 0.023838565, -0.0011859928, 0.0018821667, -9.558532e-4, -0.018304147, - -0.006135809, -0.0047632838, 0.024760444, 1.9665703e-4, -0.002553318, - 0.0047672847, -0.0060070725, 0.0155660445, 0.011108131, 0.029127419, - 0.013992218, -0.0033272945, 0.017784033, 4.636285e-4, -0.007322365, - 0.023983108, 0.0061355405, 0.0040170904, 0.014962617, 0.011641952, - -0.0035949803, -0.032601845, 0.0050348174, -0.009377217, -0.0011097937, - -0.0052869734, -0.011246557, 0.013491436, -0.012591138, -0.0020890932, - 0.01929981, 0.0054745567, 0.009622087, -0.025371438, -0.009825301, - -0.0060894676, 0.009617767, -0.007982927, 0.0029609082, 0.0077007813, - -0.028241841, 0.0033075078, -8.821041e-4, -0.0016590031, 0.01083675, - -4.1881565e-5, -0.031987168, 0.0070784907, 0.013371558, -0.009600418, - 0.015796583, 0.007733736, 0.0101331705, -0.025591886, 0.024031192, - 0.02000179, -0.015326128, -0.008935279, -0.009238121, 0.0011573044, - 0.007657944, -0.024908265, -0.02900722, -0.014063862, -0.026066529, - -0.051489387, -0.0139647, 0.011133799, 1.2336572e-4, -0.017451087, - 0.006041428, 0.00509868, 0.0028754072, -0.010927783, 0.02042111, - -0.0037360673, 0.0049317917, -0.0018081719, 0.006947826, -0.005595887, - -0.012139862, -0.0066024764, -0.012809787, 0.0124694975, -0.0035905535, - 0.022852449, 0.022574946, 0.025099436, -0.011382362, -0.031232005, - -0.0049396693, 0.0036620933, -0.012341269, -0.007814479, 0.018403005, - -0.00585652, 0.020515077, 0.00205358, 0.008736133, 8.557302e-5, - -0.0024876252, -0.02009729, 0.007247611, 0.012237349, -0.014375759, - 0.0036579787, 0.019581651, -0.005227224, 0.0054552206, 0.0027359207, - -0.0060987202, -0.0267837, 0.014633196, 0.005336584, 0.0045800796, - -0.027842697, -0.00834835, 0.01133891, 0.018455347, -0.0074135493, - -0.0029167875, 0.009832839, -0.017320814, -0.020430513, 0.022673171, - 0.023414884, -5.746772e-4, 0.014502939, -0.028788047, 0.01425876, - -0.038304523, -0.011427723, 0.014596718, -0.010914081, 0.0070259916, - -0.0051327925, 0.004623231, -0.03673704, -0.0032084414, -0.020822195, - -0.024952905, -0.0063801, -0.006892598, -0.020164778, 0.0011707213, - 0.00501371, -0.021841295, 0.0053428654, 0.0085042, 0.0023300129, - 0.004487657, 0.013865036, -0.025748085, 0.0067043807, -0.038488317, - 0.003928996, 0.035204586, -0.010052307, 0.011486942, 0.0025427276, - -0.0016654053, 0.028731558, 0.0050782883, 0.0064189015, -0.05717506, - 4.628011e-4, 0.009913699, 0.027610347, -0.0051417015, -0.011950322, - -0.022094361, 0.020672735, 0.024721727, -0.01239869, 0.0015703132, - -0.006125767, 0.0056660334, -0.003281996, -3.9686318e-4, 0.016400913, - -0.0073928274, 0.010300529, -0.008035777, -0.0053058276, 0.004044033, - 0.007868398, 0.051478993, -0.011580402, -0.0066242367, -0.034808207, - -0.03415178, 0.01233064, -0.0064464565, -0.0017038459, 0.023490706, - -0.022737911, -0.013744481, -0.014848018, -0.0025530094, -0.0077900663, - 0.0060488167, 0.01043595, 0.004448948, 0.011942479, -0.008235088, - -0.0016302941, -0.017972382, 0.01978354, -7.447603e-5, -0.016083747, - -0.008955828, -9.7224365e-5, -3.0667722e-4, -0.01026391, -0.0070643453, - 0.0051090396, -0.024201833, -0.022172296, -0.001657988, -0.016593305, - -0.022238145, -0.006226403, -0.015871825, -0.0124763595, -0.015156182, - 0.024740301, -0.03631638, -0.0017793352, -0.0017635124, -0.0044849156, - -0.034276355, 0.011931566, -0.0023786768, -0.019965282, 0.0036698228, - 0.017457237, -0.009695622, 0.024851095, 0.0026436616, 0.025647745, - 0.0047074864, 5.09967e-4, 0.030570952, -0.0065646633, -0.0029946833, - 0.022298874, -0.003249704, -0.009190126, -0.0108851325, 0.0227927, - -0.007981856, -0.022160716, -0.0025200332, -0.007379737, 0.0077176015, - -0.009103451, -0.029219603, -0.012785091, -0.0032966812, -0.019336212, - -0.032799385, 0.008969461, -0.017153976, -0.019471804, -0.01784748, - 0.007844885, 0.026940783, -0.017659614, 0.0035132281, 0.004639833, - 0.0045550903, 0.028714528, 0.0122722965, -0.0138997175, -0.025909366, - 0.0029103155, 0.017856086, 0.0072116368, 0.0050495286, 0.023943562, - 0.03042728, -0.0058243945, 0.0056172768, 0.004321967, 0.002359117, - 0.005742471, -0.008185091, 0.020028796, 0.009548501, 0.011438624, - 0.0023415615, -0.011516477, -0.005183363, 0.011525698, -0.0040244013, - -0.0036902, 0.02792336, 0.008985509, 0.02035403, -0.011626919, - -0.011046095, -0.016421156, 0.016197542, 9.049579e-4, 0.017454522, - -0.017885486, -0.020918895, -0.024468614, -0.0020428223, 0.008298362, - 0.0015034983, 6.884001e-4, 0.001023985, 0.008168281, 0.0146050155, - -0.016251005, -0.015554547, -0.001263357, -0.0065832785, -0.0051698266, - -0.022715008, -0.02595567, -0.010952272, -0.0062149013, 0.011963476, - 0.004936358, -0.015930094, 0.013959191, -0.013160609, 0.005265969, - -0.0010350908, 4.527576e-4, -1.3578047e-4, -0.009375194, 0.009449224, - -0.0027181024, 0.0068024686, 0.0085809445, -0.008299405, 0.01583563, - -0.026853584, -0.012838681, 0.014973875, -0.0037708895, -0.0049976762, - 0.004053879, -0.0015041684, 0.008199545, 0.0041959835, 0.018147571, - -0.0029640237, 0.0036749106, 0.0017969022, -0.0130007565, -0.04084897, - 0.010203292, -0.009294922, -0.009751833, -0.01007641, -0.011605615, - 0.008788175, -0.017850116, 0.009405199, 0.0037839725, -0.009866955, - -0.032565538, 0.0076512485, 0.025654534, 1.0837507e-4, 0.012687777, - -0.014638676, 0.0074869795, 0.012063759, -0.009289315, -0.0015323294, - -0.007859068, 0.004710766, 0.018838117, -0.0048927846, -0.025367573, - -0.0055339583, -0.0024822382, -0.011627644, -0.018093668, -0.0144407805, - 0.012441417, 0.00792484, 0.0036463968, 0.0058587994, 0.0075646807, - -0.02590713, -0.0041173394, 0.010118283, -0.009271636, 5.413456e-4, - -8.908749e-4, -0.0128008155, 0.006170745, -0.0022360235, -0.011078476, - 0.0060619633, -0.035745773, 0.026977813, -0.008422415, -0.012899426, - 0.0133489035, -0.0025170383, -0.021219846, 1.12422684e-4, 0.014609478, - -0.02128947, 0.008039957, 0.010570252, -0.025087856, -0.0021151023, - 0.0368815, -4.8778724e-4, 0.0034357237, 0.016831437, -0.022621233, - -0.0085639395, -0.022627933, 0.019258985, -0.01706504, -0.017499527, - 0.020455828, 0.010159724, -0.0196944, 0.014692957, -0.021480069, - -0.013782947, 1.7450642e-4, 0.009195999, 0.0032016758, -0.021047303, - 0.0022323744, -0.0061306544, -0.0076660994, 0.0018483332, -0.0070663914, - -0.013276291, 0.014356106, 0.04200501, 0.005413706, -0.011771199, - -0.02589342, -0.01508026, -0.023850111, -0.018547613, -0.009040321, - 3.5503993e-4, -0.006413425, 0.005117453, 0.0058396785, -0.03267774, - 0.0054260734, 0.0057227416, 5.738314e-4, -0.018761585, -0.025016578, - 0.012177156, 0.0040276647, 0.016244091, 0.030429175, 0.03895757, - -0.041518144, -0.004283798, 0.009448733, 0.0072354157, -0.030897083, - 0.016008485, -0.008927856, -0.03182194, 0.0026655982, -0.0042000106, - -0.013941446, -0.022010328, -0.0011306108, -0.0052302764, 0.010096617, - 0.027315484, -0.023014316 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.03456788, 0.017093422, -0.0033803126, -0.01452671, 0.023649635, - 0.020550916, 2.494014e-4, -0.03266184, 0.030168306, 0.039461017, - -0.013187616, -0.0136575205, -0.0016972427, 0.012880727, -0.016109968, - 0.05001746, 0.011259583, -0.014659885, -0.0017222938, -0.06435418, - -0.023946993, 0.0137935355, 0.014523132, -0.019663425, -0.033770896, - -0.008252272, -0.0057951226, -0.017761733, 0.0046364106, 0.0076096347, - -2.1058155e-4, -0.03416303, -0.06959319, -0.079971604, -0.023038529, - -0.030333167, 0.011123462, 0.03450436, 0.023844007, 0.002764361, - -0.034810502, 0.032280352, -0.047631893, 0.05105696, 0.018321464, - -0.025811305, -0.01501011, -0.012278322, 0.013336592, -0.033904027, - 0.032353036, 0.0019844738, 4.1417583e-4, -0.0389921, 0.07554487, - 0.038783554, -0.0020018087, 0.022676082, -0.017093088, -0.016105212, - -0.03190986, 0.0075829513, 3.2788925e-4, -0.029799772, 0.053821765, - -0.016829807, 0.011336227, -0.010812784, 0.0037946159, -0.006648755, - -0.008649088, -0.01788674, -0.011739481, -0.005958509, -0.011092775, - 0.05722294, -0.022860456, -9.057599e-4, 0.004290003, -0.007410408, - 0.013035602, 0.0104057025, -0.0077474215, -0.015082567, 0.055822223, - 0.009271181, -0.020840164, 0.021348031, -0.034126908, -0.008704487, - -0.011225798, -0.03987516, 0.022450821, -0.036719374, 0.06956359, - -0.042647503, 0.024905663, 0.02282499, 0.004887507, 0.031585302, - 0.026790401, -0.010188675, 0.010772449, -0.015396807, -0.0030909644, - -0.038613, 0.0011007803, -0.0012913641, -0.029847316, -0.0063615516, - -0.027739933, 0.033848267, 0.020749798, -0.01686008, 0.022453161, - -0.0016258999, -0.005035609, -0.013930247, 0.031669103, -0.0254557, - 0.035965934, -0.0014898386, 0.0023656897, 0.02896932, -0.013883221, - 0.039239325, -0.046244137, -0.023203112, 0.0027308303, -0.01154932, - 0.021295398, 0.026292358, 0.06757136, -0.009008516, 0.03340315, - -0.008782594, 0.04175739, 0.011844689, 0.032139804, -0.055741835, - 0.0156655, 0.011375547, -0.007227146, -0.053551022, 0.07269467, - -0.003190384, 0.028591268, -0.021099117, -0.0029739402, -0.010107177, - -0.0059412643, -0.019720443, -0.057197914, -0.030465422, 0.022914112, - -0.015663471, 0.07453967, 0.004584754, -0.034075722, -0.053219933, - 0.041610137, -0.02708732, 0.010277071, -0.017736549, 0.009328005, - 0.052811984, 0.036460787, 0.005085473, -0.022185802, -0.0037790001, - -0.008259319, -4.33533e-4, 0.03624571, 0.06764536, -0.02431684, - 0.03597055, -0.012975864, 0.054025546, 0.028018028, -0.03323445, - 0.02499717, -0.009373561, -0.0072608176, -0.043126937, 0.033062164, - -0.021692595, -0.011165597, 0.02383745, -0.040136248, 0.002820192, - -0.015298674, 0.051437188, -0.044946644, -0.0062393975, -0.014310716, - 0.015472317, 0.046799697, -0.02678902, 0.016500816, -0.04466453, - -0.0044943555, -0.049784366, 0.028354328, 4.7337794e-4, -0.05068178, - 0.001044861, -0.008583212, -0.03211344, -0.05461857, -0.012619749, - 0.041273274, -0.06635965, 0.0021417495, -0.029949687, 2.7620498e-4, - 0.011858117, -0.012198326, -0.05594293, -0.0042678714, -0.056222335, - -0.013970843, 0.020541813, 0.04069997, -0.021920554, 0.020503797, - -0.0063860076, 0.008073356, -3.9968092e-4, -0.014850878, -0.04066451, - 0.02990233, 0.015985835, 0.0018326645, 9.831628e-4, -0.017173328, - -0.011256252, 0.030576883, 0.016580041, -0.0075586922, 0.0021286067, - -0.018722074, -0.068171464, -0.025126025, 0.02970741, 0.04635211, - -0.0045144614, -0.0178823, -0.022614354, -0.0027280212, -0.051701624, - -0.06802718, -0.014197318, -0.058448866, 0.020689407, -0.041252766, - -0.012565893, -0.010346535, -0.009100102, 0.0150438845, -0.021177085, - -0.0039959205, -0.030142648, 0.008379, -0.0087816175, -0.019605575, - -0.006581959, -0.013005272, -0.04079981, -0.0026298773, -0.001980498, - -0.024527634, -0.012306343, -0.059873085, 0.020052956, -0.00703235, - 0.030335916, -0.015158609, 0.019754678, -0.098576024, 0.040019467, - -0.04620111, -0.004952177, 0.06434059, 0.0022631735, 0.021571051, - 0.054596104, 0.013125142, -0.012596308, -0.030377015, -0.03129836, - -0.04831648, -0.043416176, -0.017554915, 0.04617185, 0.047204215, - 0.011334365, 0.03920098, -0.009410259, -0.01731936, 0.013340854, - -0.014197184, -0.02824577, -0.010677939, -0.014321761, -0.013871625, - -0.011186487, -0.032573864, -0.017080212, 0.029352555, 0.04912026, - 0.0028117027, 0.016718026, -0.030285385, 0.037106507, -0.035539232, - 0.02479581, -0.005841896, 0.019596703, 0.07692265, 0.010222689, - 0.029944645, 0.05369774, -0.0065942556, -0.030857984, -0.06598872, - -0.0051792497, 0.042228393, 0.008991865, 0.08775195, 0.029758891, - 0.0110082105, -0.012533908, -0.0024752857, -0.043135654, -2.3938343e-4, - 0.035879876, 0.004035551, -0.033616774, -0.012508621, 0.029238274, - 0.026529822, 0.020184368, 0.0413954, -0.056238014, -0.0035119522, - 0.020142779, -0.034751058, -0.0062962156, -0.060250454, 0.0073416396, - 0.03688799, -0.044444386, -0.010559257, 0.020849682, -0.025293104, - 0.023736188, -0.012583484, 0.044593614, -0.0129659595, 0.024432205, - 0.020188926, -0.006476555, -0.045689877, 0.04850151, -0.031674717, - 6.7111675e-4, 0.06437585, 0.013186854, -0.020988379, 0.048748765, - -0.0026443866, 0.050826095, 0.002301343, -0.01614656, -0.018609475, - -0.026635159, -0.002839609, 0.04682052, -0.011817991, -0.04710472, - 0.012015499, -0.028454771, -0.04584339, 0.0074991505, -0.046646178, - 0.034889363, 0.018645085, -0.03522187, 0.022667512, 0.017348316, - -0.0021383292, -0.0419118, -0.07551294, 0.007655172, -4.3557474e-4, - -0.028735196, -0.006161605, 0.010572738, -7.4081705e-4, 0.009812252, - -0.0044843946, -0.003661907, -0.026719682, 0.011765533, 0.043057438, - 0.022151718, 0.022119774, 0.024378518, 0.011563495, 0.004867591, - -0.026081508, 0.013150658, -0.028580245, -0.009865712, 3.122893e-4, - -0.0021264385, 0.0051265303, 0.018955318, -0.0307156, 0.04660258, - -0.07056702, 0.04288618, 0.0014982321, 0.01967963, -0.014515708, - -0.014584581, 0.0119635295, 0.052766375, -0.027838696, -0.021884732, - -0.0051574092, -0.04414277, 0.031658664, 0.011990655, 0.021705117, - 0.0011402484, 0.030576268, -0.0025292977, -0.05702942, -0.09076771, - -0.0461717, -0.008421816, -0.031041155, 0.011678112, -0.010969024, - -0.027688006, -0.04631511, -0.03055364, -0.026334703, 0.0032656516, - -0.012590714, 0.051989626, 0.0037338058, 0.005908881, 0.062060203, - 0.05137588, 0.05556686, 0.012583085, 0.012376306, 0.002703334, - 0.033402238, 0.018588334, 0.040658697, 0.0411035, -0.040393203, - 0.014157065, -0.03572366, -0.05826431, 0.044278394, -0.017916076, - -0.0033978815, -0.052666567, -0.040104043, 0.0029596072, 0.04111194, - -0.0047241948, -0.01573176, 0.014312492, -0.008364355, 0.007898154, - 0.031618405, -0.0031721632, 0.053207994, -0.0016688878, 0.014176763, - -0.006061856, 0.0065455446, 6.549295e-4, -0.0099290265, -0.004991881, - 0.019898264, -0.04507535, 6.3840434e-4, -0.041928835, 0.0076801847, - 8.031653e-4, -0.03504265, -0.066164404, -0.06561786, -0.003001119, - -0.0036540674, -0.04144117, -0.03548792, -0.018526739, -0.017751034, - -0.008345631, 0.018874602, -0.022608954, 0.010167355, -0.010182289, - -0.023573402, -0.006534488, 7.714693e-5, -0.018296698, -0.001889933, - 0.036578204, 0.08095209, -0.061869096, -0.028595503, 0.018027376, - -0.042029157, -0.025308635, -0.04532759, 0.011167908, -0.015454638, - 0.009653416, 0.03940953, -0.022792801, 0.0532509, -0.0037009092, - -0.024649974, 0.003185489, -0.03415427, 0.016442245, 0.025772765, - -0.020100616, -0.0060307872, 0.03609172, -0.016225291, 0.0026062892, - 0.017262671, 0.001476349, -0.08450963, -0.019247951, 0.040356014, - -0.04911491, -0.021274906, 0.021849414, -0.0767396, 0.004692064, - 0.056196537, -0.03113037, 0.013230277, -0.019267984, 3.053348e-4, - 0.025151988, 0.025675664, 0.041912526, -0.008672735, 3.372172e-4, - -0.005647151, -0.038068734, -0.016210781, 0.023118574, -0.049588796, - 0.002314336, 0.058956113, -0.014081533, -0.0032944356, -0.0084481705, - 0.0012668949, -0.016355213, -0.011362646, -0.031203033, 0.05656814, - 0.037371155, 0.048290152, 0.06323579, 0.010724159, -0.03133557, - 0.049335517, -0.020383652, -0.02894957, -0.01206271, 0.06523388, - 0.035312083, -0.042756, 0.01559835, -0.013573549, 0.0066017723, - -0.030063702, 0.022630692, 0.010191226, -0.00451419, 0.013446381, - -0.08849045, -0.054077294, 0.030762132, -0.02123675, 0.009591533, - -0.031197106, 0.03298532, -0.019127063, 0.0072423248, 0.0023926888, - 0.01261484, 0.030874357, -0.061589357, 0.016687011, -0.0210848, - -0.021559587, 0.011591685, -0.014621205, -0.10374107, -0.012152829, - -0.027097577, -0.004198002, -0.04995751, 0.038634, -0.057334423, - -0.02192247, -0.013802845, -0.03654333, 0.003994064, 0.012852899, - -0.032575335, 0.060764812, -0.09484767, 0.019874275, 0.0034180044, - -0.046548106, 0.020028528, -0.004342901, -0.05239947, -0.005321235, - 0.02219042, 0.017074745, -0.050379276, -0.03961914, 0.049951926, - -0.02161179, 0.05069963, 0.01693728, 0.028114667, -0.053144872, - -0.0130060045, 0.021454332, 0.039754394, 0.04292792, 0.003358825, - 0.012901002, 0.033761058, -0.01471568, 0.019580245, -0.010508056, - -0.0031712432, -0.0056033507, 0.031816646, -0.011014237, 0.012985985, - 0.03313651, 0.0024062821, 0.022073215, 0.042250447, 0.017899979, - 0.017984485, -0.003406971, 0.04338508, 0.009687304, -0.07737886, - -0.0072558247, -0.041247718, -0.013485521, -0.013596436, -0.017736075, - 0.0014453849, -0.0023439436, -0.018642083, -0.04574361, -0.005846421, - 0.038866833, -0.05477802, 0.015354373, 0.04425658, -0.0328142, - -1.2380705e-4, 0.025779175, 2.4606872e-4, 0.0014398529, 0.020633573, - -0.004201605, 0.019255873, 0.03458956, 0.04969618, -0.011806219, - -0.04180961, -5.3100113e-4, -0.040655628, -0.0046475064, 4.550421e-4, - 0.011312805, 0.012163325, 0.026979567, 0.012866804, -0.028021276, - -0.038369406, -0.0010762424, 0.012714806, 0.040030945, -0.013870441, - -0.024136454, 0.0017375057, 9.942361e-4, -0.0016698274, 0.015472076, - 0.0018746521, 0.013901362, 0.0031992644, 0.056005154, -0.013694461, - -0.013378389, 0.012397143, 0.0019388896, -0.041940924, 0.01864854, - -0.004033016, -0.01482151, -0.016582346, -0.0017764543, -0.019613823, - 0.027861865, 0.00138352, -0.0028442885, -5.2718166e-4, 0.031834483, - 0.024475202, 0.03423223, 0.030742193, 0.073445275, 0.007438295, - -0.01203701, -3.371438e-4, -0.057688747, 0.05500118, -0.036723178, - 0.024045784, -0.028097648, -0.0104802735, 0.03503011, 0.029616807, - -0.03239251, -0.020884033, 0.0024394137, -0.019729389, -0.0067590433, - -0.0101025645, -0.03717795, -0.0337782, 0.0013550295, 0.03568216, - -0.005833679, 0.014849118, 0.026857346, 0.014946542, 0.05118308, - 0.04669686, -0.0017155672, -0.0070522055, -0.0020059585, 0.03559781, - -0.029784223, 0.07233352, 0.0046433173, 0.012370933, -0.023568144, - -0.009534151, -0.03646227, 0.023009825, 0.009108729, -0.018618364, - -0.018147804, 0.018588014, 0.016516505, -0.052868295, -0.011544346, - 0.022874314, 0.01672416, -0.004035234, -0.012809361, 0.03834786, - 0.0032439039, 0.018247547, -0.014630972, 0.016450303, 0.04946586, - 0.026049195, 0.00207886, 0.09788483, 0.045561884, 0.025378715, - -0.017091481, -1.880635e-4, 0.05574563, -0.0064239157, 0.0073264265, - 0.0016898863, 3.566577e-4, -0.004522412, -0.036359247, 0.019474788, - -0.022374393, 0.00881044, -0.04058549, 0.0032082256, -0.03186353, - 0.016183455, -0.0023909868, -0.03230859, 0.010703702, 0.030738786, - 0.02022781, 0.059959818, 0.027076019, -0.011589222, -0.04933363, - 0.0062067555, 0.02497645, 0.0036527119, -0.035479974, -0.11146481, - 0.083122335, 0.021143015, 0.012569511, -0.009422955, -0.012799959, - -0.046405077, 0.050679628, 0.05956093, 0.005230865, -0.04112786, - -0.013124324, -0.059757143, 0.014389315, -0.03624942, 0.014433532, - 0.02993333, -0.03728621, 0.025574349, 0.0123467585, -0.014783751, - -0.007413677, -0.012533025, 0.00798092, -0.04335885, 0.037079785, - 0.008435634, 0.028530851, -0.0066351867, -0.0066613876, -0.006994061, - 0.029799934, -0.0065858644, 0.029121133, -0.022217464, 0.026814846, - -0.04811706, -0.026786264, 0.030263253, -0.013725106, -0.008287284, - 0.052063476, -0.009586409, 0.027973473, -0.04844729, -0.009032552, - -0.08823487, 0.012577912, 0.025012165, 0.009918081, -0.027031206, - -0.02592074, 0.028046563, 0.04253375, -0.03386685, -0.0106485505, - -0.0021066924, 0.020181295, 0.047442526, 0.00857363, -0.028685162, - -0.05513675, -0.034580715, -0.046259373, -1.6126432e-4, 0.008911325, - 0.020135144, -0.013006191, 0.046728265, 0.011232544, 0.05982885, - 0.04987762, -0.011595894, 0.04591017, 0.043613277, 0.023482472, - 0.025764996, 0.009637681, -0.022464925, 0.039393023, -0.018321544, - -0.009822928, 0.016919052, -0.003285795, -0.012991506, -0.008985281, - -0.05373381, -0.006726599, 0.013127951, -0.039190844, -0.01960928, - 0.038604844, 0.021174856, -0.042851277, -0.031295475, -0.011327869, - 0.022578733, 0.04051348, -0.050151132, 0.0053405515, 0.020338818, - 0.016838683, 0.04577448, -0.020763014, -0.016595887, 0.047603417, - -0.01658279, 0.029128598, 0.02930905, -0.068694524, -0.036341533, - 0.041421454, -0.028248774, -0.02373833, -0.016661223, -0.026929691, - 0.018675072, 0.023253229, -0.0016660155, -0.046252344, -0.027449884, - 0.030834254, 0.006105919, 0.0043512867, -0.046057675, -0.008734263, - 0.064242244, 0.05682324, 5.599839e-4, -0.020151552, -0.025840895, - 0.0017544909, -0.04340914, 0.029042145, 0.035851717, -0.011558037, - -0.018025003, -0.05258818, -0.018387133, 0.033422146, -0.0069643226, - 0.026250442, -0.028542625, 0.0065325648, -0.04975044, 0.028205369, - 0.051294174, -0.054119643, -0.00265661, -0.028079487, -0.016983809, - 0.008157166, -0.012964578, 0.023140496, -0.044726063, 0.026651042, - 0.029456697, -0.024883838, -0.022059139, -0.01109233, -0.038262274, - 0.0204215, 0.013841525, -0.016601484, 0.040377896, 0.06095458, - -0.002225934, 0.016123474, 0.01972174, -0.022393346, 0.06957932, - -0.007612552, -0.011310655, 0.043848086, -0.004731138, 0.049506254, - 0.07142391, 0.061672658, -0.010062052, 0.063726, 0.003423216, - -0.043308683, 0.0024604474, 0.018148722, 0.01648208, -0.09557128, - 0.028743897, 0.004332653, -0.013317088, -0.018965796, -0.048067816, - 0.0040765717, 0.00844553, -0.0202764, 0.0015851274 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.013218495, + 0.025846567, + -0.042770065, + 0.034515947, + 0.011331874, + 0.0038413035, + 0.02347364, + 0.003016609, + -9.388549E-4, + -0.0034697608, + -0.014369067, + -0.026709097, + 0.0015381232, + -0.013236471, + -0.0025053755, + 0.02686665, + 0.0050832964, + -0.007690392, + 1.9512036E-4, + -0.019189954, + -0.022297638, + 0.019826015, + 0.0057090176, + -0.0038640844, + -0.020870453, + -0.012410921, + 0.020909648, + 0.009338456, + -0.0012669187, + -0.011491104, + 0.012106878, + 0.001642849, + -0.002393323, + 9.0810243E-4, + 3.1984094E-4, + -0.035463773, + 0.019872751, + 0.008503582, + 0.024329998, + -0.005097541, + 0.016503988, + -0.0075147985, + 0.006605476, + 0.010725126, + -0.011988948, + -0.009572052, + -0.0059182774, + -0.014532268, + 0.013599951, + -0.01043674, + -0.0038317041, + 0.011563619, + -0.009382213, + 0.009172362, + -0.005247696, + 0.011250415, + 0.0058926474, + -0.011355982, + 0.0048407135, + -6.899362E-5, + 0.019257192, + -0.0020614737, + -0.026771665, + -0.008198067, + 0.008665107, + 6.131934E-4, + 0.0012432191, + -0.003987801, + 2.6313512E-4, + -0.002771579, + -0.011547912, + -0.0046793004, + -0.022016542, + 0.0014323986, + 0.02962189, + 0.0023140511, + 3.536727E-5, + 0.007394577, + 0.0119919535, + 0.0037831431, + -0.0059451684, + 0.036304116, + -0.01933367, + 0.007973066, + 0.002468891, + -0.0010359578, + 0.02727805, + 0.019153979, + 0.02020577, + -0.0041243657, + -0.0029171018, + 0.027093047, + 0.028657323, + -0.0014045269, + 0.018043503, + -0.0015684328, + 0.0033027723, + -0.00580208, + 0.024418602, + -0.03321987, + -0.002336003, + 0.012096727, + 0.0013896271, + 0.012803698, + -0.017315177, + 0.013745147, + -0.006063533, + 0.0260206, + 0.0017300417, + 0.010733066, + 0.03572021, + -0.01545104, + 0.00624221, + 0.0010753254, + -0.0031814121, + -5.55352E-4, + 0.010811077, + -0.012277043, + 0.014374935, + 0.008205608, + 0.014040043, + 0.008916636, + 0.035430543, + -0.009238116, + -0.016362714, + 0.013395875, + 0.0102341855, + 0.010949932, + -0.009426696, + 0.02025918, + 0.017604383, + 0.0028881112, + -0.011887874, + 0.017480487, + 0.0062263077, + 0.003375031, + -0.003637198, + 0.012430787, + 0.02832016, + 0.0027704989, + -8.8443205E-4, + 0.023099598, + 0.015708596, + 0.0052676788, + 0.0053300518, + 9.648133E-4, + 0.013394021, + 0.01443766, + 0.0069266637, + 0.013071086, + 0.0011621437, + -0.008499816, + -0.02410422, + -0.010776308, + -0.0076151732, + -0.013315926, + -0.004909475, + -0.018607624, + 0.0025511624, + 0.030246845, + 0.010026097, + 0.004152908, + 0.0077573485, + 0.018530287, + 0.00963607, + -0.0061648195, + -0.004879842, + -0.0043539503, + -0.0052530603, + 0.002664914, + -0.02081534, + -0.014232826, + -0.0014687357, + -0.013973847, + -0.0030362029, + 0.035728604, + -0.016069561, + -0.0055528437, + -0.014418816, + 0.0022859445, + -0.0038559705, + -0.003619305, + 1.4550464E-4, + -0.02251372, + 0.013515827, + -0.017752837, + -0.011850149, + -0.0056485073, + 0.018051442, + -0.008531313, + 0.011973651, + -0.013381304, + 0.011530435, + -0.008040619, + 0.002962749, + 0.022720877, + -0.0038959496, + -0.029648883, + -0.0036935208, + 0.012187684, + 0.0146688875, + 0.034640152, + 0.019903967, + 4.9653405E-4, + 0.018575463, + 0.019016458, + 0.011571461, + 0.016223213, + 0.02534367, + -0.01033641, + -0.0057379794, + 0.011889049, + -0.01893373, + 0.0052600675, + -0.016238924, + -0.0076159504, + -0.020343635, + -0.019058365, + 0.024343137, + -0.006122451, + -0.006347622, + -0.027559243, + 0.024281975, + 0.0070085423, + -0.02181465, + -0.0016848235, + 0.004339153, + -0.02065482, + -0.008868134, + -0.006873826, + -0.003652432, + 5.9415237E-4, + 1.5004164E-5, + -0.031857457, + 8.127247E-4, + -0.010657601, + 9.922027E-4, + 0.0046555437, + -0.0010477587, + -0.013703648, + 0.008155665, + -0.02415635, + 0.038089845, + 0.017089095, + -0.04580289, + -0.011516188, + 0.01481161, + -0.03155065, + -0.028595854, + -0.017397804, + -0.008666853, + 0.035658658, + 0.015644742, + -0.009228168, + 0.027217949, + 0.0033357372, + 0.015967824, + 0.010356099, + -0.020233732, + 0.012050405, + 0.011450849, + -4.7711717E-4, + 0.012760128, + 0.01839321, + -0.0060135867, + -0.008903683, + 0.02427407, + -0.0013916844, + -0.013264431, + 0.01750465, + -0.006266982, + 0.008129235, + -0.0039366367, + -0.010552573, + -0.0051488816, + -0.009832194, + -0.016125346, + -0.0061113765, + 0.018946234, + -0.005402608, + -0.015771197, + -0.006033226, + 0.009186411, + -0.028421536, + 0.010742079, + -0.014470865, + 0.024168512, + -0.0064184736, + 0.013868288, + -0.008275117, + -0.0017837386, + -6.423381E-4, + -0.004042364, + 0.009176813, + 0.049847923, + 0.018893503, + -0.008186479, + -0.0023849972, + 0.016073182, + -0.02464875, + 0.026163168, + 6.3779356E-4, + -0.01615893, + 0.00272288, + -0.020478146, + -0.0077247764, + 0.018225322, + -0.013847459, + -0.0158141, + -0.0064534415, + -0.011483405, + -0.025337353, + 0.018630784, + 0.015288523, + 0.0031119497, + 0.0035220366, + -0.04830975, + 0.013749148, + 0.009192064, + 0.01288983, + -0.009412182, + 0.025248997, + -0.0023036692, + -0.0067142835, + 0.010481302, + -0.0050966567, + 0.018660918, + -0.008238763, + -0.0116506675, + -0.01355513, + -0.011781187, + -0.016613947, + -0.005719775, + -0.043862216, + 7.95896E-4, + 0.0278342, + -0.015296099, + -8.012949E-4, + -0.002713914, + 0.021873515, + -0.012709394, + -0.024608219, + -0.0149542, + 0.00422929, + -0.005663867, + 0.009688173, + -0.006097278, + -0.0022054377, + 0.0011200976, + 0.011604927, + 0.032586593, + 0.024157794, + 0.014672454, + 6.0945423E-4, + -0.006690777, + -0.019880606, + -0.0052751894, + 0.014574811, + 0.021111548, + -0.002455238, + 0.011072877, + 0.0046368456, + -0.03218152, + 0.019753605, + 0.013867731, + 0.021446386, + 0.004840391, + -0.008434772, + -0.0041110376, + 0.011240605, + 0.0032646472, + 0.015910868, + 0.00890299, + 0.016579108, + -0.0035648118, + 0.0015728419, + -0.0029308817, + 0.012898213, + -0.013825909, + 0.0072855954, + -0.017528689, + 0.022182828, + -0.0047494066, + -0.018737784, + 0.0070946948, + -0.006405153, + 0.010075621, + 8.877166E-5, + 0.009484261, + -0.015535489, + 0.016946718, + 0.006554562, + 0.0053454116, + 0.005424783, + 0.020963788, + -0.007942601, + -0.009084365, + 0.039032783, + -0.022011034, + 0.0071861055, + -0.0015664737, + 0.03295573, + -0.006487189, + 0.024309238, + -0.0102611715, + -0.003287996, + -0.017323794, + 0.0060291053, + -0.030231558, + -0.0076078167, + -0.007835036, + 0.027974555, + -0.024863966, + 0.015531474, + 0.02333796, + -9.821276E-4, + 0.010612517, + -0.03382161, + -0.0010515393, + -0.006785111, + -0.018662242, + -0.008868136, + 0.0070401942, + 0.017101685, + -0.024164502, + 0.011604786, + 0.0038963957, + 8.50539E-4, + 0.0048613013, + -0.002184423, + 0.012588275, + 0.0092175165, + -0.0017125449, + -0.020600727, + -0.007979685, + 1.0016776E-4, + 0.02189422, + 0.0018971512, + -0.00797959, + 0.018316956, + 0.011063204, + 0.006658854, + -0.0043587126, + 0.007912048, + 0.0061180643, + -0.027219845, + 0.019213894, + -0.018712746, + -0.014743688, + 0.02143647, + -0.0035748156, + -0.0053446232, + 0.02425515, + -0.014448197, + 0.002750272, + -0.005547798, + 0.0018632492, + 0.006294224, + -0.028935071, + -0.0023526542, + 0.015904553, + 0.026169343, + 0.0072474796, + -0.013526071, + 0.0017584091, + -0.0043007964, + -0.009025734, + 0.01254268, + -4.5303436E-4, + 0.02406144, + -0.003638421, + -0.0029254144, + 0.016441045, + 0.02057033, + -0.02033183, + -0.006299729, + 0.008619911, + 0.01925328, + 0.019024037, + 0.0032770515, + -0.013335543, + -0.01275507, + 8.18405E-4, + -0.02055767, + 0.016417457, + 0.011418843, + -0.0066976747, + -0.013703736, + -0.011300064, + 0.023329344, + 0.0072130268, + -0.0045263297, + -0.0043393737, + 0.009222462, + -0.012744826, + 0.0076456717, + 0.011147357, + -0.03194925, + -0.0050475844, + -0.007962308, + 0.0037247362, + -0.0014736181, + -0.013853427, + 0.0032367713, + -0.0025574495, + 0.018866196, + 0.03335131, + 0.0083501255, + -0.015229493, + 0.01506683, + 0.00634818, + -8.414261E-4, + 7.268949E-4, + -0.014218631, + 0.019340727, + 0.0241743, + 0.005355043, + -0.0018072431, + -0.017739264, + 0.019509438, + -6.1744783E-4, + 0.009826574, + 0.0076398575, + -0.008265925, + 0.002949792, + 0.0036696338, + -0.0069641354, + -0.014924988, + 0.0116726, + -0.0041482816, + 0.005876574, + -0.011810832, + -0.014038777, + -0.016788496, + 0.009327779, + -0.0178045, + 8.224356E-4, + -0.01336548, + -0.02127894, + 0.0043058544, + -0.0028735443, + 0.0032734645, + 0.012827765, + -0.006503512, + 0.0044087265, + -0.004778194, + -0.004364664, + -0.022025144, + 0.0121642025, + -0.003250136, + -0.018882005, + 0.0052154525, + -0.0018484632, + 0.01385245, + 0.0018550213, + -0.016518524, + 0.0050888564, + -0.01557914, + 0.010924623, + 0.0050353543, + -0.006270046, + 0.019643739, + -0.002076148, + -0.013003119, + 0.022877714, + 0.0023184875, + 0.007279826, + -0.0034664078, + -0.012145052, + 0.020325474, + -0.015326807, + -0.01951034, + 0.021274561, + 0.008078401, + -0.0071634976, + 0.0014466024, + 0.002574606, + -0.020461565, + -5.0313625E-4, + 0.0070524616, + -0.007611874, + -3.090884E-4, + 0.022508586, + 0.017650265, + -0.027988467, + -0.007117752, + 0.0067429584, + -0.008382564, + 0.007413905, + -0.034084164, + -0.03531027, + -0.054836415, + 0.007577922, + 0.015329881, + 0.024157206, + 0.025190495, + 0.0019840032, + 0.007058409, + 0.007762465, + -0.030033853, + -0.032397803, + -0.009769179, + 0.0036034752, + 0.034460377, + 0.0114428, + 0.033306815, + 0.004856606, + -0.026949013, + -4.3445607E-4, + 0.022617249, + 0.008236441, + -0.03815248, + 0.014014727, + -0.0071259737, + 0.0015504997, + -0.0015207302, + -0.02456154, + 0.0053679957, + 0.009467329, + 0.0069845547, + -0.005426454, + 0.025337834, + -0.020544128, + 0.012998273, + -0.016523752, + 0.006139353, + -0.02438937, + -0.0057731527, + 0.0033012964, + 0.01481747, + 0.012382702, + -0.014170079, + 0.021528097, + -0.011300239, + 0.030611197, + -0.022941906, + -0.005304166, + -0.011014599, + 0.0049502747, + -8.3317125E-4, + 0.018277189, + -0.008623136, + -0.00907793, + 0.02041446, + -0.033940364, + -0.014026256, + 0.0029293215, + -0.012634599, + 0.0060167173, + -0.005805468, + -0.016359366, + 0.026701637, + 0.0055958866, + -0.009593742, + 0.0053844275, + -2.5080168E-4, + 0.005736486, + -0.011675596, + 0.010062301, + -0.008819541, + 0.021004433, + -0.016661309, + -0.0032708088, + 0.015934302, + 0.0047448827, + -0.016761066, + 0.0014924749, + 0.003255328, + -0.0023137871, + -0.039178587, + -0.0064906213, + -2.7549642E-4, + 0.0051309434, + 0.014214376, + 0.015282943, + 0.012276691, + 0.0034923106, + 0.0054159914, + -0.0068825427, + -0.0027803937, + -0.0051629776, + -0.008737518, + -0.003542063, + 0.0027961908, + -0.008799584, + -0.02665476, + 0.012787426, + -0.023528391, + 0.0062372084, + 0.013830526, + 0.011830984, + -0.0058937245, + -0.00663822, + -0.018325873, + 0.003981407, + 0.013959755, + -0.0012301012, + -0.0012733637, + 0.0017300893, + -0.0038196032, + 0.012485887, + 0.015313308, + 0.009753194, + -0.003937008, + 0.018499045, + -0.020933613, + -0.0020035317, + -0.0024635284, + -0.019346507, + 0.009510082, + -0.003251056, + -6.671936E-4, + -0.00919188, + 0.016614666, + -0.01448077, + -0.023036813, + 0.005865547, + 0.0024410973, + 0.017272005, + -0.019530706, + -0.02571069, + 0.006867361, + -0.0048395544, + 0.009642764, + 0.005152967, + -0.00605801, + -0.024547096, + -0.004545864, + 0.029799538, + 0.019650364, + -0.013296066, + -0.01960643, + 0.0016355689, + -0.0075797136, + -0.039792053, + -0.017522288, + -0.010412072, + 0.018206777, + 0.0134055, + -0.01926175, + -4.7826392E-4, + 0.020724794, + -0.034929264, + -0.017765345, + -0.03688861, + -0.0024597384, + 0.008224277, + 0.005324416, + -0.0073754955, + 0.008054707, + -0.025929466, + -0.016842064, + -0.010884542, + 0.029762438, + 0.0028510836, + 0.02035618, + 0.020620864, + -0.02007707, + 0.004327327, + 0.018065196, + 0.0075105745, + -0.010807503, + 0.0021195651, + 0.015351419, + -0.0016984389, + -0.020810543, + 0.0404594, + 0.010607659, + 0.004640325, + 0.012191008, + 0.0025362533, + 7.858694E-4, + 0.023816613, + -0.010063525, + 0.013014102, + -0.01031916, + 0.013994286, + 0.0041280226, + -0.0252591, + -0.017067485, + -0.0010633167, + -0.0016830259, + -0.008831944, + -0.013421952, + 0.03404369, + 0.0077091125, + 0.0052653695, + 0.005306621, + -0.008651991, + 0.009733915, + 0.012043681, + 0.0037975765, + 0.010729767, + 0.015605822, + 0.022581778, + 0.012980335, + -0.0010568281, + -0.006084174, + 0.015095044, + 0.008185891, + 0.01528343, + -0.007793934, + 0.007490677, + -0.025013134, + 0.012362587, + 0.020700896, + 0.008062423, + 0.011703707, + 0.005119822, + 0.0046257298, + -0.012224942, + -0.025954561, + 0.015361114, + -0.012643285, + 0.017773086, + -0.009197651, + 0.025768476, + -0.009231734, + -0.017535787, + 0.0055099563, + -4.6426215E-4, + 0.0037023174, + 0.018917764, + 0.007954238, + -0.0030963134, + -0.02400346, + -0.009907077, + 0.0020423771, + -0.003510379, + 0.017154263, + 0.00947979, + -0.022493232, + -0.008012229, + 6.12048E-4, + 0.0071606343, + 0.011106121, + 0.01224353, + -0.017558308, + 0.018361254, + 0.0017151159, + 0.009864351, + 0.010998643, + 0.0012190589, + 0.006320868, + -0.024261266, + 6.7444396E-4, + 0.0077552334, + -0.050469115, + -0.005074558, + 0.0072214077, + -5.609368E-4, + 0.01764389, + 0.0072665075, + 0.022617165, + -0.012664478, + -0.008554774, + -0.012651329, + -0.00940027, + 0.00854092, + 0.006380129, + 0.004239807, + -0.013943027, + 0.012827793, + 0.010122477, + -0.0069147735, + -0.017087635, + 0.0013523669, + 0.022956977, + -0.0114570055, + 0.0101732025, + 0.026718812, + 0.009888254, + -0.01614057, + 0.010991841, + 0.016642632, + 0.0057575023, + 0.0103153, + -0.0021580853, + -0.004885648, + -0.014698817, + 0.006860197, + -0.0015877233, + -0.007383602, + 0.0085272, + -0.00638152, + 0.023177408, + 0.0247977, + -0.007028057, + -9.771616E-4, + 0.004295004, + -0.016790314, + 0.01220309, + 0.0021986521, + 0.014839857, + -0.027595596, + -0.002909446, + 0.0019066895, + -6.630355E-4, + 0.011295833, + -1.0792089E-4, + -0.0061765118, + 0.0035848054, + 0.005092062, + 0.0022030894, + 0.033386376, + 0.030459771, + -0.026497684, + -0.020647215, + -0.019897573, + 0.011881471, + 0.005862731, + 0.0016949776, + 0.024525426, + 0.028940534, + 0.0069734002, + 0.0049331067, + -0.0038153862, + -0.039844967, + 0.03433824, + 0.014260697, + 0.014695633, + -0.02541304, + 0.0045329, + -0.00947599, + 0.010924758, + 0.001883044, + 0.0055193277, + 6.166444E-5, + -0.006724223, + 7.492146E-4, + -0.00902279, + 9.916223E-4, + 0.023577234, + -0.0042164526, + 0.008328441, + -0.002593643, + 0.0062665395, + -0.014444398, + 0.007956376, + -0.005436185, + 0.006913491, + -0.005707987, + 0.024410194, + -0.007936881, + 0.026582597, + 0.013781127, + 0.0072134454, + 0.0020950683, + -0.020615788, + 0.026091298, + 4.6096428E-4, + 0.026599346, + 0.010430508, + 0.0060021826, + -0.02396894, + 0.00796766, + -0.020633725, + 0.021026004, + 0.0018086719, + 0.0077136983, + 0.026651647, + 0.001278835, + -0.013133148, + -0.012218919, + 0.0013804643, + -0.022328163, + 0.0024627259, + -0.0040858244, + -0.02795053, + 0.010431049, + 0.0033400964, + -0.031020269, + 0.008861719, + -0.028795898, + -0.018301819, + -0.02003296, + 0.015612116, + -0.019856688, + 0.018675705, + 0.02250772, + 0.005123445, + 0.017201157, + -7.946307E-4, + 0.011665024, + -0.011988952, + 0.018355457, + 9.2753826E-4, + -0.0013073123, + 0.01216764, + -0.01700068, + -0.010522505, + -0.0074223992, + -0.008012283, + -0.010014559, + 0.013348363, + 0.002560066, + -0.008267015, + -0.005932008, + 0.014787796, + 0.02448101, + -0.013105964, + -0.017430132, + -0.017815208, + 0.026958138, + -0.005689223, + -0.0047399076, + -0.0069860425, + -0.02648127, + 0.023734644, + -0.032631706, + 0.025915531, + -0.006833274, + -0.017414434, + 0.014108001, + 0.0034999158, + -0.009606657, + -0.015816374, + -0.01903161, + 0.023621304, + 0.012248116, + 0.02789551, + -0.0013056424, + -0.005525609, + -0.022826632, + -0.010149575, + -0.007874292, + 0.022754835, + -0.01378426, + -4.4845598E-4, + 0.009255214, + 0.0020254056, + -0.011298633, + 0.0045804875, + 0.004592831, + -0.014429757, + 0.020381238, + -0.008491256, + 0.0010390405, + 4.264536E-4, + -0.015587435, + 0.009439355, + 0.0021498727, + 0.0031010828, + -0.030153926, + -0.0079923235, + 0.0085567655, + 0.038313128, + -0.028788328, + -0.03953234, + -6.356855E-4, + 0.006978547, + -0.014423481, + -0.010436513, + 0.03520763, + 0.007892796, + -0.0048239524, + 0.0112096965, + -0.0086288, + 0.011329931, + -0.0075203944, + -0.0063207704, + -0.014400289, + -0.0066734245, + -0.0028661527, + 0.010679476, + 0.02872882, + -0.007815682, + -7.536962E-4, + -5.674468E-5, + -0.010946134, + -0.022321543, + -0.021849506, + -0.018028114, + -0.020107491, + -0.00854716, + -0.014022637, + 0.020769985, + 0.014055006, + 0.006826117, + -0.020462252, + -0.0034127745, + -0.0021368875, + -0.031806875, + 0.027330982, + -0.0022999274, + -0.008493204, + 0.010040429, + 0.0061643636, + 0.0044244775, + -0.006526452, + 0.0035241847, + -0.0063794563, + -0.03088551, + -0.0032552304, + 0.0017929036, + -0.027390067, + -0.031069618, + -0.0029255373, + 0.009765339, + -0.006079699, + 0.0084520215, + -0.0038582124, + -0.01114177, + 0.0038492572, + -0.011628727, + 0.013284713, + 0.0099332435, + -0.028061401, + -6.663827E-4, + -0.0052048345, + 0.038675487, + -0.008247334, + 0.022492573, + -0.0069907694, + 0.016586954, + 0.009373894, + -9.35084E-4, + -0.020264408, + 0.005237111, + -0.006888359, + 0.017040743, + -4.8453378E-4, + 0.025337337, + -0.011047934, + 0.0013522482, + 0.0054145614, + 0.012772211, + 0.012928291, + 0.01919628, + 0.0073824828, + -0.006923298, + -5.0692284E-4, + 0.02547682, + 0.030355394, + 0.005742545, + -0.0031916078, + -0.002364641, + -0.008558205, + 0.0030105268, + -0.0025258367, + -0.02281073, + -0.022307493, + 0.0044449843, + 0.016913902, + -0.0017464218, + 0.0028467348, + 0.013170421, + 3.5872348E-4, + -0.015397496, + -0.0068470947, + 0.0311184, + -0.0024301088, + 0.0017643524, + 0.010811396, + 0.020430429, + 0.007128, + 0.0020134186, + -0.017993143, + -0.011301354, + -0.0023928147, + -0.011901177, + 0.021726271, + 0.013402035, + -0.010996281, + -8.7697896E-5, + 0.013736399, + -0.0036996978, + -0.01393195, + 0.007515346, + -0.033117983, + -0.0088358885, + 0.012041157, + -9.932738E-4, + -0.008556819, + 0.0018607691, + 0.015575288, + 0.018170914, + -0.0038480202, + 0.007421384, + -0.0040368475, + 0.014034015, + -0.017042408, + 0.010754607, + 0.009580072, + -0.00786726, + -0.023951987, + 0.0058544367, + 0.010774648, + 1.6448388E-4, + -0.020392511, + -0.008937686, + -0.0023195888, + 0.018347707, + 0.011482133, + -0.003600807, + -0.0060906014, + 0.008816462, + 0.0058064237, + -0.0069082985, + -0.00214806, + 0.0065466193, + -0.008068682, + -0.003295898, + 0.0012888289, + 0.0025264889, + -0.020754699, + -0.0013084726, + 0.009410851, + 0.0036917466, + 0.017993253, + -0.0016199508, + 0.010377011, + -0.036933944, + -0.0054976535, + -0.017074969, + -0.012641763, + -0.015137999, + 0.027098373, + -0.008223199, + -0.009163025, + 0.0055627613, + 4.7574707E-4, + 0.0031115937, + -0.001905353, + 0.026759926, + 0.013127237, + 1.1510219E-4, + -0.0045522302, + -0.002649521, + -0.0023510035, + 0.028144915, + 0.0063322997, + -0.004941827, + -0.01044922, + -0.025579441, + 0.004219216, + 0.0034047128, + -0.004121349, + -0.016689155, + 0.013698474, + -0.014633786, + -0.0053165774, + -0.012434879, + -0.010944582, + -0.023158599, + -0.0010287121, + -0.013656958, + 0.0027328494, + -0.012847933, + 0.023553243, + -0.002865151, + 0.0048812623, + 0.011605983, + -0.008884558, + -0.010997936, + 0.019988606, + -0.007917352, + 0.011885545, + -0.018393343, + -0.001350001, + -0.012807534, + -0.043605056, + -0.021427274, + -0.02006712, + 0.02293811, + 0.011417862, + 0.019975007, + 0.0055977246, + -0.007978739, + -0.027744723, + 0.04150901, + -0.008843627, + -0.023118693, + 0.0060327975, + 0.004318302, + 0.013177739, + -0.003500459, + 0.0017395015, + -0.010562105, + -0.008891494, + 0.006377715, + 0.0042304615, + -0.010983834, + -0.008253388, + 0.006972611, + 0.0074925073, + 0.00467137, + -0.029479863, + -0.014845271, + 0.017667342, + -0.0012250197, + -0.0043064263, + -4.0807488E-4, + 0.013085944, + -0.009563946, + -3.2809726E-4, + -8.3083555E-4, + -3.907197E-4, + 0.029500695, + 0.02699412, + 0.021970483, + -0.020276906, + 0.0018552045, + -0.0072256797, + -0.004812976, + 0.021325454, + -0.009368022, + -0.008361692, + 0.007487017, + 0.0043218276, + 2.7403948E-4, + -0.008265783, + 0.02602037, + 6.651396E-4, + 3.4275188E-4, + -0.006872514, + -0.0035217924, + 0.0040833787, + -0.016517334, + 2.389079E-5, + 8.837762E-4, + -0.004002184, + 0.02806385, + -3.0302874E-5, + -0.02770119, + -0.0025984847, + -0.019229906, + 0.018716894, + -0.003550413, + -5.567869E-5, + 0.01850498, + -0.005894438, + 0.020164365, + 0.005026478, + 0.0017091593, + -0.004947392, + -0.0023684173, + 0.029548807, + 0.022253, + -0.02227569, + -0.010369463, + 0.014397293, + 0.005081593, + -0.0044117887, + -0.0046733064, + -0.004750329, + -0.023890672, + -0.01656545, + 0.00596482, + -0.011943916, + -0.013642765, + -0.0046172175, + -0.0014060602, + -0.021183262, + -5.592436E-4, + -0.01381032, + 0.013959684, + -0.0023578426, + -0.021828309, + -0.020732874, + 2.1699407E-5, + 0.013321433, + 0.009976829, + 0.0024702267, + -0.012548156, + -0.008597322, + -0.008613794, + 0.041392867, + 0.017533919, + -0.014238861, + -0.0022524176, + -0.009682873, + -0.0046972586, + 0.012847997, + -0.021418208, + 0.011725789, + -4.3606298E-4, + 0.0063536274, + -0.012473168, + 0.016903294, + 0.011759098, + -0.018239606, + 0.01699525, + -0.0278454, + -0.009475146, + -0.031148402, + 0.00393817, + 0.012208024, + -0.029536426, + 7.9181144E-4, + 0.0068847495, + 4.435739E-4, + -0.026130589, + 0.01151474, + 0.008100352, + 9.1631303E-4, + -0.0072447476, + -0.006926856, + 0.0050811907, + 0.029344155, + 0.0029017644, + -0.01824061, + -9.294276E-4, + -0.014951994, + 0.0020110167, + -0.0105799725, + -0.013520637, + -0.01723721, + -0.008833026, + 0.025913658, + -0.024579044, + -0.022907794, + -0.00846585, + 0.008844707, + -0.004820185, + -0.01941124, + 0.03189357, + -0.0044360864, + 0.0073607503, + -0.004809411, + 0.015821597, + 7.267937E-4, + 0.017847035, + 0.013044558, + 0.013232459, + -0.020156905, + 0.018878004, + 0.013346582, + -0.012156298, + 0.013969853, + -0.02024708, + 0.022801014, + 0.016321357, + 0.017181415, + -0.003504135, + -0.006181722, + -0.003913195, + 0.017600778, + -0.005973169, + 0.0085235415, + -1.0990236E-4, + 0.015627386, + 0.006203707, + -0.005307141, + -0.0041463324, + 0.012731505, + -0.018985368, + -4.0407747E-4, + -1.07121065E-4, + 0.013735642, + 0.007860623, + -0.026140634, + 0.0047092927, + 0.0065098074, + -0.010447938, + -0.014929827, + -0.005169902, + 8.189727E-4, + -0.0018264343, + -0.018773543, + 0.01849588, + 0.010585065, + -0.0066084773, + -0.0013616193, + 0.006504755, + 0.02217617, + -0.0039620763, + -0.0014788872, + 0.002522549, + 0.013802472, + 0.010715444, + -0.018219272, + 0.022298109, + -0.0033521121, + 0.017259168, + -0.04258, + 0.009694654, + -0.0029849098, + 6.642063E-4, + -0.018385362, + 0.008492676, + -0.043331046, + -0.008522599, + 0.021873139, + -9.951537E-4, + 0.0029096627, + -0.015600981, + -0.014729076, + -0.0024717757, + -0.024554567, + 0.03711461, + 0.011916506, + 0.019512106, + -0.024412435, + 0.012646362, + 0.0011235661, + 0.0060193595, + 0.014228829, + 0.018210366, + -0.020786557, + -0.023939665, + -0.014714149, + -0.019603787, + 0.0010895089, + -0.014986706, + -0.03230829, + -0.015196985, + -0.001584013, + -0.005081504, + -0.0133775985, + -0.0011061804, + -0.011551245, + -0.02551266, + -0.015203757, + 0.0021252602, + 0.0011628658, + -0.0058680554, + -0.019818446, + 0.0071879653, + -0.007986047, + 0.015620334, + -0.0075297556, + 0.013217732, + -0.018473124, + 0.039250564, + 0.008602283, + 0.013423412, + -0.008053585, + -0.007859732, + -0.013784699, + 0.014041746, + -0.005693291, + 0.01052998, + 0.029509885, + -0.0018939946, + 0.0014223576, + -0.006445757, + -6.905746E-4, + -0.0072597372, + -0.0057512354, + 3.626113E-4, + -0.008817395, + 0.01695791, + 0.007371463, + 0.029477382, + 0.001712272, + 0.021729864, + -0.0011636404, + 0.0017515654, + -0.004214934, + 0.014248332, + 0.0065494124, + 0.00600529, + 0.018564187, + -0.0035441369, + -0.009426571, + -0.012031801, + -0.010147257, + -0.003847462, + -0.03138364, + 0.0051018824, + 0.0116015505, + 0.0013721784, + -0.0017977605, + -0.024280217, + -0.022793556, + -0.024513464, + 0.01017948, + 0.007861699, + -0.023164181, + 0.003367074, + -0.03729133, + -0.032708615, + -0.025340939, + -0.015913384, + 0.01491996, + 0.0039573186, + -0.010533366, + 0.0067014797, + -0.012710174, + -0.00663644, + -0.024887512, + 0.0013705756, + 0.005407775, + 0.005503281, + 0.013450183, + -1.9874827E-4, + -0.0032616358, + 0.031512715, + -0.004222494, + -0.019655056, + -0.011732457, + 0.020348754, + 0.001028248, + 0.026087597, + -0.018640636, + 0.018138785, + 0.021826517, + -0.001770936, + 0.010917087, + 0.010890683, + -0.030656978, + -0.008338049, + 0.003757116, + 0.011073267, + -0.009387348, + -0.010634912, + 0.032328155, + 0.021870436, + 0.013632126, + 0.013170387, + 0.017384654, + 0.022828491, + 0.017485896, + -0.022520175, + -0.011772435, + -0.0045386883, + 0.01267245, + -0.0017469877, + 0.03529373, + 0.012746123, + 0.0037772888, + 0.0017490418, + -0.005264344, + -0.016222464, + -0.016546892, + 0.0035306418, + 0.028723517, + -0.011843246, + -1.4001748E-4, + -0.018694859, + 0.021480327, + -0.0061030085, + -0.0052030776, + -0.0020970192, + 0.010442484, + -0.005212425, + -0.0055839834, + 0.0074399635, + 0.0043785507, + -0.0066137915, + 0.008862598, + -0.006251283, + -0.019560138, + 0.01427489, + 0.0077867093, + -0.0047045625, + 0.023452455, + -0.027243748, + 0.010502547, + -0.013056641, + 0.006760625, + -0.010386606, + -0.031392027, + 0.0027268822, + 0.017806986, + -0.0135848485, + 0.013885175, + -9.569259E-5, + -0.015280604, + -0.02149737, + -0.00598937, + -0.003516855, + -0.004757235, + 0.012463178, + 0.010460624, + -0.0014070017, + -0.003650968, + 0.032268263, + -0.01800547, + -0.0059714965, + 0.02515618, + 0.0013019224, + 0.0012173217, + 0.01829241, + -0.0023659565, + 0.0018056099, + -0.009136635, + 0.014155946, + 0.018089939, + -0.020279188, + -6.121324E-4, + 0.010981273, + 0.0047051967, + 0.0012907236, + 0.013489885, + 0.0060146376, + 0.019461248, + -0.01046323, + 0.008569931, + 0.026719436, + -0.009115874, + 0.0012734229, + -0.012353802, + 0.00299024, + -0.006042646, + 0.008754135, + 0.014674313, + -0.00684043, + -0.023032641, + -0.010244987, + 0.013517856, + -0.0012429269, + -0.0061959377, + 0.009954031, + 0.008138851, + 0.008576493, + 0.015464684, + 0.013913147, + -0.021643238, + 0.014366752, + -0.019693634, + -0.021309266, + -0.0156217, + -0.016233752, + -0.03138088, + 0.029226473, + -0.027985862, + -0.0039567384, + -0.03204277, + -0.0075023654, + 0.02360216, + 0.019653082, + -0.014117696, + 6.986932E-4, + -0.018699601, + -0.018507231, + -0.0079511, + -0.017572396, + 0.008949863, + -0.006493232, + -0.006592226, + -1.11180525E-4, + 0.022067402, + 0.019622946, + 0.0084518315, + 0.01156726, + 0.014899675, + 0.0158105, + 0.012014987, + -0.016790973, + -0.03551518, + 0.014825366, + 0.007874786, + -0.0014286389, + 0.006191266, + -0.0063358685, + -0.00821032, + -0.03637508, + 0.018144038, + -0.0013963542, + -0.008609384, + -0.01616116, + -0.0051360545, + 0.0013946821, + -0.017014338, + -0.011162729, + -0.010445121, + -0.009426102, + -0.013322378, + -0.004068289, + -0.007858927, + 0.017384773, + -3.4071156E-5, + -0.0051741, + 0.015864098, + -0.02546183, + -0.0097550815, + 0.0088161845, + 0.013958557, + -0.0010474809, + -0.013617579, + 4.3657285E-4, + 0.009451423, + -0.007878064, + -0.007635277, + -0.02097216, + -0.023610063, + 0.02863994, + -0.00711153, + -0.0025647331, + 0.010414228, + -0.024366079, + 0.0021418966, + -0.018390529, + -0.004624799, + 0.0072407764, + -0.032820817, + 0.009095883, + -7.5510325E-4, + 0.018022098, + 0.005996091, + -0.00682241, + 0.0060091815, + -0.011917926, + -0.014234605, + 0.006956867, + 0.01566811, + 0.020000981, + -0.011296821, + -0.040661637, + 0.0051872493, + -0.0040731686, + -9.870839E-4, + 0.01389186, + -0.0074882535, + 0.008010519, + 0.0012650299, + -0.020966224, + 0.007585634, + 0.0026519224, + -0.010903378, + 0.02855874, + 0.0015308618, + 0.0020272874, + -0.0012100007, + -0.011976122, + 0.009571909, + -0.016287938, + 0.017635472, + 0.0096661085, + 0.02740193, + -0.026751313, + 0.012759335, + -0.003168919, + 0.0051047644, + -0.0018183683, + 0.013895016, + -0.008221886, + -0.015921835, + -0.0048837936, + -0.0028076633, + -0.019835444, + 0.0049071433, + -0.026530301, + 0.005162918, + 0.0043151947, + -0.015594593, + -0.014864883, + -0.009642293, + 3.4643334E-4, + -0.0057172836, + 0.0029902563, + 0.0031023724, + 0.023002407, + 9.453903E-4, + 0.017536504, + -0.014888152, + -0.005975734, + 0.0078072585, + 0.021210464, + 0.011366637, + -0.0029500742, + 0.012211677, + -0.017425764, + 0.0020923263, + 0.007784639, + -0.021844741, + -0.026888402, + -0.015068692, + -0.03111204, + 0.005915332, + -0.0063116117, + 0.019134283, + 0.016160406, + -0.024936398, + -0.017328475, + 0.0023549267, + 0.001472624, + -0.0032760908, + 0.019584572, + 0.01567124, + 0.005212026, + 0.004453091, + 0.004061483, + 0.0016698972, + -0.008429328, + 0.0011323472, + 0.0071584117, + -0.008785923, + 0.0142751075, + 0.006998769, + 0.03814829, + -0.009159615, + 0.011524772, + -0.0137157915, + 0.008120034, + 0.007199701, + -0.016802851, + 0.023783604, + 0.012174428, + -0.041172154, + 0.0039545638, + -0.011727326, + 0.028969627, + 0.0036471025, + -0.02384004, + 0.003138432, + 0.024747487, + -0.003920417, + -7.145966E-4, + 0.0015551817, + 0.015286407, + 0.017872458, + 0.007393424, + 0.02704969, + 0.008584365, + -0.005787263, + 0.0066427584, + -0.008838227, + -5.668819E-4, + 0.0016401634, + -0.01081051, + -0.030809548, + 0.0062828204, + 0.006563432, + 0.025283359, + -0.012986366, + -0.006867436, + -0.016279195, + -0.022578182, + 0.0045465934, + -9.396142E-4, + 0.01017692, + -0.008385282, + 0.020876087, + -0.004779674, + -0.03730969, + 0.01055383, + -0.0137811685, + -0.013479045, + 0.021839574, + 0.010189275, + -0.03620909, + 0.0036200718, + 0.019501984, + 0.0041978336, + 0.007469593, + -0.022252608, + 0.021245113, + 0.013170195, + -0.008479303, + -0.0049454435, + -0.009192889, + 0.008139483, + -0.017262785, + 0.008089157, + -0.011169081, + 0.0013333515, + 0.004864551, + -0.023445075, + -0.009858174, + -0.012947325, + 0.03994573, + 0.010477681, + 0.0011262669, + 0.008672464, + -0.0059755724, + 0.003510399, + -0.006939012, + -0.004602027, + -0.0071605914, + -0.014060635, + 0.010222699, + 0.016176347, + -5.909584E-4, + 0.015251555, + -0.020446507, + 0.03678885, + 0.02713197, + -0.028345801, + -0.027009154, + -0.02135768, + 0.008236798, + 0.03440378, + 0.004487572, + -0.012838985, + 0.015061176, + -0.010420189, + 0.019407481, + 0.006122152, + -0.01118564, + -0.03727381, + -0.0013226367, + 0.0048566917, + 0.0136466855, + -0.0036902237, + 0.0120291235, + -0.0023650161, + -0.009697523, + 0.01681678, + -0.0024569316, + -0.0047355606, + -0.014090622, + 0.02592316, + -0.019603923, + -0.02138089, + -0.0052782875, + -0.026566694, + -0.019898066, + -0.028581321, + -0.030398378, + -0.009645492, + 0.0019050679, + 0.020497276, + -0.01702345, + -0.016118588, + -0.0066306544, + -0.011288064, + -0.020024028, + 0.021082362, + 0.017942432, + 0.001876279, + -9.637682E-4, + -0.0081848195, + 0.008685787, + 0.0028035368, + -0.003999553, + 0.015781311, + 0.02208125, + -0.01681858, + -0.0066230632, + -0.00427819, + -0.0089569865, + -8.806969E-4, + -2.623468E-4, + -0.008028754, + 0.0075216657, + 0.002684017, + -0.018212369, + 0.0032029331, + 0.008598478, + 0.031676356, + 0.010263911, + -0.021568632, + 0.0015047572, + -0.01686252, + -0.011243229, + -0.017684892, + 0.02829054, + 0.00109586, + -0.0071522393, + 0.0064998716, + -0.0093078045, + -0.013933242, + -0.018372225, + 0.005086817, + 0.0066019716, + 0.00835258, + -0.020738231, + -0.02055697, + 0.007719646, + -0.0070427395, + 0.03308487, + 0.00405829, + 0.0057851924, + -0.005410557, + -0.008044431, + -0.008157787, + 0.01486794, + 0.0031789837, + -0.012861281, + -0.004651614, + -0.015841242, + 0.028218284, + -0.016447933, + -0.009075376, + 0.006934081, + -0.0043782257, + -0.01785344, + -0.0021863838, + -0.02748522, + -0.013589053, + 0.026945893, + 0.0051113614, + 0.0313844, + 1.2938606E-4, + 0.011467056, + 0.018887753, + -0.012758571, + -0.022483392, + 0.014406865, + -0.004112314, + -0.0077892966, + 0.013145981, + -0.021420335, + 0.011005121, + -0.018421458, + -0.016178796, + -0.018770011, + -0.04864777, + 0.069875136, + 0.010528279, + -0.009441769, + -0.008187927, + -0.010543147, + -0.007952661, + 0.02390895, + -5.1001017E-4, + 0.017197253, + 0.0116574615, + 0.015280509, + 0.013776559, + 0.028710054, + -0.009263093, + 0.018196566, + 0.007997128, + 0.007377795, + -0.003503982, + 0.002233478, + -0.009196663, + 0.0117691355, + -0.0037995817, + -0.023208993, + 0.005198027, + 0.0011872288, + 0.0113303745, + -0.030819543, + -0.046606492, + -0.009077327, + 0.010778704, + -0.016178265, + -0.0091870725, + 4.075232E-4, + -0.008505198, + -0.0027616825, + 0.01983121, + 0.005337365, + 0.012356502, + 0.008406644, + 0.012704889, + 0.023783695, + 0.0031983252, + 0.018661665, + -0.016329475, + 0.016423522, + 0.018400768, + -0.00872162, + -0.006444308, + -0.00965308, + 0.0031298008, + -0.03928975, + -0.0133745745, + 0.020654658, + 0.008368331, + 0.018936679, + -0.013412106, + 0.01714829, + -0.025166767, + -0.0121301785, + -0.0057966392, + 0.024515167, + 0.016466085, + 0.004540647, + -0.022861252, + 0.006878946, + -0.001607776, + -0.0017941056, + -0.010892072, + -0.0073942323, + -0.0022434283, + 0.0029332875, + -0.022785056, + 2.4245134E-4, + -0.010756936, + -0.00892051, + 0.0063650846, + -0.01168105, + 0.003978189, + -0.001160123, + -0.009815055, + -0.004855227, + 0.035404693, + -0.021911437, + -0.010575704, + 0.003932149, + 0.016972536, + -0.0020067012, + -6.170379E-5, + -0.014638239, + 0.0020402055, + 0.01837644, + 0.018710429, + -0.010246917, + 0.015340298, + 0.015537505, + 0.0119813, + -0.014934574, + 0.013379625, + -0.005929267, + -0.002645052, + -0.0020490305, + -0.021039948, + 0.005551151, + -0.018979838, + -0.02244436, + 0.004360899, + 0.010730627, + -0.0012742128, + -0.0060734847, + 0.017602865, + -0.018711895, + 0.017734308, + -0.003825623, + 0.017821746, + -0.012991275, + -0.0015473284, + 0.035571355, + -6.238107E-4, + 0.0074181817, + 4.834127E-5, + 0.0051409304, + 0.01748228, + 0.009094367, + 0.0016748693, + -0.016621348, + -0.014608988, + 0.027137138, + 0.018427357, + 0.02228531, + 0.01598576, + -0.03252542, + -0.0014401311, + 0.019312372, + 0.03411002, + -0.0063239457, + -0.0067355256, + 0.020721354, + -0.021997334, + -0.0055223093, + 0.013758402, + 0.029998172, + 0.019709293, + -0.005946025, + 0.006149325, + -0.0041651423, + 0.010695722, + -0.014603847, + -0.010122908, + -0.010175514, + 0.020519283, + -0.012717895, + -0.0067989393, + 0.007887583, + 0.005837946, + -0.007470587, + 0.0027419825, + 0.0064443327, + 0.0016529326, + 0.0111179, + 0.025497898, + -0.008249547, + -0.0047132527, + -0.008004455, + 0.0050963094, + -0.016682392, + -0.004930909, + -0.01075433, + -0.0014785075, + -0.0022161035, + -0.009700331, + -0.02045616, + -0.012153814, + 0.012674694, + -1.5758765E-4, + 0.0032441025, + 0.027418071, + 0.0045859967, + -0.010274445, + 0.0013384948, + 0.01764916, + 0.015497338, + -0.012569932, + 0.005637416, + -0.0016681033, + -0.0012507032, + 0.030832818, + 0.007227371, + -0.01840585, + 0.008446236, + -1.5868549E-4, + 0.011451271, + -0.011651165, + 0.028268786, + -9.3432126E-4, + 0.028343977, + 8.1574696E-4, + 0.021683227, + -0.0020317428, + -0.006324081, + -0.012199969, + 0.030487001, + 0.011338015, + 0.018588303, + 4.4308827E-4, + -0.0125052165, + -0.009144179, + 0.0026802965, + -0.022045279, + -0.0066805673, + 0.03381928, + -0.015233735, + 0.0120354425, + -0.018168103, + -0.02416233, + -0.02754068, + 0.026188413, + 0.0171676, + -2.1378872E-4, + -0.021290056, + 0.0018173571, + -0.018903932, + 0.013056997, + 0.0065781754, + -0.027219836, + -0.0076138014, + 0.009020153, + 6.4985536E-4, + 0.019728428, + -0.0043085017, + 0.018648993, + -0.0071308836, + -0.008002314, + 0.012823137, + -0.014302112, + -0.004244994, + -0.021517547, + -0.015704365, + -0.025118167, + 0.016724426, + 0.01501391, + -8.4167393E-4, + -0.0075595877, + -0.0153376, + -0.03188346, + -0.012173416, + -0.019392872, + 0.025179219, + -6.757242E-4, + -0.02276541, + 0.01779708, + 0.018793883, + -0.0032837042, + 0.023678664, + -0.012110743, + -0.018574899, + -0.02158982, + -0.020164901, + -0.032427616, + 0.01566806, + -9.862974E-4, + -0.02126453, + 0.00515808, + 0.017316129, + -0.020837048, + 0.006570764, + 0.017118756, + 0.0029556714, + -0.0032732496, + -0.019694593, + 0.012409539, + -0.0067732073, + 0.016820394, + 0.010011976, + -0.0036652142, + -0.013650312, + -0.011121353, + -0.0068914182, + -0.01017716, + -0.024819424, + 0.0050701066, + -0.034562778, + -1.23707705E-5, + 0.015710125, + 0.0026458302, + 0.020439668, + 0.010365178, + 0.0068052043, + -0.020888941, + 0.0030150113, + -4.1437152E-4, + 0.0023205327, + -0.024148798, + -0.01415783, + 0.003898747, + -0.02476833, + -0.015162658, + -0.02433785, + -0.001693718, + 0.014682686, + -0.038306516, + -0.020112256, + 0.030240435, + -0.020615982, + 0.030525131, + -0.0148200095, + 0.01431904, + 0.023379397, + -0.004385474, + -0.01729842, + -0.023087442, + -0.032231748, + -0.003205044, + 6.5267074E-4, + -0.04058325, + 0.0043243966, + -0.001182285, + -0.002913992, + 0.043384958, + 0.01652428, + -0.010383896, + -0.015071586, + 0.021008076, + 4.3852394E-4, + 0.031594597, + -0.026217308, + 0.0075489366, + -0.013676108, + 0.025135137, + 0.010543286, + -0.0033314626, + 0.0025299147, + -0.013690127, + -0.001965167, + -0.014574745, + 0.0011026162, + 0.030828226, + 0.013149206, + -0.0073006772, + -0.035605937, + -0.001987702, + 0.02302121, + 0.0031984602, + -0.008388705, + -0.021324055, + 0.009865578, + 0.010972054, + -0.008050475, + -0.017683756, + -0.009170709, + -0.022618681, + -0.007884153, + 0.028169084, + 0.016875792, + 0.00775332, + 0.02764038, + -0.033389013, + 0.01523135, + -0.0061722114, + -8.4534846E-4, + 0.018013397, + 0.009438657, + 0.0036805954, + 0.0045119924, + -2.4380912E-4, + -0.0065204194, + -0.0010020115, + -0.00393909, + -0.01303394, + -0.004117857, + 2.533853E-4, + -8.038722E-4, + -0.007008477, + 0.012889619, + -0.03674472, + -0.0035348341, + 0.00719825, + -0.03497432, + -0.02314777, + 0.054044012, + -0.022436481, + 0.018827194, + -0.02017562, + 0.026311798, + -0.008149915, + 0.03533018, + 0.019453634, + 0.0054574255, + -0.017624456, + -0.01708966, + -0.0018380865, + -0.004140212, + 0.024083609, + -0.00905614, + 0.013970502, + -0.026790872, + 0.0060722716, + 0.02705202, + 0.030111162, + 0.009594312, + 0.037655476, + -1.8088763E-4, + 0.005941248, + 0.025991807, + -0.007904996, + -0.0042467276, + -0.018192401, + 0.0013290967, + -0.01771105, + -0.030069532, + -0.00814721, + -9.457024E-4, + 0.0077599958, + -0.0072087487, + 0.015138684, + -0.0033498767, + 0.024353834, + 0.013671351, + -0.0059423037, + -0.025653983, + 0.022750113, + 0.012007191, + -0.014006767, + 0.004375622, + 0.02016722, + 0.012222048, + 0.0100982515, + 0.021656925, + 0.0063956096, + -0.017874986, + -0.019946752, + 0.014681133, + -0.012774668, + -0.009691196, + -0.021398151, + -0.00789302, + -0.024423292, + 0.0069837803, + 0.017799495, + 0.0017929686, + 0.00853977, + -0.01655467, + 0.02478517, + 0.015672771, + -0.021910023, + -0.019500453, + -0.01144913, + 0.03077018, + 0.0035355666, + -2.1362757E-4, + -0.0013349672, + 0.011692694, + -0.02494502, + 0.007993096, + 6.967207E-4, + -0.008381165, + 0.0030420031, + 0.010886564, + 0.017998075, + -0.0030084443, + 0.012728035, + -0.013865374, + 0.0053857076, + -0.0087600965, + -0.019936914, + 0.036530223, + 0.039059293, + 0.002423995, + 0.009296142, + -0.010445104, + -0.014533422, + 0.010485483, + 0.00460216, + 0.022096936, + 0.017370168, + 0.005025252, + 0.0145371165, + 0.0057447203, + -0.00907383, + 0.007423905, + 0.0014265787, + 0.005825759, + 0.0061127506, + -0.024504485, + -0.0025700915, + -0.052004967, + 0.009823061, + -0.0013720529, + -0.012110398, + 0.016995277, + 0.014777091, + -0.0077436236, + 0.0027631666, + 0.014747591, + 0.009907766, + 4.5417217E-4, + 0.039907616, + -0.012334515, + 0.0043096486, + -0.025384825, + 0.014514329, + -0.007082435, + -0.0050483258, + 0.015831513, + 0.040439326, + 5.2505307E-4, + 0.036063675, + -0.0016559049, + -0.0013098207, + -0.0032055606, + 0.008564245, + 0.02255071, + -0.0040973215, + 0.0037110858, + -0.011583265, + -0.008155063, + -0.014991239, + 0.023998065, + 0.004074249, + 0.02775291, + -0.0039615906, + 0.02178964, + -0.023490833, + 0.002162067, + -0.0011485151, + 0.007572228, + 0.016373917, + -0.022939023, + -0.005320182, + 0.04641127, + -0.024578582, + -0.027695727, + 0.0069217435, + -1.2559285E-4, + 0.023070471, + -5.179304E-4, + -0.032923687, + 0.0044809743, + -0.0062886784, + 6.539308E-5, + -0.011541834, + -0.013303858, + 0.032911155, + 0.013222511, + 0.006045902, + 0.0044847815, + 0.013844385, + -0.0019590203, + 0.012927617, + 0.0196865, + -0.039049614, + 0.011696217, + 0.0060283844, + -0.0027175657, + 0.014502057, + 0.026899526, + -0.01619751, + -0.0054677804, + -0.032846667, + 0.022045838, + -0.014529726, + -0.024975164, + 0.014705266, + 0.012906339, + 0.013890844, + -0.00402894, + 0.023756728, + 0.009516808, + -8.2897756E-4, + 0.02287929, + 0.0395185, + -0.011534701, + -0.0024916872, + 0.0014103636, + 0.016982352, + 0.009444982, + -0.005006204, + -0.01683777, + -8.9435215E-4, + -0.034411937, + -8.9177163E-4, + -0.0092564225, + -0.0062245745, + 0.018659573, + -0.005505154, + 0.0061500515, + 0.015229972, + 0.0038637088, + -0.011449457, + -0.0018646728, + -0.013473076, + -0.001152317, + -0.005951906, + -0.020266993, + 0.01862476, + 0.012024669, + -0.0026369102, + -0.021229476, + 0.004785033, + -0.006513989, + 0.0045897327, + 0.011641971, + 0.0071552964, + -0.015768621, + -0.011548734, + -0.0037371106, + 0.015202333, + 0.024926497, + -0.010136577, + -0.0077792606, + -0.006666742, + -0.0016469939, + 0.004809414, + -0.027041223, + 0.0026792127, + -0.0034536808, + -0.0130414115, + 0.009150096, + -0.007874593, + 0.0042688954, + 0.003029245, + -0.012200988, + 0.016156383, + -0.005035709, + 9.6622435E-4, + -0.021841895, + -0.0022640226, + 0.026513858, + -0.014273259, + -0.030129176, + -0.035192687, + 0.004789835, + 0.009986797, + 0.004191315, + 0.007179876, + 0.0023384364, + 6.808185E-4, + 0.008385709, + 0.016381413, + 0.021503134, + -0.025693273, + -0.003288524, + 0.014247607, + 0.010189756, + 0.0102482475, + 0.0043400484, + 0.007197552, + 0.0032499395, + 0.017949933, + -0.0036145544, + -0.051273573, + -0.010104468, + -0.022362223, + 0.010508181, + -0.028761905, + -0.016673142, + -0.002709361, + 0.027688963, + -0.00892058, + -0.004691406, + -0.008426836, + 0.012931411, + 0.0038469238, + -0.03588334, + 0.0044424403, + 0.016320445, + 0.009987541, + 0.008121169, + 0.01432163, + -0.013474688, + -0.030046735, + -0.011791481, + 0.023262212, + -0.015699707, + -0.02111706, + -0.00491388, + 0.024372358, + 0.0071468344, + -0.026827268, + 0.007045426, + 0.008494302, + -0.008585678, + 0.0057596858, + -0.011853271, + -0.0039150845, + -0.010382943, + 0.010997302, + 0.018280257, + -0.010773653, + 0.0077713267, + 0.0142550655, + -0.0018706472, + -0.0026898708, + 0.026846906, + 0.008793097, + -0.0024633962, + -0.0016512637, + -0.016064964, + 0.027119314, + 0.027716186, + 0.02928937, + 0.009012854, + 0.007137507, + -0.005914043, + -0.0037109142, + 0.011014503, + -0.01022762, + 0.004153036, + -0.0062555657, + -0.012197803, + 0.026497321, + -0.017517067, + 0.007638982, + -0.011529221, + 0.016095193, + 0.030415222, + 0.009737675, + 0.021825429, + 0.007026444, + 0.008897714, + 0.04796682, + -0.014289473, + 0.018871583, + -0.0297536, + -0.029870603, + 0.021734688, + -0.03596597, + 0.02498036, + 0.0126634175, + 0.013044756, + 0.0088957995, + 0.001085778, + -2.1150352E-4, + 0.015663248, + -0.003019882, + -0.04239596, + -0.0090700425, + -0.011520934, + 0.012792307, + 0.014818504, + 0.015605351, + 0.010817862, + -0.017516453, + -0.007839767, + 0.019517774, + -0.015182006, + -0.030496085, + 0.023329275, + -0.0070981625, + -7.0049806E-4, + 0.025365658, + -0.014740853, + 0.0032278681, + -0.011654409, + -0.010531808, + -0.017193928, + -0.0043681744, + 0.020409927, + -0.018913526, + -0.01023314, + -0.020965684, + 0.015528074, + 0.017574448, + -0.028428996, + -0.036469847, + -0.021829437, + 0.016118253, + -0.019556453, + -0.0070311585, + 0.0015495729, + -0.021343393, + -0.015181306, + -0.02608785, + -0.010862755, + 0.020137725, + -0.005636259, + 0.032895792, + 0.031922262, + -0.012906564, + 0.007880835, + 0.004572886, + -2.1644101E-4, + 0.007256954, + -0.027169986, + 0.0065601286, + 0.0070533263, + -0.008770284, + 0.004607157, + -4.589252E-4, + 0.0028586346, + -0.011852467, + -0.021872139, + 0.005858463, + 0.021043293, + -0.016987592, + 0.005271087, + -1.1638615E-5, + 0.021519957, + -0.004917181, + -0.0024690707, + 0.0071041286, + 0.001827275, + 0.01334065, + 0.02702219, + -0.024983628, + -0.01057308, + -0.0467743, + -0.022312557, + -0.010277769, + -0.018160576, + -0.017737066, + -0.02730991, + 0.004459959, + 0.015462046, + -4.843228E-4, + 0.012347762, + -0.001750301, + -0.00441012, + -0.025784595, + -0.013625298, + 0.01886003, + -0.022842245, + 0.0011572771, + -0.006715168, + 0.01819273, + -0.0010708537, + 0.030344307, + -0.008022657, + 0.0068117715, + 0.017325507, + -0.002103173, + 0.01201628, + 0.021304183, + 0.013876986, + 0.021457, + -0.011991437, + -0.026420658, + 0.023666963, + -0.012666322, + 0.019499494, + 0.0124271205, + 0.005807188, + 4.858986E-4, + -0.0149331875, + 0.021192933, + -0.015758103, + -0.00677293, + -0.031754375, + -0.0013994859, + -0.011927948, + -0.0012406928, + -0.013701208, + 0.0087524075, + 0.0067894827, + 0.012000099, + -0.0076227966, + -0.029399816, + -0.016406255, + -0.0021570465, + -0.009223158, + 0.0086773895, + -0.0076996074, + 0.008446641, + -0.017374936, + -0.0038883851, + -0.0048087663, + -0.0067784786, + 0.02501939, + -3.170642E-4, + 0.0066781375, + 0.027247736, + 0.0028700544, + -0.017984115, + -0.011104248, + -0.0028078689, + -0.043526523, + 0.0044248896, + 0.0140350545, + 0.009405018, + -0.007979732, + -0.009522636, + -0.023836644, + 0.009059067, + 0.006364033, + -0.0034985896, + 0.0013908007, + 0.0012495725, + -0.018520044, + 9.1592513E-4, + -0.036415435, + -9.946703E-4, + 0.026472313, + -0.01389129, + 0.023288095, + -0.002993787, + 0.015090604, + -0.022415942, + 0.0012862859, + -0.010192764, + 0.01401479, + -0.03589422, + 0.021971932, + -0.012112257, + -0.028287841, + -0.013304225, + 0.004886095, + -0.009696553, + 9.2017866E-4, + 9.4641803E-4, + -0.006822688, + 0.0060214647, + 0.0013880432, + 0.03331678, + 0.003973594, + 0.0075513963, + 2.121055E-4, + 0.0018185307, + -0.0017122047, + -0.0020723913, + -0.028650073, + -0.025662277, + -0.0052185105, + -0.011737986, + -0.025225542, + 0.013750974, + 7.9675706E-4, + 0.0065116733, + -0.0012973251, + -0.027137544, + -0.01672276, + 0.010781843, + 0.018883143, + -0.0035287128, + 0.004993637, + 0.006231772, + -0.007808551, + -0.0065340376, + -0.016897831, + -0.033883795, + 0.014053133, + 0.020096414, + -0.005597684, + 0.0015190127, + 0.014784279, + 0.0023349316, + -0.0034301642, + 0.0029045092, + 0.004962397, + -0.031036394, + -0.021165818, + 0.020759376, + -0.013131532, + 0.0049090637, + 0.0042380663, + -0.012352214, + 0.0011247039, + -0.017107587, + -0.012847805, + 0.008002951, + -0.016929632, + -0.04103305, + 0.021277567, + 0.007874419, + 0.008779114, + 0.008592704, + 0.007835953, + 2.3567144E-4, + -0.029187186, + -0.016594784, + 0.0055402713, + -0.0071792873, + 0.012064655, + -0.0074106017, + 6.4931996E-4, + -0.009863841, + -0.0053405617, + 0.021196106, + -0.018077413, + 0.014492207, + 0.010359166, + -0.0066887, + 0.017441154, + 0.0039798827, + -0.022482293, + 0.0039694523, + 0.009244754, + 0.0024901466, + 0.02419959, + -0.0017859926, + 0.023985038, + -0.017926386, + -0.0012774385, + -0.008926076, + 0.00802612, + 9.5298723E-4, + -0.01586821, + 0.008857697, + 0.003851915, + 0.005123294, + -0.011371571, + 0.0037868756, + 0.013390264, + -0.0021271005, + 0.021425534, + 0.021058045, + 0.024840286, + -0.009510428, + 0.013744582, + -0.0017256535, + 0.01247856, + -0.0040438264, + -0.005142404, + -0.013325293, + -0.0114787705, + -0.014321245, + 0.011782695, + -0.019668302, + -0.03847598, + -0.031566907, + -0.02044865, + -0.013228015, + -0.006029604, + -0.024722373, + 0.014107413, + 0.007971649, + 0.0166288, + 0.022976207, + 0.011698359, + -0.006968171, + 0.018774807, + 0.012284183, + 0.007502159, + -0.009438672, + -0.013437778, + -3.65249E-4, + -0.009122261, + 0.0031613775, + 0.010113129, + -0.013322232, + -0.020778993, + 0.006974725, + 0.01539143, + 2.7904322E-4, + -0.0016013255, + -0.02592301, + -0.022656074, + 0.003063891, + -0.0052749044, + -0.014265469, + 0.0041668247, + -0.018554017, + -0.03445286, + -0.0068341866, + 0.0035062237, + 0.0053165457, + 0.0011019483, + 0.0018705266, + -0.023641808, + 0.02616391, + -0.007470682, + -0.038657464, + -0.012097721, + 0.043315027, + -0.0025011129, + -0.04568687, + -0.018591397, + 0.03156938, + 0.013413825, + -0.017957008, + -0.009354309, + -0.0061394502, + -0.0026336212, + 0.007816751, + -0.011043491, + -0.01105107, + -0.016683713, + 0.0011552317, + -0.0030900359, + -0.004881276, + 0.0022882605, + -0.01609995, + 0.0013331302, + 0.002944933, + 0.049036857, + -0.005762636, + -0.008099814, + -0.013545176, + 0.034821887, + -0.0015118795, + -0.005559228, + -0.020614622, + -4.014815E-6, + 0.0071589514, + -0.0032046696, + -0.0283033, + 0.006819161, + 0.004538141, + 0.008295174, + -0.021460442, + 0.0070953444, + 0.020497955, + 0.0124041, + 0.03203725, + -0.01301763, + 3.3858113E-4, + 0.020093208, + -0.0024004744, + 0.033464376, + -0.017062427, + 0.011751804, + 0.008064332, + -0.005140439, + 0.009744957, + 0.0083760945, + 0.017009584, + -0.0076366286, + -0.017051117, + -0.01255873, + 0.017938662, + -0.019215737, + -0.0061847256, + 0.007844206, + 0.010203003, + 0.013006656, + 0.008615572, + -0.0383318, + 0.013038168, + 0.012521422, + 0.017254004, + -0.014207022, + -0.007857753, + 0.025631491, + 0.0017443753, + 0.007820086, + -0.002634265, + 0.0056722816, + -4.032531E-4, + 0.00232471, + 0.011131768, + 0.03079878, + 0.0022221876, + 0.0032931578, + -0.024268014, + -0.0063882107, + -0.0056032175, + -0.01771259, + -0.006900055, + 0.02637564, + -0.005124664, + -6.3140003E-4, + -0.007477703, + -0.021651926, + -0.017174548, + -0.02786134, + 0.0025221177, + -0.029390272, + 0.0035765849, + -0.016856965, + -0.008013004, + -0.012280367, + -0.01014765, + -0.013394041, + 0.012359614, + 0.0052717724, + 0.019082654, + 0.018808544, + -0.0036204753, + -0.01493894, + 4.979436E-4, + 0.0043759416, + -0.0070767566, + 0.012351565, + -0.0013580939, + 0.015135944, + -0.006319501, + 0.003114521, + 0.018855656, + -0.026042644, + 0.024818394, + -0.006119168, + 0.017807186, + -0.031652004, + -0.014290219, + -0.0030467615, + -0.018494425, + -0.010867107, + -5.186065E-4, + 0.0016090813, + 0.003739545, + 0.008296768, + -0.0024371345, + 0.017469643, + 0.01349086, + -0.02370168, + -0.002339044, + -0.010054473, + -0.01424894, + 0.040516827, + -0.005585899, + 0.033695713, + -0.025676152, + 0.0067984844, + 0.016477954, + 0.0039153825, + 0.002637801, + 0.0012979391, + -0.025427425, + -0.0021621655, + -0.0060821376, + 0.013931545, + 0.01478616, + 0.014133245, + 0.00475156, + -0.027829358, + -0.050098207, + -0.0332819, + -0.025561586, + 0.013450247, + -6.366809E-4, + -0.0067000953, + -0.0035588779, + 0.020240042, + 0.012814076, + 0.02125342, + 0.015042299, + -0.02181517, + -0.007980904, + -0.008027774, + -0.011293177, + 0.022637717, + -0.0036677222, + 0.007190788, + 0.021982245, + -0.002397979, + 0.01828717, + 0.019131217, + 0.010595949, + 0.0014726794, + 0.03422991, + 0.03336737, + 0.028107533, + 0.0076150806, + -0.009459819, + 0.017169487, + -0.0020843756, + 0.009222067, + -0.004817491, + 0.008151393, + -0.027614214, + 0.0056943744, + -0.005682017, + 0.015798002, + 0.013079801, + 0.011100583, + -0.0045722835, + -0.010483922, + -0.011037487, + -0.009010192, + 0.005870048, + -0.005270467, + 0.020940617, + -0.016097758, + -0.028849658, + 0.02247135, + 0.0041174083, + 0.022166457, + -0.016056716, + -0.0021246132, + 0.0027074397, + -0.017419375, + 0.0054931054, + 0.010285706, + -0.014863664, + 0.005844502, + 0.0033374147, + 0.009906401, + -0.010392222, + 0.015250452, + 0.0033211464, + -0.009072548, + 0.00641521, + -0.0033297439, + -0.0032024658, + -0.022025034, + 0.027252058, + 0.012867256, + -0.013297142, + -0.00962981, + 0.0041343477, + -0.0030203133, + 0.004018002, + -0.0051274938, + 0.023018269, + 0.011547707, + -0.017974043, + 0.009141737, + -0.0036338803, + 0.023185661, + -0.0038428633, + 0.001915681, + 0.014883092, + -0.008101769, + -0.012881952, + -0.021841208, + -0.0112921, + 0.014484485, + 0.0149590215, + 0.006348182, + -0.0012137818, + -0.033077154, + 0.018996473, + -0.001854039, + -0.03554271, + -0.0014323845, + -0.005698361, + 0.0076953187, + -0.023088373, + -0.0027122379, + 0.005412133, + -0.007838957, + -0.026058009, + 0.0070669875, + -0.0055533336, + -0.00943971, + -0.036274053, + -0.021813283, + -0.02361147, + -0.001305244, + -0.0019255586, + 0.028951917, + 0.007988223, + -0.012573301, + 0.009556682, + -0.018880796, + -0.011451106, + 0.007284171, + -0.014177881, + -0.0069168513, + 0.027393546, + 0.022370543, + -0.013732367, + -0.005301991, + 0.0059693228, + 0.0010070901, + 0.009977119, + 0.015651802, + -0.002497134, + 0.009923126, + 0.015355208, + -0.0012939316, + 0.005413759, + -0.0057480712, + -0.008483303, + 8.1494485E-4, + 0.00706198, + 0.009350799, + -0.019087141, + -0.006321759, + 0.022643123, + 0.024588693, + 0.013072515, + -0.011229589, + 0.00941313, + -0.015942726, + 0.019189708, + 0.02262247, + -0.010089062, + -0.023237417, + 0.014413337, + -0.02140695, + -4.768938E-4, + 0.001999257, + 0.008992325, + 0.0023651603, + 0.0054788026, + -0.002406659, + 0.0054657296, + 0.03164682, + 0.0041648657, + 0.0135441255, + 0.019259008, + -0.0019189197, + 0.005940857, + 0.009316315, + -0.005098915, + -0.0044186, + -0.008874607, + -0.020542402, + -0.0073713725, + 0.022099575, + 0.013588272, + -0.0023444279, + -0.006118795, + -0.026602011, + -0.03857876, + 0.0030950347, + 0.024794677, + 0.0071530477, + 0.004183843, + 0.026957631, + 0.0022156958, + -0.018397706, + -0.014612552, + -0.00894001, + -0.023104029, + 0.02925542, + -0.01635471, + -0.018836163, + 0.018402422, + -0.0066540926, + -4.923552E-4, + -0.0043894863, + 0.0083020935, + 0.010228197, + 0.0030887588, + 0.050176494, + -0.0072071627, + 0.0022134199, + -0.0093821585, + 1.6744861E-4, + 0.015142649, + -0.016459802, + -0.015361094, + 0.0290847, + 0.010910316, + -0.007963371, + -0.016811091, + 0.0075507145, + -0.0045283297, + -0.01017034, + -0.016628135, + 0.017493293, + 0.0010099228, + -0.0076490664, + -0.011926247, + -0.019535221, + -0.0024101662, + -0.006962873, + 7.202986E-4, + -0.0070647392, + 0.011096433, + -0.0044253157, + 0.0134888375, + 0.0053482563, + -0.014867985, + 0.010653819, + -0.0032950381, + 0.0016882593, + 0.0015823966, + -0.029400412, + -0.0024022623, + -0.009241605, + -0.021704443, + 0.005463618, + 0.025944587, + 0.021527186, + -0.0192313, + -0.021996219, + -0.009303943, + -0.015978688, + -0.012825221, + 0.040962644, + 0.01557854, + 0.017140318, + 0.0042250734, + -7.526793E-4, + -0.0021418124, + 0.019732252, + -0.019419743, + 0.008228248, + -0.00806682, + -8.8058686E-4, + -1.9253162E-4, + 0.005868901, + 0.016696706, + 0.016989447, + 0.003739894, + 0.0051453537, + -0.007925997, + 0.0023824507, + -0.0068512307, + -4.3173863E-8, + 0.0259415, + -0.0029702603, + 0.020009689, + -0.008927091, + -0.013033795, + -0.011176267, + 0.003179322, + -0.002387619, + -0.01577676, + 0.0024074987, + 0.0036350721, + -0.005335057, + 0.012198619, + -0.014679257, + -6.062699E-4, + -0.014583572, + -0.004267831, + 0.0055567212, + 0.010354601, + 0.01371527, + 0.0056391666, + 0.021471303, + -0.016589297, + 0.0042142374, + -0.010790554, + -0.016051127, + -0.029217754, + 0.016387947, + 0.0069179097, + 0.0060966644, + -0.0072816713, + 0.020110676, + -0.0011048929, + 0.011084154, + 0.0033851287, + -0.003132038, + 0.00856149, + 0.015083482, + -0.0023535448, + 0.008785749, + -0.01374745, + 0.01575965, + 4.1048904E-4, + 0.0061919005, + 0.006754955, + 3.9683215E-4, + -0.015907325, + 0.0086006345, + 0.024086185, + 0.017538946, + 0.015936315, + -0.014669872, + 0.028933806, + 0.0033814185, + 0.001775847, + -0.0077485307, + 0.011493073, + 0.0033262433, + 0.006199896, + 0.029958813, + 0.0209041, + 5.8345037E-4, + -0.02112298, + 0.010523881, + 0.002524054, + -0.012246362, + -0.009234537, + -0.010261697, + 0.021193651, + -0.0039006541, + -0.017550707, + -0.002082567, + 7.599687E-4, + 0.006085512, + -0.008543266, + 0.0068351957, + -0.0012830119, + -0.004005853, + 0.023334417, + 0.00900293, + 0.007873168, + 0.017068356, + -0.0040546, + -0.007106961, + 0.0339522, + 0.0058207274, + -0.017448612, + -0.0019549958, + 0.0020775278, + 0.020636957, + -8.114096E-4, + 0.018336855, + 0.004784043, + 0.008595616, + 0.012735467, + -0.005169545, + -0.01328075, + 0.0071334867, + 0.02910807, + 0.005346471, + -0.007371764, + 0.023153799, + -0.007547956, + 0.010227502, + 0.007224758, + -0.002531571, + 0.023352262, + -8.816981E-4, + 0.0010794314, + 0.0050553805, + 0.007011892, + -0.0044753663, + -0.029096996, + 0.0063142455, + 0.025278263, + -0.019934457, + -0.008557636, + -0.003469386, + 0.0098943375, + 0.016964588, + 0.008704256, + -0.0059767654, + -0.010426359, + -0.0036487398, + -0.018180227, + -0.015969582, + -0.022798454, + 0.02166036, + -0.006232001, + -0.026941238, + -0.0041662273, + 0.008340505, + -3.4890126E-4, + -0.027211662, + -0.0031570035, + 0.01816867, + -0.004444778, + -4.6800997E-4, + -0.031729683, + -0.010130787, + -0.015015623, + 0.018441847, + -0.017484464, + -1.2495687E-4, + 0.013482254, + -0.007010124, + 0.006404563, + -0.013513863, + 0.007959369, + 0.0110392505, + -0.012940031, + 0.0031820214, + -0.015001333, + 0.013634525, + -0.0019984355, + 0.037650853, + -0.009473835, + 0.014394121, + 0.009094877, + -0.005472081, + -0.013846214, + 0.006929963, + 0.020577492, + 0.011374594, + 0.010910911, + 0.0035697315, + 0.011427636, + -0.012347613, + -0.015002256, + -0.0044277427, + 3.5521423E-4, + -0.009488144, + 0.029038718, + 0.011799133, + 0.043230362, + -0.012952235, + -0.009093185, + -0.007892593, + -0.027602976, + -0.017010499, + -0.018416831, + 0.009206012, + 0.014457663, + 0.0019991805, + 0.03001665, + 0.010330795, + 0.0014133613, + -0.009993928, + 0.001036417, + -0.02540501, + 0.0026437358, + -0.015007477, + 0.027561186, + 0.004784395, + -0.0064739445, + 0.001376644, + 0.013894375, + -0.020332465, + 0.0066628833, + -0.020996258, + -0.027875032, + -0.016584802, + 0.03631314, + -0.007996854, + -0.016743662, + -0.013599387, + 0.011001058, + -0.008775963, + -0.016022552, + 0.02738837, + 0.0019100991, + -0.0010266844, + 0.023125013, + 0.0019884403, + 0.017184315, + -0.015596484, + 0.010810791, + 0.022950301, + 0.0052722497, + 0.0018580029, + -0.016619941, + -0.003799935, + -0.015043285, + -8.3579955E-4, + -0.0071153897, + -0.014696091, + -0.020148108, + -0.0071620615, + 0.00272804, + 0.0048780465, + -0.03004705, + -3.537402E-4, + -0.017939784, + 0.0028607275, + 0.0050988644, + 0.033156723, + 0.0077963327, + -0.014173491, + -0.028956832, + -0.006860987, + -0.014934636, + 0.010450353, + -0.015617628, + -0.016605403, + 0.017392885, + 2.770803E-4, + -0.0088147465, + -0.004013034, + 0.0031376462, + -0.0074426513, + -0.0189526, + -0.029628284, + -0.008472485, + -0.0013958486, + 0.01571879, + -0.02037054, + 0.002810458, + -2.7575052E-5, + -0.020320712, + 0.020255448, + -0.013673254, + 0.012189714, + -0.0051919767, + 0.0035761534, + 0.0129871145, + 5.396573E-4, + -0.019729165, + -0.0093535185, + 0.017012894, + 0.0019863883, + 0.049944133, + -0.015866503, + -0.008769658, + 0.025375834, + 0.008579487, + -0.024000593, + -0.013804051, + -0.015111543, + -0.010877636, + 0.018476866, + -0.006524264, + 0.018607574, + -0.0029902228, + -0.025310012, + -0.019166674, + -2.6703632E-4, + 0.015801974, + -0.015556654, + 0.012964692, + 0.0030384809, + 0.006632053, + 0.016616968, + -0.0018947802, + -0.017760633, + -0.028845662, + 0.019008793, + 0.012767312, + -0.010812256, + -0.0051399036, + -0.019528177, + -0.016206555, + 0.006458334, + -0.017434025, + -0.01292327, + 0.020511083, + -0.023121348, + 0.0036823365, + -0.017187275, + -0.0014784208, + -0.008851856, + -0.025457058, + -0.033834293, + 6.525178E-4, + -0.009944127, + -0.017362548, + 0.0037705484, + -0.009880291, + -0.0019323273, + -0.018415058, + -0.015606701, + -0.005726096, + 0.012561444, + 0.0050761993, + 0.027951512, + -0.0072087827, + 0.0013599308, + -0.022866866, + -0.04374314, + -0.017220292, + 0.017703576, + -0.018573439, + -4.174202E-4, + 0.0053131944, + 0.037276417, + -0.014455161, + 0.014274418, + -0.023332832, + -0.01810035, + -0.015816918, + -0.03450691, + -0.019897314, + -0.019403309, + 0.01679944, + 0.011684201, + -0.00766293, + 0.020227974, + 0.021096086, + 0.007940828, + -0.010680886, + -0.008879588, + -0.010375797, + 0.005525382, + 5.683013E-4, + -0.012940748, + -0.017205486, + 0.017454948, + 0.037832662, + -7.204189E-4, + 0.00970733, + -0.007011188, + 0.023892863, + 0.0040787305, + 0.013152602, + 0.0112214405, + 0.004313554, + -0.022664133, + 0.0075096632, + -0.015943618, + 0.004263499, + 0.0019290315, + -0.016320124, + -0.0025486685, + 0.009470915, + 0.009784946, + 0.011360037, + 0.04153751, + 0.01388025, + -0.019523589, + -0.0064403433, + 9.942355E-4, + -0.0042268373, + 0.0025406077, + 0.02508342, + 0.010959781, + 9.7310054E-4, + 0.027885163, + 0.009327438, + 0.0050063976, + 4.9548544E-5, + 0.017686997, + 0.011003159, + 1.9475698E-4, + -0.005662101, + -0.020516831, + 0.0034782265, + -0.03327815, + -0.002356715, + -0.037481107, + 0.01657422, + 0.0012296184, + 0.021157134, + -0.013376906, + 0.018776255, + 0.009031897, + 0.003457263, + -0.022842031, + -0.022329552, + -0.018901106, + 0.019502211, + 0.00829099, + -0.021772172, + -0.0018779682, + 0.0053411913, + 0.010441388, + -0.007172424, + 0.019628227, + 3.283842E-4, + 0.006098631, + -0.003842223, + -0.017332533, + -0.0023265094, + 0.0110903075, + -0.03020614, + 0.038405005, + -0.011054077, + -0.023878146, + -0.0016692729, + 0.023772411, + -0.036497336, + 0.01623604, + 0.01613863, + -0.0013193453, + 0.0119009875, + 0.0010571837, + 0.013992021, + -0.012748962, + -0.017378448, + 0.013930096, + 0.016504522, + -0.00599116, + 0.03433648, + 0.0042342637, + -0.011610882, + 0.00587821, + -0.026146151, + 0.0113661215, + 0.007724372, + 0.010681676, + 0.0034221224, + -0.012307545, + 0.01802944, + 0.003469831, + -0.007552874, + -0.015733937, + -0.023927888, + 2.3671777E-4, + 0.0024266127, + 0.0018047856, + -6.3763506E-4, + 0.008166127, + 0.019269992, + 0.0013318593, + 3.3763223E-4, + -0.005854125, + 0.010068179, + -0.007845663, + -0.018465647, + 0.0033600782, + 0.0030120043, + -0.01480086, + 0.018719006, + -0.0026344268, + 3.2376093E-4, + -0.0022875892, + 0.035761453, + 0.0054117665, + 0.015694728, + 0.001002071, + -0.024019884, + -9.858691E-4, + -0.005921443, + -0.0010263541, + 0.007631728, + -0.006819418, + -0.004356904, + -0.009929186, + 0.021076437, + 0.021587612, + -8.1071584E-4, + 0.012496296, + -0.002729256, + -0.047044463, + -0.02451971, + -0.0026339502, + 0.03868957, + 0.013505092, + 0.009430933, + -0.019697757, + -0.029026065, + 0.015831377, + -0.010035909, + 0.015908644, + -0.0066213617, + -0.036356114, + -0.016384082, + 0.017742524, + -0.0059040124, + 0.01326471, + 0.0141865555, + 0.0010732765, + 6.16545E-5, + 0.008684444, + -0.009775201, + 0.006791411, + -0.019155625, + 3.3756773E-4, + 0.02193392, + -0.0061183097, + -0.010686075, + -0.0069329743, + 0.016199933, + 0.012591411, + 0.018829614, + 0.021396482 ], - "paletteEmbedding": [ - 0.013796812, 0.041053034, 0.020385366, 0.032514706, -0.040808063, - -0.022952374, 0.04459846, 0.047407232, 0.006337531, -0.022068962, - 0.0037026217, -0.029438935, -0.050317224, -2.0191075e-4, -0.023334231, - 0.0032460082, 0.0016923338, 0.051895604, -0.024657566, 0.013399871, - 0.04854786, -0.029604465, 0.0078036417, 0.025120253, 0.030607851, - -0.043341268, 0.0027663244, -0.001749032, -0.044527315, -0.041444283, - 0.027834812, -0.00687213, -0.0308434, 0.061486773, -0.0051255347, - 0.021820527, -0.019701049, 0.03726053, -0.074342094, 0.025540885, - 0.026666367, 0.025667943, 0.05497242, -0.058380008, -0.027957216, - 0.0013082734, -0.0024610518, -0.061462987, 0.005508859, -0.043239303, - 0.0027497509, 0.020952528, -0.007910634, -0.05035749, -0.032964583, - 0.03370565, -5.497354e-4, 0.0014470728, -0.005963869, 0.010254859, - 0.042089574, 0.036459006, -0.028322583, -0.032067392, 2.2405651e-4, - 0.007850875, -0.007944048, 0.0012713901, -9.2195097e-4, 0.025910705, - -0.0014631327, -0.043126557, -0.017840086, -0.022723481, -0.018229939, - 0.03920729, -0.010588506, 0.0048130485, -0.010898666, -0.029974205, - -0.03002917, -0.0019180714, -0.021042753, -0.027306816, -0.037778437, - -0.021919033, 0.012640331, 0.03282738, -0.007832423, -0.07960126, - -0.0022404743, 0.005841694, -0.029840998, 0.0033018321, 0.0046146694, - 0.032906674, -0.023878103, -0.042829465, 0.008749373, -0.032159567, - 0.07206962, 0.019088857, -0.042990033, 0.008985703, 0.022072773, - 0.038155425, 0.046094436, 0.032326862, -0.018028067, 4.3639794e-4, - -0.02583365, -0.0012653355, 0.028379548, -0.03687583, -0.06358007, - -0.004721889, 0.0011342944, 0.06802033, -0.025903566, 0.004871346, - 0.027948748, 0.01765491, 0.055450674, -0.030046545, 0.012066605, - -0.021792293, 0.013817574, 0.039553765, -0.064882815, -0.057719663, - 0.007009336, -0.006550184, 0.039942604, -0.01971537, -0.017859623, - 0.03943301, 0.037279796, -0.025350342, 0.021675963, 0.01340812, - -0.004265996, -0.052358467, 0.02826237, 0.059313733, 0.02553364, - 0.059369516, -0.008604676, -0.01650007, -0.012819857, -0.001528811, - 0.012025164, 0.024344947, 0.036924466, -0.038764045, -0.021383317, - -0.015190864, 0.008128593, -0.04010145, 0.047149297, -0.039588712, - -0.0077298363, 0.014113191, 0.034208056, 0.008012091, 0.022777274, - -0.023690537, 0.0032402326, -0.008508345, 0.0367902, 0.007751964, - 0.015640274, -0.021845186, -0.017413275, -0.015501583, -0.008008141, - 0.009382304, 0.034246534, -0.010737105, 0.013822175, -0.0013003998, - -0.010038105, -0.043410454, 0.069818735, -2.5718467e-4, 0.050039664, - 0.001482197, 0.020107586, -0.041375395, -0.00991527, 0.027398322, - -0.028674776, -0.05887711, 0.01851913, 0.012850827, -0.012988782, - -0.0021477456, 0.030788658, 0.025274577, -0.03700352, -0.014592853, - 2.7403308e-4, 0.013755346, 0.027347963, 0.033190247, 0.03584402, - -0.0357179, 0.03907571, 0.012367272, -0.02934642, 0.022768082, - -0.0049147746, 0.048100326, 0.058805637, -0.14332527, 0.004714508, - 0.062312353, 0.02409279, -0.009332481, -0.0026429992, -0.0034446025, - -0.06840844, -0.011758379, 0.036574956, 0.014995905, -0.012088832, - 0.027577136, -0.021115426, 0.017391643, -0.0057320357, 0.0050371876, - 0.023184163, -0.027619964, 0.002826073, 0.017562062, -0.101123415, - 0.080837496, 0.008319883, -0.02449785, 0.04945739, 0.0015186154, - 0.0018619702, -0.011757009, -0.021583397, 0.011898793, 0.0046434044, - -0.063420564, 0.036377244, -0.021479921, -0.019510316, 0.039557714, - 0.007173234, 0.015131348, -0.0017505374, -0.024392279, -0.065124035, - -0.03156052, 0.04135068, 0.027653689, -0.030577922, 0.0022337546, - 0.018783111, 0.021974321, -0.0019270193, 0.0027975496, 0.0059577073, - 0.0023189462, -0.0067121624, 0.029067526, -0.0752504, -0.017201945, - 0.029767808, 0.02384142, 0.07589491, -0.03963047, -0.07325514, - 0.014707069, -0.00421103, -0.029316941, 0.043276712, 0.006158361, - -0.07166376, -0.018768696, -0.0366101, -0.0514733, 0.0054472606, - 0.007395105, -0.029872378, -0.018708283, 0.046937957, 0.003184004, - 0.069330096, 0.011421371, -0.0014513455, 0.03190403, -0.02561959, - 0.053707447, 0.014693881, 0.0065225, -0.016013196, -0.0689843, - -0.009083304, 0.0271777, -0.008392371, 0.013464312, -0.044100903, - -0.0384857, -0.057053786, -0.04783502, 0.002480146, 0.021243252, - 0.010594514, -0.054053064, 0.0038980662, 0.028685145, -0.017848175, - -0.010032582, -0.00102531, -0.006586495, -0.0022605225, 0.005036349, - -0.01715984, 0.009643389, 0.008055336, 0.0138251465, 0.010621555, - 0.021921184, -0.005457925, -0.010086225, -0.02028809, 0.027525175, - -0.05686625, 0.048225287, 0.008000721, 0.052770577, -0.02400281, - 0.022726547, -0.00495272, 0.011222503, 0.062639885, -0.029108465, - 0.06386816, 0.011848937, 0.031045582, 9.642218e-4, -0.023719007, - 0.0679558, 0.024610009, 0.016385388, 0.027914077, -0.010853747, - 0.015503585, 0.0014905405, 0.029320383, -0.032038055, -0.0068189166, - 0.038414877, 0.012454222, 0.03499263, -0.01978403, 0.002252358, - -0.018125154, 0.003372692, -0.016327176, -6.279177e-4, -0.005821053, - -0.009635203, 0.039918106, 0.008334543, 0.03831305, 0.0013442338, - 0.03188111, 8.531308e-4, 0.047880363, -0.023418006, 5.698449e-6, - -0.02288592, -0.012857432, 0.033715647, -0.067601636, -0.026467344, - 0.047578927, 0.0727444, -0.010130874, 0.01578534, -0.03355044, - -0.013955499, -0.046435524, 0.027913218, -0.009322924, -0.044756718, - -0.007757782, -0.005919784, 0.02030922, -0.038086686, 0.018132647, - -0.01475135, 0.006549003, 0.07232784, 0.020119695, 0.016892709, - -0.058105063, -0.036019772, 0.028168881, -0.0641558, -0.023023726, - 0.019009653, 0.020816164, 0.07289137, 0.042564645, -0.06593, - -0.015890945, 0.015413718, 0.0011822484, 0.01376967, -0.010698903, - 0.04659847, -0.006754559, -0.025391988, -0.010027847, 0.0073488867, - -0.002304221, -0.01276973, 8.409097e-4, -0.0031487632, -0.020301195, - 0.001141902, -0.030303106, 0.009055608, 0.04025501, 0.016608693, - 0.04050216, -0.038475726, 0.028669937, -0.046669573, 0.042508516, - -0.023851756, -0.018844835, -0.023453945, -0.057121728, 0.0050543537, - 0.0029836919, -0.01708841, -0.008153965, -0.01683063, 0.014707926, - -0.009528941, 0.01755689, 0.018207803, 0.020270742, -0.004346609, - -0.043666977, 0.012607034, -0.0018609425, 0.027343052, 0.013391878, - -0.011282368, -0.020361751, -0.013074549, 0.010138361, 0.019894063, - -0.06345465, 0.020443382, 0.0071775415, -0.044419184, -0.057773132, - -0.041353453, 0.0137045905, 0.027271736, 0.05737964, 0.004074916, - 0.010829232, -0.023495805, 0.020369787, 0.031528164, -0.014662856, - 0.047886018, 0.011349354, -0.0518699, 0.004556849, 0.060300734, - 0.005539253, 0.0068892096, -0.012512763, 0.026771959, 0.011456363, - 0.05134626, 0.020156061, 0.0063031884, 0.01316186, -0.043216337, - 0.0077359867, -0.028550161, 0.030820023, -0.0142952055, 0.036777712, - 0.0020991717, 0.00484933, 0.026712133, -0.019369194, 0.09188872, - 0.00763036, -0.042989828, 0.020682363, -0.014489121, 0.060396668, - 0.027010258, -0.004156162, 0.056558583, 0.045876063, -2.380733e-4, - -0.02203459, 0.034743614, 0.009764912, -0.008602884, 0.0019381074, - -0.009998003, 0.015160954, 0.026064647, -0.03683568, -0.07717919, - -0.006371088, 0.025630824, 0.016801303, 0.012495551, -0.00493599, - 0.0027379477, -0.07257472, 0.0023974816, 0.015578507, 0.031393163, - 0.016892547, -0.013586954, 0.019397095, -0.011647383, -0.04523492, - -0.050400328, 0.05290911, 0.026302751, 0.029223189, -0.0718213, - -0.05864357, 0.093235046, 0.052446175, 0.0142924255, -0.011428565, - 0.033620387, 0.016897533, -0.008193526, -0.03795042, -0.029798916, - 0.03953772, -0.012885086, -0.04992786, 0.026833002, 0.04925686, - -0.031121738, -0.036835253, -0.041471366, 0.051677667, 0.02920542, - 0.08194521, 0.041650023, 0.054024275, 9.5439586e-4, 0.026101012, - -0.062365603, -0.024672717, 0.06642204, 0.0015561885, -0.016516395, - -0.032887727, 0.015862577, -0.014270999, 8.5532124e-4, -0.03316364, - 0.0644653, -0.049193755, 0.034782983, -0.005540702, -0.03389624, - 1.3633953e-5, -7.5904053e-4, -0.0051627173, -0.0031263693, 0.03308804, - 0.045293484, -0.012382863, 0.040955167, 0.02841339, -0.0054097776, - 0.005660788, -0.044025272, 0.028867852, 0.0028138212, 0.00565148, - -0.029942345, -0.017478926, -0.03795612, 0.014815473, 0.016695261, - -0.016409462, 0.025190288, 0.01404317, -0.0078062923, -0.013369171, - -0.036606062, -0.0062112515, -0.017778682, -0.02829017, 0.04214894, - -0.0017128311, -0.031310808, 0.029003099, 0.027664827, 0.017159006, - 0.026753651, -0.026779572, -0.035299413, -0.045848403, -0.012410706, - 0.017686514, -0.064053096, 0.0012506393, 0.010795335, -0.031842455, - 0.003385303, 0.033592146, 0.053817526, -0.0038597963, 0.018676046, - -0.0056002038, 0.072663456, 0.048391044, -0.008188418, -0.022998337, - 0.016189782, -0.015511545, -0.0021908164, 0.031388562, -0.023841029, - 0.040816076, -0.045315582, 0.012539388, -0.035332765, 0.0044388208, - 0.025084728, 0.0025186406, 0.0043489956, -0.042276204, -0.0884238, - 0.016412497, 0.0080937585, -0.014653522, 0.022840636, 0.023860173, - 0.005075579, 0.0041867774, -0.0072841896, -0.023174725, 0.046964955, - -0.09631221, -0.005372149, -0.01617276, -0.009278336, -0.055373866, - 0.0065082135, 0.029304555, -0.014979424, 0.030114403, -0.02556805, - -0.024253367, -0.0023938378, 0.03349975, 0.018680902, 0.04456154, - 0.058468744, 0.015415913, 0.07310236, -0.024371287, -0.019665323, - -0.036249317, 0.018677248, -0.01635375, 0.057257794, 0.007393197, - 0.016328713, -0.019502463, -0.021195803, 0.021384036, -0.03709898, - -0.035078537, -0.038536415, 0.01533755, 0.011464558, 0.012388352, - -0.026152862, -0.01689561, -0.05212557, 0.07108439, 0.0018999411, - 0.008899349, -0.011622456, 0.019799858, 0.008445295, -0.04268557, - -0.021035856, -0.018059988, -0.054464906, 0.06198629, -0.035154052, - -0.001274066, -0.037956756, 0.046341944, 0.03438298, 0.05965052, - -0.03708256, 0.024922298, -0.03564267, -0.06477231, 0.029579885, - 0.028239751, -0.045643706, 0.019285817, -0.012831891, 0.0070507578, - 0.0547837, -5.719639e-4, -0.015442456, -3.9005693e-4, 0.004350998, - -0.016693793, 0.015052093, -0.02657851, -0.004272786, 0.011115539, - -2.8152188e-4, -0.0022907606, 0.022551298, 0.020544978, 0.034559343, - -0.0033776576, 0.02562089, -0.004605227, 0.035251975, 0.061831463, - -0.008545656, -0.014373433, 0.019784167, -0.0592557, -0.055536624, - 0.013853584, 0.026498187, -0.029840644, -0.034757465, -0.0018208805, - -0.024826154, 0.03143472, 0.011863065, -0.0014945453, -0.049924124, - 0.03619207, 0.034093186, 0.0058345273, 0.02549406, 0.0011138633, - -0.0155698275, -0.03458864, 0.09172518, -0.0149195315, -0.024403956, - 0.0035080789, 0.032228265, 0.022222882, 0.016035972, 0.02517531, - -0.017122773, 0.032634705, -0.008002055, -0.020024344, -2.7480983e-4, - -0.02789252, -0.004661678, -0.010163203, 0.09012905, -0.05403333, - -0.04565612, 0.01800167, -0.03342042, 0.0029210493, -0.03591093, - -0.03769138, -0.0063171713, -0.020252205, -0.04429847, -0.016088674, - 0.025481038, 0.046052545, 0.045575354, 0.0116057405, -0.0131226545, - 0.021175275, 0.0055549997, -0.030007988, -0.043703355, 3.2659154e-4, - 0.025840553, 0.004912457, 0.059458293, 0.0072113383, -0.022975367, - 0.017978666, 0.00909356, -0.033509735, -0.05472307, 0.0060085393, - -0.024931256, -0.019782228, -0.023093972, -0.032258626, -0.011528249, - 0.0395257, 0.02139319, -0.009727902, 0.018418496, -8.8253594e-4, - 0.002814101, 0.007833875, -0.027746938, 0.008669074, -0.0070170877, - 0.045351125, -0.016176658, 0.04237629, 0.030142974, 0.018448543, - -0.013261199, 0.025606608, -0.0017338393, 0.029457228, 0.036867198, - -0.027751837, -0.009337005, 0.04116059, 0.037900303, -0.01102008, - 0.021681685, 0.0018849049, -0.0055893166, 0.016346144, 0.0030195136, - -0.011665369, 0.0025056088, -0.010586469, 0.015326347, -0.029753454, - -0.045197256, -0.018322721, -0.06246564, 0.002861459, 0.035903167, - -0.009451204, -0.039885078, -0.0073423996, 0.008376666, 0.026588742, - 0.020664895, -0.06371598, 0.025977882, 0.005319687, -0.018269984, - 0.009818691, 0.0088997865, 0.010226139, -0.0059853517, -0.07347367, - -0.003408484, 0.006096854, 0.019394713, 0.020962123, 0.012945751, - -0.039483067, 0.0073942076, 0.018851759, -0.01620989, 0.014467462, - 0.014988909, 0.023744863, 0.04280829, -0.04834342, -0.012385383, - 0.0065283114, -0.05012946, 0.008305676, 0.02035705, 0.03742631, - -0.008148113, 0.0011988936, -0.042370487, -0.009000767, -0.05774372, - -0.0111615285, -0.011417038, -0.023837794, 0.004288895, -0.04372379, - 0.0055223587, -0.0150376605, -6.945899e-4, -0.046262167, 0.019132739, - 0.025131404, -0.0019884198, 0.036398172, -0.0063844, -0.010202335, - 0.012692438, -0.052457355, 0.006172458, 0.030715836, 0.01021879, - -0.020112168, 0.034884486, 0.006722494, 0.003961514, -4.9922295e-4, - -0.03668046, -0.04548546, -0.052451387, 0.013832931, -0.025417853, - 0.0067299865, 0.010187881, -0.016441744, -0.019303314, 0.019574802, - -0.029422795, 0.025772035, 8.958272e-4, 0.02304686, 0.0020577046, - 0.019490395, -0.012045739, -0.058894705, -0.0223184, -0.020731837, - 0.0047139544, -0.003993341, 0.02378536, -0.025382025, 0.055960316, - 0.009151204, 0.021698868, 0.038590245, -0.04793504, -0.03428087, - -0.031744745, 0.042667784, 0.022493547, -0.001945353, -0.04005966, - -0.08516783, -0.06728423, 0.038781475, -0.0034038397, -0.045882285, - 0.01829681, 0.034822285, 0.015560728, -0.028026745, 0.07073212, - 0.022399038, -0.019585952, 0.049940497, 0.0075393035, -0.018217353, - 0.026987895, -0.046373766, 0.009686894, -0.018123155, -0.014219188, - -0.053132404, -0.024953756, 0.04165941, -0.04248317, 0.009655281, - 0.012397347, 0.056632042, -0.0034266035, -6.9027056e-4, -0.0022740832, - -0.030921863, -0.027780304, 0.025331596, -0.02222174, 0.04500161, - 0.016507888, 0.0050386563, -0.035667006, -0.012998698, -0.0033736825 + "paletteEmbedding" : [ + -0.009844284, + -0.037177544, + -0.014458217, + -0.034371976, + -0.0025416773, + 0.04837377, + 0.05072429, + -0.014867429, + 0.012107692, + 0.016981343, + 8.5117907E-4, + -0.008319268, + 0.005713699, + 3.526095E-4, + 0.011976748, + 0.06650269, + 0.025626916, + 0.030018399, + 0.03717213, + -0.035415433, + 0.02142082, + -0.017842505, + -0.023338199, + 0.009091717, + -0.0011861984, + -0.013003474, + -0.031576782, + 0.009304165, + 0.0023678178, + -0.01576533, + 0.006052193, + -0.019650755, + 0.010496599, + -0.0055099903, + -0.03125792, + -0.013678923, + -0.007955271, + 0.0371779, + -0.005176315, + -0.024384042, + 0.05346913, + 0.011288647, + 0.016166164, + 0.016300036, + -0.0021981834, + 0.0024931733, + 0.039264176, + -0.045903, + 0.020098336, + -0.004833926, + 0.02322696, + -0.030004842, + 0.05159097, + 0.0023572873, + -0.013645783, + 0.0049516005, + 0.015147988, + -0.032328516, + -0.008518807, + -0.010591527, + 0.024745092, + -0.018192336, + 0.019986533, + 0.032667357, + 0.01981233, + -0.0023286943, + -0.038591493, + 0.016689187, + 0.019561443, + 0.037858482, + -0.03340843, + 0.023829706, + 0.03333668, + -0.03388705, + -0.0077129845, + 0.053101074, + 0.07141891, + 0.08193268, + 0.0412401, + 0.01194794, + 0.03903288, + 0.01965464, + 0.04636494, + 0.021341199, + 0.04577847, + -0.0370025, + 0.040654212, + 0.0100727985, + -0.025009513, + 0.0134542445, + 0.019503558, + 0.025856603, + -0.020896401, + 0.022896525, + -0.0046731303, + -0.006635134, + 0.014407124, + -0.05760109, + -0.002458363, + -0.0518893, + -0.03611924, + -0.012150124, + 0.024386855, + 1.0202946E-5, + -0.02196107, + 0.0105588725, + -0.049423724, + 0.06935416, + 0.025106912, + 0.013486883, + 0.041064955, + 0.04759563, + 0.014005697, + -0.019504627, + -0.060944453, + 0.010470938, + -0.05425622, + 0.010106924, + -0.054917485, + 0.026371416, + -0.08986103, + -0.002179466, + 0.016803266, + 0.010632441, + 0.040446624, + 0.0019718695, + -0.056185298, + 0.01348933, + -0.019238472, + -0.041235782, + 0.009162677, + -0.010612726, + -0.022805514, + 0.023619093, + -0.011737135, + 0.050450716, + 0.06786103, + 0.037208505, + 0.020435043, + -0.010313512, + 0.04553457, + -0.005719612, + -0.029103912, + 0.033960994, + -0.002830119, + -0.031497117, + -0.0047131213, + 3.9245895E-4, + 0.0033736203, + 0.01820823, + -0.0075761625, + 0.047227312, + 0.013097667, + -0.017509572, + 0.017489998, + 0.009877126, + 0.019709045, + 0.029506935, + 0.016174896, + -0.010968906, + 0.008657766, + -0.01804165, + 0.0039252224, + 0.008634206, + 0.01963209, + -0.027338462, + -0.012007733, + 0.029944634, + 0.036941234, + 0.017441684, + -0.032000866, + 0.002694231, + -0.10743013, + 0.005833073, + 0.08233909, + 0.020424005, + 0.0015578828, + -0.018129151, + -0.023120612, + -0.008262989, + -0.041770928, + 0.012370953, + 0.003770933, + 0.05811974, + 0.027032461, + 0.016064664, + 0.0034351721, + -0.030883167, + -0.056129567, + -0.02977904, + 0.008559445, + 0.024979077, + -0.04338188, + 0.021765113, + 0.015199391, + -0.022465821, + -0.0018772279, + 0.0056459806, + 0.02310122, + -6.8662496E-4, + -0.017818214, + 0.017673684, + 0.020346187, + -0.006917221, + -0.00689533, + 0.021768032, + -0.06401164, + -0.030992508, + 0.045583572, + -0.0038399678, + -0.01883784, + 0.02731486, + -0.026066434, + -0.0010732769, + -0.010072814, + 0.0036431001, + 0.01907127, + -0.0010589242, + -0.013795445, + -0.0012755094, + 0.070012465, + -0.0031305824, + 0.023508616, + -0.009329662, + 0.04537481, + 0.014529766, + -0.018865354, + -0.04802534, + -0.024371982, + 0.04100224, + 0.059646327, + -0.067948245, + 0.050334904, + 0.005689225, + 0.009280675, + -0.018915873, + -0.025668068, + 0.0058764354, + 0.031194448, + 0.019848086, + 0.020147461, + -0.036909916, + -0.044082746, + 0.036468316, + 0.037415095, + 0.034004956, + 0.019975973, + 0.008802644, + 0.017246984, + 0.0437159, + -0.032905627, + -0.029728802, + 0.0078357095, + -0.010497869, + -0.05540955, + -0.016213728, + 0.024201632, + -0.01181798, + -0.009801228, + 0.0037358592, + -0.020744324, + 0.005542011, + 0.0112819215, + -0.016065508, + -0.021983046, + -0.025642212, + -0.04519476, + -0.10439721, + -0.0075933533, + 0.008320448, + 0.038638663, + -0.028536655, + -0.051437043, + 0.006029261, + -0.031604566, + 0.0077454397, + -0.0340163, + 0.036840353, + 0.027189242, + -0.033964783, + -0.0013515847, + 0.010527696, + -0.013716006, + -0.007397099, + -0.05241388, + -0.011715624, + 0.016263416, + 0.008030754, + -0.025644656, + -0.032069955, + -0.0039587375, + 0.031902917, + -4.3289E-4, + -0.071169056, + -0.033704374, + 0.02291036, + -0.0146905575, + -0.019563278, + -0.0082119005, + -0.028463274, + 0.01695546, + 0.021173133, + -0.046619516, + 0.023023104, + 0.015651591, + -0.023532748, + -0.02224445, + 0.016101977, + 0.066172004, + -0.04862738, + -0.024570638, + -0.028668182, + 0.0061127655, + -0.0029464336, + 0.017358966, + 0.016767243, + 0.012181884, + 0.06480624, + -0.005741247, + 0.04097513, + -0.036872342, + -0.020775987, + -0.018739384, + -0.025833376, + -0.027639937, + 0.01336321, + -0.037605956, + 0.029109295, + -0.02173087, + -0.015123659, + -0.015966248, + -0.04423856, + -0.041867584, + -0.023758672, + 0.036584944, + 0.03488343, + 0.032655478, + 0.025575846, + -0.059021518, + 0.01769411, + -0.06523954, + -0.028727107, + -0.012935458, + -0.034200244, + -0.0032333722, + 0.016566914, + -0.013173086, + -0.04651735, + -0.0070207734, + -0.021993462, + 0.021380682, + 0.0037654787, + -0.014375558, + 0.023176925, + -0.018648565, + 0.006037999, + 0.013170474, + 0.0044301813, + -0.015722286, + 0.0058128675, + -0.04382583, + 0.068548106, + 0.04439067, + 0.002548083, + 0.032219816, + 0.039819878, + -0.021515124, + -4.5783806E-4, + 0.048061278, + 0.020015381, + -0.049448688, + 0.050586585, + 0.018628294, + 0.022510733, + 0.037286483, + 0.058152385, + -0.019436197, + 0.006624555, + 0.04001515, + -0.00849414, + -0.020165568, + 0.025180556, + 0.019279197, + 0.032057263, + -0.024571303, + 0.015831638, + -0.022781624, + -0.0029157416, + -0.012310967, + 0.020841433, + -0.012162597, + -0.03142561, + -0.098737, + 0.025212446, + 0.043599375, + -0.039217632, + 0.015644595, + 0.016666362, + -0.017808216, + 0.011053663, + 0.034523964, + 0.002411339, + 0.014398418, + -0.006212261, + 0.0030416546, + -0.016185235, + 0.0093732495, + 0.037935063, + -0.042912807, + -0.035785105, + -0.014965525, + -0.056298662, + -0.011588069, + -0.015506859, + 0.023555111, + 0.056383442, + 0.011380706, + -0.0051205372, + -0.029151015, + -0.048788052, + -0.08402004, + -0.016904252, + -0.02289918, + -0.021946961, + 0.052579064, + -0.040323712, + -0.051620495, + -0.06746612, + 0.06197858, + 5.229878E-4, + 0.034682047, + -0.048241504, + 0.049155377, + -0.018837135, + 0.044080727, + -0.03223177, + 0.054574117, + 0.039295793, + 0.050002012, + 0.001922423, + -0.008735721, + 0.03445631, + -0.020303534, + 0.047107846, + 0.05383986, + -0.019176058, + -0.01793265, + 0.030619482, + 0.05712299, + -6.375997E-4, + 0.0060585174, + 0.04770596, + -0.028621249, + -0.011227204, + 0.012484119, + 0.018029336, + 0.05481642, + 0.024564875, + 0.10399381, + 0.050982706, + -0.003424369, + 0.019359175, + 0.0034214233, + 0.0088652745, + -0.0049995757, + -0.0118035795, + 0.0010310685, + -0.05248179, + -0.031532902, + 0.046957664, + 0.029323494, + -0.03748296, + 0.03863375, + 0.015491811, + 0.020701692, + 0.05573103, + 0.029727124, + 0.030521503, + 0.047596797, + -0.036813546, + 0.008063877, + -0.01857779, + 0.015210343, + 0.027291114, + -0.010248111, + 0.024931438, + 0.028417874, + 0.041074872, + -0.017565608, + -0.023641985, + 0.0048465887, + 0.0010494483, + -0.008331823, + -0.061733704, + -0.0073647425, + 0.020923382, + 0.0021797046, + -0.07171295, + -0.00275205, + 0.030760976, + -0.0014357492, + 0.041491587, + 0.017807571, + -0.0026288978, + 0.01330467, + -0.023861121, + -0.012350115, + 0.039271846, + -0.014182672, + -0.03835878, + -0.022553606, + -0.017146016, + 0.039285865, + 0.03526293, + 0.053070363, + 0.028171733, + -0.050579056, + -0.017742716, + -0.03626121, + -0.046595667, + 0.028496519, + 0.0018949863, + 0.027300837, + 0.019094886, + -0.006567013, + 0.010196928, + 0.047329582, + 0.01550317, + 0.03455397, + -0.0069094007, + -0.006729177, + 0.046310555, + -0.04723688, + 0.010224185, + 0.08967955, + -0.0052361363, + 0.023833, + -0.011699951, + 0.058056876, + -0.006796294, + -0.039509147, + -0.058479156, + -0.08805555, + 0.005462736, + -0.008196614, + 0.05172843, + 0.0061020064, + 0.02247894, + 0.023465259, + -0.017664336, + 0.019672252, + -0.06834434, + 0.0050694314, + -0.038435966, + -0.074917376, + -0.02517473, + -0.03061643, + -0.0057980185, + -0.021762649, + 0.029060144, + 0.010688701, + 0.03875251, + 0.032506593, + 0.032279495, + -0.012791364, + 0.022692408, + -0.0035618008, + 1.9818236E-4, + -0.04019106, + 5.7446153E-4, + 0.008791942, + 0.030057203, + -0.028839637, + -0.013318244, + 0.05917248, + 0.028811628, + 0.021628324, + -0.0015615749, + -0.07447941, + -0.029758342, + -0.024974808, + 0.019046234, + -0.020013891, + 0.029432625, + -0.055885196, + -0.010505266, + -0.024387378, + -0.047754552, + 0.09864835, + 0.009591633, + 0.03910817, + -0.044783697, + -0.027202807, + 0.03779048, + 0.020250289, + -0.051312026, + 0.0040125255, + 0.003004537, + 0.067548186, + -0.005503127, + 0.026838962, + 0.017270148, + 0.015876355, + -0.045967914, + 0.026205344, + 0.0102777, + -0.009715993, + -0.09030695, + 0.056989305, + 0.068527125, + 0.013173115, + -0.006552771, + 0.003939832, + 0.012254665, + 0.02514349, + 0.023231234, + 0.027617386, + -0.008443674, + -0.0066401614, + 0.048372556, + -0.035851788, + 0.019563446, + -0.011355543, + -0.008515301, + -9.303298E-4, + -0.026513245, + 0.018635692, + 0.053971596, + 0.055073142, + 0.02005591, + -0.041388508, + 0.03453795, + 0.0056483457, + 0.017195346, + -0.03527971, + -0.015307369, + -0.015976682, + -0.023915444, + 0.0074497247, + -0.047189075, + -0.061157517, + 0.0038694434, + 0.0028718882, + 0.0056050783, + 0.056056358, + -0.0071988045, + 0.014971512, + -0.017716914, + 0.009941722, + -0.00969148, + -0.023888318, + 0.081185825, + -0.03248829, + -0.029384533, + 0.009682185, + 0.010770577, + 0.028553775, + -0.01890799, + -0.059526335, + -0.021941526, + -0.012135926, + -0.026109004, + -0.033557676, + 0.006637777, + -0.017035974, + 0.028006412, + -0.048674118, + -0.0018597882, + -0.021664733, + 0.007865899, + 0.024085985, + 0.041656297, + -0.0034191285, + -0.024833387, + 0.010658164, + 0.064332105, + -0.011330078, + -0.038268283, + -0.0077986596, + -2.1199457E-5, + 0.002077945, + -0.01023762, + -9.3592197E-4, + -0.013715857, + -0.033112235, + -0.014747336, + -0.051694, + 0.024957186, + 0.0015492501, + 0.019330535, + -0.08303857, + -0.028083917, + 0.023683066, + 0.055725593, + -0.029146481, + 0.001107306, + -0.014901943, + -0.020691257, + 0.017719008, + -0.019386325, + -0.02024857, + -0.005950136, + 0.0489247, + -0.057353593, + -0.024840053, + 0.07341338, + -0.020085167, + -0.03610325, + 0.018000703, + 0.019408172, + -0.065248534, + -0.027034383, + 0.017703438, + 7.6429185E-4, + 0.02089925, + -0.059337653, + 0.048705373, + -0.009885243, + -0.016020386, + -0.023141734, + -0.040469736, + -0.0023065933, + -0.0048937364, + -0.08260028, + -0.012068499, + 0.026156286, + 0.009556075, + -0.0022170339, + -0.005845045, + 0.016687669, + -0.004879947, + 0.05701465, + -0.020281352, + -0.043878492, + 0.028876156, + -0.002422297, + -0.008537078, + -0.0060475594, + -0.03483053, + -0.021628618, + 0.029326055, + -0.030760778, + -0.017093632, + -0.017182507, + -0.0044130906, + 0.01725231, + -0.03179126, + 0.0045360783, + -0.10675112, + -0.008063417, + 0.040341016, + 6.549879E-4, + -0.026175292, + -0.026682634, + 0.046401415, + 0.031908926, + 2.9718946E-4, + 0.03913446, + -0.028713739, + 0.0027144803, + -0.04748024, + -0.034567755, + 0.03921632, + 0.0035354486, + 0.01457021, + 0.026905855, + -0.03485273, + -0.00642167, + 0.029368361, + -0.023670757, + 0.029282693, + -0.020226518, + -0.041486952, + -0.021200338, + -0.008525402, + -0.03647549, + -0.0051971003, + -0.008015135, + -0.0150060225, + -0.013273844, + -0.0038617845, + -0.008464716, + 0.059679013, + 0.026355647, + 0.0027519637, + 0.003976805, + -0.02704165, + -0.00818374, + -0.0012927525, + 0.022158025, + -0.014735548, + 0.0032886984, + 0.0026681677, + -0.012409919, + 0.06319957, + -0.029561693, + -0.035781395, + -0.023689102, + -0.0074325404, + 0.008362533, + 0.02192468, + 0.045333568, + -0.037097745, + -0.018181017, + 0.003543214, + 0.0012121972, + -0.021788098, + -0.05195761, + 0.024450367, + -0.010407413, + -0.008934439, + -0.015010255, + 0.046744063, + 0.050920792, + -1.7290406E-5, + 9.728049E-4, + -0.006870706, + -0.041925073, + 0.023678334, + 0.04815443, + 0.008283478, + 0.002659238, + -0.0032926165, + -0.052513916, + 0.02505085, + -0.013226939, + -0.018725904, + -0.03911243, + 0.05039969, + 0.0064052055, + 0.08831746, + -0.011692207, + 0.004702309, + 0.026406284, + -0.040328152, + -0.0033303238, + -0.013551014, + -0.028343912, + 0.018432682, + -0.020041674, + -0.00796386, + 0.005395719, + 0.04227369, + 0.03850158, + 0.029173475, + 0.047041982, + -0.03763785, + 0.0491299, + 0.031697456, + -0.03801055, + 0.0069467695, + -0.0041218037, + 0.02031198, + -0.063654795, + -0.0070560765, + 0.027231427, + -0.018545551, + -0.0013474459, + -0.0040686447, + 0.039289664, + -0.00692475, + 0.015699368, + -0.015263658, + 0.069927305, + 0.0057730773, + -0.04886616, + 0.022675434, + 0.02461529, + -0.010116696, + -0.0028858348, + 0.025911111, + 0.042084206, + 0.015031461, + -0.004432058, + 0.023992652, + -0.05680283, + 0.04064282, + 0.027496753, + 0.032474313, + -0.0053398907, + 0.006918827, + 0.025074327, + -0.03076921, + -0.014126943, + 0.028368121, + 0.004009915, + 0.018178172, + 0.030711286, + 0.011530931, + -0.0039979955, + 0.017263569, + -0.04362745, + 0.011183724, + -0.01363103, + 0.048394267, + -0.02509889, + -0.023007575, + 0.04053357, + -0.051634576, + -0.028608032, + 0.018444628, + 0.02818206, + 0.013006345, + -0.042610083, + -0.0038345703, + -0.019492645, + 0.041600984, + -0.021160481, + 0.049769033, + 0.029930027, + -0.0071864366, + 4.714733E-4, + 0.03233208, + 0.016611625, + -0.022382265, + -0.019727873, + 0.019011756, + 0.014495036, + 0.020659091, + 0.0054806415, + 0.027859954, + -0.015537314, + -0.0068556643, + 0.018974138, + 0.011834964, + -0.032703184, + 0.022003721, + -0.009881304, + -0.008482263, + 0.0018691695, + 0.027128702, + 0.03412552, + -0.002850417, + 0.02019957, + -0.002666745, + 0.00405385, + -0.008284081, + -0.024784068, + -0.0033737824, + 0.009933732, + -0.038201045, + -0.030862913, + 0.02128004, + -0.030267574, + 0.05577252, + -0.0109908655, + 0.02435507, + -0.01007459, + 0.0013069593, + 0.022750698, + 0.0069382507, + -1.9981357E-4, + -0.017683567, + -0.030289695, + 0.008517443, + 0.005868854, + 0.0023970974, + -0.042291645, + 0.05585321, + 0.017278273, + 0.1008522, + 0.040264357, + -0.012745596, + 0.052715275, + 0.015187011, + 0.012138546, + 0.036572192, + 5.3172203E-4, + 0.0612634, + -0.017650405, + -0.047121514, + 0.0036057471, + 0.009581437, + 0.051617347, + 0.025665073, + 0.0046593365, + -0.0060692583, + 0.0074950773, + -0.018399574, + 0.018895589, + -0.0039125974, + -0.010441412, + -0.0031244282, + -0.049052086, + -0.058462393, + -0.015406629, + -0.018931154, + -0.004075478, + -0.063794844, + -0.03549842, + 2.5268664E-4, + 0.06772983, + -0.01617047, + 0.048553396, + 0.020549994, + 0.034961946, + 0.015761795, + -0.059268706, + 0.007117684, + -0.023543477 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.contributors.2.json b/common/search/src/test/resources/test_documents/images.contributors.2.json index 8f626ec00..941ecd325 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.2.json +++ b/common/search/src/test/resources/test_documents/images.contributors.2.json @@ -1,1363 +1,5273 @@ { - "description": "images with different contributors", - "createdAt": "2023-11-21T14:25:43.895409Z", - "id": "cc8gnrfd", - "document": { - "modifiedTime": "1954-10-27T14:08:04Z", - "display": { - "id": "cc8gnrfd", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different contributors", + "createdAt" : "2024-11-14T14:37:56.384049Z", + "id" : "1o9uszyg", + "document" : { + "modifiedTime" : "1986-10-11T11:21:55Z", + "display" : { + "id" : "1o9uszyg", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/gNs.jpg/info.json", - "credit": "Credit line: MYv4V9Am5", - "linkText": "Link text: 0e5DibEcN", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/gNs.jpg/info.json", - "credit": "Credit line: MYv4V9Am5", - "linkText": "Link text: 0e5DibEcN", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#C31C15", - "source": { - "id": "mdwo2lvu", - "title": "title-6OxeTYyahq", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#916F02", + "source" : { + "id" : "dbdgkdoh", + "title" : "title-IPEeHggOxd", + "contributors" : [ { - "agent": { - "label": "carrots", - "type": "Agent" + "agent" : { + "label" : "carrots", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "parrots", - "type": "Meeting" + "agent" : { + "label" : "parrots", + "type" : "Meeting" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "cc8gnrfd", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["carrots", "parrots"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "mdwo2lvu", - "sourceIdentifier.value": "8wqUCAR0AV", - "identifiers.value": ["8wqUCAR0AV"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-6OxeTYyahq" + "query" : { + "id" : "1o9uszyg", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "carrots", + "parrots" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "dbdgkdoh", + "sourceIdentifier.value" : "rlfsStYOfR", + "identifiers.value" : [ + "rlfsStYOfR" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-IPEeHggOxd" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"carrots\",\"type\":\"Agent\"}", "{\"label\":\"parrots\",\"type\":\"Meeting\"}" ], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["carrots", "parrots"], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.018496173, 0.01137914, 0.029891314, 0.0044189394, -0.010265648, - 0.01275469, -0.016896322, -0.004236308, 0.010371338, -0.010852679, - 0.0038285693, -0.025353316, -0.011058088, -0.00618338, 0.0043956595, - 0.0039109415, 0.008816066, -0.0135477, 0.013896735, 0.008284135, - 0.009064491, -0.0019264579, 0.0205083, -0.014060662, -0.012375759, - 0.0052321376, -0.01084593, -0.024941958, -0.0042584836, 0.003319376, - -1.4945945e-4, -0.0013517215, -0.021150436, -0.029186632, 0.00840178, - -0.020233514, -0.011099779, 0.0027572175, -0.011029036, -0.0010877451, - 0.01842323, 0.013393494, -0.0036008086, 0.0091252625, -0.001981435, - -0.005854221, 0.0037528705, -0.010617754, -0.009728097, 0.009213038, - -0.0046704197, -0.012784624, 0.01730842, -0.0051661567, 0.01765261, - 0.0057205497, 0.010789063, 0.0020097948, -0.015571846, 0.006238561, - -0.02102837, -0.012821881, 0.025331482, -0.034189418, 0.01953767, - -0.0056060962, 0.0026863199, 0.030237349, 0.031423092, 0.03206178, - 0.004231818, 0.0028382146, -0.02214873, 0.012724811, -0.008615804, - -0.013314786, 0.017385626, 0.030629205, -0.0030712734, 0.0039455914, - -0.007776717, 0.0115045225, 0.01779659, 0.015792625, -0.03467074, - -0.012478262, -0.023041818, 1.5392023e-4, -0.010502334, -0.020830095, - -0.009976395, 0.016646955, -0.017923754, 1.6080562e-4, -0.012821461, - 0.010822395, -0.006736586, -0.004338499, -0.009490237, -0.013426545, - -1.637502e-4, -0.008033744, 0.020707138, 0.0050952747, 0.014346936, - -0.007697437, -0.037654832, -0.0045479774, 0.013874179, 0.002448008, - -0.012011362, -0.007223597, -0.009599552, 0.021469437, -6.943274e-4, - -0.010956612, -0.011386785, -0.0213831, -0.018992273, -0.004371448, - -0.003201045, 0.007342936, 0.020345854, 0.0029019187, -0.0020703692, - -0.009714292, 0.018165847, 0.017894944, 0.012389978, -0.014257133, - 0.03780898, 0.048589267, 9.573686e-4, 0.0059783543, 0.014874915, - 0.040163666, -0.016241115, 0.0034872885, -0.038157888, 0.013172088, - -0.014868084, 0.0035658213, 0.012893137, -0.014055073, -0.016513439, - -0.008879154, 0.0059454376, -0.014905468, -0.002158957, -0.010360297, - -0.0052701784, 0.013991335, -0.013916059, -0.0013790932, 0.024917327, - 0.010342743, 0.032126717, 0.015711645, 0.012968633, -0.0015627936, - -0.015854873, -0.021651294, 0.048980728, -0.007941149, 0.012058546, - -0.005889106, -0.019438833, -0.019190252, 0.016330522, -0.028521523, - 0.0036228166, -0.02290423, -0.0043689106, 0.020480892, 0.03136294, - -0.00787128, -0.009224131, 0.0031628208, 0.029696586, -0.020239554, - 0.004528313, -0.023650287, 0.016982991, 0.016267661, 0.020967187, - -0.008610758, 0.002319655, 0.0016234176, 0.01464686, -0.0063979486, - 0.012720101, 0.0070859566, -0.023935648, 0.024745367, -0.03129104, - -0.017840091, 0.003897659, -0.0033300233, 0.0031262597, -0.0027141569, - -0.005815263, 0.010386902, -0.002530757, -0.009447138, -0.033563677, - 0.0045105224, -0.020809706, -0.012443399, 0.0025851747, -0.010818364, - 0.03314955, -0.001256134, 0.005828429, 0.024188383, -0.012180202, - -0.022600234, -0.010172505, 0.00545441, 0.0014000956, -0.0066528893, - -0.0066131554, -0.0076226066, 0.01863421, 0.010561772, -0.016599704, - -0.003072128, -0.0021541023, -0.012165285, -0.0032015727, 0.008054533, - -0.0028400843, 0.010912204, -0.039730288, -0.013221765, 0.007773534, - 0.028124131, -0.011755787, 0.010600468, -0.025509067, -0.01958291, - -0.008864816, 0.033549152, -0.021026984, 0.009813813, 0.021763332, - -0.018611215, 0.002656125, -0.02444672, 0.017594628, -0.006405654, - -0.0013680576, 0.0139238825, 0.022717692, 0.024462733, 0.02177658, - -0.0411257, 0.030489871, -0.018126989, 0.012059875, -0.013179669, - 1.2613086e-4, -0.015681617, -0.004407602, -0.02962345, -0.012768307, - 0.0145377815, 0.01763617, -0.015417695, 0.010270972, -0.0015154288, - 0.0039358004, 0.009566079, 0.0013654042, -0.01765673, 0.026458655, - 0.02122503, 0.005538341, -0.009084458, -0.009287889, 0.0013237469, - -0.0067061163, 0.004153557, -0.018851472, 0.004925577, -0.02033289, - 0.011325443, -0.003397192, 0.020196237, -0.0034354813, 0.03538927, - -0.002853666, -0.015920222, -0.009665178, 9.4257307e-4, 0.038697697, - 9.1184705e-4, 0.013413782, 0.03442377, 0.018423297, 0.027563205, - -0.012665951, -0.032286346, -0.005572655, -0.029303377, 0.0029027867, - 0.0033379633, 0.016742777, -0.008026784, -0.006806851, 0.0022985493, - 0.03719698, -0.018257273, -0.0017850001, -0.0016416119, -0.016046759, - -0.013450925, -0.029403789, -0.016723735, 0.00248967, -0.032592572, - -0.011013639, -0.012888418, 0.013207853, -0.02115223, 0.0039668, - -0.0103146285, 0.029872535, 0.0031718442, 0.008265476, -0.032027792, - 0.016629148, -0.008754606, 0.0037188616, -0.020273177, -0.0076529137, - 0.0013633287, -0.004993605, 0.006489598, -0.019729665, -0.013758776, - -0.0014446975, 0.0029053087, -0.014206718, -0.02077406, -0.014556094, - 0.0069861864, 0.018197691, 0.005147731, -0.008769053, -0.019548485, - -0.017864091, -0.046088915, -0.01406979, -0.010863083, -0.016104888, - 0.016105957, -0.02412121, 0.01276948, -0.014232986, -0.012139741, - -0.028741235, -3.350973e-4, 0.010037699, -0.013970336, 0.02908314, - 0.007999707, 0.007347381, 0.011231092, 0.0011372229, 0.0036246374, - 0.016983872, 0.0046390104, -0.044528335, 0.014142213, 0.0056340806, - 0.029220726, -0.0064211665, 0.029081723, 0.007815076, -0.008524599, - -0.0014456145, 0.0066159917, -0.011759299, -0.0057907826, -0.018132048, - 0.017260581, -0.028879467, -2.577596e-4, 0.0025230981, -0.01285577, - 0.02995541, 0.0041612876, 0.0060856785, -0.006043799, -0.010830803, - -0.0042390795, 0.0033724597, -0.0070788455, -0.002789255, -0.028760828, - 0.017311355, -0.021537695, -0.007174859, 0.0042906655, -0.02690822, - -0.0133969905, -0.005584138, 0.0031648998, -0.01951658, -0.0088662915, - -0.01903322, -0.02378518, -0.004402244, 0.022678163, 0.026179519, - 0.011100069, -5.4305984e-4, -0.031665847, -0.015938688, -0.007371134, - 0.016816935, 0.0024131048, 0.0050100996, -0.013375754, -0.027035654, - -0.007310726, -0.03298549, -0.009602455, 0.0049010026, -0.0030034692, - 3.0826387e-4, -0.007753043, 0.012072735, -0.019195737, -0.001578197, - -0.01366704, -0.004719772, -0.0109022325, 0.012181995, -0.0285921, - 0.025182065, 0.048381116, -0.008131835, -0.03759921, -0.00863724, - -0.013627228, 0.0043686936, 0.0014700751, 0.012479534, 0.009042828, - -0.02954725, 0.0014476993, 0.0016382366, -0.004709238, -0.0048702345, - -0.0147799775, 0.0092542395, -0.018657984, -0.03626312, -0.013081126, - -0.008208416, 0.027808905, 0.020144254, 0.0067500733, 0.014563893, - 0.010491484, 0.007351854, 0.024542263, -0.032273274, 0.00786777, - -0.004972026, -0.011643207, 0.017743733, -0.0020220876, 0.023606317, - -0.013990893, -0.0036779116, 0.0142797725, -0.003234226, 0.008690732, - 0.010400592, -0.004752821, -0.0046271025, 0.021717058, 0.00496372, - 2.2853413e-4, 0.004487856, 0.012124727, -0.0069614197, -0.010545207, - 0.006082344, 0.013606228, -0.0034710495, 0.0011593004, 0.031314533, - 0.017797306, -0.005409447, 0.005956612, 0.012829882, 0.019729607, - -0.002931856, -0.02958438, -0.0022498658, -0.010153312, 0.014466874, - 0.0082719745, 0.005024927, -0.025056185, 0.0037614207, 0.0010608375, - 0.01297779, 0.0012049192, 0.008044034, 0.033108976, -0.013548075, - 0.012347923, 0.012520858, 0.018372685, -0.021031454, 0.012897473, - -0.011307179, 0.0064249374, -6.242633e-5, 0.023496753, -0.017605424, - 0.0035909927, -0.022192832, -0.01571818, 0.017669382, -0.0065234336, - 0.022536416, -0.030786835, 0.030915935, 0.0031278152, -0.026042033, - -0.0062716235, -0.0057429443, 0.011462473, 0.007157086, -0.008592091, - 0.016203066, 0.0055781864, 0.0039032686, -0.026745161, -0.0040977937, - 0.0013589872, 0.0044017117, -0.005103667, -0.0016033514, 0.022573587, - -0.009404137, -3.8272754e-4, -0.009857312, 0.02989934, 6.0314327e-5, - 0.00431006, 0.0024486503, 0.0016046192, 0.0012468352, 0.0191111, - 0.0035834338, 0.010304901, 0.009060976, 0.016873283, -0.01365386, - 0.006443422, 0.007553787, 0.0034571528, -0.008453196, -0.012997805, - 0.0140976375, 0.009241038, -0.018203916, -0.011675844, 0.007464667, - 0.0034047258, 0.021274304, -0.016573552, -0.02087515, -0.0032766445, - -0.004866151, -0.026283383, 0.0015950125, 0.008277947, -0.0114875, - -0.016951814, 0.025970606, -0.019864086, 0.0014070078, -0.024379523, - 0.01221486, 0.0014290079, 0.027485777, -0.0047879983, 0.012606861, - 0.0075060804, -0.007948339, -0.0076415376, -0.00792362, -0.008273976, - 0.0049033854, -0.0013799537, -0.002600057, -0.045769084, 0.021614049, - 0.0022007544, -0.015700554, -0.010935499, 0.017090255, -0.0069798985, - 0.019638987, -0.0026276708, -0.004476561, -0.0015773972, -0.01144634, - 0.015114834, 1.02245016e-4, 0.006237139, -0.01447172, -0.0065153446, - 0.0016161992, -0.0073071695, -0.014571755, -0.0402365, 0.0011870337, - -0.022233488, 0.016165944, 0.012356667, 0.0052598435, 0.029438438, - 0.01091894, -0.017549466, 8.8813616e-4, 0.018718025, -0.008173499, - 0.006979237, -0.00918959, -0.01668676, -0.005039098, 0.029457098, - -0.020864522, -0.0039574923, 0.01271606, -0.025077531, -0.01001789, - -0.030414842, 0.0034937006, 0.0077685057, -0.017095165, 0.01788238, - 0.015180563, 0.005187824, -0.016620673, 0.010424246, -0.039514203, - 0.004550956, 0.022409441, -0.013112735, -0.020535728, 0.010741481, - 0.0040870123, -0.019857002, -0.022389779, 0.016487936, 0.010649564, - 0.01137642, 0.046797, -0.027094688, 0.0050893873, 0.004764824, - 0.03310425, -0.017838396, 0.008830282, 0.0034243052, 0.011509872, - -0.020767633, 9.976478e-4, -0.004190779, 0.0062749106, 0.030772978, - -0.0064930264, -0.018352961, 0.0064157164, -2.3699625e-4, 0.002904653, - 0.029591251, 0.0021647068, -0.033535752, -0.0074536754, 0.019384265, - -0.0020344795, 0.006745149, 0.021728814, 0.0026979095, -0.009685641, - 0.019215034, 0.0068268916, -7.9219317e-4, 0.016259283, -0.029857574, - 0.01726036, -0.009546521, -0.0020175064, 0.021064145, 0.020774845, - 0.02341685, -0.020639693, 0.0075947135, -0.015375596, -0.0054213125, - -0.0038788314, -0.001822179, 0.015047745, 0.012031963, 0.013576942, - 8.1639376e-4, -0.005140238, 0.01748305, 0.0036355825, -0.006743411, - 0.011966937, 0.02074367, -0.015723089, 0.00814468, -0.027350644, - -0.009867586, -0.0065087005, -0.016810656, -0.004093595, 0.025108105, - 0.010268646, -0.003016249, -0.001944276, -0.009131581, 0.012277746, - 0.019353505, -0.003188356, -0.029723871, 0.012593207, -0.0033861557, - -0.018752228, -0.0041426676, -0.0076378686, -0.012532885, 0.0038970595, - 0.016811144, -0.011334644, 0.01109088, 0.0070971716, -0.013947649, - 0.019140279, -0.0038498708, -0.023732342, -0.010401679, -0.018171798, - -0.025929937, 0.016334338, -0.017697942, 0.010887917, -0.03543349, - 0.015666213, 0.034084387, -0.0057021733, -0.0015594355, 0.007741181, - -2.4716606e-4, -0.011750386, -0.007252444, 0.01760181, -0.012300013, - -0.012231159, 0.01722098, -0.0019326679, -0.020196617, -0.0075048804, - 0.0012008513, -0.006809015, 9.4881427e-4, -0.01093424, -0.011478261, - -0.004824984, -0.018608013, 0.039574165, -0.0028306493, 0.0013937636, - -0.012486929, -0.0031786016, -0.008864116, 0.02150765, 0.014772907, - -0.006212727, -0.011833231, -0.008342491, -0.015934557, 0.011360664, - 0.004670195, 0.006956876, 0.013587308, -0.028967474, -0.0036160417, - 0.004002719, -0.018568868, -0.022037555, 0.019636672, -0.027592314, - -0.014809189, 0.0072068362, 3.6592953e-4, -0.033686437, -0.0022908559, - 0.001241591, 0.03808875, 0.0017688014, 0.013563837, 0.011742442, - -0.014984545, -0.0060787695, -0.0038278995, 0.016887788, -0.012926374, - 0.012391604, 0.04404542, -0.013315057, 0.0038779494, 0.0056276475, - 0.01722812, 0.020080332, -0.02024192, 0.0151954135, -0.010376779, - -0.011866681, 0.034525335, -0.024999905, -0.0013212503, 0.03626549, - -0.004229603, 0.0035114677, 0.013673478, -0.0049424237, -0.027986873, - 0.011508267, -0.012702464, 0.014440967, -0.0019364497, -0.011122059, - -0.012392302, -0.013163732, -0.01281354, -0.005484003, 0.016579803, - 0.0067484053, -0.03392963, -0.013823543, 0.009191553, 7.541133e-4, - -0.007774106, -0.0024943785, -0.030779501, 6.2029716e-4, 0.0016535653, - -0.019548547, 7.26107e-4, -0.013743562, 0.0025797724, 0.0044034575, - -0.001300357, -0.0032115905, -0.019197455, 0.014791518, -0.017042201, - 0.0015360698, 0.02100941, -0.010980099, -0.011731886, 0.028346876, - -0.00583024, -0.0048460625, -0.021847479, -0.02058737, -0.048568416, - -0.008760271, 0.015974578, 0.0172753, -0.016233051, 0.010695492, - 5.225748e-5, 0.011602247, 0.037049945, 0.0013336163, 0.0041268314, - 0.020174555, -0.019624779, 0.03720867, -0.002413403, 2.7990388e-4, - -0.0090894075, -0.003430622, -0.029866226, -0.022537509, 0.010049194, - -0.007620149, 0.012010341, -0.013191948, -0.0020337536, 0.01765391, - 0.003772249, -0.0042738314, -7.037478e-4, 0.0252119, 0.03560505, - 0.0097406395, -0.011465512, 0.015789954, -0.015047339, 0.020261224, - -0.013625423, -0.008207173, -0.011724773, 0.0055960757, 0.02794826, - 0.0023146947, -0.038505856, -0.009577442, -0.012545569, 0.010833353, - 0.02843393, 0.01485628, 0.0055072894, -0.009231414, 6.178443e-4, - 0.005419781, 0.019957058, -0.01752059, 0.018893275, -0.026663084, - -0.008251717, 0.017444517, -0.029071497, -0.011888696, 0.031731967, - 0.0010642353, 0.011636404, -0.0032182613, -0.02956934, -0.008631054, - -1.6814654e-4, -0.00664606, -0.017784068, 0.014475594, 0.0039365785, - -0.0049185297, 0.005729193, -0.0028581328, -0.0046771737, -0.013812772, - 0.015949644, -0.0116658285, 0.010018623, 0.020234512, 0.01595164, - -0.008997997, -0.004378707, -0.011627813, -0.024862606, 0.012793025, - -0.017001886, 0.023403775, -0.01511134, -0.017753562, 0.022938095, - 0.004103771, 0.004578204, 0.007733843, 0.01110252, -0.004398829, - -0.016554916, 0.030317957, -0.012160585, -0.008897506, -0.0076414985, - -0.01676452, -0.006871112, -0.037864335, 0.03295746, -0.009216934, - 0.03475417, -0.012187703, -0.018730221, 0.024023209, 0.010656503, - 0.0035534163, 0.0320907, -0.019950707, 0.0064619402, 0.005924187, - 0.013313828, 0.011966601, 0.03232782, 0.010957099, 0.011006791, - 0.019735673, 0.01871355, 0.0210514, -0.014046902, 0.015778631, - 0.01048094, -0.005298653, 0.01320166, 0.0023572384, -0.02456515, - -0.0049398914, 0.0149727, -0.01877395, 0.0032887426, -0.010060428, - 0.00879068, 0.008580369, -0.018201122, 0.01683818, -0.0139726475, - -0.0073118545, 0.029113675, 4.6357574e-4, -0.03418087, 0.014747283, - -0.0021554572, -0.0074256905, -0.012402726, 0.004673425, -0.018489435, - -0.02731155, -0.018635122, -0.010021921, 0.018088236, -0.009331435, - -0.03539911, -0.026585026, -0.013520983, -0.0047679725, -0.0078061745, - 0.0015621565, 0.013968949, 0.011133196, 0.007761136, -0.0011083148, - -0.016332444, -0.0013293861, 0.008130347, -0.0041033737, 0.0029156664, - -0.007241153, 0.018995067, 0.020629346, 0.0014239617, 0.0023731773, - -0.009466884, -0.0043917773, -0.006689815, -0.002710534, 0.007517146, - -0.007198291, 0.0058611366, 0.023263643, 0.0012226654, 1.1178564e-4, - 0.0023633672, 0.007456834, -0.0029027478, 0.0036116904, 0.032311875, - 9.712021e-4, 0.004775808, -0.017406963, -0.012282792, 0.037557434, - 0.020088227, -0.008950837, -0.01092881, 0.006161162, 0.017889632, - -0.007923447, 0.0057995436, -0.0053052427, -0.021545952, 1.2811364e-4, - -0.008373716, -0.0059555033, -0.0054988023, 9.428783e-4, -0.0031142796, - -0.018974815, 0.02164347, -0.0025096745, -0.024619527, -0.0105927, - 0.002003667, -0.01708342, -0.007456597, -0.004388612, 0.008349892, - -0.004030122, 0.012652555, 0.0048383083, 0.015656067, -0.024636563, - 0.03492786, -0.016555222, -0.016922483, -0.0053371903, -0.009026694, - -0.0024179202, -0.011166834, 0.019472942, 0.027028257, 0.012523521, - -1.29019145e-5, 0.017577846, 0.0048444197, -0.0053377165, 0.012780716, - -0.02259119, 0.011182381, -0.018450504, 0.009603345, -0.00737743, - 0.015961213, -0.0034136525, 0.0043396316, 0.01715075, -0.027851919, - 0.022053597, -0.007378751, 0.014387849, -0.014857131, -0.009159928, - -0.0072466894, 0.0015175845, -0.004876851, 0.01034279, -0.008232006, - -0.007641854, 0.009304219, -0.013735979, -0.0065413364, 0.0075829034, - -0.03564641, 0.014022898, 0.014865481, 0.0037001136, -0.012320726, - -0.015643047, -0.022513699, 0.0030569925, -0.009889694, 0.02960897, - 0.0096637625, 0.0022179303, -0.033009637, 0.013495526, 0.0072979303, - -0.0071797194, 0.019605648, -0.009747739, -0.023851812, 0.024801217, - -0.004519845, 0.005273195, -0.024023801, 0.014190236, -0.024860859, - -0.0022470388, 0.030809565, -0.009297805, -0.0032948495, 0.014670551, - 0.0066014715, 0.010470328, 0.009385068, 0.01173127, -0.024779262, - -0.0024282786, -0.0019574198, 0.033023827, -0.027990954, 0.00917584, - 0.011543502, 0.008446244, 0.0075827027, -0.025233097, 0.02405459, - -0.01135616, 0.006115354, 0.025838232, 3.9066232e-4, -0.0021470522, - -0.0117434915, 0.0033759843, -0.01194837, -0.023359861, -0.016874257, - 0.0016422857, 0.0046412, 0.0022727118, 0.0128264325, -0.0045428197, - -9.67942e-4, 0.01806029, 0.001903427, -0.035736512, 0.010892793, - 0.006532658, 0.023015257, -0.0056822277, 0.029254055, -0.014554948, - -0.0306997, 0.0075156083, -0.009439742, -0.0069790985, -0.02535108, - -0.0067195664, 0.015269116, -0.0011534366, 0.039851308, -0.014773165, - -0.01797549, -0.00977699, -8.8290474e-4, 0.006588309, -0.017493375, - -0.018925736, 0.026806287, -0.012168041, -0.0018055581, -0.0056965286, - 0.013339182, 0.00872956, -0.007831988, 0.0072506885, 0.012158548, - -0.0015287442, -0.0066498797, -0.020217193, -0.009760556, 0.027646614, - -0.012192955, 0.012607318, -0.015818467, 0.0033401793, 0.01671104, - 0.0036992352, -0.014198761, -9.2963025e-4, -0.034249324, 0.0028229214, - 0.019361595, 0.036329936, 0.00986823, -0.0044127135, -0.0022827447, - -0.018032804, -0.014368341, 0.0028282972, 0.0045585088, -0.014731314, - 0.020957783, -0.0012822855, -0.004261338, -0.005646707, -0.0273211, - 0.014446975, -0.002546049, -0.015972553, 0.029465761, -0.014046626, - 0.028180728, -0.010492779, 0.026715042, 0.02051656, -9.6485263e-4, - -0.003776328, -0.007843851, 0.008352008, 0.03261331, -0.010246484, - 0.022256859, 0.0053123077, 5.483599e-4, -0.007457582, 0.012171857, - 0.008241056, -6.298546e-4, -0.02407198, -0.010590904, -0.016161447, - -0.0074417475, 0.016356902, 0.03664098, 0.019726261, 0.007175196, - -0.009068995, 5.530282e-4, -0.014209383, 0.001557564, -0.0066927266, - 0.006209006, 0.029965447, -0.0031966341, -0.011881324, -0.0038968602, - 0.018084392, 0.006952012, -0.015578638, -0.023517242, -0.009984825, - -0.0026024838, 2.8754963e-4, 0.008523509, 0.027753929, -0.0018387828, - 0.010436298, 0.02348668, -0.0016941498, 0.009124523, 0.0127432775, - -0.018810106, -0.010389197, 0.010132152, -0.017779013, 0.017753093, - -0.019487897, 0.0042407303, -0.0018575608, 0.023064382, -0.022253638, - -0.025165949, 0.0016940382, 0.004974889, -0.006218792, 0.0104023, - -0.01160876, 0.0014443055, -0.013369926, 0.005680285, 0.0027990965, - 0.0021055029, 0.013467723, -0.027451271, 0.020638036, -0.01611193, - -0.004319009, -0.003579766, -0.01178638, -0.012846459, -0.005105918, - -0.011655424, 6.516028e-4, -0.025804171, -0.027662251, -0.0029798027, - 0.013659578, -0.027523313, -0.013248275, 0.010020396, 0.012209718, - 0.0064916955, 0.01880556, -0.014609548, 0.011451176, -0.008042975, - -6.7000673e-4, 0.005084197, 0.022339702, -0.016401505, -0.0033908475, - 0.015615313, -0.008543072, 0.03096877, -0.0033223606, -0.0014668218, - -0.012164295, -0.0015880845, 0.006080195, -0.01655326, 0.01600894, - -0.016795645, 0.01680596, -0.014163966, -0.0021642726, -0.022237184, - -0.013419689, 0.017086755, 0.0026809715, -0.0014666809, 0.006865375, - 0.0056288033, 9.697279e-4, 0.018791027, 0.0027040718, -0.012596855, - 7.978534e-4, -0.0066570435, -0.018210107, 0.017104885, -0.01970731, - 0.002143321, -0.011720707, 0.017507609, 0.011102998, -0.04483324, - -0.009545371, -0.004414021, 0.010184546, 0.0025431875, 0.0024572592, - 0.038546704, 0.010170409, -0.014802523, 0.009606977, -0.005724034, - 0.026147394, 2.5607485e-4, -0.007725603, -0.009425854, -0.009196526, - -0.006916318, 0.006324886, -0.023094581, -0.007869046, -0.015692554, - 0.022472523, 0.01769865, -0.017919954, 0.01952748, -0.014182719, - -0.010804065, 0.0066173715, -0.0046281912, 0.008753937, 0.0088593755, - 0.005388219, -0.0059923017, -0.010291388, -0.0063593215, -0.039577514, - -0.012719651, 7.400456e-5, -0.01549325, -0.0039936965, 0.017066628, - -0.010755995, -0.029628055, -0.012324227, 0.011047395, -0.021475405, - -0.026380451, -0.0020097345, -0.023815203, -0.030123286, 0.006608485, - 0.007369973, -0.008371396, 0.018791256, -0.011837815, 0.0076864515, - 0.007920947, -0.0082614655, -0.0062008356, 0.010111804, -0.034042444, - -0.022016509, -0.017947698, -0.0030919632, -0.01305075, -0.011153414, - 0.016254032, -0.0056558335, -0.0038493415, 0.004019663, -0.0063954997, - -0.018578073, 0.0019709566, -0.004018838, -0.002928518, -0.02128693, - 0.0061005955, -0.03593516, 0.023361651, -0.006496364, 0.002851676, - -0.008698715, 0.004860754, -0.030461263, 0.0040528933, 0.03706416, - 0.0077337385, -0.014950152, 0.019587785, -0.01745464, -0.0035088973, - -0.03995303, 5.8378966e-4, -0.019151699, 0.015461704, 0.011985628, - 0.007836846, -0.0038866962, -0.007974057, 0.0055461787, 0.008062648, - -0.010004167, -0.018945677, -0.016616544, 0.0045811334, -0.023046205, - 0.0067640627, 9.830244e-4, 0.0065441714, 0.02423449, -0.029635318, - -0.029855987, -4.0096344e-4, 0.018370617, 0.028924432, 0.020501515, - -0.018875832, -0.0047775623, 2.648878e-4, 0.0030795604, 0.02668607, - 0.035694942, -0.013836686, 0.0040356875, 0.002082132, -7.2692416e-4, - -0.005232125, -0.005294555, 0.0345392, 0.013889089, -0.013826469, - -0.04041304, 0.008268484, -0.012928791, 6.975292e-4, -0.03206991, - 0.021039885, -0.021635914, -0.016356425, 0.021351157, -0.015598589, - 1.3720174e-4, 0.009005263, -0.0031840766, -0.022359299, 0.0043771137, - -0.020602556, 0.018189885, -0.008647798, 0.009769163, -0.01646506, - -0.002970502, -0.010166057, 0.0076043326, -0.011846454, -0.015369229, - 0.0021277298, -0.013245454, 0.012822863, 0.01590072, -0.013226922, - 0.0028747828, 0.02136832, -0.0021580767, 0.0021456166, 0.009799034, - -0.015858408, -0.04380356, -0.006680632, 8.5966784e-4, -0.019876502, - 0.018267319, -0.02008607, 0.0011225977, 0.0037924666, 0.026825007, - -0.0071863327, -0.030752122, 0.006746017, -0.007298754, -0.00657271, - 0.0015854387, 0.0010747293, -0.026487691, -0.0051257755, 0.014339022, - -6.2738237e-4, -0.0038621705, 6.5591955e-4, 0.008078361, -0.010740017, - -0.006105892, -0.014755397, 0.0037983307, 0.0023940473, 0.0039816936, - -0.008866876, -0.00495028, 0.014883623, 0.00917923, 0.01794385, - -0.01649621, 0.015249614, -0.0073522576, -0.0014394585, 0.004177581, - 0.0061696256, -0.028941354, -0.018042319, 8.6950196e-4, 0.009281418, - -0.00582474, -0.009500735, -2.307861e-4, 0.018058006, -0.025263464, - -0.0022840104, -0.013258987, -0.003397048, 0.0030798397, 0.017045839, - -0.017763888, -0.0028665247, -0.021397572, -0.014745348, -0.010795687, - 2.38321e-4, -0.0020159932, -0.015909784, 9.3152415e-4, -0.0063814097, - 0.03909012, 0.015680967, 0.016492294, 0.018346235, -0.0055762813, - 0.020054294, -0.010966507, 0.0010809253, -0.015208353, 0.020481365, - 0.0053454377, 0.002266086, -0.01573977, -0.016718835, 0.0043138973, - 0.011422889, 0.005871246, 0.005793154, -0.007724474, -0.005968824, - -0.014093637, -0.010216605, 0.009447783, 0.029930236, -0.0141187785, - -0.012881502, -0.0069166734, 0.024661029, -0.0148162525, -0.0015908803, - 0.004677164, 0.03393796, -0.013619088, 0.016226957, 0.0036332863, - 0.01993384, -0.008184447, -0.011834709, 0.034600686, -0.008788339, - 0.011243251, -0.02669792, 0.008668824, 0.03660319, 0.03476011, - 0.0054419953, 0.0019661807, 0.01667872, -0.0014217932, 0.014583119, - 0.022703223, 0.01730545, -0.020071648, 0.0027092241, -0.006291603, - -9.169183e-4, 0.010275005, 0.0039991415, 0.010739949, -0.0043952526, - -0.006621778, -0.025430445, -0.0051860316, -0.02200954, -0.0130623095, - -0.005636356, 0.007250504, 0.016529024, -0.006593572, -0.030569285, - 0.009086641, 0.023044921, -0.009848647, 0.014381089, 0.044653937, - -0.019349745, -0.021269176, 0.010121452, -0.023452628, -0.0010949464, - 0.0023725852, 0.0063842162, 0.011598241, -0.017869545, -0.033388488, - -0.016580265, -0.010233918, -0.0012289226, -0.002265965, -0.027169669, - -0.0014845948, -0.001958745, 6.0476403e-4, 0.0065848515, 0.010608323, - -5.07625e-5, -0.021513328, 0.010968098, 0.0068958006, 0.011555837, - -0.022289528, 0.01343647, -0.026116395, -0.022749668, -0.04203241, - -0.012123221, -0.0044848137, -0.014209101, -0.024580982, -0.008476095, - -6.93584e-4, -0.006126519, -0.0076882793, 0.010829566, -0.009656878, - -0.00611311, 0.015706908, 0.0157512, 0.00820831, -0.012535952, - -0.005979099, -0.018638777, -0.013104794, -0.013495576, 0.02327815, - 0.018052414, -0.0038594988, -0.014772236, -0.004698299, 0.018922154, - 0.017503746, -0.026979174, 0.0094552105, -0.023714852, -0.0077362587, - 0.0052366923, -0.008563825, 0.015342702, 4.8104412e-4, -0.033252902, - 0.0070768367, 0.016683605, -0.0050276187, -0.0036726727, -0.016554082, - 0.020076793, -0.020750001, 0.0039532427, -0.035642713, 0.024340281, - 0.010342392, -0.017798679, 0.0075872885, 0.010881122, 0.012173126, - -0.012248677, 0.0027422349, 0.016332297, -0.019529022, -0.02320002, - 0.015088921, -0.017586641, -0.011464262, 0.024082303, -0.012660909, - 0.012022628, 0.004038795, -0.016051838, -0.017692903, 0.012740398, - 0.011845576, -2.4379636e-4, 0.019648567, -0.011465688, -0.0052535404, - -7.675502e-4, -0.022640461, 0.016373951, 0.040713277, -0.024485657, - -0.0038702565, -0.007979336, 0.0048366147, 0.0028505826, -0.016681308, - 7.929019e-5, -8.9997536e-4, -0.001285643, 0.014668089, -0.02322409, - 0.031103047, -0.018242974, 0.011484971, 0.013115834, -0.009008866, - 0.011545085, -0.041509308, 0.025983844, -0.024574047, 0.016187396, - 0.0067557557, 0.0053284513, 0.0042470624, -0.008588243, 0.023836968, - 0.0213998, 0.0010855511, 0.022853648, -0.004107212, -0.0012668082, - 0.021689815, 0.0060986993, 0.017704705, -0.0042212736, 0.0357564, - -0.024333004, 0.01913777, 0.0039005242, -0.011848427, -0.018775878, - -0.0057075503, -0.0088935, -0.01579126, -0.00781964, 0.012458679, - 0.008848802, 0.00963912, 0.004683533, 0.0040419456, 0.012026275, - -0.007121959, -0.009421774, -0.006450897, 0.0086157415, 0.008284732, - 0.012049591, -0.0039444575, 0.022134276, 0.0048240838, 0.013515739, - 0.021391373, 0.0038599877, 0.022662489, -0.023485348, 0.001620832, - -0.018652678, 0.007901669, 2.905531e-4, -0.011231453, 0.006647013, - 6.0751615e-4, -0.023997292, -0.033430293, -0.014237543, 0.022466095, - 0.007765348, -4.8819542e-4, 0.0141127175, 0.013081391, 0.013113484, - 0.013282077, 1.3860592e-4, -0.0029516483, 0.019392082, -0.002624715, - 0.010172464, 0.001977489, 0.0133473985, -0.0032809218, 0.0034349721, - -0.004525761, -0.014874729, -0.0135272825, -0.004173, -0.011411012, - -0.0061458033, 0.007203237, 0.012029219, -0.017099965, -0.001992279, - 0.018003702, -0.009947418, -0.009609066, -0.00410574, -0.015133442, - 0.014342957, -0.001748429, 0.0056052525, 0.0012544527, -0.0050218557, - -0.0015582084, -0.016193977, 8.0877435e-5, 0.005327041, 0.0026560964, - 0.0059702764, 0.014440467, -0.03804227, -0.009170978, 0.014709059, - -0.014524121, -0.012227646, -0.01870484, -0.024185304, -0.013054655, - 0.0086747445, 0.0049505434, -6.928286e-4, 0.038453024, -0.00796721, - -0.008409237, 0.015460513, -0.006765264, -0.033599548, 0.017262783, - -0.030819725, 0.014434909, -0.002165301, 0.027959386, -0.0061447015, - -0.0017751963, -0.0076122587, -0.008409581, -0.016379561, -0.01570115, - -0.019273235, 0.019556992, -0.004218968, -0.0022544288, -0.02078916, - 0.013848671, 0.016808184, -0.0030296592, -3.3439886e-5, -0.025691766, - 0.011755671, -0.011809207, 0.004066075, 0.005129188, 0.016098881, - 0.007967073, 0.04225981, 0.018803746, -0.019645188, -0.008071213, - -0.011166059, -0.0014765759, 0.0062976885, 0.031010317, 0.019424386, - 0.0051442664, -0.021558363, -0.0071123564, -0.0038691259, 0.043054745, - -0.0072648255, -0.012482395, -0.019595806, 3.166454e-4, -0.017869538, - -0.031878337, 0.02190835, 1.7986674e-4, -0.012143634, 0.01502765, - 0.01924471, 0.0041737836, 0.0140461745, 0.013419729, -0.011115416, - 0.0034638785, -0.0021212741, -0.028377792, -0.025028888, -0.019196888, - 0.010967652, -0.0021188005, 0.01117412, 0.0044938414, 0.009277713, - -0.009224575, 0.011824984, -0.026961716, 0.011756212, -0.02182304, - 0.016955655, -0.020940276, -2.7578807e-4, 0.019735025, 0.00412362, - 0.0020287444, -0.018721383, -0.00580221, -0.02514204, -0.007958996, - -0.021167787, -0.007817416, 0.0021785065, -0.012000134, -0.021033878, - -0.014877285, -0.006264872, -0.021451907, 0.014046062, -0.00625307, - -0.013333138, -0.003923568, 0.0023341335 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + "carrots", + "parrots" + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.016623395, -0.0053592864, -0.0026588645, -0.017710993, -0.005371117, - -0.0010336754, -0.020742496, -0.023671716, 0.007591339, 0.012091357, - 0.01872222, -0.010315595, 0.0117602805, 0.021025464, 0.0061269905, - 0.020178067, 0.025738435, -0.024205368, 6.2681455e-4, -0.02629445, - -0.005082315, 0.009973864, 0.0026342908, -0.011293221, -0.010483744, - -0.0019701961, -0.009688961, 0.011903485, -3.2572472e-4, 5.908768e-4, - 0.010552459, 0.012126542, 0.024833154, -0.0132105835, 0.00577468, - 0.002988127, 0.001972577, -0.0143561745, -1.8340099e-4, 0.015924964, - -0.022734135, 0.0045028813, -0.009339272, -0.024998076, -0.0087346425, - -0.008598807, 0.009519817, -0.0050344463, -0.019141017, -2.9891488e-4, - 8.8816416e-4, 0.0066606337, -5.766109e-4, 0.018843269, -0.021557199, - -0.0062950407, 0.018148191, -0.019131226, 0.016951822, 0.014682365, - 0.0021397073, 0.03057238, 0.016389435, 0.003192317, -0.013958801, - -0.0135977, 0.00804323, -0.008770122, -0.0123596685, 0.011758917, - 0.0051042666, -0.008453481, 0.014309392, -0.0194104, -0.010656919, - -6.5231055e-4, 0.001155961, 0.0066824057, 0.032932714, -0.018252175, - -0.0122399945, -0.009442704, 0.008615484, -0.011876833, -0.0035978965, - -0.0062758406, 0.0148701435, -0.0034059219, -0.004270147, 0.014450249, - 5.525306e-4, -0.013924937, -0.03093827, -0.0076158913, 0.015907416, - -0.004837359, -0.008495079, -0.02672885, -0.0025272183, 0.024446141, - -0.00951024, -0.0059204837, 0.0010530192, 0.0116258785, -0.012896045, - 0.016981192, -0.028555805, -0.011670553, 0.009785191, -0.031753466, - 0.0057301866, -0.007825399, 0.023076972, 0.01344935, 0.008340915, - 0.025939146, 0.010823866, -0.008307962, 0.0016187849, 0.0024191136, - 0.009786171, -0.016284166, -0.002121019, -0.020125387, -0.0030433082, - -0.012918306, -0.017148875, 0.015630472, 0.016744731, 0.03230752, - -0.021346573, -0.01743044, -0.017001633, 0.017737996, -0.02864384, - 0.013952373, -0.010378171, 0.013107109, -0.0028100573, 0.0032593012, - 0.0024235956, -0.0015731083, 0.0035197749, 0.026322287, -0.026670711, - 0.016438736, -0.003835169, 0.005158451, 0.0013071796, 0.02679193, - 4.540007e-4, -0.00557328, 0.0024112496, -0.024824802, -0.0036348104, - -5.142048e-4, -0.0023409391, 0.0113428375, 0.0020946958, -0.01765455, - -0.003380993, 0.0036020468, -0.011886377, 0.010973649, -0.00959486, - 0.011612762, 0.015379163, 0.015125273, 0.0035890779, -0.018909482, - 0.0059734383, -0.02083288, -0.017461842, -0.018041832, 8.820021e-4, - -0.0057964292, 4.371521e-4, 0.00726541, 0.0038848433, -0.0033848658, - -0.0060105175, 1.2436391e-4, 0.025024157, 0.0018640816, -0.0012331826, - 0.0016746464, 0.008752872, -0.005067059, -0.0077462783, -0.014453899, - 0.0028807223, 0.008439638, 0.0019709473, -0.022597713, -0.009491996, - -0.02087535, 0.0047964286, -0.01951486, 0.017431948, -0.016724043, - -0.0047775595, -0.010787206, -0.010476392, 0.019668477, -0.02235812, - -0.008113829, -0.015777227, 5.6378276e-4, -0.005854009, -0.007782625, - -0.027074644, 6.530865e-4, -0.01563777, 0.034548525, -0.0033472206, - 0.005348556, -0.005044208, 0.018115398, 0.007209501, -0.021795668, - -0.030296108, -0.0029840532, 0.007101357, -0.0029446254, 0.0018837167, - -0.0027828366, -0.002283126, 0.003925984, 0.02217844, -0.03846491, - -0.0128522795, 0.0069387695, -0.012572765, -0.0029087127, 0.0030637681, - 0.035325002, 0.009939013, 0.003643628, 0.0071729617, -0.0076889764, - 0.035389688, -0.013826237, 7.404713e-5, -0.014044474, 0.024412736, - -0.005140767, 0.008861892, 0.021626594, -0.017059365, -0.008052926, - -0.016635653, -0.016512895, 9.29893e-4, 0.04261696, 0.011371948, - 0.0069687604, 0.014998845, -0.016761638, -0.015905516, 0.024128674, - -0.009215625, -0.016861677, -0.03145532, 0.023467239, -0.004668785, - 0.019408068, 0.017652238, -0.03477797, -0.0012528328, 0.02462935, - -0.0057231067, 0.010656258, 0.005950954, -0.01704522, -0.012033724, - 0.015049798, -0.029265352, -0.004682572, -0.025467211, -0.01773788, - -0.012420627, -0.0053173937, -0.015634304, -0.010184733, 0.0071275244, - -0.009991872, 0.0037512358, -0.0043310462, -0.014966369, -0.0038630127, - 0.012854034, 0.017918264, 0.009982314, -0.009526424, 0.03046967, - 0.014603059, 0.009170897, 0.013585768, 0.007855123, -0.0028576974, - -0.006639403, -0.00897989, 0.021341031, -0.00552678, -0.0015975276, - 0.005446912, -0.0045709983, -0.014199623, 0.0040337346, 0.0035969408, - 0.0019674047, 0.014015696, -0.016716568, 0.053625032, 0.018163847, - -0.0085304985, -0.010209214, 0.002123083, 0.0029938645, 0.0060754274, - 0.008687728, -0.0021450596, 0.015005626, -0.015910722, 0.008952484, - 2.9929169e-4, -0.023307323, 0.03273133, 0.010441593, 0.020700583, - -0.003342184, -0.011900258, 0.0122042205, -0.01003735, 0.02191266, - 6.749751e-4, -0.004214828, -0.017357107, -0.0012055541, -0.015318283, - -0.01386273, 0.013180149, -0.019331891, 0.013365182, 0.016873727, - -0.037336666, -0.0026175263, 0.022281822, -0.006499399, -0.011145722, - 0.013502198, 0.018703511, 0.010271192, 0.014681294, -0.009662057, - -0.0027366916, -0.0032239617, 0.0091400575, 0.012763654, 0.02442107, - -0.029483931, -0.012905675, -0.0037941681, -0.021285614, -0.011384102, - -0.006629459, 0.012540423, -0.027640805, -0.0078961365, -1.454182e-4, - 0.0017896605, 0.01322227, -0.018380659, -0.01583185, -1.437251e-4, - 0.014265904, 0.0021443446, 0.0082743345, 7.2252e-4, 9.843475e-4, - -0.016453406, -3.1939725e-4, 0.030730732, 0.027690547, 0.010237171, - -0.0111057935, 0.019283535, -0.007604715, 0.010695386, 0.008117031, - -0.0034060716, 0.00262003, -9.078594e-4, 0.0032968977, -0.0034985784, - -0.025925335, -0.0045708274, 0.0031088777, -0.007974867, -0.008270005, - -0.011743126, -0.012079695, 0.0024977324, 0.0017112578, -0.0044326587, - -0.023099136, -0.010349066, 0.014416928, 0.010189023, 0.037376445, - 0.026663657, 0.009547765, 0.0035531374, 1.3645437e-5, -5.1361454e-5, - 0.01023958, -0.004286865, -0.012388988, -0.011961576, 0.017798696, - 0.007456351, 0.009845942, -0.0027900662, -0.0059768464, 0.00461185, - -0.020801073, 0.029061915, -0.013305813, -0.008789915, -0.011714815, - 0.012208588, -4.3594468e-4, -0.0013820146, 0.004601401, -0.00829864, - 0.014238579, -0.0018112515, 0.0037663272, 0.009981525, 0.0026425975, - 0.0015602753, -0.0041725845, 0.03877048, 0.011843568, 0.019401459, - 0.0019254779, 0.0076450226, -0.0058223847, -0.017767109, -0.0016596064, - 0.012053122, -0.012055862, 0.010087774, -0.017309614, 0.008030104, - -0.014021477, -0.0139228385, -0.014995921, 0.029971886, -8.808876e-4, - -0.018164549, -0.013811409, -0.012278359, -0.01661792, -0.034717914, - 0.010274662, 0.013128948, 0.013861027, -0.023488756, -0.019079257, - 0.009865917, 0.022373442, -0.0075403713, -0.0017970436, -0.005590568, - -0.03305067, 0.011481848, -0.019755835, -0.016036645, 0.039650887, - -0.0044122296, -0.0011193011, -0.010773193, 0.0051144306, -0.0064910185, - -0.013945298, -0.0036502248, -0.01352781, 0.01933149, -0.012951256, - -0.028957868, 0.0066627255, -0.016254392, -0.013159727, -0.011564559, - 0.0030499431, 0.0019919835, -0.013898028, -0.02542877, 0.012795732, - -0.033635523, -0.020281337, 0.0038550952, 0.004141994, 0.012093035, - -8.839923e-4, 0.014154061, -0.0057201977, 0.032090634, 0.010094922, - 0.008472949, 0.029553792, 0.02304358, -0.008744956, -0.0213654, - -0.01820331, 0.020422585, -0.0106308265, 0.022163214, -0.01905085, - 0.010938096, 0.014998606, -0.025656877, -0.008076265, -0.02602199, - -0.022934074, -0.0030935751, -0.006363792, 0.0051404145, -0.003182032, - 0.02219474, -0.022308601, -0.020547206, 0.015514101, 0.032534983, - -0.014258704, -0.003646638, 0.008400584, -0.01464495, 0.0018192698, - -0.00457794, -0.012755971, -0.017768998, 0.004015376, -0.003169843, - -0.01901733, 0.0064271046, 0.028142694, 0.026461532, 0.0071740258, - 0.0052505434, 0.024097515, -0.0085887555, -0.019049339, 0.008910194, - -0.003286063, 0.015512502, 0.0052675703, 0.015382805, 3.2390092e-4, - 0.0029269415, 0.009462522, -0.021479966, 0.0114868535, 0.0050243987, - 0.008410521, 0.0044019325, -0.0024144687, -0.009303248, -0.0032215598, - 0.018096188, -0.009929583, -0.008808056, -0.046815865, -0.006418129, - -0.02486329, 2.588854e-4, 0.0058084573, -0.012640909, -0.008072188, - 0.0037146418, -0.00164315, 0.03166063, 0.010638168, 0.018584272, - -0.022356726, 0.012210684, 0.0016698423, 0.012440794, -2.0878793e-4, - -0.011449658, -0.010926109, 0.019863231, 0.015859738, 0.018521965, - -0.02785946, 0.012820637, 0.008251056, -0.027332509, -0.012860885, - 2.4050486e-4, 0.0018356675, -0.006800754, 0.017471528, -0.03778312, - -0.0016413366, -0.015365804, 0.025760612, 0.008932653, 0.028678384, - -0.013298419, 0.009615447, -0.014714708, 0.004080071, 0.011326312, - 0.04010756, -0.001656937, 0.0070466944, 0.001144326, 0.011628398, - 0.013074658, 0.0040410752, 0.005441773, 0.021515358, -0.028862994, - 0.012374261, -0.002680454, 0.022124393, 0.022098992, 0.014751206, - 0.007838626, -0.0073320763, 0.020000318, -0.0047298414, 0.0027143129, - 0.0131131755, 0.029905304, 0.022111205, 0.029610474, -0.0010383558, - -0.03729619, -0.02234181, 0.0038360576, -0.0037604193, 0.007928405, - -0.033192538, 0.014573624, -0.02316653, -0.006221722, -0.013756758, - 0.010179384, 0.0028300816, -0.0066560577, 0.0026334866, -7.581298e-4, - 0.04177019, -0.01706941, -0.012127146, -0.009689704, -0.0071951044, - -0.004752289, -0.027760707, 0.033203155, 0.0056545837, -0.013649214, - 0.013393954, 0.00263761, -0.023639875, -0.013826334, 4.4060836e-4, - 2.984626e-5, -0.0027710558, 0.0018406464, -0.018387726, 0.034555364, - 0.0031452687, -0.014806773, -0.008371761, -0.0015977524, 0.02250183, - -0.0049953707, 0.0016687138, 0.011994053, 0.0028156994, 0.029665368, - -6.956434e-4, -0.018868411, 0.030477587, 0.008999988, 0.008240675, - 0.0024886879, -0.03166627, 0.012663184, -0.0069619683, -0.0011944528, - 0.023923557, -0.01619698, 0.014732394, 0.006626202, -0.022010304, - -0.007246389, -0.012533856, 0.0155844465, 0.001725505, 0.022035731, - -0.0034756588, -0.018684855, -0.02365455, -0.023655428, 0.018905586, - -0.0019864482, -0.001352424, -0.0018107549, -0.007601139, -5.5208406e-4, - -0.004468241, 0.021864498, 0.006106519, -0.0012417028, 0.013419651, - 3.6456322e-4, 0.04202401, -0.0031862513, 0.004677052, 9.855015e-4, - 0.037888672, -0.024210926, 0.027413167, -0.02342383, -0.015272709, - -0.0015784871, -0.01316716, 0.008064416, -0.0046994393, -0.016668193, - -0.006044639, 0.0043035, 0.0013615016, -0.017148862, 0.010871773, - 0.009569381, -0.015136184, 0.036860533, 0.010451963, -0.004187012, - 0.008117527, -0.02042278, -0.018101215, -0.005872452, 0.013603419, - -0.0050129998, 0.004524042, -0.030746985, -0.010347893, -0.01126053, - -0.013117993, 0.0040808776, 0.0032090931, 0.0012190212, 0.023477651, - 0.019209843, -0.005141263, -0.035441127, -0.0071773976, -0.020975985, - 0.016976757, 0.018719785, -0.009166238, 0.0044127763, 0.015843721, - 0.012869744, -0.007849777, 0.009698561, -9.997147e-4, 0.023388335, - -0.012866227, -0.011028336, 0.008102823, -0.031417534, -0.0035236503, - -0.004286935, 0.0047001904, 5.5578665e-4, -2.465088e-4, 0.022217233, - -1.5585302e-4, 0.011426063, -0.0087798685, -0.009014171, 0.0067481627, - 0.02509618, -0.014589588, -0.04765633, -0.021133795, -0.015490877, - -0.01858948, -0.005195832, 0.016338741, -0.0049558417, 0.0050069895, - 0.009376927, 0.05352827, -0.0011102488, -0.009728786, -0.011773346, - 0.01404989, -0.014347167, -0.007473692, -0.0068943305, 0.023296028, - 0.022886468, -0.020050773, -0.0033821317, 0.020023376, 0.016194034, - -0.02219526, 0.0124623915, -0.0023426884, 0.0073147775, 0.019897051, - -0.041102648, -0.0070563657, 0.0075524575, 0.020411633, 0.007950071, - 0.002703551, -0.0076348693, -0.02661795, -3.6690108e-4, 0.0066781603, - -0.0032718433, 0.033077363, -0.0054518385, -0.004970284, -0.01777655, - 0.026862798, -0.0027134083, 0.01808815, -0.008536931, -0.008963512, - -0.031125208, 0.018202998, -0.012115593, -0.01697179, 0.016251277, - -0.007159719, -6.0465105e-4, -0.012276089, 0.008376618, -0.024439216, - 0.0012699245, -0.0056513543, 0.013624032, -0.007757931, 0.023311576, - -0.027070757, 0.020034451, -0.020838147, 0.005705879, -0.0028513873, - -0.021074595, 0.028634626, -0.003285505, -0.03020258, 0.0052361707, - -0.02254871, -0.013157626, 0.027300844, -0.0101307165, -0.009679877, - -0.0015395718, -0.015504158, -0.0040277606, 0.007686179, -0.0085602105, - -0.0075102667, 0.022999538, -0.0073539643, 0.0034107678, -0.0141962925, - -0.0013576082, -0.0096898, -0.005431737, -0.024943866, 0.010934572, - 0.006406945, 0.01247357, -0.01983789, -0.0035571652, 0.020665454, - 0.0055058263, -0.022702333, 0.009212001, -0.008311624, -0.011000802, - -0.014922226, 0.012813637, -0.021717886, -0.004593449, -0.0048444774, - -0.010416144, 0.0085671935, -0.038105257, 0.019088175, -0.0031571342, - -0.0035985534, -0.0039282274, 0.015470624, -0.019972542, 0.0029444494, - 0.027051937, 0.022336554, -0.0041110553, -0.009636093, 0.0147686545, - -0.005997935, -0.015268508, 0.0027719494, -0.019564742, -0.0064889556, - -0.022083873, -0.014078887, 0.009426935, 0.0019904426, -9.939725e-4, - -0.0056999708, -0.022671402, 0.009932354, 0.015454227, 0.00847405, - 0.037408613, -0.01713831, 0.017537674, 0.02128811, 0.01629073, - -0.008313226, -0.004350714, -0.012012526, 0.010093344, 0.015129188, - 0.01656116, 0.012230079, -0.017008597, -0.01126948, -0.01837281, - 0.0019845972, -0.0034100625, 0.0169638, -0.0020288252, 0.01375395, - -0.0025788487, 0.02043841, -0.005064775, 0.010884596, -0.0073878914, - -0.012114177, 0.0011925751, -4.1565087e-4, 0.02274076, -0.006898336, - 8.6532e-4, -0.019257654, 0.0078089056, 0.005465858, 0.0347642, - -0.0035011899, 0.009507927, -0.012759782, 0.030698344, -0.008371659, - 0.0015183185, -0.0076191416, 0.020067587, 0.009137844, -0.0024014667, - -0.0041242763, -0.004068154, 0.001508133, -0.020728026, -0.0010210213, - -0.015194591, 0.021690505, 0.009144672, -0.010793009, 0.005582289, - 0.012559949, 0.0141675705, -0.0056292675, -0.018067949, -0.00189494, - -6.906411e-4, -0.011248214, 0.019029286, -0.010662093, 0.015708119, - 0.004453098, 0.019856757, 0.013155937, -0.0056790086, -0.013660377, - 0.0105731515, -0.0043659, 0.020428298, 0.009889493, 0.019058345, - -0.025763255, -0.017067773, 0.0020033922, 0.0027548715, -0.008923209, - 0.003771453, 0.02257856, 0.0038088432, -0.0011999592, -0.02039792, - -0.005540585, 0.0032291173, 0.0041387063, 0.030256096, -0.019928116, - -0.023362769, 0.0054535335, -0.004797909, -0.02268376, 0.0074357344, - 0.014608735, -0.0142913675, 0.017344823, -0.03236607, -0.020941367, - -0.0089344, -0.01125587, 0.0020643887, -0.032251216, -0.017387247, - 0.0059289015, 0.0022181275, -0.008676077, -0.012038051, 0.019151922, - -0.023851244, 0.010176756, -0.013656726, 0.011972492, -0.019856276, - 0.0151318, 0.0015929379, -0.023509333, 0.02828183, 0.023545366, - -0.023372123, 0.016364068, -0.023476815, 0.010646074, -0.012321846, - 6.0589734e-4, -0.0016045535, -0.017550185, -0.005698398, 0.00797142, - -0.01125074, 0.02359864, -0.0023985703, -0.012660551, 0.022741172, - -0.021808686, -0.013903268, -0.030731164, -0.014279918, -0.007642427, - -0.008585184, 0.04130085, -0.0012190177, 0.017131768, 0.007944425, - -0.003498037, 0.009580096, 0.00807472, -0.004796665, 0.0037186092, - 0.006036026, -0.008046581, 0.0042036874, 0.018040523, 0.022214167, - 0.0014076085, -0.009258363, 0.010498118, 0.013569391, 0.018390467, - -0.013252487, -0.0011065007, -0.0028018644, -0.0014749469, 0.0031745688, - -0.0036929168, 0.001657826, -0.0042456663, 0.016116278, -0.011144307, - -0.0076113245, -0.0018303847, 0.006768971, -0.014838919, -0.013641777, - -0.0012435159, -0.010309067, -0.012084891, -0.0093567325, -0.009736425, - 0.017976906, 0.0057167, 0.007477074, -0.021641405, -0.025044167, - 0.009496053, -1.6215452e-4, 0.0028969524, -0.0026250745, 0.01238338, - 0.0026852272, 4.6884987e-4, 0.008408538, 0.016237458, 0.01435362, - 0.0064914376, -0.03211808, 0.01060257, -0.01233127, 3.5681395e-4, - 4.458234e-4, 0.0040388773, 0.011894789, -0.01150429, -0.02387455, - -0.0024643217, -0.0065102214, -0.014243577, -0.0264287, 0.0049649216, - 0.01068878, -0.0036528192, 0.0017155954, -0.0131840445, 0.007109104, - 0.007912691, -0.02239351, 0.0014511527, 0.032948732, 0.016988857, - -0.0059751896, -0.001997519, -0.009794983, -0.0018218991, 0.0027006024, - 0.009346358, -0.0029197321, 0.01439669, 0.005672701, 0.01652949, - 0.021032827, 0.0028811593, -0.031419426, 8.669444e-5, 0.02437615, - -0.020645887, -0.004382923, -0.008430568, -0.008222182, -0.02919928, - -0.0021370803, -0.004915947, -0.029233586, 0.0011391192, 2.6431822e-4, - -0.00223349, -0.011741341, -0.045141526, -0.020977516, 0.0011973347, - -0.003758497, -0.010302962, 0.02868653, -0.02236932, 0.02465204, - -0.008806654, -0.045026507, -0.024959523, 0.026816405, -0.017318094, - -0.0043409914, 0.006618488, -0.024719061, -0.006401281, -0.013475465, - -0.0226164, 0.008878429, 0.0020498936, 0.003816194, 0.020349894, - -0.0021755788, -0.013686563, -0.016134484, -0.013737695, -0.005666735, - -0.018914908, -0.012324623, 0.008904502, 0.0049374057, -0.012251538, - 0.0036098724, 0.026432237, -0.02301885, -0.0071698204, -0.010587677, - 0.031034991, 0.016100165, 0.004068946, 0.008669345, -2.0571385e-4, - 0.01608959, -0.0022324915, 0.0029676415, 0.018318633, -0.0063120355, - 0.0027882822, 0.018648213, 0.011399176, 0.0121492855, -0.010536596, - 0.016598575, -0.011649131, -0.0076943524, 0.01580507, 0.0049157212, - -0.015150412, -0.01466838, 0.020014679, 0.010036001, -0.0030339858, - 0.005332326, -0.0019397474, 0.03823303, -0.0118716, 0.0028855803, - -0.0014918095, 0.014988356, -0.0042230347, 0.0024604553, -0.002652712, - -0.003828651, -0.026851766, -0.028464494, 0.0020135015, 0.016150102, - -0.0035033666, -0.0022972024, 0.0021972898, 0.013094872, 0.0027297232, - 0.011143257, -0.018003931, -0.033191048, -0.0086753, 0.010293459, - 0.012378582, -0.019431053, 0.0061514494, -0.021003196, -0.012123211, - -0.024667192, -0.031648, 0.0151274875, -0.009284641, 0.018072246, - -0.007191447, 4.2319376e-4, 0.023882402, 0.00792703, -0.005452361, - -0.0021669595, -0.010667406, 0.017230898, -0.004323412, -5.2150054e-4, - -0.034258734, 0.025944471, 0.010521038, 0.005942813, -0.0045630503, - 9.211875e-5, 0.0107965395, -0.01469481, -0.004452647, 0.02307205, - -0.0112080285, -0.01630859, -0.01706571, -0.0023896121, 0.019680772, - -0.0050294646, 0.022040514, 0.0036538828, 0.010731759, 0.030019257, - 0.02070762, 0.0050405134, -0.008027747, 0.0028293189, 0.011842457, - -9.3730807e-4, -0.025487088, -0.019263882, -0.012622665, 0.011637629, - -0.045172438, -0.007132113, -0.012896782, -0.010259917, -0.014092009, - 0.0021499097, 0.010161985, 0.017305402, 0.005255095, -0.020123454, - -0.028398503, 0.012736202, -0.012071291, 0.007528165, -0.017849904, - -0.0046614935, -0.015582231, -0.014110208, 0.015241854, 0.0057082465, - 0.009545372, -0.0038772596, 0.0042253714, -0.020662846, 0.015962161, - 0.013962762, 0.01646355, 0.019471949, 0.0084840115, -0.0034270189, - 9.853286e-4, 0.009460095, 0.0065321913, -0.005757818, 0.00215371, - 0.008745004, 0.02538461, 0.009420803, -0.009062842, -0.0116375955, - -0.025334679, -0.017525434, 0.0039513432, -0.0087814275, -4.226506e-4, - 0.029836232, -0.0035436004, -0.008034785, -0.017821042, 0.017620638, - 0.007302402, -0.0065909806, 0.013915144, -0.010159205, 0.0077224537, - 0.020749185, 0.01658103, -0.006644368, -0.0028543016, 0.0315418, - 0.017857144, 0.01615408, -0.017330918, -0.02215406, -0.0014443758, - 0.0017041957, 0.008719711, -0.010016723, -0.010380419, -0.009399292, - 0.027432773, 0.008358109, -0.027502863, 0.0038639954, 0.011871761, - 0.012907989, 5.3060165e-4, -0.002704116, -0.027476646, -0.006164079, - 0.014165445, 0.036637913, -6.925519e-5, 0.029464778, -0.009758108, - -0.0036188792, 0.014656567, -0.010862087, -0.013523832, 0.0150906835, - -0.0054486585, -0.010984857, -0.026368644, -0.005755991, -0.018680008, - 0.01368205, 0.011908832, -0.014520374, -0.026161883, -0.0128771365, - 0.010087536, -0.018600637, -0.021371914, 0.004703979, 0.006989132, - -0.024713358, -0.002336707, -0.013806575, -0.00201265, -0.0013246752, - -0.006669522, -0.0068170945, -0.006377896, 0.030421142, -0.012822105, - -0.012110349, 0.018729273, -0.0055362084, -0.0056530596, 5.99904e-4, - -0.025890565, -0.0010785278, 0.0098028695, -0.011026962, -0.0047608265, - 0.0052603455, 0.014884257, 0.002219607, 0.007359133, 0.01750401, - -0.012131418, -0.0055812965, -0.0142312925, 0.01241653, -5.374803e-4, - -0.004274729, 0.01748029, -0.004085513, 0.0029784995, -0.027830191, - 0.026564484, -0.011013687, 0.010026535, -0.014426253, -0.016410455, - -9.045192e-4, 0.028307334, 0.004172791, 0.021877421, -0.012411151, - 0.024851177, 0.00534226, -0.0023033258, 0.022117307, -4.7191736e-4, - 0.0042722905, 0.019298676, 0.01163801, 0.025298482, -0.017883416, - 0.015096373, 0.009270765, 0.0097132055, 0.032864004, -0.009716701, - 0.0025048205, -0.005042369, 0.008054716, -0.027983358, 0.0012315668, - -0.013783577, -0.0034969538, 0.0010791989, -0.0084081665, -0.019387018, - -0.008723849, 0.013905441, 0.009567729, 0.0040999223, 0.0035654877, - 0.013107987, -0.014555114, -0.013217474, -0.021812001, 0.013873644, - 0.04821732, -0.017872384, -0.0034603453, 0.031765193, -0.008870464, - -0.0020477434, 0.0040807407, 0.018631862, 0.035761397, 0.02055579, - -0.008377464, 0.026031006, -0.015434541, 0.029233644, -0.0025872963, - -0.008044265, 0.0052844244, 0.00736087, 0.019442642, -2.990431e-4, - 6.3054654e-4, -0.018538276, -0.023174949, -0.010675251, 0.016592048, - -0.021332687, 0.048771627, -0.01865464, -0.0036739628, 0.033041086, - 0.03570748, -0.033090886, -0.0034334324, -0.004542206, 2.8458142e-4, - 0.022285415, 0.006708551, -0.0137737, -0.0059113237, 0.004209587, - -0.004509696, -0.011984954, 0.016483571, -0.013436376, 0.0020848087, - -0.035478055, -0.009071243, -0.007333064, -0.011171269, 6.319428e-4, - 0.02081627, -0.03222464, 0.011324701, -0.004734568, -0.013989752, - -0.01503976, -0.0051770154, 0.008374927, -0.0142555665, 0.012923452, - 0.0030921455, 0.009897263, 0.0068026115, 0.01862288, 0.0067419927, - 0.009135332, -0.025546687, 0.0060234666, 0.016321436, 0.0082022445, - -0.0033399789, 0.0057674297, 0.019664614, -0.014734095, -0.011603358, - 0.003405845, -0.018495549, 0.016095372, 0.010038749, -0.009594291, - 0.036123414, -0.016087612, -0.009389565, -0.025942672, -0.013857832, - 0.0034281916, -0.023469783, 0.011397535, -0.014101894, 0.003343609, - 2.1530494e-4, 0.02115261, -0.011027991, 5.8309024e-4, -0.003445303, - 0.001455094, -0.027814312, 0.002692745, -0.036797527, 0.016522838, - -0.012445157, 0.007749062, -0.010128174, 0.002083453, -0.006518494, - 0.0014602563, -0.008820199, -0.011590752, -0.011928523, 0.017783124, - 0.0023997133, 0.017607586, -0.009643849, -0.009753344, 0.022422338, - 0.0074702427, 0.0013504341, -0.014226927, 0.022888698, -0.012026263, - -0.01755091, -0.01091099, 0.0069409977, -0.023357537, 0.009585423, - -0.020762999, -0.010852988, -0.011476643, 0.026871884, 0.016649218, - 0.0055458075, 0.0053014923, -0.010527517, 0.004978711, 0.0021991746, - -1.3781729e-4, -0.0075293384, 0.008964483, -0.010079387, 0.006348403, - 0.034994923, -0.0075108726, 0.014562968, -0.027889501, -0.00729788, - -0.0022001488, 7.7571976e-4, -0.018832793, 0.00822618, -0.010622492, - 0.013852174, -0.01956844, -0.0032468918, -0.02869243, 0.020991078, - 0.017844936, 0.0076370817, -0.01834439, 0.03257521, -0.0028323638, - 0.013566029, -0.012897048, -0.013169943, 0.014657256, 0.0019227085, - 0.026491791, 0.0079933675, 0.0073436815, -0.0071064825, -0.0043719523, - 0.01850649, -0.021074368, 0.020100327, 0.013900279, 0.0034523276, - -0.010863257, -0.0013255215, -0.01720835, 0.01600469, -0.006728075, - 0.018993845, -0.004709895, -0.013687337, 0.014904728, -0.051593076, - 0.02277961, 0.01025178, -0.0074900063, -0.019273315, -0.019801345, - -0.0033607956, -0.016137712, 0.002142173, 0.0018838748, -0.005032825, - 0.002205806, -0.015143645, 0.021150146, -0.017267209, 0.006447947, - 0.011534862, -0.0022041264, 0.015811354, 0.046340864, 0.015228418, - -0.011663512, 1.6529115e-5, 0.029042613, 0.01422614, -0.008008255, - 0.009341115, 0.025787607, -0.0068915915, 0.012876528, -0.038851842, - -0.022204896, -0.002474806, 0.006955811, -5.5387884e-4, 0.0011122902, - 0.013989904, -0.024338499, -0.009531113, -0.010770259, 0.0039046495, - -0.025477545, 0.011030687, 0.038464133, 0.005124873, 0.003640013, - -0.0027744195, 0.01793629, -3.153159e-4, -0.0058324826, -0.007094336, - 0.0015967167, 0.0059145777, -0.0159323, 0.008003829, 0.010506226, - 0.00218851, -0.0026465952, 0.0025305424, 0.028286751, 0.008008781, - -0.03158073, -0.017936058, -0.015090658, 0.002711319, 0.020779062, - 0.017743021, -0.04863762, -0.0049351905, 0.0020503046, 0.020101609, - 0.0092769535, 0.007651443, -0.0046908027, -0.014994563, -0.004940032, - 0.0020886578, 0.008853831, -0.016569957, 0.015924107, 0.009718573, - -0.0012586684, -0.0011754662, -0.012455745, -0.0041220677, -0.03260457, - -0.008451421, -0.003186778, -0.029389821, -8.7261986e-4, -0.014532944, - 0.0064174286, 0.01127477, 0.0076223435, 0.013122006, 0.021668067, - 0.0026832172, 0.024466248, 0.009345492, 0.012868378, -0.0054390123, - -0.008566002, -0.01977143, -0.009924858, 0.0075715547, -0.014964791, - -0.0047460557, -0.00398111, 0.0037981318, 0.016198825, -0.021266071, - 0.020411605, -0.003910331, 0.010735123, 1.4937036e-4, -0.0018658469, - 0.041570425, -0.011958341, 0.0016676015, 0.0304415, -0.003823431, - -0.003014347, 0.009977053, -0.0013732141, -5.1720877e-4, 6.2753516e-4, - 0.0060398807, -0.010597654, 0.023808371, -0.012340462, -0.024380993, - -0.013074966, 0.01223973, -0.0026505014, -0.006479804, -0.031717353, - -0.019832507, 3.64225e-4, -0.032377645, -0.013967772, 0.028425941, - 0.004416003, 0.004749615, -0.022397012, -0.0042490596, 0.00692409, - -0.019729724, -0.013313134, 0.0056572706, 0.01775122, -0.015511624, - -0.010674066, -0.031655595, -0.024792925, -0.007885169, -0.0029512544, - 0.007948956, -0.004354098, -0.0015100458, 0.0018700184, -0.0070870435, - -0.01344131, 0.014524918, 0.012105336, 0.0010975897, 0.014914839, - 0.0049534733, -0.00843459, -0.002505891, -0.006078963, -0.012819033, - 0.014386808, -0.015787046, -0.013755345, 0.011442389, 0.0043600406, - 0.009545896, 0.027059136, 0.00776708, -0.019561723, -0.0068744393, - 0.004729764, -4.0687033e-4, 0.030360889, 0.0073144813, -0.014930854, - -0.002337503, -0.0040752003, -0.010361935, -0.013773757, -0.0082394425, - 0.0031199239, 0.006000947, -0.007127395, 0.015081611, -0.02016871, - 0.011461929, -0.006426605, 0.006004002, -0.008749477, -0.01123115, - 0.011212072, 0.032785084, -0.01956765, 0.0041188225, 0.008402117, - 0.03813846, 0.0060537145, 0.017722031, 0.01175493, 0.013383305, - -0.0039720614, -8.0793805e-4, 0.020499272, -0.016793614, 0.018323097, - 0.028972613, 0.003770063, 0.03219985, -0.0033841587, 0.024349255, - -0.0026228812, 0.0019763394, -0.0074829664, 0.033627275, -0.007434022, - 0.00846567, -0.004381738, 0.005429995, 0.0013781624, 0.010175428, - -0.017727708, 0.010465356, -0.01559429, 0.0029129079, -0.0271956, - -0.026304059, -0.02241974, -0.01858654, -0.008903637, -0.017419167, - -0.010654777, 0.0085633425, 0.016714755, 0.00802148, 7.096178e-4, - 0.015962886, 0.0043858364, -0.0055862106, 0.004036663, -0.007538718, - 0.01998807, 0.014325012, -0.01047822, -0.0053183166, -0.011010346, - -0.010148276, 0.024511449, 0.00829047, 0.010335906, 0.013351728, - -0.013146093, -0.0065338127, 0.0018283892, -0.0057753464, 0.006478839, - -0.014803043, 0.01994074, -0.005750678, -0.008905139, -0.003613569, - 0.0027072872, 0.0029888528, 0.028382272, 0.016899088, 0.0053630793, - -0.0049988907, -0.016448695, 0.038942166, -0.030441558, -0.0027172868, - -0.0125446785, 0.014364689, -0.0027242773, 9.13118e-4, -0.023278063, - 0.008519653, -0.0018280658, 0.013215585, 0.0078647565, -0.011776109, - -0.01762245, 0.0063086576, -0.017701386, -0.008200606, 0.0056433724, - -0.02544672, -9.626463e-4, -0.017808622, -0.01600026, -0.009432733, - 0.0037620852, 0.00842434, 0.01300431, -0.0035635643, -0.0014021542, - 9.2623953e-4, 0.007234963, 0.013396648, 0.01926107, -0.025120117, - 0.016543085, -0.01636992, 0.003672317, -0.008358425, 0.0060320008, - -0.006474561, -0.022808718, 0.018311266, -0.002793195, 0.0016077755, - 0.014258432, -0.0040453104, -0.015855948, 0.00527246, -0.009401505, - -0.001779866, 0.0014457474, 0.016135942, -0.029413708, -0.031961665, - 0.023059418, -0.019332873, -0.020488014, -0.011216126, 0.016279247, - 0.0057299864, 0.010054805, 0.022068521, 0.009665077, -0.004762644, - 0.0023310983, -0.0020077846, -0.006511512, -0.018662648, -0.0058092987, - 0.003815001, 0.017316367, -0.0049696816, -0.011432729, -0.005794333, - 0.016367424, 0.028081968, -0.0012418948, 0.018963043, 0.0076727173, - 0.009520146, 0.008861489, 0.011749731, -0.009674885, -3.5730944e-5, - 0.0042993086, -0.026933925, -0.0049859467 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.03807077, 0.002140575, 0.04186953, 0.040424004, 0.01105613, - -0.004078967, 0.018996002, 0.024241284, -0.017219655, 0.08644748, - -0.017627086, -0.037834864, 0.031016273, 0.030263819, 0.013892989, - 0.0042598643, -0.021402696, 0.038640175, -0.0045009498, -0.019526737, - 0.019187737, 0.039226755, -0.006704982, 0.059817012, 0.02779286, - -0.011906858, 0.013062624, 0.031867113, -0.02939772, 0.014208208, - -0.00270053, 0.02821295, 0.038228694, 0.0076527093, -0.034016356, - -0.035638217, 0.036416594, 0.030284919, 0.024668032, 0.005620775, - -0.0422758, -0.02406041, 0.08122101, 0.015504241, 0.075477295, - 0.004656414, 0.010405158, 0.04094283, -0.01751505, -0.007221657, - 0.018324133, 4.7242772e-4, 6.552737e-5, -0.01320002, 0.048726026, - -0.020954715, -0.008143417, -0.087694824, 0.033659358, 0.052022442, - 0.019300036, -0.008567797, 0.0146070095, -0.017261863, -0.021078076, - -0.07715012, -0.0053158486, 0.069875404, -0.041846003, -0.02250336, - -0.006223603, -0.013180636, -0.06725152, -0.0025576998, 0.01422863, - 0.029458405, 0.072633706, -0.058798674, -0.020250542, 0.015173245, - 0.016184753, -0.07085556, -0.024281964, 6.8178686e-4, 0.006766229, - -0.03633, 0.042928804, 0.006964567, -0.023857873, 0.0028005464, - -0.010986356, -0.030283945, -0.015353885, 0.004464314, -0.019672312, - -0.004098187, -0.014208221, -0.004182408, -0.0058846064, 0.008852784, - 0.010555485, -0.006357012, 0.009376945, 0.018159814, -0.023150593, - -0.034337915, 5.697161e-4, -0.073253855, -0.026681814, 0.0028318758, - 0.039910942, -0.014458094, 0.010186464, 0.021128137, -0.006522916, - 0.039704103, 0.053986963, -0.011948255, 0.03237195, -0.024595216, - 0.015127574, -0.040648565, -0.03970448, -0.02728518, 0.005434836, - 0.07506076, -0.017880999, -0.020485885, -0.011900799, -0.017423054, - -0.005665935, -0.020381253, 0.048189614, -0.035747077, -0.045637116, - 0.004647963, -0.007648599, 0.025063116, 0.0343334, -0.0036239068, - 0.017600665, 0.032155562, 0.02915746, -0.01831796, -0.0068023284, - -0.032697722, 0.05306612, 0.0082929125, 0.024238627, -0.012491104, - 0.0242215, -0.031214358, -0.029213753, 0.0032092875, -0.0426061, - -0.007045043, -0.017481944, 0.0038514852, 0.028701542, -0.0013164232, - -0.03655509, -0.07460332, 0.016137825, -0.024049168, 0.027360268, - -0.059594914, -0.02989055, -0.03872474, 0.018481225, -0.009557891, - 0.040150963, -0.036394596, 0.010123022, -0.06779349, -0.03708175, - 0.04627556, -0.009770209, -0.004916671, 0.029884811, -0.021268815, - 0.038676534, -0.023241503, -0.025027536, -0.009397555, 0.014951961, - 0.0031653058, -0.018806621, -0.020613957, -0.05220696, -0.058549643, - 0.06029244, -0.028181607, 0.0070102224, -0.022321422, -0.049097072, - 0.028992074, 0.07473362, -0.030784162, -0.03137412, 0.02475042, - 0.00415587, -0.046324935, -0.022208491, -0.04469411, -0.0072743865, - 0.04182304, -0.015331346, 0.008497204, -0.0041294033, -0.0043385806, - 0.036368188, -0.04360869, -0.030612584, 0.020456841, -0.037479866, - -0.009541885, -0.0033751565, 0.051093087, 0.017827302, -0.026761914, - -0.015434439, 0.043319337, 0.035554834, 0.0032032472, 0.0020910793, - -0.0025558085, 0.08145067, 0.03626654, 0.0109105995, -0.043447357, - -0.0013060657, -0.021800185, 0.037738144, -0.032197487, 0.004849828, - -0.009540918, 0.009357358, -0.01556132, -0.00307564, -0.07286088, - 0.0058260057, 0.05594009, 0.0072860983, 0.004533593, -0.0027314217, - -0.034535103, 0.017661255, -0.033663113, -0.04607767, -0.041601397, - -0.02355881, 0.008863722, -0.015570658, -0.0050331643, 0.009744302, - 0.026522499, -0.025415013, 0.0034902275, 0.016744796, -0.03227375, - 0.0093490705, 0.009041029, 0.004864954, 0.0064117224, -0.019602595, - -0.016618092, 0.009103345, -0.007770347, 0.020595241, 0.008089236, - 0.024876924, 0.04939982, 0.03656407, 0.003419227, -0.033041324, - -0.018954441, -0.03067144, 0.04366251, -0.009404304, 0.008645149, - -0.041849088, -0.020916533, -0.006541429, -0.0070617865, 0.017290598, - 0.007886593, 0.005290455, 0.058775928, -0.028443402, -0.08298547, - -0.033072695, 0.019405754, 0.025463851, 0.04121674, 0.015669877, - 0.0028277372, -0.0068341834, 0.046617594, -0.01090638, -0.04156299, - 0.019400818, -0.041896343, 0.037993945, 0.05035998, 0.0075495183, - -0.036473684, -0.026392253, -0.0010234703, -0.0115055395, -0.0010409316, - 0.0046579093, -0.004537038, -0.010994616, -0.0045318957, 0.02170151, - 0.011456523, -0.002869289, -0.03731164, -0.015398045, 0.009401143, - -0.056384485, -0.05073106, 0.020437764, 0.049100053, -0.057830013, - 0.006330873, 0.015048746, 0.033489708, 0.023446983, 0.024371909, - 0.015956381, 0.015321576, -0.016362205, 8.168101e-4, 0.023706581, - -0.010496188, -0.010217599, -0.01803245, 0.03909216, -0.013665897, - -0.009455169, 0.04747963, 0.009598479, 0.019769529, 0.025346188, - -0.03849553, -0.008473219, 0.039807588, -0.062361646, -0.005962884, - 0.0047813375, -0.064272374, -0.0061001442, 0.039267004, -0.014652311, - 0.0018358198, -0.01569327, 0.039320286, -0.009143568, -0.01703775, - 7.120391e-4, 0.085328944, 0.058611244, -0.005244715, 0.033021037, - -0.010182234, 0.011723252, -0.038443647, 0.013539369, -0.003875314, - 0.029496443, -0.019109627, 0.051343072, 0.06794481, -0.046714958, - 0.029540865, 0.0025510653, 0.056327906, -0.041739214, 0.0048659476, - -0.012229319, 0.04162165, -0.025406487, -0.051786453, -0.012978702, - 0.01290024, -0.03807936, 0.0426249, -0.061755296, 0.025567891, - 0.0029609737, 0.06480497, 2.4321392e-4, 0.03159812, 0.011535398, - 0.01721381, 0.044999972, -0.015724821, -0.0022497543, 8.166246e-4, - 0.042181343, -0.016307067, 0.052667614, 0.03530756, -0.024029793, - 0.012767549, 0.027463578, -0.0047827205, -0.011623244, -0.020051526, - -0.044125736, -0.013198651, -0.015782045, -0.013346343, -0.0039192038, - 0.038350318, 0.06166922, 0.04528679, 0.034116115, 0.02126641, - -0.0076610767, -0.048863325, -0.006868419, 0.018319465, -0.0031731909, - 0.020677915, 0.046397533, -0.03596648, -0.020003492, 0.03910815, - -0.030133596, 0.002441708, -0.01534841, -0.0113910455, -0.02253292, - -0.06232864, -0.005918845, -0.029045993, -0.011206391, 0.02803325, - 0.020211864, 0.057944752, -0.017551987, -0.0031242417, -0.024962105, - 0.07397215, 0.033156686, -0.03288713, 0.002749648, 0.027114293, - 0.016829737, -0.011800166, -0.017610557, -0.0011524373, -0.018305339, - 0.05736533, 0.022633884, 0.010686269, 0.013415556, 0.0225769, - -0.068651095, 6.859249e-4, 0.008875196, 0.012755908, -0.023730742, - -0.012136147, 0.011214476, 0.016126275, -0.038208872, 0.047251575, - 0.014453474, -0.011186814, 0.018859364, 0.07051977, -0.011786749, - -0.059886497, 3.98783e-4, 0.022159606, -0.016948793, 0.008629912, - 0.024497677, 0.050289437, 0.018325932, -0.0071012867, -0.004196424, - -0.03329536, -0.0118746925, -0.034259904, 0.003473248, -0.02395875, - -0.039316554, 0.008401248, 0.023217097, 0.042539623, -0.011597373, - 0.020384958, 0.004432625, -0.0223614, -0.029265486, -0.004937074, - 0.029801823, 0.019570714, -0.0025879915, 0.026123358, -0.009811303, - -0.036305517, -0.03816319, 0.04450639, -0.0051985225, 0.059225507, - 0.029701358, 0.022053368, 0.03201612, 0.041855045, -0.023407627, - 0.030502662, -0.0031114672, -0.0025797214, 0.017201882, 0.011371845, - 0.01628269, 0.025164261, 0.013113983, 0.0012279326, -0.0468171, - 0.018752957, -0.026000017, -0.018189104, -0.00793038, -0.024799064, - -0.0048326696, -0.003230933, 0.02933726, 0.01208502, 0.043239746, - -0.03155316, 9.7153604e-4, 9.831806e-4, 0.025837142, 0.007686956, - -0.012997323, 0.013399867, -0.05325977, -0.009791906, -0.033804506, - 0.008330995, 0.059767097, 0.032635685, 0.05052438, -0.053156365, - -0.0059038643, -0.018066771, 0.047301803, -0.055898122, -0.06888201, - -0.0025724666, -0.010425079, 0.023000631, 0.003657383, -0.008361626, - 0.05251018, -0.0073032267, -0.01910475, -0.022124954, -0.022620577, - 0.06897749, -0.04852453, -0.016637579, 0.024461826, -0.018628247, - 0.031749394, -0.06109024, 0.048907217, -0.029580327, 0.017363574, - -0.011852177, 0.003604701, 0.046144873, -0.011008172, 0.032920938, - 0.04487404, -0.050233968, -0.025470247, -0.040811542, -0.039918188, - 0.02673977, -0.03030367, -0.018183647, -0.019326843, 0.028252264, - -0.013995798, -0.008385208, -0.01255808, -0.013322275, 0.05155392, - -0.038050443, -0.0011627834, 0.03805774, 0.026785573, -0.050044823, - 0.01159361, -0.029690854, -0.044804327, -0.022929205, -0.04277006, - -0.07463381, 0.023387216, 0.02882493, -0.00858795, 0.0022172364, - -8.6317305e-4, -0.02823375, -0.026187167, 0.023858545, -0.03285595, - -0.033649713, 0.028939564, -0.031326585, 0.047472242, 0.012494591, - 0.037704583, -0.002726826, 0.05119274, 0.02291097, -0.042584512, - -0.03449997, 0.06639562, 0.038449254, 0.048130963, -0.03489914, - -0.015621023, 0.035776787, -0.03211145, 0.023447365, 0.01603879, - 0.027612377, 0.015452787, -6.6424516e-4, 0.008827459, 0.03891741, - 0.06651077, 0.006425221, -0.02580872, 0.027130704, -0.074795775, - 0.07513447, 0.03499882, -0.05187024, -0.019435678, -0.05383133, - -0.008151743, -0.0028678891, -0.047975972, 0.005142198, 1.0027977e-4, - -0.02561665, -0.07808934, 0.023422204, -0.0738265, -0.046548925, - 0.026497662, 0.010247543, 0.05570109, -0.0091548, 0.06184648, - 0.015273277, -0.009657926, -0.0042513683, -0.0017553215, -0.012152342, - 0.042496186, -0.022222215, -0.018222611, -0.017641246, 3.2696425e-4, - 0.005124189, 0.054601148, 0.029513218, 0.006815566, 0.048392165, - -0.018753782, -0.0047437744, -0.02020794, -0.020481078, 0.026392762, - -0.021814922, -0.004611155, -0.07579114, 0.031469423, 0.046472177, - 0.019372787, 0.04964013, -0.049679957, -0.0057244976, 0.03583436, - -0.038334332, -0.044458248, 0.022364315, 0.0017019196, -9.5773983e-4, - -0.048124943, -0.027979318, 0.029581346, -0.01643572, -0.011609801, - -0.04511276, -0.031353697, -0.028226638, 0.021407384, 0.0046484205, - 0.017101146, -0.018772833, -0.07270697, 0.016972816, -0.008622387, - -0.0434489, 0.006250453, -0.00645067, -0.050023604, -0.033552025, - 0.023386283, -0.011881623, 0.031404577, -0.0017405724, 0.0052915965, - -0.024610946, -0.02960518, 0.015406468, -0.02365192, -0.027270207, - -0.0032042754, 0.0013577287, 0.02272275, -0.011857266, -0.0016392649, - -0.027269877, -0.019574353, -0.012177642, 0.028283184, -0.043197658, - 0.051674798, -0.0030654885, -0.0031584762, -0.042492285, 0.014177407, - 0.004014871, -0.010276154, -0.03357378, -0.035513684, -0.025208179, - 0.029646136, 0.039613716, 0.005664232, -0.008646513, 0.028469073, - -0.012358459, 0.02445076, -0.020432191, 0.050858747, 0.029129433, - -0.0018479552, -0.033871848, 0.007775706, 0.06729551, 1.742329e-4, - -0.005823319, -0.012332096, -0.059620444, -0.026987236, 8.961042e-4, - 0.05388749, 0.053449184, -0.005874974, 0.018674448, -0.004472495, - 0.029140629, 0.0019288585, 0.012245, -0.016863573, 0.043931264, - 0.0047277794, 0.056740507, 0.011524369, 0.020542566, 0.00364391, - 0.0138099985, -0.008433272, -0.017942326, -0.08707433, 0.050570253, - 0.027854083, 0.03051139, 0.037262596, -0.019114524, 0.008305945, - -0.07317392, 0.06290414, 0.0039635967, -0.012356038, -0.020030761, - 0.057343725, 0.0166764, 0.015481187, -0.014507014, -0.01823671, - 0.032411918, 0.016020339, -0.01993018, 0.00415821, -0.029601071, - -0.027548356, 0.0504085, -0.0058071176, 0.07488837, -0.014527552, - 0.012088029, 0.033278372, 0.060669098, -0.0065079774, -0.015154537, - -0.031489372, -0.03673322, -0.036701813, 0.028024223, -0.01338578, - -0.023201253, -0.018655697, -0.028867831, 0.018048987, 0.012589118, - 0.07801579, -0.04135884, -0.021686614, -0.016224707, -0.043578893, - 0.007900371, 0.018303629, -0.013458821, -0.03708648, -0.024686337, - -0.02905077, -0.01767126, 0.037237372, -0.053631276, 0.0058663483, - -0.042329557, 0.014979067, 0.012169027, 0.020198965, 0.012607878, - -1.9543315e-4, -0.0012158693, -0.034243084, 0.080828235, -5.3287763e-4, - 0.022967996, -0.01723889, -0.009219355, -0.037870903, -0.005622221, - -0.0175038, -0.038976062, -0.009793423, 0.006968346, -0.012440559, - -0.013323546, 0.002228993, -0.043053485, -0.034265026, 0.0032142804, - -0.021572582, 0.051466346, 0.01861835, -0.015178903, -0.015572359, - 0.017769124, 0.0026542542, 0.01146817, -0.046836603, -0.031141788, - 0.03136264, 0.02236655, 0.04428203, 0.036504522, -0.04813077, - 0.037713528, 0.004223857, 0.058575407, 0.018976398, 0.01520767, - 0.013079688, -0.061883587, 0.01976057, -0.009488898, 8.546251e-4, - -0.021429664, 0.020551426, 0.01937256, -0.0010355584, -0.040848706, - -0.014133237, 0.009406597, 0.040776797, 0.010139727, 0.0021186008, - -0.021643857, 0.019300358, 0.022448452, -0.009844734, 0.023318175, - 0.012087886, -0.020164805, 0.04628606, 0.022115588, 0.020609643, - 0.037873767, -0.04272402, -0.02753135, 0.018816222, 0.017225942, - 0.015146947, 9.769928e-5, -0.059067283, -0.020199606, 0.010950655, - -0.009761594, 0.0018962556, -0.0559914, 0.023389352, 0.038924064, - -0.0215595, -0.034530267, 0.0022863983, -0.0065106335, -0.022037283, - -0.004866909, 0.0019239141, -0.017940463, -0.04882046, 0.0038729014, - -0.031036602, 0.026454067, -2.1916829e-4, 0.040352527, 0.0812071, - 0.0038237108, 0.0064782617, 0.08672875, -0.010334317, 0.055743113, - -0.009904179, 0.024708707, -0.022813508, 0.04159872, -0.010705368, - 0.015636884, -0.024526821, 0.06409175, -0.037288524, 0.026160568, - -0.018629069, -0.057465825, 0.009518178, 0.002248932, -0.031731166, - 0.0323539, -0.035776433, 0.0038002979, 0.02213578, 0.053745665, - 0.018486245, -0.021671167, 0.041726023, 0.06495635, -0.017386826, - -0.0028509481, -0.05285469, -0.037752103, -0.03245103, -0.017577654, - 0.013235954, 0.00862697, 0.024698, -0.023475949, -0.015164748, - -0.024890246, -0.041609388, -0.02509024, -0.01651756, 0.028972415, - 0.038007583, 0.021819757, -0.013769269, -0.00807238, 0.016083911, - 0.013531327, -0.0041905222, -0.04928024, 0.032390893, 0.0102411695, - 0.016197639, 0.027905218, -0.0043290304, -0.003703899, -0.014855505, - 0.0606714, 0.019322243, -0.017732872, -0.016495978, 0.020122651, - -0.025252031, 0.041666098, -0.010142115, -0.0056254845, 0.036642127, - -0.043754067, 0.013831267, 0.05526078, -0.024831139, 0.01980992, - 0.00602115, -0.026475374, -0.0036296223, -8.2680024e-4 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -7.76453E-4, + 0.017554581, + -0.006952244, + -0.0059547448, + 0.021756524, + -0.0034545446, + 0.0033423433, + 0.023477228, + -0.012027376, + 0.018136734, + -0.014432271, + 0.007351991, + 0.011680325, + -0.018674912, + 0.011466829, + 0.009989838, + -0.015726961, + 0.011552632, + -0.0030404264, + 0.019003643, + 0.011839137, + 0.011305564, + -0.0103201065, + -0.0052698296, + -0.012437832, + 0.01983106, + -0.014915031, + -0.004867733, + -0.018368527, + -0.04116047, + -0.021749439, + -0.008403639, + -0.026579117, + 0.0031696795, + -0.013772667, + -0.0052921176, + 0.008343441, + -0.010555067, + -4.4130266E-4, + -0.031217977, + -0.008058673, + 0.032413233, + -0.023116129, + -0.017310426, + 8.6011045E-4, + -4.9971824E-4, + -0.005938021, + 0.035163645, + 0.015937218, + 0.025453454, + 0.005881244, + 0.0030849772, + -0.0013748206, + 0.0061247717, + -0.0053869355, + -0.004604157, + 0.018395036, + -0.010789914, + -0.012025497, + 0.013640453, + -0.011967237, + 0.008214926, + -0.021451417, + 0.025859118, + 0.015897827, + 0.0029587892, + -6.490026E-4, + -0.01859683, + -0.018993378, + 0.014825209, + 0.00507255, + 0.016892236, + 0.015921364, + -0.0196262, + 0.027262188, + 0.015699603, + -0.0021462652, + -0.015282747, + -0.017791975, + -0.035637558, + 0.026697643, + -0.0037091528, + -0.023082238, + -0.008857908, + -0.007989286, + 0.0058245296, + -0.004844669, + -0.024232678, + 0.02601548, + 0.009966425, + -0.040005926, + 3.811136E-4, + 0.019215884, + -0.02834542, + -0.029351836, + -0.0029079705, + -0.030175705, + 0.02235042, + -0.012869885, + 6.033169E-4, + -0.008714445, + -0.030419396, + -0.014283013, + -0.008914472, + 0.022943594, + -0.020391637, + -0.006778654, + -0.001206604, + -0.027489267, + 0.0056646443, + 0.018224077, + -0.004672186, + 0.021881089, + -0.007584477, + -0.016398586, + 4.5005124E-4, + 0.0016787419, + -0.020642955, + -0.0018359367, + 0.009579736, + 0.028678255, + 0.008460347, + -0.003585147, + -0.02268735, + -0.006646952, + 0.034283314, + 9.805529E-4, + 0.020368753, + -0.0029643998, + 0.0142185595, + 0.013128382, + -0.023084909, + -0.00807792, + 0.0012099107, + -0.025196943, + -0.013330949, + -0.0032328428, + -0.0014573047, + 0.021139868, + 0.020420833, + -0.009490143, + 0.0025884982, + -0.009993284, + -0.025468359, + 0.013661538, + 0.017776158, + -0.011845961, + -0.010933218, + -0.01857249, + 0.0319989, + -0.021184683, + 8.976923E-4, + 0.002373894, + -0.034281246, + -0.021341374, + -0.012564664, + 0.008842979, + 0.0016417429, + 0.0013215095, + 0.014520798, + 0.011361768, + -0.0050311834, + -0.025060838, + -0.010322148, + -0.007106438, + -0.004616461, + -0.0038554966, + -0.011414148, + -0.031043261, + 0.0073200273, + 0.011406287, + 0.009734045, + -0.005199391, + -4.9895636E-4, + -0.005155491, + 0.006306456, + 0.0028185076, + 0.003177563, + 0.0016774704, + 0.007434824, + -0.024383038, + -0.01797724, + -0.012947804, + 0.056883596, + -0.0090659885, + 0.016569952, + 0.027848069, + -0.013925964, + 0.002268217, + 0.0030984022, + 0.003582498, + -0.008669668, + 0.0153006455, + -0.02261476, + -0.0061115585, + -0.0022115377, + 0.004471905, + 0.013182689, + -0.003336619, + 0.0023205644, + -0.0011682755, + -0.014807217, + -0.023116333, + -0.005786903, + -0.007411593, + 0.015342212, + -0.019261818, + -0.022690352, + 0.0029082624, + 0.023906335, + 0.0037050727, + 0.009429424, + 0.009910138, + -0.0031307111, + -0.005276067, + 0.028408801, + 0.001919403, + -8.350377E-4, + 0.010032953, + -0.0012538034, + 0.0069228034, + -0.008534359, + -4.363994E-4, + -0.026927527, + 0.002435612, + 0.013132096, + 0.017552001, + 0.0069305687, + -0.0078613795, + -0.028924657, + 0.0038126765, + -0.009336228, + -0.022246154, + 0.0010341853, + 0.0020735275, + -1.2557121E-4, + 0.0022462998, + -0.0055110026, + 0.013662908, + -0.031561553, + 0.032718796, + -0.01344296, + 0.0054869885, + 0.0040514152, + -0.014525678, + 0.015939698, + -0.0026755955, + 0.00896688, + -0.020851696, + -2.4272941E-4, + 0.023081904, + -0.004595576, + 0.01064159, + 0.011459137, + 0.016618026, + -0.0044948305, + -0.011545622, + 0.004333758, + -0.010703588, + -0.003412253, + -0.0067491853, + 0.0010995779, + 0.02936352, + -0.02580467, + 4.704139E-4, + 0.012393093, + -0.0015142816, + -0.0041476847, + -0.0046114936, + -0.0061156745, + -0.020733155, + -0.010144672, + 0.0038762745, + -0.013162265, + 0.011365353, + -0.0058421665, + -0.021108221, + 0.004878438, + 0.0066409702, + -0.011344518, + -0.024267139, + -0.006981388, + 0.021511037, + 0.016506895, + -0.004470048, + -0.009594202, + 8.221689E-4, + 0.0034434693, + 0.01906289, + -0.035494346, + -0.0079155415, + 0.012125434, + -0.016077757, + 0.0041569145, + 0.022231286, + 0.011885185, + -0.0046782573, + -0.005324763, + -0.022332428, + -0.017082948, + 0.016893787, + 0.014267382, + 0.018109083, + -0.013370415, + -0.0057980116, + 0.01318571, + -0.012191058, + 0.019392103, + 0.0072095054, + -0.009432539, + 0.0017122305, + -0.018544352, + -0.015171621, + 0.0057715457, + 7.555777E-4, + -0.02983271, + -0.012621977, + 0.0018239499, + -0.023383353, + -0.01627494, + 0.0047148205, + 0.019084089, + -0.016885687, + 0.03234261, + 0.0032148657, + -0.0018610709, + -0.001615338, + 2.4219752E-4, + -0.0041442625, + -0.027694074, + 0.0057177767, + 0.02757687, + 0.05081228, + -0.02522363, + 0.006851843, + 0.026651345, + 0.0075443033, + 0.0023961223, + 0.0049732276, + 0.011331555, + 0.005332212, + -0.001708234, + -0.0045187147, + -0.010714571, + -0.009182927, + 0.004223691, + -0.027424522, + 0.015853193, + 0.009696524, + 0.015640695, + -0.02498451, + 0.0052210563, + 0.0039867545, + -0.0024960178, + 0.02094542, + -0.021497635, + -0.024973497, + -0.016503904, + -0.029567456, + -0.009727827, + -0.005221129, + -0.010083659, + -0.00595571, + 0.009894763, + 0.009603207, + -3.1452088E-4, + 0.023903681, + -0.0025102796, + 0.012109642, + 0.02256193, + 0.016101616, + -0.007244076, + 0.019598158, + -0.0153203355, + -0.039873824, + 4.5414735E-4, + 0.010071023, + 0.01978882, + 0.008320163, + -2.2403875E-4, + -0.0012082799, + -0.0011428763, + -0.013250815, + -0.009828297, + -0.048038818, + 0.0038912704, + -0.0011917761, + 0.011843252, + 0.002563451, + 0.020428076, + -0.018767135, + 0.007197432, + -0.014046847, + -0.009672518, + 0.021026516, + 0.009865793, + 2.6667246E-4, + 0.0056431056, + -0.025117552, + -0.005588953, + -0.0043579047, + -0.027331114, + 0.012469158, + -0.0014113436, + -0.0034863001, + -0.0010073653, + 0.025304575, + 0.004736199, + 0.010169939, + 0.024974655, + 0.027594974, + -0.0044760844, + 0.014656556, + -0.010639454, + 0.005132698, + 0.0343018, + -0.020825094, + -0.0054358826, + -0.006030133, + -0.014460305, + 0.010105368, + -0.0074809506, + -0.0017760473, + -0.015929777, + -0.024807176, + -0.009128526, + -0.009155009, + 0.014136915, + -0.010948425, + 5.806086E-4, + 0.028239809, + -0.012130828, + 0.0017014943, + -0.03916262, + -0.0036989828, + -0.0018539607, + -0.007696406, + -0.02233558, + -9.489885E-4, + 0.010047343, + -0.028929159, + -0.031335007, + -0.010068129, + 0.012823651, + 0.007283339, + -0.010213212, + -0.012378425, + -0.008091346, + -0.0043640616, + -0.0104980655, + -0.029902456, + -0.019069381, + -0.019779714, + -0.010649998, + -0.025840934, + 0.028107608, + -0.03934348, + -0.0395044, + -0.0074628927, + 0.01094113, + -0.0028970437, + -0.0017836427, + 0.012146234, + -0.02162373, + -0.015481086, + -0.012462368, + 0.0039020502, + 0.013532207, + -0.026127303, + -3.659299E-4, + -0.011272561, + 0.0031488782, + -0.027206242, + -0.01824602, + 0.016395895, + 0.0092952205, + 0.0074503096, + 0.008819223, + 0.01860505, + -0.01696117, + 0.031922, + 0.0016025121, + -0.01967919, + 0.005148505, + 0.017756017, + -0.0142807895, + 0.032642394, + -0.024955958, + -0.018743567, + -0.0057420507, + -0.0060954844, + 5.362913E-4, + 0.0014904661, + 0.01815144, + 0.020249031, + 0.009261091, + 0.009127391, + -2.3727176E-4, + -0.011278731, + 3.6484192E-4, + -0.026263159, + 0.01242255, + 0.007092348, + 0.01821376, + -0.013388586, + 0.019933894, + 0.022872064, + 0.011672411, + 0.006821601, + -5.803306E-4, + -0.016494678, + -0.0015432693, + 0.025233261, + 0.0063909646, + -0.028906541, + -6.505612E-4, + -0.0048587043, + -0.0036128466, + -0.025154138, + -0.005560582, + -0.007453194, + 1.18324184E-4, + -0.009790177, + 0.020805461, + -0.016815672, + -0.01021959, + 0.012378415, + 8.223829E-5, + -0.01470094, + 0.00915474, + -0.0067990525, + 0.007798494, + -0.027409391, + -0.021901885, + -0.010889867, + -0.01838001, + -0.006290945, + 0.024185577, + -0.018230703, + -0.009865895, + -1.4447971E-4, + -0.008291987, + 0.019752396, + 0.02227075, + 0.0279184, + -0.0038023742, + -0.010893716, + -0.01991652, + -0.020706436, + 0.0032179593, + 0.0035058209, + 0.0018883424, + 0.0235694, + -0.0033008042, + -0.01339882, + 0.029592644, + 0.020352531, + -1.88167E-4, + -0.024758471, + -0.0076890285, + -0.0020962958, + -0.00884207, + 0.008036176, + -0.02769064, + 0.038829684, + 0.0015017394, + 0.01452182, + 0.0065588597, + -0.003020699, + -0.01809385, + 0.019461006, + 0.010841904, + -0.0104570445, + 0.0035518766, + 0.0032890693, + -0.004651625, + -0.0033745759, + -0.0068419073, + -0.0028319287, + -0.001696435, + -0.007403359, + 0.014714751, + 0.0014838623, + 0.00946921, + 0.009978642, + 0.008431967, + 0.012303266, + -0.006331019, + -0.012703989, + 0.007551286, + 0.003931525, + -0.003402676, + 0.0059063844, + -0.011208252, + -0.0014733144, + 0.013024834, + 0.006429055, + 0.008840013, + -0.0042512147, + -0.007146279, + -0.0021760336, + 0.032701723, + -0.022158569, + 0.0060030003, + 0.030147508, + 0.012359022, + -0.001351409, + 0.048906017, + -0.005721655, + 0.013816213, + -0.0013888282, + 0.020083968, + 0.013161276, + 0.038700856, + -0.026762715, + -0.026730599, + -0.01533055, + 0.0015319673, + -0.026208239, + -0.02191339, + 0.007010893, + -0.0407807, + 0.015147836, + -0.0016509538, + -0.03494335, + 0.029893488, + -0.018072465, + 0.030310262, + -0.006112421, + 0.0037211808, + -9.89418E-4, + 0.023729542, + -0.0036766857, + -0.0021807344, + 0.008411929, + 0.003714561, + -0.016054126, + -0.0019441778, + 0.0021907205, + 0.029327793, + -0.012272788, + 0.025891628, + -0.008799506, + -0.009554618, + 0.0074495217, + -0.0032384559, + -0.012016568, + 0.0011203414, + 0.019182893, + 0.03345348, + -0.011864843, + 0.017931625, + -0.011341125, + 0.01958357, + -0.010501997, + 0.009131192, + -0.009362918, + 0.0030937025, + -0.026423525, + 0.0070695495, + 0.01608282, + 0.025893562, + -0.008521317, + -0.016801586, + 0.005001083, + 0.0038486011, + 0.007818658, + -0.005750732, + -0.0013577103, + 0.007132216, + 0.02462475, + 0.013153029, + -0.01134907, + 0.0027441778, + 0.011464792, + 0.022631004, + -0.009778845, + -0.026586292, + 0.014139487, + -0.026443617, + 0.0050975247, + 0.015545922, + 0.016846796, + 4.7553647E-5, + -0.007036239, + 0.007811875, + -0.0016135464, + -0.005359363, + -0.017831808, + -0.0077207694, + -0.012554962, + 0.015644364, + -0.0042195087, + -0.032941177, + 0.014487875, + 0.0069613303, + -0.006141108, + 0.01448362, + -0.013592455, + 0.003461598, + -0.0062321746, + 0.009780101, + -0.007101771, + -0.024213994, + -0.007650285, + 6.544437E-4, + -7.507791E-4, + -0.014979275, + 0.018605484, + -0.010059543, + -0.016105944, + -0.012536321, + -0.0029755114, + -0.018124362, + 0.008883331, + 0.016848443, + 8.208556E-4, + 0.017124744, + -0.033484027, + 0.039125577, + 0.015868232, + -0.031069813, + -5.05411E-4, + -0.014012419, + -0.008555246, + 0.013153446, + 9.14607E-4, + 0.004143151, + -0.018109445, + -0.0051875818, + 0.004376607, + -0.0047962014, + -0.018619895, + 0.013639112, + 0.03170642, + -0.013219673, + 8.6471735E-4, + -0.019684514, + -0.01410463, + 0.003962076, + 0.014040593, + -0.0073430073, + -0.0146123255, + 0.022059059, + 0.0026084152, + -0.013100543, + -0.022142733, + -0.0014116775, + -0.0047547957, + 0.00481993, + 0.013792697, + 0.029882187, + -0.008073214, + -0.029881405, + -0.028027136, + -0.0067270556, + 0.011872259, + 0.0021783225, + -0.010579409, + 0.006980667, + -0.01736028, + 5.1941036E-4, + -0.012849398, + 0.008240431, + 0.02614701, + 0.007930519, + 0.009479157, + 0.018874673, + 0.027091375, + 0.01878928, + 0.010774978, + -0.0121533265, + 0.007843564, + 0.017933998, + -0.009049258, + -0.015210363, + -0.019534912, + 0.015342452, + -0.012467593, + 0.005679218, + -0.018384138, + 0.017714681, + 0.0043970016, + 0.013679794, + -0.03677914, + -0.00860758, + -0.0078899525, + 0.012046664, + 0.015244117, + 0.0013393849, + -0.014676694, + 0.0172399, + 0.0051120743, + 0.017137732, + 0.021533698, + 0.01833516, + -0.003842455, + 0.02376505, + 0.027437095, + 0.0015323039, + -0.0023428241, + 0.03226765, + 0.001933935, + 0.009793648, + -2.9193005E-4, + 0.009809972, + -0.045931052, + -0.026156217, + -0.010713857, + -0.014342119, + 0.02574522, + -0.0069622286, + -0.010937214, + -0.031309824, + 0.013444207, + -0.0025635653, + 0.0037151396, + -0.002940283, + 0.0036491866, + 0.0069618598, + 0.007686177, + 0.024862785, + 0.013675998, + 0.006903163, + 0.008508998, + 0.0047327955, + 0.0020650811, + 0.0033125514, + 0.006699254, + 0.0057836357, + -0.014082847, + 0.010767666, + -0.01781578, + 0.022216229, + -0.026381945, + -0.0058176755, + -1.1866389E-4, + -0.0055369567, + 0.011772544, + -0.025834586, + 0.004201687, + 0.010233679, + -0.027334938, + -0.011406152, + -0.034834977, + -0.009654786, + 0.021509137, + -0.017139543, + 0.003491097, + -0.0060338425, + -0.027675496, + -0.008867739, + -0.0054837964, + -0.002928311, + 0.014629067, + 0.020786226, + 0.015248638, + 0.020529391, + 0.027360614, + -0.0035941864, + 0.02626073, + -0.007571509, + -0.015340576, + -0.005559641, + 0.0049644127, + 0.007272536, + -0.005778772, + 0.002493327, + 0.005465405, + -0.017745147, + -0.014281682, + 0.015435419, + -0.011101327, + 0.0070383903, + 0.026150271, + 0.0013753324, + 0.01205155, + 0.0010767195, + 0.019831054, + -0.012291984, + 0.012703697, + -0.019566178, + 0.0024494012, + -0.026846102, + -0.0055697244, + -0.011948458, + 0.006278934, + -0.017572861, + -0.010183741, + -3.1938107E-4, + 0.0023900382, + 0.016935065, + -0.008135464, + 0.015428355, + 0.014750516, + -0.020633178, + -0.03572651, + -0.038383722, + -0.0030657414, + -0.006991085, + -0.0050958465, + -0.023783447, + 0.010279033, + -0.006631943, + 0.039743382, + -0.0068493085, + -0.006139398, + 0.0067236945, + -0.0023346122, + 0.01593738, + 0.033326786, + 0.0021473903, + 0.035766073, + -0.0017380046, + -0.01825266, + 0.015597533, + -0.019216768, + 0.0029289778, + -0.0141413985, + -0.017504582, + -0.014459595, + 0.009242376, + 0.0024595386, + -0.04222828, + 0.0016768926, + -0.0030655744, + 0.017303174, + -0.0045581115, + -0.009644648, + -0.026453378, + 0.020218574, + -0.017257143, + 0.017103357, + -0.019063875, + -0.007471256, + 0.027800582, + 0.019409748, + -0.022536466, + 0.0034865185, + 0.0081689665, + 0.022921648, + -0.018924443, + -0.0051039685, + 0.008247858, + -0.012708173, + -0.006807941, + -0.020881068, + 0.004171363, + -4.4643716E-4, + -0.0057609724, + -0.026669199, + 0.015999528, + -0.017997013, + 0.013913671, + -0.01144442, + -0.053630516, + 0.012784871, + -0.044289853, + 0.010346915, + 0.010679854, + -0.026879, + -8.56344E-5, + 0.0069718775, + 9.5146045E-4, + -0.013798052, + 0.027512724, + 0.028900996, + -0.0029693937, + -0.007229981, + -0.008073961, + -1.4062565E-4, + -0.0082787005, + 0.008365493, + 0.0068300245, + 0.008862938, + 0.028812082, + 0.01919703, + -0.015202746, + -0.012341251, + 0.0077534965, + -0.0040782187, + -0.009943997, + 0.008665203, + 0.0093096215, + 0.02823768, + 0.005558743, + -0.011907247, + -0.006249959, + -0.014822358, + -0.010923168, + -0.009890829, + -0.0038675293, + 0.019128531, + -0.015547326, + -0.033025198, + 0.010524741, + 0.012941424, + 0.014665914, + 0.010715515, + -0.0033913164, + -0.0014620498, + 0.02766453, + 0.010358393, + 0.010141827, + 0.020697664, + 0.010525558, + 0.012709738, + 0.009138092, + 0.0062014763, + 0.010527697, + -6.6052814E-4, + -0.002036962, + 0.018017994, + 6.934474E-4, + 0.031321347, + 0.020737618, + 0.0041294955, + -0.009160263, + 0.017584799, + -8.362883E-4, + 0.003497929, + 0.0064882142, + 0.004004751, + -0.0035615414, + 0.026386429, + 0.009029766, + -0.01162239, + 0.015042954, + -0.02334564, + -0.011380665, + 0.008354058, + 0.0042744908, + 0.008573327, + -0.0018990241, + -2.0717995E-4, + 0.023927372, + -0.0041546244, + 7.329377E-4, + 9.3866047E-4, + -0.01372512, + -0.007358303, + 0.0072904066, + -0.021648781, + 0.019144159, + -0.018618966, + -0.021644685, + -0.013089488, + 0.0041551245, + -0.0024652174, + -0.0070801117, + 0.011116333, + -0.008708249, + -0.026882686, + -0.02799995, + -0.0036360687, + 0.009151488, + -6.0727674E-4, + 0.021524975, + -0.030872319, + -0.010382316, + 0.03546146, + 9.3627494E-4, + -0.008280377, + -0.005696432, + 0.0119412765, + -0.011974845, + 0.0115556605, + -0.0032268558, + -0.009662736, + 0.017610807, + 0.009087893, + -0.0020749217, + -0.0132786, + -0.021955363, + -0.0033342617, + 0.017440902, + -8.407028E-4, + 0.011860496, + 0.0036171107, + -9.2005264E-4, + 0.003741017, + -0.019642856, + 0.011391125, + -0.025586706, + 0.01417083, + 0.005425374, + 0.015992796, + -0.011079939, + -0.015940638, + 0.0076287445, + 4.97592E-4, + 0.021498403, + -0.024671502, + 0.010078013, + -0.02157687, + 0.008225816, + -0.016321747, + 0.012505661, + 0.0048360126, + -0.0052746735, + -0.03777004, + 0.0065884893, + 0.008392433, + -0.0037571748, + 0.01780438, + 0.001019381, + 0.029599039, + -0.0170074, + -0.0101897, + -0.0048910966, + -0.042654008, + -5.173233E-4, + -0.006258582, + -0.008421275, + 0.012657252, + -6.5331603E-4, + 0.010238446, + 0.02682957, + -0.0028449832, + 0.0036217135, + -0.019845782, + 0.029284913, + 0.021685151, + 0.021818768, + -0.021071313, + -0.0118948, + 0.027607407, + 0.0031496494, + -0.015578544, + 0.016129082, + -0.008593892, + -0.010953745, + 0.0065826676, + -9.496193E-5, + -0.005999872, + -0.016485306, + -0.027740572, + 0.0027832284, + 7.2657346E-4, + 0.013288928, + 0.0064624357, + -0.020356812, + 0.009020459, + -0.014749711, + -0.0013239405, + 0.019078236, + 0.03158179, + 0.036359377, + 9.321233E-4, + 0.0037773466, + 0.010587702, + -0.013172398, + -0.0151184, + -0.01717175, + 0.024205731, + -6.131373E-5, + -0.0014127567, + -0.0077922605, + 0.008984425, + 0.010521418, + 7.8967283E-4, + -0.014194975, + -0.043857846, + 0.005405314, + 0.010545447, + -0.0038571784, + -0.0030773096, + 0.01672677, + -0.030104306, + 0.036263194, + -0.023586208, + -0.007039458, + -0.00921097, + -0.002483945, + -0.015538574, + -0.015432417, + -0.015488535, + 0.012698558, + 0.033556573, + -0.022497961, + -0.0011335466, + -0.008862666, + 0.01868767, + -0.019452438, + -0.0072057764, + -0.018244086, + 0.002322867, + -0.02388611, + 0.019566836, + -0.029092636, + 0.005353788, + 0.015738446, + -0.009996486, + 0.017289631, + 0.024921112, + 0.016813338, + -2.8546926E-4, + 0.018165316, + -0.0015612432, + -0.0031802102, + 0.022613099, + -0.00891402, + 0.016657837, + 0.0019694683, + 0.023710199, + -0.01090148, + 0.00963723, + 0.011790938, + 0.015771132, + 0.0065333284, + -0.014933515, + 1.4420091E-4, + -0.017494667, + 0.009385619, + 0.0083660865, + 0.021739712, + -0.018455472, + -0.008913001, + -0.010420069, + -0.020127248, + -0.002636215, + 0.0048276656, + -0.0027379107, + 0.0052068783, + 0.018763503, + -0.050949782, + -0.047105156, + 0.0046709743, + 0.009161479, + -0.008395885, + -0.005881718, + -0.019015383, + 0.0042499737, + 0.003071093, + 0.027667051, + 0.018351832, + -0.0041108117, + 0.012612094, + 0.010918618, + 0.00479438, + -6.0945004E-4, + 0.018738488, + -0.0034337337, + 0.008537388, + -0.009154461, + 0.004481094, + 0.017126534, + 0.029841563, + -0.0184338, + -0.01083663, + 0.0019924422, + -0.0136257075, + 0.016431881, + -0.008323071, + 0.021479351, + 0.027837534, + 0.028543385, + 0.0025497035, + 0.021606516, + -0.035899065, + -0.0043157064, + 0.007270491, + 0.018886691, + 0.041361406, + -0.0014583986, + 0.0014085302, + 7.378945E-6, + -0.016144753, + -0.002463378, + -0.0139021035, + 0.008095546, + 0.0019977833, + 0.013622701, + 0.0120341545, + 1.7516874E-4, + -0.0018876344, + -0.039480187, + 0.0041774428, + -0.014226589, + -0.011630924, + -0.01886257, + 0.02221025, + -0.0063361223, + 0.011704801, + -0.011582146, + 0.001957762, + 0.0026642526, + -0.018033577, + 0.0087777, + -0.008470709, + -0.010145624, + 0.040789302, + 3.2207783E-4, + 0.01669681, + 0.028581638, + -0.0015636843, + 0.012169409, + 0.011342211, + -0.007749498, + -0.00983106, + 0.016888587, + 0.007143525, + 0.03966978, + -0.024302676, + -0.019171704, + -0.0047374526, + 0.022643954, + -0.008108313, + -0.009307837, + 0.009323108, + -0.007180145, + -0.01234425, + -0.0012787774, + 0.011523513, + 0.01906676, + -0.0069001527, + 0.009156076, + -0.0010033951, + 0.0018729038, + 0.00540091, + -0.010534264, + -2.8587074E-4, + 0.004737092, + 0.00747346, + 0.002473889, + -0.02252062, + 0.009800701, + -0.028549075, + 0.014078022, + 0.010771945, + 0.019235015, + 0.018459274, + -0.015470903, + 0.014338788, + -0.006636243, + -0.008183173, + -0.0153744435, + 5.0692173E-4, + 0.005087197, + 0.003682716, + -0.020657029, + -0.016902275, + 0.006795754, + 0.0025409476, + 0.013459203, + 0.015505899, + -0.0017427106, + 0.0075042085, + -0.0076877093, + -0.019170944, + 0.010677257, + 0.030761104, + -0.012325542, + -0.02572676, + -0.011140639, + 0.003877445, + 0.0048889136, + 0.0031652988, + -0.010465094, + 0.0050125844, + 0.0047921273, + -0.007945794, + 0.016624533, + 0.0023128777, + -0.013276007, + 0.020710023, + 0.0058110263, + -0.013896333, + -0.01476404, + -0.008423565, + -0.019878658, + -0.032007482, + 0.006195759, + -0.011853312, + -0.0034196414, + -0.026794354, + 3.7733716E-4, + 0.011389021, + -0.005144565, + 0.027946247, + 0.03671801, + -0.0076527256, + 0.020457342, + 0.014238454, + 0.010824974, + -0.02059653, + 0.020355389, + -0.025339345, + 0.008500025, + 0.009091984, + -0.012656126, + -0.0026657248, + 0.003278838, + -0.017944572, + 0.013124003, + 0.0032544064, + -0.011984839, + -0.021701982, + 0.002119713, + 0.0087949205, + 0.0035413045, + -0.0030162276, + 0.020312902, + 0.013499101, + 0.007827085, + 0.005764569, + 0.008338268, + 0.014575519, + 0.007395339, + -0.0053655435, + -0.0056618666, + -0.016588628, + -0.013385649, + 0.03384351, + 0.009735595, + -0.009761982, + 0.014370421, + 0.028930062, + -0.009172908, + -0.007621225, + -0.013970475, + -0.017464306, + 0.010269201, + 0.007242894, + -0.0039203726, + -0.0067165936, + 0.01673632, + -0.0035798587, + 0.0026929604, + -0.015060636, + 0.010626548, + -0.0272207, + -0.017750403, + -0.026287176, + -0.004516841, + -0.011796491, + -0.003880951, + 0.012521661, + -4.227638E-4, + 0.014791362, + 0.014675194, + -0.009691451, + -0.0066295564, + -0.036412615, + -0.0013290071, + -0.002160031, + -0.008060769, + -0.020606503, + 0.0078107817, + 0.0023356266, + 0.023992905, + -0.032516256, + -0.019109555, + 0.019402072, + -0.0020358588, + -0.006656733, + -0.01329249, + -0.007404189, + -0.0066604763, + 0.008982799, + -0.013402229, + 0.028531402, + -0.023054576, + 0.013231694, + -0.0060445936, + 0.008970287, + 0.017114481, + -0.007013481, + -0.029686932, + -0.02212391, + 0.029758668, + 0.0109872995, + -0.018462516, + 0.023136891, + -0.0033478646, + -0.03050523, + 0.008570471, + 0.018395063, + 0.009121434, + 0.012750012, + -0.008092986, + -0.008439806, + -0.009739547, + -0.0060343444, + -0.02048369, + -0.008144479, + 0.03511174, + 0.0144230435, + -0.030109953, + 0.005869847, + -0.007756501, + 0.015340624, + -6.4363383E-4, + -0.013858135, + -0.0060132523, + 0.012434721, + -0.01028329, + 0.011933852, + 0.004212831, + -0.014463206, + 0.003650549, + 0.024512673, + 0.0052255294, + 0.019595647, + -0.007781906, + 3.32849E-4, + -0.010148046, + -0.018337792, + 0.022101218, + -0.0040850136, + -0.011975138, + -0.011913183, + 0.00758125, + -0.009393928, + -0.0031722137, + 0.01842748, + 0.006182405, + 0.010026295, + 0.0011338029, + -0.011800242, + 0.005153601, + -0.022321383, + -0.015701395, + 0.0029244318, + -0.0121881915, + -0.0041028345, + -0.013356125, + -0.0027180482, + 0.020880224, + 0.014285007, + 0.006469067, + 0.005073941, + -0.012251748, + -0.012571726, + -0.014454795, + -0.013769272, + -0.0030503073, + 0.010290547, + -0.020439854, + -0.023267657, + -0.005603662, + -0.023174321, + 0.009195894, + 0.0045602354, + 0.0054474073, + -0.005332721, + 0.011182285, + -0.003906746, + 0.018519718, + -0.01677712, + 0.013345147, + 0.0044943015, + 0.007444543, + 0.024630703, + -0.0029569392, + 0.009321724, + 7.333265E-4, + 0.023203189, + -0.038172178, + -0.0073449695, + -0.009605642, + 0.0036589198, + 0.011343784, + -0.0022098161, + -0.018126843, + -0.005258426, + 0.006788779, + -2.2245897E-5, + -0.011733747, + 0.0028377746, + 0.027536325, + -0.004328664, + -0.0066630193, + 0.037691556, + 0.029145597, + 0.0028798243, + 0.00670367, + 0.025637945, + 0.009076078, + 0.022086563, + -0.004266276, + 0.013449749, + 3.2152716E-4, + -0.011275871, + -0.02188333, + -0.01012839, + 0.02323192, + 0.009907749, + -0.0038138113, + 0.020678205, + -0.036359675, + 0.0054011764, + -6.6372147E-4, + 0.0075409077, + 0.005049824, + -0.014277137, + 0.0035911426, + -0.0093479445, + 0.016109282, + 0.005500934, + 0.0145559255, + -0.019634996, + -0.0076899608, + 0.013714414, + -0.012809304, + -0.019851537, + -0.02059052, + 0.0029637131, + -0.020362737, + -0.03795652, + -0.004933568, + -7.9235426E-5, + 0.012738384, + -0.009710309, + 0.011043866, + -0.014841749, + -0.005547007, + -0.024395093, + -0.010356429, + -0.011947187, + 0.004388352, + -0.016471496, + 3.08912E-5, + 0.005961312, + 0.02213958, + -0.011351097, + -0.0020354833, + -0.008220835, + -0.0073311133, + 0.026263583, + -0.0036762222, + -0.008874908, + 0.007826952, + 0.02624378, + 0.008093587, + 0.012347201, + -0.011784487, + -0.0013234752, + 0.006373002, + 8.2165544E-4, + -0.01002954, + 0.005506359, + 0.0124434605, + -0.034597203, + -3.5749192E-4, + 0.0013014292, + -0.0113090575, + 0.04891715, + -0.003699451, + 0.0033360901, + -0.00787563, + 6.2632246E-4, + -0.009926928, + 0.018067589, + -0.0024913775, + 0.004947579, + 0.0019517449, + -0.014146488, + -0.011281123, + 0.011016289, + -0.019017795, + -0.00212553, + 0.02314216, + 0.030719312, + -0.013847503, + 0.010068568, + 0.01257343, + -0.0056018755, + -0.004628612, + 9.746678E-4, + 0.010587383, + -0.011104359, + -0.01420697, + -0.008447285, + 8.863052E-4, + -0.023209445, + 0.017205868, + -0.0022715365, + 0.0056970273, + 0.025109658, + 0.013018962, + 0.01545942, + -0.03509557, + -7.239043E-4, + 0.014147568, + -0.008382649, + -0.0056983815, + -0.027974153, + -0.011679615, + -0.029893704, + 0.008125612, + 0.025609948, + -0.022045027, + -0.0030144877, + -0.02364875, + 0.0057158014, + 0.0066316565, + 0.0028465195, + 0.01187498, + 0.015868288, + 0.02882461, + -0.01382771, + -0.0014033051, + 0.01715703, + -0.00832861, + 3.410782E-4, + 4.6614528E-4, + 0.0063085435, + 0.017611377, + 0.015140847, + 5.870408E-4, + 0.014694126, + -0.01218351, + 0.0031843323, + 0.019419247, + -0.017322872, + -5.7968675E-5, + -0.005327786, + 0.024460118, + 0.026297458, + 0.004904699, + 7.0281775E-4, + -0.018997485, + -0.014213066, + 0.011821161, + 0.040623255, + 0.0024171358, + -0.015053538, + 0.010959618, + 0.034251463, + -0.022643404, + -0.008750439, + -0.023588056, + -0.0030698224, + 0.0022032612, + -0.006161852, + -0.0025739612, + 0.0061852736, + -0.0017305687, + -0.0019184476, + -0.046159014, + 0.032603122, + -0.007381261, + -0.0022166243, + 5.5425736E-4, + 0.022182368, + 0.01704372, + -0.010777677, + 0.0024453965, + 0.0011218552, + 0.0044981916, + -0.010005696, + -0.02758044, + 0.0011956162, + -0.0038525655, + 0.0012510079, + 0.0034950401, + -0.025572956, + -0.01870944, + 0.009159618, + -0.0040210825, + -0.029034346, + 0.008361283, + 0.011398796, + -0.0114648715, + -0.020960996, + -0.027790539, + -0.004413194, + 0.019971322, + 0.005325462, + 0.01477597, + 0.0050241747, + 0.0050031836, + -0.009853607, + -0.0037659418, + -0.014052499, + -0.013887548, + 0.001697407, + -0.021260977, + -0.008859951, + -4.7143223E-4, + 0.0019792472, + -0.0042498643, + -0.005158972, + -0.0039919317, + 0.0018073325, + 0.0074089533, + 0.013064242, + 0.020892374, + -0.028546084, + -0.008337246, + 0.01639162, + -0.0041025225, + 0.004963357, + 0.037663307, + -0.0035798638, + -0.0062669655, + -0.012617823, + -0.018198742, + -0.010747112, + 0.0152086355, + 0.007478313, + 0.0136516, + 0.0022407505, + 0.01499614, + 0.0071790703, + -0.005770955, + 0.010368447, + -0.006395495, + 0.0010833639, + -0.03237886, + 0.01137499, + -0.033433836, + 0.0038026145, + -1.4776194E-4, + 0.008889195, + -0.018819468, + -2.0469924E-4, + 1.0327508E-5, + -0.026486112, + -0.021627491, + 4.4094416E-4, + -0.0052984525, + 0.01971412, + 0.0045606075, + 0.01537767, + 0.014651636, + 0.014006222, + -0.0027358632, + 0.006399687, + 0.013000088, + -0.020348674, + 0.010105424, + -0.011653666, + -9.787986E-4, + -0.029014044, + -0.016925633, + 0.021731906, + 0.014619069, + -0.03756841, + 0.008434088, + 0.029541807, + -0.0011375718, + -0.0138941845, + -0.02102402, + -0.015104567, + 8.536733E-4, + -0.013483383, + -0.00821413, + -0.023978308, + -0.0038315342, + 0.015263804, + 0.021770483, + -0.0014718204, + -0.003317095, + 0.01241221, + -0.0121984035, + -0.011329298, + -2.6213305E-4, + -0.027986433, + 0.008473188, + -0.043851063, + 0.012088284, + -0.0033877674, + -0.009610285, + 0.013062193, + -0.006722349, + 0.015411868, + 0.014888015, + -0.005670734, + 0.0015012242, + 0.0045620445, + 0.025005063, + -9.6726173E-4, + 0.0020685056, + 0.022095745, + 0.009588254, + 0.003474838, + -0.0024688183, + -0.0039836373, + -0.019985214, + -0.008084978, + -0.018615196, + -0.018580992, + -0.00927257, + 0.031003196, + 0.017772986, + -0.009151514, + 0.016248534, + 0.019740535, + 0.004060463, + 0.0061452542, + 0.008148777, + 0.0024713208, + 0.008739328, + 0.008541479, + 0.0014108301, + -0.019445986, + 0.03198589, + 2.2771413E-4, + -0.024956768, + 0.009019847, + -0.017079227, + 0.029629396, + -0.0110833645, + -0.014559915, + 0.027890556, + -0.0069311857, + 0.008106679, + -0.0048435517, + -0.0051661325, + 0.001007635, + -0.0041353693, + 0.025022471, + -0.020936096, + -0.012590021, + -0.007515974, + 0.016559364, + 0.014975956, + -0.005182894, + 0.0035819844, + 0.017313385, + -0.0071681133, + 0.0060817795, + -6.347228E-4, + 0.013417106, + 0.017087216, + 0.033226, + -0.009987196, + -0.014863374, + -0.0049847797, + -0.0019641134, + -0.009364889, + 0.01932639, + -0.018207407, + 0.019206464, + -0.0024911333, + -0.024818636, + -0.0049431063, + -0.02093005, + -0.0021316225, + -0.01403904, + 0.013116718, + -0.0071436577, + 0.0102443965, + -0.01197652, + -0.0070591406, + -0.007899203, + -0.0032578113, + -0.008848311, + 0.013454942, + 0.001987903, + -0.0070023034, + 0.005101799, + -6.3339213E-4, + 0.024525369, + 0.008201216, + 0.01909508, + 0.005367983, + -0.012148048, + 0.009479649, + -0.010326726, + -0.012755579, + -0.025637912, + -0.008965639, + -0.0010107298, + -0.028510693, + 0.017117847, + -0.013871046, + 0.015526931, + -1.0264427E-4, + -0.0019855583, + -0.0016832337, + -0.015672408, + 0.0013278152, + 0.010253584, + -0.006530113, + 4.498736E-4, + -0.020184038, + -0.0012542908, + 0.019033566, + 0.003164852, + 0.0120620625, + -0.015147906, + 0.017787596, + 0.005333931, + 0.007386311, + 0.028974345, + -0.015368553, + -0.0024816643, + -0.0017304011, + -0.012126814, + -0.0027852606, + 0.009279485, + -0.01557444, + 0.021200042, + -0.009274444, + -0.015046524, + -0.012502882, + 0.006820973, + -0.0023180281, + -0.01020224, + -0.007991137, + -0.013642288, + 0.027400773, + -0.031095814, + -0.022480743, + 0.008936595, + 0.0208151, + -0.010131483, + -0.0029528104, + -0.0072029014, + -0.017776141, + -0.015865637, + 0.0015520453, + -0.0020872164, + -0.012992228, + 0.0225874, + 0.027194554, + 0.0060227397, + 0.006160633, + -0.0048439824, + 0.016018184, + -0.008473771, + -0.0118934885, + 0.0076426975, + 0.007245814, + 0.01057433, + -0.02059369, + 0.016044356, + 0.011951239, + -0.018402133, + -0.0032241212, + -0.016828874, + -0.010623757, + 0.02245028, + -0.022711897, + 0.021636557, + 0.022704426, + -0.043190304, + -0.002958635, + -0.0010004798, + -0.016853692, + -0.0047623888, + 0.020145096, + 0.0034819997, + -1.3471863E-4, + 3.0594517E-4, + -0.015207918, + -0.012191448, + -0.023883749, + 0.0149266, + -0.010824091, + -0.0118141705, + -0.012170896, + -0.014547847, + 0.005569454, + 0.00454199, + -0.026663363, + 0.0018883267, + 0.0012376565, + 0.009992338, + -0.009307584, + -7.404107E-4, + -0.009125685, + -2.495406E-4, + 0.016443303, + 9.712347E-4, + -0.0098411115, + 0.016280463, + -0.0023214442, + 0.0061877444, + 0.029383123, + 0.01972719, + -0.00902073, + 0.021994654, + 0.0020933424, + 7.4233254E-4, + 0.0035766864, + 0.025213849, + 0.011057307, + -0.016416457, + -0.0010016331, + -0.0020624113, + -0.006281876, + -0.009285507, + 8.081194E-4, + 0.0053516477, + 0.0015474858, + -0.007890287, + -0.026381962, + -0.006327498, + 0.017817767, + -0.032452006, + -0.002853968, + 0.0010080147, + 0.036027927, + -0.0051558143, + -0.006582094, + -0.002275983, + 0.009063476, + 0.024484769, + 0.023680901, + 0.005442352, + -0.016859576, + 0.021662021, + -0.010988652, + -0.0135699045, + 0.007588547, + -0.025616601, + 0.012798669, + -0.011982601, + -0.004058819, + -0.015705012, + -0.006023046, + 0.0102193635, + -0.019847779, + 0.012647772, + -0.019259216, + -0.0059994073, + -0.025873618, + 0.015998693, + 0.023398291, + 0.030587297, + -0.0060829096, + 0.0034439885, + -0.005010501, + 0.0063978587, + -0.006308398, + -0.015074591, + -0.012673163, + 0.021415826, + -0.011907905, + -0.0018224127, + -0.008302942, + -4.6235247E-4, + -0.023697725, + 0.00712566, + -0.025471156, + -0.006180053, + 0.016548034, + -0.0043871626, + 0.0054094843, + -0.012005315, + 0.037146233, + 0.008808884, + -0.011276599, + 0.005709133, + 0.010050454, + -5.8311666E-4, + 0.0044445475, + -0.008444033, + -0.0053473692, + -0.0016788422, + 0.018579308, + 0.021635355, + -0.013553603, + -0.010588657, + 0.010099306, + -0.002439288, + -0.019254725, + -0.013639692, + -0.0034691112, + -0.006862597, + 0.015676584, + -0.0027576967, + -0.0057933447, + 0.012532889, + 4.3698578E-4, + -0.025504079, + -0.0054690684, + 0.01569459, + 5.2561035E-4, + -0.0024905717, + 0.024410876, + -0.003960396, + -0.006480764, + -0.021976303, + -0.009139625, + -0.016215347, + 0.002424734, + -0.009416241, + 0.013071268, + 0.025105255, + -0.012320171, + -0.013168013, + 0.009153576, + -0.005878778, + 0.01098402, + 0.018479908, + 0.012466249, + 0.0035609517, + -0.014144675, + -0.0081443405, + -0.006654622, + 0.016711313, + -0.031925954, + -0.018093057, + 0.019207492, + -0.015660197, + -0.012149571, + 0.009942844, + 0.016520621, + 0.026753647, + 0.020580955, + -0.016226172, + -0.012982407, + -0.011123817, + 4.2057107E-4, + -0.004682984, + 0.0043512057, + 0.0068689976, + 0.029037332, + 3.391177E-4, + -0.013625643, + 0.0026912738, + 0.0010238702, + 0.006620603, + 1.6450934E-4, + -0.011554221, + -0.0023660767, + -0.012608556, + 0.025004737, + -0.019311253, + -2.0034447E-4, + -0.004876795, + -0.014643931, + 0.014598796, + -0.01749427, + 0.0010725504, + 0.006989604, + 0.013244183, + 2.1754933E-5, + -0.0023957293, + -3.887407E-4, + 0.0048386096, + -0.022610422, + -0.011317868, + 0.00711371, + 0.0100397235, + -0.008154803, + -0.018039843, + 0.004905976, + -0.002944813, + 0.023980254, + 0.0130702425, + -0.02056226, + 0.009877642, + -0.0037461154, + -0.0046781017, + -0.007440121, + -0.008268162, + 0.006596777, + -0.005332001, + -0.019795569, + 0.0057112784, + 0.028104683, + 0.007427937, + -0.02623062, + 0.013611959, + -2.8018828E-4, + -0.020770865, + 0.008752245, + -0.0092531135, + 0.019655487, + 0.021463156, + 0.0019395193, + 4.1924263E-4, + 0.008279428, + 0.00615521, + 0.024998022, + -0.0037924391, + -0.003747384, + -0.0017983728, + -0.011342801, + 0.011256165, + 0.001186133, + -0.0013334106, + 0.010234383, + 0.0073775933, + 0.020134075, + -3.1084224E-4, + 0.016338114, + 0.002464148, + 0.012152029, + 0.015444715, + 9.953394E-4, + -0.0064031836, + 0.012845065, + 0.009106214, + 0.0069606365, + -0.012068748, + 0.010635223, + 0.00349401, + -0.038158, + -0.0056788675, + 0.011490186, + -0.00109905, + -0.026572747, + 0.021637188, + 0.008693036, + -0.0026901527, + -0.003088645, + -0.007082424, + 0.020509798, + 0.019518021, + -0.030013993, + -0.0044943285, + 0.015569094, + -0.014454181, + 0.029089155, + 5.966072E-4, + -0.027345993, + -0.011283274, + 0.0050807917, + -0.007842171, + 0.012973539, + -0.0020979333, + -0.021044156, + -0.007416776, + -0.011595753, + 0.023894694, + -0.014207218, + 0.008952432, + 0.018669708, + 0.015847977, + 0.0020116016, + 0.008885449, + -0.028917024, + 0.012909966, + -0.0013671936, + -0.01834565, + -0.019341048, + -0.005909089, + -0.005907108, + -0.0026710036, + 0.0018799627, + 0.010610341, + -0.026968822, + 0.01834692, + 0.02100177, + -0.014431354, + 0.020537846, + -0.016227076, + 0.02046084, + -0.023731798, + -0.004200572, + -0.0066461274, + -0.036564983, + -0.0061341124, + -0.011725667, + 0.007429255, + -0.0070433924, + 0.041031215, + -0.01631186, + 0.01799902, + 0.017371038, + 0.015147753, + -0.0050604357, + -0.0029283403, + -7.803235E-4, + 0.008601345, + -0.016531281, + 0.006855692, + -0.018797018, + 0.0059338314, + -0.024101997, + 0.003870663, + -0.016042404, + 0.006064241, + 0.008088377, + -0.018659152, + 0.009924552, + 0.004917737, + -0.010186594, + 0.013615397, + 0.03926782, + 0.012261676, + -0.007502517, + 0.015926788, + 0.015774293, + 0.03473273, + -0.0061793933, + 0.0011935126, + 0.01570434, + 0.0071154386, + -0.010220482, + -0.011963837, + -0.0018899905, + 0.016836798, + 0.0095827505, + -0.009348704, + -0.01956553, + -0.018529054, + 0.01365049, + -0.009834094, + -0.0020227307, + 0.013636149, + -0.003541422, + -0.025415143, + 0.007819169, + -0.011745069, + -0.00923087, + -0.016110022, + 0.0018741984, + -0.0106706545, + -0.014302263, + 0.012516497, + 0.014259138, + 0.012506606, + -0.01264257, + -0.013435852, + -0.0050638, + -0.021301309, + -0.0030808412, + 0.0029302167, + -0.013899965, + 0.021054646, + -0.016447468, + -0.016751595, + -0.032899532, + -0.02984627, + -0.0079320185, + -0.016635105, + 0.001650102, + 0.007571863, + -0.009397013, + 0.03358309, + -0.0063942038, + -0.005966211, + 0.029778557, + -0.017034123, + 0.03434458, + 0.023887964, + 0.009823619, + 0.0058090696, + 0.015393286, + -0.009421357, + -0.027471889, + 0.019264054, + -0.0119360695, + -0.022016209, + 0.01317264, + -0.016900038, + 0.014947765, + 0.012851911, + 0.0052363793, + -0.02065678, + -0.010579278, + -9.745875E-4, + 0.0070601753, + 0.038346704, + 0.0034958776, + -0.02362304, + -0.0022234027, + 0.0069888565, + 0.0075282347, + -0.0043516844, + -0.003701441, + 0.0014100135, + -0.0117117055, + -0.02933851, + -0.0038139103, + -0.019221338, + -0.010461541, + -0.003627983, + 0.0026831299, + 0.0134891, + 0.013196399, + 0.0368618, + -0.009164202, + 0.0055879694, + -0.011078731, + 0.012108687, + 0.023478111, + 0.0031302515, + -0.012193826, + 0.018204913, + -0.0132737765, + 0.03892321, + -0.0113442745, + 0.021301711, + 0.014144086, + -0.013146012, + 0.01128787, + -0.005331643, + -0.01738382, + -0.01938861, + -0.0015768165, + -0.002424041, + -0.009602254, + -0.0053529264, + -0.02328003, + -0.0011968543, + 0.020990634, + -0.022661386, + -0.01622001, + 0.024998063, + 0.005715211, + 0.004786139, + -0.0054488215, + 0.012597463, + 0.014281135, + -0.015437348, + 0.008602539, + -0.013077686, + 0.021109413, + -0.020357395, + -0.005931408, + 0.0061507793, + -1.0424398E-5, + 0.0033620857, + 0.021005886, + 0.013752947, + 0.009144552, + -0.032845307, + 0.009599765, + -0.0036406326, + 0.0024720624, + -0.028865272, + 0.001201706, + -0.0064826426, + 0.009494781, + -0.024531763, + -0.0206025, + 0.001466643, + -0.032048874, + -0.0035298404, + 0.0022348403, + -0.0017595429, + 0.010236996, + 0.007177047, + 0.0047461307, + 0.0061410535, + -0.0059152236, + 0.0064176423, + -0.0010007429, + -0.035144817, + 0.012846268, + 0.012540134, + -0.010347262, + 0.004146314, + -0.002142887, + -0.010463893, + -0.0014248036, + -9.966358E-4, + 0.027451742, + -0.021644104, + 0.011813942, + 0.022483593, + -0.031212784, + 0.023050824, + 0.011109187, + -1.01915895E-4, + -0.014459452, + -0.007305316, + 0.020847863, + -0.017199934, + 0.010448824, + 0.0028320604, + 0.032099936, + 0.0011244023, + -0.04302853, + -0.03030424, + -0.01020135, + 0.012304334, + -0.0015363771, + 0.0117376875, + -0.010547225, + -0.013365103, + -0.028801242, + -0.003464162, + 0.019150203, + -0.022562189, + 0.039729845, + -0.0063177203, + 0.0021858432, + 0.006135367, + 0.0048914584, + 0.005405543, + -0.011728828, + 0.016335662, + -0.0030718874, + 0.0046043834, + 0.010417309, + -0.020245058, + 0.026339177, + -0.013570118, + -0.0070043863, + -0.0013655291, + 0.014564655, + 0.007529798, + 0.010009774, + 0.019178553, + 2.9351385E-4, + -0.009832379, + -0.009016374, + 0.0018095219, + 0.01427863, + 0.016085543, + -0.0357857, + 0.0041325185, + 0.009934152, + 0.009736929, + 0.0046235234, + 0.004903927, + -2.4001145E-4, + 0.01563849, + 0.00424456, + -0.028925689, + 0.011969341, + 0.0038741713, + -0.019843409, + -0.010486062, + -0.042844776, + 0.0140082985, + -0.040498357, + -0.01146224, + -0.019937854, + 0.010970675, + 0.0020806366, + -0.022298776, + 0.009013404, + 0.015189123, + 7.803169E-4, + 0.011966499, + 0.009611685, + 0.013784197, + 0.012186351, + -0.013876503, + -0.003514475, + 0.005661886, + 0.020538766, + -0.02749015, + -0.016161758, + 0.006690743, + 0.0055490015, + -0.015276376, + -0.0069458657, + -0.013820996, + -0.026803551, + 0.0054376153, + -0.008301722, + -0.0041602636, + -0.001073008, + 9.953866E-4, + 0.0019594384, + 0.0051525407, + 7.5286813E-4, + -0.02364801, + -0.013704306, + -0.041298777, + -0.018004553, + -0.0056801755, + -0.00908173, + 0.01984871, + -0.0065964744, + 0.012042031, + -0.00640964, + -0.008596193, + 0.005259912, + 4.664395E-4, + -0.028011397, + -0.0094037, + 0.002659555, + -0.018250115, + -0.003873425, + -0.008893342, + 0.014681384, + -0.02821283, + -0.02110409, + -0.010709591, + 0.013805715, + 0.013450119, + 0.0028317792, + 7.521204E-4, + 0.0012246512, + -1.2770515E-4, + -0.025467599, + -6.3838856E-4, + -0.016119076, + 0.020667152, + -0.020800015, + -0.0074637397, + -0.019269018, + -0.017211208, + 0.03461957, + -0.0026847678, + -0.004212899, + 0.0010492539, + -0.014727802, + 0.0108593, + -0.014282193, + -0.009147068, + -0.0035430905, + -5.9147563E-4, + -0.0150039, + 0.0075367405, + 0.0061015952, + -0.0028785993, + -0.012590563, + -0.002781106, + -0.016329763, + -0.030201925, + -0.025333326, + 0.00886112, + 0.015389495, + -0.0061107883, + -0.014926826, + -0.008093512, + -0.0032160343, + -8.112285E-4, + -0.03251764, + -0.032794196, + -0.004419007, + -0.018897982, + -0.0030673628, + -6.950527E-4, + -0.015226865, + 0.019751402, + -0.029673532, + 0.0065812967, + -0.0039846743, + 0.017409053, + 0.0046013743, + 0.029995447, + 0.02612675, + 0.016005615, + 0.007668835, + -0.017001953, + 0.0055457912, + -0.0045803008, + 0.0031241446, + -0.017730678, + -0.0018544866, + 0.009762278, + 0.013387718, + -0.019525228, + 0.013339408, + 0.009023207, + -0.0070473347, + 0.001408732, + 0.019678568, + 6.9316954E-4, + -0.010536268, + 0.04297753, + 0.0030521485, + -0.023185987, + 0.0035143897, + 0.008288747, + -0.007292132, + 0.0010783271, + -0.0019271842, + 0.030540358, + 0.016710468, + -0.0025310223, + 0.013480289, + -0.01871953, + 0.008082996, + 0.036921304, + -0.011974152, + -0.0053583216, + 0.0013237515, + -0.007044824, + 0.008431946, + 0.010374559, + -0.030773124, + 0.001480335, + 0.019048797, + 0.02197371, + -0.009191512, + -0.015232139, + 0.013143606, + -0.0016721406, + -0.004402491, + 0.0063334205, + 0.008450572, + -0.027733603, + 0.008897018, + 0.0020536268, + 0.014266112, + 0.0064731324, + -0.017716998, + -0.0028574588, + 0.009903934, + -0.01575451, + 0.014650205, + -0.009694813, + -0.0026988569, + -0.014808433, + 0.031553652, + -0.0014651532, + -0.0074860267, + -0.019051133, + -0.013786316, + 0.0034325519, + 0.007867608, + 0.021816488, + -0.036690805, + -0.001046899, + 0.0093938345, + -0.0083638895, + -0.0067903, + -0.03559025, + 0.029619914, + -0.011289762, + 0.0210351, + 5.0183095E-4, + 0.0050585982, + -0.0038512843, + 0.006571758, + 0.008838564, + -0.020562708, + -0.008169201, + 0.010386147, + 0.0062597524, + 0.0076372116, + 0.008408253, + -0.019666139, + -0.013584953, + -0.016395628, + -0.013915366, + 0.018258953, + 2.9691833E-4, + -0.027030274, + 0.013384678, + -8.9779444E-4, + -0.003528635, + -0.0243374, + -0.0058476347, + -0.010334532, + 0.0038921018, + 0.008252322, + 4.008301E-4, + -0.0012708725, + -0.0018206453, + -0.011687907, + -0.014157553, + 0.016409477, + -0.001353861, + -0.0010996107, + 0.020209894, + 0.008795435, + 0.018136447, + 0.0027349726, + -0.003578085, + 0.009828252, + 0.0024441546, + -0.0076176845, + 0.0010740343, + 0.03303081, + -0.05228851, + -0.016868219, + -0.0013609142, + 0.016971163, + 0.014884776, + 0.012687095, + 0.023054903, + -0.0022248938, + 0.009311313, + -0.010264804, + 0.001745333, + 0.004732278, + -0.006013363, + 0.0013297214, + 0.020800838, + -0.015354283, + -0.001650479, + 0.010858348, + 0.0077810055, + 0.012984866, + -0.04304668, + -0.013383585, + -0.014478342, + -0.018993104, + -0.033446647, + 0.0067984173, + -0.0275425, + 0.012521969, + -0.023591334, + -0.013638318, + 0.008566575, + 9.087375E-4, + 0.024324538, + 0.010080755, + -4.8432E-4, + 0.013286437, + 0.02039319, + -0.023809934, + -0.031002546, + 0.002567318, + -0.011194314, + -1.4326542E-4, + 0.02583451, + -0.007597914, + -0.008512273, + -0.0055844593, + 0.013865518, + -0.009310899, + -0.02888894, + 0.0016568106, + -0.020204244, + -0.026707241, + 0.00977051, + -0.021219084, + 0.006572692, + -5.7756755E-4, + -0.008874529, + -0.010686536, + -0.01947543, + 0.0072081233, + -0.018430883, + 0.0029444366, + 0.032266963, + 0.010103265, + 0.009731966, + -0.008386046, + 0.011726831, + 0.0028437462, + -0.020224962, + 0.008213956, + 5.9978437E-4, + 0.0077011855, + 0.0040522967, + -0.006604607, + 0.017420547, + 0.010633859, + 0.0040816274, + -0.01732686, + -0.0010401397, + -0.0045202007, + -0.01236135, + 0.003965707, + 0.0017545499, + -0.008456234, + 0.013254574, + 0.010427872, + 0.04173233, + 0.007960594, + 0.004082462, + -0.014186871, + -0.02022634, + 0.004463295, + -0.018783709, + -0.032653075, + -0.008649736, + 7.4056257E-4, + 0.0050702975, + -0.0014213765, + 0.004291732, + 0.011291039, + -0.006668956, + -0.024816148, + 0.0018369758, + -0.028324453, + -0.02425595, + 0.010822512, + 0.009545652, + -0.012857601, + 0.027120458, + 0.026008267, + -0.003479395, + 0.015532764, + 0.041130405, + -0.0019743277, + -0.0038409862, + 0.0054744203, + -0.009089573, + -0.013995732, + -0.0061407094, + -0.016227216, + -0.021738583, + -0.017573012, + 0.026346684, + -0.018558225, + -0.042317353, + 0.00245784, + -0.009690512, + -0.018082159, + 0.0017819746, + 0.02155603, + 8.0470985E-4, + -0.0012052748, + 0.022349661, + -0.0015116965, + 0.018625079, + -0.011663663, + -0.0032313417, + 0.017064694, + 0.020440925, + -0.031219639, + -0.0156571, + -0.007796733, + -0.0010390619, + -7.4886216E-4, + 0.011974154, + -0.005207941, + -0.0025398603, + -0.012397253, + 0.01355793, + 0.006505802, + -0.003951166, + 0.004685366, + 0.016130622, + 0.0057356264, + -9.76366E-4, + 0.008888092, + -6.217715E-4, + 0.036659822, + -0.008323878, + 0.006901154, + -0.008930154, + -0.043861568, + -0.0384281, + 3.0799067E-4, + -0.007627897, + -0.0028402307, + -0.020071758, + -0.02650638, + -0.0014090172, + -0.022247173, + 0.0048934617, + 0.017196257, + -0.011971076, + -0.0011808008, + -8.586355E-5, + 0.008709824, + 0.04040919, + -0.010586755, + -0.022088058, + -0.013510253, + 0.0059580356, + -0.012402242, + -0.021280296, + -0.0048759882, + 0.00435074, + 0.02792136, + 0.012571232, + 0.024818372, + -0.01244343, + 0.004795368, + 0.003901788, + -0.021794768, + 0.020641802, + -0.00813137, + -0.028572334, + -2.50817E-4, + -0.018484198, + 0.009907749, + -0.008622119, + 0.021310369, + 0.0014479818, + 0.011987434, + -0.0048138495, + 0.011806138, + 0.019545222, + 0.012259293, + 0.015080894, + 0.007965893, + 4.3988778E-4, + 0.002446732, + 0.015736783, + 0.012418132, + -0.016906561, + -0.012093283, + 0.033306688, + -0.03058295, + -0.007959612, + 0.028959284, + 0.013234466, + 0.01903249, + 0.022163525, + 0.0050246534, + -0.0176247, + 0.007143509, + 0.0020480945, + 0.007543675, + 0.01287296, + -0.015255601, + 0.026575139, + 2.8830957E-5, + -0.015417613, + -0.020548157, + -0.020451717, + 0.020545952, + -2.1280206E-4, + 0.0057833367, + -6.7469385E-4, + -0.02404706, + 4.774108E-4, + -0.005584089, + 0.013503356, + -0.0047443877, + 0.011703236, + 0.0012080057, + 0.0030076113, + 0.0023602862, + -0.014048801, + -0.0066512227, + 0.0049541905, + -0.02444821, + 7.733002E-4, + 0.003884389, + -0.003950825, + 0.006069805, + 0.0036201882, + 7.830013E-4, + -0.00413252, + 0.0042298795, + -0.008246779, + -0.0023910408, + 0.0072916895, + 0.0032177204, + 0.023067228, + -0.007926841, + -0.012753973, + -0.02614012, + 0.0261377, + 0.017628526, + 0.0024935876, + 0.015109008, + -0.003327336, + -0.011231632, + 0.038080696, + 0.013007368, + 0.005358939, + -0.0038769045, + 0.003639032, + 0.01921099, + -0.026896758, + -0.017865041, + -0.008098304, + 0.01362762, + -0.0133542465, + 0.0028126307, + -0.024151267, + -0.002024913, + 0.009451308, + 0.008351801, + 0.015218558, + -0.005329005, + -0.0060856445, + -0.021316191, + -0.0048713135, + 0.012658487, + 0.0010591066, + -0.0016504598, + -0.0014685148, + 0.0034428628, + -0.019143242, + 0.015417881, + 0.011974758, + -0.010150623, + 0.004120691, + 0.010126178, + -0.011847767, + 0.008670274, + -0.020602524, + 0.004566169, + 0.041627914, + -0.0073154364, + -0.0051900744, + 0.009168047, + 0.0139176715, + 4.4193403E-6, + -0.008320039, + 0.0111813955, + 0.0110452995, + -0.031708986, + 9.208469E-5, + 2.7386723E-5, + -0.009403284, + -4.9179094E-4, + -0.0013501156, + -0.007902472, + -0.027614512, + -0.0026570074, + 0.005430564, + -0.0064747464, + 0.01796657, + -0.0051818676, + 0.04749027, + 0.005277501, + 0.0017430176, + 0.0022696985, + -0.012555772, + -0.020149268, + -0.0024517353, + 0.011033428, + -0.008081187, + 0.009662068, + 0.005116096, + -0.01961847, + 0.0012653511, + 0.0015710625, + -0.00447605, + 0.011613491, + -0.0064101825, + -0.002397958, + 9.4064436E-4, + -0.0030391214, + -0.0267438, + -0.0154378, + -0.010146702, + 0.002264029, + -0.02062787, + 0.032722462, + 0.0064881206, + 0.013292304, + -0.0074491287, + 0.018210346, + -0.004102787, + 0.015245394, + -0.010487138, + -0.025884733, + -0.013750366, + 0.019348703, + -0.038806267, + 0.008929176, + -0.0046096416, + -6.0354173E-6, + 0.0034128374, + -5.633458E-4, + 0.0020066414, + -0.0021313338, + -0.0014641704, + -0.005391357, + 0.009142129, + -0.024430256, + 0.0035845283, + 0.009826467, + 0.009128336, + 0.017511884, + -0.0044689095, + 0.020791369, + -0.012008501, + 0.009745156, + -6.710628E-4, + -0.0056039733, + -0.001190301, + 0.014645408, + -0.002076139, + 0.018359682, + -0.006207362, + 0.021254716, + -0.005054619, + -0.0082961945, + 0.009413396, + -8.399284E-4, + -0.03327185, + -0.013242315, + -0.03786244, + -0.010537318, + 0.010720267, + -0.038952094, + 0.0042568822, + 0.0057245344, + -0.015316806, + 0.01818301, + -0.02120366, + 0.008004687, + -0.0115630645, + 0.0116941165, + 0.007687565, + -0.02910488, + 0.022079427, + -0.0030143894, + 0.028948506, + -0.009592538, + 0.0045395833, + -0.002547652, + -0.022331022, + -0.013106211, + 0.0038943996, + -0.035753395, + 0.0047715413, + 0.015926545, + 0.018622909, + -0.015279601, + 0.017959943, + -0.009205104, + 0.01453803, + -0.011347037, + -0.020898435, + -0.011067788, + 0.01268056, + -0.005482865, + 0.009382376, + -0.028210346, + -0.0065544425, + -0.0075184437, + -0.007900786, + 0.0032486864, + -0.010403901, + -0.008007083, + 0.014123858, + -0.025901267, + 0.026520578, + -0.0065303436, + 0.006203444, + 0.009417389, + 0.010024568, + 4.5411094E-4, + 0.00917577, + 0.010111444, + -0.0017341357, + -0.007339057, + -0.010346987, + 0.021747936, + -0.012754154, + -0.020866256, + -0.011202979, + -0.012646717, + -0.017187953, + 0.010172165, + -0.0020365699, + 0.014243534, + -0.017306432, + -0.00972652, + -0.021800535, + 8.1231276E-4, + 0.0050911503, + -0.026017647, + 0.011008246, + -0.017120235, + 0.01871742, + -5.9165055E-4, + 0.0013970376, + -0.0344034, + 0.031272132, + -0.003363844, + -0.0024807549, + -0.014680161, + 0.015234265, + 0.0011529265, + -0.021670949, + 0.008232671, + 0.012247196, + 0.032483343, + -0.0085112015, + 0.0024898758, + -0.011105087, + -0.020599425, + 0.035090078, + -0.0017385271, + -0.019614587, + 0.031769983, + -0.014395776, + -0.0040395358, + 0.024943817, + -0.021848667, + -0.0027759846, + -6.800148E-4, + 0.013500574, + 0.0095301205, + 0.0018698493, + 0.028143432, + -0.006903562, + -0.017878065, + -0.048943534, + 6.134463E-4, + -0.0010996009, + 0.047746744, + -0.017593674, + 0.02030904, + -0.0029318999, + 0.012238198, + 0.010878564, + -0.0132522555, + -0.009333205, + -0.0056521683, + 0.008645254, + 0.010332165, + 0.0019844563, + -0.0022708767, + 0.014335641, + -0.014440732, + 0.021616038, + 0.013873887, + 0.008346762, + -0.01558178, + 0.011124916, + -0.004975792, + 0.0030710797, + 0.01784126, + -0.021342315, + -0.033934757, + 0.010459927, + 0.00976034, + 0.0021914847, + -0.010218488, + 0.009809219, + -0.0064925845, + -0.0016920958, + 0.016058298, + 0.015153216, + 0.01661468, + 5.355086E-4, + 0.0017881901, + 0.005102033, + 1.5568374E-4, + 0.005738017, + -0.014263967, + 0.0039830245, + -0.0037383814, + -0.029845608, + 0.002723159, + 2.4651925E-4, + -0.012362727, + -0.01379925, + 0.0074686245, + 0.0050637103, + 0.0035430447, + -0.011533198, + 0.0021223763, + 0.019241193, + -0.0036774739, + -0.0074583036, + -0.001778938, + 0.009901193, + -0.0056621125, + 0.009904377, + -0.009113243, + 0.008784243, + 0.012921797, + -0.0010240143, + -0.006838126, + 0.014886427, + 0.0057097212, + -0.03497931, + -0.0051870355, + 0.01049193, + -0.018523047, + 0.007463577, + 0.011674719, + -0.0051348247, + 0.0269639, + -0.030118443, + 0.025499795, + -0.01544607, + 0.0059528076, + 0.015405739, + 0.0013169677, + 0.01627156, + -0.0034987302, + -0.013204697, + 6.6467875E-4, + 0.015073997, + 0.025022175, + 0.005914641, + -0.019883936, + 0.02635239, + -0.0016879552, + -0.001244659, + 0.011035419, + -4.6529277E-4, + -0.0013925107, + -0.019879537, + 0.0018210146, + -0.007651291, + -0.010598728, + -0.03767557, + -0.002023549, + -0.004341218, + 0.014365529, + -0.031159602, + -0.002484772, + -0.022592016, + -0.0028232376, + 0.019461166, + 0.008271288, + 0.022102801, + -0.010705054, + 0.038974743, + 0.016818712, + -0.0020032686, + 0.018678598, + -0.006871408, + 0.004295412, + -0.011787069, + -0.012278865, + -0.012337368, + 0.005336032, + 1.7372609E-4, + -0.016390862, + -0.013016869, + 0.0108376825, + 0.00456884, + -0.02010666, + -0.0020187793, + -0.00446923, + -0.03726101, + 0.0063205017, + 0.008119819, + -3.0779198E-4, + -0.0011755202, + 0.015100949, + 0.014239852, + 0.008367031, + -0.018943697, + 0.013992591, + 4.559416E-4, + -8.8063604E-4, + -0.00962012, + 0.037027616, + 0.002307682, + 0.015758185, + 0.0036199475, + 0.006100488, + 0.008780101, + 0.036738712, + -0.020155674, + 0.002650967, + 0.01072283, + 0.0027559632, + 0.0062399707, + 0.0043413695, + 0.043128718, + 0.0063351947, + -0.017800773, + 0.022987546, + 0.0022962491, + -0.009107555, + -0.033346903, + 0.010550198, + 0.016326355, + -0.017133359, + -0.012175154, + 0.02945856, + -0.036978986, + -0.019743238, + 2.3641047E-4, + 0.008059675, + 0.012034431, + 0.028478982, + 0.010382209, + 0.020113949, + 0.026133867, + 0.007241459, + -0.0051818085, + 0.01521775, + -0.0034490458, + -0.0068506515, + 0.009300983, + -0.005953159, + 0.005937707, + 0.024202837, + -0.003646518, + -0.019688547, + -0.01697428, + 0.0071426798, + 0.020179871, + -0.0017947224, + 0.02786286, + 0.006890387, + -0.013933454, + 0.019067382, + 0.00448729, + 1.0263179E-4, + -0.033857457, + -0.001449859, + -0.03041345, + -0.005809126, + -0.01644155, + -0.009603238, + -1.7283576E-4, + -0.0025584896, + 0.017145535, + 0.020822002, + 0.017915873, + 9.2506607E-4, + 0.0076793586, + 0.017553903, + -0.016173586, + -0.005308345, + 0.010528319, + 0.0351065, + -0.01358396, + 0.016918274, + -0.008278171, + -0.016089901, + 0.005593979, + 0.029933047, + -0.011211789, + 0.007949864, + 0.0153552815, + -0.0014666663, + -0.02118712, + 0.0011411279, + -0.0052484367, + 0.010172752, + -0.0046289493, + -0.007265782, + -0.004503548, + 0.017281359, + 0.011059496, + 0.0051398966, + -0.0124838315, + 0.010586642, + -0.020896323, + -0.025363715, + 0.029843964, + 0.008349487, + 0.0058094454, + -9.417089E-5, + -0.00784785, + 0.0039324663, + -0.031263955, + 0.023287313, + 0.015108369, + -0.01636904, + -0.008217368, + -0.020659009, + 0.0014797762, + 0.01859759, + -0.012334603, + 0.009194807, + -0.0072458414, + -0.010716237, + -0.020567844, + 0.0178241, + 0.019244066, + -0.008751213, + -0.0017537039, + 0.013749539, + 0.0116299745, + 0.008950876, + 0.016055932, + -0.016626691, + -0.03435976, + -0.01763211, + 0.0023282648, + -0.011153844, + -0.037671026, + -0.025940942, + 0.017764082, + -0.010918789, + 0.028227096, + -0.016418615, + 0.0014247812, + 0.0024595242, + 0.020433547, + 0.030471575, + -0.0026085097, + -0.012953045, + -0.020324605, + -0.014426975, + -0.018541807, + 0.022191102, + 0.0039843153, + 0.0041976776, + -0.0056593176, + 0.012924444, + 0.0057835346, + 0.02412428, + 0.0010366208, + -0.018329527, + -0.011435022, + -0.044566292, + -0.018733831, + -0.0047409623, + 2.5915945E-4, + 0.0047971816, + 0.0033941402, + -0.0010718475, + 0.011177369, + 0.033803247, + -0.029531075, + 0.020857211, + 0.0067512207, + 0.008486464, + -0.007159476, + 0.015920665, + -0.012726419, + -0.002669902, + -0.008880492, + 0.0034528333, + -0.043404352, + 0.04051136, + 0.0010874115, + -0.016457247, + -0.011119115, + 0.0035319312, + -7.541123E-4, + -0.020678382, + -2.0583898E-4, + -0.010032588, + -0.011838767, + 0.019267853, + 0.016371226, + 0.023464626, + -0.020202117, + -0.030844329, + 0.007178264, + -0.011617096, + 0.039328948, + -0.007842828, + -0.010177815, + -0.017399084, + 0.020971581, + -0.00701332, + -0.0074017257, + -0.006301237, + -0.0060014036, + 0.016519936, + 0.0057407827, + -0.00821222, + -0.022988811, + -0.001264994, + 0.010545046, + 0.015815847, + -0.016217547, + 0.0055057663, + -0.011881102, + -0.019809062, + -0.0050888755, + 0.02038962, + 0.013612419, + 0.018207446, + 0.001188516, + -0.0019619388, + 0.016436575, + 0.009654737, + -0.014835688, + -0.027954295, + -0.012710723, + -0.0073357173, + -0.009043945, + -0.01494146, + -0.025704106, + 0.0073199924, + -0.008335209, + 2.6574053E-4, + -0.018104, + 0.00226742, + -0.014368836, + 0.005928173, + -0.01081164, + -0.0036634177, + 0.014221519, + 0.027357526, + 0.0181177, + 0.010037635, + 0.013683713, + 0.004108515, + -0.015273867, + -0.03409636, + 0.019724198, + -0.03202523, + 0.00878456, + -9.612121E-4, + -0.0026674678, + 0.022627488, + -0.013389499, + 0.032544296, + -0.006004853, + 0.01798801, + -0.009985774, + 0.014989034, + 0.0072403233, + 0.0076783244, + -0.008539175, + 0.012924233, + 0.01750756, + -0.00882889, + -0.0031348744, + 0.03483816, + -0.008623345, + 0.0014730718, + -0.018824933, + 0.028606316, + 0.015773835, + -0.014334688, + -0.016015567, + -0.015165725, + -0.02470688, + 0.012306178, + 0.011739432, + -0.0039707436, + 0.0015181208, + -0.0151265, + 0.0061766086, + 0.013008434, + -0.0012092915, + -0.007845251, + -0.0021759048, + -0.011702994, + 0.024917655, + 0.0015768636, + -0.01414402, + -5.1620585E-4, + -0.019569326, + 0.0068547553, + 0.017958557, + -0.001897828, + 0.0011017749, + -0.0057351654, + -0.020473674, + 0.020433119, + -0.01484438, + -0.011057044, + -0.021919575, + -0.006124455, + -0.0033343078, + 0.0065823575, + -0.035845425, + -0.009772529, + -0.021521749, + 0.001834148, + -0.012396396, + 0.016036363, + -0.007967682, + -0.0034850074, + -0.012952286, + -0.015179238, + 0.020571817, + -0.02282478, + -0.0027260655, + 0.010305462, + 0.010549846, + -0.0034496712, + 0.0050989916, + -0.004352582, + -0.022845177, + 0.001190128, + -4.5433838E-4, + -6.325742E-4, + 0.0013282514, + -0.043028034, + -0.014174701, + 0.016575376, + 0.020865995, + 0.017634258, + 0.008078167, + 0.031783488, + -0.016877973, + -0.002333409, + 0.012371828, + 9.2064735E-4, + 0.0014755013, + -0.03138217, + 0.0027856668, + 0.020490056, + -0.010015393, + 0.0063862037, + -0.0011944629, + 0.028727932, + -9.304332E-4, + -0.0041356413, + -0.013697622, + -0.0075285085, + 0.013980965, + 0.007166067, + -0.006980543, + 0.023509504, + 0.0010911088, + 0.004114213, + 0.0034811038, + -2.5625178E-4, + -0.020151947, + 0.007284271, + -5.894855E-4, + -0.0022934452, + 0.021456767, + -0.0075761355, + -0.0045330343, + 0.006285028, + 0.025681846, + -7.62581E-4, + -0.005724152, + -0.01669332, + -3.062532E-5, + -0.011363007, + 0.0077199615, + -0.02091737, + 0.012261047, + -0.014858637, + 0.009230315, + 0.004081676, + 0.0015350098, + -0.0021632218, + -0.011932082, + -0.026862063, + 0.008610167, + -0.011181859, + 0.006411093, + 0.015994182, + -0.0045804027, + -0.011783177, + -0.0059089414, + -0.0094598085, + 0.017716635, + 0.02764128, + 0.046310876, + 0.0028791644, + 0.012200965, + 6.3868164E-4, + -0.034663554, + -0.0050577717, + -0.0020298336, + 0.017629933, + -0.011593433, + -0.014550691, + -0.0195948, + -0.0049995636, + -0.021007456, + 0.0051079495, + -0.02068712, + -0.02751387, + 0.011995271, + -0.0051278397, + -0.022318367, + -0.003050506, + 0.0025590362, + 0.032076616, + 0.018712506, + -0.015068463, + 0.002635218, + -0.012625407, + -0.025179349, + -0.008382998, + -0.013435477, + -0.012838656, + -0.02011325, + 0.02452171, + 0.01214339, + -0.008358674, + -0.009089137, + -0.007401842, + -0.01628782, + 0.0024960197, + 0.036857367, + 0.009666459, + 0.016077554, + 0.015572876, + 0.004447426, + -0.0049114036, + 0.0058681415, + 0.017669275, + -0.019700522, + 0.001071769, + -0.022108527, + -0.048782624, + -0.018184902, + 0.016669888, + 0.022455335, + -0.02704654, + -0.010769076, + -0.0020260694, + 0.008022621, + 0.007537102, + -0.017422508, + 0.0032496375, + -1.4997357E-4, + -0.013641602, + 8.571518E-4, + -0.0139170075, + -0.0041381675, + -0.0064212973, + 0.0051974836, + -0.0053534224, + -0.014110239, + -0.022027897, + -0.0110058915, + -0.0019928932, + -0.04345171, + 0.0012759832, + 0.011939143, + -0.0051583853, + 0.016713398, + 0.0025363273, + -0.01207573, + 0.029057292, + 0.04309899, + -0.00741076, + -0.036762025, + 0.018440975, + -0.017352598, + 0.015614794, + 0.025322482, + 0.0063058822, + 0.00287265, + -0.0073286947, + -0.022538971, + 0.0199612, + 3.8873297E-4, + 0.013838518, + -0.004731664, + 0.01223202, + -0.002627662, + 0.008490062, + 0.024563512, + -0.01636219, + -0.029281683, + -0.028383868, + 0.015034415, + -0.0044472935, + -0.013596758, + 0.003934433, + -0.003679863, + 0.027518831, + -0.010834945, + 0.011658142, + -0.012021179, + 5.062945E-4, + -0.021695357, + -0.0048158076, + 0.0063867504, + -0.013471156, + -0.015308984, + 0.0140500795, + -0.03821398, + -0.011780406, + -0.017604671, + 0.012553205, + -0.020687478, + -0.018732304, + 0.005828959, + 0.0135819195, + -0.018219275, + 0.015353679, + 0.0027356325, + 0.020371541, + -0.0033386892, + 0.017715415, + -0.01734443, + -0.009322557, + -0.025531923, + 0.04684332, + 0.010651895, + -0.009542988, + -0.0030451426, + -0.0041399924, + -0.016139472, + 0.018082587, + -0.013246713, + -0.007388918, + 0.010463425, + 0.0075675305, + 0.008429597, + 0.011304798, + 0.023686191, + 0.0033382175, + -0.012625429, + 0.008877851, + 0.01737408, + -0.0024037766, + 0.014290611, + 7.25088E-4, + -0.009524456, + 0.003485001, + 0.0043604984, + 0.005495241, + -0.008439024, + -0.024392238, + -0.0030352313, + 0.0030421522, + 0.007796877, + -0.021909773, + 0.0011541183, + -0.021834709, + -0.003811356, + 0.006215834, + -0.011736207, + -0.0134300925, + 0.002224343, + 0.0029742816, + -0.0105650425, + -2.2068592E-4, + 0.0013345111, + -0.010303468, + -0.0114154, + 0.008401757, + 0.005775523, + 0.030426357, + -0.0055391225, + 0.012567849, + 0.016215242, + -0.0026568891, + 0.013966559, + 0.0061355787, + 0.01988373, + 0.002542139, + -5.3757463E-5, + 0.011792217, + -0.0056710006, + -0.004995023, + -0.02064909, + 0.013320288, + -0.0016820247, + -0.008638257, + -0.027439322, + -0.0082300315, + 0.010548182, + -0.01826151, + 0.016599374 ], - "paletteEmbedding": [ - -0.03416162, 0.034209773, -0.009312765, -0.01235594, 0.024184868, - 0.009999394, -0.02795863, -0.05275895, -0.027654065, -0.027645169, - 0.044431917, -0.021273574, -0.009439195, -0.018767461, -0.06772842, - -0.022506317, -0.01594469, -0.030749239, 0.0024943845, -0.07924006, - 0.021221714, 0.032779105, 0.03522324, -0.031701908, -0.0025599743, - 0.010208311, -0.02121065, -0.009543769, -0.016698504, -0.017746368, - 0.0075655067, 0.029577652, 0.020369777, 0.0027556105, -0.018050274, - -0.043664306, -0.005836703, 0.037912108, 0.022193639, 0.03963988, - 0.021188678, 0.06886652, 0.0057292804, 0.005633552, -0.039374985, - -0.014035141, 0.0077427155, 0.031202203, -0.06481118, 0.032591365, - 0.031098042, -0.009672274, 0.031720478, 0.021796986, -0.0012158145, - -0.054279592, 2.914679e-4, 0.004626388, 0.008144821, 0.0024458067, - 0.051305432, -0.033574764, -0.0058729793, 2.2719098e-4, 0.03175809, - -0.006210025, 0.003983451, 0.005485713, 0.02360356, 0.036379673, - 0.029592367, -0.012906244, -0.011157001, 2.2445791e-4, 0.013217638, - 0.011401596, -0.031118518, -0.031712268, 0.020129506, -0.053513445, - -0.035266384, -0.017504355, -0.028462214, 0.009208355, -0.025211405, - -0.008442916, 0.027049601, -0.009202247, 0.033783093, -0.046286166, - 0.013018197, -0.0022250013, 0.03896185, 0.029592019, 0.050943296, - 0.0018340673, -0.026682602, 0.016229086, 0.014612722, 0.022504931, - 0.034457233, -0.03319567, 0.023250706, -0.027349824, 3.8225204e-4, - -0.023709135, 0.013611063, -0.051114764, -0.0045830584, 0.027850635, - -0.020797346, 0.0029043504, 0.009212279, 0.019563254, 0.033671837, - -8.430369e-4, 0.040419593, 0.046273295, -0.03256207, 0.017948536, - 0.054860134, -0.014434322, 0.009220998, 0.04883386, -0.048749406, - -0.008770023, 0.028524317, 0.04917274, 0.059051026, 0.016693346, - -0.04330652, -0.017875131, -0.008026181, -0.067812815, 0.037607428, - -0.012784446, 0.014434416, -0.008524851, 0.0082832575, 0.0014672364, - 0.0064444654, 0.023795003, 0.006884508, -0.006838289, 0.05207632, - 0.048016988, 0.030415881, 0.053361014, 0.015494289, -0.01918811, - -0.07104076, 0.027210714, -0.019266965, -0.007123264, -0.017201051, - 0.0018964835, -0.0069847875, 0.004312033, -0.021328254, 0.015565885, - 0.02702692, 0.029582014, -0.042686164, 0.0028995345, -0.034331337, - 2.1138223e-4, -0.030130502, -0.0130872335, 4.509234e-4, 0.023673529, - 0.013738793, 0.0053218207, -0.02115283, 0.01200859, 0.016795073, - -0.03170868, 0.042315457, -0.024530703, 0.026970819, 0.046327546, - -0.013376386, -0.004024121, -0.018327316, -0.061084144, -0.0014341138, - 0.015167289, 0.01673726, 0.027456962, 0.02696337, -0.023246523, - 0.013417541, 0.06124641, 0.026687512, 0.021309486, -0.0294671, - -0.0013763441, 0.055310756, -0.008991196, 0.034022894, -0.0045712623, - 0.06874316, 0.018292103, -0.0062860725, 0.053574443, 0.025991349, - -0.03472432, 0.0035707052, -5.5360835e-4, 0.017165028, 0.034554522, - 0.015549201, -0.014661301, 0.049683996, 0.009814081, 0.0114787845, - 0.01611665, -0.0028071508, 0.05587826, 0.054868698, 0.020680623, - -0.049795184, 0.040815484, 0.026855772, 0.054914348, 0.0032405762, - -0.0036893352, -2.7119197e-4, -0.016638173, -0.02318527, 0.0030847953, - -0.035153158, -0.033618566, 0.0014325927, 7.170845e-4, 0.045528002, - 0.009297879, -0.0041776435, -0.013246463, 0.029594753, 0.044181194, - 0.014959469, 0.025704842, 0.020717856, 0.041836254, 0.004697722, - -0.0027875802, -0.034142286, -0.0025362526, -0.01812721, -0.07383938, - 0.022856124, 0.012370628, 0.02398866, 0.03796034, -0.015993241, - -0.012202305, -0.03621185, 0.014583699, -0.017610632, 0.04680024, - 0.056949846, -0.03440551, 0.012738422, -2.1340165e-4, -0.019622462, - -8.2672795e-4, 0.037361618, 0.026847148, -0.006516015, -0.069069184, - -0.0071074744, -0.08992913, -0.04178233, -0.0038187632, -0.016573342, - -0.016196005, 0.013523844, 0.056794442, 0.017436456, -0.03295698, - 0.017460022, 6.163274e-4, -0.0022731326, -0.0201186, -0.03420677, - -0.033775, 0.043282967, 0.07075298, 0.00896369, 0.03796183, - -0.022941256, -0.005613035, -0.021433013, 0.059474893, -0.026230562, - -0.020391269, -0.06682838, 0.04249102, 0.01617413, 0.04693505, - 0.013067346, -0.04839264, -0.007844133, 0.07390514, -0.0025121577, - 0.0048221434, 0.020209035, 0.085231386, 0.009712191, 0.008800536, - 0.016064443, -0.043010343, 0.07857239, -0.0110003, 0.003262768, - 0.024122603, 1.2051615e-4, 0.015821142, -0.039558444, 0.001189, - 0.015164375, 0.015400728, -0.03587105, 0.014551532, 0.015602465, - -0.062464543, 0.026327575, -0.020225847, 0.013594573, 0.038653303, - -0.029656066, -0.04215023, 0.032936044, 0.015537166, -0.016713293, - 0.005786592, 0.020137537, -0.022465872, -0.034679785, -0.013478383, - -0.046929527, -0.030533468, 0.042013384, 0.011314499, 0.05898425, - 0.017890513, -0.031353775, 1.3470149e-5, 0.011946572, 0.054206762, - -0.030789321, 0.036588207, -0.058039643, -0.04403956, -0.03856765, - 0.0061683315, -0.010523971, 0.027442811, -0.024237659, -0.029246932, - 0.013427343, -0.04378583, 0.012410904, -0.005459236, 0.012444983, - -0.008211797, -0.012171843, -0.04351595, -0.0103071155, -0.034316592, - 0.020651083, -0.04067831, -0.023417974, 0.0061899554, -0.04461489, - 0.05581728, -0.006173453, -0.0051228823, 0.004283319, 0.060041822, - -0.038818978, 0.037141502, -0.019401526, 0.017277792, 0.046877135, - -0.0053694467, -0.012809922, 0.003050019, 0.0034303493, 0.046259362, - 0.03665733, 0.021604072, -0.0041975398, 0.03500136, -0.047301404, - 0.0014365556, 6.8597926e-4, -0.047740526, -0.028214185, 0.035639066, - 0.018169295, -0.042061966, 0.018948918, 0.0106809875, 0.009412902, - 0.021765877, 0.006346644, 0.016786642, 0.02697877, -0.015531575, - -0.029450018, -0.0025516918, -0.009914225, -0.0038739408, -0.0017970157, - -0.033100434, 0.041758228, -0.037526116, -0.017108949, 0.0026411577, - -0.0040943436, 0.011240567, -0.015468556, 0.0071660182, 0.03671571, - -0.033318844, -0.0045153555, -0.074123874, -0.029980931, 0.016592287, - -0.007224278, -0.0447456, 0.045441464, 0.028663553, -0.063025475, - 0.0014146818, -0.031329777, -0.043311663, 0.0195825, 0.027051108, - 0.049126025, -0.033889607, -0.0033685563, 0.00836565, 0.019534992, - -3.5355776e-4, -0.03924615, -0.017322455, 0.016473461, -0.0018685049, - -0.026858449, -0.03296278, -0.0448743, 0.02934021, 0.038629364, - 0.003344469, -0.0155852325, -0.0013656146, 0.021559658, 0.018137325, - 0.004743397, 0.032161817, 0.018959625, 0.037044134, 0.015924338, - 0.053392816, 0.020809354, 0.024840843, 0.010088785, -0.012646457, - 0.0151553145, 0.034397997, -0.02284075, 0.074186325, 0.041207045, - -0.002108924, -0.0015792464, 0.0073922677, -0.02249186, -0.020736227, - 0.029757796, -0.024424305, 0.09348552, -0.038943477, 0.038510606, - 0.0016978998, 0.018106403, -0.05597613, -0.004956765, -0.022010768, - -0.022321044, -0.035491247, 0.014101204, 0.010911169, -0.026925934, - 0.011965003, -0.0016330077, 0.0019124834, -0.01646915, -1.4942943e-4, - -0.009148099, -0.04693865, -0.0072766254, 0.013925432, 0.059457634, - 0.025756853, -0.040849708, 0.014524027, 0.007957903, -0.019730914, - 0.04402811, 0.019605316, 0.011637841, 0.024325497, 0.047711503, - -0.004816988, -0.049067214, 0.013559367, -0.033956964, 0.028533148, - 0.0041854996, -0.022936912, -0.021119893, 0.007576507, 2.2771697e-4, - 0.01876806, 1.681044e-4, 0.018065963, 0.090103045, 0.0058788816, - -0.058095112, -0.028135154, 0.031102559, 0.031453717, -0.056717534, - 0.009515066, -0.012857868, -0.051166255, -0.034120522, 0.040120266, - 0.05890034, 0.02877912, -0.019874288, 0.032479946, 0.01371942, - -0.023878902, -0.03233585, 0.020804912, 0.049633924, -0.003781081, - -0.0027490107, -0.0015536147, -0.0462494, 0.022667956, 0.028986467, - -0.04680094, -0.029268494, -0.021536559, -0.021504441, 0.015880523, - 0.010790431, -0.040697552, -0.012520178, 0.015077425, -0.0012968063, - 0.021546217, 0.019718064, 0.048386097, 0.02724097, -0.022352459, - -0.050396103, -0.0059528523, 0.041934036, -0.00185253, -0.025139535, - 0.09703536, -0.0048167473, -0.019871252, 0.031786993, 0.012568569, - 0.02341334, 0.04711183, -2.2023603e-5, -0.0012633424, 0.035596088, - 0.013570235, 0.0064280042, -0.018250108, -0.022810277, 0.022169044, - 0.0031951114, 0.023512244, -0.058659814, -0.045911632, -0.013070774, - -0.022225026, 0.0042315237, -0.002417711, -0.087609574, 0.011346795, - -0.020191494, 0.011994374, 0.012812986, 0.018895686, 0.030231766, - -0.023552256, -0.020477701, -0.016373755, -0.010563078, -0.061316274, - 0.012945393, -0.041071586, 0.016113188, 0.018641591, -0.063506305, - 0.0332546, 0.04666262, 0.017199695, -0.036251348, -0.013039987, - 0.03411377, -0.0035997138, -0.052980676, 0.047759775, 0.019497946, - 0.0019848535, 1.6817873e-4, -0.03212557, -0.00381084, -0.0049280603, - 0.030543927, 0.017823098, -0.03445074, -0.021997912, 0.0068157604, - 0.039899345, 0.022397572, 0.0021981697, -0.006936755, 0.012081835, - -0.03147144, 0.006459902, 0.031232536, 0.0035433692, -0.020352297, - 0.053679712, -0.056684416, -0.022008438, -0.057791602, 0.021285618, - -0.022429306, -0.04380358, 0.007827386, -0.002800057, -0.0117804175, - 0.01894752, 0.0074995807, -0.006552807, -0.030687334, 0.028850082, - -0.0016924929, 0.026927639, 0.030870667, 0.015565427, -0.017777802, - 0.024459045, -0.028404165, 0.025122272, 0.045067623, -0.02550026, - 0.040286977, 0.014326211, -0.054208294, -0.05515767, 0.04287904, - 0.009190167, 0.057191614, -0.018371422, -0.014531542, -0.02883877, - 0.009667819, -0.0065644914, 0.0074240416, 0.017194735, -0.01931386, - 0.018119602, -0.021694968, 0.014423504, -0.0011194595, -0.02448628, - 0.01918343, 2.5393488e-4, 8.654365e-4, 0.004972618, 0.022165868, - 0.065841705, 0.014277795, -0.042583477, 4.541848e-4, 0.06464512, - -0.026584918, 0.008295188, -0.08879337, 0.060494088, 0.030748313, - 0.016530622, 0.047264315, -0.017192341, 0.047544934, -0.005461421, - 0.03199833, -0.043613408, -0.005850957, 3.9455175e-4, -0.01610344, - -0.013136868, -0.043196533, -0.014125448, 0.0090198, 0.0061245644, - -0.016795313, 0.021746295, 0.031147067, 0.04064382, 0.038667012, - 0.06327057, -0.013187892, 0.0014793556, -0.044816256, -0.010735566, - 9.628558e-5, -0.053672154, -0.038983557, 0.042393226, 0.008046378, - -0.0066719106, -0.021243926, 0.07362601, -0.007369998, 0.02679838, - 0.028242975, -0.013444186, -0.013757145, 0.053431433, 0.0043635494, - -0.020831238, -0.032855805, 0.012963361, 0.034327168, -0.04350993, - -0.030507129, -0.026910068, 0.011375021, 0.021033261, 0.01658232, - 0.003766016, 0.054251704, 0.032010913, -0.0071501615, 4.909332e-4, - -0.007311864, -0.014898657, 0.033501323, -0.03711776, -0.0324534, - 0.03440549, -0.0017781203, 0.023139916, -0.0074291816, -0.010422139, - 0.010482688, -0.04253119, 0.020803925, 0.03436763, 0.013087057, - -0.025981886, -0.011816061, 0.061975367, 0.029704658, 0.028828373, - 0.0025675076, 0.06985937, 0.024951309, -0.030763863, -0.04288374, - 0.0070887045, -0.021616586, 0.0378795, 0.08000636, -0.03284084, - 0.048472222, -0.024215821, 0.071946636, 0.029204663, 0.03215468, - 0.024502909, 0.052173454, 0.03447199, 0.017357795, 7.40339e-4, - -0.033001743, 0.032889016, 0.03216553, 0.026996259, 0.08223057, - 0.031815525, -0.06807526, -0.0054291743, -0.02148307, -0.05946943, - 0.01859962, -0.0046616844, 1.7597932e-4, -0.004326973, -0.012330465, - 0.022049053, -0.015423175, -0.0069700642, 0.016524019, 0.016311122, - -0.038307045, -0.057098523, 0.019218916, 0.0039199996, -0.10677854, - 0.0044634566, 0.02904567, -0.024553543, -0.030447522, 0.025584944, - 0.0122355195, 0.015442052, 0.036658388, 0.04452307, -0.024610622, - -0.002644952, 0.04307841, 0.0033927734, -0.042296916, 0.044025056, - -0.07606978, 0.009868493, 0.035600647, 0.0023566524, 8.0839917e-4, - 0.025010286, 0.037866946, 0.018468415, 0.007220738, 0.016214335, - -0.0026070192, -0.051635794, 0.023961013, -0.010787344, 0.04085314, - 0.006396903, 0.01666305, -0.030097915, -0.063060515, 0.022242151, - 0.035486504, -0.030949807, -0.031148728, 0.016264124, -0.015593933, - 0.075463325, 0.0013610568, 0.10081134, 0.033501327, -0.012176063, - -0.022999767, 0.016343312, -0.02560716, 0.025525255, -0.023673674, - 0.027969254, -0.04311306, -0.041455112, -0.011323186, -0.055626575, - 0.020026423, -0.018440848, -0.058746446, 0.052734777, 0.009859443, - -0.059176616, 0.01071354, -0.04818254, -0.02192836, 0.033377137, - -0.033662084, -0.029565427, 0.04699578, -0.025774041, -0.009087182, - 0.021329286, 0.03534658, 0.007845088, 0.06333008, -0.020417966, - 0.05307256, -0.022461731, 0.03212662, -0.007839616, -0.04610525, - -0.05024705, -0.016960766, 0.08313777, -0.038943313, 0.009759545, - -0.011447064, -0.03975919, 0.031687703, 0.037316903, -0.032106142, - -0.03145979, -0.024530085, -0.026290933, 0.009526892, 0.016894871, - -0.0017332358, -0.07143675, -0.042946935, 0.044974387, -0.06983751, - 0.0021099823, 0.021547506, -0.027553817, -0.003389332, 0.037141602, - -0.014802929, 0.04929339, 0.0035519202, 0.016955703, 0.026627472, - 0.0016091083, -0.0014077519, 0.031945102, 0.02708001, 0.02417663, - -0.04557349, 0.007120969, -0.07122514, 0.03774995, -0.017250357, - -0.046490643, -0.03706388, 0.019644255, -0.0068926993, -0.006831643, - -0.0029779135, -0.008017159, 0.044022977, 0.03190126, 0.07522339, - 5.4803805e-4, -0.026426695, -0.017291268, -0.00452878, 0.015225869, - 0.03818604, -0.005461708, 0.015361656, 0.0011689437, 0.015035409, - 0.018152101, -0.0018492108, 0.040565807, 7.631281e-4, 0.011764494, - -0.050177857, 0.016729048, 0.07099139, 0.007354618, 0.0152491005, - 0.05363644, -0.0018925288, 0.0037172053, 0.018192885, 8.532604e-4, - 0.024044799, -0.019425694, -0.010314687, -0.021546988, 0.03569634, - -0.01402836, 0.036037114, -0.007843528, -0.015869215, -0.023452751, - -0.046821713, 0.008578027, -0.0026009693, 0.040621407, 0.030372959, - 0.06104073, -0.057606, 0.014461882, 0.043178145, 0.04511063 + "paletteEmbedding" : [ + 0.07583656, + -0.008055348, + -0.014742264, + 0.023616899, + 0.06823928, + -0.028088143, + 0.04522407, + -0.010937812, + 0.011571163, + 0.05314574, + -0.0024314167, + 0.04522836, + -0.012600534, + 0.043275192, + -0.005670288, + -0.011047312, + 0.015526967, + -3.0423634E-4, + 0.021437889, + -0.021409405, + -0.050863225, + 0.024919797, + 0.014215542, + -0.06619706, + -0.022928037, + -7.36853E-4, + 0.02163574, + 0.010826175, + -0.026169505, + -0.03064939, + -9.908167E-4, + -0.0048855473, + 0.032978434, + -0.012782778, + -0.0047367774, + 0.026648425, + -0.0010803551, + -0.021067401, + -0.020318937, + 0.0029207447, + -0.0335836, + 0.022488773, + -0.004954255, + 0.012054828, + -0.01421149, + 0.008422937, + -0.011683082, + -0.033272162, + 0.03930444, + -0.034318548, + -0.06325962, + 0.014391139, + 0.030241547, + -0.041618265, + 0.031882055, + 0.042220745, + -0.0022674492, + 0.015952522, + -0.025748178, + -0.017608447, + 0.010231546, + -0.0053914515, + -0.03842714, + -8.5697015E-4, + -0.03156883, + 0.07606137, + 0.01022737, + 0.027007483, + 0.025040641, + 0.005713444, + -0.009177378, + -0.019395662, + -0.049111646, + -0.0040404974, + -0.0045027486, + 0.005916388, + 0.0073713525, + -0.004363427, + 0.04980263, + -0.0014064395, + 5.803362E-4, + 0.023611132, + 0.014565235, + -0.041553937, + 0.01020848, + -0.047534358, + 0.033612765, + 0.03355281, + -0.025452472, + -0.055691447, + -0.0012722842, + -0.03768008, + -0.022631306, + 0.013296197, + 0.031041138, + 0.07309015, + -0.044368878, + -5.864867E-4, + -0.059738316, + -0.022961287, + -0.04427351, + 0.054723337, + -0.036582053, + 0.039299563, + 0.015111707, + -0.01405733, + 0.019231424, + -0.023413125, + -0.03872429, + -0.049904875, + -0.026998838, + -0.009965749, + 0.02199025, + 0.022330899, + -0.03006856, + -0.02802917, + -0.04700019, + -0.0011607211, + -0.0077763656, + -0.0036040267, + -0.0042712777, + 0.08136027, + -0.072378844, + -0.026439575, + 0.022899475, + 3.2149933E-4, + -0.013024396, + -0.007824392, + -0.0268235, + -0.020760315, + -0.03222321, + -0.01633931, + -0.04014711, + -0.009625981, + -0.058459785, + -0.019510705, + -0.026098577, + -0.01804598, + -0.02190559, + -0.04102051, + 0.013945525, + -0.008981442, + 0.017012008, + 0.039317485, + 0.003164069, + -0.01250729, + 0.052233886, + 0.027260184, + -0.06274077, + -0.013876122, + -0.031492963, + -0.002406768, + -0.023574525, + -0.023921987, + -0.024429334, + -0.022757728, + -0.0010168887, + 0.028553145, + -0.0010959901, + -0.0038335305, + -0.041019805, + -0.012782884, + -0.02324394, + -0.006659323, + 0.029413577, + 0.049958583, + 0.02109332, + 0.026275788, + 0.026545867, + 0.006189233, + 0.016460298, + 0.04360836, + -0.013301463, + 0.043432243, + -0.004104895, + -0.0031397555, + -0.044576827, + 0.021830127, + -0.008111985, + 0.0051979376, + 0.035294585, + 0.003663241, + -0.055709723, + 0.028664587, + -0.0077792406, + 0.03342223, + 0.019247388, + 0.0060020736, + -0.066997506, + -0.016714068, + -0.02412711, + -0.032553922, + 0.08435045, + 0.028384164, + -0.0070972056, + 0.010988817, + 0.018098453, + -0.018910374, + -0.035272937, + -0.078855224, + -0.04191485, + 0.052265283, + 0.0041906075, + 0.019882848, + -0.055769883, + 0.051984634, + 0.062672734, + -0.0018980992, + 0.0010039241, + 0.008260207, + 0.014738533, + 0.032092296, + 0.014062076, + 0.00843023, + -0.031183561, + -0.010618109, + -0.002708843, + 0.020606559, + -0.027048506, + 0.01434911, + -0.04425264, + -0.0023811846, + 0.039561633, + -0.049676966, + 0.070741005, + -0.025882656, + -0.060115885, + 0.025963772, + -0.0048659523, + -0.027144168, + 0.034706686, + 0.044958387, + -0.045370173, + 0.0012355192, + -0.009600807, + -7.83953E-4, + 0.029584454, + -0.06338463, + -0.0043910076, + 0.026489522, + -0.03348027, + -0.044435374, + 0.0030055451, + 0.006289404, + -0.044097707, + -0.0140602095, + 0.030265996, + -0.0013837506, + 0.028921071, + 0.030433364, + -0.0065734973, + -0.019223634, + 0.04666172, + -0.026702818, + -0.008717883, + -0.014902369, + -0.027569266, + -0.010174936, + 3.3651755E-5, + -0.059376862, + 0.0038736253, + 0.0063979193, + 0.05833212, + 0.018038437, + -0.009893548, + -0.02017857, + 0.032400966, + 0.02671019, + -7.0174027E-4, + -0.021076875, + -0.004956366, + 0.05075759, + 0.016330577, + -0.011000669, + -0.0057240943, + -0.028326077, + 0.008935872, + 0.025303183, + -0.023885207, + -0.011840655, + 7.7301176E-4, + 0.012385344, + 0.0038696777, + -0.0031588408, + -0.013360221, + -0.06757245, + 0.018250234, + 0.033596657, + 0.010431012, + 0.025806505, + 0.01312931, + 0.004182606, + -0.028767757, + 0.038155198, + -0.05543616, + -0.017872086, + 0.0014419894, + -0.00897608, + 0.028980952, + 0.02415518, + 0.05640101, + 0.05711325, + -0.0057582282, + -8.721117E-4, + -0.03938363, + 0.010841566, + -0.046456996, + 0.012587141, + 0.030930148, + -0.0033283613, + 0.0027320692, + -0.009782772, + 0.07955874, + -5.0480245E-4, + -0.023474393, + 0.0025175512, + -0.0066081844, + 0.041046966, + 0.009305337, + -0.021007165, + -0.033456087, + -0.00138489, + -0.0070665614, + 0.0063128746, + 0.017850779, + -0.032378316, + 0.062192786, + 0.02154402, + -0.037462275, + 0.04297408, + 0.0358474, + -0.027427284, + -0.03542499, + -0.01415818, + 0.046097226, + 0.027990397, + -0.020077815, + -0.027051553, + -0.050774325, + 0.045134854, + 0.009059152, + -0.05323951, + -0.03636563, + -0.021919409, + -0.056208853, + -0.006219994, + -0.0045054755, + 0.0071243825, + 0.012094217, + -0.048684187, + -0.02330726, + 0.061704293, + -0.015776848, + -0.010928682, + -0.0024866895, + 0.06786121, + 0.03014938, + -0.015642313, + -2.2880806E-4, + -0.015050209, + -0.02758617, + 0.02085385, + -0.014672908, + -0.02491205, + 0.017036963, + 0.006267279, + -0.026475536, + -0.045586586, + -0.026707139, + -0.014023493, + 0.0296186, + 0.028652249, + -0.053448536, + -0.02301839, + -0.0029542362, + 0.033060577, + 0.03946149, + 0.015897682, + -0.03686839, + 0.037524555, + 0.007841997, + -0.030465579, + 0.006703872, + -0.041607667, + 0.038543884, + -0.027063817, + 4.6055947E-4, + 0.024241647, + -0.025703432, + -0.0022677297, + 0.028178852, + -0.018589506, + 0.06718989, + 0.006986386, + 0.026434215, + 0.0016811626, + 0.02752237, + 0.029314337, + -0.012033439, + -0.07246252, + 0.033664558, + 0.0026753475, + -0.0038004336, + 0.0021372163, + 0.043499913, + -0.026660416, + 0.021246053, + 0.026554326, + 0.037305593, + -0.002135864, + 0.0057700644, + -0.039220236, + -0.0065189265, + -0.035671383, + 0.013145015, + -0.020632671, + 0.0024850783, + -0.056637187, + 0.01822606, + 0.024230631, + -0.0278716, + 0.041923344, + -0.008648727, + 0.044752374, + -0.05798193, + -1.8621411E-7, + 0.01023469, + 0.014431918, + 0.041768305, + 0.03691445, + 0.0014559887, + 0.0747286, + 0.0056772474, + -0.051984802, + 0.0065178866, + -0.08089885, + 0.03707098, + 0.002552943, + 0.0039284956, + -0.007058611, + 0.040071428, + -0.042138536, + -0.02602018, + -0.029678272, + 0.013007487, + -0.03143154, + 0.03953774, + 0.023533672, + -0.022740467, + 0.034004696, + 0.0065219807, + 0.019525046, + -0.04288274, + -0.025454529, + 0.024240568, + -0.016640104, + -0.065435424, + -0.0113131665, + 0.019597786, + -0.02364179, + 0.029565439, + -0.0109678395, + -0.024777727, + -0.030260881, + -0.027310379, + 0.03842114, + 0.007512091, + 0.03888836, + -0.040351566, + 0.031829707, + -1.1634111E-4, + 0.039055824, + 0.007930554, + -0.011417584, + -0.09835786, + -0.0029198772, + 0.01381123, + -0.041608337, + 0.020374727, + -0.012023617, + 0.058213875, + -0.02465742, + -0.018062644, + -0.047900204, + -0.03141368, + 7.7304075E-4, + -0.008459134, + -0.07504523, + -0.0063741896, + 0.024090055, + 0.049519118, + -0.029918188, + -0.009353804, + -0.019449444, + -0.028895287, + 0.02742744, + 0.033639092, + 0.014095238, + -0.03332899, + -0.039859813, + -0.02732727, + 0.03892563, + -0.048595097, + 0.01614837, + 0.056211952, + 0.013273195, + -0.013267066, + -0.019193685, + -0.03144467, + -0.005244433, + -0.06215861, + 0.021055413, + -0.032599464, + -9.880087E-4, + 0.05346206, + 0.033225115, + 0.0031208051, + -0.015430716, + -0.0066974796, + 0.017362872, + -0.037707392, + 0.060902312, + -0.07219506, + 0.034993805, + -0.021686302, + 0.0049428763, + -0.041960075, + -0.033787154, + 0.0061251805, + -0.010449767, + 0.09198245, + -0.010719277, + -0.017886812, + 0.022879226, + 0.016241128, + -0.03695169, + 0.024949128, + 0.00858094, + 0.029287204, + -0.004902075, + -0.06417421, + -0.0118051665, + -0.008644058, + 0.041524623, + -0.038377445, + 0.021781668, + -0.014323763, + 0.06583497, + 0.015611472, + -0.014510957, + 0.031116258, + 0.0017998841, + 0.027425338, + -0.03578509, + 0.037920646, + -0.06870341, + -0.040085748, + -0.049367372, + 0.055619363, + -0.019247528, + 0.030772883, + -0.016653502, + -3.949181E-4, + 0.020489486, + 0.06594302, + -0.049363934, + -0.01669889, + 0.04848546, + -0.0048630117, + 0.0023203737, + -0.007346083, + 0.030630026, + -0.017129669, + -0.056471694, + -0.008502411, + 0.028403128, + -0.026286844, + -0.0011721379, + 0.058078904, + 0.0119410055, + 0.024968304, + 0.046147242, + 0.024786355, + 0.02546415, + -0.017105749, + 0.02459841, + 0.03171088, + -0.04217286, + -0.0023932406, + 0.008093569, + 0.045721114, + 0.0023247274, + 0.037555754, + -0.035919264, + 0.0010108736, + -0.07020628, + 0.010337781, + 0.011023774, + -0.022694971, + 0.017321816, + 0.038923413, + 0.013710739, + 0.026547192, + 0.036114294, + -0.02194624, + 0.037535943, + 0.011124529, + -0.049919695, + -0.008971328, + 0.009784381, + -0.06622824, + -0.03984661, + 0.015427777, + 0.021501863, + 0.009404401, + 0.0065520955, + -0.033924155, + -0.005600273, + 0.008149555, + 0.02408384, + -0.01874124, + -0.045404688, + 0.033851672, + 0.006760493, + 0.03656589, + -0.0020711774, + -2.957256E-4, + -0.013750469, + -0.022493351, + -0.0280617, + 0.03893621, + 0.009869636, + 0.052205153, + -0.008960863, + 0.02015922, + 0.023938712, + -0.0047395634, + 0.0092259785, + 0.06003222, + 0.018713912, + 0.048360754, + -0.025723351, + -0.014749836, + 0.018815886, + 0.03250659, + -0.016319126, + 0.06265093, + -0.0383887, + -0.030695666, + 0.02975247, + -0.029473765, + 0.06223816, + -0.005553024, + 0.006418634, + 0.02013087, + -0.05927166, + -0.06953969, + -0.013378025, + -0.0147905275, + -0.015031787, + 0.07642553, + 0.010031394, + 0.07950148, + 0.007560944, + 0.014128309, + -0.043659046, + 0.0017743368, + 0.039681964, + -0.054759018, + -0.033967223, + -0.0015984856, + -0.012911299, + -0.0021684282, + -0.015765982, + 0.04281411, + -0.011807397, + -0.024405923, + 0.008873935, + -0.005796093, + 0.036212556, + 0.0014005738, + 0.05954488, + 0.0021856318, + 0.037021387, + 0.0026604156, + 0.0012436836, + -0.042483296, + 0.052303754, + 0.0034468048, + -0.023602912, + -0.01026816, + 0.018286891, + -0.03171493, + -0.036835335, + -0.0044136303, + -0.019471424, + -0.0053947885, + -0.024220575, + -0.048229944, + -0.009256999, + 0.029438071, + 0.008697044, + -0.051747683, + 0.006867177, + 0.011279783, + -0.017183976, + -0.036753654, + 0.023345888, + -0.007768998, + -0.020141127, + -0.01923769, + 0.053573757, + -1.6923509E-4, + 0.05531546, + 0.06242001, + -0.016644599, + -0.042008605, + -0.00787824, + 0.005879968, + 0.011188276, + 0.058110576, + -0.0020024795, + 0.018269997, + 0.0027312667, + 0.03315795, + 0.005874762, + 0.022521764, + -0.005265453, + 0.0027368153, + -0.055000126, + -0.0017282767, + -0.0088095525, + -0.038460996, + 0.028628297, + 0.030732717, + -0.0027325274, + 0.015130902, + -0.02298397, + 0.010830568, + 0.06974648, + -0.012904741, + -0.007933991, + 0.0072917445, + -1.2719273E-4, + 0.0455552, + -0.05089549, + -0.012925078, + -0.056711297, + -0.020712232, + 0.037918128, + -0.061581448, + -0.045677043, + -0.024134336, + -0.03270456, + 0.028865866, + 0.022219032, + -0.01755012, + 0.041871414, + 0.05731895, + -0.05293755, + -0.014275327, + 0.045955595, + 0.016168125, + 0.03094913, + 0.016615752, + 0.006551147, + -0.03921334, + 6.398381E-4, + 0.037470173, + -0.040171996, + 0.04616827, + 0.012974729, + -0.032137338, + 0.018687, + -0.019965528, + 0.012074615, + -0.02875774, + 0.009439149, + 0.02926732, + 0.02475098, + 0.02530383, + 0.02086896, + 0.011683911, + 0.04100915, + -0.018710226, + 0.0069009103, + 0.04241309, + 0.035479534, + -0.0590999, + 0.0019608182, + 0.06288065, + 0.015414387, + 0.039942026, + 0.011156224, + 0.0097143045, + -0.043383725, + 0.009313333, + 0.030230014, + 3.64263E-4, + 0.039641563, + -0.05812026, + -0.014714495, + -0.015043532, + 0.0061505847, + -0.0038215048, + 0.013239897, + -0.056024905, + 0.013601141, + 0.016608948, + -0.0010162308, + 0.019383695, + -0.018374197, + -0.032948468, + -0.0043376214, + -0.0044534374, + -0.0058413045, + 0.041179653, + -0.030452065, + 0.0040110303, + -0.002646385, + 0.032692228, + 0.04819052, + -0.019003857, + -0.048577517, + 0.01680881, + 0.051102743, + 0.06799507, + 0.0010066368, + -0.023110991, + 0.021004211, + -0.020674214, + 0.022658762, + -0.035172626, + 0.01751061, + 0.034701306, + -0.0018436994, + 0.009067008, + 0.07124161, + -0.04310058, + -0.048220396, + -0.06445854, + 0.04317898, + 0.018212015, + 0.031969994, + -0.0078016175, + 0.01612196, + 0.011268546, + 0.047030196, + 0.052732524, + 0.014152274, + 0.022108022, + 0.024663191, + -0.0098507535, + 0.042820275, + 0.032679845, + -0.022171546, + 0.017973874, + -0.0013580719, + 0.03901045, + -0.05502697, + -0.01758409, + -0.007745079, + -0.042220905, + 0.015622698, + 0.02451822, + 0.01627397, + 0.010478838, + 0.024597125, + 0.05188144, + 0.0071763466, + -0.015754584, + -0.030937528, + 0.04403651, + 0.021788295, + 0.02702276, + 0.02820311, + 0.022352867, + 0.0024311254, + -0.031448305, + -0.034160428, + 0.0015560368, + 0.023777016, + 0.0012833729, + 0.03899449, + 0.020895904, + -0.007655711, + 3.5781018E-4, + -0.007632204, + -0.017081162, + -0.049641293, + -0.01453225, + 0.015847258, + 0.0062112357, + 0.012478161, + 0.011083074, + 0.01766195, + 0.03274144, + -0.023697913, + -0.014135987, + 0.054719653, + -0.005144296, + 0.050435368, + -0.005092803, + -0.008514233, + -0.0024497232, + 0.058699045, + 0.047055963, + 0.025232928, + -0.00969888, + -0.02871701, + -0.0020290734, + -0.022382507, + 0.038559757, + -0.033119243, + -0.04463723, + -0.05557063, + -0.017625017, + -0.003614205, + 0.033559788, + -0.030412301, + -0.03719069, + -0.01112199, + -0.031406187, + 0.022688845, + -0.0071148025, + 0.05946752, + -0.031998888, + -0.06735337, + -0.04770934, + -0.011429875, + 0.050409194, + 0.016036237, + -0.03995566, + -0.0052645328, + -0.06197607, + 0.057387497, + -0.023365797, + -0.006463073, + -0.011672974, + -0.0060193203, + -0.03295903, + -0.010385885, + 0.0071028527, + 0.04206079, + -0.002566208, + -0.035089817, + -0.035719786, + -0.030092765, + -0.018766757, + -0.0029177468, + 0.012441511, + -0.03387081, + -0.06226228, + -0.03087609, + -0.019867683, + -0.009713289, + 0.007914379, + -0.017442813, + 0.0027668145, + -0.03817416, + -0.012370907, + 0.07234845, + -0.025237206, + -0.025486996, + 0.03232671, + 0.03122119, + 0.033227265, + 0.037128974, + 0.017455447, + 0.011642709, + 0.004039578, + 0.023113498, + 0.025096063, + -0.022215234, + 0.018609501, + 0.016198045, + 0.05673548, + 0.018530384, + 0.006438985, + 0.021276793, + 0.012403828, + 0.01479969, + 0.039487712, + -0.03239764, + 0.027594652, + 0.026164627, + 0.06631752, + -0.06077005, + 0.021963948, + 0.042043194, + -0.023430372, + -0.02484304, + 0.0185215, + 0.038526822, + 0.044001296, + -0.07172363, + -0.0057142638, + -0.005894572, + 0.0017134076, + 0.0060733673 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.0.json b/common/search/src/test/resources/test_documents/images.different-licenses.0.json index 395f108b5..cf03ff4f8 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.0.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.0.json @@ -1,1339 +1,5250 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.505703Z", - "id": "45peyutt", - "document": { - "modifiedTime": "1997-11-05T06:19:21Z", - "display": { - "id": "45peyutt", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.301407Z", + "id" : "j242uruj", + "document" : { + "modifiedTime" : "1976-11-06T16:07:21Z", + "display" : { + "id" : "j242uruj", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#3D14A0", - "source": { - "id": "yqts0coj", - "title": "title-QqPyuxbr58", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#6EFF53", + "source" : { + "id" : "yqts0coj", + "title" : "title-QqPyuxbr58", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "45peyutt", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "yqts0coj", - "sourceIdentifier.value": "vWebpA5WHf", - "identifiers.value": ["vWebpA5WHf", "wyJzS2SuiH", "rAOB2RuvBb"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-QqPyuxbr58" + "query" : { + "id" : "j242uruj", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "yqts0coj", + "sourceIdentifier.value" : "vWebpA5WHf", + "identifiers.value" : [ + "vWebpA5WHf", + "wyJzS2SuiH", + "rAOB2RuvBb" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-QqPyuxbr58" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 7.066063e-4, -0.0095007485, -0.0100372415, -0.015782973, -0.0123699, - -0.0025268088, 0.0017231766, -0.00409922, -0.008527382, 0.02180986, - 0.0242909, 0.022885395, -0.031216597, -0.003600539, -0.0057272743, - -0.004973748, 0.008368312, -0.0044053737, 0.017846677, -0.020429006, - -0.01443837, -0.0010193295, 0.026925078, 0.00861229, 0.01650864, - -0.031401325, -0.0041301753, -0.034204036, 0.021543533, 0.013668913, - -0.012864686, 0.019200908, 0.0094847195, -0.013023286, -0.007603183, - 0.007971356, 0.015670557, 0.013920388, -0.017807312, -0.016913043, - 0.0024214408, -0.018321266, -0.02306122, -6.797112e-4, -0.019287648, - -0.007823132, 0.004240015, -0.0229506, 0.013591789, 0.012490665, - -0.011160767, 0.04237082, -0.010706821, -0.0043585724, 0.0242769, - 0.028195057, -0.020002319, -0.009140362, -0.015924621, 0.023969537, - -0.016130734, -0.007470803, 0.0039746766, 0.0038711468, 0.024847012, - 0.019027535, -0.0048911762, -8.8370254e-4, 0.012129296, 0.0056792228, - -0.027144138, -0.012979429, -0.002373918, 0.0113595985, -0.018491738, - 0.010772764, 9.688494e-4, -0.005200933, 0.005675438, -0.029610528, - 0.007977253, 0.008538856, -0.00730363, 0.001935085, 0.0013710636, - -0.022069965, -0.011386573, -0.017186707, -0.03247286, -0.029573353, - 0.009046953, 0.013841954, 0.0021394151, 0.004550813, 0.014904742, - 0.014216466, 0.007895497, -0.022961803, -0.023799306, 0.020814866, - -0.023936646, -0.019612482, 0.01984465, 0.011890698, -0.003401682, - 0.010121602, 0.013898828, 0.007024018, 0.039287068, -0.02645019, - -0.0066599236, -0.0048169857, 0.004704871, 0.018661803, -0.03286907, - -0.010034721, 0.026303958, 0.006694666, 0.010765731, -0.015076057, - -0.027961172, -0.0038908287, -0.011391359, -0.010033695, 0.0057717, - -0.0066406652, 0.012261974, -0.0026873378, -0.012849572, -0.015898446, - -0.0042691715, -0.021232905, 0.0041731563, 0.015324208, -0.011699412, - 0.0062336447, 0.001058024, 0.0052437717, 0.0048324047, 0.005667929, - 0.009204825, 9.6119655e-4, 0.010193867, 0.017312538, -0.009838262, - 0.014752278, -0.021993151, -0.013838959, 0.0076896185, -0.020154556, - 0.0041698064, -0.01612424, -0.0023785527, -0.0037418737, 0.008945946, - -0.0074252845, 0.025774615, -0.0012723239, -0.014839859, -0.02415538, - 0.0034901465, 0.014570716, -0.027534153, 0.004953311, -0.002298105, - -0.017809443, -9.2004053e-4, -0.009452402, -0.020836188, -0.022428248, - 0.019940332, 0.009288342, -0.013254487, 0.016222758, 0.016890213, - 0.0045354497, 0.009403425, -0.011589004, -0.015939137, -0.005813982, - 0.011808289, 0.0042188135, 0.011635833, 0.026298642, 0.02061602, - 0.0041248286, -0.0042839693, 0.006289741, -0.0025276921, -0.020192267, - -0.0013813324, 0.023964943, 0.020511383, -0.019958733, -0.006695334, - -0.0056383717, 0.008838018, 0.02546502, 0.0063987565, 0.008550641, - -0.008175674, -0.009870554, 0.012097316, -0.0045511452, 0.00971446, - 0.010609424, 0.03239468, 0.010421334, -0.003114512, 7.722311e-4, - -0.0155543415, 0.0074104327, -0.0015768422, -0.021089774, 0.023176445, - -0.01311282, -0.0092691025, -0.010256133, 0.035714485, 0.02131895, - 0.011765187, -0.012105519, 0.0073397234, -5.5110117e-4, -0.01992203, - 0.028203689, -0.012026788, 0.012781469, -0.026668029, 0.0031728183, - -0.01412058, 0.0030947935, -0.029179746, -0.015038746, 0.018691685, - 0.0030225387, 0.034687284, -0.012691118, 0.009182172, 0.0037359353, - -0.008883266, 0.014591395, -1.6015189e-4, -0.02025381, 0.006552429, - -0.0068224594, -0.0010966418, 0.004160665, -0.008294972, 0.02293259, - -0.01567856, 0.006041303, 0.008173516, -0.004585213, 0.014107488, - -0.021371963, -0.028135382, 0.010876721, 0.029776225, 0.0017395448, - -0.01599785, -0.0077463286, -0.018050501, 0.008957849, 0.013446433, - -0.01386048, 0.0051480336, -0.013779598, -0.017136784, -0.0057833595, - 0.010535648, 0.02589457, -0.02064157, 0.008203542, -0.03501125, - -0.004253213, -0.020092184, 0.013379962, 0.0071497066, -0.017840594, - -0.014002219, 0.007910019, 0.015440197, 0.019206012, 0.007985125, - 0.003572285, 0.0046603186, -0.037753988, 0.030302063, -0.0041268244, - -0.0040915515, 0.0030142483, 0.014274113, 0.008979059, 0.019927317, - 0.012741538, -0.023870738, -0.03780957, -0.0038787143, 0.0045106863, - -0.015978696, -0.01595374, -0.023954136, -0.0017091549, 0.004615546, - 0.01803332, 0.016285948, 0.010537809, -0.0055684815, 0.012844051, - 0.017242616, -0.006003937, -0.0144803915, 0.020420408, -0.01781413, - 0.03126805, -0.002161689, -0.021250982, 0.006939907, 0.011625843, - -0.009885301, 0.009895934, -0.012845798, -0.02821062, 0.010018625, - -0.013725605, 0.017289164, 0.02061132, -0.009280008, 0.007825554, - 0.009356675, -0.024131047, 0.011444271, -0.020938843, 0.01001313, - 0.003007088, 0.009543408, 0.0033826968, -9.5977035e-4, 0.025743313, - -0.0090370225, 0.019058784, -0.007213893, -0.004708398, 0.017906895, - -3.8208793e-5, -0.0305957, 0.0016968685, -0.029107274, -0.007359067, - 0.01386585, -0.018175734, -0.014200107, 0.0020236087, 0.022640081, - 0.002756338, 0.033880178, 0.001554892, 0.0060958657, 0.0049688355, - 0.03154414, -0.0043111127, -0.002757204, -0.042790953, -0.0033200034, - -0.021396626, 1.947469e-4, -0.011319716, -0.0069355243, -0.022700666, - 0.008311167, 1.283019e-4, -0.0125497775, -0.008973361, -0.0013373629, - -0.017954601, 0.0035925335, 0.014910346, -0.0074513564, 0.011590899, - -0.0030318664, -0.0034937668, 0.0064394237, -0.011620072, -0.045543376, - -0.012126365, -9.67137e-4, -0.013911669, -0.011101795, 0.017930506, - -0.008815666, 0.008379247, 0.0044617285, -0.009993632, 0.006931156, - -0.014807743, 0.002761149, -0.012309044, 0.013813744, 0.017117426, - 0.027174262, 0.024244878, 0.012809025, 0.008759639, -0.0017373265, - -0.026566697, -0.004036337, 0.018755497, -0.027545262, 0.05911164, - 0.015452382, 0.030340258, 0.016384587, 0.027780147, -0.011659549, - 0.01290825, -0.037809946, -0.0077970144, -0.024620662, 0.026712326, - -0.005701872, -0.011355512, 0.0132711455, -0.015747428, 0.014314146, - -0.028247578, -0.014587564, 0.027347375, 0.0023708444, 0.012565022, - -0.0031206822, -0.020861005, 0.022144575, -0.0011103962, 0.0072052274, - -0.008863235, 0.019223845, 0.006272488, 0.0010656877, 0.015179414, - 0.0035641508, 0.008440626, 0.0019589073, -0.009238109, -0.017274974, - 0.004682001, -8.885957e-4, 0.016712343, 0.004743316, 0.01055412, - 0.017787036, -0.006250404, 0.025266875, -0.008296987, 0.01243095, - -0.008769097, 0.029075963, -0.0059678964, 0.007856272, -0.026663113, - -0.012733465, 0.002285705, -0.009559191, -0.008499231, -7.903846e-4, - 0.017356612, 4.679781e-4, 0.0205959, -0.0057688523, 0.0165486, - -0.025850974, 0.011643067, -0.0062860316, 0.015200472, -0.029233875, - -0.02547424, 0.017034711, -0.012960493, -0.012952147, 0.009272981, - 0.02067799, -0.002315436, 0.02782909, -0.021375485, 0.0063171047, - -1.18966755e-5, 0.0115641365, -0.014005066, -0.013910064, -0.004245055, - -0.006153757, 0.002218291, 0.006426899, 0.016235033, 0.014488497, - -0.008296516, -0.018243602, 0.021427397, 0.0111106755, -0.039581917, - -0.009724163, 0.006790239, -0.02475135, -3.8108998e-4, 0.012427092, - -0.011442941, 0.0025905287, 0.014205724, -0.005758555, 0.009695659, - 0.0010303679, 0.01305328, -4.6945212e-4, -0.0011952791, -0.0051484588, - -0.0073498357, -0.0164205, 0.0024731308, -0.015434604, -0.017395146, - -0.020516643, 0.008204673, 0.016045768, 0.0015196286, 0.0095554385, - 0.031270713, -0.013688358, -0.014204318, 0.013813478, 0.010440572, - 0.0040231724, 0.0033781242, -0.008761483, 0.0029402294, 0.031572808, - -0.019297367, 0.005300884, 0.02471682, -0.024697913, -0.019256193, - 0.004138025, 0.011628251, 0.0061961845, 0.018244894, -0.016978547, - 0.0044170953, 0.030250303, 0.007730816, 0.023238972, 0.006795034, - 0.009262595, 0.019495659, -0.011820915, 0.01412444, 0.018989284, - -0.012129531, 0.011674377, 0.01939052, 0.03050945, -0.0016990734, - 0.011161695, 0.004717657, 0.0028811428, -0.013300842, 0.007726569, - 0.012853768, 0.005639286, 7.316623e-4, -0.008908782, -0.029855128, - 0.0016853433, -0.020367485, 0.010733969, -0.044668537, 0.017052544, - 0.0059082457, -0.015149012, -0.009312784, 0.022600485, 7.7530043e-4, - 0.009885651, -0.008210032, -0.019684957, -0.0048401556, 0.029030163, - -0.017561862, 0.009418106, 5.7547365e-4, 0.017076954, -0.0022509347, - 0.004775557, -0.0025240371, 0.010969233, -0.03296587, 0.00247846, - 0.016763212, 0.0075529437, -0.003337146, 0.029540619, -0.0061328807, - -0.01827565, -0.011401964, -7.0207333e-4, 0.014003532, -0.0044277213, - -0.008235618, 0.018327225, -0.019401625, -0.0019512995, 0.022100626, - 0.005577367, -0.010396225, 0.02522658, -0.0047595045, -0.008419393, - 0.020209052, -0.029932776, 0.019090082, 0.008273796, -0.029022343, - 6.6849598e-6, 0.007994822, 0.015034532, 0.007540374, -0.0028615312, - -2.676902e-4, 0.026362518, 0.008875867, -0.0059878933, -0.012127723, - -0.0028588679, -0.0031274136, 0.008330149, 0.0056665665, -0.010638915, - 0.0048661474, -0.037731733, 0.0075832717, -0.0059605776, -0.005801396, - 0.021036757, -0.0084997285, -0.019323621, -0.019732732, 0.004671418, - 0.004824358, 0.007286291, 0.01342517, -0.0043978826, 0.0031578934, - -0.013001756, -0.008759388, 0.006572191, -0.012786771, -0.0041528083, - 0.009883927, -0.004500366, 0.024471162, 0.010779958, 0.00854838, - 0.008361119, -0.016806213, -0.0068653305, -0.015278893, -0.0031263186, - -0.03095654, -9.945399e-4, -0.0027264396, 1.5912809e-5, -0.0037202355, - 0.008530154, -1.7483886e-4, -0.027836505, 0.037579823, 0.0050676037, - 0.021771405, 0.006949807, -0.017605009, -6.0367794e-4, 0.0152636515, - 0.009899635, -0.005446097, -0.0048880912, 0.014185197, -0.012393068, - 0.010238637, -0.010388173, 0.005915406, 0.012144363, -0.008307782, - -0.0025825263, -0.008586083, -0.006529893, -0.009714835, 0.0020723548, - -0.009279931, 0.002827133, -3.4371327e-4, 0.026347904, -4.7863432e-4, - 0.0031421098, 0.0025419076, 0.014340163, -0.011553699, -0.00700637, - -0.0029685404, 0.0027214463, 0.0034975566, -0.021088528, -0.034631018, - -0.0142880315, 0.024860835, -0.003659156, 0.017057316, -0.013205402, - -0.02470932, 0.012951828, -0.009078333, -0.016125882, -0.005172043, - -0.01498392, 0.015449143, 0.005980677, -0.010556727, 0.014916019, - -0.004924262, -0.024171913, -0.0081204465, 0.015819022, -0.008795868, - 0.0060610296, -0.012693227, 0.019147374, 0.0010606247, 0.012857898, - -0.010960321, 0.016454149, -0.011642868, 0.021754755, -0.0046571176, - 0.016784519, 0.012589199, 0.027040135, -0.0064253015, -0.005423747, - -0.007825043, 0.0114129055, 0.0023123275, 0.0062354677, -0.036543705, - -0.036770824, -0.004119257, -0.0036365688, -0.0012519489, -0.04771707, - -0.009670477, 0.008948267, -4.5650825e-4, 0.019502569, 0.011013928, - -0.014349497, 0.021200212, 0.013355996, 0.0013697116, 0.007132652, - -0.002749139, -0.004589096, -0.008972681, 0.02483198, 0.003090939, - -0.0144928405, -0.008083829, 0.016051492, 0.013339187, -0.0067900466, - -0.0015666707, 0.0026004675, -7.5022486e-4, 0.01728485, -0.009177343, - -0.006734778, 0.0019332856, 0.0063206684, 0.007332368, 0.013360041, - 0.023624897, 0.018256871, 0.0068898173, -0.015277456, -0.008093066, - 0.009909407, -0.002764633, 0.018639807, 0.023267541, -0.0018154894, - -0.0036561333, -0.0169085, -0.027189398, -0.024872798, 0.015713058, - 0.008115952, 0.013523191, 0.003167048, 0.037076194, -0.0043861866, - 0.010278698, 0.0077291094, 0.020481395, 0.008928815, -0.012714124, - 0.009085941, 0.010658203, -0.0063751554, 0.007931565, -0.01158479, - -0.008056037, 0.0016263095, 0.0010781749, -0.002020195, 0.022918444, - -0.0031520687, 0.01188705, 0.012024811, -0.0022180846, -0.003936893, - -0.010039315, -0.017611815, -0.023377223, -0.01645084, 0.002154041, - -0.020648243, -0.010702741, -0.009464858, 6.5451494e-4, -0.019297684, - -0.0010819075, 0.0019599085, -0.0060727196, -0.019395115, -0.011650136, - -0.004730333, 0.0064862645, -0.005773971, 0.023961592, -0.018061819, - 0.014761062, -0.008969162, -0.032557126, 0.0010330498, 0.011442068, - -0.021742577, 0.005417224, 0.023013068, 0.010750386, 0.002987912, - 0.026088577, 0.02569026, 0.009144064, 2.692286e-4, 0.022772724, - -0.0062375404, -0.007893819, 0.0109515665, -0.017767709, 0.00399128, - -0.020772012, -0.011535524, -0.0036242988, 0.020706812, -0.0069541596, - -0.019546771, -0.001923671, -0.028227802, 0.007090658, 0.008217221, - 0.003961101, -0.015671343, 0.007569006, -0.006762049, -0.008406598, - -0.007517646, 0.017085226, -0.01913411, -4.7604504e-4, -0.018295834, - 0.017519966, -0.010110726, -0.0059792786, -7.224093e-4, 0.03616233, - 0.018485116, 9.91374e-4, -0.002943542, 0.015158892, -8.778998e-4, - -0.0130526805, -0.0014515697, 0.017128287, 0.008168653, -0.013669377, - 0.013450625, 0.010635795, 0.014341471, -0.016559051, 0.011648613, - 0.006647227, -0.009857553, 0.034614086, 0.023317445, 0.029631369, - 0.014277279, -0.02368768, -0.003555413, 0.019118864, -0.0146874245, - -0.018155059, -0.06388179, 0.0032381339, -0.011720348, -0.007818082, - 0.013765163, 0.0037177466, -1.7430719e-4, -0.022049857, 0.009934012, - -0.02619724, -0.015519326, 0.0023228463, 0.018458465, -0.002647879, - -0.012435855, 0.024210073, 0.010267519, -0.013339167, -0.020324022, - 0.015516115, 0.010501048, 0.022502476, 7.2252436e-4, 0.032967377, - 0.017917449, -0.0023324315, 3.2289233e-4, -0.005279212, 0.00588224, - 0.019502196, 0.005145421, -0.0065273396, 0.010574308, 0.0015123431, - 0.021939985, 0.0056451787, 0.035217434, 0.002329927, 0.0017111361, - 0.029751062, -0.0038202815, 0.007858751, -0.004640047, -5.3605204e-4, - -7.9417793e-4, 0.005602293, -0.0031517665, -0.026368868, -0.004422044, - -0.033006195, 0.020893674, -0.013914995, -0.009724576, -0.020043267, - 0.0047777602, 0.01592264, 0.022214688, 0.006632843, 0.01206061, - -0.007521095, 0.0013865741, 0.033875734, -0.018487837, 0.014781186, - 0.011791975, 0.03068471, 0.005513949, 0.02437197, 0.019813731, - 0.0137763, 0.0013525811, 0.0011807779, -0.015808577, -0.005709241, - -0.008467558, 0.022408692, -0.00336122, -0.013902358, -0.004151754, - -0.017202523, -0.024736714, -0.009225871, -0.022610268, -0.019642157, - 0.0012393509, -0.016535433, -0.0044528744, 0.008680379, 0.01599564, - -5.4998574e-4, 5.8737624e-4, 0.005836315, 0.008461392, -0.04149666, - -0.018302754, 0.0018026241, 0.010055592, 0.011347918, 0.0153387105, - 0.009696218, 0.0184559, 0.011123602, -6.939978e-4, -0.007367709, - -0.012597397, 0.007881385, 0.0071528, -0.021742724, -0.005904476, - 0.012142987, 0.02530994, 0.011591464, 0.00997987, 0.012477636, - 0.030385938, -0.009685856, 0.0035557225, 0.017528461, 0.005634581, - -0.01835152, 0.01559573, 0.002475908, -0.010316283, 0.0053535937, - 0.0076446696, -0.022508344, 0.0036072782, -0.011989027, 0.019851632, - 0.0073444704, -0.021137077, -0.00202115, 0.028679274, 0.0018938126, - -0.013275164, 0.005011456, -0.019019745, 0.014818969, 0.002683701, - 0.0042307135, 0.0057778605, -0.0068851737, -0.005544556, -0.008492402, - -0.005393654, -0.018679978, -0.015814282, 0.012114819, 0.026858833, - 0.019373702, -0.053099126, 0.0021442936, 0.024215246, -0.0028705483, - 0.006891744, -0.0083431965, 0.015751088, -0.01321332, -0.003747522, - -0.0010397743, -0.0063472027, -0.006022653, 0.0059861536, 0.0068080355, - -0.022267835, -0.0059131193, -0.011720762, 0.0015034318, 0.023965226, - -0.0013790305, -0.010273996, 0.024463668, -0.032081243, -0.018403584, - -0.0014375935, 0.030641349, -0.0018419102, 0.027815776, -0.002402196, - -0.006731839, 0.026250228, 0.017330412, -0.008412397, -0.013890127, - 0.014606988, -0.008226451, 0.012810707, -0.005810447, 0.02079368, - 0.0014171858, 0.016971812, -0.04244227, 0.031349488, 0.017098032, - -0.0057106544, 0.020991541, 0.015855713, -0.006782849, 0.004330199, - 0.013719115, 0.0059482795, -0.0062952642, -0.014327695, 0.003048756, - 0.0033567713, -0.001172737, 0.0091997655, 0.013254943, -0.009289549, - 0.007994909, 0.015245575, -0.009547134, 0.002861607, 0.019994862, - -0.017165618, -0.012929216, 0.0034160842, 9.7598555e-4, -0.021149123, - -0.011063461, 0.009043985, -0.008433914, 0.0011438451, 0.018847354, - 0.0077803377, -0.028845355, -0.0062919916, -0.0012344455, 0.010870643, - -0.01263629, 0.011266388, 0.020861527, -0.011346024, -0.0109578725, - -0.0025331695, 0.027135411, -0.012666853, -0.013095119, 7.6074747e-4, - 0.004954932, 0.009961505, 0.015065556, -0.021410443, -8.5474015e-4, - 0.0068894173, -0.020997498, -0.0019262489, -0.0021134748, 0.003124907, - -2.3994096e-4, 0.016669357, 0.02676617, 0.01835993, 0.0065814387, - -0.00451591, 0.006686015, 0.018816836, -0.006544258, 0.002468689, - -0.0069950516, -0.017582329, -2.622148e-4, 0.017794687, -0.006975163, - 0.013684422, -0.01809673, -0.0069302544, 0.016889587, 0.005816805, - 0.0069010337, 0.0022151691, 0.0033472902, 0.0044542816, 0.0012724178, - -0.02260493, 0.008742648, 0.022408029, 0.0138725145, 0.021754207, - 0.010588405, -0.01018912, -0.007376341, -0.0028957066, -0.0036673013, - -0.008952039, 0.006447759, -0.020932399, -0.0012885946, -0.009734182, - -0.0063246144, -0.02400657, 0.0060935067, -0.005092511, -0.022247963, - 0.0032379758, 0.017879216, 0.019630382, -0.017430762, 0.025473557, - 0.0016980744, -0.003354165, -0.011148838, 0.009926447, 0.015522182, - -0.009075531, -0.008231839, 0.0086839525, 0.022970313, 0.009887696, - -0.028401565, 0.0067498917, 0.011903847, 0.03148956, 0.009949974, - -0.007256867, -0.002565419, -0.013552859, 2.9788053e-4, -0.0010263763, - -0.012193907, -0.03364418, 0.028917968, -0.014825346, 0.0050787027, - -0.011517268, -0.013364765, 0.01507445, -1.11936926e-4, -0.009606594, - 0.025822626, 0.0039669243, -7.0651685e-4, -0.02378005, 0.022499964, - -0.0068161353, -0.01534345, 0.013494363, 0.009636077, 0.006136777, - -0.013845024, -0.011060436, -0.025535561, -0.0076228664, -0.01850787, - -0.013061592, 0.0032050023, -0.0014239431, -0.00410833, 0.005434683, - -8.688577e-4, -0.008422542, 0.0037012862, 0.002435965, -0.016145306, - -0.017699009, -0.023727102, 4.5555044e-4, -0.01633523, -0.009660111, - -0.034493387, 0.017392367, 0.0025690983, 0.0129714105, 0.017749162, - -7.5254495e-5, -0.03449739, -0.003508411, -0.00680332, 0.010793384, - -0.010475363, 0.02951503, -0.02086067, 0.009219094, 0.023635147, - 0.040671714, 0.03081107, 0.005907145, -0.020259775, 0.011073924, - -0.002970999, 0.02146898, -0.01637298, 0.04501483, 0.0117095215, - 0.010024877, -0.02335697, 0.007024665, -0.034369953, 0.013782467, - 0.044367727, 0.02919425, 0.033845916, -0.0029916423, -0.0010338005, - -0.0044262116, -0.008149238, 0.0035724367, 0.011946125, 0.0249824, - 0.006748923, -0.020290356, -0.024068044, -0.006206001, 0.007143397, - -0.0072502326, -0.0014482359, -0.007696752, -0.0127139045, -0.00703681, - 0.011322874, -0.004968801, -0.0087293545, -0.006950244, 0.010837107, - -0.015185224, 0.0039404277, -0.021055846, -0.018006371, -0.004582198, - 0.007459672, 0.028607354, 0.002383608, 0.029703088, 0.013038162, - -0.024674915, -0.011044448, -0.014195037, -0.010823703, 0.017171377, - -0.010737322, -0.0119150225, 7.17606e-4, -0.0034865246, -0.008748833, - -0.006999528, 0.021385754, -0.017459456, 0.026132803, 0.022429647, - -0.01877054, 0.003867238, 0.0037055719, -0.02537523, -8.282705e-4, - 0.004566052, 0.0054290425, -0.003612572, -0.032491658, 0.004120096, - -0.013717389, -0.010679966, -3.5076274e-4, 0.0032121916, -0.0079224985, - 0.0044149626, 0.017991262, 0.010560802, -0.005859249, 0.016883414, - -0.0060674194, -0.02470244, -0.026110336, 0.019726872, -0.0010569027, - 0.011828613, 0.02816283, 0.013389681, 0.013356223, -0.0035888962, - 0.006458779, -0.001582301, 0.020619933, 0.017734114, 0.0023974336, - -0.025342632, 0.0022155696, 2.0051403e-4, -0.019603088, 0.004357324, - 0.0052102236, 0.007070418, 0.012816641, 0.02329313, -0.016486654, - -0.010889378, -0.02315633, 0.0045951274, -0.022300772, 0.034930844, - -0.013323819, 0.013840101, -0.0071807546, -0.0013212916, 0.015987698, - -0.012014335, 0.01095312, 0.016796678, 0.00881644, 0.011225049, - -0.015204401, -0.0049558273, -0.017522942, -0.02531603, 0.0022220272, - 0.008446552, 5.007807e-4, -0.0049396213, -0.0011555539, 9.785098e-4, - 0.02129552, 0.006549253, 0.0031840892, 0.0038243863, -0.011446142, - -0.0063331565, 0.013651072, -0.008350149, -0.007386447, 0.004478717, - -0.010215106, 0.021155756, 0.010347063, -0.02206475, -0.003384421, - -0.0035435236, 0.017107053, -4.6977e-4, -5.2035216e-4, -0.02296066, - -0.0044773747, 0.00989425, 0.0012219468, 0.009126592, 0.0083420845, - -0.003969817, -0.009712158, 0.021136118, -0.0034707708, -0.0040318007, - 0.0075033577, -4.6425138e-4, -0.0044196695, -0.0034744572, -0.019247817, - 0.018712275, -0.023332205, 0.0018251422, -0.02259978, -0.0035445204, - -0.0070507373, 0.003877302, -0.025169373, -0.009499628, -0.0072576776, - 0.0025223943, 0.0027026844, 0.008343993, -0.0031899223, 0.03193284, - 0.0035382384, 0.005199599, -0.024138605, 0.009494934, 0.014500763, - -0.022235343, -0.012881996, -0.0046788324, 0.001813539, -0.006141032, - -0.00879409, -0.0028756931, 0.042500183, 0.010956209, -0.014597737, - -0.0050321445, 0.0054885847, 0.016656872, 0.0017762122, 0.018104343, - 0.0055942545, 0.010044285, 0.006479743, 0.004021972, 0.023378538, - -0.030948943, -1.3273125e-4, 0.027074782, 0.008855595, 0.01186069, - -0.018607434, -0.014565571, 0.0091815395, 0.022665773, 0.010021506, - -0.0057155793, -0.033781894, 0.030029405, 0.0056688995, -0.0102128675, - 0.0017050927, 0.0092139775, 0.024205247, 0.004284938, -0.020598313, - 0.014466499, -0.01676653, -0.016139584, -0.03292458, -0.02424199, - 0.007510714, -0.0056432867, -0.019498954, 0.0042946488, 0.022832507, - -0.0036543405, 0.0049954522, -0.011813579, -0.013496089, 0.0062681874, - -0.0121188555, 0.012927452, 0.0046135127, -0.008484083, -0.02080543, - 0.01967646, -0.0181251, -0.021421595, 0.0152068455, 0.014850736, - 0.024572108, -0.009916271, -0.0074141524, 0.014738795, 0.019808698, - 0.01399519, 0.01125303, -0.011059818, -0.004005904, 0.005119935, - 0.0065390444, -0.0027533777, -6.259723e-4, 0.035734333, -0.0199969, - 0.010953958, 0.0025620575, 0.024666974, -0.016068038, -0.007768051, - 0.008027963, -0.015760828, 0.002673953, -0.0016393731, -0.040686395, - -0.009247551, -0.017000897, 0.026863307, -1.2632437e-5, 0.0050649797, - 0.018402737, -0.02490907, 0.01972559, -0.00621936, 0.008104725, - 0.035651553, 0.027501237, 5.613725e-4, 0.004314597, 0.016180245, - -0.007597794, -3.7266474e-4, 0.0027932988, -0.018167727, -0.0042515406, - -6.948446e-4, 0.022800332, 0.018583525, -0.014623229, -9.365268e-4, - -0.012465622, 0.0058631534, 0.01429073, -0.021813376, -0.014356684, - 0.021794992, -0.017184447, -0.011162835, 0.0012536423, 0.010540576, - -0.0070499177, 0.0192622, 0.007003924, 0.0067217327, 0.006217653, - 0.011274385, -0.010677655, -0.013331587, 0.0198932, -0.00790067, - -0.012126966, 0.0032680377, -0.0048389346, -0.010805712, -1.00460544e-4, - -0.021876525, 0.006855567, 0.01083779, -0.025466552, -0.019729953, - 0.014379661, -0.022845177, 0.011256953, -0.012671351, 0.01648414, - 0.010210061, -0.011855189, -0.0061048907, 0.02555141, -0.010718857, - -0.015568415, -9.6680893e-4, 2.2234574e-4, -0.023809155, 0.024354104, - -0.0142112905, 0.0040984116, 0.019356616, 0.006265271, 0.009944225, - 0.006713903, -0.009965485, -0.006625854, 0.015422417, -0.015030729, - -0.013069444, -0.01850178, -0.01805044, 0.002713722, -0.009803188, - -0.00628534, 0.010086537, -0.031144157, 8.9930015e-4, -0.0062978575, - 0.019726653, -0.028361384, -0.0047099628, 0.0041645076, -7.5512537e-4, - 0.020602185, 0.02489352, -0.009369052, 0.010441048, -0.00781178, - -0.008229784, 0.01387714, -0.006422016, 0.009592505, 0.011020222, - 0.024516819, -0.0024406624, -0.023531485, 0.012481398, 0.013222088, - -0.026592374, -0.004928566, 0.007214308, -0.02377561, -4.7587504e-4, - -0.018480245, -0.0035832317, 0.005676124, -0.0027708698, -0.03208611, - 0.009347686, -0.012120725, 0.0066437633, 0.0064044786, -0.010490102, - -0.010171511, -7.8443985e-4, -0.036696855, -0.028447248, -0.016734742, - -0.0025890965, -0.0022694473, 0.0036707383, 0.03512251, 0.009683799, - -0.0071941568, 0.017090792, -0.017395921, 0.005925453, 0.016607862, - -0.011537769, 0.0019849695, -0.013552983, 0.0057625966, -7.813583e-4, - -0.0042706346, -0.012358289, 0.02420687, -0.0076416587, 4.2468478e-4, - -0.034665864, 0.0022488944, 0.014106191, 0.021415787, -0.008859283, - -0.009761186, -0.0011986609, 0.014873123, -0.016338088, -0.02549473, - 0.0028476587, -0.0073712603, 0.011066717, 0.005188933, -0.016698547, - 0.0076027173, 0.03269166, 0.008638108, -0.013802542, 0.008007973, - 0.027628172, -0.026266335, -0.004667194, 0.020121856, 0.0044472883, - 0.0044740746, 5.45183e-4, 0.017210979, 2.7317248e-4, -0.0044961, - 0.008964789, 0.018511685, 0.0024240096, -0.0043543694, 0.016878413, - 0.010879065, 0.020467043, -0.019888945, 0.01826282, -0.009749028, - 0.025662785, -0.027677098, 0.012183271, -0.015584276, -0.009751752, - 0.018920481, 0.0014623429, 0.0067388546, 0.0141025875, -0.015571226, - -0.027952252, 3.7076138e-4, -0.025869517, 0.010952523, -0.022100678, - -0.022638358, 0.018321488, -0.020824535, 0.015224814, 0.0073130066, - -0.007559409, 0.0026926193, 0.011047516, -0.0016131164, -7.347054e-5, - 0.012725175, -0.018513158, 0.032202374, 0.008063388, 0.0032891242, - -0.013898541, -0.020398116, 0.015822345, 0.008136843, -0.0023948655, - 0.020371867, -0.001090835, -0.0076216017, -0.03564649, 0.0036224225, - 0.006266452, -0.013826413, 0.01944612, 0.020759458, -0.0060009803, - -0.013478822, 0.011513028, 0.0027648218, 0.013096149, 0.023394017, - 0.01420596, 0.023705529, 0.0030897094, 0.0052748444, -0.010243108, - 0.018434351, 0.024033198, -0.011376273, 0.0061788363, -0.038090557, - 0.0078103906, 0.016532907, -0.0151438145, -0.020476742, -0.0025102207, - 0.0073986338, 0.011300119, 0.0038196538, -0.019802667, 0.0070612566, - 0.015449817, 0.020311931, -0.0043943557, -0.028466398, 0.003263114, - -0.012156172, -0.029927619, -0.013727065, -0.022804521, -0.013481827, - 0.005521524, -0.0054958253, -0.0029704943, -0.025598573, -1.4674534e-4, - -0.0037005297, 0.0100110965, 0.029305259, 0.0067903637, 0.006761663, - -0.011524573, 0.005571952, -0.04226679, -0.002755713, 0.0103288125, - -0.015793202, -0.0063980883, -0.0031050409, -0.008481416, -0.01640178, - -0.041862242, 0.0077663497, 0.0043769595, 0.01387485, -0.012208208, - 0.039714724, 0.007179999, 0.00198028, -0.008428951, -0.023372322, - -0.0030971747, -0.0054396046, -0.01409069, 0.002218508, -0.0067482544, - 0.029510843, -0.0030427962, -0.0017415854, 0.008381488, 0.03259809, - 0.009272476, -0.033330504, 0.0178248, 0.0039340267, 0.025183808, - -0.011659914, -0.02571747, 0.002380206, 3.7056627e-4, -0.015378882, - -0.0071419943, 0.0073340856, 0.0039868434, 0.0051684817, -0.012833272, - -0.03697839, 0.03271847, 0.021056175, -0.015805092, -0.009695621, - -0.007846166, -0.010103488, -0.00887406, -0.013441732, -0.005428057, - -0.012058301, 0.013549475, 0.012183519, -0.023383396, -0.008660128, - -0.01601755, -0.025345106, 0.026333818, 0.0012299306, 0.03262913, - -0.007899665, -0.0029997744, 5.220782e-4, -0.013164278, 0.002451732, - -0.020179583, 0.013226231, -0.018214017, -0.018367818, 0.008374961, - -0.02295906, -0.013893782, -0.0015928587, -0.013448216, -0.0072566485, - -0.010809149, 0.012125416, -0.021807024, 0.0063570985, -0.022213861, - -0.006255499, 0.021190278, 0.0021465875, -0.0035735106, 0.022912277, - -0.026661955, -0.029261528, -0.015168702, -0.031589244, 0.01580377, - -0.0029333956, -0.014731895, 0.013924607, -0.0020614166, 0.020304106, - 0.018612947, 0.024706606, 0.001362777, 0.01875056, -0.009464293, - -0.0040134583, 0.00973168, -0.013637275, -0.018700296, -0.026548145, - 0.032976117, 0.019668117, -0.024643375, -0.00246447, -0.0044161375, - -0.026195044, 0.018789742, -0.021059003, -0.049135007, -0.018346004, - 0.0041403524, -0.0030615593, 0.0056162905, -0.0070321793, -0.015310741, - -0.015998604, -0.009052733, -0.0015626157, 0.022527464, -0.0053398088, - 0.0017674881, 0.019903762, 0.015422727, -0.003080215, 0.0103894835, - -0.010385321, -0.007841082, 0.010155389, -0.03180818, 0.010488279, - 0.022612201, 0.0119235385, -0.010382177, 0.009937804, -0.0010434104, - 0.0047103297, 0.022155762, -0.022535132, 0.008908993, -0.016003948, - 0.019523416, 0.021491706, -0.025829472, -0.03134121, -0.009082914, - -0.0093863895, -0.018375903, 0.010975015, -0.015004277, 0.011273438, - 0.011670843, 0.03087354, -0.007774079, -0.018380398, -0.036056504, - -0.012290307, -0.03094265, -0.0024370074, 0.02277097, -0.029012725, - 0.0053722076, -0.018818915, -0.008921204, -0.0013848261, 0.014619105, - 0.013345105, -0.0021458936, -0.01829678, -0.0097459145, 0.010311207, - -0.010292439, 0.0049868966, -0.0037628724, -0.012291581, 0.028803937, - 0.0063637565, -0.022103792, -0.012879002, -0.0035237551, 0.012355515, - 0.016186519, 0.00992631, 0.028299903, 0.0038270543, -0.004874206, - -0.009498484, -0.031162057, -0.0054504164 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.010814743, -0.013036695, -0.020774573, 0.001999562, -0.011079895, - -0.0019067614, -0.027030542, -0.018151684, -0.0121879615, -0.013593215, - -0.015546418, 0.0026485086, -0.021494854, 0.007398592, 0.013968163, - -4.0193668e-4, 0.03453712, -0.015883427, 0.0054173926, 1.4368627e-4, - -0.015086872, -0.006185864, 0.01211134, 0.023229731, 0.0029657837, - -0.0013906072, 0.0055874805, 0.004264927, -0.0194059, -0.0028314488, - 0.019660613, -0.021401264, 0.0029757472, -0.016889496, 0.0013083322, - 0.009631522, 0.034140404, -0.0113438405, 0.00238683, -0.0070044324, - -5.5629597e-4, 0.019130697, -0.03451491, 0.027280426, 0.024976, - 0.03809967, 0.027862424, 0.010938589, 0.012551989, 0.016001033, - -0.0048239315, -0.022147527, 0.018354062, 0.006244239, 0.030321902, - 0.008827644, 0.015881063, -0.011963555, 0.020511469, 0.03111748, - 0.0029360827, -0.028462248, -0.008095264, 0.0018346257, 0.0037748122, - 0.008362496, -0.02417313, 0.020091506, 0.016404986, 0.0066652447, - 0.017725978, -0.008516356, -0.016867366, -0.0011880317, 0.01263575, - -0.022368655, -0.028406896, 0.0054622456, -0.015678834, 0.027740112, - 0.013474327, 0.016985152, 0.033330366, -0.033330638, -0.018547678, - 0.013855213, 0.028007967, -0.006263882, 0.014568572, 0.005327793, - -0.0035416533, -0.009093585, -0.0019254942, -0.017194495, 0.023649538, - -0.019805107, -0.007047834, 0.008927678, 0.011336132, 0.022301452, - 0.0043829526, -0.026945569, -0.025113918, 0.022101715, 0.0025931296, - 0.00869009, -0.0036333962, 0.014472895, -0.025314441, 0.008380751, - -0.0066487794, 0.0013814664, 5.316511e-4, 0.019875376, 0.02212091, - 0.018970562, 0.0045432313, -0.0028125898, -0.017291563, 0.002527219, - -0.02932536, -0.012905113, -0.0019576503, 0.008800057, -0.018507756, - 0.007774769, 0.015894469, -0.038291417, -0.010142084, -0.0063550267, - -0.009023743, -0.03704113, 0.00686199, 0.0110204555, 0.0068889577, - -0.0094550485, 6.9602334e-4, 0.023914427, -0.001254945, -0.008759863, - 0.0072301337, -0.015355994, 0.020744175, 0.023019347, -0.0030088988, - 0.024010368, 0.009964578, 0.0011612676, -0.01510886, 0.014054351, - -0.013153711, 0.004658751, -0.021476923, -0.004547291, -0.011914303, - 0.032632936, -0.012679812, -0.0019655125, -0.014994363, 0.0011033992, - 0.016325256, -0.03848885, -0.0049865087, 0.0102653615, 0.009016886, - 0.038260147, -0.011996166, -0.004665831, 0.011270577, -0.01047394, - -0.014312348, 0.011753141, 0.012126643, 0.0063947844, 0.022758367, - 0.014653392, -0.0059886295, -0.016166415, 0.030174246, -0.006556618, - -0.0040191747, -0.0075805644, 0.0044952445, -1.6381792e-4, -0.003812022, - 0.0028514615, 0.02869565, 3.539873e-4, 0.0063315616, 0.0026859327, - 1.6274462e-4, -6.735059e-4, 0.013906042, -0.021135507, 0.0036472455, - 0.0060684104, 0.029446453, 0.019976674, -0.026689336, 0.026196228, - 0.0050398796, -0.01206443, -0.014947853, 0.020210806, -0.0077484045, - -0.012396692, -6.002781e-4, 0.006303939, -3.1417664e-4, -0.0016924016, - -0.016332278, 0.014663174, -0.0067823045, -0.017506404, -0.01037704, - 0.02542476, 8.8092464e-4, -0.0076439357, 0.002089505, -0.008138607, - -1.387671e-4, -0.0044548875, -0.0048091095, 0.007455446, -0.012953408, - -0.0033864246, 0.0057800375, 0.0051362556, 0.009234961, 0.01645616, - 0.019789135, -0.020664707, -0.028265938, 0.02043796, 0.036830932, - -0.006239843, -0.002387545, 0.0057870084, -0.004365424, 0.008830766, - 0.006447652, 0.0062467037, -0.0020832492, 0.004285922, -0.0038224482, - -0.034950286, -0.009705136, 0.004156539, -0.013158503, 0.001157283, - -0.0063417144, 0.002558346, 0.016638312, 0.0070468704, -0.0028526816, - -0.024103135, -0.0026138984, 0.02092317, 0.035953857, -0.01713204, - -0.013056319, -0.016052641, -0.001417135, 0.020313863, 0.02210034, - -0.0097555, -0.025767986, -0.008293018, 0.04241124, -0.013940344, - -0.01651228, 0.0024145716, -6.558684e-4, -0.016131938, -0.0054218727, - 0.0025632353, 0.021871114, 0.027889185, -0.0023814244, -0.010758738, - 0.021510689, -0.020142183, 0.015381898, -0.016957177, 0.0044313623, - 0.0054508327, 9.6664735e-4, -0.016067185, -0.017961318, -0.002410348, - -0.007895164, -0.021729931, 0.007731583, -6.258074e-4, 0.001487116, - 0.0037429489, 0.009450052, -0.012422315, 0.022807768, -8.85895e-4, - 0.0200761, 0.012113468, -2.4270847e-4, -0.010291092, -0.006254114, - -0.012887648, 0.0018560402, 0.0585229, -0.003133064, -0.011544058, - 0.008232975, 0.012669215, 0.014829778, 0.004480218, -0.007114516, - 0.03240347, 0.026902895, -0.007110489, -0.020028232, -0.005018738, - -0.012032883, -0.010735849, 0.018608214, -0.004470149, 0.020561533, - 0.007000825, -0.032846645, 0.0077767083, 0.013271251, 0.047825128, - 0.015503992, 0.030412327, -0.0215491, -0.0071963887, 0.010569579, - -0.021318525, 0.012140129, 0.029441383, 0.01038667, -0.015738504, - -0.017862504, 0.019596206, 0.016981393, -0.005643607, 0.002722284, - 0.0040581953, 0.008973186, 0.0010695203, 0.0033268828, -0.017235357, - 0.011967699, 0.003948508, -0.024548423, -0.00504907, 0.015879069, - -0.015409079, -0.02766582, -1.03872575e-4, -0.036414847, 0.02262337, - 0.0082980385, 0.0082945675, 0.007704571, 0.013302326, -0.0033220234, - -0.009971116, -0.00817176, -0.0024654202, 0.013046716, -0.032507278, - 0.019815791, -8.234212e-4, -0.0066764224, -0.017332142, 0.003896172, - 0.013345847, -0.0040880144, -0.010617056, 0.0017372826, 0.0069542965, - -0.017073976, 0.01168224, -0.024410529, -0.022993218, 0.01108675, - -0.022615248, 0.003736601, -0.02521248, -0.005480338, 0.015263532, - -0.015864149, 0.020495564, 0.0048119607, 6.801635e-5, 0.020778008, - 0.01654956, -0.007480835, -0.0011725152, 0.036855374, -5.854109e-4, - -8.5731386e-4, 0.019315088, 0.0019081258, 0.020684684, 0.004083359, - -8.3803944e-4, 0.008187652, -0.011365542, -0.010269733, 0.00430406, - -0.020400548, -0.0064847358, 0.0040684473, 0.0062146396, 0.0017695966, - 0.029331984, 0.016024802, 0.014676696, 0.021321775, -0.019364862, - 0.0021004458, -0.0010388157, -0.014304206, -0.024200534, 0.017269017, - -0.004680664, 8.689184e-4, -0.010272148, -0.006530468, 0.011774553, - -0.008307673, 0.0029220434, 0.0012484513, 0.012997497, 0.0011304197, - 0.020759953, 0.011956129, 0.017072435, -5.89482e-6, -0.018423788, - -0.019194208, 0.005405739, -0.024217809, -0.022895366, -0.020085115, - -0.033458628, 0.008416543, -0.0025781898, -0.04041228, 0.013008423, - 0.00572558, -0.0055318996, 0.018642643, 0.020615896, 0.0149634145, - -0.0023552277, -0.0061201532, 0.004642605, 0.010028377, -0.017865103, - 0.014476846, -0.005793131, 0.014659329, 0.022567807, -0.01918655, - -0.0069025788, 7.4867206e-4, -5.241071e-4, 0.009755021, 0.03089412, - -0.0064832726, -0.0072304257, -0.04033131, -0.021726187, 0.012145852, - -0.0054710796, 0.004462473, -0.0061419313, -0.002366196, 0.0076849647, - 0.0037561224, 0.023457495, -0.005005722, -0.011957553, 2.3274036e-4, - 0.016097171, -0.011581167, 0.0027565018, 0.0048774905, 0.030689381, - -0.0065647173, -0.008634685, 0.015936133, -0.022328926, 0.03781948, - 0.0029486353, 0.0040853755, 0.0018463801, 0.0015962892, -0.0044707675, - 0.012548044, 0.02581545, 0.029573364, 0.008614218, -0.004167056, - 0.0054037743, -0.010044667, 0.015394047, -0.002530922, -0.029432716, - 0.026913079, 0.009453763, 0.003926557, 0.011896416, -0.019409502, - -0.007998496, 0.007883271, -0.015054232, -0.0048259096, 2.9490873e-5, - -0.015244821, 0.013809939, -7.0042873e-4, -0.015066452, -0.011275171, - 0.023787828, -0.005947526, -0.008172479, -2.382282e-4, 0.025601314, - -0.006797105, 0.0016889642, 0.009517358, 0.001642045, -0.019707473, - -0.0041574617, 0.006096411, -0.0080560455, -0.0020812235, -0.0119878305, - -0.0071964813, -0.0024469018, 0.006310711, -0.021866314, 0.017003559, - 0.003074014, -0.024306228, -0.011334489, 0.01751569, 0.027039235, - -0.011447164, -0.019080015, 0.013572882, -0.001373621, 0.008726336, - -0.00354946, -0.022710523, 0.006386773, 0.0043222546, -0.0016586733, - 0.017997703, -0.026452897, -0.0037741454, 0.017199393, 0.012134162, - -0.006203107, -0.01032196, -5.4352166e-4, 0.030339181, 1.8453918e-4, - -0.023376632, -0.025566552, 0.015261842, -0.013650107, -5.975884e-4, - -0.036209475, 0.0014712804, -0.007591662, 2.8719028e-4, 0.020351825, - 0.011752536, 0.01304222, -0.0031564943, 0.024376415, -0.028300518, - -0.0017989615, 0.008391933, -0.024642952, -0.016563393, -0.0107104825, - 0.014164247, 0.010972109, 0.0011545137, 0.0024896585, 0.018955115, - -0.0080440035, 0.027056538, -0.0039172, -0.0046502487, -0.0069642565, - 0.023322677, -0.0040502576, -0.020616088, -0.004230135, 0.017163642, - -0.0095172655, -0.0027930215, 0.0122221885, 5.789123e-4, 0.002919614, - -0.03666482, 0.0070041046, 0.032587778, 0.03048681, -0.025090128, - 0.004543073, -0.012181099, -0.008003892, 0.014983484, -0.0054176184, - 0.0064890743, -0.011004892, -0.010972905, 0.009703406, 0.0016612904, - -0.0066515994, -0.0049772686, -0.0151307965, 0.019147208, 0.025703108, - -0.015619072, 0.0026418536, 0.005947313, 0.0011742726, -0.026042901, - -0.015643185, 8.596467e-4, -0.03863562, 3.9804472e-5, 0.031368844, - -0.025930125, 0.022786034, -0.002500706, 3.4041578e-4, -0.010064095, - -0.0018897282, 0.008511356, -1.0226463e-4, 0.009246519, -0.01673404, - 0.0024973731, -0.0037252228, -0.016598359, 0.042355914, -0.033053756, - 0.04107389, 0.019191358, -0.009493307, 0.011072521, 5.8504264e-4, - -0.007898029, 0.0046720714, -0.014381979, -0.013465569, -0.014845732, - 5.040272e-4, 0.015311888, 0.01687433, -0.016477875, -0.016194744, - -0.015905848, 0.011118402, 0.011089857, -0.011021141, 0.002318546, - -0.00842161, 0.026561294, -0.01022856, -0.016603211, -0.017767182, - -0.008923872, -0.013023727, 0.012438785, -0.03361721, -0.025020396, - -0.0113866255, 0.010742882, -0.035829615, -0.032734193, -0.0067293434, - -0.02091671, -0.012170751, -0.021246037, 0.0034480128, 0.008024659, - 0.019842716, -0.02739167, 0.02293911, -0.009439688, 0.0039370153, - -0.0023696613, 0.022566801, -0.016122181, -0.011435481, -0.0032225293, - -0.0050704298, 0.021583885, -0.009502177, -0.016600652, -0.023245106, - -0.009177246, 0.0024173802, 0.008085825, -0.005036842, 0.009179681, - -0.015688948, 0.0068643466, 0.0018351111, 0.014502455, -0.021580247, - 0.017502451, -0.010167936, 2.1788746e-4, -0.0055559673, -1.3025127e-4, - 0.013449563, -0.013940806, 0.0019213443, 0.0020355764, 0.011530748, - 0.004369673, 0.0037102278, -0.008292733, 0.02329882, -0.027181856, - -0.0024658465, 0.017340653, 0.0087543605, -0.0021370312, 0.027094897, - 0.004758498, -0.015865201, 0.008486956, -0.037171345, 0.0337852, - 0.023820102, 0.01964002, 0.0058020796, 0.0145198535, -0.01610336, - -0.003420931, -0.029222736, 0.011841551, -0.005926926, -0.004212834, - -0.024172127, 0.024034817, 0.005682699, 0.023906004, 0.016581899, - 0.022655893, -0.0014555312, 0.015709756, 0.017247086, 0.02987994, - 0.011542916, -0.0026887788, 0.02717083, 0.03238211, 0.0052143093, - 0.015768511, 7.6660217e-4, -0.026075905, 0.0071359156, -0.015917124, - -0.022201603, -0.01609396, 0.005766058, 0.0043411492, 0.0053596916, - 0.0068254936, -0.0019605916, 0.019545455, 0.014315523, 0.010173108, - -0.005917421, -0.029796513, 2.6839436e-4, 0.028861374, 0.022092732, - 0.0071894005, -0.0094038425, -0.0093587665, -0.008116595, 0.0144799575, - 0.013723498, 0.0013572032, -0.026888236, -0.00422925, 0.009871587, - 0.009674272, -0.010209615, 0.010523369, -0.019980105, 0.031523637, - 0.0031550496, -0.0032974759, -0.02710324, 0.0050317054, -0.04261313, - -0.006907113, 0.0021661122, -0.0185188, -0.009783926, 0.02160076, - 0.028575532, -0.0033533655, -0.007884817, -0.011092986, -0.033870846, - 0.005001461, 0.031017756, 0.015601189, -0.003867905, -0.016533656, - 0.02769417, 0.021958303, -0.043883707, 0.013064278, 0.01085523, - -0.021294186, -0.038211428, 0.016253188, -0.0051413253, 0.04256353, - 0.024164446, -0.005727501, -0.0052082012, 0.0016099255, -0.034863345, - -0.003958068, -0.002395167, 0.022714823, -0.009982205, 0.029938243, - 2.8204577e-4, -7.4877264e-4, 0.01902903, -0.0062878863, 0.002244912, - -0.014117734, 0.007946505, 0.0047140247, 0.015011326, -0.0029316088, - 0.00411987, -0.011955913, -0.0061571007, -0.0028846676, -5.9501326e-4, - -0.015948221, 0.02300199, -0.013145437, 0.01243176, 0.0019680792, - 0.019150801, -0.03413434, 0.0010409388, 0.018167745, -0.012833502, - -0.011182148, 0.011141015, 0.013377132, 0.024003414, -0.01396355, - -3.686352e-4, -0.0047898614, 0.011510565, 0.021669192, -0.00419837, - -0.0071760667, -0.0063674916, 0.022013953, -0.015626866, -0.013198472, - -0.024778256, 0.012076395, 0.0051061283, 0.002802426, -0.0018866058, - -0.022890884, -0.011095031, 0.0034742546, -0.015569728, -0.023012783, - 0.0077586393, -0.029996926, 0.017703993, -0.008521829, 0.0059608035, - -0.009516502, -0.0012981537, -0.023392787, 0.0017831156, 0.019063516, - 0.01280848, 0.0038744167, -0.0013220055, -0.004844713, -0.014505266, - -0.00645926, -0.031503946, 0.011904204, -0.00597954, -0.009588707, - -0.0012619551, 0.013108462, -0.0069325957, 0.029936412, 0.001077157, - -0.009726456, 0.023741769, 0.023448402, 0.013422994, -0.013388519, - -0.004711222, 0.010984808, -0.015319168, -7.323202e-4, 0.009833817, - 0.0053452877, 0.0037191827, 0.012241768, 0.012352465, 0.026646923, - -0.0027746658, 0.014297837, 0.019058265, -0.006091647, -0.011535806, - -0.022513712, 0.0031581481, -0.005026982, -0.021657478, 8.923614e-4, - 0.0043973327, -0.0123044215, -0.02311876, 3.3690507e-4, 0.024358544, - -0.0048593516, 0.0047294996, -0.0056081596, 0.004360358, -0.0024190093, - 0.014384715, 0.0124597475, 0.003480054, -0.0074354103, 9.1116974e-4, - 0.021204388, 0.022909835, 0.0012304761, -0.0043541566, -0.03791302, - 3.6168008e-4, -0.007979877, 0.018221606, 0.008425073, -0.013374047, - 0.02309054, 0.008580174, 0.009846069, 0.01785624, 0.01616828, - -0.007996178, -0.0046635554, -0.018757278, 0.0028356523, -0.008202049, - -0.0068272296, -3.944028e-5, 0.02010238, -0.001954476, 0.0024023433, - -0.006072916, -0.014079084, -0.015428272, -0.009721143, 0.0027875453, - -0.008425168, -0.0048448336, -0.011744229, -0.0051865494, -0.033566292, - 0.0043491493, -0.0057007633, -0.019820457, 0.016308298, -0.010239939, - 0.014855505, 0.0354106, 0.0033834302, -0.009066517, -0.0022518302, - 0.0114731295, 0.02839269, -0.0022491915, 0.0027371363, 0.01181553, - -0.0020615833, -0.019569596, 0.01542136, -0.011450406, 0.031954277, - -0.013202073, -0.028974034, 0.0025292274, -0.011404941, 0.0018827299, - 0.028691607, -0.005776126, -0.013049329, -0.007692899, 0.008956696, - 0.0017933438, -0.0121262735, -0.005057567, 8.349569e-4, 0.014629085, - 0.004401332, 0.035946235, 0.009489735, 0.005672276, 1.79267e-4, - 0.0048411554, 0.0030772937, 0.0026512537, 0.015852934, 0.009632582, - -0.0049014706, 0.008520919, 0.009987356, 0.0038286415, 0.012426638, - -0.0072520124, -0.0035800452, -0.004290692, -0.0025079, -0.027094584, - -0.029408652, 0.003949915, -0.02569855, 0.021664679, -2.9702592e-4, - 0.004803349, -0.01829935, -0.004861761, -0.008086461, -0.0021566444, - -0.014762833, 0.005425488, 0.027423931, 0.0048232907, -0.020234635, - -0.015745737, -0.022418289, 0.027938368, 0.01967583, 0.022145372, - -0.007156692, 0.019848155, -0.0038678325, -0.014752922, -0.006563107, - 4.4706799e-4, -0.0034439622, -0.0030435359, 0.012177178, 0.010728695, - 0.009376285, -0.011407188, 0.017262358, -0.008589543, 0.0070923874, - -0.018200316, -0.026576724, 0.0019332046, 0.004737066, -0.0050476138, - -0.014263123, 0.014321928, 0.014452888, -0.0021808688, -0.0034000098, - -9.034171e-4, 0.006087965, -0.01405835, -0.0053863395, 0.017656708, - -0.016975459, 0.012467562, -0.01230703, -0.03710205, -0.005008867, - -0.01618541, 0.00507949, 0.005222517, 0.0035472002, -0.0026708364, - -0.012905531, -0.0049787317, -0.0034886755, 0.005538616, 0.008228859, - 0.013200466, -0.013496942, 0.033542003, -0.0076429583, 0.0050319876, - 0.007850763, 0.024254465, 0.001235755, 0.009164867, 0.01055583, - -0.0064145466, 1.261923e-4, -0.013389577, -0.0013388357, 0.024085132, - 0.030222712, 0.0018086291, 0.0038872636, 0.028306026, -0.0054203435, - -0.0032720335, -0.012212896, 0.015320495, 0.01076977, -0.020422168, - 0.022298584, 0.035477024, -7.597271e-4, 0.014851839, -0.019181, - -0.031504616, -0.020249568, 0.009472726, -0.016911596, 0.023643821, - -0.008310509, -0.00851885, -0.014368908, 0.010234428, -0.0045113442, - 0.0018641759, 0.01256227, -0.015354308, 0.0076423986, -0.0120422635, - -0.027707588, 0.0074697575, 0.023807252, -0.004513947, 0.0068416903, - -0.005152677, -0.012928117, -0.016025927, 0.015537146, 0.0026642638, - -0.005142975, 0.008674935, 0.004520147, -0.003637644, -0.008143466, - -0.031260993, 0.0028682572, -0.021637462, -0.01263405, -0.019277638, - 0.00833056, 0.009831349, 0.009328456, -0.027779492, 0.028177984, - 0.014986347, 0.005363574, 0.015701696, -0.012270254, 0.020936444, - -0.02251377, 0.018749347, 0.0065967026, -0.010939128, -0.006829333, - -0.009530878, 0.006961215, 0.0048104767, 0.0029643134, 0.007440463, - -0.0065294467, 0.0059576076, -0.002564523, -0.019855145, 0.0014028825, - -0.045156296, -0.0019228954, 0.014609346, 0.004952731, 0.0038553218, - -0.017878357, 0.004591507, -0.022266475, -0.016291108, -0.010311727, - -0.00281645, 0.005343045, -0.010114044, 0.014700661, 0.005547255, - -0.009215923, 0.02185583, -0.016161714, 0.016619347, -0.011973507, - -0.002062668, -0.008763375, 0.011184977, 0.0056989025, 0.014394148, - 0.02578592, -0.022820916, 0.005627066, -0.006339143, 0.016591523, - 0.0038678078, -0.023814376, 0.005980465, 0.0048843063, 0.008188245, - -0.031082647, -0.038922034, -0.0048538437, -0.003651252, 0.027832232, - 0.008756512, -0.0054012174, -0.0036948896, 0.013217302, 0.022851855, - 0.008296405, -0.010892652, -0.012163175, 0.016130846, 0.013603005, - 9.721462e-4, -0.004214798, -0.008717093, 0.0060606347, 0.0180401, - -0.0198672, 0.0056876536, 0.02555234, -0.0013162979, -0.006992888, - -0.012456166, 0.013543435, -0.008233608, -0.010438337, -0.0031858177, - 0.0104024755, -0.0038262694, -0.021213155, 0.0151080135, 0.012740097, - -0.028010897, 0.00211715, 0.010460201, -0.024339426, -2.11411e-4, - 0.0058876215, 0.0045201457, -0.005130667, -0.014583471, 0.0011094854, - 0.023555685, 0.02292807, 0.022343166, 0.043852683, 0.01980498, - 0.0082928995, -0.0022364552, -0.029342527, 0.014087263, -0.0042341105, - 7.5421995e-4, -0.0064692046, 0.02800615, 0.013763656, 0.0050493157, - -0.028829211, 0.0071631367, -0.011782956, -0.0059552495, 0.021185033, - -0.0152106825, 0.002360758, 0.01933832, 1.8368458e-4, -0.015134753, - 0.016820554, 0.029283313, -0.020783463, -0.02189449, -0.02084136, - 0.007886401, -0.007456698, 0.00864777, -0.0039245654, -0.015469831, - -0.008187604, -0.010721359, -0.008888508, -0.018265627, 0.011017574, - 0.0073137567, 0.011694814, 9.7523624e-4, -0.004350972, 0.0049570026, - -0.010234654, 0.006532081, 0.017849233, 0.002327764, 0.008706841, - 0.0042864652, 0.006549243, -0.025969647, -0.030062262, -0.0034619928, - 0.019439654, -0.0040489933, 0.00898267, -0.0041443687, 0.004232021, - 0.03555822, -0.015159748, -0.007189275, 0.025724864, -0.013160403, - 0.019235775, -0.015542973, -0.0024373347, 0.017632203, 0.010738196, - 0.010156042, 0.020078918, 0.01641851, 0.006997201, 0.014098642, - -0.021155713, 0.012652956, -0.004849482, 0.0037733815, 0.007919154, - 0.0037101945, 0.019353677, -0.012780235, -0.020401299, -0.007114382, - -0.054984696, -0.0026149738, 0.004843588, 0.007860543, -0.0039829267, - 0.015103022, 0.007600323, 0.013588806, 0.013886298, 0.023655877, - 6.01904e-4, -0.0021956954, -0.007323092, 0.009666826, -0.02721509, - -0.022498148, 0.014020051, -0.011115548, 0.012735705, 0.024396244, - 0.0038716549, -0.016154403, 9.6116465e-4, 0.015515034, -9.8982e-4, - -0.041430525, -0.0011011086, 0.0031724097, -0.003688855, -0.0064794393, - 0.025434464, 0.009357079, -0.034786128, 0.0030219976, 0.009949648, - -0.00969975, -0.015333494, 0.023824688, 0.018962378, -0.007855189, - 0.014795094, -0.016200194, -0.0016759776, 0.007610367, -0.005001666, - -0.02239846, -0.024722334, 0.017047096, 0.013361739, 0.012146679, - -0.013754482, 0.0048256963, 0.030129312, 8.2358456e-4, 0.0022963446, - -0.0094999485, 0.0028021217, 0.0124415895, -0.006193499, 0.010029817, - 0.002668283, -0.015108881, 0.011592602, 0.0067041647, -0.014326246, - 0.0026889842, 0.00912945, 0.008386629, -0.010498914, -0.0137961265, - -0.0049547646, -0.0031336423, 0.003652978, 0.009076162, -0.01256896, - -0.03593353, 0.007859313, -0.021198396, 0.007502789, -0.018449433, - 0.016452247, 0.0074552963, -0.015537511, -0.0032839072, 0.007926269, - -0.018028526, 0.004539785, 0.016732847, 0.013581038, -0.03332854, - 0.0050439434, 0.009990826, -0.018003415, -0.00696274, -0.0029804937, - -0.031751547, 0.0022692014, 0.010254441, -0.01524313, 0.013659024, - -0.0052896673, 0.034314148, 0.0051404224, -0.031537946, 0.01223552, - 0.044959836, 0.01465738, -0.014275822, 0.0108840605, -0.016144544, - 0.020728134, -0.03846387, 0.0052323346, -0.020082382, -0.014683124, - 0.0051672654, 0.014988676, -0.009482976, 0.004919254, 0.007012913, - -0.008841918, -0.008557286, 0.009522033, -0.02049974, -0.016037116, - -0.04073443, 0.00827337, -0.005577244, 0.012378792, 0.013674334, - -0.018347776, 0.025672464, 0.010346332, -0.008508216, 1.1551316e-4, - -0.010806748, -0.015286566, 0.010127897, 0.017102195, -9.2672795e-4, - -0.010182991, 0.010889818, -0.013407158, 0.01291247, -0.0026625257, - -0.0025241629, 0.006964902, 0.0063654454, 0.011518512, 0.001220416, - -0.01547879, -0.010313959, -0.0019562487, 0.014782945, 0.008546706, - 0.017267894, 0.008766793, 0.0026907702, 0.016184386, 0.020972637, - 0.02090882, 0.004038365, 0.0016966485, 0.00983876, -0.014373418, - -0.003546524, 0.019855717, -0.009138168, -0.01181277, -0.008063988, - -0.022250103, -0.00514418, 0.034018043, 0.026304552, -0.01683829, - -0.021983495, -0.01889338, -7.429559e-4, -0.011647683, -0.005254027, - 0.026034797, -0.025107978, -0.016144847, -0.017523915, -0.02244889, - 0.031950597, 0.018541172, -0.01771459, 0.008469329, 0.004217286, - -0.010690614, -0.017820295, -0.0010719709, 0.0301919, 0.0057149474, - 0.013231435, -0.015168182, 0.018738706, 0.01700119, -0.023059538, - 0.0029841932, -0.004314352, 0.024311757, 0.017704826, 0.008089213, - -0.014952974, -0.023296097, 0.006041968, -8.529224e-4, -0.008036855, - -0.0018891239, -0.014874821, -0.020575136, -1.461075e-4, 0.0130908955, - 0.004292978, 0.007929788, 0.0017281569, -0.012648321, -0.02544673, - -0.011697861, 0.0067413324, -0.022990761, -0.007993959, 0.013713945, - 0.0056892917, -0.00261154, 0.01618953, 0.0048800325, 0.018860636, - -0.003560672, 0.010475759, 0.0021975744, -0.014577222, -0.034182522, - -0.007875575, 0.008126722, -0.010650751, -0.0074874335, -0.0020294122, - 0.008452659, 0.007382557, 0.024824655, -0.025619183, -0.018334692, - 0.008727061, -0.028844763, 0.0016083756, -0.007970106, 0.0066629257, - -0.021158032, -0.021200709, 0.022294527, 4.95602e-4, 0.0060155503, - 0.008200089, 0.03105117, 0.0011555338, 0.021001544, -0.008607036, - 0.019864341, -0.0054282895, -0.0026739216, 0.020690937, -0.010046548, - -0.0082180975, 0.010795296, 0.0041370844, 0.006520475, 0.0070148367, - 0.010375197, 0.019227594, 0.003637322, -0.0042943503, -0.010674275, - 0.018089488, 0.003885071, -0.026178667, -0.024454936, -0.02139234, - 0.019933162, 0.02411458, 8.2733524e-5, -6.5124873e-4, 0.0051996773, - -0.0063016154, -0.004109164, 0.008429365, 0.008202354, -0.008174945, - -0.029559763, 0.0038843902, -0.014875174, -0.016903386, -0.003429315, - -0.016405107, 0.0051699327, -0.024847493, -0.00761778, 0.01539836, - -0.0046768147, -0.0026298298, -0.007587669, -0.009212268, -0.0055579077, - -0.017222121, -0.007891109, 0.020967536, 0.011691163, 0.006961498, - -9.5352717e-4, -0.0017583085, 5.8790646e-4, 0.0025239768, -0.026039192, - -0.019814722, 0.03289079, -0.0025972049, -0.0045197294, -0.012794949, - 0.026118297, -0.010243999, 0.004804872, 0.02081238, 5.027637e-4, - 0.016569154, 0.03843815, -8.562319e-5, -0.00999104, 0.0072192354, - 0.020085724, 0.006831865, -0.009473695, 0.0031817777, 3.7738727e-4, - -0.023939762, -0.018198056, -0.0060279323, -0.008742233, -0.012180555, - -0.009803259, 0.015443319, 2.4185479e-6, 0.013859732, 0.029021978, - 0.016626848, -0.020681296, 0.011412085, 0.020197226, -0.0010870731, - 0.014341974, 0.0015714043, 0.008051053, -0.01179, -0.010122203, - -8.9403475e-5, -0.02192595, -0.02386542, -0.022756664, 0.0033525114, - 0.006042903, 0.0016067934, -0.004007751, -0.0074746474, -0.019599084, - 0.0058711455, 0.0126698, -0.0101001, -0.009264054, 0.015163229, - 0.029530723, -0.026564274, 0.005070351, 0.0055077854, -0.015015594, - -0.015733866, 0.01372744, -0.010675336, 0.0027296382, 0.012505453, - 0.010227486, 0.011364765, -0.009454033, -0.016897405, 0.013789049, - -0.0015711597, -0.0012788671, 0.0076912986, 0.0041188886, -0.0060151145, - 0.009443885, -0.025302026, 0.009974476, 0.013226394, 0.017848207, - -0.017197525, -0.007945258, 0.006625161, -0.0013827997, -0.03460259, - -0.011380479, 0.004054514, 0.019576538, -0.0032975122, 0.013733984, - 0.021269862, 0.021583697, -0.020210005, -0.036238633, 0.017099153, - -0.027463421, -0.018316688, -0.020929558, -0.0021171693, -0.019076154, - -0.0027908566, 0.027166793, 0.0068986686, -0.019987503, -0.027007556, - -0.009114975, 0.011212388, 0.01632559, 0.01070846, 0.02490654, - -0.018243356, 0.015349427, -0.008241213, 0.018241128, 0.011730372, - -0.0048808744, 0.007589747, 0.0013588531, 0.011120073, -0.0051482483, - -0.0025771875, 0.007373957, 0.016687017, 0.012681888, -0.0068875877, - 0.030722562, 0.007312343, 0.0022602, 0.011042397, -0.05562081, - 0.025766136, -0.020987697, 0.013943094, -0.004878706, -0.00708541, - -3.0412496e-4, -0.023379086, -0.017882895, -0.005941284, 0.010528998, - -0.033082608, -0.03211464, 0.024802279, 0.013860706, 0.010499015, - 0.009952615, -0.008054265, 0.0028028437, 0.010484416, -0.009638675, - -0.01886455, -0.04783407, 0.030547356, -0.008850669, 0.010135298, - -0.013308355, 0.015097684, 0.0040495554, -0.010808448, 0.0021424836, - -0.020993054, 0.0014877272, -0.01925163, 0.0036397579, 0.004392138, - 0.0011547419, 0.004201262, -0.010745503, -0.01743957, -5.0817296e-4, - -0.0051476727, -0.0067576244, 0.0075738947, -0.0056999363, -0.006715891, - -0.0039554355, -0.023940653, -0.03517357, 0.0029446012, 0.04576212, - 0.005159309, 0.0014864212, -0.0027345077, -0.03143455, -0.0024623387, - -0.013921345, -0.011508894, -0.016458908, 0.015469387, 0.0021821768, - -9.355747e-4, -0.028454663, -0.004308154, 0.02563536, -0.016976072, - 0.001185854, -0.014844607, -0.0071073966, 0.016819073, -0.018262524, - -0.014582344, 0.0034128726, 8.139378e-4, 0.013425778, -0.010364886, - 0.010938772, 0.00729025, 0.0013267669, 0.0010381105, 0.014091845, - -0.0013788694, 0.010852081, -0.02367179, -0.012306579, -0.00463597, - -0.0048545776, -0.0019571218, 0.012200979, -0.01169948, 0.00994623, - 0.022339713, -0.021859182, -0.0023831367, -0.008989436, 0.030023497, - -0.00931317, 6.0194585e-4, -0.033152215, -0.008286338, -0.003752814, - -0.0075821476, 0.009399472, -0.0040281094, 0.024787085, 0.016002016, - -0.004102109, 0.021138644, -0.0048408303, 0.03103642, -0.0173483, - -0.007850556, -0.041170087, -0.025468713, 0.011161215, 0.002108329, - -0.010856638, -0.009430478, -0.00603176, 0.006771151, 0.0050155995, - -0.0054165027, 0.0091831, 0.010814782, 0.0016153149, -0.011115387, - -0.010597021, -0.011433855, 0.019678716, -0.012985785, 0.014219029, - -0.009848821, -0.009335744, 0.009010177, 0.012768126, -0.0069926283, - 0.014677801, 0.034609307, 0.005300128, -0.0023335319, 0.0019454984, - 0.029596463, -0.0066804104, -0.007119561, -0.019112462, 0.0010745762, - -0.0014309965, 0.016982103, 0.021638894, 0.005587619, 0.008156213, - 0.030668588, 0.011483092, 0.018923873, -0.013562327, 0.040283225, - 0.0010588362, -0.022942023, -0.016630407, 0.0044593876, -0.02067354, - -0.0050753104, -0.018702451, 0.013071278, 0.0013301262, 0.0016894831, - 0.014894527, -0.016101027, -0.010584015, -0.012664312, 0.012353534, - -0.019976871, -0.014553106, 2.5286461e-4, 0.013559478, 0.010484229, - 7.6143176e-4, -0.01860816, 0.008036631, 0.020168703, 0.012207782, - 0.014616009, 0.01761523, -0.020724114, -0.01848741, -0.015061307, - -0.02776504, 0.02013868, -0.0025571035, -0.02457098, 0.005198882, - -0.026603667, 1.497266e-4, 0.019070875, -0.0068305554, -0.011478803, - 0.0074438276, -0.011259745, -0.04295206, 0.0074930643, -0.0071183327, - -0.0064885076, -0.008226803, -0.010524358, 6.093374e-4, 0.0039747, - 0.004874976, -0.00797976, -0.010371813, -0.026490169, 6.913092e-4, - 0.012262008, -0.0030712746, -0.0012140236, 0.028651917, 0.017253194, - 0.020201515, 0.0011314597, -0.0019627581, 0.0129187675, -0.029888853, - -0.017114755, 0.02137751, -0.008509044, -0.010163891, 0.01979495, - -0.008470295, -0.010811731, 0.00521843, -0.012916331, 0.0022327828, - 0.011526, 0.013578957, -0.0024780903 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.029994149, -0.0018229956, 0.02325254, -0.013786398, -0.011881014, - 0.06577164, -0.07358174, -0.0040758657, -0.0077550416, 9.7089226e-4, - -0.008864676, 0.02215475, -0.0025013897, -0.019960424, -0.023777565, - 0.027786514, -0.0035296942, -0.014506049, 0.0045100693, -0.016935233, - 0.044500507, -0.014598826, -0.00684544, 0.036644403, -0.059933294, - 0.058361713, 0.007442505, -0.0058330935, 0.015018854, 0.019195877, - 0.025673253, -5.7356636e-5, 0.032300342, 0.021769267, 0.054934092, - 0.033316698, 0.042714313, 0.0352621, 0.022474626, -0.030255843, - 0.003143396, 0.002887552, -0.03282111, 0.015379673, -0.063646205, - -0.0397322, -0.011151127, -0.018902387, 0.0099938, 0.028216839, - -0.05645306, -0.010328548, 0.0015405775, 0.019943397, 0.048912928, - -0.039663788, -0.013446587, -0.002829966, 0.010324817, 0.036336977, - 0.035935104, -0.10719397, 0.02711905, 0.02210925, 0.054790273, - 0.07009369, -0.03840841, -0.07143295, 0.046772532, 0.046887655, - -0.009015891, -0.03190024, 0.021869987, 0.016285902, -0.0043149097, - -5.6100373e-5, 0.024303941, 0.022179745, -0.06393565, 0.0015106533, - -0.0079268925, -0.003440528, 0.027000025, 0.0055127568, -0.025785632, - -0.03928182, 0.02079782, 0.018259887, -0.0027586978, -0.020039644, - 0.03147548, -0.04036941, -0.020714877, 0.057744846, -0.03785473, - -0.032654967, -0.013209052, -0.006032037, 0.031226974, 0.0059972703, - -0.015802555, 0.05890624, -0.056617975, -0.06607249, -0.029322216, - 0.004905685, 0.0036641576, -0.023797583, -0.009848919, 0.011310101, - -0.019729186, 0.007906383, 0.0845527, -0.03216866, 0.0147461165, - -0.018214947, -0.030357344, 0.014346798, 0.01812919, 0.05561209, - -0.024190212, -0.016657883, -0.006589852, 0.022496149, 0.016200986, - -0.05192683, 0.0011854252, 0.05033412, 0.01439763, -0.060872857, - 0.023377756, 0.0047514164, -0.0033223256, -0.06183406, 0.013048079, - -0.023627587, -0.026168903, -0.0787994, 0.013655501, 0.052926067, - 0.029277634, 0.005010515, 0.012530694, 0.02224248, 0.014240991, - 0.03867446, 0.026336418, -0.014598755, 0.0048048734, 0.057746496, - -0.057265334, -0.01445847, -0.0040158364, -0.022136346, -0.014195079, - 0.011734204, 0.0041754334, -0.010794331, 0.019355869, 0.0020059447, - 0.014428619, 0.019640494, -0.0017169201, -0.027903475, 0.0056078653, - -0.03470682, 0.008124425, -0.01125563, -0.055747703, 0.012329202, - 0.010215172, -0.017403543, -0.010929485, -0.013350889, -0.013567029, - 0.0054093, 0.018269889, -0.043430734, 0.039702676, -0.016176758, - -0.024831466, -0.023828063, 0.052558053, 0.053084847, -0.040864, - -0.0048178444, 0.008104969, 0.012874824, -0.036157127, 0.0029419623, - -0.0022569369, 0.007118835, 0.010718052, 0.056728102, -0.03789373, - 0.058449615, 0.05107984, 0.0121484315, 0.0117606055, 0.026315814, - -0.034673154, 0.0053328746, -0.08228113, -0.010171178, 0.024295732, - -0.0013052006, -0.014384008, -0.033730388, 0.016724972, 0.043068323, - 0.0029456192, -0.026992496, -0.028309423, -0.0020334222, 0.029005015, - 0.021919679, -0.02513998, -0.0478291, -0.0028901435, 0.004375993, - 0.01914232, 0.05769933, 0.012695619, -0.00616022, 0.019767411, - -0.0075988644, 0.029423347, -0.0083565535, -3.6264156e-4, 0.031098716, - -0.030513972, -0.023154508, 0.018090636, 0.033551116, -0.018234055, - -0.0031899873, 0.0023324676, -0.021498432, -0.0067360783, -0.044567727, - -0.0013810532, 0.042092193, -0.0020325428, -0.0067444467, 0.0072130812, - 0.053330258, -0.020111136, -0.024011444, -0.0026053614, -0.025066333, - -0.033400003, 0.008473668, 0.03415769, -0.026389468, -0.018544462, - 0.04235294, 0.0028454706, 2.2957347e-4, 0.060636275, 0.0373897, - -0.01160794, 4.5032304e-4, 0.0113844955, 0.040875893, 0.030732624, - 0.024153454, 0.03224048, -0.016660662, -0.00785431, -0.032373138, - 0.0035702607, -0.04714242, -0.046434365, -0.024999587, 0.031757597, - 1.529396e-4, -0.0076429513, 0.013756593, -3.051089e-4, 0.025955575, - -0.026831366, 0.037979785, -0.056718938, -4.4644493e-4, 0.032962356, - -0.03444225, -0.0367583, -0.012388817, 0.046813026, 0.01715945, - -0.048607055, 0.0052587236, 0.01601871, 0.019107495, -0.011164486, - -1.584864e-4, 0.003916915, -0.0029318254, 0.01646468, 0.04178893, - -0.02348883, -0.038850147, -0.0070097498, -0.0047282507, -0.0035369743, - 0.007898552, 0.020392394, 0.04029895, -0.005155611, -0.0046223314, - -0.021861555, -0.036933687, -0.032129098, -0.017047627, 0.03699928, - -0.05014775, -0.003215464, 0.06547377, 0.0046976507, 0.027721237, - -0.020820618, 0.0035001708, 0.022725187, 0.054598283, 0.016027326, - 0.003141417, -0.009812434, 0.024828307, 0.035421412, -0.016292937, - 0.019907085, -0.0068102065, 0.023745608, -0.029620886, -0.042458512, - 0.013087743, -0.031419188, -0.019131694, -0.042310078, 0.0019078956, - 0.0127087785, 0.04992839, -0.02354104, -0.0039058507, -0.024032496, - 0.0044440757, 0.025180044, 0.007404397, -0.03448085, -0.0011117706, - -0.032299474, -0.041126173, 0.045043442, 0.009010511, 0.059758212, - -0.052714814, 0.04132417, -0.0031801425, 0.008839155, 0.03059365, - -0.013921816, 0.012512386, 0.052676164, 0.006430523, 0.024670966, - -0.006988322, -0.038353182, -0.071544275, -0.008958371, 0.047953393, - 0.02924752, -0.026691196, 0.024800275, 0.020442912, -0.020654617, - -0.031088952, 0.049962994, 0.047960084, 0.026848642, 0.04703498, - -0.0018408739, 0.051144063, -0.015982943, -0.0018416411, -0.08421013, - -0.038463585, -0.021146314, -0.023752004, -0.04136693, -0.024899116, - 0.05143425, -0.018748008, 0.009230017, -0.034847863, 0.009089545, - -0.06366751, 0.026043184, 0.018202646, -0.0067738965, -0.036824882, - -0.021987066, 0.031584665, -0.008270037, 0.014271315, -0.07531103, - 0.04233682, -0.029017868, 0.010844708, 0.0144009525, 0.018145027, - 0.0050871484, -0.024377337, -0.04275291, 0.040434964, -0.02986582, - -0.012666808, 0.014306311, 0.00832129, 0.0049129496, 0.019359592, - 0.02028022, -0.012722106, 0.02832373, 0.016502997, 0.023406604, - 0.001373286, -0.026629824, 0.039137907, -0.022664126, -3.3431262e-4, - -0.06598991, 0.048738882, -0.05896253, -0.00284973, -0.049121656, - -0.03540553, -0.06997771, -0.01567287, -0.03276019, -0.008393811, - -0.014463745, -0.0047966577, 0.04726719, 0.03654108, -0.033117067, - 0.0596095, 0.02201553, 0.039038148, -0.009402223, -0.013840081, - 0.037824273, -0.022117268, -0.01946477, -0.00942839, -0.0014578943, - -0.051075086, -0.03908935, -0.042014293, -0.022684725, 0.023695223, - -0.037597124, 0.07014311, 0.013854064, -0.01881576, -0.036408547, - -0.022615554, -0.014810544, -0.037743963, -0.014756945, -0.0025117132, - -0.021048184, -0.0064595835, -0.014465229, -0.02639666, 0.03939292, - -0.061688475, 0.009252884, 0.010028998, -9.150873e-4, -0.046946093, - -0.035093162, 0.01965835, 0.059976548, 0.014727929, -0.015917355, - 0.037853606, 0.0045851353, -0.03636493, -0.02028772, 0.038217932, - -0.009535796, -0.011647081, -0.0046676444, -0.011595218, -0.0072663585, - -0.009116542, -0.026078856, -0.032086883, 0.033903312, -0.01768996, - 0.020077875, 0.012957869, -0.032573923, -0.06499357, 0.008818684, - -0.020606505, -0.0036190806, 0.04694034, 6.9062365e-4, -0.00982927, - -0.034215275, 0.013113249, -0.009811312, -0.034760743, -0.004056816, - 0.03680892, 0.030914921, -0.017605, -0.046903633, 0.051181443, - -0.014361233, -0.05455648, -0.020696685, 6.026268e-4, 0.044218123, - -0.010558854, -0.024543405, -0.052648325, -0.023651928, 0.0015014306, - -0.0385907, 0.008503229, 0.06122108, -0.023748346, -0.017666282, - 0.025984913, 0.04087157, 0.017507847, -0.0024902194, -0.016632376, - -0.0018991091, -0.018996213, 0.015957156, -0.030839248, -0.0031293007, - -0.008160804, 0.022262692, 0.05143547, -0.006018976, 0.026474856, - -0.04420874, -0.017157692, -0.04737133, 0.015814822, 0.027903715, - -0.03385984, 0.028632851, 0.024985626, 0.01690197, -0.0816992, - 0.0030451706, 0.0017375023, -0.007862174, -0.016975142, 0.095110916, - 0.031048821, 0.056816332, -0.015038004, -0.033455864, 0.018559614, - -0.044767655, 0.015600993, 0.018475432, 0.014001088, -0.018910263, - -0.017730216, -0.037209325, 0.09532526, 0.032080512, 0.0035397722, - 0.032618523, 0.010242336, -0.013917536, -0.014579234, 0.01687756, - 0.095397666, 0.03162501, -0.018857593, 0.023803588, 0.07553171, - 0.02994248, -0.017574253, 0.054457735, -0.021538356, 0.02094046, - -0.0042086346, -0.036572304, -0.018184759, -0.013923446, 0.011508986, - 0.02450206, 0.020219196, 0.010769564, 0.014945534, 0.014447281, - -0.012355731, 0.0081861885, -0.0024851835, 0.005804264, -0.02925979, - 0.01333001, 0.03951069, 0.023348616, 0.048377912, -0.0333973, - 0.027035296, -0.008463579, 0.025774261, 0.047565553, 0.0069181263, - 0.026483854, 0.017371405, 0.041325398, 0.035823084, 0.015960082, - -0.03734299, 0.0045062425, -0.011008566, 0.008859042, 0.004642731, - 0.008763916, 9.4523086e-5, 0.02981288, -0.06193316, 0.010823584, - -0.038923416, -0.04298539, 0.012270417, -0.0115650855, 0.0144564565, - -0.0067646853, 0.0021063637, 0.030940332, -0.015012195, -0.06290885, - 0.028390385, 0.024930084, -4.1845362e-4, 0.006149394, -0.010580441, - -6.0731294e-5, 0.0014198392, -0.008904451, 0.05011964, -0.01680905, - -0.037836086, -0.07377086, 0.014214079, -0.006915348, -0.009089289, - -0.02335478, 0.0143671315, -0.05558086, 0.07123263, -0.07945256, - -0.022839103, 0.0074707754, 0.027387662, 0.029676093, 0.0031151301, - -0.020017195, -0.008645657, -0.04534375, 0.020453364, -0.002211523, - 0.0015312964, 0.0017810477, 0.035858136, 0.033057574, -0.027828693, - -0.027031336, -0.021299917, -0.03671541, 0.040311582, 0.005970519, - -0.030426538, -0.0029687402, -0.03426824, -0.0015229854, 0.02991941, - 0.045352064, 0.033270314, -0.011570333, -0.043788787, -0.06409744, - 0.021674141, -0.023479518, 0.03136632, -0.0458083, -0.020905318, - -0.005711588, 0.04820337, 0.019728245, -0.019094538, -0.007718279, - 0.047454327, 0.04937192, 0.021541534, 0.023050396, -0.034354005, - -0.011974414, 0.029086202, -0.037240807, 0.010088511, 0.03352007, - 0.014434133, -0.017231012, 0.0136243785, 0.020162871, -0.05995645, - -0.018384626, 0.024256084, 0.03240448, 0.041863874, 0.009666382, - -0.010128793, 0.030981587, -0.037679356, 0.047581222, 0.016010283, - 0.07512665, 0.026516944, -0.009031706, -0.018951872, -0.0017892418, - -0.016541094, 0.01647707, 0.043277632, -0.04041186, -0.055384733, - -0.01226235, 5.390587e-4, 0.03889348, 0.0019006983, -0.041677527, - 0.03387069, 0.028291885, 0.04861084, 0.023187468, 0.042147912, - -0.045526568, -0.031949874, 0.027573867, 0.009693805, -0.006087139, - 0.048203077, 0.008851365, 0.008429112, -0.0050486163, -0.037667293, - 0.010707396, 0.028889854, 0.042068575, -0.040346667, -0.012369537, - -0.06540482, 0.030622138, -0.0028053753, -0.036627684, -0.014165368, - -0.03134335, -0.011143928, 0.050343182, -0.0075645293, -0.025030306, - -0.015716927, -0.007985583, 0.007117064, -0.055535067, 0.006778112, - 0.01714469, -0.0012365084, 0.036309216, 0.029887259, -0.017697424, - 0.043813836, 0.009253054, -0.015067626, 0.013082746, 0.021380553, - 0.015335602, 0.01569203, 0.00670928, -0.0024087632, 0.027762301, - -0.015821308, 0.025674256, -0.017719263, -0.049550127, -0.050801624, - -0.03290416, 0.02143675, -0.024286237, -0.048385795, -0.01737319, - 0.057962302, -0.015467411, -0.050584044, -0.029814525, 0.059227996, - -0.06723727, -0.022570841, 0.029687874, 0.002089245, 0.024486976, - 0.05932053, -0.021387931, -0.06685644, 0.006270287, -0.015758859, - -0.03793386, 0.026608067, 0.0017926389, -0.023171276, -0.034668397, - -0.021927882, -0.019180626, -0.06750875, 0.06783497, 0.0077069243, - -0.007817861, 0.034771994, -0.009861534, 0.01890704, 0.024769604, - -0.028345756, -0.06938267, 0.06090453, 0.008753131, -0.01576464, - 0.009214099, 0.005644169, -0.006509462, 0.033215072, 0.00801978, - -0.0016358242, 0.005745764, 0.008918408, -0.013739862, -0.037103653, - 0.006212794, 0.010149684, 0.03896661, -0.040971514, 0.034401663, - 0.043092504, -0.02950733, 0.018003477, 0.024158198, 0.0035227523, - 0.0016862957, -0.012391956, 0.0076866793, -0.05196159, 0.015939092, - 0.048051022, 0.016442215, 0.007834882, -0.012174929, 0.013530008, - 0.015073473, -0.05196081, -0.008923039, 0.044798106, -0.05562288, - -0.0038781173, -0.032260012, -0.07650577, -0.012289003, -0.007420776, - 0.021494012, 0.0892215, -0.016279733, -0.03841072, -0.013394168, - -0.042591576, -0.010915608, 0.015079158, -0.026745249, -0.054274954, - -0.004867954, -0.021609627, 0.0017588187, -0.0048592053, -0.07805988, - 7.922024e-4, 0.0023112972, 0.01622387, 0.058303833, 0.011074573, - 0.09790532, 0.0032226224, 0.031225068, 7.727385e-4, -0.01919873, - 0.0025356114, 0.012065164, -0.017597139, 0.035992164, 0.04393403, - 0.0062283017, 0.017269546, -0.0013603267, -0.071530804, 0.016182814, - 0.007122643, -0.03448915, 0.0029640046, 0.009500754, -0.025637051, - 0.009549149, 0.045760393, 0.055906113, -0.040868904, 0.00583742, - 0.062807225, -0.03211535, -0.06038663, 0.045187663, -0.01923743, - 0.04946601, 0.046326768, 0.0048718, -0.048457954, 0.022305321, - 0.0053416435, -0.008286349, -0.027928943, 0.037498407, -0.0043017715, - 0.053393625, 0.014511336, 0.022607336, -0.06256982, 0.004994593, - 0.014811065, 0.03655068, -0.017584056, 0.03985123, -0.03168898, - -0.01870854, -0.022010026, 0.022839522, 0.0071739974, -0.013371921, - 0.0041815788, -0.042186763, -0.027135761, 0.018249426, 0.0021712328, - 0.02765895, -0.019380553, -0.016282147, 0.0034665565, -0.014457032, - -3.7200737e-4, 0.005671008, 0.0010093339, -0.028383477, -0.002844261, - 0.025286058, 0.04256186, 0.009434154, 0.0055359765, 0.005175741, - 0.008222276, 0.02846593, -0.010151216, 0.01118511, 0.07375991, - -6.004506e-4, 0.006332469, -0.01875476, 0.025021622, 0.021304216, - -0.032444324, 0.03583995, 0.042481862, -0.003862909, -0.014334517, - 0.022042293, 0.05011906, 0.011539018, -0.021123633, 0.010445636, - -0.0053584604, -0.008468914, 0.042785883, -0.0031037405, 0.06294786, - -0.00567779, 0.040316846, -0.02079917, 0.05527259, 0.0046733515, - 0.031591773, -0.00544976, -0.03298328, 0.024819292, -0.035074625, - -0.04255463, -0.02854001, 0.0012564162, 0.025035674, 0.011310868, - 0.017426062, -0.03729693, 0.024883974, -0.029588599, -0.0034265204, - 0.031078931, -0.04708394, 0.019208776, -0.016433079 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 7.066063E-4, + -0.0095007485, + -0.0100372415, + -0.015782973, + -0.0123699, + -0.0025268088, + 0.0017231766, + -0.00409922, + -0.008527382, + 0.02180986, + 0.0242909, + 0.022885395, + -0.031216597, + -0.003600539, + -0.0057272743, + -0.004973748, + 0.008368312, + -0.0044053737, + 0.017846677, + -0.020429006, + -0.01443837, + -0.0010193295, + 0.026925078, + 0.00861229, + 0.01650864, + -0.031401325, + -0.0041301753, + -0.034204036, + 0.021543533, + 0.013668913, + -0.012864686, + 0.019200908, + 0.0094847195, + -0.013023286, + -0.007603183, + 0.007971356, + 0.015670557, + 0.013920388, + -0.017807312, + -0.016913043, + 0.0024214408, + -0.018321266, + -0.02306122, + -6.797112E-4, + -0.019287648, + -0.007823132, + 0.004240015, + -0.0229506, + 0.013591789, + 0.012490665, + -0.011160767, + 0.04237082, + -0.010706821, + -0.0043585724, + 0.0242769, + 0.028195057, + -0.020002319, + -0.009140362, + -0.015924621, + 0.023969537, + -0.016130734, + -0.007470803, + 0.0039746766, + 0.0038711468, + 0.024847012, + 0.019027535, + -0.0048911762, + -8.8370254E-4, + 0.012129296, + 0.0056792228, + -0.027144138, + -0.012979429, + -0.002373918, + 0.0113595985, + -0.018491738, + 0.010772764, + 9.688494E-4, + -0.005200933, + 0.005675438, + -0.029610528, + 0.007977253, + 0.008538856, + -0.00730363, + 0.001935085, + 0.0013710636, + -0.022069965, + -0.011386573, + -0.017186707, + -0.03247286, + -0.029573353, + 0.009046953, + 0.013841954, + 0.0021394151, + 0.004550813, + 0.014904742, + 0.014216466, + 0.007895497, + -0.022961803, + -0.023799306, + 0.020814866, + -0.023936646, + -0.019612482, + 0.01984465, + 0.011890698, + -0.003401682, + 0.010121602, + 0.013898828, + 0.007024018, + 0.039287068, + -0.02645019, + -0.0066599236, + -0.0048169857, + 0.004704871, + 0.018661803, + -0.03286907, + -0.010034721, + 0.026303958, + 0.006694666, + 0.010765731, + -0.015076057, + -0.027961172, + -0.0038908287, + -0.011391359, + -0.010033695, + 0.0057717, + -0.0066406652, + 0.012261974, + -0.0026873378, + -0.012849572, + -0.015898446, + -0.0042691715, + -0.021232905, + 0.0041731563, + 0.015324208, + -0.011699412, + 0.0062336447, + 0.001058024, + 0.0052437717, + 0.0048324047, + 0.005667929, + 0.009204825, + 9.6119655E-4, + 0.010193867, + 0.017312538, + -0.009838262, + 0.014752278, + -0.021993151, + -0.013838959, + 0.0076896185, + -0.020154556, + 0.0041698064, + -0.01612424, + -0.0023785527, + -0.0037418737, + 0.008945946, + -0.0074252845, + 0.025774615, + -0.0012723239, + -0.014839859, + -0.02415538, + 0.0034901465, + 0.014570716, + -0.027534153, + 0.004953311, + -0.002298105, + -0.017809443, + -9.2004053E-4, + -0.009452402, + -0.020836188, + -0.022428248, + 0.019940332, + 0.009288342, + -0.013254487, + 0.016222758, + 0.016890213, + 0.0045354497, + 0.009403425, + -0.011589004, + -0.015939137, + -0.005813982, + 0.011808289, + 0.0042188135, + 0.011635833, + 0.026298642, + 0.02061602, + 0.0041248286, + -0.0042839693, + 0.006289741, + -0.0025276921, + -0.020192267, + -0.0013813324, + 0.023964943, + 0.020511383, + -0.019958733, + -0.006695334, + -0.0056383717, + 0.008838018, + 0.02546502, + 0.0063987565, + 0.008550641, + -0.008175674, + -0.009870554, + 0.012097316, + -0.0045511452, + 0.00971446, + 0.010609424, + 0.03239468, + 0.010421334, + -0.003114512, + 7.722311E-4, + -0.0155543415, + 0.0074104327, + -0.0015768422, + -0.021089774, + 0.023176445, + -0.01311282, + -0.0092691025, + -0.010256133, + 0.035714485, + 0.02131895, + 0.011765187, + -0.012105519, + 0.0073397234, + -5.5110117E-4, + -0.01992203, + 0.028203689, + -0.012026788, + 0.012781469, + -0.026668029, + 0.0031728183, + -0.01412058, + 0.0030947935, + -0.029179746, + -0.015038746, + 0.018691685, + 0.0030225387, + 0.034687284, + -0.012691118, + 0.009182172, + 0.0037359353, + -0.008883266, + 0.014591395, + -1.6015189E-4, + -0.02025381, + 0.006552429, + -0.0068224594, + -0.0010966418, + 0.004160665, + -0.008294972, + 0.02293259, + -0.01567856, + 0.006041303, + 0.008173516, + -0.004585213, + 0.014107488, + -0.021371963, + -0.028135382, + 0.010876721, + 0.029776225, + 0.0017395448, + -0.01599785, + -0.0077463286, + -0.018050501, + 0.008957849, + 0.013446433, + -0.01386048, + 0.0051480336, + -0.013779598, + -0.017136784, + -0.0057833595, + 0.010535648, + 0.02589457, + -0.02064157, + 0.008203542, + -0.03501125, + -0.004253213, + -0.020092184, + 0.013379962, + 0.0071497066, + -0.017840594, + -0.014002219, + 0.007910019, + 0.015440197, + 0.019206012, + 0.007985125, + 0.003572285, + 0.0046603186, + -0.037753988, + 0.030302063, + -0.0041268244, + -0.0040915515, + 0.0030142483, + 0.014274113, + 0.008979059, + 0.019927317, + 0.012741538, + -0.023870738, + -0.03780957, + -0.0038787143, + 0.0045106863, + -0.015978696, + -0.01595374, + -0.023954136, + -0.0017091549, + 0.004615546, + 0.01803332, + 0.016285948, + 0.010537809, + -0.0055684815, + 0.012844051, + 0.017242616, + -0.006003937, + -0.0144803915, + 0.020420408, + -0.01781413, + 0.03126805, + -0.002161689, + -0.021250982, + 0.006939907, + 0.011625843, + -0.009885301, + 0.009895934, + -0.012845798, + -0.02821062, + 0.010018625, + -0.013725605, + 0.017289164, + 0.02061132, + -0.009280008, + 0.007825554, + 0.009356675, + -0.024131047, + 0.011444271, + -0.020938843, + 0.01001313, + 0.003007088, + 0.009543408, + 0.0033826968, + -9.5977035E-4, + 0.025743313, + -0.0090370225, + 0.019058784, + -0.007213893, + -0.004708398, + 0.017906895, + -3.8208793E-5, + -0.0305957, + 0.0016968685, + -0.029107274, + -0.007359067, + 0.01386585, + -0.018175734, + -0.014200107, + 0.0020236087, + 0.022640081, + 0.002756338, + 0.033880178, + 0.001554892, + 0.0060958657, + 0.0049688355, + 0.03154414, + -0.0043111127, + -0.002757204, + -0.042790953, + -0.0033200034, + -0.021396626, + 1.947469E-4, + -0.011319716, + -0.0069355243, + -0.022700666, + 0.008311167, + 1.283019E-4, + -0.0125497775, + -0.008973361, + -0.0013373629, + -0.017954601, + 0.0035925335, + 0.014910346, + -0.0074513564, + 0.011590899, + -0.0030318664, + -0.0034937668, + 0.0064394237, + -0.011620072, + -0.045543376, + -0.012126365, + -9.67137E-4, + -0.013911669, + -0.011101795, + 0.017930506, + -0.008815666, + 0.008379247, + 0.0044617285, + -0.009993632, + 0.006931156, + -0.014807743, + 0.002761149, + -0.012309044, + 0.013813744, + 0.017117426, + 0.027174262, + 0.024244878, + 0.012809025, + 0.008759639, + -0.0017373265, + -0.026566697, + -0.004036337, + 0.018755497, + -0.027545262, + 0.05911164, + 0.015452382, + 0.030340258, + 0.016384587, + 0.027780147, + -0.011659549, + 0.01290825, + -0.037809946, + -0.0077970144, + -0.024620662, + 0.026712326, + -0.005701872, + -0.011355512, + 0.0132711455, + -0.015747428, + 0.014314146, + -0.028247578, + -0.014587564, + 0.027347375, + 0.0023708444, + 0.012565022, + -0.0031206822, + -0.020861005, + 0.022144575, + -0.0011103962, + 0.0072052274, + -0.008863235, + 0.019223845, + 0.006272488, + 0.0010656877, + 0.015179414, + 0.0035641508, + 0.008440626, + 0.0019589073, + -0.009238109, + -0.017274974, + 0.004682001, + -8.885957E-4, + 0.016712343, + 0.004743316, + 0.01055412, + 0.017787036, + -0.006250404, + 0.025266875, + -0.008296987, + 0.01243095, + -0.008769097, + 0.029075963, + -0.0059678964, + 0.007856272, + -0.026663113, + -0.012733465, + 0.002285705, + -0.009559191, + -0.008499231, + -7.903846E-4, + 0.017356612, + 4.679781E-4, + 0.0205959, + -0.0057688523, + 0.0165486, + -0.025850974, + 0.011643067, + -0.0062860316, + 0.015200472, + -0.029233875, + -0.02547424, + 0.017034711, + -0.012960493, + -0.012952147, + 0.009272981, + 0.02067799, + -0.002315436, + 0.02782909, + -0.021375485, + 0.0063171047, + -1.18966755E-5, + 0.0115641365, + -0.014005066, + -0.013910064, + -0.004245055, + -0.006153757, + 0.002218291, + 0.006426899, + 0.016235033, + 0.014488497, + -0.008296516, + -0.018243602, + 0.021427397, + 0.0111106755, + -0.039581917, + -0.009724163, + 0.006790239, + -0.02475135, + -3.8108998E-4, + 0.012427092, + -0.011442941, + 0.0025905287, + 0.014205724, + -0.005758555, + 0.009695659, + 0.0010303679, + 0.01305328, + -4.6945212E-4, + -0.0011952791, + -0.0051484588, + -0.0073498357, + -0.0164205, + 0.0024731308, + -0.015434604, + -0.017395146, + -0.020516643, + 0.008204673, + 0.016045768, + 0.0015196286, + 0.0095554385, + 0.031270713, + -0.013688358, + -0.014204318, + 0.013813478, + 0.010440572, + 0.0040231724, + 0.0033781242, + -0.008761483, + 0.0029402294, + 0.031572808, + -0.019297367, + 0.005300884, + 0.02471682, + -0.024697913, + -0.019256193, + 0.004138025, + 0.011628251, + 0.0061961845, + 0.018244894, + -0.016978547, + 0.0044170953, + 0.030250303, + 0.007730816, + 0.023238972, + 0.006795034, + 0.009262595, + 0.019495659, + -0.011820915, + 0.01412444, + 0.018989284, + -0.012129531, + 0.011674377, + 0.01939052, + 0.03050945, + -0.0016990734, + 0.011161695, + 0.004717657, + 0.0028811428, + -0.013300842, + 0.007726569, + 0.012853768, + 0.005639286, + 7.316623E-4, + -0.008908782, + -0.029855128, + 0.0016853433, + -0.020367485, + 0.010733969, + -0.044668537, + 0.017052544, + 0.0059082457, + -0.015149012, + -0.009312784, + 0.022600485, + 7.7530043E-4, + 0.009885651, + -0.008210032, + -0.019684957, + -0.0048401556, + 0.029030163, + -0.017561862, + 0.009418106, + 5.7547365E-4, + 0.017076954, + -0.0022509347, + 0.004775557, + -0.0025240371, + 0.010969233, + -0.03296587, + 0.00247846, + 0.016763212, + 0.0075529437, + -0.003337146, + 0.029540619, + -0.0061328807, + -0.01827565, + -0.011401964, + -7.0207333E-4, + 0.014003532, + -0.0044277213, + -0.008235618, + 0.018327225, + -0.019401625, + -0.0019512995, + 0.022100626, + 0.005577367, + -0.010396225, + 0.02522658, + -0.0047595045, + -0.008419393, + 0.020209052, + -0.029932776, + 0.019090082, + 0.008273796, + -0.029022343, + 6.6849598E-6, + 0.007994822, + 0.015034532, + 0.007540374, + -0.0028615312, + -2.676902E-4, + 0.026362518, + 0.008875867, + -0.0059878933, + -0.012127723, + -0.0028588679, + -0.0031274136, + 0.008330149, + 0.0056665665, + -0.010638915, + 0.0048661474, + -0.037731733, + 0.0075832717, + -0.0059605776, + -0.005801396, + 0.021036757, + -0.0084997285, + -0.019323621, + -0.019732732, + 0.004671418, + 0.004824358, + 0.007286291, + 0.01342517, + -0.0043978826, + 0.0031578934, + -0.013001756, + -0.008759388, + 0.006572191, + -0.012786771, + -0.0041528083, + 0.009883927, + -0.004500366, + 0.024471162, + 0.010779958, + 0.00854838, + 0.008361119, + -0.016806213, + -0.0068653305, + -0.015278893, + -0.0031263186, + -0.03095654, + -9.945399E-4, + -0.0027264396, + 1.5912809E-5, + -0.0037202355, + 0.008530154, + -1.7483886E-4, + -0.027836505, + 0.037579823, + 0.0050676037, + 0.021771405, + 0.006949807, + -0.017605009, + -6.0367794E-4, + 0.0152636515, + 0.009899635, + -0.005446097, + -0.0048880912, + 0.014185197, + -0.012393068, + 0.010238637, + -0.010388173, + 0.005915406, + 0.012144363, + -0.008307782, + -0.0025825263, + -0.008586083, + -0.006529893, + -0.009714835, + 0.0020723548, + -0.009279931, + 0.002827133, + -3.4371327E-4, + 0.026347904, + -4.7863432E-4, + 0.0031421098, + 0.0025419076, + 0.014340163, + -0.011553699, + -0.00700637, + -0.0029685404, + 0.0027214463, + 0.0034975566, + -0.021088528, + -0.034631018, + -0.0142880315, + 0.024860835, + -0.003659156, + 0.017057316, + -0.013205402, + -0.02470932, + 0.012951828, + -0.009078333, + -0.016125882, + -0.005172043, + -0.01498392, + 0.015449143, + 0.005980677, + -0.010556727, + 0.014916019, + -0.004924262, + -0.024171913, + -0.0081204465, + 0.015819022, + -0.008795868, + 0.0060610296, + -0.012693227, + 0.019147374, + 0.0010606247, + 0.012857898, + -0.010960321, + 0.016454149, + -0.011642868, + 0.021754755, + -0.0046571176, + 0.016784519, + 0.012589199, + 0.027040135, + -0.0064253015, + -0.005423747, + -0.007825043, + 0.0114129055, + 0.0023123275, + 0.0062354677, + -0.036543705, + -0.036770824, + -0.004119257, + -0.0036365688, + -0.0012519489, + -0.04771707, + -0.009670477, + 0.008948267, + -4.5650825E-4, + 0.019502569, + 0.011013928, + -0.014349497, + 0.021200212, + 0.013355996, + 0.0013697116, + 0.007132652, + -0.002749139, + -0.004589096, + -0.008972681, + 0.02483198, + 0.003090939, + -0.0144928405, + -0.008083829, + 0.016051492, + 0.013339187, + -0.0067900466, + -0.0015666707, + 0.0026004675, + -7.5022486E-4, + 0.01728485, + -0.009177343, + -0.006734778, + 0.0019332856, + 0.0063206684, + 0.007332368, + 0.013360041, + 0.023624897, + 0.018256871, + 0.0068898173, + -0.015277456, + -0.008093066, + 0.009909407, + -0.002764633, + 0.018639807, + 0.023267541, + -0.0018154894, + -0.0036561333, + -0.0169085, + -0.027189398, + -0.024872798, + 0.015713058, + 0.008115952, + 0.013523191, + 0.003167048, + 0.037076194, + -0.0043861866, + 0.010278698, + 0.0077291094, + 0.020481395, + 0.008928815, + -0.012714124, + 0.009085941, + 0.010658203, + -0.0063751554, + 0.007931565, + -0.01158479, + -0.008056037, + 0.0016263095, + 0.0010781749, + -0.002020195, + 0.022918444, + -0.0031520687, + 0.01188705, + 0.012024811, + -0.0022180846, + -0.003936893, + -0.010039315, + -0.017611815, + -0.023377223, + -0.01645084, + 0.002154041, + -0.020648243, + -0.010702741, + -0.009464858, + 6.5451494E-4, + -0.019297684, + -0.0010819075, + 0.0019599085, + -0.0060727196, + -0.019395115, + -0.011650136, + -0.004730333, + 0.0064862645, + -0.005773971, + 0.023961592, + -0.018061819, + 0.014761062, + -0.008969162, + -0.032557126, + 0.0010330498, + 0.011442068, + -0.021742577, + 0.005417224, + 0.023013068, + 0.010750386, + 0.002987912, + 0.026088577, + 0.02569026, + 0.009144064, + 2.692286E-4, + 0.022772724, + -0.0062375404, + -0.007893819, + 0.0109515665, + -0.017767709, + 0.00399128, + -0.020772012, + -0.011535524, + -0.0036242988, + 0.020706812, + -0.0069541596, + -0.019546771, + -0.001923671, + -0.028227802, + 0.007090658, + 0.008217221, + 0.003961101, + -0.015671343, + 0.007569006, + -0.006762049, + -0.008406598, + -0.007517646, + 0.017085226, + -0.01913411, + -4.7604504E-4, + -0.018295834, + 0.017519966, + -0.010110726, + -0.0059792786, + -7.224093E-4, + 0.03616233, + 0.018485116, + 9.91374E-4, + -0.002943542, + 0.015158892, + -8.778998E-4, + -0.0130526805, + -0.0014515697, + 0.017128287, + 0.008168653, + -0.013669377, + 0.013450625, + 0.010635795, + 0.014341471, + -0.016559051, + 0.011648613, + 0.006647227, + -0.009857553, + 0.034614086, + 0.023317445, + 0.029631369, + 0.014277279, + -0.02368768, + -0.003555413, + 0.019118864, + -0.0146874245, + -0.018155059, + -0.06388179, + 0.0032381339, + -0.011720348, + -0.007818082, + 0.013765163, + 0.0037177466, + -1.7430719E-4, + -0.022049857, + 0.009934012, + -0.02619724, + -0.015519326, + 0.0023228463, + 0.018458465, + -0.002647879, + -0.012435855, + 0.024210073, + 0.010267519, + -0.013339167, + -0.020324022, + 0.015516115, + 0.010501048, + 0.022502476, + 7.2252436E-4, + 0.032967377, + 0.017917449, + -0.0023324315, + 3.2289233E-4, + -0.005279212, + 0.00588224, + 0.019502196, + 0.005145421, + -0.0065273396, + 0.010574308, + 0.0015123431, + 0.021939985, + 0.0056451787, + 0.035217434, + 0.002329927, + 0.0017111361, + 0.029751062, + -0.0038202815, + 0.007858751, + -0.004640047, + -5.3605204E-4, + -7.9417793E-4, + 0.005602293, + -0.0031517665, + -0.026368868, + -0.004422044, + -0.033006195, + 0.020893674, + -0.013914995, + -0.009724576, + -0.020043267, + 0.0047777602, + 0.01592264, + 0.022214688, + 0.006632843, + 0.01206061, + -0.007521095, + 0.0013865741, + 0.033875734, + -0.018487837, + 0.014781186, + 0.011791975, + 0.03068471, + 0.005513949, + 0.02437197, + 0.019813731, + 0.0137763, + 0.0013525811, + 0.0011807779, + -0.015808577, + -0.005709241, + -0.008467558, + 0.022408692, + -0.00336122, + -0.013902358, + -0.004151754, + -0.017202523, + -0.024736714, + -0.009225871, + -0.022610268, + -0.019642157, + 0.0012393509, + -0.016535433, + -0.0044528744, + 0.008680379, + 0.01599564, + -5.4998574E-4, + 5.8737624E-4, + 0.005836315, + 0.008461392, + -0.04149666, + -0.018302754, + 0.0018026241, + 0.010055592, + 0.011347918, + 0.0153387105, + 0.009696218, + 0.0184559, + 0.011123602, + -6.939978E-4, + -0.007367709, + -0.012597397, + 0.007881385, + 0.0071528, + -0.021742724, + -0.005904476, + 0.012142987, + 0.02530994, + 0.011591464, + 0.00997987, + 0.012477636, + 0.030385938, + -0.009685856, + 0.0035557225, + 0.017528461, + 0.005634581, + -0.01835152, + 0.01559573, + 0.002475908, + -0.010316283, + 0.0053535937, + 0.0076446696, + -0.022508344, + 0.0036072782, + -0.011989027, + 0.019851632, + 0.0073444704, + -0.021137077, + -0.00202115, + 0.028679274, + 0.0018938126, + -0.013275164, + 0.005011456, + -0.019019745, + 0.014818969, + 0.002683701, + 0.0042307135, + 0.0057778605, + -0.0068851737, + -0.005544556, + -0.008492402, + -0.005393654, + -0.018679978, + -0.015814282, + 0.012114819, + 0.026858833, + 0.019373702, + -0.053099126, + 0.0021442936, + 0.024215246, + -0.0028705483, + 0.006891744, + -0.0083431965, + 0.015751088, + -0.01321332, + -0.003747522, + -0.0010397743, + -0.0063472027, + -0.006022653, + 0.0059861536, + 0.0068080355, + -0.022267835, + -0.0059131193, + -0.011720762, + 0.0015034318, + 0.023965226, + -0.0013790305, + -0.010273996, + 0.024463668, + -0.032081243, + -0.018403584, + -0.0014375935, + 0.030641349, + -0.0018419102, + 0.027815776, + -0.002402196, + -0.006731839, + 0.026250228, + 0.017330412, + -0.008412397, + -0.013890127, + 0.014606988, + -0.008226451, + 0.012810707, + -0.005810447, + 0.02079368, + 0.0014171858, + 0.016971812, + -0.04244227, + 0.031349488, + 0.017098032, + -0.0057106544, + 0.020991541, + 0.015855713, + -0.006782849, + 0.004330199, + 0.013719115, + 0.0059482795, + -0.0062952642, + -0.014327695, + 0.003048756, + 0.0033567713, + -0.001172737, + 0.0091997655, + 0.013254943, + -0.009289549, + 0.007994909, + 0.015245575, + -0.009547134, + 0.002861607, + 0.019994862, + -0.017165618, + -0.012929216, + 0.0034160842, + 9.7598555E-4, + -0.021149123, + -0.011063461, + 0.009043985, + -0.008433914, + 0.0011438451, + 0.018847354, + 0.0077803377, + -0.028845355, + -0.0062919916, + -0.0012344455, + 0.010870643, + -0.01263629, + 0.011266388, + 0.020861527, + -0.011346024, + -0.0109578725, + -0.0025331695, + 0.027135411, + -0.012666853, + -0.013095119, + 7.6074747E-4, + 0.004954932, + 0.009961505, + 0.015065556, + -0.021410443, + -8.5474015E-4, + 0.0068894173, + -0.020997498, + -0.0019262489, + -0.0021134748, + 0.003124907, + -2.3994096E-4, + 0.016669357, + 0.02676617, + 0.01835993, + 0.0065814387, + -0.00451591, + 0.006686015, + 0.018816836, + -0.006544258, + 0.002468689, + -0.0069950516, + -0.017582329, + -2.622148E-4, + 0.017794687, + -0.006975163, + 0.013684422, + -0.01809673, + -0.0069302544, + 0.016889587, + 0.005816805, + 0.0069010337, + 0.0022151691, + 0.0033472902, + 0.0044542816, + 0.0012724178, + -0.02260493, + 0.008742648, + 0.022408029, + 0.0138725145, + 0.021754207, + 0.010588405, + -0.01018912, + -0.007376341, + -0.0028957066, + -0.0036673013, + -0.008952039, + 0.006447759, + -0.020932399, + -0.0012885946, + -0.009734182, + -0.0063246144, + -0.02400657, + 0.0060935067, + -0.005092511, + -0.022247963, + 0.0032379758, + 0.017879216, + 0.019630382, + -0.017430762, + 0.025473557, + 0.0016980744, + -0.003354165, + -0.011148838, + 0.009926447, + 0.015522182, + -0.009075531, + -0.008231839, + 0.0086839525, + 0.022970313, + 0.009887696, + -0.028401565, + 0.0067498917, + 0.011903847, + 0.03148956, + 0.009949974, + -0.007256867, + -0.002565419, + -0.013552859, + 2.9788053E-4, + -0.0010263763, + -0.012193907, + -0.03364418, + 0.028917968, + -0.014825346, + 0.0050787027, + -0.011517268, + -0.013364765, + 0.01507445, + -1.11936926E-4, + -0.009606594, + 0.025822626, + 0.0039669243, + -7.0651685E-4, + -0.02378005, + 0.022499964, + -0.0068161353, + -0.01534345, + 0.013494363, + 0.009636077, + 0.006136777, + -0.013845024, + -0.011060436, + -0.025535561, + -0.0076228664, + -0.01850787, + -0.013061592, + 0.0032050023, + -0.0014239431, + -0.00410833, + 0.005434683, + -8.688577E-4, + -0.008422542, + 0.0037012862, + 0.002435965, + -0.016145306, + -0.017699009, + -0.023727102, + 4.5555044E-4, + -0.01633523, + -0.009660111, + -0.034493387, + 0.017392367, + 0.0025690983, + 0.0129714105, + 0.017749162, + -7.5254495E-5, + -0.03449739, + -0.003508411, + -0.00680332, + 0.010793384, + -0.010475363, + 0.02951503, + -0.02086067, + 0.009219094, + 0.023635147, + 0.040671714, + 0.03081107, + 0.005907145, + -0.020259775, + 0.011073924, + -0.002970999, + 0.02146898, + -0.01637298, + 0.04501483, + 0.0117095215, + 0.010024877, + -0.02335697, + 0.007024665, + -0.034369953, + 0.013782467, + 0.044367727, + 0.02919425, + 0.033845916, + -0.0029916423, + -0.0010338005, + -0.0044262116, + -0.008149238, + 0.0035724367, + 0.011946125, + 0.0249824, + 0.006748923, + -0.020290356, + -0.024068044, + -0.006206001, + 0.007143397, + -0.0072502326, + -0.0014482359, + -0.007696752, + -0.0127139045, + -0.00703681, + 0.011322874, + -0.004968801, + -0.0087293545, + -0.006950244, + 0.010837107, + -0.015185224, + 0.0039404277, + -0.021055846, + -0.018006371, + -0.004582198, + 0.007459672, + 0.028607354, + 0.002383608, + 0.029703088, + 0.013038162, + -0.024674915, + -0.011044448, + -0.014195037, + -0.010823703, + 0.017171377, + -0.010737322, + -0.0119150225, + 7.17606E-4, + -0.0034865246, + -0.008748833, + -0.006999528, + 0.021385754, + -0.017459456, + 0.026132803, + 0.022429647, + -0.01877054, + 0.003867238, + 0.0037055719, + -0.02537523, + -8.282705E-4, + 0.004566052, + 0.0054290425, + -0.003612572, + -0.032491658, + 0.004120096, + -0.013717389, + -0.010679966, + -3.5076274E-4, + 0.0032121916, + -0.0079224985, + 0.0044149626, + 0.017991262, + 0.010560802, + -0.005859249, + 0.016883414, + -0.0060674194, + -0.02470244, + -0.026110336, + 0.019726872, + -0.0010569027, + 0.011828613, + 0.02816283, + 0.013389681, + 0.013356223, + -0.0035888962, + 0.006458779, + -0.001582301, + 0.020619933, + 0.017734114, + 0.0023974336, + -0.025342632, + 0.0022155696, + 2.0051403E-4, + -0.019603088, + 0.004357324, + 0.0052102236, + 0.007070418, + 0.012816641, + 0.02329313, + -0.016486654, + -0.010889378, + -0.02315633, + 0.0045951274, + -0.022300772, + 0.034930844, + -0.013323819, + 0.013840101, + -0.0071807546, + -0.0013212916, + 0.015987698, + -0.012014335, + 0.01095312, + 0.016796678, + 0.00881644, + 0.011225049, + -0.015204401, + -0.0049558273, + -0.017522942, + -0.02531603, + 0.0022220272, + 0.008446552, + 5.007807E-4, + -0.0049396213, + -0.0011555539, + 9.785098E-4, + 0.02129552, + 0.006549253, + 0.0031840892, + 0.0038243863, + -0.011446142, + -0.0063331565, + 0.013651072, + -0.008350149, + -0.007386447, + 0.004478717, + -0.010215106, + 0.021155756, + 0.010347063, + -0.02206475, + -0.003384421, + -0.0035435236, + 0.017107053, + -4.6977E-4, + -5.2035216E-4, + -0.02296066, + -0.0044773747, + 0.00989425, + 0.0012219468, + 0.009126592, + 0.0083420845, + -0.003969817, + -0.009712158, + 0.021136118, + -0.0034707708, + -0.0040318007, + 0.0075033577, + -4.6425138E-4, + -0.0044196695, + -0.0034744572, + -0.019247817, + 0.018712275, + -0.023332205, + 0.0018251422, + -0.02259978, + -0.0035445204, + -0.0070507373, + 0.003877302, + -0.025169373, + -0.009499628, + -0.0072576776, + 0.0025223943, + 0.0027026844, + 0.008343993, + -0.0031899223, + 0.03193284, + 0.0035382384, + 0.005199599, + -0.024138605, + 0.009494934, + 0.014500763, + -0.022235343, + -0.012881996, + -0.0046788324, + 0.001813539, + -0.006141032, + -0.00879409, + -0.0028756931, + 0.042500183, + 0.010956209, + -0.014597737, + -0.0050321445, + 0.0054885847, + 0.016656872, + 0.0017762122, + 0.018104343, + 0.0055942545, + 0.010044285, + 0.006479743, + 0.004021972, + 0.023378538, + -0.030948943, + -1.3273125E-4, + 0.027074782, + 0.008855595, + 0.01186069, + -0.018607434, + -0.014565571, + 0.0091815395, + 0.022665773, + 0.010021506, + -0.0057155793, + -0.033781894, + 0.030029405, + 0.0056688995, + -0.0102128675, + 0.0017050927, + 0.0092139775, + 0.024205247, + 0.004284938, + -0.020598313, + 0.014466499, + -0.01676653, + -0.016139584, + -0.03292458, + -0.02424199, + 0.007510714, + -0.0056432867, + -0.019498954, + 0.0042946488, + 0.022832507, + -0.0036543405, + 0.0049954522, + -0.011813579, + -0.013496089, + 0.0062681874, + -0.0121188555, + 0.012927452, + 0.0046135127, + -0.008484083, + -0.02080543, + 0.01967646, + -0.0181251, + -0.021421595, + 0.0152068455, + 0.014850736, + 0.024572108, + -0.009916271, + -0.0074141524, + 0.014738795, + 0.019808698, + 0.01399519, + 0.01125303, + -0.011059818, + -0.004005904, + 0.005119935, + 0.0065390444, + -0.0027533777, + -6.259723E-4, + 0.035734333, + -0.0199969, + 0.010953958, + 0.0025620575, + 0.024666974, + -0.016068038, + -0.007768051, + 0.008027963, + -0.015760828, + 0.002673953, + -0.0016393731, + -0.040686395, + -0.009247551, + -0.017000897, + 0.026863307, + -1.2632437E-5, + 0.0050649797, + 0.018402737, + -0.02490907, + 0.01972559, + -0.00621936, + 0.008104725, + 0.035651553, + 0.027501237, + 5.613725E-4, + 0.004314597, + 0.016180245, + -0.007597794, + -3.7266474E-4, + 0.0027932988, + -0.018167727, + -0.0042515406, + -6.948446E-4, + 0.022800332, + 0.018583525, + -0.014623229, + -9.365268E-4, + -0.012465622, + 0.0058631534, + 0.01429073, + -0.021813376, + -0.014356684, + 0.021794992, + -0.017184447, + -0.011162835, + 0.0012536423, + 0.010540576, + -0.0070499177, + 0.0192622, + 0.007003924, + 0.0067217327, + 0.006217653, + 0.011274385, + -0.010677655, + -0.013331587, + 0.0198932, + -0.00790067, + -0.012126966, + 0.0032680377, + -0.0048389346, + -0.010805712, + -1.00460544E-4, + -0.021876525, + 0.006855567, + 0.01083779, + -0.025466552, + -0.019729953, + 0.014379661, + -0.022845177, + 0.011256953, + -0.012671351, + 0.01648414, + 0.010210061, + -0.011855189, + -0.0061048907, + 0.02555141, + -0.010718857, + -0.015568415, + -9.6680893E-4, + 2.2234574E-4, + -0.023809155, + 0.024354104, + -0.0142112905, + 0.0040984116, + 0.019356616, + 0.006265271, + 0.009944225, + 0.006713903, + -0.009965485, + -0.006625854, + 0.015422417, + -0.015030729, + -0.013069444, + -0.01850178, + -0.01805044, + 0.002713722, + -0.009803188, + -0.00628534, + 0.010086537, + -0.031144157, + 8.9930015E-4, + -0.0062978575, + 0.019726653, + -0.028361384, + -0.0047099628, + 0.0041645076, + -7.5512537E-4, + 0.020602185, + 0.02489352, + -0.009369052, + 0.010441048, + -0.00781178, + -0.008229784, + 0.01387714, + -0.006422016, + 0.009592505, + 0.011020222, + 0.024516819, + -0.0024406624, + -0.023531485, + 0.012481398, + 0.013222088, + -0.026592374, + -0.004928566, + 0.007214308, + -0.02377561, + -4.7587504E-4, + -0.018480245, + -0.0035832317, + 0.005676124, + -0.0027708698, + -0.03208611, + 0.009347686, + -0.012120725, + 0.0066437633, + 0.0064044786, + -0.010490102, + -0.010171511, + -7.8443985E-4, + -0.036696855, + -0.028447248, + -0.016734742, + -0.0025890965, + -0.0022694473, + 0.0036707383, + 0.03512251, + 0.009683799, + -0.0071941568, + 0.017090792, + -0.017395921, + 0.005925453, + 0.016607862, + -0.011537769, + 0.0019849695, + -0.013552983, + 0.0057625966, + -7.813583E-4, + -0.0042706346, + -0.012358289, + 0.02420687, + -0.0076416587, + 4.2468478E-4, + -0.034665864, + 0.0022488944, + 0.014106191, + 0.021415787, + -0.008859283, + -0.009761186, + -0.0011986609, + 0.014873123, + -0.016338088, + -0.02549473, + 0.0028476587, + -0.0073712603, + 0.011066717, + 0.005188933, + -0.016698547, + 0.0076027173, + 0.03269166, + 0.008638108, + -0.013802542, + 0.008007973, + 0.027628172, + -0.026266335, + -0.004667194, + 0.020121856, + 0.0044472883, + 0.0044740746, + 5.45183E-4, + 0.017210979, + 2.7317248E-4, + -0.0044961, + 0.008964789, + 0.018511685, + 0.0024240096, + -0.0043543694, + 0.016878413, + 0.010879065, + 0.020467043, + -0.019888945, + 0.01826282, + -0.009749028, + 0.025662785, + -0.027677098, + 0.012183271, + -0.015584276, + -0.009751752, + 0.018920481, + 0.0014623429, + 0.0067388546, + 0.0141025875, + -0.015571226, + -0.027952252, + 3.7076138E-4, + -0.025869517, + 0.010952523, + -0.022100678, + -0.022638358, + 0.018321488, + -0.020824535, + 0.015224814, + 0.0073130066, + -0.007559409, + 0.0026926193, + 0.011047516, + -0.0016131164, + -7.347054E-5, + 0.012725175, + -0.018513158, + 0.032202374, + 0.008063388, + 0.0032891242, + -0.013898541, + -0.020398116, + 0.015822345, + 0.008136843, + -0.0023948655, + 0.020371867, + -0.001090835, + -0.0076216017, + -0.03564649, + 0.0036224225, + 0.006266452, + -0.013826413, + 0.01944612, + 0.020759458, + -0.0060009803, + -0.013478822, + 0.011513028, + 0.0027648218, + 0.013096149, + 0.023394017, + 0.01420596, + 0.023705529, + 0.0030897094, + 0.0052748444, + -0.010243108, + 0.018434351, + 0.024033198, + -0.011376273, + 0.0061788363, + -0.038090557, + 0.0078103906, + 0.016532907, + -0.0151438145, + -0.020476742, + -0.0025102207, + 0.0073986338, + 0.011300119, + 0.0038196538, + -0.019802667, + 0.0070612566, + 0.015449817, + 0.020311931, + -0.0043943557, + -0.028466398, + 0.003263114, + -0.012156172, + -0.029927619, + -0.013727065, + -0.022804521, + -0.013481827, + 0.005521524, + -0.0054958253, + -0.0029704943, + -0.025598573, + -1.4674534E-4, + -0.0037005297, + 0.0100110965, + 0.029305259, + 0.0067903637, + 0.006761663, + -0.011524573, + 0.005571952, + -0.04226679, + -0.002755713, + 0.0103288125, + -0.015793202, + -0.0063980883, + -0.0031050409, + -0.008481416, + -0.01640178, + -0.041862242, + 0.0077663497, + 0.0043769595, + 0.01387485, + -0.012208208, + 0.039714724, + 0.007179999, + 0.00198028, + -0.008428951, + -0.023372322, + -0.0030971747, + -0.0054396046, + -0.01409069, + 0.002218508, + -0.0067482544, + 0.029510843, + -0.0030427962, + -0.0017415854, + 0.008381488, + 0.03259809, + 0.009272476, + -0.033330504, + 0.0178248, + 0.0039340267, + 0.025183808, + -0.011659914, + -0.02571747, + 0.002380206, + 3.7056627E-4, + -0.015378882, + -0.0071419943, + 0.0073340856, + 0.0039868434, + 0.0051684817, + -0.012833272, + -0.03697839, + 0.03271847, + 0.021056175, + -0.015805092, + -0.009695621, + -0.007846166, + -0.010103488, + -0.00887406, + -0.013441732, + -0.005428057, + -0.012058301, + 0.013549475, + 0.012183519, + -0.023383396, + -0.008660128, + -0.01601755, + -0.025345106, + 0.026333818, + 0.0012299306, + 0.03262913, + -0.007899665, + -0.0029997744, + 5.220782E-4, + -0.013164278, + 0.002451732, + -0.020179583, + 0.013226231, + -0.018214017, + -0.018367818, + 0.008374961, + -0.02295906, + -0.013893782, + -0.0015928587, + -0.013448216, + -0.0072566485, + -0.010809149, + 0.012125416, + -0.021807024, + 0.0063570985, + -0.022213861, + -0.006255499, + 0.021190278, + 0.0021465875, + -0.0035735106, + 0.022912277, + -0.026661955, + -0.029261528, + -0.015168702, + -0.031589244, + 0.01580377, + -0.0029333956, + -0.014731895, + 0.013924607, + -0.0020614166, + 0.020304106, + 0.018612947, + 0.024706606, + 0.001362777, + 0.01875056, + -0.009464293, + -0.0040134583, + 0.00973168, + -0.013637275, + -0.018700296, + -0.026548145, + 0.032976117, + 0.019668117, + -0.024643375, + -0.00246447, + -0.0044161375, + -0.026195044, + 0.018789742, + -0.021059003, + -0.049135007, + -0.018346004, + 0.0041403524, + -0.0030615593, + 0.0056162905, + -0.0070321793, + -0.015310741, + -0.015998604, + -0.009052733, + -0.0015626157, + 0.022527464, + -0.0053398088, + 0.0017674881, + 0.019903762, + 0.015422727, + -0.003080215, + 0.0103894835, + -0.010385321, + -0.007841082, + 0.010155389, + -0.03180818, + 0.010488279, + 0.022612201, + 0.0119235385, + -0.010382177, + 0.009937804, + -0.0010434104, + 0.0047103297, + 0.022155762, + -0.022535132, + 0.008908993, + -0.016003948, + 0.019523416, + 0.021491706, + -0.025829472, + -0.03134121, + -0.009082914, + -0.0093863895, + -0.018375903, + 0.010975015, + -0.015004277, + 0.011273438, + 0.011670843, + 0.03087354, + -0.007774079, + -0.018380398, + -0.036056504, + -0.012290307, + -0.03094265, + -0.0024370074, + 0.02277097, + -0.029012725, + 0.0053722076, + -0.018818915, + -0.008921204, + -0.0013848261, + 0.014619105, + 0.013345105, + -0.0021458936, + -0.01829678, + -0.0097459145, + 0.010311207, + -0.010292439, + 0.0049868966, + -0.0037628724, + -0.012291581, + 0.028803937, + 0.0063637565, + -0.022103792, + -0.012879002, + -0.0035237551, + 0.012355515, + 0.016186519, + 0.00992631, + 0.028299903, + 0.0038270543, + -0.004874206, + -0.009498484, + -0.031162057, + -0.0054504164, + 0.010814743, + -0.013036695, + -0.020774573, + 0.001999562, + -0.011079895, + -0.0019067614, + -0.027030542, + -0.018151684, + -0.0121879615, + -0.013593215, + -0.015546418, + 0.0026485086, + -0.021494854, + 0.007398592, + 0.013968163, + -4.0193668E-4, + 0.03453712, + -0.015883427, + 0.0054173926, + 1.4368627E-4, + -0.015086872, + -0.006185864, + 0.01211134, + 0.023229731, + 0.0029657837, + -0.0013906072, + 0.0055874805, + 0.004264927, + -0.0194059, + -0.0028314488, + 0.019660613, + -0.021401264, + 0.0029757472, + -0.016889496, + 0.0013083322, + 0.009631522, + 0.034140404, + -0.0113438405, + 0.00238683, + -0.0070044324, + -5.5629597E-4, + 0.019130697, + -0.03451491, + 0.027280426, + 0.024976, + 0.03809967, + 0.027862424, + 0.010938589, + 0.012551989, + 0.016001033, + -0.0048239315, + -0.022147527, + 0.018354062, + 0.006244239, + 0.030321902, + 0.008827644, + 0.015881063, + -0.011963555, + 0.020511469, + 0.03111748, + 0.0029360827, + -0.028462248, + -0.008095264, + 0.0018346257, + 0.0037748122, + 0.008362496, + -0.02417313, + 0.020091506, + 0.016404986, + 0.0066652447, + 0.017725978, + -0.008516356, + -0.016867366, + -0.0011880317, + 0.01263575, + -0.022368655, + -0.028406896, + 0.0054622456, + -0.015678834, + 0.027740112, + 0.013474327, + 0.016985152, + 0.033330366, + -0.033330638, + -0.018547678, + 0.013855213, + 0.028007967, + -0.006263882, + 0.014568572, + 0.005327793, + -0.0035416533, + -0.009093585, + -0.0019254942, + -0.017194495, + 0.023649538, + -0.019805107, + -0.007047834, + 0.008927678, + 0.011336132, + 0.022301452, + 0.0043829526, + -0.026945569, + -0.025113918, + 0.022101715, + 0.0025931296, + 0.00869009, + -0.0036333962, + 0.014472895, + -0.025314441, + 0.008380751, + -0.0066487794, + 0.0013814664, + 5.316511E-4, + 0.019875376, + 0.02212091, + 0.018970562, + 0.0045432313, + -0.0028125898, + -0.017291563, + 0.002527219, + -0.02932536, + -0.012905113, + -0.0019576503, + 0.008800057, + -0.018507756, + 0.007774769, + 0.015894469, + -0.038291417, + -0.010142084, + -0.0063550267, + -0.009023743, + -0.03704113, + 0.00686199, + 0.0110204555, + 0.0068889577, + -0.0094550485, + 6.9602334E-4, + 0.023914427, + -0.001254945, + -0.008759863, + 0.0072301337, + -0.015355994, + 0.020744175, + 0.023019347, + -0.0030088988, + 0.024010368, + 0.009964578, + 0.0011612676, + -0.01510886, + 0.014054351, + -0.013153711, + 0.004658751, + -0.021476923, + -0.004547291, + -0.011914303, + 0.032632936, + -0.012679812, + -0.0019655125, + -0.014994363, + 0.0011033992, + 0.016325256, + -0.03848885, + -0.0049865087, + 0.0102653615, + 0.009016886, + 0.038260147, + -0.011996166, + -0.004665831, + 0.011270577, + -0.01047394, + -0.014312348, + 0.011753141, + 0.012126643, + 0.0063947844, + 0.022758367, + 0.014653392, + -0.0059886295, + -0.016166415, + 0.030174246, + -0.006556618, + -0.0040191747, + -0.0075805644, + 0.0044952445, + -1.6381792E-4, + -0.003812022, + 0.0028514615, + 0.02869565, + 3.539873E-4, + 0.0063315616, + 0.0026859327, + 1.6274462E-4, + -6.735059E-4, + 0.013906042, + -0.021135507, + 0.0036472455, + 0.0060684104, + 0.029446453, + 0.019976674, + -0.026689336, + 0.026196228, + 0.0050398796, + -0.01206443, + -0.014947853, + 0.020210806, + -0.0077484045, + -0.012396692, + -6.002781E-4, + 0.006303939, + -3.1417664E-4, + -0.0016924016, + -0.016332278, + 0.014663174, + -0.0067823045, + -0.017506404, + -0.01037704, + 0.02542476, + 8.8092464E-4, + -0.0076439357, + 0.002089505, + -0.008138607, + -1.387671E-4, + -0.0044548875, + -0.0048091095, + 0.007455446, + -0.012953408, + -0.0033864246, + 0.0057800375, + 0.0051362556, + 0.009234961, + 0.01645616, + 0.019789135, + -0.020664707, + -0.028265938, + 0.02043796, + 0.036830932, + -0.006239843, + -0.002387545, + 0.0057870084, + -0.004365424, + 0.008830766, + 0.006447652, + 0.0062467037, + -0.0020832492, + 0.004285922, + -0.0038224482, + -0.034950286, + -0.009705136, + 0.004156539, + -0.013158503, + 0.001157283, + -0.0063417144, + 0.002558346, + 0.016638312, + 0.0070468704, + -0.0028526816, + -0.024103135, + -0.0026138984, + 0.02092317, + 0.035953857, + -0.01713204, + -0.013056319, + -0.016052641, + -0.001417135, + 0.020313863, + 0.02210034, + -0.0097555, + -0.025767986, + -0.008293018, + 0.04241124, + -0.013940344, + -0.01651228, + 0.0024145716, + -6.558684E-4, + -0.016131938, + -0.0054218727, + 0.0025632353, + 0.021871114, + 0.027889185, + -0.0023814244, + -0.010758738, + 0.021510689, + -0.020142183, + 0.015381898, + -0.016957177, + 0.0044313623, + 0.0054508327, + 9.6664735E-4, + -0.016067185, + -0.017961318, + -0.002410348, + -0.007895164, + -0.021729931, + 0.007731583, + -6.258074E-4, + 0.001487116, + 0.0037429489, + 0.009450052, + -0.012422315, + 0.022807768, + -8.85895E-4, + 0.0200761, + 0.012113468, + -2.4270847E-4, + -0.010291092, + -0.006254114, + -0.012887648, + 0.0018560402, + 0.0585229, + -0.003133064, + -0.011544058, + 0.008232975, + 0.012669215, + 0.014829778, + 0.004480218, + -0.007114516, + 0.03240347, + 0.026902895, + -0.007110489, + -0.020028232, + -0.005018738, + -0.012032883, + -0.010735849, + 0.018608214, + -0.004470149, + 0.020561533, + 0.007000825, + -0.032846645, + 0.0077767083, + 0.013271251, + 0.047825128, + 0.015503992, + 0.030412327, + -0.0215491, + -0.0071963887, + 0.010569579, + -0.021318525, + 0.012140129, + 0.029441383, + 0.01038667, + -0.015738504, + -0.017862504, + 0.019596206, + 0.016981393, + -0.005643607, + 0.002722284, + 0.0040581953, + 0.008973186, + 0.0010695203, + 0.0033268828, + -0.017235357, + 0.011967699, + 0.003948508, + -0.024548423, + -0.00504907, + 0.015879069, + -0.015409079, + -0.02766582, + -1.03872575E-4, + -0.036414847, + 0.02262337, + 0.0082980385, + 0.0082945675, + 0.007704571, + 0.013302326, + -0.0033220234, + -0.009971116, + -0.00817176, + -0.0024654202, + 0.013046716, + -0.032507278, + 0.019815791, + -8.234212E-4, + -0.0066764224, + -0.017332142, + 0.003896172, + 0.013345847, + -0.0040880144, + -0.010617056, + 0.0017372826, + 0.0069542965, + -0.017073976, + 0.01168224, + -0.024410529, + -0.022993218, + 0.01108675, + -0.022615248, + 0.003736601, + -0.02521248, + -0.005480338, + 0.015263532, + -0.015864149, + 0.020495564, + 0.0048119607, + 6.801635E-5, + 0.020778008, + 0.01654956, + -0.007480835, + -0.0011725152, + 0.036855374, + -5.854109E-4, + -8.5731386E-4, + 0.019315088, + 0.0019081258, + 0.020684684, + 0.004083359, + -8.3803944E-4, + 0.008187652, + -0.011365542, + -0.010269733, + 0.00430406, + -0.020400548, + -0.0064847358, + 0.0040684473, + 0.0062146396, + 0.0017695966, + 0.029331984, + 0.016024802, + 0.014676696, + 0.021321775, + -0.019364862, + 0.0021004458, + -0.0010388157, + -0.014304206, + -0.024200534, + 0.017269017, + -0.004680664, + 8.689184E-4, + -0.010272148, + -0.006530468, + 0.011774553, + -0.008307673, + 0.0029220434, + 0.0012484513, + 0.012997497, + 0.0011304197, + 0.020759953, + 0.011956129, + 0.017072435, + -5.89482E-6, + -0.018423788, + -0.019194208, + 0.005405739, + -0.024217809, + -0.022895366, + -0.020085115, + -0.033458628, + 0.008416543, + -0.0025781898, + -0.04041228, + 0.013008423, + 0.00572558, + -0.0055318996, + 0.018642643, + 0.020615896, + 0.0149634145, + -0.0023552277, + -0.0061201532, + 0.004642605, + 0.010028377, + -0.017865103, + 0.014476846, + -0.005793131, + 0.014659329, + 0.022567807, + -0.01918655, + -0.0069025788, + 7.4867206E-4, + -5.241071E-4, + 0.009755021, + 0.03089412, + -0.0064832726, + -0.0072304257, + -0.04033131, + -0.021726187, + 0.012145852, + -0.0054710796, + 0.004462473, + -0.0061419313, + -0.002366196, + 0.0076849647, + 0.0037561224, + 0.023457495, + -0.005005722, + -0.011957553, + 2.3274036E-4, + 0.016097171, + -0.011581167, + 0.0027565018, + 0.0048774905, + 0.030689381, + -0.0065647173, + -0.008634685, + 0.015936133, + -0.022328926, + 0.03781948, + 0.0029486353, + 0.0040853755, + 0.0018463801, + 0.0015962892, + -0.0044707675, + 0.012548044, + 0.02581545, + 0.029573364, + 0.008614218, + -0.004167056, + 0.0054037743, + -0.010044667, + 0.015394047, + -0.002530922, + -0.029432716, + 0.026913079, + 0.009453763, + 0.003926557, + 0.011896416, + -0.019409502, + -0.007998496, + 0.007883271, + -0.015054232, + -0.0048259096, + 2.9490873E-5, + -0.015244821, + 0.013809939, + -7.0042873E-4, + -0.015066452, + -0.011275171, + 0.023787828, + -0.005947526, + -0.008172479, + -2.382282E-4, + 0.025601314, + -0.006797105, + 0.0016889642, + 0.009517358, + 0.001642045, + -0.019707473, + -0.0041574617, + 0.006096411, + -0.0080560455, + -0.0020812235, + -0.0119878305, + -0.0071964813, + -0.0024469018, + 0.006310711, + -0.021866314, + 0.017003559, + 0.003074014, + -0.024306228, + -0.011334489, + 0.01751569, + 0.027039235, + -0.011447164, + -0.019080015, + 0.013572882, + -0.001373621, + 0.008726336, + -0.00354946, + -0.022710523, + 0.006386773, + 0.0043222546, + -0.0016586733, + 0.017997703, + -0.026452897, + -0.0037741454, + 0.017199393, + 0.012134162, + -0.006203107, + -0.01032196, + -5.4352166E-4, + 0.030339181, + 1.8453918E-4, + -0.023376632, + -0.025566552, + 0.015261842, + -0.013650107, + -5.975884E-4, + -0.036209475, + 0.0014712804, + -0.007591662, + 2.8719028E-4, + 0.020351825, + 0.011752536, + 0.01304222, + -0.0031564943, + 0.024376415, + -0.028300518, + -0.0017989615, + 0.008391933, + -0.024642952, + -0.016563393, + -0.0107104825, + 0.014164247, + 0.010972109, + 0.0011545137, + 0.0024896585, + 0.018955115, + -0.0080440035, + 0.027056538, + -0.0039172, + -0.0046502487, + -0.0069642565, + 0.023322677, + -0.0040502576, + -0.020616088, + -0.004230135, + 0.017163642, + -0.0095172655, + -0.0027930215, + 0.0122221885, + 5.789123E-4, + 0.002919614, + -0.03666482, + 0.0070041046, + 0.032587778, + 0.03048681, + -0.025090128, + 0.004543073, + -0.012181099, + -0.008003892, + 0.014983484, + -0.0054176184, + 0.0064890743, + -0.011004892, + -0.010972905, + 0.009703406, + 0.0016612904, + -0.0066515994, + -0.0049772686, + -0.0151307965, + 0.019147208, + 0.025703108, + -0.015619072, + 0.0026418536, + 0.005947313, + 0.0011742726, + -0.026042901, + -0.015643185, + 8.596467E-4, + -0.03863562, + 3.9804472E-5, + 0.031368844, + -0.025930125, + 0.022786034, + -0.002500706, + 3.4041578E-4, + -0.010064095, + -0.0018897282, + 0.008511356, + -1.0226463E-4, + 0.009246519, + -0.01673404, + 0.0024973731, + -0.0037252228, + -0.016598359, + 0.042355914, + -0.033053756, + 0.04107389, + 0.019191358, + -0.009493307, + 0.011072521, + 5.8504264E-4, + -0.007898029, + 0.0046720714, + -0.014381979, + -0.013465569, + -0.014845732, + 5.040272E-4, + 0.015311888, + 0.01687433, + -0.016477875, + -0.016194744, + -0.015905848, + 0.011118402, + 0.011089857, + -0.011021141, + 0.002318546, + -0.00842161, + 0.026561294, + -0.01022856, + -0.016603211, + -0.017767182, + -0.008923872, + -0.013023727, + 0.012438785, + -0.03361721, + -0.025020396, + -0.0113866255, + 0.010742882, + -0.035829615, + -0.032734193, + -0.0067293434, + -0.02091671, + -0.012170751, + -0.021246037, + 0.0034480128, + 0.008024659, + 0.019842716, + -0.02739167, + 0.02293911, + -0.009439688, + 0.0039370153, + -0.0023696613, + 0.022566801, + -0.016122181, + -0.011435481, + -0.0032225293, + -0.0050704298, + 0.021583885, + -0.009502177, + -0.016600652, + -0.023245106, + -0.009177246, + 0.0024173802, + 0.008085825, + -0.005036842, + 0.009179681, + -0.015688948, + 0.0068643466, + 0.0018351111, + 0.014502455, + -0.021580247, + 0.017502451, + -0.010167936, + 2.1788746E-4, + -0.0055559673, + -1.3025127E-4, + 0.013449563, + -0.013940806, + 0.0019213443, + 0.0020355764, + 0.011530748, + 0.004369673, + 0.0037102278, + -0.008292733, + 0.02329882, + -0.027181856, + -0.0024658465, + 0.017340653, + 0.0087543605, + -0.0021370312, + 0.027094897, + 0.004758498, + -0.015865201, + 0.008486956, + -0.037171345, + 0.0337852, + 0.023820102, + 0.01964002, + 0.0058020796, + 0.0145198535, + -0.01610336, + -0.003420931, + -0.029222736, + 0.011841551, + -0.005926926, + -0.004212834, + -0.024172127, + 0.024034817, + 0.005682699, + 0.023906004, + 0.016581899, + 0.022655893, + -0.0014555312, + 0.015709756, + 0.017247086, + 0.02987994, + 0.011542916, + -0.0026887788, + 0.02717083, + 0.03238211, + 0.0052143093, + 0.015768511, + 7.6660217E-4, + -0.026075905, + 0.0071359156, + -0.015917124, + -0.022201603, + -0.01609396, + 0.005766058, + 0.0043411492, + 0.0053596916, + 0.0068254936, + -0.0019605916, + 0.019545455, + 0.014315523, + 0.010173108, + -0.005917421, + -0.029796513, + 2.6839436E-4, + 0.028861374, + 0.022092732, + 0.0071894005, + -0.0094038425, + -0.0093587665, + -0.008116595, + 0.0144799575, + 0.013723498, + 0.0013572032, + -0.026888236, + -0.00422925, + 0.009871587, + 0.009674272, + -0.010209615, + 0.010523369, + -0.019980105, + 0.031523637, + 0.0031550496, + -0.0032974759, + -0.02710324, + 0.0050317054, + -0.04261313, + -0.006907113, + 0.0021661122, + -0.0185188, + -0.009783926, + 0.02160076, + 0.028575532, + -0.0033533655, + -0.007884817, + -0.011092986, + -0.033870846, + 0.005001461, + 0.031017756, + 0.015601189, + -0.003867905, + -0.016533656, + 0.02769417, + 0.021958303, + -0.043883707, + 0.013064278, + 0.01085523, + -0.021294186, + -0.038211428, + 0.016253188, + -0.0051413253, + 0.04256353, + 0.024164446, + -0.005727501, + -0.0052082012, + 0.0016099255, + -0.034863345, + -0.003958068, + -0.002395167, + 0.022714823, + -0.009982205, + 0.029938243, + 2.8204577E-4, + -7.4877264E-4, + 0.01902903, + -0.0062878863, + 0.002244912, + -0.014117734, + 0.007946505, + 0.0047140247, + 0.015011326, + -0.0029316088, + 0.00411987, + -0.011955913, + -0.0061571007, + -0.0028846676, + -5.9501326E-4, + -0.015948221, + 0.02300199, + -0.013145437, + 0.01243176, + 0.0019680792, + 0.019150801, + -0.03413434, + 0.0010409388, + 0.018167745, + -0.012833502, + -0.011182148, + 0.011141015, + 0.013377132, + 0.024003414, + -0.01396355, + -3.686352E-4, + -0.0047898614, + 0.011510565, + 0.021669192, + -0.00419837, + -0.0071760667, + -0.0063674916, + 0.022013953, + -0.015626866, + -0.013198472, + -0.024778256, + 0.012076395, + 0.0051061283, + 0.002802426, + -0.0018866058, + -0.022890884, + -0.011095031, + 0.0034742546, + -0.015569728, + -0.023012783, + 0.0077586393, + -0.029996926, + 0.017703993, + -0.008521829, + 0.0059608035, + -0.009516502, + -0.0012981537, + -0.023392787, + 0.0017831156, + 0.019063516, + 0.01280848, + 0.0038744167, + -0.0013220055, + -0.004844713, + -0.014505266, + -0.00645926, + -0.031503946, + 0.011904204, + -0.00597954, + -0.009588707, + -0.0012619551, + 0.013108462, + -0.0069325957, + 0.029936412, + 0.001077157, + -0.009726456, + 0.023741769, + 0.023448402, + 0.013422994, + -0.013388519, + -0.004711222, + 0.010984808, + -0.015319168, + -7.323202E-4, + 0.009833817, + 0.0053452877, + 0.0037191827, + 0.012241768, + 0.012352465, + 0.026646923, + -0.0027746658, + 0.014297837, + 0.019058265, + -0.006091647, + -0.011535806, + -0.022513712, + 0.0031581481, + -0.005026982, + -0.021657478, + 8.923614E-4, + 0.0043973327, + -0.0123044215, + -0.02311876, + 3.3690507E-4, + 0.024358544, + -0.0048593516, + 0.0047294996, + -0.0056081596, + 0.004360358, + -0.0024190093, + 0.014384715, + 0.0124597475, + 0.003480054, + -0.0074354103, + 9.1116974E-4, + 0.021204388, + 0.022909835, + 0.0012304761, + -0.0043541566, + -0.03791302, + 3.6168008E-4, + -0.007979877, + 0.018221606, + 0.008425073, + -0.013374047, + 0.02309054, + 0.008580174, + 0.009846069, + 0.01785624, + 0.01616828, + -0.007996178, + -0.0046635554, + -0.018757278, + 0.0028356523, + -0.008202049, + -0.0068272296, + -3.944028E-5, + 0.02010238, + -0.001954476, + 0.0024023433, + -0.006072916, + -0.014079084, + -0.015428272, + -0.009721143, + 0.0027875453, + -0.008425168, + -0.0048448336, + -0.011744229, + -0.0051865494, + -0.033566292, + 0.0043491493, + -0.0057007633, + -0.019820457, + 0.016308298, + -0.010239939, + 0.014855505, + 0.0354106, + 0.0033834302, + -0.009066517, + -0.0022518302, + 0.0114731295, + 0.02839269, + -0.0022491915, + 0.0027371363, + 0.01181553, + -0.0020615833, + -0.019569596, + 0.01542136, + -0.011450406, + 0.031954277, + -0.013202073, + -0.028974034, + 0.0025292274, + -0.011404941, + 0.0018827299, + 0.028691607, + -0.005776126, + -0.013049329, + -0.007692899, + 0.008956696, + 0.0017933438, + -0.0121262735, + -0.005057567, + 8.349569E-4, + 0.014629085, + 0.004401332, + 0.035946235, + 0.009489735, + 0.005672276, + 1.79267E-4, + 0.0048411554, + 0.0030772937, + 0.0026512537, + 0.015852934, + 0.009632582, + -0.0049014706, + 0.008520919, + 0.009987356, + 0.0038286415, + 0.012426638, + -0.0072520124, + -0.0035800452, + -0.004290692, + -0.0025079, + -0.027094584, + -0.029408652, + 0.003949915, + -0.02569855, + 0.021664679, + -2.9702592E-4, + 0.004803349, + -0.01829935, + -0.004861761, + -0.008086461, + -0.0021566444, + -0.014762833, + 0.005425488, + 0.027423931, + 0.0048232907, + -0.020234635, + -0.015745737, + -0.022418289, + 0.027938368, + 0.01967583, + 0.022145372, + -0.007156692, + 0.019848155, + -0.0038678325, + -0.014752922, + -0.006563107, + 4.4706799E-4, + -0.0034439622, + -0.0030435359, + 0.012177178, + 0.010728695, + 0.009376285, + -0.011407188, + 0.017262358, + -0.008589543, + 0.0070923874, + -0.018200316, + -0.026576724, + 0.0019332046, + 0.004737066, + -0.0050476138, + -0.014263123, + 0.014321928, + 0.014452888, + -0.0021808688, + -0.0034000098, + -9.034171E-4, + 0.006087965, + -0.01405835, + -0.0053863395, + 0.017656708, + -0.016975459, + 0.012467562, + -0.01230703, + -0.03710205, + -0.005008867, + -0.01618541, + 0.00507949, + 0.005222517, + 0.0035472002, + -0.0026708364, + -0.012905531, + -0.0049787317, + -0.0034886755, + 0.005538616, + 0.008228859, + 0.013200466, + -0.013496942, + 0.033542003, + -0.0076429583, + 0.0050319876, + 0.007850763, + 0.024254465, + 0.001235755, + 0.009164867, + 0.01055583, + -0.0064145466, + 1.261923E-4, + -0.013389577, + -0.0013388357, + 0.024085132, + 0.030222712, + 0.0018086291, + 0.0038872636, + 0.028306026, + -0.0054203435, + -0.0032720335, + -0.012212896, + 0.015320495, + 0.01076977, + -0.020422168, + 0.022298584, + 0.035477024, + -7.597271E-4, + 0.014851839, + -0.019181, + -0.031504616, + -0.020249568, + 0.009472726, + -0.016911596, + 0.023643821, + -0.008310509, + -0.00851885, + -0.014368908, + 0.010234428, + -0.0045113442, + 0.0018641759, + 0.01256227, + -0.015354308, + 0.0076423986, + -0.0120422635, + -0.027707588, + 0.0074697575, + 0.023807252, + -0.004513947, + 0.0068416903, + -0.005152677, + -0.012928117, + -0.016025927, + 0.015537146, + 0.0026642638, + -0.005142975, + 0.008674935, + 0.004520147, + -0.003637644, + -0.008143466, + -0.031260993, + 0.0028682572, + -0.021637462, + -0.01263405, + -0.019277638, + 0.00833056, + 0.009831349, + 0.009328456, + -0.027779492, + 0.028177984, + 0.014986347, + 0.005363574, + 0.015701696, + -0.012270254, + 0.020936444, + -0.02251377, + 0.018749347, + 0.0065967026, + -0.010939128, + -0.006829333, + -0.009530878, + 0.006961215, + 0.0048104767, + 0.0029643134, + 0.007440463, + -0.0065294467, + 0.0059576076, + -0.002564523, + -0.019855145, + 0.0014028825, + -0.045156296, + -0.0019228954, + 0.014609346, + 0.004952731, + 0.0038553218, + -0.017878357, + 0.004591507, + -0.022266475, + -0.016291108, + -0.010311727, + -0.00281645, + 0.005343045, + -0.010114044, + 0.014700661, + 0.005547255, + -0.009215923, + 0.02185583, + -0.016161714, + 0.016619347, + -0.011973507, + -0.002062668, + -0.008763375, + 0.011184977, + 0.0056989025, + 0.014394148, + 0.02578592, + -0.022820916, + 0.005627066, + -0.006339143, + 0.016591523, + 0.0038678078, + -0.023814376, + 0.005980465, + 0.0048843063, + 0.008188245, + -0.031082647, + -0.038922034, + -0.0048538437, + -0.003651252, + 0.027832232, + 0.008756512, + -0.0054012174, + -0.0036948896, + 0.013217302, + 0.022851855, + 0.008296405, + -0.010892652, + -0.012163175, + 0.016130846, + 0.013603005, + 9.721462E-4, + -0.004214798, + -0.008717093, + 0.0060606347, + 0.0180401, + -0.0198672, + 0.0056876536, + 0.02555234, + -0.0013162979, + -0.006992888, + -0.012456166, + 0.013543435, + -0.008233608, + -0.010438337, + -0.0031858177, + 0.0104024755, + -0.0038262694, + -0.021213155, + 0.0151080135, + 0.012740097, + -0.028010897, + 0.00211715, + 0.010460201, + -0.024339426, + -2.11411E-4, + 0.0058876215, + 0.0045201457, + -0.005130667, + -0.014583471, + 0.0011094854, + 0.023555685, + 0.02292807, + 0.022343166, + 0.043852683, + 0.01980498, + 0.0082928995, + -0.0022364552, + -0.029342527, + 0.014087263, + -0.0042341105, + 7.5421995E-4, + -0.0064692046, + 0.02800615, + 0.013763656, + 0.0050493157, + -0.028829211, + 0.0071631367, + -0.011782956, + -0.0059552495, + 0.021185033, + -0.0152106825, + 0.002360758, + 0.01933832, + 1.8368458E-4, + -0.015134753, + 0.016820554, + 0.029283313, + -0.020783463, + -0.02189449, + -0.02084136, + 0.007886401, + -0.007456698, + 0.00864777, + -0.0039245654, + -0.015469831, + -0.008187604, + -0.010721359, + -0.008888508, + -0.018265627, + 0.011017574, + 0.0073137567, + 0.011694814, + 9.7523624E-4, + -0.004350972, + 0.0049570026, + -0.010234654, + 0.006532081, + 0.017849233, + 0.002327764, + 0.008706841, + 0.0042864652, + 0.006549243, + -0.025969647, + -0.030062262, + -0.0034619928, + 0.019439654, + -0.0040489933, + 0.00898267, + -0.0041443687, + 0.004232021, + 0.03555822, + -0.015159748, + -0.007189275, + 0.025724864, + -0.013160403, + 0.019235775, + -0.015542973, + -0.0024373347, + 0.017632203, + 0.010738196, + 0.010156042, + 0.020078918, + 0.01641851, + 0.006997201, + 0.014098642, + -0.021155713, + 0.012652956, + -0.004849482, + 0.0037733815, + 0.007919154, + 0.0037101945, + 0.019353677, + -0.012780235, + -0.020401299, + -0.007114382, + -0.054984696, + -0.0026149738, + 0.004843588, + 0.007860543, + -0.0039829267, + 0.015103022, + 0.007600323, + 0.013588806, + 0.013886298, + 0.023655877, + 6.01904E-4, + -0.0021956954, + -0.007323092, + 0.009666826, + -0.02721509, + -0.022498148, + 0.014020051, + -0.011115548, + 0.012735705, + 0.024396244, + 0.0038716549, + -0.016154403, + 9.6116465E-4, + 0.015515034, + -9.8982E-4, + -0.041430525, + -0.0011011086, + 0.0031724097, + -0.003688855, + -0.0064794393, + 0.025434464, + 0.009357079, + -0.034786128, + 0.0030219976, + 0.009949648, + -0.00969975, + -0.015333494, + 0.023824688, + 0.018962378, + -0.007855189, + 0.014795094, + -0.016200194, + -0.0016759776, + 0.007610367, + -0.005001666, + -0.02239846, + -0.024722334, + 0.017047096, + 0.013361739, + 0.012146679, + -0.013754482, + 0.0048256963, + 0.030129312, + 8.2358456E-4, + 0.0022963446, + -0.0094999485, + 0.0028021217, + 0.0124415895, + -0.006193499, + 0.010029817, + 0.002668283, + -0.015108881, + 0.011592602, + 0.0067041647, + -0.014326246, + 0.0026889842, + 0.00912945, + 0.008386629, + -0.010498914, + -0.0137961265, + -0.0049547646, + -0.0031336423, + 0.003652978, + 0.009076162, + -0.01256896, + -0.03593353, + 0.007859313, + -0.021198396, + 0.007502789, + -0.018449433, + 0.016452247, + 0.0074552963, + -0.015537511, + -0.0032839072, + 0.007926269, + -0.018028526, + 0.004539785, + 0.016732847, + 0.013581038, + -0.03332854, + 0.0050439434, + 0.009990826, + -0.018003415, + -0.00696274, + -0.0029804937, + -0.031751547, + 0.0022692014, + 0.010254441, + -0.01524313, + 0.013659024, + -0.0052896673, + 0.034314148, + 0.0051404224, + -0.031537946, + 0.01223552, + 0.044959836, + 0.01465738, + -0.014275822, + 0.0108840605, + -0.016144544, + 0.020728134, + -0.03846387, + 0.0052323346, + -0.020082382, + -0.014683124, + 0.0051672654, + 0.014988676, + -0.009482976, + 0.004919254, + 0.007012913, + -0.008841918, + -0.008557286, + 0.009522033, + -0.02049974, + -0.016037116, + -0.04073443, + 0.00827337, + -0.005577244, + 0.012378792, + 0.013674334, + -0.018347776, + 0.025672464, + 0.010346332, + -0.008508216, + 1.1551316E-4, + -0.010806748, + -0.015286566, + 0.010127897, + 0.017102195, + -9.2672795E-4, + -0.010182991, + 0.010889818, + -0.013407158, + 0.01291247, + -0.0026625257, + -0.0025241629, + 0.006964902, + 0.0063654454, + 0.011518512, + 0.001220416, + -0.01547879, + -0.010313959, + -0.0019562487, + 0.014782945, + 0.008546706, + 0.017267894, + 0.008766793, + 0.0026907702, + 0.016184386, + 0.020972637, + 0.02090882, + 0.004038365, + 0.0016966485, + 0.00983876, + -0.014373418, + -0.003546524, + 0.019855717, + -0.009138168, + -0.01181277, + -0.008063988, + -0.022250103, + -0.00514418, + 0.034018043, + 0.026304552, + -0.01683829, + -0.021983495, + -0.01889338, + -7.429559E-4, + -0.011647683, + -0.005254027, + 0.026034797, + -0.025107978, + -0.016144847, + -0.017523915, + -0.02244889, + 0.031950597, + 0.018541172, + -0.01771459, + 0.008469329, + 0.004217286, + -0.010690614, + -0.017820295, + -0.0010719709, + 0.0301919, + 0.0057149474, + 0.013231435, + -0.015168182, + 0.018738706, + 0.01700119, + -0.023059538, + 0.0029841932, + -0.004314352, + 0.024311757, + 0.017704826, + 0.008089213, + -0.014952974, + -0.023296097, + 0.006041968, + -8.529224E-4, + -0.008036855, + -0.0018891239, + -0.014874821, + -0.020575136, + -1.461075E-4, + 0.0130908955, + 0.004292978, + 0.007929788, + 0.0017281569, + -0.012648321, + -0.02544673, + -0.011697861, + 0.0067413324, + -0.022990761, + -0.007993959, + 0.013713945, + 0.0056892917, + -0.00261154, + 0.01618953, + 0.0048800325, + 0.018860636, + -0.003560672, + 0.010475759, + 0.0021975744, + -0.014577222, + -0.034182522, + -0.007875575, + 0.008126722, + -0.010650751, + -0.0074874335, + -0.0020294122, + 0.008452659, + 0.007382557, + 0.024824655, + -0.025619183, + -0.018334692, + 0.008727061, + -0.028844763, + 0.0016083756, + -0.007970106, + 0.0066629257, + -0.021158032, + -0.021200709, + 0.022294527, + 4.95602E-4, + 0.0060155503, + 0.008200089, + 0.03105117, + 0.0011555338, + 0.021001544, + -0.008607036, + 0.019864341, + -0.0054282895, + -0.0026739216, + 0.020690937, + -0.010046548, + -0.0082180975, + 0.010795296, + 0.0041370844, + 0.006520475, + 0.0070148367, + 0.010375197, + 0.019227594, + 0.003637322, + -0.0042943503, + -0.010674275, + 0.018089488, + 0.003885071, + -0.026178667, + -0.024454936, + -0.02139234, + 0.019933162, + 0.02411458, + 8.2733524E-5, + -6.5124873E-4, + 0.0051996773, + -0.0063016154, + -0.004109164, + 0.008429365, + 0.008202354, + -0.008174945, + -0.029559763, + 0.0038843902, + -0.014875174, + -0.016903386, + -0.003429315, + -0.016405107, + 0.0051699327, + -0.024847493, + -0.00761778, + 0.01539836, + -0.0046768147, + -0.0026298298, + -0.007587669, + -0.009212268, + -0.0055579077, + -0.017222121, + -0.007891109, + 0.020967536, + 0.011691163, + 0.006961498, + -9.5352717E-4, + -0.0017583085, + 5.8790646E-4, + 0.0025239768, + -0.026039192, + -0.019814722, + 0.03289079, + -0.0025972049, + -0.0045197294, + -0.012794949, + 0.026118297, + -0.010243999, + 0.004804872, + 0.02081238, + 5.027637E-4, + 0.016569154, + 0.03843815, + -8.562319E-5, + -0.00999104, + 0.0072192354, + 0.020085724, + 0.006831865, + -0.009473695, + 0.0031817777, + 3.7738727E-4, + -0.023939762, + -0.018198056, + -0.0060279323, + -0.008742233, + -0.012180555, + -0.009803259, + 0.015443319, + 2.4185479E-6, + 0.013859732, + 0.029021978, + 0.016626848, + -0.020681296, + 0.011412085, + 0.020197226, + -0.0010870731, + 0.014341974, + 0.0015714043, + 0.008051053, + -0.01179, + -0.010122203, + -8.9403475E-5, + -0.02192595, + -0.02386542, + -0.022756664, + 0.0033525114, + 0.006042903, + 0.0016067934, + -0.004007751, + -0.0074746474, + -0.019599084, + 0.0058711455, + 0.0126698, + -0.0101001, + -0.009264054, + 0.015163229, + 0.029530723, + -0.026564274, + 0.005070351, + 0.0055077854, + -0.015015594, + -0.015733866, + 0.01372744, + -0.010675336, + 0.0027296382, + 0.012505453, + 0.010227486, + 0.011364765, + -0.009454033, + -0.016897405, + 0.013789049, + -0.0015711597, + -0.0012788671, + 0.0076912986, + 0.0041188886, + -0.0060151145, + 0.009443885, + -0.025302026, + 0.009974476, + 0.013226394, + 0.017848207, + -0.017197525, + -0.007945258, + 0.006625161, + -0.0013827997, + -0.03460259, + -0.011380479, + 0.004054514, + 0.019576538, + -0.0032975122, + 0.013733984, + 0.021269862, + 0.021583697, + -0.020210005, + -0.036238633, + 0.017099153, + -0.027463421, + -0.018316688, + -0.020929558, + -0.0021171693, + -0.019076154, + -0.0027908566, + 0.027166793, + 0.0068986686, + -0.019987503, + -0.027007556, + -0.009114975, + 0.011212388, + 0.01632559, + 0.01070846, + 0.02490654, + -0.018243356, + 0.015349427, + -0.008241213, + 0.018241128, + 0.011730372, + -0.0048808744, + 0.007589747, + 0.0013588531, + 0.011120073, + -0.0051482483, + -0.0025771875, + 0.007373957, + 0.016687017, + 0.012681888, + -0.0068875877, + 0.030722562, + 0.007312343, + 0.0022602, + 0.011042397, + -0.05562081, + 0.025766136, + -0.020987697, + 0.013943094, + -0.004878706, + -0.00708541, + -3.0412496E-4, + -0.023379086, + -0.017882895, + -0.005941284, + 0.010528998, + -0.033082608, + -0.03211464, + 0.024802279, + 0.013860706, + 0.010499015, + 0.009952615, + -0.008054265, + 0.0028028437, + 0.010484416, + -0.009638675, + -0.01886455, + -0.04783407, + 0.030547356, + -0.008850669, + 0.010135298, + -0.013308355, + 0.015097684, + 0.0040495554, + -0.010808448, + 0.0021424836, + -0.020993054, + 0.0014877272, + -0.01925163, + 0.0036397579, + 0.004392138, + 0.0011547419, + 0.004201262, + -0.010745503, + -0.01743957, + -5.0817296E-4, + -0.0051476727, + -0.0067576244, + 0.0075738947, + -0.0056999363, + -0.006715891, + -0.0039554355, + -0.023940653, + -0.03517357, + 0.0029446012, + 0.04576212, + 0.005159309, + 0.0014864212, + -0.0027345077, + -0.03143455, + -0.0024623387, + -0.013921345, + -0.011508894, + -0.016458908, + 0.015469387, + 0.0021821768, + -9.355747E-4, + -0.028454663, + -0.004308154, + 0.02563536, + -0.016976072, + 0.001185854, + -0.014844607, + -0.0071073966, + 0.016819073, + -0.018262524, + -0.014582344, + 0.0034128726, + 8.139378E-4, + 0.013425778, + -0.010364886, + 0.010938772, + 0.00729025, + 0.0013267669, + 0.0010381105, + 0.014091845, + -0.0013788694, + 0.010852081, + -0.02367179, + -0.012306579, + -0.00463597, + -0.0048545776, + -0.0019571218, + 0.012200979, + -0.01169948, + 0.00994623, + 0.022339713, + -0.021859182, + -0.0023831367, + -0.008989436, + 0.030023497, + -0.00931317, + 6.0194585E-4, + -0.033152215, + -0.008286338, + -0.003752814, + -0.0075821476, + 0.009399472, + -0.0040281094, + 0.024787085, + 0.016002016, + -0.004102109, + 0.021138644, + -0.0048408303, + 0.03103642, + -0.0173483, + -0.007850556, + -0.041170087, + -0.025468713, + 0.011161215, + 0.002108329, + -0.010856638, + -0.009430478, + -0.00603176, + 0.006771151, + 0.0050155995, + -0.0054165027, + 0.0091831, + 0.010814782, + 0.0016153149, + -0.011115387, + -0.010597021, + -0.011433855, + 0.019678716, + -0.012985785, + 0.014219029, + -0.009848821, + -0.009335744, + 0.009010177, + 0.012768126, + -0.0069926283, + 0.014677801, + 0.034609307, + 0.005300128, + -0.0023335319, + 0.0019454984, + 0.029596463, + -0.0066804104, + -0.007119561, + -0.019112462, + 0.0010745762, + -0.0014309965, + 0.016982103, + 0.021638894, + 0.005587619, + 0.008156213, + 0.030668588, + 0.011483092, + 0.018923873, + -0.013562327, + 0.040283225, + 0.0010588362, + -0.022942023, + -0.016630407, + 0.0044593876, + -0.02067354, + -0.0050753104, + -0.018702451, + 0.013071278, + 0.0013301262, + 0.0016894831, + 0.014894527, + -0.016101027, + -0.010584015, + -0.012664312, + 0.012353534, + -0.019976871, + -0.014553106, + 2.5286461E-4, + 0.013559478, + 0.010484229, + 7.6143176E-4, + -0.01860816, + 0.008036631, + 0.020168703, + 0.012207782, + 0.014616009, + 0.01761523, + -0.020724114, + -0.01848741, + -0.015061307, + -0.02776504, + 0.02013868, + -0.0025571035, + -0.02457098, + 0.005198882, + -0.026603667, + 1.497266E-4, + 0.019070875, + -0.0068305554, + -0.011478803, + 0.0074438276, + -0.011259745, + -0.04295206, + 0.0074930643, + -0.0071183327, + -0.0064885076, + -0.008226803, + -0.010524358, + 6.093374E-4, + 0.0039747, + 0.004874976, + -0.00797976, + -0.010371813, + -0.026490169, + 6.913092E-4, + 0.012262008, + -0.0030712746, + -0.0012140236, + 0.028651917, + 0.017253194, + 0.020201515, + 0.0011314597, + -0.0019627581, + 0.0129187675, + -0.029888853, + -0.017114755, + 0.02137751, + -0.008509044, + -0.010163891, + 0.01979495, + -0.008470295, + -0.010811731, + 0.00521843, + -0.012916331, + 0.0022327828, + 0.011526, + 0.013578957, + -0.0024780903 ], - "paletteEmbedding": [ - 0.0037820307, -0.0033938966, -0.05033853, 0.015604151, 0.10741005, - -0.056938317, -0.03738571, 0.07460136, -0.05565188, 0.008748346, - 0.06419017, -0.019842137, -0.0015737256, 0.015835078, 0.015789878, - -0.034140263, -0.0043606535, 0.030759357, -0.01624095, 0.021460347, - 0.010370016, -0.01335528, -0.030465769, 0.03239314, 0.026193202, - -0.017254043, 0.034582376, -0.013013005, -0.0030600124, -0.006755664, - 0.026629347, 0.041630704, 0.0029443975, 0.0011927043, 0.010048623, - -0.034324847, 0.060095042, -0.07099953, 0.015016085, 0.020126333, - 0.0023273593, 0.085118465, 0.002299374, 0.021867419, -0.015498285, - 0.023730474, -0.01682944, 0.031904552, 0.014876576, -0.019574026, - 0.061306108, -0.0049797497, -0.028053576, 0.044025276, 0.04425514, - -0.010856099, 0.019638339, 0.0137029635, 6.112459e-4, 0.037266716, - 0.007021002, -0.026021322, -0.020865776, -0.0683127, 0.03911231, - 0.019296357, -0.025383983, -0.030820558, 0.019301362, 0.02147847, - 0.015186802, 0.014804509, -0.008090921, -0.06631676, -0.03813771, - 0.020284796, 0.014051008, -0.020373207, -0.016558258, 0.06371554, - 0.0066285525, -0.012057973, -0.046788163, -0.02800504, -0.010364779, - 0.021335967, -0.07429983, 0.021719161, -0.06883952, -0.059477128, - -0.0034832165, -0.030093156, -0.0077871503, -0.008256598, 0.016556146, - -0.0056499667, 0.0066867922, -0.013874517, 0.036824625, -0.010954705, - 0.011283709, -0.028047428, -0.015990432, -0.025413174, -0.048059493, - 0.024784086, -0.006614173, 0.02285933, -0.0084186755, 0.043253217, - -0.025137773, 0.027591757, -0.015337326, -0.00993566, 0.008976178, - 0.03879679, 0.02626065, -0.03869098, -0.04544202, -0.012278135, - 0.021534119, 0.03949642, -0.0013795142, -0.023383198, 0.016413497, - 6.823584e-6, 0.013998116, 7.268383e-5, 0.0026562975, 0.03915674, - -0.04716378, 6.4593455e-4, 0.044431783, -0.030976193, -0.030454896, - 0.024987353, 0.056971267, -0.016214281, 0.00921772, 0.01867643, - 0.0224218, 0.038898442, 0.010700281, -0.019667761, -0.021841398, - 7.2959735e-4, 0.014564949, -0.014750972, 0.026434353, -0.022846457, - -0.017859636, -0.049798556, 0.05990608, 0.019677, -0.015638549, - 0.039426986, -0.037829958, 0.033198446, 0.003949155, 0.026533602, - 0.028863758, -0.03078311, 0.0068093524, -0.0053035133, 0.006151916, - 0.010257612, 0.015961448, -0.0072802203, -0.013841446, 0.05855692, - -0.054422066, -0.025069544, 0.0156779, -0.010173178, -0.040307872, - -0.0039297063, 0.013782187, -0.0020007037, 0.019760441, 0.05599553, - 0.0759978, -0.019691302, -0.03588349, 0.017839031, -0.028524093, - 0.015081394, 0.0013387594, -0.07093745, -0.033264216, -0.019682137, - 0.01794448, -0.014902358, -0.017312469, -0.021095334, 0.030530624, - -0.010378826, 0.0671735, 0.025079852, 0.027832948, -0.011183552, - 0.016271085, 0.013689351, 0.037874307, -0.02984145, 0.040569305, - 0.03494463, 0.028232863, -0.023350613, 0.031862352, -0.07762647, - -0.0063595967, -0.013442558, 0.032643855, -0.023551838, -0.016159195, - -0.030654615, -0.0022267876, 0.036794424, -0.025784688, -0.02798292, - -0.0016567125, -0.027798878, -0.029880565, -0.02141766, 0.04301216, - -0.03880286, 0.03192367, 0.0013194453, -0.010191327, 0.012713892, - 0.028413305, -0.038640056, 0.021199051, -0.01109644, -0.017642163, - -0.07763808, 0.028467229, -0.008419304, -0.0112942895, 0.011188683, - 0.0034460677, -0.009105513, 0.050202083, 0.042585008, 0.036379717, - 0.008317429, -0.029048968, 0.01386616, 0.028012317, -0.06837743, - -0.0074803927, -0.033696122, -8.92416e-4, -0.012558215, 0.021990582, - -0.0041745245, 0.021826748, 0.025410505, -0.038427413, 0.045574922, - -0.049376234, -0.0469589, 0.038777426, 0.027245706, -0.040195797, - 0.0026191752, 0.015858939, -0.03309972, 0.005396171, 0.023957128, - -0.020270169, 0.01991479, 0.013705289, -0.03555442, -0.027854135, - 0.021508517, 0.048622034, 0.035639778, 0.04133511, -0.043220364, - -0.057267696, -0.021080999, -0.018807976, -0.047381666, -0.02503902, - -0.036976755, -0.00712881, 0.045616366, 0.057212114, 0.0029080068, - 0.0066165607, 0.0038836384, 0.035412394, -0.035686746, -0.041362043, - -0.0013513387, -0.0029257457, 0.014141751, 0.03730926, 0.0051612644, - -0.076236665, 0.00469025, 0.011585546, 0.04173285, 0.0070693274, - -0.004394842, -0.014071667, -0.01191812, 0.032423846, -0.05923629, - 0.008988119, 0.023819815, -0.034410268, 0.0071276417, 0.042698044, - -0.05225964, 0.004776628, 0.039484754, -0.019815637, 0.05850808, - -0.040603638, 0.010725256, -0.0085740145, -0.028922776, -0.038641322, - -0.0076536215, 0.009241627, -0.0028506347, 0.006838563, -6.7429885e-4, - -0.015832346, 0.064468294, 0.017811248, 0.0448166, -0.055923052, - -0.0014608898, -0.01345723, -0.073420085, -5.204498e-4, -0.0058459407, - -0.0101963105, -0.010717476, 0.012072898, 0.032784447, -0.04322261, - 0.004834287, 0.025791721, 0.0013879112, -0.041516215, 0.016447496, - 0.031298257, 0.007747069, 0.0015578095, -0.04101641, 0.006464855, - -0.015269273, -0.01185391, 0.02254011, -0.029915532, 0.027729534, - -0.04912947, -0.012523913, -0.019788152, -0.070432834, -0.030198634, - -0.016575282, 0.009680148, 0.029897042, -0.04281539, 4.1892668e-4, - -0.013886921, -0.047625463, -0.0074780546, 0.03503107, 0.00889354, - -8.6894433e-4, -0.043741386, 0.012718651, 0.009305619, 0.010060436, - 0.011628638, 0.018267859, 0.011651135, -0.034799624, 0.037841395, - 0.027852913, 0.061348975, 2.9245095e-4, 0.017600484, -0.041560348, - -0.0054368726, -0.025159294, 0.025138507, 0.023583347, 0.030588629, - 0.015795553, -0.07363861, 0.011316985, 0.0214036, -0.01252622, - -0.032464664, -0.032089483, -6.465675e-5, 0.0117506515, -0.044959564, - 0.054701876, 0.03751445, -0.03602943, -0.04088833, 0.07174862, - 3.4049357e-4, 0.029795, 0.0105534755, -0.056949973, 0.03534692, - 0.010939517, -0.017380036, -0.028627824, -0.006430347, -0.0011933966, - 0.016911538, -0.042675633, -0.018795019, -0.0056250766, -0.03270665, - -0.034033008, 0.043352805, 0.009496158, 0.027408807, -0.008087351, - 0.009179255, 0.018873628, 5.344531e-4, 0.04736086, 0.007241071, - -0.008574849, 0.0347232, -0.024431793, 0.0022968848, -0.029076997, - -0.030802365, -0.03500915, 0.00939079, 0.028128857, 0.022551283, - 0.0050794864, -0.043096285, 0.030625457, -0.035986997, 0.017462121, - -0.020424783, -0.007708849, -0.0024914173, -0.027541274, -0.03222905, - 0.04253391, 0.035920154, 0.011120933, 0.030605467, 0.01583295, - 0.0052374494, 0.005963777, 0.06284253, 0.04194011, 0.04256064, - -0.007991531, 0.021188019, 0.02269863, -0.058112647, -0.026553981, - 0.007114586, -0.022313213, 0.0061990493, 0.033894718, 0.0034345668, - -0.0795386, 0.050672494, -0.016058713, 0.0089902645, -0.0010549353, - 0.0021205784, -0.0087961, 0.0105225425, 0.015767125, 0.00702937, - -0.018361833, 0.082045764, 0.019612461, -0.050095703, -0.032423243, - 0.0031559607, 0.054483604, 0.004320703, 0.002391747, -0.026796112, - -0.03053689, 0.022777587, -0.014291109, 1.3007657e-4, 0.019342331, - -0.011811762, 0.019176235, -0.0062088976, 0.05444985, -0.0520533, - -0.027803626, 0.018811332, -0.026934166, 0.04226193, -0.046976298, - -0.03753394, 0.042404894, -0.014066393, -0.0038244033, 0.019130789, - -0.016054815, 0.0036224257, 0.002702316, 0.05294119, -0.00698984, - -0.012020344, 0.041563652, -0.04779762, -0.017736014, 0.053502478, - 0.025284784, 0.0037724068, 0.02601507, -0.019393068, -0.0268353, - -0.015144397, 0.010703209, -0.02262388, 0.0029469372, 0.024438629, - 0.047732025, 0.031747196, 0.021568215, -0.03285744, 4.4641885e-4, - -0.009480064, 0.025019545, -0.048401337, -0.028140903, 0.015163089, - 0.012320542, -0.011379194, 0.029677575, -0.02168332, -0.019384565, - 0.018721165, -0.010628085, 0.0023413848, 0.06256783, -0.07106241, - 0.018277057, 0.0021752724, 0.028314754, -0.005955486, -0.013494436, - 0.05015635, -0.0014865034, -0.007045384, -0.024072845, 0.031472854, - 0.024470115, -0.046798207, 0.028678354, 0.032180976, 0.028091071, - 0.06728519, 0.070994765, 0.04494474, -0.037095577, -0.0012770033, - 0.031724215, 0.03579763, -0.02430897, 0.012743767, 0.054263048, - -0.020527791, 0.01934097, 0.030792665, -0.02302546, 0.052228026, - 0.0064628622, -2.1748443e-4, 0.045561645, 0.051070698, 0.006336376, - -0.010776661, -0.022629868, -0.027679555, -0.0050913645, -0.015663704, - -0.035542354, 0.013442331, 0.01796689, -1.8305342e-4, -0.03071493, - 0.012584324, 0.009344765, -0.012441491, -0.06056706, -0.043836262, - 0.00934158, 0.021683203, 0.005227822, 0.036576435, 0.018060906, - -0.039017428, -6.1386854e-5, 0.035249654, 0.03987271, 0.02724596, - 0.05790187, 0.032389216, 0.03496513, 0.003771116, -0.022543998, - 0.0209939, 0.015285889, 0.023142118, 0.015916709, -0.07402865, - 0.0021882344, 0.018925752, -0.001404104, -0.0019302706, 0.0027272385, - 0.008863818, -0.034833282, -0.039925825, 0.020317536, 0.008930636, - -5.640833e-4, 0.01971707, 0.027468236, -0.029001623, 0.006209351, - -0.06211523, 0.017569799, -0.017806651, -1.2219236e-4, 0.062732644, - -0.019426752, -0.020972496, -0.027562955, -0.008614032, -0.0018520434, - 0.015262564, -0.025479091, 0.013035297, -0.011663915, -0.0126426015, - -0.029115997, 0.043298144, -0.006017151, 0.004996027, -0.027204834, - -0.012213225, -0.023081772, 0.02107162, -0.03811906, -0.04066875, - 0.041302297, 0.012655116, -0.004978541, -0.0054279915, 0.047202986, - 5.2524556e-4, -0.047944114, 0.01681155, -0.012970068, 0.033219922, - -0.009037957, 0.016329499, 0.034759685, 0.042559218, 0.020089092, - 0.0015681998, 0.012343431, 0.027619554, -0.050723113, 0.048922494, - -0.006477213, -0.060069602, -0.028295448, 0.023314774, -0.030254468, - -0.019974578, -0.038050346, -0.027466645, -0.024069455, -0.014669792, - 0.012556115, 0.018235013, 0.050617136, 0.010926419, 0.07811665, - 0.0031155113, 0.04779724, -0.013783699, -0.005951565, -0.0991568, - -0.008567093, 0.012899473, -0.015411374, -0.0119727, -0.029289614, - 0.007747402, -0.02315633, -0.050605062, -0.044853933, -0.01636106, - -0.024900448, 0.035490677, 0.032274965, 0.017327998, 0.026509212, - 0.009969839, 0.0060937633, -0.022678562, 0.02400025, -0.0168073, - 0.007826643, -0.010383226, 0.03124095, -0.015390993, -0.032718033, - 0.016488971, -0.04715826, -0.0014200353, -0.032341756, -0.040169172, - 0.004557638, 0.0271833, 0.0014696764, -6.3919235e-4, 0.014585596, - -0.101957485, -0.049375024, -0.029385542, -0.04115123, -0.029150646, - -0.0070570046, 0.0077712117, -0.038111918, 0.032785628, -0.03559965, - 0.050454635, 0.011954571, -0.021377921, 0.01767799, 0.036837347, - -0.046045225, -0.041826017, -0.005042566, 7.707101e-4, -0.03425827, - 0.017903147, 0.02065373, 0.0066952105, -0.045410465, 0.019325703, - -0.029072557, -0.041755013, 0.017996268, -0.029648151, 0.051712885, - -0.044126242, 0.024226002, -0.014844972, 0.045684375, 0.031362742, - -0.029196063, 0.0034670823, -0.0016605934, -0.014852608, -0.04464277, - -0.018522203, -0.012371111, -0.027496878, -0.0033786837, -0.018101184, - -0.012659049, -0.00171815, -0.023737932, -0.04158521, -0.00948347, - 0.043059215, 0.031342804, -7.354043e-4, 0.0068092714, 0.010879174, - 0.030829638, -0.015165427, 0.010525461, -0.020022022, 0.03621537, - 0.015979253, -0.0011894237, 0.09986779, -0.03020818, 0.03359771, - -0.023574494, 0.06760381, 0.0022296275, 0.058609914, -0.0045507383, - 4.8313604e-4, -0.07441828, 0.0014653769, 0.028395766, 0.0026431007, - 5.6739943e-4, 0.04051863, -0.064856455, 0.010250049, -0.039515547, - 0.027262397, -0.020575318, -0.011892837, 0.038611073, 0.0023330043, - -0.0025248192, 0.02467014, -0.01567038, 7.0798263e-4, -0.02076789, - 0.024707487, 0.009966554, -0.008193741, -0.007144236, 0.053477798, - -0.0183261, -0.03540534, 0.0031834228, -0.016317217, 1.350727e-4, - 2.596827e-4, 0.043636262, -0.0525722, -0.010970181, -8.194376e-4, - -0.024058536, -0.0039850217, -0.033819586, 0.065009944, 0.051250808, - -0.02685134, 0.027774142, -0.024624685, -0.0028319943, -0.050559405, - -0.05149203, -0.03976777, -0.006124636, 0.015756907, 0.010026713, - -0.02649292, -0.014153752, 0.035259563, 0.04937154, -0.016969938, - -0.0026204837, 0.028871004, 0.0026248456, -0.022595692, 0.02817021, - 0.03785901, 0.023565797, 0.035867624, -0.016692346, 0.033635, - -0.025311902, 0.0025502765, 0.040414724, -0.021777142, -0.0042433236, - 0.013718307, 0.03391525, 0.038698338, 0.009924901, -0.00801853, - -0.008718188, 0.027727438, -0.0016926201, 0.08936144, 0.0019240709, - 0.020449243, -0.0390714, 0.039455254, -0.036514517, 0.037070733, - -0.0015889048, -0.008046157, 0.01659353, -0.013262899, 0.05137602, - 0.04293452, 0.03912624, 0.0309915, -0.04121015, 0.012442902, - 0.009271923, -0.012468166, 0.039999753, 0.019122036, -0.0068982765, - -0.021016756, -0.017161243, -0.019084437, -0.034894764, 0.007249261, - -0.00648637, -0.02505968, 0.030868731, 0.07192732, -0.04581181, - -0.049265828, -0.07793922, 0.078153424, -0.023484644, -0.059047177, - -0.033817437, 0.049558103, -0.03590159, -0.015651137, -0.045156132, - 0.027317733, 0.043990158, -0.052889485, 0.018057356, -0.008503042, - 0.03782155, -0.032639872, 0.03796848, 0.07026184, -0.0038976197, - -0.024774432, -0.0074347397, -0.048465244, 0.0099648945, 0.018130332, - -0.05482739, 0.059194993, -0.017040893, 0.046975486, -0.03645432, - -0.0014062371, 0.029055258, 0.010383725, -0.012089702, 0.024422059, - 0.05876285, -0.051012218, -0.021420399, -0.018315503, 0.019530933, - 0.013872647, -0.019136397, -0.0027517793, 0.03558429, -0.029571049, - 0.019403059, -0.061105132, -0.00259035, 0.053339146, 0.0043601147, - -0.021556988, -0.04507509, -0.09977424, -0.017061397, 0.08293905, - 0.02095858, -0.029457834, 0.050257158, -0.024692774, 0.024536876, - -0.025366602, -0.051677477, 0.07703694, -0.012067654, 0.04213637, - 0.02668889, -0.030453442, 0.028774342, -0.02501415, -6.205235e-4, - 0.021226643, -0.006552519, -0.033471126, -0.05656142, 0.015289776, - -0.01229105, 0.03574821, -0.025320845, -3.6029192e-4, 0.0022407973 + "paletteEmbedding" : [ + -0.03029146, + -0.0018410657, + 0.023483027, + -0.013923053, + -0.011998784, + 0.06642359, + -0.07431111, + -0.004116267, + -0.0078319125, + 9.805161E-4, + -0.008952546, + 0.022374356, + -0.0025261843, + -0.02015828, + -0.024013257, + 0.028061945, + -0.0035646819, + -0.014649839, + 0.0045547746, + -0.0171031, + 0.04494161, + -0.014743535, + -0.0069132946, + 0.037007637, + -0.060527373, + 0.058940213, + 0.007516278, + -0.0058909133, + 0.015167727, + 0.019386154, + 0.025927735, + -5.7925175E-5, + 0.032620512, + 0.021985052, + 0.055478618, + 0.033646945, + 0.04313771, + 0.035611633, + 0.022697402, + -0.03055575, + 0.0031745546, + 0.0029161742, + -0.033146445, + 0.015532121, + -0.06427709, + -0.04012604, + -0.011261661, + -0.019089755, + 0.010092863, + 0.028496534, + -0.057012644, + -0.010430928, + 0.0015558483, + 0.020141084, + 0.04939777, + -0.040056948, + -0.013579874, + -0.0028580173, + 0.01042716, + 0.03669716, + 0.036291305, + -0.10825652, + 0.027387863, + 0.022328403, + 0.055333376, + 0.07078849, + -0.038789127, + -0.07214102, + 0.047236156, + 0.047352422, + -0.00910526, + -0.032216445, + 0.022086771, + 0.016447334, + -0.0043576807, + -5.665646E-5, + 0.02454485, + 0.022399599, + -0.064569406, + 0.0015256274, + -0.008005466, + -0.0034746316, + 0.027267657, + 0.005567401, + -0.026041228, + -0.039671194, + 0.021003976, + 0.018440885, + -0.002786043, + -0.020238284, + 0.031787477, + -0.040769566, + -0.02092021, + 0.058317233, + -0.03822996, + -0.032978654, + -0.013339985, + -0.006091829, + 0.031536505, + 0.0060567176, + -0.015959196, + 0.059490137, + -0.05717919, + -0.06672742, + -0.029612869, + 0.0049543115, + 0.003700478, + -0.024033474, + -0.009946546, + 0.01142221, + -0.019924749, + 0.007984754, + 0.08539081, + -0.032487527, + 0.014892285, + -0.0183955, + -0.030658256, + 0.014489008, + 0.018308893, + 0.056163337, + -0.024429992, + -0.016823003, + -0.006655173, + 0.02271914, + 0.016361576, + -0.052441545, + 0.0011971756, + 0.050833046, + 0.0145403445, + -0.06147625, + 0.023609485, + 0.004798514, + -0.003355258, + -0.062446978, + 0.013177415, + -0.023861792, + -0.026428299, + -0.079580486, + 0.013790859, + 0.053450692, + 0.029567845, + 0.005060181, + 0.012654902, + 0.022462957, + 0.014382153, + 0.039057814, + 0.026597474, + -0.014743463, + 0.004852501, + 0.058318898, + -0.057832967, + -0.014601787, + -0.0040556425, + -0.022355769, + -0.014335786, + 0.011850518, + 0.004216822, + -0.010901328, + 0.019547733, + 0.0020258285, + 0.014571641, + 0.019835178, + -0.0017339387, + -0.028180063, + 0.0056634527, + -0.035050847, + 0.0082049575, + -0.011367201, + -0.056300294, + 0.012451414, + 0.010316428, + -0.017576052, + -0.011037822, + -0.013483228, + -0.01370151, + 0.005462919, + 0.018450987, + -0.043861236, + 0.040096223, + -0.016337108, + -0.025077604, + -0.024064256, + 0.053079028, + 0.05361104, + -0.041269056, + -0.0048656003, + 0.0081853075, + 0.013002444, + -0.03651553, + 0.0029711241, + -0.0022793084, + 0.0071893996, + 0.010824294, + 0.057290412, + -0.038269345, + 0.05902899, + 0.051586162, + 0.012268851, + 0.011877181, + 0.026576664, + -0.035016846, + 0.005385736, + -0.08309672, + -0.010271998, + 0.024536561, + -0.0013181382, + -0.014526588, + -0.034064736, + 0.016890757, + 0.043495234, + 0.002974817, + -0.027260056, + -0.028590037, + -0.0020535782, + 0.029292524, + 0.022136955, + -0.025389178, + -0.048303194, + -0.0029187917, + 0.004419369, + 0.019332064, + 0.058271267, + 0.012821462, + -0.0062212828, + 0.019963354, + -0.007674187, + 0.029715002, + -0.008439387, + -3.6623617E-4, + 0.031406976, + -0.030816438, + -0.023384025, + 0.018269956, + 0.033883683, + -0.018414797, + -0.0032216075, + 0.0023555877, + -0.021711532, + -0.0068028485, + -0.045009498, + -0.0013947428, + 0.042509425, + -0.0020526901, + -0.0068113, + 0.00728458, + 0.053858884, + -0.020310486, + -0.024249453, + -0.0026311867, + -0.025314799, + -0.033731077, + 0.008557662, + 0.03449627, + -0.026651049, + -0.01872828, + 0.04277276, + 0.002873676, + 2.3184909E-4, + 0.061237324, + 0.037760317, + -0.011723002, + 4.5478682E-4, + 0.011497342, + 0.04128107, + 0.031037258, + 0.024392871, + 0.03256006, + -0.01682581, + -0.007932165, + -0.032694034, + 0.0036056505, + -0.047609713, + -0.04689464, + -0.025247391, + 0.03207239, + 1.5445559E-4, + -0.007718711, + 0.013892952, + -3.0813325E-4, + 0.026212854, + -0.027097328, + 0.038356256, + -0.05728116, + -4.5087026E-4, + 0.03328909, + -0.034783654, + -0.037122663, + -0.012511619, + 0.047277052, + 0.01732954, + -0.049088866, + 0.00531085, + 0.016177492, + 0.019296894, + -0.011275153, + -1.6005736E-4, + 0.003955741, + -0.0029608868, + 0.016627884, + 0.042203154, + -0.023721661, + -0.03923524, + -0.007079233, + -0.004775119, + -0.0035720342, + 0.007976846, + 0.020594532, + 0.04069841, + -0.005206715, + -0.004668149, + -0.022078253, + -0.037299786, + -0.032447573, + -0.017216608, + 0.03736603, + -0.050644834, + -0.003247337, + 0.06612277, + 0.0047442154, + 0.02799602, + -0.021026999, + 0.0035348656, + 0.022950448, + 0.055139482, + 0.016186194, + 0.0031725557, + -0.009909699, + 0.025074413, + 0.03577252, + -0.016454438, + 0.020104412, + -0.0068777115, + 0.023980983, + -0.029914498, + -0.042879373, + 0.013217473, + -0.031730626, + -0.019321334, + -0.04272947, + 0.0019268072, + 0.012834752, + 0.050423298, + -0.023774387, + -0.003944567, + -0.024270713, + 0.004488127, + 0.025429636, + 0.0074777915, + -0.03482264, + -0.001122791, + -0.032619637, + -0.041533828, + 0.045489926, + 0.009099826, + 0.060350556, + -0.05323734, + 0.04173379, + -0.0032116652, + 0.008926772, + 0.030896906, + -0.014059814, + 0.012636414, + 0.053198308, + 0.0064942646, + 0.024915513, + -0.0070575923, + -0.038733352, + -0.07225345, + -0.009047169, + 0.04842872, + 0.029537432, + -0.026955768, + 0.025046103, + 0.02064555, + -0.020859353, + -0.03139712, + 0.050458245, + 0.04843548, + 0.027114775, + 0.047501206, + -0.0018591213, + 0.05165102, + -0.01614137, + -0.0018598961, + -0.08504485, + -0.03884485, + -0.021355925, + -0.023987442, + -0.041776974, + -0.025145926, + 0.051944084, + -0.018933844, + 0.009321508, + -0.035193287, + 0.009179644, + -0.06429861, + 0.026301334, + 0.018383076, + -0.006841042, + -0.0371899, + -0.022205008, + 0.031897746, + -0.008352013, + 0.0144127775, + -0.07605753, + 0.04275648, + -0.029305503, + 0.0109522045, + 0.0145437, + 0.018324887, + 0.005137574, + -0.024618974, + -0.043176692, + 0.040835768, + -0.03016186, + -0.012792367, + 0.014448119, + 0.008403773, + 0.0049616485, + 0.019551491, + 0.020481244, + -0.012848212, + 0.028604487, + 0.01666658, + 0.02363862, + 0.0013868985, + -0.026893787, + 0.03952586, + -0.02288878, + -3.3762644E-4, + -0.06664403, + 0.049222, + -0.05954699, + -0.0028779777, + -0.04960857, + -0.035756484, + -0.07067135, + -0.015828226, + -0.03308492, + -0.008477014, + -0.014607115, + -0.0048442036, + 0.04773572, + 0.03690329, + -0.033445332, + 0.06020037, + 0.022233756, + 0.039425105, + -0.009495421, + -0.013977269, + 0.0381992, + -0.022336503, + -0.019657712, + -0.0095218485, + -0.0014723456, + -0.05158136, + -0.039476816, + -0.042430755, + -0.022909584, + 0.023930099, + -0.037969798, + 0.07083839, + 0.01399139, + -0.019002268, + -0.036769442, + -0.022839727, + -0.014957352, + -0.038118094, + -0.01490322, + -0.0025366102, + -0.021256821, + -0.0065236134, + -0.014608613, + -0.026658313, + 0.039783396, + -0.062299956, + 0.009344602, + 0.01012841, + -9.2415797E-4, + -0.047411438, + -0.035441015, + 0.01985321, + 0.060571056, + 0.014873917, + -0.016075134, + 0.038228825, + 0.0046305847, + -0.03672539, + -0.020488821, + 0.03859676, + -0.009630318, + -0.0117625315, + -0.0047139116, + -0.011710154, + -0.007338385, + -0.009206908, + -0.026337357, + -0.03240494, + 0.034239374, + -0.017865308, + 0.020276893, + 0.013086312, + -0.03289681, + -0.065637805, + 0.008906098, + -0.020810764, + -0.0036549543, + 0.04740563, + 6.974694E-4, + -0.009926701, + -0.03455443, + 0.013243233, + -0.009908565, + -0.035105307, + -0.004097028, + 0.03717378, + 0.031221362, + -0.017779507, + -0.04736856, + 0.05168877, + -0.014503587, + -0.055097263, + -0.020901838, + 6.0860027E-4, + 0.044656426, + -0.010663517, + -0.024786688, + -0.053170193, + -0.023886373, + 0.0015163134, + -0.038973223, + 0.008587517, + 0.061827928, + -0.023983749, + -0.017841397, + 0.026242485, + 0.041276705, + 0.01768139, + -0.0025149034, + -0.01679724, + -0.0019179337, + -0.019184511, + 0.016115328, + -0.031144938, + -0.0031603193, + -0.008241697, + 0.022483367, + 0.051945318, + -0.0060786386, + 0.026737284, + -0.044646952, + -0.017327765, + -0.047840893, + 0.015971584, + 0.028180307, + -0.03419547, + 0.02891667, + 0.025233293, + 0.01706951, + -0.08250903, + 0.0030753552, + 0.0017547251, + -0.007940106, + -0.017143406, + 0.09605369, + 0.031356588, + 0.057379518, + -0.015187066, + -0.03378749, + 0.018743584, + -0.04521141, + 0.015755637, + 0.018658565, + 0.014139871, + -0.019097708, + -0.017905964, + -0.037578154, + 0.09627016, + 0.032398507, + 0.0035748598, + 0.032941848, + 0.010343862, + -0.014055491, + -0.014723749, + 0.017044857, + 0.09634329, + 0.03193849, + -0.019044517, + 0.024039539, + 0.07628041, + 0.03023928, + -0.017748455, + 0.05499754, + -0.021751853, + 0.02114803, + -0.004250352, + -0.03693482, + -0.018365012, + -0.01406146, + 0.011623068, + 0.024744933, + 0.020419616, + 0.010876316, + 0.015093679, + 0.014590488, + -0.012478205, + 0.008267333, + -0.0025098175, + 0.005861798, + -0.029549824, + 0.013462141, + 0.039902333, + 0.023580056, + 0.04885745, + -0.033728343, + 0.027303278, + -0.008547474, + 0.026029743, + 0.04803704, + 0.0069867014, + 0.02674637, + 0.017543595, + 0.04173503, + 0.036178175, + 0.016118284, + -0.03771315, + 0.0045509096, + -0.011117687, + 0.008946856, + 0.0046887514, + 0.008850787, + 9.546003E-5, + 0.030108396, + -0.062547065, + 0.010930872, + -0.03930924, + -0.04341148, + 0.012392046, + -0.011679723, + 0.014599754, + -0.006831739, + 0.0021272427, + 0.031247023, + -0.015161002, + -0.06353243, + 0.028671801, + 0.0251772, + -4.226015E-4, + 0.006210349, + -0.010685318, + -6.133328E-5, + 0.0014339132, + -0.008992714, + 0.050616443, + -0.016975667, + -0.03821113, + -0.0745021, + 0.014354973, + -0.006983896, + -0.009179385, + -0.02358628, + 0.014509544, + -0.056131795, + 0.071938716, + -0.08024012, + -0.02306549, + 0.007544828, + 0.027659137, + 0.029970253, + 0.0031460084, + -0.020215614, + -0.008731356, + -0.045793213, + 0.020656105, + -0.0022334445, + 0.0015464751, + 0.001798702, + 0.036213573, + 0.033385254, + -0.028104542, + -0.02729928, + -0.02151105, + -0.03707935, + 0.040711164, + 0.006029701, + -0.030728137, + -0.0029981674, + -0.03460792, + -0.0015380818, + 0.030215982, + 0.04580161, + 0.0336001, + -0.011685022, + -0.04422284, + -0.0647328, + 0.021888984, + -0.023712255, + 0.031677235, + -0.04626237, + -0.021112537, + -0.005768203, + 0.04868118, + 0.019923799, + -0.01928381, + -0.0077947853, + 0.047924712, + 0.049861312, + 0.021755062, + 0.023278879, + -0.034694534, + -0.012093108, + 0.029374516, + -0.03760995, + 0.010188512, + 0.03385233, + 0.014577209, + -0.017401813, + 0.013759429, + 0.020362733, + -0.060550757, + -0.01856686, + 0.024496518, + 0.03272568, + 0.04227884, + 0.009762199, + -0.010229194, + 0.031288687, + -0.038052846, + 0.048052862, + 0.016168982, + 0.075871326, + 0.02677979, + -0.009121231, + -0.01913973, + -0.0018069774, + -0.016705055, + 0.016640397, + 0.04370662, + -0.040812436, + -0.05593373, + -0.012383899, + 5.4440205E-4, + 0.039279006, + 0.0019195386, + -0.042090647, + 0.034206428, + 0.028572323, + 0.049092688, + 0.023417309, + 0.0425657, + -0.045977846, + -0.032266572, + 0.02784719, + 0.009789893, + -0.006147477, + 0.048680883, + 0.008939103, + 0.008512664, + -0.00509866, + -0.038040664, + 0.0108135315, + 0.02917622, + 0.042485572, + -0.0407466, + -0.012492148, + -0.06605314, + 0.030925676, + -0.0028331832, + -0.03699075, + -0.014305781, + -0.031654034, + -0.011254392, + 0.050842203, + -0.007639512, + -0.025278416, + -0.015872719, + -0.0080647385, + 0.007187611, + -0.05608555, + 0.0068452996, + 0.017314633, + -0.001248765, + 0.036669128, + 0.03018351, + -0.017872848, + 0.044248134, + 0.009344773, + -0.015216981, + 0.013212427, + 0.021592485, + 0.015487614, + 0.015847573, + 0.006775785, + -0.0024326397, + 0.028037492, + -0.015978133, + 0.025928749, + -0.017894903, + -0.050041284, + -0.051305186, + -0.033230316, + 0.02164924, + -0.02452697, + -0.04886541, + -0.017545398, + 0.058536846, + -0.015620729, + -0.05108545, + -0.030110057, + 0.059815083, + -0.06790375, + -0.022794573, + 0.02998215, + 0.0021099544, + 0.024729699, + 0.059908535, + -0.021599935, + -0.06751914, + 0.006332441, + -0.015915066, + -0.038309872, + 0.026871815, + 0.0018104082, + -0.023400959, + -0.03501204, + -0.022145238, + -0.01937075, + -0.06817792, + 0.06850738, + 0.0077833184, + -0.007895354, + 0.035116665, + -0.009959286, + 0.019094454, + 0.025015129, + -0.028626729, + -0.070070416, + 0.061508235, + 0.008839895, + -0.015920905, + 0.009305432, + 0.005700116, + -0.0065739863, + 0.03354431, + 0.008099275, + -0.001652039, + 0.005802718, + 0.00900681, + -0.013876056, + -0.037471436, + 0.006274378, + 0.010250291, + 0.03935286, + -0.041377638, + 0.034742665, + 0.043519653, + -0.029799817, + 0.018181933, + 0.024397662, + 0.003557671, + 0.0017030109, + -0.01251479, + 0.0077628726, + -0.05247665, + 0.016097086, + 0.04852732, + 0.016605197, + 0.007912544, + -0.01229561, + 0.013664123, + 0.015222887, + -0.052475862, + -0.0090114875, + 0.04524216, + -0.056174234, + -0.0039165583, + -0.032579787, + -0.07726412, + -0.012410816, + -0.007494333, + 0.02170707, + 0.0901059, + -0.016441103, + -0.038791463, + -0.013526936, + -0.043013755, + -0.011023807, + 0.015228628, + -0.027010357, + -0.05481295, + -0.004916207, + -0.021823829, + 0.0017762528, + -0.0049073715, + -0.07883364, + 8.0005504E-4, + 0.0023342078, + 0.016384685, + 0.058881763, + 0.011184348, + 0.09887579, + 0.003254566, + 0.031534582, + 7.803981E-4, + -0.019389035, + 0.0025607452, + 0.012184758, + -0.017771568, + 0.03634893, + 0.04436952, + 0.006290039, + 0.017440729, + -0.0013738107, + -0.072239846, + 0.016343225, + 0.007193245, + -0.03483102, + 0.0029933848, + 0.0095949285, + -0.025891175, + 0.009643804, + 0.046213984, + 0.056460273, + -0.041274015, + 0.0058952826, + 0.063429795, + -0.032433692, + -0.060985204, + 0.045635577, + -0.019428119, + 0.049956337, + 0.046785973, + 0.004920091, + -0.04893829, + 0.02252642, + 0.005394592, + -0.008368486, + -0.028205784, + 0.037870105, + -0.004344412, + 0.05392288, + 0.0146551775, + 0.022831427, + -0.063190036, + 0.0050441013, + 0.014957877, + 0.03691298, + -0.017758355, + 0.04024625, + -0.032003094, + -0.018893985, + -0.022228198, + 0.023065917, + 0.0072451085, + -0.013504469, + 0.0042230277, + -0.04260493, + -0.02740474, + 0.01843032, + 0.002192755, + 0.027933115, + -0.01957266, + -0.016443541, + 0.0035009182, + -0.014600336, + -3.7569483E-4, + 0.0057272213, + 0.0010193387, + -0.028664824, + -0.0028724542, + 0.025536701, + 0.042983748, + 0.009527669, + 0.005590851, + 0.005227045, + 0.008303779, + 0.028748095, + -0.010251839, + 0.01129598, + 0.07449105, + -6.0640246E-4, + 0.006395239, + -0.018940663, + 0.025269646, + 0.021515392, + -0.032765925, + 0.036195207, + 0.042902958, + -0.0039011994, + -0.014476605, + 0.022260783, + 0.05061586, + 0.011653396, + -0.021333018, + 0.0105491765, + -0.0054115755, + -0.0085528605, + 0.043209992, + -0.003134506, + 0.063571826 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.1.json b/common/search/src/test/resources/test_documents/images.different-licenses.1.json index 1b5b7a7f3..7a9054e4e 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.1.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.1.json @@ -1,1341 +1,5250 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.513987Z", - "id": "waaqwfw4", - "document": { - "modifiedTime": "2026-10-17T08:23:38Z", - "display": { - "id": "waaqwfw4", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.303803Z", + "id" : "yuhjtxla", + "document" : { + "modifiedTime" : "1978-01-31T12:57:21Z", + "display" : { + "id" : "yuhjtxla", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/6ZR.jpg/info.json", - "credit": "Credit line: mVhELD", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/6ZR.jpg/info.json", - "credit": "Credit line: mVhELD", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#820921", - "source": { - "id": "zfjvttw1", - "title": "title-E71SJYcc10", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#A17D69", + "source" : { + "id" : "0smxvqfb", + "title" : "title-2ieQsNe2J8", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "waaqwfw4", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "zfjvttw1", - "sourceIdentifier.value": "Gcwoe0JJl0", - "identifiers.value": ["Gcwoe0JJl0", "hHbExOADOw", "Na8tfsDftd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-E71SJYcc10" + "query" : { + "id" : "yuhjtxla", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "0smxvqfb", + "sourceIdentifier.value" : "EWGLlj4YeW", + "identifiers.value" : [ + "EWGLlj4YeW", + "upp0F2gGqX", + "hQJGD9d1n0" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-2ieQsNe2J8" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.015092902, -0.028661754, -0.011238175, -0.023647407, -0.0032420882, - 0.001482747, -0.01784184, -0.023379035, -0.0238756, 0.004931065, - -0.009449082, -0.021325229, 0.005656765, 0.02087649, -0.008749866, - 0.0026170055, 2.1667557e-4, 0.012823719, -0.0021737388, -0.016843373, - 0.007891786, 0.0040899245, -0.0065992796, 0.024871862, -0.02452207, - -0.0076345196, -0.006028718, -0.0038156335, 0.0025720703, -0.013195872, - 0.01620826, -0.0016775809, 0.009063899, 0.012830101, 0.0016020954, - 0.015221479, -8.6440187e-4, 0.01464186, -0.013320484, -0.023089683, - 0.0070976513, 0.025895623, 0.007952244, 0.0030415507, -0.008647034, - -0.005815954, -0.010151556, -0.013279775, 0.012885453, 0.008372882, - -0.01334462, -0.004959241, 0.009082886, -0.008372047, -0.017303811, - -0.0029127123, -0.008730176, 0.012765739, -0.0368813, -0.013577805, - 0.008139418, 0.0036849214, -0.0021563382, 7.550139e-4, 0.010224758, - -6.20913e-4, 0.013020168, -0.01631347, 0.011739812, -0.016441392, - 0.01305515, -0.008776686, 0.011124859, 0.018968679, 0.015765399, - 0.01213153, -0.0132740075, 0.005639409, 0.013728473, 0.02153183, - -0.010065906, -0.0018004733, 0.011313768, 0.0054457523, 0.009920609, - 0.0070479945, 0.017523408, 0.004695596, 0.010823571, 0.0138400085, - -0.0072177434, 0.006190514, -0.029302558, -0.015536868, -0.018287454, - 0.0027136134, -0.015340557, 0.012271974, 0.018049594, -0.010739444, - 0.028004775, 0.015648037, -0.010128492, 0.0062460364, -0.0052635376, - -9.2911505e-4, -2.7543225e-4, 0.013056938, 0.004670015, 0.0033534877, - -0.007869613, 0.023928558, -0.0034367244, -0.019794855, 0.011807303, - -0.003908865, -0.020095106, -0.013658148, -0.018041398, -0.032504555, - 0.01221625, -0.019458754, 0.002907013, -0.008727145, -0.004894608, - -0.006384807, -0.0041809995, -0.0025446862, 0.009735965, 0.011564492, - 0.005359088, 0.01331094, 0.0026053297, -0.032179378, 0.01320059, - -0.028283328, -0.0029519617, 0.005530278, 0.009037822, 0.00653171, - -0.008774147, -0.025267495, 0.0049584606, 0.0056173694, -0.0037785557, - 9.5353444e-4, 0.0094332, -0.02091436, -0.019956596, 0.015815722, - 0.0014238671, 0.030817065, -0.0038244058, 0.008010551, 7.131618e-4, - 0.012398966, -0.0054007713, 0.0051239245, 0.010980928, 0.013959053, - 0.004864905, -0.021947147, -0.010875929, -0.0136306435, -0.0048224605, - 0.001213823, -0.012614004, 0.0020540466, 0.025362162, -0.012818129, - 0.0036439719, 0.019612037, 0.0015039251, 0.012275789, 0.027063474, - 0.007898115, -0.019218037, -0.006065443, 0.0044500534, -0.04461027, - -0.021562267, -1.8426983e-4, -0.008222833, -0.014186259, -0.009640635, - -0.004029032, 5.1710266e-4, -0.023921631, 0.0016492499, -0.02396809, - -0.0077133873, 0.003071488, -0.020594511, -0.006569022, 0.023897517, - -2.7286782e-4, 0.0031061096, 0.02638138, 0.021347452, 0.0020476552, - 0.0053978013, -0.016122457, 0.041827947, 9.068967e-4, -8.2144997e-4, - -0.0044163154, 0.007135039, 0.0031001822, -0.015062914, 0.0068736975, - 0.011242393, -0.02289302, 0.012096891, 0.001880489, 0.011052392, - 0.011343234, -0.016018875, -0.0101652155, 6.523389e-4, -0.007007421, - -0.0020088486, 0.012368167, -0.007995489, -0.017952045, 0.0054508257, - 0.020034002, 0.012300647, -0.018745523, -0.0066121826, 0.006707549, - 0.018096097, -0.03799218, 7.0069084e-4, -0.021202033, 0.02254298, - -0.008455274, -0.0038396544, -0.0040654917, -0.006829591, 0.034766067, - -0.02114419, -0.00806501, -0.0027712174, -0.007812596, -0.0071351225, - 0.02321251, 0.016472256, -0.011409279, -0.009085741, 0.007439882, - 0.0069723255, -0.020774487, 0.011756552, 0.017080937, -0.017271632, - 0.013908343, -0.014992735, 0.011529246, -0.00345042, 0.027652947, - -0.020607874, 0.017851397, -0.0065565035, -0.021975012, 0.026276676, - 0.005551769, -0.021003524, -0.007087403, 0.044750288, 0.00208544, - 0.004963784, -0.02087415, -0.017674768, -0.0015560536, -0.012268913, - -0.01922728, 0.007836001, -0.03172969, -0.022492891, 0.011381721, - 1.4175594e-4, 0.01777345, -0.026708815, 0.007476951, -0.01262178, - -0.027947506, 0.01448788, 0.03089198, -0.016913136, 0.02170218, - 0.0016997239, 0.0061308825, 0.0052746786, 0.011934186, 0.006039788, - 0.011102785, -0.025693491, -0.006590001, -0.0028184827, -0.011678547, - 0.0189782, -0.014192399, -0.010081669, -0.027226884, -4.078691e-4, - 0.04562799, -0.01052739, -0.0028265598, 0.013064764, -0.019475775, - -0.0061045163, -0.0142392, -0.027386844, -0.0050654127, -0.026714781, - -4.0502113e-4, -0.02191032, -0.021695182, -0.0036012393, -0.01115124, - 0.025579639, 0.012523349, -0.019960932, 0.007473829, 0.020045808, - -0.0025962791, 0.010430877, -0.011686322, 0.027966015, 0.037749752, - -0.018308317, 0.017695261, 0.0023454253, -0.021185184, -0.0014864622, - 0.006740192, 0.0053234347, 0.028138867, 0.0053216037, 0.045022774, - -0.0046956344, -0.0015950382, 0.008605516, 0.027993089, 0.015545488, - -0.03329183, 0.0021057625, 0.01245189, 0.004698821, 0.011083619, - 0.024922729, -0.011681107, -0.010390612, 0.012432391, 0.012164789, - 0.019218916, -0.0015916555, 0.0068863723, -0.011598396, -0.0071697463, - -0.0026095987, 0.018417643, -0.008082237, 2.9806527e-6, 0.0047176564, - -0.010111893, 0.003257221, -0.021000315, 0.014677354, -0.020513073, - 5.558489e-4, -0.014866094, 0.023484712, -0.003425985, 0.014161028, - 0.010056881, 0.015839217, -0.006071329, 2.924423e-4, -0.02687575, - -0.003163984, 0.004687267, 0.0033726403, -0.0034092523, -0.020595424, - 0.0022978962, -0.009067636, 0.011108254, 0.018781861, 0.005240354, - 0.0036309573, -0.01910896, -0.014117048, -0.0057145664, -0.013026406, - -0.014821633, 0.003498614, 0.0033220728, -0.018467363, 0.00837331, - -0.003132953, 0.0014649307, 0.025679236, -0.008876654, 0.03410183, - -0.017785307, 0.037899386, -0.024048965, -0.007338816, 0.022450728, - -0.0021510567, -0.037688244, -0.04989208, -0.008656714, 0.011216362, - -0.0052207937, -0.025792677, -0.005499116, 0.0017921968, 0.015849626, - -0.013819125, 0.004181785, -0.019509027, -0.005451967, -0.013837898, - 0.0025243554, 0.003728793, -0.006452511, -0.011558848, 0.018705089, - 0.011656574, -0.005099102, 0.015280232, -0.008341383, 4.8494586e-4, - -0.0034565555, -0.024892278, 0.013595522, 0.007729779, -0.012546365, - 0.003971141, 0.0062750354, -0.023022223, 0.014610249, -0.026923995, - 0.0037696327, 0.010219234, -0.012235016, -0.0110335285, -0.0011181767, - 0.0066363453, 0.0039129187, 0.013869675, 0.013603971, -0.0120031005, - 0.004604033, 0.015632533, 0.0033788297, 0.003702773, -0.025098855, - -0.004725646, 0.008112536, -0.0039803013, -0.03345193, -0.0071846014, - 0.004114934, -1.3067776e-4, 0.012565422, -0.0012862512, -0.009647121, - 0.011455972, -0.0061095776, -0.010055157, 0.00615774, -0.014683408, - -0.022452595, 1.3718483e-4, 0.0010109228, -0.014710726, -0.020112533, - 0.02679215, -3.5656153e-4, 0.002406458, 1.6275131e-4, 0.009369278, - 0.012933706, -0.01878181, 0.026530186, 0.008473859, -0.003378335, - 0.0025478574, -0.016455736, -0.025274385, -0.052751012, -0.0037829096, - 0.03311764, 0.022521427, 0.008580891, 0.020966051, -0.0042982996, - -0.008888976, -0.0017749148, 0.0018510589, -1.2003773e-4, 0.012014133, - 0.014953035, -0.0103192, 0.012093369, -0.00944195, -0.0025838201, - 3.2870835e-4, 0.0017556738, 0.01898757, -0.013620628, 0.0018626766, - 0.0046466743, -0.022909723, 0.007954887, 9.505846e-4, -0.020462634, - 0.02769434, 0.029053213, -0.0058815535, -0.003123385, 0.0029292451, - -0.0046193134, -0.02342958, -0.0021702289, -0.010819596, -3.567821e-4, - -0.010848161, 0.00760207, 0.019120188, -0.02069952, -0.020514453, - -0.0071344045, 0.030341806, -0.0018666395, 0.020007875, 0.029272841, - 0.006636453, 0.010161, -0.0047860434, -0.011381671, 0.0051732506, - 0.009545465, 0.0129398815, -0.01604758, 0.017028466, 0.01696833, - 0.005394607, 0.003134044, 0.0021716803, 0.013677622, -0.00694288, - 0.013570259, 0.023136504, 0.014069904, -0.022086842, 7.4233726e-4, - -0.022528615, 0.020329554, -0.0097051505, -0.014802655, 0.014292556, - -0.0125811305, 0.013421714, 0.005047748, -0.0018300138, 0.016600756, - 0.017524825, 0.013444251, -0.01008977, 0.033001937, -0.004162892, - 0.0022652803, 0.019793937, 0.006155076, -0.0032971792, 0.018500388, - 0.007718479, -0.014246417, -0.015133352, 0.0070251673, -0.017091934, - 0.015875634, 0.005877593, -0.0068227905, 0.009566259, -0.013918345, - 0.0467782, -0.019042991, 0.00227899, 7.8550045e-5, 6.030066e-4, - 0.007901891, 0.0051439484, -0.023618868, -0.001325657, 0.015811205, - -0.021751454, 0.012550586, 0.018838191, -0.0073223463, -0.005786888, - 0.022265468, -0.0075205425, 0.02608197, -0.00847774, 0.009879333, - 0.013441597, -0.0093471175, 0.029734207, -0.002166496, 0.049615372, - -0.024563195, -0.011892144, -3.8808936e-4, 0.014139931, 0.025608618, - 0.040136844, 0.0108207725, 0.0039313827, 0.033683095, -0.03436973, - 0.024524404, 0.027917666, 0.024320772, -0.007601468, 0.014814266, - 0.009316377, 0.0027560245, -0.0075098146, -0.011962567, 0.017491562, - 0.0025262383, -0.008836956, -0.007732128, 0.024315549, -0.007710956, - -0.03249124, 5.023471e-4, -0.007686746, 0.013981994, 0.016070297, - 0.03374571, 0.011179135, 0.0042694933, 0.0035625768, 0.009878163, - -0.018593293, -0.005172995, -0.011099896, 3.2042028e-4, 0.012568103, - 0.0076896874, -0.017235432, -0.0014265691, 0.0038704395, 0.0045216107, - 0.008606219, -0.029910482, 0.0071957354, -0.019691447, -0.010697868, - -0.0049207816, 0.024309801, 0.0036286742, -0.017800296, 0.023262547, - 0.017217213, 0.022241427, -0.0044100634, -9.637439e-4, 0.0040078787, - -0.008575021, -0.0024880779, -0.0037026578, -0.0025079113, -0.020605065, - -0.026781205, -0.0043092724, -0.007981045, 0.022653805, -0.014094649, - 0.006577367, 0.008955019, 0.004640093, 0.01027882, 0.0071362746, - 0.022482261, -0.018559042, -0.021533301, -0.02235867, 0.016615419, - -0.021906262, 0.002227912, -0.0073512895, 0.018405627, -0.02179092, - 0.004943602, -0.03070105, 0.004728395, -0.0051349676, -0.0010857711, - -0.0044004465, -0.008054134, 0.0038007188, -8.0072736e-5, 0.03498854, - -0.012683966, -0.006414423, 0.008622055, -0.007847997, 0.008457772, - 0.0040316884, -0.016784105, 0.015899975, 0.012936117, -0.029589478, - -5.785977e-4, 0.012613482, 0.050389595, -0.017936302, -0.027918, - -0.023793235, -0.020332232, 0.025862832, -0.02053196, 0.017451253, - -0.02447064, -0.016429048, -0.01308564, -0.0065556183, 0.0085907485, - -0.040277034, -0.007046276, -0.056844693, -0.014400469, 0.011772431, - -0.008058684, -0.031604055, 0.005487381, -0.012136493, 0.027558338, - -0.0015039834, 0.01491718, -2.988523e-4, -0.014169926, 0.00910433, - 0.013742184, -0.019518755, -0.002949365, -0.004747067, 0.039916594, - -0.0010827028, -0.0062742904, 0.0076026083, -0.006885006, 0.013492423, - -0.017247722, -0.007195489, -6.7547156e-4, 0.031907447, 0.0069295177, - -0.0012447895, -0.0019750905, -0.0045890356, -0.01910748, 0.014629363, - 0.016080465, -0.009349113, -0.002649601, 0.010887373, -0.005755934, - -0.009593875, -0.019881248, 0.04003896, 9.264601e-4, -0.0054570497, - 0.017644148, -0.00660876, 6.664966e-4, -0.009959348, -0.0022548868, - -0.0070320107, 0.004150204, 0.005940776, 0.007723092, -0.04422901, - -0.019195074, 0.013839926, -0.012765752, 0.0012110057, 0.0051730555, - 0.008896375, 0.018597033, 0.014583592, -0.012145335, 0.008642763, - 0.0045713144, -0.03616074, -0.003274594, 0.011490451, 0.0027530654, - -0.034658246, -0.017751029, -0.022898981, -5.0611055e-4, -0.0024553565, - 0.01423953, -0.03134897, 0.003789108, -0.019285448, 0.002457266, - 0.017793555, -6.5764834e-5, -0.016869036, 0.0039895503, -0.0052167666, - 0.013397563, -0.027723193, -0.024886664, -0.016394228, -0.0147488415, - -2.0984231e-4, -0.03771593, 0.010044999, -0.034451187, 0.005827901, - -0.027424995, -0.0042300397, -0.0061471737, 0.012118374, 0.005113246, - 0.023691295, -0.009283277, 0.027593765, -0.009112197, 0.01891486, - 0.011861085, 0.012502466, -0.012465526, 0.007795853, 0.02938619, - -0.008656448, -0.007959206, 0.0038444668, -0.012573492, 0.017966395, - -0.013957993, 0.0047086114, 0.01084322, -0.023109477, 0.002019392, - 0.0085813645, 6.883371e-4, 0.019718057, 0.0014874593, 0.0061134216, - 0.0032409488, -0.017352678, 0.008727939, -0.008043511, 0.0029676443, - 0.029553654, 0.0055365837, -0.01398054, -0.0058989283, 0.008949381, - -0.021364065, 0.0032392628, -0.0013406004, -0.0015900368, -0.009080865, - 0.002120427, 0.026321001, 0.02501628, -0.0015836192, -0.005193424, - -0.03267247, 2.049304e-4, -0.0048315576, 0.012648584, -0.007371762, - -0.027392335, -0.01471578, 0.0019001396, -0.020183688, 0.008552353, - -0.024125548, -0.0035916949, 0.025885148, -0.0045080096, 0.024670212, - -0.012178704, 0.009952215, -0.0011174314, -0.01887756, 0.0022394687, - 0.0064307945, -0.017858356, 0.01242693, 0.0011061548, -0.002243466, - 0.004967066, 0.007036765, -0.012125697, -0.027622942, 7.528825e-4, - 0.011150016, -0.0012845126, -0.042378303, 0.025383437, -0.004752571, - -7.137351e-4, -0.009240331, -0.0035895023, -0.002898498, -0.015030799, - 0.011624965, 1.952372e-4, -0.007967157, 0.02409742, 0.024795748, - -0.0028140505, 0.014069322, -0.01712722, 0.022403779, 0.036238577, - -0.010234656, -0.001038047, -0.01786178, 0.0077627366, -0.00988916, - -0.021389948, 0.03174782, 0.0015744396, -0.007926035, 0.021278214, - -0.006329796, 0.008686861, -0.0039487793, 0.018105827, -0.02873034, - -0.014332767, -0.009024703, 0.013894637, 0.003719498, -0.0076582893, - -0.001276338, -0.005106717, 0.0060135266, 0.033173647, -0.010120637, - -0.02257684, -0.0052642208, -0.019498259, 0.007775355, -0.0106967, - -0.008971414, -0.001032969, 0.009843713, 0.041366532, -0.007691481, - -0.017045654, 0.012959279, -5.993346e-4, 0.0047898144, -0.0076148305, - 0.007905364, 0.0016131898, 0.006772201, -0.0141266445, -0.0026913767, - -0.014342134, 0.0011650382, 0.0020984714, -0.0020444982, -0.022640372, - 6.6010957e-4, 0.006142489, -0.022454176, -0.018457659, 0.006789223, - -0.011077229, -0.015907131, -0.014077321, -0.001722874, -0.010674865, - -0.001935047, -0.0068166056, -0.0055783186, 0.0030289094, 0.012273737, - -0.011936367, 0.0011114824, -0.0036750645, 0.0039982814, 0.0028020048, - -0.014581969, -0.0168273, -0.01947449, -0.030169263, 0.008394056, - 0.005382944, 0.0010612248, 0.02359867, -0.015960049, -0.009072967, - -0.010059333, -4.105161e-4, -0.004355225, 0.009847545, -0.00386907, - -0.016612662, -0.022299951, -0.0019572147, 0.012750124, -0.003619149, - -0.010221317, 0.008775271, -0.0127978865, -0.0021726368, -0.017771278, - -0.011362009, -0.004823702, -0.0017207931, 0.00507829, 0.009182573, - -0.003280908, -0.0030029744, 0.0012222894, 0.003759385, 0.0029325006, - 0.03444672, 0.010858539, -0.029979123, -1.7542295e-4, -0.0063305767, - -0.00360768, 0.03623575, 0.014897048, -0.010843241, 0.017869772, - -0.0023737478, 0.010714448, 0.0039234324, 0.005837902, 0.0035109327, - -0.012332883, -0.037418596, 0.0065868455, -0.026771955, 0.0063205385, - -0.008162231, 0.00945315, -0.006700015, 0.006203626, -0.017628662, - 0.004774869, -0.016768854, 0.012573792, -0.0033293671, -0.015860265, - 0.008982028, -0.007293036, -0.0043293564, -0.010508067, 0.02337778, - -2.1398389e-4, -0.0055069253, -0.01781584, -0.016527705, -0.019049423, - -0.017220182, -0.008877445, -0.013334464, 0.017513841, 0.017106386, - 0.015212834, 0.017899308, 0.022888215, 0.009201205, -0.025905069, - 0.001548883, 0.009737087, 0.009567864, 0.0024247891, 0.0032589072, - 0.009062818, 0.013074217, 0.0020171308, 0.010692907, 0.014026687, - -0.0059821587, -0.019548118, -0.022312555, -0.019588834, -0.0027091568, - -0.00824731, -0.039900277, -0.0025723479, -0.013781436, 0.010720518, - -0.008349917, -0.004271263, 0.006420652, -0.0059764385, -0.005895945, - 0.030541338, -0.018485788, -0.015446626, -0.013046947, 0.002597598, - -0.009702417, -0.013543923, -0.018294064, -0.011582309, -0.005044279, - 0.0023232757, 0.0025024284, 0.00866991, 0.006015204, -9.150754e-4, - 0.0054541985, 0.011150786, 0.0029691276, 0.0026176549, 0.005445397, - 0.0043436806, -0.011322415, 0.018110951, -0.018759552, -4.250734e-5, - 0.014373567, -0.0025873717, -0.010703847, 0.02186098, 0.0035972027, - -0.0051146825, 4.936712e-4, -0.009409304, 9.917683e-4, -0.002466894, - -0.011866119, 0.012752604, 0.0062466357, 0.0010042164, 1.738571e-5, - -0.014356022, 0.0037623688, 0.0117963115, 0.009087829, -0.003379632, - -0.012138332, -0.025855014, 0.0068189395, -0.0018776113, -0.0071357223, - 0.019237556, 3.2573083e-4, -0.01225261, -0.0038319915, -0.02031989, - -0.013242967, -0.0077226125, 0.010032722, -0.009395682, 0.0028532445, - -0.024866477, -0.015854456, -0.020831242, 0.0054965676, 0.005303544, - 0.04344053, 0.0021905464, -0.016553506, -0.048471723, -0.012672256, - -0.014962813, 0.029817637, -0.0073668985, -0.015139653, 0.019347023, - -0.0050181597, 0.0055117537, 0.0071052983, -0.0100539345, 0.0034959782, - -0.005595384, 0.0039805705, 0.008412674, -6.3908054e-4, 0.014258357, - -2.408396e-4, 0.0058584954, 0.018277595, -0.014402748, -0.008010731, - 0.010406816, 0.0041517997, 8.577553e-4, 0.02149584, -0.0060054674, - 2.4976305e-4, 0.004082405, 0.016378542, 0.007498171, -0.024389856, - 0.0038209609, 0.0062457137, -0.029106302, 0.0029719968, 0.033883538, - 0.009504201, 0.003694824, -0.01606429, 0.014146961, 0.006807266, - -0.021929018, 0.0128741, 0.005675828, 0.014881397, -0.022546325, - 0.0050438377, -0.020289775, -0.0082507245, 4.968648e-4, -0.00661669, - 0.020100331, -0.018489975, -0.014741958, -0.021059675, 0.011645591, - 0.02202331, -0.020429274, -0.0014724159, -0.004245985, -0.012050788, - -0.0011484289, 0.0050089927, 0.006471079, 0.010828552, -0.009156732, - -0.008302731, -0.036014516, 0.018281052, -0.027274799, 0.014532633, - -0.025583928, -0.0041961074, 0.020767165, -0.02024358, -0.029603496, - -0.014147165, 0.009169185, 0.006974212, 0.0010271589, 0.013030519, - 0.02123284, -0.0074199373, -2.1942428e-4, -0.0025791707, 0.018852234, - 0.023544442, 0.0059598903, -0.012402129, 6.4627343e-4, 0.01013199, - -0.0022922421, -0.0060452344, 0.02012286, -0.010148023, 0.03083802, - -0.019881051, 0.0034933488, -0.0010540118, -0.01102119, -6.7605264e-4, - -0.001789648, 0.013014442, 0.012578941, -0.01786816, 0.01177734, - -0.01215858, -0.006845444, -0.006943608, -0.009917397, -0.017881438, - -0.0019579805, -0.03402097, 0.025410287, -0.0042506633, -0.037933115, - 0.016050873, 0.004676209, 0.0016149926, 0.03270402, -9.559375e-4, - -0.0044625644, 0.0138326045, -0.013842485, -0.0029696801, 0.0032498483, - 0.0056174477, -0.013803505, 3.9066593e-4, -0.011116343, -0.017870585, - -0.010777156, -0.025796784, -0.010043284, 0.020856973, -0.006437673, - -0.0085091265, 0.047241937, -0.026025282, -0.015402775, 0.019862765, - -0.0087299105, 0.0021378442, 0.02252877, -0.027393263, 0.0025872272, - 3.5815648e-4, 0.02331773, 6.633354e-4, 0.01608119, -0.027296497, - 0.019464878, -0.032281354, 0.033667117, -0.0031694034, 0.0024951466, - 0.0028112193, 0.011679494, -0.021349568, -0.031578034, -0.012242841, - -0.0051700696, -0.018531827, -0.018204644, 0.025440572, -0.004664364, - 0.032461364, 0.0116147185, 0.020554187, 0.005531077, -0.0019278651, - 0.019091314, 0.02877531, 0.0062338035, -0.0076611643, -0.010352186, - 0.022730932, -0.0044380184, -0.022367103, 0.0061751246, 0.011601889, - -0.0011544215, 0.022075737, -0.011796031, 0.010706471, 7.8563427e-4, - -0.03273064, 0.015676195, 0.0062256325, 0.008733532, 0.00524286, - -0.015833743, -0.023863096, -0.020162487, 0.008339914, -0.011804759, - 0.0036900945, 0.0038117494, -0.03396153, -0.0020188903, -0.019156147, - 0.015589025, 0.013116201, 0.016167242, 0.011506784, -0.023026602, - 0.023912432, 0.021444708, 0.010326632, -0.0012891153, 0.017065288, - -0.010752402, -0.020111827, 5.2435405e-4, 0.0064774593, -0.0047657946, - 9.0254383e-4, 0.0033650629, -0.003819061, -0.019991709, -0.046736047, - 0.01383979, 0.02299503, 0.016107697, 0.00568047, 0.005048494, - -0.01662876, -0.019095453, -0.0051852567, -0.024431422, -0.015366128, - -0.029821418, -0.0021072158, 0.014295633, -0.0013052679, -0.016338496, - -1.4758967e-4, -0.007349746, -1.5756876e-4, 0.003782287, -0.0046649687, - -0.0123135615, -0.020215144, 0.022422627, 0.0063438984, 0.0057709846, - -0.022494843, -0.0085956855, 0.010533407, 0.0025528667, -0.014806708, - 0.030467318, 0.008868419, 0.02668658, 0.016257942, 0.0041992995, - 0.0038615223, 0.03336744, 0.004483146, -0.032831434, -0.010321267, - -0.006513192, 0.0034169545, 3.1333363e-6, -0.0024504417, 0.026737032, - -0.017878054, 0.003886807, 0.011599962, 0.007906231, -0.0042808745, - -0.005363301, -0.010353836, -0.01305281, -0.001418513, 0.0039979066, - 0.019782264, -0.012252712, -0.008133651, -0.0073594265, -0.006942376, - 0.036665052, -0.007391751, 0.017672705, -8.6862064e-4, 0.012509041, - -0.0016459419, -0.036967106, -0.009467324, -0.018867774, -0.012468289, - 0.005908467, 0.0027856682, 0.005020967, -0.0033683742, 0.005629554, - -0.016595382, 0.0019412568, 0.00447212, 0.004446655, -0.026515016, - -0.010609014, 0.0037960645, -0.003392152, -0.008251695, -0.016878173, - 0.017775215, -0.030902158, 0.015623127, -0.014520411, -0.003718949, - 0.0034086548, -0.004509073, 0.009413708, 0.0374206, 0.0023411678, - 0.002452803, -0.025856806, -0.0070953555, -0.004212254, -0.023357214, - -0.006913588, -0.01617949, -0.011104191, -0.009879409, -7.657366e-4, - -0.012742185, -0.003996412, 0.011999003, 0.01803841, -0.0056668897, - 0.0011499268, 0.002373771, 0.014903232, 0.02716701, -0.0034775687, - 0.014540949, -0.018992156, 0.0011379634, -0.010662355, -0.0074384464, - 0.029225146, -0.006940018, 6.659451e-4, -0.0078062145, 0.011949992, - 0.0012677086, -0.0028231798, -0.009517978, 0.019195426, 0.004248678, - 5.64096e-4, 0.013299444, 0.008475143, -0.009366797, 0.007858774, - 0.015266621, -0.0023399594, -0.020978509, -0.008942762, -0.009926542, - -0.011048066, -0.011777478, -0.006838784, -0.020087996, 0.00839223, - -0.012781699, 0.0115087265, 0.0075417324, -0.012028733, 0.010587327, - -0.005810968, 0.008832718, -0.005300776, 0.0015620827, -0.0143663725, - 0.037535395, -0.006979818, 0.014137585, 0.0034049198, 0.009111113, - -7.1331626e-4, -0.0117000025, 4.3123422e-4, 0.01733373, 0.014139083, - -0.0047638067, -0.013660434, -0.0141607, 0.020488013, 0.030651165, - -0.02751654, 0.01332673, 0.0027884415, -0.017260604, -0.008522218, - -3.0430665e-4, -0.019849688, 0.015274979, -0.011010527, -0.004301847, - 0.008164761, -0.010340162, -0.014645147, -0.033123318, 0.008546056, - 0.016721092, -0.0023275404, 0.02714086, 0.016707584, -0.0165067, - 0.015005325, -0.006310583, -0.032973267, -0.013392184, 0.026808256, - 0.005061731, 0.005802629, -0.023899216, -0.01417803, 0.014977371, - -0.0070859147, 0.0021082272, 0.018082928, -0.006555344, -3.3877834e-4, - -0.0035805372, 0.0042060446, -0.015533521, 6.6265534e-4, 0.033255566, - 0.039600793, -0.0010954149, 0.025026375, -0.0014275239, -0.0024487218, - -0.029535543, -0.018124174, -0.001475339, 0.010062108, -2.7421318e-4, - 0.010783687, 0.008268214, 0.027673919, -0.015850665, 0.0060885698, - -0.01853421, 0.005093634, -0.008947615, -0.0013898677, 0.02248176, - 0.020715194, 0.010928101, -0.01333803, 0.011414233, 0.024799496, - 0.00290413, 0.025204208, 0.006564425, 5.5712275e-4, -0.003655181, - 0.012592376, -0.016946608, 0.0034347714, 0.015584914, 0.010157608, - 0.00894942, 0.011150834, -0.010053442, -0.009391265, 0.008313694, - 0.01198101, -0.0045037367, -0.0055823945, 0.012466596, 0.02138128, - -0.017440632, -0.025714146, -2.8926192e-4, 0.0030380785, 0.009869432, - 0.0048550516, 0.0010365106, -0.012206214, 0.03197728, 0.0030882205, - 4.784432e-4, 0.001579948, 0.008642658, 0.004367233, -0.004356257, - -0.007726454, 0.032185275, -0.013138264, -0.030301692, -0.018484391, - 0.007078136, -0.010261963, 0.016563222, -0.02365567, -0.021721367, - 0.028955711, -0.014874286, 0.006651573, 0.025117423, -0.026770765, - 0.018168775, -0.0014714316, -0.0040335036, 0.024489354, 0.023545211, - -0.0024991706, -0.0037789552, 0.030241411, -0.013962334, 0.0097416295, - 0.007275754, 0.0014051619, 0.016552934, 0.0060600084, 0.023332259, - 0.0062482976, -0.0024593913, 0.014787873, 0.0112432055, -0.025622515, - 0.0150128445, 0.0031402942, 0.015922748, -0.0057977955, -0.016798776, - -0.0033970254, -0.032771047, 0.0038459012, 0.013174956, 0.0072527733, - 0.013744892, 0.01401091, -0.006247075, 0.010760577, 0.016167691, - -0.01347947, 0.021468515, 0.029334195, 0.026783653, -0.005611799, - -0.012919689, 3.4544835e-4, -0.004353768, -0.0027364348, -0.010073014, - 0.017749233, -0.0051943874, -0.012529068, 0.015752401, 8.3875284e-4, - 0.008857366, -0.010004108, 0.011263368, 0.0027593644, 0.011220457, - -5.2207233e-5, -0.003994821, 0.018230999, 0.01928704, 0.014978974, - 0.0144564705, 0.0018880604, -0.005065374, 0.005906051, 0.01879953, - -0.0036206734, 0.02383845, -0.0071690003, 0.0056485953, 0.004569108, - -0.030933155, -0.012195115, 0.029243961, 0.0073948908, 0.01920466, - -3.2234925e-4, 0.001734341, 0.01808488, -0.0029492725, 0.021183446, - -0.014768687, 0.02474301, 0.044730034, -0.0042893086, 0.006201404, - 1.03624094e-4, 0.017746275, -0.015494378, 0.0111604445, -0.003564958, - 0.019119723, -0.012283173, -0.017507682, 0.002095923, -0.004910978, - -0.0055944114, -0.0048875227, -0.013040702, -0.0030658587, -0.005250814, - -0.021616533, -0.0011665421, -0.004205877, 0.0055425433, -0.015767902, - 0.0038019023, -0.0047348076, -4.593079e-4, -1.6464715e-4, 0.025224151, - -0.004636416, -0.020671261, 0.018843701, 0.020907432, 0.0299788, - 0.021075452, 0.024205979, -0.002042512, -0.030146971, 0.0038141718, - 0.005462274, -0.012580008, -0.0071814526, 0.009811244, -0.018519584, - 0.026459623, -0.019994404, -0.0068371906, 0.013429729, 0.020437516, - 0.003703734, 0.034094237, 0.007901712, 0.0075451965, 0.010776057, - 0.012923225, -2.4687208e-4, -0.013751102, -0.019825255, 0.02285983, - 0.020801125, 0.008844051, -0.0077463803, -0.016243398, 0.010461664, - -0.0015929792, 0.011025975, -0.0016478052, -0.007307788, -0.020295996, - 0.020175442, 0.0070919525, -3.326041e-5, 0.034039542, 0.018659107, - -0.0041677924, -0.010396855, 0.0074975076, 0.017007496, 0.00707637, - -0.012890072, 0.021142693, -0.002685684, 0.0129957255, 0.019150052, - -0.001003744, -0.005327709, 0.001525802, 0.017000161, -0.006673983, - 0.014310803, 0.004363916, -0.031126894, 0.03946213, 0.008196368, - -0.015849415, -0.005608165, -0.020079661, -0.016404994, -0.029676719, - -0.01711814, 0.017329734, 0.0019880172, -0.01992676, 0.002128198, - -0.0067313677, -0.020942073, 0.009839006, -0.0126940925, 0.02339163, - -0.0036680833, -0.021461641, -0.0014951207, 0.025493965, -0.0082171215, - 0.0069590327, 0.015675278, -0.0072833416, -0.0034701976, 0.01594298, - -0.030369595, -0.04209847, 0.0062938877, -0.010238234, 0.0067077433, - -0.014157426, -0.02978235, -0.028184427, -0.0015965094, 0.010131755, - 7.066698e-4, -0.0032306847, -0.009748759, 0.0067457804, -0.007874463, - -0.016188635, -0.009606335, 0.04186634, -0.0092531005, -0.02286599, - -0.013465893, 0.013882025, 0.023591569, 3.5297123e-4, -0.011932121, - 0.015698332, 0.005487939, 0.0070686224, 0.005178013, 0.009671688, - 0.015625259, 0.018791338, -0.027669592, -0.016126106, 0.023439765, - 0.009613993, 0.0073881987, -0.017822996, 0.020584794, -0.015004726, - -0.009929718, 0.017744917, 0.021746144, 0.03299859, 0.005841956, - -0.0022444774, -0.025898756, -0.008451443, 9.811454e-4, 0.0066050803, - 0.02232904, 0.00551098, -0.00592216, -0.011587735, -0.03996367, - -0.013248314, 0.02077488, -8.0181914e-4, -0.0059725787, -0.008377773, - -0.008723983, -0.0107167205, -0.018687835, 0.023747569, -0.019306378, - 0.010994189, -0.008846215, 6.148114e-4, -0.002177827, -0.02662419, - 0.019863883, -0.014297705, 0.0015866858, -0.0027388274, -0.012639405, - -0.014952105, 0.011336449, -0.017241094, 0.022344317, -0.004419225, - -0.005097979, 0.008706422, -0.0039203735, -0.03247012, -0.0032393702, - -0.0013508862, 0.0050364314, 0.011836294, -0.014673726, -0.026428748, - 0.020366771, -0.00217227, 0.008208359, 0.003223593, -0.014807576, - -0.003389859, 0.003709955, 0.030800503, -0.00783125, 0.005713463, - -0.01490584, -0.031655855, -0.0040780413, 0.01648851, -0.0078116893, - -0.02351222, -0.0077840076, -0.010954612, 0.024550423, -0.029237267, - -0.012987568, 0.0058351015, -0.02906509, 0.0021037438, 0.010954568, - -0.012044395, 0.01332849, 0.0056662965, 0.003931996, 0.0049214857, - 0.010091477, 0.030637633, -0.005424716, 0.0033107633, 0.009041779, - 0.013036404, 0.0152721405, 0.004428997, -2.9999326e-4, -8.504175e-4, - -0.011204785, -0.017108185, 0.0130031835, 0.018367691, -0.0046678837, - -0.019815791, 0.007195301, -0.007701449, 0.01667554, 0.0071842205, - 0.014189043, 0.012450865, 0.030560186, 0.014840053, -0.0011277861, - -0.023010518, -0.0010984921, -0.0029860395, 0.020892762, -0.036567397, - 0.021473225, -0.011825211, -0.024385542, -0.02673409, 0.03956131, - 0.0035104936, 0.0064120716, -0.03984951, 0.0013117152, 0.013854432, - 0.0076949676, -0.023663223, -0.019915748 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.0132240355, 0.029369483, -0.03089718, 0.011560965, 0.0058312328, - 0.016925788, -0.020134177, -0.014738096, -0.0025466755, -0.007125271, - 0.03232282, -0.011166439, 0.008498717, 0.011043186, -0.009354669, - 0.00272719, -0.004583502, -0.006639894, -0.003066232, 0.032284375, - 0.020344606, -0.0108457, 0.010851521, 0.024652194, -0.008858198, - 0.0023683007, -0.008327462, -0.017051108, -0.004627623, 0.010626074, - -0.024048625, 0.02846951, -0.002812196, 0.006157783, 0.012531091, - 0.003929597, -0.030089535, -0.007236425, 0.029215204, 0.020095052, - 0.0017381666, 0.015252681, 0.013665436, -0.010911792, -0.008365167, - -0.020092638, 0.006341048, 0.014950955, 0.0032987273, -0.012722775, - -0.007630811, -0.010067697, 0.015712965, 0.0041715824, 0.011692472, - 0.001390038, -0.01302172, -0.008818779, -6.206629e-4, 0.028192282, - -0.01952041, -0.03453579, -0.005408598, -0.010805543, -0.009595188, - 0.009906405, -0.007966075, 0.0040442618, 0.019545646, 0.006171859, - -0.0012399373, 0.0016555432, 0.008652791, 0.0077047655, 0.003168362, - 0.043198388, -0.007447776, 0.00639452, 0.021472616, 0.006786581, - 0.009029487, -0.009253095, 0.0019435643, -0.009832034, 0.01092433, - 0.016879221, -0.020279415, -0.0043497635, -0.008590487, -0.009294922, - 0.013861679, 0.025901703, 0.02393425, -0.036375117, 0.020213446, - 0.018043282, 0.003187694, -0.005508914, -0.0054584937, 0.012785924, - 0.009799586, -0.015747609, -9.518617e-5, 0.0516154, -0.013117183, - -0.020239841, 0.020534873, -0.010795042, -0.015856203, 6.6337764e-4, - -0.0016957517, -0.01165429, 0.0017744013, 0.012011344, -0.0056245914, - 0.004384606, 0.008961784, 0.02036552, 0.00706348, -0.016034614, - -0.002435851, 0.022838099, 0.020589927, 0.018734166, -9.302331e-4, - 0.019300621, 0.002947878, -0.011506689, -0.011553954, -0.024747256, - 0.014635175, 0.0028345962, 0.008827476, -0.01389391, 0.0039537773, - 0.0055780583, 0.026506158, 0.001263694, -0.031420097, -0.011423738, - 1.8142123e-4, -0.018816957, -0.024148611, 0.015083666, 0.0029200455, - -0.0012453458, 0.010595281, -0.017343218, -0.006188507, 0.009935478, - -0.025319748, 0.0013285275, 0.0048038885, 0.002139248, 0.019706286, - 0.022036025, -0.0046463828, -0.0014050942, 0.016569352, 0.013991607, - 0.0028049527, 0.0064843297, -0.0048314747, -0.021344634, 0.01420556, - -0.023990555, 0.0034626457, 0.009340366, 0.0032937173, -0.040443797, - 0.012974265, 3.8897255e-4, 0.0025332326, -0.0095704505, 0.020836568, - -0.008562698, -0.0027159152, -0.008277314, 0.009575663, -0.0021836828, - -0.018449366, -0.0052837706, -0.03971374, 4.9486134e-4, 0.0038727375, - -0.018817894, -0.011393099, -0.032019414, -0.001998801, -0.004111859, - 0.02448932, -0.001075591, -0.03358719, -0.012648136, 0.010017922, - 0.023733854, -0.01154417, -0.012489086, 0.0017500746, -0.0052564656, - 0.013663059, -0.0033917865, 0.01095566, 0.0026789138, -2.709157e-4, - -0.0101403715, 0.011440511, 0.009272161, 0.012237628, -0.0057831374, - 9.7408815e-4, 0.0079960525, -9.774071e-4, -0.0015016124, -0.0076948386, - 0.017930178, 0.0094209425, -0.0063432204, 0.0066048056, -0.0128606, - 0.025053041, 0.005313772, 0.0044733686, 0.02383367, 0.010696972, - -0.001947012, -0.0069994726, 0.011337657, -0.019575678, 0.025794279, - 0.016573496, 0.0021121886, -0.033554327, 0.018153379, 0.013238332, - 0.0026274575, 0.023042062, -0.0035066935, 0.02079195, -0.019295076, - -0.0076195635, -0.018827435, 0.028612351, 0.016205497, 0.005084542, - -0.0060185706, 0.00370988, -0.012346453, 0.022334725, 0.019453146, - 5.4403e-4, 0.012013053, -0.006375524, -0.0051226323, 0.016179461, - 0.003486975, -0.00395043, -0.02969843, 0.012995488, -0.020871522, - 0.0054370374, -0.0136432955, 4.597186e-4, 0.009934605, -7.590142e-4, - 0.010249809, -0.018902332, -0.003085652, 0.008151904, -0.023087839, - -0.037995297, 0.025824776, 0.012459843, -0.021533236, 0.02285322, - 0.036219098, 0.034359626, 0.03457505, -0.016217792, 0.012029976, - 0.0025116813, -0.009125359, -0.0054532327, -0.006375856, 0.0016298279, - -0.018629739, -0.005572096, -0.028852338, 0.024717495, 0.021689167, - -9.6911285e-4, 0.010215997, -0.012646775, 3.0313962e-4, 0.005865221, - -0.006680641, 0.023262428, -0.019655565, -7.5893936e-4, -0.0017080769, - 0.02026425, -0.010103356, 0.011400798, -0.0012565451, -0.019466273, - -0.0038561798, 0.010582728, -0.0032513153, -0.010209986, -0.0037488246, - 0.046654686, -0.012759271, -0.0029291213, -0.008967378, 0.0049286378, - -0.006742607, 0.010827177, 0.018100448, 0.02816682, -0.008171101, - 0.010914545, 0.019273812, -0.0033655902, 0.009804074, 0.0058730226, - -0.009311941, 0.0015290919, -0.049157456, -0.036251526, -0.0052943393, - 0.016858056, 0.0168626, -0.021387298, -0.007171475, 0.009497919, - -0.005560311, 0.01855577, -0.0021207093, -0.002554284, -0.0032966842, - 0.01138621, -0.04244754, -0.013418425, -0.014175783, 0.012563267, - 0.02131797, 0.0040765638, -0.013287252, -0.008260527, 0.0052864165, - 0.0052571986, -0.0054613515, -0.022302775, 0.013048193, 0.039344147, - 0.009486126, 0.017136397, 0.0025348044, -0.009618376, 0.013576231, - 0.007341148, -3.2287274e-4, 2.5169147e-4, -0.013589507, -0.020843307, - 0.009450094, 0.011092968, -0.0010284549, -0.008004417, -0.006714735, - -0.0065581314, -0.011956909, 0.021143045, 0.025404688, 0.010312172, - -0.010613, -0.030875726, -0.0034044033, -0.028934864, 0.011936774, - -6.3984806e-4, 0.0073177214, -0.0055758622, 0.011830782, 0.016932162, - 0.00537931, -0.0055499263, 0.026053106, -0.01569381, -0.0014920234, - -0.012828518, -0.010058669, 0.03759293, 0.012317599, 0.009372319, - 0.00648694, -9.3603594e-4, 0.010420875, -0.022442054, -0.022342248, - -0.0053505492, -0.013279437, -0.007284031, 0.0103068575, -0.004499219, - -0.0055424776, 0.0032230061, -3.3700716e-4, 0.009945498, -0.004632086, - 0.008741652, -0.0019282184, -7.564227e-4, -0.014478896, 0.00417037, - -3.4362913e-4, 4.888304e-4, -0.028070789, 0.02063477, 0.017884161, - 0.012646629, -0.0106496, -0.011955501, -0.024599792, 0.0108142495, - 0.03225226, -0.014926088, 0.024729522, 4.716535e-5, 0.010223017, - 0.010043967, -0.013045673, 0.0129804015, -0.03296591, -0.025907148, - 0.0016790769, 0.032784738, -0.0072503895, 0.02220309, -0.032235745, - 0.0018425416, -0.012527819, 0.011481813, 0.03042551, 0.027278611, - -0.009153129, 0.0039853505, -0.0046959873, -8.712378e-4, -0.03460112, - -0.006112933, 0.016642252, 4.518386e-4, 0.027424172, -0.0016615994, - -0.0032004449, -0.005340286, -0.009144521, 0.03128234, 0.027465725, - 0.017814582, 9.601526e-4, -0.009222884, 0.007249497, 0.003676629, - -0.012995992, -0.006287948, -0.032174006, 0.0068611572, 0.0124290725, - -0.012594819, 0.015462941, -0.021727933, -0.0054656714, -0.0062094564, - -0.0077819014, -0.018500216, 0.0063186567, -0.011436054, -0.009297523, - -0.0014480838, 0.005986768, 0.0032653399, 0.010376523, 0.005945283, - 0.022194065, 0.010904627, -0.022182059, -0.02420949, 0.0073870267, - 0.0100413, 0.023612658, -0.02142225, -0.006158544, 0.009683113, - -0.010192347, -0.023020009, 0.021230457, 0.0095389625, -0.01627613, - -2.2732456e-4, -0.0016685822, 0.0019076897, -0.0073655234, 0.008895074, - 0.02180817, 0.03374386, 0.027704695, 0.015928887, 0.0060019395, - 0.008638786, 0.032209415, -0.02320323, -0.0234886, 0.017725296, - 0.001345174, 0.021591062, 0.02018761, 0.008046867, 0.002923209, - 0.0018828881, -0.004644826, -0.0054558725, 0.007889748, -0.021990683, - 0.006363651, 0.001958314, 0.004526587, -0.011528465, 0.009541769, - -0.02182449, 0.008345404, -0.014834414, -0.017830644, 0.0022737584, - 0.007822838, -0.0044206805, 0.014431756, -0.01874484, 0.004895616, - -0.003513763, 0.014601481, -0.006321346, 0.0191667, -0.009091229, - 0.011661474, -0.0045995247, 0.011853683, 0.0060792733, 0.01943011, - 0.0048666173, 0.0043084617, -0.025103958, 0.007145249, -0.0142872995, - 0.013833329, -0.021357868, 0.023496026, -0.011930893, 0.012926603, - 0.031828072, 0.018184317, -0.016114417, 0.032018907, -0.0066386713, - 0.009335879, -0.01820279, -0.025350165, -3.1947275e-4, -0.01798685, - -0.019656464, 0.0015680264, -0.007930977, 0.0021624006, 0.0021676777, - 0.01976235, 0.026786968, -0.0070512528, 0.009896884, -0.013526084, - -0.0040801964, 0.023688022, -0.026225237, -0.019289559, 0.011971434, - -0.029469848, -0.009171647, 0.016169157, -0.0036879436, 0.023620166, - 6.043905e-4, 0.012492989, -0.0033217524, -0.013939582, -0.0025589485, - -0.010697997, -0.012939352, -0.039350618, 0.006046534, 0.008653707, - -0.009253796, 1.0799444e-4, 0.010857462, 0.0022702431, -0.002330828, - 0.0076237237, -0.012785492, -0.003512135, -0.016578691, -0.0046655377, - 0.021018248, -8.8021776e-4, -0.003046613, 0.003332037, 0.004836808, - 0.0014764259, 0.014412729, 0.036539502, -0.022994375, -0.00822889, - -6.67608e-4, -0.03035396, 0.010536751, 0.0041151615, -0.02008127, - -0.012886373, 0.022808785, -0.036558803, -0.008925383, 0.037925538, - 0.02665441, 0.008950558, -0.007288169, -0.017755074, 0.0011089253, - -0.013854269, -0.011391002, -0.036396287, 0.01712836, 0.0018254808, - 0.01559326, -0.004876219, -0.0013308652, -0.005328749, -0.025239859, - 0.01689092, 0.011610319, -0.054808903, -0.0028781795, 0.00910446, - 0.00854443, -0.003664188, -0.005514651, -0.015394806, 0.011106385, - -0.01108888, -0.005382473, 0.01781961, -0.021637281, -0.012790148, - 0.015998075, -0.0018254482, -0.003375105, -0.00877287, 0.006193488, - -0.012692909, 0.028435994, -0.045982976, 0.003919379, -0.01294653, - -2.0185295e-4, 0.02340184, -7.565211e-4, -0.0041978164, -0.0076010805, - 0.025199857, 0.01571907, 0.031636782, 0.0011343074, 0.0029026659, - -0.0073462524, 0.010772795, 0.03245654, 0.026413947, -0.011132418, - -0.028039386, 0.008191001, -0.013766272, 0.01625183, -0.008693193, - -0.0048272004, 0.008976421, 0.008613421, 0.002300273, 0.022886442, - -0.014453744, -0.011885955, 0.03509463, 0.017571775, -0.009638182, - 0.019842751, -0.0040094927, -0.03418946, 5.713955e-4, 0.008867926, - -4.875375e-4, -0.008246298, 0.010768038, -0.013017828, 0.0026249194, - -0.01244389, -0.004123958, -0.009639655, -0.018390115, -0.020868557, - -0.007121544, -0.018187262, 0.008795716, -0.012384518, -0.013109804, - 0.0019506377, -0.03842092, 0.015090853, -0.010278046, -0.0047529927, - -0.015965754, -0.012093082, -0.011691437, -0.018136967, -0.005490742, - -0.014558555, 0.022965003, 0.00914044, -0.008044178, -0.021194842, - 0.03632395, 0.028819421, -0.02000066, -0.019981466, 8.1065967e-4, - 0.00737064, -0.040409457, 0.01884184, -0.020548638, -0.009283575, - 0.01790438, -0.0068788063, 0.031248122, -0.0024084172, 0.006841844, - 0.04061631, -0.0060802847, -0.005652326, -0.015726048, 0.017501462, - 0.011626373, 0.01301968, 0.0017692979, -0.027110513, 0.026192134, - -0.0074071055, -0.031950623, -0.011797689, -0.0074127438, -0.006546589, - 0.006133887, -0.0028425858, -0.0021951105, 0.018122107, -0.028096793, - 0.016425906, 0.017256163, -0.026761638, -0.029828036, -0.023244333, - -0.021110307, 0.0114783235, 0.0113076605, 0.0015095406, 0.00182145, - 0.005557261, -0.015951319, -0.015279026, 0.013379739, -0.00809721, - 0.005493975, -0.014889728, 0.0041907164, 0.014118272, 0.0064204596, - -0.0051164604, -0.011139308, 0.02230575, -0.004423193, 0.01855551, - -0.007305429, 0.01886364, -0.04364531, 0.010701827, -0.009768704, - -0.011802219, -0.026461054, -0.029736018, 0.025228932, -0.026469925, - -8.8733464e-4, 0.036396794, 9.28834e-4, 0.011582564, -0.0016999736, - 0.03229446, 0.01502285, -0.017538927, 0.02423757, -0.0075013433, - 0.036743905, 0.016857091, 0.018483022, -0.024325594, -0.042516403, - 0.012005977, 0.021897089, -0.016298737, 0.047932774, -0.019329898, - -0.031914018, -0.0016513737, -0.0011215281, 0.03939394, -0.01120143, - 0.004589306, -0.016215602, 0.020302454, 0.018185457, -0.021989683, - 0.007848339, -0.004585793, 0.01565883, -0.013368911, -8.485065e-4, - -3.3486102e-4, -0.0021240555, -0.005120932, -2.4178678e-4, - -7.6382485e-4, -0.011321704, 0.014835484, -0.017881952, -0.0064047356, - 1.8678226e-4, 0.0023917824, 0.007558268, -0.008272324, 0.0077888053, - 0.0019154593, 0.0049668765, 3.1993684e-4, 0.033650342, -0.021597074, - -0.0222627, 0.015848195, -3.1024197e-4, 0.016816365, 0.004778872, - -0.021514794, 0.009576763, -4.3744702e-4, 0.0070166, 0.0016980423, - 0.008998366, -0.013244361, -0.0033076792, 0.0072264634, -0.017750578, - 0.008348118, 0.011373422, 0.02837233, 0.013389732, 0.018042853, - -0.012667594, -0.0063947034, -0.003136909, 2.8616993e-4, -0.011141402, - 0.014637295, 0.013259424, 0.010986148, -0.022069884, 0.039872326, - 0.0057862997, -0.016598508, 0.015366362, -0.019270772, 0.009384365, - -0.023997651, -0.006331099, -0.025671294, -0.013049629, -0.020374618, - -0.027360644, -0.002801739, 0.014728152, 5.1874196e-4, -0.011573177, - -0.015489175, -0.008678819, 0.022011066, 0.018296033, 0.027054077, - 0.009269792, -0.039258443, -0.011913134, 0.0049651763, 0.028164236, - 0.026510429, -0.004382426, -0.02288922, -0.022554139, 0.003794812, - 0.0031763907, 0.021201115, 0.00738324, 0.024540162, 0.0049775564, - 0.002378351, -0.017444074, -0.007262294, -0.006532029, 0.011619359, - -0.011659323, 0.023486352, 0.009163644, -0.021152565, -0.019204244, - -0.019353563, 0.0027748707, -0.014271691, 0.017690787, -0.017361391, - 0.004793621, -0.0052742353, -0.026555423, -0.016690789, 0.008237128, - 0.031640045, -0.018533444, -0.005922119, 0.016466953, -0.01153552, - 0.006439181, 0.013861754, -0.013444224, -0.017403403, -0.0013648608, - 0.011034938, 0.0136880595, 0.015316164, -0.0037668676, -0.018018378, - -0.010249571, -0.0025975704, -0.0052556815, -0.0032665476, 0.021775497, - 0.010314219, 3.9939107e-5, -0.016132059, 0.028088199, 0.018515995, - 0.023678958, -0.02146851, -0.02044479, 0.009951457, -0.009609677, - 0.013578234, 0.008120913, -0.016555205, 7.772659e-4, 0.011769084, - 0.007862623, 0.023049293, 0.007406032, -0.02444338, -0.013156732, - -0.017278438, -0.016118431, -0.004457502, 0.007978602, -0.009059573, - -0.0076596937, -0.0051390114, 0.009628311, -0.009974903, -0.004065523, - 0.0059468257, 0.007877696, -0.033397943, -0.0256811, -0.01125181, - 0.0071094707, -0.0058911354, -0.016669953, 0.013959684, -0.0074158483, - 0.009870843, -0.05420259, 0.0038880103, 0.0055338554, 0.010522431, - 0.009049927, -0.0013538691, -0.005959981, -0.0018827012, -0.0024059052, - -0.010266285, -0.0017485782, -0.0131109115, -0.0053431527, 0.017532492, - 0.01482719, 0.036600653, -0.021268835, 0.0020649964, -0.021911863, - 0.009844278, -0.0070284535, -0.0013532096, -0.009383076, 0.024182893, - 0.0061258767, -0.012582066, 0.0032207507, -0.02850138, 0.020112477, - -0.0075730146, -0.022804888, -0.004150147, -0.020696234, 0.008826685, - 0.0046732477, -0.020886278, 0.008345971, -0.015643727, -0.018434117, - 0.0042796587, -0.009300932, -0.009072671, 0.0038243595, -0.0033999255, - -0.025039019, 0.01079467, 0.023442606, -0.013695672, -0.013569372, - 0.0010229532, -0.014855912, -0.0039745457, -0.015326133, 0.015941514, - 0.006275895, 0.0014116585, 0.029215612, 0.0014397255, -0.009681955, - -0.012484752, -0.02279332, -0.0025530013, 0.014651019, -0.003801468, - -0.016101638, 4.5887995e-4, -0.0027575428, 0.008405175, -0.0012498607, - 0.007891366, 0.0099146115, 0.0025955238, -0.0046453313, 0.014213257, - -0.02605679, -0.00982234, -0.014025645, 0.013125178, 0.035373233, - -8.60764e-6, 0.007828091, -0.0028991695, 0.021278812, 0.0017099528, - 0.009215509, -0.005774949, 0.003720654, -0.0074683675, 5.62687e-4, - 0.004006665, 0.027640954, 0.0078187175, -0.010768478, 0.0011006878, - -0.028061965, 0.015854308, 0.00893206, 0.0059418296, -0.0039665396, - 0.015776416, 7.662661e-4, 0.004927884, 0.009748859, 0.012195391, - -0.016858684, -0.025645249, 0.017005563, -0.0055698864, 0.0034780782, - -0.0015888468, -3.4642636e-4, 0.01107825, 0.019048966, -0.024865737, - -0.01600563, -0.03137425, 0.0016976168, 0.011548268, -0.009435735, - 0.0037955358, -0.012012605, -0.020483676, 0.014063628, -0.022085331, - 0.013006536, 0.014970634, 0.0021915787, 0.014721599, -0.024540452, - 0.014253188, 0.016556462, -0.022199119, -0.010975195, -0.014141483, - -0.022773685, -0.0013268432, -0.009690881, -0.012504803, 0.005839069, - -0.009796606, -0.016375838, -0.0048315693, 0.002265998, 0.03692237, - -0.020540688, 0.0019768407, -0.04661292, -0.016431766, -0.01951187, - -0.009278369, 0.011196901, 0.010089147, 0.017365703, 0.00349497, - 1.3477706e-4, -0.024690133, -0.010366363, 0.014932149, -0.005356022, - 0.04169773, 0.019443871, 0.01790559, -2.9123997e-4, 0.01586999, - -0.007932076, -0.0016196147, 0.012206136, -0.03660646, 0.009771486, - -3.7022418e-4, 0.033722926, -0.01754473, 0.0049739378, 8.1069017e-4, - -0.03966678, -0.01987219, 0.0027807034, -0.0042858473, 0.009543019, - 0.050318, -0.006761602, 0.014777215, -0.015966194, -0.010706076, - 0.026817482, 0.0019601386, -0.0036951213, -0.008199724, 0.044257402, - 0.017133147, 0.03482594, -0.012901904, 0.007895908, 0.020547407, - -0.013981746, 0.025782598, 0.020913428, 0.003948007, -0.028251065, - -0.023578811, 0.0041105645, -0.021634407, -0.0064382516, 0.007778643, - -0.0032400698, -0.015403487, -0.0070778457, -0.0048946333, - -4.7222653e-4, 0.020038275, -0.020357482, 0.01467467, -0.012539501, - 0.009490461, 0.008996785, -0.018934244, 2.475477e-4, 0.0031528515, - -0.02032699, -0.0123901805, 0.006042701, 0.036558684, -0.006262217, - -0.0076512923, -5.615189e-4, -0.030202381, 0.0014779613, 0.0028194005, - 0.023558896, 0.01058611, -0.017400848, -0.0043444894, 0.008278031, - -0.01972792, -0.035011444, -0.017807066, 0.005241646, -0.010020397, - -0.015536532, 0.0037940224, -0.010169422, 0.008394388, 0.002086654, - 0.005349184, 0.005663041, -0.011486458, 0.0012784475, 0.010395723, - -0.01083972, 8.409561e-6, -0.014735399, -0.015337409, 0.004712739, - -0.022680622, 0.0027225309, -0.008056711, -0.008941028, -0.007875827, - -0.011101692, -0.005470015, -0.0107706925, -0.014503631, -0.012614074, - 0.0018635952, -0.012508595, 0.02120662, -0.017399823, 0.006069322, - -0.010055045, 0.031228844, -0.01103077, 0.011679875, -0.009138778, - -0.025233794, 0.018916616, 0.018184628, -0.0016704946, 7.442927e-5, - 0.0019937942, 0.011874788, 0.011362925, -0.012489199, 0.004077683, - 0.011664395, 0.006790501, -0.009558078, -0.015315734, -0.011215123, - 0.02271048, 0.0027099454, -0.0023159806, -0.012387156, 0.015444618, - -0.009341809, 0.014550459, 0.0068878373, -0.025141053, 0.004216127, - -0.0046978695, 0.0061686644, 0.0021090168, -0.007898988, 0.005305734, - -0.01244659, 0.019904682, 0.0033101158, -0.030867532, -0.0170056, - -0.004263372, -0.010198542, 0.010071414, 0.024859628, 0.0050419746, - 0.0022329201, -0.021190962, -0.018853165, 0.011595488, 0.012285548, - -0.013195517, -0.008606884, -0.003545384, 0.004367034, -0.0042427126, - -0.020244844, -0.008159611, 0.0064500696, 0.022147328, -0.006948927, - 5.110719e-4, -0.008468119, -0.005490712, -0.03777886, -0.0067694057, - 0.018159935, 0.026546156, -0.020455, 0.005128141, -0.026210548, - -0.0081479745, 0.006869531, -0.0019369895, -0.0020610082, 0.007491171, - -0.021990912, -0.024882084, 0.009605344, -0.0034183743, -0.008551132, - 0.0033450935, -0.0026471983, -0.0255617, 0.0019458239, 0.009516899, - 0.0052185976, 0.013022027, 0.026666125, -0.021000791, -3.6059596e-4, - 0.0074839527, 0.0057990914, -0.02646811, 0.020129267, 0.01589604, - 0.010643819, -0.012748131, -0.006733278, -0.012158204, 0.010730623, - -0.006339995, -0.009448431, 0.030885333, 0.015027811, -0.020393595, - -0.019010192, -0.007566521, 0.014442445, 0.021697687, -0.015189953, - -0.0013316933, -0.0034169415, -0.0021123514, 0.010346996, -0.0073293727, - 0.012013076, 0.0015831752, 0.017717615, 0.0010138289, 0.0044519478, - -0.0067075836, -0.013774139, 0.0047858525, 0.009759892, 0.011782678, - -0.021700352, -0.02101115, 0.011996035, 0.0029582435, 8.483604e-4, - -0.012666311, 0.032007024, -0.014380105, -0.017409788, 0.0013018524, - 0.009534827, -0.004084972, 0.016379064, 0.0065112165, -0.0040513333, - -0.013399758, -0.012347523, 0.005411063, 0.0097872075, -0.011742048, - -0.006067641, 0.016978426, 1.5129693e-4, -0.0063029258, 0.02702286, - -0.0056174346, -0.010855139, 0.008634652, -8.55041e-4, -0.012734341, - -4.1625494e-6, 0.004513786, 0.010633948, -0.003966745, 0.003523734, - -0.03089696, 0.030725705, 0.019984968, -0.010069884, 0.0010870146, - 0.00174436, 0.009636035, -0.010962691, -0.006887199, -0.0016706198, - -0.009502672, -0.013380986, -0.009347886, 0.0010815829, -0.009313457, - -0.033631206, 0.0062665762, -0.018897302, 0.016150843, 0.0025491929, - 0.012483862, -0.011031681, 0.016795281, 0.0014958696, 0.025328618, - -0.03519013, 0.016805457, -0.022978704, -0.0033522446, -0.00783246, - 0.01987354, 0.0050453404, -0.033392902, -0.030942488, -0.015054857, - 0.0048179226, 4.9255206e-4, -0.0010289955, 0.009913012, -0.0026988003, - -1.9469798e-4, 0.028807832, 0.011401593, -0.010419771, -0.0069390233, - -0.037848994, 0.003033085, -0.001319786, 0.018610522, -0.022054128, - 0.01083094, -0.010195121, 0.004904812, -0.010913146, -0.011673352, - 0.003914098, -0.012108404, -0.0059595676, 0.038054947, 3.2791413e-5, - 0.0036253235, 0.016760366, 0.0011082985, -0.01364289, 0.0055787032, - 0.028310932, 0.015673488, 0.018195674, -0.0032844557, 0.01737591, - -0.01749487, 0.017066853, 0.014187193, -0.028187707, 0.022122819, - -0.0072119175, 0.017602623, 0.0024323862, 0.0053084106, 0.012684994, - 0.02283087, -0.005551465, 0.013101718, -0.039831616, 0.022307888, - -0.02099878, 0.0217462, -0.0061078984, 0.008076614, -0.0032091164, - 0.025086416, -0.012391427, 0.0044435817, -0.018044917, -0.009670625, - -0.0027981207, 0.010571785, 0.0189093, 0.0027242405, -0.018652983, - 0.0042368313, -0.012807654, 0.02952831, -0.002259198, -0.004802129, - 0.017130878, 0.016405245, -0.0020033785, -0.009579715, 0.022333607, - 0.008001536, 0.023601819, -0.010503779, -0.020795202, -2.062396e-4, - -0.011974371, 2.4362995e-4, 0.00286557, 0.00448412, 0.013883169, - 0.0014861762, 0.020705564, -0.0038192472, 0.020550339, -0.0024750507, - -0.008960786, -0.0015503397, -0.0195598, 0.011861517, 0.013682122, - -0.0058170743, 0.011408341, 0.0030920438, 0.017087033, -0.043311626, - -0.0028886548, 0.018248782, -0.004648151, -0.016483074, -0.026968827, - -0.0023421375, -0.015153398, 0.010695119, -5.517822e-4, 0.013256024, - 0.024386564, -0.014093929, -0.0020879887, -0.026916793, 0.010145354, - -0.0034727654, 0.009337041, -0.0072734384, -0.009867266, 0.0014913428, - -0.019191887, -0.014115514, 0.026055396, 0.004841149, -0.024472028, - 0.022474976, -0.002723424, -0.009787763, 0.004746521, -0.022342326, - 0.001443943, -0.0034265807, -0.013829286, 0.010082709, -0.005852768, - -0.012860445, -0.016904192, 0.010246642, 0.025204077, 0.021502946, - -0.023816453, -0.011676816, -0.014905676, 0.030763112, 0.011507538, - -0.015744211, -0.0037351623, 0.008138291, -0.0025306405, -0.016993213, - 0.0053673, 0.036513027, -0.004896155, -0.0045942385, 0.01023334, - -0.027899463, -0.026789987, 0.0041793208, 0.015886208, 0.004633852, - 0.009970379, 0.0074853175, -0.0045464, 0.007270314, 0.0068254517, - 0.0051893266, -0.0142723, -0.0053398116, -0.003436454, -0.018516881, - 0.011287802, -0.013417231, 0.01708901, -0.014641248, 0.036121942, - 0.005638628, -0.009749729, 0.0025567114, 0.014783724, -0.014940027, - -0.018382449, 0.012985469, 0.008815523, 0.014778012, -7.251206e-4, - 0.006706758, 0.004008389, 0.019108063, -0.020127429, -0.001240155, - -0.01498182, 0.017790612, 0.014345287, -0.017465327, -0.011837858, - 0.0075069205, 0.021504827, -0.0015601731, 0.011210999, 0.015376826, - 0.026207244, -0.004534356, 0.005116877, -0.0061015165, 0.007015826, - 0.0010693902, -0.0037455359, 0.00965206, -0.0054070856, -0.0060661905, - -0.020077072, 0.009931977, -0.01887265, 0.0075363694, -0.031991895, - -0.005113894, 0.022338124, 0.03142398, 0.020638902, -0.008370662, - 0.0025199726, -4.3850567e-5, 0.00728445, -0.014562231, -0.026100794, - -0.013393797, -0.0075257146, -0.0060806093, 0.017937366, -0.009364428, - -0.014682158, -0.011726871, 0.009190402, 0.019251065, 0.0167768, - 1.938855e-4, -0.014321318, -0.012327484, -0.028325424, -0.0022860717, - 0.018690469, -0.021844782, 3.5416704e-4, -0.0027215057, 0.0058338563, - -0.0060639926, 0.0088088205, -0.006167969, 0.014031715, 0.009843654, - -0.02586259, -0.0100081535, 0.03745052, -0.031012647, 0.009424642, - -0.010763702, -0.021768363, -0.015126604, 2.155864e-4, -0.004834774, - 0.009290574, -0.018725997, 0.03344536, 0.0032057755, -0.029321952, - -0.0056138374, -0.0177055, -0.010232272, 0.042112503, -0.010426709, - 0.020036925, -0.0077528344, 0.005346333, 0.007314902, 0.009392066, - 0.0280183, 0.02008048, -0.009849967, -0.0126464395, -0.004071538, - -0.02624251, -0.0040818667, 0.0044536404, 0.012473696, 0.00804389, - -0.0051507344, 3.7426694e-4, -0.0031426612, -0.0022856095, -0.019230591, - -0.022796318, -0.01153683, 0.007928356, 0.0020307712, -0.002999437, - -0.021094982, 0.0062704924, -0.0017922128, 0.019103793, -0.005724654, - 0.004899942, -0.01334928, 0.025706625, 0.0059356666, -0.014938166, - -0.0017217288, 0.008716171, -9.836333e-4, -0.015281292, 0.010834268, - 0.01469452, -0.020377724, 0.024236394, -0.008599454, -0.01085721, - 0.02403144, -3.1010582e-4, 0.0056542573, -0.0025377662, -0.009221451, - 0.05027113, -0.0051861717, -0.017714752, 0.0042312886, 0.0042953375, - -0.012089448, -0.0017344945, 0.006073833, 0.010646545, 0.0016718946, - -0.03310653, -0.020620657, -0.0060510244, -0.0052656042, 0.016020024, - -0.015085257, -0.006523178, -0.027008811, -0.008067149, 0.009689438, - 0.019211434, 4.4403615e-4, -0.00524135, 2.3592798e-4, -0.017174797, - 0.014461989, 0.014504034, -0.0034818035, -0.00942425, -0.011641289, - -2.5043334e-4, 0.028270865, -0.021396294, 0.016990213, -0.007698015, - 0.01983467, -0.0065860883, 0.008385683, 0.0051604123, 0.028353198, - -0.014513268, 0.008799758, -0.017552374, -3.5857753e-4, -0.0050278762, - 0.013507826, -8.6415175e-4, 0.0011585625, 0.021369154, 0.0018012946, - 0.007061998, -0.002342485, -0.0048438692, -3.7344164e-4, 0.023148673, - 0.015231351, -8.696811e-4, 0.031956527, 0.013551963, -0.0053236107, - -0.0035951466, 0.0043537174, 0.001418438, 0.0054801214, 0.012040287, - 0.019738287, 0.0068582688, 0.0019730465, -0.021681083, -0.004694415, - 0.0046092663, 0.0052479547, 0.020736132, -0.02095043, 0.02130066, - 0.02346365, 0.027979527, -7.522491e-4, 0.019502282, 0.0015870716, - -0.0055099996, 0.019727591, -0.019858427, -0.020239605, 5.6365517e-4, - -0.018661378, 0.032409653, -0.008187738, -0.0150446035, -0.010843045, - 0.03762888, -0.02268779, -0.012023987, -0.0044334014, 0.0042115874, - -0.0023736577, 0.0052434294, 0.020648144, -0.00494363, 0.012230543, - -0.012644408, 0.025184713, -0.006203183, 0.007973068, 0.011598615, - 0.020833416, -6.3541497e-4, -0.0027482817, -0.0050036134, -0.03296455, - -0.010046912, 0.005439095, -0.011963866, 0.011199035, -0.0015385114, - 0.0067545697, 0.029929088, 0.010790217, 5.478813e-4, 0.002804674, - 0.0065997024, 0.017246801, -0.0130447075, -0.008933402, -0.004770563, - -0.02728998, 0.0053424295, 0.009567788, 0.0015296245, -0.015734361, - 0.013632637, 0.0027402178, 0.010374869, -0.023948029, 0.012490078, - -0.00305797, 0.007759623, -0.012414606, -0.020546677, -0.017911926, - -0.005276949, 0.006332972, -0.001721349, 7.093059e-4, 0.0017832104, - 0.0024536918, 0.0013351954, -0.004276391, -0.0034383833, -0.0034022452, - 0.009100996, 0.018281266, -0.014285881, 0.019010473, 0.016059767, - -0.00922607, 0.0082104225, -0.008261544, 0.005162221, -0.022746509, - -0.002559163, -0.027204905, -0.004999466, 0.0032363802, 0.002359897, - 1.4552416e-5, -0.007990587, 0.011818926, -0.0132014165, -0.002737676, - -0.011635599, -0.007240892, 0.024878131, 0.00353727, -0.012088816, - 0.009197175, -0.010515461, 0.0038987193, 0.003672105, -0.00966322, - -0.0053407745, -0.019569118, 0.005630635, -0.017975494, 0.010854951, - 0.02808341, -0.006831376, -0.008680164, -0.012781913, 0.01419209, - 9.189916e-4, 0.007509304, -0.0020342504, 0.011178161, -0.0029810464, - -0.006049391, -0.028626438, 0.0062378896, 0.01175511, -0.02755297, - -0.022915939, -0.015691234, -0.0051688817, -0.012173621, -0.012340924, - -0.010492037, 0.02855544, 7.374538e-4, 0.0067500584, -0.026221253, - 0.01676008, -0.0071544605, 0.027207484, 0.00791719, 0.0148053765, - 0.018830279, -0.017033672, 0.020511853, 0.034685723, -0.007804872, - -4.1201734e-4, 0.006839712, 0.013504361, 0.00524085, 0.00941312, - -0.0110229775, 0.014173895, -0.013002664, -0.012202366, 0.010524451, - -0.028011667, 0.010422625, 0.038980544, -0.001800581, 0.026433762, - 0.032628622, -0.012566757, 0.010057533, 0.0063434895, 0.01856547, - -0.021347871, -0.0014164397, -0.013934956, 0.018658953, -0.01147503, - -0.0013266064, 0.0077524907, 0.004106812, 0.010434759, -0.009968443, - 0.010008719, -0.011998415, -0.008257408, -0.013426658, 0.017340714, - -0.012764573, -0.026685633, -0.03242073, -0.011135684, -0.0049239104 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.06326594, -0.022197485, 0.024040282, -0.040612303, -0.0076518534, - -0.0058762236, 0.03507644, 0.007247204, -0.009462142, -0.007863924, - 6.9949497e-4, -0.012563622, 4.1296595e-4, -6.797486e-4, 0.0081654675, - -0.04954502, -0.01635169, 0.041806925, -0.0082439715, 0.0016347301, - -0.039134, -0.011100825, 0.014892013, -0.08152857, -0.0060443147, - 0.05241818, -0.011886921, 0.021648685, 0.07453597, -0.0026866647, - -0.040316097, -0.0031812997, -0.0119259665, 0.008814797, 0.020246642, - 0.028482605, 0.011746511, -0.012446463, -0.058837164, -0.048435878, - 0.027491014, 0.04828454, -2.826953e-4, 0.046901267, -0.037850775, - 0.047525723, -0.050147478, 0.042550903, -0.031780902, -0.014790492, - 0.013117255, -0.040009994, 0.068548776, -0.028757, -0.03576793, - -0.014177841, 0.07172096, 0.003919671, -0.021586305, 0.018992733, - -0.02971186, 0.049539022, 0.009865383, 0.0114256665, -0.0017066533, - 0.027261604, -0.014348004, 0.014693115, 0.041104995, -0.01722031, - -0.024405695, -0.007357719, -0.0026108597, -0.008572762, 0.004656264, - -0.030592445, 0.026366623, -0.020196246, -0.066847116, -0.02540626, - -0.039857324, -0.03190109, 0.03411765, -0.031393483, 0.044102237, - 0.023086142, 0.059919856, 0.061787803, -0.048540045, -0.027533367, - -0.034918163, 0.014570186, 0.057796877, 0.015430205, 0.016482726, - 0.040868726, -0.031914335, 0.010926791, -0.013850692, 0.033633996, - -0.033725854, 0.014247136, 0.026975468, -0.052670874, 0.027815836, - -0.02667307, 0.024222646, 0.0051397197, -0.016609099, -0.02661137, - -0.008625547, 0.026225505, 0.026585853, 0.080399476, 0.010307851, - -0.036106177, 0.013167113, -0.011152534, -0.015133503, 0.03536127, - 0.02608107, -6.314988e-4, 0.07385312, -0.025921848, 0.017482413, - 0.029306283, -0.033873066, -0.0127067575, -0.1025916, -0.0063307844, - 0.015836408, 0.038074262, -0.020999057, 0.011265325, 0.029962622, - 0.037379462, -0.053152233, 0.04293697, 0.02075039, -0.053391594, - 0.05343963, 0.021463053, -0.050391305, -0.060290188, 0.033075213, - -0.02492939, -0.0022546242, -0.001620191, -0.015667345, -0.016286194, - -0.0049313926, 0.03571376, 0.026468745, -0.053642116, 0.0021228315, - 0.044125322, 0.07006832, 8.210585e-4, -0.018698014, -0.019541532, - -0.021682123, -0.027179139, -0.008990932, 0.02371989, 0.017708072, - -0.0041932273, -0.0052703926, -0.013110775, 0.0038127059, 0.03345029, - 0.018920423, 0.011319279, -0.060699254, -0.016578237, -0.040741943, - 0.0017156141, -0.020802839, -0.027564766, 0.02392405, 0.039110877, - 0.022612637, 0.041322265, 0.015899327, -0.03897853, 0.033779357, - 0.012799472, -0.005888053, -0.049853835, 0.0053271726, 0.008987824, - -8.412751e-4, -0.034660526, 0.0072157793, -0.031705093, -0.017149827, - -0.041176803, -0.024577748, 0.02076428, -0.04921003, -0.017379858, - 0.012813223, 0.0040950063, 0.00433782, -0.051886726, 0.011251282, - -0.013894239, -0.008571876, 0.06003397, 0.029175375, -0.05026079, - 0.034537047, -0.021304714, -0.07465359, -0.037642792, 0.0030170279, - 0.011690527, 0.022987505, 0.026311135, 0.027553974, -0.023111412, - 0.012753676, 0.024372032, 0.012159313, 0.04662726, -0.015884876, - -0.023371661, 0.011525248, 0.03939651, -0.0142066525, 0.020942198, - 0.040454805, -2.6705762e-4, -0.04812137, -7.911472e-4, -0.0085188495, - 0.03824487, -0.028427737, 0.062294222, -0.02858319, 0.011657596, - -0.005675899, 0.0101578515, 0.026598668, -0.004849709, 0.03437513, - 0.041303135, -0.035678715, 0.042832565, 0.02701396, 0.028499678, - 0.0022998017, 0.007198862, 0.019042192, 0.039566346, 0.0018192793, - -0.030752132, 0.0123431645, -0.039625194, -0.009640027, 0.06640784, - -0.015012826, 0.00590168, 0.02368446, -0.014250598, -0.017405434, - -0.014345215, -0.016780037, -0.006102398, 0.0155130625, -0.027067177, - -0.055708542, 0.045386806, 0.015923537, 0.011517111, 0.0062962375, - 0.0062860195, -0.048755053, -6.095345e-5, 0.02450954, 0.017746313, - -0.038398027, 0.022491356, -0.031096168, -0.11554046, -0.03347508, - -0.014839887, -0.047306508, -0.021796662, -0.03758141, 0.0151772285, - -0.0074383197, -0.009585262, -0.047041945, -0.057639312, 0.029038213, - 0.048111554, -0.022288773, 0.030144926, 0.02506278, -0.012976295, - 0.0073852097, -0.0099351695, 0.018741073, 0.019795852, 0.0065981317, - 0.049175464, -0.016271817, 0.04184478, -0.0012883232, 0.03117237, - -0.048303638, -0.032975074, -0.030182678, -0.03037581, -0.03478955, - 0.055106852, 0.019927485, 0.014029554, -0.015888162, -0.04765211, - 0.022295905, 0.0100554135, -0.048295386, 0.010031586, 0.045119714, - 0.04599818, -0.056292683, -0.058432195, 0.028912833, -0.033070788, - 0.0055098194, -0.052539557, -0.025620025, -0.003213036, 0.033095274, - -0.064752534, 0.017199641, 0.0055638626, 0.06159511, 0.052070305, - -0.022303704, 0.02647967, -0.005079813, -0.021204509, 0.026165273, - 0.016077198, 0.102702886, 0.0017905019, 0.03455658, 0.033190444, - 0.032687858, -0.033529878, -0.015931338, 0.01248706, 0.027678652, - 0.00279772, 8.9196133e-4, -0.0053554587, 0.016799217, -0.057772893, - -0.022057613, 0.025461795, 0.020006655, 0.060400356, 0.039514113, - 0.0036606244, 0.043783683, -0.0040552816, 0.024054205, 3.1046514e-4, - -0.0059916684, -0.027160324, 0.023835061, 0.014625774, -0.0025716072, - 0.010837526, 0.053468063, 0.070175104, 0.03595609, -0.015527374, - 0.018827243, -0.020975363, -0.0010111196, 0.050590638, 0.012278904, - 0.0043856036, 0.0024747234, 0.037644118, -0.010373736, 0.03645805, - 0.03455146, -0.050849825, 0.049116712, 0.003801555, -0.008671828, - -0.04822832, 0.00431215, 0.0071994816, 0.018745895, 0.06300182, - 0.0092407735, -0.07291011, -0.019878007, -0.026845256, -0.006175234, - 0.030337797, 0.008272926, -0.012065395, 0.0060193236, -0.0061669652, - -0.018399922, 0.028322672, -0.013150547, -0.010230272, 0.011018912, - 0.012797488, -0.025105763, 0.008553293, 0.03253847, 0.008626197, - 0.05562086, -0.035170123, -0.009762283, 0.029500203, 0.014377537, - -0.018520137, 0.009720903, 0.0222978, 0.041347936, -0.05022588, - 0.011966839, -0.0077157137, 0.0077244355, -0.047689367, -0.009753226, - 0.007823365, 0.05799431, -0.023288662, -0.050089564, -0.006702631, - 0.021732956, 0.008176585, 0.0027013489, 0.01253102, -0.0713805, - 0.020405762, 0.0077101667, 0.062156487, -0.008262023, -0.01551602, - -0.008381182, -0.032421667, -0.0098034935, 0.04574235, -0.027015954, - 0.0014472862, 0.016674856, -0.028094823, 0.03401027, 0.021379033, - -0.016166843, 0.032516774, -0.00422332, -0.034827486, 0.0021685448, - 0.061386663, 0.031389568, -0.022350928, -0.019793687, -0.05604058, - 0.009452992, 0.013197086, 0.0179213, -0.021745807, -0.0045785187, - -0.01555444, 0.037475944, -0.017003445, -0.0032401616, -0.002594616, - 0.008805475, 0.042647365, 0.005834614, 0.054717183, 0.04045606, - -0.055869557, -0.04210713, -0.020000689, -0.010628451, 0.012808716, - -0.02403431, -0.020750558, 0.032011922, 0.04079491, -0.009628704, - -0.018336788, -0.035784587, -0.006579939, 0.047532838, 0.040223923, - -0.039056037, -0.038496066, 0.008282947, -7.6544425e-4, -0.0051353998, - 0.017662585, 0.027569156, 0.007088654, 0.035945553, 0.036739487, - 0.034768786, -0.039730586, -0.020510247, 0.00943219, 0.011445452, - 0.027749253, 0.013134716, 0.031539597, 0.009699762, 0.049487326, - -0.0030803112, -0.0024706563, -0.021893341, 0.047121085, 0.014874537, - -0.016989363, 0.075153776, 0.0040462497, -0.017974615, 0.008772475, - -0.020793185, 0.03569011, -0.06155949, 0.025832323, 0.060116734, - 0.02016656, -0.0061215744, -0.03089904, -0.0019701642, 0.033067174, - 0.014645774, 0.020307124, 0.066035405, 0.040577292, -5.340094e-4, - -0.031604744, 0.011137111, 0.060816735, 0.0069664815, -0.037594862, - 0.027698558, 0.07832286, -0.021029387, -0.046658263, -0.037547115, - 0.019274767, 0.019011458, 0.010813294, -0.069223806, 0.03861102, - -0.038859155, 0.02609353, -0.027931606, -0.018416865, -0.038303595, - -0.009231113, -0.01635394, 0.010279334, 0.012040909, -0.009583256, - -0.02459152, -0.069972515, 0.0012618463, 0.01336661, 0.057047818, - -0.03497481, -0.023503236, -0.055453096, -0.007612, -0.028683418, - -0.04667011, -0.03926069, 0.006739104, 0.04252585, 0.02641802, - 0.03582294, -0.008787029, -0.008457168, 0.058390748, 0.012896139, - 0.0030569057, -0.012925184, 0.0379132, 0.046649233, -0.03320241, - 0.01171839, 0.010767943, 0.01853091, 0.051242277, -0.0033768418, - 0.0554139, 0.030199666, -0.026182914, 0.0067472556, 0.03453403, - 0.030681737, -0.02964608, 0.02808344, -0.008835439, 0.028536212, - -0.044588104, 0.005424439, 0.033055115, 0.047017287, -0.01495077, - -0.02784492, -0.04349904, -0.022003962, -0.0069212806, 0.009580742, - -0.037186623, -0.033181906, 7.2941335e-4, -0.017448414, 0.01737091, - -0.008015026, 0.052981008, 0.03458595, 0.007205015, -0.02789071, - -0.03761523, -0.05000483, -0.059302974, 0.03839739, -0.014415752, - 0.033363175, 0.011911662, 0.03175041, 0.03539179, 0.0417283, - 0.0132998265, 0.04504328, -0.010332959, -0.018498152, 5.40179e-4, - -0.058825146, -0.006609884, -0.01796207, 0.0026609034, -0.0063759135, - 0.020673854, 0.014862653, 0.004274939, -0.006370277, -0.03796836, - -0.021822212, -0.005094793, -0.026320327, -0.021827588, -0.012337228, - 0.014610741, -0.036749624, -0.013044639, -0.016323095, -0.02791249, - -0.012666859, -0.011802357, -0.022388993, 0.012692289, 0.047536835, - 0.015745321, 0.00828764, 0.0069124103, 0.015213085, 0.015150899, - -0.006753883, 0.0054597557, -0.045420114, 0.012422774, -0.044664614, - 0.007668427, -0.02151958, 0.0016186204, -0.01921053, 0.018622778, - 0.03172456, -0.04223896, 0.02116284, 0.06212294, -0.03480412, - -0.046607055, 0.04844256, 0.04335436, -0.0057306015, 0.047121856, - 0.023546372, -0.028248135, -0.021776268, -0.04568448, -0.053747468, - 0.056055423, 0.030718036, 0.0061928392, -0.016077183, -0.0016519123, - -0.0041124355, -0.0078436555, -0.056338403, -0.024840103, -0.009085636, - -0.016777428, 0.0023856016, 0.03087593, -0.013961235, 0.025003778, - -0.030691175, 0.0013977081, 0.012246453, 0.052564494, -0.022075051, - 0.051464673, -0.04333372, 0.00792795, 0.0092273755, -0.019041903, - -0.01253333, 0.025282618, 0.0016023174, 0.008649096, -0.011339777, - 0.035955407, 0.023907993, -0.05447046, -0.01393918, 0.041422185, - -0.04585446, 0.03583186, 0.0026284356, 0.012319152, 0.04265279, - -0.027257882, -0.011518746, 0.027216649, -0.016661879, 0.025157072, - -0.0072438763, 0.05431332, 0.036899343, 0.010768342, -0.06726054, - 0.013794128, 0.00583195, 0.007620984, 0.012400959, -0.011686666, - 0.019594902, 0.014681464, 0.013509995, -0.01581676, 0.01918608, - 0.045128703, 0.0013406503, -0.046031334, 0.034336377, 0.054616522, - 0.041564826, -0.01430285, 0.0012518504, -0.0106412945, 0.008911816, - -0.063445844, 0.012758724, -0.016516365, -0.0021946186, -0.026951788, - 0.016772198, 0.005023207, 0.056062154, 0.014151587, -0.0088062305, - -0.030156754, 0.013306619, 0.035993055, -0.0076442207, 0.011226919, - 0.005969103, -0.034588568, 0.062269714, -0.010193743, -0.028746385, - -0.052513324, 0.023384476, -0.00142651, -0.011154263, 0.0046473756, - -0.014689924, -0.013831101, -0.013978406, -0.025883878, 0.030340463, - 0.03240792, -0.028427407, -0.014622382, 0.020950612, -0.020190906, - 0.029695543, 0.013850331, 0.034251235, 0.043192703, -4.1229167e-4, - -0.03175082, 0.04511944, -0.012679341, 0.03069358, -0.047002625, - -0.072210126, 0.008292524, 0.020624321, 0.040621307, -0.01169499, - 0.029984953, 0.0067054913, -0.008487456, 8.077344e-4, 0.02790667, - -0.014723745, 0.0046128025, 0.008792712, 0.016197357, 0.0033717037, - -0.004135086, -0.04716395, -0.030982174, -0.013592483, -0.040879674, - 0.0385354, 0.012060192, 0.039532766, -0.010564134, -0.002298246, - 0.001181506, -0.051776398, 0.014378038, 0.005100215, 0.025620012, - -0.033062413, 0.02357828, 0.00824056, 0.013887626, 0.027061965, - 0.01814852, -0.028267475, -0.043316398, 0.010540266, -0.068302296, - 0.0071777827, 0.019716611, 0.0061224173, -0.018816259, -0.035547074, - 0.0054833824, -0.010070503, 0.030876454, -0.0014616426, -0.0047445167, - -0.017889071, -0.039059732, -0.047035053, 0.05322689, -0.031438403, - 0.006157514, -0.051514782, 0.044748757, 0.012775327, -0.0012496676, - 0.0077421563, 0.011658746, -0.0012531688, -0.022312054, 0.03105567, - 0.02924582, -0.033649627, 0.0054916753, -0.0039782175, -0.0036868372, - -0.002740319, 0.05724512, 0.039810378, -0.040594794, -0.03070376, - 0.02051699, -0.020291144, -0.049781654, -0.024695423, 0.042605456, - -0.013282928, 0.0321552, -0.033017594, 0.004367989, 0.051086627, - -0.022538401, -0.04577879, -0.014569074, 0.08051123, -0.02368947, - -0.02182137, -0.011510011, 0.023392655, 0.014706207, 0.025333768, - 0.00386969, -0.021883331, -0.028880289, 0.02699364, 0.024271442, - 0.061700348, 0.0027285973, 0.04974033, -0.015332175, 0.003840139, - -0.058918055, 0.015751971, -0.02689673, 0.011170927, 0.004231747, - 0.019904852, 0.03940581, 0.0019359658, 0.029762235, 0.012248322, - -0.018783616, -0.03831783, 0.012244061, -0.029935673, 0.017976908, - -0.012078085, -0.034639373, 0.08073644, 0.009114611, 0.02927786, - 0.052677967, -0.040144563, 0.023104277, -0.029744424, -0.03901938, - 0.021346355, 0.072371185, -0.021878725, 0.02538233, 0.014595381, - 0.02501325, 0.03683706, 0.011092656, 0.041370034, 0.043577213, - 0.031323444, 0.034554243, -0.048120737, -0.03684849, 0.02189922, - 0.0055413917, 0.0074595893, -0.021824757, -0.02962074, -0.06576219, - 0.05350028, -0.0018415254, 0.0036878884, 0.0026172306, -0.03301519, - 0.058709335, -0.027768265, 0.032782625, -0.030026132, -0.053428505, - -0.021584803, -0.04746954, 0.011537338, 0.010686983, -0.017066063, - 0.022913009, 0.0056930506, -0.0038753035, -0.060277145, 0.05697407, - 0.022233238, 0.023161745, 1.597824e-4, -0.037118055, 0.04407357, - -0.017515188, 0.023794344, 0.0073600784, -0.033593494, -0.04817876, - 0.044947185, -0.028551739, 0.0126376925, 0.021750731, -0.021562217, - -0.040330365, 0.036961906, 0.011440263, 0.010982052, 0.037203494, - -0.051334813, 0.043345608, 0.0034506316, -0.004120633, -0.003306208, - 0.023464037, 0.037828736, 0.021284219, -0.011449048, -0.023478389, - -0.024369717, -0.01811239, 0.07447289, 0.0010555083, -0.03393543, - 0.011724277, -0.014926531, 5.3193203e-6, 0.008255605 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.0015108159, + -0.0033354652, + 0.013147673, + 0.020554272, + 0.0014537335, + 5.8887235E-4, + 0.0049612937, + -0.016947161, + 0.029670646, + -0.03505451, + 0.0074138716, + 0.009936948, + 0.0011490841, + 0.04202543, + 0.0011352669, + 0.010796572, + -0.007651948, + 0.011716416, + -0.008309177, + 0.015752193, + 0.0073449924, + -0.009664258, + 0.030268583, + -0.0024586453, + -0.013850856, + 0.021736542, + 0.021850033, + -0.0053599677, + 0.009696011, + 0.006765546, + 3.0178964E-4, + 0.018399647, + 0.00346647, + -0.012847473, + -0.010302032, + -0.033727936, + 0.01931087, + 0.0095271645, + -0.0125328, + -0.015216993, + 0.009529636, + 0.010604537, + 0.0074981595, + 0.0073094103, + -0.00399472, + -0.03274249, + -0.018829683, + 0.010015186, + 0.0069373855, + -0.010058836, + -0.008175286, + 0.031458188, + 0.0032727064, + -0.0059533673, + -0.023100657, + -0.013826891, + -0.005117389, + 0.010534178, + -0.036683958, + 0.010723373, + -0.033988044, + -0.029365564, + -0.0017197639, + -0.014857854, + -0.0038447394, + -0.0040765195, + 0.008174243, + -0.0027895507, + 0.0033014612, + -0.0068502473, + 0.018181374, + -0.005408652, + 0.0055710906, + -0.0138478195, + -0.007894935, + -0.012547214, + -0.02372835, + 0.012236615, + -0.0032656067, + 0.011286307, + -0.0041565415, + 0.021355355, + -0.01241124, + 0.013622842, + -0.0075724777, + -0.0049055205, + 0.0044317963, + 0.019155089, + 0.012965636, + -0.019102847, + -0.022436028, + -0.0060620676, + 0.010632012, + 0.019500516, + -6.8110577E-4, + -0.011544956, + 0.008103814, + 3.3689992E-6, + 0.0069112717, + 3.5886093E-5, + 0.0013114902, + 0.019332806, + -0.023286112, + 3.1891643E-4, + 0.021937247, + -0.015293835, + -0.015036456, + 0.012336973, + 0.02812835, + -0.008005456, + 0.0045510526, + 0.009221089, + 0.011070286, + 0.019205278, + 0.005283036, + -0.009710537, + -0.0107837245, + 3.6022314E-4, + 0.007191133, + -0.0072829784, + 0.013051398, + -0.011279951, + -0.008817814, + -0.024586976, + 0.02957735, + 0.009715099, + -0.0077212, + 0.019466234, + -0.018677736, + 0.016391026, + 0.0019498112, + 0.013100401, + 0.014250865, + -0.015198504, + 0.0033619725, + -0.0026184965, + 0.0030373775, + 0.005064477, + 0.007880624, + -0.0035944537, + -0.006833919, + 0.028911231, + -0.026869735, + -0.012377553, + 0.0077406284, + -0.0050227903, + -0.019901153, + -0.0019402088, + 0.0068046614, + -9.878048E-4, + 0.009756296, + 0.0276466, + 0.037522294, + -0.00972216, + -0.01771671, + 0.008807641, + -0.014083164, + 0.0074461172, + 6.609839E-4, + -0.03502385, + -0.016423497, + -0.009717636, + 0.008859704, + -0.0073577217, + -0.008547663, + -0.0104153715, + 0.015073845, + -0.005124324, + 0.033165485, + 0.012382642, + 0.013741924, + -0.0055216406, + 0.008033501, + 0.0067588254, + 0.018699633, + -0.01473358, + 0.02003023, + 0.017253168, + 0.013939374, + -0.011528867, + 0.015731357, + -0.038326412, + -0.0031399154, + -0.0066369767, + 0.016117206, + -0.011628218, + -0.007978259, + -0.015135062, + -0.0010994289, + 0.018166462, + -0.01273064, + -0.01381597, + -8.179665E-4, + -0.013725104, + -0.014752892, + -0.010574514, + 0.021236338, + -0.019158084, + 0.015761632, + 6.5144803E-4, + -0.00503175, + 0.0062772133, + 0.014028464, + -0.019077705, + 0.010466579, + -0.005478631, + -0.008710441, + -0.03833215, + 0.014055088, + -0.004156852, + -0.005576315, + 0.005524174, + 0.0017014225, + -0.004495653, + 0.02478621, + 0.02102544, + 0.01796171, + 0.0041065533, + -0.014342309, + 0.006846121, + 0.013830485, + -0.0337599, + -0.0036932845, + -0.016636742, + -4.406114E-4, + -0.0062003513, + 0.010857381, + -0.0020610823, + 0.010776492, + 0.012545895, + -0.018972717, + 0.022501647, + -0.024378464, + -0.023184955, + 0.019145528, + 0.013451987, + -0.01984582, + 0.001293162, + 0.0078300135, + -0.01634228, + 0.0026642443, + 0.011828321, + -0.0100079635, + 0.009832503, + 0.006766694, + -0.017554237, + -0.013752385, + 0.010619372, + 0.024006093, + 0.01759638, + 0.02040833, + -0.021339133, + -0.028274704, + -0.010408293, + -0.009286037, + -0.023393689, + -0.012362483, + -0.018256484, + -0.003519698, + 0.022522109, + 0.028247261, + 0.0014357663, + 0.0032667858, + 0.0019174637, + 0.017484114, + -0.01761957, + -0.020421628, + -6.6719466E-4, + -0.0014445246, + 0.006982188, + 0.018420652, + 0.0025482643, + -0.03764023, + 0.002315711, + 0.005720116, + 0.020604705, + 0.0034903297, + -0.0021698594, + -0.006947586, + -0.0058843177, + 0.016008584, + -0.029246656, + 0.004437692, + 0.011760525, + -0.016989335, + 0.0035191213, + 0.02108125, + -0.025802083, + 0.0023583584, + 0.019494757, + -0.009783548, + 0.028887117, + -0.02004718, + 0.0052953665, + -0.004233237, + -0.014280004, + -0.01907833, + -0.0037788125, + 0.004562856, + -0.00140744, + 0.0033763947, + -3.329207E-4, + -0.007816884, + 0.031829845, + 0.008793924, + 0.02212724, + -0.027610814, + -7.2128326E-4, + -0.0066442206, + -0.0362496, + -2.5696098E-4, + -0.0028863086, + -0.005034211, + -0.0052915253, + 0.0059607364, + 0.016186623, + -0.021340244, + 0.002386826, + 0.012734112, + 6.8525155E-4, + -0.020497747, + 0.0081206, + 0.015452848, + 0.0038249502, + 7.6913525E-4, + -0.020250978, + 0.0031918841, + -0.007538878, + -0.0058526155, + 0.0111286985, + -0.014770157, + 0.013690866, + -0.02425663, + -0.006183415, + -0.009769978, + -0.034774713, + -0.014909931, + -0.008183693, + 0.004779367, + 0.014761027, + -0.021139186, + 2.0683612E-4, + -0.006856371, + -0.023514058, + -0.00369213, + 0.017295845, + 0.004390996, + -4.2902274E-4, + -0.021596378, + 0.0062795626, + 0.004594451, + 0.004967126, + 0.0057413923, + 0.0090193655, + 0.005752499, + -0.017181573, + 0.018683381, + 0.0137517825, + 0.030289747, + 1.4439142E-4, + 0.008689864, + -0.020519536, + -0.0026843399, + -0.012421865, + 0.012411602, + 0.011643776, + 0.015102483, + 0.007798718, + -0.036357496, + 0.00558752, + 0.010567571, + -0.0061845537, + -0.016028736, + -0.015843498, + -3.1922893E-5, + 0.005801634, + -0.022197826, + 0.027007885, + 0.018521959, + -0.017788762, + -0.020187741, + 0.03542435, + 1.6811144E-4, + 0.014710646, + 0.0052105533, + -0.028117836, + 0.01745179, + 0.0054011536, + -0.008581023, + -0.014134378, + -0.0031748468, + -5.8921415E-4, + 0.008349712, + -0.021070184, + -0.00927964, + -0.0027772617, + -0.016148211, + -0.016803073, + 0.021404523, + 0.004688526, + 0.013532514, + -0.003992957, + 0.0045320615, + 0.009318451, + 2.6387483E-4, + 0.023383416, + 0.0035751245, + -0.004233649, + 0.01714384, + -0.012062676, + 0.0011340379, + -0.0143561475, + -0.0152080115, + -0.017285021, + 0.0046365024, + 0.013888024, + 0.011134216, + 0.0025078882, + -0.021277873, + 0.0151206665, + -0.017767813, + 0.00862155, + -0.010084301, + -0.0038060797, + -0.0012300842, + -0.013597918, + -0.015912406, + 0.021000214, + 0.01773481, + 0.0054907235, + 0.015110797, + 0.007817182, + 0.002585879, + 0.0029444878, + 0.031027162, + 0.020707035, + 0.021013409, + -0.003945648, + 0.010461133, + 0.011206964, + -0.02869188, + -0.013110463, + 0.0035126752, + -0.011016673, + 0.0030606485, + 0.016734796, + 0.0016957442, + -0.039270487, + 0.025018465, + -0.007928647, + 0.0044387514, + -5.208518E-4, + 0.0010469904, + -0.0043428866, + 0.0051952815, + 0.0077846823, + 0.0034706015, + -0.009065763, + 0.040508345, + 0.009683235, + -0.024733685, + -0.016008284, + 0.0015581883, + 0.026900116, + 0.002133255, + 0.0011808742, + -0.013230009, + -0.015076938, + 0.011245948, + -0.0070559303, + 6.4222535E-5, + 0.009549864, + -0.0058318055, + 0.009467858, + -0.003065511, + 0.026883451, + -0.025700206, + -0.013727447, + 0.0092876945, + -0.013298171, + 0.020865927, + -0.023193546, + -0.018531583, + 0.020936513, + -0.0069449814, + -0.0018882175, + 0.00944542, + -0.007926723, + 0.0017884955, + 0.001334211, + 0.026138583, + -0.0034510845, + -0.0059347884, + 0.020521168, + -0.023599057, + -0.008756778, + 0.02641571, + 0.012483823, + 0.0018625455, + 0.012844386, + -0.009574914, + -0.013249357, + -0.007477223, + 0.005284481, + -0.0111700585, + 0.0014549874, + 0.012066052, + 0.02356667, + 0.0156745, + 0.010648847, + -0.01622266, + 2.2040978E-4, + -0.0046805795, + 0.012352867, + -0.023897128, + -0.013893971, + 0.0074864523, + 0.0060830046, + -0.0056182346, + 0.01465267, + -0.010705677, + -0.009570716, + 0.009243176, + -0.0052473904, + 0.0011560088, + 0.030891532, + -0.035085548, + 0.009023908, + 0.0010739943, + 0.013979806, + -0.0029403942, + -0.0066625904, + 0.02476363, + -7.3392934E-4, + -0.0034785082, + -0.011885454, + 0.01553905, + 0.012081598, + -0.023105618, + 0.0141593255, + 0.01588867, + 0.013869368, + 0.033220626, + 0.035052154, + 0.022190508, + -0.01831515, + -6.3049316E-4, + 0.015663154, + 0.017674318, + -0.012002036, + 0.006291963, + 0.026791224, + -0.010135159, + 0.009549192, + 0.015203222, + -0.011368331, + 0.025786474, + 0.0031909004, + -1.073783E-4, + 0.022495091, + 0.025215069, + 0.0031284508, + -0.005320747, + -0.011173015, + -0.01366619, + -0.0025137528, + -0.0077336193, + -0.017548278, + 0.0066368645, + 0.008870769, + -9.037872E-5, + -0.015164842, + 0.0062132417, + 0.0046137786, + -0.006142721, + -0.029903695, + -0.02164322, + 0.004612206, + 0.010705619, + 0.0025811256, + 0.018058835, + 0.008917186, + -0.019264024, + -3.0308453E-5, + 0.017403765, + 0.0196863, + 0.013452112, + 0.028587814, + 0.015991485, + 0.017263288, + 0.0018619082, + -0.011130619, + 0.010365291, + 0.0075470814, + 0.011425927, + 0.007858535, + -0.036550067, + 0.001080394, + 0.009344187, + -6.9324643E-4, + -9.5302996E-4, + 0.0013465158, + 0.004376321, + -0.01719819, + -0.019712524, + 0.010031351, + 0.004409311, + -2.785041E-4, + 0.009734883, + 0.013561856, + -0.014318934, + 0.0030657349, + -0.03066807, + 0.008674714, + -0.008791654, + -6.032987E-5, + 0.030972905, + -0.009591545, + -0.010354723, + -0.013608621, + -0.0042529944, + -9.1440696E-4, + 0.007535565, + -0.012579759, + 0.0064359, + -0.0057588094, + -0.006242015, + -0.014375403, + 0.021377536, + -0.00297084, + 0.0024666819, + -0.013431807, + -0.006030019, + -0.011396133, + 0.010403663, + -0.018820474, + -0.020079328, + 0.02039213, + 0.0062481933, + -0.0024580483, + -0.0026799552, + 0.023305468, + 2.593288E-4, + -0.023671383, + 0.008300344, + -0.0064036944, + 0.016401628, + -0.0044622985, + 0.008062342, + 0.017161854, + 0.021012707, + 0.009918561, + 7.742652E-4, + 0.006094306, + 0.013636567, + -0.025043456, + 0.02415444, + -0.003197986, + -0.029658087, + -0.0139702745, + 0.011511173, + -0.014937499, + -0.0098620225, + -0.018786548, + -0.013561071, + -0.01188378, + -0.007242897, + 0.0061993143, + 0.009003149, + 0.024991132, + 0.005394686, + 0.03856843, + 0.0015382173, + 0.023598868, + -0.006805408, + -0.0029384585, + -0.048956554, + -0.00422982, + 0.00636884, + -0.007609037, + -0.0059112655, + -0.014461123, + 0.0038251146, + -0.011432944, + -0.02498517, + -0.022145674, + -0.008077924, + -0.012294065, + 0.017522765, + 0.015935076, + 0.008555329, + 0.013088359, + 0.004922395, + 0.0030086657, + -0.011197057, + 0.011849612, + -0.008298245, + 0.003864238, + -0.005126497, + 0.015424553, + -0.0075989747, + -0.016153831, + 0.008141078, + -0.023283385, + -7.011121E-4, + -0.015968053, + -0.019832673, + 0.0022502367, + 0.013421175, + 7.256214E-4, + -3.155876E-4, + 0.007201327, + -0.050339334, + -0.024377866, + -0.014508485, + -0.020317541, + -0.01439251, + -0.0034842454, + 0.0038368702, + -0.018816946, + 0.016187206, + -0.017576568, + 0.0249109, + 0.0059023146, + -0.010554893, + 0.008728131, + 0.018187655, + -0.022733849, + -0.020650705, + -0.0024896595, + 3.8052167E-4, + -0.016914291, + 0.008839297, + 0.01019734, + 0.0033056175, + -0.02242045, + 0.009541654, + -0.014353955, + -0.020615647, + 0.008885275, + -0.014638143, + 0.025532136, + -0.021786392, + 0.011961073, + -0.0073293885, + 0.022555687, + 0.015484685, + -0.014414934, + 0.0017117979, + -8.198826E-4, + -0.0073331585, + -0.022041416, + -0.009144943, + -0.0061079725, + -0.013575998, + -0.0016681531, + -0.008937074, + -0.0062501356, + -8.4829994E-4, + -0.011720098, + -0.02053181, + -0.004682261, + 0.021259569, + 0.015474842, + -3.6309022E-4, + 0.0033619327, + 0.00537136, + 0.015221477, + -0.0074876063, + 0.005196722, + -0.009885446, + 0.017880566, + 0.007889416, + -5.872526E-4, + 0.049307592, + -0.014914645, + 0.016588153, + -0.011639404, + 0.03337794, + 0.0011008311, + 0.028937396, + -0.0022468301, + 2.3853812E-4, + -0.036742438, + 7.2349864E-4, + 0.014019805, + 0.0013049747, + 2.8014136E-4, + 0.020005211, + -0.032021493, + 0.005060743, + -0.01950996, + 0.013460227, + -0.0101586245, + -0.0058718347, + 0.019063395, + 0.0011518712, + -0.0012465756, + 0.012180356, + -0.0077369157, + 3.4955135E-4, + -0.010253702, + 0.012198795, + 0.0049207737, + -0.004045485, + -0.0035273142, + 0.026403522, + -0.009048121, + -0.017480632, + 0.0015717471, + -0.008056277, + 6.668927E-5, + 1.282128E-4, + 0.021544475, + -0.025956402, + -0.005416293, + -4.0457986E-4, + -0.011878389, + -0.0019675195, + -0.016697701, + 0.032097273, + 0.025303995, + -0.013257276, + 0.01371289, + -0.012157913, + -0.0013982368, + -0.02496263, + -0.025423093, + -0.019634487, + -0.0030239085, + 0.007779637, + 0.004950476, + -0.013080314, + -0.0069881133, + 0.017408658, + 0.024376146, + -0.008378546, + -0.001293808, + 0.014254442, + 0.0012959616, + -0.011156142, + 0.013908441, + 0.01869208, + 0.01163511, + 0.017708875, + -0.0082414895, + 0.016606566, + -0.012497212, + 0.0012591446, + 0.019953908, + -0.010752, + -0.0020950506, + 0.006773122, + 0.016744932, + 0.01910648, + 0.004900208, + -0.003958978, + -0.0043044197, + 0.013689832, + -8.356951E-4, + 0.044120304, + 9.49969E-4, + 0.010096378, + -0.01929067, + 0.01948019, + -0.018028263, + 0.018302884, + -7.844879E-4, + -0.0039726184, + 0.008192702, + -0.0065482734, + 0.025365815, + 0.021198003, + 0.019317748, + 0.015301393, + -0.020346632, + 0.0061434177, + 0.0045778146, + -0.0061558913, + 0.019749027, + 0.009441098, + -0.003405877, + -0.010376575, + -0.008472999, + -0.009422534, + -0.017228547, + 0.003579168, + -0.003202507, + -0.012372683, + 0.015240778, + 0.035512578, + -0.022618605, + -0.024323951, + -0.03848083, + 0.038586587, + -0.011595042, + -0.029153286, + -0.01669664, + 0.024468256, + -0.017725645, + -0.007727415, + -0.022294879, + 0.013487548, + 0.021719204, + -0.026113056, + 0.008915435, + -0.004198196, + 0.018673584, + -0.01611524, + 0.018746128, + 0.034690287, + -0.0019243667, + -0.012231848, + -0.0036707441, + -0.023928681, + 0.0049199546, + 0.008951466, + -0.027069854, + 0.029226266, + -0.008413577, + 0.023193143, + -0.017998543, + -6.9429964E-4, + 0.014345415, + 0.005126743, + -0.0059690326, + 0.012057871, + 0.029012904, + -0.025186194, + -0.010575865, + -0.00904289, + 0.009642982, + 0.0068493234, + -0.009448187, + -0.0013586323, + 0.017568985, + -0.014600075, + 0.009579847, + -0.030169357, + -0.0012789301, + 0.026335066, + 0.0021527137, + -0.010643303, + -0.022254864, + -0.049261406, + -0.008423701, + 0.04094939, + 0.0103478525, + -0.014544178, + 0.024813399, + -0.01219153, + 0.01211456, + -0.012524219, + -0.025514653, + 0.038035348, + -0.005958147, + 0.020803936, + 0.013177071, + -0.015035737, + 0.014206718, + -0.0123502035, + -3.063703E-4, + 0.010480202, + -0.0032351664, + -0.016525654, + -0.027925996, + 0.007549001, + -0.0060684434, + 0.017649917, + -0.012501627, + -1.7788645E-4, + 0.0011063459, + -7.975608E-4, + -0.0053236214, + -0.007894808, + -0.010676271, + 0.036698885, + 0.018162245, + -0.013603258, + -0.018915823, + -8.387591E-4, + -0.005963082, + 0.019164773, + -0.0027174077, + 0.0016610293, + 0.020647286, + 0.0044719684, + 0.017405909, + 0.03400351, + 0.008027573, + 0.017880796, + 0.005449205, + -0.015678186, + -0.039027303, + 0.01434717, + 8.429922E-5, + -0.010797026, + 0.010100353, + -0.015952056, + -0.015668467, + -0.0060196244, + 0.0061294837, + 0.018822754, + 0.001670107, + -0.013834527, + 0.006939566, + 0.0220752, + 0.01952097, + 0.023112688, + 0.010774089, + -0.00898133, + -0.0030634443, + 0.013447913, + -0.031954233, + -0.0107592195, + -0.0037904293, + -0.034747984, + -0.0041723656, + -0.004908179, + 0.0014007778, + -0.009570912, + 0.010127132, + -0.0179086, + -0.026153073, + 0.021119589, + -0.013538782, + 0.004576126, + -0.0072385147, + 0.037018333, + 0.013283296, + -0.014514894, + 0.03310639, + -0.0169381, + -0.01178687, + 0.015310019, + 0.011813069, + -0.014935786, + -0.028363386, + -0.011121186, + -0.02340124, + -0.0032083383, + 0.0014673116, + -0.017656107, + -0.02313566, + -0.023627056, + 0.0048797326, + -0.009350718, + -0.021103233, + 0.0055978782, + 0.020659167, + -0.008658781, + 0.0025897627, + 2.1442E-4, + 0.012690224, + -0.0021511102, + -0.016668033, + 0.007809633, + 0.0040473486, + -0.0065305815, + 0.024612946, + -0.024266796, + -0.0075550447, + -0.0059659593, + -0.0037759128, + 0.002545295, + -0.013058504, + 0.016039532, + -0.0016601173, + 0.0089695435, + 0.012696541, + 0.0015854177, + 0.015063025, + -8.554035E-4, + 0.014489438, + -0.013181819, + -0.02284932, + 0.0070237652, + 0.02562605, + 0.007869462, + 0.0030098883, + -0.008557019, + -0.00575541, + -0.010045879, + -0.013141533, + 0.012751317, + 0.008285721, + -0.013205703, + -0.0049076155, + 0.008988334, + -0.008284894, + -0.01712368, + -0.002882391, + -0.008639296, + 0.012632848, + -0.03649737, + -0.013436461, + 0.008054688, + 0.0036465616, + -0.002133891, + 7.4715423E-4, + 0.010118318, + -6.144493E-4, + 0.012884628, + -0.016143648, + 0.011617601, + -0.016270237, + 0.012919247, + -0.008685322, + 0.01100905, + 0.018771216, + 0.015601282, + 0.012005242, + -0.013135825, + 0.0055807033, + 0.01358556, + 0.021307684, + -0.009961121, + -0.0017817304, + 0.011195992, + 0.005389062, + 0.009817336, + 0.0069746254, + 0.01734099, + 0.0046467152, + 0.010710898, + 0.013695935, + -0.0071426067, + 0.0061260713, + -0.028997518, + -0.01537513, + -0.018097082, + 0.002685365, + -0.0151808625, + 0.012144224, + 0.017861698, + -0.010627647, + 0.027713247, + 0.015485142, + -0.010023054, + 0.0061810156, + -0.005208744, + -9.19443E-4, + -2.72565E-4, + 0.012921016, + 0.0046214, + 0.0033185782, + -0.007787691, + 0.023679463, + -0.0034009481, + -0.01958879, + 0.01168439, + -0.003868174, + -0.019885916, + -0.013515967, + -0.01785359, + -0.032166183, + 0.01208908, + -0.01925619, + 0.0028767511, + -0.008636296, + -0.0048436555, + -0.0063183415, + -0.0041374755, + -0.0025181961, + 0.009634614, + 0.011444107, + 0.0053033005, + 0.013172374, + 0.0025782085, + -0.031844392, + 0.013063173, + -0.0279889, + -0.0029212318, + 0.0054727085, + 0.008943738, + 0.006463715, + -0.008682809, + -0.025004461, + 0.0049068434, + 0.005558893, + -0.003739221, + 9.436082E-4, + 0.009335001, + -0.020696642, + -0.01974885, + 0.01565108, + 0.0014090446, + 0.030496262, + -0.003784594, + 0.007927163, + 7.057378E-4, + 0.012269893, + -0.005344549, + 0.0050705844, + 0.010866618, + 0.01381374, + 0.0048142616, + -0.021718679, + -0.010762711, + -0.013488749, + -0.004772259, + 0.0012011871, + -0.012482693, + 0.0020326641, + 0.025098143, + -0.012684693, + 0.0036060384, + 0.019407878, + 0.0014882693, + 0.012147998, + 0.026781745, + 0.007815896, + -0.019017978, + -0.0060023023, + 0.0044037285, + -0.04414588, + -0.021337805, + -1.8235158E-4, + -0.008137234, + -0.0140385805, + -0.009540277, + -0.0039870897, + 5.117196E-4, + -0.023672607, + 0.0016320812, + -0.023718582, + -0.007633091, + 0.003039514, + -0.020380123, + -0.006500639, + 0.023648744, + -2.7002726E-4, + 0.003073775, + 0.02610675, + 0.021125227, + 0.002026339, + 0.0053416104, + -0.015954621, + 0.04139252, + 8.9745596E-4, + -8.1289874E-4, + -0.004370342, + 0.0070607634, + 0.0030679093, + -0.01490611, + 0.0068021426, + 0.011125361, + -0.022654705, + 0.011970962, + 0.0018609132, + 0.010937338, + 0.011225152, + -0.01585212, + -0.010059396, + 6.455481E-4, + -0.006934474, + -0.0019879367, + 0.012239414, + -0.007912257, + -0.017765164, + 0.005394083, + 0.01982545, + 0.012172598, + -0.018550383, + -0.00654335, + 0.0066377237, + 0.017907716, + -0.037596684, + 6.9339667E-4, + -0.020981321, + 0.022308307, + -0.008367255, + -0.0037996836, + -0.00402317, + -0.0067584952, + 0.03440415, + -0.020924082, + -0.007981054, + -0.0027423692, + -0.007731267, + -0.0070608463, + 0.022970868, + 0.01630078, + -0.011290509, + -0.0089911595, + 0.0073624332, + 0.006899744, + -0.020558225, + 0.011634167, + 0.016903125, + -0.017091835, + 0.013763558, + -0.0148366615, + 0.011409228, + -0.0034145012, + 0.027365081, + -0.020393347, + 0.017665565, + -0.0064882506, + -0.021746254, + 0.026003137, + 0.0054939752, + -0.02078488, + -0.0070136236, + 0.04428444, + 0.002063731, + 0.0049121114, + -0.020656852, + -0.017490776, + -0.0015398551, + -0.012141194, + -0.019027125, + 0.0077544283, + -0.031399388, + -0.022258742, + 0.011263237, + 1.4028026E-4, + 0.01758843, + -0.026430778, + 0.007399116, + -0.012490388, + -0.027656574, + 0.014337063, + 0.030570393, + -0.01673707, + 0.02147626, + 0.0016820299, + 0.0060670604, + 0.0052197697, + 0.011809952, + 0.0059769144, + 0.010987206, + -0.025426023, + -0.0065213996, + -0.0027891423, + -0.011556974, + 0.01878064, + -0.014044656, + -0.0099767195, + -0.026943453, + -4.036232E-4, + 0.045153003, + -0.0104178, + -0.0027971354, + 0.012928761, + -0.019273033, + -0.0060409685, + -0.014090971, + -0.027101748, + -0.005012682, + -0.02643668, + -4.0080489E-4, + -0.021682233, + -0.021469336, + -0.0035637505, + -0.011035156, + 0.025313357, + 0.012392982, + -0.019753141, + 0.007396027, + 0.019837132, + -0.0025692522, + 0.010322292, + -0.011564668, + 0.027674891, + 0.03735678, + -0.01811773, + 0.017511053, + 0.0023210095, + -0.020964647, + -0.0014709882, + 0.0066700266, + 0.0052680178, + 0.027845941, + 0.0052662063, + 0.04455409, + -0.004646753, + -0.0015784339, + 0.008515933, + 0.027701681, + 0.015383661, + -0.032945264, + 0.0020838417, + 0.012322267, + 0.0046499064, + 0.010968239, + 0.024663284, + -0.011559507, + -0.010282447, + 0.0123029705, + 0.0120381545, + 0.019018847, + -0.0015750865, + 0.006814685, + -0.011477658, + -0.0070951097, + -0.002582433, + 0.018225918, + -0.007998101, + 2.9496243E-6, + 0.004668546, + -0.010006628, + 0.0032233135, + -0.020781703, + 0.014524564, + -0.020299532, + 5.500625E-4, + -0.014711339, + 0.023240237, + -0.0033903208, + 0.014013613, + 0.009952189, + 0.01567433, + -0.006008127, + 2.89398E-4, + -0.026595974, + -0.0031310471, + 0.0046384726, + 0.0033375314, + -0.0033737621, + -0.020381028, + 0.0022739752, + -0.008973243, + 0.010992617, + 0.018586343, + 0.005185802, + 0.0035931591, + -0.018910037, + -0.01397009, + -0.0056550778, + -0.012890802, + -0.014667341, + 0.0034621938, + 0.0032874902, + -0.018275118, + 0.008286144, + -0.003100339, + 0.0014496808, + 0.025411917, + -0.0087842485, + 0.033746827, + -0.017600164, + 0.037504856, + -0.023798617, + -0.007262419, + 0.022217019, + -0.0021286644, + -0.03729591, + -0.049372703, + -0.008566598, + 0.0110996, + -0.0051664454, + -0.025524177, + -0.0054418705, + 0.0017735402, + 0.015684633, + -0.013675269, + 0.0041382527, + -0.019305939, + -0.005395212, + -0.013693847, + 0.002498077, + 0.0036899764, + -0.006385341, + -0.011438522, + 0.01851037, + 0.011535229, + -0.0050460203, + 0.015121166, + -0.0082545495, + 4.798976E-4, + -0.003420573, + -0.02463315, + 0.013453994, + 0.0076493123, + -0.012415757, + 0.0039298013, + 0.0062097125, + -0.022782562, + 0.014458157, + -0.026643718, + 0.003730391, + 0.010112853, + -0.01210765, + -0.010918669, + -0.0011065366, + 0.006567261, + 0.0038721857, + 0.013725293, + 0.013462354, + -0.011878149, + 0.0045561055, + 0.015469798, + 0.0033436564, + 0.0036642272, + -0.024837576, + -0.0046764524, + 0.008028085, + -0.003938867, + -0.033103697, + -0.00710981, + 0.004072097, + -1.2931741E-4, + 0.012434617, + -0.0012728614, + -0.009546695, + 0.011336716, + -0.006045977, + -0.009950483, + 0.006093638, + -0.0145305535, + -0.022218864, + 1.3575674E-4, + 0.0010003992, + -0.014557588, + -0.019903162, + 0.026513245, + -3.5284972E-4, + 0.0023814067, + 1.6105708E-4, + 0.009271745, + 0.0127990665, + -0.018586291, + 0.026254008, + 0.008385646, + -0.0033431666, + 0.0025213342, + -0.016284434, + -0.02501128, + -0.052201875, + -0.0037435298, + 0.032772887, + 0.02228698, + 0.008491565, + 0.020747796, + -0.0042535546, + -0.008796441, + -0.001756438, + 0.0018317895, + -1.1878814E-4, + 0.011889067, + 0.014797375, + -0.010211778, + 0.011967477, + -0.00934366, + -0.0025569226, + 3.2528653E-4, + 0.0017373974, + 0.01878991, + -0.013478838, + 0.0018432862, + 0.0045983028, + -0.022671234, + 0.007872078, + 9.4068906E-4, + -0.02024962, + 0.027406044, + 0.028750772, + -0.005820327, + -0.0030908706, + 0.0028987518, + -0.004571227, + -0.02318568, + -0.0021476368, + -0.010706965, + -3.5306803E-4, + -0.010735231, + 0.007522933, + 0.018921148, + -0.02048404, + -0.020300899, + -0.0070601357, + 0.030025948, + -0.0018472078, + 0.019799594, + 0.028968113, + 0.006567368, + 0.010055224, + -0.004736221, + -0.011263188, + 0.0051193973, + 0.009446097, + 0.012805178, + -0.015880525, + 0.0168512, + 0.01679169, + 0.005338449, + 0.0031014187, + 0.0021490732, + 0.013535239, + -0.0068706046, + 0.0134289935, + 0.022895655, + 0.013923436, + -0.021856919, + 7.346096E-4, + -0.022294093, + 0.020117924, + -0.009604121, + -0.01464856, + 0.014143771, + -0.012450161, + 0.0132819945, + 0.004995201, + -0.0018109635, + 0.016427943, + 0.017342392, + 0.013304298, + -0.009984735, + 0.03265839, + -0.0041195564, + 0.002241699, + 0.019587884, + 0.006091002, + -0.0032628556, + 0.0183078, + 0.00763813, + -0.014098113, + -0.014975814, + 0.0069520357, + -0.016914006, + 0.01571037, + 0.0058164075, + -0.0067517655, + 0.009466674, + -0.013773456, + 0.04629124, + -0.018844754, + 0.002255266, + 7.7732344E-5, + 5.9672934E-4, + 0.007819633, + 0.0050904, + -0.023372997, + -0.0013118569, + 0.015646612, + -0.021525024, + 0.012419935, + 0.018642087, + -0.0072461213, + -0.0057266466, + 0.022033686, + -0.007442254, + 0.025810458, + -0.008389487, + 0.00977649, + 0.013301671, + -0.009249815, + 0.029424675, + -0.0021439428, + 0.04909888, + -0.024307493, + -0.011768347, + -3.8404937E-4, + 0.013992734, + 0.025342034, + 0.039719023, + 0.010708129, + 0.0038904569, + 0.033332456, + -0.034011945, + 0.024269106, + 0.027627045, + 0.024067594, + -0.007522337, + 0.01466005, + 0.009219395, + 0.0027273344, + -0.0074316375, + -0.011838038, + 0.017309476, + 0.0024999403, + -0.008744963, + -0.007651637, + 0.024062425, + -0.0076306853, + -0.032153007, + 4.9711764E-4, + -0.007606727, + 0.0138364425, + 0.015903005, + 0.03339442, + 0.011062761, + 0.004225048, + 0.0035254906, + 0.009775332, + -0.018399738, + -0.005119144, + -0.010984347, + 3.1708472E-4, + 0.01243727, + 0.0076096384, + -0.017056013, + -0.0014117185, + 0.0038301484, + 0.004474541, + 0.008516628, + -0.029599115, + 0.007120828, + -0.019486459, + -0.010586504, + -0.0048695565, + 0.024056736, + 0.0035909, + -0.017614994, + 0.023020387, + 0.017037982, + 0.022009894, + -0.004364155, + -9.537114E-4, + 0.003966157, + -0.008485756, + -0.002462177, + -0.0036641133, + -0.002481804, + -0.020390566, + -0.026502414, + -0.0042644134, + -0.007897963, + 0.022417981, + -0.013947925, + 0.006508897, + 0.008861797, + 0.00459179, + 0.010171819, + 0.0070619863, + 0.022248222, + -0.018365843, + -0.02130914, + -0.022125917, + 0.016442453, + -0.021678219, + 0.0022047195, + -0.007274763, + 0.018214025, + -0.021564078, + 0.004892139, + -0.030381454, + 0.0046791728, + -0.005081513, + -0.0010744684, + -0.004354638, + -0.007970291, + 0.0037611537, + -7.923918E-5, + 0.034624312, + -0.012551926, + -0.0063476493, + 0.0085323, + -0.0077663, + 0.008369727, + 0.003989719, + -0.016609384, + 0.015734456, + 0.012801453, + -0.029281454, + -5.725745E-4, + 0.012482177, + 0.04986504, + -0.017749587, + -0.027627375, + -0.023545548, + -0.020120574, + 0.0255936, + -0.020318223, + 0.017269587, + -0.024215901, + -0.016258022, + -0.012949419, + -0.0064873747, + 0.008501319, + -0.03985775, + -0.0069729243, + -0.05625294, + -0.014250561, + 0.011649881, + -0.007974793, + -0.03127506, + 0.0054302574, + -0.012010153, + 0.027271455, + -0.001488327, + 0.014761892, + -2.9574125E-4, + -0.014022417, + 0.009009554, + 0.013599128, + -0.019315565, + -0.002918662, + -0.00469765, + 0.039501064, + -0.0010714318, + -0.0062089753, + 0.0075234654, + -0.006813334, + 0.013351968, + -0.017068172, + -0.007120584, + -6.6843996E-4, + 0.031575292, + 0.0068573817, + -0.0012318313, + -0.00195453, + -0.004541264, + -0.018908571, + 0.014477071, + 0.01591307, + -0.009251789, + -0.0026220188, + 0.010774037, + -0.005696015, + -0.009494003, + -0.019674286, + 0.039622154, + 9.1681565E-4, + -0.0054002423, + 0.017460475, + -0.006539963, + 6.595584E-4, + -0.009855672, + -0.0022314135, + -0.006958808, + 0.0041070003, + 0.005878933, + 0.007642695, + -0.04376859, + -0.018995255, + 0.013695853, + -0.012632862, + 0.0011983992, + 0.005119204, + 0.008803764, + 0.018403437, + 0.014431777, + -0.012018902, + 0.008552792, + 0.0045237276, + -0.035784308, + -0.0032405057, + 0.011370836, + 0.002724406, + -0.034297455, + -0.017566241, + -0.022660604, + -5.00842E-4, + -0.0024297964, + 0.014091297, + -0.031022629, + 0.0037496637, + -0.019084686, + 0.0024316858, + 0.017608324, + -6.5080225E-5, + -0.01669343, + 0.0039480194, + -0.0051624603, + 0.013258095, + -0.027434597, + -0.024627594, + -0.016223565, + -0.0145953065, + -2.0765787E-4, + -0.03732331, + 0.009940431, + -0.034092553, + 0.0057672327, + -0.027139502, + -0.0041860053, + -0.0060831816, + 0.011992222, + 0.005060017, + 0.02344467, + -0.0091866385, + 0.027306516, + -0.009017339, + 0.018717958, + 0.011737612, + 0.012372317, + -0.012335761, + 0.0077146986, + 0.029080281, + -0.008566335, + -0.0078763515, + 0.003804446, + -0.012442603, + 0.017779367, + -0.013812691, + 0.004659595, + 0.010730343, + -0.022868909, + 0.0019983703, + 0.008492033, + 6.811715E-4, + 0.019512793, + 0.0014719749, + 0.006049781, + 0.0032072107, + -0.017172039, + 0.008637082, + -0.007959778, + 0.002936751, + 0.029246, + 0.005478948, + -0.013835004, + -0.005837521, + 0.008856218, + -0.021141667, + 0.0032055425, + -0.0013266449, + -0.0015734845, + -0.008986334, + 0.0020983536, + 0.026047, + 0.024755862, + -0.0015671337, + -0.0051393607, + -0.03233235, + 2.0279708E-4, + -0.004781261, + 0.012516913, + -0.007295022, + -0.027107181, + -0.014562589, + 0.0018803593, + -0.019973578, + 0.008463323, + -0.023874402, + -0.0035543055, + 0.025615685, + -0.0044610812, + 0.024413396, + -0.012051924, + 0.009848612, + -0.0011057991, + -0.018681046, + 0.002216156, + 0.00636385, + -0.017672451, + 0.012297565, + 0.0010946398, + -0.0022201117, + 0.004915359, + 0.0069635124, + -0.011999469, + -0.027335387, + 7.45045E-4, + 0.011033946, + -0.0012711408, + -0.041937146, + 0.025119197, + -0.0047030975, + -7.063052E-4, + -0.00914414, + -0.0035521358, + -0.0028683248, + -0.01487433, + 0.01150395, + 1.9320479E-4, + -0.00788422, + 0.023846569, + 0.024537627, + -0.0027847562, + 0.013922861, + -0.016948925, + 0.022170557, + 0.035861336, + -0.010128113, + -0.001027241, + -0.01767584, + 0.0076819267, + -0.009786215, + -0.021167278, + 0.03141733, + 0.0015580497, + -0.007843525, + 0.02105671, + -0.006263903, + 0.008596431, + -0.0039076726, + 0.017917348, + -0.02843126, + -0.014183563, + -0.008930756, + 0.013749994, + 0.0036807782, + -0.0075785667, + -0.0012630513, + -0.005053556, + 0.0059509263, + 0.032828312, + -0.010015281, + -0.022341816, + -0.005209421, + -0.019295283, + 0.007694414, + -0.010585348, + -0.0088780215, + -0.0010222158, + 0.00974124, + 0.04093591, + -0.0076114135, + -0.01686821, + 0.012824374, + -5.930956E-4, + 0.0047399527, + -0.0075355605, + 0.00782307, + 0.0015963966, + 0.0067017027, + -0.013979587, + -0.0026633595, + -0.014192833, + 0.0011529103, + 0.0020766265, + -0.002023215, + -0.022404687, + 6.5323786E-4, + 0.0060785464, + -0.022220429, + -0.018265516, + 0.0067185475, + -0.010961916, + -0.015741538, + -0.013930776, + -0.001704939, + -0.0105637405, + -0.0019149032, + -0.006745645, + -0.0055202483, + 0.0029973786, + 0.012145968, + -0.0118121095, + 0.0010999119, + -0.0036368072, + 0.003956659, + 0.002772836, + -0.014430172, + -0.016652128, + -0.019271761, + -0.029855203, + 0.008306674, + 0.0053269076, + 0.0010501776, + 0.023353007, + -0.015793905, + -0.008978518, + -0.009954616, + -4.0624267E-4, + -0.004309887, + 0.0097450325, + -0.003828793, + -0.016439725, + -0.02206781, + -0.0019368402, + 0.012617396, + -0.0035814738, + -0.010114915, + 0.008683921, + -0.012664662, + -0.0021500199, + -0.01758628, + -0.011243731, + -0.0047734873, + -0.0017028798, + 0.0050254255, + 0.009086983, + -0.003246754, + -0.0029717137, + 0.0012095654, + 0.00372025, + 0.0029019732, + 0.03408813, + 0.010745501, + -0.02966704, + -1.735968E-4, + -0.006264676, + -0.0035701243, + 0.035858538, + 0.01474197, + -0.010730363, + 0.017683748, + -0.0023490372, + 0.010602911, + 0.0038825895, + 0.00577713, + 0.003474384, + -0.012204498, + -0.03702907, + 0.006518277, + -0.02649326, + 0.006254742, + -0.008077263, + 0.009354744, + -0.0066302684, + 0.0061390465, + -0.017445147, + 0.004725163, + -0.01659429, + 0.0124429, + -0.0032947087, + -0.015695162, + 0.008888526, + -0.007217116, + -0.0042842883, + -0.0103986785, + 0.02313442, + -2.1175633E-4, + -0.0054495987, + -0.017630378, + -0.016355652, + -0.01885112, + -0.017040921, + -0.008785031, + -0.013195653, + 0.017331522, + 0.01692831, + 0.015054469, + 0.017712977, + 0.02264995, + 0.009105421, + -0.025635399, + 0.0015327593, + 0.009635725, + 0.009468263, + 0.0023995473, + 0.0032249822, + 0.008968474, + 0.012938116, + 0.0019961328, + 0.010581594, + 0.013880669, + -0.005919885, + -0.019344622, + -0.022080282, + -0.019384915, + -0.0026809545, + -0.008161456, + -0.039484918, + -0.0025455698, + -0.013637971, + 0.010608919, + -0.008262995, + -0.004226799, + 0.006353813, + -0.0059142243, + -0.0058345683, + 0.030223405, + -0.018293351, + -0.015285827, + -0.01291113, + 0.002570557, + -0.009601415, + -0.013402932, + -0.018103624, + -0.011461738, + -0.004991769, + 0.0022990904, + 0.002476378, + 0.0085796565, + 0.005952586, + -9.0554956E-4, + 0.0053974204, + 0.011034707, + 0.002938219, + 0.002590405, + 0.0053887106, + 0.004298463, + -0.01120455, + 0.017922416, + -0.018564267, + -4.2064843E-5, + 0.014223939, + -0.0025604374, + -0.010592421, + 0.021633407, + 0.0035597559, + -0.005061439, + 4.885321E-4, + -0.009311353, + 9.814441E-4, + -0.002441214, + -0.011742593, + 0.012619849, + 0.0061816084, + 9.937626E-4, + 1.7204726E-5, + -0.014206576, + 0.0037232027, + 0.011673512, + 0.008993225, + -0.0033444501, + -0.012011973, + -0.025585866, + 0.0067479545, + -0.0018580654, + -0.00706144, + 0.019037293, + 3.2233997E-4, + -0.012125061, + -0.0037921006, + -0.02010836, + -0.013105108, + -0.0076422202, + 0.009928281, + -0.009297874, + 0.0028235423, + -0.024607617, + -0.015689412, + -0.02061439, + 0.0054393485, + 0.0052483343, + 0.042988315, + 0.002167743, + -0.016381184, + -0.047967132, + -0.012540339, + -0.014807051, + 0.029507237, + -0.0072902096, + -0.01498205, + 0.019145621, + -0.004965921, + 0.005454377, + 0.0070313327, + -0.009949273, + 0.0034595851, + -0.0055371365, + 0.003939133, + 0.008325099, + -6.3242775E-4, + 0.014109928, + -2.3833248E-4, + 0.0057975086, + 0.018087326, + -0.014252816, + -0.0079273395, + 0.010298482, + 0.0041085794, + 8.4882614E-4, + 0.021272069, + -0.0059429505, + 2.4716303E-4, + 0.0040399074, + 0.016208043, + 0.0074201156, + -0.024135958, + 0.0037811848, + 0.006180696, + -0.028803308, + 0.0029410585, + 0.033530813, + 0.009405263, + 0.003656361, + -0.015897062, + 0.013999692, + 0.0067364024, + -0.021700738, + 0.012740082, + 0.005616743, + 0.014726482, + -0.022311619, + 0.0049913316, + -0.02007856, + -0.008164834, + 4.9169245E-4, + -0.0065478105, + 0.019891087, + -0.018297495, + -0.014588496, + -0.020840446, + 0.011524362, + 0.02179405, + -0.020216607, + -0.001457088, + -0.0042017843, + -0.01192534, + -0.0011364738, + 0.0049568494, + 0.0064037153, + 0.010715827, + -0.009061411, + -0.008216301, + -0.035639606, + 0.018090745, + -0.02699087, + 0.014381349, + -0.0253176, + -0.004152426, + 0.020550981, + -0.020032845, + -0.029295325, + -0.013999894, + 0.009073734, + 0.006901611, + 0.0010164663, + 0.012894872, + 0.021011807, + -0.007342696, + -2.1714008E-4, + -0.0025523216, + 0.018655982, + 0.023299344, + 0.005897848, + -0.012273024, + 6.395458E-4, + 0.010026515, + -0.00226838, + -0.0059823035, + 0.019913381, + -0.010042383, + 0.030516999, + -0.01967409, + 0.0034569832, + -0.0010430396, + -0.010906461, + -6.69015E-4, + -0.0017710179, + 0.012878962, + 0.012447994, + -0.017682152, + 0.011654739, + -0.01203201, + -0.006774183, + -0.0068713254, + -0.009814157, + -0.017695295, + -0.001937598, + -0.033666812, + 0.025145767, + -0.0042064143, + -0.037538234, + 0.015883785, + 0.0046275295, + 0.0015981806, + 0.032363575, + -9.4598625E-4, + -0.004416109, + 0.013688608, + -0.013698385, + -0.002938766, + 0.0032160175, + 0.0055589704, + -0.013659812, + 3.865991E-4, + -0.011000621, + -0.017684553, + -0.010664966, + -0.025528241, + -0.009938734, + 0.020639852, + -0.0063706567, + -0.008420547, + 0.04675015, + -0.02575436, + -0.015242433, + 0.019655995, + -0.008639033, + 0.0021155893, + 0.022294248, + -0.027108101, + 0.0025602942, + 3.544281E-4, + 0.023074994, + 6.564301E-4, + 0.015913786, + -0.027012343, + 0.01926225, + -0.031945307, + 0.033316646, + -0.0031364101, + 0.0024691722, + 0.0027819546, + 0.011557911, + -0.02112732, + -0.03124931, + -0.012115394, + -0.0051162494, + -0.018338913, + -0.018015135, + 0.025175737, + -0.004615808, + 0.032123443, + 0.01149381, + 0.02034022, + 0.0054734983, + -0.0019077961, + 0.018892575, + 0.028475761, + 0.00616891, + -0.007581412, + -0.01024442, + 0.022494303, + -0.004391819, + -0.022134263, + 0.006110842, + 0.011481114, + -0.001142404, + 0.02184593, + -0.011673235, + 0.010595018, + 7.7745586E-4, + -0.032389913, + 0.015513006, + 0.006160824, + 0.008642617, + 0.005188282, + -0.015668916, + -0.023614682, + -0.019952597, + 0.008253096, + -0.0116818715, + 0.003651681, + 0.0037720692, + -0.033607993, + -0.001997874, + -0.018956732, + 0.015426744, + 0.012979662, + 0.01599894, + 0.011386999, + -0.022786897, + 0.023663504, + 0.02122147, + 0.0102191325, + -0.0012756956, + 0.01688764, + -0.01064047, + -0.019902464, + 5.1889557E-4, + 0.0064100293, + -0.0047161826, + 8.931484E-4, + 0.0033300326, + -0.0037793047, + -0.019783596, + -0.046249527, + 0.013695718, + 0.022755655, + 0.015940016, + 0.0056213364, + 0.0049959393, + -0.016455656, + -0.01889667, + -0.005131278, + -0.024177091, + -0.015206167, + -0.029510979, + -0.00208528, + 0.014146816, + -0.0012916801, + -0.016168414, + -1.4605327E-4, + -0.0072732354, + -1.5592847E-4, + 0.0037429137, + -0.0046164063, + -0.012185378, + -0.020004706, + 0.022189207, + 0.0062778587, + 0.0057109087, + -0.022260673, + -0.008506205, + 0.010423754, + 0.0025262914, + -0.014652572, + 0.030150155, + 0.0087760985, + 0.026408775, + 0.016088696, + 0.0041555846, + 0.003821324, + 0.033020087, + 0.0044364766, + -0.03248966, + -0.010213823, + -0.0064453897, + 0.0033813843, + 3.1007185E-6, + -0.0024249328, + 0.026458701, + -0.017691944, + 0.0038463457, + 0.011479206, + 0.007823927, + -0.0042363107, + -0.005307469, + -0.010246053, + -0.012916931, + -0.0014037463, + 0.0039562886, + 0.019576332, + -0.0121251615, + -0.00804898, + -0.007282815, + -0.0068701063, + 0.03628337, + -0.007314803, + 0.017488733, + -8.595784E-4, + 0.012378822, + -0.0016288076, + -0.03658228, + -0.00936877, + -0.01867136, + -0.012338495, + 0.00584696, + 0.0027566697, + 0.0049686995, + -0.0033333097, + 0.0055709505, + -0.016422626, + 0.0019210484, + 0.0044255657, + 0.004400366, + -0.026238997, + -0.010498574, + 0.0037565476, + -0.0033568398, + -0.008165794, + -0.016702471, + 0.017590176, + -0.030580468, + 0.015460491, + -0.014369255, + -0.0036802348, + 0.0033731707, + -0.004462134, + 0.009315711, + 0.037031054, + 0.0023167965, + 0.0024272697, + -0.025587637, + -0.007021493, + -0.0041684047, + -0.023114067, + -0.0068416176, + -0.016011063, + -0.010988597, + -0.009776565, + -7.577654E-4, + -0.01260954, + -0.0039548096, + 0.011874094, + 0.017850632, + -0.0056078974, + 0.001137956, + 0.0023490603, + 0.014748091, + 0.0268842, + -0.0034413675, + 0.014389578, + -0.018794449, + 0.0011261172, + -0.01055136, + -0.0073610125, + 0.028920915, + -0.0068677724, + 6.590127E-4, + -0.007724952, + 0.011825592, + 0.0012545118, + -0.0027937908, + -0.009418896, + 0.018995604, + 0.0042044497, + 5.5822375E-4, + 0.013160997, + 0.008386917, + -0.00926929, + 0.0077769645, + 0.015107696, + -0.0023156004, + -0.020760123, + -0.008849668, + -0.009823207, + -0.0109330565, + -0.011654875, + -0.0067675924, + -0.019878881, + 0.008304867, + -0.012648642, + 0.011388921, + 0.0074632233, + -0.011903514, + 0.010477114, + -0.0057504764, + 0.008740771, + -0.0052455952, + 0.0015458215, + -0.014216819, + 0.037144653, + -0.006907158, + 0.013990413, + 0.0033694748, + 0.009016267, + -7.0589065E-4, + -0.011578206, + 4.267451E-4, + 0.017153287, + 0.013991896, + -0.0047142156, + -0.013518229, + -0.014013288, + 0.020274732, + 0.030332087, + -0.027230095, + 0.013187999, + 0.002759414, + -0.017080922, + -0.008433502, + -3.0113882E-4, + -0.019643053, + 0.015115967, + -0.010895908, + -0.004257065, + 0.008079765, + -0.010232521, + -0.0144926915, + -0.032778505, + 0.008457092, + 0.016547026, + -0.002303311, + 0.026858324, + 0.01653366, + -0.016334865, + 0.01484912, + -0.0062448904, + -0.03263002, + -0.013252771, + 0.026529184, + 0.005009039, + 0.005742224, + -0.023650426, + -0.014030438, + 0.014821458, + -0.0070121507, + 0.0020862806, + 0.017894685, + -0.006487103, + -3.3525165E-4, + -0.0035432638, + 0.00416226, + -0.015371818, + 6.5575715E-4, + 0.032909375, + 0.039188553, + -0.0010840116, + 0.024765851, + -0.0014126635, + -0.0024232308, + -0.02922808, + -0.017935503, + -0.0014599808, + 0.009957362, + -2.7135861E-4, + 0.010671429, + 0.008182142, + 0.027385835, + -0.01568566, + 0.006025188, + -0.01834127, + 0.0050406097, + -0.008854471, + -0.0013753993, + 0.022247726, + 0.02049955, + 0.010814341, + -0.013199182, + 0.011295411, + 0.024541335, + 0.002873898, + 0.024941834, + 0.0064960895, + 5.513232E-4, + -0.003617131, + 0.01246129, + -0.016770195, + 0.0033990156, + 0.015422676, + 0.010051868, + 0.008856257, + 0.011034755, + -0.009948785, + -0.009293502, + 0.008227149, + 0.011856289, + -0.004456853, + -0.005524282, + 0.012336819, + 0.0211587, + -0.017259076, + -0.025446462, + -2.8625072E-4, + 0.0030064522, + 0.009766691, + 0.0048045106, + 0.0010257206, + -0.012079148, + 0.0316444, + 0.0030560722, + 4.7346263E-4, + 0.0015635008, + 0.008552688, + 0.0043217703, + -0.0043109087, + -0.0076460224, + 0.031850226, + -0.013001496, + -0.029986253, + -0.018291969, + 0.007004453, + -0.010155137, + 0.0163908, + -0.023409415, + -0.021495247, + 0.028654283, + -0.014719445, + 0.00658233, + 0.024855953, + -0.026492082, + 0.017979639, + -0.0014561141, + -0.003991515, + 0.024234422, + 0.023300106, + -0.0024731543, + -0.0037396166, + 0.029926598, + -0.013816986, + 0.00964022, + 0.007200014, + 0.0013905343, + 0.01638062, + 0.005996924, + 0.02308937, + 0.006183253, + -0.002433789, + 0.014633932, + 0.011126163, + -0.025355786, + 0.014856562, + 0.003107604, + 0.015756993, + -0.0057374407, + -0.016623901, + -0.0033616626, + -0.0324299, + 0.0038058655, + 0.0130378045, + 0.0071772723, + 0.013601808, + 0.013865057, + -0.006182043, + 0.01064856, + 0.015999386, + -0.013339149, + 0.021245029, + 0.029028827, + 0.026504837, + -0.0055533806, + -0.012785195, + 3.4185225E-4, + -0.0043084454, + -0.0027079487, + -0.009968153, + 0.017564464, + -0.005140314, + -0.012398641, + 0.0155884195, + 8.3002145E-4, + 0.008765161, + -0.0098999655, + 0.011146116, + 0.0027306394, + 0.011103652, + -5.166376E-5, + -0.003953235, + 0.018041214, + 0.019086262, + 0.014823044, + 0.014305979, + 0.0018684057, + -0.005012644, + 0.0058445693, + 0.018603828, + -0.0035829823, + 0.023590293, + -0.007094371, + 0.0055897934, + 0.004521544, + -0.030611143, + -0.012068164, + 0.028939532, + 0.0073179104, + 0.01900474, + -3.189936E-4, + 0.0017162865, + 0.017896619, + -0.0029185708, + 0.020962927, + -0.014614946, + 0.024485435, + 0.044264395, + -0.0042446572, + 0.0061368477, + 1.0254537E-4, + 0.017561538, + -0.0153330825, + 0.011044265, + -0.003527847, + 0.018920688, + -0.012155306, + -0.017325427, + 0.0020741045, + -0.004859855, + -0.005536174, + -0.0048366436, + -0.012904949, + -0.0030339432, + -0.0051961527, + -0.021391507, + -0.0011543984, + -0.004162094, + 0.005484846, + -0.015603759, + 0.0037623246, + -0.004685519, + -4.545265E-4, + -1.6293318E-4, + 0.024961568, + -0.0045881514, + -0.020456074, + 0.01864754, + 0.020689787, + 0.029666724, + 0.020856056, + 0.023953997, + -0.0020212494, + -0.029833144, + 0.0037744665, + 0.005405412, + -0.012449051, + -0.007106694, + 0.00970911, + -0.018326795, + 0.02618418, + -0.019786263, + -0.0067660157, + 0.013289927, + 0.020224763, + 0.003665178, + 0.033739317, + 0.007819456, + 0.0074666515, + 0.010663879, + 0.012788695, + -2.4430215E-4, + -0.013607954, + -0.019618876, + 0.02262186, + 0.020584585, + 0.008751985, + -0.007665741, + -0.016074305, + 0.010352759, + -0.0015763964, + 0.010911196, + -0.0016306516, + -0.007231714, + -0.020084716, + 0.019965416, + 0.0070181256, + -3.291417E-5, + 0.033685192, + 0.018464867, + -0.004124406, + -0.010288625, + 0.0074194586, + 0.016830448, + 0.0070027057, + -0.012755887, + 0.0209226, + -0.0026577262, + 0.012860441, + 0.0189507, + -9.93295E-4, + -0.005272248, + 0.0015099184, + 0.01682319, + -0.006604507, + 0.014161828, + 0.004318488, + -0.030802865, + 0.03905133, + 0.008111044, + -0.015684422, + -0.0055497843, + -0.019870631, + -0.016234217, + -0.029367786, + -0.01693994, + 0.017149333, + 0.001967322, + -0.019719323, + 0.0021060435, + -0.0066612945, + -0.020724067, + 0.009736582, + -0.012561947, + 0.023148125, + -0.003629899, + -0.021238226, + -0.0014795566, + 0.025228575, + -0.008131581, + 0.0068865893, + 0.0155120995, + -0.0072075226, + -0.003434073, + 0.015777014, + -0.03005345, + -0.041660227, + 0.0062283687, + -0.010131654, + 0.006637916, + -0.014010048, + -0.029472318, + -0.027891029, + -0.0015798897, + 0.010026284, + 6.993134E-4, + -0.0031970534, + -0.009647274, + 0.006675557, + -0.0077924896, + -0.01602011, + -0.009506334, + 0.041430514, + -0.009156776, + -0.022627957, + -0.013325714, + 0.013737515, + 0.02334598, + 3.492968E-4, + -0.011807907, + 0.015534913, + 0.0054308097, + 0.0069950386, + 0.00512411, + 0.009571006, + 0.015462601, + 0.018595722, + -0.027381552, + -0.015958233, + 0.023195757, + 0.009513912, + 0.0073112883, + -0.01763746, + 0.020370508, + -0.0148485275, + -0.00982635, + 0.017560193, + 0.021519767, + 0.03265508, + 0.0057811416, + -0.0022211124, + -0.025629152, + -0.008363464, + 9.709318E-4, + 0.006536322, + 0.022096595, + 0.0054536103, + -0.0058605107, + -0.011467107, + -0.039547652, + -0.013110399, + 0.020558614, + -7.934722E-4, + -0.0059104045, + -0.00829056, + -0.008633167, + -0.01060516, + -0.018493295, + 0.023500359, + -0.0191054, + 0.01087974, + -0.008754127, + 6.084112E-4, + -0.002155156, + -0.026347032, + 0.019657101, + -0.014148867, + 0.0015701684, + -0.0027103163, + -0.01250783, + -0.0147964535, + 0.011218436, + -0.017061615, + 0.022111714, + -0.0043732207, + -0.0050449097, + 0.008615788, + -0.0038795625, + -0.032132104, + -0.0032056484, + -0.0013368236, + 0.0049840026, + 0.011713079, + -0.014520973, + -0.026153626, + 0.020154754, + -0.0021496569, + 0.00812291, + 0.0031900357, + -0.01465343, + -0.0033545708, + 0.0036713344, + 0.03047987, + -0.007749727, + 0.0056539862, + -0.014750672, + -0.03132632, + -0.004035589, + 0.016316865, + -0.00773037, + -0.02326746, + -0.0077029765, + -0.010840575, + 0.024294853, + -0.028932909, + -0.012852368, + 0.0057743583, + -0.028762523, + 0.002081844, + 0.010840531, + -0.011919014, + 0.0131897405, + 0.0056073107, + 0.0038910643, + 0.004870253, + 0.009986425, + 0.030318696, + -0.005368245, + 0.0032762983, + 0.008947654, + 0.012900695, + 0.015113158, + 0.0043828916, + -2.9687033E-4, + -8.415647E-4, + -0.011088143, + -0.016930088, + 0.01286782, + 0.018176485, + -0.0046192915, + -0.019609509, + 0.007120398, + -0.007621277, + 0.016501948, + 0.0071094334, + 0.014041335, + 0.012321251, + 0.030242056, + 0.014685569, + -0.0011160459, + -0.02277098, + -0.0010870568, + -0.002954955, + 0.02067527, + -0.036186732, + 0.02124969, + -0.011702111, + -0.02413169, + -0.026455788, + 0.039149478, + 0.0034739494, + 0.0063453224, + -0.039434675, + 0.0012980603, + 0.013710208, + 0.007614863, + -0.02341689, + -0.019708427, + 0.013086374, + 0.029063748, + -0.030575542, + 0.011440616, + 0.0057705296, + 0.01674959, + -0.019924581, + -0.014584673, + -0.0025201647, + -0.007051097, + 0.03198634, + -0.011050197, + 0.008410246, + 0.010928228, + -0.009257288, + 0.0026988, + -0.004535788, + -0.0065707727, + -0.0030343127, + 0.031948294, + 0.02013282, + -0.010732797, + 0.010738557, + 0.024395566, + -0.008765984, + 0.0023436467, + -0.008240773, + -0.016873607, + -0.0045794495, + 0.010515457, + -0.02379828, + 0.028173143, + -0.002782921, + 0.0060936804, + 0.012400643, + 0.0038886901, + -0.029776305, + -0.007161094, + 0.028911075, + 0.019885864, + 0.0017200722, + 0.015093902, + 0.013523179, + -0.0107982, + -0.008278087, + -0.019883474, + 0.006275038, + 0.014795316, + 0.0032643876, + -0.012590332, + -0.0075513744, + -0.009962893, + 0.015549393, + 0.0041281567, + 0.011570754, + 0.0013755678, + -0.012886164, + -0.008726976, + -6.1420177E-4, + 0.027898801, + -0.019317202, + -0.03417628, + -0.005352295, + -0.010693057, + -0.009495303, + 0.009803279, + -0.007883148, + 0.0040021613, + 0.019342177, + 0.00610761, + -0.0012270296, + 0.0016383091, + 0.008562716, + 0.007624559, + 0.0031353794, + 0.042748693, + -0.007370245, + 0.006327953, + 0.021249088, + 0.0067159333, + 0.008935491, + -0.009156771, + 0.0019233319, + -0.0097296825, + 0.010810608, + 0.016703509, + -0.020068306, + -0.0043044826, + -0.00850106, + -0.009198163, + 0.0137173785, + 0.025632069, + 0.023685096, + -0.035996456, + 0.020003024, + 0.017855452, + 0.0031545102, + -0.0054515665, + -0.005401671, + 0.012652823, + 0.009697572, + -0.015583676, + -9.419529E-5, + 0.051078085, + -0.012980634, + -0.020029146, + 0.020321107, + -0.010682667, + -0.01569114, + 6.5647194E-4, + -0.001678099, + -0.01153297, + 0.0017559299, + 0.011886306, + -0.0055660396, + 0.0043389625, + 0.008868492, + 0.020153515, + 0.0069899494, + -0.015867693, + -0.0024104938, + 0.022600355, + 0.020375587, + 0.018539144, + -9.205494E-4, + 0.019099703, + 0.0029171908, + -0.011386905, + -0.011433679, + -0.024489637, + 0.014482823, + 0.0028050882, + 0.008735582, + -0.013749275, + 0.0039126184, + 0.0055199913, + 0.02623023, + 0.001250539, + -0.031093014, + -0.011304817, + 1.7953264E-4, + -0.018621072, + -0.023897225, + 0.014926646, + 0.002889648, + -0.0012323818, + 0.010484984, + -0.017162675, + -0.0061240853, + 0.00983205, + -0.02505617, + 0.0013146976, + 0.0047538807, + 0.0021169786, + 0.019501144, + 0.021806631, + -0.004598014, + -0.0013904672, + 0.016396865, + 0.013845956, + 0.0027757534, + 0.0064168284, + -0.004781179, + -0.021122437, + 0.014057681, + -0.023740815, + 0.0034265995, + 0.0092431335, + 0.0032594297, + -0.040022776, + 0.012839204, + 3.8492336E-4, + 0.0025068617, + -0.009470823, + 0.020619659, + -0.00847356, + -0.0026876426, + -0.008191147, + 0.009475981, + -0.0021609508, + -0.018257309, + -0.0052287667, + -0.039300323, + 4.897099E-4, + 0.0038324224, + -0.018622002, + -0.011274497, + -0.031686094, + -0.0019779936, + -0.004069055, + 0.024234388, + -0.0010643941, + -0.03323755, + -0.012516471, + 0.009913635, + 0.023486786, + -0.011423995, + -0.012359075, + 0.0017318564, + -0.005201746, + 0.0135208275, + -0.0033564782, + 0.010841612, + 0.0026510265, + -2.680955E-4, + -0.010034811, + 0.011321415, + 0.009175639, + 0.012110234, + -0.0057229353, + 9.639479E-4, + 0.007912815, + -9.6723234E-4, + -0.0014859806, + -0.007614736, + 0.017743526, + 0.009322871, + -0.0062771877, + 0.00653605, + -0.012726721, + 0.024792241, + 0.005258456, + 0.004426801, + 0.023585562, + 0.010585616, + -0.0019267438, + -0.0069266087, + 0.011219633, + -0.019371895, + 0.025525762, + 0.016400967, + 0.0020902008, + -0.03320503, + 0.017964402, + 0.013100522, + 0.0026001057, + 0.022802195, + -0.003470189, + 0.020575507, + -0.019094214, + -0.007540244, + -0.018631442, + 0.028314497, + 0.0160368, + 0.0050316122, + -0.0059559178, + 0.00367126, + -0.012217927, + 0.022102222, + 0.01925064, + 5.383667E-4, + 0.011887997, + -0.0063091554, + -0.0050693057, + 0.016011033, + 0.0034506759, + -0.003909306, + -0.02938927, + 0.012860205, + -0.02065425, + 0.005380438, + -0.01350127, + 4.5493295E-4, + 0.009831186, + -7.5111294E-4, + 0.010143109, + -0.01870556, + -0.0030535304, + 0.0080670435, + -0.022847496, + -0.03759977, + 0.025555942, + 0.012330136, + -0.021309078, + 0.02261532, + 0.035842057, + 0.034001946, + 0.034215122, + -0.016048966, + 0.011904744, + 0.0024855346, + -0.009030364, + -0.005396465, + -0.0063094837, + 0.0016128614, + -0.018435804, + -0.0055140904, + -0.028551986, + 0.024460187, + 0.021463383, + -9.590245E-4, + 0.010109649, + -0.012515122, + 2.9998395E-4, + 0.005804164, + -0.0066110957, + 0.023020267, + -0.019450951, + -7.5103884E-4, + -0.0016902959, + 0.0200533, + -0.009998181, + 0.011282116, + -0.0012434644, + -0.01926363, + -0.003816037, + 0.010472562, + -0.0032174692, + -0.010103701, + -0.0037097996, + 0.046169013, + -0.012626448, + -0.0028986293, + -0.008874028, + 0.004877331, + -0.006672417, + 0.010714467, + 0.017912023, + 0.027873605, + -0.00808604, + 0.010800925, + 0.019073173, + -0.0033305548, + 0.009702014, + 0.005811885, + -0.009215005, + 0.001513174, + -0.048645727, + -0.03587415, + -0.0052392255, + 0.016682565, + 0.016687062, + -0.021164658, + -0.00709682, + 0.009399046, + -0.0055024284, + 0.018362606, + -0.0020986327, + -0.002527694, + -0.003262366, + 0.01126768, + -0.042005662, + -0.0132787395, + -0.014028214, + 0.012432483, + 0.02109605, + 0.004034127, + -0.013148932, + -0.008174535, + 0.005231385, + 0.0052024713, + -0.0054044994, + -0.022070603, + 0.012912362, + 0.038934577, + 0.009387376, + 0.016958008, + 0.0025084172, + -0.009518249, + 0.013434903, + 0.007264727, + -3.1951166E-4, + 2.4907137E-4, + -0.013448041, + -0.020626329, + 0.009351719, + 0.010977491, + -0.0010177486, + -0.007921091, + -0.006644835, + -0.0064898618, + -0.011832438, + 0.020922948, + 0.025140226, + 0.010204823, + -0.010502519, + -0.03055431, + -0.0033689637, + -0.028633654, + 0.011812513, + -6.331873E-4, + 0.0072415443, + -0.005517818, + 0.0117076235, + 0.016755898, + 0.0053233113, + -0.005492152, + 0.025781896, + -0.015530438, + -0.0014764915, + -0.0126949735, + -0.009953959, + 0.03720159, + 0.012189373, + 0.009274754, + 0.0064194114, + -9.2629186E-4, + 0.010312394, + -0.022208432, + -0.022109665, + -0.0052948506, + -0.013141198, + -0.0072082044, + 0.010199564, + -0.004452382, + -0.0054847808, + 0.0031894548, + -3.3349893E-4, + 0.009841966, + -0.0045838663, + 0.008650652, + -0.0019081457, + -7.4854837E-4, + -0.0143281715, + 0.004126956, + -3.4005198E-4, + 4.8374166E-4, + -0.027778573, + 0.020419963, + 0.017697988, + 0.012514978, + -0.010538738, + -0.011831045, + -0.02434371, + 0.010701674, + 0.031916518, + -0.014770708, + 0.024472088, + 4.6674362E-5, + 0.010116597, + 0.009939409, + -0.012909869, + 0.012845277, + -0.032622736, + -0.025637455, + 0.0016615978, + 0.03244345, + -0.0071749133, + 0.021971958, + -0.03190017, + 0.0018233608, + -0.012397405, + 0.011362288, + 0.030108782, + 0.026994644, + -0.009057845, + 0.0039438633, + -0.004647102, + -8.621682E-4, + -0.034240924, + -0.0060492977, + 0.016469007, + 4.4713498E-4, + 0.027138688, + -0.0016443022, + -0.0031671284, + -0.005284694, + -0.009049327, + 0.030956691, + 0.02717981, + 0.017629134, + 9.5015747E-4, + -0.009126874, + 0.00717403, + 0.0036383555, + -0.012860704, + -0.006222491, + -0.031839076, + 0.0067897327, + 0.012299686, + -0.0124637075, + 0.015301973, + -0.021501746, + -0.005408774, + -0.0061448165, + -0.007700892, + -0.01830763, + 0.00625288, + -0.011317004, + -0.009200736, + -0.0014330093, + 0.005924446, + 0.0032313478, + 0.010268505, + 0.005883393, + 0.021963026, + 0.010791111, + -0.021951145, + -0.02395747, + 0.0073101283, + 0.00993677, + 0.023366852, + -0.021199245, + -0.006094434, + 0.009582312, + -0.010086245, + -0.022780372, + 0.021009449, + 0.009439662, + -0.016106697, + -2.2495812E-4, + -0.0016512123, + 0.0018878308, + -0.007288849, + 0.008802476, + 0.021581147, + 0.033392586, + 0.02741629, + 0.015763067, + 0.00593946, + 0.008548857, + 0.031874117, + -0.022961684, + -0.023244085, + 0.017540777, + 0.0013311709, + 0.0213663, + 0.01997746, + 0.0079631, + 0.0028927785, + 0.0018632874, + -0.0045964736, + -0.005399077, + 0.007807615, + -0.021761762, + 0.0062974053, + 0.001937928, + 0.0044794655, + -0.011408455, + 0.009442439, + -0.021597298, + 0.008258528, + -0.014679988, + -0.017645027, + 0.0022500886, + 0.0077414024, + -0.0043746615, + 0.0142815225, + -0.018549707, + 0.004844653, + -0.0034771848, + 0.014449481, + -0.006255541, + 0.018967176, + -0.00899659, + 0.011540078, + -0.004551644, + 0.011730286, + 0.0060159885, + 0.019227844, + 0.0048159556, + 0.004263611, + -0.024842627, + 0.007070867, + -0.014138569, + 0.013689324, + -0.021135533, + 0.023251435, + -0.011806693, + 0.012792037, + 0.03149674, + 0.017995019, + -0.015946666, + 0.03168559, + -0.006569563, + 0.009238693, + -0.018013299, + -0.02508627, + -3.1614705E-4, + -0.017799608, + -0.019451842, + 0.0015517033, + -0.007848416, + 0.00213989, + 0.0021451125, + 0.019556625, + 0.026508117, + -0.0069778496, + 0.009793858, + -0.013385278, + -0.0040377215, + 0.023441432, + -0.025952233, + -0.019088754, + 0.0118468115, + -0.029163066, + -0.009076171, + 0.016000835, + -0.0036495521, + 0.023374282, + 5.980988E-4, + 0.012362938, + -0.003287173, + -0.0137944715, + -0.0025323099, + -0.0105866315, + -0.0128046535, + -0.038940977, + 0.00598359, + 0.008563622, + -0.009157465, + 1.06870226E-4, + 0.010744436, + 0.00224661, + -0.002306564, + 0.007544361, + -0.012652396, + -0.0034755738, + -0.016406108, + -0.0046169697, + 0.020799449, + -8.710547E-4, + -0.003014898, + 0.0032973506, + 0.0047864574, + 0.0014610564, + 0.014262693, + 0.036159128, + -0.022755004, + -0.008143228, + -6.6065823E-4, + -0.030037975, + 0.010427063, + 0.004072323, + -0.019872226, + -0.0127522275, + 0.022571348, + -0.03617823, + -0.00883247, + 0.037530735, + 0.026376938, + 0.008857382, + -0.0072123, + -0.017570244, + 0.0010973815, + -0.013710047, + -0.011272422, + -0.036017403, + 0.016950054, + 0.0018064777, + 0.015430935, + -0.004825458, + -0.001317011, + -0.005273277, + -0.024977112, + 0.016715087, + 0.0114894565, + -0.054238345, + -0.0028482177, + 0.009009683, + 0.008455483, + -0.0036260441, + -0.005457244, + -0.015234547, + 0.010990768, + -0.010973445, + -0.005326442, + 0.017634107, + -0.021412037, + -0.012657003, + 0.015831536, + -0.0018064454, + -0.0033399703, + -0.008681545, + 0.006129014, + -0.012560776, + 0.028139975, + -0.045504294, + 0.003878578, + -0.012811758, + -1.9975168E-4, + 0.023158228, + -7.486458E-4, + -0.0041541173, + -0.0075219534, + 0.024937527, + 0.015555434, + 0.031307444, + 0.0011224992, + 0.0028724493, + -0.0072697783, + 0.010660651, + 0.032118667, + 0.02613898, + -0.011016531, + -0.027747497, + 0.0081057325, + -0.013622966, + 0.01608265, + -0.008602697, + -0.0047769495, + 0.008882977, + 0.008523755, + 0.0022763272, + 0.022648195, + -0.014303281, + -0.011762223, + 0.0347293, + 0.017388854, + -0.009537849, + 0.01963619, + -0.003967754, + -0.03383355, + 5.654473E-4, + 0.008775611, + -4.8246226E-4, + -0.008160454, + 0.010655943, + -0.012882313, + 0.0025975942, + -0.012314349, + -0.0040810276, + -0.009539307, + -0.018198676, + -0.020651316, + -0.0070474087, + -0.017997934, + 0.008704153, + -0.012255596, + -0.012973332, + 0.0019303316, + -0.038020957, + 0.014933758, + -0.010171052, + -0.0047035143, + -0.015799552, + -0.011967193, + -0.01156973, + -0.017948162, + -0.0054335836, + -0.0144070005, + 0.022725938, + 0.009045288, + -0.007960438, + -0.020974204, + 0.03594582, + 0.028519413, + -0.019792456, + -0.01977346, + 8.022207E-4, + 0.007293912, + -0.039988797, + 0.018645696, + -0.020334728, + -0.009186934, + 0.017717997, + -0.0068071983, + 0.03092283, + -0.0023833457, + 0.0067706206, + 0.040193494, + -0.0060169892, + -0.0055934857, + -0.015562341, + 0.017319273, + 0.011505343, + 0.012884146, + 0.0017508796, + -0.026828293, + 0.025919475, + -0.007329998, + -0.031618018, + -0.011674875, + -0.0073355776, + -0.0064784396, + 0.0060700336, + -0.0028129946, + -0.0021722596, + 0.017933456, + -0.027804308, + 0.016254913, + 0.017076528, + -0.026483051, + -0.029517528, + -0.02300236, + -0.02089055, + 0.011358835, + 0.011189949, + 0.0014938263, + 0.0018024887, + 0.0054994104, + -0.015785266, + -0.015119972, + 0.013240457, + -0.008012919, + 0.0054367827, + -0.014734727, + 0.004147091, + 0.013971301, + 0.006353623, + -0.005063198, + -0.011023349, + 0.022073546, + -0.004377148, + 0.018362349, + -0.00722938, + 0.018667271, + -0.043190964, + 0.010590421, + -0.009667013, + -0.011679358, + -0.026185594, + -0.029426467, + 0.0249663, + -0.026194375, + -8.7809755E-4, + 0.036017906, + 9.1916486E-4, + 0.01146199, + -0.001682277, + 0.031958275, + 0.014866463, + -0.01735635, + 0.023985257, + -0.0074232547, + 0.036361404, + 0.01668161, + 0.018290615, + -0.024072366, + -0.04207381, + 0.011880996, + 0.021669142, + -0.016129067, + 0.047433797, + -0.019128675, + -0.031581797, + -0.0016341829, + -0.001109853, + 0.038983848, + -0.011084824, + 0.0045415317, + -0.016046798, + 0.020091107, + 0.01799615, + -0.021760771, + 0.0077666384, + -0.004538055, + 0.015495821, + -0.013229742, + -8.396736E-4, + -3.3137514E-4, + -0.0021019443, + -0.005067623, + -2.392698E-4, + -7.5587345E-4, + -0.011203846, + 0.014681048, + -0.017695801, + -0.0063380627, + 1.8483786E-4, + 0.002366884, + 0.0074795866, + -0.008186209, + 0.007707724, + 0.0018955194, + 0.0049151713, + 3.166063E-4, + 0.033300046, + -0.021372251, + -0.022030946, + 0.015683215, + -3.0701238E-4, + 0.016641308, + 0.004729124, + -0.021290826, + 0.00947707, + -4.328932E-4, + 0.0069435574, + 0.0016803658, + 0.008904694, + -0.013106488, + -0.0032732463, + 0.0071512363, + -0.017565796, + 0.008261214, + 0.011255025, + 0.028076975, + 0.013250345, + 0.017855028, + -0.012535724, + -0.006328135, + -0.003104254, + 2.8319092E-4, + -0.011025419, + 0.0144849215, + 0.0131213935, + 0.010871783, + -0.021840138, + 0.039457258, + 0.0057260646, + -0.016425718, + 0.015206399, + -0.019070165, + 0.009286674, + -0.023747837, + -0.0062651928, + -0.025404058, + -0.012913782, + -0.02016252, + -0.027075822, + -0.002772573, + 0.014574832, + 5.1334186E-4, + -0.011452701, + -0.015327933, + -0.008588472, + 0.02178193, + 0.018105572, + 0.026772445, + 0.009173294, + -0.038849764, + -0.011789119, + 0.0049134893, + 0.027871048, + 0.026234457, + -0.004336805, + -0.022650944, + -0.02231935, + 0.003755308, + 0.0031433245, + 0.020980414, + 0.0073063807, + 0.0242847, + 0.0049257404, + 0.0023535925, + -0.017262481, + -0.0071866936, + -0.0064640306, + 0.011498403, + -0.01153795, + 0.023241859, + 0.009068251, + -0.020932369, + -0.019004328, + -0.019152094, + 0.0027459844, + -0.014123123, + 0.017506627, + -0.017180659, + 0.0047437195, + -0.0052193305, + -0.026278982, + -0.01651704, + 0.00815138, + 0.031310674, + -0.018340511, + -0.0058604702, + 0.016295532, + -0.011415435, + 0.0063721496, + 0.013717454, + -0.013304271, + -0.017222235, + -0.0013506527, + 0.0109200645, + 0.013545568, + 0.015156724, + -0.0037276547, + -0.017830808, + -0.010142874, + -0.00257053, + -0.00520097, + -0.0032325431, + 0.021548815, + 0.010206848, + 3.952334E-5, + -0.015964124, + 0.027795803, + 0.018323245, + 0.023432462, + -0.021245025, + -0.02023196, + 0.009847864, + -0.009509641, + 0.013436886, + 0.008036375, + -0.016382866, + 7.6917454E-4, + 0.011646569, + 0.007780773, + 0.02280935, + 0.007328936, + -0.024188926, + -0.013019771, + -0.01709857, + -0.015950639, + -0.0044111, + 0.007895546, + -0.008965263, + -0.007579956, + -0.005085515, + 0.009528081, + -0.009871065, + -0.0040232013, + 0.00588492, + 0.0077956896, + -0.03305027, + -0.02541376, + -0.011134679, + 0.0070354613, + -0.0058298092, + -0.01649642, + 0.013814365, + -0.0073386496, + 0.009768087, + -0.053638343, + 0.0038475364, + 0.005476248, + 0.010412892, + 0.008955717, + -0.0013397754, + -0.0058979383 ], - "paletteEmbedding": [ - 0.034564354, -0.062214296, 0.030603947, 0.023869311, 0.06395433, - 0.0028295657, -0.008526678, -0.039674707, 9.1181207e-4, 0.03901908, - 0.02455236, 0.017876007, -0.016564382, 0.034807242, 0.034524843, - 0.00883126, 0.036182344, -0.012881604, 0.063091345, 0.026643073, - -0.057497926, 0.013687911, -0.006216288, -0.04073978, 0.014331427, - -0.021808695, -0.012895301, -0.041463215, -0.014557227, -0.03433722, - 0.053052448, 0.0061605847, -0.008704084, -0.015085484, 0.038830135, - 0.010386697, 0.0030480055, -0.007156927, 0.031035086, -0.057273176, - 0.02600436, 0.030448582, 0.024604635, -0.023068339, 0.04792944, - 0.01592935, -0.022060737, -0.015781397, -0.043745704, 0.021736642, - 0.013884031, 0.021135967, 0.0049358676, 0.07543069, -0.017958887, - 0.024509747, 0.0256202, -0.0209447, -0.007640635, 0.008363783, - -0.0011615546, -0.0021755167, -0.016954683, -0.025188085, 0.020200484, - 0.007399699, 0.049092367, -0.019395312, -0.028954327, 0.051237434, - -0.012026628, -0.027724503, -0.011223361, -0.041052304, -0.031569563, - -0.0046051033, 0.0062223743, -0.05838602, 0.025199933, -0.01922963, - 0.045259226, -0.0077375993, -0.035223402, -0.04631916, 0.03170079, - 0.0057593365, 0.011204915, -0.010522088, 0.008688914, -0.006853797, - -0.0051800436, 0.09080978, -0.022617742, -0.016759457, 0.010266843, - -0.04624967, -0.05415828, -0.053051088, -0.0016944283, 0.06280019, - -0.021222489, -0.008752181, 0.015701314, -0.04918072, -0.008144428, - -0.038125508, -0.0047686915, 0.0066666254, 0.017087191, 0.012872773, - 0.05465354, -0.041482568, -9.2891057e-4, 0.046293065, -0.024327748, - 0.008891512, -0.016629828, 0.015407094, 0.009424023, 0.020357553, - 0.03433815, -0.061896186, -0.04327388, 0.060210377, 0.011271795, - -0.021558693, -0.015769994, 0.021216242, -0.03506766, 0.036595594, - -0.08248252, -0.019809095, 0.033873394, -0.01002333, 0.04556964, - 0.024917057, -0.005371915, -0.01078474, 0.06173985, 0.019619346, - 0.05979916, 0.019906875, -0.0025623308, -0.009357186, 0.03839586, - 0.011093488, 0.0048784055, -0.037667368, -0.04114576, 0.03452974, - -0.009759905, 0.0050790464, 0.007719505, -0.018345276, 0.021463476, - 0.038937073, 0.029946603, 4.9392664e-4, 5.356528e-4, 0.030452978, - -0.0072951266, 0.0025049325, 0.039189678, 0.03202431, 0.0205701, - 0.028139943, 5.6944374e-4, -0.025578309, 0.015271774, 0.048660908, - 0.004674443, -0.018602805, -0.0062672817, 0.05556301, -0.028635392, - -0.002455775, -0.020952007, -0.039472606, -0.032138523, -0.0066507524, - -0.035185527, -0.012877545, 0.010644684, 0.03942451, -0.014608315, - -0.0043779407, 0.020102877, -0.039767418, -0.037478995, 0.024315132, - -0.070290744, -0.10400157, 0.014214463, -0.014634809, -0.019286742, - 0.0033931902, 0.045534555, -0.011061231, 0.017142985, 0.004540199, - -0.018661728, -0.011622834, -0.0046929326, 0.010645856, -0.017777361, - -0.01075039, 0.02792018, -0.016277287, -0.003757289, -0.018780941, - -0.03755422, -0.025105892, -0.005763689, -0.04096404, 0.042114746, - -0.036594294, 0.022614023, 6.008172e-4, -0.02040538, -0.03164468, - 0.034218844, 0.05141284, -0.054967854, 0.0201407, -0.019130152, - -0.009637016, 0.0056124493, 0.035307955, 0.0133895725, 0.009272184, - 0.032400824, 0.072261415, -0.006664322, -0.04125327, -0.054886345, - -0.03355643, 0.0016263317, -0.02825128, -0.04061761, 0.029596185, - -0.019394493, 0.019244643, 0.0024100211, 0.006428755, 0.07839452, - -0.035095822, -0.026240118, -0.0032513263, 0.050566014, 0.05091491, - -0.051977094, -0.042001694, 0.018854266, 0.024576267, 0.035574608, - -0.012180396, -0.014783161, 0.032422587, -0.0267337, 0.0061160275, - -0.028748209, 0.025556967, 0.041065972, -0.014090747, -0.0074859965, - -0.007566747, -0.014578061, 0.054973222, -0.07988299, -0.038541634, - -0.040959463, 0.042741276, 0.0032030707, 0.004306536, -0.038423978, - 0.0023187406, -0.002719354, -0.0052263034, 0.0031387985, 0.014969795, - -0.04918887, -0.011501304, 0.054494508, -0.0452808, 0.05180801, - -0.06689862, -0.03437682, -0.011482444, 0.009410569, -6.85909e-5, - -0.0065049385, -0.07090075, 0.017309215, 0.010109776, 0.03226402, - 0.02080487, -0.02219853, 0.013556792, -0.010337194, -0.006142348, - 0.027456785, -0.0038145997, 0.015187704, -6.0313026e-4, 0.020162217, - 0.00922315, -0.007605653, 0.02713168, -0.03785206, 0.03642751, - -0.014453801, 0.026779862, 0.04478037, 0.016231144, -0.0032707662, - 0.042520817, 0.013300821, 0.013217849, -0.02061277, 0.0027877602, - -0.04027061, 0.052028894, -0.038973916, -0.006364198, 0.0410398, - -0.040699553, -0.031941544, 0.005409682, -0.06339199, 0.019411638, - 0.039568026, -6.9706154e-4, -0.028475698, 0.019878441, 0.034949277, - -0.025052365, -0.021370018, -0.002813598, 0.011246387, -0.076658964, - 0.030267287, -0.03607467, 0.002726581, 0.00832979, -0.027640266, - 0.052278776, 0.034206536, -0.027976569, -0.049527064, -0.027332548, - 0.05355671, 0.0023108514, -0.03857596, -0.044254962, -0.006785189, - 0.024712697, 0.040221483, -0.011057389, 0.0144132, -0.002847386, - -0.019717673, -0.03300421, 0.05005859, -0.004441258, -0.011426064, - -0.011148564, 0.044768203, -0.03200634, -0.004467996, 0.06516308, - -0.049716353, 0.048257634, -0.00695012, -0.064826585, -0.063381754, - 0.03682448, 0.009472354, 0.01797808, -0.027086722, -0.020436186, - -0.024229823, -0.020178488, -0.013675379, -0.017394975, -0.0351016, - -0.026708812, -0.038678408, -0.026047388, 0.05656257, 0.015367239, - 0.006921558, 0.027823053, 0.045879606, 0.03300757, 0.009558032, - 0.041680634, -0.014550325, 0.0010299741, -0.016235221, 0.044572238, - -6.5858674e-4, -0.02093298, -0.03102461, -0.030651685, -0.0343339, - 0.0023113322, 0.058194574, 0.030114217, 0.058236644, -0.027125899, - -0.03431962, -0.018594548, -0.006414785, -0.05035987, 0.047132526, - 0.006592947, 0.031571098, -0.076408364, 0.005362536, -0.016096985, - -0.036992703, 0.018790944, 0.004814507, 6.5038924e-4, -0.01585976, - -0.0013368948, 0.024340495, 0.04054426, -0.030882508, -0.016522883, - -0.019582262, 0.048587915, -0.023166241, -0.010544175, 0.021330886, - 0.0076874634, 0.021324495, 0.028188715, -0.034187604, -0.0410551, - 0.023870815, 0.017365238, -0.022262314, 0.018990058, -0.008971639, - 0.003619007, -0.014334771, 0.05647859, -0.0016708105, 0.048367742, - -0.0184021, 0.03524414, 0.043710165, 0.039736245, -0.02888871, - 0.01179476, -0.05365228, -0.040028576, 0.03772797, 0.016243411, - 1.7296597e-4, 0.032238543, 0.04260444, -0.016520217, 0.042564247, - -0.054960728, -0.038445424, -0.015645316, 0.0347584, 0.035493225, - -0.01926891, 0.07197442, 0.06679994, -0.045095462, -0.0024091885, - -0.048609097, -0.068828955, 0.016489258, 0.041192286, 0.04574723, - 0.028364237, -0.039579596, 0.05017239, -0.029212408, -0.016832855, - 0.009960044, 0.044328995, -0.013144117, -0.0016733785, -0.0076636514, - -0.031610195, -0.0044986736, 0.0300483, 0.024513101, 0.0017001024, - -0.023787504, 0.0011671155, 0.034630828, 0.030814819, -0.048215274, - -0.052991055, -0.03372574, -0.031575706, 0.046706732, 0.009740875, - -0.046385624, -0.008514962, -0.014204459, 0.0052828533, -0.032235887, - 0.015524358, 0.006564147, 0.033747256, 0.09128453, -0.039057218, - -0.018950714, -0.00976444, 0.02119788, 0.014845441, -0.00839923, - -0.059977677, -7.609352e-4, -0.02462225, 0.011335536, -0.04947037, - -0.037303798, -0.06157192, 0.01757399, -0.023090933, -0.012056984, - 0.011782482, -0.007766584, -0.02658418, 0.014952601, 4.8919255e-4, - -0.010862703, 5.1071716e-4, 0.03385636, -0.06478319, -1.2213207e-4, - 0.034030184, -0.023361115, 0.0041721044, 0.024399826, -0.060961097, - -0.004868303, 0.030574774, 0.019010969, 0.04828008, -0.0061124777, - -0.014929539, -0.021963935, 0.02400871, -0.06678724, -0.03286899, - -0.047137883, -2.3365e-4, 0.054094113, -0.011536546, 0.06271217, - 0.037400708, -0.012243414, 0.059696857, -0.05610245, -0.0028532264, - -0.056506917, 0.022161324, -0.0026930878, -0.015735557, -0.0013360765, - -0.037452407, 0.009756357, 0.0908276, -0.024786735, -0.00844404, - 0.029004458, -0.040938437, 0.03272056, -0.04498219, 8.9947606e-4, - -0.047993407, 0.015758367, 0.021271171, 0.012901512, 0.0014059402, - -0.035532422, 0.03159785, 0.011688955, -0.006592369, -0.03391631, - 0.086108476, 0.005276637, -0.008703562, -0.0074512446, -0.02573925, - -0.052988045, -0.0046576215, 0.040664766, 0.013583877, -0.019055262, - -2.062699e-4, 0.019531762, -0.012603075, 0.014637674, 0.051309258, - -7.695179e-4, 0.04047104, 0.014791596, -0.004928198, 0.022844825, - 0.024295757, -0.008120755, 0.040158633, 0.05080437, 0.030121643, - 0.0124676665, 0.004008368, 0.046203837, -0.015573326, -0.043258626, - -0.04992572, -0.036964435, 0.0042838934, -0.041920785, 0.019806035, - -0.040200975, -1.787686e-4, -0.020101102, -0.017330652, -0.006518798, - -0.020504965, -0.030666485, 0.030458687, 0.023032945, -0.013808612, - -0.045777198, -0.0017875622, -0.007875873, 0.0074120793, 0.004632367, - 0.04538702, -0.0027963487, -0.026709529, -0.048269574, -0.024641322, - 0.012490219, 0.002387455, 0.100776784, 0.04288572, 0.018514626, - -0.020447107, -0.01716606, -0.0025540479, 0.0076997695, -0.023949878, - -0.029714826, 0.0060176593, -0.0022287106, 0.05364684, -0.029723268, - 4.140586e-4, -0.005089501, -0.031097269, -0.0317779, 0.008078568, - -0.06250862, -0.019375343, -0.014690966, -0.00439281, 0.046271943, - 0.008191605, -0.09162275, -0.005503739, 0.018415362, 0.047190122, - 0.040316973, 0.022118973, -0.019016828, -0.005700464, -0.023428855, - -0.014750007, -0.039764013, 0.022940185, 0.043226775, -0.041999098, - -0.060605615, -1.2787759e-4, -0.009071806, -0.008896885, -0.026851455, - 0.03045803, -0.027911067, 0.002326073, -0.06825647, -0.017235948, - 0.0038504498, 0.05598934, 0.016742518, -0.0043541496, 0.08273328, - 0.02687117, 0.018989757, -0.027656816, -0.0050727017, 0.021420753, - -0.011779244, 0.0015675796, 0.06042751, -3.851587e-4, 0.056830414, - 0.038113568, -0.07267239, 0.03661126, -0.004626986, -0.001236925, - -0.03112654, -0.057096623, 0.03270958, 0.032881618, 0.0023862657, - 0.019114561, 0.023441914, -0.015695916, 0.058405686, 0.0017816854, - -0.017357893, 0.008111411, 0.019405639, -0.03570988, -0.010845737, - 0.011017036, -0.030548986, -0.010388859, -0.002678599, -0.024841325, - 2.7572797e-4, -0.008360617, -0.014279501, -0.0026751757, 0.008877446, - -9.6869824e-4, -0.005418548, -0.03345468, 0.00379772, -0.020347271, - 0.004616407, 0.013660926, -0.011987945, -0.021176368, -0.03209817, - 0.0190597, 0.0013808816, -0.034939997, -0.028344506, 0.04643377, - 0.008809216, -0.0032999227, -0.03198333, 0.04158586, 3.57074e-4, - 0.01579431, -0.05371446, -0.053140268, 0.02942266, -0.03826207, - 0.023073828, 0.0015742477, -0.03139455, -0.004137831, -0.04644725, - -0.006242157, 0.041340984, 0.054869086, 0.008766854, -0.0038610185, - -0.04388519, 0.0011938303, 0.03189541, 0.019658603, 0.030779332, - 0.027819088, -0.020079764, 0.008875523, 0.045505084, 0.034470364, - -0.05265305, 0.014986882, -0.0405722, -0.008197766, 0.015517541, - -0.0577376, -0.03264917, -0.0015224232, -0.025299152, -0.028567974, - -0.040715974, 0.034424145, -0.014986, -0.023191059, 0.02183209, - 0.03277482, 0.010438073, 0.017954037, 0.039611142, -0.036145024, - -0.0378393, 0.017435601, 0.031125886, 0.048798464, -0.03589884, - 0.078516364, 0.022975124, 0.012603048, 0.0820456, 0.060837027, - 0.031662747, 0.0182858, 0.0014244993, 0.0074168183, -0.023038795, - 0.016056027, -0.042071134, 0.009669921, -0.0012855891, -0.02374573, - -0.007319885, 0.02358758, 0.01721064, 0.002033197, 0.035937104, - 0.0048987283, -0.03670592, -0.011734336, 0.019875864, -0.006003629, - 0.019350223, 0.015470077, 0.022900587, 0.013060124, -0.0031645575, - 0.032224823, -0.08434922, -0.03756266, 0.049475104, 0.0025253259, - 0.008230211, -0.0023653652, 0.029872803, 0.01575311, 0.044450823, - -0.0054270043, 0.06950207, -0.003582401, 8.898495e-4, -0.039705027, - 0.056931023, 0.0031130405, 0.008549277, -0.008856426, -0.017904546, - 0.051812664, -0.0050435807, 0.029583693, -0.028638473, -0.030928997, - -0.042496882, 0.039305147, -0.0029752771, -0.051049452, -0.060775183, - -0.036696564, -0.019154139, -0.008366661, 0.031890187, -0.024560077, - -0.01003681, 0.016970824, 0.04109305, -0.022364551, 0.009802674, - 0.0040385844, -0.0119810365, 0.0018991368, -0.037696667, -0.03315405, - 0.018201781, -0.021243298, -0.015565213, 0.009678816, 0.007768059, - 0.040675342, 0.02040088, -0.014480311, -0.03388746, 0.016882278, - -0.03653665, -0.004098451, 0.049935613, -0.015790118, 0.018025838, - -0.0022052361, -0.037573464, 0.08481753, -0.008266776, 0.0061499802, - -0.023965225, 0.028583195, -0.015961494, 0.0214491, 0.04735611, - 0.017470222, 0.020762853, 0.018636534, 0.036425885, -0.023480654, - 0.009822698, 0.021287927, 0.05244656, 0.029592188, -0.013189288, - 0.008675406, -0.011845164, -0.031793248, 0.02060797, -0.041059833, - 0.032514244, 0.0023219993, -0.01029425, -0.0015719533, -0.021755662, - 0.0038468665, -0.026088286, 0.03921952, 0.025247233, 0.019514019, - -0.049132515, -0.01800038, 0.056114726, 0.060482208, -0.028440738, - 0.019399758, -0.0026302221, 0.0021821223, -0.00806318, -0.032461517, - 0.006660621, 0.022429999, 0.011414155, 0.01596249, -0.04408293, - 0.013488397, -0.0109422915, -0.07150281, 0.02921564, -0.0052152486, - -0.009783184, -0.028489815, 0.031033063, -0.046607133, 0.00341726, - 0.01899092, -0.0073302584, 0.01953633, -0.0074585765, 0.010900444, - -0.01636891, 0.032531112, 0.03689382, 0.003862164, 7.2961516e-4, - -0.04873725, -0.015539216, 0.027615853, -0.050871644, 0.023699543, - 0.028362326, -0.0097365, 0.034489278, -0.017663512, 0.022928363, - 0.042136326, -0.06280334, 0.0063589443, 0.020268753, 0.020452194, - -0.027124386, 0.03260662, -0.012913859, -0.020484261, 0.0114359185, - 0.03679091, -0.0110424245, -0.049464535, -0.009431697, 0.051412832, - 0.019298162, 0.013346769, -0.0068882615, 0.0014341879, 0.0026263967 + "paletteEmbedding" : [ + -0.003956161, + -0.0050555803, + -0.021572769, + -0.003674325, + -0.027550241, + -0.011227682, + 0.036841404, + 0.031156695, + 0.07690974, + -0.04469266, + 0.0043392214, + -0.046043873, + 0.020685995, + -0.014769041, + -0.0028435285, + -0.019716859, + 0.050816037, + 0.012872437, + -0.026438966, + 0.006767833, + -0.059890565, + 0.04226278, + -0.01591334, + -0.047920406, + -0.008720794, + -0.043489445, + 0.018547704, + 0.009819996, + -0.04388879, + 0.01753757, + -0.0328725, + -0.038736008, + 0.008992939, + -0.019544251, + -0.0190646, + 0.008036209, + -0.0071443375, + -0.05261503, + 0.022683075, + 0.049260452, + -0.028779013, + -0.028513614, + 0.0021495537, + -0.03121705, + -0.008351799, + -0.032205135, + 0.033498246, + 0.013187675, + 0.0029663485, + 0.0613914, + 0.0030253264, + -0.020344902, + -0.02623448, + -0.047896095, + -0.0053646765, + 0.030786505, + -0.007988107, + -0.03383472, + 9.642544E-4, + -0.0057944846, + 0.017661976, + -0.0026263592, + 0.016582299, + 0.020833788, + 0.0054540304, + -0.009761335, + 0.029866623, + -0.0547537, + -0.020639895, + -0.029472392, + 0.027580222, + 0.07433054, + -1.808742E-5, + 0.016449338, + -0.0060920874, + 0.044713628, + 0.0035931608, + 0.019364748, + -0.012135026, + 0.007818291, + -0.015693441, + 0.0011823863, + 0.008419292, + 0.058082536, + 0.01642964, + -0.022628035, + 0.002312899, + -0.058967218, + 0.033315, + 0.01876913, + 0.012485695, + -0.008334976, + 0.033151325, + 0.0016101715, + 0.010355069, + 0.020485489, + 0.02562644, + -0.035425518, + -0.053888913, + 0.035734158, + -0.011704123, + 0.007308561, + -0.003338678, + -7.2795316E-4, + 0.023278967, + 0.040028006, + -0.05225091, + -0.033632975, + -0.065927394, + 0.003567239, + 0.024266625, + -0.019827515, + 0.007975642, + -0.025242347, + -0.043042794, + 0.029552206, + -0.046408385, + 0.027330916, + 0.031458117, + 0.0046052122, + 0.030934814, + -0.051567383, + 0.029950533, + 0.034790453, + -0.04664749, + -0.023062414, + -0.029715804, + -0.047854837, + -0.0027881244, + -0.020363657, + -0.026276613, + 0.012269761, + -0.020585822, + -0.034410905, + -0.010152682, + 0.00476159, + 0.07758578, + -0.043162595, + 0.004153978, + -0.09794874, + -0.034528423, + -0.041000713, + -0.019496838, + 0.02352829, + 0.021200543, + 0.03649093, + 0.007344056, + 2.8320996E-4, + -0.05188191, + -0.021783063, + 0.03137725, + -0.011254725, + 0.08762034, + 0.040857825, + 0.037625402, + -6.119888E-4, + 0.033347953, + -0.016667843, + -0.0034033314, + 0.025649019, + -0.07692195, + 0.020533033, + -7.7796006E-4, + 0.07086272, + -0.03686712, + 0.010451843, + 0.0017035208, + -0.08335266, + -0.041757863, + 0.0058431523, + -0.009005944, + 0.020052953, + 0.105734296, + -0.014208301, + 0.031051682, + -0.03355011, + -0.02249691, + 0.056352153, + 0.0041188817, + -0.0077646384, + -0.017230257, + 0.09299904, + 0.036002252, + 0.0731805, + -0.02711105, + 0.016591843, + 0.04317671, + -0.029380145, + 0.054177534, + 0.043945838, + 0.008296032, + -0.059364572, + -0.049546666, + 0.008637618, + -0.045460846, + -0.013528838, + 0.016345432, + -0.006808429, + -0.03236768, + -0.01487283, + -0.010285199, + -9.922999E-4, + 0.04210686, + -0.042777617, + 0.0308362, + -0.026349526, + 0.01994251, + 0.018905139, + -0.03978694, + 5.201773E-4, + 0.006625155, + -0.042713545, + -0.026035756, + 0.0126976585, + 0.07682156, + -0.013158932, + -0.016077826, + -0.0011799318, + -0.06346492, + 0.003105672, + 0.005924467, + 0.049504817, + 0.022244822, + -0.03656478, + -0.009129169, + 0.017394805, + -0.041454703, + -0.0735703, + -0.037418377, + 0.011014384, + -0.021056077, + -0.032647252, + 0.007972461, + -0.021369228, + 0.017639307, + 0.0043847314, + 0.011240356, + 0.011899871, + -0.024136743, + 0.0026864293, + 0.02184476, + -0.022777738, + 1.7671193E-5, + -0.030963812, + -0.03222883, + 0.009902981, + -0.04765928, + 0.0057209134, + -0.016929742, + -0.018787976, + -0.016549647, + -0.023328226, + -0.011494261, + -0.02263269, + -0.030476792, + -0.026506227, + 0.003916013, + -0.026284581, + 0.04456193, + -0.03656262, + 0.012753598, + -0.021128884, + 0.065621845, + -0.023179194, + 0.024543174, + -0.01920351, + -0.053024318, + 0.039749894, + 0.03821175, + -0.0035102463, + 1.5639984E-4, + 0.0041896026, + 0.02495275, + 0.02387716, + -0.026243825, + 0.008568524, + 0.024510644, + 0.014269027, + -0.020084595, + -0.032183282, + -0.023566581, + 0.047722023, + 0.0056944666, + -0.00486662, + -0.026029397, + 0.03245411, + -0.019630145, + 0.030575193, + 0.014473561, + -0.05282944, + 0.008859439, + -0.009871734, + 0.012962348, + 0.0044317227, + -0.016598314, + 0.011149054, + -0.026154289, + 0.04182614, + 0.006955618, + -0.06486262, + -0.035734233, + -0.008958716, + -0.021430418, + 0.02116328, + 0.052238077, + 0.01059481, + 0.0046920837, + -0.044529025, + -0.039616562, + 0.02436585, + 0.02581589, + -0.027728025, + -0.018085832, + -0.007449992, + 0.009176543, + -0.008915303, + -0.04254093, + -0.017145967, + 0.013553671, + 0.04653866, + -0.01460193, + 0.0010739265, + -0.017794242, + -0.011537752, + -0.079385534, + -0.014224699, + 0.038159862, + 0.055782013, + -0.042982534, + 0.010775874, + -0.055076793, + -0.017121516, + 0.014435094, + -0.0040702377, + -0.0043308414, + 0.01574136, + -0.046209976, + -0.05228526, + 0.020183919, + -0.007183104, + -0.017968677, + 0.0070291176, + -0.005562615, + -0.05371335, + 0.004088802, + 0.019998064, + 0.010965953, + 0.027363466, + 0.056034107, + -0.044129416, + -7.577281E-4, + 0.015726192, + 0.012185756, + -0.05561801, + 0.042298067, + 0.03340269, + 0.022366088, + -0.026787922, + -0.014148783, + -0.025548298, + 0.022548491, + -0.013322369, + -0.019854192, + 0.06490002, + 0.031578265, + -0.042853504, + -0.039946526, + -0.015899694, + 0.030348223, + 0.04559382, + -0.031918976, + -0.0027983158, + -0.0071800933, + -0.0044387295, + 0.021742364, + -0.01540137, + 0.025243334, + 0.0033267601, + 0.037230406, + 0.0021303806, + 0.009354974, + -0.0140947895, + -0.028943896, + 0.010056615, + 0.020508671, + 0.024759196, + -0.045599423, + -0.044151183, + 0.025207529, + 0.006216221, + 0.0017826781, + -0.026615994, + 0.06725705, + -0.030217227, + -0.036583565, + 0.0027356106, + 0.020035738, + -0.008583841, + 0.03441768, + 0.01368216, + -0.008513154, + -0.028157203, + -0.025946116, + 0.011370383, + 0.020566072, + -0.02467382, + -0.012750066, + 0.035677135, + 3.1792352E-4, + -0.013244474, + 0.05678372, + -0.011804038, + -0.022810139, + 0.018144181, + -0.0017967162, + -0.026758946, + -8.746855E-6, + 0.009484917, + 0.022345345, + -0.008335407, + 0.0074044988, + -0.06492445, + 0.064564586, + 0.041994847, + -0.021160066, + 0.0022841673, + 0.0036654612, + 0.02024841, + -0.023036141, + -0.01447222, + -0.0035105094, + -0.019968169, + -0.028117755, + -0.019642914, + 0.0022727535, + -0.019570569, + -0.07066998, + 0.013168093, + -0.039709307, + 0.033938117, + 0.005356674, + 0.026232611, + -0.023181109, + 0.03529229, + 0.003143303, + 0.053223573, + -0.07394579, + 0.03531367, + -0.04828565, + -0.0070441444, + -0.016458517, + 0.0417607, + 0.010601883, + -0.07016923, + -0.06502012, + -0.0316351, + 0.010124004, + 0.0010350103, + -0.0021622505, + 0.020830426, + -0.005671047, + -4.0912305E-4, + 0.06053452, + 0.023958415, + -0.02189529, + -0.01458112, + -0.079532914, + 0.006373487, + -0.0027732947, + 0.039106693, + -0.046342816, + 0.022759289, + -0.02142323, + 0.010306587, + -0.02293203, + -0.024529468, + 0.008224779, + -0.02544365, + -0.012522968, + 0.07996568, + 6.8905305E-5, + 0.007617971, + 0.03521892, + 0.0023288918, + -0.028668102, + 0.011722649, + 0.059490375, + 0.03293504, + 0.038234964, + -0.0069016977, + 0.03651238, + -0.03676235, + 0.03586295, + 0.029811855, + -0.059231438, + 0.046487156, + -0.015154559, + 0.036988772, + 0.005111226, + 0.011154678, + 0.026655253, + 0.047975004, + -0.011665413, + 0.027530923, + -0.08369904, + 0.046876047, + -0.04412519, + 0.04569576, + -0.012834659, + 0.016971564, + -0.0067433855, + 0.052714627, + -0.026038373, + 0.0093373945, + -0.037918173, + -0.020321093, + -0.005879752, + 0.022214722, + 0.03973452, + 0.0057245055, + -0.039195918, + 0.008902946, + -0.026913, + 0.062048476, + -0.004747302, + -0.010090818, + 0.035997484, + 0.034472696, + -0.004209743, + -0.020130064, + 0.04693009, + 0.016813802, + 0.049595013, + -0.02207182, + -0.04369741, + -4.333757E-4, + -0.025162006, + 5.119449E-4, + 0.0060214843, + 0.009422578, + 0.029173004, + 0.0031229341, + 0.04350905, + -0.008025466, + 0.043182872, + -0.005200878, + -0.018829493, + -0.0032577624, + -0.04110143, + 0.024924863, + 0.028750539, + -0.0122235445, + 0.023972593, + 0.006497379, + 0.035905354, + -0.09101165, + -0.006069993, + 0.03834656, + -0.00976726, + -0.03463624, + -0.05667018, + -0.0049215844, + -0.03184216, + 0.022473887, + -0.0011594718, + 0.027855169, + 0.051244013, + -0.029615879, + -0.0043875356, + -0.05656084, + 0.021318654, + -0.0072973976, + 0.019620126, + -0.015283833, + -0.020734299, + 0.003133791, + -0.040328328, + -0.029661236, + 0.054750767, + 0.010172811, + -0.0514236, + 0.04722715, + -0.0057227896, + -0.020567236, + 0.0099739665, + -0.046948414, + 0.0030341886, + -0.007200348, + -0.029059779, + 0.021187015, + -0.012298549, + -0.027023932, + -0.035521146, + 0.02153149, + 0.052961875, + 0.045184605, + -0.05004603, + -0.024536747, + -0.03132162, + 0.0646432, + 0.024181038, + -0.03308365, + -0.007848778, + 0.017101167, + -0.0053176894, + -0.035708208, + 0.0112784235, + 0.07672561, + -0.010288397, + -0.009653972, + 0.021503538, + -0.058625743, + -0.056294378, + 0.008782097, + 0.033382032, + 0.009737213, + 0.020950973, + 0.01572906, + -0.009553449, + 0.015277267, + 0.014342469, + 0.010904444, + -0.029990692, + -0.011220662, + -0.0072210953, + -0.038909923, + 0.023719301, + -0.028193919, + 0.035909507, + -0.030765971, + 0.07590382, + 0.01184857, + -0.020487316, + 0.005372473, + 0.03106536, + -0.031393804, + -0.03862744, + 0.027286647, + 0.01852425, + 0.031053359, + -0.0015237116, + 0.014093056, + 0.008422914, + 0.040152185, + -0.0422942, + -0.0026059644, + -0.031481624, + 0.037383795, + 0.030144062, + -0.03670027, + -0.024875147, + 0.015774453, + 0.045188557, + -0.0032784257, + 0.023557916, + 0.032311656, + 0.05506985, + -0.00952814, + 0.010752204, + -0.012821249, + 0.014742508, + 0.0022471328, + -0.007870575, + 0.020282084, + -0.011362026, + -0.012747017, + -0.042188387, + 0.020870278, + -0.039657507, + 0.015836336, + -0.06722526, + -0.010745937, + 0.04693958, + 0.06603188, + 0.04336897, + -0.017589454, + 0.005295273, + -9.2144146E-5, + 0.015306972, + -0.030599931, + -0.054846164, + -0.028144676, + -0.015813947, + -0.012777315, + 0.037692174, + -0.019677674, + -0.030851936, + -0.02464193, + 0.01931199, + 0.040452678, + 0.035253454, + 4.074158E-4, + -0.030093694, + -0.025904007, + -0.059520826, + -0.004803772, + 0.03927469, + -0.045902915, + 7.442189E-4, + -0.005718759, + 0.012258808, + -0.012742399, + 0.018510165, + -0.012960887, + 0.029485146, + 0.020684684, + -0.05434562, + -0.02103035, + 0.07869559, + -0.065167546, + 0.019804204, + -0.022618001, + -0.04574233, + -0.03178586, + 4.5301637E-4, + -0.010159414, + 0.019522483, + -0.039349344, + 0.07027946, + 0.006736365, + -0.061614852, + -0.011796478, + -0.037204947, + -0.021501295, + 0.08849191, + -0.02190987, + 0.042104024, + -0.0162912, + 0.011234366, + 0.015370962, + 0.01973575, + 0.05887546, + 0.04219555, + -0.02069795, + -0.026574237, + -0.008555611, + -0.055143952, + -0.008577315, + 0.009358532, + 0.026211247, + 0.016902799, + -0.01082335, + 7.8645523E-4, + -0.0066037416, + -0.0048028007, + -0.040409658, + -0.047902398, + -0.02424259, + 0.016660025, + 0.0042673033, + -0.006302782, + -0.04432734, + 0.013176321, + -0.0037660156, + 0.040143214, + -0.01202934, + 0.010296354, + -0.02805113, + 0.054017887, + 0.012472745, + -0.031389892, + -0.003617906, + 0.018315477, + -0.00206693, + -0.03211091, + 0.022766283, + 0.030877914, + -0.042820152, + 0.05092846, + -0.018070217, + -0.02281449, + 0.050497785, + -6.516321E-4, + 0.011881413, + -0.0053326627, + -0.019377235, + 0.105635814, + -0.010897815, + -0.03722439, + 0.008891298, + 0.009025886, + -0.025403818, + -0.003644731, + 0.012763076, + 0.022371816, + 0.0035131883, + -0.069567464, + -0.043330632, + -0.012715149, + -0.011064728, + 0.03366322, + -0.031698976, + -0.013707295, + -0.0567542, + -0.016951675, + 0.020360626, + 0.0403694, + 9.3306275E-4, + -0.011013762, + 4.957605E-4, + -0.03608977, + 0.030389288, + 0.030477641, + -0.007316389, + -0.01980338, + -0.024462093, + -5.26241E-4, + 0.05940618, + -0.044960495, + 0.0357019, + -0.016176006, + 0.041679017, + -0.01383949, + 0.017621018, + 0.010843686, + 0.059579186, + -0.030497044, + 0.018491123, + -0.036883183, + -7.534867E-4, + -0.010565185, + 0.028384287, + -0.0018158607, + 0.0024345124, + 0.044903465, + 0.0037850994, + 0.014839529, + -0.004922314, + -0.010178527, + -7.84721E-4, + 0.048642803, + 0.03200597, + -0.0018274798, + 0.06715094, + 0.028477032, + -0.011186619, + -0.0075545595, + 0.00914856, + 0.0029805948, + 0.011515498, + 0.025300516, + 0.04147649, + 0.014411429, + 0.004146005, + -0.04555893, + -0.009864476, + 0.009685551, + 0.011027642, + 0.043573283, + -0.04402359, + 0.044759538, + 0.049304675, + 0.058793984, + -0.0015807173, + 0.040980566, + 0.0033349479, + -0.011578281, + 0.041454013, + -0.041728944, + -0.04252992, + 0.0011844208, + -0.039213557, + 0.068103105, + -0.01720507, + -0.03161355, + -0.022784725, + 0.07907038, + -0.047674347, + -0.025266264, + -0.009316002, + 0.008849899, + -0.004987818, + 0.011018132, + 0.04338839, + -0.010388156, + 0.025700307, + -0.026569968, + 0.052921183, + -0.013034882, + 0.01675398, + 0.024372421, + 0.043777708, + -0.0013352112, + -0.0057750237, + -0.010514202, + -0.06926913, + -0.021111796, + 0.011429288, + -0.02513993, + 0.023532774, + -0.0032329073, + 0.014193524, + 0.06289064, + 0.022673715, + 0.0011512749, + 0.005893522, + 0.013868097, + 0.036241077, + -0.027411127, + -0.01877195, + -0.010024487, + -0.057345025, + 0.011226163, + 0.020104999, + 0.003214233, + -0.033062957, + 0.028646557, + 0.005758079, + 0.021800937, + -0.05032251, + 0.02624567, + -0.006425779, + 0.016305465, + -0.026087081, + -0.043175176, + -0.03763872, + -0.011088568, + 0.0133076105, + -0.0036171079, + 0.0014904798, + 0.0037470986, + 0.0051559955, + 0.002805675, + -0.008986073, + -0.0072251493, + -0.0071492116, + 0.01912412, + 0.03841482, + -0.03001923, + 0.03994712, + 0.033746734, + -0.01938694, + 0.017252738, + -0.01736016, + 0.010847487, + -0.04779773, + -0.0053776246, + -0.057166256, + -0.010505485, + 0.0068006758, + 0.0049589025, + 3.0579307E-5, + -0.016790792, + 0.024835365, + -0.02774042, + -0.0057527376, + -0.024450136, + -0.0152154425, + 0.052276954, + 0.0074329423, + -0.02540249, + 0.019326221, + -0.022096364, + 0.008192463, + 0.0077162734, + -0.020305533, + -0.011222685, + -0.04112101, + 0.011831775, + -0.037772294, + 0.022809744, + 0.059012275, + -0.014354918, + -0.018239817, + -0.02685891, + 0.029822147, + 0.0019310969, + 0.015779464, + -0.004274614, + 0.02348891, + -0.006264137, + -0.012711716, + -0.060153354, + 0.013107812, + 0.024701266, + -0.05789765, + -0.048153758, + -0.032972332, + -0.010861483, + -0.025580693, + -0.025932249, + -0.022047145, + 0.060004164, + 0.0015496276, + 0.014184044, + -0.055099286, + 0.035218317, + -0.0150338225, + 0.057171676, + 0.016636562, + 0.031110857, + 0.039568473, + -0.035793222, + 0.043102, + 0.07288586, + -0.016400548, + -8.65781E-4, + 0.014372435, + 0.028377006, + 0.011012712 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.2.json b/common/search/src/test/resources/test_documents/images.different-licenses.2.json index 92577da83..834a52c96 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.2.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.2.json @@ -1,1339 +1,5252 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.524305Z", - "id": "sh4pa61s", - "document": { - "modifiedTime": "1966-02-22T19:31:55Z", - "display": { - "id": "sh4pa61s", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.305483Z", + "id" : "giazc2e0", + "document" : { + "modifiedTime" : "1972-05-08T14:38:37Z", + "display" : { + "id" : "giazc2e0", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Oyi.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", + "credit" : "Credit line: zIBsYJowN", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Oyi.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", + "credit" : "Credit line: zIBsYJowN", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#3B1B5D", - "source": { - "id": "ua0nlv8f", - "title": "title-j7FCdQntAp", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#F97A25", + "source" : { + "id" : "dgy6ppuz", + "title" : "title-ZRfddXdoSH", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "sh4pa61s", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ua0nlv8f", - "sourceIdentifier.value": "m5ScViX5Cs", - "identifiers.value": ["m5ScViX5Cs", "sEWN4eKne3", "dqUgoMxRO4"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-j7FCdQntAp" + "query" : { + "id" : "giazc2e0", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "dgy6ppuz", + "sourceIdentifier.value" : "tZNKYb9Bom", + "identifiers.value" : [ + "tZNKYb9Bom", + "DFQdJPljb6", + "5hca3vUTYl" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-ZRfddXdoSH" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.03392058, 0.013269069, -0.01891149, 0.015995538, 0.002152032, - -0.015284881, 0.017348355, -0.019189255, 0.009792197, -0.0058928146, - 0.0068976786, 0.008790922, -0.015691994, -0.016229408, 0.0071311565, - 0.0092823105, 0.025689686, 0.038345177, -0.013805, -0.003932139, - -0.0040412433, -0.008750528, -0.013102232, -0.017038204, 0.0055415444, - 0.032168478, 0.013113208, -0.027691389, 0.012607461, -0.0010974508, - -0.02363804, 0.015622, -0.012349237, -6.818475e-4, 0.027291266, - -0.009692329, -0.02410293, -0.013130102, -0.0038904247, -0.024903104, - 0.02447414, 0.01365316, -0.012672727, -0.0041957158, 0.015247995, - 0.0010912541, 0.008824376, -0.0075303647, -0.018895725, 0.0041179215, - -0.011684498, -0.020592872, -0.01987203, -0.022794794, -0.010099136, - 0.021465031, 0.012010982, -0.004097316, 0.008349856, 0.025200196, - 0.0099138785, 0.011856135, -0.0068547344, 0.015441659, 0.0023072753, - -0.0038982877, 0.0035092481, 0.010459021, 0.007837403, 0.0010890777, - 0.0172017, -3.0999022e-4, -0.006952983, 0.010863371, -0.01110811, - -0.023190014, -0.0023568317, -0.016537564, -8.741528e-4, -0.009830263, - -0.0032472615, -0.022159602, 0.0136708105, -0.02952473, -0.0116894655, - 0.030237796, -0.03954329, -0.018979833, -0.015456955, 0.004545145, - -0.014950836, -0.008946524, -0.0026689067, -0.0050359, 0.0032013173, - 0.019177359, 0.031892475, -0.005072024, -0.011923372, 0.019490683, - 0.0121060945, -0.018555114, -0.02943623, -0.02498972, 0.014746958, - -0.03489296, -0.0038709599, 0.004328674, 0.011739776, 0.0027387326, - 0.009573157, -0.004631643, -0.002417873, -0.0043583126, -0.0075108563, - 0.003878921, -0.02365819, 0.008522976, 0.011432324, -0.012238026, - -0.008857675, -0.0035355957, 0.013480895, 0.020320948, -0.02315006, - 0.0053197383, 0.006545709, 0.0027263917, 0.0152527075, -0.031196082, - -0.006020413, 0.0020182969, 0.003446961, -0.018780893, -6.0759095e-4, - 0.0013341836, -0.009917064, -0.009966416, 0.017917447, -2.5231097e-5, - -0.0018834638, -0.012333173, 0.0069388687, 0.03228871, -0.0118487645, - 0.023865208, -0.021755492, 0.034368698, -0.009904743, -0.018088087, - -0.0016360908, 0.02670231, 0.01546461, 0.038019978, 0.006400631, - 4.439636e-4, -0.011251072, 5.7560595e-4, -0.0024028479, -0.008297761, - -0.022403361, 0.0076455274, 0.020574529, 0.0013901811, -0.024346171, - 0.023544675, -0.015204996, -0.024218721, -0.023396743, -0.017931074, - -0.02364528, -0.0067893527, -0.029807895, -0.021627067, -0.012523115, - 0.02434014, 0.0064449, -0.009588865, -0.023839274, -0.0027825087, - -0.006004501, -0.003075595, -0.010353658, -0.028093511, 0.0087898355, - -0.014292369, 0.00813994, 0.007321982, 0.027502079, 0.0072141164, - 0.038041834, -0.018628556, 0.009582392, 0.01991858, 0.00262031, - 0.014499611, -0.0076932968, -0.0046492107, -0.007412898, -0.012691787, - 0.01274144, -0.016216807, 0.024785066, -5.653326e-4, 0.0046179146, - 0.012435964, 0.019175822, 0.004176737, -0.006103716, -0.020398252, - 0.009551726, -0.005478281, -0.033463653, 0.0051291296, -0.010400196, - -0.0103700785, 0.016470965, -0.024738304, -0.0039823228, -0.008364665, - -0.003458358, 0.017496029, -0.008685259, -0.034179997, -0.01974483, - 0.011977045, 0.019907637, 0.013259358, 0.04773498, -0.0386411, - 0.03252082, 0.018193975, -0.006433287, 0.03427742, -0.010740619, - -0.013078598, 0.0022469983, -0.0048433235, 0.0057043694, -0.015842656, - -0.0046982258, 0.003435217, 7.534819e-4, -0.008220915, 0.01624565, - -0.009674243, -0.0013636338, -0.021246128, -0.005591327, 0.0052784705, - 0.009590672, 0.008154479, 0.0038131753, 0.0011085714, -0.016864033, - -0.0013302782, -0.010594088, -0.010836832, -0.017561331, -0.020028403, - -0.004557585, 0.012762041, -2.918535e-4, -0.03221689, -0.014362317, - 0.012327364, -0.0053076, -0.01138984, 0.00511841, 0.0047070743, - -0.0071939025, -0.006728686, -0.0030347004, -0.013995218, -0.0019780418, - 0.009968671, 0.009530483, -0.0043227365, -0.005844896, 0.004404421, - 0.016023269, -0.0058908123, 0.039688453, -0.0064361994, 1.678731e-4, - 0.0020134372, -0.009541706, -0.018651873, 0.03026093, -0.009698147, - -0.005385625, 0.011613153, -0.011587565, -0.0025997376, 0.012904211, - 0.045993555, -0.011385312, -0.0051791025, 0.007132875, 1.04145875e-4, - 0.012074034, -0.019462788, 0.001988742, -0.012960203, 0.015654663, - 0.0037239257, 0.001122813, 0.0073760673, -0.014444866, 0.005961541, - 0.019158943, -0.0021353883, -0.022351436, 0.013391866, 0.008753306, - -0.009078672, 7.852644e-4, 0.027643938, 0.01555364, -0.008231167, - -0.008832857, 0.020911518, -0.0065908288, -0.028850654, 0.018639028, - 0.006244335, -0.029199429, 0.006222594, 0.009687328, -0.01697732, - -0.02005793, 0.014417534, 0.0028155234, 0.017858712, -0.002729443, - 0.0024787306, -0.014973829, -0.018465564, 0.004374751, -0.020223802, - -0.0047298716, -0.021814113, 0.023716208, -0.010835272, -0.012456308, - -0.0055013807, -0.008769048, -0.0035198447, 0.007288107, -0.0019676343, - -0.01520105, -0.025476808, 0.014552699, -0.008025435, 0.014000375, - 0.023448715, -0.0073030544, 0.0013977808, 0.018308358, 0.030741392, - 0.0026170148, -0.010284918, -0.00428529, 0.008198646, -0.00970382, - -0.012978675, -0.017685605, -0.0036233088, 0.003238771, -9.720048e-4, - 0.007891731, -0.025132732, 0.004635378, -0.02004926, -0.007710972, - 0.004760282, -0.009440221, -0.017220411, 0.0010030471, -0.008956672, - 0.013844074, -0.0027407724, -0.002079635, -1.2672572e-4, -0.005320972, - 0.026699228, -0.03150216, 0.011247704, 0.0042707874, 0.011658893, - 0.0053848424, 0.016114973, 0.0074864365, -0.0042435657, 7.015121e-4, - 0.055567056, 0.007812198, -0.006225826, 0.00200694, 0.008198954, - 0.014005833, -0.029623084, -0.013856659, -0.0072082793, -0.01653775, - 0.0066359043, 0.011587324, -0.0046112053, 0.014582632, 0.010093641, - -0.018719047, 0.013757048, 0.012816184, 0.0059329057, 0.020412147, - -7.294474e-4, -0.00691936, 0.00970043, 0.01959947, -5.9278414e-4, - -0.004160775, -0.016877368, -6.424707e-4, 0.066557124, -0.04240246, - 0.015458657, 0.00917825, 0.019799361, 0.01992089, -0.0070473147, - 0.010358167, 0.0080799805, -0.0028461632, 0.0035048828, 0.007988477, - 0.0015133789, -0.03454095, 0.019098016, 0.0040833927, 0.022079093, - 0.0038902643, 0.0071233194, 0.009690013, -0.02542694, 0.017612815, - -0.005765524, 0.023566207, 0.0025179968, -0.008800369, 0.010013244, - 0.003909018, 0.0066828527, 6.968257e-5, 0.007965852, -0.008456699, - 0.013746532, -0.007382471, -0.011455317, 0.012343122, -0.008853682, - 0.024423655, 0.030816235, 3.4503493e-4, -0.013284956, 0.003712563, - -0.011205484, -0.009498159, -0.011351429, 0.012671246, 0.00580505, - -0.0028228993, 0.019345125, -0.0068524503, 0.014931848, 0.0011522346, - -0.009540281, 0.017568376, 1.9529926e-4, -0.01715699, 0.008985568, - 0.007858448, -0.0016101843, 0.022336802, 0.010933912, 0.009383538, - 0.027218575, -0.00374849, 0.013801873, 0.0242338, -0.00603007, - 0.010192949, -0.015894378, 0.00856336, 0.0035743052, 0.0092976345, - 0.003167918, 0.014193227, 0.020581609, -0.0013016807, -0.014292329, - -0.007669334, -0.006168807, 0.0061768135, 0.019958833, 0.022122608, - -0.0025906214, -0.0047560576, 0.005189076, -0.0022889026, -0.007468961, - 0.013824507, 0.014168872, -2.291237e-4, -0.0011246736, 0.020488577, - 0.004738666, 0.009442191, -0.024292966, -0.018357366, -0.004923872, - 0.03352305, 0.006210753, 0.025766263, -0.014523137, 0.008216531, - -0.020568633, 0.008487687, -0.012936759, -0.0018240911, 0.0015722713, - -0.016590677, -0.00796, -0.001551381, 0.017367715, -0.0055257655, - -5.7697215e-4, 0.013933875, 0.0023335638, 0.003235996, -0.008918948, - 0.012010479, -0.0012160593, 0.008015912, -0.0031739364, -0.005935805, - -0.024570556, 0.0040493053, -0.019006101, -0.01664197, -0.014387358, - 0.017951818, 0.013728759, 0.0012674215, -0.026646791, -0.0013729124, - -0.012315891, 0.0041720923, -0.0027682383, -0.008896204, 0.020576347, - 0.0059319227, 0.014022952, -0.003869374, 0.0033519138, 0.001718219, - 0.01505416, 0.0027366478, 0.0036087928, -0.0036483887, 0.0050603934, - 0.0053467937, 0.01826619, -0.024473732, -0.008250453, -0.019337384, - 0.00740071, -0.0053783273, 0.016601328, 0.031333305, 0.0076539167, - 0.0020104104, 0.027759973, 0.017115071, 0.02748977, -0.00969706, - -0.007157844, 0.017986905, 0.012599296, 0.015560752, -0.01728083, - 0.0027919523, -0.020586828, 0.018780055, -0.024277305, 0.00827568, - 0.021234235, -0.010727195, 0.0053681727, 0.0120326225, 0.0030903318, - -0.003694492, -0.026894469, -0.005665825, 0.021331245, 0.022138964, - 0.0086355815, 0.021149362, 0.013470787, 0.0054095415, 0.010074748, - 0.013650853, 0.004947477, 0.024864402, 0.01002051, -0.012817725, - -0.006682457, -0.009364658, -0.012084548, -0.036878545, 0.007834414, - 0.0076337564, 0.011309721, 0.017008625, -0.026917683, 9.81134e-4, - -0.015421113, 0.010583048, 0.017925683, -0.00941209, 0.0068371934, - -0.015450755, -0.012012576, 0.0045595067, -0.01597568, -0.0037006899, - -0.010472636, -0.0148217175, -0.0106882, 0.022932757, -0.0025231326, - -8.075519e-4, 0.007794195, 0.004795971, 0.0012540501, 0.010238248, - -0.009734994, -0.004584036, -0.01652803, -0.008528041, 0.014269307, - -0.020898772, 0.010174193, -0.014804446, 0.005526211, 0.022417713, - 0.011903279, 7.175338e-4, 0.0022188707, -0.02825223, -0.014727578, - -0.0017949973, 0.0077312463, -0.0057993103, -0.003961568, 0.012869288, - 0.02183621, 0.013200474, -8.873247e-4, -0.01634545, 0.020181948, - 0.007731551, -7.4262137e-4, 0.0018668191, -0.017724318, 0.024734205, - -0.009457009, -0.011821404, -0.01807932, -0.008105869, 0.010087609, - 0.039707407, -0.0019862072, -0.024563167, 0.036443, -0.013894258, - 0.014820061, -0.0014603786, -0.00713906, 0.023831135, -0.008693515, - -0.026174175, -0.0044269497, 0.0036784664, -0.026028594, -0.0106109595, - 0.0270946, 8.900285e-5, -0.019254265, -0.012291681, -0.0084352, - -0.012867561, -5.8042863e-4, 0.02500617, -0.003747209, -0.0106182, - -0.019531678, -0.037135046, 0.016269363, 0.017380081, 0.034708835, - -0.020704245, 0.020322653, 0.004820371, 0.013227461, 0.033682838, - -0.006796307, 0.0013336051, 0.0078110513, 0.004231631, -0.008480123, - 0.0024085548, 0.014040276, 0.005462943, 0.020926116, 0.021899013, - -0.02300727, 0.009705655, -0.0063612214, 0.0029475363, -0.016539238, - 0.012024827, 0.00664585, -0.0045877155, 0.018327769, 0.012171021, - -0.0042797322, 0.010693656, 0.0120999245, 0.018529598, 0.0037252328, - 0.01614343, -0.010749936, 0.025361443, 0.0025531754, 0.027184566, - -0.009475744, -0.010246688, -0.003237373, -0.022285674, -0.038116295, - -0.007284927, 5.562673e-4, 0.009438697, -0.020469468, -0.0073024835, - -0.009502816, -0.003948278, -0.00841733, -0.03219734, 0.024616804, - 0.0014857578, -0.027760062, 0.0033542884, 0.022001103, -0.0048431978, - -0.0097500635, -0.0074937455, 0.012692919, 0.022399489, -0.014345618, - 0.0083052, 0.002050521, 0.012779465, 0.028360238, -0.021172322, - -0.0027757608, 0.018289322, 0.019654578, -0.0064799655, -0.0015430769, - 0.010476771, 0.014690913, 0.012750064, 0.003431321, 0.016162908, - -0.028807329, 0.009462728, -0.023083525, 0.01947582, -0.002049466, - 0.004294197, -0.023176137, 0.013312069, -0.01783531, 5.1849015e-4, - -0.0069086514, -6.8787776e-4, 0.010678709, -0.01018037, -0.013901091, - 0.021206332, -0.0032639764, -0.02822539, 0.00827286, 0.018079456, - -0.022002678, -0.0025454778, 0.017113283, -0.005595032, 0.016412929, - 0.01219659, -0.00694482, -0.0067859325, -4.886533e-4, -0.010346203, - -0.012745346, 0.0075237295, 0.0098111695, -0.024820533, -0.014940302, - -0.002023049, -0.009662174, 0.027321218, -0.0070101507, 0.007195459, - -0.01017648, -0.0023545737, 0.02104385, -0.03241268, 0.009450033, - 0.0039524506, -0.004682735, -0.022383079, -0.0131791355, 0.02492979, - -0.0085492125, 0.012254005, -0.022656338, 0.0039840816, 0.019593412, - 0.017344944, -0.0019223451, -0.01471996, 0.020534568, 0.0072109555, - 0.018458521, 0.007175267, -0.009857451, 0.0022606282, 0.002813557, - -3.2539642e-4, 0.04059971, 0.007101609, -0.006930385, 0.010417384, - 0.02105793, 0.003733031, 0.01579057, 0.0043800343, -0.011535097, - 0.008157046, 0.01576719, -0.036073364, 0.013123704, -0.001754352, - -0.003614273, -0.013467952, 0.013072782, 0.0027933533, 0.006738863, - 0.04549101, -0.0045836093, -0.007027299, 0.023854438, -0.03133341, - 0.020948514, -0.007731379, 0.0010931883, 0.014722636, -0.005228963, - -0.01957342, -0.01679847, -0.01821376, -0.010375668, 0.0333452, - -8.7612413e-4, 0.0043792683, 0.025053382, 0.0046445313, 0.020270148, - -0.0071398127, -0.0030356874, -0.020144243, -0.002702297, -0.008079426, - -0.020126844, 0.006981244, -0.00587413, 0.008179523, 0.02314503, - -0.01975487, 0.0031398123, 0.01957203, -0.0019507247, 0.0073542423, - -0.014570554, 0.012383043, -0.009589671, 0.015911853, -0.0034002138, - -0.022205727, 0.004516855, 0.010027276, -0.023026513, 0.023941739, - 0.02067458, -0.013995633, 0.008973247, 0.010521697, 0.008837319, - -0.009536882, 1.9439044e-4, -0.007986691, -0.021331161, 0.005652128, - 0.00425224, -0.0075951614, -0.010568753, 0.006197206, 0.011313009, - 0.004108863, -0.0019933155, 2.8750734e-4, -0.016892182, 0.018314082, - -0.025087196, 0.01989899, -0.0031588313, -0.0027138186, 0.0058783307, - -0.008841332, 0.007943444, -0.0065852446, 0.013890104, -0.01118028, - -0.019180844, 0.011511847, 0.020136185, 0.01258821, -0.0026142239, - -0.0067958487, 0.0020560515, 0.0140527785, -0.017960707, 0.009583034, - 0.01784725, -0.005134132, 0.008219481, 0.0039239833, -0.013089786, - 0.008722195, 0.009533017, -0.03767189, -0.011342086, -1.5221286e-4, - 0.0027927419, 0.011499664, -0.016649898, 0.0148557415, -0.026068687, - -0.0017933819, -0.0043989476, -0.022481387, 0.0016398297, -0.00888476, - -0.011329512, 0.03519383, -0.01823792, 0.007302813, -0.027361622, - -0.010414782, -0.007541748, -0.016756644, -0.009014182, -0.022761256, - 0.012854704, -6.852822e-4, -0.0132427355, 0.005123715, -0.0012720773, - 4.35227e-4, -0.0040050913, 0.019337792, -0.010942937, -0.041189577, - -0.023393938, 0.025121458, 0.0038555693, 0.014287565, -5.476201e-4, - 0.017395083, 0.013471497, 0.003672207, 0.01973404, 0.022168875, - 0.027857296, -0.017890235, 0.0024108149, -0.0076150973, -0.016049488, - -0.006868569, -0.02342748, 0.0024896716, -0.00976746, 0.0014355032, - 0.0012100191, 2.527282e-4, -0.0019132105, -0.0071624434, -0.007947888, - 0.012830744, 0.016488278, 0.004375089, 0.034176607, 0.020619914, - -0.0037346007, -0.0077495985, -0.023403684, 0.0030956168, -0.01465434, - 5.9854804e-4, -0.0065739728, -0.023408232, -0.0066642347, -0.017605036, - 4.2536104e-4, -0.0064021493, -0.015933111, -0.0070162793, 0.011160885, - 0.013343948, 6.135822e-4, -0.004905958, 0.02633218, 0.005942754, - 0.01740926, 0.007632336, -0.016675683, -0.02530258, -0.022060778, - 0.0057642506, -0.030847667, 0.0038213045, -0.041709635, 0.0016399694, - 0.008268674, 0.016644865, 0.0056078406, 0.029706849, -0.0028949063, - -0.018758968, -0.0069162473, -0.026411436, 0.011724274, 0.0045692474, - -0.01966723, -0.0072024907, 1.3168609e-4, -0.011070503, 0.0021526502, - -0.014751152, 0.0022389852, -0.0053142407, -0.020186484, 0.0098892, - -0.0025881722, -0.013269628, 0.0039755143, -0.039947163, 0.006293386, - 0.013168562, 0.01673524, 0.0020533556, -0.0021289987, -0.01538084, - 8.97879e-5, 0.011939038, 9.314423e-4, 0.019435126, 0.011944795, - -0.0055252537, 0.019033197, -0.0023375086, -0.022398628, -0.015623256, - 0.01021488, 0.01220007, 0.0063816025, -0.009762876, -0.017791016, - 0.009063111, 0.0020375997, 0.042625427, 0.01851856, 0.006651824, - 0.01518525, 0.0061732344, -0.026196167, -0.013440054, -0.0062280158, - -0.011845184, 0.020516159, 0.0053787017, 0.032055613, -0.0076641445, - -0.0065465947, -0.027120465, -0.011661124, 0.007520689, -0.030702677, - 0.012774944, -0.026638173, 0.014291605, 0.0041793156, 0.0027436665, - 0.0017813724, 0.009599091, -0.0067783217, -0.010750324, 0.003932933, - 0.0012852508, -0.010077432, -0.01715722, -0.013908598, 0.008264112, - 0.027654301, -0.019699516, 0.0054954854, -0.016539972, -0.016131232, - -0.016186468, -0.0072412253, 8.3269615e-4, -0.008774024, 0.004633297, - 0.0069327424, -0.0056028147, -0.035219785, 0.0299634, -0.031112852, - -0.021255955, -0.013677441, 0.0035466913, 0.0037302717, -0.013907352, - 0.036231242, 0.024319699, -0.016873093, -0.0043865046, 0.014976073, - -0.0040053506, 0.01992964, 0.007972632, -0.038022693, -0.017411297, - -0.005203382, -0.0060578343, 0.020332182, -0.0031857006, 0.0070024827, - -0.012808579, -0.015894802, -0.028388586, 0.00492273, 0.033520937, - 0.024325196, 0.020890325, 0.018233696, -0.022252161, -0.003839797, - -0.012039469, -0.0030457748, -0.01801438, -0.0073568714, -0.024872473, - 0.005139519, -0.020703452, 0.010422191, -0.011789911, -0.012425024, - 0.032416616, -0.015212258, 0.0011133605, -0.021627195, -0.0131674325, - -0.0068242336, 0.011438608, -0.024528816, 0.01799698, -0.015866749, - -0.0050595216, -0.018279936, 0.014032047, 0.010303608, 0.023163065, - -0.017343737, 0.012188341, 0.021693477, 0.0151765235, -0.008573934, - -0.0012275696, -0.004494035, -0.018484177, -0.020856863, 0.018167008, - -0.010452578, 0.0062021785, 0.013265345, -0.017928263, -0.006720467, - 0.0017384418, -0.026036065, 0.004027379, 0.0055851834, 0.009263175, - 0.009559093, -0.022666633, -0.014613267, -0.013608326, 0.009181642, - 0.041389327, -0.0035424, -0.019200908, -0.015742214, -0.010367229, - 0.006506154, 4.637476e-4, -0.0065068807, 0.0124247875, -5.2374357e-4, - -0.006164485, -0.012088521, -0.01252309, 0.0086280815, 0.02658938, - -0.022329755, 0.0017800876, 0.004996286, -0.021631813, 0.004283413, - -0.018748835, 0.017570848, -0.024028858, -0.020061275, 0.015328207, - 0.0064732158, 0.009973302, -0.02164196, 0.005436358, 0.01786525, - 0.01748707, -0.007422136, 0.0057532946, -0.011124748, -0.033134382, - 0.018955875, 0.003702191, -0.01059632, -0.02437334, -0.0045295437, - -0.017621554, -0.0042523313, -0.01029701, 0.016356584, 0.007459969, - -0.0029847687, -8.375589e-4, -0.006572146, -0.016139954, -0.017892703, - 0.01678642, -0.005466585, 0.016930837, 0.0062240837, 0.024937628, - 0.01036001, 3.7710444e-4, -0.012822798, -0.015135314, 0.017173452, - -0.0015827783, -2.8558622e-6, 0.025258875, -0.002897944, 0.016617931, - -0.0067727366, 0.0018111593, -0.010183081, 0.007845669, 0.0066863834, - -7.563449e-4, 0.006101394, 0.0046599335, 0.031954397, 0.0135797, - 0.0011191053, 0.029132517, -0.0024131848, 0.01197866, -0.0075457185, - -0.0042156163, 0.02341555, 0.016911343, -0.038089167, -0.016300116, - 0.012188683, -7.8291574e-4, -0.0049984343, 0.007629692, -0.0029729186, - 0.010049178, -0.0029442853, 0.0010864349, -5.352194e-4, 0.024744691, - 0.021294879, -0.0015795785, -0.019038817, -0.0030466744, 0.013863159, - 0.0133820195, -0.0018563197, 0.0065702815, 0.02514912, -0.009326496, - -0.008437454, 0.025747461, 0.006157809, -0.01292675, 0.013738729, - 0.026067678, 0.008247145, 0.011192084, -0.01696961, 0.022736622, - 0.00264072, -0.005026334, -0.0295086, 0.008206513, -0.0113074705, - -0.012809956, 0.017716447, 0.0013128546, -0.008400441, -0.012912455, - -0.0032267522, -0.00289083, 0.002535398, 0.008452199, -0.002468853, - -0.010849028, 0.0024203986, -0.012194579, -0.014021298, 0.0090773795, - -0.02685622, -0.018798037, -0.010884511, 0.016271068, -0.012033015, - 0.0039742915, 0.008278372, -0.00525164, -0.005726773, -0.031223847, - -0.013560008, 0.023806477, -0.00894349, 0.0044864328, 0.004389868, - -0.0037419628, -0.015497529, 0.014054467, -0.009016697, 0.03728261, - -0.029733049, 0.012822301, 0.002418185, -0.005277474, -0.0076802927, - 0.019003436, -0.00644607, -0.0088467095, -0.005392641, 0.015242768, - -0.018125864, 0.010319341, -0.0034596357, 0.009750767, 0.019449027, - 0.025654027, 0.018406028, -0.011122744, -0.029558387, 0.0038775015, - 0.019016469, -0.0012137389, 0.01850822, -0.010682277, 0.011008603, - -0.002409769, -0.00231959, -0.018269906, -0.0115170935, 7.2058593e-4, - -0.008659164, 0.0064121773, 0.023369892, -0.007816866, 0.005654619, - -0.0017755287, -0.019581933, 0.0112956995, -0.017237034, -0.017118275, - 0.009179394, 0.0047555543, 0.008691045, 0.020608293, 0.00536178, - 0.0019152294, -0.0069130734, 0.017217897, 0.022772906, -0.017472053, - 0.0115022585, 0.0013473353, 0.013106087, -0.013877696, 0.018392127, - 0.025870701, -0.010146578, 0.015025055, -9.279179e-4, 0.026478883, - 0.003428816, -0.021303875, 0.014274377, -0.001027474, 0.009076232, - 0.00472556, -0.0038891665, 0.015184708, -0.004695071, 0.0020820613, - 0.0014381683, 0.015541608, 0.0056001986, 0.014898057, 0.018073564, - -0.019866085, -0.004230778, -0.00910562, 0.0019648897, -0.0011643616, - -0.004060665, 0.033582184, -0.021444688, -0.015315267, 0.009832192, - -0.011748383, -0.01717374, -0.01736993, -0.009329951, -0.019987013, - 0.016379522, -0.016109014, -0.00471971, 6.67726e-4, -5.008532e-4, - -0.011337732, 0.010930479, 0.027720502, -0.024211554, 0.041807264, - 0.022991804, 0.005823859, 0.005789359, 0.0071229273, 0.036500495, - 0.00493397, -0.009476009, -0.0030192318, -0.016961936, 0.005267065, - 0.011482762, -0.017762389, -0.03252891, -0.005585842, -0.0038295726, - -0.027524924, 0.004836822, -0.0020719024, -0.0047709793, -0.0031551193, - -0.012844402, -0.018687041, -0.010626459, 0.0055094925, 0.028569283, - -5.200905e-4, -0.017518833, -0.0015188352, 0.028743936, -0.0031393822, - -0.011189191, -0.012553713, 0.0096989395, -0.0024880003, 0.0074052457, - 0.017528985, -0.0025562404, -0.006912782, -0.022564745, 0.006894925, - -0.005772606, -0.01111341, -0.002199579, -0.006814549, 0.004177189, - -0.0039512673, 0.015029863, 0.006222568, 0.023675174, -0.0054513165, - -0.02167879, 0.015260799, 0.012932088, 0.0029478893, 0.009611947, - -0.028405353, 0.023156684, -0.02173525, 0.0010202067, 0.0015997681, - -0.006752108, 0.013697216, 0.01083723, 7.7974626e-5, -0.008123706, - -0.010961303, 0.008085355, -0.0014571339, 0.013817916, 0.007785355, - 0.021592272, 0.017742783, -0.019450685, -0.006600677, 0.010108197, - 0.0047194893, -0.009750705, 0.006606725, 0.021517029, -0.013768239, - 0.014735985, -0.012524388, -0.03316777, -0.03861801, 0.014020987, - -5.180404e-4, -0.00554669, -0.0070400555, -0.007033081, -0.011600147, - -0.02984252, -0.0050780415, -0.004441253, 0.011440478, -0.0020420386, - 0.027460929, -0.004152063, -0.019143531, 0.03163936, 0.01571411, - 0.014815509, -0.009078049, -0.01770806, -0.0057905964, -0.0077787302, - 0.0030761396, -0.006092476, -0.012745227, -0.0058728997, 0.0013028645, - -0.0019478988, 0.02165191, 0.007325791, -0.010548494, 1.1938804e-5, - -0.016775345, 0.012320202, 0.044080105, 0.0227093, 0.0036773975, - -0.021631718, 0.0018164754, -0.0014368377, -0.009270604, 0.03176853, - 0.020621834, -0.0049930066, 0.018221272, -0.017769018, 0.010836173, - 0.008290685, -0.011951035, -0.009740702, -0.0014094083, -0.012354153, - 0.011335593, 0.012098063, 0.011698507, -0.016135236, -0.0010036714, - 0.0029161314, 0.0021851752, -0.015727755, -0.008452715, -0.03233004, - -0.035539877, 0.027465722, 2.5463064e-4, 0.020180535, 0.007394307, - 7.530203e-4, -0.012289756, 0.028368812, -0.004177412, 0.003117881, - -0.0043556294, 0.0050192, 0.004981065, 0.04084755, 0.021233404, - 0.015269577, -0.0010768932, 0.0042088954, -0.023884678, 0.036108904, - 0.018148227, 0.024401389, -0.011095517, 0.0024031792, 0.028869923, - -0.016517928, -0.006236469, -0.028142499, -0.0037646405, -0.007337292, - -0.011990552, 0.003822405, 0.0049372506, -0.012033953, 0.0071809497, - 0.019945452, 0.007316522, -0.0026172204, 0.004566445, 0.025987446, - -0.007764916, 0.014770049, -7.6001504e-7, -7.051106e-4, 0.021365989, - 0.006151459, -0.008159514, -0.019783355, 0.011888992, -0.015214583, - 0.023583325, 0.011989134, 0.003622318, 0.013698878, -0.0041888407, - 0.027869243, -0.026539223, -0.033933975, -0.012432727, 0.017676927, - -0.015215006, 0.0030601686, -0.04487596, -0.024343034, -0.0060540005, - 0.019771418, 0.010680204, 0.02737437, 0.0075951754, -0.023545254, - -0.011146437, -0.03162417, -0.016215723, -0.010270708, 0.006578671, - -0.005522015, 0.0056384522, 0.004240882, -0.009118364, 0.03485799, - 0.005368124, -0.011697974, -0.0016861137, -0.006400704, -0.007102246, - -0.0017675551, -0.0039391005, 0.009362424, 0.0031394511, -0.001077145, - 0.012306532, 0.018746093, 0.010173335, 4.41185e-4, -0.024048422, - -0.0100575015, -7.283865e-6, 0.006534875, -0.0066279178, -0.021453194, - 9.6607034e-4, 0.005373689, -0.01228287, -0.018618448, -0.026996499, - -0.0139928395, 0.022432484, -0.0046922215, -0.038614657, -0.017313287, - -0.0074981083, 0.02419636, 0.033919152, -0.020023298, -0.012458092, - 0.013862861, -0.012945575, 0.005370004, -0.022024537, -0.010484273, - 0.04005498, 0.012982361, -0.009352627, -0.01978402, -0.012319479, - 0.027421433, 0.02429974, -0.008814898, -0.008448867, 0.008805727, - -0.010577433, 5.709078e-4, 7.8883936e-4, -0.034465503, 0.0075581665, - 0.024980573, 0.0130395, 0.003940495, -0.007917342, -0.009830459, - 0.010384228, 0.014531227, 0.01157481, 0.0070025222, -0.00915253, - -0.019564588, 0.009683086, 0.0053818254, -0.010002636, 0.001530226, - -3.3464774e-5, 7.8834884e-5, -0.019175002, 0.021005794, -0.01630699, - -0.0137948375, 0.030888915, 0.008476311, 0.036688432, 0.01625052, - -0.022058567, 0.018315947, 0.023771575, -0.027377605, 0.027017443, - -0.0039523514, -0.021779038, -0.016814226, -0.021242382, 0.011286045, - -0.009197109, -0.018764379, 0.0041076816, 0.007930925, -0.033301782, - 0.0031016236, 0.014006814, 0.012991856, 0.0077158706, 0.013391675, - 0.011029545, 0.037365973, -0.014430605, -0.009979221, -0.012283546, - -0.0013326209, -9.410625e-4, -0.00586731, 0.014026729, -0.020979397, - -0.00952438, -0.010122391, -0.011558146, 0.0013691911, -0.024834754, - 0.017512152, -0.0030037253, 0.016694857, 0.023461744, -0.003432726, - -0.0028491353, 0.036627494, -0.023036309, -0.016480409, 2.8679025e-4, - -0.016060643, 0.004160949, 0.0028631361, -0.0024250722, 0.029442836, - 0.022980858, 0.012097084, 0.019430155, -0.003397817, -0.017383398, - -0.023548696, 0.009083617, 0.007935192, -0.0052920496, 0.02621052, - 0.01601862, -0.010488197, 0.01608744, 0.03735724, 0.0054952637, - -0.0052572764, 0.03543152, 0.01556744, -0.00901451, 0.024820045, - 0.002172454, -0.003325431, -0.020713834, -0.011252139, -0.015234675, - 0.006044624, -0.002470881, 1.847559e-4, 0.0077726585, -0.017445486, - -0.003927381, 0.01288594, 0.022223651, -0.0035727553, -0.0043027718, - -0.0041845855, 0.009339306, -0.0044024712, -0.0012094366, 0.0019771755, - 0.0043101595, 6.3978793e-4, -0.022211565, 0.0042466065, 0.020716483, - -0.021147437, -0.011011093, -0.007071515, 0.023026567, -0.023212112, - 0.0022360892, -0.010984274, -0.0071815485, 0.017104464, 0.002777292, - -0.004430397, -0.03139359, 0.015895104, 0.03680534, 0.005383353, - 0.008930879, 0.026854077, -0.016049048, 0.033528253, 0.012761307, - 0.0056911875, 0.035275243, 0.02346465, 0.007009914, 0.0015607155, - 0.027572447, 1.45453705e-5, 0.0018459673, -0.004249706, -0.0069945306, - 0.0015012847, 0.0026784413, -0.0030865546, 0.019995917, -0.001425224, - 0.030038098, 0.014426463, -0.022644697, -0.022896426, 0.0061590606, - 0.0177114, 0.020918967, 0.017016623, -0.017151175, -0.028792476, - 0.0058555715, -0.0057762833, 0.010210211, 0.02737832, 0.032685634, - 0.014974827, 0.0036904048, 0.0102035105, 0.016013771, 0.012705011, - -0.02977355, -0.0020724381, 0.022695068, -0.034664296, 0.014223412, - -0.0030954226, 0.0041959924, -0.011188964, -0.012264041, 0.005968744, - -0.017700575, 0.02748041, 0.021642905, 0.0026872372, -0.00393872, - 0.0051920437, 0.0014310973, -0.009978351, 0.01269568, -0.0041035386, - 0.0029374426, 0.009283678, 0.008520904, 0.019806385, 0.04158533, - 0.013345499, -0.013265734, -0.0077276616, -0.040223714, -0.0014257587, - -0.007352293, -0.007268725, 0.014699303, 0.009711308, -0.003720796, - 0.0057214247, 0.0127202505, -0.0118517745, -0.0021043478, -0.011268922, - 0.0062381723, -0.022570988, 0.015560342, 0.0035705217, 0.009014826, - -0.0012970045, -0.0140447505, 0.024470584, -0.004310424, 0.0078614, - 0.0295781, -0.009512731, -0.0065265098, -0.020472998, -0.011319066, - 0.024499087, -0.0021805295, 0.004646353, -0.024280729, -0.011734826, - 0.0070039956, 0.03490228, -0.015485775, -0.0013949748, 0.003389859, - 0.027290514, -0.014414504, 0.009454221, -0.010065101, -0.005070668, - 0.007926511, -7.5808645e-4, 0.01362382, -0.0015562978, 5.48893e-4, - 7.196295e-4, 0.016637862, 0.0046511893, -0.0058101146, -0.022415427, - 0.018694127, 0.028069558, -0.011468088, 0.0058285976, 0.014996504, - 0.0023069787, -0.0061559854, 4.6850382e-5, -0.0024585067, 0.0048636436, - 0.009813051, -0.0069491277, 0.012483616, 0.011872374, -0.013322002, - -0.0017792875, -0.013462187, 0.013461794, -0.005446033, -0.028251607, - 0.0044069816, 0.00648769, -0.007949062, -0.005838026, 0.0015895384, - 0.004840999, 0.012325933, 0.0042285384 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0014479202, 0.001296735, 0.014993904, -0.009161048, -0.01688067, - -0.014473094, -0.001082828, 0.0044200183, -0.012107387, -0.011360162, - 0.010172217, 0.021172324, -0.02351447, -0.011651356, -0.0060399417, - -0.0025382098, 0.008191946, -0.012056475, -0.0059018484, 0.017381908, - 4.84931e-4, -0.0025301157, -0.011290153, 0.0035959843, -0.009295462, - -0.006951794, -0.0024845372, 0.013994264, 0.026182443, 0.018834393, - 0.002177117, 0.009749143, -0.008580963, 0.011405383, -0.036534127, - 0.0146454, -0.002255978, -0.0044677267, -0.009911117, -0.027994141, - -0.003789862, -6.7859e-4, 0.019649265, 0.008136088, -0.012429665, - 0.0067712967, 0.010680476, -0.025003584, -0.013986295, -0.036967613, - -0.027801175, 0.0101570925, -0.0048745414, -0.013066768, 0.0052580507, - -0.02078414, -0.019520562, -0.011943285, 0.024032779, 0.019486075, - 0.003914163, 0.040215764, 0.021323634, -0.0014180989, 0.0015535196, - -0.0087441355, -0.0028787924, -0.0060026404, 0.036482148, 0.0023066525, - 0.0047084265, -0.0061960546, 0.005865364, 0.010551238, -0.002459077, - -0.011758117, 0.007604932, -0.00988146, 4.0159162e-4, -0.0022861955, - 0.030880608, 0.021298207, -0.0032059154, -0.020281844, 0.028226823, - -0.008917, 0.0048414217, -0.0028840392, 0.010292136, 0.026081434, - -0.009873535, -0.012634097, 0.0058692475, -0.015799714, -0.0022994191, - -0.028382381, 0.0013188575, -0.020789513, 2.0936743e-5, -0.0027479678, - -0.020219998, -5.113342e-4, 0.0078111975, -0.0049732174, 0.0076687667, - -0.018762963, 0.007895264, -0.00595455, -0.019399267, -0.022354918, - 3.9051202e-4, -0.009447277, 0.026513956, 0.010783126, -0.0015149787, - 0.016718864, 0.003747018, 0.007353138, -0.005715039, 0.0055679055, - 0.011234007, 0.015980897, -0.014847987, -0.010929823, 0.008176024, - -0.014730039, 0.009736431, 0.022111053, 0.015057592, -2.6188203e-4, - 0.008668806, 0.003061448, -0.0033663143, -0.0135531565, 0.027090942, - -0.016322332, -0.0046451334, -0.034364503, 0.0031937726, 0.011912966, - -0.010607867, 0.020214593, 0.0065853936, 0.009207088, -0.0027801846, - -0.0053065456, -0.01059259, -0.0028730144, 5.782717e-4, -0.03457122, - -0.0525428, 0.0037651192, 0.025639275, 2.0151006e-4, -0.019108167, - 0.0016520132, -0.005422211, -0.0077771964, -4.540269e-4, -0.010263448, - 0.0014270331, 0.0070260507, 0.009381854, -0.001835401, 0.026741304, - -0.009866071, -0.011823684, -0.010325459, -0.0034794135, -0.006059118, - 0.009922843, 0.037105992, 0.011992123, 0.0153098935, -0.018197592, - 0.024093475, 0.0062191333, 0.015168005, 0.015120101, -0.0066091665, - -0.0022208414, 0.010311249, -0.008368076, -0.005612088, -0.012115561, - 0.019859362, -0.007757136, -0.006070731, 0.020245004, 0.006700518, - 0.0043342, -0.0038536233, -2.3220699e-4, -0.0057451017, 0.0013903395, - -0.027386133, 0.022946548, 0.017803367, -0.005954268, -0.0014986144, - -0.006094869, -0.014837589, 0.0018184102, -0.010793672, 0.0067839595, - -0.007142024, 0.004384418, -0.006061558, -0.016636837, 0.022965217, - 0.01968417, 0.022897398, -0.014391628, 0.0219305, -0.0023614722, - -0.010880345, 0.01693254, -0.038069203, -0.004599687, -0.0071960716, - 0.008474837, 0.012193726, 0.019922469, -0.006334849, -0.033519983, - 0.013250605, 0.021618461, 0.005130931, -0.012356712, -0.0114830155, - -0.0059474865, -0.027990488, -0.017948361, 0.042177707, 0.008622097, - -0.002759359, 0.0070967483, 0.0108597865, 0.0013808421, 0.009866005, - 0.0099677425, -0.0047447165, -0.030535456, -0.007946052, -0.0034345603, - -0.0018590358, -0.040541902, -0.007753843, 0.0023775338, 0.028611116, - -0.0086044315, -0.015756104, -0.009929792, -0.0021185307, -0.01774008, - -0.030259479, -0.001977816, -0.027616056, 0.010721659, 0.008494522, - -0.008550209, -0.018929165, -8.206145e-4, -0.014006582, -0.02155696, - -0.003210586, -0.021729248, 0.0013578333, 0.015877245, 0.021341097, - 5.0735136e-4, -0.0021284726, -0.028344253, -0.028113961, -3.9444177e-4, - -0.016419437, 0.0030528323, -0.019733567, -0.016123334, 2.8864371e-5, - -0.0075635626, -0.004955467, -0.011503005, 0.004547857, 0.009199211, - -7.8743714e-4, 0.025443176, -0.027041173, -4.6473005e-4, 0.018092219, - -0.016123233, -0.0017427639, -0.0080268895, -0.033374373, -0.011012342, - 0.0054950835, 0.018509205, 0.041858587, 0.0050504534, -0.006375898, - 0.0029926663, -0.0038121028, -0.023118133, -0.017577764, -0.0046840715, - -0.009284988, 0.0029394038, 4.8576226e-4, -0.032785747, -0.0037721773, - 0.0089660995, -0.007230693, 0.003487635, 0.009693174, 0.0063596144, - 0.014521984, 0.011906274, -0.0037344447, 0.001372656, 0.006871748, - -0.023299348, 0.011117696, 0.006400674, -0.0022546689, -0.013030625, - -1.8108822e-4, 0.016695177, -0.01482228, -0.012702703, 0.0277294, - -0.003098741, -0.009753787, 0.008048498, 0.016198969, -0.008968024, - -0.03428457, -0.011686362, 0.0046220957, 0.014053725, -0.026258672, - -0.015492092, 0.010992806, 0.008122313, 0.035457194, 0.031811066, - -0.007090196, 0.017137337, -0.0037814376, -0.014862763, -0.021899767, - 0.003080346, 0.007707505, -0.03764182, -0.009337019, -0.012787726, - 0.0064108553, 0.004445572, 0.019368693, -0.009000512, 0.024749199, - -0.010597682, -0.008904159, -0.031001687, 0.0060239285, -0.0027607013, - -0.028533472, 0.026852364, -0.015687868, 0.006368647, -0.004897861, - -0.014064949, 0.015989468, 0.021311799, -0.008505127, 0.0071755424, - 0.0015025771, -0.014598878, -0.013438655, -0.0017103021, -0.009947553, - -0.009042446, -0.010280242, 0.019600876, 0.027292192, 0.0108378, - 0.023004754, -0.015910527, 0.024476005, 0.018271064, -0.016119748, - -0.005221226, 0.02169798, -0.010609688, -0.040459216, 5.724421e-4, - 0.0075999126, 0.01490313, 0.026379231, 0.009888093, 2.6460298e-4, - -0.021455223, 0.015467457, -0.024456214, -0.011818844, 4.436591e-4, - 0.01384044, -0.025505545, 0.019514231, 0.0018255375, -0.0059864563, - 0.0075102313, -1.8828145e-4, 0.016585592, 0.02268413, -0.013270118, - 0.028353486, 0.00395047, 0.019353868, -0.025763398, -0.012898587, - -0.025098655, 0.0021552863, -0.0059995586, 3.196618e-4, -0.007887985, - 0.0044966503, 0.021037184, -0.024851931, -0.014635628, -0.0111531345, - 0.013904417, -0.0034897483, -0.012425831, -0.0027231877, -0.016907182, - 0.027047954, 0.030264404, -2.3148191e-4, -0.009650478, -0.018607123, - 0.008757307, -0.012636072, -0.013912124, 0.011930773, -0.022739898, - 0.015417424, 0.0010653, 0.0098005375, 0.01571333, 0.009966442, - -0.035215523, -0.006426079, 0.0052521713, 0.008921236, 0.0023875989, - 0.008764766, -0.007357964, -0.0048708064, 0.011301733, -0.007714211, - 0.009129568, 0.012831912, -0.018283099, -0.023370981, 0.0048554544, - 0.009294952, -0.023536293, -0.0012177691, 0.002019348, 0.021601735, - -0.026533257, 0.013991084, -0.018730866, 0.021378463, -0.018886132, - -0.012188379, -0.0077851904, -0.0030994997, 0.016554086, 0.0045886566, - 3.419967e-4, -0.0023721652, -0.021759486, 0.005761371, -0.005254289, - -0.004732832, 0.011377969, 0.0044188676, 7.114228e-4, -0.01945558, - -0.037334394, -0.009111415, -0.010453137, -0.016716655, 0.021591952, - 0.0054239146, -0.004618913, 0.003815095, -0.005993628, 0.007947359, - -0.021365983, -0.014489947, -0.005657911, 0.020310296, 0.002003889, - 0.010178673, 0.015915835, -0.019840423, 0.03436299, 0.0051923227, - 0.009408605, 0.0114980005, 0.0036191784, 0.012517485, 0.0025044384, - -0.0012404361, -0.015985625, 0.016696073, -0.030617211, -0.029931543, - -0.023391848, 0.02319819, -0.0013040873, -0.0074715274, 0.011479662, - -0.017125325, -0.0012477126, -0.019983623, -0.0270582, 0.014101855, - -0.0031800682, -0.0031917873, -0.019681579, -0.01287477, -0.051862366, - -0.011515267, -0.0013709246, 0.026109222, -0.025911659, -0.011110822, - -0.0246232, -0.01305229, 0.011488217, 0.017674884, -3.4244484e-4, - 0.001593781, -0.014021893, 0.01250034, 0.0159764, 0.008311938, - -0.017825844, 6.8585237e-4, 0.016403664, 0.031095563, 0.008110393, - -0.004139232, 0.022253815, -0.014637666, 0.028838027, -0.0026864177, - 0.013102865, 0.017068606, -0.0047262264, -7.817513e-5, 0.005142143, - 0.026482124, -0.019905625, -1.1941079e-4, 0.008159921, 0.010347279, - 0.022505136, 0.018141085, -0.01994727, 7.260817e-4, 0.014522331, - -0.0011554947, 2.901043e-4, -0.02827876, -0.009619802, 0.003945681, - 5.8921863e-4, 0.0023508768, -0.01354312, -0.024688765, 0.001004042, - 0.025971454, -0.023227949, -0.0028715073, -0.01961194, -0.0029059977, - 0.014709255, -0.0028512618, 0.02525134, 0.01624192, -0.0044848826, - -0.02497818, -0.0063040135, 0.030068772, 0.022112504, -6.621871e-4, - -0.00487467, 0.019000154, 0.0075269747, -2.2398546e-5, 0.0024263978, - 0.018288648, 0.03735296, -0.014792065, -0.006515228, 0.020621946, - 0.006127009, -0.0020611102, -0.01688263, -0.010331986, -0.013907788, - 5.543537e-5, -0.0024114386, 0.011168562, 0.0010333287, -0.011358603, - -0.00881307, -0.011742228, 0.014102865, -0.009348587, -6.4447644e-4, - -0.006518825, -0.030958636, 0.0016191471, -0.001997227, 0.0090597905, - 0.009499179, 0.008380556, 0.007766766, 0.0035912907, 0.021877589, - -0.009613192, 0.032772366, 4.7698093e-4, 0.015229021, -0.008476102, - 0.0017778728, -0.0151799945, 0.0056532864, -0.008663394, -0.006682654, - -0.02576297, 0.012429006, 0.017101662, 0.026649255, 0.0071965917, - 0.01579744, -0.019534282, 0.025718637, -0.020667862, -0.00798577, - 0.022066874, 0.01106344, -0.015008154, 0.0040329816, 0.0016093882, - -0.025170082, 0.0036616093, -0.019475974, 0.006619872, -0.009853771, - 0.01643108, -0.015934158, 0.029560601, -0.011749598, -0.023620978, - 0.016840462, 5.0408085e-4, -0.018554514, 0.035203226, 4.7793466e-4, - 0.012668564, -0.0032611163, -0.008510358, -0.01654339, -4.0536412e-4, - 0.023660718, -0.006717258, 7.395736e-4, -0.025059566, 0.007565849, - -0.008314503, -0.022980632, -0.019192835, 0.007516689, 0.007973711, - 0.010178206, -0.0024732815, 2.1782138e-4, -0.020246187, 0.022355342, - 0.019136205, 0.008274956, 0.027563537, 0.006002293, 0.0063740597, - 0.012129349, 0.007815376, -0.0015509743, 0.0046069617, 4.8755342e-4, - -0.03453837, -0.038886648, 0.0018161735, -0.013571808, 0.012413579, - 0.003990379, 0.01629237, -0.0050320285, -0.003452952, 0.008063989, - 0.030170055, -0.036018047, -0.012421525, 0.01781358, -0.0073663397, - 0.0070328745, -0.012649711, -0.014833808, 0.012029764, -0.0051826616, - -0.018288178, 0.005423423, 0.02677703, 0.0016547234, 0.025604058, - 0.0059195915, -0.023131886, 0.0025581466, -0.0017705577, 0.0071956976, - -0.02541612, -0.01665473, -0.0029184942, -0.013573589, -0.0068850173, - -0.010822501, 0.008483202, -0.02771227, 0.027023751, 0.0019593951, - -0.01778257, 0.0065249046, 0.0080648465, 0.0012658682, -0.045731578, - -0.013204319, 0.013454053, -0.023421558, -0.021874156, -0.008024559, - 4.356874e-5, -0.014867903, 7.7526015e-4, -0.014262374, -0.024250148, - 0.015913406, 0.020253323, -0.015446349, 0.0059526577, 0.012372424, - -0.0086007845, 0.006537063, -0.010292431, 0.018998478, 0.037640683, - 0.014072493, -0.0024834082, 7.1072136e-4, -4.5124601e-4, 0.0033010258, - 0.0036016698, 0.018644216, -0.0068788193, -0.0051603774, 0.013634204, - 0.027133292, 0.025023762, 0.0066380044, -0.010009536, -0.008982604, - -0.0015464455, -0.041613113, -0.0066530383, -6.271949e-4, 0.03345265, - 0.014908944, -0.012064831, -0.007067693, -0.0011360813, -0.02427623, - 2.6293672e-4, -0.03272921, -0.011486662, 0.01575444, 0.0070505445, - 0.029166136, -0.00813393, 0.015981318, -0.009223675, 0.014169269, - 0.013534513, -0.0053166808, 0.013758543, 0.015646454, 0.012644655, - 0.020395616, -0.0057524187, 0.015279294, -0.032610454, -0.0038175792, - -0.027383396, 0.002514512, -0.018888718, 0.038118076, 0.02353401, - -0.033671126, 0.023902101, -0.0044117975, -0.009404285, 0.011598952, - 0.016227737, -0.019423908, 4.950305e-4, -0.0011151035, 0.008686219, - 0.017792586, 0.024881601, 2.3320924e-4, -0.013017684, 0.012954973, - -0.012203612, -0.019102803, 0.017088277, 0.019443773, -0.01591473, - 0.01768912, 0.032693993, 0.0099980775, -0.0075813057, -0.009846072, - 0.012674853, 0.018155532, -0.012488136, -0.012791258, -0.0015732251, - -2.81581e-6, -0.022878736, -0.0092150755, -0.013177262, 0.0028490964, - 0.021389345, -0.011767991, -0.008945695, 8.782312e-4, 0.022121029, - -0.021047594, 0.0010101747, -0.0097439, -0.005325758, -0.0018567266, - -0.027233645, 0.035045065, -0.019127429, -0.017328832, -0.0077097365, - 0.011431768, -0.012208083, 0.03032716, -0.005776141, 0.015337871, - 0.0031850676, -0.008438414, 0.020156639, 0.01238518, 0.00398973, - -0.0024873659, 0.0018516225, 5.466333e-4, 0.015222314, 0.003979762, - 0.0016422922, -1.3363674e-4, 0.013471283, 0.001705422, -0.0038447909, - -0.0069538387, -0.006167925, 0.023304528, 0.0034476381, 0.0035788473, - -0.019819625, 0.01926266, -0.020658216, -0.03264559, -0.017117195, - 0.0018562314, 0.01819466, 0.021018988, 0.010246223, 0.022159083, - 0.02211564, -0.0190329, 0.013346076, 0.023473172, 0.011815269, - 8.387183e-4, 0.006215413, 0.00692203, 0.015822366, 0.016004883, - -0.017430054, -0.010439091, -0.009499626, -0.0028865351, -0.011208443, - -0.008197642, 0.0092937695, -0.010941044, 0.033308726, 0.020679051, - 0.013986366, -0.0031718954, -0.024011038, -0.007767471, -0.0024670362, - 0.03027268, 9.5512887e-4, -6.930398e-5, 0.01757539, 0.009244345, - -0.0150179, -0.009876578, 0.0126694655, 0.011111698, 0.004955761, - 0.003176612, -0.00989146, -0.0037566759, 0.017946012, 0.010570935, - -0.02621589, -0.03201263, -0.0015164942, -0.0075507876, -0.0010093983, - -0.032848872, 7.700856e-4, 0.004436208, -0.008959575, 7.065927e-4, - 0.01919761, -0.012520574, -0.004347342, 0.025189675, -0.0067216326, - 0.004461898, -0.01300993, 0.022729898, -0.0021287182, 0.015116726, - -0.009176287, -0.023706576, 0.021112958, -0.017569985, 4.8031946e-4, - 0.011172627, -0.015892906, -0.018472051, -0.0071798465, 0.017925933, - 0.014784631, 0.015339729, 0.019507255, 0.0317483, -0.0098855365, - 0.006402733, 0.022518843, 0.0010932684, -0.017878525, -0.022937845, - 0.012749772, 0.046760943, 0.010642007, 0.005313663, 0.030712409, - -0.023845922, 0.015818683, 0.010936828, -0.013230976, 0.005305508, - 0.018136468, -0.02138354, 0.009212323, -0.0013032759, -0.008017912, - 0.022378799, 0.009109724, -0.028207364, 0.0028049597, 0.015284246, - -0.00849666, -0.013838078, -0.0144595085, 0.0051928093, -0.032005325, - -0.006427662, -0.012419243, -0.011724831, -0.016048977, -0.009634506, - 0.0054079546, 0.0060559846, -0.014777059, -0.017347137, 0.008814697, - -0.010568149, 0.015208787, -0.015132072, 0.01901777, -0.035836015, - 0.001990372, 0.004375457, -0.011050046, 0.015568481, 0.002586015, - -0.021270767, -0.007796455, 0.03755317, 0.004990951, -0.03220228, - 0.00765938, -0.016577948, 0.0025709714, -0.008177791, -0.024623279, - -0.011588232, -0.041963443, 0.038508125, -0.014457495, -0.0052419794, - 0.032929804, 0.022424575, -0.004372647, -0.015582077, 0.02924421, - 0.017710062, -0.0038764495, 0.0029619597, -0.0075045004, -0.0058775297, - -0.037597004, -0.019815657, 0.012732358, 0.00240448, 0.02814843, - -0.019527704, 0.02137796, 0.0118416175, 0.021821259, -0.016408898, - 0.00922259, -0.004068687, -0.00503713, 0.025577853, -0.009963809, - -0.011793523, 0.012808243, -0.019392777, -0.020016992, 0.0057729525, - 0.0020485502, 5.539229e-4, -0.0132510355, 0.017866412, -0.031623866, - -0.019795, 0.02101461, -0.019028194, 0.014646097, 0.0028441977, - -0.008242184, 0.022388218, 0.010881935, -0.033831496, 0.020805161, - 0.004246057, -0.008742575, 0.012541009, -0.015973687, -0.031010486, - 0.023358403, -0.022944042, -0.013454832, 0.003245005, -0.011202729, - 3.044422e-4, -0.0023682874, 0.012412955, -0.007832201, 0.01201398, - -0.00174579, -0.016696593, -0.010751062, 0.019462628, -0.010208006, - 0.003359001, -0.007811421, -0.017429715, -0.004964827, 0.0047426447, - 0.014104469, -0.021957545, -0.0112762265, -0.0071955468, -0.03295875, - -7.6160744e-5, 0.020032797, 0.0063895085, -0.015383731, -0.024022652, - -0.009324541, -0.0061433334, -0.012401735, -0.0060393834, 4.0154173e-5, - 0.01828413, 0.012931448, -0.0077987094, 0.009643297, -0.0011690564, - 0.01228902, -0.0014684916, -9.190452e-4, -0.0120764235, 0.006684231, - 0.020767294, -0.006351857, -0.015239906, 0.009068298, 0.004203519, - 5.1429006e-4, -0.028421497, -0.0051492024, 0.004071537, 0.0149634825, - -0.0077426634, 0.012715575, 0.0062985397, 5.2004154e-5, -0.0064610597, - -0.044155292, -0.023893937, -0.0041584424, -0.017497553, 0.010841924, - -0.020447252, -0.008318582, -0.020894285, 0.0013150368, 0.005530099, - -0.002851636, -8.9313067e-4, -0.0043537784, 0.017709283, 0.026632853, - 0.028922273, -0.0046022283, -0.014719453, -0.013686845, 0.003804689, - -0.018319122, -0.01725636, -0.017694302, -0.02742944, -0.009063264, - 0.034427054, -0.020390743, 0.002711232, 0.0040356256, 0.025080694, - -0.015104136, 0.036464013, 0.012180049, -0.0051223463, -0.011464107, - -0.0065942346, -0.012311433, -0.01576511, -0.0013299824, 0.0054730815, - -0.0019066882, 0.0011421575, 0.0046216585, 0.0019342194, -0.012742259, - 0.021860436, 0.0059522064, 0.010670995, -5.335382e-4, 0.0049039754, - -0.0035592774, 0.012188717, -0.0036341248, 9.7093306e-4, 0.014744906, - 0.014183933, 0.035525367, -0.0016005302, -0.002080486, -0.028709931, - 0.01294851, 0.003759414, 0.0061415117, 0.0075854934, 0.0021520723, - 0.0152046755, -0.014365352, -0.0026692806, 0.015642706, -0.013083162, - -0.022771362, -0.003020987, -0.0123265395, 0.002815389, 0.011170005, - 0.02195993, 0.017676035, -0.005559099, 0.0014164647, -0.021025253, - 0.016561227, -0.0033750643, 0.030222096, 0.008802146, 0.005063407, - 0.001975093, 0.0057186494, 0.017149797, -0.039928194, 0.044863045, - -0.012146847, -0.0087701855, 0.016074875, -0.0093805045, 1.8280413e-4, - -0.0149832275, 0.032701157, 0.014092654, 0.005893334, 4.151843e-4, - -0.022223797, -0.013734776, 0.0028958328, -0.0044245697, -0.007088976, - -0.0050940975, 0.0015842566, 0.0027141918, 0.004581026, 0.022390082, - -0.015352997, -0.020907484, 0.014083311, -0.0056644324, -4.5679833e-4, - -0.006149831, -0.010518465, 0.020059722, -0.013713072, -0.023913225, - 0.009287081, 0.0040855333, -0.01795862, -0.006530102, 0.008802549, - -0.031045739, -3.9433414e-4, 0.032862943, 0.0026745696, 0.026528051, - -0.038362425, 0.007977594, -0.0074875695, 0.017543957, 0.0041770027, - -6.722952e-4, -0.005241676, 0.009936078, 0.010326685, -0.0063793473, - -6.6515774e-4, -0.011218112, -0.0108991945, 0.014849333, -0.0041038413, - 0.015203566, -0.012017266, 0.026884532, 0.021847622, -0.001291514, - -0.004157779, 0.004041713, 0.009303495, -0.009262856, -0.010910763, - 0.0022619779, -0.007906075, -0.008823667, -0.015531968, 0.0011895649, - 0.0121548325, -0.0017661891, -0.015853763, 0.013373459, -0.015363927, - 0.023184402, -0.016210299, 0.010523732, -0.007177896, 0.018763715, - 0.0012692873, 0.00561797, -0.025277412, -0.018508887, -0.012357206, - -5.506899e-4, -0.0051265904, -0.0077273184, 0.0033308996, 0.029584318, - -0.0122249825, 0.0062611075, -0.014327066, 0.011204046, 0.006831679, - 0.018361477, -0.031201234, 0.0031669845, 0.02164895, -0.013499461, - -0.008429688, -0.013569042, -0.011556032, 0.023693256, -0.019192178, - -0.017584244, -0.021797592, -0.017087847, 0.014176004, 0.008861166, - -0.0041985526, -0.010545313, 0.013830256, -0.009422822, 0.007374114, - -0.010256076, -0.007135244, -0.022354692, -0.0055927285, -0.002351935, - -0.0049434043, -5.788713e-4, -0.023497634, -0.007607117, 0.017017681, - 0.016024262, 0.012033107, 0.022492215, -0.003514311, 0.0173683, - -0.013137773, -0.0014730366, -0.03281431, -0.0019600706, -0.01742121, - 0.0035023296, 9.335469e-4, 0.015288749, 0.0010494177, -0.012446483, - 0.0054800985, -0.029650377, -0.02887992, 0.0089160185, -0.014598654, - 0.014404753, -0.0123301875, -4.5652787e-4, 0.013923492, -0.0151608195, - -0.011124355, 0.010668101, -0.003079292, 0.0184048, 0.01160756, - -0.008316776, -0.014981252, 0.005782164, -0.02050437, 0.001660265, - 0.018152444, -0.015534127, -0.021948941, -0.020848578, -0.00289451, - -0.0028320428, -0.021025404, 0.0034492933, 0.02281999, -0.002907652, - 0.029707065, 0.003396738, -0.003954754, -0.008064905, 0.01106018, - 0.0035140994, 0.0032201651, 0.009699603, -0.012682389, 0.012988566, - 0.019331476, -0.009025555, 0.004200481, -0.0016437678, -0.004053865, - -0.011324506, 0.014081527, 0.02341473, 0.019719347, 0.0040023527, - -0.030055694, 0.0023999992, 0.015743667, -0.0075165783, -0.0040802853, - 3.538062e-5, -0.012267681, -0.0036086666, -0.01265283, 0.003694333, - 0.010012896, -0.018748287, 0.017343085, -0.0087491805, -0.006281058, - 0.0033711107, 0.005084945, -0.0016615831, 0.0048935944, -0.007606158, - -0.024607506, 0.012621694, 0.017930517, 0.017523717, -0.016140193, - 0.010482577, 0.017520674, 0.0259753, -0.019405227, 0.0057946006, - 0.031059066, 0.01877526, -0.0051529007, -0.01761479, -3.685547e-4, - 0.027359199, 0.004646808, -0.0077630137, -0.014921076, -0.019777657, - -0.012929345, 0.034693893, 0.018755825, -0.015212184, 0.008874324, - -0.0073895263, 0.028279645, 0.019837275, -0.009562365, 0.02368577, - -0.026264485, -0.01115054, -0.026532296, 0.004704836, 0.0254465, - 0.0072728624, 0.011339641, 0.0037749961, 0.027938096, 0.0019704069, - 0.016673448, -0.042092234, 0.026232632, 0.0018698276, 0.0053293426, - 0.0016556536, 0.0077550616, -0.0041508325, 0.0014069618, 0.011813815, - 0.007809955, -0.002768707, -0.0085799955, 0.012693528, 0.008078406, - -0.0045686006, -0.022931702, 0.016617227, -0.012975344, -0.0015062732, - -0.0117074, -0.005016665, 0.0035064893, -7.2110514e-4, 0.0060756677, - -9.249205e-4, 0.008321375, 0.005531015, -0.005496208, -0.0044380333, - 0.007304482, -0.028097987, 0.01859359, -0.0019839443, -0.024359142, - 0.021812323, 0.022375224, -0.031104442, -0.0040571257, 0.003184206, - 0.008748087, 0.026836751, 0.0047762045, -0.022406472, -0.0110553745, - -0.01265972, 0.011353221, 0.01728846, 0.011113388, 0.021516694, - 5.389701e-4, -0.0023249178, -0.010433753, -0.005960953, 0.015981546, - 0.012649258, -0.0039316523, -0.016526507, 0.00384794, 0.0024905545, - 0.00972016, 0.003645786, -0.0013230396, -0.004223239, -2.8643056e-4, - -0.020216867, 0.048529394, -0.01118708, -0.007205707, -0.021937901, - -0.014201422, 0.0035165988, -0.013442891, -0.03305789, -0.016466608, - -0.0012485342, 0.0015914795, 0.028538993, 0.016759107, 0.0023168684, - -0.005376869, -0.0064566596, 0.02813064, -0.0035842103, -0.014587554, - -0.021108473, -0.017073032, -0.0033215226, -0.011299751, 0.006439749, - 0.0023021533, 0.0107515445, -0.024014775, 0.012548547, -0.0045218114, - 0.008442085, 0.033762306, 0.032182824, -6.7053945e-5, -0.0072318777, - 0.025252352, -0.01762246, 0.011854414, 0.0175877, 0.019612497, - -2.4634085e-4, 0.007870356, -0.018679826, -0.011785258, 0.02031258, - 0.010464417, -0.012825463, -0.0315064, -0.018483415, -0.024399268, - 7.311751e-4, 0.016119959, -0.011634143, 0.018372871, -0.014373449, - 0.039156493, -0.022611978, -0.005941849, -0.0061866785, -0.01919726, - 0.02102478, 0.015149635, -0.030703269, 0.034072943, -0.013239902, - -0.0069352873, 0.009682326, -0.0028503109, -0.011917041, 0.01781322, - 0.010347665, 0.005575954, -0.0143616395, -0.00720169, 0.008608198, - 0.0063115964, 0.023629349, 0.00845706, 0.0093030585, -0.0031424384, - -0.0043638214, -0.0147669595, 0.002298322, 0.0013500478, -0.010658802, - -0.0067496444, -0.0049405405, -0.0063024424, 0.005626199, 0.009757736, - 0.0027391182, -0.019408872, 0.022985002, -0.0046872487, 0.021596685, - -0.011306167, 0.006329063, -0.0015635549, 0.00207998, -0.011431549, - -0.01691781, -0.0065024346, 0.006471329, -0.008510373, 3.4078737e-4, - 0.0071122665, -0.003260964, -0.0143956905, 0.0034252903, -0.00105578, - -0.0016497934, -0.013480695, 0.046118423, -0.015672354, 0.012698063, - -0.023958825, -0.0029055818, 0.0128398575, -0.004136, 0.01633549, - 0.0137804225, 0.02020766, 0.009001439, 0.0012933671, 0.0182817, - 0.0069015906, -0.015508836, -0.025836604, 0.0027766558, -0.0052951076, - -9.064462e-5, -0.00484411, -0.023355797, -0.0069850334, -0.021478964, - -0.011942518, -0.0068841106, -0.0023329188, 0.005111288, -0.012932172, - -0.040227596, -0.00538855, 0.014846196, 0.016780993, 0.012284476, - -5.3718634e-4, -0.0039698244, -0.0021571368, 0.011696716, 0.01609361, - 0.021338029, 0.0025377744, -0.02269791, -0.0021810122, -0.029660327, - 0.014093647, -0.016846953, -0.006071129, 0.023025274, -0.02008351, - -0.03039903, 0.0025821633, -0.008895323, -2.4885908e-4, 0.020931603, - 0.02212867, 0.012343489, 0.0014284314, 0.0057548834, -0.0136992745, - 0.0070758364, 0.014846775, 0.02563765, -0.03530426, 0.020807153, - -0.0033320603, -0.039628845, 0.034364074, -0.018616306, 0.0032644365, - 0.006501401, -0.0011916234, 0.0145785315, 0.011291577, -0.018038029, - 0.013434324, 0.0024018674, -0.007126129, -0.027161833, 0.013048711, - -0.013191368, -0.008701326, 0.022853712, -0.010982919, 0.023694072, - -0.0151380515, 0.015173215, 0.021106396, 0.024876703, -0.0014578518, - -0.0017058688, -0.017927079, 0.011274759, -0.0058878474, 0.008180306, - 0.016036766, 0.020899728, 0.013793163, -0.0049629156, -0.00813361, - 0.0012564139, 0.013554497, 0.0061901035, 0.015901873, 0.008678575, - 0.02135974, 0.0070251897, 0.016649447, 0.017222645, -0.019685837, - -0.009428355, -0.008970962, 0.024747953, 4.943761e-4, -0.017096525, - 0.016152354, 0.006411955, -0.0062467987, -0.013019357, -0.0052999537, - 0.0025355595, -0.024540316, 0.013944297, 0.0060603167, 0.010606791, - 0.008836225, -0.015651563, -6.76152e-4, 0.005137404, -0.002841398, - 0.0034792833, 0.024037866, -0.006828277, 0.00952033, -0.0024466997, - 0.02470953, -0.01851691, 0.026107443, -0.014127662, 0.00625695, - 0.024385022, -0.011301034, -9.3330734e-4, -0.024003346, 0.007814981, - -0.012505386, 0.016027903, -0.023964629, -0.006614442, 0.010549774, - -6.3212967e-4, 0.0369028, 0.01917641, -0.002817012, 0.01235756, - -0.015801135, -0.027888816, 0.006737687, 0.0080553265, 0.0064148707, - 0.018271115, -0.01615644, -0.001761928, -0.0059706094, -0.02381474, - 0.010366821, -7.310173e-4, -0.0029776522, -0.0050052013, 0.0024945755, - -0.0012690402, -0.009531037, 0.005530424, 0.008023175, -0.0010968199, - -0.00339453, 0.0015138783, -0.02387903, -1.4229103e-4, -0.011048323, - 0.017819071, -0.0019701472, 0.026721284, -0.025968555, 0.019772084, - -0.018637769, -8.4410503e-4, 0.004326933, 0.019835686, 0.009202549, - 0.005818319, 0.011596615, 0.0058579044, 0.016483666, 7.528273e-4, - 0.0137483645, 0.031708315, 0.010013395, -0.026175736, 0.022465006, - 0.022181967, 0.017217945, 0.006885979, -0.00979246, -0.004891724, - 0.008083512, -0.0040884046, -0.019449435, -0.010879989, 0.011345218, - 0.0053785867, -0.008606185, 0.00487024, -0.0033708925, 0.008454636, - 0.0010721083, 0.038450666, 0.014509159, -0.013936776, 0.0022495221, - 0.007584914, -0.00665544, -0.021812817, 0.008466116, 0.023251742, - -0.046062607, 0.016964301, -0.017202951, -0.013665481, 0.021131078, - -0.010455383, -0.018603101, 0.020718353, -0.015937349, -0.023286983, - 0.007798931, 0.013850369, 0.009336482, -0.0054079276, 0.011810298, - -0.018947301, 0.014364185, -0.0031226606, -0.010596787, 0.015325422, - -0.031205855, 0.002497494, -0.028889045, 0.021792471, 0.015882114, - -0.0131904185, -0.015129191, -0.016656328, 0.0049453694, 0.00319197, - 0.013460546, -0.02458762, -0.011494969, -0.010420642, -0.022572132, - 0.018098325, 0.004284589, -0.0072044767, -9.9457786e-5, -0.006185617, - 0.009021151, -0.005692903, 0.0089399945, 0.025745565, 0.006112207, - -0.0076661166, -0.019627543, -0.0031061769, 0.0050739744, 0.01221642, - -0.010189685, 0.0011497778, -0.01159187, 0.023282126, 0.0013095929, - 0.024817515, 0.011071431, -0.0036603461, -0.005980987, -0.020500924, - -0.008872623, 0.0048506274, -0.0145302275, 0.0074781235, -0.018523851, - 0.050727155, -6.3548866e-4, -0.02271436, 0.005167675, -0.008733689, - -0.0025628791, 0.024812263, 0.008094135, 0.005609656, 0.0040199556, - 0.012866399, 0.011830592, 0.030906143, -0.02037897, -0.002739405, - 0.0030421182, 0.021865088, -0.02069127, 0.017103363, 0.01867963, - 0.03045855, 0.033743013, 0.031147169, 0.009749095, 0.010890149, - 0.010342893, -0.011946632, -0.018992674, 4.7883583e-4, -7.2188466e-4, - 0.0017488532, -0.013514247, -0.019477285, -0.019075157, 0.011372292, - -0.017624725, -0.005262931, 0.015218563, -0.026713733, 0.016457187, - 0.014038434, 0.033564523, -0.012125807, -0.0045748004, 0.003080443, - 0.020438008, 0.006069038, -0.017123194, -0.048236743, 0.024399154, - -0.0062606125, 0.028124603, -0.012097463, -0.015407071, -0.0024678016, - -0.009544447, -0.015117529, 0.010123976, -4.880293e-4, 0.013208484, - -0.014547307, -3.4571355e-4, -0.0104168095, -0.004501934, -0.01043973, - 0.008685716, 0.0059316983, 0.011456813, 0.005383235, 0.044168174, - -0.016437983, 0.0038246165, -0.0028779474, -0.020948473, 0.015802307, - 0.0146834655, -0.022995856, 0.017650453, 0.00354408, -5.7208596e-4, - -0.0013069392, -0.0045232624, -0.0021654237, -2.3873009e-4, - 7.0685073e-6, -0.0036422408, 0.018399084, 0.0014030167 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.0070167882, 0.019220091, 0.013917085, -0.0026552605, -0.009227425, - -1.6749882e-4, -0.023579294, 0.022318877, -0.06368262, 0.017556388, - -0.0027950334, 0.041722346, 0.038183633, 4.9027725e-4, 0.009775936, - -0.014491202, 0.01066066, 0.0371168, -0.0042190547, -0.028857231, - 0.011196697, -0.07706636, 0.044234537, 0.02503274, -0.024633244, - -0.022997407, 0.036382396, -0.022839397, -0.039710738, 0.058480598, - 0.007361769, 0.054189928, 8.051015e-4, -0.0038358958, 0.024119517, - -6.414733e-5, 0.020644275, -0.020308623, -0.03690942, 0.0221096, - 0.05854657, -0.0015643446, 0.026133338, -0.04631018, 0.044466134, - 0.029033054, 0.009044938, -0.005659565, 0.01171262, 0.016935708, - -0.030621773, 0.072140105, -0.036673293, -0.016624628, 0.0020060665, - -0.03989918, 0.034544803, -0.05362115, 0.023552377, 0.03866236, - 0.025526417, 0.027715834, 0.044943254, 0.008508574, 0.060313143, - -0.043431707, 0.03783305, 0.0055927155, 0.025996141, -0.048698843, - -0.005549973, 0.060484152, -0.035554685, -0.020209491, 0.05587911, - -0.05080986, -0.038694173, -0.032407068, 0.09919139, 0.041972473, - -0.02961846, 0.00946313, -0.0026847122, 0.05412171, 0.06419764, - 0.017384578, 0.008597627, 0.021078052, -0.022920206, 0.009717134, - -0.060450245, 0.006591879, 0.008291304, -0.019180663, 0.010494054, - -0.0029326489, 0.0062148185, -3.833075e-4, -0.015654728, -0.034098476, - -0.029128717, -0.0025548844, 0.017135458, 0.054580588, -0.029142097, - -3.031649e-5, -0.014150187, 0.0025336833, -0.041240778, 0.033911884, - -0.012564114, 0.01603319, 0.046647232, 0.013316644, 0.02366608, - -0.0313225, -0.026680658, -0.04964691, -0.004952772, -0.02194212, - 0.009484819, -0.0018555312, 8.931366e-4, -0.020287829, -0.03843519, - -0.01146918, 0.013497526, 0.016488185, 0.003421329, 0.008811499, - 0.017029027, -0.00578931, -0.017596476, 0.011168773, 0.04128178, - 0.0059470814, -0.0012001485, -0.012805952, 0.021577936, 0.03946813, - -0.03308124, 0.02927473, -0.04266525, 0.031148283, 0.01101673, - -0.0035913205, -0.030325197, -0.02950764, 0.061181054, -0.027961964, - -0.037760213, 0.030128086, -0.0037854277, 0.0067190477, 5.8833757e-5, - 0.005088524, 0.032374736, 0.039269317, -0.009980657, -0.03976148, - -0.02764269, 0.040035453, -0.01993441, -0.028675947, -0.016279293, - -0.004885258, -0.0022199235, 9.777645e-4, 0.008169798, -0.022322778, - -0.015605214, 0.010733179, 0.002100263, -0.011324713, -0.017497208, - 0.008828592, -0.019242449, -0.013584276, -0.003934858, -0.01925299, - 0.010714867, 1.1206062e-4, 0.0019322877, -0.02787479, -0.031510126, - -0.028762145, -0.03637466, 0.017465506, -0.039573126, -0.0010768697, - -0.007973984, 0.034363214, 0.0013009513, -0.018652506, -0.019070033, - 0.03233607, 0.024838738, -3.9664714e-4, -0.007946561, -0.053209268, - -0.030975472, -0.071404986, -0.04202141, -0.044327274, 8.822969e-5, - 0.05202277, -0.023395965, 0.06617189, 0.05801562, 0.0047363276, - -0.039948203, -0.022353435, -0.004968199, -0.0046644397, 0.015496246, - 0.0061200354, -0.01783044, 1.5789254e-4, 0.0030841313, 0.007677996, - -0.028564852, -0.030181237, -0.007866299, -0.051773008, 0.0016043124, - -0.018306078, -0.016836463, -0.059957273, 0.004509694, -0.0016570304, - -0.048418958, 0.008909482, 0.0022974338, 0.060017794, 0.0028170925, - -0.030045422, 0.036626417, -0.0012647959, -0.023012431, 0.011926368, - 0.036311604, 0.010900183, 0.03841844, 0.049764905, -0.04982124, - -0.0014530879, -0.01159287, -0.018943163, -0.013625378, 0.017737094, - -0.017920252, -0.020763779, -0.024103023, 0.031232666, 0.017967794, - -0.01127175, 0.012999509, -0.025980793, -0.003118339, 0.015114607, - -3.9258617e-4, 0.005254448, 0.047735516, 0.041064862, -0.032346677, - -0.06966833, -0.040842496, 0.04545204, -0.013109152, 0.016755108, - 0.033099316, -0.053048264, -0.017283555, -0.036813736, 0.030877005, - 0.011673864, -0.011416726, 0.018621605, -0.05896436, -0.0046007894, - 0.03421144, 0.049388584, 0.011611171, 0.036834687, -0.050670486, - 0.013095455, -0.047717445, 0.012973497, 0.042628158, 0.005116964, - -0.014780243, -0.017315913, 0.008508797, 0.033334993, -0.037937537, - 0.028892016, 0.046963513, -0.017102452, 0.06818227, -0.012005517, - 0.017635336, -0.05880214, 0.030945389, 0.04198474, 0.030161975, - -0.013237419, -0.017779222, -0.014494362, 0.0146248285, -0.03123746, - 0.005824633, 0.016520489, 0.015213696, -0.0090751415, -0.026801007, - -0.008386802, -0.008780588, -0.012985822, -0.017687716, 0.042742997, - 0.013575286, 0.02774161, -0.011366895, 0.030335393, 0.0036492494, - -0.018765822, -0.04189311, 0.0012412319, 0.009091987, 0.01651114, - -0.029075494, -0.0032045238, -0.015919682, 0.049499802, -0.06735427, - 0.061574902, -0.0051518846, 0.040704865, 0.022044228, 0.03220872, - -0.031396, -0.046643447, -0.037995074, -0.055781372, 0.04339241, - -0.007994849, -0.041093245, -0.0070387656, -0.027653562, 0.014173781, - 0.013332001, -0.023040975, -0.01500228, 0.024268456, 0.01739884, - -0.02565357, 0.04877629, 0.006489072, -0.04518952, -0.008120178, - 0.01844058, -0.021562904, -0.04334207, -0.02191268, 0.03525063, - -0.0037136332, -0.05019799, 0.006075846, 0.027688148, -0.051166326, - 0.01282371, 0.010356071, 0.07125931, -0.03150816, 0.0358981, 0.01940986, - 0.021624457, 0.0018971397, -0.017178409, 0.033081528, -0.01748579, - -0.026920492, -0.03896219, 0.05983825, -0.0156815, 0.047206998, - -1.6513484e-4, 0.0028231735, -0.021472583, 0.04928073, -0.039294112, - -4.2203403e-4, -0.034545656, -0.012623377, -0.032788876, -0.013608156, - -0.008854829, 0.046875954, 0.01339364, 0.014505651, -0.016794382, - 0.05136551, -0.0068899235, 0.042947985, 0.012306148, -0.034168825, - 0.006097738, -0.010715839, -0.020232713, 2.8435572e-4, 0.014256261, - -0.01110623, -0.005204215, 0.060400512, 0.07140678, -0.046038974, - 0.011038429, 0.013656339, -0.011520466, -0.011811893, 0.010790822, - -0.013600379, 0.012940183, -3.803722e-4, 0.06882732, -0.021813413, - 0.027668074, -0.003897372, 0.009953909, 0.09923831, 5.3627486e-4, - -0.0059330435, -0.008321421, 0.02444268, -0.011758139, -7.1829703e-4, - -0.019805945, -0.060281646, -0.038377102, -0.029416721, 0.040897418, - 0.003619572, 0.01602866, 0.032089334, -0.05546753, -0.030359033, - -0.03605885, -0.012040621, -0.043494605, 0.048042685, 0.007736738, - 0.0159212, -0.08180357, -0.020706017, 0.014158564, 0.03517866, - 0.030278806, 2.3240642e-5, 0.060176615, 0.0670706, -0.018537074, - -0.020435954, 0.052482173, -0.03488198, 0.050913617, 0.009553314, - -2.9625406e-4, -0.073491715, 0.0076332656, -0.030086733, 0.01865167, - 0.009057534, -3.1880912e-4, 0.015264937, -0.034407903, 0.0063865674, - 0.003276179, -0.0241302, -0.044551402, 0.029671175, -0.036470357, - -0.013077117, -0.048864864, -0.033689, -0.07717159, -0.013708338, - 0.045649763, -0.0126031665, 0.013910695, -0.062531844, -0.018930433, - 0.057313852, -0.0073488303, -0.040034756, -0.01982573, 0.024518339, - -0.028752606, 0.02036451, 0.021573633, -0.031194258, 0.010877813, - -0.005185038, -0.005638628, -0.0515556, 0.02247229, -0.05648805, - -0.027396515, 0.067584164, -0.022796847, -0.019983029, -0.050467443, - 0.03729266, -0.008968921, -0.03367818, 0.027884211, -0.016581796, - -0.012711459, -0.07031313, 0.007361533, -0.018576678, 0.04652658, - -0.05253296, -0.052344155, -0.06998001, -0.011768144, 0.03427759, - -0.03338363, 0.04316753, -0.008127543, 0.016636314, -0.018855078, - 0.01935707, -0.018724937, -0.038832325, -0.01451597, 0.037009906, - -0.06284184, 0.0019168473, 0.017062346, 0.066689104, -0.0181771, - 0.024125224, -0.040313754, 0.010742815, -0.02949797, 0.020195495, - -0.018336935, 0.029241715, -0.035208605, 0.037682764, 0.047946766, - -0.004452027, 0.031501073, -0.0652596, -0.062759034, -0.009289055, - 0.051407684, 0.008859825, -0.057679586, -0.023236318, -0.04694647, - 0.006812797, 0.023846935, 0.0029448466, -0.025937961, -0.05220124, - 0.047203775, -0.0024263253, 0.004186477, 0.0011592278, 0.04834012, - 0.0115749035, -0.04835096, 0.040935785, -0.007788141, -0.024976535, - -0.06460131, 0.0033837364, -0.034228425, 0.034448024, 0.03578624, - 0.034800004, -0.0022278703, -0.0011023596, -0.037955172, -0.017630331, - 0.013734797, 0.016469449, -0.013091518, 0.011156124, -0.01786066, - -0.019253077, -0.045517292, 0.025586592, 0.031644367, 0.022001429, - 0.011302182, -0.016469937, -0.00609508, 0.017151412, -0.0013992569, - -0.014457493, 0.006797869, 0.0066847065, 0.05129944, 0.02273321, - 0.01573248, 0.008035585, 0.028298693, 0.035119932, 0.0039544743, - -0.01286136, 0.006242978, -0.019748386, 0.030231886, 0.023497613, - 0.08443952, 0.061634716, 0.0041768625, 0.015003454, -0.014236821, - 0.020918483, 0.021283895, 0.058829278, 0.036422506, 0.0036035655, - 0.043783873, -0.038353816, -0.008536212, -0.012218145, 0.0054917894, - -0.04103675, -0.020577716, 0.020290291, 0.012173942, 0.005265845, - -0.007968825, 0.0015025728, -0.016645843, -0.025310718, 0.06685762, - 0.015851362, 0.051811703, 0.001663979, -0.028839398, -0.013417095, - 0.049994204, -0.010115144, -0.041613393, -0.041253347, -0.0048764306, - 0.042757362, 0.008655674, 0.006686696, 0.04446962, -0.008769609, - 0.013431899, -0.017347205, 0.018403566, -0.05230878, -0.015693499, - -0.021900697, -0.0119918445, 0.030020656, 0.012487335, 0.010294397, - 0.055817913, 0.003617102, -0.018031275, -0.010266931, 0.016429624, - -0.013513341, -0.048271365, 0.03469797, 0.01803781, 0.007894155, - -0.03488989, 0.013495586, -0.00625836, -0.010466311, -0.016226, - 0.029775137, 0.01648412, 0.05412284, -0.01185762, -0.020967344, - -0.0172462, 0.008098208, 0.0049492274, 0.02247771, -0.049100205, - -0.022939432, -0.03859003, 0.01770058, -0.027528185, 0.052417543, - 0.005994218, 0.049961373, -0.01246216, 0.010586628, 0.015962549, - 0.04057523, -0.002036237, -0.00978119, -0.058601074, -0.029356899, - -0.023356281, 0.054549582, 0.005515412, -0.07467099, -0.0032700403, - 0.016636895, 0.032305613, -0.059169438, -0.002322144, 0.0071070227, - -0.029024161, -0.02978159, -0.024218477, 0.0038768274, -5.675899e-4, - 0.01207537, 0.033472005, 0.004894497, 0.019310364, -0.011311874, - 0.0075811883, 0.006817493, -0.012778506, -0.02314615, -0.01021556, - -0.003850826, 0.028089175, 0.013157105, -0.027817426, -0.016203761, - -0.012228014, -0.020387687, 0.03495253, 0.04500856, 0.0012999063, - -0.005079712, 0.008201407, 0.01146795, 0.07093133, 0.016579919, - -0.016542837, 0.011565065, -0.05661354, 0.03519514, -0.011890532, - -0.030678222, -0.04605934, -0.021833465, 0.0063344217, 0.024970036, - -0.024804275, -0.017996682, 0.030990308, 4.9895036e-4, -0.012742019, - -0.034319866, 0.013949027, -0.004055143, -0.01391438, -0.016711278, - 0.014920903, -0.04522614, 0.018054608, 0.105297044, -0.0429043, - -0.018632606, 0.003108879, -0.019925747, 0.021381753, -0.022066522, - -0.037566397, 0.012147459, 0.010984886, -0.04908101, 0.002840212, - -0.027534707, 0.020079177, -0.054133836, 0.0323067, 0.012775763, - 0.06879438, -0.016931864, -0.006458639, -0.009776169, 0.040557094, - -0.026863119, -0.021164507, -0.0107977865, -0.008270405, 0.015056888, - -0.020519752, -0.0033601576, 0.020031938, 0.016286233, -0.05163489, - 0.039016005, -0.030620726, 0.035453774, 0.037301652, 0.02860858, - -0.029858043, -0.006707391, -0.015702203, 0.0071260626, 0.010579725, - -0.054502808, -0.001787506, 0.017300945, -0.002267164, 0.027413776, - -0.037960887, -0.05014537, -0.0490413, 0.02745765, -0.020102343, - -0.033027705, -0.050468083, 0.015169221, -0.02239727, -0.023193324, - 0.012988824, 0.02067469, 0.024391351, -0.050089926, 0.0074616442, - -0.019248726, -0.058426183, -0.04396666, -0.028551135, 0.05229349, - 0.019409863, 0.01902492, -0.02160702, 0.05513446, 0.018579101, - 0.020257551, 0.019680837, -0.05640087, -0.023896774, 0.06671025, - 0.005407897, 0.0108920345, 0.029435914, 0.0048768856, 0.006779524, - -0.011518795, 0.036273647, -0.0016079557, 0.028082177, -0.04775974, - -0.005531499, 0.0284592, 0.022350585, 0.02546185, 0.015177724, - 0.041913502, 0.06448411, 0.040732782, -0.034822818, -0.012928135, - -0.027398517, -0.0085324105, -0.026836945, -0.002536821, -0.042066734, - -0.042028874, 0.025966147, -0.029604943, -0.056859426, 0.04149811, - 0.007971048, 0.02559204, -0.011024582, 0.027771967, -0.059906613, - 0.03969724, 0.017735654, -0.07326295, -0.018679034, 0.0037040082, - 0.054757282, -0.02942839, -0.0023777962, 0.038667962, 0.06686058, - 0.030358966, 0.021913221, 0.034949172, 0.03821903, -0.0010128389, - -0.046530694, 0.00941026, -0.049287762, -0.029597297, -0.046256784, - -0.025175016, -0.012497781, -0.008679311, 0.005751217, -0.024636036, - 0.04420769, -0.006858376, 0.004200849, -0.038202636, 0.003954041, - 0.0048377304, -0.0020357876, 0.016902613, 0.011193022, -0.0071344366, - -0.027325831, -0.048619717, 0.010138748, -0.030050332, 0.062156565, - 0.08527989, 0.012378886, 0.07636918, 0.033278875, -0.026303869, - 0.025908675, 0.0431903, 0.012737943, 0.058078017, -0.026324749, - -0.01771074, 0.047371317, 0.004897036, 0.007894208, -0.0021011378, - -0.008001571, -0.003429115, 0.0320061, 0.01324112, -0.009578436, - 0.0019342506, 0.015574281, 0.010118483, 0.008198977, 0.03148752, - -0.0074301865, -0.0017945084, -7.575392e-4, 1.5741307e-4, 0.027520815, - -0.010243075, -0.031958688, 0.006283191, -0.017431634, 0.026273953, - -4.0988546e-4, -0.006171152, -0.050026882, 0.012120333, -0.04430672, - -0.044697307, -0.017984843, 0.018590584, 0.00923843, 0.0042599873, - -0.05167079, 0.03683146, -0.029591685, 0.012166232, -0.008184045, - 0.007582861, -0.031735443, -0.018142622, -0.0044333353, -0.01109146, - 0.025694964, -0.015614931, 0.0694475, 0.092166655, 0.05555729, - 0.025973067, -0.030020546, 0.0037709926, -0.025376957, -0.04793447, - 0.026209997, -0.032993298, -0.008123022, 0.020159202, -0.030263904, - 0.0109695345, 0.008641391, 0.020744592, 0.03680349, 0.029753653, - -0.005466471, 0.02698134, -0.040134005, -0.009880409, -0.039977673, - -0.0326202, -0.016387917, -0.010688232, -0.024971068, 0.03968028, - 0.012337828, -0.033915304, 0.07024831, -0.026450776, 0.01402959, - 0.021209152, -0.029111324, -0.06239422, 0.027567325, -0.011540916, - -0.021714298, 0.010933665, -0.04755339, 0.079067014, -0.035238255, - 0.019646423, -4.7822908e-4, 0.014074768 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.0059309807, + -0.019531071, + -0.040597145, + 0.0070070378, + -0.0019194852, + 0.010062039, + -0.013611489, + -9.2210656E-4, + 0.016156368, + -0.013680677, + 0.014699066, + 0.0046975035, + -2.7012805E-4, + -0.020494873, + -9.3440805E-4, + -0.014560458, + 0.0149257835, + 0.011250322, + 0.00797375, + 0.008522224, + -0.018350808, + -0.004726744, + -0.019529777, + 0.030575316, + 0.030441163, + -2.6516613E-4, + 0.020137515, + -0.008553611, + 0.02343399, + -0.019410964, + 0.005832458, + -0.018101804, + -0.026596347, + 0.017076751, + -0.0088667, + 0.0022182183, + -0.0030535953, + -0.020737378, + -0.0077064033, + 0.018720245, + -0.011909498, + 0.0038958418, + 5.3156423E-4, + -0.022247931, + 0.021629216, + -0.008839639, + 0.009265481, + 0.015688905, + 0.018177727, + -0.0013135667, + 0.00969291, + 0.008361584, + -0.003586909, + -0.012526654, + -0.020277247, + -0.023689598, + -0.0074752253, + 9.386405E-4, + -0.003767926, + 0.002914723, + -0.0044563734, + 0.0077859247, + 0.009425636, + -0.0027169946, + -0.0069071697, + -0.02890072, + -0.015111006, + 0.020009574, + -0.014170919, + 0.01704198, + 0.033373017, + 0.014124789, + 0.0032092794, + 0.019756244, + 0.008621151, + -0.0040882425, + -0.0017047209, + -0.0070849396, + 0.0023483837, + -0.001982615, + 0.005484088, + 0.01495668, + -0.0043527745, + 0.0018672912, + 0.0153242, + 0.033829574, + 0.0062612216, + -0.0078520235, + 0.02111044, + -0.02366394, + 0.006152544, + -0.0061021326, + 0.0274468, + 0.018456297, + -0.0024679145, + 0.006044131, + 0.010220132, + 0.007222112, + -0.0031299714, + 0.0055340594, + 0.011183949, + -0.025937114, + -0.017281737, + -0.0067378897, + 0.015568928, + 9.924419E-4, + 0.02318524, + 0.029430818, + -0.018649649, + -0.008381629, + -0.0041513387, + 0.03996936, + -0.005469913, + 0.030254796, + 0.0061229696, + -0.006432521, + -0.0032742396, + 0.010957787, + -0.015899599, + -0.0013653869, + -6.1240024E-4, + 0.03719728, + 0.0035324064, + -0.004509255, + 1.8846024E-4, + -4.2087687E-4, + -0.018358015, + 0.012968616, + 0.023325298, + -0.012640815, + 0.028837629, + 0.023739666, + -0.016982518, + 0.016755106, + 0.0040644775, + -0.017807338, + -0.0073032826, + -0.001023339, + -0.0072602266, + 0.023744518, + -0.004451086, + -0.009310841, + -0.009040203, + -0.009438576, + -0.020818068, + -0.0032265414, + 0.017114371, + 0.004258818, + -0.031792857, + 0.0025868383, + 0.01812173, + 0.00848609, + 1.363047E-4, + -0.023518544, + -0.013329148, + -0.0101773385, + -0.018414404, + -0.009653686, + -0.002146895, + 0.005104393, + -0.015202032, + -0.025452059, + -0.010938312, + 0.001050434, + 0.01866206, + -0.014373055, + -0.0029455407, + -0.020144166, + 0.0017534985, + -0.02832949, + -0.017985623, + 0.00930905, + 0.020849178, + 0.011385854, + 0.021908382, + 0.010579055, + 0.017773239, + 0.023406003, + 0.0041935826, + -2.6264729E-4, + -0.0131158, + 0.012506685, + 0.013305673, + -2.8346825E-4, + -0.016340382, + 0.0037646494, + -0.015072408, + -0.0046777804, + -0.008393563, + 0.009714213, + 0.0060535674, + -0.0048071626, + 0.014173373, + -0.013422832, + -0.0015838711, + 0.008703809, + 0.03453917, + 0.0049359505, + -0.010653408, + 0.012432832, + 0.007899749, + -4.6334465E-4, + 0.022059038, + 0.008854552, + -0.010977861, + 0.016848568, + -0.028675541, + -0.012366055, + -0.01097796, + 0.0353293, + 0.011176601, + 0.011160832, + -0.017388424, + 0.014399121, + 0.016885068, + 0.0032171705, + 0.014199162, + -0.01219753, + -0.01824491, + 0.0049330876, + 0.012350547, + -0.009446477, + 0.0045643994, + 0.0042704423, + -1.9107442E-4, + -0.02430657, + -0.0026952466, + -0.04356485, + 0.019604838, + -0.0037102932, + 0.0056107272, + -0.014904458, + 0.012830823, + -0.020444114, + -0.004186674, + 0.018871615, + 0.013053196, + 0.005229292, + -0.010613616, + -0.0036748538, + 0.013966716, + 0.018693201, + 0.020036237, + 0.012300955, + 0.004806635, + 0.0013534318, + 0.00810028, + -0.009639337, + -0.013035211, + 7.17349E-4, + -0.025771199, + 0.012505697, + -0.021908857, + -0.0016142741, + 0.0029732697, + -0.008312316, + 0.006813501, + 0.014021044, + -0.013429442, + 0.015673282, + -0.016572839, + 0.020382097, + 0.0037431552, + 0.016374903, + 0.007052068, + 0.009214272, + 0.008867658, + -0.006956746, + -2.2317652E-5, + 0.021043723, + 0.012643623, + -0.014152866, + 0.034379613, + -7.441256E-4, + -5.23129E-4, + -0.016342033, + 0.005728743, + -0.005462544, + -0.013337215, + -0.021012647, + -0.0067936773, + -0.019815039, + 0.008095493, + -0.019459326, + -0.015565169, + -0.0031227495, + -0.02195031, + 0.026957676, + 0.016165262, + -0.017605275, + 0.008921579, + -0.0098848, + -0.010600005, + 0.016224097, + -0.005247579, + 0.0038633985, + 0.02221688, + 0.0026167403, + 0.0218859, + -0.0089742, + 0.024091767, + -0.0013950219, + 0.011605333, + -0.005117222, + -0.010633593, + -0.02487177, + -0.024479963, + -0.009399729, + 0.0062333485, + 0.015401273, + 0.027850231, + -0.013355137, + -0.0046835695, + 0.0073779924, + 0.0029799424, + 0.0073519787, + 0.014954694, + 0.0331196, + 0.031667084, + -0.016482877, + -0.009197973, + 0.027771126, + -0.02754336, + 0.003058781, + -0.002902263, + -0.004995803, + -0.02860619, + 0.03193163, + -0.0028552676, + 0.010654571, + 0.03010268, + 0.0152835855, + 0.0066241543, + -0.025824038, + 0.007104011, + 0.008593116, + -0.015396011, + -0.0042587374, + 0.029123317, + 0.0047176424, + 8.7525266E-5, + 0.030167427, + 0.004341543, + -0.009209117, + -0.015288206, + 0.010336824, + -0.0070588095, + -0.012264314, + 0.007668216, + -0.0091754375, + 0.018539812, + 0.036667883, + -0.0038294727, + 4.3112246E-4, + -0.004074709, + -0.0023542931, + 0.022980647, + 0.0045240936, + 0.00771766, + 0.015279611, + 0.002242166, + 0.022073094, + -7.8419E-4, + 0.012039778, + 0.0026069207, + -0.041390672, + 0.023833482, + -0.012457652, + 0.007394001, + 6.4430304E-4, + 0.0036836592, + 0.021159671, + -0.009815142, + 0.01999558, + -0.022265816, + -3.7988462E-4, + 0.03307288, + 0.004675256, + 0.017505633, + -0.0047844714, + 0.017985465, + 0.005758493, + -0.01102429, + 0.01880742, + 5.4982037E-4, + -0.011589994, + -0.010656014, + -0.0011493425, + -0.012742359, + 0.012103642, + -0.019465558, + 0.0027271505, + 0.033586096, + 0.0033382892, + -0.012525812, + -0.022582745, + -0.020979973, + -0.0054215845, + 0.006720097, + 0.0046952358, + -0.0015239199, + 0.0011279342, + -0.012473561, + -0.0072209686, + 0.0056017833, + -0.01424998, + -0.009227636, + 0.009786606, + 0.0056095854, + 0.015057232, + 0.018635295, + 0.027041717, + -0.020100983, + -0.028038973, + 0.0077487594, + 0.005569208, + -0.014513712, + 0.00726406, + 0.013707083, + 0.0037314894, + -0.004093661, + 0.012542233, + -0.025053222, + 0.0042765792, + -0.0051614246, + -0.007134685, + 0.016679693, + 0.009445147, + -0.0064262897, + -0.024186358, + -0.0011895188, + 0.014082111, + 0.026340596, + 0.017356228, + 0.00570429, + -0.0014212249, + 0.04149311, + 0.027944714, + 0.015246979, + -0.018265551, + -0.017228318, + -0.0028352889, + 8.447479E-4, + -0.0012539855, + 0.0034682928, + 0.030360015, + -0.0041112187, + 0.0028801383, + 0.020225903, + -0.018251395, + 0.020702813, + -0.002846839, + -0.017912762, + 3.3161702E-4, + 0.01116414, + 0.01637649, + -0.027858777, + -0.009455079, + -0.011555725, + 0.016521005, + 0.007519451, + 0.0051332763, + -0.017963462, + -0.0075335875, + -0.004542491, + -0.013198484, + -0.020841327, + 0.0041613514, + 0.022312773, + 0.0018065216, + 0.024948338, + 0.009436652, + -0.009912908, + -0.021471387, + -0.0079868175, + -0.019342884, + 0.0068349615, + -0.005571805, + -0.01945553, + 0.011936239, + 0.016157947, + -0.017060306, + -0.014160264, + 0.031025397, + 0.017558025, + -0.024203777, + -0.011984504, + -0.033932813, + 0.014765731, + 0.025908513, + 0.020051405, + 0.017796317, + -0.004765954, + -0.010327312, + 0.020962441, + 0.017301232, + -0.01947739, + 0.010183742, + 0.018944865, + 0.0027724623, + 0.0046704332, + -0.007104855, + -0.011941923, + -0.009387713, + 0.0080791805, + -0.0018722918, + 0.01080543, + 0.013772348, + -0.01774594, + 0.006268669, + 2.2322495E-4, + -0.014420576, + 0.007096605, + 0.012652477, + 0.0048500584, + -0.0017162395, + 0.01895085, + -0.00997919, + 0.010927809, + 0.029948292, + 0.024467358, + -0.032539636, + -0.016416684, + -9.68859E-4, + 0.00840359, + 0.0055567455, + 0.017682338, + 0.0046654325, + 0.046248265, + -0.0054000556, + -0.015789177, + 0.0013775714, + 0.028986083, + 0.009844449, + -0.019581305, + 0.0016424393, + 0.008607526, + 0.025058853, + -0.00455004, + -9.985084E-4, + -0.011251428, + -0.013615137, + 0.0049211024, + 0.013088424, + 0.025422161, + -0.010115518, + 0.0054046325, + -0.026341943, + 0.008474623, + -0.016711466, + -0.008567588, + -0.0135386465, + -0.0031038811, + -0.015183293, + 0.0061618113, + 0.009382388, + -0.022621796, + -0.0031169192, + -0.002140497, + 0.00837292, + -0.015096382, + 0.0017202069, + 0.0033114164, + 9.405615E-4, + -0.028163867, + -0.026158523, + -0.025691366, + -0.014490414, + -0.012903498, + -0.0049281837, + -0.03375359, + 0.013250439, + 0.015949506, + 0.009276184, + -0.0036007266, + -0.003652272, + -0.013809699, + 0.008065425, + 0.013798408, + 0.035252787, + -0.0059184334, + 0.0015868071, + 0.00688012, + -0.015380351, + 0.012362503, + 0.022803161, + 0.00756758, + 0.0049923887, + -0.0035512876, + 0.03356705, + 0.002935438, + -0.013690989, + 0.0116696665, + 0.02438417, + 0.01397862, + -0.017223367, + 0.019360553, + -0.00754945, + 0.0048528556, + -0.0037775107, + 6.0493173E-4, + -0.007874285, + -0.0068783206, + 0.012078729, + 0.015182417, + 0.005107383, + 0.017967233, + -0.018775895, + -0.010852848, + -0.007717123, + -0.008735461, + -0.020126794, + -0.014056358, + -0.008497634, + -0.031925827, + 0.0035046476, + -0.021083727, + 0.01656008, + 0.024680821, + 0.025510274, + -0.013815156, + -0.0038836915, + -0.024446866, + -0.019480221, + 0.0012205231, + 0.007531781, + 0.011036451, + -0.0037802109, + 0.01732771, + 0.006927921, + -0.01981925, + 0.022951314, + 0.027901405, + 0.0126840975, + 0.014811218, + -0.011824834, + -0.015790535, + 7.663811E-5, + -0.020318162, + -0.015533056, + -0.007456807, + 0.0033211051, + 0.011608078, + 0.012892237, + -0.0042494703, + -0.0027527888, + -0.028932758, + -0.01501301, + -0.023042522, + 0.01360678, + -0.009940859, + -0.008920923, + -3.5284707E-4, + -3.6147243E-4, + -0.016363496, + -0.019938912, + -0.01611343, + 0.0029747277, + 0.003105938, + 0.0048833177, + 0.017405808, + 0.015607896, + -0.03025209, + 0.005560313, + -0.021758137, + 0.0057878247, + -0.004184617, + -0.0058135125, + -0.014704322, + 0.0060129804, + 0.014826344, + 0.006098811, + -0.0037812167, + 2.936617E-4, + -0.0047752266, + 0.001885446, + 0.011767155, + -0.009734915, + 0.023644863, + 0.022215823, + -0.019235156, + -0.03143806, + 0.0072496147, + 0.019477118, + -0.0050928374, + 0.027859123, + 0.0021764156, + -0.008866563, + -0.0075454116, + 0.008182146, + -0.0043349406, + -0.0031515588, + -0.025127169, + -0.010297127, + -0.017787904, + 0.025730105, + 0.014111063, + 0.027925707, + -0.0071512596, + -0.0030672066, + -0.004743657, + -0.0016108253, + -0.028629845, + -0.0040300894, + -0.0050438987, + -0.009172535, + -0.001812781, + -0.0058083804, + 0.0036260302, + 0.018813957, + -0.014932824, + 0.020557458, + -0.024581036, + 0.005170888, + -0.013989368, + 0.008636907, + -0.020088432, + 0.028597351, + -0.006222498, + 0.01937979, + -0.0036619771, + -0.0042060195, + -0.0050836573, + 0.008173445, + 0.0021647378, + 0.02322935, + -0.0077945506, + 0.005328644, + 0.015186855, + -0.019044867, + -0.01437131, + 0.03282487, + -0.005865125, + 0.015085494, + 0.012456535, + 0.03967458, + -0.0051141987, + 0.012645711, + 0.005513964, + -0.0042161187, + -0.0045522135, + 0.009126245, + -0.020653462, + 0.024331562, + 0.039205737, + 0.010136995, + -0.0029715407, + 0.008614221, + 0.013036619, + 0.017584296, + 0.0078006596, + -0.0043325494, + 0.010579798, + -0.009392197, + 0.008170162, + 0.0073496527, + 0.001664065, + -0.032506853, + 0.023712594, + 0.021957088, + 0.0011657589, + -0.0060970187, + 0.0019721994, + -0.017401347, + 0.017555503, + -0.0103579, + 6.3706544E-4, + -0.008743936, + -0.0036900588, + -0.019719083, + 0.029626532, + 0.0028733378, + 0.004841251, + 0.008668926, + -0.0053965226, + 0.008338321, + 0.006346309, + -0.0074813105, + 0.006748087, + 0.01526586, + -0.0020917412, + 0.0120747825, + 0.026305238, + -0.0077070417, + 0.02150117, + -0.023823017, + -0.011685354, + -0.006156007, + 0.032023154, + -0.022585243, + 0.00866198, + 0.0028092798, + -0.013221799, + -0.008861811, + 0.014166122, + 0.013067931, + -0.013739775, + -0.01625236, + 0.01277635, + -0.0074389754, + 0.0189037, + 0.008405144, + 0.007424448, + 0.00704174, + -8.167428E-4, + -0.036388688, + 0.021650322, + -0.016638713, + 0.01865752, + -0.002172587, + -0.0018585331, + -0.012550916, + 0.016732601, + 0.0089666, + -6.519098E-4, + -0.0036196273, + 4.8800613E-4, + -0.002784296, + 0.0025764895, + 0.018977717, + -0.014518549, + 0.01819804, + 0.038937, + -0.010067517, + 0.0075429906, + -0.010078321, + -0.019372184, + -0.02093244, + 0.027169367, + 0.016762488, + 0.0054995986, + -0.0062381146, + -0.03951359, + 0.0021944412, + 0.0068145557, + 0.003095046, + -0.003817504, + 0.006087179, + 0.017168218, + 0.02198882, + -0.013500691, + 0.0082189385, + -0.009034888, + -0.008367241, + 0.01846389, + -0.009490243, + 4.50612E-4, + 0.012391824, + 0.00843668, + -0.018854035, + 0.006708076, + 0.009617518, + -0.0059989886, + 0.0033247997, + -0.0014714669, + 0.023120709, + 0.009159368, + -0.0024357091, + 0.020883998, + -0.009556263, + -0.002598817, + 0.007818117, + 0.018010125, + 0.010352501, + -0.038186185, + 0.011911113, + -0.011515489, + 0.012764774, + 0.0026244044, + 0.0135205835, + -0.019287126, + -0.0046227, + -0.0073781093, + -0.028665585, + 0.015902564, + 0.011224125, + -0.0044926926, + 0.007936489, + -0.0021531305, + -0.002964521, + -0.019623129, + 0.0077912477, + 0.010570862, + -0.026459087, + -0.00729857, + 0.015760455, + -0.006007818, + 0.004603477, + -0.015390288, + -0.01098686, + -0.0011481658, + 0.0054159714, + -0.011498052, + 0.026051207, + -0.029295288, + 0.0030601085, + 0.022067554, + -0.009846477, + -0.02767193, + -0.0019210771, + 0.0016142349, + 0.008354453, + -0.0047786706, + -0.0034334452, + -0.017194543, + -0.012282321, + 0.011023561, + 0.0058917673, + 0.0179873, + 0.003976707, + 0.010356866, + -0.0072723944, + 0.026426591, + 0.0068439296, + 0.034309246, + 0.0033017434, + 0.01500654, + -0.024479968, + 0.0022448183, + -0.01677805, + 0.027214086, + 0.01649434, + 8.5603906E-4, + 0.018440856, + 0.0218796, + -0.020684354, + -0.018963443, + 0.009755748, + -0.026179362, + -0.0028768845, + 0.017299604, + 0.031896587, + 0.014349927, + 0.004933573, + -0.011477865, + 0.02489269, + -0.011858228, + -0.011409569, + 0.007697059, + 0.017069971, + -0.010893591, + 0.002819206, + -0.0018001941, + 0.018780736, + 0.019375982, + 0.016355291, + 0.024133638, + 0.00784783, + 0.015296653, + 0.009831419, + 0.024082623, + 0.02047445, + -0.011229663, + -0.018258875, + 0.009658876, + 0.01767508, + 0.009493532, + -0.0050663725, + -0.022675889, + -0.0048853024, + 0.006107862, + -0.027257329, + 0.0105905505, + 7.089205E-4, + -0.012270424, + -0.005765106, + -0.008525414, + 0.02614714, + -0.017020846, + -0.01654478, + -0.0070700822, + -0.023312217, + 0.0068297544, + 0.025526196, + 0.0023582515, + 0.00989184, + 0.001746986, + 0.0029238018, + 0.010930728, + -3.100935E-4, + -0.018579004, + 0.016938593, + 0.0017583226, + 0.011011574, + 7.839065E-4, + -0.035815053, + 0.001971684, + -0.005499776, + 0.013921795, + -0.013018315, + 0.01963135, + 0.004818088, + -0.015672643, + -0.0052129873, + 0.0051117726, + -0.016266089, + 0.0032560138, + -0.008866342, + -0.017584067, + -0.010863869, + 0.007181825, + 0.015502653, + 0.018556869, + 0.0059755114, + -0.008362034, + 0.017782692, + 9.989516E-4, + -0.015841356, + -0.016850919, + 0.008594016, + 0.00527853, + 0.007831816, + -0.012613829, + -0.015995469, + -0.024650296, + -0.0024015047, + 0.0013783824, + 0.0060145548, + 0.018918071, + 6.278136E-4, + -0.006635058, + 0.005025874, + -0.01817994, + 1.6055556E-5, + -0.023799742, + 0.005622736, + -0.00925858, + 0.021561854, + 0.0058243726, + 0.010701979, + 0.007929743, + 0.003064368, + 0.004840851, + -0.04422615, + -0.021394178, + 5.28324E-4, + 0.00666828, + 0.006328879, + 0.0128607135, + -0.0047992095, + 0.006013784, + 0.006834546, + 0.0054386295, + 0.019575119, + -0.021087032, + 0.024585987, + 0.008428053, + -0.028994575, + 0.030890122, + -0.03246175, + -0.012767109, + 0.009301489, + -0.017498666, + -0.004510924, + -0.019165078, + -0.008937535, + -0.005705365, + 0.006119667, + 0.0058241533, + 0.0032360055, + 0.003208832, + -0.027424816, + 0.0037348073, + -0.016334945, + -0.009071345, + 0.0015407664, + -0.0014277478, + 0.0046985326, + 0.008804755, + 0.004664575, + 0.011914854, + 0.012941404, + -0.013703555, + 0.013045414, + 0.0044864146, + -0.018767726, + -0.014071771, + -0.0139516555, + 0.011566019, + 0.02272993, + 0.009422982, + -0.0068657566, + -0.034906883, + 0.0017023649, + 0.0010360193, + -0.0045409272, + 0.009171207, + 0.008408542, + 0.010434264, + -0.0068768496, + -0.013406137, + -0.009333972, + 0.014070551, + 0.020482995, + -0.024308776, + -0.027172063, + 0.020454379, + -0.0184493, + -0.016965114, + -0.0038388355, + -0.003893484, + -0.004934552, + -0.043014277, + 0.016526634, + -0.005537375, + 0.010709684, + -0.011285398, + 0.013665329, + -0.013261041, + -0.033885226, + -0.0056951772, + 0.013161633, + 0.003672463, + 0.018544765, + -0.003803124, + 0.0048994063, + -0.0225426, + -2.3616647E-4, + 0.0033913432, + -0.020038657, + -0.025598763, + 0.0063280785, + -0.023113642, + -0.006649524, + -0.043204844, + -0.002690961, + 0.004572051, + -0.010518694, + -0.028898962, + 0.013039185, + -0.01465692, + -0.0025920998, + -0.008948678, + -0.007840599, + 0.0151235005, + 0.012185399, + -0.04166774, + -0.002738164, + 0.0033512872, + -0.0046618525, + 0.007688803, + -0.017132267, + 0.016084582, + 0.009970702, + 0.014541887, + 0.0023387945, + -0.031258825, + -0.018319855, + 0.012266979, + 0.025875488, + 0.011602614, + -0.009075296, + 0.0149034625, + -0.007805077, + 0.02842326, + -0.011154397, + -9.5970195E-4, + 0.01923049, + -0.011708938, + 0.024604581, + 0.012765355, + -0.023421085, + -0.011514893, + 0.004489087, + 0.009376642, + 0.031187503, + 0.013921778, + -0.032722536, + -0.009142775, + 0.011201806, + 0.035938367, + 0.017329553, + -0.014512551, + -0.0076316027, + 0.0031880832, + -0.009190077, + 0.018708348, + 0.014607189, + -0.010797473, + 0.003711087, + 0.004566631, + -0.0068665487, + 2.9459753E-4, + 0.01697204, + -0.008965633, + 1.3353804E-4, + 0.016474232, + 0.020165544, + 0.005630105, + -0.01316971, + 0.007842341, + 0.0040837773, + 0.023089338, + 7.391064E-4, + -0.012373058, + 0.002205989, + 0.020710217, + 0.008077941, + -0.011219401, + -6.2163046E-4, + 0.0016486881, + 0.0033827957, + -9.686993E-4, + 0.012132286, + -0.015419072, + -0.0060020364, + 0.005966447, + -0.008540523, + -4.5380025E-4, + -0.0029227545, + 0.008549577, + -0.0147095695, + -0.0066762045, + 0.018173413, + -0.016673667, + 0.003840181, + -0.022123316, + 0.021791128, + -0.013160286, + -0.012336844, + 0.033635084, + -8.839492E-4, + -4.3164115E-4, + 0.021648822, + -0.0032067576, + -0.0036739951, + 0.0066278074, + 0.022931913, + -0.001507557, + 0.0101923905, + 0.0046958504, + -0.014884152, + -0.017098434, + -0.0143137835, + -0.008573042, + 0.012155879, + -0.026572587, + -0.012398505, + -0.009730574, + -0.0018872437, + -0.03180934, + -0.008706042, + -0.0048610168, + -0.005495396, + 0.015208061, + 0.007440539, + -0.0028589808, + -0.008722561, + 0.0019511408, + -0.031272203, + -0.020929385, + 0.0072854687, + 0.016806435, + -0.021016156, + 0.002545079, + -0.014572313, + -0.023289852, + 0.004682497, + 0.0044640265, + 0.0062246216, + 0.024629215, + 0.0035711278, + 0.034601733, + -0.020199258, + -0.017751265, + -0.008109243, + -0.039909046, + 0.010702462, + -0.008828101, + -0.0045129713, + 0.009409215, + -0.018222163, + 0.016990416, + 0.010202194, + 0.008191508, + 0.0011320041, + -9.555389E-4, + -0.01375881, + -0.019656735, + 0.034407634, + 0.021010261, + -0.027633093, + -0.00973916, + 0.024011038, + 0.007261659, + 0.007671301, + -0.01887784, + -0.025124162, + 0.008477786, + -0.023403604, + 0.010971814, + 0.014020392, + -0.00509998, + -0.017720697, + -0.018661011, + -0.0029286558, + 0.028215589, + -0.0076502743, + -0.0068797227, + -0.03503207, + 0.0088302735, + 0.018430617, + 5.450098E-4, + -0.011687274, + 0.010671809, + -0.0067992816, + -0.010000654, + 0.002193819, + -0.018887078, + 0.033050507, + -0.035668254, + 0.019321958, + -0.0033928473, + -0.019329512, + -0.017464582, + -0.05805381, + -0.0044619353, + 0.013421829, + 0.011123972, + 0.013930218, + 0.004957541, + -0.007371564, + 0.0038134078, + -0.007248031, + -8.780956E-4, + 0.0073578306, + -6.982976E-4, + 0.014929598, + 0.025002336, + -0.01496696, + -0.0047323196, + -0.0017933063, + 0.017550984, + -0.019597188, + 0.00987355, + 0.007375391, + 8.5605035E-4, + -0.0044234707, + -0.022895884, + -0.0018456762, + 0.0073699844, + 0.007751544, + 0.0089742625, + 0.00807657, + 0.020183314, + -0.03263531, + 0.010166356, + 0.021117475, + 0.00610562, + -0.0031916718, + -0.0012846828, + -0.010674803, + 0.0034557667, + 0.0010683626, + -0.005390491, + -0.013899507, + 0.002898404, + -0.016854936, + -0.008946568, + -0.003067039, + 0.0027478964, + 0.019944502, + -4.432923E-4, + -0.022714633, + 0.013333067, + 0.015949931, + -0.0028074782, + -0.0069095823, + -0.044562653, + 0.011325303, + -0.014601246, + 0.026013514, + -0.020624785, + 0.014817011, + 0.0070635625, + -0.0013962404, + 0.014104983, + 0.018638698, + -0.017830785, + -0.017685477, + -0.010509724, + 0.023705672, + 5.743685E-5, + -0.002841915, + -0.0028073483, + 0.0064847786, + 0.0058311997, + -0.0016490533, + -0.025136463, + -0.018569237, + -0.009934441, + 0.0127821695, + -0.0013757545, + 0.007642972, + -0.014274116, + -0.026983436, + -0.012099048, + 0.010619061, + -0.0013407632, + -0.01988842, + -0.014886535, + 0.008279973, + -0.036426187, + -0.003080722, + -0.022368899, + -0.008504157, + 0.039563976, + -0.0070106797, + 0.022869566, + -0.009474441, + 0.007946357, + 0.027655218, + 0.002957988, + -0.0021922528, + -0.010447888, + -0.013899811, + -0.0040336456, + 0.006600179, + -0.011082939, + -0.010409566, + -0.010957236, + -0.0075250333, + -0.014076228, + -0.018139742, + -0.016583405, + 0.020472784, + 0.0015011583, + -0.012194567, + 0.013160204, + 0.01103485, + 0.011480862, + 0.0051033404, + 9.1346196E-4, + -0.003499149, + 0.011616443, + -0.016925402, + -0.026322665, + 0.008119765, + 6.4630504E-4, + -0.008914988, + -0.010590504, + -0.0022913301, + 0.025575016, + -0.0013871214, + -0.0032353061, + -0.001559009, + -0.006573955, + -0.011300311, + 0.0060084458, + 0.0346906, + 0.014375095, + 0.029637143, + -0.0017933006, + -0.011091553, + -0.032817576, + -0.0065736463, + -0.011811789, + 0.012815959, + 0.037242197, + 0.030371904, + -0.015121134, + 0.029603511, + 0.001100121, + -0.007702311, + -0.009298948, + 0.03359126, + 0.00907254, + -0.012210903, + -0.027224192, + -0.014396563, + 0.0055101737, + -0.009453702, + -0.00418081, + 0.009838985, + 0.014300881, + 0.020919356, + 0.003390744, + 0.0046289787, + -0.014159175, + -0.0057903845, + -0.008549657, + 0.015261755, + 0.009967937, + -0.012943483, + 0.0072812214, + 0.013810523, + 0.012397727, + -0.001453517, + 0.03043859, + -0.0014354138, + 0.019095121, + -0.010832815, + 0.01845848, + 0.009264548, + 0.005724192, + -0.015403507, + 0.023838788, + -0.019851344, + -0.006510679, + 0.021054327, + 0.03697966, + 5.9626764E-4, + 0.007065191, + 0.0049812407, + -0.0018709981, + -0.008197067, + 0.01980822, + 0.003707888, + -0.007550908, + -0.0202606, + -0.015817355, + 0.024072913, + 0.030832434, + -0.004906478, + 0.007408382, + 0.019984484, + 0.011341237, + 0.0019291219, + -0.045966346, + -0.012215855, + -0.020633401, + -0.009939281, + 0.009034657, + 0.035915904, + 0.0052906154, + 0.014458106, + -0.009557069, + 0.003497688, + -0.007869025, + 0.0123756835, + -0.007967575, + 0.003265583, + -0.0037552314, + -0.014242303, + 0.0047721644, + -0.00819053, + -0.010055673, + 0.008506448, + -0.022109007, + -0.028852167, + -0.0010164891, + -0.0087031005, + -0.0066288044, + 0.0044017145, + 0.028739745, + 0.0041583558, + -0.012350477, + 3.5241654E-4, + 0.015774831, + 0.004891196, + -0.021317052, + -0.017847054, + -0.021154633, + -0.027070563, + 0.029838309, + 0.009489116, + -0.01351714, + -0.012011977, + -0.014448046, + 0.0022054198, + -0.021278083, + 9.342922E-4, + 0.0033335553, + -0.02415189, + -0.016650947, + -0.022807254, + -0.017364586, + -0.014606303, + -1.10868205E-4, + -0.017026367, + 0.021681786, + -0.018100595, + -0.017081315, + -0.025447797, + 0.0021085162, + -0.016948536, + -0.0049190554, + 0.010082667, + -0.0019147896, + 0.0030729708, + 0.03058879, + 0.0034853506, + -0.009957263, + 1.2227234E-4, + 0.013383419, + -0.0059370105, + -2.9830868E-5, + 0.025351476, + -0.028531501, + 0.011363882, + 0.008627202, + -0.003791461, + -0.0010961717, + 0.022428036, + 0.012024993, + 0.016977958, + -0.003884767, + -0.02708345, + -0.019002687, + 0.0024503889, + -0.023501981, + -0.022679424, + -0.032722693, + -1.9047351E-4, + 0.027428618, + -0.003662678, + 0.008596791, + 0.016247876, + -0.03243556, + 0.019193394, + -0.045414798, + -0.008522099, + 0.0029963627, + 0.007385997, + -8.9526176E-4, + -0.00790198, + -0.002485746, + -0.020385059, + 0.0356617, + 0.019164436, + -0.0043564825, + -0.03849928, + 0.011718088, + -0.005847728, + 0.009374666, + -0.018199258, + 3.330542E-4, + 0.01948755, + 0.009403202, + -0.006135673, + 0.0036662326, + 0.016818976, + -0.0029103446, + -1.8909757E-4, + -0.001663979, + 0.0016166714, + 0.030767605, + -0.016657528, + -0.017466126, + 0.0033589916, + 1.9084672E-4, + -0.016968187, + -0.019887315, + -0.0054878234, + -0.031037087, + -0.0063349428, + 0.011362813, + 0.008966374, + -0.018677192, + -2.5318147E-4, + 0.010432021, + 0.0075365505, + -3.0541373E-4, + 0.02352688, + 0.026903052, + -0.023434702, + -0.026227321, + 0.019985903, + 0.0059557883, + 0.016158078, + 0.0027615912, + -0.008415542, + 0.022059834, + 0.0017655116, + 0.021519057, + -0.007388941, + -0.019593094, + -0.010511814, + -0.037055876, + 0.011029975, + -0.018348172, + 0.0076610716, + -0.025283022, + -3.8437385E-4, + -0.01669856, + -0.020099329, + -0.020489328, + -0.007668284, + 0.0033905192, + -0.007022969, + -0.021981193, + -0.0060406323, + -0.021998873, + -0.009192305, + -0.0028502403, + 0.012229939, + 0.010662465, + 0.011811036, + -0.006321275, + -0.03837498, + -0.006510178, + -0.012185516, + 0.003423389, + 0.00790238, + -0.017154291, + 3.6424986E-5, + 0.0032931664, + 0.02536231, + 0.0049625435, + 0.016087197, + -0.018986495, + -0.011046052, + -0.020003024, + 0.018692378, + -0.0011767555, + -0.006242919, + -0.0038503674, + 3.158063E-4, + -0.029016878, + 0.0030572372, + -0.007399288, + -0.014639165, + -0.02539366, + -0.0026146579, + 0.023999318, + 4.0036623E-4, + -0.013281167, + -0.03299725, + 0.009234494, + 0.0028964307, + 0.0018534678, + 0.0072925957, + -0.02243841, + -0.008742796, + -0.011867262, + -0.0030708164, + -0.019665577, + 0.008388298, + 0.02575575, + -0.007382779, + -0.04028647, + -0.002878243, + -0.008807329, + 0.005372283, + -0.028991241, + 6.6448183E-4, + -0.002328481, + -0.0072527165, + 0.013277394, + 0.025518162, + 0.046166405, + -0.0033782108, + 0.0031467916, + 0.015115544, + 0.004709582, + -0.008676142, + -0.0031579216, + 0.016148059, + -0.029707253, + 7.08042E-4, + 0.025874773, + -1.455067E-4, + 0.002496713, + -0.0051394263, + 0.011870126, + 0.0010613393, + -0.003880856, + 0.018197812, + -0.045877296, + -0.016125968, + -0.013287551, + -0.004713288, + 0.0033698792, + 0.01604681, + 0.0028610479, + 0.026150975, + 0.021686805, + -0.003496534, + 0.030164003, + 0.0077943075, + -0.0042802296, + 0.0015994981, + -0.020586532, + 0.026298711, + -0.0030627446, + -0.010730289, + 5.667531E-4, + 0.027732871, + 0.0050002034, + -0.002776342, + -0.011970274, + -0.004207667, + 0.014463123, + -0.003227042, + 0.001112965, + -0.011590953, + -0.015743308, + -0.009678721, + 0.0010463714, + 0.013300605, + -0.01236937, + -0.008548954, + -0.005815083, + 0.011918584, + -0.007046806, + 0.0050761304, + 0.035940997, + -0.027247002, + -0.0030822519, + 0.002574144, + 0.0020193781, + 0.045623336, + -0.010077343, + -0.014526657, + -0.00953282, + -0.0037215424, + 0.008451316, + -0.023461, + 0.034031775, + 0.0043177768, + -0.016112361, + -0.001043495, + -0.023455018, + -0.0039388156, + 0.013626378, + 0.009523051, + 0.03934067, + -0.029663531, + -0.022697853, + 0.001089658, + 0.011384607, + 0.0056384127, + 0.009396805, + 0.00942643, + -0.027644463, + 0.006978121, + 0.021804001, + 0.007509314, + -0.003951651, + 0.011115412, + -0.008009593, + 0.0018521138, + -0.014596083, + -0.011023023, + 0.010704154, + -0.0034414257, + -0.0030191403, + 0.015240818, + -0.018556552, + -0.001334349, + -0.010043116, + -0.0035469623, + -0.009236807, + 0.013738789, + -0.009647906, + -0.019553773, + 0.006804897, + 0.008621078, + 0.021925548, + 0.024697205, + 0.0077109984, + 0.009318713, + -0.008881997, + -0.0034811213, + -0.018762054, + 0.018738735, + 0.017210627, + 0.0083884215, + -0.029004768, + 0.020991419, + 8.8555505E-4, + 0.014947313, + 0.008056715, + 2.0824734E-4, + 0.018311203, + 0.029431468, + 0.0012941061, + 0.008949376, + 0.0018926484, + -0.018629763, + 0.015097133, + 0.0054545444, + -0.012734506, + 0.0032480974, + -0.0021006998, + 0.013415642, + -0.004135211, + 0.013060031, + 0.027233925, + 0.002319248, + 0.018183231, + 0.002361107, + 0.01114277, + -0.006856633, + 0.014301931, + -0.0050845244, + 0.004827261, + 0.0025750333, + -0.037701245, + 0.0068257945, + -0.01659263, + -0.03373459, + 0.021089325, + 0.02129601, + 0.007864345, + -5.213289E-4, + -0.022553468, + 0.007825001, + 0.025406634, + -0.0010394327, + 0.029361833, + -0.019366749, + 0.016837826, + 0.02480747, + -0.006735803, + 0.00404015, + -0.0028436503, + 0.027636055, + -0.021346986, + -0.013589521, + -0.005514866, + -0.010934067, + -0.017280614, + -0.041568346, + -4.25536E-4, + 0.002921596, + -0.0034289237, + -0.008775149, + -0.007864163, + -0.0062383288, + -0.02712444, + -0.017579146, + 0.004306602, + -0.003815025, + -0.024960492, + 0.0179415, + 0.003956557, + -0.0056639425, + 0.020725043, + 0.018524488, + -0.009741825, + 3.692548E-4, + -0.0073446184, + -0.0064362935, + 0.00749628, + -0.0152915185, + -0.005749316, + 0.008759449, + 0.0042044222, + -0.0052040117, + -0.011811695, + 0.010388124, + 0.021385228, + -0.022663336, + -0.017462788, + 0.007428491, + 0.019792318, + -0.0012345501, + 0.0024559035, + 0.0031166943, + 0.0207652, + -0.001292189, + -0.018445669, + 0.0038726302, + -0.0010439191, + -0.030024486, + 0.024373267, + 0.01211942, + 0.009099318, + -0.01256663, + -0.025818711, + 0.014147023, + 0.0028091243, + -0.0054190345, + 0.005055401, + 0.0056568314, + 0.0057986984, + 0.0018410688, + 0.003623661, + -0.0049363454, + 0.028488763, + 0.014048896, + 0.007482827, + 0.013096593, + -0.010220164, + 0.01852642, + -0.010890935, + 0.005679319, + 0.017623458, + -0.017927315, + 0.025657838, + 0.018337995, + -0.017369097, + -0.0015030626, + -0.010813389, + 0.0014916429, + -0.0063642925, + 0.0036460028, + 0.004510785, + -0.011831733, + -0.013309506, + 0.002876446, + 0.025634637, + -0.006469635, + 0.022217952, + 0.016200796, + -0.0014328522, + 0.009907368, + -0.0020702954, + 0.013853454, + -0.0021983709, + -0.0029809913, + 0.011805777, + 0.003701157, + 0.0031670614, + 0.015894506, + -0.004826944, + -0.011715814, + 0.0103498455, + 0.0022472718, + -0.006424633, + 0.008796071, + -0.0018812172, + -0.0025920665, + -0.018390223, + -0.0052130283, + 0.0046277074, + -0.027313847, + 0.011435667, + -0.013882863, + 6.507974E-4, + 0.013305461, + -0.0038560585, + 0.009943291, + -0.012225402, + 0.019256098, + -0.012461298, + 0.0057603302, + 0.009402348, + -0.024126075, + -0.02281268, + 0.02946487, + -0.01478318, + 0.018303446, + 0.0177147, + -0.011579367, + 0.0037573443, + -7.502617E-4, + 0.010712136, + -0.0076514995, + 0.020489588, + 0.0039231293, + -5.539137E-4, + -0.002983745, + 0.014634418, + 0.0052668112, + 0.0060029556, + 0.0031408363, + -0.0070654787, + 0.008062337, + -0.004950286, + -0.014068903, + 0.005396522, + -0.009903688, + -0.007737364, + 0.008457621, + -0.00900494, + -0.023196692, + -0.0064203185, + 0.028238252, + 0.011799593, + -0.02769964, + 0.008739281, + 0.0070299204, + 0.0025143486, + 0.0013835892, + -0.0047480906, + -0.017736278, + -0.024112813, + 0.003967539, + -0.0140023595, + 0.006370879, + -0.01923837, + -0.020208383, + 0.011344797, + 0.009958924, + -0.0057588406, + -0.040845364, + -0.008837126, + -0.015111655, + -0.016902762, + 0.0075685014, + 0.019234955, + -2.7219174E-4, + -0.016312312, + 0.021953292, + -0.010883581, + -0.01588465, + 0.010738205, + 0.009575986, + -0.00595724, + -0.012077215, + 0.011911688, + 0.014500758, + 5.0423655E-4, + 0.016582124, + -0.006509132, + -0.017891854, + 0.0020129879, + 0.023040742, + -0.0026141764, + 0.0011960136, + -0.009925787, + -0.0018799985, + 0.016058352, + -0.033471264, + 1.6735072E-4, + -0.030981313, + 0.018529803, + 0.008409494, + 7.7876064E-4, + 0.016784754, + 0.0039622895, + 0.0093880035, + 0.013559367, + -0.0022018964, + 0.007024294, + 0.0089283995, + 0.021961588, + 0.018875362, + -0.008054237, + -0.018993735, + -0.010865031, + 0.00785032, + -0.0077532986, + -0.014227871, + 0.0342239, + 0.011508815, + -0.027386388, + 0.014078266, + 0.009210423, + -0.036226165, + -0.0069391187, + 0.008244994, + 0.00937515, + 0.0017749345, + -0.0135781355, + 0.008535604, + 0.007515848, + -0.02364946, + -0.011168958, + 0.021425165, + 0.0028829381, + 0.019120222, + -0.0055236174, + 0.004125326, + 0.007672554, + -0.0050753066, + -0.037134673, + -0.017864494, + -7.2166394E-4, + 0.017533747, + 0.0010966884, + 0.027310807, + -0.0075351326, + -0.0045998166, + -0.007070929, + -0.034131344, + -0.015810747, + 0.0061209, + 0.010894381, + -0.0022617232, + 3.2261782E-4, + 0.00699082, + 0.0045745275, + 0.0066557056, + 0.02110289, + 0.005458845, + 0.014966063, + 0.008480657, + -0.036532655, + 0.009689572, + -0.019482844, + -0.020199949, + 0.010967487, + -0.008694639, + 0.011956341, + 0.0027555497, + 0.022355648, + -0.009340938, + -0.018770766, + -0.032549787, + 0.0067494083, + -0.00565929, + -0.014985221, + 0.022667468, + 0.0068606944, + -0.016726121, + -0.019644035, + 0.003671702, + 0.004202099, + 0.010288316, + 0.027263697, + -0.020173542, + -0.004592107, + 0.006186812, + -0.0020808866, + 0.033480376, + 0.0112164635, + 0.009648734, + -0.016043691, + 0.02355946, + 0.0024986947, + -0.027167263, + 0.010235329, + -0.0029778697, + -0.025574481, + 7.987069E-4, + 0.011306359, + 0.011286434, + -0.010263222, + 0.0051108547, + 0.005678332, + 0.001993283, + 0.02767456, + -0.0068203807, + 0.0097187525, + -0.026506813, + 0.011381528, + 0.010636537, + -0.0017808998, + -0.0059181233, + 0.006835632, + 0.006059979, + 0.0019053861, + 3.548444E-4, + 0.014719341, + -0.019708097, + 0.014204624, + 0.018307071, + -0.0058856364, + -0.0051346202, + -0.007990778, + -0.008976406, + 0.01033362, + 1.1572257E-4, + 0.011476902, + -0.021753179, + 0.008543751, + -0.018474163, + 0.027701626, + -0.0025024188, + 0.006829619, + -0.0102868555, + 0.009380991, + 0.0024065818, + -0.0065801227, + -0.01628437, + -9.9194E-4, + 0.040158883, + -0.016120356, + -0.0077312794, + 0.003536069, + 0.017048627, + 0.005905876, + 0.003187454, + -0.0062830374, + -0.007103387, + 0.006844969, + 0.018417466, + 0.020823183, + 0.012200103, + 0.017190997, + 2.8470752E-4, + -0.02297356, + 0.01699316, + 0.021434749, + 0.0015668635, + 0.0037115999, + -0.0020851109, + 0.022476109, + -0.003045413, + -0.0137944035, + 0.0033515499, + 0.0048790197, + 0.0016986913, + 0.0060153883, + 0.00963404, + -0.0013511037, + 0.016177243, + 0.023694007, + 0.01308041, + -6.6357123E-4, + -0.046697993, + 0.012599875, + -0.008080707, + -0.0039765853, + -0.04862071, + -0.0082873795, + 1.4011533E-4, + -0.012046272, + 0.013893395, + -0.021119623, + 0.031101776, + -0.026919216, + 5.5901357E-5, + 0.0066821366, + 8.0074056E-4, + 0.0042489665, + 0.010575282, + 0.007989449, + -0.025039405, + 0.010987278, + -0.008268622, + -0.007814734, + 0.008269978, + -0.0040405816, + -0.022637837, + 0.01565619, + 0.0038535488, + 0.0020842021, + 0.0027291728, + 0.0058226967, + 0.0029252996, + 0.012265916, + -0.0056892466, + -0.0036521498, + 0.035090752, + 0.0076763523, + -0.004377835, + 6.4562465E-4, + 0.009867139, + -0.015502906, + 0.020730998, + 0.019550914, + 0.042503223, + 9.7195216E-4, + 0.031501714, + 0.014005153, + -0.007899316, + 0.010040295, + -0.028023442, + -0.008939468, + 0.002073271, + 0.008866798, + 0.007791681, + -0.009313944, + 0.028250154, + 0.012006769, + -0.020486701, + 0.0028850422, + 0.026849424, + -0.0025251794, + 0.0048866235, + -0.009812099, + 0.016570108, + -0.002037043, + 0.0061496897, + 0.009634116, + -0.013813411, + -0.03903478, + 0.0010534193, + -0.01870353, + -0.030502258, + -0.037071474, + -0.01463071, + -0.030481016, + 0.030616969, + 0.011146668, + -0.0041239746, + -0.01387486, + 0.007893082, + 5.670513E-4, + 0.006946171, + 0.015445482, + 0.021539034, + -0.0025320314, + -0.013104572, + -0.026061803, + 0.018307632, + -0.017257929, + 0.01428489, + -0.03736401, + 0.026151523, + -0.026367592, + -0.01883997, + -0.010941292, + -0.002316878, + 0.0162939, + 0.019447066, + -0.012972084, + 0.02950458, + 0.023509938, + 0.0038637584, + 0.009036369, + 0.0032376177, + 0.009078014, + -0.008343104, + 0.0015576887, + -0.016536433, + 0.02614393, + -0.005051109, + 0.0012691341, + -0.022539958, + -0.017855998, + 0.020443296, + -0.002570068, + 0.004998176, + -0.007192287, + 0.015504058, + -0.0013216225, + 0.005208834, + 0.037588958, + -0.017310867, + 0.008580539, + -0.004652972, + -0.01934681, + -0.01247911, + -0.013574246, + -0.013763656, + 0.02542362, + -0.024010554, + 0.014880147, + 0.019236222, + 0.008036549, + 0.009177131, + 0.028807292, + 0.006990963, + 0.018223718, + 8.107984E-4, + -0.0010089335, + 0.0022487415, + -2.3257239E-4, + -0.020394972, + -0.025176328, + -0.00604018, + -0.0011919895, + 6.9686753E-4, + -8.166545E-4, + -0.0018547429, + 0.0036359217, + -9.862718E-4, + 2.8228437E-4, + -0.024548769, + 0.021511702, + -0.0064468794, + 0.0031436717, + 0.019222012, + -0.031812094, + -0.004746948, + -0.0062340708, + 0.0033424369, + -0.02834474, + 0.037509557, + -0.013825008, + 0.021471262, + -0.0010055195, + -0.0126906065, + 0.0055505186, + -0.0101152975, + 0.038525037, + -0.027783724, + -0.023939501, + 0.023828926, + -0.012699253, + 0.0049347663, + -0.010800496, + 0.015529394, + 0.010619558, + -0.018345773, + 0.007099674, + 0.011121689, + -0.00884866, + 0.024435204, + -2.6926683E-4, + -1.4715942E-4, + 0.015102767, + -0.013646946, + 0.0022409107, + -0.019687664, + -0.025362305, + 0.0053111124, + -0.008161316, + 0.009612004, + -0.022662, + -0.0041282065, + 0.0035601342, + 0.020529697, + -8.62699E-4, + 0.013842651, + 0.012504647, + 0.0061599254, + 0.008063585, + 0.0058571002, + -0.007214879, + -0.025400849, + 0.031023009, + -0.0016835768, + 0.021541132, + 0.014031131, + 0.013739765, + -0.009305679, + -0.016993294, + 0.002549428, + -0.011337597, + 0.033483338, + 3.8824524E-4, + 0.021850439, + -0.0209821, + 7.5574487E-4, + -0.018595416, + 0.0016938308, + -0.032886475, + -0.01487474, + -0.006279657, + 0.0041270126, + 0.0027263346, + 0.002414947, + -0.009964435, + 0.006497962, + 0.0015321021, + 0.007947183, + 0.0031840734, + -0.013876534, + -0.007466483, + 0.020192226, + 0.009698824, + -0.007917238, + 0.029717661, + -0.028950164, + -0.026391208, + -0.0044423034, + 0.026125764, + -0.0026571997, + -0.039024282, + -0.002148092, + 3.1967965E-4, + 0.008073204, + -0.007937153, + -0.015883142, + 0.02676956, + 0.0025010095, + 0.033027817, + 0.019796139, + 0.017289018, + -0.009083499, + 0.0020216503, + 0.031212492, + 0.0037666573, + -0.004714107, + 0.02988186, + 0.004092451, + -0.005277097, + -0.019376658, + 0.005189765, + -0.0036104207, + 0.012731021, + 0.011935106, + -0.027245967, + -0.017934622, + -0.020097112, + 0.00424172, + 0.035796527, + -0.0024273624, + 0.001604807, + 0.013754291, + 0.0146074295, + 0.024871608, + -0.021539265, + 0.0121434545, + -0.0051013017, + 0.0015228217, + 0.010709958, + -0.03159887, + 0.022095975, + -0.0010729607, + 0.01425185, + 0.0132274, + -0.005748802, + 0.0154263675, + 0.021739861, + 0.0034289327, + 0.010172407, + 0.021430729, + -0.00807109, + 0.0035053834, + -0.003777688, + 0.014309024, + 0.004886159, + 0.016647281, + 0.018685369, + -0.007164151, + -0.004854316, + -0.0222503, + 0.0050771637, + -9.032374E-4, + 0.011256329, + 0.05374497, + -0.009239651, + 0.020796146, + 0.014972945, + -0.0044952314, + 0.0012227789, + 0.0067346715, + -0.011571852, + -0.016439186, + 0.01127383, + -0.0025738128, + -0.013546801, + -0.016151143, + -0.044209275, + 0.009725368, + -0.016662696, + -2.2025139E-4, + -0.0056185657, + -0.020981967, + 0.01648021, + -0.0037661886, + -0.028579578, + 0.012459428, + 0.0038458817, + -0.0020404286, + 0.01920702, + 0.002350847, + -6.7809457E-4, + 0.0149052255, + -0.02504715, + 0.025924515, + -0.0262306, + -3.9548927E-4, + 0.004066804, + 0.007550512, + 0.02248643, + 0.021389501, + -0.01579593, + 0.01783533, + -0.019104356, + -0.015550908, + -5.1195297E-4, + 0.02748447, + -0.04062913, + 0.003015561, + -0.0028329552, + 7.90102E-4, + -0.010470402, + -0.02283537, + 0.028940134, + -0.0012387275, + 0.009627192, + -0.0015833752, + 0.008487668, + -0.001966184, + -0.007584088, + 0.0049663913, + 0.005994603, + -0.035500966, + -0.017910393, + 0.008834707, + 2.0109353E-5, + -0.00392146, + -0.021261817, + 0.011816517, + 0.024368383, + 0.0052547595, + 0.008168516, + -0.0043270695, + 0.028669007, + 0.018729663, + -0.05345586, + 0.030921895, + 0.005354521, + 0.015621045, + -0.004569946, + -0.004582981, + -0.018072216, + 0.015277593, + 0.015213532, + -0.0044837585, + 0.004295798, + -0.03721863, + -0.019048117, + -0.017959602, + -0.033710163, + 3.9065187E-4, + 0.02420495, + 0.009799476, + -0.009260318, + -0.01437143, + -0.012210652, + -0.025167111, + 0.008155923, + 0.00531974, + 0.0040131356, + -0.010683167, + -0.029892726, + 4.1687128E-4, + -0.014576362, + 0.004317188, + -5.863012E-4, + 0.031048892, + -0.021798579, + -0.01978643, + 0.0027699906, + 0.008568798, + 0.024151562, + -0.013277651, + 0.0071679326, + -0.01346056, + -0.01328445, + -0.024779303, + -0.013199584, + 0.0070817205, + -0.02813691, + -0.005330263, + 0.0065706945, + 0.016150767, + -0.008823406, + 0.0140619455, + -0.0014847327, + 0.012974228, + 0.0014115492, + 0.020532485, + -0.017016713, + -0.008293588, + 0.010012201, + -0.01393909, + 0.0014699704, + -0.044009186, + -0.0040900935, + -0.021241022, + -0.01570679, + 0.002448145, + 0.012281479, + -0.026701024, + -0.023486689, + -0.017382212, + -0.013267977, + 0.0019927886, + -0.008903322, + -0.015856678, + -0.01168953, + 0.003995931, + 0.008553041, + 0.0075946627, + 0.0071249157, + -0.011183516, + -0.013013213, + -0.010598892, + 0.02775779, + -0.011308456, + -0.010297718, + -0.005475022, + 0.015459705, + 0.0011557543, + -0.005791393, + -0.0025794464, + -0.001131669, + -0.008332479, + 0.011864649, + 0.024593975, + 0.00748606, + -0.005144055, + -0.0039503775, + 0.0011789773, + -0.0124918185, + -0.0128762955, + 0.0057743024, + -0.0024977475, + 3.2145428E-4, + -0.024544451, + 9.2109694E-4, + 0.014715813, + -0.0023969477, + 0.004893066, + -0.013329895, + -0.004440411, + -0.006741694, + -0.011243131, + -0.03764201, + -0.0069595086, + -0.006423214, + 0.027757978, + -0.013423575, + -0.016129652, + -0.007042945, + 0.008988212, + 0.010870574, + -5.8600283E-5, + -0.0034284426, + -0.010323366, + 0.014703444, + 0.0071160407, + -3.5474414E-4, + -0.0089996755, + 0.017845828, + 0.031862542, + 0.0106463805, + -0.010352003, + 0.0058477633, + 0.022381468, + -0.038858518, + 0.016745571, + -0.010559963, + -9.24131E-4, + -0.010133424, + -0.02884296, + -0.005080242, + 0.014338921, + -0.018024666, + 0.023667837, + 0.014381474, + -0.017985659, + 0.0072781793, + 0.015348723, + -0.0069680694, + -0.034323767, + -0.0013498217, + 0.0121460315, + 6.1795674E-4, + -0.00680061, + -0.016429761, + -0.0036703642, + 0.028894901, + 0.025639812, + -0.0016032031, + 0.022113632, + -0.023392694, + 0.0036087732, + -0.024141403, + 0.0046356795, + 0.01601578, + -7.271023E-4, + -5.172325E-4, + -0.0109405015, + -0.008113471, + -0.014171783, + 0.008051451, + 0.005129841, + 3.462434E-4, + -0.013577092, + -0.014190018, + 0.0021807621, + 0.003993901, + -0.019793157, + -0.012942199, + 0.013074529, + 0.012915752, + -5.789473E-5, + 0.0075332318, + -0.014375685, + -0.019939614, + 0.01749481, + 0.0073703555, + 0.0027461194, + 0.0066301967, + 0.022534313, + -0.008358936, + -0.0104030715, + 0.010658997, + 0.012205082, + 0.015051529, + 0.014623886, + 0.012777984, + -0.008056601, + 0.007845133, + -7.155512E-4, + 0.005628828, + 0.0042293738, + 0.01670978, + 0.0025672032, + -0.012637265, + -0.04368601, + 0.019946955, + -0.019309204, + 0.012865945, + -0.023122462, + 9.1638596E-4, + 0.0035076905, + -0.010105816, + -0.025631217, + -0.005672559, + -0.021297205, + -0.021626094, + 0.021324018, + 0.018512763, + -0.027964685, + -9.789466E-4, + 0.021135323, + 0.0071864063, + 0.0055304198, + 0.014318684, + -0.030473297, + -0.020693911, + -0.018119045, + 0.010322348, + -0.020422643, + -0.007358215, + -0.017959064, + 0.0072367787, + -0.012416206, + 0.014563167, + -2.3908592E-4, + 0.0073421453, + -0.0067887385, + -0.022042835, + -0.013163522, + -0.016032632, + 2.4046641E-4, + 0.0053297747, + -0.011671414, + -0.005534965, + -0.0029458152, + -0.0055646575, + -0.005736318, + 0.0012821853, + 0.0038764372, + -0.008762034, + 0.019832863, + 0.0041460022, + -0.004298556, + 0.006524856, + -0.0010543031, + -0.035428926, + 0.016644293, + -0.0039795567, + 0.01167901, + -0.024890538, + -0.0018545433, + 0.022457557, + 0.023370402, + 0.024332946, + 9.1196597E-4, + 2.1592484E-4, + 0.0068932516, + -0.016626507, + 0.021852449, + -0.006794745, + 0.0027500014, + -0.001427583, + -0.030285897, + -0.018340733, + 0.009117482, + 0.013169739, + 0.012150035, + 0.004321558, + -0.014407475, + -0.018659303, + -0.022284914, + 0.0064651426, + 0.017098466, + -0.008298956, + -0.0046533365, + -0.019385437, + -0.0061124978, + -0.0061418507, + 0.018261196, + -0.010109178, + -0.008545438, + 0.023205863, + 0.0023147399, + 0.022620535, + -0.0033976566, + 0.010411287, + -0.017510436, + 0.0024398905, + 0.0074179885, + 0.015046828, + 0.039941497, + -0.012841252, + 0.014624499, + -0.013633693, + 0.013325274, + 0.02845246, + 0.027796542, + -0.0074163326, + -0.013502345, + 0.0068986486, + 0.025924375, + 0.01959768, + -8.088829E-4, + 0.0045256848, + -0.0075295735, + -0.028709061, + -0.0027103391, + -0.0090422835, + -0.023920871, + 0.02848095, + 0.02859415, + -0.016534667, + 3.1346048E-4, + -0.00669762, + -0.0045837564, + 0.045213114, + -0.0037706096, + 0.0034453587, + 9.20447E-4, + 0.009835976, + -0.008966498, + 0.014082106, + 0.015177127, + 0.017703384, + -0.008508694, + -1.9768337E-4, + -0.0078064734, + -0.023099983, + 0.015025179, + 0.014509185, + 0.009225936, + 0.008526133, + -0.0257153, + -0.022764282, + -0.01546625, + -0.02333986, + 0.0038672974, + -0.019440517, + -0.0026824402, + 0.01343818, + 0.017860426, + -0.0017290747, + 0.012869429, + 0.00821268, + 0.02145049, + 0.021110965, + 0.010228796, + -0.023703925, + 0.036051348, + -0.011691738, + -0.01805135, + -0.018127497, + -0.005868242, + 0.004296352, + -0.012495515, + -0.011016016, + 0.00776403, + 0.008892117, + 0.01629446, + -0.017840866, + -0.011891833, + 5.0969305E-4, + 0.0017487073, + -0.016645078, + 0.017203491, + -0.029093727, + -0.0017850698, + -0.02982122, + -0.006551568, + 0.0016484818, + 0.005741184, + 0.006375561, + -0.010437357, + 0.023130927, + -0.018298313, + 0.012767481, + 0.011141754, + 0.009175622, + -0.0024242331, + -0.0078112255, + 0.028577369, + 0.0130422255, + 0.009241579, + -0.0024007182, + -6.940693E-5, + -0.013427526, + 0.012341683, + -0.017406154, + -0.011922372, + -0.010321266, + 0.0030852102, + -0.029161245, + 6.432498E-4, + 0.0238642, + -0.02024974, + -0.011315661, + -0.01747326, + 0.0024714791, + -0.02568393, + 0.0062803356, + -0.013854311, + -0.018883163, + -0.0075997603, + 0.016738204, + 0.023956358, + -0.028644664, + -0.003401184, + 0.007413529, + -0.0013725185, + 8.3790347E-4, + -0.010313411, + 0.017327122, + 0.014197961, + -0.01426151, + 0.028687403, + 0.021379631, + 0.010559091, + 0.03407258, + 0.00232426, + 0.005597545, + -0.007699512, + 0.010231843, + 0.0061596585, + -0.0046026115, + 0.01955295, + -0.006104086, + -0.0141745405, + -0.0043077525, + 0.009058012, + 0.013244099, + -0.006843361, + 0.010785228, + 0.015370484, + 0.005111544, + -0.024913158, + 0.025621975, + -0.020393131, + -0.01101018, + 0.0064162984, + -0.009821785, + 0.029897101, + 0.00977674, + 0.005018121, + 0.009199144, + -0.008137348, + 0.0056792027, + 0.019801972, + 0.004294086, + 0.019912705, + 0.007901808, + -0.0066196895, + -0.004892554, + 0.0242348, + -0.010031703, + 0.008852458, + -0.012474911, + -6.2215864E-4, + -0.025615817, + -0.015438909, + -0.009342761, + 0.007584857, + -0.014903067, + -0.0013821067, + 0.015745478, + -0.009960363, + 0.0031514831, + -0.014194856, + -0.0122344075, + 0.0069786767, + 0.026773408, + -0.020070719, + 0.008206254, + -0.026310481, + 0.008508691, + 0.012553601, + -0.0065201167, + -0.0318343, + 0.008882624, + -0.020610321, + 0.023910614, + 0.011812161, + -0.014041627, + 0.026463987, + 0.015608387, + 0.010944451, + -0.02989597, + -0.0046185777, + -0.018580329, + 0.009215769, + -0.038354747, + -8.2867884E-4, + 0.0100040445, + -0.0013477083, + 0.013502614, + 0.025512211, + -5.82E-5, + 0.012508852, + -0.0022771375, + -0.014949463, + -0.013944226, + -0.004796494, + -4.5793975E-4, + -0.0040574316, + -0.010517512, + -0.0019312351, + 0.0076734186, + 0.009736998, + 0.013847144, + -0.0034640278, + 0.020104112, + -4.3789647E-4, + -0.005394321, + -0.0066524926, + -0.028427359, + 0.011580671, + 0.014489929, + -0.0103301, + 0.014547392, + -0.0027079303, + -0.021564828, + -0.0118312305, + -0.029924067, + -0.010766104, + -0.0037765855, + 0.0055976, + 0.0040467763, + -0.036850084, + 0.013265962, + -0.0057425722, + -0.0074221063, + 0.0062754815, + -0.0056387703, + 0.009200085, + -0.011803861, + 0.025754536, + 0.02362806, + 0.024833655, + 0.0042751287, + 0.015110604, + 0.021630717, + -0.00926936, + 0.024575422, + -0.006978401, + -0.0076136705, + -0.020224217, + 0.017947169, + -1.9815452E-4, + -0.019107051, + 0.0033735523, + -0.015658451, + -0.019593904, + -0.008299941, + 0.016729, + 0.009637579, + -0.011597587, + 0.01018648, + -0.014699303, + -0.0034714418, + 0.005411341, + -0.007006977, + 0.011884386, + 0.017000433, + 1.7027434E-5, + -0.011901592, + 0.0011718433, + 0.0064512724, + -0.0037485468, + 0.027451625, + -0.004731671, + 0.015101356, + 0.018460995, + -1.2807499E-4, + 0.002673725, + 0.0133083, + -0.0014905966, + -0.0066342573, + -0.0062227612, + 0.03379466, + -0.0039809467, + -2.1625518E-4, + -0.013058568, + -0.01482178, + 0.0055556004, + -0.016064307, + 0.013207501, + 0.011648401, + 0.041216906, + 0.0038322124, + -0.032854624, + -0.0012757597, + -0.005042515, + 0.005607326, + 0.017064763, + -0.018720929, + 0.01486165, + 0.008884554, + -0.0053203907, + -0.010557318, + -0.0036318137, + 0.021883685, + 0.012217171, + -0.016751666, + 0.0019543674, + -0.009511242, + -0.007895701, + -0.0034867048, + 0.0021675725, + -6.362232E-4, + 0.007247339, + 0.004772949, + -0.006126446, + 0.0047235107, + 0.026514644, + 0.015316581, + -0.012052141, + 0.006598956, + 0.014717122, + 0.0036117544, + 0.007851689, + 0.021572692, + -0.0040740306, + 0.039345067, + -0.029468905, + -0.032042995, + -0.039533816, + -0.011061249, + 0.0100348005, + -0.0074520013, + -0.016435588, + 2.2715324E-4, + -0.013082492, + 0.029083245, + -0.022926778, + -0.019008543, + 0.002301467, + -0.0014885416, + -0.023361415, + -0.0127684735, + -0.02576333, + 0.01667431, + -0.008724374, + 0.017320037, + 0.014232919, + 0.005166875, + 0.0033656114, + 0.017550291, + -9.992562E-4, + 0.011085651, + 0.0015628183, + -0.015363708, + 0.0130531015, + -0.0074968985, + 0.031090852, + -0.0055853673, + -0.011895, + -9.505483E-4, + 0.005663631, + -0.009815007, + -0.0071473974, + -0.020084266, + -0.014333543, + -0.0014979733, + -0.004766984, + 0.024933971, + -0.023829859, + 0.009115796, + -0.004446918, + -0.014261971, + 0.008114972, + 0.0039254213, + 0.016240288, + 0.0087665245, + -0.017771566, + -0.0014865709, + 0.015638875, + 0.03551537, + 0.005700972, + -0.0019699426, + -0.02286617, + -0.011003401, + -0.024879549, + 0.0071773757, + 0.018459225, + 0.017024573, + 0.011668878, + -0.010203262, + -0.0014860579, + 0.0040554884, + 0.020068094, + -0.0023724646, + 0.018820086, + -3.4436482E-4, + 0.013284969, + -0.004464264, + -0.01297175, + -0.019913612, + -0.003383455, + 0.035578858, + -0.015153245, + -0.02241034, + -0.010166482, + -0.007314806, + 0.0107856635, + -0.013534668, + -0.0037670666, + 0.01242454, + 0.0019383475, + 0.019714234, + -0.010972851, + -0.010375808, + -0.02379741, + -0.0025997767, + -0.008345912, + 0.013791091, + -0.0067358376, + 0.03152107, + 0.007061573, + -0.0034801865, + 0.0013870143, + 0.023029622, + -0.0011393642, + 0.023248471, + -0.0032555114, + -0.015289997, + -0.01675089, + 0.0057832752, + -0.03677487, + -0.0014796808, + 0.007358773, + 0.003873355, + 0.02341234, + 0.006798758, + -3.5677679E-4, + 0.023851361, + 0.027460216, + -0.0014266983, + -0.0048190337, + 0.017135693, + 0.004950876, + -0.017295903, + -0.009268391, + -0.001690909, + 0.020816213, + -0.008599033, + 0.0289662, + -0.010490013, + 0.006435445, + -0.009453245, + 0.014917331, + 0.019120835, + -0.0021885892, + -0.006278476, + -0.008331308, + -0.0153338285, + -0.005755597, + -0.019443158, + 0.016204372, + -0.017658552, + 0.0014768604, + -0.011414939, + -0.0045356164, + 0.0057819006, + -0.0042668395, + 0.014517201, + -0.026873797, + 0.003157511, + 0.01087714, + -8.82839E-4, + 0.026302556, + 0.04458006, + 9.949232E-4, + -0.015614645, + -0.0013867881, + -0.0038514799, + -0.0070791184, + -0.0061488743, + -0.009242456, + -0.011981512, + -0.016027039, + -0.018136604, + -3.1295855E-4, + -0.003907188, + -0.00649562, + 0.0128751695, + -0.017471291, + 0.0011291859, + 0.01290191, + -0.021043623, + -0.011604334, + 1.6810307E-4, + -0.004924177, + 0.04942805, + 0.028966058, + 1.880532E-4, + 0.01076092, + -0.0019118458, + -0.006855095, + 0.0035082449, + -0.018624498, + 0.0020503122, + -0.006217706, + 0.025317878, + -0.026018746, + 0.017800478, + -9.0145477E-4, + 0.025400065, + -0.0269417, + -9.208712E-4, + 0.0018060071, + -0.009621124, + 0.0026445035, + 0.009881549, + 0.011944853, + -0.022715153, + -0.003004401, + 0.019735418, + -0.011349272, + 0.005276928, + -0.0072533963, + 0.02150512, + -0.019135242, + 0.0158219, + -0.003683297, + 0.01663048, + -0.0139305005, + -0.017597836, + 0.022965511, + -0.025202133, + -0.009132262, + -9.459889E-4, + 0.007140383, + 0.018249998, + 0.026373832, + -0.013398511, + 0.017092895, + 0.029044718, + 0.019920044, + 0.0014307618, + 0.018670877, + 0.0194224, + 0.014704826, + 0.014984112, + -0.0012761401, + 0.011534748, + 0.0063523087, + -0.01261384, + -0.015768183, + 0.013661046, + -0.0056358413, + -0.006149042, + 0.010762, + 0.024077047, + 0.014051459, + -0.0060100476, + -0.0077222846, + 0.009975044, + 0.005464071, + -0.010789021, + 2.5301793E-5, + -0.008102323, + -0.0017978811, + -0.00708591, + 0.0034786593, + 4.2171896E-4, + -0.021911979, + -0.02131147, + -0.027068764, + 0.002775215, + -8.9489465E-4, + -0.0013516237, + -0.005675802, + -0.0016131373, + -0.005273403, + 0.006421464, + -0.007924493, + -0.010299472, + -0.005727041, + -0.007405069, + 0.032308076, + 0.016635869, + -0.011905112, + -0.0068135555, + 0.025231596, + -0.0013507587, + 0.012460574, + 0.0116588, + -0.014468818, + 0.0013749903, + 0.0019763908, + -0.0018495381, + 0.018730009, + -0.022515047, + 0.0057061072, + -0.0035688402, + 0.025434637, + 0.017714947, + -0.002251416, + 3.461687E-4, + -0.022466185, + 0.0017525654, + -0.014459912, + -0.027956832, + -0.025458226, + 0.005911162, + 0.0035841023, + 0.01551882, + -0.007145971, + 0.0019745566, + -0.0014750059, + 0.0026899104, + -0.008689954, + -0.022343906, + 0.023249717, + -0.024299419, + -0.008480024, + -0.023605388, + 0.008398624, + -0.01698887, + 0.0019134906, + -0.012798576, + 0.01576694, + -0.022414349, + 8.804214E-4, + -0.004148842, + 0.016866552, + 0.012974321, + -0.002949187, + 0.0023994101, + -0.0068646963, + 0.0070723267, + 0.010724837, + -0.018288905, + -1.5550092E-4, + 0.022031821, + 0.0074071893, + 0.019416256, + 0.010817547, + 0.006528546, + 0.006515723, + -0.016388863, + 0.008198937, + -0.014422899, + 0.018440248, + 0.012480156, + 0.011831886, + 0.018525206, + 0.02971314, + -0.028338965, + -0.02256484, + 0.0051487135, + -0.01007719, + 8.904489E-4, + -0.0062135328, + 0.0038703158, + -0.003990724, + -0.021424774, + 0.009592364, + -0.0062819617, + 0.003137647, + -0.0015328822, + 0.02647586, + -0.029322868, + -0.0021101646, + 0.0048498046, + 0.011535218, + -0.005214929, + -0.0040174546, + -0.010654789, + -0.004114735, + -0.004115051, + -0.0067590405, + 1.9197677E-4, + -0.0073922877, + 0.031041773, + -0.012011699, + -0.008402839, + -0.0031523758, + -0.01569682, + 0.0011786529, + 0.0024834012, + 0.005164847, + -0.026443683, + -0.00874036, + -0.007191197, + 0.011144233, + -0.0050885594, + -0.004127436, + 0.0047329324, + -0.02346621, + -0.030322697, + -0.017588425, + -0.011664823, + -0.009459798, + -0.007903643, + -0.023158489, + 0.02220786, + 0.024640951, + -0.019429844, + -0.0035974644, + 0.012676184, + -0.0056869625, + 0.012852859, + -0.009224112, + -0.009223185, + -0.011797636, + 0.037562784, + -0.010673697, + -0.012244453, + 0.0021418096, + -0.027550135, + -0.0060694767, + -0.023909016, + 4.040485E-4, + 2.8698143E-4, + -0.0063168323, + 0.0124860015, + 0.031660758, + -0.024085896, + 0.023562247, + -0.031137098, + -0.015364661, + -0.0029066375, + 0.007857798, + -2.3111695E-4, + -0.0031471394, + 0.012388062, + 0.021779347, + -0.023987228, + 0.0041650506, + -0.025789235, + -0.017824642, + 0.015522161, + -0.002346356, + 0.019152243, + 0.0018312788, + 0.002312001, + 0.027855316, + 0.009939275, + -0.0092624845, + 0.009264515, + 0.018168831, + -0.00870471, + 0.0060191574, + -0.0075570755, + -0.018563734, + 0.01855363, + -0.0010906084, + 0.0025996238, + -0.048312634, + -0.020241117, + 0.0034868326, + 0.0424555, + -0.009301165, + -0.009437637, + 0.0116307605, + -0.0013368761, + -0.0042235795, + -0.013848447, + 0.018672798, + 0.013270375, + 0.0028110335, + -0.0033065449, + 0.0016446003, + 0.022676062, + 0.043917682, + -0.017197872, + 0.004457195, + -0.021783877, + -0.013401516, + 0.010392071, + -0.0063297222, + 0.007827847, + 0.015900297, + -0.019088184, + -0.008151987, + 0.01254868, + -0.015428404, + -0.009454213, + 0.013970875, + -0.0029094347, + 0.023499858, + 0.0018863573, + -0.020798009, + 0.0015580399, + 0.0073224823, + -0.0074085016, + 0.012501979, + 7.7425875E-4, + -0.0021577037, + -0.009534099, + 0.0057485676, + -0.016804425, + -0.021675162, + -0.014921057, + -0.026501592, + 0.008792547, + 0.002812694, + -0.0075435545, + -0.0038291418, + -0.009897302, + 0.015531355, + -0.021839477, + 0.02762291, + 0.007309592, + 0.02630144, + 0.0062284092, + 0.01545043, + 0.012303883, + 0.03397798, + -0.0060365964, + 7.320446E-4, + -0.019446652, + 0.03338603, + -0.005074111, + 0.007008868, + -0.036813814, + 0.02549782, + -0.024005586, + 0.0017283019, + -0.007680683, + 0.006544563, + -0.00583342, + -0.015604791, + -0.004350518, + 0.01052437, + -0.0088495, + 0.010806577, + -0.004452912, + -0.017768485, + 0.0018333014, + -0.030379267, + 0.00511555, + -0.02819873, + -0.0027604408, + -0.017524242, + 0.008903559, + -0.019607432, + -0.018763943, + 0.0082023805, + -0.0050483434, + 0.0131169995, + 0.0019382641, + -0.010559211, + -0.010202588, + 0.002419505, + -0.011733263, + -0.011559959, + -0.0019634343, + 0.0056215324, + -0.0082095815, + -0.020186083, + 0.06377414, + -0.011745489, + 0.007598645, + -5.005206E-4, + -0.023344196, + -0.024632072, + -0.029521491, + 0.013270464, + -0.0035030162, + 0.014997829, + 0.011878827, + 0.008613786, + 0.01163871, + -0.030110255, + -0.025096012, + -0.017493805, + -4.9890863E-4, + 0.009624094, + 0.010741545, + -0.0138971135, + -0.027560918, + 0.0023808521, + -0.007844511, + -0.004788512, + 0.043403294, + 0.017351843, + -0.008496269, + 0.015094031, + -0.0073699662, + -0.0124427285, + 0.013392746, + -0.00764651, + 0.0011649134, + -0.018514803, + -0.013777145, + -0.006023192, + 0.009063644, + -0.006077151, + 0.0077196695, + -0.016126465, + 0.027113173, + 0.0017809747, + -0.0035031892, + -0.015417704, + -0.0037178888, + -0.015149597, + -0.0026719605, + -0.01803298, + 0.011586973, + 6.795877E-5, + -0.0033069775, + 0.01914035, + -0.009641727, + 0.012448552, + 0.017907515, + 0.013941077, + 0.0035412142, + -0.026744207, + -0.013313526, + -0.0034396404, + -0.01407764, + -0.04476829, + 0.0013453391, + -0.003774144, + -0.003487678, + 0.011001332, + 0.019544762, + -0.0020986279, + -0.01195275, + 0.012940162, + -0.017502347, + -0.033192173, + -0.0068141147, + 0.0254101, + -0.030756319, + -0.025483321, + 0.0154308975, + -0.015031996, + -0.0025235373, + 0.014774222, + -0.027190724, + 0.003557534, + -0.01912368, + 0.0035366707, + 0.008550388, + 0.010434754, + -0.020476947, + -0.0057785246, + 0.0090809455, + 0.0032895475, + -0.010139008, + -0.015451389, + 0.0029824441, + -0.03996457, + 0.0035881093, + 0.005569073, + -0.0016343297, + 0.011931458, + 0.0010603342, + -0.023350818, + -0.0031787762, + -0.010816446, + -0.038461957, + 0.019167935, + -0.010836601, + -0.018870128, + 0.007577065, + 0.015783755, + 0.0055529242, + 0.003880301, + 0.0067465557, + 5.0960004E-4, + -0.010244042, + 0.015861878, + -0.015339732, + -0.019498605, + 0.0010224247, + 0.02041533, + -0.003216708, + 9.846523E-4, + -0.02318488, + 0.002834868, + 0.017152866, + -0.01436631, + -0.00919582, + -3.1334126E-5, + 0.0014217094, + 0.010906284, + 0.0012074384, + 0.002324295, + -0.012012461, + -0.010126447, + -0.036801536, + 0.022746008, + -0.012671849, + -0.005568771, + 0.00986259, + 0.014722157, + -0.01373447, + -0.011630971, + 0.007875639, + -0.009257096, + -0.016158683, + 0.013226688, + 0.0115174595, + -0.013851285, + -0.010739666, + -0.00915945, + -4.1712246E-5, + 0.013045514, + -9.037264E-4, + -0.0010428538, + 0.009844204, + -0.009912629, + 0.019615144, + 0.008693247, + -3.8381724E-5, + -0.005434277, + 0.012091122, + -0.0011498701, + 0.0071984003, + -0.017840603, + -0.008165028, + 0.015462869, + 0.0061194296, + -0.017132364, + -0.0022155528, + 0.008799722, + -0.023771467, + -0.013896751, + 0.007479778, + 0.019161003, + 0.0057677384, + 0.011535819, + 0.0023724197, + -0.024616588, + 0.0010712065, + 0.024408473, + 0.01568241, + -0.0029677993, + 0.011486916, + -0.001008522, + -0.026756067, + 0.03638932, + -0.0040219626, + 0.021216655, + -0.032566935, + -0.007654242, + 0.011249108, + -0.019616764, + 0.020096045, + 0.01907027, + -0.012085223, + 0.023188068, + -0.0059910733, + 0.01565919, + -0.017524723, + -0.013208954, + 0.022149779, + -0.005826852, + -0.029933577, + -0.0061564418, + 0.028490376, + -0.00970846, + -0.017639322, + 0.008076191, + 0.006317649, + 0.005936656, + 0.028158104, + -0.029267907, + -0.010618573, + 0.003687959, + 0.009882342, + 0.0029348212, + -0.016749308, + -0.025392102, + 0.013313638, + 0.015929908, + -0.00860411, + -0.0114823105, + 0.009835955, + 0.0084669, + 0.019946186, + -0.020243162, + 0.029331017, + -0.0043546213, + 0.017885817, + 0.012084787, + 0.011078478, + -0.025968336, + 0.0045410153, + -0.010127909, + 0.013371035, + -0.022153143, + -0.011052673, + 0.006962746, + -0.0056031067, + 0.0019279927, + 0.02702143, + 0.033956464, + -0.01311786, + -0.004377349, + 0.009032807, + 0.023543028, + -0.029383529, + 0.006236011, + 0.015332538, + 0.0123470025, + -0.015339583, + 0.027988186, + 0.018853514, + -0.0014943575, + 0.01672157, + -0.016934022, + -0.011353783, + 0.026343413, + -0.0012799028, + 2.7504255E-4, + -0.0037278817, + -0.0014906813, + 0.0076447455, + -0.0077242344, + 0.010240926, + 0.011685963, + -0.012139481, + -0.043573067, + -0.0060111443, + 0.015469435, + -0.027774611, + -0.0012803221, + -0.0010262529, + -0.008732901, + -5.449679E-4, + -0.02127221, + -0.005542633, + 0.038843956, + 0.003202794, + -0.007329201 ], - "paletteEmbedding": [ - 0.00659187, -0.01658872, 0.007790748, -0.021785852, 0.0049448493, - -0.02423328, 0.04493923, 0.02839874, -0.0046907365, -6.815507e-4, - 2.577629e-4, 0.006574966, 0.020262536, -0.027171696, 0.022931665, - 0.009214372, -0.04548613, -0.004825723, 0.018468358, -0.011083055, - 0.03953182, -0.013808936, -0.0132052265, 0.033692554, -0.03254513, - -0.029833766, 0.018671924, -0.003755751, 0.007171352, -0.05426972, - -0.038853567, -0.024195774, 0.019056642, -0.007973663, 0.034828316, - 0.035754614, -0.059037156, -0.022268208, 0.020903597, -0.01903841, - 0.027247528, -0.009244901, 0.012087578, 0.04987745, 0.033713557, - -0.026684081, 0.05779643, 0.044646967, -0.009947752, -0.024178524, - 8.6195744e-4, 0.051271323, 0.0010954656, -0.03554677, -0.007591471, - 0.008987252, 0.023582213, -0.025138125, 0.031261757, 0.024033947, - 0.029099517, 0.012036992, -0.029036837, 0.046604842, 0.019392932, - -0.017164527, 0.002966242, 0.023028363, 0.018480174, -0.008607709, - -0.04931163, 0.06132551, 0.0054769544, -0.04087255, 1.5375136e-4, - -0.011674114, -0.038998608, 0.040604252, 0.011455464, 0.01088609, - 0.017733214, 0.032686505, -0.0018260792, 0.018729614, 0.042635582, - -0.00572963, 0.05200772, -0.040483274, -0.01763915, -0.025780674, - 0.0021785807, 0.037115235, -0.035985935, 0.018456792, 0.05908671, - -0.02711712, -0.0263689, -0.010235847, -0.0022714261, 0.0421684, - 0.04985181, 0.04462637, 0.011316647, -0.05603736, 0.027180918, - 0.022375023, 0.0035342225, -0.058315758, 0.029830994, -0.045373645, - 0.028478254, 0.006843914, -0.062465694, -0.042967148, 0.08037936, - -0.022965753, 0.028356634, 0.017788721, 0.04158736, -0.002545097, - -0.05450845, 0.040246893, -0.034435723, -0.0053212023, -0.03738849, - -0.011636167, 0.015835807, -0.034515783, -0.010534405, -0.047587942, - 0.0760219, -0.007263634, -0.0654003, 0.054487538, -0.011336157, - 0.021944577, 0.018594738, 0.06883921, -0.00405616, -0.0020225437, - 0.027389623, -0.009056831, -0.0047011725, 5.798483e-4, 0.016803931, - 0.0016432734, -0.028066251, 0.0018389635, 0.017564824, -0.005064913, - -0.028318861, 3.921358e-4, -0.018177826, -0.016582167, 0.046508625, - 0.015905617, 0.024348857, 0.0040388834, -0.04197758, -0.015573876, - -0.029863043, -0.03977949, -0.017173307, -0.007680251, -0.025681686, - 0.004484858, 0.0016341585, -0.0028765937, -0.046266727, -0.034840852, - 0.05774775, -0.022054974, -0.089231014, 0.0071130884, 0.022938898, - 0.037616935, 0.048671823, 0.02457202, -0.012549085, -0.031174794, - -0.010752186, -0.013693331, -3.136477e-4, -0.009060989, 0.031196754, - -0.022300009, -0.003890802, -0.03522301, 0.028006455, -0.0031904147, - 0.008250812, -0.018338073, 0.014295581, 0.020097181, 0.003902833, - 0.025408043, -0.0230045, 0.055765282, -0.03530261, 0.007339142, - -0.006940728, -0.002915525, 0.019095123, 0.009758079, 0.008007838, - 0.015625458, 9.743039e-4, 0.014107083, -0.009981937, -0.0060455687, - -0.0017947749, 0.050952267, -0.042707, -0.014220282, 0.07402101, - -0.016115705, 0.03054475, -0.036502697, 0.022816665, -0.015259416, - 0.0140003385, -0.043853816, -0.019037254, -0.0345874, 0.007304209, - -0.014121894, -0.026284916, -0.0069129225, -0.008628671, 0.004668777, - 0.059396725, 0.017333869, 0.04613345, -0.012163703, 0.031650405, - -0.019310124, 0.039240643, -0.004561485, 0.061665386, 7.8852306e-4, - 0.0012541936, 0.008483154, 0.0151142245, -0.03953607, 5.931451e-4, - 3.2519232e-4, -0.05077374, 0.06613309, 0.022268388, -0.021105517, - -0.040924374, -0.016305108, -0.008799082, 0.032058377, 0.012297228, - -0.009852191, 0.013621754, 8.451844e-4, 0.0443978, -0.012231688, - -0.045442272, 0.016384402, 0.01686248, 0.0025480676, 0.009715917, - 0.010664392, 0.030594522, 0.06718876, -0.034147773, 0.047246248, - 0.018589007, -0.045201287, -0.011560761, -0.002119443, 0.03559382, - 0.04302331, 0.012672492, -0.009922419, -0.047323745, -0.015453345, - -0.009643396, -0.080246925, -0.011038785, 0.04915287, 0.02082529, - 0.017130308, -0.04249553, 0.004349423, 0.026311494, 0.054857723, - -0.0393778, 0.02416232, 0.03974665, 0.041244436, -0.044243958, - -0.0060481103, -0.0021701786, -0.025421333, 0.025222749, -0.007675468, - -0.00687876, 0.017713325, -0.024784474, -0.008819352, -0.031338755, - -0.030310981, -0.045037854, -0.008118634, 0.015467886, -0.036345057, - -0.0018137844, 0.018993571, 0.008197198, 0.024370678, 0.0023278743, - -0.088185206, -0.0038806093, 0.03041432, -0.014936199, -0.009653338, - -0.020778196, 0.020462425, 0.053605005, -0.058520872, -0.029986586, - 0.023398167, 0.057899583, 0.08057462, 0.045884013, -0.006181863, - 0.06828027, -0.0011492899, 0.081504636, -0.008680495, 0.014216471, - -0.022117719, 0.025558412, 0.012565164, -0.014988953, -0.018359791, - -0.015352008, -0.02497095, -0.04233718, -0.055020336, -0.010888839, - 0.031565845, 0.04299113, 0.0045357635, -0.040778022, 0.06209774, - 0.043905977, 0.03227809, 0.013327566, 0.008513692, 0.0049769087, - -0.026209498, 0.0075218608, -0.011886661, -0.010054177, -0.04231037, - -0.037341587, 0.04054043, -0.012931155, 0.042961713, 8.438141e-4, - 0.016864492, 0.016155988, 0.036379486, -0.057435796, -0.014563289, - -0.052374404, -0.020607505, 0.019012876, 0.004203204, 0.0154780755, - -0.015110283, -0.049125385, 0.032283075, -0.0067359013, 0.010368793, - -0.04583812, 0.05057666, -0.003973267, 0.013264026, 0.031890843, - 0.02507913, -0.001487801, 0.027350483, -0.048567742, -0.017066581, - -0.041477848, 0.012189576, -0.017287025, -0.001638642, 0.0044336426, - -0.055546895, -0.011223003, 0.02915158, 0.019342642, -0.046102718, - -0.007743015, 0.033257116, -0.0062835263, -0.049070805, -0.022304228, - -0.043797154, -0.008739854, 0.024227226, 0.025688257, -0.025885006, - -0.046773653, 0.002368106, 0.033516265, -0.0060450463, -0.007335584, - -0.011399238, 0.04880274, 0.008409322, 0.0010540367, 0.01988108, - -0.059259627, -0.0066388487, 0.015098314, 0.00897897, -0.023539267, - -0.03334053, -0.049925964, -0.022746643, 0.03547572, -0.020650499, - -0.011449497, 0.038876455, 0.024715923, 0.019921903, 0.0035408176, - 0.044927184, 0.06640769, 0.0354713, 0.015821422, -0.0026172288, - -0.0068709655, -0.008764674, -0.017235268, -0.021281179, -0.044205666, - 0.07383308, -0.0027690053, -0.0298374, 0.0056335386, 0.0025885687, - 0.023552591, -0.008129596, -0.0145805655, -0.014415797, -0.007828168, - 0.047799226, -0.017020242, -0.04537794, 0.0024270532, -0.017895693, - 0.04112478, 0.011783799, 0.0167849, -0.08787744, 0.0073282947, - 0.019175552, -0.017033996, -0.014469688, -0.011718302, 0.0026316633, - 0.049047, 0.0011727936, 0.012116234, -0.009245152, -0.045030702, - 0.0076718535, 0.012390764, -0.07219894, 0.03274638, -0.03814693, - 0.004510883, -0.033693276, 0.016086228, 0.0017473663, -0.010767191, - -0.0017962708, -0.021761602, 0.024127332, -0.043673005, 0.005511299, - -0.031776343, -0.058304664, -0.01117448, 0.0207853, 0.021543667, - -0.02356874, -0.05811747, -0.02567265, -0.012465624, 0.005662203, - -0.011612544, -0.046431035, 0.01818072, -0.017744422, -0.024489503, - -0.048690632, 0.010880418, -0.014038654, -0.036428653, -0.02700006, - -0.018580176, 0.055881955, -0.02177449, 0.020697989, 0.0152437715, - -0.053942226, -4.596441e-4, -0.03279231, 0.008674831, -0.020663373, - 0.024624003, 0.028252238, -0.058305386, -0.014974766, 0.053662695, - 0.03227035, 0.018185068, 0.004513453, -0.011252967, 0.0028760117, - 0.005223596, -0.025245056, -6.914466e-4, 0.027535515, 0.015898544, - -0.06544427, 0.012386324, 0.023410123, -0.04735495, 0.011027409, - -0.02803633, -0.041768037, 0.044071335, 0.0063849697, -0.061998073, - -0.067034565, -0.004655698, -0.039768018, 0.019050362, 0.010304937, - -0.044225167, -0.010547324, 0.009592664, 0.06929244, 0.041120987, - -0.009452321, 0.04801115, 0.003113689, -0.01143191, -0.057572782, - 0.028807923, -0.008774649, -0.0010947443, -0.009349122, -0.016071105, - 0.0012636754, 0.01948072, 0.021763317, 0.013076455, -0.0342021, - -0.009623741, 0.025961157, 0.059321344, 0.06304525, -0.019393707, - 0.06084648, -0.06224594, 0.00579626, 0.022289729, 0.03674244, - 7.499572e-4, -0.011633334, -0.007925477, 0.007628031, -0.05329809, - 0.029651359, -0.055983797, 9.7491057e-4, -0.0153748775, 0.005545187, - 0.010271917, 0.006460726, 0.019936651, 0.026408011, 0.026870795, - -0.033428174, -0.019225582, 0.039653096, 0.0036187759, 0.012280808, - -0.04962742, -0.073587984, -0.03153066, -0.001292763, -0.0396939, - 0.0052623022, -0.05481399, -0.01500122, 0.035439808, 0.014783911, - 0.007448421, 0.03512239, 0.037933968, -0.036289345, -0.03976388, - -0.0028192631, 0.055485196, -0.0044358135, 0.038589228, -0.045492616, - 0.015310855, 0.012919319, 0.018413771, -0.007765066, -0.033433255, - 0.031641245, -0.044020675, 0.01912836, 0.03748385, -0.020079875, - -0.030457716, -0.041253176, 0.0072325463, -0.06340652, 0.01994729, - -0.015282801, -0.026894707, 0.025664536, -0.0014832838, -0.009655999, - -0.018909648, 0.041786633, -0.018817404, 0.022596365, 0.023864718, - -0.015132595, 0.038418137, 0.0042130956, -0.0390405, -0.03449082, - 4.0854388e-4, -0.022231562, -0.041080162, 0.021930518, 0.021690186, - -0.01701584, -0.020730332, -0.0076567205, 0.0069763544, 0.01933434, - 0.027126437, -0.057642754, -0.009660429, -0.020679908, 0.018548151, - -0.017559133, -0.025917944, -0.019624308, 0.011740948, -0.031057341, - -0.022456145, 0.018276071, -0.014180714, 0.011643916, -0.022173017, - -0.031369492, 0.04794783, 0.01852802, -0.048519216, -0.0054387324, - 0.020127699, 0.018502703, -0.024602002, 0.0045550573, -7.350294e-5, - 0.014893015, 0.018477945, -0.013361093, 0.024111958, -0.0010617028, - -0.0030222496, -0.042485, 0.011798231, 8.295836e-4, 0.0026765843, - 0.013233258, -0.028630666, -0.047437813, -0.03416097, 0.0016581237, - -0.034336403, -0.034237463, 0.07227513, -0.043872565, -0.007728064, - -0.058010858, -0.011882523, -0.01305753, 0.029687187, -0.043888252, - 0.0055739707, 0.026867999, -0.012422885, -0.02547878, 0.03230805, - -0.027861333, 0.025913347, -0.013897937, 0.0070559676, -0.024613542, - -0.02876258, -0.004700247, -0.0275552, -0.04732605, 0.0502522, - 0.015598684, -0.020676265, -0.038362235, -0.03410226, 0.0072034467, - 0.0052464246, 0.021594562, -0.041115694, -0.008118686, 0.0017462888, - 0.019540692, 0.0027064574, -0.030631498, 0.06861568, -0.040198907, - -0.06627798, -0.02862221, 0.016163453, -0.007693496, 0.002927248, - 0.023027314, -0.030643396, 0.005554246, -0.038601197, 0.015056083, - -0.041854806, 0.05207977, -0.021545568, 0.0027213641, -0.018729283, - -0.010960269, -0.01577893, -0.0045265486, -0.011612963, 0.028878167, - -0.046873126, -0.032836113, 0.04699982, -0.011526186, -0.011819409, - 0.01682262, -0.004165809, 0.027453663, 0.023095155, -3.387305e-4, - -0.0034019588, 0.01967774, -0.0059409603, -0.006818375, 0.024766948, - 0.045962904, 0.03818662, -0.05210427, -0.0051843766, -0.0127164675, - 0.016700367, 0.013573611, 0.005169404, -0.008886643, -0.021044808, - -0.017248878, -0.015946174, -0.07296396, 0.008757978, 0.06374398, - -0.0275018, -0.0141921695, 0.06328515, -0.053160135, 0.01327324, - -0.001525809, -0.050713222, 0.029338937, -0.04750583, -0.0070445207, - -0.028116608, 0.047799274, 0.043920685, -0.017055137, -0.023671214, - 0.0928619, -0.011535295, -0.07458418, 0.048443064, 0.06390635, - 0.022411924, -0.072574295, -0.03973319, -0.021122657, 0.00706363, - 6.772654e-4, -0.019930799, -0.054249782, -0.011113619, -0.010512682, - 0.028122637, 0.015237083, -0.013415614, 0.027004607, 0.011016649, - 0.070030704, 0.01977656, 0.009122555, 0.0018653724, -0.01098665, - 0.006613123, 0.095968, -0.020648766, 0.02867237, -0.037194643, - 9.319117e-4, 0.009945086, 2.8806663e-4, -0.030880157, -0.03143319, - -0.030237192, -0.06341278, -0.008054563, 0.05249301, 0.0395023, - -0.028341703, 0.026114214, -0.033003606, -0.050460987, -0.081199445, - 0.014356042, -0.019690793, 0.017147353, -0.009974979, -0.0049962252, - 0.035856042, -0.04954827, -0.027739821, -9.2986034e-4, -0.022215892, - -0.0053705918, -0.0018442535, 0.032389488, -0.008413121, -0.0126485955, - 0.043770753, -0.0065399883, 0.05104847, -0.01886062, 0.04484267, - 0.019119296, -0.015166063, -0.0029999302, 0.013106683, -0.010216915, - 0.0019080992, 0.020815324, -0.016329275, -0.027752724, -0.011373864, - -0.024012163, 0.039825115, 0.044258974, -0.06980243, 0.006094819, - -0.04227212, -0.039422866, -0.002184233, -0.08668092, -0.037458543, - 0.010405647, -0.028150676, 0.043022297, -0.009869707, 0.0051190406, - -0.004432088, -0.027259763, -0.04522183, 0.004757858, 0.03090675, - 0.006154848, 0.006204444, -0.091414124, 0.04246845, -0.027851425, - 0.0090706395, 0.02422099, 0.0033745116, -0.05030965, -0.029898299, - -0.02308859, 0.03807132, -0.033009823, -0.0011223168, 0.009959872, - 0.006125018, 0.049142458, -0.0013253749, 0.01951368, -0.021572951, - -0.030170333, 0.059154514, -0.030948337, 0.03557315, 0.026157992, - 0.053442523, 0.07575952, -0.020843431, -0.006986555, 0.027428357, - 0.0016556666, 0.04559388, 0.004418814, -0.0268506, 0.0036781055, - -0.07441148, 0.03426759, -0.07453201, 0.018772334, 0.0059693903, - -0.03715366, 0.03544894, 0.011519437, -0.08594552, 0.05888548, - 0.0050851577, -0.0050244653, 0.035195407, 0.021393297, -0.0035992176, - -0.013073781, 0.015296836, 0.023540197, -0.017911505, 9.990779e-4, - 0.052230444, 0.0040588, -0.003461135, -0.026386254, -0.010167144, - 0.0014351499, 0.040914863, -0.015505359, 0.015623048, 0.030838374, - 0.00803022, -0.0072181057, 0.023169784, -0.011893726, -0.002533166, - 0.026451098, 0.031815797, -0.024770526, -0.051453404, 0.04025602, - 0.02152747, 0.0023183112, 3.014719e-4, -0.07052844, -0.03112887, - -0.0063490868, 0.036279533, -0.009878494, -0.012726299, 0.051709402, - -0.041326053, -0.0072029964, 0.05923412, -0.055534262, -0.020275824, - -0.062147208, 0.022580964, 0.0118630305, 0.004229305, 0.038818695, - -0.07763557, -0.027151234, 0.0046343366, -0.007813736, 0.09049363 + "paletteEmbedding" : [ + -0.012873136, + 0.010868249, + -0.037423268, + 0.029905137, + 0.030800654, + -0.0073993397, + 0.052418306, + 0.047591377, + -0.011117792, + -0.0075945156, + -0.047162574, + -0.043145824, + 0.030790644, + -0.075572744, + -0.027420457, + -0.011609533, + 0.052709308, + 0.015541166, + -0.03382845, + -0.027823113, + -0.013313466, + -0.04553072, + 0.046417665, + -0.0021291422, + 0.0067940676, + 0.01214794, + -0.039356288, + 0.018182503, + 0.021352625, + 0.021699788, + -0.026020026, + 0.035250932, + 0.05855377, + -0.050394848, + 0.067732595, + -0.011701183, + 0.0066651623, + 6.6988624E-4, + 0.018082824, + 0.026194256, + 0.012977888, + 0.023863798, + -0.0028148543, + -0.0073960642, + -0.011156691, + 0.06812751, + -0.040879384, + -0.02777369, + -0.027006553, + 0.075199485, + 0.036866672, + -0.039555587, + 0.036598105, + 0.020020379, + -0.03647838, + 0.0022906782, + 0.007753893, + 0.001856319, + 0.030002149, + 0.014880601, + 0.01580945, + 0.020845586, + 0.011201858, + 0.067728065, + -0.0052558407, + 0.008495725, + 0.08075971, + 0.039658908, + 0.0027665803, + -0.006015231, + 0.017545812, + -0.009973155, + 0.03558591, + -0.06013003, + 0.037265424, + 0.019189594, + -0.060480453, + -0.054866787, + 0.046136662, + -0.04126103, + -0.013792172, + 0.012356901, + -0.042813774, + -0.009283798, + 0.059242625, + 0.05719599, + 0.020116337, + -0.021588743, + 0.025117734, + 0.007770897, + 0.011363632, + 0.053536765, + 0.04582706, + -0.008142181, + -0.02771009, + 0.023366578, + -0.036849033, + -0.028506707, + 0.029816084, + -0.025913669, + 0.023937885, + 0.008600521, + -0.030109476, + -0.028333852, + -0.019241018, + 0.023001127, + 0.029091764, + -0.026223317, + -0.014788654, + -0.032411907, + -0.025660882, + -0.019603312, + 0.058642976, + 0.03539988, + 0.009204012, + 0.0051367027, + -0.019839492, + 0.030642219, + -0.01642749, + -0.025291286, + 0.0041628135, + -0.053431578, + -0.023015145, + -0.010897572, + 0.061802175, + -0.051000796, + 0.018144548, + -0.065641075, + 0.029094525, + -0.016711883, + 0.01998238, + 0.0064972774, + -0.04745193, + 0.005984371, + -0.03388514, + 0.027631247, + -0.0047580167, + 0.0144077465, + -0.0024987056, + 0.006005458, + 0.022081628, + 0.0469681, + -0.0036430897, + 0.0069447723, + -0.035558537, + 0.004694548, + 0.011448803, + 0.029806528, + -0.04586526, + -0.015760165, + 0.011735797, + 0.025516417, + -0.059795983, + -0.032354653, + -0.018086258, + -0.0051207547, + 0.04032081, + 0.02741658, + -0.008736323, + -0.0056497864, + -0.01916518, + 0.008906616, + -0.008857296, + -0.023792181, + 0.037343107, + -0.058991585, + 0.0031758896, + -0.0142580485, + -0.027915662, + -0.009590514, + 0.0018248465, + 0.04743505, + -0.016810268, + 0.006847751, + 0.0064400653, + 0.013735328, + -0.015645415, + 0.044958778, + -0.009932293, + 0.026737941, + -0.055697165, + 0.0058617988, + 0.008464696, + -0.014477837, + 0.0068325223, + -0.028285136, + -0.0054952656, + -0.018439075, + -0.028546719, + 0.024442287, + -0.019200206, + -0.0036031427, + -0.049454052, + 0.10521619, + -0.026548723, + -0.017989138, + -0.023169534, + -0.031626083, + 0.036252685, + -0.03311551, + 0.019781515, + 0.035418063, + -0.01248392, + 0.02666283, + -0.0061210305, + 0.018547012, + 0.03288393, + 0.0014148382, + -0.018798077, + -0.03757933, + -0.01786726, + -0.030935224, + -0.0044264565, + -0.02657096, + 0.07772293, + -6.3220033E-4, + 0.025318755, + -0.011573387, + -0.006217992, + -0.0063951695, + 0.0043431753, + -0.047662172, + -0.060578115, + -0.022214128, + -0.004033314, + -0.0113058025, + 0.020459063, + 0.037640985, + 0.034162678, + -0.032086145, + 0.0025953972, + 0.023324119, + 0.047837954, + 0.0076699858, + 0.026859885, + -0.019315302, + 0.015710527, + 0.05109576, + 1.7095357E-5, + 0.011674924, + 0.0333805, + 0.056025345, + 0.048771325, + -0.01457268, + -0.013399476, + -0.032447793, + -0.02682334, + 0.01764764, + 0.009903694, + -0.025634775, + 0.02628081, + -0.0181617, + 0.021999415, + 0.024076294, + 0.03591576, + 0.019688938, + 0.015185309, + 0.025625512, + -0.036946498, + 0.06366729, + 0.031898815, + 0.007006294, + 0.01671331, + -0.018161532, + -0.020547573, + 0.032403685, + -0.024327384, + 0.016791373, + -0.010881724, + -0.0020469157, + -0.020700864, + 0.0717639, + -0.020728845, + -0.04916869, + 0.022387866, + -0.013445415, + 0.026811695, + -0.0045963735, + 0.011824746, + 0.021008192, + -0.029903343, + -0.0030439636, + 0.010952888, + 0.033795808, + -0.017856233, + -0.020602698, + 0.026746828, + 0.005173477, + 0.025404798, + -0.029072793, + -0.015585601, + 0.012929834, + 0.00337445, + -0.011634724, + 0.019353056, + 0.013883454, + -0.0063517233, + 0.020282567, + 0.0016658278, + -0.005965813, + 0.02902876, + -0.01934034, + 0.01660212, + -0.014528261, + 0.0035416924, + -0.057674333, + -0.0037710015, + -0.032978717, + 0.0037455712, + -0.002195635, + -0.018661257, + 0.017270127, + 0.02647691, + 0.01866293, + 0.0070291357, + 0.044863906, + -0.038512222, + -0.015658606, + -0.024862835, + -0.008382417, + 0.017306423, + -0.018355483, + -0.031702343, + 0.01357067, + 0.037778527, + -0.01935293, + 0.054389387, + 0.005278735, + -0.06250695, + -0.046817355, + -0.0043518445, + -0.017307872, + -0.014861104, + -0.057906035, + -0.035026524, + 0.0053896424, + 0.017302739, + 0.03177264, + -0.026557907, + -0.012532009, + 0.04694556, + -0.010863843, + 0.010991275, + 0.009933932, + 0.05184545, + -0.05802115, + 0.05200201, + -0.026875943, + -0.021650894, + -0.015600736, + -0.06372295, + 0.046706907, + -0.035538804, + -0.009376172, + -0.0027823858, + 0.012120688, + 0.041409735, + -0.02934521, + -0.039101176, + 0.012920785, + -0.017119065, + 0.022586677, + -6.5053283E-4, + 0.044037037, + -0.022564003, + -0.059061002, + -0.041382954, + -0.009773188, + -0.016953913, + 0.015654637, + 0.013687283, + -0.053191435, + -0.038925186, + -0.034422126, + 0.08777846, + -0.026353989, + 0.04562456, + -0.031983864, + 0.03472595, + 0.016879374, + 0.005490864, + 0.014131264, + -0.034050938, + 0.034947537, + 0.03012497, + 0.0380424, + 0.03787916, + 0.014562333, + -0.037279177, + 0.03622448, + 0.0025125672, + 0.004356861, + 0.07881546, + 0.013030663, + 0.022309724, + -0.011780973, + -0.012870284, + -0.047723845, + -0.025981465, + -0.029773114, + -0.04581713, + 0.009007842, + 0.008926884, + -0.042961244, + 0.009513083, + 0.0015242316, + -0.0049535995, + -0.012916931, + -0.0074979137, + 0.025312474, + -0.011426305, + -0.02546439, + 0.020355085, + -0.06004719, + 0.054363362, + -0.0050617186, + 0.020457892, + -0.054417055, + -0.047693945, + -0.021382807, + 0.02931871, + -0.01739995, + 0.0083114635, + -0.058045164, + -0.018459236, + -0.026531978, + -0.06676025, + 0.015621588, + 0.05517446, + -0.035994556, + 0.0061875866, + -0.054704957, + 0.0026804365, + 0.053223137, + 0.06581566, + -0.022603555, + -0.0065822946, + -0.02753489, + 0.062129606, + 0.03845072, + 0.014670831, + 0.027195683, + -0.021578273, + 0.04881146, + 0.07674186, + -0.016709382, + 0.036936924, + 0.004178346, + 0.0040295185, + 0.0050806855, + -0.03686509, + -0.0046301777, + -0.022372413, + 0.0026305264, + -0.017917845, + -0.039502703, + 0.00894812, + 0.024456494, + -0.02989135, + 0.028157517, + 0.0032415297, + 0.0011386899, + -0.02844829, + 0.02245687, + -0.0195392, + 0.049507126, + -0.042695306, + -0.013095293, + -0.070871204, + -0.03386684, + -0.02972586, + 0.030870581, + 0.03938981, + -0.026064083, + 0.002789743, + 0.03646105, + -0.019435242, + 0.041470688, + -0.0077105775, + -0.011119094, + 0.044394616, + -0.012384566, + 0.030512283, + 0.019839134, + 0.0025977818, + 0.020030389, + 0.032781355, + -0.016810503, + 0.018332617, + 0.009788267, + 0.0038618983, + -0.048402425, + -0.043888286, + -0.0013592463, + -0.027201137, + 0.03284972, + 0.03379092, + 0.038102787, + 0.0059476476, + -0.013564206, + -8.220298E-4, + 0.044841263, + 0.022461945, + -7.311928E-4, + -0.0010707212, + 0.010701505, + 0.02921049, + 0.028699849, + -0.018327458, + -0.019139666, + -0.045698904, + -3.9428793E-5, + 0.032784443, + -0.08010871, + 0.043956347, + 2.638031E-4, + 0.028114237, + 0.009481578, + 0.00811187, + -0.017686492, + -0.07820128, + 0.007856924, + -0.0054824543, + -0.041989584, + -0.06566168, + -0.058671735, + 0.0851294, + -0.025634263, + 0.058584664, + 0.033804487, + -0.00247156, + 0.036009364, + 0.016946273, + -0.008240495, + 0.03885978, + 0.01710811, + -0.0051960847, + 0.0178089, + -0.019520352, + 0.01444584, + -0.05650517, + 0.05614786, + 0.035047427, + -0.0070848907, + 0.041541096, + 0.0011496226, + 0.00955277, + -0.0150099145, + -0.012602979, + -0.07583241, + -0.007834158, + 0.053315885, + 0.017570812, + -0.020406151, + -0.001604755, + 0.0054471833, + -0.015341514, + 0.014212031, + -0.05506868, + 0.013792351, + 0.019338207, + 0.0075898673, + -0.019784484, + -0.02268439, + -0.015099551, + -0.040480774, + -0.0071765, + -0.064907484, + 0.0096983155, + 0.06239901, + 0.055126138, + 0.014774103, + 0.030051457, + 0.0049392427, + 0.013539224, + 0.0048626703, + -0.017726753, + -0.015351291, + -0.056505017, + -0.043067615, + 0.05123943, + -0.025750512, + -0.011312318, + 0.037980597, + 0.0017146479, + -0.01990754, + -0.040895544, + -0.010175061, + -0.0023638248, + -0.021492649, + -0.019754542, + 0.028126715, + -0.011783251, + -0.009417133, + -0.0034317768, + -0.08468148, + 0.03060299, + -0.0019969272, + 0.007333412, + -0.03886328, + -0.033222288, + 0.01908046, + -0.017439015, + 0.0010590261, + 0.03549859, + -0.012923524, + 0.017674131, + 0.0069729006, + -0.0076744854, + -0.057150647, + 0.059220474, + 0.039209012, + -0.016019521, + -0.049485862, + 0.039988156, + 0.097372904, + -0.0077879815, + 0.003971489, + -0.040834803, + -0.0058802655, + 0.047664423, + -0.04761594, + -0.05072019, + -0.05204838, + -0.0147863785, + -0.0051262314, + 0.045107707, + -0.024158811, + 0.010847613, + -0.020344015, + 0.03701067, + -0.015904676, + -0.016618991, + 0.032882657, + -0.014925223, + 0.046500456, + 0.024419285, + 0.04168783, + -0.008920606, + 0.0023853146, + 0.009074666, + 0.033227716, + -0.025946772, + 0.024695696, + 0.04200149, + 0.0052738544, + 0.008522705, + 0.044693, + -0.058497895, + -0.020215295, + 0.024548538, + -0.048878748, + -0.023838423, + -0.0031451592, + 0.0047312933, + 0.025373917, + -0.030348258, + 0.04847796, + 7.769856E-4, + 0.046429384, + 0.001965232, + 0.016739707, + -0.060329445, + 0.014742773, + -0.002451446, + 0.032543197, + 0.037190843, + 0.034535382, + 0.012915205, + -0.038846143, + -0.021358864, + -0.046993352, + -0.029599141, + -0.062121492, + 0.01719768, + 0.042584274, + 0.023115156, + -0.027695952, + 0.004275871, + 0.04996163, + 0.015422493, + 0.03222768, + -0.03227164, + 0.04373534, + -0.026234671, + -0.042332344, + -0.07491591, + -0.0062326845, + 0.050693825, + 0.0014328206, + -0.003914217, + 0.012728441, + 0.0070728622, + 0.014750648, + 0.013783721, + -0.0038626993, + 0.018474411, + 0.031246802, + 9.4118976E-4, + -0.007369189, + -0.036413193, + 0.032759737, + -0.02502691, + -0.01039298, + -0.09097502, + 0.0061744107, + -0.05932351, + -0.004921845, + -0.04987925, + 0.022286667, + -0.010805218, + -0.023240484, + 0.018710153, + -0.032684613, + 0.04199599, + 0.009953493, + 0.0022565469, + 0.008802958, + -0.019994106, + 0.0058737593, + 0.0012491333, + 0.0067339325, + -0.01598791, + 0.03447194, + -0.0034764041, + -0.017592767, + 0.0059633492, + 0.02010777, + 0.0061304895, + -0.053855073, + -0.023165792, + -0.0293478, + 0.03286889, + 0.036818378, + 0.04541622, + -0.038423885, + 0.02212246, + 0.022172527, + 0.002516982, + 0.015123444, + -0.0406824, + 0.005898206, + 0.0010337295, + -0.030788383, + 0.04852689, + 0.019746138, + 0.008677657, + -0.03293591, + -0.03004406, + 0.017476449, + -0.046571594, + 0.028471056, + -0.007485526, + -0.03114126, + 0.009974097, + 0.008020437, + -0.041524258, + -0.088765554, + 0.037586138, + -3.352075E-4, + -0.010834586, + 0.04525284, + 0.039624427, + 0.034982804, + -0.010243075, + 0.025943164, + -0.04054484, + 0.018435625, + -0.002785461, + -1.9583467E-4, + 0.009714891, + 0.04752148, + 0.006679316, + -0.016959347, + -0.015839169, + -0.018794088, + 0.04018536, + -0.055141058, + 0.025553988, + -0.025210498, + 0.0022114841, + -0.006487362, + -0.023898002, + -0.013931758, + 0.03769926, + -0.008010062, + 0.009547368, + -8.7242667E-4, + -0.020341786, + -0.011853554, + 0.013785373, + 0.010158062, + -0.00880371, + 0.022767855, + -0.014648824, + 0.060958423, + 0.049228963, + 0.028555017, + 0.015764201, + 0.0047166813, + 0.04966957, + -0.006815123, + -0.012738892, + 0.03188851, + 0.06841566, + 0.024629356, + -0.019679802, + 0.0144853825, + 0.0238011, + 0.022487149, + -0.002466042, + -0.02303815, + -0.013741572, + 0.0015365385, + -0.025460053, + -0.019130941, + 0.0032917922, + 0.045137826, + 0.017556885, + 0.0018722012, + -0.0387368, + 0.033074014, + -0.04951107, + -0.02406144, + 0.008875895, + 0.0046226983, + 0.0051347055, + 0.0010105881, + 0.1121296, + -0.01918208, + 0.009204154, + -0.05399514, + 0.032012478, + -0.017620884, + -0.04209905, + -0.028978026, + -0.0066243946, + -0.026854044, + -0.04789586, + 0.036670454, + -0.020691782, + -0.024415206, + -0.014981021, + -0.013843787, + 0.030081298, + -0.0062469323, + 0.039965626, + -0.013756237, + -0.002225453, + 0.04277839, + 0.034986347, + 0.003183181, + 0.029776871, + -0.019977406, + -0.023953345, + 0.026577918, + 0.023628715, + -0.02589369, + -0.051893298, + -0.03897018, + -0.033060912, + 0.031288967, + 5.491841E-4, + 0.032159213, + -0.04563392, + -0.07345689, + 0.021885045, + 0.05823706, + -0.0078236535, + -0.048337568, + 0.024154853, + 0.016408678, + 0.0074580987, + 0.031030482, + 0.0048095533, + 0.03120362, + -0.030271105, + 0.06381045, + -0.046768058, + -0.046266887, + 0.03421299, + 0.001381018, + -0.057414714, + -0.021203693, + -0.011537204, + -0.011627066, + 0.03692025, + 0.02409885, + -0.022990802, + -0.011080469, + 0.011599157, + -0.018600892, + 0.022385627, + -0.021835532, + -0.03815468, + -0.02437578, + 0.060038473, + 0.0012443585, + -0.023191387, + -0.016115334, + -0.025411211, + -0.042923544, + -0.042417407, + 0.016802879, + -0.004472004, + -0.013316306, + 0.031887017, + -0.044253446, + 0.026145453, + 7.751213E-5, + -0.0072173667, + 0.009370492, + 1.3754104E-4, + -0.029629163, + 0.005161944, + 0.027857823, + 0.00449697, + -0.053437196, + 0.007431413, + 0.047867388, + -0.020540573, + 0.040963076, + 0.010859078, + 0.012248101, + -0.011712931, + 0.06589243, + -0.03465059, + 0.004719259, + -0.007025938, + -0.0020807323, + 0.037952404, + 0.052485555, + 0.01381303, + 0.0015501147, + 0.013658956, + 0.022831364, + 0.01226827, + -0.026708033, + -0.049419075, + -0.028906722, + 0.046886906, + 0.021531474, + 0.023415282, + -0.021492587, + -0.03494081, + -0.03774046, + 0.0072165015, + -0.08935555, + -0.030940022, + -0.01804904, + 0.02309676, + 0.021716677, + 0.02082009, + -0.011145925, + 0.020991487, + -0.0013540279, + 1.2371966E-4, + 0.038426757, + -0.0059893127, + 0.030000523, + 9.008252E-4, + 0.016170481, + 0.0028325496, + 0.006372304, + -0.010526352, + -0.009418653, + 0.010467732, + -0.007079977, + 0.023271225, + -0.017794022, + -0.041945048, + 0.058271654, + 0.03754179, + -0.0036880244, + -0.015921801, + -0.055492643, + -0.021216212, + 0.024074085, + 0.059604887, + -0.016412176, + -0.06821781, + 0.018744063, + -0.029992389, + 0.02314295, + -0.016294634, + -0.006846932, + -0.009802156, + 0.0015319532, + 0.007566958, + -0.0013796479, + 0.040380977, + 0.003405105, + 0.007757797, + -0.055592556, + -0.0117219165, + -0.014491357, + 0.06206826, + -0.011840582, + -0.107381664, + 0.002781014 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.3.json b/common/search/src/test/resources/test_documents/images.different-licenses.3.json index c77c6eda1..a1eef3d58 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.3.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.3.json @@ -1,1341 +1,5252 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.534421Z", - "id": "qlww1xv9", - "document": { - "modifiedTime": "1951-08-02T00:33:56Z", - "display": { - "id": "qlww1xv9", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.306757Z", + "id" : "hj2eugdu", + "document" : { + "modifiedTime" : "2049-08-08T00:29:37Z", + "display" : { + "id" : "hj2eugdu", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/2eo.jpg/info.json", - "credit": "Credit line: s9Zcgb", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", + "linkText" : "Link text: 81zkKTj9", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/2eo.jpg/info.json", - "credit": "Credit line: s9Zcgb", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", + "linkText" : "Link text: 81zkKTj9", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#DE1D15", - "source": { - "id": "7pkdjeqg", - "title": "title-ooHAso4s4u", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#BCE3D7", + "source" : { + "id" : "knyz3bbl", + "title" : "title-4naXwBKSaX", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "qlww1xv9", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "7pkdjeqg", - "sourceIdentifier.value": "AGoWWFpmeX", - "identifiers.value": ["AGoWWFpmeX", "gR7ZcjRlhK", "5InnIv4Ncl"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-ooHAso4s4u" + "query" : { + "id" : "hj2eugdu", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "knyz3bbl", + "sourceIdentifier.value" : "Gmjm0awuZz", + "identifiers.value" : [ + "Gmjm0awuZz", + "iQBpecDWLx", + "RmgDqrN7dF" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-4naXwBKSaX" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.008585407, 0.009980814, -0.0090496065, -0.021190064, 0.0011960722, - -0.019527018, 0.009897318, 0.033066694, 0.0040780175, 0.0039114566, - -8.9574454e-4, -0.017253773, -0.018670615, 0.02049613, 0.017920773, - -0.009670104, 0.0029585187, 0.026656061, -0.006680093, -0.020928325, - 0.02114472, -0.002779922, -0.007357997, 0.027616652, -0.0074972534, - -0.016338523, 0.005020187, 0.002405989, -0.0324345, -0.021782564, - 0.0063582226, -0.013127078, -0.017001016, -0.01066938, 0.032325245, - 0.011353941, 0.022787547, -0.004590636, 0.015199248, 0.021708414, - 0.015791746, -0.019854795, 0.02139992, 0.01138453, 0.025646515, - 0.009097605, 0.01003377, -0.007262877, 0.009920892, 0.020475538, - 0.00909544, 0.018494325, -0.011396337, -0.006296352, 0.02861978, - -0.023372255, -0.014250592, -0.0061875433, -0.008357406, -0.005649775, - 0.012035959, -0.011041877, -7.777793e-4, 6.6153245e-4, -0.012824911, - 0.0120282965, 0.0030826821, 0.009057837, -0.014166039, 0.009188043, - -0.0061793327, -0.007021432, -0.016345015, 0.0086508375, -0.019394264, - -0.0043596416, 0.013297443, 0.021332717, 0.008329467, -0.004456835, - -0.009044477, -0.0145426085, 0.015901329, 1.9293286e-4, 0.0154735595, - 0.013759732, 0.01801981, -0.0011335606, -0.009113117, 0.0056637255, - -0.022584887, 0.013116067, 0.010943443, -0.016164804, 0.0054521062, - 0.0034320212, 0.014869259, -0.008768397, 0.025776537, -0.010528313, - 0.014710218, -0.015897926, 0.013053989, 0.009080836, 0.016440416, - -0.0038616857, -0.0052494984, 0.020229045, 0.007907656, -0.0057110675, - 0.018863542, -0.0012692398, 0.027300134, 0.0043736408, 0.011131125, - 0.020271203, -0.016107729, 0.001933935, 0.009333584, 0.010103669, - 0.0027839337, 0.010279275, 0.026667533, -0.0044556297, -0.021035574, - 0.017571671, -0.016800795, -0.002134599, 0.0026585942, 0.032246422, - 0.0045295996, -0.010982087, -0.03397215, 0.015499279, -0.004223902, - -2.2108704e-4, -0.006766761, 0.0012315235, -0.008424394, -0.03042265, - 0.016938027, 0.02157232, 0.0034557064, 0.032853942, 9.256819e-5, - 0.015393324, 0.04003252, -0.023730634, 0.016093811, 0.008187826, - -0.034863878, -0.018800557, 0.012413245, 0.0036367525, -0.003991275, - 0.011771443, -0.007419517, 0.031153902, -0.0018416296, 0.002969297, - -0.023659557, -0.016915865, 0.018032156, 0.010714452, -0.005228665, - -0.026354687, 0.01948082, 0.0030226454, -0.022183295, -0.017086316, - -0.01876435, 0.01930722, 0.009651345, -0.028279059, 0.009055361, - -0.006515507, -0.008257381, -0.0038007314, 0.018634973, 0.00849588, - -0.034023058, -0.021401895, 0.0050525125, -0.01490779, -0.014937578, - -0.0043325955, -1.5795293e-4, -0.024250265, -0.0041952557, 0.022256095, - 0.0010155058, -0.02961682, 0.008124773, -0.033893816, 0.0059761233, - -0.007078672, 0.01356791, 0.011136765, 0.004250973, 0.0017508789, - -0.01761406, -0.012516899, -0.014139759, 0.016408945, -0.0140425, - -0.020318689, 0.019966966, -0.0043830215, -0.016299224, 0.0159004, - 0.007837178, 0.035732947, -0.0032914947, -0.0072891065, 0.011569066, - -0.0065388107, 0.034639295, -0.012716309, 0.002403833, -0.01007997, - -0.022066435, -0.015709765, 0.028279573, 0.0059993244, -0.004836273, - -0.017508896, -8.2244055e-4, -0.030422382, -0.005137871, 0.014951282, - -0.013489136, -0.023407584, -0.00951196, 0.0035667093, 0.0018978103, - -0.015575137, -0.022333294, 0.024160877, 0.025078548, 0.011513962, - 0.0028637515, 1.2223775e-5, 0.0031312443, -0.0051131533, 0.013113303, - -0.009126081, 0.014256991, 0.0041813087, -0.006744193, 0.010567103, - 0.003466686, -0.014001681, 0.007184299, -0.011449111, -0.00591903, - 0.008994597, 0.014291516, 0.002367879, 0.010080701, 0.0031449965, - 0.019884892, 0.006142838, -0.024563858, -6.0837687e-4, -0.013235933, - -0.033842713, -0.005645576, 0.004360988, 0.019768773, 0.018815113, - -0.0061929226, -0.019479897, -0.00873756, 0.029298823, -0.03109595, - -0.02684622, 0.016399091, 0.016804503, -0.0052665216, 0.002162028, - 0.0065961075, -0.015584704, 0.00944668, 0.02940905, 0.0017468594, - -0.0114755, -0.0041575986, 5.1547453e-4, -0.0069946065, -0.016112072, - 0.0125701465, 0.010073768, -0.00980162, -0.021568326, -0.017942809, - -0.004074267, 0.0075852266, -0.013587051, -0.042019624, 0.008910951, - -0.0016310302, 0.0031350707, 0.0024312972, 0.0077675045, -5.282836e-4, - -0.00824174, 0.0038531492, -0.027884435, -0.004143339, -0.028614696, - -0.012820925, 0.014201676, 0.0014465187, 0.012672984, 0.010906772, - 0.015497369, 0.0044071563, 0.027000627, -0.0052786944, -0.002902994, - -0.0043147095, -0.006916104, 0.009545136, -0.04189789, 0.02111863, - -0.023404974, 0.014148602, 0.041753475, -0.0032100254, -0.026191035, - 0.0070869997, -0.0019459925, 0.003640874, -0.0018729633, 0.014510205, - 0.005406289, -0.01944752, -0.008680178, 0.016047455, -0.027358871, - 2.3397834e-4, 0.0030832842, -0.039613664, -0.013900909, -0.0032809295, - 0.03780503, -0.00299558, -0.0050891563, -0.020413112, -0.0051612346, - 0.0020819204, -0.014813081, 0.015355008, 0.012295252, 0.009013775, - 0.019842114, -0.03133415, 0.0075439657, -0.004599324, -0.044690955, - -0.0039571896, -0.008247052, 0.021818196, -0.0035350944, -0.013647079, - -0.0026981637, -0.0069528944, -0.008060885, -0.031064272, -0.011071489, - -9.946246e-4, -0.0033599096, 0.0038822093, 0.006464275, -0.0050941254, - 0.010251841, -0.0030702378, 0.016817614, 0.0010867242, 0.0013387826, - -0.016269244, -0.013649053, -0.009183078, 0.03382668, -0.014127822, - -0.0065361983, -0.040795907, 1.0196636e-4, -0.010208672, -0.047777563, - 0.0039843335, 0.004893323, -9.5946214e-4, 0.039146908, -0.02493311, - -0.0078296345, 0.0032320032, 0.0073463465, -6.374815e-4, 0.0068135085, - -5.7489023e-4, 0.008659114, 0.003535476, 0.03596624, -0.0016759438, - -0.026763353, -0.013539864, -0.0067068106, 0.0059627616, -0.009618821, - -0.036358617, 0.021928187, -0.0026154807, -0.0043846616, 0.02295609, - -0.020916296, 0.0041440236, 0.005430217, -0.0043366905, -0.01695393, - 0.0111783715, -0.019928012, -0.008712761, 0.024328109, 0.0060276333, - -0.009224709, -0.01287757, -0.014971702, -0.003917838, 0.01724493, - 6.346175e-5, -0.005607996, -0.019017493, -0.022967178, -0.006404184, - 0.009911635, -0.0020907451, 0.00871066, -0.029236747, -0.014732709, - -0.006550178, 0.0066179764, -0.017586142, 0.030671792, -0.02564093, - -0.0062270863, 0.014231009, 0.02954346, -0.0060025305, -0.014162326, - -0.0070424937, -0.025861498, 0.0128983995, 0.005854089, 0.017447105, - 0.0017956833, 0.004690276, -0.014536412, 0.010475472, -0.010182293, - 0.008719038, 0.022392003, -0.017033659, -0.003015942, -0.011832197, - -0.021318551, 0.011972835, -0.021923894, -0.0034745394, 0.010558062, - -0.018856594, -0.008420487, 0.012762585, 0.011963393, -0.021813061, - -0.039759018, -0.027487127, -0.021177817, -0.0052201594, -0.002581188, - 0.010210549, 0.023414735, -0.0077425158, 0.0040289783, -0.010368085, - 0.022282837, 0.024160251, 0.01615383, 0.026078923, 0.013023011, - -0.013607118, 0.005126967, 0.015195476, 0.003066333, -0.004129226, - -0.006370793, 0.0066765184, 0.021683823, 0.025217474, -0.010850181, - 0.0041491925, 0.019798107, 0.0021443805, -0.0036678405, 0.018907838, - 0.01123746, 0.01689125, -0.0066513224, 0.015919242, 0.0020662544, - -0.013361103, 0.006606189, 0.012515414, -0.0045264973, 0.0034074278, - 0.008678711, 0.034258228, 0.017131139, -0.0013326416, 0.015783357, - 0.015605685, 0.02015749, -0.02597434, -0.007496808, -0.014353306, - -0.00908299, -0.022547532, 0.0037277516, 0.021070136, 0.009049817, - 0.008661976, 0.0151370475, -0.0046322476, -0.021688811, 0.0055099446, - -0.010887676, 0.006416123, 0.0022683046, 0.0031329582, 0.01066263, - 0.012775278, -0.004405974, 0.012862923, 0.017108463, 0.008027711, - 0.0017175571, -0.003471678, -0.009389816, 0.039991956, -0.0033328717, - 0.0074049784, 0.006492071, 0.008701225, 0.011547411, -0.005862646, - -0.010902263, -0.010713772, -0.002993904, 0.0033094157, 0.0028209013, - -4.194661e-4, -0.032829598, 0.016687, 2.2925799e-4, -0.00386168, - -0.00947996, 0.00336746, 0.005750241, -0.0067380033, -0.0042163045, - 0.009811619, -0.0112268515, 0.0026836419, 0.0020278865, -0.012118654, - 0.039027613, -0.011436249, -0.017054357, 0.014398241, -0.010770726, - -0.021116199, -0.015882352, -0.011676895, -0.0038852352, -0.012564588, - 0.021632414, -0.018837983, -0.011648612, -0.017304905, -0.004828909, - -0.016535234, -0.0066925096, 0.035471387, -0.01649983, 0.012122972, - 0.010138807, -0.006395293, -0.011444238, -0.0027999438, 0.003217525, - -0.005210319, -0.017671186, 0.015130377, -0.01132548, -0.0018411975, - -2.4673456e-4, 0.013589412, 0.0051838425, 0.008730671, 0.008693437, - -0.012214317, 0.0215704, 0.016509539, -0.014900009, 0.014574925, - 0.026957864, -0.004249041, 0.0070398673, -0.016175402, 0.009234577, - 0.026750904, -0.014760376, -0.015712198, -0.016310025, 0.007159039, - -0.012057458, -0.002112223, -0.013747647, 0.0064801993, -0.005022607, - 0.01209329, 0.013151666, 0.00950907, -0.0042251735, -0.004138909, - 0.022808814, -0.006527978, 0.025102833, 0.0051424885, -0.017313773, - -0.013817292, 0.009837046, 0.025667114, -0.0019474039, -0.01047297, - 0.020905072, 0.020952415, -0.0023657545, 0.009886378, -0.0155606745, - 0.020791039, 0.0071328054, 0.011357524, -0.037783626, -0.031234697, - -0.012529933, -0.0074770683, 0.01819866, -0.021217741, 0.0018730452, - -0.017780112, 0.001885139, 0.020449273, 0.006870027, 0.02051013, - -0.022158984, -0.018879108, -0.012847918, -8.46925e-4, -0.02562504, - -0.01226167, -0.024683846, 0.011300891, 0.024705013, -0.015124307, - 0.016516026, -0.033094764, -0.01000835, 0.021297203, -0.015049839, - -0.0106486175, 0.0101861805, -0.010290553, 9.3211036e-4, 0.009023843, - 0.016240943, -0.028701147, -0.01359048, 0.009567021, -0.020194877, - -0.015124125, -0.003284519, 0.009788425, 0.0011737881, -0.0022700394, - -0.029022008, -0.016091015, 0.0023349796, -0.014104419, 1.9819463e-5, - -0.030331606, 5.131849e-4, -0.020720035, 0.0112583935, 0.013386252, - 0.027267816, -0.0022742737, 0.018576695, -0.012682683, 0.020495992, - 0.022667225, -0.0029609445, -0.019530177, -0.019996056, 0.006293002, - -0.02407062, 0.010980598, -0.006194927, -0.006858367, -0.0050614662, - 0.010869765, -0.017425617, 0.013253198, -0.01464705, 0.0017554781, - 0.037851803, 0.012465156, 0.022998367, -0.021039106, -0.0047527705, - -0.0055263448, 0.005167461, -0.008220498, -0.019446502, -0.016797123, - -0.010145782, 0.0074526398, -0.008186629, 0.0074370275, -0.018477207, - -0.023938162, 0.007873542, 0.008716333, -0.024891002, 0.023076301, - -0.012849016, -0.006203219, 0.020265516, -0.002472371, -0.0010113665, - 0.02313743, -0.0022217166, -0.004532991, -8.783074e-4, 0.018680338, - 0.02033771, 0.03603896, -0.019469187, -0.0024597154, 0.0058516157, - 0.0030235169, -0.0021861624, 0.021539956, -0.012319387, 0.02536866, - 0.016700983, 0.0029012023, 0.013557836, 1.550504e-4, 0.017104672, - 0.005346352, 0.002029436, 0.012587905, 0.018581431, -0.027970582, - 0.02577547, -0.0025365446, -0.00418452, 0.0014928577, -0.015720118, - -0.008082606, 0.01697557, -0.007006591, 0.0067577627, 0.015135429, - 0.011587969, 0.019757964, -0.014575918, -0.00491879, -0.011431879, - -0.0103091365, 0.01769655, -0.02478325, 0.0046580336, -0.015807163, - -0.013060065, -0.006216299, -0.0077235694, -0.001956003, 0.005335923, - -0.012736364, -0.0458733, 0.00969909, 0.005909787, 0.018899024, - 4.2237836e-4, 0.02087231, -0.0025273412, -0.0049855136, 0.0033412229, - 0.008835296, -0.008705112, 0.0059843254, -0.032485083, 0.0263826, - 0.0032901953, 0.0020425776, 0.011966156, 0.0078574605, 6.08445e-4, - 0.006661706, 0.0032847065, -0.02146283, 0.019650253, -8.614654e-4, - 0.0068405075, 0.0048447307, 0.0014793635, 0.021477083, 0.012607123, - 0.008294549, 0.0025854793, -0.022675557, 0.004440055, -0.032898404, - -0.017185854, 0.0021849726, 0.005904573, -0.0065893885, 0.0040509775, - -0.019823335, 0.02561464, -0.014305925, -0.0016314433, -0.0012280835, - 0.0023576524, 0.029655961, -0.014388111, -0.017838757, -0.018296797, - -0.014967712, -0.013530739, -3.410299e-4, -0.018324034, 0.009343696, - 0.018241305, 0.0104542365, 0.0013803081, -0.01340867, 0.006481083, - -0.0034177902, -0.00643926, 0.0067481506, 0.019448781, -0.022541782, - 0.007955772, 0.011122395, -0.012216009, -0.028626382, -0.007905949, - 0.021645129, 0.0080087045, -0.014440724, -0.0063156323, -0.008821562, - 0.020306675, 0.009610557, -0.0045329137, -0.028019976, 0.018535517, - -0.0074555823, -0.015508427, 0.009984229, -0.0050239223, -0.0010889102, - 0.0049053994, -0.005146926, -0.0019915286, 0.018050069, -0.016959235, - -0.03256336, -0.015417039, 0.018298559, 0.004161722, -0.015135152, - 0.020852583, 0.011879376, 4.94289e-4, -0.011422402, 0.016966995, - 0.015345877, 0.0018900378, 0.0326693, -0.024011778, 2.8154597e-4, - 0.018190438, 0.013985629, 0.015138526, -0.063953154, 0.012794331, - 0.02043497, -0.00967665, -0.011838187, -0.02149763, 0.009424729, - 0.008782694, -0.013596107, -0.009834456, 0.019189924, 0.021980327, - 0.016902937, -0.008928625, 0.023003012, 0.0041613323, 0.009656407, - -0.020685406, 0.0036429935, 0.013250058, -0.006242532, 0.012995248, - 0.0011294404, 0.020046517, -0.009654562, 0.03602117, -0.011171987, - 0.015954027, 0.00949914, 0.012005855, 0.009053244, -0.033933062, - -0.009953488, 0.0062954933, 0.009302436, -0.030073317, -0.0035782445, - 0.011915895, -0.0063077784, -0.00982517, -0.014580246, -0.0101558035, - -0.035930388, -0.02695579, 0.01431926, -0.01096902, 0.004192652, - -3.4057754e-5, 0.02317949, 0.011275628, -0.006128993, 0.023280255, - 0.020692527, -0.00232798, -4.2716233e-4, -0.008768981, 0.04979548, - 0.024326717, -0.025654351, -0.02247394, 0.016248835, -0.021727595, - -0.012861134, 0.0020317254, -0.023490481, -0.022508033, -0.009457292, - -0.019937389, 0.020435153, 0.023101967, 0.012940879, -0.034302305, - 9.9962075e-5, 0.022849828, -0.020506658, 0.01565735, -0.006887156, - 0.0045211553, -0.010340258, 0.024131635, 0.027758397, 0.0032119274, - -0.003554182, -0.005874892, 0.016285768, 0.018200105, -6.467347e-4, - 0.0067422, -0.0076734647, -0.017293787, 0.031241363, -0.0012798421, - 0.018368958, 0.021169744, -0.010742811, 0.026738454, -0.024019595, - -0.015720662, 0.007951409, -0.01835533, -0.0058434047, -0.001779063, - -0.039233625, -0.004185262, -0.004710459, 0.0051102894, -0.0060747718, - -0.0017701373, 0.010505934, -0.00804067, -0.011045759, 0.013622173, - 0.013920815, 0.024997545, -0.0037628342, -0.013316079, -0.008106375, - -0.02443128, 0.023594646, -0.02724098, 0.007943762, 0.009631962, - -0.005971439, -0.007355406, -0.008204611, 0.004849898, 2.1212014e-4, - -8.0768974e-4, 0.006692758, -3.891114e-4, -0.0024192762, 7.235339e-4, - 0.0024657936, -0.009932908, -0.0024626262, 0.0076111485, -0.03360508, - -0.016147865, 0.006774485, -0.0021082726, -0.004372594, 0.005001815, - -0.010376328, 0.018552503, 0.013188317, 0.022044208, -0.0060459906, - -0.009046922, 0.006995494, -0.021787237, 0.017637175, -0.010920492, - 0.0067703878, 1.1022638e-5, 0.0027560056, -0.014149659, -0.011278365, - -0.014919162, -0.005261949, 0.012127857, -0.006060235, -0.006801766, - -0.011334585, 0.028738655, -0.018553458, 0.02271959, -0.028586043, - 9.4921753e-4, -0.027747707, -0.002382478, -0.0021619312, -0.011300423, - 0.0057389205, -0.014114725, 0.0107159475, -0.0077280854, 0.0034483576, - -0.017670263, -0.032528386, -0.01634812, -0.034872964, 0.005123739, - 0.016714757, -0.009197561, -0.027198646, 0.05087851, 0.020294024, - -0.02826582, -0.0091999965, 0.005301638, 0.0050593107, -0.009296161, - 6.343019e-4, 0.0020954048, -0.0018531093, 0.0014092635, -0.010395164, - -0.030979516, 0.022241427, 0.009641275, 0.010321856, -0.03799432, - 0.0034679852, -0.021487856, 0.029269382, 0.023417627, -0.0014248317, - -9.743174e-4, -0.0109105185, 0.01989699, 0.037337296, 0.001123399, - 0.014772471, -0.007455745, -0.008821433, -0.017934065, 0.026937053, - 0.027588924, 0.012444156, -0.0102887815, -0.0070442413, 0.009960638, - 0.0037132013, 0.034348264, -0.003246431, -0.016920941, 0.023499165, - 0.0073697707, 0.013212449, 0.0051311566, -0.0044525224, 6.93937e-4, - -0.014715783, 0.015951822, 1.0978246e-4, -0.007201102, -0.00906603, - 0.018438796, -0.0012375504, 0.02114724, 0.0060919346, -0.0065295626, - -0.028138444, -0.0122940475, 0.01007603, 0.0045394804, -0.015719771, - 0.024207888, 0.0018170625, 0.00473896, -0.0035479567, 0.012154679, - -0.020524468, 0.0066351774, 0.0060496875, -0.013729073, 0.01865953, - -0.012576945, 0.011579684, -0.009396959, -0.0025813389, -0.0023524412, - 0.013075636, -0.0068621025, 0.014621547, -0.0026642564, 0.0043003103, - -0.0302478, 0.00896346, -0.008881542, 0.009452805, 0.0036861515, - -0.0056488398, -0.013492477, 0.009367256, 0.021231448, -0.007794448, - 0.03631411, 0.010924994, -0.012537726, -0.013459248, -0.013805124, - -0.031749014, -0.004674866, -0.008525344, -0.009711211, 0.0029453808, - 0.0024811523, -0.011928736, 0.0053831753, -0.0030383572, 0.010741105, - -0.033943575, 0.018074235, -0.010640656, 0.0027895607, 0.0025955082, - 0.017538154, 0.0040647956, -0.0021888735, -0.021648945, -0.025878057, - 7.870583e-4, -0.005069339, -0.030810226, -0.017333865, 0.014104021, - -0.019745188, -0.020623833, -0.012776789, 0.0047086775, 0.005252163, - 0.00588654, 0.0036405216, -0.00676017, -0.016234297, -0.006328063, - -0.006435678, -0.015543018, -0.00477828, -0.047556974, -0.0012050214, - 0.0024498473, 0.0041743983, 0.0024348048, -3.7051947e-4, 0.009451308, - -0.0036992324, -0.0014779343, -0.016709222, 0.0152893355, -0.0016848849, - 0.0052327723, 0.011336516, 3.0629922e-4, 0.014797131, -0.0021521214, - -0.030438058, -0.008590095, 0.014971589, 0.009028247, 0.007605356, - -0.016640777, -0.007873131, 4.963767e-5, 0.02042687, -0.003361807, - 0.015102942, 0.0031077042, 0.02967551, -0.005166367, -0.020318672, - 0.014524069, 0.020553848, -0.009712461, -0.00313263, -0.008595437, - 0.011052744, -0.017431038, -0.0015596737, 0.010934853, 1.3914454e-4, - -0.005701996, 5.8863976e-4, -0.020491272, -0.03300599, 0.020630846, - 0.0021471563, -0.013004427, -0.011990741, 0.020211784, 0.0017238795, - 0.0064603556, 0.009521135, 0.0024047904, -0.0077642696, 0.006176731, - -0.007574416, -0.012144094, -0.01157448, 0.007642659, -0.019596355, - 0.0011878165, 0.021096628, 0.019507209, 0.0050022365, -3.7037686e-4, - 0.026678488, -0.015539813, -0.011261862, -0.012573795, 0.026262991, - 0.01079233, 0.029812135, 0.0057029547, 0.010482722, -0.002436668, - 0.0059282165, -0.029477127, -0.02126548, 0.00225491, -0.0052241217, - 0.0027693554, 0.0030851255, -0.0038094956, 0.0046501365, -0.021816337, - 0.029415056, 0.009550934, 0.012156615, -0.0038396583, -0.016038295, - -0.009009379, 0.0143480785, 0.010199228, 0.0031112996, 0.0077038817, - 0.015719373, 0.008974789, 0.03087223, 0.021001713, 0.027327135, - -0.018216008, -0.0036744399, -0.033320736, -0.009403818, -0.004612782, - 0.006531936, 0.02479308, -0.004686227, 0.004439997, -0.017522229, - -9.3021325e-4, -0.014390163, -0.004362696, -0.01460685, 0.0066623585, - -0.006413619, 0.008855907, -0.0072546187, 0.02925035, 0.0077216965, - -0.008867349, 0.01844558, 0.006086367, 0.010412479, 0.0046077548, - 0.0032022947, -0.0038777895, 0.013657148, -0.0047277613, -0.015964322, - -0.04996575, 0.0045491033, 0.0033752127, 0.0142974015, 0.0060552275, - 0.018309366, 0.0023760947, -0.016518645, -0.009096942, 0.02739297, - -0.01764031, -0.018071871, -0.0025812583, -0.015341894, 0.011667904, - 0.019468848, -0.02098832, 0.0099057695, 0.012870548, 0.0038196465, - -0.03109311, -0.0012822136, 0.010741236, -0.0028588553, -0.009231798, - 0.020580271, -0.010821786, 7.282042e-4, 0.0138405515, 0.02326377, - -0.002953441, 4.8032764e-4, -0.0015672027, -0.0060388353, -0.022223324, - -0.014040499, 0.01909072, -0.016569447, 0.018880572, 0.009562815, - 7.6850905e-4, 0.0055393092, -0.009241693, -0.01698845, -0.025334993, - -0.005470134, -0.0062486064, 0.023557778, 0.035800252, -0.0037682955, - -0.023196055, -0.015282547, -0.008686978, -0.002043582, -0.01722619, - -9.177798e-4, -0.03083931, -0.023290392, -0.0123018, 0.0025349518, - -0.018449005, 4.540558e-4, 0.0013303008, 0.016242847, 0.017401993, - 0.008455968, -0.0026264768, 0.017471101, 0.031346895, -0.0074989125, - 0.017043263, 0.0047726333, 0.016071063, 0.017706944, -0.0062419344, - 0.013619468, 0.00832527, 0.019256635, 0.005167255, 0.018207725, - -0.013121418, 0.0024227584, 0.012225539, 0.0024854129, 0.0059172735, - 0.03015984, 0.03230296, -0.011312852, 0.0024298092, -0.0059717763, - -0.007389317, 0.010951389, -0.005622688, 0.03215617, 0.011151307, - 0.025869103, -0.004888878, 0.0086366935, 0.014648701, -0.028017584, - 0.0065182224, -0.009740655, 0.00503754, 0.022152158, 0.013700168, - 0.011547715, -0.005181873, -0.0077782087, 0.0034305158, 0.0030803303, - -0.018678296, -6.266094e-4, -0.017051393, -0.03424197, 0.004830452, - -0.004844633, 0.0020390432, 2.2965829e-5, -0.010583427, -0.03554225, - -0.0018696669, 0.01208876, 0.0050774957, -0.0058457633, -0.0017952776, - -0.01527502, 0.00452538, -0.007884635, -0.024116213, 0.01049493, - -0.015483543, -0.003946486, -0.018502628, 0.0035739841, 0.0060921316, - -0.01012238, 0.013379381, -0.003074117, 0.0017781309, -0.017985247, - 0.0064277994, -0.009713742, 5.792607e-4, 0.0026369777, -0.018379297, - 0.015458232, 0.008299169, 0.009227869, 0.010484782, -0.01429796, - 0.0014034907, -0.0029205685, -0.006288324, 0.016294047, -0.01968836, - -5.592225e-4, 0.004191216, -0.0023620143, 0.02481295, 7.63858e-4, - 0.021706214, 0.034928646, -0.004576544, -0.007580001, 3.2710205e-4, - 0.0019153546, 0.002795804, -0.029824905, 0.0108049, 0.0057268473, - -0.004659676, -0.04203517, 0.008607679, -0.004547412, -0.0027626157, - -0.025195561, -0.025492046, -8.7926583e-4, 0.013762536, -0.02271012, - -0.01734705, 0.014528372, -0.008989614, 0.030129528, -0.008782071, - 0.00613845, -0.013483547, -0.009091193, -0.02264004, -0.01586997, - -0.013607462, -0.02029803, -0.007839498, 0.02388831, 0.0227047, - 0.029690716, -0.021876317, 0.008598563, 0.0016646512, 0.011359707, - 0.005521022, 0.0072394307, 0.019338896, -0.015435056, -0.01956551, - -0.0024702365, -0.02504173, -0.004936192, 0.0044821952, -0.018741684, - -1.7969897e-4, 0.0056408956, 0.05165576, -0.024935408, -0.0026944038, - 0.02439115, 0.015145899, -0.019888423, -0.020042026, -0.026173407, - -0.010846074, 0.025735624, -0.033599526, 0.0067989654, 0.0015950958, - -0.025434291, 0.0057047023, -0.017492648, 0.010237468, -0.0012207574, - 0.020400813, 0.024102971, 0.031369627, 0.028624255, -0.008138027, - 0.025634462, -0.010460547, -0.0019202826, -0.021365011, -0.022108754, - -0.0044100387, 0.022313092, 0.010476679, -0.027408116, -0.01226454, - -0.028252363, -0.010085706, -0.0045371777, -0.0026946208, -0.011887335, - 0.0087883845, 0.019103898, -0.006038798, 0.012607284, 0.04295154, - 0.008194708, 0.0042044, -0.009893495, -0.0032081064, 0.009208398, - -0.004036596, 0.010101386, 0.013972084, 0.027877465, -0.0052647283, - 0.010915453, -0.013372386, -0.0064824396, 0.0043224106, -0.005928883, - 0.02915541, -0.023809185, -0.01647493, 0.03349087, -0.012910808, - -0.008941521, 0.00501425, -6.240943e-4, -0.020356586, 0.017106455, - -0.006060525, 0.0063216225, -0.0047799954, -0.004146057, 0.036068372, - -0.0031276627, -0.012883507, 0.004320541, 0.022963231, 0.017134832, - 0.014428993, -0.013750731, -0.010137195, 0.023051495, -0.02288508, - 0.0031831185, 0.006635836, -6.2754704e-4, 0.015278356, 0.0010453855, - 0.009006569, 4.6817865e-4, 0.01325391, -0.016296376, 0.0047684615, - 0.022914117, -0.0028953706, 0.0220724, -0.017781202, -0.010529, - -0.01692014, 0.021777293, 0.004596774, 0.018515648, 0.014622979, - -0.011786, -6.226735e-4, 0.005606793, 0.0135882255, -0.03411682, - 0.012301435, 0.0062549035, -0.011406951, -0.0024638888, 0.029688554, - 0.026077691, -0.013169852, 0.0067768306, 0.017189384, 0.005145857, - -0.0037635914, 0.016004559, -0.012558584, -0.0025096815, -0.01774041, - 0.019566404, -0.012181344, 0.029370481, -0.005877618, 0.0062290193, - -0.024718309, -0.0104396595, 0.020974798, -0.004726886, -0.026872495, - 0.028496003, 0.019837093, 0.013705922, 0.006396501, 4.9315684e-4, - -0.016065009, 0.01638287, 0.018737469, -0.028010046, 0.025085066, - 0.010226546, 0.015077648, -0.0076933987, 0.006067998, 0.013588077, - 0.0076450477, 0.0050349887, -0.03561825, -0.0103215985, 0.007942036, - -3.1604082e-4, -0.028692476, -0.021770427, -0.0015179294, -0.0073457365, - -0.022183612, 5.9157508e-5, 0.009157561, -0.024764813, 0.011023332, - 0.01729679, 0.01407476, -0.017703442, -0.009227678, -0.009756456, - -0.026690122, 0.0078089917, -0.010128319, 0.028952887, -0.0018031768, - -0.00596156, 0.005989018, 0.0054264897, -0.02265268, 0.012225595, - -0.02010431, 0.010971938, -0.019459303, 0.0025181966, -0.0016094455, - -0.028233862, -0.00939406, -0.01146678, 0.002860198, -4.0417985e-4, - 0.010273864, -6.049521e-4, -0.009505967, -6.971093e-4, -0.0058191665, - -0.005591314, 0.009773079, -0.012545592, 0.018192535, 0.004836789, - -0.013119824, -0.008565796, 0.005396578, -0.0042608567, 0.019150855, - -0.028751044, 0.021988686, 0.012170202, 0.011239689, 0.0040795826, - 0.005363875, 0.0050142067, 0.028123328, 0.0021433595, -1.1874156e-4, - 0.018590102, -0.03199161, -0.010527122, -3.5100347e-5, -0.03024617, - -0.021492558, 0.006434535, 0.004763796, 0.00464033, 0.0164278, - 0.020831354, -0.021238524, -0.011037556, 0.006288409, -0.015337648, - 0.0029827242, -0.012652968, 0.021268778, 0.004700148, -0.017532215, - -0.00788908, -0.013475556, 0.008159271, -0.0022641623, 0.011130886, - 0.019246517, 0.016960137, -0.0014854515, -0.018791184, -0.00469721, - 0.0033092566, -0.009623839, 0.0070191515, 0.010083983, 0.037162557, - 0.019665474, -0.020521412, -0.014704474, -0.01520923, -0.015642766, - 0.016284047, 1.213218e-4, -0.012022579, 0.026473632, -0.017629668, - 0.019589685, -0.0074753915, 0.014244033, 0.004193357, 0.009446459, - 0.021944381, -0.026348846, 0.022433955, -0.01383679, 0.013991043, - -0.024929103, -0.0094802845, -0.024165256, 0.021143295, -0.020165168, - -0.02355012, 0.022708718, 3.609135e-5, 5.2961975e-4, -0.0034259104, - -0.010662683, -0.0066115023, -0.026212366, -0.007140116, -0.012411727, - 0.014178106, 0.004508901, -0.024924146, 0.017342513, 0.017978635, - 0.015211892, -0.012079043, -0.007181068, -0.011952154, 0.0148986075, - -0.028103111, -0.010489904, 0.020570297, 0.017115904, -0.016085515, - -7.924824e-4, -0.03029973, 0.008437457, -0.013831264, -0.02533571, - -0.023471702, -0.007890956, 0.020015687, -0.0026961663, 0.0042055426, - 0.0054834103, -0.00864368, -0.01094579, -0.0043478482, -0.021239432, - -0.003996519, -0.01386419, 0.019724585, 0.017407749, 0.006378403, - 0.0051123546, -0.0051236264, 0.030342702, 0.0027013153, -0.020394616, - 0.011451986, 0.00392641, 0.016929459, 0.017401876, 2.5069152e-4, - -0.004616545, 0.0032248574, 0.010620648, 0.018951882, 7.290483e-4, - -0.004804373, -0.048362523, -0.0035135073, 0.013573481, -6.1624893e-4, - -0.004388896, -0.013672584, 0.022883154, -0.007285857, 0.023327751, - -0.016694367, 0.0045690294, 0.031714015, 0.0019961835, -0.010587584, - 0.010640079, -0.030494682, -0.009816569, 0.029420834, -0.015958015, - -0.010493403, 0.0025948205, -0.032370497, -0.007359791, -0.010786678, - -0.0151090445, -0.024287364, -0.006948709, -0.008822449, 0.020226724, - -0.022314219, 0.004334435, -0.023420986, -0.009553026, 0.009481038, - -0.008018592, 0.010589614, -0.0075272666, 0.013760617, -0.0016922426, - -0.007579721, 0.0031773117, -0.003458595, -0.009567668, 0.027365575, - 0.004879178, 0.008428975, 0.011111208, 0.03371069, 0.0015696381, - -5.18819e-4, -0.014331404, 0.003792797, -0.0049765175, -0.012355136, - -0.0030091293, -0.010127366, -0.0035221456, -0.029492943, -0.013389048, - 0.0066336473, -0.001698207, 2.8103634e-4, 0.0087546315, 0.018329805, - 0.027509537, -0.005950597, 0.002618697, -0.012044587, -0.0029564847, - 0.008958375, 0.015095713, 0.009530497, 0.004663281, 0.006784162, - 0.013472021, 0.017620238, -0.025671614, -0.031455193, -0.026104342, - -0.013360286, -0.015194948, 0.0023702532, -0.0036964593, 0.0019647384, - 0.0060673985, 0.003067, 0.0034872124, 0.02100031, 0.0059861913, - -0.023703665, -6.5507315e-4, -0.014096466, 0.025566544, -7.4265053e-4, - -0.025874736, 0.006578452, -0.0055557, 0.034361288, 0.0015039223, - -0.011320233, -0.027254593, -0.00370974, -0.030458776, -0.017649451, - -0.004148634, 0.0034230726, -0.0078194, 0.008624959, 0.00974752, - -0.006476446, -0.014738364, 0.003125329, -0.02202254, 8.479143e-4, - 0.0144670615, -0.008559261, -0.0030736886, -0.008919502, -0.0045802915, - -0.010404529, -0.027913256, 0.006560024, -0.0074777184, 0.01689379, - 0.02612274, 0.0019078157, 0.026215134, -0.009452301, 4.5730057e-4, - -0.014016348, -0.010057533, -0.0041718422, -0.017806526, -0.013136021, - -0.012037897, 0.017245395, -0.008895085, 0.011510895, 0.0052921223, - 0.027010435, -1.2608404e-4, -0.0121859815 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.020378571, -0.0033197154, 0.013585912, 0.037065353, 0.004030235, - -0.007197071, 0.02084645, -0.0015861972, -0.018528739, -0.009305853, - -0.0037309714, 0.0048770765, 0.028451951, -0.02221853, -0.008967418, - -0.0020144114, 2.8644112e-4, -0.028287634, 6.9965445e-4, 0.01457226, - -0.011244014, -0.01705877, 0.016452808, 0.009859537, -0.03784324, - 0.023254095, -0.007031457, -0.027851772, -0.0075663184, -0.04376922, - -0.014576172, -0.008121119, 0.02815242, 0.020610556, 0.0044518122, - 0.008575627, -0.013903137, 0.003978136, -0.0047011552, 0.02046842, - -0.0014754292, 0.0061403345, 0.012609192, 0.021596273, 0.008407557, - 7.188323e-4, 0.015745267, 0.01821283, -0.0059698857, 0.003535944, - 2.1586767e-4, -0.002971397, 0.039011303, -0.0107245715, -0.008493931, - -0.018481422, 0.021831332, -0.008358983, -0.018135546, 0.017094217, - -2.0167875e-4, -0.027907265, 0.015949912, -0.0064190933, -0.0240176, - -0.021755021, 0.02373919, -0.01481883, 0.007266922, -0.017221197, - -0.00709311, -0.028126948, -0.0108865155, 0.014462494, -0.023351865, - 0.025391683, 0.005069332, 5.6825153e-4, 0.011372079, -0.009677666, - 0.0059271283, 0.01165965, -0.0027805807, -0.007925818, -0.021384008, - -0.0032813032, 0.0029056815, -0.016439449, 0.024383388, 0.011364893, - 0.010889357, 5.7316804e-4, 0.0018231883, -4.714875e-4, -0.023538, - 0.012718111, -0.010161415, -0.007917964, -0.031203853, -0.016489364, - -0.0032757733, -0.021758117, -0.016070684, 0.00154364, 0.033387456, - 0.0019358181, -0.00544334, 0.022429414, 1.8565121e-4, -6.543927e-4, - 0.022859676, 0.010904522, 0.0054801097, 9.3877554e-4, -0.02751066, - -0.0039580036, -0.0125062065, 0.015095263, 0.016398653, -0.020867398, - -0.0072784116, -0.013091601, 0.025633609, -0.0019287142, 1.8230741e-4, - 0.0076216217, -0.042936336, 0.0056759315, 5.805598e-4, 0.01993091, - 0.0024292634, 0.01619754, 0.008509515, -0.012394625, -0.01465663, - 0.016709406, 0.009924896, -0.0032595145, -0.009763671, 0.0071816696, - -0.01670534, 0.014203227, -0.0054274844, -0.0018494698, 0.02618515, - 0.003635948, 0.008294006, -0.0059459894, -0.010317729, -0.019864641, - 0.0070893117, 0.0024528757, 0.0023920937, 0.004343229, -0.021808302, - -3.96768e-4, -6.130018e-4, 0.0054952377, -0.0059520416, -0.009348226, - 0.0039540925, -0.0024678009, -0.003460497, -0.0042644395, 0.017987749, - 0.0078989975, 0.002644223, -0.005305181, 0.013535556, -0.010500967, - 0.0015571268, -0.0015100066, -0.019903766, 0.0084196, 0.007421045, - 0.0016731814, -0.005630451, 0.028053466, 0.01626041, 0.014267825, - 0.0016154979, 0.014651862, -0.048547104, 0.017750459, 0.017938295, - 0.012964557, 0.014850571, -0.0056438996, -0.020804003, 0.003024937, - -0.011916158, -0.017803272, -0.0074359886, 0.017748136, 0.0026594328, - 0.016617192, -0.011470806, 0.0016868563, -0.0013060127, 0.0032443462, - 0.005649304, 0.009448989, -0.010630046, 0.022763984, -0.02561096, - -0.013311397, -0.017842768, -0.015501172, 0.009425805, 0.005302158, - -0.02040834, -0.017829265, -0.0020122526, 0.00871701, 0.0111869285, - 0.0026668825, -0.022412134, 0.023212662, -0.014303643, 0.001972923, - 0.011279566, 0.011654776, -0.005975195, -0.0034882023, -0.0024944854, - -0.020662652, 0.023180718, 9.767943e-4, -0.013457986, 0.004429248, - -0.0072847884, 0.009563267, 0.0052819815, 0.0012185993, -0.009404415, - 0.0027572673, -0.015233739, -0.008823856, 0.009761544, -5.2808115e-4, - 0.016705597, -0.0040208334, -0.009812088, 0.0048025115, 0.032382485, - -0.014390381, -0.0014278757, 0.023009986, -0.009296627, -0.010196949, - 0.006766829, 0.008125102, -0.01596303, 0.003427601, 0.0053804913, - 0.014638277, -0.020216959, -0.0028594444, 0.0064394246, -0.013565691, - -0.009746256, -0.0013905094, -0.031286832, -0.023453733, -0.024049351, - -9.495581e-4, -0.030191494, -0.0042809136, -0.0024218776, 0.009476452, - 0.00371753, 0.006372506, -7.1205874e-4, -0.025081161, -0.021990636, - -0.014801792, -0.0325428, -0.011636514, -0.004284768, 0.017291673, - -0.013128205, -0.015879104, -5.05308e-4, 0.0072826017, -0.012690791, - 0.014354193, -0.01058362, -7.310577e-5, 0.023173938, -0.018329283, - 0.006022323, -0.0014401535, -0.015013961, -0.0066566034, 0.0027433983, - -0.0023498312, -0.023631908, -0.0012352029, -0.004966145, -0.0237549, - 0.004177446, 0.017995162, -0.007432976, -0.0153116975, -0.004516546, - 0.011425671, 0.022384822, -0.016273078, 0.013343258, -0.027043883, - 0.024254283, 0.016376078, 0.010167941, -0.008728879, -6.763651e-4, - -0.0017660682, -0.007821987, 9.5009763e-4, 0.024872925, -0.008307445, - 0.018838232, -0.017029649, -0.014747546, -0.0041189594, 0.0014213877, - -0.014341937, 0.0071972567, 0.004219901, -0.009938692, 0.028758096, - -0.0097427, -0.007460915, -0.0042869817, -0.024157692, 0.018592726, - -0.0027365373, 0.014232845, 0.04884034, 0.016134515, 0.024199467, - -0.017707307, -0.012033773, -0.0197378, 0.014121401, -0.026200397, - 0.012936497, 0.0058849542, 0.026635136, -0.0069871605, -3.4173744e-4, - -0.007162875, -0.02284793, 0.008667875, 0.00863546, 2.398799e-4, - 0.024126021, 0.0063058855, -0.03174276, 0.035069335, -0.001472905, - 0.0076678037, -0.017334906, 0.0051744394, -0.02531857, 0.04190431, - -0.0046917014, 0.007240238, -0.0054681613, -0.006350924, 0.0036995173, - 0.0071195727, -0.007655876, 0.02097331, 0.019651242, 4.1492464e-4, - -0.0071120434, 0.026346222, -0.020588154, 0.0035894173, 0.017826252, - -0.019464971, -0.008858762, -0.009177253, -0.023629516, 0.011722259, - -0.01400933, 0.033307448, -0.0016294933, 0.005057212, -2.7019836e-4, - 0.0101081785, -0.005551391, -0.010884325, -0.0041312496, -0.0038201655, - -0.006644844, 0.007850617, 0.009991405, -5.6887325e-4, 0.027407933, - -0.0059727496, -0.0042428356, 0.012221339, 0.009530743, -0.005009462, - -0.007094587, -0.0066771265, 0.022330461, 0.01801893, -0.008116512, - 0.029906139, 0.0031576739, 0.013080836, 0.0071073365, 0.012364261, - 0.002330559, 0.008768481, -0.0059839403, 0.019693661, 1.153995e-4, - 0.00969835, -0.010479074, -0.0044734757, -0.0051149935, 0.0037881904, - 0.014376056, -0.0054661357, 0.008433844, -0.014867839, -0.008303824, - 0.015210197, -0.02192468, 0.014355109, 0.007953302, 0.0018262487, - -6.750716e-5, -0.0032419758, 0.0096975695, 0.008235442, 0.014830668, - 1.2967191e-5, -0.02391365, -0.021891832, -0.02621935, 0.0010045441, - -0.013760751, 0.0054312507, -0.009252022, -0.016909242, 0.013222619, - 0.020433368, -0.01665256, -0.0051899445, -0.0027034238, -0.002629751, - -0.018687662, -0.02219036, -0.03049452, -0.0064747673, 0.012119708, - -0.017404417, 0.016193956, 0.014429781, 0.012293586, 0.012142424, - -0.018643243, -0.006444082, -0.0051851743, 0.0039030109, -0.009683822, - -0.0064057326, 0.012683237, -0.041335486, -0.006179952, 0.0028148324, - -0.0027681936, 0.015685786, -0.0073587, -0.025839044, -0.01972006, - 7.989097e-4, -0.0053322986, -0.016074792, -0.02287214, -0.009884857, - -5.4277666e-4, 0.013753622, -0.0010258534, 0.009283584, -0.003917152, - -0.020004777, 0.01756071, 0.006605538, 0.012351551, 0.03268265, - -0.010339243, 6.1436195e-4, 0.00807338, 0.009943471, -0.026967146, - 0.017209858, -0.019331831, 0.01259755, 0.005489271, 0.024617, - 0.01400983, -0.0050090724, 0.011451053, 0.008446756, -0.0061879093, - 0.0012401288, 0.009235199, 0.002627103, 0.013017459, -0.00746674, - 0.015793182, 0.014135135, -1.08263666e-4, -0.016863357, 0.0036964228, - -0.014487851, 0.036209166, 0.0056533497, 0.0076257885, 0.009764638, - 0.022930793, -0.006795691, 0.014116864, 0.0044730995, 8.9527323e-4, - -0.01329401, 0.0037456888, 0.008620432, 0.01660259, 0.011116768, - 0.005926091, 0.013804065, -0.0061712107, 0.0076458864, -0.016759949, - -0.004169357, 0.03474674, 0.0065067625, -0.0053585465, -0.01375306, - -0.0070902007, 0.017568957, 0.0032882788, 0.01306214, 5.7410664e-4, - 0.008322375, -0.016414234, 0.007755803, -0.011398787, 0.0023080849, - 0.03122995, 0.0096636405, 0.015273066, 0.009757373, 0.017110394, - -0.00553841, -0.017036503, -0.018842233, 0.014015827, 0.007798927, - 0.0035031058, 0.0072263908, 0.0014981538, 0.024714824, -0.04978409, - -0.0021568087, -0.01879118, 0.003917693, -0.02625227, 0.0063016927, - -0.017327784, -0.0011228258, -0.015499921, 0.01911329, -0.032559395, - 0.0017805676, -0.031738862, 0.0014755296, -0.017510321, 0.009104298, - 0.0020327019, -0.008972146, -0.028464714, 0.003259836, 0.028166842, - -0.0052562747, 0.008992891, 0.014095875, -0.017863477, -0.0016490867, - 0.030908378, -0.0041334187, -0.01926058, 0.005352275, -0.013249878, - -0.0070933956, -0.028452365, -0.013686836, 0.01070009, 0.011577694, - -0.01468413, 0.005804898, -0.021312796, -0.0043628165, -0.028201532, - 0.011303134, -0.003884195, -0.0067983232, 0.009314662, 0.008477115, - -3.2294408e-4, -8.9752313e-4, -0.020893827, 0.0052511883, -0.0071472786, - 0.016929734, 0.008746591, -0.027465474, -0.013541676, 0.011134097, - 0.013275907, -0.0024091827, 0.0010342414, 0.011763103, -0.013054302, - -0.010736009, 0.0090257395, -0.022442669, -0.025565675, -0.0056407745, - -0.014075717, -0.024280114, 0.006087779, -0.001648001, -0.017695203, - 0.0033750022, -0.011998972, 0.004947615, -0.0076492326, -0.022203702, - -4.5900652e-4, 0.023806568, 0.013918632, 0.0077168597, -0.021124216, - -0.010087039, -0.007848711, -0.010491488, 0.015845088, 0.004547176, - 0.016199604, -3.2818236e-4, -0.0027994558, 0.012192737, 8.994979e-4, - 0.020324882, 0.02328114, 0.013891126, 0.021200795, 0.0070721563, - -0.015972143, -0.00535415, 0.013874268, -0.009466027, 0.008657037, - 0.012027381, 0.018356899, -0.0034965926, -0.003702283, 0.017099857, - -0.04635702, 0.007072478, 0.007987667, 0.0056606918, 0.005529716, - 4.0767022e-4, -0.0072998796, 0.051657025, 0.017662834, 2.7283699e-5, - 0.016628202, -0.0013731734, -0.0011512385, 0.0043691793, -0.017635481, - -0.003144449, -0.0035557928, 0.010531883, -0.019212823, 0.007898557, - -0.014151776, 0.012562734, -0.01673783, 0.030645022, 0.017593624, - -0.0037166197, -0.006857227, 0.019985486, -0.009409924, 0.010478593, - -0.0012051361, 0.011321772, -0.026266035, 0.022539353, -0.015615396, - 0.0063358587, -0.013729217, -0.002295836, -0.003480784, -0.009742, - -0.004137724, -0.0024237693, 0.029238163, 0.02838226, 0.001991311, - -0.019328684, -0.0012924261, -0.0022528628, -0.01545863, -0.033244815, - 0.029856905, -0.0018960248, 0.029397361, 0.010387572, 0.0057953456, - 0.003492394, -0.0031948944, 0.002205843, 7.645587e-4, 0.008802352, - 0.0016198814, -0.004708893, 0.027755275, 0.0029484762, -0.012227997, - 0.02686808, 0.011166495, -0.014494926, -0.019101562, 0.010021122, - 0.011026545, 0.006066856, 0.011012641, 0.008694131, -0.04401293, - 0.033948697, 0.004645964, -0.022587359, -0.0042367578, -0.0027866683, - 0.019242002, 0.0031710104, 0.02297816, 0.019911721, -0.0038517853, - 0.005452644, 0.0012873572, -0.02203719, -0.003212431, 0.007261509, - 0.017825222, -9.169218e-4, 0.01628627, -0.016350316, -6.9865223e-4, - 0.0028960062, 0.010219448, 0.011241528, -0.027759263, 0.002617926, - -0.0330346, 0.0074457224, -0.010933354, -0.011387586, 0.021301342, - 0.026191328, -0.0019843746, -0.0070650782, 8.722027e-4, -0.019372785, - 0.013133817, -0.0137686, 0.013525096, 0.006517716, 0.0038857951, - -0.017841654, -0.012453852, 0.01386159, 0.0028447518, 0.010978569, - 0.0041465135, -0.011841952, 0.022330888, -0.033047806, -0.003205164, - 0.02800031, 0.008054919, -0.002707824, -0.012227933, 0.012291097, - -0.024426468, 0.006063541, 0.014512064, -0.03146361, -0.01836406, - 0.032067966, 0.008493192, -0.004167949, 0.006987088, -0.002324221, - 0.017998474, -0.025033379, 0.007074208, -0.016181655, -0.04258134, - 0.007952745, -0.03255417, -0.004723727, -0.020919273, -0.02365239, - 0.004643288, 0.02978372, 0.01422454, 0.023961175, 0.013754648, - -0.015266568, -0.0036692838, 0.00928813, 0.0065572336, 0.010761642, - 0.010351378, -0.022740481, 0.0045948513, -0.0143469395, -0.015278261, - -0.013700652, 0.0033839094, -0.04055866, 0.011163401, -0.012366636, - 0.0071400967, 0.015839173, -0.011024893, 0.0057286583, 1.9101994e-4, - 0.0029275266, 0.017003827, 0.0011043366, -0.01962645, 0.013145825, - -0.0037709195, -0.0021095844, -0.006503841, -0.01736138, 0.009443477, - -0.012636894, -1.5280709e-4, 0.018867431, -0.006257265, 0.01618249, - 0.01894398, 0.004933319, -0.009440303, 0.0041763713, 0.01420492, - -5.782229e-4, -0.0075733853, 0.022316525, 0.011152918, -0.005992341, - 0.008867623, 0.013140831, -0.011336283, -0.0020649517, -0.0059247673, - -0.004475481, 0.010076963, 0.0017167367, 0.012226981, 0.020167528, - 0.0036540758, -0.002764044, -0.007499339, -0.009547308, 0.018763345, - 0.015285583, -0.018604338, 0.004598963, -0.009512161, -0.039058182, - 0.012103033, 0.020957908, 0.0053314567, -0.0057323817, -0.027867086, - 0.00520777, -0.01363561, 0.0021667546, -0.0069371527, -0.038476724, - -0.018842021, -0.015723525, -0.024047842, 0.0010216514, -0.024134567, - 0.0072511025, 0.019061793, 0.023217745, -0.012859048, 0.02252001, - -0.0027245875, -0.010677567, -0.017555097, 0.0046269833, -0.024631493, - 0.018925993, 0.012568116, 0.023307264, -0.0151457, -0.017425518, - -0.0070644193, -0.006476388, 0.024064023, 0.010665178, 0.011594019, - 0.0053096768, 0.032270838, -0.007371652, -0.034531627, 0.022315249, - -0.012333793, -0.021497322, 0.008455732, -0.015683629, -0.017208599, - 0.008488179, 0.0064603086, -0.0017202192, 0.0051420266, 0.013977316, - -0.02379554, 0.006960031, 0.004533692, -0.024957446, -0.010300769, - 0.0044002626, -0.022773083, -0.022182412, 0.023978626, -1.7696118e-4, - 0.010556424, 0.004582937, 0.022122925, -0.02920421, -2.1721091e-4, - -0.022708716, 0.008775636, 0.0010301807, -0.0046836473, 0.0065087397, - 0.0105562, -0.017453048, -0.006872648, -0.0284907, -0.008284196, - 0.012555625, 0.003533253, -0.011310876, 0.0014040275, -0.033283368, - 0.019663904, 0.007661042, -0.011101057, -0.009296642, 0.0022207883, - -0.009226513, 0.008858159, -0.0081365565, 0.008575435, -0.03862584, - 0.017379181, -0.007859819, 0.010622058, -6.3689396e-4, 0.0071835103, - 0.025791964, 0.007274141, 0.042873062, -0.013317396, 0.045886777, - -0.032856118, 0.00823252, 0.014261412, 0.0020183718, -0.0033791317, - -0.009082404, -0.0024041678, -0.008338895, 0.0059941537, 0.0098553095, - -0.006878387, -0.0018060168, 0.0058702743, -0.009509932, -0.012806074, - -2.508304e-4, 0.017811, 0.049885873, -0.005251437, -0.020703573, - -0.009104178, 0.023063967, 0.015221534, 0.013769376, 0.019398853, - -0.0015055249, -0.00571212, -8.051106e-4, 0.007883559, -0.0084350845, - 0.0019405277, -0.0012743182, -5.389278e-4, 0.021763187, -0.006133313, - -0.014924348, -0.020285841, -0.0092212595, 0.02307366, -0.0012435404, - 0.00315919, 0.0130110225, -0.00773912, -0.001669486, -0.009835825, - 0.012929999, 1.3218522e-4, 0.007658002, -0.00251613, -0.031508543, - -0.011809766, -0.022406628, 0.012528038, -0.0053892494, 0.009486232, - 0.008014627, -0.0020450554, 0.003265311, 0.02768344, 6.770081e-4, - 0.018517824, -0.005431048, 0.012246761, 0.007531953, -7.966292e-4, - -0.010865478, 9.941495e-4, 0.017346796, 0.023956878, -0.01193976, - 0.023442501, -0.02862774, 0.002889188, -0.0020199006, -0.007268039, - -0.014303084, 0.0057967, 0.012739536, 0.026556682, 0.024474014, - -0.008909337, -0.020396665, 0.011713035, 0.018721614, -0.01318853, - 0.0034759343, 0.020495534, 0.03594153, 0.014813736, 0.024615623, - -0.0027560203, 0.017971797, -0.017947663, 0.0056821597, -0.028103162, - 0.0187585, -3.752277e-4, -0.0070742727, -0.013250305, 0.022876205, - 0.0066016037, -0.0128665585, -0.007390425, -0.0029426857, 0.010701763, - 0.002637709, -0.001121988, -0.0032027743, 0.0051118378, -0.002716177, - 0.019944549, 0.04233189, -0.017843949, 0.006377035, 0.002995786, - -0.003128161, -0.010239292, -0.021378731, 0.0010047567, 0.01716255, - -0.018683948, 0.015824283, -0.0082854, -0.0122829545, 0.0059714005, - -0.031626664, -0.023611384, -0.005190853, -0.0027326867, 0.0027926995, - 0.0016592715, 0.0023353451, -0.027070574, -0.0065283794, -0.014124483, - -0.010833378, -3.5123655e-4, -0.020890383, -0.019966202, 3.540779e-4, - 0.0074684545, 0.016661976, -0.009016403, 0.008418904, 0.025587589, - 0.0026104632, -0.0052314713, 0.0012541077, -0.026977021, -0.020093193, - -6.56041e-4, 0.0381022, 0.0105506675, -0.0016449167, -0.004145256, - -0.021651374, -0.012244453, 0.019044979, 0.031075513, 0.017618604, - 0.008340486, -0.0013053303, 0.016163334, 0.008811172, 2.5240783e-4, - -0.0063406415, 0.0074619306, 0.017756317, 0.03914847, -0.013504678, - -0.015299442, 0.00993794, 0.0015421454, 0.013920144, -0.0076532075, - 0.028983422, 0.012687768, -0.014177563, -0.0035735993, 0.008499114, - -0.025729941, -0.004362883, -0.01712899, -0.008443684, 0.0026429293, - -0.023944872, 0.02930029, -0.014319073, 0.0053370427, 0.023229262, - -0.0023279097, 0.0062356647, -0.008232159, 0.0022228225, 0.009702926, - 0.028994786, -0.01056828, 0.005404095, 0.0101334145, 0.006590158, - 0.0012081014, 0.019622399, 0.02670054, -0.016860608, -0.010689104, - 0.009950549, -0.0021518287, 0.0111736925, 0.008079315, -0.017888457, - -0.0315663, -0.0155861, 0.008797693, -0.016672248, -0.002143116, - 0.00332063, 3.198487e-4, 0.0049342574, 0.005508905, -0.025393859, - -0.017921584, -0.015417161, -0.013246822, 0.018708384, -0.014144934, - -0.003981168, -0.002718828, -0.040215082, -0.010291273, 0.020806106, - 0.004903619, -0.02982797, -0.0063166777, -0.021069864, -0.0115271015, - -0.0055615, -0.027122002, 0.00544906, 0.015233251, 0.0053213695, - 0.0057978067, 0.009006743, 0.015259734, 0.0019360703, 0.0013698495, - 0.027906546, -0.023340069, -0.03580174, -0.016280014, -0.0014922151, - -0.03718486, 0.0068828156, -0.02729465, -0.0012080919, 0.01724681, - 0.025074674, -0.020074485, -0.019672118, 2.331272e-4, 0.012034798, - 0.0025787915, 0.019096937, -0.009886196, -0.0049049538, -0.009776771, - -0.0028714396, -0.016021568, 0.006961351, 0.014645694, -0.02469045, - 0.007648603, -0.028822098, 0.012774631, -7.41956e-4, -0.005471573, - 0.044106316, -0.0019152781, -0.0058059897, 0.009003235, 0.009728099, - 0.0023489452, 0.0011503799, -0.017205207, -0.014310494, -0.0048716087, - 0.009761969, 0.0023929747, -0.018132882, 0.026871683, -0.016144589, - 0.018909201, 0.0064544063, -0.0019642534, 0.019778332, -0.018461602, - -0.015930658, 0.013300008, 0.0034637155, -0.005618361, -0.005231403, - 0.01629823, -0.0124806715, -0.0058694417, 0.00516134, 0.007496751, - -0.015406178, -0.004427929, 0.010665311, 0.006446738, 0.00224046, - 0.007943127, 0.040625855, 0.0044885543, -0.0036656144, 0.0075661554, - 0.010488456, -0.0032312402, -0.006438331, 0.02301243, 0.003127883, - -0.011195288, -0.016540043, -0.010628613, 0.003753946, 0.007376932, - -0.0037136385, -0.018774949, -0.022009159, 0.014356637, 0.0056827674, - -0.021064527, -0.019633558, 0.0068242047, 0.021238621, 0.034099285, - -9.83093e-4, 0.008621924, -0.0066308742, 0.005975253, -0.005041552, - -0.014355859, -0.024022464, -0.004280051, -0.02689379, 0.014804211, - 0.00867527, -0.016637456, 7.846915e-4, -0.016453594, 0.0039331676, - -0.0020549928, -0.0034899493, 0.024925476, 2.2851954e-4, -0.015587492, - -0.0061883526, 0.021340018, 0.012505995, -0.008352539, -0.0061345515, - -7.8847236e-4, -0.025434764, 0.011267515, -0.0045644585, 0.0012850866, - 0.0017984888, -0.024610585, 2.5220992e-4, -0.001756319, -0.0065953415, - -0.019996716, -0.019799648, -0.018548712, -0.02881118, 0.004179573, - -0.01711467, -0.0032396356, -0.0055091893, -0.0066779647, -0.026294066, - -0.003659108, 9.902314e-4, 0.022797085, -0.006497834, 0.0045658536, - 6.096238e-4, -0.021703769, -0.006388127, 0.025765195, -0.013691541, - 0.02838418, -0.012410434, -0.0010000955, -0.0030537893, -0.003129194, - -0.0117520075, 0.013132612, 0.0027100693, 0.019113427, -6.605001e-4, - -0.011031555, -0.011021975, -0.011012462, -0.007494371, -0.0058140815, - -0.001475515, -0.011202513, 0.021829935, 0.002632938, 0.029208917, - -0.005885863, 0.006444015, -0.017575301, -0.025715657, 0.019304538, - 0.0044407872, 0.017649282, -0.010261798, -0.0014476231, -0.00985371, - -0.008589318, -0.0017461, -0.008536924, 0.0058943266, 0.018147405, - -0.019054038, -0.01100593, 0.018657701, -0.020465704, 0.019772619, - 0.0036531836, 0.009231734, -0.003970182, -0.010804929, 0.022832887, - 0.021557694, 0.025482168, 0.013748695, -0.013996564, -0.021756267, - 0.021646382, 0.015316009, -4.6564447e-4, -0.016981946, 0.015758984, - -0.005406692, 0.017471477, -0.014505093, 0.016050158, -0.017492704, - -0.001781508, 0.0062739346, 0.01539266, 0.024158036, -0.030624961, - -0.031440023, 0.0051333164, 0.017909633, 0.0046319724, 0.02116204, - 0.015863976, 0.025262447, -0.014126427, -0.009227303, 0.03158317, - 0.0013968783, -0.011558051, 0.017898405, 0.01057575, -0.011514866, - -0.008408713, 0.0027753492, -0.003189399, 0.012101957, 0.04302445, - 0.017149847, 0.008924011, -0.022760054, 0.0012769032, -0.007163394, - 0.0055220905, -0.012269839, 0.004186893, -0.018062575, 0.009430594, - -7.48559e-4, -0.009922104, 0.008092782, 2.0375694e-4, 0.015990242, - -0.008157388, -0.012649235, -0.02706847, -6.458778e-4, 0.0031289314, - -0.005786633, 0.016308907, -0.0056355703, 0.020189613, -0.023062224, - -0.010968544, 0.027309073, 0.0035296404, -0.015570733, -0.012827883, - 0.035454214, -0.0040091076, 0.0049346946, -0.003696351, -0.0012793739, - 0.008606313, 0.004001194, -0.0062673735, 0.016020771, -0.0048524654, - -0.034215257, -0.008821855, -0.0034431152, -0.017020602, -0.01628664, - 0.0133033525, -0.025625728, -0.028486375, 0.00408869, 0.0042954925, - 0.0223893, 0.0049672206, -7.719633e-5, 1.4940348e-5, 4.442111e-4, - 0.014607662, 0.012463244, 0.028339006, 0.013484894, -0.018759904, - -0.008270486, 0.007916793, -0.017445618, -0.007260873, 0.030055683, - -0.018053742, 3.0159252e-4, -0.0025045848, 0.0043260767, 0.0030316787, - 0.0018321142, 0.014375528, -0.004172653, -0.011682997, 0.0060641635, - -0.006323286, -0.0064330087, -0.006402009, 0.008562149, -0.008814212, - 0.0069540814, -0.009074564, -0.011385211, -4.672009e-4, -0.015603151, - -0.0013859477, 0.0066239894, 0.021412816, 0.0273639, -0.009634431, - 0.0026162833, -0.009654562, -0.0016895256, 0.0115310745, -0.033319816, - 0.0015771532, -0.0041965423, -0.018923966, 0.02748131, -0.03485114, - 0.008447716, 0.013137779, -0.029414143, 0.0077073653, 0.0059017697, - 0.015310334, -0.010623673, 0.00934945, -0.012800339, -0.036204055, - -0.00999444, 0.008543578, 0.008002823, 0.010396935, 0.0022272284, - -0.028702939, -0.016535286, 0.002653789, 0.026042106, -0.014908555, - -0.0035115543, -0.016052958, 0.012039036, 0.007013158, 0.001509002, - 0.014001794, 0.009082145, -0.011610779, -0.023494804, -0.0020898795, - -0.008910504, -0.0037383132, -0.011367309, -6.645601e-5, -0.024177382, - -0.01313766, -0.0025013478, -6.600832e-4, 0.030630117, -0.0035214338, - -0.0155959735, 0.014298756, 0.024134312, 0.016878817, -0.0057474608, - -0.0077656247, 0.01555843, 0.003683861, 0.0071650217, 0.017001517, - -0.0022532428, 0.028392319, 0.0049613947, 0.009525045, -0.022144504, - 0.011454848, -0.0019759578, -0.01742812, -0.010256837, -0.00941519, - 0.0104582105, 0.0055719223, 0.0035873603, 0.010456061, 0.0023889137, - -0.025421105, 0.020325445, 0.0023255977, 0.021557534, 0.003471963, - 0.0027848543, -0.011554558, -0.0056548696, -0.0075063896, 0.028427104, - 0.016057286, 0.007341246, 0.010737263, 0.0075216265, -0.017777197, - 0.015925208, 0.0036607366, 0.0011785144, 0.004527814, 0.003937448, - -0.0016508349, 0.009796168, 0.011245801, 0.007320925, -0.0051024845, - 0.0023953584, 0.010394877, 0.008934813, 0.009776822, 0.0056633884, - -0.00996641, 0.030783184, 0.024933448, -0.0063065602, 0.00943498, - 0.006923282, 0.006600989, 0.018996676, 0.021033593, 0.018122487, - -0.0077897385, 0.018497292, -0.032287646, -0.010983375, -0.015281104, - -0.013710802, -0.0017190597, -0.01838603, -0.010452389, 0.0069200597, - 0.012656245, 0.032945987, -0.016373677, -0.015107961, -5.424099e-4, - 0.021885298, 7.76708e-4, 0.004355418, -0.0030013507, -0.009470827, - -0.008463126, 0.02919659, -0.01984525, 0.0059953015, 0.011378632, - 0.007208985, 0.0060849963, -0.044022616, 0.0039953687, 0.02369015, - 0.023848245, 0.0031337123, 0.0027188184, 0.0037532304, 0.020991605, - 0.0011026952, -0.0040175305, -0.031104386, -0.015905358, -0.008536203, - -0.01013528, 0.032997526, 0.012351481, -0.0013681978, 0.01599763, - -0.001738226, -0.02704085, 0.0022781002, -0.008852848, 0.0144331595, - 0.01940316, -0.0035617475, -0.011058058, 0.0043139444, 0.03752763, - -0.0067222333, 0.009524716, -0.029639987, -0.007783024, 0.05024217, - -0.0061028576, 0.0069324146, -0.01489465, 0.025349267, 0.02004408, - 0.020366527, 0.004069805, 0.009091922, 0.03111141, -0.009982513, - 7.84163e-5, 0.04912618, -0.0017950437, 0.014305721, 0.029205654, - 0.011189606, 0.004746991, 0.016360607, -0.007504949, 0.0031735715, - 0.011313671, 0.0071787285, 0.016329419, -0.00441407, 0.0031032052, - -8.9574367e-4, 0.001763063, -0.007654285, -0.015961092, 0.0048811925, - 0.0062432163, 0.005190927, -0.0023729033, -0.028032355, 0.008744471, - 0.014592865, -0.025583878, -0.03320288, 0.006641217, -0.0145290475, - -0.015262771, -0.0101292925, -0.029102959, 0.018841939, 0.008573335, - -0.0017985823, -0.0068845195, 0.01573992, -0.007871524, 8.502085e-4, - 0.0122855725, 0.014564624, -0.014511886, -0.006273041, -4.221591e-4, - -0.019900536, -0.034314003, 0.022558378, -0.025249993, -0.01834338, - 0.016059887, 0.0160297, 0.01679949, -0.013754775, 0.012714227, - 0.0154598, -0.011767243, 0.012967249, -0.025390819, -0.010498294, - -0.0020641, -9.40034e-4, 0.0031140996, 0.004600981, 0.011723992, - -0.012723162, 0.0021177279, 2.9401612e-4, -0.034690917, -0.0016788063, - -0.016019765, -9.85904e-4, -6.385248e-4, -0.021024697, -0.012486182, - 0.009563201, 0.024273226, -0.013478694, -0.0011717333, -9.100673e-4, - -0.022740707, 0.0047267326, -0.014518678, -0.020020612, 0.020732772, - 0.046180226, -0.014812193, -0.0012930844, 0.018905558, -0.0014962184, - -0.0055476944, 0.023251882, 0.011820666, -5.5800076e-4, 0.007938828, - -0.009849896, 0.03377459, -0.0070974333, 0.00282809, 7.4876664e-4, - 0.010710627, 0.004908041, 0.010381338, 0.027076969, -0.013473912, - 0.020825723, 0.018845923, 0.023753202, 0.015126318, 0.009956503, - -0.01714577, -0.0028986246, -0.02089016, -0.01772815, 3.243192e-4, - 0.0034170344, -0.004946056, -0.00629263, 0.0030737568, 0.012776578, - -0.0052632866, 0.012033024, -0.023027938, -0.041352417, 2.923712e-4, - -0.0042146444, 0.02116289, 5.4555698e-5, -0.009163356, -0.022439336, - -0.004094509, -0.016861243, 0.021083275, 0.012612613, 0.04429152, - -0.00399516, 0.009251056, 0.009949549, -0.004364498, -0.0068335207, - 0.00452072, -0.010316425, -0.012613978, -0.01478773, -0.0045840074, - -0.0055830535, -0.00797369, -0.008282378, -0.007533412, 0.0044483794, - 0.0032954842, -0.016462019, 0.0057316483, -0.018898038, 0.009774123, - 0.004515872, -0.0064090574, -0.011203815, -0.03562991, 0.0017056667, - -0.0103700375, -0.011325861, -0.024663445, 0.023097912, 0.022316078, - -0.025578592, 0.011810973, 0.003221811, 0.0020729038, -0.023701005, - 0.0042361263, 0.0030287935, 0.007905028, -0.0020432144, 0.0048440597, - 0.0065781577, 0.01584399, 0.01436196, -0.015390004, -0.0036229372, - 0.022363849, -0.01455235, 0.009397697, 0.037487052, 0.01273988, - 0.016138965, -0.012021422, -0.03149792, 0.014107368, 0.013220828, - -0.013027723, 0.0330534, 0.00684678, -0.0023458865, -0.011461436, - 0.02050375, -0.00736262, -0.01971273, -0.0063670403, -0.061592337, - -0.010366646, 0.01292975, -0.008062757, -0.008714382, 0.0068318048, - 0.008520616, 0.032032866, -0.02427186, 0.018874068, -0.002764348, - 0.0045909337, -0.017160933, -0.012076404, -0.030269211, 0.018220168, - -0.0063356957, -0.014366219, 0.029005023, -0.003950691, -0.006889806, - 0.004549793, -0.0017713442, -0.0050237793, -0.026779016, -0.013293667, - 0.019965492, 0.0016926292, 0.014213972, -0.0058173193, 0.0033928796, - -0.018899856, -0.01807111, -0.0012972254, -0.018513065, -0.01062915, - 0.0039578127, 0.022316761, -0.0057479967, -0.011803988, 0.021758538, - 0.0414768, 0.012415598, -0.0020524168, -0.015312293, 0.026729688, - -0.009415274, -0.013672421, 0.008501702, -0.011585137, 0.015373642, - -0.018679593, 0.005723439, -0.023564845, -0.013522391, 0.012721765, - -0.021060904, -0.0046166717, -0.022430824, -0.010896805, -0.010032558, - 0.0045635775, 0.023612652, -0.0111821955, -0.023238992, -0.015356686, - 0.009866117, 0.016447227, -0.012179793, -0.016628308, -0.0292335, - 0.035086114, 0.019551773, -0.016387029, 0.0054357485, 0.014899755, - 0.025334774, 0.010819193, 0.010085815, -0.014948879, -0.023702143, - 0.02948551, -0.0014510426, -0.0133191, 0.007717846, 0.00451954, - -0.008961325, -0.011774631, 9.29048e-4, -4.7109852e-4, -0.019585798, - -0.002217076, -9.1185054e-4, -0.015631288, 0.016385416, -0.0061199637, - -0.017305907, 0.015677122, 0.032098167, -0.015836814, 0.012005096, - -0.021508416, 0.00476779, 0.009607194 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.017003061, 0.0047893287, -0.00934208, -0.04853739, -0.031654958, - 0.022053085, -0.008157442, -0.040587187, 0.011304861, 0.054059636, - -0.01954232, 0.027502365, 0.03255459, 0.085826606, 0.0036520418, - 0.011259461, -1.9331403e-4, 0.009300637, 0.03339473, -0.023784423, - -0.036431327, 0.022768822, 0.050884623, 0.01742706, 0.011107256, - 0.056086108, 0.032258593, -0.031699244, 0.009146706, 0.019123795, - -3.162746e-5, 0.0104343, 0.0028496126, 0.0126802195, -0.027438978, - -0.0031570622, -0.027391918, 0.036522597, 0.03373437, -0.0013080577, - -0.057192888, -0.010211538, 0.036764983, 0.020782487, 0.004914565, - 0.0028150496, 0.014250401, -0.014300562, -2.8910124e-4, 0.0153954085, - -0.03751007, -0.006927267, -0.01243429, -0.0069780657, -0.014097926, - -7.7712924e-5, 0.027795462, -0.036248446, -0.021293098, 0.010124876, - -0.04978011, -0.010068552, 0.048021156, 0.02341105, -0.017226012, - -0.0048043295, 0.0010790263, -0.053624563, 0.03075763, -0.014794155, - 0.08830282, 0.0012953118, 0.033341825, 0.034075957, 0.020123923, - -0.05307654, -0.063399576, 0.03195869, 0.006830146, -0.026589563, - 0.04610241, -0.031734843, 0.0018511312, 0.03391343, -0.016130365, - 0.010523541, -0.023401868, -0.025629403, -0.016421897, 0.019515146, - -0.009937482, 0.015955701, 0.027768614, 0.022480683, 0.03346401, - -0.03003263, 0.006900764, 0.058309134, -0.017665086, 0.03097456, - -0.0013321445, 0.050929833, -0.034570962, -0.028227556, -0.00532231, - 0.030554939, -0.014754279, 0.031643547, 0.008102674, 0.02181589, - 0.0039157523, 0.0029409167, 0.03646213, 0.022441447, 8.0726173e-4, - -0.055946317, 0.033871822, -0.006968822, 0.015314239, 0.012908969, - 0.018753411, 0.0058225137, 0.017884547, 0.012173999, -0.025274301, - 0.012317865, 0.030054161, 0.038679868, -0.029663693, -0.01955411, - 1.0565231e-4, 0.04847472, 0.007782327, -0.03606594, -0.0020648788, - 0.058412835, -0.027768796, -0.0021188923, -0.049717043, -0.006215311, - 0.00213805, -0.009120772, -0.014795066, -0.006022048, -0.004943213, - 0.029455509, -1.1108036e-4, -0.009464985, 0.009848259, -0.01847972, - 6.982236e-4, -0.023575393, 0.002281819, 0.0048689432, 0.005531934, - -0.010924435, -0.02695924, 0.032382563, -0.008456149, -0.044156816, - -0.004364958, 0.05600482, -5.7649415e-4, 0.01932482, -0.011592588, - 0.021300659, 0.026930211, 0.057206668, 0.0049041985, 0.033417717, - -0.047919698, 0.028755167, 0.01526483, 0.028609864, -0.0034470488, - 0.04094396, -0.07294667, -0.05067573, 0.06881476, 0.0050699166, - -0.0011778193, 0.022132535, 0.07965065, -0.040283542, 0.01242339, - -0.0061617666, -0.012928886, -0.022334585, -0.01716112, -0.004903112, - -0.0074728285, -0.02496211, 0.07051624, -0.053631715, -0.010758616, - 0.026938438, 6.972384e-4, 0.038097654, -0.006074191, -0.04261776, - 0.02238628, 0.0042031817, -0.027623663, 1.5472106e-4, -0.034106676, - -0.018892456, -0.039828554, 0.028929021, 0.0025991744, -0.034768973, - -0.033183042, -0.0032417125, -0.05790083, 0.031792786, -0.00590691, - 0.011648543, 0.015051867, 0.014259904, 0.03607029, 0.05501103, - -0.011079433, 0.026911616, 0.023304377, -0.0425849, 0.014342044, - 8.728281e-4, -0.009688172, 0.03357495, 0.00246687, 0.04334095, - -0.015235676, 0.024646709, 0.048347052, 0.020005966, -3.0442464e-4, - 0.06307469, -0.04537593, -0.0037343048, 0.02964411, 0.029706672, - -0.025761787, -0.033996437, 0.08777184, -0.003577141, -0.007555011, - 0.022182694, -0.017422333, -0.056624565, 0.03405617, 0.0031021417, - -0.04072488, -0.06309666, 0.026641833, 0.013473176, 0.007232706, - -0.027301146, 0.03922472, 0.05234409, 0.061307147, -0.03505921, - -0.027297502, 0.013845045, -0.06402432, 0.016379628, -0.018374873, - 0.047018997, 0.01030896, -0.029787162, 8.3188276e-4, -0.005511056, - 0.03886938, -0.01991852, 0.0010950753, -0.048956476, -0.013034628, - -0.031761363, 0.0045421724, -0.010538874, -0.02354854, 0.06275411, - -0.011994711, -0.040636487, -0.048539653, -0.0023749499, 0.040064607, - -0.010313918, 0.001754834, 0.010347806, -0.042715095, -0.036569063, - 0.010777485, -0.028024806, -0.023282653, 0.042583, 0.035789456, - -0.05382458, 0.010305116, 0.003256207, 0.004584657, -0.042505313, - -0.019825736, -0.0122839175, 0.017620834, 0.020555913, 0.04735968, - -0.027036011, 0.052922823, 0.006273091, 0.046091262, 0.039457202, - 0.0070119617, 0.07242584, -0.042955656, 0.020805871, -0.008102369, - -0.014739373, -0.040112432, 0.06435254, 0.0053941375, -0.027534882, - 0.01740407, 0.031718712, 0.048122704, -0.069510065, 0.0034138174, - -0.005093694, -0.04868242, 0.01881253, -0.032808647, 0.08442919, - 0.049979802, -0.028819192, 0.047754224, 0.00604503, -0.035443425, - 0.034226198, 0.0018240758, -0.013925318, 0.005171527, 9.86442e-4, - -0.0019982653, -0.030032871, 0.017046362, -0.017413713, 0.023833403, - 0.010743524, -0.06602887, 0.021103857, -0.037736863, 0.028546892, - 0.046607584, -0.0044736876, 0.02730346, 0.013689911, -0.023138214, - 0.03880372, -0.020449063, 0.027975032, -0.0012749085, 0.028297009, - -0.022340614, -0.022703, 0.0041019367, -0.019127363, 0.010642819, - 0.014645509, 0.0116987005, -0.015193677, 0.05689809, -0.010478172, - -0.019875206, 0.021024901, 0.016845064, 0.033581037, 0.02162657, - 0.005399853, 0.02596682, -0.0029508874, -0.06003917, 0.006669255, - -0.0037693952, 0.033908144, 0.06494013, 0.024431765, 0.023296349, - -0.05915701, -0.011683146, -0.030198665, 0.011158294, -0.0038758777, - -0.022576617, -0.01345249, 0.022451289, -0.0012689469, -0.059981167, - -0.03183503, -0.025223924, 0.02758763, -0.016444668, 0.0058543743, - 0.020043906, 0.007108782, 0.055835582, -0.017715065, 5.2731985e-4, - -0.0127733, -0.017061425, -0.0026092036, 0.033248365, 0.007867551, - 0.071497165, 0.07898021, 0.020518303, -0.041395765, -0.017922517, - -0.017577128, -0.045298316, -0.06080031, -0.005147234, -0.030163713, - 0.038265638, -0.020876426, 0.060295995, -0.03342687, 0.02756883, - -0.01632044, -0.031342432, -0.017159142, -0.0011363549, -0.031795118, - -0.08537092, 0.010492238, 0.06271759, -0.02687736, -0.010263366, - 0.03189148, 0.03830989, -0.019928968, 0.015610556, 0.04200881, - 0.03958338, 1.9582777e-4, 0.016183676, 9.951713e-4, -0.015815046, - -0.00988342, -0.008397202, -0.020948881, -0.013932964, -0.021361027, - -0.06726151, 0.03578388, -0.019664539, -0.016678216, 0.009121471, - 0.044893127, 0.03413389, -3.7898592e-4, 0.054085203, -0.01411341, - 0.03672879, -0.0628935, -0.053498153, 0.07807856, -0.004221701, - -0.017451612, -0.010864529, -0.034274943, -0.014769582, -0.045252785, - -0.029588427, -0.024409149, -0.014481561, -0.016294735, -0.028867181, - -0.017119471, -0.011977065, 0.017457362, 0.009150508, 0.02447787, - -0.0026555771, -0.013255061, 0.02165504, 0.018958336, -0.04140447, - -0.025940837, -0.025908703, 0.004252386, 0.031976532, -0.013206728, - -0.019763809, 0.002400479, -0.01816324, 0.015074996, -0.017059153, - 0.0022880752, -0.0073638023, -0.014513391, 0.023733355, 0.053140532, - 0.010175688, 0.019375823, -0.05816788, 0.05381827, -0.024173755, - 0.012245378, 0.04617467, 0.010753426, -0.01728044, -0.00255349, - -0.0011793291, -0.035366856, 0.016514905, -0.05326007, 0.004364959, - -0.005999482, -0.040977444, -0.005823946, 0.022990223, -0.020584337, - 0.019822633, -0.042032197, 0.057686474, 0.017438032, 0.0025325452, - -0.068478994, -0.04109298, -0.014177068, 0.04104149, -0.045018926, - 0.027084598, -0.053617954, 0.052061256, 0.008794326, 0.04847014, - 0.02801693, 0.010455177, -0.033314284, -0.022771262, 0.025302323, - 8.146845e-4, 0.00411248, -0.0063887243, 0.0071168877, 0.009948083, - 0.05604217, 0.0051796227, -0.02188809, 0.0028034966, -0.030663332, - -0.023135733, 0.06438931, -0.020043192, -0.012864906, 0.048607882, - 0.015672809, -0.03681124, 0.048816234, 0.031578258, 0.007886382, - 0.0070060766, 0.007061031, 0.006034924, -0.021385875, -0.0122727165, - 0.0086871935, -0.029746538, -0.004783219, 0.037605427, -0.0050912425, - 0.025888385, -0.020263454, -0.0028479218, -0.0090601165, -0.021024145, - -0.041720916, 0.015862335, -0.083059914, 0.051430296, 0.03430816, - 0.018761255, 0.057914674, -0.038322084, -0.0044429544, 0.015432702, - -3.7747598e-4, 0.009870794, 0.040400486, 0.0035283724, -0.069247454, - -0.01006731, 0.0040053916, 0.007635312, 0.0023184195, 0.022953602, - 0.026751023, -3.9818473e-4, 0.023544583, 0.018749118, 0.0049153226, - -0.021163566, 0.050647583, 0.02777012, -0.011928523, 0.038248744, - -0.038252294, 0.012817421, -0.03508745, 0.010423484, -0.009015817, - -0.044639014, 0.043359943, -0.060133494, 0.06423591, 0.056296732, - -0.00853898, 0.014982589, -0.01843214, -0.081756756, 0.0032591426, - -0.03867848, 0.020573368, -0.030455096, 0.04389432, 0.0059402836, - -0.08990487, 0.0100784935, -0.017425556, 0.04999324, 0.029088771, - -0.029196927, -0.005781269, 0.059199803, -0.032378156, 0.0075757117, - -0.020088589, 0.036632635, -0.002404241, -0.007920661, -0.043767825, - 0.04030443, 0.008942787, -0.051301982, -0.013132731, -0.012717445, - -0.0067645023, -0.011027055, -0.026470523, -0.0016321319, 0.028805457, - 0.023698255, -0.010682655, 0.028890727, 0.04449923, 0.019241648, - 0.051744003, 0.0531455, 0.00867094, -0.051115036, -0.026249278, - -0.013413562, 0.021719866, 0.02511158, -0.014498303, -0.010292774, - -0.047379795, 0.010215523, -0.060197625, 0.02263753, 0.008920681, - 0.016364258, -0.030918026, 0.01548691, -0.021363808, 0.010002452, - 0.0077425535, 0.033701226, -0.029331395, 0.022879144, 0.046072368, - 0.043562323, 0.034400903, -0.027458066, -0.0033506893, -0.013435223, - -0.023236373, -0.017747061, -0.040448412, -0.017397497, -0.007636833, - 0.05527202, 0.058061704, -0.012163119, 0.020542197, -0.01906867, - 0.038996927, 0.014650115, -0.036252614, 0.0054101795, 0.0063051335, - 2.2882418e-4, -0.029808678, -0.008975652, 0.040332917, -0.028383173, - -0.02926805, -0.0020587037, 0.036702406, -0.04201904, -0.013507467, - 0.0064100395, -0.010019644, 0.0072830003, 0.04618252, 0.041273993, - 0.015319661, 0.022341248, 0.04277045, -0.013144082, -0.04235708, - 0.037273988, -0.023251755, 0.024706056, 0.052116483, -0.0016972368, - -0.01254979, 0.067367785, -0.03580686, 0.025943449, 0.033652198, - -0.01813686, -0.053363703, 0.037172258, 0.015373013, 0.04763672, - -0.0029853778, -0.010613085, -0.018853229, -7.464632e-4, -0.009182608, - -0.01411814, -0.003344151, 0.007962598, 0.0056381747, 0.0136249075, - 0.008812278, -0.002834066, -0.0069843587, -0.021840852, 0.0247722, - 0.023156798, -0.020184072, -0.0067309663, 0.036291905, 0.01802116, - -0.03490416, 0.028085466, -0.009999466, 0.010175534, -0.0074790176, - 0.014644224, -0.024835404, 0.026613325, 0.011119743, -0.002519145, - -0.030255735, 0.054262232, -0.025604658, -0.0344634, 0.010744649, - -0.01717553, 0.05378346, 0.019644536, 0.0010569576, -0.026023574, - -0.020759529, -0.030996248, -2.28248e-4, 0.0067328885, 0.01965228, - -0.0046603084, 0.011855965, -0.015004136, 0.02769253, 0.064967856, - -0.010886365, -0.019328943, 0.06556462, -0.016854, -5.332881e-4, - 0.036937907, 0.033367213, -0.0072999815, 0.03884907, -0.024494803, - 0.0120848995, 0.01504441, -0.004591251, 0.061458617, 0.014026077, - -0.005366155, 0.026899096, -0.037680756, 0.01929681, -0.016371677, - 0.0025942547, -0.033345822, -0.023510033, 0.027471429, -0.017201742, - -0.007148812, -0.04281211, -0.0496441, -0.037919942, -0.0046946574, - -0.002881823, 0.01820465, 0.008331524, 0.0045071016, 2.081542e-6, - -0.04513083, -0.03361284, -0.001115746, 0.0066831983, 0.019189712, - 0.007446061, -0.019248823, -0.0032712528, 0.056945015, 0.012130596, - 0.036917754, -0.06931481, 0.03746943, 0.07363801, -0.0069285096, - 0.030197596, -0.031381443, 0.021546723, 0.047754213, -0.0038861732, - 0.018667467, 0.018931845, 0.03274947, -0.029637055, -0.03581254, - -0.015553102, 0.021570364, -0.023920314, -0.009267592, -0.036420558, - -0.040397316, 0.0516829, 0.0038128113, -0.04353433, -0.023740407, - -0.0080349445, -0.017626645, -0.012281447, -0.0356226, 0.033106577, - -0.04819008, -0.023144316, -0.0364326, 0.031787284, -0.048670284, - -0.022695092, -0.010262397, 0.05166911, 0.0053568264, 0.053256836, - 0.0495823, -0.017348094, -0.032103743, -0.027007403, -0.0070554544, - -0.0268514, -0.037342407, 0.033640534, 0.023744345, 0.014691423, - 0.03432161, 0.081364065, 0.04989902, -0.016417878, -0.052131966, - 0.005498787, -0.0015067259, 0.0022863613, 0.0043521924, -0.0102714, - -0.037065983, -0.036294173, -0.052400008, -0.0072631156, -0.056042954, - 0.0019985347, 0.051880248, -0.024213796, 0.00801335, 0.01379761, - -0.0041706925, -0.03421816, -0.022160944, 0.0075745927, -0.021221954, - 0.0077368906, -0.020094628, -0.018811405, -0.04929129, 0.01833731, - -0.04588895, 0.05782423, 0.024364559, 0.05213758, 0.027935764, - 0.024381468, 0.022183282, -0.06787971, 3.368053e-4, 0.016640982, - -0.027342647, 0.06836752, -0.0034559527, 0.0015862524, 0.041457336, - 0.029125633, -0.045439646, -0.008454316, 0.029621582, 0.01990422, - 0.037710264, -0.03467609, 0.019601643, -0.058665544, -0.061326403, - 0.01787986, 0.009674535, -0.0012671879, 0.004817617, 0.038378138, - 0.0043758387, -0.025096525, -0.015386002, 0.062275816, 0.029388616, - -0.0046189106, 0.008764663, -0.052589305, 0.0071626497, 0.033908326, - -0.0071448693, 0.008079282, 0.039274376, 0.044090614, 0.02667835, - 0.013138735, -0.009220147, 0.03807867, 0.03842667, 0.022048028, - 0.03695286, -0.03353287, 0.044992413, -0.023727518, -0.07080879, - -0.032793455, 0.016905151, -0.004872345, -0.039185643, 0.0056374883, - -0.030004097, 0.0056997878, -0.012315595, 0.034198966, -0.022380458, - -0.035884198, 0.0036050386, -0.040050723, 0.017964996, 0.012837596, - 0.091804355, 0.0033872304, 0.021789115, -0.0078068585, 0.024142398, - 0.018437492, -0.016825212, 0.008793782, 0.11588175, -0.024380863, - -0.0030364387, 0.060790654, -0.02671399, 0.0023742279, -0.014421513, - 0.015931165, -0.044542804, -0.0523663, 4.121621e-4, -0.051025413, - -0.03265747, 0.0450378, 0.05667874, 0.03486715, -0.014457769, - -0.014723812, -0.018707171, 0.020124702, -0.012650457, -0.035437807, - -0.010189598, -0.016756335, -0.04271436, -0.030711727, 0.0103226, - -0.018245934, -0.028428962, -0.026611568, 0.019755019, 0.001264192, - 0.0017819927, -0.06970488, 0.0049581886, -0.009324363 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.019669792, + 0.012638634, + 0.0023867805, + 0.027941225, + -0.019383958, + 0.021220595, + 0.011754449, + 0.02166063, + -0.01628811, + 0.009154702, + -0.0040387367, + -0.005000051, + 0.02538957, + -0.009890464, + -0.01170671, + 0.012713959, + -0.019250026, + -0.019869644, + 0.005730457, + 0.0020334704, + 5.498454E-4, + -0.013153493, + 0.017734896, + -0.03139108, + -0.019649288, + 0.02085992, + -0.018888125, + 0.014538285, + 0.0028232613, + -0.008181513, + 0.022223415, + 0.010801832, + -0.03358246, + 0.020652013, + 0.0042148014, + -0.008678219, + 0.012448694, + -0.015856104, + -0.030782215, + 0.023186458, + -0.022775149, + -0.01335579, + 0.0032211181, + -0.011120265, + 3.0220117E-4, + -0.0023508542, + 0.012321582, + -0.0077745477, + 0.011925545, + -0.001732939, + -0.016573688, + -0.010671923, + 0.019319363, + -0.010132864, + 0.003334275, + -0.0077539203, + -0.017301412, + -0.00492828, + 0.0047077336, + 0.014000644, + -0.021795914, + -0.011193221, + -0.0071425796, + -0.032716136, + -7.560012E-5, + 0.019885333, + 0.006342475, + -0.015270489, + -0.02384582, + -0.009255902, + -0.0060981116, + -0.012310444, + -0.005994927, + 3.9858594E-5, + 0.01814954, + 0.012836259, + -0.0077413023, + 0.009572311, + -0.0011604509, + 0.01219856, + -0.001457682, + -9.1228E-4, + -0.011987528, + 0.006635028, + 0.020614423, + -0.0063051004, + -0.015127723, + 0.009001546, + 0.0041725766, + 5.1050435E-4, + -0.028212283, + -0.0051112985, + 0.0040415656, + 0.014853334, + -0.0076856688, + 0.012621975, + 0.0062521757, + 5.1621348E-5, + -0.0064134994, + -0.04383026, + -0.023718052, + -0.0041278317, + -0.017368753, + 0.010762116, + -0.02029674, + -0.008257347, + -0.020740481, + 0.0013053567, + 0.0054893913, + -0.0028306448, + -8.865563E-4, + -0.00432173, + 0.017578922, + 0.026436806, + 0.028709373, + -0.0045683505, + -0.014611101, + -0.0135860955, + 0.0037766823, + -0.018184274, + -0.017129334, + -0.017564053, + -0.027227528, + -0.008996549, + 0.034173634, + -0.020240646, + 0.0026912745, + 0.004005919, + 0.024896072, + -0.014992953, + 0.0361956, + 0.012090391, + -0.0050846403, + -0.011379719, + -0.006545694, + -0.012220808, + -0.015649062, + -0.0013201922, + 0.005432794, + -0.001892653, + 0.00113375, + 0.004587638, + 0.0019199814, + -0.012648462, + 0.02169952, + 0.005908392, + 0.010592445, + -5.296108E-4, + 0.004867877, + -0.0035330772, + 0.012098994, + -0.0036073735, + 9.637859E-4, + 0.014636367, + 0.014079524, + 0.035263862, + -0.0015887485, + -0.0020651713, + -0.028498594, + 0.012853195, + 0.0037317406, + 0.0060963035, + 0.007529656, + 0.0021362307, + 0.015092753, + -0.014259607, + -0.0026496318, + 0.015527558, + -0.012986856, + -0.02260374, + -0.0029987493, + -0.012235803, + 0.0027946646, + 0.011087782, + 0.021798281, + 0.01754592, + -0.005518178, + 0.001406038, + -0.020870484, + 0.016439317, + -0.0033502202, + 0.029999629, + 0.008737353, + 0.0050261347, + 0.0019605542, + 0.0056765536, + 0.017023556, + -0.03963428, + 0.044532802, + -0.012057433, + -0.008705627, + 0.015956547, + -0.009311454, + 1.814585E-4, + -0.014872934, + 0.03246044, + 0.013988917, + 0.0058499523, + 4.121281E-4, + -0.022060204, + -0.013633672, + 0.0028745162, + -0.004392, + -0.0070367935, + -0.005056599, + 0.0015725949, + 0.0026942124, + 0.0045473045, + 0.022225266, + -0.015239982, + -0.020753581, + 0.013979642, + -0.005622736, + -4.534358E-4, + -0.006104562, + -0.010441038, + 0.01991206, + -0.013612129, + -0.023737198, + 0.009218717, + 0.004055459, + -0.017826425, + -0.006482033, + 0.008737752, + -0.030817207, + -3.9143141E-4, + 0.032621037, + 0.002654882, + 0.026332777, + -0.038080033, + 0.00791887, + -0.007432453, + 0.017414814, + 0.0041462556, + -6.673464E-4, + -0.005203091, + 0.009862938, + 0.01025067, + -0.006332388, + -6.6026143E-4, + -0.011135534, + -0.010818965, + 0.014740026, + -0.0040736324, + 0.015091651, + -0.011928806, + 0.026686631, + 0.0216868, + -0.0012820071, + -0.0041271728, + 0.0040119616, + 0.009235011, + -0.009194671, + -0.010830448, + 0.0022453272, + -0.007847877, + -0.008758714, + -0.015417635, + 0.0011808085, + 0.012065359, + -0.001753188, + -0.015737062, + 0.013275016, + -0.015250832, + 0.02301374, + -0.016090972, + 0.010446266, + -0.0071250587, + 0.018625595, + 0.0012599439, + 0.0055766157, + -0.025091343, + -0.01837264, + -0.012266244, + -5.4663623E-4, + -0.005088853, + -0.007670437, + 0.0033063805, + 0.029366545, + -0.012134993, + 0.0062150187, + -0.014221603, + 0.011121572, + 0.0067813904, + 0.018226316, + -0.030971559, + 0.0031436721, + 0.02148959, + -0.01340009, + -0.008367636, + -0.01346916, + -0.011470967, + 0.023518847, + -0.019050904, + -0.017454803, + -0.021637138, + -0.01696206, + 0.014071653, + 0.008795938, + -0.0041676466, + -0.010467689, + 0.01372845, + -0.00935346, + 0.0073198327, + -0.01018058, + -0.0070827208, + -0.022190139, + -0.00555156, + -0.0023346222, + -0.0049070152, + -5.746102E-4, + -0.023324665, + -0.00755112, + 0.016892413, + 0.015906306, + 0.01194453, + 0.022326648, + -0.003488442, + 0.01724045, + -0.013041064, + -0.0014621934, + -0.03257276, + -0.0019456422, + -0.017292973, + 0.0034765487, + 9.26675E-4, + 0.015176207, + 0.0010416928, + -0.012354863, + 0.005439759, + -0.029432118, + -0.028667333, + 0.008850386, + -0.014491191, + 0.014298718, + -0.012239424, + -4.531673E-4, + 0.013821, + -0.015049219, + -0.011042467, + 0.010589573, + -0.003056625, + 0.018269321, + 0.011522116, + -0.008255555, + -0.014870974, + 0.005739601, + -0.020353435, + 0.0016480436, + 0.018018823, + -0.015419778, + -0.021787373, + -0.020695109, + -0.0028732033, + -0.0028111958, + -0.020870635, + 0.0034239027, + 0.022652011, + -0.0028862483, + 0.029488388, + 0.0033717344, + -0.003925643, + -0.008005539, + 0.010978765, + 0.0034882317, + 0.0031964611, + 0.009628203, + -0.012589033, + 0.012892956, + 0.019189175, + -0.008959116, + 0.004169561, + -0.0016316678, + -0.0040240246, + -0.011241145, + 0.013977871, + 0.023242371, + 0.019574191, + 0.0039728913, + -0.029834453, + 0.0023823325, + 0.015627775, + -0.0074612484, + -0.0040502497, + 3.512018E-5, + -0.012177377, + -0.003582103, + -0.012559692, + 0.0036671385, + 0.00993919, + -0.018610278, + 0.017215421, + -0.008684777, + -0.0062348223, + 0.0033462956, + 0.005047514, + -0.001649352, + 0.0048575723, + -0.0075501683, + -0.024426367, + 0.012528785, + 0.01779853, + 0.017394723, + -0.016021384, + 0.010405413, + 0.017391702, + 0.025784094, + -0.019262385, + 0.005751946, + 0.030830437, + 0.018637054, + -0.00511497, + -0.017485125, + -3.6584173E-4, + 0.027157806, + 0.0046126023, + -0.0077058696, + -0.01481124, + -0.019632071, + -0.012834171, + 0.03443851, + 0.01861776, + -0.015100205, + 0.008809, + -0.007335131, + 0.028071476, + 0.01969125, + -0.009491975, + 0.023511417, + -0.02607115, + -0.01106846, + -0.02633699, + 0.004670203, + 0.025259187, + 0.007219326, + 0.011256169, + 0.003747208, + 0.027732441, + 0.0019559024, + 0.016550712, + -0.041782387, + 0.02603953, + 0.0018560636, + 0.0052901125, + 0.0016434662, + 0.0076979757, + -0.0041202777, + 0.001396605, + 0.0117268525, + 0.007752465, + -0.0027483262, + -0.008516837, + 0.012600089, + 0.00801894, + -0.004534971, + -0.0227629, + 0.016494906, + -0.012879832, + -0.0014951853, + -0.011621221, + -0.004979737, + 0.0034806777, + -7.1579707E-4, + 0.006030944, + -9.1811205E-4, + 0.008260121, + 0.0054903007, + -0.00545575, + -0.0044053644, + 0.007250713, + -0.027891155, + 0.018456722, + -0.0019693403, + -0.024179833, + 0.02165176, + 0.022210518, + -0.03087548, + -0.0040272605, + 0.0031607668, + 0.008683692, + 0.026639203, + 0.0047410466, + -0.022241535, + -0.010973995, + -0.01256653, + 0.011269649, + 0.017161198, + 0.011031581, + 0.021358307, + 5.350027E-4, + -0.0023078038, + -0.01035695, + -0.005917074, + 0.015863903, + 0.012556145, + -0.0039027112, + -0.016404854, + 0.0038196149, + 0.0024722212, + 0.009648608, + 0.003618949, + -0.0013133007, + -0.0041921516, + -2.843221E-4, + -0.02006805, + 0.048172165, + -0.011104731, + -0.007152665, + -0.021776415, + -0.014096885, + 0.0034907127, + -0.013343936, + -0.032814547, + -0.016345395, + -0.0012393437, + 0.0015797645, + 0.028328914, + 0.01663574, + 0.0022998138, + -0.005337289, + -0.0064091315, + 0.027923567, + -0.0035578266, + -0.0144801745, + -0.02095309, + -0.016947355, + -0.0032970726, + -0.011216572, + 0.0063923453, + 0.002285207, + 0.010672401, + -0.023838, + 0.012456177, + -0.004488526, + 0.008379942, + 0.033513777, + 0.03194592, + -6.656036E-5, + -0.007178643, + 0.025066467, + -0.01749274, + 0.011767153, + 0.017458236, + 0.019468127, + -2.445275E-4, + 0.007812421, + -0.018542321, + -0.011698505, + 0.020163056, + 0.010387387, + -0.012731054, + -0.03127448, + -0.018347356, + -0.024219664, + 7.2579284E-4, + 0.016001299, + -0.011548503, + 0.018237626, + -0.014267645, + 0.038868256, + -0.022445528, + -0.0058981106, + -0.006141138, + -0.019055946, + 0.020870013, + 0.015038117, + -0.03047726, + 0.033822127, + -0.013142442, + -0.006884236, + 0.009611053, + -0.0028293296, + -0.011829318, + 0.017682096, + 0.010271495, + 0.005534909, + -0.014255922, + -0.007148678, + 0.0085448325, + 0.0062651364, + 0.023455411, + 0.008394807, + 0.009234577, + -0.0031193066, + -0.004331699, + -0.014658258, + 0.0022814039, + 0.0013401099, + -0.010580342, + -0.0066999597, + -0.004904173, + -0.0062560495, + 0.005584784, + 0.009685908, + 0.002718955, + -0.019266002, + 0.022815807, + -0.004652745, + 0.02143771, + -0.011222941, + 0.0062824744, + -0.0015520455, + 0.002064669, + -0.0113474, + -0.016793277, + -0.0064545693, + 0.006423693, + -0.008447727, + 3.382788E-4, + 0.0070599127, + -0.00323696, + -0.014289723, + 0.0034000764, + -0.0010480082, + -0.0016376491, + -0.013381463, + 0.04577894, + -0.015556987, + 0.0126045905, + -0.023782462, + -0.0028841936, + 0.012745342, + -0.0041055544, + 0.016215242, + 0.013678984, + 0.02005891, + 0.008935179, + 0.0012838466, + 0.018147126, + 0.0068507874, + -0.015394674, + -0.025646418, + 0.0027562166, + -0.00525613, + -8.997737E-5, + -0.0048084524, + -0.023183873, + -0.006933616, + -0.021320855, + -0.011854608, + -0.006833436, + -0.0023157462, + 0.005073663, + -0.012836977, + -0.03993148, + -0.0053488845, + 0.014736912, + 0.016657466, + 0.01219405, + -5.3323206E-4, + -0.003940602, + -0.002141258, + 0.011610615, + 0.015975142, + 0.021180958, + 0.0025190937, + -0.02253083, + -0.0021649576, + -0.029441994, + 0.013989902, + -0.01672294, + -0.006026439, + 0.022855783, + -0.019935673, + -0.030175261, + 0.0025631557, + -0.008829843, + -2.470272E-4, + 0.020777524, + 0.02196578, + 0.012252627, + 0.0014179165, + 0.0057125213, + -0.013598433, + 0.0070237503, + 0.014737486, + 0.02544893, + -0.035044383, + 0.02065399, + -0.0033075328, + -0.039337136, + 0.034111116, + -0.01847927, + 0.0032404067, + 0.0064535434, + -0.0011828517, + 0.014471217, + 0.011208458, + -0.01790525, + 0.013335433, + 0.0023841872, + -0.007073673, + -0.026961891, + 0.012952658, + -0.013094265, + -0.008637275, + 0.022685483, + -0.010902072, + 0.023519658, + -0.015026619, + 0.015061524, + 0.02095103, + 0.024693584, + -0.0014471204, + -0.0016933117, + -0.017795116, + 0.011191764, + -0.005844506, + 0.00812009, + 0.015918717, + 0.020745883, + 0.01369163, + -0.004926383, + -0.008073737, + 0.0012471653, + 0.01345472, + 0.0061445376, + 0.015784817, + 0.008614691, + 0.021202508, + 0.0069734766, + 0.016526889, + 0.017095868, + -0.019540926, + -0.009358952, + -0.008904926, + 0.02456578, + 4.907369E-4, + -0.016970675, + 0.016033456, + 0.0063647563, + -0.0062008156, + -0.01292352, + -0.00526094, + 0.0025168948, + -0.024359671, + 0.013841651, + 0.006015706, + 0.0105287125, + 0.00877118, + -0.01553635, + -6.711748E-4, + 0.0050995867, + -0.0028204822, + 0.003453672, + 0.02386092, + -0.0067780134, + 0.009450249, + -0.0024286893, + 0.024527641, + -0.018380605, + 0.025915265, + -0.014023667, + 0.006210892, + 0.02420552, + -0.011217846, + -9.2643715E-4, + -0.023826655, + 0.0077574546, + -0.012413333, + 0.01590992, + -0.023788223, + -0.0065657524, + 0.010472117, + -6.2747655E-4, + 0.036631156, + 0.01903525, + -0.0027962755, + 0.012266595, + -0.01568482, + -0.027683524, + 0.0066880905, + 0.00799603, + 0.0063676503, + 0.018136619, + -0.016037513, + -0.0017489583, + -0.0059266593, + -0.023639437, + 0.01029051, + -7.2563626E-4, + -0.0029557333, + -0.0049683573, + 0.0024762126, + -0.0012596986, + -0.009460878, + 0.005489714, + 0.0079641165, + -0.0010887461, + -0.0033695425, + 0.0015027345, + -0.023703255, + -1.4124361E-4, + -0.010966995, + 0.017687904, + -0.0019556447, + 0.026524587, + -0.0257774, + 0.01962654, + -0.018500574, + -8.378915E-4, + 0.004295082, + 0.019689675, + 0.009134809, + 0.00577549, + 0.011511251, + 0.0058147837, + 0.016362328, + 7.4728567E-4, + 0.013647161, + 0.031474907, + 0.009939685, + -0.025983052, + 0.022299638, + 0.022018682, + 0.017091203, + 0.0068352907, + -0.009720377, + -0.004855715, + 0.008024009, + -0.0040583094, + -0.019306265, + -0.0107999, + 0.011261705, + 0.0053389943, + -0.008542834, + 0.00483439, + -0.003346079, + 0.0083924, + 0.0010642165, + 0.038167626, + 0.014402355, + -0.013834186, + 0.0022329632, + 0.007529081, + -0.006606449, + -0.021652251, + 0.008403797, + 0.023080584, + -0.04572354, + 0.016839426, + -0.01707632, + -0.013564887, + 0.02097553, + -0.01037842, + -0.018466162, + 0.020565843, + -0.015820034, + -0.023115564, + 0.0077415225, + 0.013748415, + 0.009267755, + -0.0053681196, + 0.011723361, + -0.018807828, + 0.014258449, + -0.0030996744, + -0.010518783, + 0.01521261, + -0.030976146, + 0.0024791097, + -0.02867639, + 0.021632055, + 0.015765205, + -0.0130933225, + -0.015017823, + -0.01653372, + 0.004908966, + 0.0031684737, + 0.013361461, + -0.024406629, + -0.011410353, + -0.010343935, + -0.022405976, + 0.0179651, + 0.00425305, + -0.007151444, + -9.8725664E-5, + -0.006140084, + 0.008954746, + -0.0056509967, + 0.008874186, + 0.02555605, + 0.0060672145, + -0.0076096854, + -0.019483063, + -0.0030833122, + 0.005036624, + 0.012126493, + -0.010114677, + 0.0011413142, + -0.011506542, + 0.023110744, + 0.0012999529, + 0.024634833, + 0.010989933, + -0.0036334018, + -0.0059369607, + -0.020350015, + -0.008807311, + 0.0048149214, + -0.014423269, + 0.007423077, + -0.018387496, + 0.050353747, + -6.308108E-4, + -0.022547157, + 0.005129636, + -0.0086694, + -0.0025440136, + 0.024629617, + 0.008034553, + 0.0055683632, + 0.0039903647, + 0.012771688, + 0.0117435055, + 0.03067864, + -0.02022896, + -0.0027192398, + 0.003019725, + 0.021704137, + -0.02053896, + 0.016977463, + 0.018542128, + 0.030234342, + 0.03349463, + 0.03091789, + 0.009677331, + 0.010809985, + 0.0102667585, + -0.011858691, + -0.018852867, + 4.7531107E-4, + -7.165708E-4, + 0.0017359797, + -0.013414767, + -0.01933391, + -0.018934743, + 0.01128858, + -0.017494988, + -0.00522419, + 0.015106537, + -0.026517091, + 0.016336044, + 0.013935097, + 0.03331745, + -0.012036547, + -0.0045411247, + 0.0030577674, + 0.020287562, + 0.0060243635, + -0.01699715, + -0.047881667, + 0.02421955, + -0.0062145274, + 0.027917575, + -0.012008412, + -0.015293659, + -0.0024496359, + -0.00947419, + -0.015006247, + 0.010049452, + -4.8443687E-4, + 0.013111255, + -0.014440224, + -3.4316874E-4, + -0.010340131, + -0.0044687954, + -0.010362882, + 0.00862178, + 0.0058880346, + 0.011372478, + 0.0053436086, + 0.04384305, + -0.016316982, + 0.0037964631, + -0.0028567626, + -0.020794269, + 0.015685985, + 0.014575379, + -0.02282658, + 0.017520526, + 0.0035179919, + -5.6787475E-4, + -0.0012973187, + -0.004489966, + -0.002149484, + -2.3697277E-4, + 7.016475E-6, + -0.0036154299, + 0.018263645, + 0.001392689, + 0.0035886504, + 0.00982988, + 0.007117722, + -0.0013580003, + -0.004719253, + -8.566521E-5, + -0.01205934, + 0.011414715, + -0.032569695, + 0.008978999, + -0.0014294855, + 0.02133838, + 0.019528551, + 2.507463E-4, + 0.0049997824, + -0.0074113477, + 0.0054522636, + 0.018982932, + -0.0021577838, + -0.014758676, + 0.0057264133, + -0.039414644, + 0.02262321, + 0.0128026875, + -0.012598369, + -0.011761742, + 0.01860733, + -0.011680929, + -0.02030957, + 0.029909182, + 0.0037650864, + 0.027714774, + 4.1175925E-4, + -0.0019618217, + 0.012335631, + -3.2807366E-5, + 0.010558262, + -0.0103865955, + -0.01887687, + 0.011307683, + 0.029942924, + -8.000648E-4, + 0.013365574, + -0.023684772, + 0.022741659, + 0.014848599, + 0.0046259225, + -0.002894515, + 0.0059902756, + 0.008661561, + -0.01566113, + 0.03689517, + -0.018756105, + -0.008502461, + 0.001025978, + -0.020405946, + 0.017667515, + -0.02742388, + 0.012045573, + 0.01977339, + 0.013055173, + 0.014174923, + 0.022985676, + 0.004351606, + 0.030846417, + -0.022212613, + 0.019349247, + 0.0028603256, + 0.0132954065, + -0.024906425, + -0.0028384654, + 0.030933877, + -0.018184008, + -0.010335896, + 0.028578684, + -0.02598608, + -0.01978966, + -0.016574197, + 0.050730217, + 0.021466305, + -0.015147998, + 0.004839801, + -0.0013730631, + 0.027679883, + 0.032833096, + 0.008891129, + 0.004397151, + 0.010780111, + -0.011722258, + 0.0049697086, + -0.030916534, + 0.0033713356, + 0.0042404854, + -0.009809715, + 0.005367055, + -0.0014998673, + 0.0031784924, + -1.9603792E-4, + -0.008006418, + -0.017439248, + -0.014897524, + -0.0013066642, + 0.00876372, + 0.02791457, + -0.014904368, + -1.5504997E-5, + -0.0072369394, + 0.0012958212, + -0.02109209, + 0.017343817, + -0.006425762, + 0.008199978, + 0.023857154, + 0.0068106344, + 0.012103726, + -0.01601951, + -0.013645495, + -0.025391301, + -0.0025330344, + -0.011222027, + 0.004850894, + -9.489887E-4, + 4.5678375E-4, + -0.010375961, + -0.019657208, + -0.0058657713, + 0.006903144, + 0.00843268, + 0.0017497967, + 0.004506533, + 0.008709286, + -0.0029608717, + -0.008999501, + 0.005712132, + 0.021113059, + 0.0030415617, + -6.138012E-4, + -0.006549447, + 0.01103577, + 0.02018549, + -0.016918994, + 0.014972202, + -0.02182062, + 0.015930407, + 0.0056343717, + -0.0018367367, + -0.01550945, + -0.0150913205, + 0.031290296, + -0.014300803, + -0.019311996, + 0.01540864, + -0.0019360106, + 0.0034363745, + 3.0089803E-5, + 0.0026024631, + 0.01655766, + 0.02008381, + -0.0051044845, + -0.020335522, + -0.014137514, + 0.02047564, + -0.010195209, + -0.014665961, + -0.008325844, + -0.0024985052, + -0.0011353526, + 5.000656E-4, + 0.0041783433, + -0.011416711, + -0.007981095, + 0.0054893526, + 0.0010741537, + -0.005791886, + -0.008948732, + 0.004515275, + -0.009841314, + -0.006947511, + -0.0020124349, + -0.009846705, + 0.0054799872, + 5.7312027E-5, + 9.882448E-4, + -0.014256218, + -0.016115466, + -0.014710045, + -0.018603371, + 0.008932518, + -0.02023919, + -5.507518E-4, + -0.0040781964, + 0.017574644, + 6.653556E-4, + -0.009539596, + -0.009753134, + 0.016537886, + 0.012703468, + -2.028603E-4, + -0.004064171, + -0.027213227, + -0.015842024, + -0.036519203, + -0.021491334, + -0.02267064, + 4.5123994E-5, + 0.026606407, + -0.011965579, + 0.033842802, + 0.029671375, + 0.0024223365, + -0.020431018, + -0.01143239, + -0.0025409241, + -0.0023855704, + 0.007925364, + 0.003130017, + -0.0091191605, + 8.07522E-5, + 0.001577341, + 0.003926817, + -0.014609143, + -0.015435822, + -0.0040231217, + -0.026478669, + 8.205059E-4, + -0.009362418, + -0.008610802, + -0.030664412, + 0.0023064276, + -8.4746786E-4, + -0.024763282, + 0.004556645, + 0.0011749943, + 0.030695366, + 0.0014407673, + -0.0153663615, + 0.01873213, + -6.468643E-4, + -0.011769425, + 0.0060995948, + 0.018571123, + 0.0055747647, + 0.019648638, + 0.025451649, + -0.02548046, + -7.431639E-4, + -0.005929031, + -0.009688248, + -0.006968532, + 0.009071419, + -0.009165093, + -0.0106193805, + -0.012327195, + 0.015973562, + 0.009189407, + -0.005764798, + 0.0066484394, + -0.013287557, + -0.0015948361, + 0.0077301804, + -2.0078337E-4, + 0.002687323, + 0.024413744, + 0.02100212, + -0.016543312, + -0.035631012, + -0.020888394, + 0.023245888, + -0.006704515, + 0.008569194, + 0.016928239, + -0.027130883, + -0.008839462, + -0.018827934, + 0.015791666, + 0.0059704543, + -0.005838944, + 0.00952379, + -0.030156597, + -0.0023530172, + 0.01749702, + 0.025259186, + 0.005938391, + 0.01883865, + -0.025914798, + 0.00669751, + -0.0244045, + 0.0066351355, + 0.021801649, + 0.0026170085, + -0.0075591737, + -0.008856011, + 0.0043517193, + 0.017048772, + -0.019402688, + 0.014776466, + 0.024018912, + -0.008746839, + 0.034870986, + -0.006140074, + 0.009019377, + -0.030073632, + 0.015826639, + 0.02147258, + 0.015425972, + -0.0067701153, + -0.009092964, + -0.0074129635, + 0.007479689, + -0.015976015, + 0.002978937, + 0.0084492015, + 0.007780858, + -0.00464137, + -0.0137070455, + -0.0042893267, + -0.0044907243, + -0.006641439, + -0.009046165, + 0.021860382, + 0.006942913, + 0.014188105, + -0.005813459, + 0.015514664, + 0.0018663638, + -0.009597549, + -0.021425717, + 6.348128E-4, + 0.0046499856, + 0.00844442, + -0.014870304, + -0.0016389143, + -0.008141926, + 0.025316065, + -0.034447514, + 0.031491727, + -0.002634868, + 0.020818003, + 0.011274249, + 0.016472755, + -0.0160571, + -0.023855219, + -0.019432114, + -0.028528698, + 0.022192514, + -0.0040888675, + -0.021016637, + -0.0035998903, + -0.014143075, + 0.007249006, + 0.0068184882, + -0.011784024, + -0.0076727313, + 0.012411804, + 0.008898423, + -0.013120204, + 0.024946034, + 0.0033187564, + -0.023111625, + -0.0041529657, + 0.009431208, + -0.011028083, + -0.02216677, + -0.011206971, + 0.018028501, + -0.0018992921, + -0.025673145, + 0.003107417, + 0.0141607635, + -0.02616839, + 0.006558529, + 0.0052964855, + 0.0364447, + -0.01611446, + 0.018359642, + 0.009926934, + 0.011059563, + 9.702688E-4, + -0.008785686, + 0.016919142, + -0.008942892, + -0.013768155, + -0.019926732, + 0.030603537, + -0.00802011, + 0.02414344, + -8.445619E-5, + 0.0014438774, + -0.0109818885, + 0.025204023, + -0.020096492, + -2.1584412E-4, + -0.017667951, + -0.006456071, + -0.016769469, + -0.0069597242, + -0.0045286934, + 0.023974132, + 0.006850012, + 0.0074187373, + -0.008589281, + 0.02627026, + -0.0035237668, + 0.021965219, + 0.006293828, + -0.017475225, + 0.0031186133, + -0.0054804846, + -0.010347772, + 1.4543023E-4, + 0.00729119, + -0.005680145, + -0.0026616321, + 0.0308911, + 0.036520123, + -0.023546068, + 0.0056454693, + 0.0069843666, + -0.005892001, + -0.006041048, + 0.005518833, + -0.006955747, + 0.0066180974, + -1.9453668E-4, + 0.03520089, + -0.011156202, + 0.014150497, + -0.001993263, + 0.0050908043, + 0.05075421, + 2.7427118E-4, + -0.0030343824, + -0.0042558885, + 0.012500908, + -0.006013556, + -3.673642E-4, + -0.010129508, + -0.030830309, + -0.019627498, + -0.015044821, + 0.020916482, + 0.0018511856, + 0.008197661, + 0.016411696, + -0.028368188, + -0.015526755, + -0.018441856, + -0.006158028, + -0.022244781, + 0.024570841, + 0.0039568595, + 0.008142701, + -0.041837428, + -0.010589838, + 0.007241224, + 0.017991696, + 0.015485723, + 1.1886141E-5, + 0.03077659, + 0.034302436, + -0.009480559, + -0.010451717, + 0.026841363, + -0.01783996, + 0.026039144, + 0.0048859254, + -1.515155E-4, + -0.037586436, + 0.00390394, + -0.01538749, + 0.009539167, + 0.0046323645, + -1.6305101E-4, + 0.0078070643, + -0.0175975, + 0.0032663315, + 0.0016755615, + -0.012341094, + -0.022785267, + 0.015174959, + -0.018652316, + -0.006688131, + -0.024991333, + -0.017229825, + -0.03946846, + -0.007010961, + 0.02334701, + -0.0064457348, + 0.007114454, + -0.031981144, + -0.009681738, + 0.029312465, + -0.0037584691, + -0.020475283, + -0.010139626, + 0.012539603, + -0.014705167, + 0.010415179, + 0.011033569, + -0.01595392, + 0.005563324, + -0.002651824, + -0.0028838068, + -0.02636748, + 0.011493177, + -0.028890118, + -0.014011611, + 0.03456509, + -0.011659168, + -0.010220074, + -0.025810955, + 0.019072872, + -0.0045870445, + -0.017224293, + 0.014261037, + -0.008480556, + -0.0065011196, + -0.03596079, + 0.0037649658, + -0.009500814, + 0.023795448, + -0.026867338, + -0.026770774, + -0.035790414, + -0.0060186726, + 0.017530855, + -0.017073648, + 0.022077503, + -0.004156732, + 0.008508439, + -0.009643198, + 0.009899936, + -0.009576639, + -0.019860316, + -0.0074240146, + 0.018928261, + -0.03213969, + 9.80348E-4, + 0.008726327, + 0.034107324, + -0.0092964545, + 0.012338549, + -0.020617975, + 0.005494281, + -0.015086374, + 0.010328738, + -0.0093782, + 0.014955317, + -0.018007008, + 0.019272387, + 0.024521785, + -0.0022769345, + 0.016110836, + -0.03337622, + -0.032097336, + -0.004750773, + 0.026291829, + 0.004531249, + -0.029499516, + -0.011883929, + -0.024010196, + 0.0034843213, + 0.012196222, + 0.0015061056, + -0.013265652, + -0.026697684, + 0.02414179, + -0.0012409142, + 0.0021411222, + 5.9287285E-4, + 0.024722962, + 0.005919842, + -0.024728505, + 0.020936104, + -0.003983149, + -0.012773942, + -0.033039548, + 0.0017305705, + -0.017505707, + 0.01761802, + 0.018302435, + 0.017798034, + -0.0011394169, + -5.637883E-4, + -0.019411707, + -0.0090168165, + 0.0070244935, + 0.008423097, + -0.006695496, + 0.0057056625, + -0.009134616, + -0.009846751, + -0.023279259, + 0.013085948, + 0.016184123, + 0.01125236, + 0.0057803625, + -0.008423347, + -0.0031172538, + 0.008771879, + -7.156327E-4, + -0.0073941075, + 0.0034766868, + 0.0034188111, + 0.026236469, + 0.011626621, + 0.008046184, + 0.0041097016, + 0.014473019, + 0.017961657, + 0.0020224673, + -0.0065777847, + 0.0031928944, + -0.010100069, + 0.015461727, + 0.012017566, + 0.04318556, + 0.03152232, + 0.002136205, + 0.0076733325, + -0.007281247, + 0.010698501, + 0.010885387, + 0.03008751, + 0.018627845, + 0.0018429992, + 0.022392724, + -0.019615587, + -0.004365741, + -0.00624882, + 0.0028087082, + -0.020987742, + -0.01052422, + 0.01037722, + 0.006226213, + 0.0026931518, + -0.004075558, + 7.684724E-4, + -0.008513312, + -0.012944856, + 0.03419351, + 0.008106984, + 0.02649846, + 8.510216E-4, + -0.014749556, + -0.0068620085, + 0.025568921, + -0.0051732664, + -0.021282658, + -0.021098519, + -0.0024939906, + 0.021867728, + 0.0044268384, + 0.0034198284, + 0.022743441, + -0.0044851084, + 0.00686958, + -0.0088720145, + 0.0094122775, + -0.026752682, + -0.008026247, + -0.011200842, + -0.0061330814, + 0.015353696, + 0.0063864943, + 0.005264943, + 0.028547388, + 0.0018499225, + -0.009221874, + -0.0052508954, + 0.0084027285, + -0.006911232, + -0.024687797, + 0.01774585, + 0.009225217, + 0.0040373686, + -0.017844006, + 0.0069021513, + -0.0032007615, + -0.0053528664, + -0.008298588, + 0.015228129, + 0.008430602, + 0.027680462, + -0.0060644345, + -0.01072349, + -0.008820357, + 0.0041417293, + 0.0025312216, + 0.011495949, + -0.025111698, + -0.011732091, + -0.019736396, + 0.009052745, + -0.014078952, + 0.026808308, + 0.0030656692, + 0.025552131, + -0.0063736187, + 0.0054144007, + 0.008163849, + 0.020751702, + -0.0010414083, + -0.0050024698, + -0.0299708, + -0.015014226, + -0.011945283, + 0.027898714, + 0.0028207898, + -0.03818956, + -0.0016724219, + 0.008508735, + 0.016522309, + -0.030261481, + -0.0011876321, + 0.0036347995, + -0.014844052, + -0.015231428, + -0.012386242, + 0.0019827557, + -2.9028687E-4, + 0.0061757998, + 0.017118845, + 0.0025032302, + 0.009876049, + -0.005785319, + 0.0038773057, + 0.0034867232, + -0.00653541, + -0.011837814, + -0.005224623, + -0.0019694576, + 0.014365864, + 0.00672904, + -0.014226881, + -0.008287215, + -0.0062538674, + -0.010427033, + 0.017876042, + 0.023019074, + 6.6482107E-4, + -0.0025979562, + 0.004194509, + 0.0058651427, + 0.036276955, + 0.008479596, + -0.008460631, + 0.0059148106, + -0.0289543, + 0.01800012, + -0.006081267, + -0.015689999, + -0.023556484, + -0.011166457, + 0.0032396624, + 0.012770618, + -0.012685842, + -0.009204183, + 0.015849613, + 2.5518204E-4, + -0.0065167495, + -0.017552473, + 0.0071340585, + -0.002073953, + -0.0071163387, + -0.008546778, + 0.007631113, + -0.023130354, + 0.009233807, + 0.05385288, + -0.021942876, + -0.009529417, + 0.001589998, + -0.010190778, + 0.010935434, + -0.011285652, + -0.019212872, + 0.006212669, + 0.005618085, + -0.02510188, + 0.0014525916, + -0.014082287, + 0.010269249, + -0.027686086, + 0.016522866, + 0.006534007, + 0.035184037, + -0.008659594, + -0.0033031919, + -0.004999902, + 0.020742428, + -0.013738813, + -0.010824327, + -0.005522395, + -0.0042297975, + 0.0077006603, + -0.010494576, + -0.0017185113, + 0.010245089, + 0.008329394, + -0.02640803, + 0.019954257, + -0.015660593, + 0.018132396, + 0.019077472, + 0.014631507, + -0.01527053, + -0.0034304126, + -0.0080307, + 0.0036445372, + 0.00541087, + -0.02787479, + -9.14198E-4, + 0.008848356, + -0.0011595131, + 0.014020439, + -0.01941463, + -0.025646232, + -0.025081571, + 0.0140428785, + -0.010281096, + -0.016891614, + -0.025811283, + 0.007758112, + -0.011454809, + -0.011861941, + 0.006642975, + 0.0105738165, + 0.012474657, + -0.025617879, + 0.0038161664, + -0.009844524, + -0.029881353, + -0.022486206, + -0.0146021275, + 0.026744863, + 0.009926936, + 0.0097300615, + -0.011050645, + 0.028197844, + 0.009502053, + 0.010360476, + 0.010065522, + -0.028845532, + -0.012221712, + 0.03411814, + 0.0027658024, + 0.0055705975, + 0.015054637, + 0.0024942232, + 0.0034673044, + -0.0058911466, + 0.018551711, + -8.223692E-4, + 0.014362285, + -0.024426132, + -0.0028290171, + 0.014555109, + 0.011430932, + 0.013022151, + 0.0077624605, + 0.021436146, + 0.032979604, + 0.020832282, + -0.017809702, + -0.006611936, + -0.014012635, + -0.004363796, + -0.013725426, + -0.0012974258, + -0.021514514, + -0.021495152, + 0.013280068, + -0.015141085, + -0.029080056, + 0.0212237, + 0.004076695, + 0.013088735, + -0.005638387, + 0.014203631, + -0.030638501, + 0.020302666, + 0.009070683, + -0.037469435, + -0.009553163, + 0.0018943695, + 0.028004939, + -0.015050789, + -0.0012160946, + 0.019776255, + 0.03419502, + 0.01552672, + 0.011207248, + 0.017874325, + 0.019546654, + -5.1800406E-4, + -0.023797551, + 0.004812762, + -0.025207622, + -0.015137174, + -0.023657463, + -0.012875454, + -0.006391837, + -0.004438927, + 0.002941389, + -0.012599798, + 0.02260948, + -0.003507632, + 0.0021484727, + -0.019538268, + 0.0020222454, + 0.002474198, + -0.0010411785, + 0.008644633, + 0.0057245335, + -0.0036488199, + -0.013975461, + -0.024865959, + 0.005185338, + -0.015368873, + 0.031789213, + 0.043615352, + 0.0063310293, + 0.03905808, + 0.01702007, + -0.013452791, + 0.013250674, + 0.022089148, + 0.0065146647, + 0.029703287, + -0.013463469, + -0.00905794, + 0.024227478, + 0.002504529, + 0.0040373956, + -0.0010746011, + -0.004092305, + -0.0017537788, + 0.016369127, + 0.0067720083, + -0.004898773, + 9.892487E-4, + 0.007965275, + 0.005174974, + 0.0041932664, + 0.016103907, + -0.0038000776, + -9.177793E-4, + -3.8743412E-4, + 8.050699E-5, + 0.014075183, + -0.005238695, + -0.016344879, + 0.0032134608, + -0.008915194, + 0.013437491, + -2.0963089E-4, + -0.0031561598, + -0.025585635, + 0.006198795, + -0.022660129, + -0.02285989, + -0.009198127, + 0.009507926, + 0.0047248816, + 0.0021787183, + -0.02642639, + 0.018837, + -0.015134304, + 0.00622227, + -0.004185629, + 0.0038781613, + -0.016230702, + -0.009278822, + -0.002267375, + -0.005672591, + 0.013141374, + -0.007986064, + 0.035518073, + 0.047137506, + 0.028414093, + 0.013283606, + -0.01535364, + 0.0019286278, + -0.012978733, + -0.024515495, + 0.013404781, + -0.016874017, + -0.0041544195, + 0.010310177, + -0.0154781025, + 0.005610234, + 0.004419533, + 0.010609567, + 0.018822694, + 0.01521714, + -0.0027957594, + 0.013799275, + -0.020526044, + -0.0050532133, + -0.02044609, + -0.0166832, + -0.008381398, + -0.0054663653, + -0.012771146, + 0.020293992, + 0.0063100304, + -0.017345566, + 0.035927635, + -0.013527924, + 0.0071752616, + 0.010847161, + -0.014888628, + -0.03191076, + 0.014098969, + -0.00590246, + -0.01110551, + 0.0055918884, + -0.024320599, + 0.04043785, + -0.018022174, + 0.010047922, + -2.445844E-4, + 0.0071983673, + 0.0032562776, + -0.00819456, + 0.003848504, + -0.01076186, + 0.0024426759, + -0.011970851, + 0.022199256, + 0.014028519, + -0.0023171483, + -3.366751E-4, + 1.2733073E-4, + 0.0032479274, + 0.010009366, + -0.01342238, + 0.011327874, + 0.004551752, + -0.022469416, + -0.0023838293, + 0.009123071, + -0.005474851, + 0.019528082, + -0.006821392, + -0.006523169, + 0.01664358, + -0.016076772, + -0.014737399, + 0.00922363, + -0.0018552805, + 0.0035425324, + -0.026808366, + -0.019193036, + -0.011952323, + 0.0094136745, + -0.003938861, + 0.017204627, + 0.017662203, + -0.029163405, + -0.011000136, + 0.01032604, + -0.009404669, + 0.01345984, + -0.0045668324, + 0.005971069, + 0.024638657, + 0.016653953, + -0.013181507, + 0.028550506, + 0.022054883, + -0.0049140295, + -0.011943801, + 4.2579309E-4, + 0.025327208, + 5.4114236E-4, + -0.017559532, + -0.0037500644, + 0.004439558, + 0.011649233, + -0.012417829, + 0.015442805, + 0.011872383, + 0.014374693, + 0.00594608, + -0.014343729, + 0.023022043, + 0.009579795, + -0.008479, + 0.0014652757, + 0.0113756405, + 0.009128909, + -0.004252069, + -0.024359152, + 0.030293813, + 0.0027055272, + -0.020190382, + 7.5950695E-5, + -0.005766824, + -0.019264685, + 0.020057846, + 0.0056588147, + 0.0053775534, + 0.008759922, + 0.016146608, + -9.020538E-4, + 0.009252127, + 0.02106129, + -0.002830345, + 0.025690977, + -0.019998087, + -0.008713456, + -0.012735237, + 0.0010761839, + 0.01833433, + -0.017776472, + 0.009117358, + 0.029187882, + -0.013395421, + -0.013025811, + -0.0050563435, + -0.001122048, + 0.02083051, + 0.02462599, + 0.022044707, + 0.0055902414, + -0.027681554, + 0.013426936, + 0.011052901, + 0.001745849, + -0.028807046, + 0.014736031, + -0.02241385, + 0.014067799, + 0.0033807834, + -0.030857047, + -0.02122508, + 0.039706107, + -0.011344713, + 0.01400772, + 0.008787341, + 0.020543486, + -0.0012572369, + -0.026926298, + 0.019881316, + -0.017010693, + -0.0026285884, + -0.018469311, + -0.0057480787, + 0.007822634, + -0.01705024, + -0.0052038264, + -0.023507679, + 0.037553597, + -0.0035881181, + -0.032306697, + 0.026915966, + -0.0055998787, + 0.010840268, + 0.009185501, + 0.03400546, + -0.0020036777, + -9.99104E-4, + 0.013530033, + -0.0044739284, + -0.0023223036, + 2.864357E-4, + 0.008300872, + 8.117506E-4, + -0.013864276, + 9.084183E-4, + 0.00867674, + -0.0025019855, + -0.013989061, + 1.9370877E-4, + -0.008979553, + -0.008191324, + 0.022974513, + 0.007857119, + 0.0120279435, + 0.0019951432, + -0.02073625, + -0.007693244, + -0.014751863, + -0.01965043, + -0.008483337, + -0.0037939204, + -0.012686339, + 0.0022154476, + 8.07248E-4, + -0.0014209909, + -0.022855017, + -0.017210819, + 0.028526459, + -0.010894802, + -0.044078685, + 0.0035137513, + 0.0113314465, + 0.018582162, + 0.024043098, + 0.012138182, + -0.006199046, + -0.015399846, + -0.0053114067, + -0.0067642853, + -1.549369E-4, + -0.0044759824, + 0.015410694, + -0.011015845, + -0.0019219936, + -0.017399602, + 0.013834738, + -0.0015760135, + 0.0040757684, + -0.009058713, + 0.007061787, + 0.0099276835, + 0.0019279366, + 0.012551164, + -0.011363853, + 0.02754715, + -0.01743892, + 0.003625418, + -0.003428608, + -0.0014402224, + 0.009432684, + 0.0048203343, + 0.0039557433, + 0.007718724, + 4.8129045E-4, + 0.006968672, + -0.0049309162, + -0.0029864137, + -8.865899E-4, + 0.025169598, + -0.02109657, + -0.007024591, + 0.03656519, + -0.007960899, + 0.015088615, + -0.018031744, + 0.011271065, + -0.0075379056, + 0.006915942, + -0.021663079, + -0.009404097, + -0.017085617, + 0.0036081616, + -0.006975988, + -0.012984325, + -0.0034148723, + -0.0042624245, + 0.0023063007, + 0.029341025, + 0.008562652, + 0.022789182, + -0.0060086735, + 0.01563479, + -0.00953889, + 0.019384246, + -0.0022533, + 0.030461708, + 3.895177E-4, + 6.1955146E-4, + 0.0041905413, + 0.0074661835, + -0.019530183, + 2.9300412E-4, + 1.6063977E-4, + -0.02508141, + 0.032668684, + 0.011000225, + -0.010425785, + -0.020215983, + -0.008054461, + -0.004346605, + 0.01583632, + 0.0060746325, + -0.0048668236, + 0.006728927, + 4.175075E-4, + 0.0219318, + -0.006042257, + -0.02244775, + 0.008093631, + 0.008329794, + 0.0012587043, + 0.004799506, + 0.005268038, + 0.015113201, + 0.033190165, + -0.01686845, + 0.023338886, + 0.00918267, + -0.022328708, + -0.00571083, + -0.0010469706, + 0.017582774, + 0.021252822, + 0.006260007, + -0.004901515, + -0.023377169, + -0.0076337038, + -0.0047636824, + -0.039640687, + -0.005452982, + 0.024280727, + 0.0102873575, + 0.008462096, + -0.020992108, + 0.002148545, + 0.012997455, + 0.027098833, + -0.019452, + 0.0119357975, + 0.019634206, + 0.020374088, + -0.021855803, + -0.0029876693, + -0.0010720333, + -0.012557729, + 0.012459631, + -0.0037915576, + -0.0033979968, + 0.008750098, + -0.012243131, + -0.0043566176, + -0.01548084, + -0.014973137, + -0.022247974, + -0.0040104743, + 0.0076408866, + -0.017953873, + -8.959803E-4, + 0.009382519, + 0.004049284, + 0.012038723, + 0.0011499325, + -0.043562073, + -0.0019169585, + 0.015024184, + -0.007378242, + -0.0047685937, + -0.010264094, + 0.010108109, + 0.02648001, + -0.028908368, + -0.014812891, + 0.011558318, + 0.028601462, + 0.039802562, + 0.022665964, + -0.0030537408, + 0.033729356, + -5.6773075E-4, + 0.040261976, + -0.0042880247, + 0.007022708, + -0.010925797, + 0.012625445, + 0.0062069884, + -0.007404302, + -0.009069441, + -0.0075836447, + -0.012335247, + -0.020913884, + -0.02717916, + -0.0053789113, + 0.015593019, + 0.021236926, + 0.0022405942, + -0.020143688, + 0.030675285, + 0.021688845, + 0.015944857, + 0.0065836026, + 0.0042056264, + 0.0024585128, + -0.01294707, + 0.0037156781, + -0.0058718193, + -0.0049666013, + -0.02090064, + -0.018446142, + 0.02002632, + -0.0063877827, + 0.021222394, + 4.1683056E-4, + 0.0083307875, + 0.007980797, + 0.01797088, + -0.028372359, + -0.00719403, + -0.025872111, + -0.010179776, + 0.009392055, + 0.002076315, + 0.0076459204, + -0.0074642366, + -0.02426715, + 0.01594732, + -0.003327427, + 0.0051220166, + -0.022643294, + 0.024984056, + -0.00196273, + 0.0065522147, + 0.015753563, + 0.012388687, + -7.349497E-4, + 0.013510698, + -0.023991682, + -0.008430616, + -0.02048939, + 0.0060214545, + -0.008539512, + -8.094628E-4, + 0.002190148, + -0.02743927, + -0.0055439826, + 0.014400411, + 0.009554953, + -0.022774, + -0.0038249248, + 0.01642848, + -0.0031039608, + -0.024240188, + -0.01101793, + -0.02163509, + -0.0043173474, + 0.01196786, + 0.012689586, + -0.012786777, + -0.023105431, + 0.0011698062, + 0.016556496, + -0.0029861557, + -0.0036236604, + -0.0056310403, + 0.024107767, + 0.00415407, + 5.206772E-4, + 0.009820933, + -0.029273301, + -0.0032794843, + 0.007458324, + 0.0044354666, + -0.01162802, + -0.016469685, + -0.024662623, + -0.011236476, + 0.017524434, + -0.010201015, + -0.005655867, + 0.019204343, + 0.012209267, + 0.009841098, + 0.0017491069, + 0.022193305, + 0.03280433, + 0.017522251, + 0.007815528, + -0.0012928689, + -0.0033941462, + -0.004329608, + -0.008513944, + -0.01051256, + -0.021836886, + 0.03647235, + -0.0013678441, + -0.014739195, + 0.0027828773, + 0.0012787113, + 0.0116346, + -0.0040158895, + -0.0072025647, + -0.0071211713, + -0.003866989, + 0.023612048, + -0.008407726, + -0.022415971, + 0.0011989252, + -0.008840184, + 0.020314978, + 0.0058210073, + 0.00829147, + -0.04341004, + 0.0036200595, + 0.009472414, + -0.00841452, + -0.007147793, + -0.0057886527, + 0.0012999993, + 0.024228428, + 5.7934114E-4, + 0.0059852246, + -0.004566956, + -0.022244442, + 0.0037897723, + 0.006120838, + -0.035665117, + 0.016176183, + -0.01884397, + 0.0022283036, + -0.016643936, + 0.007946338, + 8.631708E-4, + -0.005318819, + -8.873289E-4, + -0.01074988, + 0.011918514, + -0.021573761, + 0.0027224927, + -0.015697002, + -0.028801566, + -0.0055200136, + 0.010267603, + 0.010642224, + -0.011642578, + -0.028709095, + -0.012681875, + -0.006157818, + 0.0027970371, + -0.0057364097, + -0.022936184, + 0.008980983, + -0.008765458, + -0.01209742, + -0.024052389, + 0.005374751, + -0.006934869, + -0.017995168, + -0.013337595, + -0.009178308, + 0.027604785, + -0.010756248, + 0.010224473, + 0.0075301775, + -0.026646592, + -2.270568E-4, + -0.016198874, + 0.004285227, + -0.010207374, + 0.012163861, + 0.013956151, + -0.028801922, + -0.0073972936, + 0.026508508, + 0.015941033, + 0.008983131, + 0.0022295732, + -0.005558784, + 0.0014207035, + 0.0025803724, + -0.012470651, + -3.415635E-4, + 0.013602101, + 0.007853625, + -0.032328416, + 0.0061186445, + 0.011564223, + -0.023392584, + 0.005447362, + -0.013849496, + -0.020632738, + 0.02177053, + 0.0031540722, + -0.03062605, + -0.033113994, + -0.0022998396, + -0.019644761, + 0.009410572, + 0.005090473, + -0.021846522, + -0.0052102082, + 0.0047386214, + 0.03422935, + 0.020313105, + -0.004669294, + 0.023716735, + 0.0015381122, + -0.0056471797, + -0.028440027, + 0.01423065, + -0.0043345354, + -5.407861E-4, + -0.0046183155, + -0.007938867, + 6.242353E-4, + 0.0096231615, + 0.010750729, + 0.0064595584, + -0.016895287, + -0.004753973, + 0.012824394, + 0.02930379, + 0.03114334, + -0.009580178, + 0.030057183, + -0.030748492, + 0.0028632593, + 0.011010767, + 0.018150173, + 3.704668E-4, + -0.0057466794, + -0.003915058, + 0.0037681246, + -0.026328398, + 0.014647294, + -0.027655095, + 4.815901E-4, + -0.0075949416, + 0.002739233, + 0.0050741616, + 0.0031914944, + 0.009848385, + 0.013045132, + 0.013273739, + -0.016512979, + -0.009497128, + 0.01958799, + 0.001787617, + 0.006066521, + -0.024515146, + -0.03635128, + -0.015575637, + -6.386041E-4, + -0.019608147, + 0.0025994927, + -0.027077226, + -0.007410361, + 0.017506694, + 0.007303014, + 0.0036793998, + 0.017349897, + 0.018738769, + -0.017926352, + -0.019642716, + -0.0013926706, + 0.027408794, + -0.0021912206, + 0.019062458, + -0.02247262, + 0.007563316, + 0.006381936, + 0.0090961065, + -0.0038358176, + -0.01651549, + 0.015630266, + -0.021745505, + 0.009449102, + 0.018516418, + -0.009919136, + -0.015045622, + -0.020378403, + 0.0035727615, + -0.0313218, + 0.009853641, + -0.0075494577, + -0.013285553, + 0.012677868, + -7.327183E-4, + -0.004769908, + -0.009341062, + 0.020641923, + -0.009295494, + 0.01116224, + 0.011788786, + -0.0074752583, + 0.01897794, + 0.0020812014, + -0.019285377, + -0.01703791, + 2.018141E-4, + -0.010982034, + -0.02029294, + 0.010833323, + 0.010714603, + -0.008405551, + -0.01024045, + -0.0037822966, + 0.003446207, + 0.009550853, + 0.013400024, + -0.028474594, + -0.0047720964, + -0.010215542, + 0.009162488, + -0.00867393, + -0.012803047, + -0.009694092, + 0.0057998393, + -0.015341827, + -0.011092974, + 0.0090280855, + -0.0070050447, + 0.0057519074, + -0.010953114, + -0.015496025, + 0.023685457, + 0.009152543, + -0.023967713, + -0.0026866463, + 0.009942759, + 0.009140038, + -0.012152993, + 0.002250125, + -3.630927E-5, + 0.0073569096, + 0.009127808, + -0.006600165, + 0.01191092, + -5.244641E-4, + -0.0014929426, + -0.020986905, + 0.005828136, + 4.0980097E-4, + 0.0013221896, + 0.006537017, + -0.014143088, + -0.023433516, + -0.01687497, + 8.190864E-4, + -0.01696163, + -0.016912756, + 0.035702754, + -0.021672342, + -0.0038175392, + -0.02865643, + -0.005869775, + -0.0064502093, + 0.014664992, + -0.021680089, + 0.002753452, + 0.013272359, + -0.006136705, + -0.012586107, + 0.015959656, + -0.01376305, + 0.012800776, + -0.006865357, + 0.0034855343, + -0.012158694, + -0.014208252, + -0.0023218463, + -0.013611824, + -0.023378307, + 0.024823777, + 0.0077054985, + -0.010213742, + -0.018950326, + -0.016845968, + 0.0035583868, + 0.0025916493, + 0.010667366, + -0.02031049, + -0.0040105004, + 8.626385E-4, + 0.009652787, + 0.0013369464, + -0.015131466, + 0.033895046, + -0.019857612, + -0.032740258, + -0.014138911, + 0.007984486, + -0.0038004632, + 0.0014460133, + 0.011375122, + -0.015137345, + 0.002743708, + -0.01906837, + 0.0074374625, + -0.0206756, + 0.025726568, + -0.010643164, + 0.0013443101, + -0.009251964, + -0.0054141963, + -0.0077945376, + -0.0022360422, + -0.005736617, + 0.01426535, + -0.02315457, + -0.016220512, + 0.023217155, + -0.0056937505, + -0.0058385977, + 0.008310104, + -0.0020578427, + 0.013561667, + 0.011408635, + -1.6732741E-4, + -0.0016805129, + 0.009720487, + -0.0029347388, + -0.0033681674, + 0.012234474, + 0.022704933, + 0.018863576, + -0.02573867, + -0.0025609988, + -0.0062817303, + 0.008249712, + 0.0067051454, + 0.0025536024, + -0.0043898583, + -0.010395796, + -0.008520668, + -0.007877153, + -0.036043018, + 0.0043262998, + 0.0314885, + -0.0135854455, + -0.0070107034, + 0.031261843, + -0.026260251, + 0.006556767, + -7.537251E-4, + -0.025051516, + 0.0144929625, + -0.023467114, + -0.0034798798, + -0.013889152, + 0.023612073, + 0.021696111, + -0.008424963, + -0.011693198, + 0.045872282, + -0.00569825, + -0.03684338, + 0.023930093, + 0.031568706, + 0.01107113, + -0.035850536, + -0.019627556, + -0.010434252, + 0.0034893195, + 3.345582E-4, + -0.009845493, + -0.02679852, + -0.0054899487, + -0.005193095, + 0.013892131, + 0.007526873, + -0.0066270973, + 0.013339842, + 0.0054420475, + 0.03459404, + 0.009769302, + 0.0045063957, + 9.2146394E-4, + -0.0054272283, + 0.0032667764, + 0.047406647, + -0.010200158, + 0.014163689, + -0.018373555, + 4.6034937E-4, + 0.0049127126, + 1.4230028E-4, + -0.0152543, + -0.0155274905, + -0.014936686, + -0.031324893, + -0.0039788242, + 0.0259307, + 0.0195135, + -0.014000345, + 0.012900001, + -0.016303249, + -0.024926916, + -0.040111218, + 0.0070916535, + -0.009726935, + 0.008470517, + -0.004927479, + -0.0024680546, + 0.017712306, + -0.024476048, + -0.013703025, + -4.5933604E-4, + -0.010974293, + -0.0026529857, + -9.1103156E-4, + 0.015999887, + -0.0041559464, + -0.0062482026, + 0.021622047, + -0.003230649, + 0.025217121, + -0.009316842, + 0.022151558, + 0.009444624, + -0.007491791, + -0.0014819172, + 0.0064744907, + -0.0050469916, + 9.425703E-4, + 0.010282435, + -0.008066399, + -0.013709399, + -0.0056185056, + -0.011861622, + 0.019672966, + 0.021863222, + -0.034481276, + 0.0030107424, + -0.020881746, + -0.01947426, + -0.0010789759, + -0.04281898, + -0.018503917, + 0.0051402217, + -0.013905981, + 0.021252323, + -0.0048754765, + 0.0025287236, + -0.0021893803, + -0.013465884, + -0.022338856, + 0.0023503052, + 0.015267436, + 0.0030403957, + 0.0030648953, + -0.04515711, + 0.02097873, + -0.0137581555, + 0.00448075, + 0.011964779, + 0.0016669544, + -0.024852157, + -0.0147692785, + -0.011405392, + 0.018806618, + -0.016306322, + -5.5440643E-4, + 0.0049200165, + 0.0030256603, + 0.024275582, + -6.547139E-4, + 0.009639444, + -0.010656691, + -0.014903659, + 0.029221376, + -0.01528798, + 0.017572563, + 0.012921627, + 0.026399747, + 0.037423983, + -0.01029632, + -0.0034512458, + 0.013549167, + 8.1787264E-4, + 0.022522643, + 0.0021828231, + -0.013263764, + 0.0018169249, + -0.036758073, + 0.016927637, + -0.03681761, + 0.00927323, + 0.0029487829, + -0.018353311, + 0.017511206, + 0.0056904163, + -0.042455703, + 0.02908848, + 0.0025119858, + -0.002482005, + 0.017385965, + 0.010567944, + -0.0017779556, + -0.006458237, + 0.0075563905, + 0.011628479, + -0.008847996, + 4.9352844E-4, + 0.025801, + 0.002004982, + -0.0017097449, + -0.013034385, + -0.0050224056, + 7.0894096E-4, + 0.020211283, + -0.0076593976, + 0.007717534, + 0.01523366, + 0.0039667995, + -0.003565628, + 0.0114455, + -0.0058753095, + -0.0012513433, + 0.013066417, + 0.015716491, + -0.012236241, + -0.025417153, + 0.019885825, + 0.010634223, + 0.0011452084, + 1.4892226E-4, + -0.034839913, + -0.01537716, + -0.0031363466, + 0.017921505, + -0.004879817, + -0.006286587, + 0.025543613, + -0.020414406, + -0.0035581642, + 0.0292607, + -0.027433032, + -0.01001593, + -0.03069972, + 0.011154633, + 0.005860146, + 0.0020892085, + 0.019175809, + -0.038350724, + -0.0134122735, + 0.0022892877, + -0.0038598597, + 0.044702396, + 0.019837135, + 0.02830015, + 0.006340772, + -0.005335596, + 7.641644E-5, + -0.00733783, + -0.016118675, + -0.016007379, + -0.01736931, + -7.1061734E-4, + 0.029294314, + 8.934264E-4, + 0.024290284, + 0.016954808, + -0.01651232, + 0.023108859, + -0.010820923, + -0.005154082, + 0.015300978, + -0.0034467946, + 0.018881116, + 9.802936E-4, + -3.6626204E-4, + -1.08182554E-4, + 0.0031854953, + 0.0049620406, + 4.6047415E-5, + 0.013187431, + 0.010246346, + 0.020087227, + 0.012420185, + 0.006465559, + 5.923499E-4, + 0.025300061, + 0.017516688, + 0.0046376246, + 0.0016982371, + 0.010559719, + 8.784657E-4, + 0.024000067, + -0.0163754, + -0.0037325348, + 0.0022095714, + -9.86243E-4, + -0.006647515, + 0.0021641583, + -0.013701514, + -0.0067344476, + 1.0113377E-4, + -0.016892456, + -0.04077598, + -0.0070546665, + 0.011223539, + 0.028271385, + 0.007120944, + -1.7121357E-4, + -0.011724688, + -0.024898786, + 0.0015138688, + -0.0034440686, + -0.005559697, + 0.00616883, + 0.017318204, + -0.011146565, + 0.005736783, + 0.0032273184, + -2.9389982E-4, + -0.009008211, + 0.0059650782, + -0.021237837, + 0.042033188, + -0.013977824, + 5.029411E-4, + 0.013014929, + 0.013479975, + 0.028287258, + 0.0067360583, + 0.016202342, + 0.0015431893, + -0.018254127, + 0.023263454, + 0.037303966, + -0.004241309, + 0.0042442265, + 0.0069771484, + -0.0012932979, + -0.0037149796, + -0.011680251, + -0.021949613, + -0.01752594, + -0.010691531, + -0.0083913505, + 0.0046972795, + 0.012681299, + 0.011062078, + -1.8435228E-4, + 0.009756214, + -3.4957757E-5, + 0.0024905838, + -0.002103808, + 0.022070121, + 0.015025482, + 0.0060425815, + -0.0012347121, + -8.655991E-5, + -0.028098145, + 0.03285014, + 0.021425853, + 0.011923888, + 0.030741071, + 0.018560125, + -0.006000218, + 0.010996922, + -0.007994363, + -0.003664809, + -0.012921624, + -0.0025368559, + 0.0061318944, + -0.0023306594, + 0.008997017, + 0.003341718, + 0.0054537538, + 0.028000364, + 0.028307205, + -0.02477262, + -0.01124981, + -0.0019033817, + -0.03024211, + -0.014129784, + 0.011714333, + 0.03873227, + 0.0050114207, + 0.012746132, + -6.485091E-4, + 0.010516264, + -0.01168762, + 0.008756866, + 0.029851867, + -0.004859249, + -0.012030383, + 5.774959E-4, + 0.0048775994, + 0.009899733, + -0.01726671, + 0.016562147, + 0.011921748, + 0.030837312, + -0.018847678, + -0.020491293, + -0.024903301, + 0.03507697, + 0.027561147, + 0.0060872394, + -0.0014740656, + 0.010793454, + 0.004322466, + 0.015475901, + 0.011707294, + -0.023409432, + -0.013834344, + 0.024061922, + 0.0052494486, + 0.00594556, + 0.0066182995, + -0.0060428926, + 0.009365552, + -0.034545515, + -0.014940685, + 0.001435252, + 0.012006891, + 0.0049660252, + 0.039088454, + 0.005013447, + 5.776299E-4, + 0.00663909, + 0.013057455, + 0.0055600386, + -0.0019918447, + 2.7681183E-4, + 0.020399595, + 5.752829E-4, + 0.005616177, + 0.016757302, + -5.7105743E-4, + 0.013859548, + 0.0045763976, + 0.013109386, + 0.029496651, + 0.010523573, + -0.019874243, + -0.024960276, + -0.008702801, + 5.1820726E-4, + -0.0021816776, + -0.0022162467, + 0.019798184, + 0.013845749, + 0.008929588, + 0.018106611, + -0.029495046, + -0.018085258, + 0.008418209, + 0.021123037, + 0.016686609, + 0.007988272, + 0.0027474028, + 0.030021835, + -0.017995536, + 0.007016126, + 0.024336925, + -0.019094113, + -0.009328494, + -0.0016167973, + -1.4263626E-4, + 0.017174395, + -0.013259189, + -0.0044187973, + -0.026463069, + -0.015089108, + 0.005611463, + 0.013099821, + -0.027490444, + -0.015574199, + -0.03434073, + 0.007751166, + 0.021891942, + -6.191293E-4, + 0.017717777, + 0.0067088567, + 0.011864531, + 0.0110887, + -0.014902449, + 0.022175921, + 0.004071563, + -8.6736676E-5, + -0.02862318, + 0.009099264, + 0.0068782717, + 0.021532202, + -0.0066428944, + 0.014997572, + 0.0017017127, + -0.0034642292, + -0.0016053473, + 0.020469118, + 0.025377307, + 0.0054452447, + 0.0020091934, + -0.02299848, + -0.008968043, + 0.003850556, + -0.001298814, + -0.007839172, + -0.013104851, + 0.013343659, + 0.01174638, + 0.0018691454, + 0.0035252122, + -4.000834E-4, + 0.021352837, + 0.001225712, + 0.021534424, + -0.020103997, + 0.0061312295, + -0.004405725, + -8.84679E-4, + 0.025521342, + -0.008870792, + 0.01211333, + 0.008835691, + -0.0050099394, + 0.01399883, + 0.002702383, + 0.028575651, + -0.025895318, + -0.009408601, + 0.00764237, + -0.00398566, + 0.06567529, + 0.034491286, + -0.004321723, + -0.00844486, + 0.0064530782, + -0.003135946, + 0.0025017043, + 0.0014388878, + 0.01615873, + -0.0051199323, + 0.016687894, + -0.00974953, + 0.0013016731, + -0.0036639685, + -0.017444223, + 0.014948011, + -0.0032366833, + 0.012640524, + -0.0053009526, + 0.011125007, + -0.0042294464, + -0.019971775, + 0.005004878, + 0.005193978, + 0.0041992893, + -0.025576765, + -0.018262647, + 0.01399761, + -0.005151871, + -0.009697204, + 0.01705609, + -0.009784703, + 0.0020754992, + 0.013534408, + -0.007949335, + -0.03503794, + 0.0025715407, + 0.018928234, + 0.010810904, + -0.0040479535, + -0.014858193, + -0.012274766, + -0.0028417986, + 0.012108161, + -0.011679287, + 0.012960624, + -0.007776722, + -0.011280618, + -0.009241582, + -0.0065602576, + -0.018654646, + -1.85076E-5, + -0.0017061204, + -3.5972678E-4, + 0.013605765, + 0.039085384, + 0.0073671704, + 0.025235126, + 0.022838127, + 0.019123103, + -0.008786545, + 0.009764283, + 0.0073024477, + 0.007432537, + 0.025863748, + 0.015699184, + 0.019668262, + -0.0030205075, + 0.008923434, + 0.017330822, + 0.0277555, + -0.0038910634, + -0.0071998774, + 0.0067708874, + -0.0030139498, + 0.0035942262, + 0.0038518673, + 0.0056916866, + -0.0032521216, + -0.004172013, + -0.0022041176, + 0.024732476, + 0.0036449195, + -0.005207675, + 0.015123451, + -0.01740392, + 0.022905601, + 0.008127758, + 0.013045477, + 0.004225891, + 0.03286399, + -0.008791195, + 0.028518261, + -0.003949632, + -0.0016757358, + -0.0067006503, + 0.012163982, + 0.009699274, + -0.0020868713, + 0.017683635, + 0.009248544, + 0.023152562, + -0.0025244984, + -0.011041712, + -0.005744422, + 0.020092461, + -0.007557716, + -0.01633739, + -0.0021889247, + -0.014466108, + 0.007738956, + 0.008749855, + -0.009252824, + 0.0015608568, + 0.015076662, + 0.013887152, + 0.010674407, + 0.012214456, + -0.011695361, + 1.8092402E-5, + 0.00248187, + 7.306134E-4, + -0.004867574, + -0.020137431, + 0.03568525, + 0.00341622, + -0.009995943, + 0.016821075, + 0.005604379, + -0.012409452, + -0.0068254303, + 9.851411E-5, + 0.01753618, + 0.03400556, + 0.029929386, + -0.016064445, + -0.004162696, + 0.016416607, + 0.0052771666, + -0.010515351, + -0.0047785486, + -0.0049600885, + 0.007498402, + -0.026662797, + -0.012409492, + 0.0061759725, + 0.007403021, + 0.008207027, + -0.026122384, + -0.030433005, + 0.017032988, + 0.028883282, + -0.009114717, + -0.019496763, + -0.0040070782, + 0.016482871, + 0.03362943, + 0.033023153, + 0.009671733, + 0.031219492, + 0.0036079779, + -0.013625656, + -0.035884306, + -0.0037713556, + 0.037412416, + 0.016767096, + 0.012800184, + 0.017209852, + 0.011426869, + -9.233221E-4, + 0.0123010725, + -0.02468609, + -0.0076492284, + 0.025995161, + 0.008552644, + -0.0077944403, + -0.0014698589, + -0.007975327, + -0.013938966, + -0.00865092, + -0.012031553, + -0.004421278, + -0.009643797, + 0.005919954, + 0.0068651135, + -0.027399743, + -0.0132084815, + 0.008206617, + 0.001544626, + -0.024203692, + 0.021875653, + 0.025590723, + -0.020244757, + 0.010519089, + -0.004799694, + -8.048557E-4, + 0.010646755, + 0.02308567, + 0.0033337125, + -0.01075869, + -0.0036043024, + -0.00853933, + -0.007829299, + 0.041112714, + -0.012890617, + 0.0058837277, + 0.008117998, + 0.025055038, + 0.0014346441, + 0.011104081, + 0.0076257815, + 0.006017002, + -0.017623022, + -0.0038571137, + -0.04367507, + -0.003592264, + 0.019123336, + 5.5708317E-4, + -0.007596251, + -0.0057378057, + 0.021948643, + -0.022567302, + 0.028161848, + -0.0034888745, + -0.01693745, + 0.008538601, + -0.014745228, + 0.0043104393, + 0.017605465, + -0.014775549, + -0.01432184, + 0.012157841, + -0.0029592179, + -0.018893292, + -0.021505632, + -5.187539E-4, + -0.018797556, + -0.014408886, + -0.0059752855, + 0.0016141284, + 3.236018E-4, + 0.020549178, + 0.025716994, + -0.0016865276, + 0.0049628345, + -0.023710271, + -0.009660162, + 0.002220655, + -0.012237086, + -0.0077377623, + -0.007144949, + 0.003617768, + -0.021603592, + 0.014512024, + -0.016707147, + 0.010556878, + 0.018164698, + -0.003219638, + -0.01803374, + 0.01716777, + -0.0011121797, + 0.02753307, + -0.019882519, + 0.0064577633, + 0.007269083, + -0.0016625855, + -0.020340573, + 0.022527037, + 0.029567612, + -0.034957554, + -0.00124014, + -0.018058412, + -0.013223976, + -3.5676753E-4, + -0.023858564, + -0.01832501, + 0.034512382, + -0.0060784193, + -0.011157869, + 0.0016304346, + -0.026945436, + -0.01437084, + 0.00862997, + 0.0059555536, + -0.016766045, + -0.017223042, + 0.0062437914, + 0.022428555, + -0.0103085125, + 0.023878954, + 0.0147100575, + -0.0072425865, + -0.017709011, + -0.008651332, + 0.021472681, + -0.0077302377, + 0.003551294, + -0.012864051, + 0.01255373, + 0.0051899063, + 0.0057040923, + -0.016355485, + -0.014938366, + -0.041550457, + 0.023466388, + -0.016589258, + 0.012425675, + 0.01642964, + 0.0014940429, + -0.0048257923, + 0.016995134, + 0.0018480311, + -0.01697901, + 0.008096951, + 0.003273752, + 0.014507436, + 0.015396008, + -0.022992073, + 0.010006582, + -0.0056872866, + -0.017848812, + 0.015825246, + 0.01912947, + -0.021885602, + -0.0069401264, + 0.029524144, + 0.005274186, + -0.01912105, + 0.025430106, + 0.011437235, + 0.021477379, + -0.029544277, + -0.019445254, + 0.0012790937, + 0.0066364203, + -0.021078777, + 0.010688206, + 0.008731576, + 0.010135254, + -0.011179318, + 7.562611E-4, + 0.008570393, + -0.008516341, + 5.4482685E-4, + -0.0058500124, + 0.021692382, + -0.022833437, + 0.012643438, + 0.025680846, + 0.029186111, + 0.0031673433, + -0.0024565875, + -0.008617836, + -0.023113474, + 0.00854967, + -0.018708441, + -0.020871343, + 0.004840457, + 0.03910828, + 0.039590657, + 0.015609158, + -0.009469574, + -0.004791451, + -0.016562175, + 0.00760123, + 0.0145837795, + 0.0072026164, + 0.0037131554, + -0.01974331, + -3.593846E-4, + 4.4089343E-4, + -0.0056666364, + 0.012915334, + -0.002108495, + 0.012154583, + 0.012566523, + 0.01782979, + 0.034718737, + 0.0059152693, + 0.018452195, + 0.026423344, + 0.002288328, + -0.017079633, + -0.010059072, + 0.0061979117, + 0.0045168973, + -0.004058145, + 0.0132934265, + -0.0028652265, + 0.018794104, + 0.02123414, + 0.012884632, + 0.0067721596, + -0.030180696, + -0.031928983, + -0.015799899, + 0.028592914, + 0.0065973215, + 0.0018634865, + 0.010799705, + 0.0074189384, + 0.02543764, + -0.020619629, + -0.011612363, + 0.014865873, + 0.019431982, + 0.0059739472, + 0.0046782005, + -0.009598503, + -0.024798792, + -0.0034264813, + 0.003052501, + 0.0069552334, + -0.019344918, + -0.008670775, + 0.007754327, + 0.039564464, + 0.0034282834, + 8.6834957E-4, + -0.0141431, + 0.0063334317, + 0.0154007645, + -0.03406295, + 0.0075492477, + -0.02235572, + 0.009658308, + -0.0048902663, + 0.0034704043, + -0.016151339, + 0.012026633, + 0.03021235, + -0.026371403, + 0.017254604, + 0.009745235, + -0.0028416938, + 0.019147022, + -0.0011017324, + -0.0078253, + 0.005823163, + -0.021383738, + 0.009188979, + 0.0054332805, + 0.011965567, + 0.007025616, + 0.0046853777, + -0.0063726865, + 0.0031034015, + 0.02421147, + 0.0153602185, + 0.009831412, + 0.0011659617, + 0.009980174, + 0.007899452, + 0.008072415, + 0.021325909, + 0.012554084, + 0.005254575, + 0.050160974, + -0.009634181, + 8.5818855E-4, + -0.014373633, + -0.008647619, + -0.006720233, + -0.011218998, + 0.008929233, + -0.012622807, + -0.018959222, + -0.0140806725, + 0.018626865, + 0.02867142, + -0.014394235, + 0.0046236124, + -0.014805419, + -0.020981204, + 0.010821408, + 0.028803486, + 0.0070309085, + -0.0048775207, + -0.016324213, + -0.008663346, + -0.0025260434, + -0.0028344092, + -0.025189124, + 0.0016902939, + -0.016195832, + 0.0026789072, + 0.0032028179, + 0.0024527865, + -0.030932717, + 0.03024413, + 0.010992177, + -0.016701005, + 0.021475932, + -0.007244007, + -5.8957195E-4, + -0.016504161, + -0.012612673, + 0.016530782, + 0.021921076, + -0.0088221105, + -0.00402141, + 0.009322653, + -0.026327705, + 4.0640662E-4, + -0.028714448, + 0.011594507, + 0.01122538, + -0.01319722, + -0.004596502, + 0.00687307, + -9.975352E-4, + 0.020833781, + -0.0023864203, + 0.012469727, + 0.0056116586, + -0.025258936, + 0.0055733393, + 0.018784886, + 0.033665847, + 0.00815115, + 0.015184816, + -0.053076293, + -0.014820877, + -0.0013448864, + -0.0024062055, + 0.04049281, + -0.0074884337, + 0.008786448, + -0.004794262, + 0.0077848244, + -0.010226576, + 0.03058243, + -0.01688341, + 0.02193844, + -0.005318027, + 0.027565107, + -0.0069978726, + 0.01146125, + -0.015263415, + 0.0146412775, + -0.02736989, + -0.002643802, + 0.013221741, + -0.023104953, + -0.010217421, + 0.006941697, + 0.0070782863, + 0.02473267, + -0.008928778, + 0.00858209, + 0.017393082, + 0.01892338, + 6.547003E-4, + 0.0106929, + 0.04510092, + 0.005158495, + -0.006855944, + -1.7425328E-4, + 0.002293996, + -0.023697404, + 0.02180178, + 0.0045166626, + -0.010739245, + -0.009413576, + -0.013137923, + 0.009173411, + -0.0016074968, + -0.011528116, + 0.01132491, + -0.020496188, + -0.011957473, + -0.00315036, + -0.009451659, + -0.012604783, + -0.01136885, + 0.0037546232, + -0.013674748, + 0.030027892, + 0.009260547, + -0.013784152, + 0.0048479494, + -0.0063576554, + 0.0052844277, + 0.023732958, + -0.0037608277, + -0.0115367705, + -0.0011275634, + 0.008674923, + 0.0070599066, + 0.011717401, + -0.0041929567, + 0.027951255, + 0.012392128, + 0.008830583, + -0.022088375, + 0.029956803, + 0.0020172282, + -0.0038085931, + -3.5921362E-4, + -0.007477055, + -0.009595466, + 0.0018304291, + -0.0023688078, + 0.012076648, + -0.01148677, + -0.0031311028, + -0.012195416, + -0.0029406983, + 0.0010591346, + 0.016948976, + 0.0063409777, + 0.006211907, + 0.030816255, + 0.007935369, + -0.015491627, + 0.0011906704, + 0.0131950565, + 0.011953585, + -0.007777911, + 0.020632267, + -0.0073773824, + 0.02493727, + -0.0063303364, + 0.016580231, + -0.031646892, + -0.0058732624, + -0.001741667, + 0.0022622016, + 0.022498962, + -0.017106323, + 0.010471107, + 0.01969064, + 0.024079574, + 0.025861988, + -0.0018475599, + -0.004097619, + -0.010602834, + 0.01859127, + -0.003930713, + 0.008081194, + 0.01767401, + 0.0121684605, + 0.008652176, + -0.021196367, + 0.008362759, + -0.0051939194, + 0.007931165, + -0.0038330369, + 0.00961279, + -0.0025379972, + -0.011534109, + -0.02222506, + 0.010798629, + -8.515809E-5, + 0.0054791654, + -0.0059975586, + -0.020139605, + -0.010342853, + -0.013068582, + -0.010657773, + -0.021763988, + 0.00740906, + -0.009612489, + -0.0017531334, + 0.0013478418, + 0.005568298, + 0.010094473, + -0.022691827, + 0.0058091297, + 0.027448308, + 0.0032450755, + 0.014282027, + 0.027632868, + -0.0012145487, + -0.023117824, + -5.9944944E-4, + -0.0023061456, + 0.009263748, + -0.02910136, + -0.0065432596, + -0.023926105, + 0.009971891, + -0.0025281243, + -0.0015329935, + -0.014607627, + 0.0024908555, + 0.004161594, + 0.020291125, + -0.007067435, + -0.009808751, + -0.015758412, + 0.00628795, + -0.01285056, + 0.021412576, + -0.010344658, + 0.0030650394, + 0.0027617647, + 0.032362353, + 0.023849789, + -0.0033546428, + 0.025292479, + 0.034487948, + -0.023824893, + 0.0038040534, + -0.019840963, + -0.023696411, + 0.00857805, + 4.7366467E-4, + -0.0017415412, + 0.010027293, + -0.013672133, + -0.0139661245, + -0.018581918, + 0.0040467745, + 0.012574977, + 0.018950911, + 0.03888359, + -0.019786263, + 0.0041379277, + -0.013220514, + 0.0074572787, + 0.007908751, + 0.005693668, + -0.003146976, + 7.7225466E-4, + -0.016224345, + 0.004214227, + 0.022691788, + -0.024068573, + 0.007816105, + 0.010740069, + -0.01876271, + 0.010877745, + -0.001653352, + 4.995476E-4, + -0.014608853, + -0.0014534964, + -0.011947195, + -5.153027E-4, + -0.016740667, + -0.029441306, + -0.0010103106, + 0.005258498, + -0.031462457, + -0.017495206, + 0.0073270365, + -0.002596415, + 0.012919496, + -0.0017623766, + 0.0022434737, + -0.0120205255, + 0.0074856333, + -0.01784649, + 0.0029168876, + -4.8451032E-4, + -0.016708959, + 0.0011342516, + -0.017005598, + -0.012958359, + 0.015373965, + 0.013078554, + 0.020172251, + 0.022258935, + 0.0028763565, + 0.006440923, + -0.028289467, + -0.012192884, + 0.0038068264, + -0.018828059, + 0.009891876, + 0.010718854, + -0.013390981, + -0.02171912, + -0.0052910964, + 0.011226878, + -0.005799359, + 0.025777513, + -0.02055081, + -0.013821803, + -0.007355363, + -0.02374116, + 0.0072298096, + 0.010506, + 0.00895373, + -0.0066333455, + -1.21416735E-4, + 0.02292849, + 0.0045094052, + 0.01003338, + -0.010728989, + -0.0056793597, + -0.010270216, + -0.01037995, + 0.0034404388, + -0.011088486, + -0.006871003, + 0.015390368, + 0.009662876, + -0.0068756333, + -0.0097992215, + 0.012968219, + 0.021323672 ], - "paletteEmbedding": [ - 0.008912211, 0.015799334, -0.03398851, -0.009899646, 0.0089324135, - 0.015517416, 0.04331288, -0.017422795, -0.0065833675, -0.018307587, - 9.174343e-4, 0.012497265, -0.04497655, -0.03370949, 0.013050883, - 0.009499851, -0.008348303, 0.009411336, -0.0019885749, -0.050675284, - -0.015344256, -0.026427737, 0.023707798, -0.02854753, 0.027674215, - -0.041392528, -0.05461807, -0.010015223, 0.008861423, -0.07743963, - -0.044315368, -0.0058531337, 0.0538225, -0.024161758, 0.021871338, - -0.0022098057, 0.013455871, -0.06840651, -0.008360415, 0.01835286, - -0.03583594, -0.0545366, -0.018762434, -0.06560462, -0.0262623, - -0.029425366, -0.0035800505, 0.035725836, 0.0027876499, -8.7104406e-4, - 0.044320993, 0.05848594, 0.016634047, 0.04441874, 0.013430704, - -0.020016376, -0.029351434, -0.0346491, -0.010504423, 0.016443538, - -0.046014313, -0.011050949, -0.025100702, 0.09804125, 0.05080631, - 0.040958676, -0.019852906, -0.015523409, -7.59325e-4, 0.05106347, - -0.010280857, 0.012965042, -0.036542658, 0.016736826, 0.016866744, - -0.08176307, 0.044386297, 0.033895187, -0.0043569016, -0.025346627, - -0.0031812454, 0.0489442, 0.058028813, -0.0054664407, -0.010544287, - 0.013254488, 0.030043093, 0.017995896, 0.0038998008, -0.0066295373, - 0.03151866, 0.010136847, -0.008918334, -0.03173495, 0.018172903, - 0.033828255, 0.028814053, -0.061711784, 0.027119877, -0.010956634, - 0.02447007, -0.0139717925, 1.8204999e-4, 0.016678512, 0.004141805, - 0.01869384, -0.023874, 0.006372261, 0.04603089, -0.0025755204, - 0.019785274, -0.010016533, 0.0012459245, -0.016481288, -0.007707176, - -0.014547687, -0.042273123, -0.019041821, 0.0088441875, -0.016021898, - -0.025977103, 0.0052455994, -0.052563563, 0.0029294365, 0.01012078, - -0.056269225, -0.028802527, -0.016744522, -0.051382415, 0.04721592, - 0.04571787, 0.016007043, -0.03809937, 0.008922447, -0.018284125, - 0.0090568755, 0.017534658, -0.02102701, -0.015333259, -0.015145805, - 1.9977307e-4, 0.01850579, -0.005870164, 0.0135075925, 0.021505961, - -0.04862212, -0.06926532, -0.046749614, 0.031242285, 0.032374386, - 0.0034647023, 0.01041043, 0.008876486, -0.020378614, 0.016817817, - -0.0039145662, 0.022028642, 0.053121254, -0.028131004, -0.007965469, - 0.026224714, 0.006891602, 0.02829923, -0.055326357, -0.031177755, - -0.018400267, 0.006463087, -0.01629881, -0.069735855, 0.01243207, - -0.037508048, 0.026421629, 0.011779617, 0.06156319, 0.009800187, - -0.023057858, -0.00784015, -0.012514694, -0.0017625446, -0.009407895, - -0.024347374, 0.011554469, -0.0023305723, -0.016747983, 0.027823465, - 0.024535453, 0.008496103, -0.031006115, 0.08323507, 0.034337107, - -0.0066640098, 0.015410552, -0.032231886, 0.04544706, 0.009343305, - 0.0060539106, 0.019249635, 0.018261544, 0.01873019, 0.017813388, - -0.015511687, -0.015065659, 0.005921178, 0.017973198, 0.0037243534, - 0.020719502, 0.04811462, 0.011209743, 0.0060422597, 0.028640985, - 0.0016696745, 0.010163883, 0.0467659, 0.00917274, 0.05012749, - 0.012389434, 0.03464894, 0.0103591, -0.0016504397, 0.004055672, - 0.012120912, 0.05057934, -0.019178145, 0.03376664, -0.0063416027, - 0.0022628268, -2.8978565e-4, 0.08429947, -0.015244253, -0.011047609, - 0.043489784, -0.013517827, 0.0012164018, -0.048190985, 0.011495885, - 0.0061668954, -0.0639363, -0.044532895, 0.022901284, -0.00922027, - 0.021259617, 0.029190084, -0.0014226574, -0.016095607, 0.011754575, - -0.030523228, 0.008630502, -0.043254856, 2.3716554e-4, 0.0069615995, - 0.058273684, 0.066599324, -0.015268553, -0.025776442, -0.0061259037, - -0.02435305, -0.07636439, -0.028215103, -0.015745787, 0.074703336, - 0.0024469309, -0.026754664, 0.02658746, 0.039185755, -0.019500041, - -0.031771228, 0.06517325, -0.081137255, -0.040308475, 0.07019317, - -0.009946841, -0.030687232, 0.004770944, 7.3377194e-4, 0.028259806, - -0.019854702, -0.029744962, 0.0019249427, 0.036098693, -0.055933606, - 0.032286715, -0.0309375, -0.005167506, -0.006485486, -0.008442126, - -0.0047887918, 0.025939656, -0.014974272, -0.02122838, -0.005041951, - -0.021144208, 0.015526292, -0.054812957, 0.007295968, 0.0059891823, - 0.029980874, 0.019555332, 0.045765672, -0.03767539, 0.02748551, - 0.013478427, -0.006384861, -0.04979358, 0.0040791226, 0.04823885, - 0.023980632, 0.015718676, 0.09886143, 0.026934672, -0.108021036, - 0.0529049, -0.019934883, -0.014226858, 0.021491518, -0.003660334, - -0.012351944, 0.048700795, 0.03321611, 0.0027513588, -0.034795474, - -0.065039754, 0.041419297, -0.048774198, -0.0015760204, 0.04509007, - 0.0200538, -0.024994459, -0.020037826, 0.015032276, -0.013100125, - 0.02300475, -0.026836108, -0.038915396, 0.013908986, -0.039062615, - -0.018889684, 0.017971387, 0.016789421, 0.029115837, 0.060454898, - 0.0835194, -0.07602201, -0.02308699, 0.0017491712, 0.047885608, - 0.01171508, 0.020299084, -0.023743792, -0.0057886895, 0.023245715, - -0.0070823263, 0.045017928, -0.012258196, -0.0023162605, 0.0056413426, - 0.009471765, 0.049961887, 0.012491466, -0.035095684, 0.006321003, - -0.016091747, 0.004194505, 0.026916917, 0.054528344, -0.010805057, - -0.011492894, -0.02670951, 0.042983644, -0.008608923, 0.0067247595, - -0.0068324055, 0.009121222, 0.03863728, -0.029231094, -0.01098262, - 0.006836863, 0.034504104, -0.03767437, -0.0010913898, 0.023891954, - 0.006741234, 0.026162442, 0.012111916, 0.03848644, -0.035049736, - -0.019964777, 0.027387857, -0.052085474, 0.004173818, -0.03352062, - -0.027719092, 0.005336875, 0.0614939, 3.8828945e-4, 0.009884832, - 0.00767417, 0.04544591, 0.016333207, -0.007700685, -0.0516955, - 0.053403214, 0.015068963, 0.0010628462, -0.0026824283, -0.013491582, - -0.035962373, -0.0060351933, -0.02442587, 0.03305418, -0.012894478, - 0.0075243195, -0.01573941, -3.9662365e-4, -0.046877168, -0.021976063, - 0.05613147, -0.0064399717, 0.031500246, -0.032369606, -0.05770952, - 0.009640797, 0.018458152, -0.037579212, -0.02723903, -0.030789621, - -0.0053589595, -0.044291332, 0.029430956, -0.039183635, 0.013036549, - 1.4269541e-4, 0.036927655, -0.016728224, 0.032146774, 0.01157369, - -0.046201218, -0.035905555, 0.015826484, 0.008796164, 0.039759785, - -0.0062519587, -0.031569604, -0.003005062, 0.016481133, 0.010891356, - 0.013586453, 0.014424129, -0.03975912, 0.061852455, -0.017044405, - -0.014255945, 0.012106323, 0.024014559, 0.008400407, 0.0012108436, - -0.020452583, 0.032959554, -0.03789368, 0.008597728, -0.0017881871, - -0.013153666, 0.05045468, 0.016694812, 0.0067197513, 0.016569817, - 0.03467239, 0.065908335, 0.020948997, -0.007847742, 0.038759384, - 0.053119767, 0.012952784, 0.09819738, 0.01867255, -0.036890127, - 0.027188905, 0.027073888, -0.016988086, -0.026847634, -0.031212647, - -0.0051022265, 0.00436734, -0.051883128, 0.067386515, 0.0044787596, - 0.040235214, -0.0053788684, 0.035553467, -0.008064289, -0.014782111, - 0.0057436842, -0.019390527, 0.016789142, 0.082322754, -0.053379558, - 0.020407697, 0.0272704, -0.0012366484, 0.010725294, -0.01972522, - -0.01588818, 0.028628785, -0.0326782, -0.043314796, -0.019519124, - -0.010488201, 0.0046240273, -0.012714814, 0.014668065, -0.012889611, - 0.03689212, -0.07116877, 0.014788079, -0.0043153223, 0.037277892, - 0.016530452, -0.013250061, 0.009471674, -0.05716837, 0.039667882, - -0.021863194, 0.020780187, 0.0012581957, -0.05283888, 0.0958392, - -0.048772156, 0.0039042656, 0.027283316, -0.02380964, -0.0038957926, - -0.03875374, -0.028534831, -0.0039167744, -0.0028027557, 0.008757438, - 0.056075763, 0.026486164, 0.019996215, -0.010100392, -0.02834526, - 0.008421163, 0.008125741, 0.04773791, 0.016348785, 0.013301014, - -0.013694313, 0.02704112, 0.06960076, -0.016959446, -0.007258269, - -0.038332444, -0.007838293, -0.01828703, -0.020533863, -0.016427077, - 0.010575183, -0.023912093, -0.03799829, 0.012518332, -0.027000718, - 0.068672165, -0.0032927583, 0.005644782, 0.027423277, 0.031517435, - -0.004754149, -0.020222085, -0.023993377, -0.041394167, -0.03592967, - -0.0054888716, 0.022989875, 0.061750013, 0.004068143, 0.035224367, - -0.012378444, 0.011827597, -0.085389696, -0.036006633, -0.007341051, - 0.015560412, -0.025485825, 0.0026232663, 0.016862491, 0.03593093, - -0.016109405, 0.0055957055, -0.013669802, -0.027473856, 0.018288765, - -0.017303027, -0.059155032, 0.0038593549, -0.0043878946, 0.011236925, - 0.029078025, 0.033539668, 0.022332367, 0.009304873, -0.07920747, - -0.057160903, -0.027577274, -0.044938523, 0.0506893, 0.0036075332, - -0.030147014, -0.028246015, -0.022391103, 0.013464092, 0.038930286, - -0.0073017743, -0.02089966, 0.0018271153, -0.017578922, 0.03909291, - -0.00873214, 0.029539358, 0.022518491, -0.008306134, 0.03137948, - -0.028467482, -0.024378255, 0.024232933, -0.06753687, -0.031337846, - -0.021374924, 0.03987034, 0.055440977, 0.044957943, 0.026126916, - 0.041393097, 0.044388387, -0.008692815, 0.027097601, 0.019293468, - -0.011838165, 0.06945287, -0.057728644, -0.019528085, -0.018562965, - -0.006365626, 3.2991916e-4, -0.04913823, 0.017367302, -0.02343686, - -0.025303746, 0.0025626044, 0.021636922, 0.0052655684, -0.04060673, - 0.015737757, 0.03717928, 0.009945333, 0.034133613, -0.046763808, - -0.033699393, 0.025029505, 0.03193726, -0.007656074, -0.02102203, - 0.01820547, -0.03270972, -0.065325215, -0.028052535, 0.029176421, - 0.0581488, 0.023560815, -0.023979377, 0.020095535, 0.039057016, - -0.032228943, 0.016144902, 0.013579258, 0.04906738, -0.03044904, - -0.054418415, 0.0487666, 0.04038654, -0.002653649, 0.013416749, - -0.030573327, 0.01682511, 0.003155432, -0.020687042, 0.017528726, - -0.010558604, -0.10476791, 0.016289156, -0.0080537805, -0.007270741, - 0.035062898, -0.029107936, -0.06622255, 0.026536627, 0.015099131, - -0.04247888, 0.00124029, -0.0042214207, -0.0039810003, 0.07118067, - -0.029210674, -0.010248076, 0.016685773, 0.030370561, -0.017511223, - 0.01776981, 0.006832653, 0.021870596, 0.02547259, 0.010573261, - -0.010286888, 0.0070687616, 0.0629565, 0.007618508, 0.052707117, - -0.039096233, 0.039867908, -0.045928534, -0.015949368, 0.0066229985, - -0.039762486, -0.052478038, 0.017285794, 0.027450284, -0.044169664, - -0.04029615, 0.05281447, -0.02131008, -0.053515665, 0.06268191, - 0.0065704864, 0.0033629115, -0.04803829, -0.006719404, 0.02645248, - -0.01225299, 0.0057076174, -0.024136486, 0.029515587, -0.040617473, - 0.020916779, 0.012093913, -0.013468159, -0.031193137, -0.024460066, - -0.021056702, 0.031138165, 0.04555244, -0.025475735, 0.032845188, - -0.024302827, -0.034799684, -0.005891611, -7.0310663e-4, -6.408604e-4, - -0.011472121, -0.040810894, -0.042380013, -0.018615259, -0.015325567, - -0.04826527, -0.077290446, 0.009665537, -0.045434237, 0.021178715, - 0.007947622, 0.030831449, 0.01674953, 0.020700946, 0.02148763, - 0.0074737705, 0.030725202, -0.029003296, 0.0115215825, -0.012466596, - -0.014209584, 0.029917547, -0.017746618, -0.019528292, -0.035567403, - 0.024323199, -0.054885186, 0.0041042874, -0.040583517, -0.024218522, - 0.0135728065, -0.032949463, -0.05079906, -0.021601997, -0.028101983, - 0.04552409, -0.0356107, 0.015835047, -0.008469342, -0.040500276, - 0.03883859, -0.03357336, 0.03364679, 0.04053172, 0.014968184, - -0.0384027, 0.0058126803, -0.005344655, -0.01960654, 0.019336918, - -0.022321196, 0.0023939006, 0.03858577, 0.021040002, -0.055059895, - 0.052051, -0.021204988, 0.0076918798, 0.05187978, -0.028435152, - 0.0044712317, 0.023823533, -0.008550987, -0.005679549, -0.01262354, - -0.020253627, -0.04288906, 0.018431496, 0.020785179, -0.021153454, - -0.011348287, -0.007387992, -0.0030688192, 0.012385064, 0.050382324, - 0.026987381, -0.050908852, -0.013434264, -0.021903895, 0.0064209844, - -0.008811374, 0.035244785, 0.04396004, -0.03780273, -0.008762489, - -0.0023858657, 0.030665284, -0.027385337, 0.010434177, 0.00930233, - -0.023015765, 0.02437921, 0.014534755, -0.001054419, 0.069010206, - -0.03557195, 0.0062380168, -0.042017262, -0.024359835, 0.019394225, - -0.07011083, 0.0033906281, 0.010644306, 0.022453316, 0.0052040503, - 0.003409631, 0.0038665922, 0.008872638, -0.0020701408, -0.021544429, - -0.02121323, -0.051212322, -0.020345934, 0.017397163, 0.036278307, - -0.033872504, 0.021214966, 0.068375394, -0.036502767, 0.0010472492, - -0.06354703, 0.012361982, 0.055840164, 0.0470653, 0.04338543, - 0.0128365345, 0.006646474, 0.028798971, -0.0049792817, -0.009634769, - -0.022874422, -0.049642988, -0.025272926, 0.010865752, 0.031561848, - -0.038361855, 0.01118544, -0.003572513, -0.019150512, 0.008708898, - 0.024962373, 0.010674253, 0.0558863, 0.018736787, 0.05408059, - -0.008264323, 0.009272608, 0.017026657, 0.040949106, 0.05060298, - -0.006521619, -0.010179615, 0.07129131, 0.0022726806, 0.019930018, - 0.069911726, 0.05663824, 0.015474001, -0.010721313, 9.4956806e-4, - -0.053869437, 0.012398735, 0.028413389, -0.031916592, 0.011585866, - 0.0074653486, -0.011592251, 0.021107914, 0.0568021, 0.011800699, - 0.016542578, -0.07745483, 0.025801776, -0.018528517, 0.016848521, - -0.029928282, -0.044579037, 0.0067824004, 0.05209954, -0.022017894, - 0.0059166085, -0.03375728, 0.055434834, -0.0019928066, -0.009907952, - 0.013184271, -0.010629858, -0.007593277, -0.012684683, 0.008520244, - 0.00436456, -0.006430675, -0.038116522, 0.006320619, 0.019941919, - 0.01853467, 0.022274531, -0.01465672, -0.04254123, 0.010107954, - -0.020696245, 0.047793183, 0.0065910635, -0.047696203, -0.007795786, - 0.02972802, -0.050295383, -0.001509063, 0.023058757, -0.028745357, - -0.037103865, -0.054022323, 0.064583644, 0.021479791, -0.020553166, - -0.024049621, 0.002918663, 0.045642786, 0.031703617, -0.0019122906, - -0.012816217, -0.06979767, -0.015124745, 0.042425912, 0.02561217, - 0.018542944, -0.022072874, -0.011265364, 0.026120313, -0.03792713, - 0.009799554, 0.0015597936, -0.04467775, 0.0064222584, -0.031114947, - -0.037148256, 0.002640898, -0.030505717, 0.01093538, -0.041206893, - 0.02533296, -0.08613534, 0.05188464, -0.034124885, -0.009724078 + "paletteEmbedding" : [ + -0.028090198, + -0.021561136, + 0.011847275, + -0.044471517, + 0.015858945, + -0.02302576, + -0.013048744, + 0.02094186, + -0.023802364, + -0.003190732, + 0.02159661, + -0.006116, + -0.043626316, + -0.013773077, + -0.06628532, + -0.0031417655, + 0.0065618292, + -0.02644764, + 0.04253799, + 0.0073896833, + 0.015527953, + 0.007679829, + -0.0020188647, + 0.010148181, + -0.04023171, + -0.008561604, + -0.021097854, + -0.030844042, + 0.010391074, + 0.011566005, + 0.032980707, + -4.977267E-4, + -0.0037380252, + 0.051482588, + -0.02586724, + -0.024227757, + 0.03554074, + -0.011988146, + -0.02921342, + 8.8341953E-4, + -0.02127005, + 0.00778169, + 0.02403724, + -0.019008692, + -0.042974148, + 0.01183446, + -0.031565316, + -0.010895604, + 0.038847458, + -0.0405923, + 0.02268589, + -0.014023729, + 0.0070553035, + -0.0033989635, + 0.00884219, + -0.025458112, + 0.003225201, + -0.003580175, + 0.021776525, + 0.014916624, + -0.01264852, + 0.052060533, + -0.012853882, + 0.039151438, + 7.83945E-4, + 0.0021167933, + -0.022977432, + -0.019305361, + 0.044070907, + -0.020973474, + 0.015200973, + 0.038102392, + 0.0012837572, + -0.032203436, + 0.010541568, + 0.02933606, + 0.0070181894, + 0.0682162, + 0.03433555, + 0.03173443, + 0.023914909, + -0.033996373, + -0.021539485, + 0.041185528, + -0.07830721, + -0.002183043, + 0.04283983, + 0.020325061, + -0.022729764, + 0.032562222, + -0.011590106, + 0.0019931314, + 0.011211428, + -0.021896737, + -0.029069463, + -0.01617269, + 0.018673725, + 0.020528197, + -0.032980394, + 0.06571947, + -0.04193524, + -0.012750739, + 0.016828334, + 0.020700319, + 0.023668252, + -0.014406185, + -0.02122467, + -0.01943201, + 0.003915295, + -0.0065598194, + 0.0214275, + -0.03697523, + 0.004263504, + -0.021971565, + 0.016776003, + -0.02866913, + 0.021059036, + -0.0077763116, + -0.05100988, + -0.06171494, + 0.012433817, + -0.005196948, + -0.016919639, + -0.0016082798, + 9.9346405E-5, + 0.014299484, + -0.00801201, + 0.023916421, + -0.032354232, + 0.009694306, + -0.010458578, + -0.052230716, + 0.002469767, + 0.021696676, + -0.035280097, + 0.021840455, + -0.044080127, + -0.0018931483, + 0.012592432, + -0.040225025, + 0.046168543, + -0.028942887, + -0.01579774, + -0.009849515, + -0.017500507, + -0.032354996, + 0.023789652, + -0.018769827, + 0.01827439, + 0.028858755, + -0.023740727, + -0.04803712, + 0.032696854, + 0.057504807, + 0.013428422, + 0.019992476, + 0.016372157, + -3.556857E-4, + 0.0011424841, + 0.034187127, + 0.03631724, + -0.0558909, + -0.006597279, + -0.012786428, + -0.067045204, + -0.0035669312, + -0.026809413, + 0.002310418, + -0.039113153, + 0.025082467, + 0.027264128, + -0.033315413, + 0.0023835176, + -0.014157728, + -0.0038089526, + 0.033239022, + -0.009507927, + -0.042800542, + -0.004568282, + -0.0077932742, + 0.027853895, + 0.017465169, + 0.046819177, + -0.035417, + 0.0059975237, + 0.021724619, + -0.033373628, + -0.0052570454, + 0.065243155, + 0.024007186, + -0.008096759, + 0.03133457, + 0.0018234364, + 0.012123513, + 0.028142806, + -0.042871818, + 0.016050614, + 0.0061325566, + 0.008516157, + 0.0047549694, + 0.044092994, + 0.048680685, + -0.027052004, + -0.03426486, + -0.028261667, + -0.002630836, + 0.009270415, + -0.013998744, + 2.2886551E-4, + 0.011331027, + 0.05561914, + 0.04866724, + -0.07504521, + -0.015851807, + -0.048162248, + -0.031026082, + 0.0072408537, + -0.009817381, + 0.011496643, + 0.013898354, + 0.015323227, + -0.0063450653, + 0.04467319, + -0.023986423, + 0.014365214, + -0.036868736, + 0.033163097, + 0.0086182095, + -0.051201873, + -0.020330064, + 0.0072198776, + -0.0029483081, + 0.009260374, + 0.034997765, + 0.029540397, + 0.015584309, + 0.014966731, + -0.034483846, + -0.027284238, + 0.023033796, + -0.038023874, + -0.021743644, + 0.02119952, + 0.006046413, + -0.025654415, + 3.775171E-4, + -0.012074889, + -0.057466656, + 0.0608533, + 0.06993635, + 0.03633094, + 0.025490407, + 0.027313266, + 0.05659817, + 0.014130384, + -0.016833847, + -0.02932634, + -0.04432759, + 0.025339069, + -0.057826895, + 0.016065931, + -0.04117444, + -0.034109548, + -0.049709585, + -0.0084873205, + -0.023655191, + 0.068179525, + 0.037365966, + 0.003984657, + 0.026012607, + -0.045217197, + 0.0023988436, + -0.040403053, + 0.029884415, + -0.0111690145, + -0.005116715, + -0.039254673, + -0.007611658, + -0.006507641, + -0.037257437, + -0.00505885, + 0.052071426, + -0.022715237, + -0.073094904, + 0.03396683, + -0.039008148, + -0.0046312874, + -0.02799827, + -0.03955984, + -0.075025916, + 0.03050636, + -0.010960993, + -0.01585759, + -0.0761155, + -0.006610434, + -0.035619557, + -0.051324483, + -0.024059476, + -0.018554522, + 0.01614399, + -0.012455527, + -0.0028750794, + 0.012672858, + -0.021723475, + -0.04743498, + 0.022196531, + -0.01947227, + -0.030109517, + 0.05860143, + -0.0021761386, + -0.006459675, + -0.045002993, + 0.04663955, + -0.0012756737, + -0.05402444, + -0.0012045013, + 0.0052693365, + 0.00871244, + 0.034429815, + -0.016574984, + 0.012756823, + 0.01732419, + -0.025126884, + 0.060025793, + 0.0030977584, + 0.051343538, + -0.018125275, + 0.046489626, + -0.020416694, + 0.071999975, + -0.0019208245, + -0.011770189, + -0.021024186, + 3.220004E-4, + -0.042085305, + 0.050594848, + 0.02485371, + 0.03896368, + -0.021945039, + 0.0138964895, + -0.049964067, + 0.010157825, + -0.020442516, + 0.027844718, + -0.022091363, + 0.01042485, + 0.021633135, + 0.022957297, + -0.03894444, + 0.017655952, + -0.02872858, + -0.08041503, + 0.02516621, + 0.060307216, + -0.0061980416, + 0.016412279, + -0.0124120945, + -0.020955082, + -0.030079823, + -0.03139819, + 0.013251166, + 0.016759023, + -0.056081157, + -0.023499792, + -0.05210633, + -0.05008369, + 0.04143536, + -0.029204855, + -0.014374776, + -0.02543355, + -0.05237777, + 0.04930779, + -0.022305494, + 0.03951965, + 0.029322686, + -0.0015704882, + 0.029605675, + -0.03013405, + -0.02433035, + -0.017814942, + 0.021831444, + -0.0018453682, + 0.004940143, + 0.008976173, + -0.0075250114, + -0.008181914, + -0.007620962, + 0.039524775, + -0.022403097, + -0.027882492, + 0.056629103, + -0.0097688865, + -0.023483524, + 0.016605904, + -0.0148161445, + 0.0013299548, + -0.033154305, + 0.012411722, + 0.026556216, + -0.0058148084, + 0.022567032, + 0.024475435, + 0.011875345, + 0.02716963, + -0.006733597, + -0.004251652, + -7.039309E-4, + 0.0024644374, + -0.012462687, + 0.023447216, + 0.039301634, + -0.03490019, + 0.017479863, + -0.005728053, + 0.05969281, + 0.029812174, + 0.01353889, + 0.01673982, + 0.005241809, + -0.023592811, + -0.0028096952, + -0.017517382, + 0.014964873, + 0.009137991, + -0.08851421, + -0.012450234, + -8.0111733E-4, + 0.016216574, + -0.028136116, + -0.009464205, + -0.006841464, + -0.02885603, + 0.021382028, + 0.020163449, + 0.024108464, + -0.052245148, + 0.055100046, + -0.038467567, + -0.013578846, + 0.015586189, + -0.013928237, + -0.0025272346, + -0.0048438734, + 0.006284913, + -0.04770803, + -0.05139274, + -0.0024753758, + -0.05950051, + 0.05769266, + 0.048176456, + 0.022330305, + 0.029723752, + 0.036620885, + -0.05293679, + 0.023490317, + 0.028959574, + 0.02262868, + 0.05857954, + 0.037994735, + 0.016608866, + 0.070541024, + -0.053251375, + -0.0045437245, + -0.0014073879, + 0.008388134, + 0.03036542, + 0.006246249, + 0.04124473, + -0.07017774, + 0.008115675, + -0.01494275, + -0.02462241, + 0.036293376, + 0.020397764, + 0.018083327, + 0.05430541, + -0.07587378, + -0.027290957, + -0.0412827, + -0.012174778, + 0.009763973, + 0.052054487, + -0.03435248, + 0.017168984, + -0.021929653, + 0.051181268, + -0.0064338115, + 0.010775459, + -0.044910513, + 0.029828932, + -0.018004756, + 0.0064604674, + 7.297125E-4, + -0.020856198, + 0.0022713915, + 0.02634027, + -0.03675591, + 0.023198197, + 0.0071453634, + 0.013094915, + -0.014559189, + 0.030346151, + -0.014359667, + 0.043462414, + 0.03012293, + -0.0118751675, + 0.040832836, + -8.099873E-4, + -0.044988006, + -0.0022469463, + -0.044155996, + -0.07004174, + -0.0012495919, + 0.008187772, + -0.029163714, + 0.03384511, + 0.01597038, + -0.05897169, + -0.005023842, + -0.0173111, + -0.028107245, + 0.051457606, + 0.03597603, + 0.04086795, + 0.017282706, + -0.015548435, + 0.0022738585, + -0.027723283, + 0.010830548, + 0.008202709, + 0.029888993, + 0.012022657, + -0.008944062, + -0.027683374, + 0.047318835, + -0.047311787, + 0.06345911, + 0.024693262, + 0.00398627, + 0.01563385, + 0.009314347, + 0.015238526, + 0.04104398, + -0.04711143, + -0.0130551215, + -0.08505009, + 0.013370155, + 0.034061316, + 0.04295572, + 0.01738799, + -0.006847974, + 0.030289695, + 0.01441667, + 0.042310137, + 0.020363504, + -0.025414597, + 0.046088215, + -0.014637036, + 0.033589907, + 0.0018368347, + -0.02975829, + 0.023816502, + 0.008282883, + 0.07670849, + 0.014396167, + 0.017478205, + -0.0032625808, + -0.054991625, + -0.017025273, + -0.007839366, + -0.07714219, + 0.009359683, + 0.03416294, + 0.015250269, + 0.005245195, + -0.03744701, + -0.04317107, + -0.010725504, + 0.008901981, + -0.066164285, + -0.05085434, + 0.02669018, + -0.015692059, + -0.047009844, + -0.018026147, + -0.021606684, + -0.027323822, + -0.01690862, + 0.025777102, + -0.014257173, + -0.016867729, + -0.02964419, + -0.0028570013, + -0.07311335, + -0.014934489, + 0.01558686, + -0.039108094, + -0.0123989, + -0.020010877, + -0.05041167, + -0.05201895, + 0.0011277151, + -0.058860615, + 0.065959334, + -0.009215026, + -0.0057074986, + -0.0385369, + -0.026554475, + 0.006699486, + -0.010378234, + -0.020500999, + 0.027432106, + 0.010266552, + -0.006837447, + 0.0129754115, + -0.004335839, + -0.03265148, + -0.007385756, + 0.06295617, + -0.02413446, + -0.056440394, + -0.021249346, + 0.028773015, + 0.007076616, + 0.037792515, + 0.008823584, + 0.040999267, + -0.012102392, + 0.0133879315, + -0.013757879, + -0.020592721, + 0.039516434, + -0.0030045079, + -0.0025506162, + 0.073173754, + 0.025572803, + 0.021441612, + -0.018049588, + -0.018292263, + -0.00510623, + 0.02691399, + -0.024816966, + 0.037409104, + 0.010909983, + -0.00986398, + 0.015146079, + 0.020201176, + 0.07432134, + -0.016718805, + 0.018422358, + -0.074796714, + 0.035620958, + -0.048347168, + -0.0017461451, + -0.0111246435, + 0.054143235, + -0.025679497, + -7.2903716E-4, + 0.019636776, + -0.025459737, + 0.04252206, + 0.008583415, + 0.022836385, + -0.012778993, + -0.027694894, + 0.024580589, + 0.0026577718, + 0.026741048, + -0.014246161, + -0.04596772, + -0.040762275, + -0.0360183, + -0.012245706, + -0.027597036, + 0.0131169455, + 0.016839948, + -0.0036293932, + -0.05741892, + -0.0020748088, + 0.0043237917, + -0.06846809, + -2.103694E-4, + 0.028059138, + -0.0476892, + -0.049075678, + -0.004439357, + 0.028697865, + 0.0029635744, + -0.04134323, + -0.012495412, + 0.041827783, + 0.05400672, + -0.0034952946, + -0.010431044, + -0.0824235, + -0.013543501, + 0.07902985, + -0.072014034, + -0.0429328, + 0.047932576, + -0.02937009, + 0.037607513, + -0.0132689625, + 0.014006356, + -0.006385849, + -0.03999245, + 0.04981466, + -0.009429901, + -0.007519058, + -0.013185822, + -0.024062501, + -0.012811743, + 0.0341733, + -0.017480664, + 0.04201995, + 0.011914543, + 0.041633025, + 0.009983237, + -0.04087001, + -0.040135402, + -0.0014491667, + -0.076124735, + -0.0015870981, + 0.041241474, + -0.026118284, + -0.003151223, + -0.017838128, + -0.013029003, + 0.03552146, + 0.0045323144, + 0.035358123, + -0.03737212, + -0.008539204, + 0.014727022, + 0.025145143, + 0.053193167, + 0.0538785, + 0.008112645, + 0.0021054684, + 0.013829473, + 0.015574109, + -0.0068922117, + -8.74715E-4, + -0.051900666, + 0.009866788, + 0.009266817, + 0.029451352, + 0.020628395, + 0.007106912, + -9.238132E-4, + -0.008557519, + -0.01228509, + -1.3483813E-4, + -0.008406621, + 0.0012582983, + -0.023606265, + 0.03857212, + -8.620361E-4, + 0.031995866, + -0.004109777, + -0.028954174, + 0.034338135, + -0.01733274, + -0.0065820534, + -0.06367315, + 0.009697893, + -0.045091778, + 0.0010059763, + -0.063458145, + -0.041043334, + 0.05774852, + 0.019757574, + -0.020270072, + -0.0016069793, + 0.034357324, + 0.0025893084, + 0.008405154, + 0.010760851, + 0.0044870046, + 0.026391655, + -0.015786821, + 0.034769915, + -0.02487327, + -0.04264785, + 0.040216282, + -0.05918409, + 0.041034438, + -0.04225264, + -0.052836068, + 0.008239669, + 0.0021577533, + -0.007659069, + -0.07007552, + 0.033395518, + -0.020472182, + -0.030104632, + -0.013974867, + -0.00800313, + 0.015384026, + 0.02053182, + 0.030887488, + 0.02004547, + 0.048571944, + 0.01891407, + 0.055407844, + 0.049423292, + -0.02650406, + 0.05280916, + -0.030628912, + -0.038884457, + 0.0011161932, + 0.021212816, + -0.026761949, + -0.017277153, + -0.079343684, + -0.026383784, + -0.024056062, + 0.0052151456, + -0.028959434, + -0.071568094, + 0.0065549514, + 0.009804879, + -0.02752304, + -0.026766522, + 0.0055742697, + 0.05130091, + 0.013865061, + -0.004570595, + 0.04553334, + -0.03407393, + 0.015214726, + 0.012017871, + 0.035641383, + -0.004134465, + -0.010809318, + -0.016994163, + 0.081135325, + -0.045496386, + 0.07656702, + -0.019535603, + -8.405519E-4, + 0.005489962, + -0.07490379, + 3.8897974E-4, + 0.0016341965, + 0.022067014, + 0.003435264, + 0.02010338, + 0.035260957, + 0.038963344, + -0.02117221, + -0.021280056, + 2.6854497E-4, + 0.0068464475, + -0.043242194, + 0.032018635, + -0.014184058, + -0.034495167, + 0.019134637, + 0.035776712, + -0.022393038, + 0.007266034, + -0.043300238, + -0.0012811637, + 0.024545938, + -0.016244736, + -0.014720009, + -0.012327427, + 0.015384148, + 0.033799786, + 0.006201364, + 0.009229781, + 0.020883616, + -0.08098667, + -0.007190762, + -0.002929173, + -0.0018023823, + 0.017125562, + 0.036492575, + 0.020364337, + -0.0030596703, + 0.0054423, + 0.015350637, + 0.031242989, + 0.015245708, + -0.04015843, + 0.0016630406, + -0.068195395, + -0.0013494587, + -0.027328582, + 0.03291006, + -0.010287296, + 0.035261184, + -0.020140842, + 0.006705306, + -0.023039192, + -0.013957518, + 0.036392465, + 0.02431418, + -0.015265513, + -0.03256506, + 0.029044958, + -0.016103206, + 0.066211075, + -0.023395665, + -0.015730994, + 0.030406306, + -0.01290182, + 0.04503434, + -0.0018754862, + -0.0016047722, + -0.015659707, + 0.04446642, + -0.03604594, + -0.04600575, + 0.013913852, + -0.024984475, + -0.030253645, + 0.033380244, + -0.03485076, + 0.0128574865, + 0.023109196, + 4.6126154E-4, + -0.002852554, + 0.013129376, + -0.046504766, + -0.0067519117, + -0.007771585, + -0.017474575, + 0.032159027, + -0.061715666, + -0.026859947, + -0.027611438, + -0.025686897, + -0.0052765533, + 0.0036332156, + 0.005488244, + -0.0040974915, + 0.0050333394, + -0.010686797, + 6.7477307E-4, + 0.036187634, + 0.041564018, + -0.030795736, + -0.04356391, + -0.027001845, + -0.0033786523, + -0.012887289, + -0.105588384, + 0.050655197, + -0.0029170557, + -0.054231044, + 0.006745341, + 0.051009797, + 0.016292667, + -0.0015866583, + 5.595339E-4, + 0.03729705, + 0.09196146, + 0.0059276456, + 0.006813442, + 0.031272236, + 0.022010505, + -0.018565102, + -0.024845628, + -0.0035641235, + 0.030002851, + -0.011842015, + -0.10201486, + 0.020485396, + -0.016449759, + 0.0755566, + -0.01344759, + 0.065548636, + -0.08091165, + 0.018785294, + 0.02584061, + -0.046502624, + 0.039834816, + 0.05886254, + 0.022955308, + -0.006611093, + -0.0030656434, + 0.022843337, + 0.060245585, + 0.01167774, + 0.008575039, + 0.04022292, + -0.02181202, + -0.016178826, + 0.04665717, + -0.0012012585, + -0.03343055, + -0.041851554, + -0.00680321, + -0.012332667, + 0.012600044, + -0.05117909, + 0.009499554, + 0.009320449 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.4.json b/common/search/src/test/resources/test_documents/images.different-licenses.4.json index c8b76013e..01184f4d5 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.4.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.4.json @@ -1,1343 +1,5250 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.542274Z", - "id": "p72gjhle", - "document": { - "modifiedTime": "1941-01-01T21:13:28Z", - "display": { - "id": "p72gjhle", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.308162Z", + "id" : "q7risoeh", + "document" : { + "modifiedTime" : "1950-06-01T20:26:42Z", + "display" : { + "id" : "q7risoeh", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/7Ws.jpg/info.json", - "credit": "Credit line: JOu8nVk", - "linkText": "Link text: rG9YJunI", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/7Ws.jpg/info.json", - "credit": "Credit line: JOu8nVk", - "linkText": "Link text: rG9YJunI", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#09D635", - "source": { - "id": "gkuq7bhd", - "title": "title-aaSoZTbK2W", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#A7445E", + "source" : { + "id" : "lwrmfaqb", + "title" : "title-NEKnDv8u0A", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "p72gjhle", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "gkuq7bhd", - "sourceIdentifier.value": "2BIWpocztt", - "identifiers.value": ["2BIWpocztt", "pMGai1PR1W", "UU8JZrVGgU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-aaSoZTbK2W" + "query" : { + "id" : "q7risoeh", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "lwrmfaqb", + "sourceIdentifier.value" : "u4fDHr5RUt", + "identifiers.value" : [ + "u4fDHr5RUt", + "4GNHjmv2JG", + "4740rRNoNW" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-NEKnDv8u0A" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.008594314, -0.012405551, 0.0012407214, -0.029907262, 0.023147225, - 0.031714305, 0.032030165, 1.6009193e-4, -0.0012026861, 0.020737158, - 0.008062181, -0.00453372, -0.0100454325, -4.0553216e-4, 8.66923e-4, - 0.007476109, 0.00931628, 4.5691925e-4, 0.009659206, 0.008845982, - 0.02681651, 0.0036719108, 0.0096606, 0.010657106, 0.026663912, - 0.015387669, -0.03730846, -0.009929913, 0.0124546625, -0.0267269, - 0.01466475, -0.0044086664, -0.004512079, -0.012697434, -0.011245149, - -0.035209507, -0.0010756755, -0.0058621415, 0.009302542, 0.010428699, - 0.003340703, 0.010273569, 0.0065055913, -5.068747e-4, -0.020076431, - -0.0024356768, 0.0033424166, -0.012002266, 0.01639455, -0.021334236, - 0.025742592, -9.865712e-4, 0.0032499274, -0.0071135173, -0.012705888, - 0.0048809876, 0.004347313, 0.023292478, 0.0035535975, -0.0077799843, - -0.0034725736, -0.001560675, -0.006493785, -0.01990776, -0.0068358663, - -0.017629385, -0.012513383, 0.0021565442, 0.014166742, -0.01512017, - -0.006207987, 0.014715687, 0.005235785, -0.0056642247, -0.0016108266, - 0.0024837235, -0.0049713803, -0.0085722795, 0.0054482296, 0.027111795, - -0.0044130515, -0.011647694, -0.026406446, -0.008377935, -0.032733522, - -0.0028033324, -0.012813625, -0.018525712, 0.014833599, 0.02378186, - 0.01168439, 0.008924784, 0.0038312676, 0.0021140298, -0.012770951, - -0.024353905, -5.3208304e-4, -8.8572485e-4, 0.030006861, -0.0066785514, - 0.0047317958, -0.020826308, 0.023625098, -0.031785894, -0.0066290777, - 0.023252165, -0.01851266, 0.032211166, -0.013899222, 0.008679479, - 0.013162943, 0.03184627, -4.19273e-5, 0.016177475, -0.003115914, - -0.013910777, -0.007158857, 0.022591501, 0.017157523, -0.016248755, - 0.01315336, 0.024249798, 0.007852251, 0.0058305264, -0.023036517, - -0.019168386, 0.017178701, -0.012225043, 0.01676298, 0.013716261, - -0.019407654, -0.0027054858, 0.019208422, 0.015335115, -0.015149943, - -0.0019089559, -0.014349132, 0.0138659235, 0.02838583, -0.020937124, - 8.1093167e-4, 0.01691536, 4.552067e-4, 0.016600769, -0.008582574, - -0.01853125, 0.020136014, -0.019226491, 0.008874717, 0.003675095, - -0.034919504, -0.00572837, 0.0029299376, -0.019846758, 0.0032069602, - -0.011183852, 0.0028743336, -0.008752802, -0.0024250927, -0.0063675367, - 0.03161706, 0.010520187, -0.008461843, 0.034642234, 0.002333351, - 8.1248477e-4, 0.021237427, -6.9016626e-4, -1.6462378e-5, -0.01010243, - 0.011450002, -0.0026113174, -0.008788208, 0.005541939, -0.0047755986, - -0.011838458, -0.003590521, -0.0013833664, -0.0023670518, -0.037192382, - -0.0066539906, 0.018992495, 0.0026405994, 0.013737571, -0.028070828, - -0.011898396, 0.021299878, -0.007341896, 0.0073065152, 0.027712334, - -0.0074705095, 0.024414144, -0.033706233, -0.005012719, -0.0063050464, - 0.006491382, 0.0030707815, 0.0015684646, -0.0038825276, -0.0098355, - 0.02332273, 3.202053e-4, -0.01774864, -0.015476803, 0.0016371761, - 0.030414881, 0.030722186, 0.010136591, 0.019527068, -0.012041367, - -0.027879087, -0.014813535, -0.0058389306, 0.021278327, -0.002319008, - -0.0017453874, 0.027470894, 0.0058548395, -4.426759e-4, -0.0074975975, - 0.03724292, 0.03060426, -0.00774755, -0.020308156, 0.017293967, - 0.006149971, -0.01156279, 0.004626673, -0.020031957, 0.0010527789, - -9.615715e-4, -0.015102566, -0.03266544, 0.0062718475, 0.010929885, - 0.024416443, -0.007967138, 0.0083602, -0.007577486, 0.0066516213, - -0.01244474, 0.026282007, 0.011115662, -0.001977973, -0.015495548, - 0.021236138, 0.012888051, 0.01652843, -0.028548323, 0.00353757, - 4.654773e-4, -0.010769423, 0.008613985, 0.011020843, -0.0031264916, - -0.015548757, -0.030729398, 0.019990232, -0.016914787, -0.0213414, - 0.008471411, 0.015470373, -0.005023473, -0.007943414, 0.025767764, - -0.0040075122, -0.0030403885, 0.013257832, -0.022155564, 0.0021549992, - -0.026615907, -0.045636564, 0.014922605, -0.0043606577, 0.0060649593, - 0.024092976, -0.011044011, 0.007983822, -0.004516628, 0.0012555924, - -0.005924118, -0.010733342, 0.0077520427, -0.002299341, -0.002471709, - 0.005460521, -0.015781442, -0.013085686, 0.019107848, 0.023624891, - 0.009825552, 0.021293111, -0.012394769, -0.008079558, 4.382978e-5, - -0.008522352, 0.0029328447, 0.003833262, -0.011601198, 0.020784799, - -0.015569476, 0.010004601, 0.011641068, 0.01728792, 0.002589317, - 0.0032862164, 0.00885934, -0.0024324134, -0.015647829, 3.3955873e-4, - -0.015226003, -0.029623076, 0.004941474, -0.022006309, -0.013203465, - -0.0024087138, 0.015145141, 0.011568825, -0.018071748, -0.010926568, - -0.0036073506, 0.017046368, -0.014153568, -0.013144734, 0.0169473, - -0.029030167, -0.0018268735, 0.00954417, 0.0022259993, -0.01456545, - 0.0032850052, -6.110166e-5, -0.006822305, -0.018078618, 0.0146535905, - 2.1486252e-4, -6.3065527e-4, -0.0029592481, 0.008180204, -0.013659653, - 0.03187601, -0.0061286218, 0.0017697519, -0.008987024, 0.011191936, - 7.280417e-4, -0.02629567, 0.0065727695, -0.018686162, -0.0023689077, - 9.798167e-4, -6.7559903e-4, 0.020801326, -0.0063706213, 7.173918e-4, - -0.007696171, -0.008662331, 0.010080917, 0.01592107, -0.010218806, - 0.013056017, -0.0021816515, -7.4323866e-4, 0.027821334, -0.0040561412, - -0.0112865, 0.009627555, 0.007666735, -0.010627746, -0.0025996608, - 0.0025008577, -0.006814129, 0.015045186, 0.010199029, 0.019754427, - -0.017653782, -0.011863484, -0.003437486, -0.017503686, -0.0027833579, - -0.0041094697, 0.003669888, -0.018491296, -0.016343204, -0.026580393, - 0.0014644862, -0.0015884666, -0.006828797, 0.014639387, 5.166328e-4, - 0.005228114, -0.016873809, -0.0026169056, -0.0151221985, -0.024538875, - -9.2672696e-4, -0.006924015, 0.0070563424, -0.014078636, 0.015204405, - 0.0053402944, 0.0012145197, 0.014815302, 0.0061254133, 0.036950298, - 0.010639645, 0.00612369, 0.01510475, -0.019738713, 0.0076555354, - -0.002899928, -0.011644758, -0.011263209, -0.0061564534, 0.002104739, - 3.299831e-4, 0.0014487467, -0.012160697, -0.008490843, -0.026269639, - -0.0045338324, 0.007886223, -6.0710893e-4, 0.013173791, -0.011048693, - 0.05267919, 0.002246014, -0.014757918, 0.0019382152, 0.0045468207, - -0.032462824, 0.0038985838, 0.014446552, -0.027903123, -0.012491332, - -0.005746417, -0.017424092, 0.0067683575, -0.003365647, 0.021813381, - -0.0077954284, 0.0045727976, -0.015550036, 0.027290756, 0.0027901183, - 0.0068100845, 0.014365054, -0.015610501, -0.009040941, 0.006377506, - -0.0048157265, -0.020423863, 0.0012745472, -0.0043289615, -0.01917297, - -0.024608977, 0.05466127, -0.02315502, 0.014762245, 0.02058074, - -0.0033706094, -0.025518417, 0.017893223, -0.013441893, 0.022435935, - 0.012026662, 0.017779537, -0.0013797818, -0.0013026593, 8.2983996e-4, - -0.018692067, -0.009903482, -0.008203449, -0.042060804, 0.012791858, - -0.009697644, -2.1493564e-4, -0.0038942834, -0.008672273, 0.016108423, - -0.025552152, 0.00714091, -0.0073018786, -0.020839494, -0.004740176, - 0.013083646, 0.0018149347, 0.004435828, 0.0021841351, -0.007533099, - 0.01608707, 0.032282107, -0.0037207166, -0.01746155, 0.027272139, - 0.017443988, 0.008111267, -0.012011841, -0.004688576, 0.010314371, - -0.0022864407, 0.015688669, 0.018348042, -0.011776689, 0.017269762, - -0.0019139283, -0.01493666, -0.0114553245, -0.005938817, 0.012410693, - 0.023690939, -0.01936937, -0.03194789, 0.004007956, 0.001214388, - -0.005512034, -0.0074437377, -0.010951169, 0.015829433, 0.010881642, - 0.005369779, 0.012367909, 1.8656517e-4, 0.0026771915, -3.9164384e-4, - -0.012368787, -0.014022706, -0.011123774, 0.01906979, -0.011077792, - -0.010654387, 0.015029465, 0.00763986, 0.020511393, 0.0016355194, - 0.0023473224, 0.0039603105, 0.02243979, 0.017590128, 0.011436282, - 0.0060590347, -0.012082829, -0.024124593, 0.011385163, -0.019296385, - 0.019307744, 0.0078932475, 0.0040373174, -0.0063039535, -0.013973294, - -0.02578426, 0.011221996, 0.0010455877, -0.015557547, -4.0917363e-4, - -0.008513554, -0.012595472, -0.014974179, -1.761177e-4, 0.013654019, - -0.008803276, 0.019318016, 0.0062346384, 0.01368582, 0.0071899444, - 0.009684494, -0.033243887, 0.025175683, -0.021253224, 0.014757159, - -0.017506955, 0.001793391, 0.016361775, 0.024568697, 0.025442721, - 0.006074013, -0.026997957, 0.014133782, -0.0027755355, 0.0014157246, - -0.007141296, 0.0022391148, 0.013663022, 0.0075571956, 0.007766922, - -0.009041545, 0.010227156, 0.0037137882, -0.015420244, 0.020340927, - 0.01113249, 0.016267177, -0.016660592, 0.002124054, -0.020824661, - 0.018868232, 0.007534754, -0.022399211, -0.01466525, -0.018673366, - 0.017898098, -4.7338064e-4, -0.013955433, 0.013676899, 0.013735557, - 0.018856449, 0.0045233034, -0.030620132, -0.0015624372, -0.011730022, - -0.023432806, -0.007578352, -0.0024529798, 0.0039523123, 0.035354987, - 0.018872252, -0.009405075, -0.014817613, 0.013567973, -0.0022989702, - 0.014367853, -0.0037645882, 0.0051523163, 0.0011483675, -0.0019410616, - -0.030485142, 0.0114247175, -0.023186661, 0.0047763437, 0.034025673, - 0.002919803, 0.04301354, 0.016623465, -0.00495893, 0.004041901, - 0.021937754, 0.0012421063, 0.009207684, -0.013727051, -0.016175525, - -0.039123096, 0.0016360421, 0.022302173, 0.012297889, -0.03727498, - -0.0014954045, -0.00826436, 9.0238097e-4, 4.3104307e-4, 0.01622306, - 0.018943911, -0.009063942, 1.02425445e-4, -0.011842568, -0.003989351, - -0.013988877, -0.019383043, -4.0087962e-4, -0.007086895, 0.0029798762, - -0.0031178165, 0.0015383789, 0.018719204, -0.00868106, -0.009284888, - -0.0040028156, -0.014148132, -0.020593312, 0.014594881, -0.0010964163, - -0.016506625, 0.0082232, -0.00520101, -0.01325179, 0.0037839103, - 0.0015076776, 0.01898643, 0.01102953, 0.012721958, -0.010145177, - -0.006319744, -0.01726743, -0.006960062, -0.0013201702, -0.025043886, - -0.013140998, -0.0021190147, 0.007549887, 0.006414799, -0.022533514, - 0.019224802, 0.0084049, -0.0118133, -0.017872298, -0.01671012, - -0.020380717, -0.019255446, -0.005686819, 5.9503416e-4, -0.013133238, - -0.017948095, 0.008701368, -0.027595405, -0.019750003, -0.028040398, - -0.008639224, -0.021094998, 0.010049233, -0.011142904, 0.039430436, - -0.00998168, -0.011763115, -0.012899231, -0.009785778, 0.01374043, - -0.0133558065, -0.014451853, -0.0029876255, 0.007358752, -0.0042153727, - 0.016991986, -0.008992856, -0.014273769, 0.0062675667, 0.008000546, - 0.010288712, -0.014342784, -0.0051964256, 1.6701611e-4, -0.0020491984, - 0.010159143, -0.021413324, -0.0114665385, -0.011097308, 0.018697634, - 0.02024716, 0.0027375107, -0.003622635, 0.0055277166, -0.016206235, - -0.009140306, -0.022744399, 0.015598351, 0.009327312, -0.005907249, - -0.01478833, -0.0014563961, 0.017081887, 0.0054241517, 0.027355878, - -0.013442511, 0.00688393, -0.021480951, -0.004863182, 0.007853119, - -0.013954239, -0.017762927, 0.0011163771, -0.023557262, -0.0123425815, - -0.016695114, -0.015167123, -0.0011807554, 0.017330756, -0.011745967, - -0.009236358, 0.0021651867, 0.01675756, 0.0070707146, 0.0025355069, - -0.008023303, -0.00582131, 0.010927609, 0.0020257665, 0.024718702, - -0.018895527, -0.0011481693, -0.0015836228, 0.045467556, 0.0133483, - -0.03810292, -0.0020873002, 0.02407589, -0.026013222, 0.019065646, - -0.0018589115, -0.011376756, 0.02389694, 0.0127519695, 0.01200659, - -0.017889535, 0.03120039, -0.019047001, 0.0012752672, -0.0021908972, - -0.008789217, -0.018976904, -0.023355277, -0.0040326556, -0.005441423, - -0.007409998, 0.0044978904, -0.0062062265, -0.0038781276, 0.009659862, - 0.017385017, -0.0028749981, -0.016112842, 0.013225534, -0.016948562, - 0.0051451465, -0.001832605, -0.007299341, -0.018936154, -0.011250055, - -0.016102573, 0.018803522, 0.01281724, 0.009236842, 0.008715713, - 7.411206e-4, 0.032960046, 0.013578397, 0.015172079, -0.027962727, - 0.0030514044, 0.018760018, 0.00512089, -0.03276673, -0.024549093, - 0.007278812, 0.0067872116, -0.0112714125, -0.018132659, -0.009577238, - -0.019487878, -0.0063156737, -0.016036293, 0.021065578, -0.018524203, - 0.013116925, -0.014375358, 0.027933227, -0.0014437393, -0.0372962, - 0.0035166505, -0.009571107, -0.00989802, -0.008774987, 0.007389679, - -0.010407874, 0.011796015, -0.012534642, -5.288524e-4, -0.016591359, - -0.0045120176, -0.033833783, 0.04267935, 0.010282095, -0.0015936126, - -0.014409965, 0.013515213, -0.00401501, 9.2311925e-4, 0.006807582, - -5.8228744e-4, 7.8447495e-4, 0.015181715, 0.014531192, -0.016345479, - -0.001052439, -0.010842815, 0.0021117574, 0.026262816, -0.021437382, - -0.006894222, -0.02941284, -0.016016724, 0.0025183237, -0.010848115, - 0.003428412, -0.024301948, 0.008753099, 0.043393124, -0.01645618, - 0.019037396, -0.02870439, 0.004386649, 0.022028612, 0.011622789, - 9.83969e-4, 7.881056e-4, 0.0103641, 0.016089378, 0.018064076, - 0.011996205, -0.005605871, -0.0063095097, -0.016903045, 0.008896482, - 0.013294635, -0.023920545, 0.0024393513, 0.0017832627, 0.029452087, - -0.0048691826, 0.0406083, 0.005268994, 0.02700693, 0.006519883, - 9.1313204e-4, 0.01067505, 0.0070601273, 0.0056248405, -0.020770498, - -0.029292654, 0.0032825011, -0.014717048, -0.020643445, 0.0032783912, - -0.0100771785, 0.02197414, -0.017238332, 0.021519262, -0.014971183, - 0.016681688, -0.0063450444, 0.0020758228, -9.479228e-4, -0.0013252854, - -0.023621246, 0.008496255, 0.0068279216, 0.01707954, 0.01332697, - -0.017416522, 0.007907075, 0.003280501, 0.015193909, 0.0024845584, - 1.523192e-4, -0.030639183, -0.016890345, 0.013437491, -0.003642888, - -1.17476025e-4, 0.01641044, -0.015980415, -5.853454e-5, -0.009053365, - -0.0077667823, 0.02346413, 0.004747069, 0.0030681347, -0.007485395, - 0.01804894, -0.0044887797, -0.023688102, -0.0070524286, 0.0109236, - -0.029564459, -0.0013268014, -0.015320621, -0.0023700886, -3.3737376e-4, - -0.027430173, 0.021079827, 0.009054836, 0.014869738, 0.0056564696, - 0.010877505, 0.001741811, -0.009526741, -0.00474515, -0.0031458864, - 0.013334122, -0.014571685, 0.009172206, 0.028818464, -0.008807015, - -0.036321063, 0.010173189, -0.0034126318, -0.002757365, -0.0030383486, - 0.027547512, 0.0022335872, 0.011664847, -0.0055337916, -0.0034593574, - -0.0059153996, 0.00984578, -2.2108499e-4, -0.021937294, -0.02110934, - 0.0030719384, 0.0018783582, -0.019361401, 0.0066531138, 0.011239387, - -0.023339443, 0.013202032, 0.025687693, 0.02097727, -0.030411866, - -0.035941318, -0.021059465, 0.002016041, -0.024516704, -0.018726205, - -0.010554671, -0.0037864428, -0.007949529, -0.010702249, -3.6610698e-4, - 0.017144205, 0.021902923, 0.010679336, -0.0104645165, -0.0021994603, - -0.0044185407, 0.017596802, -0.0109205395, -3.704067e-4, 0.0028058272, - 0.004156744, -0.016151184, 0.003003846, 0.009251924, -0.0041237776, - -0.006844648, -0.00930985, 0.019668955, 0.005388638, 0.0024598357, - -0.02190889, -0.012686117, -0.03207305, 0.019733993, -0.027947718, - 0.0013439602, 0.005740926, -0.009088473, -0.011000505, 0.0011261124, - -0.008829377, 0.009843207, 0.009754161, 0.002049524, -0.0133188395, - 0.0044491035, 0.014773853, -0.015667079, 0.018831298, -0.008707942, - 0.012047789, -0.022578845, 0.0038133787, 0.012358145, 0.030836081, - 0.016896836, 0.017252395, -0.019663706, 0.0162023, -0.013564873, - 0.02279108, -0.010909094, 0.012036855, 0.012945574, 0.013102976, - 0.008764532, -0.049095698, 0.0013886358, 0.011760085, 0.003946825, - -0.0029495524, -0.038610306, 0.0043988503, -0.0066148913, 0.027618155, - -0.0043413867, -0.005589076, 0.011749892, -0.010321229, 0.027460868, - 0.029003337, 5.4587604e-4, -0.017501399, 0.0010447423, -0.025816353, - 0.00746521, 0.007683338, 0.013209801, -0.00813657, 0.00267505, - -0.005824848, -0.0126236845, 0.020973178, 0.00606181, -0.01367937, - -0.013121618, 0.0031800908, -4.7751644e-4, 0.011212717, 0.0026561455, - 0.017579572, -0.020007085, 0.00354217, 0.01169247, 0.02328195, - 0.020725548, -0.0072289417, -0.024412502, 0.01704154, -0.016499255, - 0.002548408, -0.024247518, 0.008633344, 0.025597366, 0.0014729986, - -0.0022114953, -0.009550296, -0.006263103, 0.027440045, 0.017293604, - -0.0107322065, -0.03728294, 0.03184598, -0.0036251915, -0.030434271, - 0.013211368, 0.0041961456, 0.010574989, -0.03220723, -4.1840726e-4, - -0.0028306127, -0.0023340823, 0.010008779, 0.0065480927, -0.015337584, - -0.020078508, 0.004451737, 0.027962577, -0.024803374, -0.004517099, - 0.010233593, 0.013555031, 0.01628116, 0.033825472, 4.261656e-4, - 0.009205926, 0.019233445, 0.0139465295, 0.021939883, -0.015957782, - -0.013850521, 0.007740104, -0.0034441513, -0.036370553, -0.012348878, - 0.009646849, -0.019631613, -0.0039239884, -0.005600735, -0.0032794015, - 0.019981308, -0.02993328, -0.0045515685, 0.0068501295, 6.721747e-4, - -0.025871048, -0.017681161, 9.548604e-4, 0.0021280416, 0.0053338525, - -0.021082412, -0.0042570387, -0.021143578, -0.014813897, -0.0074349395, - -0.0028706791, -0.013253464, -0.0054212525, 0.0073280013, 0.0034002191, - -0.003861476, 0.0052980464, -0.03143007, -0.0042855167, 0.007889664, - 0.009118391, -0.012103997, 0.00855673, -0.00652187, -0.023394896, - -0.016476179, -0.008330243, 0.0041007507, 0.021857118, 0.024003811, - 0.019777033, -0.0029443172, 0.029820833, -0.010131638, 9.778052e-4, - 0.005291569, 0.023041375, 0.008502601, 0.037570316, 0.007964651, - 2.281319e-4, -0.014232722, -0.034369804, -0.0046235765, -0.013957782, - 0.0135463895, -0.014573623, -2.856673e-4, -0.032371093, -0.0014419552, - -0.015074058, 6.72182e-4, -0.0013594818, -0.0021644467, -0.0015155677, - 0.006507181, -0.007182101, -0.0055384235, 0.0045586145, 0.025382245, - -0.023457346, 0.006383365, -0.02916175, 0.039163418, 0.0010570673, - -0.008515726, 0.016461896, -0.0041200817, 0.020901466, 0.014534117, - -0.007528006, 0.006417704, -0.017890895, 0.015102407, -0.005538212, - -0.0057824836, 0.024378773, -5.451623e-4, 0.0018733809, -0.028363733, - -0.042989235, 0.0020326802, 0.01269102, 0.006972529, -0.0053715347, - 0.004856907, -0.0047762985, 0.008357303, 0.010310151, -0.014858369, - -0.0042746025, -2.4072729e-6, 0.009626712, 2.0284043e-4, 0.024066104, - 0.001147407, 0.037184045, 0.008339341, -0.009515807, 0.018834388, - 0.02479907, 0.008349898, -0.0051903455, -0.017133936, 0.0133148795, - 0.0089083575, -0.0096904, 0.011464627, 0.006607794, -0.012819405, - -0.016964164, 0.008094535, 0.029141871, 0.01211206, 0.0043025296, - 0.0032419919, -0.027776914, 0.01898936, -0.019982047, 0.025164066, - 0.023514286, 0.014828376, -0.0050130566, -0.021922015, 0.012826851, - -0.011073318, -0.049201384, 0.019468792, -0.002070573, -0.011390922, - 0.0026107766, 0.005541521, 0.025280515, -0.021648373, -0.023271108, - -0.037321772, -0.0059100473, -0.0042041405, -0.015535126, -0.00969981, - -0.003988413, 0.0051175803, 1.585652e-4, 0.007893364, 0.015541246, - -0.0064533856, -0.0074665314, -0.008741627, 0.01630881, 0.011789038, - 0.012180505, -0.02041714, 8.803942e-5, -0.00864353, -0.0011352143, - -0.008055175, -0.030684507, 0.0050931103, -0.0015390438, 0.03192575, - 0.0011476816, 0.013263365, -0.0048320033, 0.01452726, -0.021621361, - -0.01615913, 0.012756362, 0.019869026, -0.04335757, -0.0056687295, - -0.0048853783, -0.0029251042, 0.0063227615, -0.0071929744, 0.0047905752, - 0.0027137029, 2.0328922e-5, -0.005164301, 0.0045298473, -0.023373619, - 0.0049502407, -0.041672185, 0.0103969565, 0.01886693, 0.009809949, - 8.324237e-4, -0.01222665, -0.002415868, -0.016369814, -0.003546478, - -0.002197067, -0.01864416, 0.025089253, -0.017110107, 0.027647289, - -0.006941902, -0.009796931, 0.016527854, 0.0034376755, -0.013533234, - -0.020194031, 0.003963151, -0.01871285, -0.006596553, 0.006190165, - -0.0110631455, -0.007957656, 0.004279168, -0.0073123644, 0.0061093513, - -0.0020295654, 0.0053320546, 0.018336542, 0.0026567688, 0.016103849, - 0.0024429157, -2.3774985e-4, 0.01659065, 0.032356158, 0.0027749492, - 0.013997145, 0.018969253, 0.015492841, -0.017581457, 9.033007e-4, - 0.010644173, 0.013853484, 0.0026289083, 0.04178869, -0.02134275, - 0.008551046, -0.0036828888, 0.0018827968, -0.019565126, -0.011585596, - -0.0011568526, 0.012641779, 4.678778e-4, -0.015669007, -0.007202885, - -0.0076203723, -0.0073522273, -0.017920177, 0.020461353, -0.019403448, - -0.015524364, 0.0038615575, 0.020991297, -0.0085111605, 5.6479545e-4, - -0.0015659004, -0.020791583, 6.294389e-4, -0.01659164, -0.023282183, - -0.02819621, -0.01879295, -0.019145947, -0.0058880206, 0.025646757, - 0.024034915, 7.064085e-4, -0.009592577, -0.01667786, -0.013429592, - 0.010451949, 0.021058068, -0.028242862, -0.0079843355, -0.006262788, - 0.009507968, 0.011653977, 0.017098587, 0.008216857, -0.021346085, - 0.014248522, -0.010727443, -0.016736638, 0.008902588, -0.002878501, - -0.024398645, 4.601263e-4, 0.0018477037, 0.002137277, 0.019151896, - 0.005774845, -0.016202193, -0.0058924095, 0.0053066323, 0.029753868, - -0.011136525, -0.022049984, 0.0068459436, -0.0013994777, 0.016941415, - -5.931747e-4, -0.006147036, 0.026095651, 0.004803396, -0.0075592045, - -0.0036181153, -0.022306932, -0.01483783, 0.013044279, 0.0070072818, - -0.014505528, -0.0021731297, 0.031740025, 0.009763246, -0.0056753564, - 0.0099553745, 0.0109433355, -0.0040307445, 0.0018813498, -0.020279871, - -0.008971195, 0.0069118124, -6.521802e-4, -0.010363489, 0.011571402, - -0.009348978, -0.015543685, -0.037930325, 0.011270596, -0.029710246, - -0.0029868921, -0.014614653, -0.009115432, 0.019287055, 0.020686932, - -0.0010663389, -0.0013469636, -4.3732102e-4, -0.025094002, 0.0025102994, - 0.00764637, 0.037551515, 0.026592419, -0.0034693738, -0.019224625, - 0.006278316, -0.0043753562, -0.0059937653, 0.0022787105, 9.961989e-4, - -0.015135207, -0.0018242155, 0.005338088, 0.0018913711, -0.020337686, - -0.036609434, -0.015900511, 0.029456388, 0.027582651, 0.038740512, - -0.0052066385, -0.0068610734, 0.01229989, -0.022444589, -0.004072353, - 0.011575036, 0.018554898, 0.014083954, 0.03365454, 0.016728241, - 0.008144187, 0.012912588, 0.019842254, 0.024732143, -0.0135109015, - -0.0033076853, -0.012167951, -0.025227232, 6.087588e-6, -0.0047820327, - -0.017739207, -0.029242713, 0.0063569066, 0.024677599, 0.0063084504, - 1.6813088e-5, 0.008820598, -0.021092528, 0.00827646, -0.019042347, - 0.011316791, -0.009645275, 0.0059786853, 0.0013072053, 0.010422664, - -0.027318869, -0.01363661, 0.0039813193, -0.039491795, 0.008168549, - 0.0059050145, 0.0015949901, 0.024994807, -0.02533614, -0.0041096047, - 0.0032046137, -0.026214268, 0.007821735, 0.00843043, -0.031976834, - 0.018080791, 0.0030669847, -0.011396327, 0.01295276, -0.013855902, - -0.037046526, 0.00829682, 5.6659133e-4, 0.02349628, -0.001331783, - -0.01790094, -0.016505608, -0.009631555, 0.010053683, -0.02728165, - -0.019746682, 0.025300903, -0.0019373097, -0.01627775, -0.009808596, - 0.0015814633, -0.013684114, -0.018296003, 0.018127762, 0.0044551147, - 0.021876551, 0.0015573064, -0.0066128834, -0.0015566688, 0.012420373, - 0.024431571, -0.02298072, -0.023455922, 0.011529343, -0.016661491, - -0.012788811, 0.0025723118, 0.027819462, -0.0035569991, 0.036039077, - -0.030709008, 0.020289045, -0.006844279, -0.014635654, 0.024737071, - -0.0046680924, 0.02102197, 0.0056220833, 0.020651639, 0.008019248, - -0.0076428284, -0.015543971, 0.008116421, 0.015499729, 0.0021110193, - 0.0029578449, -0.06101405, 0.003170047, 0.01484997, -0.0011270036, - -0.009917586, 0.017098177, -0.018624116, 0.0062467484, -0.016533699, - 0.007934551, -0.023084907, 0.0149301905, 0.009093656, 0.028706443, - 0.006527527, 0.015875228, -0.016209576, -0.013664579, 0.016725954, - 0.010674326, 0.02655291, 0.01259765, 0.016653422, 0.029495269, - 0.0033879504, -0.006244882, -0.0048127533, -0.009711261, 0.011853894, - 0.0012901374, -0.0060485825, -0.0048635737, -0.042897712, -0.027286943, - -0.029864749, -0.0056400895, 0.0047452417, 0.03413293, -0.033368, - 0.03126642, -0.021242503, -0.006539836, 0.0029432552, 0.0046078796, - 0.012674395, 1.8097558e-4, 0.004457994, -0.0248771, 8.390791e-4, - 0.0077087115, 0.01591767, 0.021077812, 0.013802485, 0.015953343, - 0.0032980607, 0.012233914, -0.03337739, -0.016390655, 0.015795637, - -0.012733192, 0.006306439, -0.0038090667, -0.019496987, 0.025600975, - -0.024724437, 0.008398141, 0.0055029267, 0.015236275, 0.0124737015, - -0.0021483456, 0.011377374, -0.01040033, 0.004134034, 0.0053595454, - 0.003459752, 0.03340199, -0.0032988782, 0.020196233, 0.0037369074, - 0.02631481, -0.01244813, -0.03398573, 0.0039035436, 0.009737234, - 0.015943218, 0.014482791, 0.007914486, -0.018470613, 0.0062713698, - -0.023456836, -0.017119909, -0.002214024, -0.008013636, -0.014178608, - 0.004454156, -0.024990696, -0.007539581, -0.0073450063, 0.0096521145, - -0.011324451, -0.0011443074, 0.010942629, -0.009970324, -0.011360745, - 0.024968104, 0.0014004634, -0.0059920833, -0.0037959586, -0.011534387, - -0.005519919, -0.009173327, 0.0062842136, -0.010795441, 0.009997428, - 0.040599328, 0.0072257677, 0.004041491, 0.013932187, -0.005355622, - -0.013320773, 0.027912855, -0.04259839, -0.009134596, 0.021048663, - -0.0187521, -2.738614e-4, -0.014613766, 0.013553374, -0.022546053, - -0.019256933, -0.026386352, -0.0036085187, 0.011304121, -0.024378974, - 0.013074022, 0.017954778, 0.011169093, 0.0030711705, 0.02749786, - 0.027699318, 0.008531891, 0.019142518, -0.032732654, -0.012685088, - 0.00194183, -0.02546388, 0.010129111, -0.012664081, 0.0027545225, - 0.016625278, -0.02607243, 0.009852529, -0.015094277, -0.0049159136, - 0.0020192382, 4.7832401e-4, 0.024620807, -0.0015004945, 0.016040474, - -0.0075988844, 0.011916296, -0.008117775, 0.0057220855, 0.01285765, - -0.013963784, 0.026900634, 0.0051324107, 0.011015533, -0.008598717, - 0.009290578, -0.018916423, -0.0028790324, -0.014694909, -0.012215729, - 0.013549786, -0.0341544, 0.011959575, 0.0025274118, 0.016987521, - 0.008947451, 0.0045874817, -0.0048638466, -0.014373655, 0.0031376937, - -0.00796307, -0.007955196, 0.033248365, -0.016798899, -0.017738506, - 0.012243718, -0.029020034, -0.0124581745, -0.009652304, 0.00875447, - -0.010051162, -0.004369, 0.013562306, -0.0041672136, -0.005766844, - -0.012374253, -0.01047818, 0.012452292, -0.0058887443, -0.008903099, - -0.007953687, -8.58909e-4, 0.0046247225, 0.024891773, -0.0026743892, - -0.004566301, 0.015323879, -0.021712663, -0.031618316, -0.025272012, - 0.01443625, -0.0128081795, 0.01054906, 0.0053686355, -0.023809576, - -0.018134136, 0.008622408, 0.005982977, 0.0317578, 0.018873055, - 0.0039061378, -0.005962122, -0.021698195, 0.025981296, -0.0065997746, - 0.011305254, 3.9289854e-4, -0.0050265845, 0.014147586, -0.0036092345, - 0.010494557, 0.023748426, 0.0034541932, 0.0015097084, 0.0021429162, - 0.0014260334, -0.012574381, 0.0066439505, 0.012031597, -0.0405432, - -0.023595938, 0.007846667, 0.04618998, -0.007425343, 0.025549537, - -0.021606365, 0.010877203, -0.0051338053, 0.016698724, 0.008911921, - 7.2048965e-4, 0.04422788, -0.016757244, -0.005611988, 0.008219397, - -0.0053581274, -0.02375507, -0.02123504, -0.0066431514, -0.017067883, - -0.003895863, 0.014638266, 0.0026759906, 0.0043526534, -0.0122103, - 0.0055834753, 2.1338412e-6, -0.010074372, -0.012029861, 0.0038653137, - 0.027178584, 0.046572343, 0.009309014, 0.0016464322, 0.018358395, - 0.03128612, 0.0392518, -0.011125385, 0.013846901, 0.017922565, - -0.006140887, 0.0015727122, -0.011268777, -0.016574929, -0.019091671, - 0.025596065, 0.0027537497, -0.020952515, -0.0030261446, -0.020987002, - -0.019429618, 0.0029808374, 0.0025338796, -0.013869452, 0.014162817, - 0.029357847, -0.009544894, 0.03754261, 0.0067023216, -0.0069542453, - -0.0038160721, -0.0014833757, -0.015029622, -0.009114446, 0.029268742, - 0.01850323, 5.0056184e-4, 0.010206822, -0.018675836, -0.016924975, - 0.007142192, -0.013803629, -0.0017140962, 2.5414524e-4, 0.028489755, - 0.0021608302, -0.01216608, -0.021012858, -0.005903774, 0.0075298785, - -0.0034834808, 0.01696263, -0.014936381, -0.026469965, 0.017737938, - -0.005114534, 0.012845835, -0.0025660165, -0.02859727, -0.0351731, - 0.01121587, 7.2257094e-6, -0.038274825, -0.006961034, 0.0014802817, - -0.0065863477, 0.0028024232, -0.0030149745, 2.3743945e-5, -0.014114228, - -0.003171321, -0.028822416, -0.0038657174, 0.014365192, 0.010587167, - 5.5592076e-4, -0.009096889, -0.010756403, 0.0013547246, -0.0082920315, - 0.023903513, 0.02090678, 0.01399172, 0.011492936, -0.01869929, - 0.012937086, 0.028371742, 0.0053813625, 0.017157486, 0.001973455, - -0.030109404, -0.0038462356, -0.019767486, 0.028990064, 0.017364504, - 0.016999522, 0.008265903, -0.013676917, -0.005877921, -0.022765208, - -0.006018548, 0.013876724, -0.007510764, -0.008067235, 0.0028018937, - -0.0010252189, 0.009021685, -0.01882333, -0.005438339, 0.005563072, - -0.0077814204, -0.005714596, 0.008710079, -7.64926e-4, 0.016324228, - -0.015049329, 0.004542831, -1.5667875e-4, -0.030627133, 0.018731598, - -0.005874695, -0.04037459, 0.02377647, -0.022672135, 0.019499017, - 0.0032125148, 0.021267617, -0.0050897715, 0.005446517, -0.02302444, - -0.02095649, -0.01159322, 0.0069893654, 0.009273108, -0.014792307, - -0.02469008, 0.0056540403, 0.017077588, 0.03081304, 0.00920585, - -0.017904758, 0.0066908402, -0.009487398 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -4.1954653e-4, 0.002418713, 0.0028899133, 0.017327804, 0.0010689631, - 2.3072585e-5, -6.9766067e-4, -0.012762466, 0.0032035676, 0.007362903, - -0.0489849, 5.909101e-4, 0.007505449, 0.0054715443, -0.012413963, - -0.007646869, -0.012650831, -0.013117698, -0.0036183055, -0.008105463, - -0.012506451, 0.0020866038, 0.021153342, 0.0113282595, 0.026577061, - -0.0013037202, -0.01042327, 0.006688188, -0.0067419847, 0.021279719, - 0.008752819, -0.011542397, -0.011337291, 0.0130999675, -0.029313022, - -9.3811e-4, -0.014164576, -0.018662063, -8.809794e-4, -0.003659418, - 0.01685851, -0.001673207, 0.02378595, 4.3128064e-4, 0.038335122, - -0.019483084, -0.00832838, -0.0066500846, -0.009322654, 0.009621314, - 0.014597694, 0.015055631, 0.0027118227, -0.0148931565, 0.014949363, - -0.010587752, 0.029845743, 0.0188199, 3.6245922e-4, 0.00985924, - -7.2113745e-4, 0.0064514456, 0.013329591, -0.009607511, -0.0111184595, - 0.027150484, 0.025914408, -0.015755633, 7.6657557e-4, -0.013386979, - -0.00954798, -0.008347143, 1.03051185e-4, 0.0035717622, 0.013211451, - -0.013839456, -0.0076032234, 0.02258281, -0.006026219, 0.026773712, - -0.011733328, -0.0045057787, -0.008190125, 0.018486308, 0.013449716, - -0.024994805, -0.0057049547, 0.023693487, -0.019986307, 0.0073906556, - -0.01952292, 0.0051388904, -0.0015753848, -0.019293224, -0.029097212, - -0.006121276, 0.0038512945, 2.5211016e-4, -0.008432482, 0.030693531, - -0.013831306, 0.035692204, 0.011340887, 0.013704208, -0.006478225, - -0.00452809, -0.024631782, 2.158642e-4, -0.015885133, -0.00553143, - 0.0022162362, -0.0069647296, -0.009446994, 0.043412194, -0.009092597, - -0.0053606993, -0.009758244, 0.009200099, -0.010765583, 0.008774021, - -0.008982014, -0.013480057, -0.0058190865, 0.0050538075, -0.010843583, - -0.021926923, -0.03869076, -0.013810621, -0.020599585, 0.009841519, - -0.004733467, -0.013034528, 0.01720818, 0.01648672, -0.014782889, - 0.0083476305, 0.037027504, 6.418382e-4, -0.017143158, -0.009568713, - -0.014306276, -6.552943e-4, 0.0018784786, -0.0058145346, 0.026863962, - -0.002273844, -0.028553803, 0.026946425, -0.025375085, -0.0011671792, - -0.010776123, 0.00954967, -0.00863634, -0.001322855, 0.020292604, - 0.005851605, 0.031602014, 0.01413096, -0.013932428, -0.023389652, - -0.02130755, -0.013189874, 0.0072582965, 0.016203338, -0.0053488635, - -0.009977487, -0.010646689, -0.0015782779, -0.013627219, -9.2287926e-4, - 0.023332726, 0.0077447393, -0.013615942, -0.0052546407, 0.025483998, - 0.022512218, -0.0083842175, 0.013490738, 0.004962059, 0.0016519475, - -0.010189833, -1.9716831e-4, 0.028261065, 0.00719435, 0.0097229825, - 0.007351949, -0.019345868, -0.02615257, -0.00277333, 0.012706297, - -0.010116356, 0.010148583, 0.016508438, -0.004941777, 0.0018077571, - 0.0094215395, 4.833784e-5, -0.006763675, 0.022243144, 0.011583645, - 0.0053627784, -0.018171435, -0.0042256177, -0.00939539, -0.013951037, - -0.028962051, 0.00828138, 0.0016622222, 0.007755582, 0.010225355, - 0.001576102, 0.0048113163, 0.0039513703, -5.3267365e-7, -0.005217347, - 0.007354666, -0.025394522, -0.003599493, 0.008720634, -0.029435536, - 0.014494739, -0.016400684, 0.0012614175, -0.0053069913, 0.010573464, - 0.006774067, 5.971083e-4, -0.013931979, 0.008453694, -0.002455814, - 0.025889872, 0.014493807, 0.01222052, -0.017216442, 0.0056658247, - 0.019069258, 0.005203057, 0.020492671, 0.013957078, -0.0011237152, - 0.013658521, 0.026091816, -0.020719195, -0.040141575, -0.0018983263, - -0.02092881, 0.011895498, 0.012007285, -0.035075802, -0.0032093506, - -0.0043031126, 0.00323714, 0.005510236, 0.025066571, 0.0038853225, - -0.014921077, 0.015510174, -0.019279955, -0.0036789388, 0.02971017, - 0.014048861, -0.016992165, 0.030963281, -0.02191161, -0.009264577, - -0.026988186, 0.015986001, -0.030704936, 0.009279535, 0.002202637, - 0.009659954, -0.01707342, -0.0104171075, 0.019758279, -0.017056, - 0.0059690233, 1.6015762e-4, -0.019463683, 7.5411313e-4, -0.0020227875, - 0.023229022, 0.005998913, -0.03990697, -0.02550936, 0.009474648, - -0.010894917, -0.0016047443, 0.008168978, -0.022297207, 0.009789715, - -0.009122078, 0.004509724, 0.031866163, 0.017557919, 0.0056624417, - 0.022239951, -0.0048444965, 0.012809314, -0.02478145, -0.0070693376, - 0.020774255, 0.013505238, -0.01649818, 0.023527233, 9.645496e-4, - -0.027181173, 0.004822142, -0.003516726, 0.014397126, 0.013781227, - -0.017208656, -0.027322536, 0.0049561914, 0.0254336, 0.007658802, - -0.019614302, -0.0070518283, 0.0033314766, 0.02138526, -0.0026543762, - -0.018500019, -0.004968922, -0.00892251, 0.0068185907, -0.022762716, - -0.016970072, -0.0082253, 0.005514033, -0.010849568, 0.0057540173, - -0.032256905, -0.018993853, -0.024449775, 0.00554942, 0.020772142, - 0.012373528, -0.021234332, 0.014619969, 0.02743686, 0.036147207, - 0.008035712, 0.020656427, 0.0012266973, -0.0031838056, -0.008511292, - -6.2359474e-4, -0.005747862, -0.015366803, -0.02441269, -0.0058646924, - -0.007138438, -0.0027516824, -0.0039526136, 9.5841417e-4, 0.0052501387, - 0.022067824, 0.012858772, -0.0034601365, -0.018062113, -0.017124169, - -8.317199e-4, 0.008090497, -0.0065069464, -0.0050957976, -0.002908048, - 0.009894547, 0.0044920435, -0.024117034, -0.01972761, -0.021774512, - 0.007438667, -0.029755497, 0.010320957, -0.0076920926, 0.003422336, - -0.009628674, -0.027689297, 0.009076024, -0.020273665, 9.158991e-4, - 0.0071933316, 0.023179578, -0.01481715, -0.019059652, 0.012739551, - -0.0019623435, -0.02370719, -0.017861357, 0.0019188493, -0.0015687968, - -0.019877033, -0.019573146, -0.005490039, 0.0016057611, -0.010885228, - 0.021184383, -0.0112774465, 0.009847607, -0.008063545, -0.01900069, - 0.0065093273, -0.040526863, 0.010939008, 0.0066394736, -0.007776721, - -0.011474366, 0.018289462, 0.0045655235, 0.018264266, -0.0059238207, - 0.022693412, 0.029158477, 0.027377535, -0.01943296, 0.009352841, - -0.00803409, 0.02066626, -0.004864255, -0.010934587, -0.008571056, - -0.0025289261, -0.0039643566, 0.00346623, -0.0104428595, 0.016941803, - -0.022853186, -0.018005418, 0.044164576, 0.017498486, -0.019423677, - -0.002956451, -0.018786015, 0.006952367, -0.010150068, 0.009510551, - 0.008885098, -0.009954319, 0.002664474, 0.032263804, -7.9400453e-4, - -0.0018774937, -0.002786146, 0.038978845, 0.016805463, 0.0021025722, - -0.0018505973, 7.730684e-4, 0.01002347, 0.007556524, -0.007849199, - 0.014504035, -0.0078083123, -0.009998084, -0.0049550957, -0.03411623, - -0.012759711, 0.011166039, -0.004720765, -0.01583804, -0.0030296328, - 0.0017891858, 0.016996065, -0.023567943, 0.011216429, -0.02472342, - -0.0148293385, -0.02725701, 0.007907896, -0.010578455, -0.023345413, - -1.946256e-4, 0.0016343372, 2.8817775e-4, 0.004761451, 0.03822465, - 0.0057213902, 0.0019363898, -0.010939165, -0.010910675, -0.0097483, - -0.010024098, -0.0086953435, 1.9885904e-4, -0.014288029, -0.022111615, - 0.039103556, 0.032109864, 0.03351177, -0.026319008, 0.010804611, - 0.024623942, -0.009927763, 0.008747114, -0.0029929008, 0.0043328716, - 0.00396303, -0.014178126, 0.04296096, 0.020044545, -0.00448652, - -0.00271884, 0.0029551953, 0.002689012, 0.0037763817, 0.007693788, - 0.031391922, 0.00688806, -0.012231916, 4.3563172e-4, -0.008550311, - -8.0659945e-4, 0.018117217, -0.0035677159, -0.0052157943, 0.005193996, - -0.01474552, 0.022436924, -0.020350652, -0.018465042, -0.006524062, - -0.01873945, 0.009042084, -0.03680426, -0.04121995, -0.004055812, - -0.011294188, -0.005327541, 0.02303647, 0.0043033357, -0.02767135, - 0.021004006, 0.013359627, 0.024068609, -0.0045805676, 0.042264715, - -0.027361358, 0.015231087, 0.016361777, 0.023847304, 0.014323911, - -0.008901717, -0.0014818872, -0.02042886, -0.008149141, -0.0015965626, - -0.039351817, 0.0016812201, -9.107258e-4, 0.01445203, 0.00516075, - 0.014013928, -0.023376893, -0.010543619, 0.013726063, 0.012776713, - -0.01473754, -0.010100214, -0.007557874, 0.002588624, 0.018795198, - -0.0012754293, 0.027407102, 0.025287153, -0.0035580953, 0.0059304885, - -0.02514908, 0.040454306, 0.022410395, -0.02062728, -0.0092107365, - 0.0016458868, 0.009513809, -0.010944018, -0.026381625, -0.017912269, - -0.014980096, -0.010977125, -0.018996943, -1.8694244e-4, 0.004160176, - -0.015093529, -0.00356054, -0.005408941, -0.014381226, 0.03085767, - -3.9311263e-4, 0.00974824, -0.007877468, 0.0024569721, -0.030089568, - -0.026039219, -0.013035194, -0.0063015036, 0.026863923, 0.010005454, - 0.028309079, 0.017842384, 9.202006e-4, 0.0020327535, -0.008038615, - 0.031057736, 0.011930153, 0.0066384384, 0.0035825532, 0.011114584, - -0.03164683, 0.015060061, 0.014943829, -0.010074604, 0.0062388107, - -0.0031800233, -0.002696203, 0.028618587, 0.021284796, -0.015320844, - 0.007540119, -0.009216225, -0.013538477, -0.02527392, -8.12593e-4, - 0.020783152, 0.0106453365, -0.014393866, -0.025904907, -8.477817e-4, - -0.013185782, -0.009741679, -0.0108344825, -0.010353698, -0.012057652, - -0.01670559, -0.0031456773, 0.008793644, -0.0065870658, -0.0051599615, - 0.0011398993, 0.017637227, -0.0041678357, 0.0020576792, 0.020348912, - -0.0025493787, -0.006661987, -0.0080063045, -0.009807059, -0.017732024, - -0.03407109, -0.0021044116, 0.014634938, -0.023825202, -0.016286233, - -3.561399e-4, -0.047807526, -0.021991517, -0.007801457, 0.008376493, - -0.022097513, -0.01324693, 0.035887424, 0.0053166747, -0.008506676, - -0.007057741, -0.011282736, 0.024718966, -0.0136005, 0.0029812043, - -0.018403467, -0.0065690163, -0.011936649, 0.01095598, -0.018477755, - 0.01547394, -0.0020615857, 0.012577087, 0.0025863363, 0.012013162, - 0.0060188053, 0.011174424, 0.030717157, 0.01091705, -0.03778734, - -0.0070806206, 0.006419836, 0.017307613, 0.010421492, -0.017965103, - 0.006585718, -0.021669531, -0.0021621613, 0.0030953144, 0.0077455784, - -0.021105742, -0.013862164, -0.0064466684, 0.017145876, 0.024065448, - -0.019630523, -0.0046776957, -0.010397143, 0.024408506, 0.015073762, - 0.030532923, 0.015258751, -0.012095837, -0.0055378657, 0.017374845, - 0.01405119, 0.03461898, -0.0025254684, 0.0061258906, 0.014561339, - -0.003726855, 0.01910106, -0.006897376, -0.0035005661, -0.010404059, - 2.2777956e-4, -0.014505234, -0.026699813, 0.020367233, -0.009877665, - -0.014785269, 0.014480131, 0.0024280641, 0.016918838, -0.015523902, - -0.012780909, -0.03323541, 0.005280055, 0.009682142, -0.0265091, - -0.008830806, 0.012415793, -0.0077985213, 0.013027173, 0.009840724, - -0.02137438, 0.0044369157, -0.015070069, -0.011463724, -0.0060148365, - -0.011604695, 0.015833164, 0.019353949, 0.029190008, 0.016141683, - 0.027649853, -0.003378223, 0.0027164065, 0.02698069, 5.9676846e-4, - 0.0077311713, -0.013260009, 0.008775628, -0.0066533, 0.005894999, - -0.005939108, -0.023701575, 0.0012272114, -0.0033118885, -0.0026889606, - -0.011022579, -0.0077429856, 0.0038449233, 0.0050474703, 0.0025731064, - -0.0062162667, 0.007549202, -0.0043171304, -0.022932764, 0.01667274, - 0.0075670355, 0.0079171695, -0.010329555, 0.006094011, 0.016950691, - 0.03490333, 0.020193981, -0.02471742, -0.005555368, 5.159391e-4, - 0.0077943346, -0.0153667135, 0.022250976, -0.009123739, 0.023249744, - -0.0071885055, 0.011141834, 0.008921945, -0.0018878251, 0.007813584, - 0.038611248, -0.007819991, -0.007885039, -0.0010143437, -0.007922034, - 0.008116098, -0.006779357, 0.027109975, 0.015217358, -0.01922878, - 0.0072790645, -0.015783027, -0.013988207, -0.014004997, -0.0023763846, - -0.015992077, -0.007659574, 0.013009265, -0.021340799, -0.016778879, - -7.375808e-4, 0.005595072, 0.011925348, 0.009781364, -0.0034978748, - -0.034804, 0.013292643, 0.02085644, -0.018000856, -0.014219634, - 0.0056860102, 0.013988733, -7.2215055e-4, -1.4540602e-5, -0.0067414553, - -0.0040153842, -0.012320404, 0.0127243195, 0.03239204, 0.019130116, - -0.013202579, -0.0052777743, -0.0037887136, -0.011329031, -0.00321297, - 0.009312601, -0.005818979, -0.01589809, -0.037693325, -0.022429407, - -0.010171898, -0.008456453, 0.016575478, 0.0023784994, -0.007138495, - -0.017584555, -0.0038566522, -0.039545316, 0.009657908, 0.02132495, - -0.020471172, 0.0019901742, -0.0075238193, -0.0018886647, 0.013273084, - -0.0021282728, -3.4710938e-5, 0.01015034, 0.016860174, 0.011721954, - 0.010641013, 0.01373634, -0.008320387, -0.013908544, -0.020729406, - 0.0038918706, 0.0028416687, -0.019876003, -0.02995539, -0.008518217, - 7.86442e-4, 0.00641742, -0.01611663, -0.0062587513, -0.005770709, - -0.004300957, -0.0025915313, -0.021843737, -0.007523349, 5.1729183e-4, - -0.024651226, -0.00641509, 0.003142194, -0.0034545485, -0.005386864, - 0.015645863, -0.02123439, 0.0040284214, -0.02022557, -0.023131475, - 7.59042e-4, 0.014190303, 0.033739906, -0.0037250363, 3.212358e-4, - 0.003013817, -0.021920571, 0.016956124, -0.0123181, 0.009814268, - 0.0064247777, -0.0049529066, 0.027211474, 0.020196335, -0.01609026, - -0.02791805, 0.029514464, -4.662282e-5, -0.022895383, -0.006719523, - -0.018679772, -0.003218215, 0.004295641, 0.0037232277, 0.021848064, - -7.3144963e-4, 0.0013341729, 0.010870669, 0.011899533, -0.004003646, - -4.2164183e-4, 0.007600278, -0.01868961, 0.0021518294, -0.0043210774, - -0.019847019, 0.014392857, 0.031037143, -0.0029524209, -0.010737813, - 0.017027153, 0.033302147, 0.004057673, -0.01079607, -0.0029263422, - -0.01893479, 0.01360142, 0.0012272379, 0.012702511, -0.0010836861, - -0.032033753, -0.0076872283, -0.007877223, 0.016369995, -0.003205377, - -0.015930165, -0.031204004, -0.0054145567, -0.0021242423, 0.0019039501, - 0.008159078, -0.0027833278, 0.0154111935, -0.004785967, -0.0013399825, - -5.1208795e-4, -0.020353613, 0.028278768, -0.003201545, 5.17909e-4, - -0.01613115, -0.012845553, 0.007886282, 0.0059751333, 0.011648593, - -0.015581754, 0.023312187, 0.011241959, 0.023190957, -0.0026397463, - 0.044716544, -0.013412523, 0.016387118, 0.006173405, 0.010969597, - 0.0024051736, -0.03214223, -0.0072804205, 0.020332726, -0.010365257, - -0.004742842, -0.007789887, -0.006043692, -0.009783082, 0.0066676107, - -0.0034108036, 0.013758689, -0.005533055, 0.0382387, -0.027275028, - 0.0017477726, -0.011802049, -0.002229886, 0.010302051, -0.0057015587, - 0.0024246655, -0.010736864, -0.009939683, 0.0021555102, -0.01756254, - 0.008344244, -0.018740246, -0.007846645, 0.024303818, -0.0025675278, - 0.02337622, -0.03520278, 7.7337184e-4, -0.010074502, -0.008189913, - -0.008495993, -0.0067619244, 0.013035662, 0.006926535, 0.009154792, - 0.017572114, 0.019656207, 0.02278149, 0.012972045, 0.0189007, - 0.03147847, -0.004032165, -0.021321772, 0.00409817, 2.3737426e-4, - 0.005084718, -0.022644805, 0.010971207, 0.03183127, -0.012758119, - 1.8030245e-4, 0.028389117, -0.011976708, 0.018145727, -0.012639173, - -0.0075947596, -0.014244467, -0.00454374, 0.0020029515, -0.013400735, - 0.0047762967, -0.0314162, 0.011327601, 0.014406857, -0.015265337, - 0.011155016, 0.031400785, -0.0037222188, -0.0010396711, 0.024077613, - 0.016689094, 0.007517086, -0.018210439, -3.1127525e-4, -0.00486387, - -0.0040017883, -0.018300952, 0.0054356894, -0.028463276, -0.011975192, - 0.022639921, -0.0035856536, -0.00785182, 0.013480043, 0.013537068, - 0.006702672, -0.017516898, -0.008408166, -0.007903097, -0.013636561, - 0.0019314506, -0.0068555814, 0.004426109, -0.0018912656, -0.0013551585, - 0.004115537, -0.0015534646, -0.01784681, 0.014779205, -0.0133824395, - 0.001039399, 0.004887941, -0.020484729, 0.0024127155, 0.009352646, - -0.0061781015, -0.01632405, -0.028568892, -0.0053735897, -0.008341574, - -0.007798109, -0.008998987, 0.00680048, -0.0016835027, 0.012800446, - 0.025063645, -0.036191996, -0.001224191, -0.006814385, 0.009539184, - 0.007512417, 6.602548e-5, -0.02346375, -0.0013076735, 0.0058711274, - -0.028280344, -7.293132e-4, 0.019643424, 0.012062722, 0.01071273, - -0.008256761, -0.03972409, 0.0010503572, -5.8530003e-4, 0.019614011, - -0.008241589, -0.001711046, 0.020506768, -0.0073345588, -0.00393976, - -0.002873057, 0.039053217, 0.009841698, -0.009282671, 0.0077505377, - 0.0022141112, -3.482279e-4, -0.0014312884, -0.003651286, 0.018349895, - -0.021833736, 0.009471751, -0.022068504, 0.010034987, -0.009418185, - -0.0015272021, 9.840508e-4, 0.01417299, 0.005399392, -0.011800888, - -0.023016425, -0.017454896, -0.0029888756, -0.006011459, 0.0017297452, - 0.002437737, -0.0015564404, 0.0094448505, -0.0027787953, 0.01511397, - -0.020374391, 0.01156599, 0.0058697476, -0.0068535795, -0.0035506734, - 0.014622538, 0.0049440647, 0.0035859086, -0.003764021, -0.01059529, - 0.040168364, 0.006418672, 0.0010025817, 0.023887683, 0.009586395, - 0.009874713, 0.0038087715, -0.0070603043, 0.02420633, 0.013536919, - 0.013291244, -0.0036895145, -0.011229103, 8.771429e-4, 0.0028335901, - 0.015261985, 0.010248912, 0.010508934, 0.020258421, 0.005115572, - -0.02409055, 0.011241183, 0.0030063835, -0.01793226, 0.011040718, - 0.024664307, -0.0022057812, 0.037260216, -0.0149766505, -0.0069014234, - 8.292205e-4, -0.012277849, -0.011255456, 0.007500427, -0.0058590584, - -0.004615654, 0.0066093416, 0.016072238, 0.010856987, 0.0026198647, - -0.0043441667, 0.013067372, -0.014697462, -0.0019189491, 0.011789389, - -0.0055802767, -0.0077808313, -0.0012439499, 2.5805907e-4, 0.016177086, - -0.0034314143, 0.018378856, 0.02475275, -0.009475242, 0.010016684, - -0.0013201789, -0.0041895304, 0.018931588, -0.0073008933, 0.023010014, - -0.025592519, 0.0037984205, 0.0038739978, -0.008144524, -0.0082245935, - -3.0506762e-5, -0.0060926923, -0.008236134, -0.0043818248, -0.014105699, - -0.008845973, -7.628488e-4, 0.0075667733, 0.028649691, 0.0025878013, - 0.016813489, -0.0073769717, -0.009749282, -0.01764388, -0.002966586, - -0.03665645, 0.0361055, -0.020754637, -0.0126972655, -0.014847814, - 0.008738631, 0.004620253, -0.009832984, -0.013541255, 0.010562863, - 0.0035708807, 0.010195588, -0.0012164062, 0.022912947, -7.498011e-5, - -0.012343758, -0.021407034, -0.026007507, 0.01680443, -0.002493427, - 0.010018799, -0.0140220765, 0.01691539, -0.003991391, -0.015779683, - -0.024453755, -0.013223853, 0.012773212, -0.007911744, 0.0065511884, - 0.01261746, 0.018684113, -0.0028300288, 0.003372204, -0.004336635, - -5.296585e-4, -0.019988088, 0.030199885, 7.562425e-4, -0.002716162, - -4.7502955e-4, 0.027144792, 0.024624256, -0.009720745, -0.019683007, - -0.00955303, -0.008112342, 0.011517542, -0.0039091012, 0.016335016, - -0.030619487, 0.011141617, -0.009520074, 0.0016718078, 3.0763153e-4, - -0.036161046, 0.0077936496, -0.0014960268, -0.02389296, 0.0041276775, - 0.0063793017, 0.013593872, -0.011633305, -0.010533674, 0.014286321, - 0.020181047, -0.001968239, 0.017065814, 0.019070365, 3.34679e-4, - -0.015933827, -0.018702708, -0.0038766277, 0.014865291, 3.4872614e-4, - -9.733864e-5, 0.0070476667, -0.009933582, -0.013852931, 0.024346689, - -0.020830994, -0.003185436, 0.011438593, -0.0040069916, -0.0013578564, - 0.008584649, 0.0028535929, 0.017587636, 0.026064906, 0.040045567, - -0.013101102, -0.0041303914, -0.013588728, -0.021569125, 0.012694337, - -0.0010944662, -0.022232838, -0.008046638, 7.227239e-4, 0.0014960519, - 0.020497533, 0.004645241, -0.010585471, -0.014637703, -0.015480896, - 0.0074718916, 0.0089971265, -1.2006885e-4, 0.009547832, 0.015233603, - 0.014120381, -0.00913743, 0.028433457, 0.023760097, -0.0026907376, - 0.017304976, 0.0061243623, 0.0070491564, -0.035620138, -0.012925716, - -0.01706257, -0.0021883857, 0.017639618, 0.022820974, 0.00686595, - 0.013102556, 0.031522628, 0.024323525, -0.00936081, -0.0015638378, - 0.020314261, 0.028188752, -0.03272924, 0.0039902385, -0.0024229721, - -0.023992639, -0.0016168392, -0.022008922, -0.005943119, 0.0012304337, - 0.005815917, -0.011419681, -0.0103397835, -0.006624907, 8.0738973e-4, - 0.015809545, -0.004770139, 0.015456287, -0.022718051, 0.009089306, - -0.009930006, -0.013183451, -0.0034209273, -0.010764024, 7.768694e-4, - -0.001790534, -0.030846044, -0.0052976883, -0.021530539, -0.010860436, - -0.021202268, -0.036508143, -0.0032988177, -0.0070522022, -0.011272226, - -0.01217863, 0.0046939664, -0.012396498, 0.0219418, -0.006086148, - -0.005176607, 0.0076492657, -0.009787158, -0.008476572, -0.022226801, - -7.006391e-4, -0.0054959147, 0.009402368, 0.014743839, 0.029847836, - -0.008910759, 0.009841184, -0.011335824, 0.012914853, -0.020889329, - 0.019178765, 0.003075314, 0.02732879, -0.03379691, -0.001103576, - 0.021900173, 0.021286651, -0.0111409165, -0.0014499724, 0.011710884, - -0.016817532, 0.017944688, -0.00930916, -0.028518038, 0.025817836, - 0.013286863, 0.0038152323, 0.028883727, 0.0015970552, -0.0207491, - 0.0054212604, 0.010891462, -0.006108833, 0.019071028, 5.739029e-4, - 0.012561001, -0.025618285, 0.005858508, -0.0017852216, 0.005232672, - -0.023736212, -0.019604405, -0.025348725, 0.025126098, -0.0023348383, - -0.013226354, 0.015800407, 0.0035301154, -0.0060471357, 0.0043918593, - 9.2513405e-4, -0.010917537, -0.0031541989, 0.020143177, 0.017882304, - 0.009726012, 0.0015335763, 0.021900196, 0.0028032633, 0.0036761754, - 0.028606286, 0.034289952, -0.0028966083, -0.018652901, 0.015265376, - -0.006221897, 0.024819577, 0.005417157, -0.014331312, -0.0024114791, - 0.0071351104, 0.0062080584, -0.0068676206, -0.0024656197, -0.005582543, - -0.015916472, 0.008169185, -0.018536303, -0.04810204, 0.012638775, - 0.0070374357, 0.0011323444, 0.004638196, 0.011759537, 0.001335245, - 0.014204117, 0.029017018, -0.008149291, -0.026606021, 0.012267665, - 4.7276565e-4, 0.024144318, 4.1825316e-4, 0.0012205357, 0.0025112422, - -0.0026638352, 0.007916587, 0.018267553, -0.011479986, 0.020393936, - 0.009499329, -0.011286735, -1.6765631e-4, 0.0011103104, 0.009887966, - -0.009011826, 0.008455374, -0.005180319, -0.0024597351, 0.0063460097, - 0.0017561303, 0.0051573818, 0.017886747, -5.007425e-4, 0.0113640325, - -0.00816647, 0.035184618, 0.009322831, 0.006573013, 0.004462846, - -0.0018906556, -0.006745858, 0.031851966, -0.0028455225, -0.0040388405, - -0.0014620458, -0.007892091, 0.0054402007, 0.016428841, 0.0034804493, - 0.008786692, -0.01131402, 0.012656089, -0.016007174, 0.017104737, - -0.007225391, -0.004741169, 0.021776218, -0.014877847, -0.038231894, - 0.009664449, -0.015783073, 0.012938208, -0.024544265, -0.0034637458, - 0.0029839794, -0.033947427, 0.015848793, 0.009991363, -0.015467291, - 0.023861991, -0.0020992714, -0.03174183, 0.016070241, 0.010414194, - -0.0062082103, 0.0052613565, 0.016330995, -0.005935971, -0.012474747, - -0.011765837, -0.005773678, 1.6584371e-4, 0.0073888293, -0.0010395466, - 0.012760858, -0.023392148, 0.013726212, 0.0010306451, 0.019280698, - -0.011910235, 0.0073053027, -0.009040267, -0.012350535, -0.028453525, - 0.02763817, 0.013338935, 0.0060961037, 0.0045344434, 0.002619457, - 6.086733e-4, -0.0068062544, -0.031587962, -0.015867151, 0.017846549, - -0.012748602, -0.00163592, -0.002310515, 0.0011945335, -0.008899754, - 0.011970164, -0.0024671424, -0.015987292, -0.0010313462, 0.010015391, - -0.013861509, 0.019906042, -0.0035415764, 0.009604518, -0.014553429, - -0.0076585673, -0.0021456024, 0.0049795373, 0.026774317, -0.0033589227, - 0.02732708, -0.011424486, -0.0019008591, 9.6192956e-4, 0.020245254, - -0.015516998, -0.005561905, 0.0055311183, -0.017348042, -0.00612458, - -0.020880798, -0.008990996, -0.008505563, -0.0062087853, 0.0031388835, - 0.009007325, -0.003088462, 0.009534082, -0.0017217705, 0.029077524, - 0.0010311677, 0.010394032, 0.026215605, 0.009792297, 0.03509377, - -0.002871935, 0.020534713, -0.008908967, -0.0066109886, -0.031985763, - 0.0030915963, 0.010399147, -0.02768804, -0.022267427, 4.4881043e-4, - -0.049272645, -0.02301935, -0.010857484, 0.010398703, 0.027706625, - 0.012678539, 0.011690171, 0.009250589, -0.018310905, 0.0068243486, - 0.0027160775, -0.010208696, 0.0010224966, 0.018680828, 0.014427692, - -0.004961041, -0.052023835, -0.015937064, -0.007087612, -0.0013578224, - 0.0014445146, 2.4976616e-4, 0.002469677, -0.008525147, 5.4655655e-4, - 0.008117557, -5.7510636e-4, -0.008132662, -0.017684367, 7.0026633e-4, - 0.027920762, 0.004812729, 0.030085197, 0.018687863, -0.014577425, - 0.0079787485, 0.0010414743, 0.034904983, 0.0014656913, -0.019801088, - 0.019327663, -0.0034487378, -0.030130833, -0.0029948223, 0.012718599, - 0.004707522, -1.2569447e-4, -0.017118389, 0.0044207466, 0.013017809, - -0.004898088, -0.0037853736, 0.008779235, -0.009061018, 0.0064126877, - 0.0027445634, 0.0280816, -0.0046336926, 0.013464241, -0.0012958174, - -6.1764923e-4, 0.027259994, 0.007958793, 0.00182777, -0.03294877, - -0.0072390847, -0.0067178244, -0.00301724, -0.010358776, 0.021999037, - -0.010126688, -0.0014863998, 0.021352967, 1.0913918e-4, -0.004196564, - 0.020384867, -0.021510847, -0.0023143284, -0.018096467, 0.0085291965, - -0.0247729, 0.0096356915, 0.02454251, 0.0070497654, 0.004715806, - 7.344738e-4, -0.022450037, -0.0022908698, -0.0044540497, -0.012550321, - 0.015032853, -0.014772188, -0.005653147, 0.025780607, 0.022672817, - 0.031216111, -0.0015350706, 0.004677036, -0.0027603516, -0.012396468, - -0.00417577, -0.0053909332, -0.0033189596, 0.015198629, -0.010611004, - -0.0042155473, 0.02271398, -0.005739253, 0.006221578, -0.028681627, - -0.010421321, 0.005428242, -0.019772986, 0.011100659, -0.013877774, - -0.018776886, 0.017764382, -0.025929715, -0.021121643, 0.0048606643, - 0.0058626835, -0.010191785, 0.0071335672, 0.0072504007, -0.009895719, - 0.028632179, -0.011749233, -0.026654182, 0.012156279, 0.005587943, - -0.0069156466, 0.0024499593, -0.0060618673, 0.014825347, 0.0053186035, - 0.0080402875, -0.002072546, -0.007167315, -0.03651083, 1.7865246e-5, - 0.0071575604, 0.0059545715, -0.003916287, 0.011932899, -0.015867282, - -0.012373547, 0.006443834, 0.0032812483, 0.012696661, -0.026727937, - 0.029710004, -0.0042055114, 0.008202036, -0.0067548226, -2.882945e-4, - -0.018441526, 0.009256955, 0.003352573, -0.026642364, -0.009182802, - -0.017202819, -0.027978122, -0.0099209845, 2.2141955e-6, -0.029711375, - -0.015397534, -0.026766364, -0.0027301332, 0.008836543, 0.00797823, - 0.029685462, -0.0019105639, 0.03447913, 0.012768849, 0.0013008487, - 0.0033336377, 0.012092057, 0.02820202, 0.017165942, 0.030619893, - 0.0060540405, 0.019668609, -0.012981975, 0.0036715576, -0.0064219874, - 0.0231908, -0.006546069, 0.015458127, -0.00452999, -0.013948337, - -0.011499203, -0.007223827, -0.014511153, 0.0014086745, 0.0030105326, - 0.002369456, -0.0054171258, -0.0062411963, 0.0016332213, 0.006342581, - 0.004762671, 0.010448912, 0.008994399, 0.007790357, 0.012093155, - -0.013456121, -0.0044843247, -0.031998616, 0.0074243555, -0.02991919, - 0.025000848, -0.030760305, -0.023867307, -1.5876172e-4, 0.014273244, - -0.0019378505, 0.018982196, -0.0041181273, 0.039004404, 0.011260735, - 0.024013821, 0.0124627985, 0.024726631, -0.0069083786, -0.0055612936, - -0.0025311229, -0.00580735, 0.0036619103, -0.018534575, 0.016053291, - -0.0096759815, -0.009141435, -0.007742519, 0.0021812362, -2.873868e-4, - 0.0118399495, 0.038767945, -0.023160515, 0.006932965, -0.0070415265, - 0.013689612, 0.020810267, 0.0070883124, -0.0076340255, 0.013458117, - -0.023599947, -0.0023659002, -0.012092817, 0.0026299169, -0.007900749, - 0.017843671, -0.010689837, -0.0055774334, -0.0025671977, -0.0224616, - 0.0055697337, -0.0035094884, 0.01508056, 0.010807271, -0.016476309, - 0.019052714, 0.017233396, -0.01719591, -0.0071258903, -0.02588051, - -0.00854223, -0.0032073304, 0.0015658522, -0.021840291, 0.03136108, - -0.0077250926, -0.002388157, 0.016009584, -0.0026867345, 0.017687509, - -0.013945899, 0.013692485, -0.004883896, 0.030132147, 0.006694816, - 0.0048231315, -0.006351995, -0.0074757226, -0.007564424, 0.02269774, - 0.006566342, 0.011059624, -2.687296e-4, -0.010113843, -0.002438435, - 0.0049464945, 0.006256382, 0.0052715195, 0.02882665, 0.0025672982, - -0.004704648, 0.011178476, -0.011000789, -0.018850734, 0.017557358, - -0.013779505, 0.007628188, 0.029123254, -0.005067062, -0.002783878, - 0.008599724, -0.005672074, 0.034697432, 0.0011426089, 0.021644233, - 6.523491e-5, -0.015123655, 0.005754106, -0.017256506, 0.022568611, - 0.017308407, 0.0034908333, -0.020805882, -0.02058889, 0.021854797, - 1.20840734e-4, -0.021492982, -0.0123577295, -0.015581256, 0.03953594, - 0.002039844, 0.010957462, 4.5677338e-4, 0.008361744, -5.113195e-4, - -0.023736164, -8.377235e-4, -0.003898853, -0.023306403, -0.004192977, - 0.007970537, 0.005259991, -0.009811203, 0.007305151, -0.020303462, - -0.001521883, -2.3863373e-5, -0.032566916, 0.02955661, 0.003424282, - 0.022300832, 0.027285611, -0.003808836, 0.008009429, -0.032309964, - 0.0056314967, 0.0163134, 0.0029502062, 0.00679008, 0.014829189, - 0.0018717805, 0.017692957, -0.019138373, -0.002579278, -0.002817338, - 0.018251779, 0.0016817997, -0.008919491, -0.00825716, 0.0021097972, - 0.008454213, -0.011207015, 0.004536706, -0.010121535, 0.01252524, - 4.4686542e-4, -0.0117046, 0.0062117027, 0.008738793, -0.0076793553, - -0.009502712, -1.2324066e-4, 0.045040227, 0.015040336, 0.028840719, - 0.004415211, 8.335384e-5, 0.036304813, -0.012893099, -0.01573025, - 0.0022922992, -0.0017159526, 0.021005206, -0.02216744, -0.03053534, - 3.967176e-4, -0.023931077, 0.022255508 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.019967182, 0.0062460024, 0.0063059805, -0.043089557, -0.021401532, - 0.011276661, -0.040802907, -0.06264867, -0.03621891, -0.0014514647, - 0.02101824, 0.025686318, 0.019398011, 0.012037325, -0.042090382, - -0.03676366, 0.059703056, -0.011955278, 0.018438846, 0.018581131, - -0.016100291, 0.013589152, 0.0121893585, -0.017300908, -0.016834028, - -0.031041594, 0.022840878, 7.782138e-4, 0.03959513, 0.05164822, - -0.031798165, 0.026887871, -0.010586231, -0.019339422, -0.026455397, - -0.07631899, 0.010226468, 0.00963425, -0.033048365, -0.04286605, - 0.035025198, -0.08120616, 0.010049223, 0.01073848, 0.016775804, - -0.0091380235, 0.03226191, -0.028636009, 0.04600797, -0.051310036, - -6.085407e-4, 0.028427823, -0.032717947, -0.020880245, 0.013930497, - 0.022402605, -0.057801478, 0.028539993, -0.030422283, 0.010343294, - -0.018655956, 0.0152181275, 0.016032504, -0.054665767, -0.024356695, - 0.020072956, 0.042796005, -0.002259584, 0.024838557, 2.175837e-4, - 0.044497266, -0.012928163, 0.036522843, -0.013774715, 0.015311028, - 0.014762181, -0.02918406, -0.031490885, -0.07193134, -0.009809667, - 0.018574063, -0.014322129, 6.0691807e-4, 0.03414679, -0.033978116, - -0.033395354, 0.03822194, -0.014971945, -0.03263625, 0.004610844, - -0.06331772, -0.04010202, 0.018481374, 0.013931422, -0.011225767, - 0.007972385, -0.03367816, 0.015155883, -0.022947874, -0.0079839425, - -0.027477663, -0.053477913, -0.0038328697, 0.039013926, 0.024825854, - -0.01575392, 0.028010555, -0.05762001, -0.04515108, -0.066899836, - -0.010136731, -0.025589082, -0.04449674, -0.02738872, 0.0300915, - 0.009991205, 0.041655112, 0.011515285, 0.03224214, -0.050611053, - -0.027999874, 0.032700792, 0.046365257, -0.008975142, -0.049489398, - -0.03642331, -0.022736326, 0.005338582, 0.0086911, -0.014806973, - -7.234394e-4, -0.03405939, -0.0053158393, -0.0114097465, -9.617301e-5, - -0.03595298, -0.01741453, -0.050989006, -0.0023549248, -0.007560033, - -0.00882207, -0.01760811, -0.037857372, 0.008625476, -0.011239046, - 0.041815076, -0.016680418, 0.0112074185, -0.047269106, -0.047605574, - 1.560236e-5, -0.029248204, -0.027525209, -0.03652395, -0.016499499, - 0.0051616505, -0.021015966, 0.029985858, -0.043417986, -0.007200001, - -0.0040918416, -0.021448955, -0.021799436, -0.02096081, 0.047398888, - 0.0207945, -0.010760904, 0.034168713, -0.031025266, 3.0706826e-4, - 0.019490741, -0.009496382, 0.0274656, -0.03643667, -0.029977178, - -0.0035501989, 0.04664807, -0.022364574, 0.054067295, 0.01977224, - -4.2196986e-4, 0.028042769, -0.017675575, 0.014964065, -0.021861121, - -0.04273257, -0.035819925, 0.050969366, 0.012850544, -0.0211072, - -0.035393868, -0.027894817, 0.016287873, 0.020150924, 0.01785078, - 0.009231584, 0.014892113, -0.0018548038, 0.008947256, -0.018633561, - -0.039683633, 0.006537668, -0.04381446, 0.0029364182, -0.008858342, - -0.015994871, -0.015317203, -0.04957168, 0.0025688948, 0.03294341, - -0.010127247, -0.012266696, 0.019438824, -0.015286805, -0.039122313, - -0.01800589, 0.08435532, 0.011095611, 0.04475854, -0.0053607123, - 0.005630482, 0.0050482014, -0.005092746, -0.015335571, 0.03212321, - 0.024969, -0.029337073, -0.01890506, 0.024139753, 0.026190663, - -1.2723429e-4, 0.037127048, -0.04391655, -0.01999981, -0.01963121, - -0.03263171, 0.036583345, 8.777779e-4, 0.006961982, -0.031057397, - 0.008264621, 0.0120431995, 0.030400518, -0.013108497, 0.03045193, - -0.0038899241, -0.0036030877, 0.019313442, -0.026300896, -0.024687933, - -0.001873488, 0.030688683, -0.037629344, 0.027312873, -0.032436308, - 0.033147734, 0.108328395, 0.039455563, -0.006936932, -0.032827526, - -0.037184183, 0.0028102153, -0.021660086, 0.02746736, -0.023348909, - -0.06413572, -7.034055e-4, 0.0065604057, -0.026962182, 0.031493824, - -0.04750056, -0.0016655701, -0.03750885, 0.0069464096, -0.050972182, - 0.031362228, 0.018128974, 0.013685114, 0.012902004, -0.004839489, - -0.01908559, -0.007853332, -0.022268984, 0.011919844, -0.0031351885, - -0.045921374, -0.011387966, -0.014917522, -0.013456236, 0.010624437, - -0.0060509825, -0.0039820666, -0.05144156, 0.048480418, 0.06603098, - 0.0074148625, -0.009580804, -0.008963266, 0.0733359, 0.054106895, - -0.014713465, 0.04875751, 0.0056158085, 0.03542535, -0.020025158, - -0.029361872, -0.006692488, -0.060280412, 0.059427563, -0.019278118, - 0.0114393225, 0.0032585303, -0.02217644, -0.029612157, -0.0069874725, - -0.038496222, 0.015413094, 0.0037806153, 2.2461168e-4, 0.02027403, - 0.015753893, -0.025282184, 0.0067777294, 0.0018367086, -0.028208494, - 0.016090069, 0.047816485, 0.019314779, -0.04245288, -0.012967514, - -0.018587438, 0.027085409, 0.023944365, -0.026008477, -0.031551123, - 0.007072396, -0.013791635, 0.015590817, 0.042115215, -0.023009442, - -7.487137e-5, -0.023819363, -0.017301295, -0.020506935, 0.0052744667, - -0.00460695, 0.021591108, 0.0060970336, -0.054501884, 0.008812023, - 0.020989923, -0.04193361, -0.043610837, 0.001371591, -0.011715062, - 0.05360992, 0.026020968, -0.008098072, 0.0025954482, -0.023298495, - -0.062547736, -0.02484982, 0.015685795, 3.803254e-4, 0.019473597, - 0.024120295, 0.038257748, 0.028075965, -0.012227744, 0.007868694, - -0.032402337, 0.06465798, -0.032472614, -0.06331263, -0.022855433, - -0.017185869, -0.026768686, 0.023206787, 0.012477059, -0.023141734, - -2.2194887e-4, 0.005809694, 0.031758226, -0.052644517, 0.037079286, - 0.032932732, 0.101253465, 0.004062795, -0.017741079, 0.03499723, - -0.028007988, 0.0030678464, -0.052772615, 0.0063402182, -0.028220918, - 0.020645266, -0.07301287, -0.101893954, -8.38132e-4, 0.01854979, - -0.0063993144, 0.008113192, -0.056251332, 0.0074125095, -0.03504804, - 0.0303427, 0.022202086, 0.014372597, -0.049393192, 0.0317867, - -0.030885419, -0.01954367, -0.028013898, 0.0051078615, 0.04323236, - 0.0351859, -0.013767765, -0.048884533, 0.029236509, 0.028128136, - -0.031728804, 0.016177006, -0.028193425, -0.023668975, 0.054235805, - -0.035458196, -0.05792822, -0.0066682026, 0.0019596254, 0.013191311, - 0.03535382, 0.01665607, 0.013615268, 0.04849572, -0.0016461659, - 0.0056090145, -0.046509344, -0.02828476, -0.008059421, 0.04581647, - -0.045327466, -0.0038125694, -0.05526954, -0.028984731, -0.014020942, - -0.06614527, 0.0019192988, -0.0280873, 0.038525555, 0.003348594, - -0.0049530836, 0.010105139, -0.03424217, 0.01753513, 0.050974574, - 0.0320217, 0.0072186603, -0.0048625222, -0.035247415, -0.046457972, - -0.039257657, 0.044162802, 0.030960778, 0.008823581, 0.060491767, - 0.012938902, -0.016201092, -0.013895546, 0.037937116, 0.07008312, - -0.014823014, 0.010475662, 0.0346113, -0.011116822, 0.004928406, - 0.01228613, 0.024674615, -0.022839507, -0.0077892193, 0.022564754, - -0.036367532, -0.06940998, 0.00947463, -0.023148766, -0.052533276, - -0.045932665, -0.050131753, -0.025575161, -0.022756675, -0.023168152, - -0.03022871, 0.050868127, -0.035191853, -0.0059380867, 0.018595798, - 7.265176e-4, -0.032200653, -0.013779203, 0.038201645, -0.05346376, - 0.024892395, 0.052841876, 0.022329776, -0.053170826, 0.04637583, - -0.034538534, -0.0068554846, 0.03535397, -0.032707073, 0.010898757, - 0.0034652269, 0.004742887, 0.023775164, -0.046716705, -0.010553097, - -0.014520399, 0.0036079313, 0.027882345, 0.037847437, -0.02528204, - -0.0147797875, 0.038930707, 0.065113895, -0.0031934415, -0.00950114, - -0.035572033, -0.045538437, -0.021042097, 0.008941715, 0.007880814, - -0.007866651, 0.08353388, 8.2485547e-4, 0.003883829, 0.009875347, - -0.01520514, 0.017829174, -0.0033049977, -0.0021188727, 0.015989972, - 0.010207392, 0.0019261063, -0.008538981, -0.01468365, -0.006202369, - -0.021671368, 0.033697013, -0.022989899, -0.071217015, -0.0446457, - 0.04803406, 0.055293124, 0.031276528, -0.0062188394, 0.015778879, - 0.023819018, -0.03865924, -0.0019250973, -0.0015112578, -0.05699182, - 0.0022599252, 0.008601148, -0.011683297, -0.043179024, -0.03916595, - -0.01983899, 0.019512273, -0.023856748, 0.010747338, 0.008009917, - -0.0059512123, 0.012586066, -0.02828037, 0.0033100469, -0.055079654, - 0.024586907, -0.02458781, 0.038088523, 0.005995509, -0.035520498, - 0.07422211, -0.033019178, 0.015740784, 0.003429208, -0.048267033, - -0.06720087, -0.016522093, -0.011246147, -0.022363912, -0.076275386, - 0.006966107, -0.017551972, 0.02810836, 0.0130474875, -0.055653635, - 0.0047162413, -0.01779127, -0.03395717, 0.011292465, 0.027218105, - -0.016013416, -0.009789595, 0.031377662, -0.019156493, 0.013412169, - -0.04035008, 0.046087146, 0.0014968988, -0.026140852, -0.021993276, - 0.019815767, 0.02921744, -0.03577753, -0.03581322, 0.0065154107, - -0.028110469, -0.0078511415, 0.06059809, -0.03424944, -0.0077799414, - -0.021691808, 0.04769308, 0.011478699, -0.02490541, 0.021059597, - -0.007857992, 0.029246436, 0.058627333, 0.004842154, 0.010625279, - -0.048056036, -0.048098296, 0.0553531, -0.07222091, 0.029466378, - 0.00209766, 0.039803557, -0.009667938, -0.0018445901, 0.014100317, - 0.021371948, -0.009410744, 0.029406784, -0.039023235, 0.02881511, - -0.0681235, -3.49691e-4, -0.005498496, -0.026103266, -0.052399263, - -0.004828744, 0.014079866, 0.024504233, 0.0061966274, 0.0029969108, - -0.066656545, -0.012986739, -0.0012249671, -0.031066727, -0.011669944, - 0.0073431088, -0.04273655, 0.009655373, 0.030174406, 0.054591917, - 0.055341966, -0.009256038, -0.028635792, -0.047115844, -0.019243367, - 0.033675037, -0.062363934, -2.879745e-4, -0.022014782, -0.0072268997, - 0.011802731, -0.019230766, -0.026481163, 0.016916491, -0.0023818735, - 0.046530426, -0.046205103, -0.0047600726, 0.034124736, -0.015970407, - -0.01187352, 0.05311559, 0.040384885, -0.004175322, 0.04242712, - 0.016479073, 0.03630132, 0.07026912, 0.035103165, -0.0030119473, - -0.061088566, 0.0021011166, -0.05123353, 0.026306354, 0.0038684313, - -0.010188236, 0.016565623, 0.004849837, 0.017586624, -0.008393461, - 0.029997181, 0.016247194, -0.005017899, 0.01598218, 0.003491486, - -0.015580779, -0.041980628, -0.01719372, -0.0054776724, 0.0047345017, - -0.025025448, -0.003784928, 0.0063244468, -0.0038736053, -0.062769234, - 0.0065955324, -0.008068734, 0.018349113, 0.020647664, 0.046548136, - 0.036503248, 0.011635618, -0.06491356, 0.0152273085, -0.031129723, - -0.031666335, 5.847871e-4, -0.0049409717, 1.6849002e-4, -0.027246404, - 0.064754725, -0.020134788, -0.02530435, -0.0011724338, -0.024840131, - -0.002648907, -0.040610325, 0.01656316, 0.0063354364, 0.0011298775, - -0.018295664, -0.01702699, 0.029941903, 0.013111074, -0.06167218, - 0.02177946, -0.008957091, -0.013478051, -0.02229457, 0.08557475, - 0.023334296, -0.031503744, -0.035159335, -0.034485523, -0.022241013, - 0.032532204, 0.028794196, 0.010763958, -0.06061704, -0.03167524, - 0.016401606, 0.0042735203, -0.014026553, -0.02468824, 0.083059825, - -0.029321706, -0.0030906326, -0.026995536, 0.014255727, 0.028064389, - 0.034640122, -0.0042208442, -0.03308348, -0.050649203, -0.017563721, - -0.0013506312, 0.008482234, 0.011797297, 0.035949502, -0.017386183, - -0.018577246, 0.0035017622, -0.06881615, -0.0068748565, -0.010827763, - -0.007620513, 0.010306915, 0.07705644, -0.018593816, -0.0325444, - 0.0058784946, -0.06882619, 0.018290868, -0.020738315, 0.02768895, - -0.02616743, 0.08737155, 0.010975306, -0.010109547, 0.014007056, - 0.03672673, -0.0046497704, -0.049523175, -0.0036678845, 0.063797355, - -0.03747212, 0.01835746, 0.0050773933, -0.053589333, -0.03577115, - 0.04488326, 0.077812046, -0.0037493112, -0.063839115, -0.021980684, - 0.014015319, -0.0070877955, 7.850667e-4, -0.012779245, 0.08023138, - 0.034791674, 0.014549492, 2.3316285e-4, -0.0144023, 0.05752376, - 0.034184344, 0.006964477, 0.035814125, 0.041250773, -0.0433471, - 0.015265878, -0.004604302, 0.043904237, -0.024750864, 0.009764785, - 0.044101138, 0.004093737, 0.01842113, 0.00924257, 0.018583203, - -0.019851135, -0.046436403, 0.006547433, 0.04185645, -0.0016496691, - 0.038537383, -0.04261663, 0.04949091, 0.014162463, 0.0050189, - 0.024300717, 0.068530425, 0.033170372, -0.03670857, -0.033236608, - -0.02512371, -0.03330152, 0.037478928, 0.0055691455, -0.004830249, - -0.03687667, 0.0032346933, 0.048426654, -0.054102324, -0.059019484, - 0.0025816392, -0.012575728, -0.0369339, 0.019997306, -0.018317569, - 0.023333494, 0.0021867503, -7.186734e-4, -0.02448341, 0.031508498, - 0.021153418, -0.03170166, 0.0020420947, 0.0024600585, 0.032679122, - -0.03015852, -0.04280742, 0.007061098, 0.04364508, -0.029998535, - -0.044860013, -0.005867737, 0.004160706, -0.022034101, -0.032915216, - 0.004954271, -0.0034931814, -0.02947023, -0.050259367, -0.04456188, - 0.018949447, 0.0032537777, 0.058553524, -0.015216468, -0.008066854, - -0.026731284, -0.019548343, 0.011236783, 0.0564856, -0.036401317, - -0.02038105, 0.035822097, 0.04791359, -7.5139705e-4, 0.01789911, - 0.021861099, 0.019593943, -0.014504317, 0.02370062, -0.015436993, - 0.017166628, 0.023281706, -0.002747488, 0.022673905, -0.022939647, - -0.01951054, 0.021999625, 0.008932604, -0.061996527, 0.023857908, - 0.010251342, 0.01126946, 0.018356975, -0.0073808283, -0.01816625, - 0.011466562, 0.019967165, -0.018005813, -0.05371416, 0.053770375, - 0.020580722, 0.027218461, -0.04345764, -0.007982585, -0.015099025, - 0.030383628, -0.02127795, 0.010906723, -0.022591207, -0.0020580066, - -0.027602086, -0.084602185, 0.06810029, 0.013936976, -0.026703479, - -0.061607294, 0.040083304, -0.04262148, 0.014261156, 0.023650778, - 0.024931127, 0.020342348, 0.0022598067, -0.019639153, 0.009593098, - 0.030556936, -0.04551528, 0.013168794, -0.039714076, 0.047343906, - -0.044361264, 0.01719004, 7.535231e-5, 0.05750039, -0.0034242223, - 0.022590477, -0.0027482181, 0.0061399024, 0.0013147551, -0.054147184, - 0.047444697, 0.0043158913, -0.010445467, -0.012737381, -0.05152022, - -0.008456261, -0.002298466, 0.035820343, 0.029769942, -0.010596384, - -0.035188746, -0.022378985, -0.0043940223, -0.04304678, -0.048193943, - -0.009246368, -0.021834979, -0.020803738, 0.01076427, 0.028336193, - -0.015720436, -0.02482495, 0.002809448, 0.003717913, 0.0054705106, - -0.0318231, -0.014059324, -0.025344077, -0.010321663, -0.06044495, - 0.009140053, -0.017078074, 0.044205252, -0.07328971, -0.027426125, - 0.0074188933, 0.0048526097, 0.02085974, -0.005740849, 0.017459787, - 0.012259744, 0.022370039, 0.055043504, -0.04725477 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.030009005, + -0.009687664, + 0.025184121, + -0.037932932, + -0.0044084727, + -0.008545426, + -0.00815896, + -1.9884093E-4, + -0.0039353236, + -0.019625736, + -0.024400318, + 0.015534107, + 0.002598552, + 0.012627388, + 0.014711719, + 0.010466537, + 0.003948552, + 0.013882981, + -0.019348841, + -0.004176624, + 0.019174676, + -0.006918655, + 0.0052351546, + 0.0014946377, + 0.0067414907, + 0.030824184, + 0.0036593534, + 0.0073060724, + 0.026448458, + 0.003914041, + -0.006428905, + -0.035237923, + -0.011106809, + 0.009970581, + -0.0030828987, + 0.012409292, + -0.014821712, + -0.009071022, + 0.010203557, + -0.0164026, + -0.010705948, + -3.9208433E-5, + -0.0040061213, + -0.0072428696, + -0.023078144, + -0.021231445, + -9.6703344E-4, + 0.0040155794, + -0.017522788, + 0.014755832, + -0.021035565, + 0.024031779, + -0.02039735, + -0.0032783747, + 0.015773693, + -0.015683401, + 0.015665533, + -0.007550758, + -0.002292128, + -4.736054E-4, + 6.1842403E-4, + 0.0027349987, + 0.0010856153, + -0.009133873, + 0.0010115069, + 7.7403476E-4, + -0.016990274, + 0.01252528, + 0.013460498, + -0.0055381055, + -0.02496578, + 0.034748916, + -0.010675068, + 0.006242581, + 0.0021984961, + 0.009626688, + 5.0920824E-4, + -0.009902229, + -0.013524247, + -0.02299395, + 0.0061014816, + -0.017732728, + -0.021243947, + -0.010167149, + -0.035277408, + -0.024427311, + 0.007489167, + 0.032617234, + 2.059754E-4, + -0.010057723, + -0.01855263, + -0.003703287, + 0.019485936, + 0.009414838, + -0.0021478012, + 0.0011503912, + 0.006275318, + 0.018273536, + 0.009277225, + -0.025538195, + -0.004288482, + -0.028539428, + 0.019547487, + 0.01131829, + -0.017393757, + -0.017533502, + -0.009877013, + 0.0072224215, + -0.048168305, + 0.02837634, + 0.006828148, + -0.001061791, + 0.042428188, + 0.04253001, + 0.019544266, + 0.0033086042, + 0.009877192, + 0.0059015835, + -0.013953676, + -0.008493317, + 0.0028646954, + 0.005359604, + -0.006379995, + -0.015849153, + 0.014198634, + -0.012989873, + 6.099683E-4, + -0.0014071289, + -0.012685207, + 0.019757403, + 0.001619138, + 0.017542483, + -0.020268159, + -0.010699004, + -0.0139336875, + 0.012263867, + 0.013178082, + 0.020081623, + -0.0048986683, + -0.047000244, + -0.009648805, + -0.011384848, + -0.003974396, + 0.003260883, + 0.013886611, + 0.022029664, + -0.006934615, + 0.010901203, + -0.007989847, + -0.006597983, + 0.0018081486, + 0.0068705613, + 0.035812844, + -0.014753856, + 0.014475581, + 0.015866946, + 0.02890174, + 0.0062006754, + -0.01685097, + -0.0013860042, + 0.0012205418, + 0.02663441, + 0.0033955316, + 0.00815743, + 0.0047169435, + -0.0110477535, + 0.004791073, + 0.005663641, + -0.008655176, + -0.018720275, + 0.008147101, + -0.030953264, + -0.020702166, + -0.010536959, + 0.020679167, + 0.0038720644, + 0.009998663, + -0.029067302, + 0.01474059, + -0.004320793, + 0.017447006, + -0.013907322, + -0.0024540618, + 0.010744947, + -0.013763311, + -0.0093802875, + -0.005361394, + 0.011176712, + 0.01859624, + -0.015223457, + -0.026148237, + -0.017417213, + 0.021965757, + -0.026052328, + 0.0039423606, + -0.01268491, + 0.0050326935, + 0.02422885, + 0.0018345437, + -0.0027455722, + -0.007803807, + 0.01106407, + -0.016199896, + -0.0016343369, + -0.009102762, + 0.008229813, + 5.028816E-4, + -0.016005736, + 0.008487422, + 0.019476801, + 0.0012221098, + 0.005299839, + -0.0015130785, + -0.002787618, + 0.007366704, + -0.018219162, + -0.0018159319, + 0.004501215, + -0.0012304349, + 0.01806713, + -0.0030582543, + -0.014043753, + 0.023217376, + 0.015155071, + -0.044072255, + -0.01406276, + 0.0107236365, + -0.01024845, + -0.009824616, + 0.009217824, + 0.017435972, + 0.029343002, + 0.0035755504, + -0.003159932, + -6.7521405E-4, + 0.006988436, + 0.013206187, + 0.0061278264, + -0.023888104, + -0.03143833, + -0.0052975747, + -0.023233963, + -5.9668033E-4, + -0.019018857, + -4.670485E-4, + -0.008033469, + 0.023096684, + -0.011053171, + 0.019627267, + -4.3058308E-4, + -0.016053412, + -0.012366217, + -0.021503681, + -0.021966299, + -0.001408774, + -0.012109299, + -0.01567833, + -0.0036252616, + 0.012348024, + -0.0072674104, + -0.006802534, + 0.009682357, + -0.01419154, + -0.0011423344, + 2.7902814E-4, + -4.6384684E-4, + -3.7100734E-4, + 0.027826555, + -0.001481419, + 5.0546194E-4, + -2.1059763E-4, + 7.986936E-4, + -2.9247187E-4, + 7.7732705E-4, + -0.0054534166, + -0.016931688, + -0.005522134, + 0.013442008, + -0.009427427, + -0.008287302, + -0.0118122045, + -0.044961296, + -0.02311173, + 0.00687262, + 0.017232109, + -0.009344774, + -0.015725167, + -0.007402251, + -0.016821377, + 0.011311956, + -0.028301151, + 0.018397791, + -0.011320564, + 0.017402273, + 0.006907527, + 0.018672466, + -0.017408313, + -0.011436556, + 0.0063110506, + 0.026237918, + -0.011237229, + 0.027486734, + -0.005618026, + -0.012260257, + -0.0052118786, + -0.017111491, + 0.011366446, + 0.0010371369, + 0.025905631, + -0.0069898693, + 0.007620999, + -0.014108292, + -0.0060512237, + -0.008476737, + 0.016122626, + -0.0019992, + -0.0071622618, + 0.009273968, + -0.046805535, + 0.00921754, + 0.010582201, + 0.03610099, + 0.0036858642, + 0.008838477, + 0.0056713903, + -0.003662125, + -0.014752678, + -0.01868471, + 0.017256916, + -0.020301921, + 0.0026147538, + 0.011882992, + -0.013007243, + 0.0015709947, + -2.7095014E-4, + 0.0056412485, + 0.014149794, + -0.002969283, + -0.009630381, + 0.011011112, + 0.022421405, + 2.032619E-4, + 0.024075788, + 0.0029197384, + -0.02189731, + 0.018478516, + -0.0015202225, + 0.035672262, + -0.020819163, + 0.003328386, + -0.004331967, + 0.0069286493, + -0.007882426, + 0.0028535763, + 0.004463596, + 7.495581E-4, + -4.36044E-4, + 0.01761147, + -0.0019631821, + -0.0028970907, + 0.009893227, + 0.012651552, + -0.016138952, + 0.007745762, + 0.034174994, + 0.006416056, + -0.0042490712, + 0.0011300113, + -0.030680679, + 0.021945206, + 0.007830006, + -0.0063889064, + -0.02736491, + -0.019802114, + -0.014702496, + 0.013867396, + -0.018442407, + 0.010863577, + -8.483355E-5, + 0.0052466434, + -0.0011049726, + 0.016271876, + -0.004294015, + -0.008318126, + -0.013222599, + -0.020083621, + -0.0046319435, + 0.002972867, + 0.020154737, + -2.9148895E-4, + 0.005277258, + -0.008764155, + -0.009207821, + 0.010367042, + 0.0121802585, + -0.013513805, + -0.01566092, + -0.00340929, + 0.00933323, + 0.010377641, + -0.015472193, + 0.022190874, + 0.0011202326, + 0.018800383, + 0.0038183571, + 0.008383478, + 0.0035315093, + 0.016497409, + -0.007903544, + 0.010591788, + 1.7468257E-4, + 0.02442577, + -0.008273132, + -0.008715083, + -0.016484754, + 0.004669336, + 0.0069701215, + -0.004294517, + 0.0011839576, + -0.0010159395, + -0.022353336, + 0.01699507, + -0.008218874, + 0.013739886, + -0.0045316033, + -0.035082795, + 0.008071926, + 0.0034279877, + 0.020717477, + 9.61918E-6, + -0.021673305, + -0.0075753154, + -0.03658796, + 0.009388068, + -0.00710256, + 0.0038927307, + -0.008116541, + -0.0052124034, + 0.017599193, + 0.017445965, + -0.0032978167, + -0.009077868, + -0.02741105, + -0.005955341, + -0.018457737, + -0.0036993236, + -0.0127194775, + -0.026062341, + 0.011673218, + -0.00660212, + 0.012166032, + 0.016768267, + 0.019533047, + 0.014315166, + -0.0063149445, + -0.009069742, + -0.010549671, + 0.010083361, + 0.007451176, + 0.0028422116, + -0.009027941, + -0.0039917016, + 0.01673439, + -0.0038392018, + -6.685101E-4, + 0.018823912, + 0.0039060272, + 0.0036837594, + -0.022499831, + -0.019480286, + -0.030533686, + 0.02125274, + -0.002277478, + -6.149585E-4, + -0.0018676951, + -0.004575138, + -8.4300624E-4, + 0.013957565, + -9.959493E-4, + 0.013503728, + -0.018109605, + -0.018856062, + 0.016799565, + 0.020245636, + 0.013769359, + 0.0052695996, + -0.001746875, + 0.015126895, + 0.020909138, + 0.0023207392, + 0.007474907, + 0.0011945494, + -0.019540612, + 0.016238242, + -0.010337822, + 0.016024064, + 0.004736778, + -0.011403628, + -0.002071575, + 8.6567784E-4, + 0.001676175, + -0.0070864283, + 0.016793927, + -0.009598437, + 0.0045412, + 0.005260558, + -0.024146108, + 0.0055657206, + 0.008875866, + 0.0016171144, + 0.0107293045, + -0.0041026943, + -1.5703804E-4, + -0.018120201, + 0.037328053, + -0.018618496, + 0.007996385, + 0.022053555, + 0.01589665, + 0.004512085, + -0.0072262976, + -0.00277521, + 0.012873871, + -0.0259786, + 0.0051583205, + 0.016411062, + 0.0070411596, + 0.0025549761, + 0.0032547235, + 0.0039327866, + 0.0066959313, + 0.012100641, + -0.0019619649, + 0.005526453, + 0.01794185, + 0.008704569, + -0.02096027, + -0.0011131889, + 0.0059369737, + 0.014960718, + -0.006165852, + -0.007261449, + -0.0068417257, + 0.013525899, + 0.0018944725, + -0.012126604, + 0.003857735, + 0.033486113, + -0.012620423, + 0.009261708, + -0.019594042, + 7.8032346E-4, + 0.017440757, + 0.01821177, + 0.0014538607, + 0.00189264, + 0.014060159, + 0.006585083, + 0.020260278, + -0.007720738, + -0.011587644, + -0.0077289026, + 0.0035739082, + 0.008895013, + 0.04043262, + 0.004016162, + -0.021558989, + -0.044429544, + -0.019055966, + 0.0019881334, + -0.009195908, + -0.01205534, + -0.013326429, + 0.0040887306, + -0.020088354, + -0.0017074498, + -0.015259589, + 0.0023170833, + -0.039826173, + 0.0039484, + -0.031484768, + 0.005414341, + -0.007986356, + -0.0059318338, + 0.0032290407, + -0.013111064, + -0.014585402, + -0.0022223569, + -0.030558651, + 0.004024111, + 0.015007656, + -0.015489851, + 0.01133613, + 0.0053592706, + -0.004611163, + 0.007913371, + 0.015290801, + -3.874919E-4, + 0.028319227, + -0.010638634, + 0.020224765, + 0.013024674, + -0.008055151, + -8.709809E-4, + -0.010689084, + -0.015328239, + 0.015637191, + 0.014971355, + -0.022714656, + 0.0066022584, + -0.022843724, + -0.0025951427, + -0.0041476563, + 0.007869844, + -0.011085508, + -0.020312719, + -0.04408724, + -0.034247126, + -0.011674907, + 0.012569933, + -0.0046647275, + 0.0038482153, + 0.018669842, + -0.020309798, + -0.008882277, + 0.02471959, + 0.013554157, + 0.016908018, + -0.019520413, + 0.010388691, + 0.022361761, + -0.008611769, + -0.019396352, + -0.024707075, + 0.01233393, + -0.011376658, + 0.039006207, + -0.02041521, + -0.015890416, + 0.0050891326, + -0.005376418, + 0.0032655057, + -0.0035156733, + -0.0027555672, + -9.5564977E-4, + 0.03039746, + 0.02572244, + 0.022670893, + -0.007525117, + -0.00896408, + -0.01785693, + 0.012130372, + -0.024474047, + 0.0112328585, + 0.017523414, + -0.002805257, + 0.0015551173, + -0.01782455, + 0.0012255943, + 3.148537E-4, + 0.021361148, + 0.021373957, + 0.0059484714, + 0.010295002, + -0.013073769, + 0.0050579114, + -0.016084958, + 0.007192992, + 0.0041269073, + -0.0034582003, + 0.017541682, + 0.010310904, + 0.007980777, + -0.010424427, + -0.018575802, + 7.53892E-4, + -0.0029844332, + 0.022614371, + 0.0052622096, + 0.0052970927, + 0.020439478, + 0.0016462762, + -0.0074135372, + 3.5561464E-4, + 0.06443137, + 0.005142908, + -0.019614719, + 0.0052614296, + -0.0053188535, + -0.0049666124, + -0.014299092, + 0.0057555875, + -0.016407946, + 0.0107133165, + -0.014017101, + 0.008059221, + -0.021574453, + 0.010238469, + 0.008193345, + -0.026316177, + -0.002254485, + 0.0015011079, + -0.0024968698, + 0.008548992, + -0.020508446, + 0.034567352, + -0.017629063, + 0.01688195, + -0.018280467, + 0.022927742, + -0.008220693, + -0.006182738, + -0.032282352, + -0.0031803658, + 0.015518787, + 0.016366497, + 8.832715E-4, + -0.019603496, + -0.017260201, + -0.042648267, + -0.024773905, + -0.004612196, + 0.046890747, + -0.014274108, + -0.0057021664, + 0.00916447, + 0.006780846, + 0.011594144, + 0.007847876, + 0.01582047, + 0.03770496, + -0.016857043, + 0.024618568, + 0.011173586, + -0.012507191, + 0.0067823366, + 0.013637479, + -0.028332312, + -0.012153014, + 0.014703539, + 0.014933811, + 0.010392756, + 0.017140672, + 5.726668E-4, + -0.013038622, + 0.030956963, + 0.0016781434, + -0.023499083, + -0.032610565, + -0.029544812, + 0.020878281, + 0.0025830346, + 0.008073546, + 0.009105171, + -9.341971E-4, + 0.007051292, + 0.0097275805, + -0.016574822, + -0.0115121165, + 0.034217376, + 0.021251934, + -0.0014347343, + -0.004977249, + 0.03722746, + 0.011610602, + 0.0020368206, + -0.03140865, + 0.0021806762, + -0.013451686, + 0.019463375, + -0.016312791, + -0.0061361096, + 0.0052382047, + 0.008265746, + 0.010167762, + 0.007160884, + -3.0357475E-4, + -0.0076513886, + 0.0064053987, + -0.02607009, + 0.005251713, + -0.012548519, + -0.0104921395, + -0.007371835, + 0.009797965, + -0.012511632, + 0.013072881, + -0.013700995, + -0.0047149295, + 0.010660373, + 0.0027085547, + 0.01343326, + 0.023978239, + -0.019075759, + 0.019650385, + -0.013802343, + -0.002326903, + 0.029996594, + 0.020879133, + -0.033060215, + -0.012015706, + 0.0030289984, + -0.021004993, + 0.015096854, + 0.016184693, + -0.005039256, + -0.012569429, + 0.03037055, + 0.0022185822, + -0.018613506, + 0.007082767, + -0.0042268867, + 0.01453339, + -0.0016574002, + 0.010257814, + -0.006985379, + 0.042148475, + -0.013237863, + -0.037192523, + 0.024917282, + -0.030112157, + -0.013421634, + -0.0027755643, + -0.003488696, + -0.011952778, + -0.01420078, + 8.935318E-4, + -0.007831892, + -0.010223059, + 0.0036253093, + 0.009468267, + 0.027350694, + 0.031180682, + 0.018789435, + -0.004288329, + 0.01689426, + 0.010833684, + 0.012305013, + 0.0036105055, + -0.005144273, + 0.007141279, + -0.027302936, + -0.004658298, + -0.00792399, + 0.028882157, + -0.02342814, + 0.0011615471, + -0.018699009, + 0.011243603, + 0.015543174, + 6.1931513E-4, + -0.015231505, + -0.00965029, + -0.004991204, + -0.0053649386, + 6.977486E-4, + -0.02276149, + 0.0014511824, + -0.019287832, + -0.02490002, + 0.02149616, + 0.019452358, + -3.4590956E-4, + 0.021360764, + -0.015702428, + 0.025743466, + 0.016423969, + 0.016778594, + -0.013523646, + 0.0038642085, + 0.031084819, + -0.006191063, + 0.010495804, + -0.022059953, + 0.007105123, + 0.0053681266, + -0.019679802, + -0.01294857, + 0.014987236, + -0.008190467, + 0.010226504, + -0.004523118, + -0.0024621221, + 2.970084E-4, + 1.4337922E-4, + 0.001223827, + -0.015298947, + -0.007319561, + -0.010490338, + -0.003621733, + 0.017122982, + 0.010611557, + -0.017367609, + 0.01576725, + -0.013706553, + -0.002963996, + 0.0020045028, + 0.022400985, + 0.036126208, + -0.020839501, + -0.0214041, + 0.014319052, + -0.0087926695, + 0.0028424514, + -0.012220295, + -0.00199497, + -0.010359616, + -0.03608787, + -0.031885188, + 0.0020619824, + -0.02091684, + 0.008830141, + 0.0092476625, + 0.008894436, + -0.0025917552, + 0.0012349986, + -0.007988869, + 0.019864473, + -0.006724267, + -0.031965498, + -0.0013490055, + -0.0020019095, + 0.02253159, + 0.0037382238, + -0.013311234, + 0.012646941, + 0.017101625, + 0.019958561, + -0.0068805064, + -0.017938415, + -0.03091965, + -0.016284116, + 0.012290779, + 0.012601291, + 0.008801442, + -0.009581622, + -0.014859847, + 0.0010139062, + 0.03384603, + -0.037444886, + -0.01315451, + 0.021627435, + -0.00956761, + -0.020725783, + 0.0056783417, + -0.002498833, + -0.013814301, + 0.01576658, + 0.018988438, + -0.01084044, + 0.0028025035, + 6.774801E-4, + -9.3508465E-4, + 0.0021495468, + -0.00414937, + 0.01365725, + 0.015099259, + -0.013049603, + -0.033768687, + 0.0204011, + -0.020592704, + -0.008305938, + 0.0019874582, + 0.0073210243, + 0.021711312, + -5.1985815E-4, + 0.0013253848, + 6.627004E-4, + -0.011632884, + 0.0016248435, + 0.014818482, + -0.010673216, + -1.5901493E-4, + -0.026001057, + 0.02419715, + 0.025773136, + 0.0037010103, + -0.0033060794, + -0.015113681, + -0.023111964, + -0.0019813501, + 0.014089307, + 0.0026246158, + -0.0100175785, + 0.0015391168, + 0.0121778995, + 0.008586851, + -0.0017767894, + 0.0061670616, + 0.026243463, + 0.0068567568, + -0.019777104, + -0.009712423, + -0.016609622, + 0.020396426, + -0.0047492413, + 0.0034505923, + -0.026063332, + 0.019596668, + -0.002439512, + 9.0703316E-4, + -0.006586309, + 0.028066322, + 0.008444334, + -0.042225786, + 0.035130132, + -0.0018581515, + 0.031109914, + 0.010897398, + 0.008373316, + -0.004997235, + -0.015581493, + 0.0067189005, + 0.00907202, + -0.020632114, + -0.01181863, + -0.021917196, + -3.605609E-4, + 0.017763672, + 0.0018783644, + -3.665544E-4, + -0.024732303, + -0.014945365, + 0.023965163, + 0.018318955, + 0.023548247, + 0.02257252, + -0.012121479, + -0.00797018, + -8.1391615E-4, + 0.0016094256, + 0.007164367, + -0.0108254785, + 0.015916752, + -0.014953884, + -0.028819943, + -0.012063, + -0.01537192, + -0.0029496634, + -6.0075225E-4, + 0.017882168, + -0.013080357, + -0.027185366, + -0.0101561835, + 1.0524902E-4, + 0.010855487, + -0.020883694, + -0.021107676, + -0.0067307586, + -0.027115973, + 0.012989542, + -0.022797573, + -0.037062954, + 0.008527621, + 0.031256035, + 0.00214513, + 0.014202978, + -0.0068092006, + -0.0012225582, + -0.010869784, + 0.0024396915, + -0.020013388, + -0.012848468, + 0.0038589824, + 0.025111893, + -0.016951803, + 0.006225964, + -0.03643158, + 0.0016401183, + -0.0051519484, + -0.01516018, + 0.003540663, + 0.009707872, + 0.015773758, + -0.00837414, + -0.024117265, + 0.018134404, + 0.021980178, + -0.030747054, + 0.009807581, + 0.019319315, + 0.0060309567, + 0.00378597, + 0.024653332, + -0.005053512, + 0.031118874, + -0.008114544, + 0.014659165, + 0.0057926644, + 0.0031571267, + 0.004938538, + 4.3557165E-4, + -0.0073911473, + 0.012173306, + -0.0011711695, + -0.031373598, + 0.004061158, + -0.01808564, + -0.024014484, + -0.014111456, + -0.01274226, + -0.01679462, + 0.013966949, + -0.0015272206, + 0.0054248227, + -0.005589171, + -0.006348786, + 7.1340194E-4, + -6.4122514E-4, + 0.012208278, + 0.01852905, + -0.007824665, + 0.0027037184, + 0.032245327, + -0.00880422, + 0.014744293, + -0.015496107, + 0.019508777, + 0.027739191, + -0.012565671, + -0.0017220114, + -0.012033496, + -0.0029103924, + 0.005503412, + 0.026026588, + 0.0020857947, + 0.019391881, + -0.013532459, + -0.0031797825, + -0.034136806, + -0.034445263, + 0.0052238316, + -0.029089337, + 0.013145558, + -0.011482544, + 0.006911951, + -0.012087227, + 3.0885142E-4, + -0.008358591, + -0.011649706, + -0.0044276738, + 0.04012803, + 0.0047167065, + -0.03142947, + -0.031130625, + 0.016030306, + 0.006997514, + 0.019504212, + 0.03414882, + -0.007238442, + 0.0010391444, + -0.023067212, + 0.01906981, + 0.0017330247, + 0.008571211, + -0.02679411, + 0.0038482938, + 0.018850436, + -0.019798476, + 0.017550413, + 0.0027799085, + -0.014996441, + -0.029928371, + 0.022593873, + -0.025067275, + -0.010016638, + 0.030146424, + -0.016070707, + 0.0039264187, + -0.016118035, + 0.009291016, + 0.019269057, + -0.0025941106, + 0.024557386, + -0.016617594, + 0.004691182, + 0.006634211, + 0.0026796078, + -0.0035275505, + -0.018656522, + -0.0054503833, + 0.0025702605, + 0.024490627, + 0.02749518, + 0.009261613, + -0.019802406, + -0.0026114776, + -0.006467751, + -0.0052438434, + 0.018407913, + 0.025495673, + -0.0068060635, + -0.0068461555, + -0.018915517, + 0.0032780175, + -0.007938332, + 0.0029800124, + -0.0034775767, + -3.2505696E-4, + 0.0033467025, + 0.0031544722, + 0.020997634, + 0.014942859, + -0.0064735757, + -0.01072779, + 0.02339592, + -0.014876958, + 0.015837174, + -0.00450809, + -0.010560982, + -0.022527274, + -0.0068417103, + -0.0015504542, + 0.022128245, + 0.0106788995, + -0.02813012, + -0.0043270974, + -0.026252916, + -0.01331034, + 0.022060849, + 0.003902786, + -3.6603565E-4, + -0.022292431, + 0.01282167, + 0.008954872, + 0.011021391, + 0.013787786, + 0.007357419, + 0.021120507, + 0.007320031, + -0.024674173, + -0.027884163, + -0.049286112, + -0.0056306287, + -0.033233054, + 0.014877858, + 0.016842684, + -0.0011555345, + 0.014633437, + 0.0054257647, + -0.005732009, + -0.017692942, + 1.4879194E-4, + 0.014921601, + 0.0231005, + 0.027377203, + 0.005585003, + 0.0039858604, + -0.015679145, + -0.021689555, + 0.021586161, + -0.0048526265, + -0.012931762, + 0.005651327, + 0.01071963, + -0.0075016418, + 0.0024788422, + 0.0134951, + 0.005631243, + -0.0020634828, + 0.0036199999, + 0.017517187, + -0.006850671, + -9.447877E-4, + -0.0054423944, + 7.7630836E-4, + -3.3388205E-4, + -0.027054027, + 0.038105495, + 0.008858674, + -0.0026791587, + 0.009195207, + 0.026377844, + -0.023534827, + 0.018030277, + -0.021952642, + 3.915862E-4, + 8.8308984E-4, + -0.017848415, + 0.022259943, + -0.0053523663, + -0.012627045, + -0.008577545, + -0.0056445473, + 0.013209182, + 0.01604902, + -0.012513605, + -0.0034841509, + -0.012057638, + 0.017925238, + -0.004627946, + 0.015903402, + 0.022580365, + 0.012951264, + -0.010731929, + 0.0022374217, + 0.0014808397, + -0.030031838, + -0.030059423, + -0.017377906, + 0.008491955, + 0.0022223818, + -0.0061748535, + 0.012510698, + 0.012979825, + -0.002086125, + -0.013028587, + -0.007993165, + 0.0293126, + 0.017390007, + -0.00891648, + -0.009123127, + 0.034344908, + 0.016581139, + 0.03413253, + -0.021858437, + 0.018442817, + -0.007819712, + -0.007506282, + -0.0054051257, + -0.001465258, + -0.01288016, + 0.015629679, + 0.027353376, + -0.005523302, + 0.0062265648, + 0.01099011, + -0.0029634195, + -0.008906117, + 3.485219E-4, + -0.010282666, + -0.0058132987, + -0.027576728, + -0.0044171647, + 0.025634639, + 5.6491396E-4, + -0.014690838, + -0.0031693738, + 0.007500691, + 0.0085304, + -0.008201757, + -0.027790857, + 0.0012505834, + -0.0063927504, + 0.035972442, + 0.0053213183, + -0.013113325, + -0.012069445, + -0.0046379603, + 6.7884626E-4, + -0.016575286, + -0.009451491, + 0.0161959, + -0.014671134, + 0.0018968614, + -0.020477956, + -7.737844E-4, + 0.005445236, + -0.010095097, + -0.006821304, + -0.048050508, + 0.018250797, + 0.014444414, + 0.010533228, + 0.024875687, + 8.0120703E-4, + -0.013398075, + -0.009655422, + -0.0053284965, + -6.482068E-4, + 0.025057923, + -0.008358963, + 0.0034542044, + -0.008982101, + -8.293793E-4, + 0.01074031, + 0.004526828, + -0.0046176873, + -0.010360825, + -0.0071727093, + 0.024067935, + 0.0042560194, + 0.0031883107, + 0.0033290775, + 0.010181709, + -5.970061E-4, + -0.0059868162, + -0.007820305, + -0.023234682, + -0.004763265, + 0.011693663, + 0.036132596, + -0.011682939, + 0.03520918, + -0.001306434, + 0.0014892586, + 0.027778862, + 0.023110032, + -0.004064122, + -0.02055797, + -0.022079762, + -0.007417701, + -0.008216641, + 0.0019314307, + 0.010207327, + -0.008222398, + -0.02036912, + 0.020565981, + -0.0024813695, + -0.0065338514, + -0.0070205205, + 0.007314919, + 0.0019167023, + 0.013202551, + -0.024987299, + -0.015648054, + 0.023610936, + 0.010385489, + 0.011558415, + 0.022308363, + -0.021242462, + -0.0119645465, + 0.004412503, + 0.012856506, + -0.0016504228, + -0.029264078, + 0.025100816, + -0.013406418, + 0.008963686, + -0.012497348, + -0.0072892047, + -0.03228425, + 0.008914776, + -0.0068577337, + 0.00845548, + 0.0012063489, + -0.0132113, + -0.027834743, + 9.920475E-4, + 0.014142412, + 0.011949273, + 0.026529076, + 0.016987272, + 0.021469565, + -0.035173442, + -0.015745722, + 0.031471748, + 0.010329872, + 0.007870688, + -0.015778484, + -0.008847111, + 0.011896502, + -0.017300706, + 8.2549243E-4, + 0.0044544586, + 0.021484403, + 0.00952774, + -0.017760532, + 8.046683E-4, + -0.017777098, + 0.0028811358, + -0.0040902398, + 0.008962471, + -0.019122956, + 0.03342071, + -0.0074982503, + 7.7378965E-4, + 0.021080606, + -0.02805573, + -0.014612558, + -0.026011636, + -0.01426974, + 0.01779446, + -0.0044016307, + 0.0128913475, + -0.009729923, + -0.011323112, + 0.023466423, + 0.00298403, + -0.025702514, + -0.022148596, + 0.014316518, + -6.4422225E-4, + 0.016159918, + -0.0020426766, + -0.002840714, + -0.009674446, + -0.0014652316, + -0.020384528, + -0.025378078, + -0.018491378, + -0.03855409, + -0.009613115, + -0.0065811733, + 0.02728091, + -0.010135863, + -0.0047241105, + 0.018876797, + 0.00785533, + 0.006419996, + 8.431582E-4, + 0.006333128, + 0.0022613853, + 0.003961833, + 0.004420001, + -0.01670195, + 0.006465223, + 1.648488E-4, + -0.010662385, + 0.0018428415, + 0.019265862, + 0.018938212, + -0.009233193, + -0.012383313, + 0.007706807, + -0.008172494, + -0.02352554, + 0.02157332, + -0.031807814, + 0.025686977, + 0.023469843, + 0.0042942856, + 0.011981803, + -0.004301771, + -0.005975586, + -0.005835082, + -0.008265023, + 0.0076124077, + -0.01088433, + 0.009422839, + -7.370295E-4, + -0.015916029, + -0.0026395025, + -0.022657327, + 0.002432386, + 4.4044005E-4, + 0.015558671, + 0.010871149, + -0.018433457, + 0.030914972, + -0.011174426, + -0.0016183165, + 0.008599211, + -0.0032073064, + 0.004484663, + -0.043525323, + -0.019861808, + 0.0024807954, + -0.0070119416, + 0.028048836, + 0.014507974, + -0.008337337, + 0.01196626, + 0.03311748, + 0.0061295503, + -0.0052905595, + 0.024495905, + -0.0033720671, + -0.006255556, + -0.019009247, + 0.0124556, + 0.011701118, + 0.020181036, + 0.001008828, + -0.0062307743, + -0.010791254, + 0.0024803285, + -0.015900983, + -0.028610477, + -0.023398802, + 0.028777953, + 0.0060998867, + 0.0060969954, + 0.0037058652, + -0.01100893, + -0.011900084, + -7.0220017E-4, + 0.012061693, + -0.0028185926, + -0.0070240633, + -3.8985515E-4, + -0.030358305, + -0.0015400472, + -0.0064955545, + -0.015698938, + 0.023354003, + -0.0025470292, + -0.02744541, + 0.008467359, + -0.013035112, + 0.011259121, + 0.004812888, + 0.009219439, + -0.021064563, + 0.0029469603, + -0.013428652, + 0.017227918, + 0.007222575, + -0.0041178646, + -1.4502063E-4, + 0.004208686, + 0.007860938, + -0.014911858, + 0.010356333, + 0.007919727, + -0.004734155, + 0.03496689, + -0.01180737, + -0.005794827, + -0.00482471, + -0.004425043, + 0.006098363, + 0.021632569, + 0.015209927, + 0.01336313, + 7.703063E-4, + -0.008574381, + 0.010854569, + 0.002693206, + 0.02204208, + 0.016794741, + 0.03483963, + -0.007385393, + -0.005517485, + 0.017841937, + 0.008602423, + 0.008658258, + 0.024785142, + 0.016079493, + 0.006168712, + -0.0074598896, + 0.007516694, + 0.019802969, + 0.028585885, + -0.02244287, + 0.016118577, + 0.0036561273, + 0.004601189, + -0.022419836, + 0.008503287, + 0.013805474, + 0.009663777, + -0.015604827, + 0.003220816, + 0.006622046, + -0.025385508, + -0.005784674, + -0.013117021, + 0.009302373, + 0.00320215, + 0.008867968, + 0.016744815, + -0.031977814, + 0.01459128, + -0.011867201, + 0.02431079, + -0.0014372271, + -0.0020740686, + -0.0010361865, + -0.0092275655, + -0.016596677, + 0.020559596, + 0.01639422, + 0.005205708, + -0.0020987615, + -0.0148348585, + -0.0010254498, + 0.022114405, + 4.6229875E-4, + 0.016298717, + -0.008714867, + -0.009996881, + -0.020563653, + 0.008446025, + -0.010911114, + 0.027227966, + 0.021897536, + -0.005051963, + 0.0021451768, + 0.038740434, + 0.0046215686, + 0.01529676, + 0.020367028, + 0.003501939, + 0.009361534, + 0.008773832, + -0.0041710795, + -0.0011297632, + -7.318715E-4, + 0.0053669866, + 0.011826978, + -0.01221655, + 0.016102638, + 0.006117427, + 0.038557474, + -0.025543235, + 0.016314046, + -6.4628955E-4, + -0.022892639, + 0.011096738, + -0.0068511204, + 0.002533119, + 0.022035455, + -0.013317862, + -0.016993787, + 6.0492544E-4, + 0.010227313, + -0.022131642, + 0.01317493, + -0.0068783113, + -0.002918918, + 0.019837998, + -0.01286239, + 0.0011116175, + -9.335567E-4, + 0.033774134, + 0.011409539, + 0.0037516197, + 0.00646573, + 0.019094653, + 0.03419501, + 0.02603937, + 0.002150277, + -0.0059051774, + 0.004129286, + 0.04951818, + -9.067137E-4, + 0.043645166, + 0.0046174987, + 0.011966215, + 0.008045354, + 0.015645344, + -0.0019122324, + 0.005840215, + 0.02354516, + 0.012942867, + 0.010428561, + 0.003627833, + 0.01328492, + -0.008366955, + 0.01418751, + -0.01146454, + 0.007304453, + -0.0025844197, + -0.012746116, + -0.00859458, + -0.017055802, + -0.016810723, + 0.019596897, + 0.03243257, + -0.020957673, + -0.017801618, + 0.0039372905, + -0.028323479, + -0.01790562, + -0.0031560683, + -0.010071521, + 0.016509326, + 5.173283E-4, + 0.0018553976, + -0.020515721, + -0.008807394, + -0.0059199976, + 0.013403626, + -0.00822739, + -0.004259885, + -0.0059087165, + 3.626037E-4, + 0.0047978796, + 0.002584419, + -0.024855003, + -0.0388848, + -0.023302184, + 0.027735112, + -0.013506724, + -0.023921238, + 0.016740344, + 0.018559625, + 0.012838073, + -0.015788227, + 0.0119634755, + 0.01364892, + -0.02523366, + 0.012158035, + -0.0027390611, + -0.006149596, + -0.017090233, + -0.028460206, + 0.001716914, + 5.634053E-4, + 0.04452476, + 7.9847255E-4, + -0.0046862126, + 0.012525003, + 0.017566592, + -0.0019300666, + -0.013864912, + -0.011938455, + -0.008445542, + -0.018385984, + 0.02524675, + 0.010579293, + 0.0035730444, + -0.00635349, + -4.316616E-4, + -0.0057919845, + 0.015502219, + -4.6485185E-4, + -0.019624373, + 0.008128154, + -0.013641935, + -0.0054199505, + 0.0038267376, + 0.01030965, + 0.007829073, + 7.242013E-4, + -0.027322365, + -0.04654475, + -0.018052364, + -0.007108132, + 0.00838809, + 0.0046963603, + 0.036565457, + -0.01061121, + 0.007950507, + -6.740535E-4, + 0.0027736162, + -0.008930108, + 0.0069348305, + -0.013974877, + 0.012252199, + 8.853039E-4, + 0.0057099764, + 0.0024054814, + -0.017180512, + 0.01075819, + -0.008547232, + -0.024023354, + 0.0061970092, + 0.00228942, + 0.016913341, + 0.021172123, + 0.017274529, + 0.024277166, + -0.022906363, + -0.0034536815, + -0.004159564, + -0.0047956277, + 5.951686E-4, + 0.024560558, + 0.005968301, + -0.010750263, + -0.024666889, + 0.018310022, + -0.0068766843, + 0.011073542, + 0.016516639, + -0.0039616833, + 4.6818747E-4, + -0.045987785, + 0.022264842, + 1.994332E-4, + -0.011398313, + -0.032065507, + 0.031351194, + 0.002660477, + 0.009291464, + -0.02999967, + -0.005186511, + -0.01134148, + 0.013631164, + -0.012776995, + -0.0043017385, + -0.0054497686, + -0.009661019, + -0.02169434, + -0.0025708796, + -0.0022503978, + -0.004865691, + 0.006020127, + 0.006523043, + -0.007833336, + -0.011340377, + -0.012942179, + 0.009324479, + 0.018665493, + -0.016074995, + -0.0015150477, + -0.03057996, + 0.019270044, + -0.021795329, + -0.0077709393, + -0.022850217, + 0.01338756, + 0.002486235, + 0.009044828, + 0.009626559, + -0.010309564, + 0.0028145274, + 0.012492036, + 0.0035514447, + -0.0053198766, + 0.0045581027, + -0.0030966226, + 0.00916911, + 0.031294327, + 0.00977907, + -0.004583699, + 0.0075270208, + 0.0023869243, + 0.012262694, + 0.0077838856, + -0.026784712, + -0.0054543526, + 0.00872743, + -0.00922978, + 0.025771137, + 0.012356808, + 0.0030516868, + 0.024877695, + -0.01632919, + 0.017111827, + -0.0046531707, + -0.0013436949, + 0.006064954, + 0.025049753, + -0.01982243, + 0.012299385, + 0.014063879, + -0.03862945, + -0.006690567, + -0.019732647, + -6.4044714E-4, + -0.0031295624, + -0.020143272, + -5.585111E-4, + -5.6663008E-5, + 0.014684557, + -0.0074844724, + -0.012447102, + 0.0043261526, + 0.006140039, + 0.011742823, + 0.0011368145, + 0.0021164685, + -0.006082246, + 0.019996129, + -0.012172537, + 0.010325835, + -0.022087516, + 0.0035957315, + -0.0022563064, + -0.0130093675, + 0.017653484, + 0.008189439, + -0.002185717, + 0.013656936, + -0.02966354, + -0.012081295, + 0.0070228707, + -0.0011385396, + -0.015729154, + 0.018946745, + -0.01190647, + -0.0036909033, + -0.0014508428, + -0.0050768484, + 0.01879221, + 0.0013664855, + 0.017723978, + -0.03124706, + 0.012730569, + -0.0023017572, + -0.024482273, + -0.031688232, + 0.010475471, + 0.016352825, + -0.010296697, + -0.016724372, + 0.0011009402, + 9.457491E-4, + 0.009138175, + -0.0041811755, + -0.019684307, + -0.020510916, + -0.0064377463, + 0.015160303, + -0.019684505, + -0.015287092, + 0.008190206, + -0.027284529, + 0.008316556, + -0.0044333064, + 0.006438488, + -0.0043388754, + -0.0026836488, + 0.009908058, + -0.012495956, + -0.007142705, + -0.025567561, + -0.0037011935, + -0.012840374, + 0.014723274, + 0.018139008, + -0.014213995, + -0.025194118, + -0.01673176, + 0.02366337, + 0.015764587, + -0.010249864, + -0.025023093, + -0.0036532083, + 0.0068096262, + 0.029324923, + -0.0077756783, + -0.0155516155, + 0.013846636, + 0.004816782, + -0.003252017, + 0.001548068, + 0.0041190214, + 0.016522234, + 0.006043718, + 0.0027940588, + -0.021537598, + -0.0052722543, + 5.5261183E-4, + 0.0029708461, + -0.018855581, + -0.0024590394, + 0.013840177, + -0.014396549, + -0.0040921555, + 0.004641308, + 0.0013612884, + 0.010262602, + -0.008211252, + -0.012154892, + -0.042338245, + -0.025369268, + -0.013683681, + -0.022709735, + 0.023762468, + 0.014992743, + -0.014664961, + 0.032121636, + -0.0010947117, + -0.0020392714, + 0.014006094, + 0.00843862, + 0.033684734, + -0.013488408, + -0.011266783, + -0.012068545, + 0.028520599, + -0.009271192, + -0.021137075, + 0.003117152, + 0.015758354, + -0.015334484, + 0.01230027, + 5.6731654E-4, + 0.011273402, + 0.0321129, + 0.009299455, + -2.0601008E-4, + -0.01219698, + -0.017081132, + 0.014440434, + 0.019629523, + 0.03681752, + 0.020017486, + 0.016206365, + 0.016200459, + -0.017563688, + 0.016377352, + -0.011772234, + -3.9823262E-5, + 0.0023080925, + 4.982337E-4, + -0.003941918, + 0.023526555, + 0.009321941, + -0.0039036484, + 0.007297439, + -0.010987891, + -0.0021004574, + -0.029832913, + -0.0032289608, + 0.024196327, + 0.0032052838, + 0.008914231, + 0.009080716, + 0.011695813, + -0.021253228, + -5.88872E-4, + -0.0019907663, + -0.013238875, + -4.7804276E-4, + 0.032293495, + -0.005017942, + -0.008503866, + 0.012963776, + -0.017479122, + -0.0066195424, + 0.02794397, + 0.0022211394, + -0.009439477, + -0.037411764, + 0.0014405353, + -0.00826152, + 0.011624177, + -0.03018528, + 0.012395827, + 1.536914E-4, + 0.03085686, + 0.027347118, + 0.010596126, + -0.023636566, + -0.014063712, + 0.002740192, + 0.016738433, + 0.00770064, + 0.0017166962, + -0.010495101, + 0.0048069847, + -0.036601506, + 0.005887287, + 0.010532481, + 0.012432185, + -0.011521345, + -0.011602561, + 0.011783662, + -0.008796207, + 0.0055675604, + 0.004009552, + 0.015415576, + 0.015019639, + -0.030199619, + 0.0036671897, + 0.001700792, + -0.0037619832, + 0.01069899, + -0.0047823917, + 0.021743556, + -4.637767E-4, + -0.010701514, + -0.006907173, + -0.028591055, + -0.010141327, + 0.012834242, + -0.005149115, + -0.013621134, + 0.005510169, + 0.011287776, + 0.009998233, + 0.033558294, + 6.5909035E-4, + -0.0068690963, + 0.011130972, + -0.003929469, + 0.018332973, + 0.0030185573, + -0.004070188, + 0.0054405173, + 0.014845741, + 0.006221868, + -0.009139689, + 0.0198156, + 0.01826054, + 0.01011198, + -0.014371872, + -0.030475797, + 9.094812E-5, + 0.023182724, + 0.0063237557, + -0.022048019, + -5.2014703E-4, + 0.0043119416, + -0.008551302, + -0.0030616731, + -0.025427327, + -0.010641015, + 0.036768347, + -0.029348657, + -0.010917017, + 0.014952298, + -0.0026915302, + -0.0019699102, + -2.267355E-5, + -0.015463447, + 5.030675E-4, + 0.01434712, + 0.022002771, + 0.012292316, + -0.006941461, + 0.025822135, + -0.0059279567, + -0.023283862, + -0.0013714087, + 0.028667081, + -0.001767964, + 0.0019611826, + -8.8705256E-4, + -0.025407534, + 0.008170532, + 0.03128188, + 0.010556294, + 0.012224772, + -0.0063258377, + 0.015761763, + 0.02471815, + 0.019859478, + -0.0016001061, + 0.020484528, + -0.0033640657, + -0.008564483, + 0.033779424, + 0.022615617, + -0.049672395, + 0.010935154, + 0.0013975648, + -8.36912E-4, + 0.012555177, + -0.016120179, + -0.016068451, + -0.0061865123, + -0.01671732, + -0.014728839, + -0.0047179847, + -0.014443638, + 0.0018583997, + -4.6340877E-4, + 0.005690769, + 0.019272443, + -0.01062596, + 0.027090672, + 7.0659915E-4, + 0.019111613, + -0.0024297836, + 0.001195901, + -0.0069558993, + 1.7967286E-4, + -0.023044888, + -0.015006025, + -0.019810883, + 0.03342792, + 0.0058054295, + -0.008451751, + -0.0061162547, + -0.008807599, + -0.034077466, + 0.009405409, + -0.02630531, + 0.006295298, + -0.0069505842, + -0.015234448, + 0.0035510983, + 0.019905662, + -0.022408644, + 0.014665957, + 0.0051410887, + -0.003826777, + 0.006569009, + 0.010859788, + -0.038065135, + 0.018888943, + 9.4009336E-4, + 0.013567353, + 0.0098513495, + 0.011750141, + 0.0077902228, + 0.04097908, + -3.7456237E-4, + 0.010236226, + -0.01674836, + -0.0030167624, + 0.028174791, + 0.017763734, + -0.014928931, + -0.024936344, + 0.0067411596, + -6.99866E-4, + -0.03575785, + 0.013577282, + -0.0019525479, + -0.0063540307, + 0.012170766, + 0.020889644, + -0.039033934, + -0.008416131, + 0.022706961, + 0.004597714, + 0.010332529, + -0.00809668, + 0.0018513949, + -0.014111259, + 0.0035395485, + 0.023967903, + 0.021619152, + -0.0035170028, + -0.01812504, + 0.020644113, + -0.01811268, + 0.015603974, + -0.036782406, + 0.021927688, + 0.01153837, + -0.018794946, + 0.0041198474, + -0.035812896, + 0.0015457801, + -0.019936217, + -0.0103968475, + -0.013734908, + 0.0077158897, + -0.010519341, + -0.0012942117, + 0.028059185, + -0.017114704, + -0.010868105, + -0.009767127, + -9.308504E-4, + 0.021845683, + -0.027008746, + 0.027474608, + -7.0824975E-4, + -0.0023600454, + -0.008890235, + 0.0028961266, + -0.014791416, + -0.0052084154, + 0.024166834, + 0.0094923405, + -0.0016939548, + 0.0055791615, + 0.0035183833, + -0.010139285, + 0.019418575, + 0.0019006374, + -0.009153429, + -0.008707278, + -0.012108549, + 0.014244148, + 0.014504923, + 0.0092622945, + -0.011018146, + 0.02285097, + 0.006610123, + 0.034276225, + 0.0023644958, + -0.008449522, + -0.010651666, + 2.9003204E-4, + 0.010910912, + -0.021624109, + 0.012355042, + -0.0229432, + -0.013847425, + -0.00201576, + 0.028939158, + 0.023841996, + -0.010878875, + 0.0046558967, + 0.021320144, + 0.0030310059, + -0.005407855, + 0.023279233, + -0.0067543956, + -0.0037707498, + 0.040157005, + -0.009697179, + 5.394772E-4, + -0.0047511603, + -0.015695473, + 0.0092360135, + -0.00840906, + 0.021728048, + 0.0054461285, + -0.030310407, + 0.02917769, + 0.009745941, + 0.039088942, + -0.011021334, + -0.0024906227, + 0.0018938241, + -0.0029268428, + 0.0036478576, + 0.022514822, + -0.017860064, + 0.0054102573, + -0.027629804, + 0.010567718, + 0.017649623, + -0.001443086, + 0.018735358, + 0.021113886, + -0.01808318, + 0.015393937, + -0.013161171, + 0.022898598, + -0.0014160519, + 0.0043293796, + -0.0028764475, + 0.0076011294, + 0.0015641629, + 0.010528404, + 0.009801291, + -0.0029776364, + -0.002771174, + -0.007382242, + 0.0036212925, + -0.0032908388, + -0.02398192, + 0.017970169, + 0.0095487805, + 0.0030656266, + 0.011979636, + -0.0072759665, + -0.029604638, + 0.022687022, + -0.043338828, + 0.014780971, + 0.005385544, + 0.026376136, + 0.033550188, + -0.022364479, + -0.018896915, + -0.006296508, + -0.014282953, + -0.0022466185, + 0.0045980313, + -0.0066178343, + -0.0356017, + -0.00771495, + -0.025621446, + 0.0036903657, + 0.009979832, + 0.016191168, + 0.02127076, + -0.043104645, + 0.013757473, + -0.003384527, + 0.017376576, + 0.041059475, + 0.008463876, + 7.446886E-4, + 0.015239508, + -0.020556234, + 0.009690571, + -0.009823325, + -0.011577171, + -0.02175507, + -0.0049018706, + -0.03129378, + -0.022955125, + 0.009894566, + -0.0062377816, + -0.023289254, + 0.02024764, + -0.0041603846, + 0.019467369, + -0.009151331, + -0.014763706, + -0.032550044, + -0.0025934714, + -0.0033358098, + -0.0026582794, + -0.010789811, + -0.001784531, + 0.0023377093, + 0.03595099, + -3.9529917E-4, + -0.0033088624, + -0.0071776896, + -0.0017870171, + 0.008305702, + 0.0063810544, + -0.02620656, + 0.019054905, + 0.0023292552, + 0.0033980845, + 4.262844E-4, + -0.035886083, + 0.0011748277, + -0.015877739, + -0.011050704, + -0.013013591, + -0.007156896, + -0.0040605995, + -0.016997509, + -0.0046873046, + 0.0014772409, + -0.012168754, + 0.006079077, + -0.0057627093, + 0.011512921, + 0.0015324303, + -1.4531374E-4, + -0.0144097, + 0.01003942, + 0.00564148, + -0.027943524, + 0.031651497, + -0.03755804, + -0.009502823, + 0.013347396, + -0.03597214, + -0.008922204, + -0.002154897, + -0.01825393, + -0.0046125776, + -0.012171977, + -0.012144999, + -0.010563377, + -0.014288708, + -0.0065231663, + -0.0063366145, + -0.012959023, + -0.017145772, + 0.01427379, + 0.005702345, + 0.004144625, + 0.003052291, + -0.010596946, + -0.0022828102, + 0.014374379, + -0.012327411, + -0.0010608197, + 0.0035118277, + -5.6060014E-4, + -8.202712E-4, + 0.0037810444, + 0.018908234, + -0.0023871171, + -0.0076449728, + 0.0032054177, + -0.01961893, + 0.001566212, + -0.01111443, + -0.015319263, + -0.011959163, + -0.01254377, + 0.0025459542, + 0.01639175, + 0.0177869, + 0.014938896, + -0.0027385997, + 0.0030167457, + -0.016769754, + 0.011599296, + 0.016863495, + 0.0012330496, + -0.008914374, + -0.043957613, + -0.007833259, + -0.017346775, + 0.0031708563, + -0.010755699, + 0.014664459, + -0.0035321962, + 0.022794738, + -0.008628176, + -0.010682995, + 0.0061894455, + 0.0016208609, + -0.01728297, + 0.012471356, + 0.046556886, + 0.004508623, + -0.00945595, + -0.018561883, + -0.02061473, + 0.026513007, + -0.028182603, + 0.017660227, + -0.013549461, + 0.018530661, + 0.006320255, + 0.030019434, + 0.005452394, + -0.017044924, + -0.016033053, + 0.00482796, + -0.010288038, + -0.00732742, + 0.019967852, + 0.009727443, + 0.017655972, + 0.0018282398, + 0.024868635, + 0.011844268, + -0.01244421, + 0.0010378018, + -0.014888842, + -0.0018792062, + 0.00568787, + -0.014832073, + -0.013893535, + 0.014394754, + 0.020293398, + -0.029676376, + 0.0057397704, + 0.014000948, + 0.0047918204, + 0.017883018, + 0.003600885, + -0.003573531, + -0.007014143, + 0.0018240486, + 0.008207144, + -0.009819018, + -0.0034732164, + 0.018875653, + -0.003159548, + 0.021324081, + -0.009241053, + -0.012554796, + 0.010481901, + -0.0036798553, + -0.0056716343, + -0.0015523527, + -0.026065543, + 0.001503585, + -0.014564296, + 0.029321149, + 0.033009466, + 0.018893238, + 0.007750918, + -0.014410761, + -6.3729275E-4, + 0.007657936, + -0.0065155523, + 0.042906176, + 0.021910802, + 5.1534857E-4, + -0.0022682128, + -0.00714896, + 0.0122524705, + 0.017703956, + 0.012675602, + 0.020906327, + 0.024503218, + -6.529615E-4, + 0.027999941, + -0.021435447, + 0.006693106, + 0.011508473, + -0.019310758, + 0.020493966, + -0.003446729, + -0.008886985, + 0.02138766, + 0.0097170975, + -0.0035779958, + 0.0039422703, + -0.018289201, + -0.0076933596, + 0.003531772, + 0.01148988, + -0.013139182, + -0.0014345148, + 0.0064398274, + 0.028119463, + -0.002888049, + 0.0243806, + -8.579332E-4, + 0.0022314943, + 0.008925378, + -0.0017285025, + 3.258669E-4, + -0.025017256, + 0.0034516943, + 0.010217279, + -0.013815502, + -0.004931556, + 0.030687127, + 6.2610937E-4, + -0.007160415, + 0.026720112, + -0.011198369, + 0.005203666, + 0.0038284832, + -0.014160031, + -0.017093044, + 0.029740758, + -0.013863545, + 0.029558647, + -0.018486237, + -0.042661153, + -0.008439078, + 0.00899097, + 0.0017103051, + -0.010787795, + 0.013088295, + -0.010193223, + -0.0018396374, + -0.0128702605, + -0.020313907, + -0.014175799, + -0.017087845, + -0.0010444204, + -0.023083512, + 0.017533159, + -0.017231002, + 0.003795401, + 0.014555152, + 0.015928097, + 0.0061035575, + -0.030368922, + -0.010793582, + -0.02473758, + 3.905142E-5, + 3.7840688E-5, + -0.0017720225, + 0.003949612, + 0.023174008, + -0.0047590868, + -0.024916044, + 0.0029812527, + -0.0018531611, + 0.0044745873, + 0.01885654, + 0.02041399, + -0.011631413, + 0.008859977, + 0.01384089, + 0.010579026, + -0.024571197, + 0.014056647, + 0.0186655, + 0.014605556, + 0.003983987, + -0.011655849, + -0.0068008117, + -0.028432071, + 0.017372526, + -0.006276791, + -4.3925244E-4, + -6.6423824E-4, + -0.010068448, + 0.016250795, + 0.00557784, + 7.526582E-4, + 0.008263085, + -0.026668655, + 0.014490305, + -0.0052549574, + 0.020418111, + 0.009340871, + -0.007442274, + 0.0076418044, + -0.012884584, + 9.261537E-5, + -0.01450157, + -0.0025459025, + 0.013066246, + -0.0094288075, + 0.014837403, + -7.29347E-4, + 0.0076715625, + -0.006263132, + -0.002595858, + -0.011872421, + 0.00891695, + 0.00644947, + -0.014170964, + 0.0015396486, + 0.010635899, + 0.0107661225, + 0.021371134, + 0.025690386, + 0.024213275, + -0.008894696, + -0.021083454, + -0.0074684536, + -0.027616853, + 0.01554269, + 0.028669827, + -0.009690024, + -0.0054046917, + 0.0011045664, + -0.0079669915, + 0.029454451, + -0.009997458, + 0.010171224, + -0.013580174, + -0.0023451084, + -0.009922981, + 0.014527027, + 0.009277137, + 0.020404855, + -0.002291764, + -0.02878378, + -0.01588667, + -0.0016319789, + -0.0036665848, + 0.013377963, + 0.0034539776, + 0.0048039868, + 0.017445583, + -0.01274476, + 0.009863153, + 0.01029891, + -0.024503898, + -0.0060987226, + 0.015339206, + 0.0068285335, + -0.004215959, + 0.0052992604, + -0.0046287715, + 0.0134428535, + -0.015347568, + 0.011052177, + -0.007508533, + 0.006341183, + 0.006034699, + 0.014127357, + 0.015337517, + -0.0012722015, + -0.011188534, + 0.005058646, + -0.001256336, + 0.007027119, + -0.0062525077, + -0.006914245, + 0.03160624, + -0.019785494, + 0.008325657, + -0.013284122, + 0.0019075009, + -0.023007061, + -0.005055176, + -0.008422913, + -6.978572E-4, + 0.03525063, + 0.008699359, + -0.0036081693, + -0.011318383, + -0.0053977547, + 0.015365116, + 0.0072149755, + -6.1850785E-4, + -0.010373477, + 0.025199363, + -0.004099334, + -0.007046604, + 0.008315218, + -0.002309532, + 0.030627323, + 0.029707722, + -0.01038462, + 0.0024146037, + -0.0027247185, + 0.0022250446, + 0.005462261, + -0.01897584, + 0.018485446, + 3.4558243E-4, + -0.004273869, + -0.02489473, + -0.008411276, + 0.0036241717, + -0.0025097283, + 0.0018270004, + -0.005874928, + 0.006495581, + -0.023628198, + -0.008611142, + 0.014859943, + -0.009694716, + 0.014713268, + 0.0059646973, + -6.271723E-4, + -0.01812071, + -0.0086357165, + -0.0029305515, + -0.011266368, + -0.0029670158, + 0.0046832045, + 0.0070384755, + -0.013247471, + 4.2264805E-5, + -0.03237415, + -0.029186554, + -0.01812022, + 0.0024535488, + -0.0067609437, + -0.010177264, + 0.027161159, + 0.0011024314, + 0.011208848, + -0.020364884, + 0.0029656012, + -0.037268687, + 0.01613204, + 0.025127234, + -0.029005365, + 0.005944428, + -0.0044270647, + 0.011537448, + 0.016300432, + -0.0017648372, + 0.023095418, + 0.013828201, + 0.010418158, + -0.009576735, + -0.014627096, + -0.01723932, + -0.014799719, + -0.012893151, + 0.015984738, + -0.021956954, + -0.0066135344, + -0.018101366, + -0.0054225763, + 0.035872757, + 0.007403795, + -0.0055772737, + -0.014906358, + -0.016583702, + -0.012950506, + 0.007007498, + 0.013432498, + -0.0125393905, + -0.024987228, + 0.015522461, + -0.018564625, + -0.03517366, + -0.016679656, + 0.027048554, + 0.0026960438, + 0.014632621, + 0.014268028, + -0.008205259, + -0.024656978, + -0.010598462, + 0.015165771, + 0.0055881343, + -0.0012293528, + -0.0101772165, + -0.0049519856, + 0.007128425, + 0.014265767, + 0.028794706, + 0.0034262885, + 0.0068767425, + 0.026295839, + -0.007773719, + -0.024809511, + 0.002273456, + -0.02432856, + 0.012243389, + 0.0062752306, + -0.0059898137, + -0.0023839052, + -0.013497838, + -0.01858381, + -7.604236E-4, + 0.010288024, + 0.009300587, + -0.0052880757, + 0.001256327, + 0.030857524, + -0.009397837, + 0.024503363, + -0.020037897, + -0.0026988161, + -0.010241707, + -0.006511155, + 0.0038263635, + -0.011226173, + 0.0038739482, + 0.010676583, + -0.01398616, + -0.011375731, + 0.028859405, + -0.0255985, + 0.026725998, + 0.025188824, + 0.0121937115, + 0.016784603, + 0.027202442, + 0.004876314, + -0.005969152, + 0.016411662, + -0.017263422, + 4.3766253E-4, + 0.00819463, + -7.982559E-4, + 0.002019786, + -0.008070949, + 0.016097825, + 0.014606261, + 0.0058210925, + 0.014395556, + 0.008337301, + -0.006818706, + -0.0038935482, + 0.022112584, + 0.018043047, + 0.016757092, + -0.010178311, + 0.017202722, + 0.011337105, + 0.0015265765, + -0.019621879, + -0.018587712, + 5.306555E-4, + 0.005301382, + -0.036171477, + 0.024095187, + 0.01894365, + 0.004087985, + -0.013335529, + -0.0013178424, + 0.0049434775, + 0.011655272, + -0.037060834, + 0.02358261, + -0.025308045, + 0.00812715, + 0.004636925, + -0.004163172, + 0.015009687, + 0.0055461717, + 0.00624822, + 0.014771723, + 0.028231155, + -0.012695951, + 0.010538124, + 0.0084142145, + 0.01635256, + 0.021214321, + -0.014551575, + 0.01867467, + -0.027298206, + -0.021352882, + -0.0010429083, + 0.010725363, + -0.007245954, + -0.018050846, + 0.001965349, + 0.015930275, + 0.018563872, + -0.030462034, + 0.010342018, + -0.007997333, + -0.007460823, + -0.0028246348, + -0.024862608, + 0.0027467487, + -0.0037126685, + 0.004068837, + 0.024883017, + 0.005404051, + 5.3637115E-5, + 0.011465149, + -0.00819003, + 0.017448973, + 0.004095035, + -0.006921548, + 0.0042425003, + 0.0082074, + -0.025982913, + 0.001301413, + -0.017017502, + -0.060396474, + 0.0040810537, + -0.008849128, + 0.0010705662, + 0.012438007, + -0.008507685, + -0.018851612, + 0.018105328, + 0.006165601, + -0.03881102, + 7.148807E-4, + -0.02104419, + -0.010872125, + 0.022681776, + 0.016869288, + 0.005320187, + -0.02015123, + -0.011237056, + -0.012236121, + 0.019559098, + -0.007559735, + -0.012016484, + -0.008669342, + 0.008883489, + -0.004297383, + -0.0036868753, + -0.010786571, + 0.01292387, + 0.008727895, + -0.007768616, + -0.004924133, + 0.05302063, + 0.006632356, + -0.011765973, + -0.020639408, + -0.0048243157, + 0.0025572043, + -0.008819855, + 0.022257341, + 0.0040163486, + 0.002773483, + -0.018188363, + -0.025218762, + -0.012093211, + 9.913443E-4, + -0.0124355825, + -0.006480003, + -0.006759356, + 0.016139638, + 0.0084921885, + -0.009809509, + 0.013996246, + 0.0063137906, + -0.0066083493, + -1.4761095E-4, + -0.015890362, + -0.011749833, + -0.011256318, + 0.007490589, + -0.01860178, + 0.010363258, + -0.014153597, + -0.014522368, + -0.046796247, + 0.014566715, + -0.0014819624, + -0.0058426317, + 0.00567319, + -0.0049125548, + -0.005969955, + 0.029321935, + -0.001981452, + 0.009760178, + -0.038954522, + 0.026641613, + -0.01708835, + -0.020637296, + 0.012367233, + -0.0030091181, + -0.032410406, + -0.009709384, + -0.004780392, + 0.011760455, + 0.0047118566, + -0.0046203807, + -0.0054257484, + -0.0029631867, + -0.02527999, + -0.0035976553, + -0.028485214, + 0.016234623, + 0.025403265, + 0.023412965, + 0.013196641, + 0.011637332, + -0.012142168, + -0.006665198, + -0.013576563, + -0.014239799, + 0.00511159, + -0.0038048362, + -0.04389552, + -0.0070630326, + 4.955685E-4, + 0.0055303317, + -0.015003456, + 0.0059713027, + 0.005876873, + -0.017336996, + -0.025224747, + -3.8236467E-4, + 0.010330663, + -0.011131667, + 0.0047622193, + -0.0040270053, + 0.0064609367, + 0.015743231, + 0.01003625, + 4.3379E-4, + -0.013035358, + 0.026228542, + 0.030059393, + -0.014978859, + -0.013032982, + -5.6847883E-4, + 0.006816936, + -0.00829802, + -2.2381374E-4, + -0.0051720627, + -0.0104077915, + -0.016152704, + 0.0039035117, + 0.0034286699, + 0.013111684, + 0.017036702, + 0.025459938, + -0.02254824, + -0.0130089065, + 0.005835797, + 0.020702187, + 0.0047146357, + -0.005305799, + 0.013249018, + -0.0061379145, + 0.0144374855, + -0.02984951, + 7.420373E-4, + 0.006479227, + 0.0013727132, + 0.007268524, + 0.019687714, + -6.453557E-4, + 0.015150549, + -0.029525869, + 0.005188305, + -0.0019847793, + -0.0013149936, + -0.01258716, + 0.022721428, + 0.007575259, + -0.02345765, + 0.016501037, + 0.046687417, + -0.008300684, + -0.012130658, + -0.024170374, + -0.014591774, + 0.0030423037, + 0.011832211, + 0.011889011, + 0.015429372, + 0.0018906114, + 0.008954998, + 0.0070402096, + -0.008337987, + 0.0026449095, + -0.013519665, + 0.012008411, + 0.016016994, + -0.0070723034, + -0.007007053, + -0.02153324, + 3.4041633E-4, + 0.0015875966, + -6.518299E-4, + 0.010221181, + 0.002436248, + -0.025113635, + -0.0085408855, + -0.0069266623, + 0.027686432, + 0.02043598, + 0.014050166, + 0.003194289, + 0.0012309923, + -0.027690735, + 0.023013288, + 0.005045092, + -0.009369837, + -0.0034561288, + 0.012619915, + 1.6012198E-4, + -7.315357E-4, + 0.008031088, + 0.0016038396, + -0.00882305, + -0.0155766085, + -0.019232906, + 0.017671507, + -0.008879321, + -0.003096734, + 0.0028300972, + -0.026200635, + 0.031390984, + 0.006663197, + 0.019498583, + 0.016913908, + -0.0066310177, + -0.0042131064, + -0.013563609, + -0.0030365298, + 0.029208824, + -0.010417372, + 0.009244754, + 0.0073665753, + 0.023470152, + 0.010166876, + -0.016012402, + 0.0028947983, + 0.004703909, + -0.030990958, + 0.009638639, + -0.0031223723, + 0.0037050175, + 0.005869162, + 0.0094709415, + 0.011020281, + 0.00874647, + 0.009287041, + 0.007940974, + -0.008666169, + -0.017626015, + 0.00812304, + 0.010775873, + 0.001967346, + -0.011794633, + 0.01444755, + 0.02382369, + 0.031487204, + 0.014058169, + 0.0027800903, + 0.0016434547, + 0.012379452, + 0.009701107, + 0.0072617303, + 0.0032792264, + 0.018038511, + 0.0011534997, + 0.0052024676, + 0.008443056, + 0.0011275245, + 0.033241346, + -6.431876E-5, + 0.0039668665, + -0.015786748, + -0.010245383, + 0.01111438, + -0.041177772, + 0.0033003823, + 0.004247198, + -0.0029724431, + 0.024401592, + -0.010534144, + -0.0024008288, + 0.014126386, + -0.014876659, + 0.019907728, + 0.022421472, + -0.0031231153, + -0.0045924317, + 0.001369158, + -0.017304847, + 0.002951502, + -0.021842351, + 0.0011861558, + 0.0025449882, + 2.675633E-4, + 0.008059438, + -0.027998393, + 0.010397495, + -0.0025210574, + -0.01204112, + -0.002831537, + -0.03997478, + -0.028721485, + 0.035155628, + 0.010910588, + -0.009425082, + 0.003712614, + 0.017435972, + -0.013476933, + -0.021979114, + 0.0017428582, + -0.002520697, + 0.023592118, + -0.025340745, + -0.0053697745, + 0.0037321544, + -0.015306768, + -0.009464357, + -0.0026069644, + 0.005068157, + 0.020704968, + -0.0043708817, + -0.008151871, + 0.010680447, + 0.038888734, + -0.013660309, + 0.020831121, + -0.009784864, + -0.013895569, + -0.0072162836, + 0.010481784, + -0.0027294965, + -0.005866227, + -0.0052865194, + -0.017540287, + 0.013750144, + -0.013170123, + 0.01594558, + 0.03905732, + 0.013736958, + 0.0038261004, + 0.013625818, + -0.012854289, + 0.00331152, + 0.008047099, + -0.011501751, + -0.015664319, + 0.0028106999, + 0.028011434, + 0.0033578535, + -0.012274682, + -0.021494543, + 5.0375087E-4, + 0.048254564, + 0.006754596, + -0.0033618386, + 0.028367415, + -0.0033529818, + 0.015410236, + -0.010810403, + -0.0072894804, + 0.015365801, + -0.0058885654, + -0.008094567, + 0.0034624306, + 0.011470577, + 7.756731E-4, + -0.015363252, + -0.004263404, + 0.0052386792, + -0.022590837, + -0.0014509358, + -0.030699305, + 0.007226144, + -0.019342307, + -0.007590891, + 0.010611098, + -0.012584266, + 0.010197553, + -0.008651879, + -0.009631213, + 0.0024875358, + -0.00969228, + -0.009139046, + -0.008297478, + -0.0077462513, + 0.017574564, + 0.021565571, + 0.0054673264, + 0.033875357, + 0.003971699, + -2.1991425E-4, + 0.0063489564, + 0.0029485559, + 0.024253305, + 0.006308989, + 0.024310311, + -0.01998898, + -0.0069865608, + 0.012558082, + -0.0014110776, + -0.008567564, + 0.02380292, + 0.0035146864, + 0.0021850863, + 0.0018407052, + -0.012082876, + 0.0013449341, + -0.009284132, + 0.008246185, + -0.020142382, + -0.012488568, + 0.0027878566, + 0.008591455, + -0.014801973, + -0.015840445, + -0.0066520963, + 0.005443073, + -0.008981907, + 0.009666683, + -0.009390998, + 0.008782669, + 0.0051876353, + -0.004295999, + -0.010107387, + 0.017621389, + 0.012659585, + -0.0049281027, + 0.004420803, + -0.014682705, + -7.2703994E-4, + 0.010111495, + 0.0024333198, + 0.012808078, + 0.0032127306, + -0.0063123265, + -0.005155192, + -0.026065616, + 0.015897026, + -0.007964846, + 0.013706058, + -0.013147364, + 0.0014872514, + 0.010264025, + 0.02685448, + 5.6253804E-5, + 0.016544864, + 0.010940216, + 0.010051076, + 0.03679311, + -0.014586564, + -0.014156468, + 0.012691745, + 7.383533E-4, + -0.0054053064, + -0.004668561, + 0.0019006624, + -0.0061484007, + -0.0016436434, + 0.017490685, + -0.0052618664, + -0.015067194, + 0.022395162, + -0.013238972, + -7.944217E-5, + -0.021365544, + -0.0055517787, + 0.024471192, + -0.03208253, + 0.015107281, + -0.003428071, + -0.015263343, + 0.020538535, + 0.006910617, + -0.0042072744, + -0.0121987555, + -0.017888295, + -0.008607798, + -0.02702062, + 0.0078010405, + -0.017428232, + 0.039499722, + 5.2405446E-4, + 0.013550171, + -0.0063297777, + 0.019722382, + 0.0043128664, + -0.008407539, + -0.009418284, + 0.030144008, + 0.015698822, + 0.01925467, + -0.00443667, + -0.015166402, + -0.0033138318, + 0.015858091, + 0.004882843, + -0.010129685, + -0.009145312, + 0.007029742, + 0.00295031, + -0.0026363719, + -0.018386615, + 0.034707524, + 0.006554554, + -0.0047767195, + 0.0019127172, + -0.0025415474, + -0.010921747, + 0.0070472434, + -9.9462E-4, + 4.52203E-4, + 7.625547E-4, + 0.02093425, + 0.018419929, + 0.016762877, + 0.008119537, + 0.024569506, + -0.034385618, + 0.011137448, + 0.007887976, + 0.03417174, + 0.0271828, + 9.638208E-4, + -0.026703767, + 0.008812659, + -0.015447373, + -0.01551986, + -0.016245404, + -0.0033807065, + -0.0041226516, + 0.020384863, + -0.003511237, + 0.03785891, + 0.019770507, + 0.019259436, + -0.0031451597, + 0.010660863, + -0.0065515414, + -0.011708419, + 0.0036775884, + -0.011737831, + 5.098738E-4, + 0.010841248, + -0.025279498, + 0.0024346279, + 0.012340734, + -0.0026118362, + 0.029152246, + -0.010805195, + -0.005220124, + 0.015797094, + -0.006997578, + -0.0029205678, + -0.0039438144, + -0.019826202, + 0.015394122, + -0.02190153, + 0.0036708, + -0.0019358493, + 0.008924697, + -0.007872051, + 0.018354822, + 0.004880307, + -0.01361757, + 0.0127101, + -0.011705801, + -0.008623585, + -0.0025573734, + 0.006589745, + -0.021176582, + 0.024263049, + 5.3768116E-4, + -0.025432495, + 0.002866124, + -0.0111643765, + 0.044561967, + -0.0038189113, + -0.018572275, + -0.00947496, + -0.0049618613, + -0.004452287, + -0.010486417, + -0.008624999, + 0.009311583, + 0.011558048, + 9.5731264E-4, + 0.009730279, + 0.012957191, + 0.021542288, + -0.0125681935, + 0.01013407, + 0.007822913, + 0.0073409392, + -0.02248415, + -0.020001551, + 0.0029548942, + 0.008445092, + -0.019650087, + -0.0075394385, + -0.014178172, + -0.0057469737, + -0.022902984, + -0.0019604045, + -0.0024110232, + 0.00430873, + 0.0069198357, + 0.011443368, + -0.0047880197, + -0.018151889, + 0.011775428, + -0.01344669, + 0.0059844903, + -0.0039469767, + 0.04210182, + -9.0361957E-4, + -0.0072440337, + 0.011940587, + -0.0103625255, + -0.015764967, + -0.009670238, + -0.0062326584, + -0.013967594, + -0.0045908736, + -9.766395E-4, + 0.0068919994, + 0.003269269, + 7.7175756E-4, + 0.01967072, + -0.0376657, + 0.0037537578, + -0.004135601, + -0.017163072, + -0.009253403, + 0.02689499, + -0.018287329, + 0.0037946356, + -0.002302358, + 0.0072977133, + 0.018151019, + 0.013700633, + 0.027588187, + -0.0073778783, + -0.0018633613, + 0.004264308, + 0.008367129, + 0.010666673, + -0.01403965, + 0.0054027443, + 0.0065746396, + 0.0050309584, + 0.03113675, + 0.0021450638, + -0.01599208, + -0.02513776, + 0.019094637, + -0.0068781036, + 0.03386996, + 0.012769831, + -0.011722519, + 0.004463903, + -0.023544045, + 0.011279083, + 0.017222775, + -0.007989233, + -0.012849665, + 0.0014673887, + -0.005756868, + 0.022145208, + 0.02465211, + -0.011236588, + 0.006884674, + -0.004979613, + -0.026621642, + 0.0057170964, + -0.008898968, + -0.018732319, + -0.025619943, + 0.012410033, + 0.012832681, + 0.021693718, + 0.020902492, + 0.022518028, + 0.023506565, + -0.019335167, + -0.026491895, + 0.0064227674, + -9.6164155E-4, + 0.009375153, + -0.008953798, + -0.0024533595, + 0.0054172943, + -0.033378012, + 0.0054820916, + 0.019773183, + -0.023549829, + 0.00446857, + -0.016711295, + 0.0019314414, + -0.01692126, + 0.006724875, + 0.019367147, + 0.0064132567, + 0.013156135, + -0.006841957, + -0.014266, + 0.022348022, + -0.014452954, + -0.0060955263, + -0.009379498, + 0.0039418745, + -0.017734475, + -0.007880445, + -0.023434885, + 0.03233075, + -0.019383365, + 0.0102969995, + 0.00779363, + -0.009091425, + 0.0293158, + 0.0128707765, + 0.011795484, + 0.012161809, + -0.010026317, + -0.0022268584, + -0.021200618, + 0.018185226, + 0.027450237, + -0.02056614, + 0.028911216, + 0.01086771, + -0.0043213074, + -3.07854E-4, + 2.7151158E-4, + -0.01807653, + -0.004726773, + 0.005047157, + -0.01019507, + 0.0066537303, + -0.022055222, + -0.015749978, + 0.018096788, + 0.033507366, + -0.018823141, + 0.009052759, + -0.006779055, + -1.19552584E-4, + 0.0053895223, + -0.013471142, + -0.0040429495, + -0.012305043, + -0.012424844, + 0.006069466, + 0.007722145, + -0.0070881112, + 0.018458376, + 0.007907337, + 0.004661298, + -0.0115572205, + 0.016456855, + 0.011593177, + 0.0055320496, + 0.03458043, + -0.020114591, + 0.025542552, + -0.00321301, + -0.00876181, + 0.02527116, + -0.015360879, + -0.014865044, + 0.02155226, + 0.015912645, + -0.007663705, + -0.015599642, + 0.021529263, + -0.031265732, + -0.023492325, + 0.001839126, + 0.010546073, + -0.010819143, + -0.011550661, + -2.5209662E-4, + -0.0031284257, + 0.017719036, + -0.011365624, + -0.026338266, + 0.0152414255, + 0.010924187, + 0.0043839607, + -0.008438562, + -0.0124892695, + 0.020739045, + -0.014355999, + -0.0071246442, + -0.006039736, + -0.004009752, + -0.006262408, + -0.0074956072, + 0.0022937874, + 0.0074959705, + -0.012894373, + 0.0034285183, + -0.005250483, + 0.014949727, + -0.008741815, + -7.1742124E-4, + 0.005852976, + 0.020113192, + -0.0016370907, + -0.0073559624, + -0.015549651, + -0.025293162, + -0.0036627608, + -0.029002499, + 0.030308912, + -0.010307472, + -0.009908797, + 0.0076529025, + 0.016153311, + 0.010821145, + 0.01704383, + 0.012328227, + 0.0027657198, + 0.0086774165, + -0.017927008, + -0.005434656, + 0.0050854734, + -0.01997906, + -0.017004237, + -0.021055266, + 0.0061336183, + -0.03001085, + 0.0052190516, + -0.0021232283, + -0.0022980638, + -0.024521595, + -0.021286475, + -0.014498835, + -0.018591914, + -0.016494943, + 0.010024253, + -0.0039297566, + 0.011459328, + -0.01908538, + -0.0149984695, + 0.01571267, + -0.019776674, + 0.010003358, + 0.01454165, + 0.005472879, + -0.016997335, + 1.4718782E-4, + -0.0013932013, + -0.022481496, + -0.011267267, + -0.0024124957, + -0.004091801, + 0.013675704, + 7.186031E-4, + 0.017752582, + 0.0039807227, + -0.015416125, + 0.016463485, + -0.037245072, + 0.015941506, + 0.003297048, + -0.005180794, + 0.0022058638, + 0.013971303, + -0.01596908, + -0.021561503, + 0.00977811, + -0.0028359252, + -0.011299463, + 0.011747829, + 0.0020192442, + -0.0058156047, + -0.028813649, + 0.009648853, + 0.022358706, + 0.009298953, + -0.015102041, + -0.016732778, + -0.006838906, + 0.0053682853, + -0.012391899, + 0.0046656863, + 0.007577361, + -0.014023605, + -0.03925699, + -0.015388439, + 0.019292824, + 0.02150026, + 0.029360794, + -3.4444768E-4, + 0.0062349006, + -0.01388606, + 0.0064284066, + -0.025108192, + -0.033702064, + 0.008971127, + -0.020636158, + 0.021977471, + 0.0056320806, + 0.018582998, + -0.007973479, + -0.020554746, + -0.005819536, + 0.0074065197, + -0.01114783, + -0.007171541, + -0.017020259, + 0.027847284, + 0.009391271, + -0.008871469, + 0.025357446, + 0.014895346, + -0.046573117, + 0.0025920428, + -0.009481109, + -0.015155651, + 0.014729008, + 0.0018479556, + 0.02141938, + 0.013273832, + 0.0032490196, + 0.0106494045, + 0.0044563455, + 0.008202287, + -0.0122142965, + -0.02943658, + -0.0066390783, + 0.0058410326, + -0.011554123, + -0.006916086, + -0.021858249, + 0.025068674, + 0.0032397956, + -0.0029356428, + 0.027897386, + -0.02435321, + -0.007529151, + 0.002343634, + 0.0146469055, + 0.0015995062, + 0.025692413, + 0.008485441, + -0.008717485, + -0.014873135, + 0.015761128, + 0.0052865897, + 0.012110369, + 0.01365225, + -0.043065175, + -0.025900729, + 0.032362178, + 0.01144367, + 0.009597928, + 0.0012232632, + 0.0020236173, + 0.016398594, + 0.023817329, + 3.7267606E-4, + -0.01924265, + 0.012167511, + 0.010504252, + 0.020916145, + -0.014005344, + 0.0025528525, + 0.01227855, + 0.01640563, + 0.015865078, + -0.004232691, + 0.0021596637, + -0.020996077, + 0.018849995, + -0.009174397, + -0.028893776, + 0.004624393, + 5.9573376E-4, + -9.840742E-4, + 0.0022194358, + 0.008649001, + -0.009439151, + 0.010876936, + 0.008462203, + -0.0017951173, + 6.7491096E-4, + 0.0020142177, + -0.006342287, + -0.0076551903, + 0.016062401, + -0.00420669, + -0.012669512, + -0.010535906, + 0.017861081, + 0.014966316, + 0.008020064, + -0.0010089843, + -0.01600059, + 0.0062899385, + 0.01936827, + -0.0062067155, + -0.015698342, + 0.010364379, + -0.007773151, + 0.009284522, + 0.0018889976, + 0.017486895, + 0.0026698362, + -0.0018764096, + -0.0141983805, + 0.034736942, + -0.018044343, + 0.017397854, + -0.0036599138, + -2.1393617E-4, + 0.0064750006, + -0.0026810118, + -0.026087029, + -0.006688594, + 0.0053668288, + 0.021842275, + 0.0076500447, + 0.028912283, + 0.030486766, + -0.015702857, + -0.0021553666, + -6.6553924E-4, + -0.003547409, + 0.026753977, + 0.010825479, + 0.019764507, + -0.016469352, + -0.008562387, + 0.041460667, + 0.0051832316 ], - "paletteEmbedding": [ - -0.02224033, 0.004304921, -0.014608879, -0.0050419103, 0.013071911, - 0.04722311, 1.4180086e-4, 0.019766992, 0.012495936, -0.027330307, - -0.0067727827, 0.029258303, -0.010874957, -0.025579061, 0.037602656, - 0.01392755, -0.017500525, -0.014952114, -0.0029196884, 0.030803535, - -0.052212, -0.04447101, 0.023974463, -0.027978372, 0.038745455, - -0.08288712, -0.0034332138, 0.029369185, -0.022305697, -0.0093680695, - -0.018328149, -0.02361262, -0.06322206, 0.036575895, 0.026793828, - 0.0033396375, 0.011852367, 0.014725442, 0.038136724, 5.4146134e-4, - -0.03156876, -0.032857776, -5.1241746e-4, -0.04471016, 0.031150447, - -0.05088256, -0.011482364, -0.03663895, 0.038997952, -0.01847605, - -0.04622689, 0.0045230044, 0.004080044, 0.039499484, 0.049302306, - -0.017460667, -0.011116791, -0.038187236, -0.016324634, 0.03990557, - -0.016945092, 0.008528495, -0.021933315, 8.529042e-4, -0.006482957, - -0.0069899657, 0.031495146, 0.015747635, -0.030984394, 9.134784e-4, - 0.0071505224, 0.055449005, 0.009261842, 0.02029234, -0.056291472, - -0.017821347, 0.025686443, -0.0075616776, -0.047919605, 0.015535286, - -0.0025080342, 0.063441075, -0.02209989, -0.032497443, 0.023815215, - -0.059655793, -0.057781912, -0.031045886, -0.007432311, 0.055962782, - 0.049563598, 0.05068166, -0.061915178, 0.0026863446, 0.0049573793, - -0.008331859, -0.012883625, 0.011824382, 0.058325127, -0.02327903, - -0.011661782, -0.014277689, 0.0036502902, 0.018712427, 0.03478651, - -0.059311233, -0.02174844, 0.00849051, -0.020305997, 0.034952268, - 0.0011391744, 0.011774893, -0.009444798, 0.025721075, -0.03421969, - 0.01579166, -0.0112896655, -0.038662817, -0.07411704, -0.022509195, - 0.00419652, 0.038130492, -0.009269094, -0.01597287, 0.021744255, - 0.011250288, -0.01618674, 0.04509808, 0.020766443, 0.0219101, - -0.049400624, 0.03317031, 0.0015764008, -0.045412023, 0.014172126, - -4.0455663e-4, 0.04766546, -0.018423574, 0.038148146, -0.0073888437, - -0.030207394, 0.011005567, 0.040330168, -0.03174391, -0.032688715, - -0.005427078, -0.012912002, 0.017078385, -0.035934333, 0.034532275, - -0.091042265, -0.048612278, -0.011826332, 8.8842085e-4, 0.052227493, - 0.016412748, 0.071912594, -0.04309217, -0.021636372, 0.0118344575, - -0.011463811, 0.04467259, -0.01692981, 0.022907417, 0.02101781, - -0.03251075, 0.0064340094, -0.010708102, 0.055932276, 0.009837085, - 0.0057320017, -0.027670115, -0.018192729, 0.022831142, -0.020777067, - -0.01177664, -0.01847998, -0.027162531, 0.022033866, -0.025359487, - -0.05920257, -0.06484188, 0.012669078, -0.019609872, -0.016582744, - -0.04598056, 0.012523281, -0.06507601, 0.0034986981, 0.019244747, - -6.0578145e-4, 0.014774785, 0.0013041507, -0.041224726, 0.040388867, - -0.011789766, -0.06385058, -0.036689848, -0.014669104, -0.028176993, - -0.027912926, -0.078530364, 0.024132391, 0.017299574, -0.022412809, - 0.023052156, -0.035564493, -0.0339173, 0.02364646, -0.018858278, - -0.02108706, -0.009012967, -0.034169555, -0.03969325, -0.032138795, - 0.038920052, -0.017157756, 0.009049615, 0.0075344704, 0.06251589, - -0.0028284763, -0.019566705, 0.0047889357, -0.03316866, -0.027731428, - 0.006950752, -0.011967671, -0.052432265, 0.04317995, 0.008571644, - 0.04085446, -0.02795425, 0.021716837, -0.03724317, -0.033936724, - 0.05876244, 0.033215698, -0.034926347, -0.025804684, -0.053491704, - 0.04927361, -0.024115596, 0.0042670746, 0.017170705, -0.0042021875, - 0.01912547, 0.030554164, -0.006583954, -0.08392224, -0.04379875, - -0.018773101, 0.023660187, -0.020730117, -0.011172371, 0.05946951, - 0.009518871, -0.007941819, -0.027104752, 0.004723104, 0.034185216, - -0.048841145, -0.053014513, -0.02880717, 0.0023637975, -0.010890062, - -0.040522233, -0.0060313283, -0.0226669, 0.015619381, 0.030911244, - 0.025974745, 0.029862117, -0.02017965, 0.011334399, 0.0023371063, - 0.035813253, 0.04019081, 0.0016429153, 0.05177253, 0.012147869, - -0.009337807, 0.012339717, -0.033955667, -0.01263384, -0.014309342, - 0.06466388, -0.016638957, -0.019186933, 0.012448551, 0.036137324, - -0.0156197315, -0.031262223, -0.0046225227, -0.020599892, 0.025736468, - 0.014906827, 0.014482602, -0.0068463804, 0.016260687, 0.011006433, - -0.05194487, -0.041131787, 0.04573233, 0.0016403117, -0.003166481, - 0.0385546, 0.04514818, -0.017492482, -0.0297496, -0.005045139, 0.036022, - 0.036936793, 0.008673675, -0.003287199, 0.028703509, -0.049327403, - -0.04574478, -0.0036490178, 0.023606872, 0.021013813, -0.014205146, - -0.036418933, -0.041838024, -0.050069578, -0.012299603, -0.051119942, - -0.047711525, -0.015937328, -0.0027825357, -0.07179907, -0.033463284, - -0.026713394, 0.041754507, -0.03699201, -0.008209834, 0.04323625, - -0.013875003, 0.042932656, 0.0023213457, -0.009286987, -0.030785572, - -0.015255343, -0.021591239, 0.02116672, -0.017520333, -0.03309295, - -0.02224981, 0.036634915, 0.0120349685, -0.016297475, -0.039564632, - -0.06327487, 0.059236445, 0.03599358, -0.010547666, 0.05181429, - 0.0039518336, 9.6499175e-4, -0.020571923, -0.0012920521, 0.022206109, - -0.022419995, 0.07032877, 0.034286488, 0.00276785, 0.0060276715, - -0.0010210928, 0.022330804, -0.05890233, -0.04284458, 0.0034215539, - -0.014582331, 0.033748187, 0.0033231375, 0.017099995, 0.002744133, - -0.008326666, -0.037054874, -0.066684395, -0.058926668, 0.009254381, - -0.042455133, -0.07018408, -0.008977361, 0.038949445, -0.009935513, - 0.04404189, -0.04101133, 0.009255509, -0.0454644, 0.041062333, - 0.020797344, -0.018863324, -0.02071321, 0.010076775, 0.020535685, - -0.002503188, -0.009809997, 0.0084283985, 0.006211869, -0.026085068, - 0.016451836, 0.036845498, -0.030250363, -0.0034636797, 0.0036201947, - -0.03511874, -0.026048943, -0.013721529, 0.023103274, -0.044805564, - -0.04992811, 0.0028477022, 0.050623346, 0.022390604, 0.024474708, - -0.016245756, -0.033749186, -0.039789524, -0.05345569, -3.1087713e-4, - -0.02098443, -0.0271441, 0.028020825, -0.037800603, -9.6279586e-4, - -0.022959786, 0.018827854, 0.016077336, -0.02552527, -0.032767355, - -0.010049212, -0.006162166, 0.025670305, -0.011336093, 0.016985772, - -0.035360042, -0.018689662, -0.053128462, -0.0064085154, 0.077196166, - -0.039178617, -0.0072246087, 0.015901994, -0.026562812, 0.055267554, - -0.009384313, -0.028557986, -0.04761543, 0.030978713, -0.028949378, - -0.06381926, 0.030092062, -0.021809494, 0.06848388, 0.04665379, - -0.02944065, -0.014035749, -0.016195742, 0.018091837, 0.0016260903, - -0.0055218027, 0.038347475, 0.017329179, -0.032410663, 0.011530023, - -0.0023203166, 0.0025664477, 0.021458432, 0.023621652, -0.033354614, - 0.0018647227, 0.007445048, -0.02695668, -0.030308105, -0.058874678, - 0.03955992, 0.023470128, -0.017989345, 0.0023113207, 0.008636551, - 0.030928345, -0.042932793, 0.04234108, -0.006576426, -0.024098163, - 0.010794463, 0.020898493, -0.020574896, -0.02400037, 0.022522014, - -0.034746002, -0.029719451, -0.029969018, -0.02408101, 0.025228359, - 0.00926511, 3.723147e-4, 0.07153262, 0.007338181, -0.018983332, - 0.06853259, 0.01957432, -0.004504706, 0.019624947, -0.07794308, - 0.005702239, 0.016851326, 0.037111368, -0.01594062, 0.028203879, - 0.008488054, -0.0044251313, -0.014209913, 0.0063988403, -0.012496376, - -0.01489472, -0.025264224, -0.043673754, 0.012463962, 0.019700026, - -0.005841306, 0.024495883, -0.014487695, 0.06449058, -0.04774541, - -0.016093744, 0.0072529144, -0.019430287, -0.008633404, -0.01593542, - 0.0038668765, -0.0046657515, -0.020273827, -0.029618364, -0.0030353714, - -0.042567667, -0.027615063, 0.048340518, -0.005355968, 0.018115109, - -0.0070457384, 0.03369248, 0.039988257, -0.038469013, -0.06629973, - -0.017675787, 0.040159896, 0.039559785, 0.05107931, 0.018531548, - -0.05249345, 0.019711573, -0.030598043, 0.03691766, -0.059149865, - 0.055666253, 0.06417648, 0.07804723, 9.0752763e-4, -0.024350008, - -0.015335475, 0.0073715546, -0.039729588, 0.009698542, 0.032320596, - -0.0039051427, -0.10681491, -0.031180402, 0.015673991, -0.009051946, - 0.050298054, -0.028086528, -0.013335749, 0.014043111, 0.0043136883, - 0.047142334, -0.034471516, 0.06297369, 0.040632624, -0.0099016195, - 0.024303082, -0.0599766, -0.03038221, -0.008600448, 0.04363306, - 0.0012354524, 0.040083207, -0.016677404, -0.020900639, -0.014775202, - -0.010703327, -0.047415096, 0.006412825, 0.034638654, 0.010936561, - -0.06060571, 0.025148684, -0.027770152, 4.7765631e-4, 0.017640186, - -0.048170242, 0.047972348, -0.035228427, 0.04270183, 0.004831058, - -0.021250235, 0.040448286, 0.024242254, 0.020091243, 0.020057004, - 0.040732604, 0.038755342, 0.017722946, -6.917731e-4, 0.037122276, - -0.042686157, -0.020564374, 0.0440812, 0.012128227, -0.041415434, - -0.038571775, -0.0010988002, -0.004912558, 0.0026849837, 0.0034391324, - 0.09547313, 0.046165865, 0.040412266, -0.020596495, -0.016209917, - -0.006102455, -0.047055386, -0.025817672, 0.039836306, 0.021449989, - -0.011796933, -0.007938625, -0.002349299, -0.007903182, -0.045728017, - 0.015738918, -0.01266018, 0.03356052, -0.020890437, 0.016734242, - -0.010881905, 0.002473595, 0.066934764, 0.034254793, 0.021621486, - 0.016278232, 0.06243784, -0.032073095, -0.008619157, 0.048382226, - 0.01574684, 0.029210012, 0.016302772, 0.007873392, -0.015871359, - -0.051858027, -0.055353276, -0.041619428, -7.5914536e-4, -0.0018453291, - -0.005554247, 0.017270973, -0.0025334745, -0.038709812, 0.048659, - -0.033816177, 9.2938246e-4, 0.033237237, 0.055039175, 0.026690949, - 0.058928214, -0.0249483, 0.014217786, 0.0443717, -0.028159594, - -0.021902185, -0.029882291, 0.042065777, 0.009398241, 0.0039725825, - -0.022025498, 0.049703512, -0.011513445, -0.03579075, -0.062495418, - -0.029365543, -0.022866897, 0.012488199, -0.0027803816, -0.017417565, - -0.037185352, 0.025325118, 0.08540756, -0.090730615, -0.023431178, - -4.8215358e-4, -0.012227794, 0.013347679, -0.060000014, 0.079522595, - 0.035556696, 0.016465783, -0.01992372, -0.0027295845, 0.03600171, - -0.034725115, -0.03609536, -0.030026505, -0.040587727, 0.033694744, - 0.024061752, 0.0028108973, 0.02106282, -0.011459732, 0.046996534, - -0.015834456, 0.009404927, -0.0046546473, -0.0072756596, 0.015097726, - -0.003503011, 0.014222165, -0.037644684, -0.022036016, 0.0044928095, - -0.009750118, 2.9022575e-4, 0.037541877, -0.0118295895, -0.0808626, - -0.004173551, -0.0057322592, -0.009542967, -0.016072435, 0.01983107, - -0.033565674, 0.008731139, -0.0010304482, -5.8211706e-4, -0.019442983, - 0.017193323, 0.0031593302, -0.020037724, 0.013960311, 0.035867848, - -0.014318669, 0.052018955, -0.005530698, -0.015717573, -0.06050788, - -0.01861099, 0.016683478, 0.007636488, -0.019921675, 0.002966998, - -0.0045165448, 0.026796628, -0.06262103, 0.0049048793, 0.007156588, - -0.01488082, 0.010223779, -0.0051662466, 0.02454311, -0.021492027, - 0.06774725, -0.02582322, -0.040220704, 0.0032267848, 4.5501062e-4, - -0.05366862, -0.0405231, -0.00540642, -9.379859e-4, -0.02831567, - 0.011303272, 0.02465236, -3.090572e-4, -0.013251494, -0.045846738, - 0.014311649, -0.054500464, -0.02177499, 0.018524775, -0.0526506, - 0.025216099, -0.044162594, 0.017349519, 0.006634692, -0.001524842, - -0.018408153, -0.06484066, -0.016364217, 0.007307501, 0.014972691, - -0.047861192, -0.011225392, 0.062885396, 0.06841493, 0.0073364205, - -0.04256183, 0.0024717015, 0.0015236519, 0.037600163, -0.04508597, - 0.016813783, 0.021345813, -0.08995441, -0.029882902, 0.0065336116, - -0.004479698, 0.011000805, 2.2304544e-4, 0.024440996, -0.016388914, - -0.058255453, -0.015736086, -0.01384798, -0.026156582, 0.017759329, - 0.026823336, -0.02619297, 0.048451323, 0.0012233198, -0.015047524, - -0.058115438, -0.043957368, -0.021649295, 0.009768276, -0.0037660762, - -0.0018514347, 0.005473623, 0.058512256, 0.031570442, -0.007963011, - -0.04704406, 0.011821083, -0.017101206, 0.04660584, 0.026264722, - -0.01617808, -0.051597714, -0.010101598, 0.01216764, -0.028617797, - -0.02089897, 0.048329446, -0.062750995, -0.012682706, 0.03757426, - 0.030036533, 0.034778237, 0.06058294, 0.019067027, -0.05322438, - -0.0023300215, 0.04190762, -0.0058368663, 0.062943585, 0.0207252, - -0.016050043, -0.03387341, 0.033790752, -0.018228728, 0.011175358, - -0.018948572, 0.022999702, -0.020745283, 0.010857991, -0.017563924, - -0.030339891, 0.019081691, -0.03090906, -0.006589009, -0.047871787, - 0.0013704736, 0.017218396, -0.010711414, 0.038765483, 0.013618575, - -0.0044532646, -0.0023067761, 0.0010385114, -0.0036204453, -0.017972011, - -0.0038689987, -0.020294653, 0.024509968, -0.05910407, 0.010439142, - 0.04671227, 0.028949147, 0.05868748, 0.030791344, 0.023019446, - 0.0027098346, -0.013244443, -0.030176627, 0.04543145, 0.040896744, - 0.014858018, -0.0644775, 0.011950096, -0.035689723, 0.006847495, - -0.007416229, 0.027323551, 9.001868e-4, 0.015573784, -0.012665293, - 0.053654756, -0.0694211, -0.010128854, -0.030927122, 0.019658687, - 8.135743e-4, -0.03453535, 0.015777387, 0.0776114, -0.033526067, - 0.031213593, 0.015502497, -0.0047804518, 0.0015597561, 0.0025815456, - 0.0023838796, 0.0012572403, -0.018319288, -0.047985632, -0.0064743343, - -0.019248238, -0.010649955, 0.024386698, -0.033996742, -0.01431119, - -0.036161903, 0.010174366, 0.013569339, 0.023095893, 0.009652428, - -0.014814891, -0.019528905, 0.003871892, -0.04825418, 0.002834742, - 0.01793982, -0.015373509, 0.01244063, -0.0073392284, 0.04636034, - -0.019066317, -0.009218604, 0.00904692, -0.0028042083, 4.2197984e-4, - -0.013955519, -0.04544459, -0.018471781, 0.029122429, 0.047255088, - -0.019618124, -0.037395466, -0.02178998, 0.00389454, -0.017006574, - -0.033997163, -0.014475452, -0.02982569, 0.03902283, -0.0119408015, - -0.036178105, -0.017576696, -0.06644772, 0.0031690379, -0.016113736, - -0.04249425, 0.055531196, 0.061629765, -0.013877653, -0.017016144, - 0.0039952253, -0.005953348, -0.012928052, 0.003914741, 0.020440906, - 0.0063350433, 7.820969e-4, -0.018486055, -0.055931628, -0.0073375856, - -0.0075920844, -0.090698175, 0.009022291, -0.024160696 + "paletteEmbedding" : [ + -0.041760772, + 0.010665845, + 0.0010263964, + -0.018480362, + 0.013157761, + -0.0224954, + 0.023508985, + -0.043786854, + 0.067838736, + -0.017751643, + 0.0024908625, + -0.03744193, + -0.003338681, + 0.015124202, + -0.00398545, + -0.031620424, + -0.020400353, + 0.03464518, + 0.012022944, + 0.022142371, + -0.011554777, + 0.024444418, + -0.020837234, + 0.001135544, + 0.02777657, + 0.015735155, + -0.057027563, + -0.010372942, + 0.06958472, + -0.010499957, + 0.06266958, + -0.037527107, + -0.03286263, + 0.018710805, + -2.241394E-4, + 0.037642702, + -6.3718914E-4, + -0.027862573, + 0.05471597, + 0.034613512, + -0.050990656, + -0.025041675, + 0.0049679335, + 0.0010266489, + 0.030243201, + -0.020497693, + -0.030057801, + 0.0078114234, + 0.011405058, + 0.05844046, + -0.03089772, + -0.06658216, + 0.014564049, + 0.021768304, + -0.0028531062, + -0.007035071, + 0.018460153, + 0.016900912, + 0.0027491476, + 0.028952923, + -0.11892554, + 0.006594788, + -0.03156877, + -0.012041196, + -0.011159594, + 0.0021960319, + 0.04213939, + 0.0037364485, + -0.018595455, + 0.0012042699, + 0.013978191, + 0.0071414546, + -0.01886423, + -0.023299418, + 0.021943854, + 0.017865546, + -0.01768651, + -0.025529776, + 0.00255332, + -0.0615471, + 0.04763541, + 0.06526588, + 0.06591589, + 3.2945827E-4, + -0.0024750459, + 0.042675655, + 0.016591417, + -0.009330086, + -0.020672813, + -8.345575E-4, + 0.0017840683, + 0.015385321, + 0.019172268, + 9.403086E-4, + 0.019877985, + 0.018204426, + 0.055186544, + 0.007556542, + 0.019880854, + 0.021931596, + 0.054872513, + 0.031666774, + -0.076778255, + -0.020435084, + 0.025630845, + -0.055002134, + 0.030179054, + -0.009072734, + -0.009285551, + -0.02613045, + -0.02314175, + -0.07245876, + -0.0022136667, + -0.012063886, + 0.019143995, + 0.02146155, + 0.006874939, + 0.021142304, + 0.013388062, + -0.0010431135, + -0.041315924, + -0.0050124563, + 0.006878465, + -0.024699844, + 0.033738863, + -0.0439044, + 0.052976497, + -0.0020302963, + 0.0066881287, + -0.014639133, + -0.026147848, + 0.010044739, + 0.008946474, + 0.04793433, + 0.007313061, + -0.016010676, + -0.0071463194, + -0.0032117625, + -0.013363766, + -0.04096881, + -0.014067746, + -0.036280073, + -0.02575169, + 0.0044380208, + 0.029154187, + -0.031116277, + -0.012775614, + 0.03028388, + 0.010774888, + -0.011656588, + -0.003314971, + 0.0051113334, + -0.010230761, + -0.017641166, + 0.011212084, + 0.05579422, + -0.009081759, + -0.023970159, + -0.054342665, + -0.017241217, + -0.06736335, + -0.0057690665, + -0.026369566, + -0.03812465, + 0.030526534, + 0.048941445, + 0.024045676, + 0.018366596, + 0.007884487, + 0.0043505286, + -0.026281746, + -0.05011867, + -0.0010949906, + -0.0018227613, + 0.06175207, + -0.013744002, + 0.009737712, + -0.04285912, + 0.04861884, + -0.0654132, + -0.013642189, + 0.047851365, + -0.03809779, + 0.066288374, + -0.02860365, + 0.017861776, + 0.027088435, + 0.065537445, + -8.6283515E-5, + 0.033292137, + -0.0064123385, + -0.02862743, + -0.014732438, + 0.04649177, + 0.03530901, + -0.033438828, + 0.027068717, + 0.049904425, + 0.016159395, + 0.011998826, + -0.04740758, + -0.03944723, + 0.035352595, + -0.025158305, + 0.034497067, + 0.028227128, + -0.039939627, + -0.0055677053, + 0.039529618, + 0.031558618, + -0.031177547, + -0.0039285007, + -0.029529532, + 0.028535124, + 0.0584161, + -0.04308717, + 0.0016688419, + 0.03481066, + 9.3678426E-4, + 0.034163248, + -0.017662352, + -0.038136046, + 0.041438542, + -0.039566807, + 0.018263562, + 0.0075630946, + -0.07186195, + -0.011788595, + 0.0060296115, + -0.040843274, + 0.0065997047, + -0.023015603, + 0.005915182, + -0.018012669, + -0.004990675, + -0.013103955, + 0.06506575, + 0.021649828, + -0.017413896, + 0.07129136, + 0.004801877, + 0.0016720381, + 0.043705173, + -0.001420315, + -3.387845E-5, + -0.020790113, + 0.023563324, + -0.005373913, + -0.018085532, + 0.011404932, + -0.009827855, + -0.024362737, + -0.0073890467, + -0.0028468736, + -0.0048712306, + -0.07653938, + -0.013693458, + 0.039085258, + 0.005434173, + 0.028270984, + -0.05776785, + -0.024486085, + 0.04383369, + -0.015109121, + 0.01503631, + 0.057030093, + -0.015373799, + 0.05024264, + -0.06936513, + -0.010315833, + -0.012975356, + 0.013358821, + 0.006319458, + 0.0032277931, + -0.007989977, + -0.020240787, + 0.047996584, + 6.589606E-4, + -0.03652549, + -0.031850204, + 0.0033691968, + 0.06259175, + 0.06322416, + 0.020860411, + 0.040185373, + -0.02478031, + -0.05737326, + -0.030485243, + -0.01201612, + 0.043789342, + -0.0047723604, + -0.0035918884, + 0.056533225, + 0.012048859, + -9.1099675E-4, + -0.015429543, + 0.076643385, + 0.06298148, + -0.01594393, + -0.0417928, + 0.035589807, + 0.01265622, + -0.023795431, + 0.009521377, + -0.041224398, + 0.002166547, + -0.0019788486, + -0.031080049, + -0.06722324, + 0.012907034, + 0.022492958, + 0.05024737, + -0.016395826, + 0.01720472, + -0.015593949, + 0.013688583, + -0.025610425, + 0.054086573, + 0.022875272, + -0.0040705334, + -0.03188878, + 0.04370252, + 0.026522728, + 0.034014378, + -0.058750495, + 0.0072800773, + 9.5792045E-4, + -0.022162737, + 0.017726991, + 0.022680141, + -0.0064341063, + -0.03199828, + -0.063239, + 0.041138534, + -0.034809478, + -0.043919142, + 0.017433584, + 0.03183697, + -0.010337964, + -0.016347004, + 0.0530283, + -0.008247186, + -0.006256912, + 0.027283713, + -0.045594636, + 0.004434841, + -0.054773714, + -0.09391693, + 0.030709703, + -0.008973936, + 0.012481272, + 0.0495817, + -0.022727821, + 0.016430162, + -0.009294912, + 0.0025839235, + -0.012191431, + -0.022088485, + 0.015953174, + -0.0047318866, + -0.005086608, + 0.01123738, + -0.03247713, + -0.026929447, + 0.039322644, + 0.048618414, + 0.020220313, + 0.043819766, + -0.025507588, + -0.016627178, + 9.019869E-5, + -0.017538419, + 0.0060355943, + 0.007888591, + -0.023874475, + 0.042773698, + -0.03204092, + 0.020588787, + 0.023956524, + 0.035577357, + 0.005328638, + 0.0067628087, + 0.018231917, + -0.0050057406, + -0.032202166, + 6.987887E-4, + -0.031334072, + -0.060962267, + 0.010169216, + -0.045287482, + -0.02717183, + -0.0049569686, + 0.031167665, + 0.023807852, + -0.037190426, + -0.02248613, + -0.007423681, + 0.035080258, + -0.029127076, + -0.027050966, + 0.034876388, + -0.0597421, + -0.003759581, + 0.01964125, + 0.004580954, + -0.029974703, + 0.0067603164, + -1.2574304E-4, + -0.014039837, + -0.03720456, + 0.030156089, + 4.421724E-4, + -0.0012978455, + -0.006089931, + 0.0168343, + -0.028110635, + 0.06559865, + -0.012612285, + 0.0036420287, + -0.018494682, + 0.02303224, + 0.0014982601, + -0.054114692, + 0.013526311, + -0.038454846, + -0.0048750504, + 0.0020163958, + -0.0013903367, + 0.04280771, + -0.013110303, + 0.0014763433, + -0.015838195, + -0.017826486, + 0.020745838, + 0.032764472, + -0.021029605, + 0.026868392, + -0.00448969, + -0.0015295343, + 0.057254408, + -0.008347262, + -0.023226846, + 0.019812848, + 0.015777618, + -0.021871176, + -0.0053499243, + 0.0051465943, + -0.0140230125, + 0.030961964, + 0.020988906, + 0.040653262, + -0.03633028, + -0.02441424, + -0.007074111, + -0.036021393, + -0.0057279607, + -0.008457008, + 0.007552379, + -0.038053825, + -0.0336332, + -0.054700635, + 0.0030138127, + -0.0032689557, + -0.0140531985, + 0.030126859, + 0.001063195, + 0.010759101, + -0.034725145, + -0.005385413, + -0.031120451, + -0.050499327, + -0.0019071408, + -0.01424915, + 0.014521471, + -0.028972872, + 0.03128963, + 0.010989961, + 0.0024993988, + 0.030488878, + 0.012605683, + 0.07604119, + 0.021895662, + 0.0126021365, + 0.031084543, + -0.040620923, + 0.01575457, + -0.005967854, + -0.023964116, + -0.023178915, + -0.0126695605, + 0.004331409, + 6.790827E-4, + 0.0029814215, + -0.025025884, + -0.017473575, + -0.054061122, + -0.009330318, + 0.016229307, + -0.0012493888, + 0.027110761, + -0.022737456, + 0.10841017, + 0.0046221437, + -0.030370789, + 0.0039887144, + 0.009357046, + -0.06680628, + 0.00802302, + 0.029730016, + -0.057422724, + -0.02570631, + -0.011825734, + -0.03585759, + 0.013928818, + -0.006926272, + 0.04489045, + -0.01604246, + 0.009410505, + -0.032000914, + 0.05616251, + 0.005741873, + 0.014014689, + 0.029562298, + -0.032125346, + -0.018605636, + 0.013124472, + -0.009910436, + -0.042030916, + 0.002622931, + -0.008908707, + -0.03945666, + -0.050643597, + 0.11248916, + -0.04765145, + 0.030379692, + 0.04235376, + -0.006936484, + -0.05251516, + 0.03682303, + -0.027662497, + 0.04617162, + 0.02475005, + 0.03658907, + -0.0028394966, + -0.0026807839, + 0.001707754, + -0.038466997, + -0.02038069, + -0.016882136, + -0.08655826, + 0.026324771, + -0.019957088, + -4.4232287E-4, + -0.0080141695, + -0.017846946, + 0.033150036, + -0.052584585, + 0.014695505, + -0.015026767, + -0.042886257, + -0.009754959, + 0.02692525, + 0.0037350117, + 0.009128631, + 0.004494801, + -0.015502603, + 0.033106092, + 0.06643437, + -0.007656981, + -0.035934675, + 0.0561242, + 0.035898536, + 0.016692434, + -0.02471955, + -0.009648769, + 0.021226272, + -0.0047053387, + 0.032286208, + 0.037759017, + -0.024235623, + 0.035539992, + -0.0039387336, + -0.030738626, + -0.023574276, + -0.01222168, + 0.025540357, + 0.048754334, + -0.039860837, + -0.06574657, + 0.0082481, + 0.0024991275, + -0.01134339, + -0.015318704, + -0.022536758, + 0.032575894, + 0.022393676, + 0.011050639, + 0.025452312, + 3.839384E-4, + 0.005509477, + -8.059763E-4, + -0.025454119, + -0.028857771, + -0.022891967, + 0.039244328, + -0.02279734, + -0.021926, + 0.030929612, + 0.01572231, + 0.04221105, + 0.0033657872, + 0.0048306296, + 0.008150049, + 0.04617956, + 0.036199283, + 0.023535088, + 0.012469079, + -0.024865637, + -0.049646765, + 0.02342989, + -0.03971064, + 0.039734017, + 0.016243763, + 0.008308523, + -0.012973106, + -0.028756084, + -0.053062245, + 0.0230941, + 0.0021517482, + -0.03201637, + -8.420514E-4, + -0.017520312, + -0.02592062, + -0.030815836, + -3.6243818E-4, + 0.028099038, + -0.018116541, + 0.039755158, + 0.01283046, + 0.028164482, + 0.014796414, + 0.019930026, + -0.06841365, + 0.051809836, + -0.043737683, + 0.030369226, + -0.036028117, + 0.003690676, + 0.033671416, + 0.0505607, + 0.052359384, + 0.012499904, + -0.05555995, + 0.029086359, + -0.0057118624, + 0.0029134646, + -0.014696298, + 0.004607945, + 0.028117565, + 0.015552192, + 0.015983794, + -0.018606883, + 0.02104679, + 0.007642722, + -0.03173381, + 0.041860238, + 0.022909904, + 0.03347674, + -0.03428636, + 0.004371158, + -0.042855732, + 0.038829535, + 0.01550601, + -0.046096046, + -0.030180084, + -0.03842851, + 0.036833063, + -9.74185E-4, + -0.028719326, + 0.028146124, + 0.02826684, + 0.038805287, + 0.009308649, + -0.06301414, + -0.003215389, + -0.024139583, + -0.04822311, + -0.01559573, + -0.005048065, + 0.008133588, + 0.072758146, + 0.038837805, + -0.019355, + -0.030493636, + 0.027921962, + -0.004731124, + 0.02956806, + -0.0077472655, + 0.010603115, + 0.002363262, + -0.0039945724, + -0.06273634, + 0.023511289, + -0.047716565, + 0.00982939, + 0.07002251, + 0.006008755, + 0.08851893, + 0.034209955, + -0.0102051385, + 0.008317956, + 0.0451464, + 0.00255617, + 0.018948784, + -0.028249333, + -0.03328813, + -0.08051266, + 0.0033668631, + 0.04589635, + 0.025308216, + -0.07670936, + -0.0030774404, + -0.017007489, + 0.0018570385, + 8.8705716E-4, + 0.033385947, + 0.038985275, + -0.018652974, + 2.1078456E-4, + -0.024371196, + -0.0082098115, + -0.028788153, + -0.039888978, + -8.249829E-4, + -0.014584346, + 0.0061323815, + -0.0064162537, + 0.0031658788, + 0.038522843, + -0.017865028, + -0.019107668, + -0.008237521, + -0.02911589, + -0.04237963, + 0.030035269, + -0.00225635, + -0.03396951, + 0.016922785, + -0.010703324, + -0.027271278, + 0.0077870293, + 0.0031026974, + 0.039072778, + 0.022698019, + 0.02618092, + -0.020878082, + -0.013005601, + -0.03553519, + -0.014323332, + -0.0027168202, + -0.051538605, + -0.027043276, + -0.0043607876, + 0.015537152, + 0.013201218, + -0.046372432, + 0.039563328, + 0.017296711, + -0.024310963, + -0.03677997, + -0.034388285, + -0.041942123, + -0.039626393, + -0.011703085, + 0.0012245396, + -0.027027307, + -0.036935955, + 0.017906822, + -0.056789458, + -0.040644154, + -0.057705224, + -0.017778931, + -0.043412067, + 0.020680636, + -0.022931335, + 0.081145145, + -0.020541616, + -0.024207687, + -0.026545737, + -0.020138463, + 0.028276866, + -0.027485337, + -0.029740926, + -0.0061483295, + 0.01514381, + -0.008674949, + 0.034968346, + -0.018506683, + -0.029374443, + 0.012898224, + 0.016464576, + 0.021173466, + -0.02951647, + -0.010693889, + 3.4370777E-4, + -0.00421711, + 0.020906823, + -0.04406716, + -0.023597352, + -0.022837503, + 0.038478453, + 0.04166727, + 0.0056336103, + -0.007455135, + 0.011375663, + -0.033351324, + -0.018810125, + -0.046806417, + 0.032100342, + 0.01919497, + -0.012156716, + -0.030433374, + -0.0029971637, + 0.035153355, + 0.011162534, + 0.056296527, + -0.02766377, + 0.014166658, + -0.04420633, + -0.010008097, + 0.016161181, + -0.02871687, + -0.03655489, + 0.0022974277, + -0.048479237, + -0.025400192, + -0.034357406, + -0.031212902, + -0.0024299142, + 0.035665512, + -0.024172397, + -0.019007795, + 0.004455806, + 0.034485918, + 0.014551047, + 0.0052178996, + -0.01651141, + -0.011979858, + 0.022488274, + 0.004168889, + 0.0508694, + -0.038885705, + -0.002362854, + -0.0032589876, + 0.09356912, + 0.02746989, + -0.07841321, + -0.004295521, + 0.049546536, + -0.05353343, + 0.039235797, + -0.003825513, + -0.023412589, + 0.04917827, + 0.026242683, + 0.024708742, + -0.036815442, + 0.06420827, + -0.03919743, + 0.002624413, + -0.0045087165, + -0.018087609, + -0.039053172, + -0.048063565, + -0.00829893, + -0.011198076, + -0.01524927, + 0.009256351, + -0.012771991, + -0.007980921, + 0.019879337, + 0.035777178, + -0.00591655, + -0.03315913, + 0.027217245, + -0.034878984, + 0.01058836, + -0.0037713759, + -0.015021545, + -0.038969312, + -0.023151845, + -0.033137996, + 0.038696364, + 0.026377006, + 0.019008791, + 0.017936343, + 0.0015251756, + 0.06782952, + 0.027943414, + 0.031223102, + -0.057545383, + 0.0062795817, + 0.038606837, + 0.010538442, + -0.067431696, + -0.050520357, + 0.014979298, + 0.013967618, + -0.023195798, + -0.037315775, + -0.019709302, + -0.040104724, + -0.012997225, + -0.033001594, + 0.04335152, + -0.038121548, + 0.026993737, + -0.029583504, + 0.05748467, + -0.0029711167, + -0.07675303, + 0.0072370265, + -0.019696685, + -0.02036945, + -0.018058324, + 0.015207455, + -0.021418694, + 0.024275394, + -0.025795437, + -0.0010883422, + -0.034143884, + -0.009285424, + -0.06962762, + 0.087831184, + 0.021159848, + -0.003279546, + -0.029654725, + 0.027813384, + -0.008262616, + 0.0018997163, + 0.014009539, + -0.0011983078, + 0.0016143959, + 0.031242933, + 0.029904202, + -0.03363788, + -0.0021658477, + -0.022313772, + 0.0043458524, + 0.05404708, + -0.04411667, + -0.014187838, + -0.060529616, + -0.032961324, + 0.005182538, + -0.022324681, + 0.0070554377, + -0.050011747, + 0.018013278, + 0.08930009, + -0.033865694, + 0.03917766, + -0.05907167, + 0.009027424, + 0.04533338, + 0.023918908, + 0.002024941, + 0.0016218675, + 0.021328611, + 0.033110842, + 0.037174635, + 0.02468737, + -0.0115364995, + -0.012984539, + -0.034785308, + 0.018308353, + 0.02735945, + -0.04922685, + 0.005020018, + 0.0036698328, + 0.060610384, + -0.010020445, + 0.08356911, + 0.0108432295, + 0.055578418, + 0.013417474, + 0.0018791634, + 0.021968525, + 0.01452926, + 0.011575537, + -0.042744264, + -0.060282283, + 0.0067551634, + -0.03028668, + -0.0424828, + 0.006746705, + -0.020738145, + 0.04522128, + -0.03547531, + 0.04428517 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.5.json b/common/search/src/test/resources/test_documents/images.different-licenses.5.json index 4cd065028..4ead5658e 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.5.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.5.json @@ -1,1344 +1,5252 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.548030Z", - "id": "seb7gtx5", - "document": { - "modifiedTime": "1981-04-04T03:36:40Z", - "display": { - "id": "seb7gtx5", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.309393Z", + "id" : "u9wiz5n2", + "document" : { + "modifiedTime" : "2008-12-14T05:36:25Z", + "display" : { + "id" : "u9wiz5n2", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/hdn.jpg/info.json", - "credit": "Credit line: a2p2zCU9Wi", - "linkText": "Link text: n2oxREaH", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", + "credit" : "Credit line: 5lwIC612t", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/hdn.jpg/info.json", - "credit": "Credit line: a2p2zCU9Wi", - "linkText": "Link text: n2oxREaH", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", + "credit" : "Credit line: 5lwIC612t", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#881AEC", - "source": { - "id": "zzimyjve", - "title": "title-nnNlKfCfkO", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#18E8D9", + "source" : { + "id" : "yfajql1v", + "title" : "title-4cjq66N1qo", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "seb7gtx5", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "zzimyjve", - "sourceIdentifier.value": "cFCZdUVkqz", - "identifiers.value": ["cFCZdUVkqz", "6VgzBtShYN", "tUf2946dgU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-nnNlKfCfkO" + "query" : { + "id" : "u9wiz5n2", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "yfajql1v", + "sourceIdentifier.value" : "DL10ex6AGz", + "identifiers.value" : [ + "DL10ex6AGz", + "xdXZyyHpak", + "qtcggmBJGC" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-4cjq66N1qo" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["pdm"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.025655909, -0.02368926, 0.032345045, 0.0070838095, 0.022678869, - -0.007557642, 0.009377133, -0.021162948, 0.006417331, 0.033276033, - -0.010117104, -0.0014789893, 0.014062308, 0.0068075387, -0.011521059, - -0.0038254973, 0.006319255, 0.010047021, 0.0052797464, 0.004110735, - -0.0018589705, 0.0136861885, -0.011710108, 0.0020321005, 0.0070190825, - 0.011576626, 0.010056881, 0.03843683, -0.015456659, 0.019514786, - -0.026077883, -0.002431011, 0.0015037365, 0.030529901, -0.001886145, - 0.0067776917, 0.027017888, -0.019174412, 0.022403007, -0.010086507, - 0.0102867065, 0.004041338, -0.020781161, 0.010035237, -0.0071768514, - -0.00428622, -0.015425619, -0.0010351936, 0.022175526, -0.006161577, - -0.0166541, -6.346861e-4, -0.017677309, 0.0148102855, -0.008475489, - 0.016522385, -0.004067652, -0.020879297, -0.002081207, -0.0045444686, - 0.0030281756, 0.021116016, 7.9636445e-4, -0.015529627, 0.027657462, - 0.013309342, 0.0038266561, 0.027903017, 0.015891759, 0.016512267, - 0.0019724176, -0.016392242, -0.009835422, -6.713895e-5, -0.010447769, - -0.002384673, 0.016032215, -0.010906102, -0.025932554, 0.0015256781, - 0.007320719, 0.011407053, -0.005186734, -0.009415267, -4.1161024e-4, - 0.01225278, -0.014418687, 0.027286561, -0.021763733, 0.0172288, - 0.026684701, -0.004977252, -0.00125335, -0.018920453, 0.0067738676, - -0.008105732, -0.0039845197, 0.012650307, -0.007165516, 0.0019393438, - -0.02363436, -0.013687487, 0.012285288, 0.004622167, 0.029187879, - 0.015495621, -0.011049155, -4.5417855e-4, -0.006037337, -0.024811683, - 0.02012006, -0.0275354, -0.027096614, -0.0050824196, 0.024527421, - 0.008023066, 0.015184607, 0.055065144, 0.002501446, 0.0070465, - -0.017791327, -0.019111421, -0.02837371, 1.4034384e-4, -0.0063212076, - -6.253713e-4, -0.006057643, -0.003930592, 0.008464227, -0.016682498, - -0.008928494, 0.026111765, -0.0034499667, -0.007665161, 0.0049249097, - 0.002627862, 0.024001408, 0.0038268652, -0.027540121, 0.018076198, - 0.004693845, 0.0035244024, -0.01274746, 0.008646775, 0.0013645694, - 0.022746047, -0.004935805, -0.020750636, -0.0040034642, 0.011081059, - 0.0148380995, -0.0062092496, 0.027886607, -0.02092004, 0.025718058, - 0.052699376, 0.011608786, -0.009239635, 0.01033178, -0.007138017, - -0.023459025, -0.012920254, 0.009795232, 0.015348727, -0.006029079, - -0.015010372, 0.0071685985, -0.015630024, 0.012484076, 0.0033757882, - -0.032716937, -0.014370583, -0.001554875, -0.008956036, 0.009815053, - 0.008871459, -0.012730311, -3.5614293e-4, -0.021475106, -0.008821252, - -0.0021107113, -0.01820375, 0.012776568, -0.0035215684, -0.004492083, - -0.007335018, 0.012905916, 0.0065622833, -0.0012978567, -7.292687e-5, - -0.010109423, 0.021833437, 0.014998536, 0.005703405, 0.008688525, - 0.0034241288, -0.006062788, 0.0070233555, 0.0042612683, -0.0073490995, - 0.018165084, -0.0051385984, -0.0020405902, 0.010440759, -0.0033105796, - -0.015123239, 2.8694756e-4, 0.0022411312, -0.010865512, 8.631281e-4, - -0.0067703314, 0.0029440904, -0.013167564, 0.0149646, 0.012090185, - 0.020610275, 0.009299953, -0.014716811, -0.004464706, 0.004797611, - -0.0046404726, 0.002621397, -0.018930256, 0.032477938, -0.038281664, - -0.0011112391, -0.018237917, -0.005167364, 2.6024223e-4, 0.012581351, - 0.014846254, 0.012514409, 0.009140671, 0.0044172765, -0.01838475, - -0.01432796, 0.013661014, -0.0015453751, 0.01750331, -0.02520292, - 0.0038487685, 0.025050145, 0.0036736792, -0.022599207, 0.0045479774, - 0.008901462, 0.019782832, -0.0018902664, -0.011880052, 0.0034347756, - -4.5423687e-4, 0.012337458, -0.018641138, 0.018160226, 0.019925082, - -0.00489844, -0.014182319, -0.0026444464, -4.633885e-4, -0.036336634, - -0.0070971395, 0.024446173, 0.021280207, 0.016312068, 0.01165185, - 0.002309343, -0.011066829, 0.010531022, -0.0060798572, 0.0011282763, - 0.004851977, -0.009595851, -5.688448e-4, 0.02154266, -2.766021e-4, - -0.013468051, -0.0064492607, 0.002540764, -0.01624671, -0.0112124, - 0.0050179083, -0.025545046, -0.010552208, -2.4000745e-5, -0.031049822, - 0.0025617387, 0.014492537, 0.005434893, -0.020041943, 0.007758634, - -0.0073006945, -0.025670389, 7.515249e-8, 0.008411164, -0.027443929, - -0.031539794, 0.0044713346, -0.007330679, 0.0051204725, 0.0012323331, - 0.0098787695, -0.0054657077, -0.009860268, 0.024031138, -0.025161467, - 0.024901045, 0.009948064, 0.0051168003, -0.0035647964, 0.008912456, - 0.005496825, 0.031388883, 0.015790729, -0.0034170167, -0.03146168, - 0.008751858, -0.020173503, 0.00980658, -0.012074705, -0.006744303, - -0.005715348, 0.017329095, 0.014814597, 0.001741024, -0.020725764, - 0.003992058, 0.0067259693, 0.008718852, -0.019350931, -0.009113292, - 0.024830159, -0.017461853, -3.294703e-4, -0.0074798735, 0.006544284, - 0.033509206, 0.0028559952, 0.0022952603, 0.007735425, -0.008561308, - -0.009497103, -0.009408661, -0.006657509, 0.015058502, 0.008055335, - -0.010946798, 0.028640362, -0.024639098, 0.0015952802, 3.3858253e-4, - -0.025631165, -0.019272767, -0.0065502296, 0.0012138484, 0.015732454, - -0.021309266, 0.020131648, 0.019026406, 0.019395534, 0.018635545, - -0.010067997, -0.0038478153, -0.018983688, 0.029566798, 0.030525576, - 0.009529491, -0.006411286, -0.009750168, 0.002810326, -0.0128054675, - -0.0018956887, -0.004220412, 0.016329065, -0.011380234, -0.011496752, - 0.03711822, -0.007744901, 0.006800662, -0.0027858024, -0.0039724982, - 0.0050432696, -0.008187609, 4.8907724e-4, -0.013640528, -0.005172884, - 0.020143297, -0.0033740331, 0.010286784, -0.018497467, 0.0020924162, - 0.04589529, -0.012492709, -0.005392327, -0.027270269, -0.02499088, - -0.0059981174, -0.003282104, -0.0041257516, -0.0035790636, - -0.0145573085, -0.017684642, 0.023286985, 0.032078013, -0.015012453, - -0.0043343944, -0.0018975568, -0.015440919, 6.332422e-4, -0.011029011, - 0.008635601, -0.013393486, 0.0040253503, 0.0028623457, 0.021236341, - -0.011536673, 0.010349733, -0.015409082, -0.0074945604, 0.009287733, - -0.04823366, -0.00973626, 0.022284888, -0.011551784, 0.0054112617, - -0.021514518, 0.00949665, -0.014770816, 0.008308882, -0.0059508174, - -0.021570493, 0.0060154423, 0.024820082, 0.0063263485, -0.03679997, - 0.013794359, 0.019867176, 0.006231418, 0.025285732, -0.01725944, - 0.0122571075, 0.011832098, -0.00393863, 0.015735583, -0.0011547748, - 0.028615624, -0.029814743, -0.0302922, 0.0022383556, -0.025185257, - 0.019329559, -0.0033597047, 0.00439693, -0.0053490824, -0.013434739, - -0.016850725, 0.0066404105, 0.0070245005, -0.007684344, -0.0069342614, - -0.006392814, 9.2415273e-4, -0.013671913, -0.0040194443, -0.018474821, - 0.0016902657, -0.011993907, -0.03211811, -0.018700575, -0.006148359, - 0.015786218, 0.0075842636, -1.3242828e-4, 0.0115617355, -0.01840022, - -0.01879156, -0.015359943, -0.016758984, 0.011052453, 0.0131935505, - -0.012218846, 0.027090315, -0.0082008215, -0.028811913, -0.02687577, - -0.0112838745, 0.0042135664, -0.026164265, -0.002310364, -0.0011120494, - -0.0053663785, 0.017677274, -0.007038099, -0.032965392, -0.0064491965, - -0.01695716, 0.03630451, 0.011126029, -0.007705631, -0.010232832, - 0.043878753, -0.011419587, -0.020379106, -0.01710937, -0.010924452, - -0.01656231, 0.034039512, -0.025239795, 0.016924815, 0.004664063, - 3.407016e-4, 0.012004166, -0.006097887, -0.0017594601, -0.026759814, - -0.006305532, 0.023562215, -0.0011766666, -0.022070434, -0.005964971, - 0.006731992, -0.016964339, -0.0020051876, -0.01138562, -0.02204876, - -0.016668983, -0.033163313, 0.016934114, 0.005986682, 0.014452918, - -0.023420071, 0.005441485, 0.023652066, 0.0053225807, 0.030903596, - 0.003568408, -0.019927504, -0.01158409, -0.019227413, -0.0011416211, - -0.0411342, 0.035698667, -0.005039862, -0.026836304, 0.008048725, - -0.004105532, 0.024534652, -0.011668821, 0.00274149, -0.014019363, - 0.0074202227, -0.008135855, -0.015424121, -0.03439057, -0.007866927, - -0.0035364467, 0.0055400464, 0.010707995, -0.017295288, -0.0193138, - -0.019712407, -0.01469813, -0.0016904218, 8.487098e-4, -0.025968928, - 0.02042211, 0.0038597442, 0.011361033, -0.02199164, 0.020665525, - -0.018917633, 0.015342593, -0.016151195, 0.0108858105, -0.034472726, - 9.018946e-4, -0.0068202475, -0.0074087163, -0.0018291717, 0.014442837, - -0.018853744, 9.665783e-5, -0.0023313297, 0.040460955, -0.034978744, - 0.004483154, 0.014515467, 0.025769236, 0.012702437, -0.0010483928, - 0.0036668053, -0.014419765, -0.014437543, -0.02494902, 0.00924348, - 0.007180704, 0.032531876, -0.0297624, 0.0031891903, 0.0017543632, - -0.0014366814, -0.002529659, -0.011923861, -0.0017641344, -0.017207047, - 0.0054192846, 0.010893498, -0.035786185, -0.02224659, 0.016588664, - 0.005160654, -0.011219918, 0.008203244, 0.0012071744, -0.0013529517, - 0.005611341, -0.011045764, 0.0063441307, -0.019636799, 0.0063130036, - -0.0013610761, -0.0154777905, -0.0064802775, -0.011079774, -0.015503332, - -0.001991266, -0.010233976, 0.020029023, -0.007858077, -0.013004708, - -0.0078710625, 0.0017079538, 0.017664002, 0.009035562, -0.004998539, - 0.04106176, -0.008057981, 0.023718476, -0.017954791, -0.02291643, - -0.03398193, 0.0013470809, 0.0060479743, -0.0056176214, -0.01909117, - 0.013274214, -9.648186e-4, 0.007433136, -0.00943094, -2.9677217e-4, - 0.014460101, 0.007973953, -0.0050116964, -0.0033880083, 0.02129104, - 0.009201398, -0.0073370333, -0.0064735143, -0.0051301033, 0.01689306, - -0.008984289, -0.014944966, -0.007042174, 0.011324761, -0.0109243635, - 0.00839433, -0.013963335, 0.0019400725, 2.988194e-4, 0.020468328, - -0.014976879, -0.011701511, -0.011661328, 0.017959764, -0.031707607, - 0.014841897, -0.015921095, 0.025243405, -0.011111118, 0.016802303, - -0.007780974, 0.017193694, 0.01457092, 0.010209766, -0.016336124, - 0.006393032, -0.0035727748, 0.013522456, 4.89283e-4, 0.0065700975, - -0.03175651, -0.025718886, -0.009767438, -0.018974444, 0.0066020205, - -4.4871785e-4, 0.010684935, -3.962489e-4, -0.024738647, -0.008717732, - 0.008483676, 0.019310478, 0.027365645, 2.6385856e-4, 0.0028392114, - -0.008913659, 0.020932633, 0.014141397, -0.03679413, 0.0023881942, - -0.004901935, -0.008704945, 0.0024791916, 0.016287394, 0.01490105, - -0.0021825165, -0.015301601, -0.0262324, -0.008744594, 0.0032276749, - 0.03347959, 0.005225101, 7.7208603e-4, -2.502043e-4, -0.0021111993, - 0.013302293, 0.020888867, 0.019982979, -0.0070406157, -0.017294955, - -0.008135057, -0.0052452735, 0.010821706, -0.01579113, -0.015309445, - 0.02083517, 0.00274727, -0.045887087, -6.039623e-4, 0.0013754322, - -0.0021345348, 0.0053901724, -0.0058848416, 0.009461668, 0.006936098, - -7.689595e-5, 0.02698961, -0.008803768, 0.0016219425, 0.002006686, - -0.0012944614, -0.019497363, -0.018045377, -0.025955446, -0.03167015, - 0.0111023765, -0.012140117, 0.012522656, 2.6544728e-4, -0.031210532, - 0.012494912, -0.022800796, 0.009270738, -0.011090377, 0.020821478, - -0.002375012, 0.019119253, -1.8037595e-4, 0.010880864, 0.029103987, - 0.0025585154, 0.006094889, -0.017817171, -0.029692464, 0.008923416, - -0.0071960413, -0.0023465743, -0.0015530924, 0.0015455137, 0.0021718482, - -0.012560532, -0.015896205, -0.0019938056, -0.00906228, 0.009934282, - -0.020333098, 0.00999037, -0.011985998, -0.010442348, -0.016144546, - 0.005512889, -0.031385094, 0.012610714, -0.0041451147, -0.021492, - 0.0055641313, 0.012214122, -0.028902143, 0.03235274, 6.110413e-4, - -0.0148559045, -0.009487133, -0.008175607, -0.008843481, -0.008968561, - 0.021589868, -0.03189579, -0.0030346154, 0.02112765, 0.003729237, - 9.207053e-4, 0.011861768, 0.0061418545, -0.023926731, 0.0075482735, - 0.007437964, -0.019094741, 0.026601166, -0.016985081, 0.011465509, - 0.019158741, -0.007486331, -0.0029473614, -0.030325785, 0.010805484, - -0.0020005777, -0.0054479954, -0.0021621455, 0.01643895, -0.002187026, - 0.022210795, -0.015510005, -0.017198538, 0.017455732, -0.015239882, - -0.0048814407, 0.007456218, -0.031210372, -0.0025073306, -0.006873251, - -0.019411858, 0.013926369, -0.002695618, -0.0022196772, -0.03309477, - 0.013232543, -0.008289735, 0.01212535, 0.031971212, 0.013485067, - 0.0022709393, -0.0074747265, 0.0063376254, 0.029313503, 0.0222627, - -0.001083982, 0.01363529, -0.005451961, 0.031517386, 0.020830795, - -0.006659142, 0.019679852, 0.02674386, -0.00401434, -0.009005155, - -0.005123405, 3.381561e-4, -0.0016242851, 0.01222031, 0.014004588, - 0.0024978113, -0.005527284, -0.010212108, 0.019649923, 0.017008176, - 0.004393859, -0.022894299, 0.007151823, -0.026064193, 0.030175377, - 0.03803955, -0.0019333959, -0.011481994, 1.0408866e-4, 0.018286841, - -0.017033283, 0.015711814, 0.009918157, -0.008134863, 0.023573546, - 0.004628819, -0.033986736, 0.020358352, 0.026122054, 0.0045559783, - 0.007709426, 0.0014979026, -4.3283953e-4, -0.0051849023, 0.026320871, - 0.018974807, 0.026105667, 0.0059597953, 0.007377494, -0.012584074, - 0.015876666, -0.007575658, 0.0077941464, 0.015903484, -0.012040876, - -0.012038819, -0.03532061, -0.0032428696, -0.015866948, 0.012653523, - 0.022019174, 0.002192866, -0.008420908, -0.01244354, 0.02428262, - -0.01950953, 0.009098634, -0.018888922, 0.03222772, 0.0051766397, - 0.012773466, 0.005774541, -0.01794204, 3.8616612e-4, -0.025037427, - -0.019837204, 0.01177847, -0.0072991564, 0.007809909, -0.0033206397, - 0.012405029, -0.012427545, -0.0011460959, -0.007690756, -0.015692463, - 0.0074341246, 0.0019397743, 0.020128205, 0.037554197, -0.013289631, - -0.00958045, 0.0028628712, 0.008632936, 0.0044915234, 0.0013112981, - -0.022469107, -0.004594871, -0.022058079, 0.018449934, 0.0015633416, - 0.018799633, -0.012869264, 8.315452e-4, -0.011373286, -0.0035720451, - -0.023219524, -0.018050628, -0.017929316, -0.012649601, 0.025392326, - 0.014385415, 0.020609258, 0.01743979, -0.0032302598, -0.005601482, - 0.0042673144, -0.0063044047, -6.9097825e-4, -0.0025597587, - -0.0020440058, -7.032818e-5, 0.0089323, -0.010326594, 0.026862526, - -0.001394932, 0.0014261587, -0.012869054, -0.016128387, -0.0037504523, - -0.0072012525, 0.019292856, 0.026404032, -0.009329926, -0.00881974, - -0.01949853, -0.01320188, -0.018508866, 0.0010122834, -0.027676182, - -0.001259701, 0.01245171, -0.0048654643, -0.026669366, -0.0032415115, - 0.01665011, -0.01689838, 0.00441799, 0.011596745, -0.005227337, - 0.017614972, 0.009033745, 0.00477381, -0.0022396033, -0.018169336, - -0.015760543, 0.0014444411, 0.014831136, 0.014509298, 0.016295133, - -0.013499076, -0.016241578, 0.0074781897, 0.013124822, 0.02046331, - -0.015721215, 0.0014905961, -0.0025837226, -0.027554547, 0.0062650684, - -0.0013242975, -0.03525307, 0.01286306, 0.005587338, -0.016230276, - -0.012232519, -0.010515013, -0.003119192, -0.002364585, -0.014044665, - -8.4007974e-4, 0.009136741, -0.014021345, 0.012591417, -0.003976232, - -0.026773816, -0.010813598, -0.023256466, -0.0062646796, -0.02897952, - 0.0027749653, -0.02553083, 0.0059298887, -0.0032136363, -0.005496439, - 0.029572153, -0.0071288776, -0.022040747, 0.008992663, -0.01573219, - 0.027532216, 0.01518428, 0.00698382, -0.017107971, -0.025041424, - -0.0067928396, -0.0015606931, -0.012247426, -0.0021792438, 0.006458528, - 5.703493e-4, -0.012319564, 0.0050155795, -0.020040123, 0.006765844, - 0.002907638, -0.0012677193, -0.010108559, 0.017041849, 0.028454708, - -0.009506998, -0.018769052, -0.023803174, -0.012032015, -0.012072524, - 0.01787202, -4.471432e-4, 0.015609792, 0.0072993897, 0.017949222, - -0.0038850137, -0.014656415, 0.009257427, -0.020033833, 0.00602461, - -0.0012757338, -0.0026037672, 0.008026505, 0.01658184, 0.0019814884, - -0.0012831157, 0.01737921, 0.01995542, 0.01832728, 0.008543891, - -0.0022480336, -0.007271782, -5.684302e-4, 0.02023372, -0.0024099115, - -0.0059264908, -6.5710733e-4, -0.0035366672, -0.010196179, 0.030150957, - -0.011443038, 0.011277838, 0.0109231975, 0.0029002237, 0.0059266626, - 0.017474595, 0.024543246, -0.012629224, -0.006433648, -0.013543572, - -0.018152764, 0.0015935127, -0.031079033, -8.0576056e-4, -0.02097252, - 0.008868607, -0.0040308284, 0.0045493306, -0.018509999, 0.005412274, - 0.020859804, 0.031104453, 0.012942857, -0.0015141676, -0.005260933, - -0.0031173097, 0.0011657696, 0.0060034767, 0.016995743, 0.0033252507, - 0.030529981, -0.027804503, 0.006352277, -0.019436866, 0.002399981, - -0.008654867, -0.007375321, 0.01629817, 0.0063702376, -8.7091845e-4, - 0.007759246, 0.00501712, 0.0020135676, 0.027130682, -0.0552306, - -0.0027915034, 0.003631325, 0.016882781, 0.0035830142, 0.025419274, - -0.010686696, -0.007839249, -0.01655151, -0.009105609, -0.012574599, - 0.024642996, 9.3898e-4, 0.01023496, 0.0127122775, -0.03331303, - 8.862876e-5, 0.03362959, -0.012663325, 0.0141433, 0.0106475055, - -0.011951335, 0.00478524, -0.008143372, -0.014551652, 0.0020871346, - -0.011680536, 0.013032069, 0.023316706, -0.029954974, 0.004113069, - -0.0015816453, -0.017655222, -0.04359323, -0.010869774, -0.004857171, - 0.009366453, 7.346079e-4, 0.0015232213, -0.0093784565, -0.033406284, - -0.020541243, 0.0066099316, 0.003871171, -0.02043969, -0.010909876, - -0.0047060107, 0.012493969, -0.006902445, -0.0058825044, 0.017056257, - -0.0062441663, -0.008306619, -0.008445426, 0.007306574, -0.011649804, - 0.027472636, -0.018552095, 0.012122969, 0.016416494, -5.4410566e-4, - -0.017271282, 6.7787356e-4, 0.025582047, 0.026793243, 0.0024904595, - -0.0017361079, 0.008319622, -0.008564357, -0.0077968254, -0.008858654, - -0.010281031, 0.010793135, 0.0057150214, -0.028737042, -0.014413375, - -0.01096259, 0.002315303, 4.8463958e-4, 0.016822223, 0.0040046694, - 0.007044517, 0.019040111, -0.0074857804, -9.917521e-4, -0.015451292, - 0.021773092, -0.007779496, 0.0043521244, -0.010423274, -0.014934394, - -0.008777173, -0.019391682, -0.027616382, -0.0073501943, 0.01639098, - 0.013083102, 0.0015969888, -0.008343098, 0.004911739, -0.0056885486, - 0.009977378, -0.027973432, 0.0045144805, 0.027486576, 0.009937706, - -0.036695797, 0.0026057267, -0.018148975, 0.0029680883, 0.018283902, - -0.011137058, -0.004794269, 0.009554337, 0.02045826, -0.016941248, - -0.00530753, 0.029037565, 0.010516, 0.010852314, 0.0037333067, - -0.0023644862, -0.00792277, 6.3815346e-4, 0.041514657, -0.001252422, - -0.007770627, -0.029940676, -0.0071756686, -0.005037928, 0.025971059, - -0.010516926, -0.036988333, -0.005780503, 6.0771476e-4, -0.0025994598, - -0.012364944, 0.006919275, 0.0030149787, 0.011541214, -0.013135756, - -0.011581694, 4.0015078e-4, -0.0030372725, -0.0066880602, -0.012473349, - -0.019051444, -0.02430087, 0.016975474, -0.0077567957, 0.019692948, - -0.0027453895, -0.0042858254, -0.00751933, -0.008473544, 0.008717728, - -0.017770588, 0.0013518201, 0.020291328, 0.0084537305, -0.0010557901, - -0.010150336, 0.0040550586, -0.0097127715, 0.005010749, 0.004079656, - 0.005336007, -0.004124268, -0.016559027, 0.008399641, 0.008834743, - -0.012802334, 0.0154807875, -0.010033567, -0.009906453, -0.007252524, - 0.008205077, 0.017588442, -0.026136434, -0.032800525, 0.0053129727, - -0.010564425, 0.018765932, -0.035746578, -0.01732086, 0.010542336, - -0.016329654, 0.010052675, 0.020477116, 1.9321193e-4, 0.008654147, - 0.021421298, 0.007723835, -0.023554044, -0.035483878, -0.01885939, - -0.020892583, -0.03324099, -0.0049019847, 0.012015618, 0.02862747, - -0.010425509, 0.0039024067, 0.021944826, -0.0077812173, 0.013353878, - 0.002716723, -0.017810717, -8.6958875e-4, -0.021353237, -0.040286433, - -0.014881174, 0.0053001395, 0.013164334, 0.021110594, -0.0042683273, - -0.01944495, 0.007835218, 0.006403913, -0.026658885, -0.014070767, - 0.018559907, -0.016832931, 0.0011994542, -0.009248209, -0.021036584, - -0.0024053631, -0.018412657, -0.010424525, 0.030367322, 0.018481681, - -0.014465506, 3.2516042e-4, -0.0030947775, 2.1524841e-4, -0.011656411, - -0.016385648, -0.006838911, 0.006313214, 0.0036182809, 0.009800843, - 0.0058237524, -0.010163313, 0.0075303777, -0.0042774132, -0.026014643, - -0.0046673883, -0.007552351, -0.00952948, 0.026098022, 0.006762366, - -0.037672535, 0.012078782, -0.012049168, -0.003086843, 0.0055287206, - -0.020121852, 0.0070117787, 0.015813706, 0.0031548457, -0.0016916858, - -0.0021666489, 0.013773459, 0.024148488, 0.0018994886, 0.004167173, - 0.012500393, 0.0021936016, -0.011621638, -0.0027888203, -0.008983119, - 0.0021674186, 0.01017326, 0.009028808, 0.012108631, 0.012567243, - 0.0046120365, -0.009473614, -0.005823003, -0.032181654, 0.010539025, - 0.013176146, -0.012806902, 0.007724195, -0.010893596, 0.0072175977, - 0.018526843, 0.018057179, -0.020262634, -0.038805585, 0.012820623, - -0.018061668, 0.023328325, -0.019790163, -0.0037796434, 0.014585962, - 0.015248761, 0.013621986, -4.6277378e-4, 0.0018267573, 0.013869729, - 0.0018389217, 0.011521304, 0.013222204, -0.018961893, 0.02099833, - 0.009995238, 0.012510309, 0.022695208, -0.005743536, -0.03683123, - -0.009195012, 0.023987403, 0.014141923, -0.012511413, -7.6751027e-4, - -0.009183434, 0.014006539, -0.020738626, -0.022658374, 0.017993337, - -0.0050348607, 0.01898376, -0.009508841, 0.0021803342, -0.0046409196, - 0.0069861477, -0.024467153, 0.0041725426, 0.008180515, 6.1102206e-4, - 0.009017264, 0.009662937, -0.003142809, 0.008601415, 0.010018953, - -0.009659499, -0.009347625, -0.010127176, 0.0014431438, 0.0028363594, - 0.018964745, 0.01337147, -0.0043929485, -0.03046243, 0.0057327007, - -0.0028393373, 0.013406894, -0.035966076, -0.00271875, -0.012641033, - 0.016035466, 6.1781047e-4, 0.01721767, 0.027999856, 0.02811943, - 5.871801e-4, -9.961596e-4, -0.0039425776, 0.008886483, -0.0118602775, - -0.02457095, 0.0016326118, -0.018219974, -0.011932595, 0.018558793, - 0.0031621049, 0.0055638677, 0.02295731, 3.2262926e-4, -0.015681919, - -0.0012165512, 0.02829364, 0.0104729915, -0.027022777, -0.014704741, - 0.0023614014, 0.034178343, -0.00182945, -0.018742926, -0.025389215, - -0.020761434, 0.005353911, 0.015498135, -0.02161492, -0.014448067, - 9.423261e-4, -3.8126737e-4, 0.0018542884, 0.03368063, -0.013794905, - 0.0021500627, -0.009990346, 0.014922617, -0.0019332337, -0.00788728, - 0.019160789, 0.0014625842, 0.0014069222, -0.026318505, -9.532204e-4, - -0.004610505, -0.004256224, -0.009043091, 0.0029083986, -0.009506492, - 0.008071213, -0.0055433507, 0.0011339603, -0.006010854, -0.0010868532, - 0.013447146, -0.007875218, -0.00434498, 5.266999e-5, 0.021107653, - 0.020191086, 0.013060341, 0.021387491, -0.0046955273, 0.014898987, - 0.013939454, 0.029703908, -0.022365257, -0.0046253465, -0.0047658486, - 0.014355688, -0.011745238, 0.00560189, -0.018830365, 0.014198563, - 0.015923157, -0.016801544, -0.00377949, 5.8534084e-4, 0.008033104, - -0.014786043, -0.009386657, 0.013997453, -0.025413318, -0.015866557, - 0.0021750096, -0.029216377, 6.6399545e-5, -0.020314896, 0.019431967, - 0.014332881, -0.027779229, -0.035768516, 0.016347243, 0.034644842, - -0.017071813, 0.015739392, -0.0054133707, -0.013191905, 0.019826964, - 0.0049244645, 8.140782e-4, 0.002074134, 0.03433437, 0.010886641, - -0.00974437, -0.008908384, -0.0025253627, 0.0147372475, 0.017567396, - -0.0017427498, -0.0068419403, 0.001930527, -0.015212036, -0.024281178, - 0.014602199, -0.0029271692, 0.0034936105, 0.015928341, 0.018888224, - -0.001421145, 0.005815507, -0.02036796, 0.0070245103, -0.004106632, - 0.023798918, 0.003684873, 0.0047677383, -0.005971489, -0.01706379, - -0.029122997, 8.311138e-4, 0.012973228, 0.010487539, 0.027498178, - -0.005674942, 0.016935335, -0.0061395005, -0.006418629, -0.011195937, - 0.0012543063, -0.005642813, 0.027751734, 0.015819807, -0.030871846, - -0.009855077, 0.0100840395, 0.004546646, -0.01054441, 0.02007919, - 0.008606181, 0.007899784, -0.004729358, 0.0059765787, 0.0068860766, - -0.015717765, -0.0016273997, 0.003169153, 0.011961834, -0.007843267, - 0.016024727, -0.0012809269, -0.01247525, 0.00555912, -0.017013745, - -0.02336728, 0.0045547923, 6.044755e-4, 0.017461238, -6.679515e-5, - -0.005390303, 0.004060947, 0.028530687, -0.001745782, -0.0029910833, - 8.702711e-4, -0.0034665072, -0.011822173, 0.001112791, 0.011104011, - 0.025226131, -0.0052923756, 9.1802045e-5, -0.0090327915, -0.001959639, - -0.023344131, 0.014575423, 0.013851797, 0.013615209, -0.0028709054, - -0.026166731, 0.015718877, 0.009076237, -0.0022999472, 0.007803421, - -0.022267673, -0.002891212, 0.0072331866, -0.003428538, 0.022013249, - -0.018381387, 0.019322122, -0.010970284, 0.0052255616, -0.007251298, - -0.017576385, -0.015339387, 0.011374172, -0.008844891, 0.0050783264, - -0.0024780666, -0.010961158, -0.0045727566, -0.0053761243, - -0.0045209923, -0.022474896, 0.019617742, -0.005093217, -0.013545217, - -0.0043445732, 0.027925637, -0.0018908404, 0.00869486, 0.024971219, - 0.003921442, 0.003912074, -0.006531718, -0.035524774, 0.0069325874, - -0.011590313, 0.009187248, -0.03676123, -0.0026906214, -0.0020641983, - 0.008014639, 0.008982894, -0.006610577, 0.02293716, -0.013987188, - 0.004762115, -0.007210111, -0.014905707, -0.023290535, 0.015221547, - -0.008140479, 0.01581915, 0.026375253, -0.0047334842, 0.01858961, - -0.018135453, -0.019729042, 0.009531019, -0.014425932, 0.018091185, - 0.00561278, 0.02017731, 2.0153966e-4, 0.01188729, 0.0155373635, - 0.020043349, 0.0024416058, -0.007929099, 0.010420752, -0.0025512986, - 0.0010418436, -0.0077278246, 0.016772067, 0.013278391, 0.035883352, - 0.0023629148, 0.006529646, 0.020575663, 0.012626335, 0.012754291, - 0.033503894, 0.0063121184, -0.021372125, -0.008432045, -0.006343916, - -0.009244, 0.004383005, 8.5656333e-4, 0.010830136, -0.034237426, - -0.0043494627, 0.030826801, -0.018883856, 0.021220675, 0.007278379, - -0.0052158963, 0.0038771012, -0.031424634, -0.018160187, 0.005999143, - 0.0015832603, -0.02253933, -0.0048441775, -0.012786211, 0.019759296, - -0.01493151, -0.01058026, -0.008772283, -0.011473893, -0.013189549, - 0.0066021658, 0.008756316, -0.004976218, -0.008798746, -6.5184414e-4, - -0.027951151, -5.602376e-4, 0.008994163, -0.008125867, 0.0034829818, - 9.6615835e-4, -0.022209259, 0.0308442, 0.009059736, -0.010958685, - 0.0011069182, -0.0059692618, -0.014825721, -0.01805138, 0.01848983, - -0.03332607, -0.02381108, 0.02096089, 0.0120796375, -0.03751466, - -0.0013510875, 0.0054871887, 0.016375296, 0.0019283632, 0.02940362, - 0.013742793, -0.004746838, -0.0054672007, 0.020908017, -0.03409712, - 0.008947721, 0.002015902, 0.004076155, -0.037302766, 0.017119989, - -0.006842219, -0.01611262, -0.014574739, 0.012537401, 0.017057482, - -0.013843332, -0.0043601887, 0.016198609, -1.1393401e-4, 0.0021708012, - -0.0045765284, 0.015550369, -0.025326507, 0.006220188, 0.027371405, - -0.026672205, 0.004217283, -0.011465378, 0.0059543834, -0.013689188, - 0.031248348, 6.876317e-4, 0.022420477, 2.1414942e-4, -0.010931777, - 0.0055610156, -0.011666328, -0.009842285, -0.009267449, -0.024282206, - -0.014348236, -0.011977728, 0.0056138737, -0.0086338045, 0.0049038627, - -0.0015553006, -0.0046244934, -0.0031231383, -6.037913e-4, -0.005422747, - -0.002620206, 0.012693959, 0.002213872, -0.0015568775, 0.019132283, - 0.009191103, 0.015918702, 7.1030145e-4, 0.039290212, -0.023563704, - -8.738145e-4, -0.012254272, 0.04071303, -0.0019560752, -0.018360963, - 0.0063715475, -0.0020575486, 0.0152327595, 0.010289773, 0.0024210277, - -0.008760063, 0.014849056, -0.019010013, 0.0062006465, -0.0056961323, - -0.014190303, 0.036057938, 0.012115433, -0.022597665, -0.00247297, - -0.010165854, 8.325436e-4, 0.003048126, -0.0130431745, -0.00219349, - 0.0051656426, -0.006923388, -0.004838139, 0.0023240077, 0.0038448505, - -0.0032469644, 7.4090186e-4, -0.007171294, 0.040920097, 0.038453672, - 0.0025722517, -0.0029770273, -0.011899517, -0.0212178, 0.0151408445, - 0.021954916, -0.014118602, -0.006637177, 0.01575535, -0.0051102694, - -0.00915464, 0.0095567135, 0.011579537, -9.351914e-4, -0.008476798, - 0.007797751, 0.015266092, -0.024215005, 0.008955854, 0.017050743, - 0.010252777, 0.008921113, -0.01609179, -0.014439759, -0.022601638, - -0.0013521536, 0.0020217255, 0.012414074, 0.010170945, -0.0062382715, - -0.017578932, -0.019384874, -0.011831833, -0.022988388, 5.132931e-4, - -0.013190276, -5.035256e-4, 0.01745044, 0.0025993409, -0.010933983, - -0.015292077, 0.012537742, -0.008011289, -0.010964648, 0.019366479, - -0.006411924, 0.004965004, 0.009554961, -0.003663283, -0.0147721525, - -0.012126065, -0.02094938, 0.013158482, -0.037356738, -0.012697778, - -0.015177784, 0.0027626264, 0.009940756, -0.036541115, -0.0044416944, - -0.008443216, 0.01004264, -0.026814682, 0.015184091, -5.821868e-4, - 0.0222827, -0.007943667, -0.0066968896, -0.0022881785, -0.011055339, - -0.013323005, -0.017475387, 0.004722739, 0.003430803, -0.018522857, - 0.00646624, 0.012313759, -0.013606184, -0.002643884, 0.022750957, - 0.016133891, -0.001032244, -0.019290974, -0.005548676, -0.0018288676, - -0.017310532, 0.024206497, -0.021541692, 0.01205723, 6.16244e-4, - 0.003476541, 0.009581622, -0.025926536, 0.017688224, 0.0065696687, - -0.002027154, 0.016694795, 0.0070145475, 0.00485348, -0.0028091732, - -0.013114978, -0.0054675564, -0.0270868, 0.0018290973, 0.011672618, - 0.037368987, 0.0035455348, 0.016325323, -0.0017992391, 0.014598392, - 0.026317878 + "filterableValues" : { + "locations.license.id" : [ + "pdm" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.0038249479, 0.002063621, -0.0104370965, -0.006269773, -0.006980922, - 0.018910728, 0.017174829, -0.026757045, 0.018280892, 0.011836935, - -0.015403449, -0.012972199, 0.014488254, 0.012243022, 0.028772049, - 0.0061029308, 0.0044770506, 0.010892654, 0.0022912696, 2.7241965e-4, - -0.042570982, -6.0653116e-4, -0.007835981, -0.0012424384, 0.010268907, - -0.017000351, -7.6231797e-4, 0.012441613, -0.010112471, -2.0773662e-4, - 0.019395392, 0.047080867, -0.0011658923, -0.007834127, 0.022365557, - -0.0019502661, 0.006684152, 0.014284882, -0.0042943573, 0.02907872, - -0.017366024, -0.008615864, -0.0017920724, 0.020066425, -0.010415876, - -0.02603483, 0.008766085, 0.024193546, 0.0103108585, -0.0060777706, - 0.006919292, -0.015101666, -0.019439938, 0.0066047283, 0.006947903, - -0.008395436, -0.0013451361, -0.005531071, -0.0030214197, 0.0026710473, - 0.0027194766, -0.012704061, -0.013544644, 0.02956026, -0.005560232, - -0.0052111326, -0.009664915, -0.04170552, 0.0021343222, 0.005803235, - -0.0018428601, -0.02229498, -6.79391e-4, 0.02417177, -0.0141857285, - 0.017726528, 0.0074888654, 0.011584021, -0.008957699, -0.0017262645, - -0.027515875, 0.008347501, -0.011890563, -0.0061033303, -0.005871214, - 0.014422768, 0.018464332, 0.00930113, 0.039498355, 0.0025027154, - 0.0061723, -0.025575746, -0.0037682555, -0.032901596, 0.022224173, - -0.0066779503, 0.0030909404, 0.017248709, 0.007910565, -0.0047227223, - -0.024617089, 0.013109491, -0.04907073, 0.0050335494, -0.00154078, - -0.03172534, 0.010999504, -0.007883708, 0.005918457, -0.0030787329, - -1.5154219e-4, -0.017062029, -0.016644549, -0.021314884, 9.510388e-4, - 0.008633041, -0.025243148, 0.021058273, 0.015508878, 0.025225226, - 0.013031276, 0.014522076, -0.0010756659, -0.019666469, -0.0031935591, - -0.01878205, -0.019678053, 0.02947687, 0.008423135, 0.0045531485, - -0.0013231114, 0.007666991, 0.013199175, 0.0074718576, 0.0028667364, - 0.0027949186, 0.024141893, 0.0077600516, 0.004178163, 2.8927976e-4, - 0.007173235, 0.004613757, 0.012238606, -0.039412986, 0.024339769, - 0.017449412, 0.0035174377, -0.0043291408, 0.012525203, -0.008055754, - 0.013331796, 0.035168543, 0.0045843185, 0.0074945586, -0.017817615, - -0.022581784, -6.550048e-4, 0.019160211, 0.0023613374, -0.019628393, - 0.0073658875, 0.013109034, 0.010994148, -0.0087312395, 0.006223135, - -0.026162308, -0.0024529775, -0.015807087, 0.015229907, 0.005520471, - -0.029858869, 0.01680595, 0.014519295, -0.013704966, -0.02401607, - -0.0076933014, 0.0045649335, -0.012965715, -0.012451912, 0.024317713, - -0.015682667, -0.027715908, -0.014403727, 0.0116986325, 0.015818551, - -0.0044869664, 0.0012216689, 0.010248425, 0.0021648551, -0.023786262, - 0.014387629, -0.0015718051, 0.0063468134, -0.023451451, 0.0019165186, - -0.029406626, -0.006631912, 0.01713238, 0.01006504, 6.739682e-4, - -0.0048033213, 5.707132e-4, -0.010359137, 0.0013484842, 0.0021239868, - 0.014861413, -0.006670121, -0.015690485, -0.0067689675, 0.010354948, - 0.01366488, -6.1785703e-4, 0.020580776, -0.008317652, 0.015137141, - -0.01854014, 0.0026476122, -0.0077417926, -0.020922277, 0.0041102124, - -0.0013118811, -0.022161115, -0.0046980977, -0.025834661, 0.0051987055, - -0.0054846196, 0.002223932, 0.0036576865, 0.0130054485, -0.020605914, - 0.027545115, 0.0039997334, 0.012898802, -0.012235891, 0.012094071, - -0.013853767, 0.002016868, -0.009882482, 0.03953306, 0.0053099757, - 0.031338453, -0.0130296415, -0.016323922, -0.005988925, -0.0013313862, - -0.021305028, -0.024090061, -0.02514413, 0.014894191, -0.024331715, - -0.02526548, -0.0030126816, -0.008105795, -0.024877105, 0.0049252417, - 0.01831196, -0.022517685, -0.0014932173, 0.0032111695, -0.030719519, - -0.004456575, -0.026370753, -0.016819391, 0.010079489, 0.042698197, - 0.030515943, -0.0033836672, 0.008300455, 0.009100656, -0.015387178, - 0.0021462834, 0.0011308873, 0.0014575308, -0.028082512, 0.027748413, - 0.0098625375, 0.016291669, -0.016433213, 5.688476e-4, 0.0114424825, - -0.008519264, 0.0034948927, 0.017031278, -0.0056757564, -0.004142431, - 0.04278406, 0.008395522, -0.0063968804, -0.021962984, -0.028168626, - 0.023671223, 0.02232568, 0.0056829187, -0.03603591, -0.008879182, - 0.0049002245, 0.025625573, -0.004531494, -0.011747744, 0.013752282, - -0.0016332144, 0.0036421022, -0.010156654, -0.0026228214, 0.0025017906, - -0.0066669574, -0.0086652795, -0.021843309, 0.004295562, -0.01123525, - 0.022862194, 0.0063046813, 0.0035845502, 0.016462099, 0.017048275, - -0.020520594, -0.0109069, 0.017544903, 0.0011886675, -0.0060808645, - 0.0012350384, -0.010377005, 0.018070204, -0.017599659, 0.004350242, - 0.0026887332, 0.014852923, 0.00763132, -0.019438, 0.006243332, - -0.0038164333, -0.011507965, 0.009233474, 0.0106576225, -0.009304829, - 0.026253758, -5.3097244e-4, -0.010173624, 0.004270426, -0.004646177, - 0.0029098415, -0.0034176058, -0.005614501, -0.0016756695, -0.013103126, - 0.023691474, -0.0010388198, 0.02095341, -0.026876736, 0.005619166, - -0.028833337, 5.2665593e-4, -0.0022977586, 0.013514236, 0.014747925, - -0.012255075, -8.9346466e-4, 0.023684602, -0.0011543133, 0.006966172, - -0.015893621, 0.008692127, 0.031971354, 0.0088752555, 0.009704371, - 0.010513495, -0.023156742, -0.009557644, 0.005150506, -0.015012471, - -0.002703801, 0.0068187783, 0.0049454146, 0.010032907, -0.0018524493, - 0.016872594, -0.0071846982, -0.0013603398, 0.010326961, 0.006329635, - 0.025441019, 0.011509478, -0.0062859603, -0.031031316, -0.02857632, - 0.0042240717, 0.002670546, 0.01786012, -0.016840212, -0.006733413, - 0.0028170333, -0.011820962, 0.035055418, -0.015289624, 0.0056022727, - 0.0029197014, 0.018676953, -0.022059305, 0.0057523316, -0.0029990708, - -0.018862197, -0.0022303213, -0.010737512, -0.015322961, -0.028368257, - 0.021400502, -0.023409836, -0.0037314876, -0.0028225526, -0.004558344, - 1.5776999e-4, 0.028188355, -6.77066e-4, -3.6980264e-4, -0.023558058, - 0.008307263, 0.005144506, -0.0077250805, 0.018203631, 0.023885189, - 0.007281977, 0.0029459703, 0.025078025, -3.5543225e-4, 0.004000698, - 0.012203723, -0.013600615, -0.019656315, 0.02695131, -0.005608846, - 0.02124745, -0.011508072, -0.010512592, -0.031356443, 3.194513e-4, - 0.003708262, -0.0020302907, -0.004254351, 0.03367037, -0.023081068, - -0.006676353, -0.011414257, 0.026046848, 0.01625736, -0.005638973, - 0.021386372, 0.0022022156, 0.02350466, 0.004087391, -0.00998733, - -0.032956157, -0.0054573286, 0.0045025055, 0.006363293, 0.013135942, - -0.012063751, -0.0067862254, 0.008580721, 0.0023110353, -0.02781623, - 0.0066613723, -0.002476955, 0.01142754, 0.0046999115, 0.008816218, - 0.007127798, 6.2265375e-4, -0.010635556, 0.015119465, -0.013165647, - -0.008764159, -0.0062064393, 0.008713334, 0.002821196, 0.017631054, - -0.00860623, 0.0016264475, 0.0046283975, -0.007943683, -0.01748839, - 0.014150609, 0.016493674, -0.0071950564, 0.0035179777, 0.03309848, - -0.016989283, -0.0076948823, 0.0010571, -0.02025758, 0.017182792, - 0.022348018, -0.016959669, -0.047298178, -0.011819535, -0.016704584, - -0.0045704087, -0.0037675668, -0.0013549757, 0.001759893, -0.0030512926, - 0.013038467, 0.017928397, -0.007353401, 0.032776844, -0.028279591, - -0.024055578, 0.0031982523, -8.9179265e-4, 0.026363002, 0.016850306, - 0.022773517, -9.4161835e-4, -0.009722711, -0.005371502, 0.00915149, - -0.026317813, 0.026438441, -0.015233493, 0.013971254, -0.022500092, - -0.005140369, -0.020964053, 0.008617452, -0.01398473, 0.017882789, - -0.01668963, -0.00716844, 0.014172504, -0.0036206292, -0.01031363, - 0.024363786, -0.024774473, 6.38337e-4, -0.012876346, -0.018641412, - 9.42995e-4, -0.017920302, 0.010625482, -0.009973481, 0.020406306, - -0.0058363387, -0.0150842555, -0.011596247, -0.007477281, 0.007635684, - -0.041191034, 0.004541128, 0.014077515, -0.0017446624, 0.0053296145, - 0.004099649, -0.010910804, 0.0046191956, 0.009555688, 0.001600289, - 0.024863584, -0.020239756, -0.02093674, 6.2330434e-4, -0.008900525, - 1.3956455e-4, -0.016691955, 9.565477e-4, -0.021077331, 0.023551188, - 0.009107862, -0.008993327, 0.017970689, -0.004313057, -0.021467641, - 0.01250663, 0.0059894514, -0.01129236, -0.021567406, -0.0017515704, - 0.004438769, 0.010003283, 0.0045189434, 0.010625448, -0.0133454995, - 0.010326778, 0.0063849306, -0.0092028715, -0.02464452, 0.013463655, - 2.480102e-4, -0.010080016, 0.023431627, 0.0048954412, -0.0019552081, - 0.013969612, -0.011462807, 0.03777235, -0.012914311, -0.0072745555, - -0.0027476198, 0.010423775, 0.0062156287, -0.020539895, 0.039480824, - 1.2007114e-4, -0.015479833, 0.008798778, 0.0051187486, 0.008384891, - 0.0014014256, -0.016944975, -0.035955008, -0.007519022, -0.0063727987, - -0.017093197, -0.0028498147, -0.013251918, 0.010093451, -0.014511726, - 0.024815595, 0.008271349, -0.0062677567, -0.0122662345, -0.019906228, - -0.0027460062, -2.762797e-4, -0.00420203, 0.0036553286, 0.013079339, - -0.008332977, -0.017387956, -0.00797819, 0.007726449, 7.861399e-4, - 0.009126856, 0.013865441, 0.017005498, 0.02602928, 0.012243311, - -0.021097265, -0.02415256, 0.012180453, -0.0052536456, 2.314445e-4, - 0.032641567, -0.014657841, 0.019874785, 0.007773143, 0.021568922, - 0.01093072, 0.003519741, 0.009652206, -0.008628041, 0.0051638233, - -0.0042693224, 0.001583446, 0.025790082, -0.0046505714, -0.011329108, - 0.016284568, -0.015512587, 0.009647981, 0.0340349, -0.012216585, - -0.007472412, 0.00628136, -0.027541988, 0.005977488, -0.0065956637, - -0.011392234, 0.0034285444, -0.007840212, 0.019238679, 0.007975932, - 0.004091877, -0.0039890404, 0.013219449, 6.777671e-4, -0.001908504, - 0.02440428, 0.0019170692, 0.005464573, 0.019414738, -0.008490814, - 0.0032278278, -0.010196049, 0.02533652, 0.009359267, -0.0066849845, - 6.522626e-5, -0.0076315217, -0.03708231, 7.572316e-4, 0.012149749, - 0.0047292165, 0.01916287, -0.0039983955, -0.0021611783, -0.008788246, - 0.007841435, 0.006812896, 0.011940349, 0.036554076, 0.0026198477, - -0.005342003, 0.014978107, 0.009510945, -0.026811246, -0.045645203, - -0.022357596, 0.0011225593, -0.00841809, 0.0041188975, 0.01756319, - 0.004228153, 0.015596458, 0.0076018176, -0.0115125645, -0.0073396126, - -0.0038982308, -0.014652306, 0.005211028, -0.0015775656, -0.017329069, - 0.0145507725, 0.008468333, 0.012811397, -0.0016549716, -0.012193484, - 0.016919428, 0.019440597, 0.005153024, -0.018998377, -0.0018608742, - 0.029852731, 0.0050451183, 0.018591851, -0.0059374706, 0.0017370185, - 0.033988602, 0.018347224, 0.0061785337, 0.0026410972, 0.009509608, - -0.019244254, -0.027286138, -0.019216256, 0.013440528, -0.027022753, - 0.0018811368, -0.02603514, 0.020794062, -0.0024849172, -0.0038715496, - 0.0014577783, 0.01822193, 0.012862403, 0.024536405, -0.010358312, - 0.015085901, 0.017158857, -2.72512e-4, -0.0023700094, -0.001306061, - 0.021048702, 0.0022525722, 0.0017019798, -0.0019964222, -0.023217117, - 0.00290378, -3.0220588e-4, 0.011169616, -0.041833285, -0.01602469, - 0.034697924, -0.013236862, -0.012452233, 0.016432542, -0.020175572, - -9.2184776e-4, -0.002446053, 0.012150551, -0.001070636, -0.0086199045, - -0.0011709966, -0.020831963, 0.028000673, 0.007335667, 0.015928796, - 0.018828573, -0.001754478, -3.9850597e-4, -0.003021411, -0.011219516, - 0.0018063111, -0.0017642569, -0.0057901894, -0.0045300075, 0.025828876, - 0.016578596, -0.001729487, 0.017397035, -0.0062240716, 0.0064034364, - 0.00973788, 0.004195008, 0.015704587, 0.011159651, 0.01652222, - -0.006151374, 0.01595197, 0.021583628, -0.010969524, -0.006399677, - 0.0073223207, 0.012165959, -0.008885045, 0.007897507, 0.029068353, - 0.00643384, 0.015007399, -1.832218e-4, -0.044426568, -0.0022553364, - 0.003111394, 0.007877738, 0.012602926, -0.012158221, 0.006003964, - 5.749869e-4, -0.00831545, 0.01167301, 0.01547686, 0.004098892, - -0.012947255, 0.0038618685, -0.006999848, 0.005571617, -0.015035055, - 0.0028462019, -0.021739522, 0.011805463, 0.001784844, -0.021929348, - -6.11129e-4, 0.009961454, 0.012039571, 0.014097617, -0.021528592, - -0.009821555, 0.010882994, -0.0090821395, -0.013481886, 0.009656337, - 0.027054245, -0.0066443244, 0.014271511, 0.016715564, -0.0122612985, - -0.03253435, -0.0049117557, -0.019294994, 0.014755826, -0.0034793112, - -0.056669354, -0.04244144, 0.029527707, 0.0010916363, 0.0046479492, - 0.014463658, 0.0057036406, 0.0025621715, 0.0024920227, 0.03413824, - -0.01924714, 0.022623245, 0.029749457, -0.023351224, -0.0150551805, - -0.028017346, -0.01833564, -0.0033314314, -0.01939348, -0.027286831, - 1.6296022e-4, 0.01591086, 0.011136792, -0.027379131, 0.0096569015, - 0.00959137, -0.0124066835, -0.004947384, 0.0082654655, 0.013865058, - -0.0043058647, 0.026257882, -0.038442254, -0.021970626, -0.0018765575, - 0.020467533, 0.020062884, 0.017019622, 0.00518542, -0.0054275542, - 0.013504906, -1.1430109e-4, -0.010947785, 0.012757346, 0.01851778, - 0.009762131, 0.028898304, -0.009208854, -0.009574596, -0.019957172, - -0.0272529, -0.011956367, -0.0072891563, 0.026454048, -0.021551203, - -0.0025409334, -0.016612362, -0.011707979, 0.0032731208, -0.012528829, - -0.0059942403, -0.02457195, 0.012398602, 0.021044847, 0.0015977661, - 0.0031165394, -0.0053499658, 4.4942138e-4, 6.44627e-4, 0.0030424797, - -0.0030730795, -0.0065113837, -0.018737465, -0.007325198, -0.0059852265, - -2.4101307e-4, 0.0068404856, -0.029245278, -0.012085437, -0.0056196465, - -0.028887741, 0.011990165, -0.020960534, 0.014563437, -0.028208468, - -0.011995557, -0.013383628, 0.01177232, 3.210069e-4, -7.0459547e-4, - 0.019922141, 0.024120666, 0.013086987, -0.011044717, -0.015429524, - -0.030650808, 0.0019077499, -0.0036747074, -0.001930146, -0.014119191, - -0.007160559, 0.0017425923, 0.0010889756, 0.03922904, -0.015828948, - 0.0010045092, -0.0068973443, 0.0066028857, 0.015626376, 0.022047706, - -0.010573332, 0.0033027048, -0.022520294, -5.6864833e-4, 0.0039506415, - 0.008098039, 0.0049218484, 0.017517127, -0.0057795597, -0.029654091, - 9.353701e-4, -0.0053434274, 0.02850879, 0.009535607, 0.015119803, - 0.012040308, -0.008179678, -0.009422385, 0.0040048272, 0.027058888, - 0.0048755407, -0.0092897015, 0.0469325, 0.010517861, 6.436345e-4, - 0.0012824858, 0.0079568345, -9.321095e-4, 0.012548288, 0.010833404, - 3.3677093e-4, 0.017121779, -0.001617762, 0.01627887, 0.016254822, - 0.021041358, 0.005233555, 0.0060965735, -0.0019730674, -0.024310952, - 0.004906372, 7.5907476e-4, -0.021306919, 6.9946784e-4, 0.010073728, - -0.016926933, 0.015525496, -0.015339822, 0.01413874, 0.025169427, - 0.019650765, 0.004609745, 0.014192945, 0.023624012, -0.0047486783, - -0.005977734, 0.0062967427, -0.0018146147, 0.011567906, -0.0049879374, - -0.020256102, 0.011281181, 0.010994822, -0.0072282855, 0.015124346, - 0.0017128441, 0.025334794, 0.01078911, -0.0012146407, -0.011534376, - -0.015592754, 0.007852343, 0.012696468, 0.020074097, -0.0062481593, - -0.013160396, -0.0047227894, 5.8276486e-4, -0.03163386, 0.007517572, - -0.0025252549, -0.014736831, 0.0033803743, -0.011202874, -0.041979723, - 0.018928226, 0.036063742, -0.021047438, -0.010741389, 0.004558225, - 0.02184335, 0.0059706373, 0.0013579662, 0.0034628946, 7.889241e-6, - 0.0063289776, 8.23395e-4, -0.004103791, 0.0041870195, 0.018306872, - -0.004101418, 0.0033338533, 0.0067287497, 0.009104983, -0.049658768, - -0.014736469, -0.002951768, 0.024013111, 0.013653405, -0.012371571, - -0.018565923, 4.5817348e-4, -0.019685732, 0.010700283, 0.036518186, - -0.007102328, -0.009505966, 0.024537303, 0.02113595, -0.0038876338, - 0.015279499, -0.0013004801, 0.023716146, -0.0036299818, -0.0050249514, - 0.0060185436, -0.03174814, 0.009547081, 0.01528198, 0.015333143, - -0.012289261, 0.009956009, 0.01946734, -7.005721e-4, 0.010346889, - 0.01800881, -0.0069131115, -0.011589667, -0.008317069, 0.035451435, - -0.027140025, -0.004222163, -0.010465136, 0.022153288, -0.004927344, - -0.006738036, 0.00533645, 0.017476741, -0.03295118, -0.022536503, - 0.0017240737, -0.009555473, -0.0036251715, -0.032516092, 0.02152712, - 0.0066686706, 0.010135808, 0.008221307, -0.009104838, 0.0078002308, - -0.01375786, 0.011001968, -0.010082366, -0.012441896, -4.209934e-4, - 0.0014397549, 0.005929062, 0.016937986, 0.011021266, 0.01335307, - -0.0032566087, 0.00529034, -0.0054689567, -0.0020282674, 0.0015081841, - -0.0073074233, -0.002904246, 0.013601848, 0.005739538, 0.01597681, - -0.022271872, 0.015133268, 0.0020848594, -0.038479228, 0.015196192, - -0.018292481, -0.024584599, -0.0014777549, 0.00704202, 0.013638362, - 3.0126354e-5, -0.038084242, 0.024248328, 0.008340305, -0.0126558095, - 0.0069824015, 0.01898989, 0.013499825, -0.01505232, 8.393522e-4, - -0.012347014, -0.02009358, 0.015039264, 0.017772917, 0.0022395458, - 0.035515197, -0.025540115, 0.0028500955, 0.032354765, -0.010104417, - 0.009334755, -3.4578226e-4, -0.0068337005, 0.025276441, 0.008001772, - -0.017203813, -0.005438187, 0.006228279, 0.010846253, -0.005673394, - 0.0080534555, -0.010358322, -0.0014255936, 0.0034035828, 0.028955016, - 0.0016698014, -9.340008e-4, -0.0066869156, -0.007748516, -0.010406615, - 0.027307324, -0.0071051866, 0.004292948, 0.009411304, 0.020130554, - 0.007656204, -0.0036903243, 0.0058148215, 0.009260667, -0.017711084, - 0.017039303, 0.023720218, 0.017701875, 0.005892756, -0.0038413042, - 0.0011838385, -0.0012841712, -0.0070913085, 0.007686536, -0.022326274, - 0.020857358, 0.013951978, 0.0036414086, -0.036605217, -0.015066995, - -0.009341928, 0.008813522, -0.010786445, 0.01604203, 0.029303882, - -0.0034250957, 0.012034431, 0.015189317, 0.0074132383, 0.014367039, - 5.831651e-4, 0.014353994, -0.01774031, 0.023512421, -0.0032577456, - -0.013112837, 0.014436158, 0.027586805, 7.3970004e-4, 0.004015064, - -0.0025197456, -0.015910864, -0.026563557, -0.016136339, -0.005487148, - 0.010270785, 0.013550086, -0.024091762, 0.005515278, 0.0051264926, - 0.0023393095, -8.034718e-4, 0.010456646, -0.01870577, -0.0103018, - 0.0042694286, 0.02265252, -0.022900753, -0.024386462, -2.9722796e-4, - 0.026642336, 0.015749013, 0.04405043, -0.0052536237, 0.022633411, - -0.00702178, -0.022188267, -0.0036465705, -0.020417357, -0.01673523, - -0.02135966, 0.010424879, -0.00874012, 1.325232e-4, 0.024698574, - 0.014252119, -0.009416312, -0.01703608, -0.0068773134, 0.017746845, - 0.0013099734, -0.025767758, 0.0063997824, 2.4074121e-4, -0.016352504, - 0.014776185, -0.006925577, 0.04008957, 0.0010726992, -0.00328997, - -0.007571338, 0.021327928, 0.002497174, -0.020711176, -0.0027243812, - 0.035776645, -0.0052379775, 0.0069878944, 0.0043658484, 0.021103, - 0.0092696035, -0.009509774, -0.032098714, -0.002542324, 0.0044992235, - -0.005663566, -0.004679599, -0.009485974, 0.014074349, -0.0010598935, - 0.010920137, -0.016907094, -0.013372009, 0.00651318, 0.0049834135, - 0.007846779, 0.005082455, -0.013615043, -0.011912667, 0.0071357787, - 0.012191258, -0.003280523, 0.0064925402, -0.018250534, 0.011579237, - -0.030418675, 0.0050512687, 0.005931118, 0.023579327, -0.0022094985, - -0.0027121862, 0.0058990554, -0.0096229, -0.0068354695, -0.011774988, - -0.011820908, 0.012987798, 0.013648277, -0.02375548, 0.010099618, - -0.023500845, 7.1243534e-4, -0.018154917, 0.012053895, -0.0068519926, - -0.006374025, -0.004950985, -0.0057499907, -0.021875363, -0.011301621, - 0.02261488, 0.0024464023, -0.01520398, 0.01915107, 0.014629759, - -0.019277884, 0.021602819, 0.008484723, 0.028890248, 0.009589837, - -0.0015084406, -0.005609719, 0.016897406, -0.010870631, 0.03147195, - 0.012142487, 0.028623369, 0.005104741, -0.003042884, 3.9374558e-5, - -0.013232484, -3.3694104e-4, -0.016214624, 0.0034671654, -0.005291006, - -0.017165583, 0.013932006, -0.01162785, -0.019014236, 0.0028035052, - -0.0052423165, -0.010126639, -0.013288149, -0.004031426, -0.005603826, - 0.011723998, 0.030557506, -8.6686446e-4, 0.022089949, -0.023724688, - -0.02292531, 0.005195436, 0.018347524, 0.009373659, 0.034200605, - 0.019862827, 0.026689522, 0.008873363, -0.004791194, 0.016013527, - -0.014911194, 0.0134430295, 0.027581297, 0.01848712, 0.011759931, - -0.025812494, 0.028812526, -0.010203246, 0.006842502, 0.0195538, - -0.011054822, 0.028093867, 0.010741353, -0.040854122, 0.0056818277, - -0.010311155, 0.01570279, 0.012565463, -0.009709208, -0.0077103823, - -0.0076271263, -0.04382047, -0.0067159687, -0.011428828, 0.0073553105, - 0.009178504, -0.010182533, -0.014692879, -0.023045512, 0.0022696706, - -0.008735279, -0.04137496, -0.008868905, -0.023123844, 0.016329797, - -0.017683294, -0.010033351, 0.007699919, -0.015223718, -0.016703675, - 0.013101255, -0.0011379338, -0.018800657, 0.036994506, -0.010678057, - 2.0128468e-4, -0.013429545, 0.016547963, 0.0027606464, -0.007265303, - 0.01626505, 0.018361615, -0.0010571077, 0.028015574, 0.010570062, - 0.004488397, -0.0024697224, 0.0064896257, -0.011520055, -0.025864081, - 0.007963051, -0.036931377, -0.002635636, -0.014262386, -0.007105478, - 0.012335279, 0.009794204, -0.018399475, -0.01435701, -0.014416158, - -0.02150238, 0.0155171575, 0.008563466, 0.0038331554, 0.019891243, - 0.015379925, -0.0022377723, 0.010990992, 0.015465009, 2.5954665e-4, - 0.018144567, -1.0310092e-4, -0.015155826, -0.015475442, 0.003400329, - 0.0058092657, 0.031386428, -0.019241983, 0.026127944, 0.0022886326, - 0.014107883, 0.014550639, 0.016847283, -0.010508514, -0.021962259, - 0.034034215, 0.04679776, 0.009761135, -0.016818954, -0.009234704, - 0.025602827, -0.0114450315, -0.012712926, 0.017056054, -0.005718056, - 0.023301998, 0.027459912, 0.013042796, -0.0058698943, 0.00394844, - -0.011290652, -0.018483764, -0.027313562, -0.0027907277, 0.009537123, - -0.01586461, 0.0018109542, 0.0028454603, 0.008061054, -0.0018375051, - 0.006966706, -0.008002302, 0.0074440613, -0.011914328, -0.003029736, - -0.014910635, 0.0069454825, 0.0055280775, -0.02171022, 0.0053898934, - 0.022808185, 0.013236185, -0.020464603, -0.017045278, 0.0182252, - 0.02615571, -0.032876547, -0.019247718, 0.0134994425, 0.030465053, - -0.024798023, 0.0049092807, 0.0028066947, -0.01805301, 0.008421723, - -0.013256042, -0.0022362955, 0.010020329, -0.016950132, -0.023848174, - 0.012105845, -0.015399314, 0.027827565, -0.02698316, -9.829678e-4, - 0.009797216, 0.0052841133, 0.012025953, -0.016459582, 0.04678729, - 0.03682125, 0.016644828, -1.5768559e-4, 0.010500759, 0.0035340383, - -0.0017021176, 0.02614033, -0.021569964, -0.0034854887, 0.016281478, - -0.011889139, 0.022756005, 0.008579422, -0.023154907, -0.002179674, - -0.028238315, 0.026644707, -0.019047258, -0.008571474, 0.031896394, - -0.01019659, -0.0073639737, -0.011139406, 6.973811e-4, -0.00854216, - -0.012650439, 0.0026950305, 0.017305572, -0.010080207, -0.00953129, - -0.02274903, 0.00443117, 7.089968e-4, 0.015263776, 0.03669679, - 0.022005472, 0.025340773, -0.029694535, 0.0070217345, -0.007523028, - 0.018281054, -0.0020654122, -0.017522689, 0.029330298, -0.008972213, - -0.01604771, 0.014450933, -0.032229837, -0.0117124235, 0.0059179333, - -0.023123354, -0.007715548, 0.015298601, 0.0051092836, -0.02247755, - -0.0031863372, -0.026727213, 3.8420123e-5, -0.018984716, -3.6260733e-4, - -0.03125126, 0.0075984146, -0.023782594, -0.013218172, -0.025893347, - 0.0106202895, -0.0072707385, -0.029580327, -0.018087205, -0.010066075, - 0.018892359, 0.0054925345, 0.006148255, -0.0065793013, 0.02180628, - -0.01891761, -0.0038748982, 2.8166396e-4, -0.020065116, -0.0012992916, - 1.2758389e-4, 0.0122236945, -7.386278e-4, 0.009827768, -0.024681104, - -0.012651519, 0.021016754, -0.020036621, 0.007333187, 0.005165618, - 0.0018564197, -0.028969219, 0.017528625, -0.009088475, 0.032382607, - -0.008949225, 0.009596863, 0.0077968584, 0.013421835, -0.020879934, - -0.03256151, 0.004591059, 0.013860145, -0.0066065076, -0.02190034, - 5.6760524e-5, -0.012535549, -0.018537225, -0.0077039325, -0.00686027, - -0.048733477, -0.0022269962, 0.007397829, 0.0033553508, -0.020435046, - 0.0029822423, -0.0028056486, -0.009757645, -0.013429702, 0.019453475, - -0.01704666, -0.02299175, 0.00804253, 3.3957302e-4, -0.026815936, - -0.008674801, -0.017093208, 0.017771592, -0.008640266, 0.010353393, - -0.0010023587, -0.009175708, -0.011346385, 0.030618712, -0.023717519, - 0.024818288, 0.0028867787, 0.013124372, -0.012820408, 0.016004909, - 6.434634e-4, -0.0115665635, 0.0128851505, 0.0022123314, -0.001111167, - -0.009564183, 0.0071593844, 0.008523296, 0.006338291, 0.007433006, - 0.014408994, 0.020116191, -0.0069626896, -0.023776894, -0.019523509, - -0.012731171, 7.37012e-4, -0.022108765, -0.0031127338, -0.003875436, - -0.014402357, 0.004410147, -0.006920706, 0.023102157, -0.017500851, - 0.03621597, -0.019704744, 0.01709608, -0.024618275, -0.023464141, - 0.009217513, -0.011672669, -0.00949997, -0.008609786, 0.041120674, - -0.027772881, 0.010374249, 0.0014753483, -0.013092452, 0.01607681, - -0.0025882348, -0.009130131, 0.014076768, -0.008969347, 0.0044851713, - -0.018717153, -0.0019313043, -0.00980373, 0.014262754, 0.012183416, - -0.027672192, 0.018176332, -0.013911123, -0.0023990548, 0.0035473232, - -0.034616165, -0.0053287237, -0.011209284, -0.0126019325, 0.0045629274, - 0.0030125245, 5.427562e-4, 0.007740237, -0.022581367, 0.002566269, - -0.012434058, 0.008305549, -0.0041614748, 0.013658828, -0.018891722, - 0.0064873565, 0.031008217, 0.019664522, 0.0024793968, -0.010006417, - -0.0110358065, 0.012571822, -0.0018442193, 0.0022987782, 0.00757381, - 0.0027131778, -8.4735785e-4, -0.006546231, 0.003959086, -0.0056373477, - 0.011534231, 0.00618167, 0.007264384, -0.0057097077, -0.037831478, - 9.7067584e-4, -0.024005804, 0.0048077498, 0.028719103, -0.010879535, - -0.0052773445, 0.0072018304, -0.025949135, 0.013576409, -0.0067025125, - -0.014694619, 0.013451526, 0.025143133, -0.016709013, 0.031836066, - 0.008883198, 0.013787097, -0.013261934, 0.0052364217, 0.026907412, - -1.2142515e-4, -0.0039855805, 0.0229021, 0.025871167, 0.028453752, - 0.018152876, -0.024046797, 0.020226704, -0.004610794, -0.0051420974, - 0.0069235014, 0.004313489, -0.0061607054, -0.02028171, 0.032453224, - -5.642963e-4, 0.007616647, 0.008547425, -0.019139264, -0.008105162, - 0.009612451, 0.01946158, 0.0067162113, 0.0033441174, -0.035604425, - 0.024527125, 0.004748385, 0.023497453, 0.016491553, 0.016802343, - -0.0031386123, -0.0038554405, -0.0067749964, 0.01246492, 0.0057495157, - -0.0023040248, 0.0056996844, 0.015520534, -0.008024663, -0.010287099, - -0.0077080242, 0.01409931, 0.0056608077, 0.0057008984, 0.0132292295, - 6.380481e-4, 0.009032409, 0.02143945, 0.0010058827, 0.02866582, - 0.007935334, 0.0217539, 0.0017115693, 0.011221603, -0.001390459, - -0.0025510334, -0.008715616, 0.0038358807, -0.012283792, -0.009733074, - 0.0054477565, 0.018974692, 0.015021089, -0.0021869787, 0.008652038, - -0.009919186, 0.024121955, -0.017005466, -0.02230641, -0.02317678, - -0.0047946298, 0.011912124, -0.032671466, 9.946779e-4, 5.921015e-4, - 0.015477896, 0.013373967, -0.0050367345, 0.0041426644, -0.01502024, - -8.689393e-5, -0.041829422, -0.010912482, -0.013362795, -0.0023719028, - -0.013920956, -0.015621001, 8.1330846e-4, -0.0045580943, 7.063401e-5, - -0.010114778, 0.035623606, -0.010556821, -0.0020107364, -0.005334042, - -0.007833718, -0.008524465, -0.016305495, 0.0018040116, -0.003144317, - 0.015279932, 0.010599731, -0.004084756, 0.006957026, -0.009054468, - -0.003221928, 0.02151004, 0.013732106, -0.03708376, 0.0088639585, - -0.0013518576, 3.7719755e-4, -0.0038525774, 0.03616344, -0.034081053, - -0.020978263, 0.006727956, 0.005359742, -0.013687567, -0.006190187, - 7.799435e-4, 0.011729885, 0.008203536, -0.010414044, 0.04067603, - 0.021238575, 0.009034769, 0.013617322, -0.027075583, -0.009466452, - 0.017275032, 0.0076916837, 0.012865436, 0.004220411, -0.020244002, - 0.0016738477, -7.0939056e-4, -0.012395116, 0.025739536, 0.009575061, - 0.020238757, -0.024036964, -0.0075720306, 0.0017662499, -0.031452745, - -0.0045975163, 0.0069984565, 0.009951645, -0.028787868, 0.009209921, - 0.008522419, 0.015904762, 0.010108349, 0.023372198, -0.009626611, - -0.02865746, 0.009373202, -0.010153045, -0.0084532555, -0.0028753143, - -0.0035297459, 0.009620963, 0.00876869, 0.010671581, 0.0025077453, - -6.06283e-5, 0.004325366, -0.05031519, -0.007338947, -0.0046246485, - 0.006059133, 0.022581814, 0.02315819, 0.009693845, -0.006070471, - 0.003158735, -0.0036702044, -6.4909726e-4, -0.0030814032, -0.01817239, - -0.014205275, -0.022192013, 0.011528839, 0.019561427, -0.00539509, - 0.0037870107, -0.017233208, 0.0034777785, 0.023400398, -0.0019214083, - -0.010213043, -8.8147575e-4, -0.0059472574, 0.021929499, 0.01584522, - -0.027631149, -0.0020687045, -0.022124017, 7.113277e-4, -0.026035909, - -0.034057915, 0.04226027, 0.020883897, -0.0013884847, -0.011288698, - 0.010945944, 0.010702441, 0.007703584, -0.0013934495, -0.019036336, - -0.016131848, 0.021835303, 0.024097139, -0.019744819, 0.011654468, - 0.0042138314, 0.006611338, -0.026797788, -0.020759234, 0.026000967, - -0.02241465, 9.7036955e-4, 0.014710649, -0.041903306, -0.025651552, - 0.009338161, -0.03497961, 0.00875326, -0.001194271, -0.0152781615, - -0.0038557649, -0.017239805, 0.010665427 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.03525779, 0.059089873, 0.052582424, -0.04019863, 0.0011110449, - -0.017858366, -0.054467425, -0.034707416, -0.036957424, 0.014524087, - 0.001119028, 0.0062811635, 0.028438974, -0.012895557, -0.035914354, - -0.0013758591, 0.056450225, -0.029017942, 0.023720592, -0.037074048, - -0.017085189, -0.030714836, -0.024044141, 0.037221596, -0.008427056, - -0.04660975, -0.015509207, 0.04405131, 0.039269116, 0.033228327, - -9.973005e-4, 0.071132906, 0.00878512, -0.009093794, -6.384659e-4, - -0.033467896, 0.038166583, 0.018878177, -0.01492936, 0.013973183, - 6.04541e-4, -0.048594523, 0.014739882, 0.0059757144, 0.01057165, - 0.028140008, -0.011342897, -0.015346611, 0.005975964, -0.010818747, - 0.026570514, -0.024000613, 0.005420868, -0.032398596, 0.013262162, - 0.036121063, -0.029783404, 0.025939178, 0.037993796, 0.048354458, - 0.08499789, -0.0049410267, 0.06543127, -0.023177572, -0.006992492, - -0.04044325, 3.8312114e-4, -0.033124745, -0.019254087, 0.009435123, - -0.042557325, 0.014217445, 0.0016990082, -0.0040797866, -0.023528289, - 0.012831168, -0.02392956, -0.012363807, 0.03789056, -0.03764523, - 2.178023e-4, 0.025561275, 0.02682436, -0.028811732, -0.032135908, - 0.032401357, 0.022392865, 0.0034224514, -0.03981462, -0.07298063, - -0.023779035, -0.035807353, -0.050976887, 0.0010080074, 0.011543554, - -0.0014503052, 0.024665149, 0.018740065, -0.004249409, 0.019058403, - 0.01778476, 0.041032452, 0.014416163, -0.0018111754, 0.014184835, - -0.03556316, 0.0201957, -0.014399299, 4.933583e-6, 0.034421295, - -0.04038486, -0.08965616, -0.0085057495, -0.052143086, -0.014809197, - -0.047546495, -0.017462978, 0.032492846, -0.06135964, -0.023872802, - 0.026285175, 0.034341343, -0.025018513, -0.025966724, -0.014973956, - 0.07107167, -0.0672409, -0.040097307, 0.029796863, -0.012913917, - 0.026747385, -0.014658053, 9.0199296e-4, 0.018412352, 0.046208747, - 0.0053771855, -0.056893755, 0.030389117, 0.023866402, -0.048053797, - 0.015444456, -0.04925178, -0.03204367, -0.014108622, -0.0032934297, - 0.011074118, 0.060896374, 0.0046751653, 0.07063751, -0.04977593, - -0.015736587, -0.002752433, 0.029976837, 0.0027274278, 0.01342502, - -0.0078001926, -0.025231969, 0.0145944115, -0.01932769, 0.013633497, - -0.029828409, -0.0023201504, -0.004441444, -0.004482011, 0.0060710786, - 0.017946333, 0.036423862, -0.0190497, -0.007894675, 0.0141294915, - -0.01554019, 0.022456724, -0.044046745, -0.02472361, 0.0019424597, - 0.014897351, -0.057027724, -1.701627e-4, -0.046464622, -0.006845358, - -0.0019093392, 0.03426555, -0.047651805, 0.0046597766, 8.0628303e-4, - -0.008002378, -0.011913841, -0.02406087, 0.0016929709, -0.02949327, - 0.030468129, 0.02915997, -0.034838628, 0.03796245, 0.0010387899, - 0.06485714, 0.039069295, 0.015661601, -0.037424155, -0.0049577435, - 0.045401175, 0.013400978, 0.01041564, 0.06243768, 0.040748183, - 0.085328765, 0.01962169, -8.6980645e-4, 0.0109016355, -0.020035477, - -0.024266323, 0.0069835945, 0.0076385676, -0.05108538, 0.046508666, - -0.032293215, 0.05763785, 0.041204046, 0.04415653, 0.062214006, - 0.011714392, -0.006678246, -0.028557785, 0.027788691, 0.0026966073, - 7.6075515e-4, -0.032807387, 0.031033501, -0.036433205, 0.055066764, - -0.031890098, -0.0533597, 0.010004376, 0.021137377, 0.0102435965, - 0.031458866, 0.029961525, 0.014359068, 0.003513303, -0.01265584, - -0.040194217, 0.030035943, 0.013654058, 0.0020436873, 0.03888976, - 0.07971585, -0.032561272, 0.009762111, 0.024962055, 0.0021635331, - -0.023676988, -0.04227212, -0.04066533, -0.0042601414, -0.018315969, - 0.012011417, 0.040995732, -0.019130219, 0.06639482, -0.0039101425, - 0.027109785, 0.017927634, 0.026874816, -0.01473052, -0.007915268, - 0.042455893, -0.0058361497, 0.0440838, -0.073638596, -0.0024656968, - 0.010573899, -0.020994436, -0.044915505, 0.02417734, -0.08230015, - 0.0129269175, 0.00677982, -0.046931915, 0.006800693, -0.005378757, - -0.03470433, 3.689657e-4, 0.060644124, 0.021051789, -0.034944218, - 0.035636943, 0.043941703, 0.06346722, -0.083408564, 0.019650038, - 0.03692533, 0.02333706, 0.02297974, -0.026302971, -7.2583015e-4, - -0.0039874017, -0.027720325, 0.011615417, -0.06209613, 0.041741025, - 0.045062717, 0.007418672, 0.03783763, 0.047549374, -0.038298577, - 0.025756303, -0.0062782443, -0.007750507, 0.025690265, -0.020082932, - 0.025649907, 0.0069166054, 0.0025008158, -0.017479517, -0.006165322, - -0.038637046, 1.498042e-4, 0.022617305, 0.010326281, -0.046687987, - 0.0132528795, -0.0083143795, -0.015557537, -0.014519917, -0.012084808, - 0.012708479, 0.04215252, 0.048398476, -0.009035268, -0.041652918, - -0.009442013, -0.022410613, -0.006523626, -0.015758976, -0.016489666, - -0.057874307, -0.028123839, -0.01535957, -0.03129456, 0.0016773603, - -0.0048117945, 0.057530075, 0.042859193, -0.027392548, -0.033550836, - -0.010154274, -0.01167416, -0.024257274, -0.031618875, 0.014297526, - 0.010076932, -0.008005787, 0.012169154, 0.010936044, 0.0144110685, - 3.8704777e-4, -0.0027579616, -0.011626842, -0.06613384, -0.001841297, - 0.03320039, 0.04291471, -0.01738435, 0.027889937, -0.033152208, - 0.056244913, 0.013006178, 0.019608201, -0.015854847, -0.015774831, - -0.022046039, 0.016722666, 0.011483719, 0.010620326, -5.6853885e-4, - 0.034214366, 0.007774939, -0.021718444, 0.003349869, 0.053459913, - -0.014798175, -0.018130567, 0.086668745, 0.011370543, 0.027216127, - -0.02473513, -0.02094359, 0.011372914, 0.05194149, 0.04678188, - 0.004919405, -0.010939876, 0.046055414, -0.005355303, -0.0025749186, - -0.009447974, 0.051795322, 0.04725714, -0.027523872, 0.056500614, - -0.035309643, 0.021915404, 0.049989372, -0.0015623466, 0.0018592797, - 0.08543487, -0.015602353, -0.0035551211, -0.011182752, -2.1540673e-4, - 0.041422497, 0.022497313, -0.0450534, 6.941565e-4, -0.008847754, - -0.010119427, -0.014576978, 0.046544366, 0.032778203, -0.020033635, - -0.02114864, 0.07839105, -0.017950319, -0.008941277, -0.007115895, - 0.0055423626, -0.013828437, -0.07348823, 0.027850948, -0.022906486, - 0.023818536, 0.037575573, 0.022702442, -0.049782034, -0.015622167, - 0.06658511, -0.016583169, -0.014046571, 0.004863956, 0.01317954, - 0.0058135753, -0.032028355, -0.0023951298, 0.0096535245, -0.00416966, - -0.021749044, 0.0127709275, 0.015924605, 0.031868394, -0.0080273105, - 0.015899867, 0.04140949, -0.0020781872, -0.0018212219, 0.013195322, - -0.0066748615, 0.0396009, 0.038049527, 0.016613618, -0.024073895, - -0.010071754, -0.040763173, 0.011610323, 0.018447677, -0.0023128097, - -0.02150196, -0.046125107, -0.0040866365, 0.022544453, 0.04504519, - 0.006274305, -0.011634497, 0.03191727, -0.027553994, -0.051691435, - -0.011990395, -0.019841062, 0.03651195, 0.022745281, 0.023834681, - 0.053238526, 0.010599703, -0.02211644, -0.005435328, -0.0012417649, - 0.0038711233, -0.03698242, 0.026062202, 0.024734585, 0.0074609383, - -0.023120742, -0.021385107, 0.006332404, 0.05007356, -0.028468478, - -0.03360365, -0.0011203015, -0.012439163, 0.029931523, 0.032716636, - 0.008035434, -0.0026543243, -0.034534644, 0.05478813, 0.011334288, - 0.024057582, -0.054191362, -0.008319382, -0.029661376, 0.01572049, - -0.02019093, 0.028236033, 0.05285248, 0.02931509, -0.07009144, - -0.060935516, 0.038149294, 0.023949495, -0.035251886, -0.016349806, - -0.0013488679, -0.025435505, 0.016464341, 6.955647e-4, -0.008731224, - -0.010392757, 0.0011660265, -0.002583498, 0.01647178, 0.0039163814, - -0.028576918, -0.003235078, 0.01880825, -0.044193655, -0.046651017, - 0.019006522, -0.0038394858, 0.0451668, -0.0049034576, 0.021025864, - 0.0023198396, -0.002956829, -0.031248666, -0.06860386, 0.0011185431, - 0.0047796974, -0.01991045, 0.07167748, 0.036119614, -0.041287474, - -0.056851007, 0.041780375, 0.034284197, -0.015553874, -0.0022042885, - -0.0050829328, -0.024567682, -0.010598399, -0.012325005, -0.0026531147, - 0.08012315, 0.02175713, -0.10735243, -8.543196e-4, 0.043058164, - 0.002545353, -0.0027381377, 0.017473182, -0.05668511, 0.009621843, - 0.0020239712, -0.039727293, 0.0019981659, 0.043881234, 0.012804404, - -9.4157655e-4, -0.052301373, 0.023992624, 0.027607586, -0.025799254, - -0.005178767, -0.0026041172, 0.06623332, -0.028008237, -0.006985969, - 0.02548306, -0.04824907, -0.010865574, -0.021462245, 0.05451075, - -0.014147213, 0.029571956, 0.05087383, -0.06405102, -0.007086384, - 0.0026722949, -0.020655442, -0.039712217, 0.03037644, -0.03545424, - -0.028731452, -0.048465278, 0.038819008, -0.0030654084, 0.0014778065, - 0.0050179325, -0.0321544, -0.0019951276, 0.029970953, 0.04814611, - 0.02675245, 0.03345662, -0.047255628, -0.025228191, 0.010738574, - 0.019740457, 0.020188887, 0.0048973123, -0.045143742, -0.010823203, - -0.040357873, -0.01801694, 0.05762136, -0.022531109, -0.012864289, - -0.043355707, -0.06494038, 0.074732825, 0.005900022, 0.030275343, - 0.033249043, 0.03726503, 0.07997628, 0.01908408, 8.3100743e-4, - -0.044216853, 0.021515012, 0.015153866, 0.040600177, 0.02201227, - -0.006804997, -0.0034103629, -0.076285034, -0.02016458, 0.021887949, - 0.074277736, -0.05511345, -0.010243562, -0.024944985, -0.04666396, - -0.06665294, -0.03183482, 0.014984062, -0.054740086, -0.05501063, - -0.052449983, 0.0496509, -0.047570672, 0.033941526, -0.039819706, - -0.050307952, -0.02462994, 0.032081194, 0.0022955597, -5.1832525e-4, - 0.013760959, -0.011563554, 0.05434417, 0.0027778575, 0.0057017594, - 0.022198286, -0.011442047, 0.0082795, -0.005073475, 0.016913531, - -0.021015251, 0.019391458, -0.040468745, -0.0029229636, -0.055207066, - -0.03572165, -0.023093002, -0.006102884, -0.036685906, -0.037755292, - -0.0044022757, 0.011002852, -0.029105445, 0.03980716, 0.058409676, - 0.019429155, 0.014332569, 0.014155593, 0.0023859532, -0.040738255, - 0.05648631, 0.019662872, 0.006228739, 0.013858813, -0.05117539, - 0.0024699199, -0.005911747, -0.055818416, -0.008281891, 0.019417662, - -0.022264736, 6.401287e-4, -0.011524075, -0.0138615025, 0.016817799, - -0.017833663, 0.018763436, -0.04855127, -0.046386693, -0.0327216, - -0.0014357807, -0.020986617, -0.04541303, -0.020284645, 0.022356344, - 0.037840284, -0.04885725, -0.0022047316, 0.03284774, -1.2139043e-4, - -0.019735534, -0.007269135, 0.024969865, -0.0018054281, 0.01603971, - 0.007853014, 0.01358389, 0.024682054, 0.013947763, 0.03243071, - 0.013203271, -0.03191803, -0.0054821875, -0.01740732, -0.035263546, - -0.007940584, -0.0096779615, -0.014524428, -0.052519154, 0.06015199, - -0.008413246, 0.026096705, 0.02258394, 0.024964048, 0.048008855, - 0.0075742365, 0.032536075, 0.021832928, -0.0031500508, 0.0099692885, - 0.01738515, 0.03303442, 0.02511066, -0.05284108, -0.018745968, - -0.019684283, 0.014082788, 0.029394643, -0.027582875, -0.0011298514, - -0.020015124, 0.03241808, -0.029347526, 0.03504408, -0.045903474, - 0.034721803, 0.019788878, 0.022918751, 0.026807306, -0.011017822, - -0.0031102456, -0.01017856, 0.029618947, 0.05064222, 0.011834615, - -0.0032505973, 0.014387745, -0.09655079, -0.024486154, 0.044234764, - 0.010676267, -8.8128925e-4, 6.7184767e-4, 0.08194077, -0.042934556, - -0.017136354, 0.0044000326, -0.006572898, -0.0447158, 0.004742023, - 0.030131929, -0.027789367, -0.0154883815, -0.025105365, -0.008461542, - 0.012065672, 0.011801295, 0.0068832915, 0.025228932, -0.012026677, - -8.89762e-4, -0.022978917, 0.058034193, -0.017167231, 0.014283249, - 0.02576177, 0.0027917617, -0.014469325, -0.0508114, -0.026574768, - -0.0020068423, 0.0021527638, -0.08098643, -0.034428533, 0.0010742808, - -0.06586236, -0.0035228047, -0.011341419, 0.011331417, -0.025156593, - 0.041481707, -0.0013302527, -0.04123485, -0.0102033755, 0.018679423, - 0.06764534, -0.015479113, 5.9205684e-4, -0.033761412, 0.034301136, - 0.04095743, -0.02463436, 0.033683095, -0.0023537916, 0.013816061, - -0.003471849, 0.019982899, 0.006203209, 0.0194505, -0.007164113, - -0.009731586, 0.0059475834, 0.020001125, 0.0065111555, -0.011482294, - -0.033434633, 0.0037971553, -0.042092573, -0.0010975676, -0.007813885, - 0.034660943, 0.012189701, -0.00795197, 0.003968519, -0.04470893, - 0.030144496, -0.042638406, -0.033289984, -0.027452033, -0.020032244, - 0.0041635768, -0.0105767, -0.004487457, -0.043665476, -0.017377026, - -0.009140778, 0.011554387, -0.024992397, -2.5024647e-5, -0.007790905, - 0.018304387, -0.023681404, -0.04831044, -0.035868343, 0.06124218, - 0.019074751, -0.01572813, 0.0042717895, -0.028267276, -0.0041327886, - -0.0280919, -0.017323721, 0.03683865, -0.010449774, -0.02608565, - 0.019860966, 0.021315828, 0.061590467, 0.06991432, 0.007085715, - -0.021330213, -0.056010567, 0.03465768, 0.026633756, -0.03732822, - -0.0102363825, -0.019754268, -0.011451688, 0.0030133016, -0.06082392, - 0.06300184, -0.0066597466, 0.03473268, 0.032167427, -0.01500489, - 0.059676725, 0.010938022, -0.034524385, 0.013347954, -0.013858487, - -0.011900279, -0.009025108, -0.025560072, 0.017377904, -0.046508577, - 0.012924173, 0.007833425, 0.034838703, 0.004479909, 0.019337555, - -0.017459422, 0.021250343, 0.008791287, -0.0012518944, 0.02974991, - -0.040677793, 0.05809358, -0.018687174, -0.05520096, -0.008510556, - -0.043364882, -0.032504365, 0.0076093054, -0.04261037, -0.0068330592, - 0.040515877, -0.011068429, -0.015396764, 0.025864637, 0.021678839, - 0.0051174155, -0.018513892, 0.0034960732, -0.024531744, 0.019502226, - -0.020542286, -0.04643731, 0.039124124, 0.05678993, -0.063267805, - 0.038131386, 0.009517235, 0.036947552, 0.017152436, 0.010589802, - -0.063786365, -0.025847465, 0.023292148, 0.02003295, 0.043307398, - 0.011815428, -0.020677604, 0.025588054, 0.018459085, 0.060102705, - -5.74441e-4, -0.012928787, -0.019173156, -0.008121654, 0.012221341, - 0.033125255, 0.0057192976, 0.015025593, 0.046188835, -0.017223667, - 0.018138349, -0.038703796, -0.01800241, 0.013905524, -0.012877844, - 0.019400077, -0.039421253, 0.037018567, -0.0022011357, 0.08524995, - 0.012012159, -0.015984025, -0.04887557, -0.007113463, -0.037235025, - -0.0054053194, 0.038108718, -0.035914484, 0.024354924, -0.0070899753, - -0.03206789, -0.005955926, 0.026031282, 0.045259874, 0.0017011263, - -0.043931395, -0.0017496271, -0.069739826, 0.044300232, 0.004614743, - 0.0112225795, 0.0018712685, 0.0137858, -0.026640806, -0.029163329, - 0.033539753, -0.03165235, 0.009205157, 0.019477364, -0.0060124453, - 0.0032834313, -0.0073401104, -0.0039535407, 0.0176142 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 7.334739E-4, + 0.009664426, + 0.00692691, + -0.012212643, + -0.002537255, + 0.021937119, + 0.019016441, + 0.0017647138, + 0.027495999, + 0.01077928, + -0.0106466655, + 0.0058251624, + -0.024111949, + -0.028826462, + 0.018125344, + -0.037638124, + -0.012842005, + 2.4360968E-4, + 0.00698105, + 0.027676774, + -0.00562895, + -0.0021253459, + -0.0023954923, + 0.013318672, + 0.009262193, + -0.011338192, + -0.009325772, + -0.0010527377, + -0.016813962, + 0.011371459, + -0.0046205726, + 0.006882752, + 0.005093859, + 0.025168657, + -0.00395783, + 0.008885897, + 0.015744817, + 0.0030384692, + 0.009697327, + -0.022305341, + -0.00562372, + 0.0075979605, + 0.013570586, + -0.01083797, + -0.016143816, + -0.012049427, + -0.0028751392, + 0.027908128, + -0.012787459, + -8.87107E-4, + -0.005716244, + 0.012482619, + -0.0040163267, + -0.0016037897, + -0.0047923094, + 0.026109071, + 0.015858207, + -0.009669964, + 0.009198848, + 0.026557349, + 0.027185552, + -0.0010489135, + -6.3031004E-4, + -0.0015434322, + 0.01552771, + -0.0044838153, + 0.0020619396, + -0.02097812, + -0.017770771, + -0.010520144, + -0.008993377, + -0.02202555, + 0.013183324, + 0.038918167, + 0.004852881, + -0.0020349792, + -0.0015368521, + 0.012172561, + -0.007334004, + -0.011117818, + -0.0045138965, + -0.031790826, + 0.011378953, + 0.007959042, + 0.003540182, + -0.015069892, + -0.022042917, + 0.019749707, + 0.015143084, + -2.6562836E-4, + -0.005790856, + 0.023275826, + -0.012604282, + -0.025743539, + 0.019100087, + 0.027085774, + -0.019394873, + 0.005949912, + -0.029209606, + -7.0772495E-4, + 0.0074397232, + 0.0060562068, + -0.010310164, + -0.027215675, + -0.0042615226, + 0.011954803, + 0.016997468, + 0.014599372, + 0.02276935, + 0.0029246588, + 0.026477957, + 0.0085735805, + 0.010795164, + 0.024305912, + 0.0073506385, + -0.009762998, + -0.023916999, + -0.006629881, + -0.0063887564, + -0.0030444714, + -0.003748248, + -8.111396E-5, + -0.023460563, + 0.023065953, + 0.0137133, + -0.008915207, + -0.019692356, + 0.011642484, + -0.0036346847, + -0.0057318313, + -0.0050866487, + -0.015751341, + 0.03404422, + 0.0208017, + -0.028011978, + 0.025453834, + 0.017879376, + -0.00740684, + 0.03672381, + -0.012081062, + 0.028989553, + -0.006391848, + 0.0021935927, + -0.016473655, + -0.023953823, + 0.018237572, + 0.00385491, + 0.0030415228, + 0.021610066, + 0.015892036, + 0.0014679434, + -0.004571076, + 0.015702935, + 0.010286734, + 6.344076E-4, + 0.04422404, + 0.0036088927, + -0.0028295105, + -0.010041195, + -0.0046396395, + 0.016928343, + -0.02026781, + -0.014189952, + -0.007853391, + -0.023972934, + -0.032036614, + -0.023869736, + -0.028441235, + -0.019031081, + -0.014229954, + -0.0040528327, + 0.010175779, + -0.011986673, + 0.022992995, + 0.0072394456, + 0.0033221103, + 0.008458665, + -0.0069075706, + -0.0010729581, + 0.0058811367, + -0.00530578, + 0.024526402, + -0.028044557, + -0.008273422, + 0.0021662256, + -0.029076032, + 0.023241349, + -1.2676255E-4, + 2.473724E-4, + 0.034780007, + 0.008416399, + -0.0033865343, + -0.017872699, + -0.008001111, + -0.023745475, + 0.0040462054, + -0.02402544, + 0.035006657, + 0.0014903306, + 0.003618815, + 0.013676794, + 0.006480927, + 1.6138471E-4, + -0.005561263, + -0.015972264, + 0.014357842, + -0.008479985, + -0.00887052, + 0.02943047, + 0.012450418, + 0.0042454414, + 0.013616694, + 0.010088898, + 0.013313697, + 0.015381349, + -0.025151245, + 0.032454807, + -0.008612237, + -0.012581874, + -0.017988384, + 8.805028E-4, + -0.013870195, + -0.007520937, + 0.0026189077, + 0.028816825, + 0.0052149016, + 0.023303175, + 0.022473931, + 0.017291347, + -0.01445489, + -0.0027378788, + -0.0145995775, + -0.012394543, + 0.009014706, + 4.130836E-4, + 0.002050872, + 0.009618826, + -0.01630542, + 0.0075666644, + -0.006095599, + 0.011520799, + 0.0142222205, + -0.012462186, + -0.0071988627, + -0.03134874, + 0.037555728, + 0.029493814, + -0.028555984, + 0.006532665, + 0.012000041, + -0.032791544, + 0.017702667, + -0.013492629, + -0.011247964, + 0.011903466, + 0.032355573, + 0.008039509, + 0.002738725, + -0.035665866, + -0.007658226, + 0.022725051, + 0.023410637, + 0.007533039, + -8.6057256E-4, + -0.00261492, + -0.0021686, + -0.0031505898, + 2.536061E-4, + -0.017438682, + 0.009763537, + 0.009992786, + -0.015761035, + -0.017701967, + 0.018076958, + -0.0019902, + -0.04166703, + -0.017451845, + 0.0075132055, + -0.013921731, + 0.023179831, + -0.02720896, + -0.007584505, + -0.014667018, + 7.3137553E-4, + 0.024411932, + 0.027502077, + 0.0310541, + -0.007832374, + -0.019190928, + -0.0032656526, + 0.035531837, + -0.0017232765, + -0.0017271761, + 0.011678687, + -0.012083679, + -0.03636051, + 0.013512143, + 0.010317333, + -0.0066398587, + -0.0037692587, + -0.019165428, + -0.019341052, + 0.0033585916, + 0.026638765, + -0.00984762, + 0.0027508596, + 0.014819746, + 0.022350999, + -0.011904583, + 7.097297E-4, + 0.023145122, + -0.0069980323, + 0.0013808489, + 0.021595467, + -0.0041076266, + -0.005775624, + -0.004167602, + -0.0051592095, + -0.010852107, + -0.0093816435, + 0.015512879, + -0.0091873985, + -0.0063844332, + 0.019191967, + 0.009409211, + -0.026184253, + 0.010081519, + 0.008255194, + -0.01072619, + -0.007914743, + -0.0052573564, + 0.013882697, + -6.728787E-4, + -0.0039358907, + 0.01983862, + 0.023544043, + 0.01017674, + -0.012864614, + 0.012208415, + -0.010132292, + -0.009485309, + 0.011023089, + 0.026687004, + -0.02067437, + 0.008499044, + -0.007755828, + -0.017252013, + -0.011468613, + 0.0046781795, + -0.0117509235, + -0.0033462048, + 0.018575987, + -0.008817343, + -0.014228671, + -0.006006708, + -9.170987E-4, + -0.0013696854, + -0.0075087077, + 5.426086E-4, + -0.0129264565, + -0.006346659, + -0.0010618832, + -0.0063531436, + -0.0016692118, + -0.014212623, + -0.012523548, + 0.011643439, + -0.008734806, + 0.017686393, + 0.020628389, + 0.008186223, + 0.008490473, + 0.012619466, + -0.0012405964, + 0.009451401, + -0.04400531, + -0.004478999, + 0.029277785, + -0.012072055, + 0.016796011, + 0.020107113, + 0.024137236, + 0.01463835, + -0.015787529, + 0.018618928, + 0.0024473479, + -0.018283987, + 0.008174443, + -0.013506781, + -0.010265071, + 0.009116299, + 0.012636071, + -0.019154884, + -0.0072296574, + -0.0074862703, + 0.0033009783, + -0.010382201, + -0.011184728, + 0.031066699, + 0.02797583, + -0.009983902, + 0.022234991, + -0.03452645, + -0.013951359, + -0.023878912, + -0.01114097, + 0.011802027, + -0.028638482, + 0.03481462, + 0.023206359, + 0.007435695, + 0.014743059, + 0.011445358, + 0.01478053, + 0.0149515, + 5.824565E-4, + -0.020414207, + -3.6870457E-5, + 0.0013875732, + 2.8720137E-4, + 0.019111784, + -0.009323706, + -0.0012960071, + -0.03683351, + 0.017692158, + 0.0027431736, + 0.0045943013, + 0.009063327, + -0.024655446, + -0.018883558, + -0.010656584, + -0.010766465, + 0.00858365, + -0.015290518, + -0.005900284, + -0.005549268, + -0.010047011, + -0.025162697, + 0.008823665, + -0.004639067, + 0.009992691, + 0.010723236, + -0.022436386, + -0.011992993, + 0.019553617, + -0.015000054, + -0.01884054, + -0.02767081, + 0.004576318, + -0.008138722, + 0.013785311, + 0.004833803, + -0.0013995458, + -0.012785501, + -0.010958236, + 0.020366326, + 0.008169588, + -0.024523908, + 0.024983684, + -0.019156994, + 0.008067675, + 0.020739356, + -0.00941776, + 0.019439887, + -0.012624072, + -0.011520465, + -0.003417152, + 0.024612516, + 0.004282989, + 0.0011413211, + 0.026325988, + -6.869337E-4, + -0.017346563, + -0.011681229, + -0.0034122313, + -0.008929888, + 0.012019093, + 0.008259277, + 0.01854936, + -0.00993295, + -0.017567264, + -0.007889229, + 0.05105636, + 6.589726E-4, + -0.015790742, + -0.025017241, + 0.020621788, + 0.018176269, + 0.0076200655, + 0.018452112, + 0.0024429236, + -0.045914635, + 0.0042598145, + 0.020112766, + 0.01252411, + 0.007037871, + -0.009612373, + 0.029488774, + -1.3050181E-4, + -0.0049322, + -0.008665071, + -0.020671248, + 0.021496002, + -0.018528983, + -0.041571055, + -0.023302115, + -0.0018899691, + -0.0012724646, + -0.030441634, + -0.025026545, + 0.026149368, + 0.009888751, + -0.008146018, + -0.0066917175, + 0.01860431, + 0.03112108, + -0.0066250344, + 0.0014534984, + -0.016818365, + -0.0065317517, + -0.0079921745, + 0.011734599, + -0.012555667, + 0.02548955, + -0.003039221, + -0.009579537, + 2.4216785E-4, + 0.0014208367, + 0.019891022, + 0.0051482823, + -0.008936436, + 7.7403494E-4, + 0.0072237807, + -0.0054158913, + 0.008868587, + -0.016656023, + -0.01603278, + 0.023091372, + 0.013132958, + -0.03203748, + -0.02665448, + -0.010865901, + 1.9262433E-4, + -0.0035599817, + -0.005389808, + 0.0076360186, + -0.03482835, + -0.0010806168, + -0.03348532, + -0.0034349042, + 0.010514973, + -0.026900185, + 0.039704084, + 0.010504901, + 0.01731017, + 1.13429116E-4, + 0.040904313, + -0.010233992, + 0.007417497, + -0.035109393, + -0.009737922, + -0.008452043, + -0.02090458, + -0.030273184, + -0.026223967, + 0.016806588, + 0.0075588496, + 0.012153438, + 0.022251857, + 0.0038300415, + 0.0055016573, + 0.0069596167, + -0.010815593, + 0.023455009, + -0.021128537, + 0.0115890065, + 0.009651018, + -0.029104333, + -0.015709521, + -0.0294362, + 0.011294588, + -0.007312886, + -0.0012004031, + 0.02446414, + 0.008909464, + 0.015889544, + -0.014896511, + 0.0046601263, + -0.014457534, + 0.0075185187, + 0.013724841, + -0.027398035, + -0.0031628322, + 0.007627832, + 0.0041527567, + -0.010825236, + 0.010711709, + 0.017334864, + -0.0071737682, + 0.004588045, + -2.470828E-5, + 0.004712544, + 0.012144625, + 0.012493875, + -0.0050549167, + -0.025650337, + 0.0023096001, + 0.009514411, + 0.002258056, + -0.008917222, + 0.025433866, + -0.032370802, + -0.020589404, + -0.011630038, + 0.01700536, + 0.01652968, + 0.019665107, + -0.022972172, + 0.013952772, + 0.01465828, + -0.006398849, + 2.423215E-6, + -0.016456505, + 0.0026016005, + -0.014858164, + 0.009769496, + -0.018110296, + -0.011093281, + 0.0051646475, + -0.021813784, + -0.01187067, + 0.00938992, + -0.016536336, + 0.010960323, + 0.005700881, + 0.020763148, + -0.0119359745, + 4.96622E-4, + -0.019909034, + -0.023136152, + 0.049594842, + -0.008284443, + -0.024024256, + -0.01883022, + 0.019325897, + 0.006359438, + -0.019959768, + 0.025926124, + 0.009192613, + 0.019905366, + -0.00875076, + -8.847167E-4, + -0.02137231, + -0.024205392, + 0.013016448, + -0.008216086, + 0.013899209, + -0.016541649, + 0.00847075, + 0.008186892, + 0.019907957, + 0.013507592, + 0.010679063, + 0.006843542, + 0.005821834, + 0.01399995, + 0.016940953, + 0.025856799, + 0.012059709, + 0.010493991, + 0.0017291054, + -6.638015E-4, + 0.027196588, + -0.02794196, + -0.010331048, + 0.0021381036, + 0.001815641, + 0.008383824, + -1.9552103E-4, + -0.0022069062, + -0.014088248, + 0.005182227, + -0.0044801305, + -0.008874163, + 0.036240585, + -0.0030426595, + 0.0024012746, + 0.016145442, + -0.003896372, + 0.015149773, + -0.013201418, + -0.012552584, + -0.023740575, + 0.025675103, + 0.01923331, + -0.0045787347, + -0.01628126, + 0.008075957, + 0.015622814, + -0.007153289, + -0.021915331, + 0.018128967, + -0.019769965, + 0.0068646516, + -0.0016220731, + -0.0047879643, + 0.015476716, + 7.845733E-4, + 0.019764358, + 0.0051213177, + 0.012808101, + 0.004889912, + -0.0031818587, + -0.010429491, + -0.009691213, + 0.005409578, + 0.013965036, + 0.015611148, + -0.032405347, + -0.030594336, + 0.011136245, + 0.010573101, + 0.016707946, + 0.0035231053, + -0.018728131, + 0.00546423, + -0.011326769, + 0.00796029, + 0.010190503, + -0.021355916, + 0.0045834924, + 0.004621388, + -0.011830927, + -0.0034281397, + 0.0057460233, + 0.007629506, + 0.022474289, + -0.009463767, + 0.019925868, + -0.0066197244, + -0.0064424053, + 0.001408754, + 0.0039387853, + -0.015987566, + 0.011449176, + -0.016292442, + 0.00477676, + 0.0054740603, + 0.03316756, + -0.03701235, + -0.01360846, + -0.0035896644, + 0.015733507, + 0.0060682856, + 0.015361597, + 0.013809508, + -0.0037977418, + -0.0039654165, + -0.017843483, + -0.023560936, + -0.015256085, + 0.013336945, + 0.013806769, + 0.0017890024, + -0.0010000815, + -0.0116236685, + 0.007624468, + -0.025411183, + -0.0019829834, + 0.0033562807, + -0.004810929, + 0.021793276, + 0.019138409, + 0.0020107888, + 0.0019714097, + 0.016968431, + -0.011197562, + -0.0021668486, + 0.02591884, + -0.02239317, + -0.027379267, + -0.014521402, + 6.722094E-5, + 0.021713885, + 0.004815223, + -0.012185163, + 0.019447386, + 0.016297799, + 0.011690212, + 0.0031064386, + 0.016174937, + -0.0068245083, + -0.018064251, + -5.9092673E-4, + 0.009756057, + 0.031958498, + -0.0022637956, + -0.015200567, + 0.0041249543, + -0.034623362, + -0.024934754, + -0.0025345222, + -0.007822359, + -0.008567597, + 0.006637759, + -0.01226129, + -0.011062762, + -0.042205125, + -0.013743254, + -0.021155069, + -0.014500691, + -0.012560877, + -0.0238955, + -0.008761198, + 0.016771428, + 0.023002097, + 0.005593816, + 0.024497502, + 0.025253471, + 0.0065017412, + -0.02201616, + -0.0055325036, + 0.01219768, + -0.0049735513, + -0.0106033245, + 0.012718262, + -0.025741188, + -0.0139560355, + -0.019937519, + -8.9236425E-4, + -0.009951257, + -0.017801337, + 0.037508544, + -0.016451113, + -0.020409117, + 0.0026305069, + 0.012587612, + 0.010175182, + -0.018929292, + -0.013429856, + -0.010898539, + 0.015001077, + -0.006529873, + -0.010277067, + 0.008419272, + -0.010464973, + -0.006024956, + 0.046584513, + -0.008646431, + -0.013924201, + -0.019059164, + 0.009212058, + 0.0134589365, + -0.001073461, + -0.009710624, + -0.0046198624, + 0.004167884, + -0.008998726, + -0.02027364, + 0.018324735, + -0.0020899877, + -0.009105143, + 0.006781994, + 3.302835E-5, + -0.03017969, + 0.009132786, + 0.021847084, + 0.021964885, + -0.049219307, + 0.001530055, + 0.001776064, + -0.015902925, + 0.0069448454, + -0.0026906242, + -0.0049526915, + -0.007281457, + 6.331538E-4, + 0.02167395, + -1.6130073E-4, + -0.029495317, + 0.036278877, + 0.009879078, + -0.044285532, + -0.004652873, + 0.041515723, + 0.009625145, + 0.0071815015, + -0.009788374, + 0.014856779, + -0.008831385, + -0.011727221, + 0.009020766, + -0.010664577, + 0.0058379555, + 0.003465145, + 0.003975846, + 0.010259131, + -0.0073337173, + -0.015846467, + -0.003147273, + 0.0037879117, + 0.014687491, + -0.027578877, + -0.0145396795, + -0.002923903, + -0.0106910495, + -0.013362908, + 0.017837808, + 0.005785676, + -0.012800716, + -0.015584894, + 0.012989822, + -0.0061260876, + -0.0039851624, + 0.020328432, + 0.023145273, + -0.013525023, + 0.008466831, + -0.009140057, + -0.0024724668, + -0.0076847533, + -0.0018039113, + 0.011573897, + -0.018951004, + -0.0017133744, + 0.008483748, + 0.014025503, + -6.607066E-4, + 0.017064951, + 0.022977754, + 0.014020569, + -0.015924364, + -0.00885123, + -0.0021303154, + -0.0028402884, + 0.023618732, + -0.0115590785, + -0.003311846, + 0.00840181, + -0.018765362, + -0.003297626, + -0.002316978, + 0.01050503, + -0.0065492997, + 0.004281043, + -0.018700246, + 0.015993757, + -0.0036793016, + -0.018093532, + -9.568129E-4, + -2.3227911E-4, + -0.017287819, + 0.0032919806, + -0.014819996, + -1.681874E-4, + 0.0051800767, + -0.0045641717, + 0.028052386, + 0.0064622476, + 0.015467435, + -0.009921834, + 0.0048996303, + 0.0052048545, + 0.0076410947, + -0.014159113, + 0.014093526, + -0.0039671, + -0.0050673196, + 0.022481125, + 0.0040711695, + -0.041623075, + 0.014396251, + 0.0034040199, + -0.020209476, + -0.009388515, + -0.013949198, + 0.015979165, + 0.015750408, + -0.012044075, + 0.018032087, + -0.0021123025, + 0.018392492, + -6.344048E-4, + 0.002287293, + 0.004306472, + 0.0022707384, + -0.017841365, + -0.003862819, + 0.013714176, + -0.0069906656, + -0.031693567, + 0.015099775, + 0.0027262792, + 0.012289906, + 0.011661204, + 0.025728818, + 0.034097027, + 0.014646156, + -0.004202983, + -0.0016391706, + 0.007156902, + 0.0051250914, + -0.023413194, + -0.016909102, + 0.013526379, + -0.005254698, + 0.0031532005, + -0.020281054, + -0.0073223086, + -0.008935277, + -0.0016333875, + 0.0027679165, + -0.0140566025, + 0.0052036145, + -0.045908697, + -0.013205907, + 0.023945183, + -0.02020343, + -0.01984558, + 0.01387978, + 0.02987104, + 0.0203438, + -0.009317424, + 0.02153923, + 0.015464113, + 0.015775846, + 0.005975485, + 0.0011875845, + 0.030872326, + -0.0032055401, + 0.011271233, + -0.017473308, + 0.0039143944, + 0.0152446, + 0.017761841, + -0.012948139, + -0.0016924408, + -0.010546389, + -0.008405795, + 0.002665624, + -0.018870173, + -0.0065995767, + -0.0022923015, + -0.021517377, + -0.006672494, + -0.013269374, + 0.01073659, + -0.0019838314, + -0.031134574, + 0.008538464, + 0.021084597, + 0.0077693295, + 0.0032459365, + -0.010865828, + 0.021844866, + -0.03033996, + 0.0027001235, + 0.011102822, + 0.0010986459, + -0.004001471, + 0.022432419, + -0.015252773, + 0.009986308, + -0.0027315784, + -0.007978734, + 0.029816207, + 0.03304554, + 0.0033396888, + 0.005552649, + 0.006226538, + 0.023518557, + -0.002669254, + -0.003387156, + 0.031329736, + 0.0062053953, + 0.016641743, + 0.0024531952, + -0.0094115, + -2.6802684E-4, + -0.004312742, + -0.033254858, + -0.0037912964, + 0.0071876557, + 0.054483216, + -0.010126408, + -0.0059589595, + -0.0077748825, + 0.0044144425, + 0.0073301685, + 0.007445626, + -8.247738E-5, + -0.027655426, + -0.005649531, + -0.018202448, + 0.015759528, + -0.033531137, + 0.008882193, + -0.0067046173, + -0.008490268, + -0.024664443, + -0.029248307, + 0.0025509303, + -0.02956368, + 0.02948954, + 0.0090433275, + -0.019673076, + -0.011922729, + -0.02062625, + 0.026793376, + 0.010604105, + 0.039410237, + -0.0039719967, + -0.012311097, + -1.6789569E-4, + -0.008683929, + -0.014747029, + 0.004566299, + 0.02844564, + -0.0057081506, + 0.004318471, + -0.01547753, + -0.015872492, + -0.006832963, + -0.026567644, + 0.0036787835, + -0.0012970642, + -0.004834028, + 0.0037276892, + -0.002894658, + -0.02785522, + -9.470796E-4, + 0.029372705, + -0.017403184, + -0.02452251, + -0.007448501, + 1.5314986E-4, + 0.011016025, + -0.012793671, + -0.0074919458, + -0.0011870578, + -0.010102703, + -0.031052254, + -0.020857802, + 0.0143123465, + 0.022325076, + -0.025478348, + 0.010283856, + 0.012049406, + -0.005203462, + 0.020964097, + 0.024753379, + -0.0048327027, + -0.0058936644, + -0.020224603, + 0.016915001, + 0.0019171467, + -2.8976242E-4, + -0.015323364, + -0.019600328, + 0.008107695, + 0.007190018, + 0.0044893143, + -0.007230263, + 0.007965832, + 0.01012779, + 0.00726372, + -0.0041166847, + -0.0067429203, + -0.008559762, + 0.0022897304, + -0.0022070964, + 0.0017682991, + -2.46944E-4, + -0.0061388826, + 0.017691249, + 0.011428352, + 0.01313907, + -0.006391586, + 0.020236375, + 0.001374838, + -0.0034376066, + -0.033509754, + -0.012113215, + 0.0012335365, + -0.0059737465, + 0.0027004539, + -0.005281748, + 0.008282977, + 0.008782404, + 0.009542753, + -0.0031835635, + -0.010142671, + 0.0012406518, + -3.9323373E-4, + -0.017055828, + -0.019786453, + 0.007504388, + -0.002622843, + 0.0025152178, + -0.030242115, + -0.030063657, + -0.014994884, + 0.016862215, + -0.016869644, + 0.005093505, + 0.017744416, + 0.014626539, + 0.0034397235, + -0.015272153, + -0.011602547, + 0.0019762586, + 9.7464526E-4, + 0.010951368, + -0.025576515, + 0.008213604, + -0.011267092, + -0.0057968143, + -0.005804501, + 0.009986909, + 0.0040173065, + -0.0074009523, + -0.0013192579, + -0.003894825, + 0.033450846, + 0.005486325, + 0.0014871521, + -0.047987375, + 0.013143255, + -0.01530561, + 0.0109588485, + 0.011483406, + 0.017709738, + 0.004898988, + 0.008162804, + -0.0035869295, + -0.0025416191, + 0.019995803, + 0.027238525, + 0.007556564, + 0.007062804, + 0.013325261, + -1.0345249E-4, + -0.0068259123, + 0.008949651, + 0.01586897, + 0.022275018, + 0.04700127, + 0.018399065, + 0.025324723, + 0.020423923, + 0.0114007415, + 0.011682355, + 0.031832635, + 0.011147572, + 0.008154568, + 0.023482164, + -0.02210084, + 0.024712909, + -0.007511771, + 0.0033495834, + 0.008607177, + 0.009088229, + 0.007764924, + 0.010794437, + -0.015403257, + 0.01344385, + 0.02059296, + -0.020665795, + -0.011320407, + -0.0013346728, + 0.018243188, + 1.9491438E-4, + 0.008538581, + 0.032478135, + -0.006330845, + 0.005614412, + 4.7838053E-4, + 0.0049487473, + 1.380731E-6, + 0.0013487608, + -0.016221749, + -0.03713029, + 0.022346487, + 0.006048784, + -0.017132854, + -0.008157751, + -0.004103662, + 0.010834133, + 0.0031930676, + 0.0015968367, + -0.023225203, + 3.410914E-4, + -0.0014630229, + 0.015437447, + -0.0074144914, + 0.007834812, + -0.014571578, + -0.004372546, + 0.0012854288, + -4.227758E-4, + 0.00266591, + 0.0026582573, + -0.00887602, + -0.022196392, + 0.015594743, + 4.1224738E-4, + 0.03299557, + 0.0011578319, + -0.0063435, + 0.022560328, + 0.015237903, + -0.0037977886, + 5.034314E-4, + 0.019837145, + 0.0021171602, + 0.018628875, + 0.00752651, + 0.015409968, + -6.518007E-4, + -0.0022837995, + -0.0074761477, + 0.0070002447, + 0.0024861451, + -0.0043943557, + -0.00291574, + 0.0038575667, + 0.015292375, + -0.014325706, + 0.01127761, + -0.011403018, + 0.020524025, + -5.4457074E-4, + 0.022192031, + -0.006597216, + 0.024168056, + -0.0010805299, + -0.001621593, + 1.6965315E-4, + 0.039332192, + 0.017907245, + 0.014961452, + 0.002759978, + -0.004034897, + 0.01838326, + 0.01394847, + 0.001557501, + -0.0029723805, + -0.0017976515, + -0.026043808, + 0.0072990474, + -0.016285123, + 0.0067184046, + 6.034517E-4, + -0.010605183, + -4.379932E-5, + -0.017708363, + -0.0083028665, + 0.012370242, + -2.8576344E-4, + -0.0027556452, + 0.017795634, + 0.0294278, + -0.005805344, + 0.012917104, + -0.021108085, + 0.028249672, + 0.0025082675, + -9.136517E-4, + -0.0027813376, + -0.0059352447, + 0.015205341, + 0.014799742, + -7.523817E-6, + 0.009808814, + -0.0061076297, + -0.02483419, + -0.007229082, + 0.031492814, + -0.013311251, + 0.01327971, + -0.0059926, + 0.004834778, + -0.008444795, + 0.016031506, + 0.025708761, + -6.005558E-5, + -0.0055924323, + 0.01262609, + -0.012734975, + 0.002398056, + -0.03422626, + -0.0020424742, + -0.00847245, + 0.011435326, + -0.017097035, + 0.002603977, + -0.016359784, + -0.0049248366, + -0.022716302, + -0.0066481414, + -0.0052024615, + -0.017101025, + -0.030067414, + 0.002059743, + 0.014124067, + 0.032224346, + 0.024713757, + -0.033371933, + 0.0153814135, + 0.005884935, + 0.0019772116, + -0.0066735754, + 0.0036402552, + -0.009429835, + -0.0035569682, + 0.025606014, + -0.001022096, + -0.008078831, + 0.004192119, + 0.0019053423, + 8.278957E-4, + 0.0012754143, + -0.0067765, + 0.011235714, + 0.013074428, + -0.008844815, + -0.006432044, + 0.035382017, + 0.032565795, + 0.006344489, + -1.1504117E-4, + 0.028685315, + -0.015337836, + 0.019959508, + 0.022950249, + 0.0075690607, + 0.039522834, + 0.013309653, + -0.021776918, + 0.007851116, + 0.004279409, + 0.006206861, + 0.0032927676, + 0.021137236, + 0.024409084, + -0.02916411, + -0.010921367, + 0.020390283, + -4.0433883E-5, + -0.0016572749, + -6.110536E-4, + 0.015965847, + -0.015557598, + -0.011907741, + 0.009449367, + 0.0021672004, + 0.017655432, + -0.014471943, + -0.005161897, + -0.0055651576, + -0.010346831, + 0.0028899284, + -0.012181049, + 0.007953327, + -0.031001812, + 0.02959145, + 0.007715494, + 0.016075937, + 0.0232883, + 3.8451457E-4, + -0.018175958, + -0.013152379, + 0.0029508714, + 0.028030293, + -0.016577285, + -0.01084739, + 0.004174356, + 0.001477136, + 0.005394534, + -0.011550424, + 0.024073586, + -0.006342138, + 0.02008206, + 0.0013129053, + -0.0013956447, + 0.029482715, + 0.021497713, + -0.024314657, + -0.012791873, + -0.0051916465, + -0.001850279, + -0.01590254, + 0.012123162, + -0.012543807, + 1.1074973E-4, + 0.022807859, + -0.00933081, + 0.03611894, + 0.024889987, + 0.0076150023, + 0.02502736, + -0.016556293, + -0.008423319, + -0.0207818, + 0.009959452, + -0.0052231317, + 0.015940487, + -0.0071885767, + -0.0075095496, + 6.706943E-5, + 0.004720327, + 0.005477557, + 0.005203808, + 0.029949395, + 0.005696508, + -0.004312789, + -0.006985246, + 0.015290574, + 0.0043128747, + -0.022300368, + -0.007102197, + 0.007717029, + 0.011394539, + 0.0031464736, + 0.013128726, + -0.008013424, + -0.0011548818, + -0.009408277, + 0.004146764, + 0.007870675, + -0.023151897, + 0.0063409577, + -0.008681586, + 0.038780104, + 0.02539176, + -0.033433605, + 0.004303662, + 0.030308267, + -0.034147378, + 0.032617636, + -0.018060701, + 0.0034788982, + -0.01339906, + 0.015661048, + -0.018479837, + 0.022746366, + 8.24487E-4, + -0.012995669, + 0.009378782, + -8.772504E-4, + 0.0057188664, + -0.006034146, + 0.027453367, + 0.016304929, + -0.013090451, + -0.005271513, + -0.004833896, + 0.0059180893, + 0.01951547, + -0.014356876, + -0.0052053477, + 0.00994782, + -0.020652063, + -0.021984993, + 0.01777158, + -0.0336143, + 0.014203072, + 0.010650916, + 0.007900076, + -0.00136041, + 0.009705851, + 0.006113091, + -0.0021270944, + -4.6134777E-5, + -0.0101592755, + 0.017553635, + -0.0018531417, + -0.015164904, + 0.009756624, + -0.025791677, + -0.007385154, + 0.02504959, + -0.029583624, + 0.015226945, + 0.029107433, + -0.011818133, + -0.011085914, + -0.0052864216, + 0.0025912162, + 0.02053351, + 0.005737653, + 0.008044899, + 9.181994E-4, + 0.0035959259, + 0.006464066, + 0.009387299, + 0.026970308, + -0.0031757734, + 0.020758312, + -0.0031781534, + 0.011939832, + -0.01296963, + -0.009922652, + 0.012600731, + -0.009665363, + 0.0015768338, + -0.015371467, + -0.0040452457, + -0.0042681773, + 0.0059208963, + 0.0014355157, + -0.016629849, + -0.013552615, + 0.01247462, + 0.025378443, + -0.0079336595, + 0.0107899355, + 0.012396078, + 0.017426854, + -0.0026112222, + 0.026587581, + 0.024626276, + -0.0065819644, + -0.023338135, + 0.009729646, + 0.026763447, + -0.01730158, + -0.00681324, + 0.007347537, + -0.049132172, + -0.013171195, + -1.4161161E-4, + -0.021822771, + -0.011149332, + -0.0036404864, + 0.015386285, + 0.013473191, + -0.024416557, + 0.0065063075, + 0.005209765, + 0.024753736, + -0.017195476, + 0.013921916, + 0.017570917, + -0.0022330994, + -0.021770492, + -0.0051295804, + 0.011900058, + 0.024619719, + -0.008484076, + -0.016455613, + -0.011113066, + 0.016063454, + -0.0010494989, + 0.0011741696, + 0.030962033, + 0.006695975, + 0.034460258, + 0.029558558, + 7.0951506E-4, + -0.003256465, + 0.0010015442, + -0.021855893, + -0.009539082, + 0.027683582, + -0.023637421, + 0.0064695138, + 0.01575522, + 0.015025281, + -0.002984452, + -0.01906143, + 0.007210133, + 0.009882862, + 0.023987267, + -0.020744251, + 0.015746044, + 0.027732775, + -0.009865676, + -0.006379923, + 0.0052647437, + 0.0065355115, + -0.01335209, + -0.0023678192, + -0.003199591, + 0.018094186, + -0.009253303, + -0.009958296, + -0.017586824, + -0.012912176, + -0.0047127907, + 0.030180804, + -0.01710328, + 0.019885572, + 0.0062333415, + 0.017516943, + 0.007673303, + 0.016738366, + -0.0017409495, + 0.013368284, + 0.014210732, + -0.026826782, + -0.018336318, + 0.0077071646, + -1.2109059E-4, + 0.014065773, + 0.008225622, + 0.036900118, + 0.0012022918, + -0.015158094, + -0.022646867, + -0.013649741, + 0.0077029443, + -0.0030131103, + -0.0034367873, + 0.015325732, + 0.011553425, + -0.017041102, + 0.0056234635, + -0.02172325, + -0.0030189361, + -0.0064892895, + 0.012188767, + 9.7140546E-5, + 0.017876608, + 0.003541576, + -0.0149539495, + -0.01454018, + -0.012532722, + -0.0022246258, + -0.004807048, + -0.004514324, + -0.0104542915, + 0.021772549, + 0.01689681, + 0.0058313115, + 0.010586379, + 0.009087892, + -0.0075086607, + 0.012124104, + 0.0054071266, + 0.01452397, + -0.009086956, + 0.02273325, + 0.0031873048, + -0.0079475315, + -0.022019941, + -0.0019399282, + -0.001910119, + 0.0014155556, + 0.003039683, + 0.002599825, + 0.004801617, + 0.0072357235, + -0.0025646354, + -0.0064519625, + 0.0027060923, + -0.0090156505, + 0.014401712, + 0.01023888, + -0.035467487, + 0.012872545, + -0.006546104, + -0.020326283, + -0.0058788992, + -0.019763418, + -0.038549546, + 0.0075162905, + -0.0025740582, + -0.011078149, + 0.054412283, + -0.007111947, + -0.020575073, + 0.0022964592, + -0.021113956, + -0.033690013, + 0.019985678, + 0.010506864, + 0.009261156, + -0.006830745, + 0.0052870996, + -0.01912179, + 0.009416541, + 0.006550789, + -0.022144098, + 0.0053982525, + -0.019026767, + 0.009542294, + -0.0043483344, + -0.031981103, + 0.037520397, + -0.0134727, + 0.007297156, + -0.011448011, + 0.008039391, + -0.012659433, + 3.486629E-4, + -7.916482E-4, + -0.01241406, + 0.012306978, + 0.015794437, + -0.013271208, + 0.01627454, + -0.002320608, + 0.013553024, + 0.024934784, + 0.005645635, + 0.020708963, + -0.011345131, + -1.746779E-4, + 0.0026382764, + -0.014847861, + -0.015158245, + 0.007853572, + -0.005153025, + -0.0017652926, + 0.020793755, + -0.0050747693, + 0.014523973, + -0.020586122, + 0.0190264, + 0.011564055, + 1.399486E-4, + -0.023977112, + -0.0046183835, + -0.00404537, + -0.0024575717, + 0.0062443176, + -0.019841501, + -0.011651875, + 0.005120087, + -0.0057792943, + 0.008873267, + -0.036781907, + -0.00709335, + 0.02911444, + 0.020619, + 0.0028190627, + 0.0060934373, + 0.013338942, + -0.013707318, + -0.003898577, + -0.01908702, + -4.8529077E-4, + 0.0127667645, + 0.004454457, + 0.0016136706, + 0.001680065, + 0.0068759504, + -0.013293099, + 0.010987336, + -0.018442784, + -0.006729603, + 0.019200353, + 0.01920857, + 0.006489814, + 0.009317796, + 0.011880907, + -0.010199166, + -0.0037941304, + -0.0265484, + -0.0067327134, + 4.914395E-4, + 0.011164337, + -0.015421464, + 0.01686413, + -0.01621758, + -0.023895105, + 0.016920948, + -0.0032771078, + 0.013044449, + -0.0064804177, + 0.016444407, + -0.0021434368, + 0.0051164017, + 0.005227991, + -0.018839765, + 0.013480342, + -0.020165268, + -0.03622504, + -0.017679444, + -0.004145841, + 0.014142818, + -0.00747517, + -0.011119101, + -0.008043321, + 0.018981952, + -0.0028571913, + -0.0071641738, + -0.0010426542, + -0.007018933, + 0.012590877, + -0.009126651, + 0.012406169, + -0.02022343, + 0.033767402, + -0.02253751, + 0.01904841, + -0.013990884, + 0.005441533, + -0.010227587, + 0.007949277, + -0.011232569, + -0.019000554, + -0.014697404, + 0.0057137483, + 0.011396827, + 8.823319E-4, + 0.011303172, + -1.5268599E-4, + -0.0065539833, + 0.0033787293, + -0.028744731, + -5.118008E-4, + -0.014291859, + -0.027897945, + 0.028839177, + 0.0029449966, + -0.0069192303, + 0.01702386, + 0.0031000588, + -0.0040052757, + -0.022685796, + 0.010123285, + -0.0055022985, + 0.004817146, + 0.009748741, + -0.022029351, + -0.0029686368, + -0.0135527905, + -0.022289304, + -0.019630967, + -0.017481895, + 0.009310804, + 0.037101902, + 0.002451882, + 3.5228548E-4, + -0.009155834, + -0.012107566, + 0.001445911, + 0.026936943, + 0.01192742, + 0.02108806, + 0.013034515, + 0.01089517, + 0.0030136877, + -0.011689497, + 0.01781165, + 0.00367159, + -0.012205218, + 0.028963663, + -0.021952229, + -0.02179398, + 0.025852265, + 0.006023012, + -0.003371342, + -8.1154506E-4, + 0.00792123, + 0.019475142, + 0.011658573, + -0.01760681, + -0.012638375, + -0.013896607, + 0.015887078, + 0.0014352003, + 0.0013023388, + 0.023244647, + -0.014063996, + -9.929846E-4, + 0.012055307, + -0.027735049, + 0.016664462, + -0.023162637, + 1.2106581E-4, + 2.7220644E-4, + 0.02151076, + 0.0046500023, + 9.919553E-4, + -0.0029765423, + -0.017278839, + 0.002114504, + 0.02164886, + 0.0043819193, + 0.0010872739, + -0.025120143, + 0.009814763, + -0.018417923, + 0.0063712792, + 2.2170918E-4, + 7.58165E-4, + -0.03120888, + -0.023075802, + -0.015744593, + 0.002067296, + 0.0215141, + -0.009582863, + -0.006383889, + 0.011082259, + 0.014011314, + 0.024250375, + -0.0021520755, + 0.012607712, + 0.012248222, + 0.018192561, + -0.016277315, + -0.028322969, + -0.02220114, + 0.0077778664, + -0.007708894, + 0.008691293, + -0.041393816, + -0.018824983, + -0.015060387, + -0.029121319, + 0.019016037, + -0.008679346, + 0.02816909, + -0.012694946, + 0.018493216, + 0.004143327, + -0.007194945, + 1.7765728E-4, + 0.009694257, + -0.021547725, + -0.010266067, + -0.028317044, + -0.005359866, + 0.02058259, + 0.047197897, + -0.012739092, + -0.014037464, + 0.014752322, + -0.00870403, + -0.0057647577, + -6.215342E-4, + 0.0018626672, + -0.015709003, + -3.2958717E-4, + -0.01729463, + 9.3098846E-5, + 0.013526616, + -0.0049512126, + 0.034875777, + 0.0058125234, + 0.011713677, + 0.0066081835, + 0.00711207, + -0.012125055, + 0.004670823, + -0.003598796, + -0.0031718446, + 4.8567553E-4, + -0.004306319, + 0.027114378, + -0.013194129, + 0.006555712, + 0.0070369854, + -0.0020609468, + 0.012789502, + -0.017313069, + -0.018062733, + -9.059385E-4, + 0.0018202403, + -0.005621134, + -0.031246524, + -0.008137699, + -0.008797308, + -0.02174686, + 0.005734094, + -0.01709787, + 0.008655266, + 0.0042436123, + -0.017605627, + -0.0111779235, + 0.0042896736, + -0.0051280777, + -0.0028833726, + -0.008734654, + -0.017158506, + -0.005953105, + 0.017776623, + -0.01528485, + -0.002755033, + 0.0045508775, + 0.010781695, + 0.0065535405, + -0.0020158284, + -0.003665185, + -0.010558918, + -0.01722692, + 0.019821458, + 0.009978705, + 0.01432971, + 0.009718888, + 0.008777154, + 0.0030288196, + -0.010917999, + -0.0021085008, + 0.0031052295, + -0.024744382, + 0.0028842017, + 0.0038489583, + -0.021203563, + 0.013600541, + 0.0031686404, + -0.013562683, + 0.002881823, + -0.006681197, + -0.0010651909, + -0.02676646, + 0.0028986086, + 0.015085433, + 0.014798562, + 0.0032306872, + -0.008534898, + -0.034649283, + 0.0090435855, + -0.004573176, + -0.02089346, + -4.6133832E-4, + -0.020666895, + 0.010599787, + 0.0076889032, + 0.0063587236, + -0.006513055, + 0.02001408, + -0.009928761, + 0.003937481, + 0.018211076, + -0.0030960792, + -0.010921124, + 0.038239717, + 0.022586532, + -0.016289996, + -0.03571189, + -0.002425714, + 0.0021733302, + -0.0028887626, + -0.034120534, + -0.0063342014, + -0.0058133025, + 0.018438809, + -0.002863445, + -0.01492336, + -0.0011138298, + 0.014797068, + 0.02373726, + -0.008107909, + 0.024104971, + 0.013528105, + -0.027288789, + 0.011115053, + 0.018196253, + -0.008943572, + -0.0056242794, + 0.0075423312, + -0.0033937183, + 0.0063838055, + -0.008478864, + -0.015271822, + -0.039563213, + -0.0027424826, + 0.009946892, + 0.012701123, + -0.016308032, + -0.0049414015, + 0.016920853, + -0.002519754, + -0.0029825417, + 0.014717628, + -0.013754077, + 0.0031522864, + 0.013708135, + 0.03145862, + 0.016477691, + -0.005384679, + -0.005445745, + 0.021265343, + 0.020561153, + 0.0071190535, + -0.027538156, + 0.003955949, + 0.005643749, + -0.004967657, + 0.047069624, + -0.0036300812, + -0.012121307, + 6.876014E-4, + 0.019239217, + -0.006381196, + 0.013493411, + -0.016392855, + -0.011313893, + 0.016060077, + 0.0019289199, + 0.017418569, + -0.0046000676, + 0.023310814, + 0.0040775007, + -0.0042834897, + 0.009208378, + 0.0016571796, + -0.0014152098, + 0.0069832113, + -0.022397606, + -0.026593352, + -0.0034219283, + -0.01658672, + -0.006673879, + 0.005219753, + -0.01868284, + 0.013191494, + -0.0060580336, + 0.010328206, + 0.018198214, + -0.015262008, + 0.029405607, + -0.002836426, + 0.030829279, + -0.0021768347, + -0.0065686577, + 0.012289437, + 1.6976072E-4, + 0.014865704, + 0.029133262, + 0.009702426, + -0.0028343669, + -2.9333628E-4, + 0.02533124, + 0.012011638, + 0.004796732, + 5.628381E-4, + -0.006067735, + 0.006381981, + -0.011136356, + 0.0038918054, + 0.0023638778, + -0.010936857, + 0.028428199, + 0.026130274, + -0.019820105, + 0.019082036, + -0.009162419, + -0.006009597, + 0.020306222, + 0.023039987, + -0.0136804255, + 0.00915165, + -3.4610732E-4, + 0.026416654, + 0.009222722, + -0.00786498, + 0.017869135, + 0.017228078, + 0.0014935989, + 0.0058109397, + 0.0027134619, + -0.014570017, + 0.008475185, + 0.022206001, + -0.0068432144, + -0.0033506723, + 0.0059684548, + -0.011529796, + -0.0048059225, + -0.01580093, + -0.004285623, + 0.0075135985, + 0.017515862, + 0.005935745, + -0.0012098819, + -0.008713138, + 0.012349016, + 0.001211707, + -0.014258747, + -0.0108675305, + -0.016248476, + -0.004873144, + -0.005072153, + 0.016782112, + 0.014523731, + -5.0157245E-4, + 8.703486E-4, + -0.013290015, + 1.8952637E-4, + -0.008538212, + 0.024207361, + 0.002093029, + -0.015917422, + -0.024362048, + -0.012211841, + 0.0136885885, + -0.016801387, + -0.016976384, + 0.031915743, + -0.0041963137, + -0.015734669, + -0.014488701, + 0.017246233, + 0.02196595, + 0.012659762, + 0.010732065, + 0.01861293, + 0.01975175, + 9.1774657E-4, + 0.010306143, + -5.221122E-6, + -0.01689858, + -0.0053822054, + -0.0051582614, + 0.016978363, + -0.0033724369, + -0.002496121, + 0.017170418, + 0.0017565532, + 0.012205143, + 0.014883246, + 0.023238191, + -0.015509027, + -0.004770203, + 0.0027282534, + 0.018222757, + -0.007902596, + 0.0014228162, + 0.0064803157, + 0.024524488, + -0.00874707, + 0.002653302, + -0.0030994231, + 0.021017019, + -0.017718025, + 0.0039447616, + -0.022055749, + -0.0026084178, + 0.0035536597, + 0.0017241677, + 0.017637754, + -0.0035396542, + 0.009023635, + -0.024126163, + 0.0016224489, + -0.007647954, + 0.015707517, + 0.003471075, + 0.009071846, + 0.0082888715, + 0.0026688185, + 0.006571644, + -0.015185036, + 0.022890052, + -0.008095301, + -0.00404185, + -0.022650233, + -0.03377997, + 0.006871057, + -0.007326061, + -0.0066640084, + -0.005886208, + -0.013446742, + 0.005498384, + 0.006811532, + -0.008243719, + 0.011032745, + 0.015146742, + 0.0069015785, + 0.0071387812, + 0.0218282, + -3.7923714E-4, + -0.012471132, + 0.0043511204, + -0.0055825897, + 0.022696808, + 0.018907657, + -0.020033471, + 0.011945878, + -0.010916616, + 0.004762535, + 0.015802426, + 0.025049891, + -0.004375848, + -0.0059481496, + 0.014137856, + 0.0051627853, + 0.011714284, + -9.269064E-4, + -0.010436571, + -0.010530431, + 0.004881401, + -0.0014808305, + 0.0013043309, + -0.029980812, + -0.003297626, + -0.016722493, + -0.012144171, + -0.0060712835, + -0.015042705, + -0.0030074816, + -0.002644919, + -0.0011407245, + 0.01002824, + -0.013205125, + 0.01983334, + -0.00422828, + -0.0029129498, + -0.012619432, + 0.013833747, + 0.018288402, + -0.015353429, + 0.024752207, + 0.0195255, + 0.025278978, + 0.014324266, + -0.0016696381, + -0.008780924, + -0.009300665, + -0.014706377, + -0.017646434, + 0.007098909, + -0.008128953, + 0.015148467, + -0.00467095, + -0.001788827, + 0.030928722, + -9.980951E-4, + -0.0085943835, + 0.011550824, + -0.030433584, + 0.010088974, + -0.023719367, + -0.009006084, + 0.0047177137, + -0.015124947, + -0.0016917783, + -0.014310383, + 0.0034271986, + -0.008161243, + -0.032857843, + -1.4663144E-4, + -0.008919959, + 3.8922197E-4, + 0.00313027, + 0.012408525, + -7.346172E-4, + -0.026270648, + 0.0034871446, + -0.0061039934, + -0.0038227586, + 0.010820642, + 0.015074878, + -0.010516221, + -0.013275394, + 0.027592085, + -0.020055518, + -0.009109683, + -0.0069802175, + -0.007291702, + -0.01262574, + 0.026428703, + 0.01988371, + -0.017245673, + -0.005202785, + -0.012278582, + -0.0011290315, + -0.007120816, + 0.011129098, + 0.006744452, + 0.031157784, + -0.01525114, + 0.017973289, + 0.0072270846, + 0.025141053, + 0.006131728, + 0.023076823, + -0.0119180055, + -0.005239165, + 0.017658778, + 0.0036558262, + 0.0056576505, + 0.013025077, + -0.024755556, + -0.011282161, + -0.018508336, + -0.0057012574, + -0.04573835, + -0.010109242, + -0.0028176298, + 0.005479683, + 0.0066501293, + -0.019186849, + 0.0018481675, + 0.019678794, + 0.005649028, + -0.009448705, + -0.0074331593, + 0.0056546056, + 0.0024079883, + -0.0045719347, + -0.018914828, + -0.0026568999, + 0.008079654, + -0.019810917, + 0.007147014, + -0.012480759, + 0.017961439, + 0.007841643, + -0.0066149975, + 0.0032688791, + 0.0071152905, + 0.00701295, + -0.018624239, + -0.011292948, + -0.024159938, + 0.0051185456, + -0.017403025, + -7.020109E-4, + 0.008579181, + 0.008509713, + 0.015045069, + 0.0035425045, + 0.0014543037, + 0.0066886237, + 0.0077352617, + -0.008087153, + -0.00659414, + -0.0019183594, + 0.017280526, + 0.021123089, + 0.004785653, + 3.859158E-5, + 0.0056546275, + 0.0055633914, + 0.003914774, + -0.0047350293, + -7.89277E-4, + 0.0049784477, + 0.008464335, + -0.0032102787, + -0.03513715, + 0.03241148, + 0.028993025, + -0.0033831163, + 0.0024981452, + 0.0020699452, + 0.020941073, + -0.023722988, + -0.01112331, + -0.001293753, + -0.015713682, + 7.9365476E-4, + 0.0048849257, + 0.010475735, + -0.00584019, + -0.009395728, + -6.980887E-4, + 0.0280938, + -0.009935799, + -0.009696513, + -0.010774209, + 0.0028800427, + -0.0038782177, + -0.034073226, + 0.011912175, + -0.014281267, + -0.008322176, + -0.012370673, + 0.028458947, + 0.017302204, + -1.1464937E-5, + -0.01338867, + 0.0019146153, + -0.0046714568, + 0.016056301, + -0.0012958975, + -0.00655208, + 0.0026738343, + 0.0066426154, + -0.009748984, + 0.012798145, + 8.832784E-4, + 0.01852645, + 0.0072536333, + 0.0019416034, + 0.0048570484, + 0.0029699018, + 3.6821546E-4, + -0.040939555, + -0.0067975484, + 0.0022676606, + -0.016117701, + 0.020437209, + 0.0016645296, + -0.021639563, + 0.0062643103, + 0.006572832, + 0.012284947, + -0.00455336, + 0.0018450954, + 0.020604087, + -0.006190471, + 0.007093473, + 0.0011050721, + 0.011061273, + 0.0016125216, + 0.0051014777, + -0.01230324, + 0.0024106551, + 0.0010339791, + -0.007816267, + 0.02855149, + -0.0093330685, + -0.0050134105, + -0.040657986, + -0.0015276818, + -0.01787723, + 0.02420703, + 0.014333082, + 0.014453378, + -0.011699629, + -0.004761169, + -0.0029995514, + -0.0056851706, + 0.0039403164, + -0.01553364, + 0.023458924, + 0.0012443374, + -0.011145831, + 0.013244697, + 0.0024767662, + -0.034628242, + 0.0068855113, + 0.013887136, + 0.032432564, + 0.010161579, + 0.016258592, + 0.0075050853, + 0.005868479, + 0.015508328, + -0.0031169148, + 0.0069821724, + 0.008441316, + 0.034039136, + -0.02094478, + -7.5475144E-4, + 0.015578207, + 0.03150783, + -0.004615298, + 0.0123363035, + 0.025891978, + 0.021387313, + 0.01410431, + 0.004310547, + 0.0023161098, + -0.0060582147, + 0.015750324, + 0.023385461, + 0.008917926, + -1.7110487E-4, + -0.019859407, + 0.0022551108, + -0.0072681373, + -0.0018737963, + 0.02846404, + -0.030467035, + 0.01146311, + 0.004477437, + 0.008608768, + -0.023960099, + -0.015511449, + 0.008708554, + -0.0019676946, + -0.020763401, + 0.005627207, + 0.009317611, + -0.03863753, + -0.0049281307, + -0.0029535897, + -0.011146415, + -0.01031881, + -0.0031208503, + -0.019554282, + -0.018650638, + 0.0015618339, + -0.0018092212, + -0.014387232, + 0.031347673, + -0.006335156, + 0.020217055, + -5.427565E-4, + 0.022932058, + -0.016448442, + 0.0031579302, + -8.688503E-4, + 0.007114581, + 0.0010801445, + -0.010219066, + 0.015569042, + 0.01275873, + -0.0041679544, + -0.004754041, + -0.027148709, + 0.0076016546, + -0.009534327, + 0.03301359, + -0.009496477, + -0.010941871, + 0.010417662, + -0.01644999, + -0.01182309, + -0.0048362254, + 0.0016556378, + 0.012809277, + -0.001092502, + -0.0056448597, + 0.02185629, + 0.0028618833, + 0.009706683, + 0.01663024, + 0.008058034, + 0.015703332, + 0.0070104403, + 0.025212282, + -0.005442247, + 0.00305779, + 0.016032059, + 0.007880721, + -0.022972666, + 0.009181905, + 0.03421252, + 0.03572629, + 0.0012612393, + 0.005805158, + -0.0056659086, + 0.0034225106, + -0.009688688, + -0.016750947, + -0.004702502, + 0.010921895, + 0.009512268, + -0.018792445, + -0.011794978, + -0.0038015188, + -0.009470418, + 0.026012853, + -0.012772704, + 0.021119794, + -0.010878727, + 0.034361716, + -0.0010013203, + -0.0012717776, + -0.007959928, + -0.022394622, + 0.0033256824, + 0.024941394, + -0.015564194, + 0.014739048, + -0.019939326, + -0.0046751956, + 0.015278776, + 0.007836116, + 0.011148371, + 1.0267774E-4, + -0.0012680783, + -0.008583128, + 0.008031806, + -0.020704135, + 0.0037591255, + 0.005592346, + 4.4808694E-4, + -0.004182208, + -0.01964113, + -0.0054123094, + -0.008827478, + -0.018337281, + -0.0010465524, + -0.020494042, + -0.0067825415, + 0.01237345, + 0.001772698, + -0.0028885135, + 0.0073030824, + 0.028587058, + 0.013465798, + -0.022055538, + 0.01244511, + 0.01010863, + 0.006160578, + -0.006993751, + -0.0026277862, + -0.012078587, + -0.011294418, + -0.0016658682, + 0.027561542, + 0.0021317648, + -0.014373348, + -0.0059090485, + -0.006546138, + 2.84313E-4, + 0.036987126, + -0.009402811, + -0.004320976, + -0.012444698, + -0.0060335263, + 0.0017788245, + 0.020830847, + -0.020576807, + 0.0130030755, + 0.0073624896, + 9.716785E-5, + -0.0041611497, + -0.0055796406, + -0.00626905, + -0.004188368, + -0.03424392, + 0.002678933, + 0.013460392, + -9.942619E-4, + 0.021944188, + 0.031927202, + 0.02465262, + -0.00623078, + -0.02258895, + -0.0018192747, + 0.0130932685, + 0.016528819, + 0.008298312, + 0.026274398, + -0.018690947, + -0.024815239, + 0.007999645, + -0.0026071465, + 0.014128974, + 0.0012622912, + -0.00949918, + 0.012800477, + -0.013128834, + -0.026460046, + -0.0047214516, + 0.02024374, + -0.005410908, + -0.0018499464, + 0.011983844, + 0.0011912293, + 0.010848456, + -0.035489403, + 0.008096147, + 0.025512049, + 0.011109884, + 0.010112358, + -0.0022168332, + 3.9608165E-4, + 0.012517073, + 0.0029465281, + 0.010183329, + 0.025357362, + -0.023065383, + 0.0115422625, + -0.009397621, + -0.01120342, + 0.0092742825, + -0.0027352625, + -5.763799E-4, + 0.0075378595, + 0.010339495, + -0.016330624, + -0.012616843, + -0.014044659, + -0.0013704204, + 0.0032916092, + -0.0028422757, + 0.02857865, + 0.017310373, + 0.011326597, + 0.012766141, + 0.013278516, + 0.009759018, + 0.001781686, + -0.0041416287, + -0.0068293237, + -0.009952425, + 0.010859574, + -0.002748373, + -0.014872908, + 0.007347597, + 0.026724447, + 0.012890112, + 0.0019375974, + 0.0142162405, + 0.016060704, + 0.018261971, + -0.012916427, + -0.010673355, + 4.133073E-4, + 0.011456698, + 0.014542387, + -0.0049836915, + -0.0048249764, + -0.008720078, + 0.0022685633, + 0.020586547, + -0.018237228, + -0.0107609555, + -0.033427913, + 3.859813E-4, + -0.0018723512, + 0.01859834, + -0.015765537, + 0.0022606137, + -0.016322307, + -0.03767719, + -0.004107627, + -0.024605975, + -0.023218947, + -0.023662403, + 0.01651569, + -0.024370762, + -0.006961129, + 0.018777397, + -0.004616574, + 0.0072016395, + 0.0049898997, + 0.022251926, + 0.0108281495, + -0.0073010186, + -0.009535502, + 0.0020856482, + 0.0015565265, + 3.9486118E-4, + -0.015084931, + -0.027910173, + -0.026303038, + -0.0036604616, + 0.017166229, + -0.0016589143, + -0.01889182, + 0.009030814, + -0.0087893745, + 0.03059217, + -0.014588932, + -0.011901441, + 3.4151468E-4, + -0.0056581837, + -0.015263904, + 0.01012745, + 0.009775063, + 0.021025358, + 0.0064189825, + 0.004542052, + 0.0036023231, + 0.0077273333, + -0.008673276, + 0.032822058, + -0.011216055, + -0.015129483, + 0.02641374, + 0.002319709, + -0.009044861, + 0.015319814, + -0.011147997, + -0.009910165, + 0.008306467, + -0.019257173, + -0.014090318, + 0.0020103198, + -2.1196308E-4, + 0.007572979, + -0.0048300386, + 0.022577293, + 0.015196518, + 0.003530022, + -0.012252275, + -0.009101177, + 0.0038802933, + -0.015712723, + -0.0035714917, + -0.015134286, + 0.013618687, + -0.009951263, + 0.008863861, + 0.014393482, + 0.0015761179, + 0.0056600305, + 0.014323899, + 0.023060665, + 0.009225958, + 0.025812367, + 0.007403558, + -0.013410379, + 0.02549344, + 0.032195657, + 9.875887E-4, + 0.023073005, + 0.012130962, + -0.021700533, + 0.01721364, + 0.0093095545, + 0.020052597, + 0.010637426, + -0.008934624, + -0.011051377, + 0.006621217, + -0.018990323, + -0.008106068, + 0.0067602685, + 0.006603247, + -0.011293187, + 6.6904543E-4, + -0.004829558, + -0.007434424, + 0.023241522, + 0.016541835, + -0.0085973125, + 0.01300753, + -0.020651652, + 0.04226218, + -0.010412745, + 0.0028192669, + -0.0080484, + 0.007556994, + -0.012172483, + 0.0031970486, + -0.014055854, + -0.017883295, + 0.014906678, + -0.0030477506, + 0.003853026, + 0.01803228, + -0.012422953, + 0.008596012, + -0.0025135863, + 8.3600334E-4, + 0.008545927, + -9.56179E-4, + -0.022017242, + -0.021876723, + 0.018865747, + 0.02098283, + -0.019480914, + 0.024166282, + -0.007368498, + -0.015644899, + 0.004461965, + -0.02134341, + -0.024622118, + 0.027692784, + 0.035797764, + -3.1954615E-4, + -0.01562714, + -0.004307793, + 0.015084394, + -0.009272477, + -0.020260343, + -0.00896874, + 0.009771937, + -0.023196882, + 0.022268144, + -0.008452397, + 0.013455863, + -0.008304299, + 0.008307805, + 0.0029252546, + 0.02132571, + 0.0053003337, + -0.008751047, + 0.0053238655, + -0.0049257963, + 0.0034620392, + -0.044737034, + 0.020829516, + 0.00910984, + 0.011959986, + 0.0021679183, + -0.01724924, + 2.3103837E-4, + 0.02714585, + -0.008508729, + 0.011571023, + 0.026751587, + -0.007642121, + -0.0012910663, + -0.011325341, + 0.023531841, + 0.017025001, + -0.007869753, + -0.010540785, + -0.0049295328, + 0.0115160495, + -0.014675647, + -0.0070842286, + 0.010325183, + -0.008986463, + 0.011223619, + -0.012656323, + 0.0037212926, + 0.016557245, + 0.015912792, + -0.055884104, + 0.018887537, + 0.002416961, + 0.029684993, + 0.01618398, + 0.008267832, + 0.03602265, + 0.03433499, + -0.0072837053, + 3.7928703E-4, + -0.026496544, + 0.021217138, + 0.0040054354, + 0.007798997, + 0.010598116, + 0.0071820207, + -0.006099576, + -0.007228298, + 0.004508341, + 0.03994376, + 0.014534686, + -0.013694117, + -0.014775436, + 0.023708677, + -0.010756242, + -0.013604263, + -0.0063967644, + -0.0136292055, + -0.0027457718, + 0.00434372, + -0.019824836, + -0.0075567216, + 0.010903316, + 0.018448386, + -0.012845486, + 0.030121034, + -0.01800847, + -0.0010976839, + -0.011404982, + 0.011317259, + 0.025043644, + -0.010520725, + 0.033988714, + 0.0036293897, + -0.0021124862, + -0.022486992, + -0.0014088984, + -0.01564656, + 0.028871471, + 0.0049062576, + -0.02585772, + -0.0034108944, + -0.023235777, + -0.0053526643, + -0.01034489, + -0.012845056, + 0.014161607, + 0.016033545, + -0.011602248, + -0.021301256, + -0.0154486485, + -0.012481253, + 0.032048486, + -0.0079734605, + 0.004913892, + 0.015413704, + 0.016148038, + 8.2210073E-4, + 0.009230547, + 0.0052296906, + 0.01207618, + -0.022331977, + -0.006808882, + 0.015522111, + -0.0044700117, + 0.0053670877, + 0.0049344627, + 0.0071151317, + 0.0056305774, + -0.010384654, + 0.010357843, + 0.008806652, + -0.0038218144, + -0.021664899, + -0.002004724, + 0.009253148, + -0.0015387883, + -0.024696918, + -0.0107602775, + 0.012697218, + 0.002011483, + -0.020837164, + 0.011735003, + -0.016909404, + 0.009572875, + -0.010591483, + 0.0070711686, + -0.004099397, + 0.008194819, + -0.0016416498, + 0.017613633, + 0.0012642766, + 0.015683264, + 0.015481059, + 0.012948456, + 0.010962899, + -0.037278138, + 8.713298E-4, + 0.019079423, + 0.009620326, + -0.0064152926, + 0.011296966, + -0.024919609, + -0.0029670699, + -0.0068325377, + 0.020872056, + 0.018381825, + -4.252772E-4, + 0.02093718, + -0.0068653855, + -0.008721499, + -0.0024114202, + -0.0034045186, + -0.017298399, + -0.02414835, + -0.010090042, + 5.1716605E-4, + 0.008425119, + -0.01184791, + 0.0056621186, + -0.034815017, + -0.026910385, + -0.031638775, + 0.019694565, + 0.013611322, + -0.01658148, + -0.01608575, + -0.007733416, + 0.028571645, + -0.025379116, + 0.0014879919, + 0.005396864, + -0.0016797894, + -0.034375854, + 0.007043954, + 0.027625086, + -0.011951695, + 0.013989194, + -0.022709064, + -0.0066617522, + -0.012660736, + -0.01096548, + 0.0046788305, + -0.02447166, + -0.012071175, + 0.0025794855, + 0.007195693, + -0.006065964, + 0.022723755, + 0.0072894106, + -8.572672E-4, + 0.009563952, + 0.028384078, + 0.0051697595, + 0.009826265, + -0.0014289579, + -0.0046851514, + -0.0063334997, + 0.0017891891, + 0.024930758, + 0.02137067, + 0.012343646, + -0.0016603848, + 0.0075973044, + -0.0019648976, + -0.006258435, + 0.009971551, + -0.016157238, + 0.013766129, + 0.022815494, + -0.044527423, + -0.012957186, + 0.021135142, + 0.01421087, + 0.01064475, + -0.0022505699, + 0.023744598, + 0.00976933, + 0.010858071, + -0.010783072, + 0.013643671, + -0.014028318, + -0.002105369, + -0.022560947, + 0.0046586925, + 0.0216667, + 0.0037690746, + -0.028344784, + -0.008087469, + 0.005869475, + -0.0022441575, + 0.0023604794, + 0.012230773, + -1.4925051E-4, + 0.01591935, + 0.0051674293, + -6.62022E-4, + 0.0042361068, + 0.0051111863, + -0.010190778, + -0.0027233444, + 0.009361531, + 0.00411471, + -0.01378192, + -0.009391872, + 0.0023245406, + 0.004627694, + -0.015485795, + 0.015867582, + 0.0062835757, + -0.018273773, + -0.008552052, + 0.03234263, + 0.024972135, + -0.004743769, + 9.5922605E-4, + -0.0037702527, + -0.014050561, + -0.006667043, + 0.010604882, + 0.002172597, + -0.01505157, + 0.009439786, + -0.015948245, + -0.010749114, + 0.004177203, + 0.016156606, + -4.1986347E-4, + 0.019679466, + -0.021731604, + 0.018938804, + 4.9931934E-4, + -0.001206392, + 0.025257098, + 0.0012618026, + -0.014114741, + -0.025590288, + -0.016699051, + -0.0049437927, + -0.017093966, + 0.005358983, + 0.011145925, + -0.010517053, + -0.008960399, + 0.008339852, + -0.009697967, + 0.017223407, + 0.003613761, + -0.009976673, + 0.0103044035, + -0.006166288, + 0.027531745, + -0.01986904, + 0.013237299, + 0.003527582, + -0.018730935, + -0.007921906, + -0.022905616, + -0.013195754, + -0.01761365, + -0.00420753, + 0.0048447973, + -0.029251631, + 0.012197093, + 0.007922619, + -0.0022712841, + -0.013733535, + -0.0055751894, + -0.0041146553, + -0.014123593, + 0.012241653, + -0.01598994, + 0.023392824, + -0.0014498951, + 0.012517512, + -0.0031326453, + -0.0061513204, + -0.012812507, + -6.6606514E-4, + 0.009307696, + 0.033331167, + -0.013290413, + -0.0144882575, + 0.008710738, + 0.00215047, + -0.009329905, + -0.023629816, + 0.0043056393, + 0.005374558, + -0.02821081, + 0.0032030293, + -0.017957928, + 0.0050820354, + -0.007912018, + -0.004242554, + 2.510773E-4, + -0.006482622, + 0.00411475, + 0.0022575024, + 0.01597489, + -0.0044758786, + 0.0167682, + -0.0020803045, + 0.011798109, + -0.009776979, + -0.008377075, + -0.040063176, + 6.528275E-4, + -0.011964779, + 0.027825445, + -0.016713224, + 0.004693099, + 0.005308853, + -0.0139954025, + -7.139806E-4, + 0.0014698368, + -0.0060836924, + -0.013549341, + -0.0068813213, + -0.010991138, + -0.037138585, + -0.003712126, + 0.0026616168, + 0.01709816, + 0.0049898755, + 0.005086697, + 0.045758422, + -0.008596777, + 0.021235457, + 0.012746122, + -0.0026757193, + 0.043873295, + -0.030706234, + -0.003776364, + 0.006000467, + -0.008951842, + 0.015591431, + 0.012740591, + -0.02372003, + -0.0035547789, + -0.0077645374, + 0.013970471, + 0.006395122, + 0.0030675796, + -0.031064916, + -0.011410551, + -0.0022686347, + -0.0062061045, + 0.011097628, + -0.02062635, + 0.007752512, + -0.022052098, + -9.2789676E-5, + 0.00572662, + 0.0024224694, + -0.0144562535, + -0.011059774, + -0.03045776, + -0.03306797, + 0.034459513, + -0.0010210322, + -0.022451296, + 6.9367135E-4, + 0.008369819, + 5.070701E-4, + -0.03516187, + 0.024588434, + -0.01233824, + -0.0037213366, + -0.018521499, + 0.021037292, + 0.0014743076, + -0.0011437652, + -0.046488743, + 0.015096207, + -0.029589122, + -0.005203635, + -0.0038391599, + -0.003973819, + -0.011477424, + 0.017058957, + -0.035350665, + 0.0046565873, + -0.013177264, + -0.02660672, + -0.008069444, + 0.011084699, + 0.013834379, + 0.016198687, + -0.014764932, + -0.02959375, + -1.7594022E-4, + 0.014816352, + -0.0353025, + -0.001941636, + 0.009143546, + -0.0043199463, + -0.0027905235, + 0.009644711, + 0.0017168801, + -0.020318905, + -0.012461709, + -0.021126118, + -0.003202626, + -0.018106522, + -0.005908179, + -0.010658636, + -0.015214611, + 0.0027546955, + 0.009249389, + 0.013472809, + -0.009220749, + -0.0045694727, + -0.029633, + -0.002278456, + -0.030700075, + -0.0146971615, + 0.023396399, + -0.005162299, + -0.0039886343, + -0.0121412715, + 0.018050458, + -2.17305E-4, + 0.0010521705, + -0.0067890314, + 0.026780384, + 0.01226351, + -0.0024310967, + -0.0014059752, + -0.011449269, + -0.010248474, + 0.026778404, + 0.018082833, + 0.015264172, + 0.017218249, + 0.03651014, + -0.0031839842, + 0.028783001, + 3.0060616E-4, + -0.0150972735, + -0.0027089873, + -0.01663242, + 0.0256144, + -0.018119087, + -0.0031534215, + -0.018630914, + -0.04211625, + 0.013962846, + -0.007980618, + -0.00110707, + -0.010928598, + -0.024590122, + 0.002355918, + 0.012290924, + 0.0024783302, + 0.0014356232, + -5.2457186E-4, + 0.010478214, + 0.01363984, + -0.028157618, + -0.024819914, + 0.010013566, + -0.0064088907, + -0.029528022, + 0.008496596, + 0.004187048, + -0.0048849494, + -0.016895095, + 0.027271004, + -0.031432465, + -0.029853981, + -0.008770334, + 0.004863341, + 0.04582899, + 0.0022867823, + 0.016108295, + -0.030784398, + -0.0070279688, + -0.02433681, + 0.011098556, + 0.0046431185, + 0.024226803, + 0.011834401, + -0.0042906418, + -0.013493679, + 0.012568801, + -0.013556539, + 0.007561316, + 0.033329226, + 0.0037284156, + -0.02986102, + 0.0031595337, + -0.006039369, + 0.006106928, + -0.0030009826, + 0.012276585, + -0.026677955, + 0.005913526, + -0.0218153, + -0.0039568422, + 0.0115461135, + 0.02175784, + 0.02488002, + -0.033190917, + -0.007299174, + -0.0107572945, + 0.0065215123, + 0.016583852, + -0.0054588467, + -0.013309171, + 0.02233275, + -0.026406672, + 0.022360327, + 0.02273958, + 0.03205287, + -0.01588944, + 0.001815145, + 0.012091189, + -0.0055639814, + -0.003947868, + -0.022514006, + 0.010203923, + -0.025543185, + -0.009846636, + -0.0075203762, + -0.01371827, + 0.017367287, + 0.04169092, + -0.0077075264, + 0.0066171805, + 3.6181748E-4, + -0.01720893, + 8.422333E-4, + 0.0024368558, + 0.0227839, + -0.017005917, + -0.003524238, + 0.0021924828, + 0.010837765, + 0.021702463, + -0.0054887757, + 0.005751843, + -0.015857201, + -0.04166133, + 0.004190572, + 0.022650346, + 0.0031990542, + -0.00542005, + 0.0063952794, + -0.002860441, + 0.012779843, + -0.0016906814, + -0.013622781, + 0.0020827008, + 0.009214927, + 0.031146294, + -0.011105275, + 0.01746434, + 0.004206814, + -0.020422116, + -0.049572747, + -0.043055627, + 0.0050285268, + 0.0038277158, + -0.0028912404, + 0.022459885, + 0.008538484, + 0.0055496227, + 0.0062721707, + 0.0130069265, + 0.030283744, + -0.031733755, + 0.019307122, + 0.02387819, + -0.017175801, + 0.024181984, + 0.0069036693, + 0.008071936, + 0.012657905, + -0.03766078, + 0.009757601, + 0.017978188, + 0.0166549, + -0.0113502545, + -0.017453128, + -0.020277094, + -0.0051142545, + -0.016213618, + -0.014230996, + 0.032761537, + -0.0032725162, + 8.7716046E-4, + 0.0037034263, + -0.0041055097, + -0.0016770818, + 0.016088782, + 0.022042412, + 0.0050216485, + -0.023836669, + 0.006113291, + -0.014235484, + -0.0057501737, + -0.02706915, + -0.01441896, + 0.017364668, + -0.0042771096, + 0.010209653, + 0.00571847, + -0.008518608, + 0.004248813, + -0.0017508882, + -0.0016887198, + 0.0052900724, + -0.009153259, + 0.0036542076, + -0.0013433542, + 0.0039584045, + -0.0037732932, + 0.0028989532, + 0.010087704, + -0.012280262, + -0.007337607, + -0.011472116, + 0.03490857, + 0.006048771, + 0.001860618, + -0.022071749, + -0.0053815716, + 0.0034304343, + 0.030835053, + -0.02484485, + -0.0010836086, + 0.021107767, + 0.0030575728, + -0.005229559, + 0.010207051, + 0.0017430941, + 0.006923661, + 0.021505268, + 0.0020360593, + -0.0010025096, + -0.013752603, + -0.004658447, + 0.0156042455, + -0.018322397, + -0.018328048, + -0.03267892, + -0.022754105, + 0.015229273, + -0.006509731, + -0.00733678, + 0.005268316, + 0.0014256052, + -0.01577285, + -0.0068602716, + -0.032553352, + -0.026113449, + -0.031917512, + -0.006599026, + -0.017490666, + -0.0028859875, + -0.0048550316, + -0.0016449987, + -0.031026449, + -0.0074521885, + -0.013652746, + -0.0031472747, + 0.0018554897, + -0.027505904, + -0.0122134965, + 0.00386227, + 0.018393628, + -0.019654397, + 0.051319472, + 0.009428869, + 0.011540691, + 0.0053435485, + 0.025186744, + -0.012160608, + -0.0041417526, + -0.03361195, + -0.024898069, + -0.010039331, + 0.023341833, + 0.025205383, + -0.0034901127, + -5.602514E-4, + 0.030356923, + -0.002066702, + -0.01376527, + -0.016365224, + 0.017502753, + -0.01588464, + -0.013473537, + 0.0036407704, + 0.018206961, + 0.0031946986, + -0.022006596, + 0.018133458, + -0.029956894, + 0.008381283, + -0.0137082925, + 0.008749229, + -0.037342533, + -0.006455237, + -0.016022462, + 0.012944438, + 0.023145365, + 0.0066285464, + 0.008523618, + -0.014424623, + -0.011933111, + 0.011502279, + -0.031669505, + 0.010967697, + -0.004200673, + -0.010304341, + -0.020331232, + -0.0166268, + -0.008357773, + -0.031047547, + 0.010921181, + 0.006213146, + -0.007524783, + 0.0015616105, + -0.0024714966, + -0.0035604506, + -0.013189425, + -0.0029004535, + -0.010452468, + -0.0083919, + 0.03452374, + -0.020265764, + -0.020393971, + 0.030550689, + -0.006738893, + -0.019683575, + -0.04272572, + 0.0072992793, + -0.03945313, + -0.002745576, + -0.009421718, + 0.012356684, + 0.007936386, + 0.021843698, + -0.0149190435, + 0.0074847727, + -0.0039953548, + -0.016999656, + -0.0076008136, + 0.016636921, + 6.8002794E-4, + -0.0035469027, + 4.6712268E-4, + -0.01547429, + -0.0032068668, + -0.03663873, + 0.016499348, + -0.005499761, + 0.024127338, + -0.018410321, + -0.03124443, + -4.741664E-4, + 0.026529064, + -0.0024278963, + 0.009175293, + 0.007036863, + -0.0060441783, + 0.007162413, + 0.0032520425, + -0.01316294, + 0.01292183, + 0.021269152, + -0.015876997, + 0.0028854131, + 0.01928413, + 0.009400665, + 0.0116105955, + -0.007663219, + -0.0016453167, + -0.017595243, + 0.02081784, + -0.012861516, + 0.019605158, + 0.00924711, + -0.013919018, + -0.007720615, + -0.0025737612, + -0.0074118534, + 0.0104802055, + -0.07854019, + -0.00806941, + -0.010015243, + -0.024367088, + 0.010805653, + -0.015304429, + -0.030049883, + 0.002699915, + -0.01544822, + 0.0052686753, + 0.026007788, + 0.01656797, + -0.009774088, + -0.01376758, + 0.027664632, + 0.0020148968, + -0.00398091, + 0.016273402, + -0.0062676426, + 2.8633547E-4, + -0.010806488, + -0.024228122, + -0.013372625, + -0.011111743, + 0.012870717, + -0.020704728, + 5.2601355E-4, + 1.061561E-5, + 0.017987663, + 0.012422583, + -6.350915E-4, + 0.0027141343, + 0.019777905, + -0.013597139, + -0.005324034, + -0.0053036045, + 0.008476091, + 0.0043563307, + -7.8314904E-4, + 0.011170323, + 0.0139325885, + -0.0017811192, + -0.038162526, + -0.010248249, + 0.0017361447, + 0.0050616134, + 0.0013619256, + 0.020811068, + -0.011635567, + -0.02859218, + -0.00812114, + -0.007885711, + 0.007107913, + -0.0032480785, + 0.011352406, + -0.00372901, + 0.040139947, + 0.006602075, + 0.008232255, + 0.010349003, + -0.017275454, + -0.0031394013, + -0.027395828, + -0.01843657, + -4.1525238E-4, + -0.0022530612, + -0.0124958465, + 0.024804743, + 0.0089345295, + -0.005892882, + -0.0052415165, + 0.017250117, + 0.013708409, + 0.015370665, + 0.012577353, + -0.0065620113, + 0.017921899, + 0.008820947, + 0.031204509, + -0.002219666, + 0.008519593, + 0.0026074797, + -0.007421811, + 0.023500344, + 0.028399767, + 0.016672457, + -0.019486109, + 0.0017632232, + 0.019405337, + -0.002737845, + -0.011899393, + -0.0036937222, + -0.02316017, + 0.0075395056, + -0.012876287, + 0.057994593, + 0.0023856368, + 0.004782362, + 0.026020583, + 0.024280181, + 0.0050686924, + -0.015394058, + 0.011340582, + -0.009422331, + 0.0153424805, + -0.005432687, + 0.018050317, + 0.009664398, + -0.014120901, + -8.8523777E-4, + 0.005662703, + 0.0014857441, + -0.013302742, + 0.006489759, + -0.022528145, + 0.023930322, + 0.007502922, + -0.016892837, + -0.0093220435, + 0.0127789285, + -0.0070930365, + -0.0027418209, + 0.001898308, + 0.012192311, + 0.015914796, + -0.007299599, + -0.008152339, + -0.003154163, + -0.008102618, + -0.034010883, + 0.001765608, + 0.006533114, + 0.005547524, + -0.014992963, + -0.008504446, + -0.0047611017, + -0.022687009, + 0.015182835, + 0.0067263423, + 0.020143516, + 0.008238344, + 0.028848365, + 0.0020877433, + -0.0027728674, + 0.010924043, + 6.7311665E-4, + -0.024091937, + -0.0021517766, + 0.024750713, + -0.011012768, + -0.0044810097, + 0.0174494, + -0.015757585, + 0.0075231576, + 0.032428477, + 0.014340643, + 0.026163178, + -0.007814173, + 0.0012189244, + -0.01565882, + 0.014425424, + 0.02646181, + -0.0034504116, + 0.0074448944, + -0.0013925022, + -0.0030295604, + 0.005077548, + 0.014099476, + 0.016955556, + 0.013217675, + -0.004144874, + -0.008980281, + -0.001542854, + 0.0070442194, + -0.0031090348, + -0.017424012, + 0.009056589, + -0.013837844, + 0.013970802, + -0.012143444, + 0.016852116, + -0.020269625, + 0.025339268, + -0.019964289, + 0.0028715248, + -0.0027236566, + 0.0050725676, + 0.016670784, + -0.01644823, + 0.0046012006, + 0.0024482892, + 0.025841484, + 0.02507311, + -0.01609708, + -0.011299414, + -0.0033935076, + -0.0156130465, + 0.0053354483, + 0.019294074, + 3.4729147E-4, + 0.004361391, + 0.012620446 ], - "paletteEmbedding": [ - 0.051761914, -0.021719107, -0.020939995, -0.069232844, -0.012318892, - 0.0020301307, -0.0318265, -0.029393375, 0.030432722, -0.038446464, - 0.07815362, -0.062575564, 0.011767548, 0.04478544, -0.07395563, - 0.014784622, -0.02289488, 0.0098374, -0.03256142, 0.015027835, - 0.038965475, 0.031794887, -0.024007779, -0.05878112, 0.044622954, - -0.012715209, 0.045650158, 0.057765402, -0.004685513, -0.019068709, - -0.012932901, -0.007992525, -5.7524117e-5, 0.0020200817, 0.008260994, - 0.004223329, -0.009555504, -0.008972533, -0.01641686, -0.07650863, - 0.053529616, -0.00698937, -0.057231557, -0.016472777, 0.0619849, - 0.026551588, 0.005024524, 0.042443994, 0.030453116, 0.028637057, - 0.023710033, 0.0074515995, 0.022321532, 0.08199989, 0.04065114, - 0.021757377, -0.030878058, -0.022257566, 0.00594727, -0.02571366, - 0.0133979255, 0.0218813, -0.004230256, -0.040328667, 0.005212174, - -0.022012964, -0.004454723, 0.03920632, -0.0070976494, -0.0034512472, - 0.016247, -0.027081093, 0.047712043, -0.009217862, 0.013147061, - -0.03096883, -0.020193072, 0.06, 0.009387563, 0.017793288, 0.038623177, - -0.034935486, 0.0077191466, -0.038837504, 0.0014926718, 0.032818586, - 0.010917385, -0.0022800283, -0.02486721, -0.023316668, 0.029847706, - 0.039932277, 0.014563805, 0.038025025, 0.016651124, -0.04145793, - 0.0015601807, -0.041615546, 0.057678573, -0.018198239, 0.0053649796, - 0.006862877, -0.009089028, 4.0079586e-4, 0.045286044, 0.034016505, - 0.034875598, -0.0067964494, -0.020294651, -0.019572074, 0.03264962, - 0.035209354, -0.022931507, -0.0045634974, 0.041397892, -0.025652042, - 0.025986692, 0.031705953, 0.035305697, -0.028788809, 0.008366806, - 0.029208325, -0.006572926, -0.025595443, -0.018180992, 0.01519328, - 0.0029425323, 0.016854601, 0.006599175, 0.0031836613, -0.009148138, - 0.033242926, 0.0054174922, -0.0117449565, -0.08374386, 0.01378344, - -0.012851827, -0.0029151943, -0.02999734, -0.014378152, 0.026923614, - -0.013368345, -0.07282427, -0.012459237, 0.032462865, -0.041351035, - -0.0076386337, -0.03597766, -0.022671528, -0.027409542, -3.134799e-4, - -0.03248563, 0.0036872455, 0.007313241, 0.041967057, -0.025918797, - 9.405366e-4, -5.2985747e-4, -0.01719842, -0.013979378, 0.0014112293, - 0.021738429, 0.019034525, 0.02606896, 0.033429626, 0.023209997, - -0.04946219, 0.038883813, -0.02123529, -0.013589104, -0.029034479, - -0.009974775, 0.0023633563, -0.0011938211, -0.017651161, 0.048205733, - 0.01251834, 0.014123133, 3.7933594e-5, 0.041088134, 0.045482833, - 0.025288349, -0.0033681318, 0.027670858, -0.052501522, -0.020796183, - 0.028155275, -0.030675884, 0.035684086, -0.0015456232, 0.027163753, - 0.027523758, 0.0045641684, -0.012540345, 0.043479636, 0.045500875, - -0.0364732, 0.009457146, -0.014301183, -0.018981166, -0.008310305, - -0.005895764, -0.039177604, -0.008066954, -0.009332333, -0.014177308, - -0.03825002, 0.008571551, -0.054646704, 0.025326043, -0.010427408, - -0.039722737, -0.045588147, 0.03378775, 0.0063460027, 0.0056154337, - 0.012399043, -0.0062045516, 0.0014908274, 0.00889529, -0.0045402464, - 0.0011026886, -0.09782695, -0.055924892, 0.05732375, -0.032270182, - 0.008771201, -0.011400142, -0.035074092, -0.0047488464, -0.007666563, - -0.0034293092, 0.03697651, -0.007253954, -0.029056678, 0.0041710786, - 0.025185954, 0.061661594, 0.009936168, -0.010570191, -0.051098086, - -0.025500022, 0.007898034, -0.03354396, -0.026341945, 0.02587072, - 0.013197256, -0.03641478, 0.031359307, -0.01424527, -0.0063933735, - 0.019984255, 0.09218089, -0.03182719, 0.0218869, 0.023822606, - 0.030153519, -0.029287063, 0.0348331, -0.00530558, -0.016072748, - 0.015600526, -0.030335223, -0.039991565, -0.009497144, -0.021308916, - 0.00404858, 0.0015603178, -0.001327294, -0.03539053, 0.02426623, - -0.0042453012, -0.015627688, 0.012288377, -0.007961672, 0.07821989, - 0.031430263, -0.017738922, -0.06193215, 0.026438307, 0.0016205426, - -0.017415818, 0.017445704, -0.01774763, -0.0029724985, 0.004425671, - 0.0050173504, 0.026796797, -0.04363319, 0.03465043, -0.019700885, - -0.0045169205, -0.01566836, 0.04330839, -0.03238378, 0.011041536, - -0.019049287, 0.028698644, -0.022453342, -0.009832014, 0.065557465, - -0.037691146, 0.009535584, -0.023361262, 0.052888785, -0.03240096, - 0.010713765, -0.010674428, -0.009447062, -0.07483046, 0.041815486, - -0.020689217, 0.017957905, -0.008395887, 0.060004894, -0.016948536, - 0.007227914, -0.03526293, 0.01970206, -0.009097504, -0.03449414, - 0.02646037, 0.056727324, 7.341713e-4, 0.067332864, 0.04512597, - 0.022877572, 0.03901278, -0.03951708, -0.074759275, -0.0154606085, - -0.041034732, 0.029851876, -9.190191e-4, -0.07886014, -0.028474284, - -0.020418284, 0.03962713, -0.0055502146, -0.06253294, 0.022517588, - -0.037602235, 0.015720412, -0.021484477, 0.058591615, 0.036070675, - -0.021817572, 3.7189122e-4, -0.030740902, -0.06963397, -0.0194161, - 0.029666185, 0.03221537, 0.020093188, 0.024318263, 0.0146039445, - 0.061597813, 0.032636613, -0.019301767, 0.036175705, -0.0067669232, - -0.03144255, 0.029052649, 6.6145195e-4, 0.02880091, -0.059560224, - 0.007712836, 0.0068496666, -0.0061174976, 0.02280156, -0.01647701, - 0.032416835, 0.018134635, 0.011753345, 0.02812986, -0.006174841, - 0.025515135, -0.009976088, -0.0017340544, -0.04039558, -0.038095087, - -0.039976113, 0.046504293, -0.07028881, -0.007370768, -3.4505062e-4, - 0.019580157, 0.014901809, -0.009070652, 0.013704176, 0.034398988, - 0.023556504, 0.09061682, -0.03037544, 0.039398856, -0.012754816, - 0.047539204, 0.041623533, 0.019579155, 0.027309613, 0.05082789, - 0.005937296, -0.0090057235, -0.009472901, -0.011214159, 0.04069325, - 0.028281499, -0.018980594, -0.036475655, -0.031505167, 0.035576276, - -0.050362635, 0.004627943, 0.02420116, 0.027114185, 0.078546286, - -0.030327814, -0.05944819, -0.026846975, 0.042981587, -0.03921609, - -0.04569065, 0.005991745, 0.0051749796, 0.0019223999, 0.021587228, - -5.7418045e-4, 0.008946029, -0.02985777, -0.026457509, -0.02621131, - 0.005554326, 0.059498955, -0.008180788, 0.028284632, 0.01960306, - 0.027643299, -0.035654865, -0.056083128, 0.0031324446, -0.021430142, - -0.014860867, 0.066808194, 0.005929233, 0.0068345196, 0.006904902, - -0.026482565, -0.06502504, -0.011564682, 0.023151098, -0.011154093, - -0.03266297, -0.055292998, -0.08926708, 0.0011070035, 0.022935754, - -0.017479619, -0.0070448937, -0.017827962, -0.013937003, -0.0028446016, - 0.05799781, -0.011535855, 0.006422627, 0.01825499, -0.005916153, - 0.0033897532, -0.013167556, 0.0041538095, 0.04005942, 0.016332423, - -0.02776091, 0.031965427, 0.030643195, 0.0066824555, 0.050540935, - -0.016194858, 0.023288434, -0.015674029, 0.0048262645, 0.050543953, - 0.02547859, 7.982926e-4, -0.016362801, -0.014491505, 0.042315893, - 0.018251777, -0.0077340864, 0.04486728, 0.022431178, -0.005603288, - -0.015040511, -0.009481434, 0.030601023, -0.0429206, 0.021684425, - -0.013292381, 0.022286091, -0.031105468, -0.0044964454, 0.030368952, - 0.020797513, -0.002186922, -0.054458622, 0.061957445, -0.031758185, - 0.021072268, -0.0027825737, 0.0103866765, -0.007639734, -0.004641657, - 0.040757656, -0.002528296, 0.001769046, 0.0063161138, 0.019196508, - 0.031994745, -0.026381724, -0.036616858, -0.019369572, -0.018107066, - -0.0021577473, -0.01599957, 0.01662981, 0.012949325, 0.029639017, - 0.020752024, 0.019851778, -0.0026853294, 0.024845786, 0.027252322, - 0.043004252, -0.02208611, -0.04256505, 0.03301845, -0.001373604, - 0.0065889945, 0.005052234, -0.008942885, -0.00980724, 0.022455763, - 0.010563243, -0.010531082, -0.026767392, -0.020947699, -0.039582357, - 0.0199768, 0.044193126, -0.034052994, -0.012875703, 0.0072569, - 0.013110702, -0.007447076, 0.037733987, 0.028361045, 0.012065538, - -0.02028955, 0.006753817, -0.023780745, 0.070536494, -0.004530352, - -0.037639916, -0.02040189, -0.029265067, 0.021197315, -0.003392913, - -0.08959034, 0.0014955492, -0.0246987, -0.007194097, 0.052362636, - -0.022844989, 0.021484796, -0.017457869, -0.010887078, -0.018025484, - -0.069366306, -0.011740864, 0.026406378, 0.021252953, 0.05278865, - 3.2857916e-4, -0.054746334, -0.03016443, 0.07642294, 0.03713799, - -0.022114001, -0.06408986, -0.0114334775, 0.047852464, -0.02670883, - 0.0029281243, -0.050048824, 0.06240305, -0.036694165, 0.017662974, - -0.053823333, 0.04697524, 0.018900115, -0.013185259, 0.028232548, - -0.014139114, 0.011794353, -0.006562957, 0.043505207, 0.0105991475, - 0.0152467955, 0.04534312, 0.03543701, 0.0021130717, -0.04945033, - 0.017613778, 0.0015858223, 0.070372015, 0.012888712, -0.013947554, - 0.03311078, -0.010717539, 0.0012028394, -0.013157007, -0.034721058, - -0.03304501, -0.069941185, -0.0039421488, 0.03089658, -0.03317098, - 0.0054777656, -0.033194505, 0.066639796, 0.013216886, -0.011377312, - -0.012626538, 0.069215626, -0.0012914818, -0.010069626, -0.011104636, - -0.0692741, -0.055147987, 0.035594188, -0.014847278, 0.017442778, - 0.006808282, -0.04029514, -0.030195223, -0.03853646, 0.044340342, - -2.4721195e-4, 0.07478033, 0.008077222, 0.024504622, -0.0051728, - -0.012566169, 0.066007614, 0.02633562, -0.039351203, -0.004238382, - 0.0030503988, -0.015387406, 6.4712614e-5, 0.0063754255, 0.015971383, - 0.0033001285, 3.767171e-4, 0.058092058, 0.013397822, 0.059545923, - -0.034373064, -0.001927864, 0.028667705, 0.019993588, 0.084980115, - 0.010706068, -0.027514523, 0.030516684, 0.03308373, -0.054544877, - -0.020584533, -0.022964664, -0.01939841, 0.022460133, -0.003769255, - 0.051346213, 0.024644611, 0.058538415, 0.014806026, 0.015313719, - 0.003314852, 0.04846283, -0.0023432116, 0.024498781, 0.04842817, - -0.027151346, -0.033603255, 0.021139547, 0.03829247, -0.03166034, - 0.019217888, 0.041197654, 0.0065065087, 0.020094175, -0.0037092932, - 0.04714651, -0.014442124, -0.0030481722, 0.026980247, 0.02508062, - 0.0115910685, 0.04880577, -0.027873186, -0.020114051, -0.043815736, - 0.020721223, -0.009956616, -0.051189132, 0.043469574, -0.012478551, - 0.04571238, 0.043084793, -0.0029898265, -0.031452492, 0.025826609, - -0.005599499, 0.031688463, -0.012356958, 0.023616401, -0.0036050293, - -0.0031765345, 0.009931245, 0.00704938, 0.009308299, -0.041874956, - 0.010061329, -0.006252073, 0.07109037, 0.04593968, 0.0075508277, - -0.027319027, -0.112354405, 0.03861025, 0.036617212, -0.012443078, - -0.002050987, -0.02078643, -0.02379188, -0.056223452, -0.04330262, - -0.025270805, -0.0072387154, 0.02469537, 0.062833205, -0.052153386, - -0.033889122, 0.002776211, 0.027591715, 0.0014540703, 0.0051350957, - 0.026813459, 0.04272286, 0.0091340635, 0.0770652, -0.007202639, - -0.00863497, 0.033352915, -0.02855976, 0.0095147425, -0.051527318, - 0.0017134179, -0.05537486, 0.020782636, -0.020022634, -0.032387596, - 0.03754521, 0.014508408, -0.032587618, -0.007713823, -0.03652692, - 0.06483828, -0.02123605, 0.023022188, -0.0012316378, -0.0010569986, - -0.021225777, 0.004332907, -0.036313176, -0.042751644, -0.002800679, - 0.0014426992, 0.014426946, -0.004010593, -0.0077806, -0.07779959, - -0.010966405, -0.052675266, -0.04909024, 0.0017430958, 0.042670105, - -0.021619987, -0.03414907, 0.003121904, 0.027677367, 0.013709283, - -0.03144742, 0.0239424, -0.004094754, 0.007426102, 0.015220272, - 0.009447454, 0.035401523, -0.01640639, 0.08155209, -2.1470769e-5, - -0.057285145, 0.014063848, -0.02669864, -0.022683768, 0.034939796, - -0.028727373, 0.013466081, -0.016736606, -0.013247933, -0.016543861, - -7.5957774e-5, -0.06903117, 0.018529285, -0.05531664, -0.0020209025, - 0.0036118082, -0.020956727, -0.01385081, 0.028354418, -0.017864343, - 0.0028616842, -0.041562445, -0.029784363, -0.03344041, 0.01753565, - -0.028399272, 0.060914926, 0.061650116, -2.501875e-4, 0.012311945, - -0.016364422, 0.045277353, -0.039957356, -0.034643043, 0.011145427, - 0.03844237, 0.0421458, -0.042722873, -0.01753273, -0.010565396, - 0.012053534, 0.02700143, -0.027762165, 0.04274301, 0.024342969, - -0.033278838, 0.0031271074, 0.0105233155, 0.02180905, 0.04935302, - 0.020195462, 0.013753663, -0.0012806738, -0.004540921, -0.011710102, - 0.04438222, 0.032147173, 0.025039796, -0.033048134, -0.034541704, - -0.06889002, -0.015455561, 0.046944365, -0.044962056, -0.031989202, - 0.008129017, -0.013097452, 0.0024870671, 0.019239781, -0.012010141, - 0.009126825, -0.007706067, -0.006434898, 0.019911377, -0.0071376334, - 0.009740214, -0.011187799, 0.009789303, -0.02760004, 0.010248424, - 0.010702606, -0.022481367, 0.007473514, -0.015503468, -0.004447331, - 0.023359723, -0.0050402256, -0.029619042, -0.03681371, -0.024190059, - -7.4217387e-4, 0.0016685744, -0.03622119, 0.046592314, 0.028615711, - 0.07396028, -0.015090863, -0.029673655, -0.0106617585, 0.0019481131, - 0.02573349, 0.057094045, 0.001352664, -0.032775186, 0.04732241, - 0.026377706, -0.04468184, 0.027712602, -0.038274694, 0.030312547, - 0.065026045, 0.016619666, -0.0034026636, 0.052057393, -0.0090259565, - 0.059333164, 0.008277524, 0.04328889, 0.056609463, 0.013879625, - 0.021428807, 0.010297101, -0.04601264, 0.04338538, -0.045720704, - 0.011189298, -0.0139816925, 0.025830446, -0.016345823, -0.012996128, - 0.006336941, 0.004351183, -0.0017231446, -0.04474067, -0.0012867801, - -0.026532192, 0.046560608, 0.027846707, -0.02204225, 0.053477395, - -0.0097760055, 0.03427787, 0.04315143, 0.016479857, -0.033687063, - 0.055595703, -0.036110897, 0.0253109, -0.03566366, -6.301246e-4, - -0.030726867, 0.016031088, 0.033165198, -0.034020618, 0.04661001, - -0.003634927, 0.012197468, 0.0041950922, 0.0017803544, 4.981504e-4, - -0.015312851, 0.049326446, 0.013081765, 0.0553716, -0.012607032, - -0.017530682, -0.023468854, 0.074998446, -0.0027459734, -0.0386991, - 0.028143663, -0.0028742466, 0.010013833, 0.022378393, -0.014798591, - 0.06421607, 0.028507667, -0.02531514, -0.032266587, 0.022006746, - 0.0017285284, -0.03767333, -0.0022235764, -0.02307638, -0.043157686, - -0.03399284, -0.04541239, -0.032799106, 0.011356635 + "paletteEmbedding" : [ + -0.005657998, + 0.016745279, + -0.017943755, + 0.005684024, + 0.023376176, + 0.08852071, + -0.030731244, + 0.007859344, + -0.010031466, + -0.01431771, + 0.02410473, + -0.0022260908, + 0.018529823, + 0.07195899, + 0.036889143, + 0.004715509, + 0.009032032, + -0.051597238, + -0.01945507, + -9.2602795E-4, + 0.033571444, + -0.006619511, + -0.010176922, + -0.028473198, + 0.01641488, + 0.011394804, + -0.0040679188, + 0.0242482, + 0.03838383, + -0.07293533, + 0.016984943, + -0.02126871, + -0.008003988, + 0.059930257, + 0.06021093, + 0.0643695, + -0.06884416, + 0.007961691, + 0.012454569, + 0.0076360246, + -0.018835492, + 4.78163E-4, + -0.020306824, + 0.037216984, + -0.0083856825, + 0.044143602, + 0.028667143, + 0.038423207, + -0.022328382, + 0.0023839802, + -0.0045103994, + 0.025749628, + -0.03779951, + 0.0018984798, + -0.004398263, + -0.049798895, + 0.024749555, + -0.02834672, + -0.09551562, + -0.009878466, + 0.066932365, + 0.02225783, + -0.027188512, + -0.022189269, + 0.024988502, + -0.026601302, + -0.018678537, + 4.6550645E-4, + 0.010223205, + 0.051420633, + 0.026364684, + -0.06753535, + -0.024545101, + -0.022210559, + -0.024616066, + -0.012707898, + -4.690078E-4, + -0.028576795, + -0.025918493, + -0.021176536, + 0.013257191, + -0.043698892, + -0.048858076, + 0.019050369, + 0.067977466, + -0.058034476, + 0.018474316, + -0.0041764104, + 0.03688576, + 0.049200702, + 0.009472609, + -0.008947381, + -0.02509199, + -0.0086251, + -0.011437298, + 0.014619073, + 0.033696882, + 0.020893669, + -0.0057964865, + -0.01292807, + -0.024956815, + -0.031088406, + 0.019462936, + 0.015725866, + 0.027235996, + 0.01709579, + 0.00866046, + -0.04658756, + -0.018053245, + -0.022577126, + 0.019235693, + 0.043437354, + 0.008623364, + -0.013511301, + -0.041729085, + -0.0014024191, + 0.0013056463, + -0.042674977, + 0.03603817, + -0.073530056, + 0.0076434896, + -0.057318993, + -0.0071781697, + -0.04688125, + 0.033207282, + 0.04354642, + 0.0055802534, + -0.0060015256, + -0.008572766, + 0.008422175, + 0.0010494693, + -0.026742298, + 0.031794004, + 0.071512036, + -0.010480324, + 0.019380912, + 0.04049374, + -0.00223674, + -0.030672811, + 0.025178477, + 0.0077504627, + -0.01989174, + 0.015712537, + -0.0091503635, + 2.7548987E-4, + 0.037078094, + 0.050037306, + -0.013583929, + -0.003833055, + 0.06668626, + -0.04987804, + -0.05788447, + 0.021869214, + 0.007457431, + 0.03407379, + 0.04533061, + 0.032755528, + 0.029642167, + 0.002609738, + 0.032056633, + -0.042971432, + 0.05696598, + 0.059093516, + 0.058258638, + -0.0019118338, + -0.021869784, + -0.0052724998, + 0.011969284, + 0.029166281, + -0.021738717, + 0.028337073, + 0.026839428, + -0.00946512, + 0.01954673, + 0.02486209, + -0.016227378, + 0.04595817, + 0.017407272, + -0.02322182, + -0.056932397, + -0.044911884, + -0.0019106918, + -0.024195766, + 0.0050195884, + -0.021300755, + -0.0025135877, + 0.022771934, + 0.0031617784, + -0.033485387, + 0.07094436, + -0.0027197255, + 0.018195497, + 0.020833774, + 0.02205519, + -0.06441389, + 0.0025612589, + -0.021594686, + 0.018431306, + 0.054192383, + -0.044632398, + 0.009661087, + -0.051416483, + -0.028132379, + -0.0025181423, + 0.029971851, + 0.0022626815, + 0.0037561234, + -0.01449063, + -0.07658149, + -0.040790576, + 0.002611292, + 0.041447558, + 0.05614022, + 0.052565165, + -0.0057984837, + 0.023428673, + -0.0109364465, + -0.043753054, + -0.013259658, + -0.05895616, + -0.07511438, + 0.016900364, + 0.058361273, + 9.827077E-4, + 0.039806645, + -0.013255926, + -0.0086049875, + 0.0012402916, + -0.017559763, + 0.019280395, + -0.045404136, + -0.016985813, + 0.024637863, + -0.011604926, + 0.021771705, + -0.019022483, + -0.004194627, + 0.013519488, + -0.047729913, + 0.028676534, + -0.045573484, + -0.024906384, + -0.026778152, + 0.0028331913, + 0.02341137, + -0.02576817, + 0.0053015295, + -0.08856107, + 0.0073722918, + -0.044001922, + -0.008777253, + -0.011058555, + 0.031404465, + -0.03611649, + -0.022176705, + -0.004873053, + 0.011823362, + 0.09541222, + -0.036342744, + -0.0063492088, + 0.033194512, + 0.030130986, + 0.07241852, + -0.013451378, + 0.014637359, + 0.064804606, + 0.036668178, + -0.011396581, + 0.034966484, + 0.025308091, + 0.050763063, + 0.012045424, + -0.02492039, + 0.02385125, + -0.022770502, + 0.018427424, + 0.0037582556, + -0.0073060873, + 0.0045272643, + -0.026472818, + 0.009495831, + -0.0020549756, + 0.010107811, + 0.023122067, + -0.05104127, + -0.009253948, + 0.022517085, + -6.980001E-4, + 0.026924357, + -0.0010793221, + 0.028919244, + -0.04680655, + 0.025448505, + -0.004381097, + 0.046943486, + 0.018813567, + 0.047972035, + -0.020507127, + -0.043792833, + -0.0030541401, + -0.005094593, + -0.03773173, + -0.015412476, + 0.03073259, + -0.01891699, + -0.011168013, + 0.005517131, + 0.008583859, + 0.033660945, + -0.039156515, + 0.010849649, + 0.02486298, + 0.02879459, + -0.029637061, + 0.030540325, + 0.025864523, + -0.026535088, + -0.032353405, + 0.020727199, + -0.012598966, + -0.0041570235, + -0.022594921, + -0.051734515, + 0.050972845, + -0.0051634912, + 0.007678744, + -0.016009036, + -0.006200947, + -0.0035444996, + 0.035425972, + 0.02449626, + 0.041306548, + -0.009099663, + 0.07168117, + -0.005621437, + 0.025896717, + -0.0503134, + -0.039422747, + -0.06902309, + -0.027784005, + 0.036447547, + 0.02555853, + -0.006205659, + 0.010324985, + -0.02112164, + -0.02100085, + 0.060902763, + 0.008447368, + 0.019831782, + -0.028945956, + -0.08838139, + 0.008980589, + 0.008434903, + -0.051272422, + -5.315883E-4, + 0.027502088, + -0.05462732, + 0.058042146, + -0.0038178975, + 0.029010883, + 0.0075752004, + 0.018812347, + 0.041838225, + 0.041554853, + 0.0075157196, + 0.017768973, + -0.03814829, + -0.021098305, + -0.02950734, + -0.017975649, + 0.04631838, + 0.003760207, + 8.154541E-4, + 0.00693866, + -0.005173749, + -0.0030305826, + 0.029112414, + 0.03488366, + -0.017526992, + 0.051956754, + -0.054515988, + -0.020028977, + 0.015826559, + 0.0036716573, + -6.119155E-4, + 0.031195814, + -0.0029277848, + -0.0069457814, + 0.012860425, + 0.046899203, + 0.004831019, + 0.05648747, + -0.032285154, + 0.02406195, + 0.0051929276, + -0.009823243, + -0.0142364055, + 0.018723963, + 0.060450677, + 0.033264387, + -0.03629946, + 0.0036535899, + 0.029174237, + 0.043536108, + -0.024431353, + 0.008312116, + 0.021044925, + -0.017587936, + -0.034292806, + 0.022616658, + 0.015100035, + 0.002754258, + -0.023509393, + 0.016685067, + 0.0227881, + -0.015405553, + -0.034943573, + -0.051838435, + -0.016117219, + 0.04046649, + 0.016306082, + -0.040604092, + 0.07529587, + -0.06376778, + 0.018363656, + 0.015248799, + -0.024530446, + 0.019735457, + 0.0527999, + -0.03985875, + -0.033464868, + -4.4257235E-4, + 0.02059687, + -0.062927425, + 0.013355538, + 0.020907767, + -0.018950127, + -0.0019125107, + -0.0530355, + -0.024625067, + 0.02954982, + 0.028296862, + 0.008160559, + -0.07475708, + 0.002442255, + 0.031290814, + -0.054169722, + 0.07056343, + -0.007887993, + -0.034166787, + 0.0067448113, + -0.018718474, + -0.027162274, + -0.020327516, + -0.06051312, + 0.027777465, + -0.017679501, + -0.02395244, + -0.0425592, + 0.011702308, + 0.04579506, + 0.061799634, + -0.008696788, + 0.026974184, + 0.05404286, + -0.01645482, + -0.017217882, + -0.038191196, + 0.044955388, + 0.016387453, + 0.06376554, + -0.011104859, + -0.01650798, + 0.037754048, + -0.019993547, + -0.04840597, + 0.053596877, + 0.0066299597, + -0.050292604, + -0.042866904, + -0.018709213, + 0.022721734, + -0.001582196, + 0.027750524, + 0.012549646, + 0.02515643, + 0.043590594, + 0.0035497427, + -0.004851036, + 0.0103838425, + 0.019073844, + -0.035196196, + 0.019259581, + -0.023533132, + 0.041791573, + -0.005427659, + 0.023495054, + -0.028368125, + 0.002276099, + 0.05271548, + -0.010479564, + 0.013073406, + 0.0135404505, + 0.006532533, + 0.001811006, + -0.028507113, + 0.03222731, + 0.014689238, + 0.008294954, + 0.0012746848, + -0.015002268, + -0.038830068, + 0.048226304, + -0.015040095, + 0.030199263, + -0.018174296, + -0.025249219, + 0.0061729, + 0.041070294, + -0.013239627, + 0.0641974, + -0.020465119, + 0.015075887, + 0.0062058, + -0.0055875448, + -0.005753851, + 0.039377294, + -0.005661983, + -0.008888558, + -0.0048215245, + 0.06051213, + 0.03203842, + 0.017368576, + 0.010288993, + 0.010852465, + 0.010729479, + -0.011387456, + -0.04504924, + 1.2624E-5, + -0.009070121, + -0.012899634, + -0.043896567, + -0.03878423, + 0.0064673363, + 0.027086178, + 0.032498732, + 0.018946428, + -0.0012032752, + 0.039317127, + 0.019946447, + 0.0713372, + -0.02136195, + 0.027113069, + -0.047445815, + -0.010279023, + 0.011357484, + -0.00799273, + -0.0020406325, + -0.042371277, + 0.03149262, + 0.04396123, + -0.03348743, + -0.0047738305, + -0.037507433, + -0.03896976, + 0.014156158, + -0.039984684, + -0.033266727, + -0.018972158, + 0.012230214, + -0.002361112, + -0.02173602, + 0.0778017, + -0.05018843, + 0.003139291, + -0.010694284, + -0.041075338, + 0.041093506, + -0.005484792, + 0.027116453, + 0.015146248, + 0.011130007, + 0.051375832, + -0.0155660035, + 0.010455881, + 0.038908493, + -0.012807101, + -0.0030533264, + 0.03645274, + -0.024887202, + -0.0071180826, + -0.0047550215, + 0.053109527, + 0.0072729853, + 0.0025974459, + 0.03334307, + 0.002834631, + 0.0027365207, + 0.023101201, + 0.035938423, + -0.05492116, + 0.03691513, + 0.037528675, + -0.031118436, + -0.0059906207, + 0.0053752977, + 0.0069376016, + -0.055885185, + -0.010662805, + -0.0024954288, + 0.02546942, + -0.058397368, + -0.020323835, + -0.0011590951, + -0.04900149, + 0.0072431494, + -0.039156448, + -0.03747939, + -0.0030378487, + 0.0066952254, + -0.016676428, + -0.0490331, + -0.015083204, + -0.036762755, + 0.045007225, + -0.028444342, + 0.030463839, + -0.008438153, + 0.017748266, + -0.024061989, + 0.016875692, + -0.0032050307, + -0.0026599052, + 0.0024279435, + 0.03641508, + 0.065034226, + -0.04299166, + -0.0051493235, + -0.076601274, + -0.025549425, + 0.049747456, + -0.021823652, + -0.03411026, + 7.2158145E-4, + 0.037990976, + 0.02719149, + 0.005667742, + 0.0013084513, + -6.566595E-4, + 0.03444956, + -0.04157057, + -0.0035556543, + 0.03295732, + -0.0070448173, + -0.048311185, + 0.048780166, + -0.032671317, + -0.014070709, + 0.03456908, + 0.017139735, + 0.0323538, + 0.039800763, + 0.049234252, + -0.016978279, + 0.0019627276, + -0.036637094, + -0.051061038, + 0.03238569, + 0.0020868701, + -0.022476198, + 0.036039155, + -0.027557248, + 0.0048657125, + -0.051808357, + 0.07704687, + 0.04190553, + 0.026798325, + 0.024744414, + 0.048429597, + -0.047925584, + -0.044235427, + 0.0023229718, + -0.019404499, + 0.003333171, + -0.008074266, + 0.059305828, + -0.017212987, + -8.382644E-4, + 1.2603063E-4, + 0.053568352, + -0.0052721715, + 0.011056239, + -0.03601756, + 0.031211767, + 0.037352536, + 0.025810512, + 0.004121811, + 0.03754724, + -0.02162522, + -0.042256974, + -0.028139725, + 0.011564806, + 0.0042119604, + -0.012561452, + 0.055493277, + 0.017894536, + -0.061072618, + 0.026047856, + 0.039993364, + 0.060929127, + -0.031036025, + -0.05551142, + 0.029671287, + 0.01598692, + 0.034161948, + 0.048232958, + -0.008929433, + 0.051606044, + 0.053488314, + 0.017284336, + -1.9016357E-4, + -0.016737398, + -0.0023535716, + 0.028967306, + -0.03369469, + -0.018182717, + -0.0068089706, + -0.04479566, + 0.018406771, + 0.022209493, + 0.02869121, + -0.030019142, + 0.0027983964, + 0.020316094, + 0.015599092, + -0.010753671, + -0.0012695949, + 0.06178272, + -0.03895276, + -0.017091665, + -0.0287818, + 0.018083367, + -0.024617702, + -0.017740147, + -0.014286801, + -0.0035072768, + -0.022118162, + -0.025236506, + 2.0269731E-4, + -0.0030454018, + 0.07071487, + 0.030920569, + -0.0012785263, + -0.030838426, + -0.010096125, + -0.03218866, + 0.005471216, + 0.030426463, + -0.04696746, + 0.035053942, + -4.029065E-4, + 0.06573714, + -0.0027587218, + 0.0032693476, + 0.031149263, + -0.020175545, + -0.0364549, + -0.0041482383, + -0.009003062, + -0.026045013, + 0.0011265018, + -0.0449015, + 0.047647323, + 0.013181693, + 0.039889723, + 0.03577404, + 0.012128893, + 0.03251733, + -0.005064658, + -0.01614071, + -8.759791E-4, + -0.05743263, + 0.011218768, + 0.012318717, + 0.017090423, + 0.071519576, + -0.03409639, + -0.06742868, + 0.011227789, + 0.05553487, + -0.0593269, + 0.033642843, + -0.017633302, + -0.030966982, + -0.007127505, + 0.062071986, + -0.04352889, + -0.04242629, + -0.020986222, + -0.006457702, + -0.0033901962, + 0.01468797, + -0.010751527, + -0.031202665, + 0.0023108448, + -0.025010305, + -0.077743314, + 0.032819465, + -0.0035295358, + 0.01677507, + -0.03782049, + -0.047502812, + 0.012974237, + -0.03991491, + 0.07225395, + -0.0013165349, + -0.03537439, + -0.057698064, + 0.007675007, + 0.018185247, + -0.005758714, + -0.030313889, + -0.0072819698, + 0.025622787, + 0.010287973, + -0.028066205, + -0.0071552824, + -0.034107745, + 0.020245366, + -0.018048378, + 0.021587096, + 0.03142141, + -0.041770592, + 0.015557633, + -0.05904927, + 0.01876123, + 0.023454713, + 0.014150016, + -0.020007446, + 0.027862154, + 0.043832626, + 0.010188621, + 0.025572734, + 0.02573412, + -0.036982995, + -0.049469206, + 0.03237723, + -0.028538551, + 0.0014467504, + -0.02427164, + 0.004049044, + 0.02714506, + -0.031276364, + 0.03493857, + -0.014431553, + 0.046843693, + -0.024816187, + 0.01692709, + 0.06755569, + -0.027063662, + -0.0054751914, + 0.015176125, + 0.03266918, + -0.036167234, + 0.009117824, + -0.0350155, + -0.009369958, + -0.010572718, + 0.0038606517, + -0.026955053, + 0.0038628655, + -0.0057324613, + 0.018307894, + 0.052834004, + 0.04401703, + -1.466234E-4, + -0.05845321, + -0.029298183, + -0.023207963, + -0.007909208, + 0.017993484, + -0.04803923, + 0.01870573, + 0.035478763, + 0.03217015, + -0.017859008, + -0.0584581, + 0.06465557, + 0.046838824, + 0.007355258, + -0.019931398, + 0.033241756, + 0.04798094, + 0.0089031, + -0.009614576, + 0.017017014, + -0.00574103, + 0.0033382268, + -0.025419673, + 0.013615497, + 0.026745647, + 9.492369E-4, + 0.010940804, + -0.026813801, + -0.0021476364, + -0.030790562, + 0.007849494, + 0.011701229, + -0.027367288, + -0.004791369, + -0.010595886, + -0.046590824, + 0.016211983, + -0.06675096, + 0.016167693, + -0.048500128, + -0.01803336, + 0.012517751, + 0.012415692, + -0.05034569, + -0.013176888, + 0.020020066, + 6.270898E-4, + 0.037626546, + -0.006575945, + 0.009831585, + 0.055972464, + -0.033304464, + -0.005579527, + -0.04602845, + 0.0043314854, + 0.032029305, + 0.012106204, + -0.03051872, + -0.005977641, + -0.06207697, + 0.028957386, + 0.0027547143, + 0.03521163, + 0.01720909, + -0.008648435, + 0.036159407, + 0.017387278, + -0.0030254938, + -0.024677945, + 0.03730465, + 0.012219054, + -0.011649704, + 0.0146164065, + 0.006307072, + -0.0192019, + 0.023984727, + 0.043339998, + -0.009138025, + -1.0081689E-4, + 0.029253423, + 0.0051281163, + 0.019733328, + 0.007634697, + -0.028153922, + -0.013725769, + 0.004429137, + 0.014510688, + 0.031931855, + 0.020442266, + -0.042119462, + -0.06683654, + -0.023500592, + -0.037574664, + 0.029218527, + -0.013254486, + -0.018006423, + -0.007481656, + -0.041019224, + 0.0043819416, + 0.002508734, + -0.042703602, + 0.0069387904, + 0.012967117, + 0.016202653, + -0.0013016125, + 5.308708E-4, + 0.03299991, + 0.047104154, + -0.003020554, + -0.018068865, + 0.03681837, + -0.028768966, + -0.048780248, + 0.012203368, + 0.031565487, + 0.041773774, + 0.024011541, + 0.018685045, + 0.016899863, + 0.08353374, + 0.022104943, + 0.005975132, + 7.712755E-5, + 0.036316402 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.6.json b/common/search/src/test/resources/test_documents/images.different-licenses.6.json index ab0f420e7..77c9c3b97 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.6.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.6.json @@ -1,1343 +1,5252 @@ { - "description": "images with different licenses", - "createdAt": "2023-11-21T14:25:43.553478Z", - "id": "gt4jeta0", - "document": { - "modifiedTime": "2068-06-15T19:26:53Z", - "display": { - "id": "gt4jeta0", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different licenses", + "createdAt" : "2024-11-14T14:37:56.310591Z", + "id" : "k85xxljq", + "document" : { + "modifiedTime" : "2036-04-06T08:36:24Z", + "display" : { + "id" : "k85xxljq", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/uJ2.jpg/info.json", - "credit": "Credit line: jQIpcFVow8", - "linkText": "Link text: wGsI5U34qa", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", + "linkText" : "Link text: qzZzIMyJve", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/uJ2.jpg/info.json", - "credit": "Credit line: jQIpcFVow8", - "linkText": "Link text: wGsI5U34qa", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", + "linkText" : "Link text: qzZzIMyJve", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#4EA066", - "source": { - "id": "x0kyzeua", - "title": "title-8WCCZt1VA7", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#93CD95", + "source" : { + "id" : "ntuf2946", + "title" : "title-gUwHG54SYM", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "gt4jeta0", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "x0kyzeua", - "sourceIdentifier.value": "LWazZZ7zEg", - "identifiers.value": ["LWazZZ7zEg", "04slPBA0yC", "J6eLbnGyck"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-8WCCZt1VA7" + "query" : { + "id" : "k85xxljq", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ntuf2946", + "sourceIdentifier.value" : "t6VgzBtShY", + "identifiers.value" : [ + "t6VgzBtShY", + "PfkkwyEoqB", + "RMwqGu5WyX" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-gUwHG54SYM" } }, - "aggregatableValues": { - "locations.license": [ + "aggregatableValues" : { + "locations.license" : [ "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}" ], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["pdm"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.02338635, 0.02654058, 0.012043157, -0.022669295, -0.011923078, - -0.004397356, 0.03729, -0.0065726647, -0.0025890851, -0.005353971, - -0.006961534, -0.0020341699, 0.011937227, 0.0070003667, -0.01988233, - 0.0010283798, -0.013589138, 0.0073420326, 0.006216292, 0.02001783, - 0.018354828, -0.029779768, -0.0038616566, 0.005740146, 0.053768255, - -0.009815642, -0.033738025, -0.011072369, -0.02117617, -0.0024512722, - -0.004372408, 0.014671196, 0.030342568, -0.0055106985, -0.0140193375, - 0.0059478018, 0.026798747, 0.007201693, -0.016597237, -0.026831057, - 0.0048900857, -0.0025865678, -0.020590696, 0.028594388, -0.029801821, - -0.003750373, -0.014220206, -0.017553179, -3.854945e-4, 0.0030259006, - 0.014528558, 0.0014311189, -0.015094063, -0.018738188, 0.017794728, - 0.008483529, -0.005478925, -0.015354519, 0.0059806905, -0.0212833, - 0.005065613, -6.663939e-4, 0.023957532, -0.027739182, 0.026571589, - -0.015585324, -0.016348574, -0.027527055, 0.0062538227, 0.0018311447, - 0.02631517, -0.008488733, -0.008229836, -0.02200748, 0.008160011, - 0.005632555, 0.007477345, 0.017472852, 0.0065725604, -0.030316966, - -0.012921177, 0.01667277, 0.010002988, 0.019330552, -5.2455853e-4, - -0.0192098, -0.0142390635, 0.0028561275, 0.012955841, 0.032419737, - 0.011635025, -0.0103485575, -0.0139856115, 8.099684e-4, 0.014679188, - 0.0032840145, 0.009198552, 0.004146163, 0.0021726761, 0.01851981, - 0.008626996, -0.0014058904, -0.017497499, -0.005083079, -0.007541801, - -0.0011923913, 0.014702031, -0.0041421787, 0.007783922, 0.0054875147, - -0.017846692, -0.013646739, 0.007812638, -0.01037133, -0.0066354955, - -0.0011445567, 0.019085435, -0.013977609, 0.021147463, 0.0078817075, - 2.2716989e-4, 0.014366684, 0.002548389, -0.011204823, -0.0014651392, - -0.020665428, -0.042395156, -7.8772305e-4, 0.030793404, 0.015178684, - 0.004407083, 0.010519922, -0.006371727, 0.017461602, 0.012857337, - 0.026514508, -0.0064272024, 0.016700285, -0.042481106, 0.015911559, - -0.023206716, 0.012512861, 0.021827621, -0.0011806046, -0.005284076, - -0.025953077, -0.023262335, 0.0047842334, -0.018562477, 0.011701329, - 0.0063918983, -0.014368656, -0.0013454643, 0.008151785, 0.015758155, - 0.007680785, 0.014162073, -1.5671196e-4, 0.016079435, -0.0066383155, - -9.215241e-4, 0.011688162, 0.0076725706, 0.022193449, 0.0019433398, - 0.011875442, -0.0063254177, -0.008024384, 0.003923772, -0.015575535, - -0.0049817325, -0.017898958, 0.0062055625, 0.028159525, 0.010841521, - -0.0174535, -0.022495063, -0.01759253, -0.0019086268, 0.005428684, - 0.0018844333, 0.014935654, -0.009501413, -0.0090889605, 0.0034583735, - -0.036329944, 0.016699992, -0.011136921, -0.022013284, 0.01059249, - 0.011940283, 0.007393524, 0.013790698, -0.008766886, 0.017807566, - 0.009200417, 0.010900664, -0.015624867, -0.0016275158, -0.0037301371, - 0.0061722477, -0.01331874, 0.0063187797, -0.014178503, -0.006912774, - 0.004775527, -0.0012664915, 0.006873787, 0.026604492, 0.02066651, - 0.022859437, -0.0058365054, 0.0071695675, 0.011995827, 0.012589588, - 0.024059406, -0.0017717489, -0.02243498, -0.001524836, -0.017480232, - 0.013041336, -0.012923759, -0.016933203, 0.01843009, 0.02295451, - 5.281432e-4, 0.0134194605, 0.0071375556, -0.008569154, -0.020377697, - 0.036059596, 0.0104573695, 0.02775162, 0.022224749, 0.007953222, - 0.011305675, 0.021895258, -0.02785331, -0.029779945, 0.0051008556, - -0.012949867, -0.023613267, 0.011487316, -0.019639783, -0.023250246, - -0.008284698, 0.01810318, -0.005866742, -0.0152436495, -0.0065777926, - -0.0019098915, 0.03361625, 0.013582888, 0.001966638, -0.0027676972, - 0.015487536, -0.019732641, -0.016357036, 0.0031916853, -0.008357977, - 0.010960923, 0.013996509, 0.005545963, -0.009285606, 0.014877277, - 0.006390819, -0.002886411, 0.007416651, -0.0033880272, 0.011331213, - -0.009748805, 0.0030833103, -0.007756204, -0.011917882, 0.0067513124, - -0.016779244, -0.0095740985, -0.025550393, 0.006620862, 0.033585716, - -0.011138555, 0.014223229, 0.0080385525, 0.011277303, -0.0022350876, - 0.005553938, 0.013463911, 0.005190749, 0.006261367, -0.017436536, - -0.020659056, 0.004175281, 5.017296e-4, -0.03584351, -0.012949872, - -0.01649106, 0.03305095, 0.009474204, 8.594307e-4, -0.0035376267, - 0.004078531, 0.017755916, -0.0028222257, 0.0076862443, -0.017711155, - 0.0142121315, 0.010217878, 0.0056501073, 0.006098458, -0.0015193779, - -0.022990977, 0.032135956, -0.013654891, -0.004970654, 0.0070361313, - -0.016826054, -0.0028581528, 0.018660856, -0.024139483, -0.005009052, - -0.028810086, -0.027732996, -0.0057138773, 9.07169e-4, 0.003821416, - 0.015581481, -0.015593824, 0.027781524, 0.006160611, 0.003373584, - 0.012002547, -0.0063241497, 0.019009452, 0.020944122, -0.02061664, - 0.020774933, -0.022266824, 0.028432034, -0.0032237356, -0.021310747, - -0.0039149434, -0.002132241, 0.0012382787, -0.015300088, 0.026528932, - -0.009441262, -0.0128323855, -0.02051185, 0.024116071, 0.009480322, - 0.01966778, -4.892492e-5, -0.007663546, 0.0020252771, -0.013746882, - -0.01367195, 0.021073027, 6.6123706e-5, 7.059823e-4, -0.014985145, - 0.010384959, 3.7622725e-4, 0.014263859, 0.015188448, 0.006259363, - -0.0034526298, 0.012833869, 0.027929367, -0.031932928, 0.0015160238, - -0.011130951, 0.0020430116, -0.0054980475, -0.020864932, 0.0276503, - 0.018823408, 0.0121951485, 0.0071678343, -0.01355883, -0.012031393, - 0.0045404295, -0.0047874143, -0.011716528, 0.016001234, -0.004911273, - -0.0011843101, -0.0082781715, 0.020267941, 0.0023952946, -0.011639905, - -0.023347555, 0.030037995, -1.9531522e-4, 0.0054968065, -0.018677168, - -0.0046013426, -0.007020079, 0.039373077, -6.0339563e-4, -0.032425206, - 8.631844e-4, -0.012098069, 0.012833804, 0.002918655, -0.022266269, - 0.001601032, 0.020505324, -0.0049024117, -0.0027093044, -0.0018512617, - 0.012087838, 0.011538084, -0.008924231, 0.023030898, 0.012581364, - 0.009498665, 0.02062488, -0.028539555, 0.01722665, -0.018326947, - -0.026459621, -0.010336174, 0.001330748, 0.011322159, 0.015446227, - 0.010288251, 0.015372447, 0.009914484, -0.035481837, 0.009409256, - 0.025258986, 0.0043625636, -0.016377369, -0.010691326, -0.011867504, - 0.0028665257, -0.009041636, 0.017831178, -9.4292517e-4, -0.010897187, - 0.016001081, -0.008679283, -0.004972022, 0.0063597728, -0.0010054613, - 0.0025281585, 0.0034140658, 0.021535903, 7.2385865e-4, 0.012117466, - 0.031954367, -0.004155856, -0.01838204, -0.01132364, 0.0061563724, - -0.013441497, -9.0541475e-4, 0.013526024, 0.0018610562, 0.014483472, - -0.014295531, 0.019382112, 0.01636619, -0.011016979, 0.04785796, - -0.018357983, 0.013102774, 0.0010349179, -0.033372037, -0.003083369, - -0.0012901025, -0.004932188, -0.013154525, 0.021477988, 0.036077186, - -0.0028503984, -0.011923456, -0.0090894345, 0.0015846783, -0.017657204, - -0.0013799069, -0.017495405, -0.011575976, 0.005652005, -0.0021876204, - -0.006814007, -0.013973222, -0.0043814457, 0.013165334, -0.044298064, - 0.019909695, 0.008797285, -0.019396335, -0.03399948, 0.006425781, - 0.02043591, 0.0045237406, 0.030003687, 0.011676771, -0.0077436795, - -0.004936517, -0.0012545562, -0.012487955, -0.03297621, -0.009152529, - 0.016111787, 0.020675385, -0.0045593577, -0.029128823, -0.0010074634, - 0.015801786, -0.027238255, 0.0029941518, -0.017868415, 0.014691274, - -0.009535555, -0.018270789, -0.006884615, 0.011734356, 0.003910164, - 0.013267146, -0.011741221, 0.012760282, -0.02015788, -0.0053871716, - 0.025225775, 0.0012994017, 0.011377035, -0.00749358, -0.0014054704, - -0.016475426, -0.018265577, 0.02255275, -0.0038924213, 0.0054081124, - 0.018656323, 0.008269689, -0.011641354, 0.011047603, -0.0133091975, - 0.00728353, 0.005600135, 0.01878304, -0.007784179, 0.0040810853, - -0.0014418901, 0.0169853, 0.028316867, -0.0025686924, -0.0029272416, - -0.0063250754, 0.020098714, 0.003168993, 0.0012164384, -0.01260634, - 0.014098858, 0.01063954, -0.002267703, -0.0055339662, 0.024853861, - -0.0073741917, -0.004149022, -0.0016077217, 0.012060307, 0.0044934116, - 0.021193545, -0.006005542, 0.017529469, -0.006643593, 0.0064973743, - 0.01133869, 0.010790025, -0.008207522, 0.019969286, -0.0039032886, - 0.004583931, -0.015317006, 0.004988009, -0.0041941414, 0.016850375, - -0.010354606, -0.020472487, -0.006544736, 0.016040266, 0.010836924, - 2.0241884e-4, -0.0050344435, 0.00236762, -0.0021658414, -0.0053655137, - 0.032867286, 0.013151936, 0.026304038, 0.003414697, -0.0072510685, - -8.3034753e-4, 0.02598071, 0.035182927, -0.017840238, 0.019858873, - 0.030487074, 0.014137848, 0.019792536, 0.01057146, -0.026217744, - 0.0020149138, 0.04657797, 0.0064287516, 0.0035369012, 0.008571602, - 0.011714193, 0.024151322, -8.852532e-4, 0.0038191609, 0.00919233, - 0.01476138, 0.006721827, 0.0018233935, 0.0019008139, 0.016321115, - -0.021404779, 0.016574675, 0.016434735, 0.02332056, -0.009886017, - -5.910252e-4, 0.024252659, 0.0018370204, 0.028748943, 0.03339307, - 0.0068499255, 0.010357815, -0.011152466, -0.0077111484, 0.018951673, - -0.0048140027, -0.02128106, -0.0016618654, -0.0035997601, -2.4520338e-4, - 0.0031763432, -0.019302415, 0.00805999, -0.021313652, 0.01007902, - -7.749188e-4, 0.012479014, -0.004387657, 0.01847414, 0.020304237, - 0.007991339, -0.009500606, 0.01720762, 0.019467644, -0.019957872, - 0.039211895, 0.014950737, -0.025038186, -0.008360423, 0.0068468763, - 0.033030704, -0.009600494, -0.008057128, -0.010980622, -0.021891417, - -0.013620849, 0.019416213, -0.0052165813, -0.0061054537, 0.018416366, - 0.016504124, 0.007005367, 0.0128288185, -0.024031604, 0.0075841, - -0.011216113, 0.0046148207, 0.0027918015, 0.009335104, -0.0020130128, - -7.8769197e-4, 0.008852259, 0.008469301, 0.0030109596, 0.015634242, - -0.0062138955, 0.013927024, -0.0013146193, -0.021024752, 0.006142784, - -0.025415394, -0.016174987, -4.0554104e-4, -0.0059583373, 0.014307203, - 0.0060042394, 0.016735557, 0.0038495394, -0.0049375338, -0.0061245626, - -0.0018638234, 0.014894525, 0.01329397, -0.008823224, -0.0017123888, - -0.002926579, 0.023754079, -0.011657477, 0.0013793178, 0.006803944, - -0.0099910665, 0.022281932, -0.003625085, 0.011955147, -0.0057248385, - 0.012610336, -0.010523322, -0.008760407, -0.03312728, -0.031331528, - -9.788392e-4, 0.0011923711, 0.035140388, 0.0067461277, 0.025454741, - 0.0339662, -0.0016296873, 0.0070142434, 0.01781022, -0.011992643, - -0.0061715003, 0.008085224, 1.261607e-4, -0.004472753, 0.034223758, - 0.01663757, -0.004534924, 0.015999157, 0.020106249, 0.011872445, - 0.020011451, 0.005504394, 0.0051564206, 0.023934262, -0.014118591, - 0.00219653, 0.013607922, -0.006850632, -0.027593654, -0.0053658155, - -0.014422072, -0.0060788062, -0.016756767, -0.0060522608, 0.005332553, - 0.011297731, -0.0045213313, 0.015214339, 0.0064883786, -0.023287479, - -0.0068300385, -0.0065952823, -0.003012847, -0.017154116, 0.0049100285, - 0.0059904205, -0.0022532311, -0.0054821707, 0.0011310368, 0.018255003, - 0.009323317, -0.033639148, -0.019952113, -0.009574219, 0.016020322, - 7.5475645e-4, 0.036932126, -0.014162979, -0.016763868, -0.037982177, - -0.012129967, -0.0020914823, 0.009482378, 2.3472156e-4, -0.01805111, - 5.1437084e-5, 8.12322e-4, 0.020257609, 0.017542237, -0.0027995533, - 0.017208409, 0.009285391, 0.011368255, -0.0063438197, -0.0046375673, - 0.018494494, 0.011228301, 0.012220664, 0.016071199, -0.013208667, - -0.019753544, -0.010058641, -0.023769941, -0.015976533, 0.016547386, - -0.022709142, 0.0033045902, 0.024753379, 0.012705216, -0.009815796, - 0.0016798584, 0.011759487, 0.020548511, 0.006862064, -0.009464819, - -0.0017587726, 0.01863183, 0.02802419, 0.008070217, 0.01336796, - -0.04089326, -0.01826927, -0.021037435, -0.013115663, -0.025140451, - -0.010530095, 0.011531913, -0.003592806, -0.02543093, 0.010878641, - 0.023837453, -0.028189827, -0.00138192, 0.002310902, -0.0021105479, - -0.014459726, 0.0048677074, -0.0016938748, -0.021254065, 0.019557381, - 0.011524205, -0.0023720511, 0.0052171904, -0.003543623, -0.01969965, - 0.01281927, -0.018366162, -0.014245887, 0.010061079, -0.036440484, - -3.1768307e-4, -0.017899701, -0.028855816, -0.0017479266, 0.022732738, - 0.02220687, -0.0026458183, -0.017795093, 0.008674216, 0.004602301, - -0.019449359, -0.0039686994, -0.006173126, 0.007129143, -0.0012458318, - 0.003356883, 0.010521639, 0.01297209, -0.0042929584, -0.008482008, - 0.037571482, 0.0016026577, -0.019439874, -1.756001e-4, 0.020337231, - 0.0033088129, 0.0034073112, 0.0031896557, -0.0059868973, -0.0041036746, - 0.005421185, -0.0011518383, -0.023764726, 0.0052010133, -0.017713789, - 0.004780523, 0.0015561203, -0.0099354265, 0.04958494, -0.023749556, - -0.022909569, -0.004558664, -0.011322875, 0.008553215, -0.005025517, - 0.015987977, 0.025202898, -0.02178064, 0.0033676687, 0.0058772317, - -0.0044246744, 0.010072621, -0.021774454, 0.0011709587, -0.008888404, - 0.0036477977, 9.764508e-4, -0.01981986, -0.01031356, 0.025327427, - -0.009515591, -0.0061164056, 0.0017230345, -0.03782215, 0.017841795, - 0.017148893, -0.017836463, -0.0066262716, 0.002411967, -0.017044878, - -0.0053652055, 0.011293873, 0.018321706, -0.03180225, -0.0047178064, - -0.0024630025, -0.03219922, -0.020571252, 0.006855615, 9.3954924e-4, - 0.0348134, -0.008495757, 0.029312192, -0.015896847, -0.004842187, - -0.013632602, 0.0037570186, 0.0018231169, -0.029005386, -0.0076825353, - -4.6026893e-4, -0.0022809007, -0.009310143, -4.946135e-4, 0.0093205655, - 0.013445594, 0.009720503, 0.0075324, 0.0031363538, 0.0020940416, - 0.0044270265, 0.017146867, 0.034350235, 0.0026602952, -0.002140405, - -0.03934083, -0.006021724, -0.014400929, -0.005537523, 0.024762776, - -0.031734463, 0.012323716, 0.015726738, -0.0051956507, -0.0069122254, - -0.015299111, -0.0015953149, 0.031557795, -0.014125395, -2.5220454e-4, - 0.008440587, -0.016219437, 0.019665498, 0.015111519, 0.0031467986, - -0.039198305, 0.00968212, -0.008692185, 0.012872095, 0.015044028, - 0.0075159706, 0.013056804, 0.004786421, 0.0029546202, -0.008176526, - 0.01235394, 8.725618e-4, -0.01094678, 0.0012336414, 4.7622362e-4, - -0.009791469, -0.01674575, 0.013559128, 0.021087766, -0.016697962, - 0.005966081, -0.00962056, -0.013753704, 0.016822016, -0.044744235, - -0.0019421757, 0.016296677, -0.017131144, -0.008265454, -0.018230714, - -0.015837917, 0.0018972359, -0.013990504, 6.8946515e-4, 0.018492915, - 0.020007567, 0.009745928, -0.007872975, -0.0055826725, -0.031552583, - -0.0039713113, -0.018000657, -0.024272429, 0.022843149, -0.0219074, - 0.01901084, 0.016518926, 0.0021580255, 0.009777157, -0.008020546, - 0.020797014, 0.011704241, 0.0060969866, -0.00808073, 0.018285101, - 0.02503164, 0.0010479705, 9.766121e-4, 0.019799026, 0.020596271, - 0.017071972, -0.007197414, 0.014139238, -0.025301429, 0.025950199, - 8.631379e-4, -0.0019785855, -0.009361299, 0.0011805173, 0.011545669, - -0.031151645, -0.00413227, 0.0036127525, -0.005326675, 0.0069556306, - -0.0018068779, 0.03057737, -0.008852668, -2.478469e-4, -0.013922194, - -0.047969986, 0.006858873, 5.947355e-4, 0.015884275, -0.008461342, - 0.038412236, -0.006947657, 0.019356035, 0.00626501, -0.010469124, - 0.030160354, 0.015157477, 4.8580216e-4, 0.009172019, 0.035490222, - 0.009922235, -0.01269259, -0.0019766237, -0.0040933583, 0.008264444, - 0.01119987, -0.010129428, -0.009153319, 0.0106037045, 0.026720453, - 0.0067403363, -1.5627372e-4, 0.00970128, -0.0024991948, 0.030394185, - -0.01377364, -0.0062455093, -0.010583536, -0.017738124, 0.011111761, - -0.010796251, 0.013368728, -0.0044662068, 0.013583954, -8.472708e-4, - 0.0039586816, 0.009416287, 0.0073980326, -0.011766399, -0.0056647426, - -0.014380586, 9.4577426e-4, -0.0017038748, 0.010857749, -0.020563656, - -0.015155434, 0.020269888, -0.012613618, -0.005102338, -0.023060197, - -7.8338824e-5, 0.013489429, 0.012606796, 0.030276442, -0.0024520135, - 2.1429521e-4, 0.012398827, -0.004837136, -0.013051847, -0.0044996734, - 0.0050639804, -0.0093240235, 0.015041465, 0.0021572078, 0.011110385, - 0.003989155, -0.0031571095, 0.014145348, -0.029143961, 0.022694511, - 0.022659212, -0.011777218, -0.0038598476, 0.00853836, -0.02937009, - -0.036171567, 0.005699991, 0.014675123, -0.003786008, -0.004915312, - -0.014159683, -0.015228146, -0.0010519337, 0.0023258396, 0.006448862, - -0.0024547589, -0.0133508295, 0.008794974, 0.010307955, 0.0065060416, - 0.006306554, -0.0066208285, -9.27976e-4, 0.012774986, -0.0020337487, - -0.00457966, 0.005649919, -0.020092772, 0.016652083, 1.1860707e-4, - 0.024063079, -0.015931433, -0.006096967, 0.018028796, -0.013603585, - -0.005510442, 0.009586597, -0.012319917, -0.03271955, 0.013964032, - -0.0139245065, 0.014464272, 0.028150871, -0.02498448, 0.005768228, - 0.0029989164, -0.008183446, 0.0025902747, 0.007055387, 0.0017788685, - 0.014407511, -0.003624264, 0.033571884, 4.836912e-4, 0.0060287495, - 0.020547371, 0.02198727, -0.011773271, 0.0049378686, 0.017331794, - 0.016493896, -0.010082951, 0.014830841, 8.7022805e-4, -0.0034665712, - -0.018955741, 0.005746741, 0.0060227616, -0.00242748, 0.01811995, - -0.0031888548, -0.0045644967, 0.010461983, 0.01441959, 0.004133155, - -0.012209045, 0.0074460967, -0.0057553016, -0.014622379, 0.0060702567, - 0.0023603821, 0.026475938, -0.03333382, -0.008115247, 0.013192582, - -0.005640576, -0.008919409, -0.01821025, 0.005508249, -0.0016848126, - -0.010926335, -0.011564448, 0.014973697, 0.04548046, -9.798999e-4, - -0.014931929, 0.005046452, 0.01738328, -0.012490162, -0.015689852, - -0.025643492, -0.011994917, 0.023334911, 0.02975812, 0.015868558, - 0.01368091, 0.007856746, 0.010900394, 0.017589578, -0.005719691, - 0.027740747, 0.0056119347, 0.007885548, 0.0373298, 0.04332041, - -0.005596964, -0.007506326, -0.0032661888, -0.017032988, 0.0026614617, - -0.008743129, 0.010310683, 0.0028344456, 0.017826306, 0.012541803, - 0.030215241, 0.0027658124, -0.002106057, -0.0038615584, -0.023928588, - 0.01715722, 0.0065705734, -0.012388935, 0.008133506, -0.0025477968, - -0.013063145, -0.022912895, -0.008807019, 0.023748541, 0.037887577, - -0.032916002, -0.0054560145, 0.024768274, -0.012553946, -2.6333e-4, - 0.0150530115, -4.3995658e-4, -0.0020587032, 0.013317822, -0.0060087573, - -8.558472e-4, -0.0050897277, 0.0072258725, 0.011342661, -0.0056518316, - -0.017990528, 0.008179881, 0.0061604236, -0.014673502, 0.01789146, - -0.0077146674, -0.014148526, 0.03230367, 0.016121771, -0.006385961, - 0.002946682, -0.008588437, -0.0026798414, 0.006940565, -0.019268079, - 0.025069606, -0.01724369, -0.003608407, -0.019586936, -0.0045263534, - -0.022097763, 0.018558234, -0.01948479, -0.052453365, -0.005416258, - 0.026740024, -1.8284554e-4, -0.009880451, -0.034047805, 0.012754175, - -0.0015582462, 0.0013442967, -5.3897663e-4, 0.007320302, -3.2196325e-4, - -0.018230429, -0.021966446, 0.029502317, -0.009261233, -1.3738404e-4, - 0.017051185, 0.015743697, 0.004869091, -0.022674538, 0.008744656, - 0.009876754, 8.104498e-4, -0.011088642, 0.017110672, 0.017708184, - -0.001035875, -0.0026223185, -0.003990341, 0.004912768, 0.007928173, - -0.01219766, 0.0029200944, 0.0046808636, 0.033274136, -0.0068393294, - 0.007557101, 5.247737e-4, -0.0012844629, 0.0010409228, 0.0047532707, - 0.012180454, -0.010354431, 0.004134246, -0.006020024, -0.05333576, - 0.017692437, -0.018825421, 0.012230317, -0.015832165, -0.0063102585, - -0.025894139, -0.010549061, 0.018038845, 0.020610336, 0.01330733, - 2.921484e-4, -0.010616676, 0.007627211, -0.031251643, -0.015221622, - -0.017523546, 0.005878698, 0.005550428, 0.0018448805, 0.0058585694, - -0.009247906, 0.00696719, 0.008459537, -0.005575951, -0.01672953, - -0.016870089, -0.008831727, -0.02507012, 0.011468542, -0.0049915668, - -0.0055258595, 0.0029738997, 0.03736408, -0.0017636593, 0.01031457, - -0.004575534, 5.851252e-4, -6.7608565e-4, 0.024482861, -0.013230222, - -0.007565095, 0.008041441, -4.4745742e-4, -0.010095579, 0.0032543016, - 0.009736347, -0.02226159, 0.0151896775, 0.0020318814, -0.010172681, - 0.009954521, -0.023449885, -0.028058114, -0.0039503323, -0.0065765264, - 0.003160904, 0.0016501648, -4.6106215e-4, 0.0070035816, 0.021947421, - -0.026222104, 0.004151216, 0.0057109385, 0.008479951, -0.033701606, - 0.03425428, -0.0023820617, 0.012345607, -0.0043835323, -0.031064728, - -0.027692864, -7.44155e-4, -0.0010453832, 0.019915532, -2.9190553e-5, - -0.013506574, 0.0012135215, -0.005076656, -0.017281197, 0.0010303385, - -0.008997837, 0.012209551, 0.0019874484, -0.0044015804, -0.020664217, - 0.00962077, -0.005095624, 0.009758125, -0.008272583, 0.0020252776, - -0.0057084034, -8.2182285e-4, -0.0028999033, -0.009547164, 0.0010340842, - -0.012162515, -0.014212533, 0.034392927, -0.0048523936, -0.0054031527, - 0.0039280704, 0.018248884, -0.01325641, -0.015113523, -0.0047547137, - 0.0050207684, -0.006498536, 0.011426857, -0.03239211, 0.0012208193, - 0.011104061, -0.026668534, 0.019806078, 0.008138099, 0.0045802114, - -0.0026318927, 0.021665797, 0.025709908, -0.017747017, 0.01842036, - -0.008592362, 0.018401718, -0.0045078425, 0.006456874, -0.004374042, - -0.014278256, -0.021173136, -0.0068900487, -0.0059951786, -0.002198163, - 0.0070982887, -0.005535988, -0.011357147, 0.010646367, -0.0031003873, - -0.0032788683, 0.0021342798, -0.019156316, -0.015116027, 0.024922488, - 0.002362165, 0.018600885, -0.010163935, 0.0022710531, -0.013615897, - 0.0031946576, -0.0084635345, -0.012630717, 0.024709437, -0.017185498, - -0.02132021, 0.003963719, 0.0066081164, -0.0100519415, -0.013843609, - -0.021516748, -0.003159163, -0.004688888, 0.0012161853, -1.5408534e-4, - 0.00783396, -0.0031451995, -0.009536573, 0.009404017, 0.012826308, - -0.004180293, 1.401047e-5, 0.014221669, 0.0060070003, -0.0027182712, - -0.0074368147, 0.009883788, -0.018690586, -0.013315571, -1.8003077e-5, - 8.6737424e-4, -0.008987502, -0.01887806, 0.0135931475, -0.021862447, - 0.015562015, -0.03384662, -0.001037084, 0.018453643, 0.011245338, - 0.005517959, 0.0016236951, 0.030717865, 0.031946648, 0.040302124, - -0.031764362, -0.0013320474, -0.005784686, 0.01369437, 0.010140706, - -0.009668969, 0.038034577, -0.014802263, 0.0029209005, -0.0014648521, - 0.0024819344, -0.012664206, 0.02433633, 0.0076555135, 0.00970384, - 0.0038503956, 0.009475448, 0.01959729, -0.0077883485, -6.47154e-4, - -0.010319574, 0.01930601, 0.013191931, 0.01352707, -0.012808598, - 0.003158848, 0.0037799382, -0.0019095901, 0.008426211, 0.0037737887, - -0.011921213, -0.0033738224, 0.0109351855, -0.0088193575, -0.016648037, - -0.014440245, -0.009308728, 0.035232272, 0.0027195457, 0.012322836, - 0.016367787, -0.0039315117, -0.0055811875, -0.009355098, -7.46103e-4, - -0.0065934462, -0.006099899, -0.0013447986, 0.025662486, 0.028999504, - -0.009985863, 0.025362073, 0.013025515, 0.03706504, 0.0040554795, - -0.021433815, -0.0019636664, 0.0013579191, -0.04407837, -0.01621026, - 0.002232174, -0.004484225, 0.014692482, 0.010209753, 0.03722455, - -0.017263843, -0.03969026, -0.0044844868, 0.0052037737, -0.01311551, - 0.017622, -0.043918278, -0.0056507625, -0.022424325, 0.009983286, - 1.4357287e-5, 0.025066229, -0.0069474196, 0.010258658, -0.022608217, - 0.007719397, 0.020403633, -0.004978911, -0.00925156, 0.011334113, - -0.022666322, -0.012116939, -0.010338778, 0.011967057, -0.0036726105, - 0.006241086, -0.002765525, 0.004745759, 0.03564584, -0.022640448, - -0.03401159, 0.011192844, -0.01563957, 0.007310984, 0.008384578, - 0.022603178, -0.0011012127, -0.019832524, 0.0056985365, -0.016140264, - 0.015388764, -5.969978e-4, -9.545368e-4, 0.0035743369, -0.0019159807, - 0.0023381847, -0.0055756303, 0.01198398, 0.0020942993, 0.0046094996, - 0.035495196, -0.005768327, -0.0014499327, -0.017082013, 0.0100069465, - -0.015570171, 0.013072463, -0.004122256, 0.0089242635, -0.0046490952, - 0.023091631, 0.016339088, 0.01552481, 3.4382407e-5, 0.014745436, - 0.019270627, -0.010346277, -0.016910316, -0.020977074, 0.007364377, - 0.0010578088, -0.014341024, -8.6055184e-4, 0.0031556422, -0.010641055, - -0.018829353, 0.016975341, -0.020510495, 0.0017974608, -0.0022265662, - -0.0060298964, -0.0059807575, -0.0115236575, 0.012538425, 0.0017088068, - -0.026365789, -0.002186322, 0.018992793, 0.006484757, 0.02221348, - -0.012873595, -0.0047439607, -0.010541796, 0.016245091, -0.0137183275, - -0.0014139761, 0.02155393, -0.027361684, -0.015388875, -0.004868543, - 0.014526571, 0.00909348, -0.0037397868, -0.0021768594, 0.026913706, - 0.0042912737, -0.009431464, 0.01203181, 0.009321586, 0.004348145, - -0.010715914, 0.0025201705, -0.008618185, 0.0076696654, -0.005531959, - -0.0032876034, -0.0037400334, 0.009037201, 0.0075463317, -0.033915214, - 0.002518848, -0.009973775, -0.02248356, 0.006059555, -0.0035644288, - 0.031097798, 0.007950026, -0.0075925677, -0.006633072, 0.008895743, - -0.0057536694, 0.01849761, 0.012253435, 0.017615799, -0.015675414, - 0.0059427246, -0.001098236, -0.0019485949, -0.002121292, -0.022474369, - -0.0108724, 0.008359704, -0.01247806, -0.021488167, -0.014723143, - 0.009203846, -0.012642192, 0.012732976, -3.5747912e-4, 0.0037333234, - 0.0109182, 0.031192549, 0.025469491, 0.0034686911, 0.014266512, - 0.0038830957, -0.033631288, -0.009778089, -5.624609e-4, -0.002212007, - -0.022589438, -0.023139875, 0.006610531, 0.0087385215, -0.006676598, - 0.026688496, -0.010453426, 0.0012388167, -0.023964774, -0.015428461, - -0.0044441633, 0.031573027, 0.006956758, -0.01203085, -0.013362544, - 0.025488583, -0.0091160545, 0.031754747, -0.002387737, 0.0102150915, - -0.023943499, -9.3782385e-4, -0.015528039, 0.00924319, -0.00787513, - 0.015289396, -0.00495243, -0.013010491, -0.020831067, 0.015227652, - -0.023405384, 0.037685934, -0.004624392, 0.008068469, -8.075918e-4, - -0.023311043, -0.018521346, -0.008414437, -0.011406769, -0.011792034, - 0.0021955941, -0.0048246756, 1.1105655e-4, -0.025972283, 0.01512938, - -0.018101582, 0.0028141483, -0.012906925, 0.006410231, -0.012445841, - -0.008139177, 0.017282404, -6.3243665e-4, -0.017223028, 0.0143243605, - 0.005792001, -0.009001678, 0.011554525, 0.011592819, 0.026031034, - 0.024179567, -0.0065082004, -0.0060907737, 0.010009477, -0.015447637, - -0.010247997, -0.012702816, 0.022584923, -0.013688187, 0.0071040224, - -0.0062675606, -0.016387071, -0.0048020054, 0.03537078, 0.0037639716, - 0.0112172915, -0.006357899, 0.023650646, -0.006898075, 0.029601702, - -0.008992091, -0.016594103, -0.0061693573, -0.011969713, -0.013088821, - -0.009027578, 0.032677494, -0.02986411, -0.0044336547, 0.0076161087, - -0.011385186, -0.020508116, 0.01851982, 0.014731166, -0.0087002255, - -0.005331473, -0.019390842, -0.01294783, -0.016916703, 0.014836304, - 0.0061649983, 0.0011780581, 0.010645916, 0.025705354, -0.007822816, - -0.01740586, 5.154498e-4, -0.013392236, -0.03787218, -0.007917646, - 3.6482097e-4, 0.017613718, -0.015667606, 0.005714474, 0.010630462, - -0.015118866, -0.009361069, 0.009809459, 0.01117724, -0.0029529321, - 0.016707998, -0.023124063, -0.019912772, 0.02654114, -0.0034576815, - -0.030522745, -0.0073708035, -0.018948872, 0.008359507, -0.004981158, - 0.0023054194, 0.008128217, 0.014720582, -0.01946219, -0.0024653617, - -7.755559e-4, -0.041057277, 0.0058068563, 0.008740823, -0.013175744, - -0.018728072, -0.018744856, -0.012169357, -0.0077003925, 0.0019577255, - 0.02801679, 0.010162255, 0.0032639676, 0.0073217982, 0.005329489, - -0.013062329, -0.017838316, 0.015451595, -0.014568799, 0.0033903243, - -6.0970735e-5, 0.023170793, -0.008692912, 0.0026701288, 0.0020419185, - 0.010368455, -0.023398858, -0.001510014, 0.004055111, 0.0061081015, - -0.0036507773, -0.005170708, 0.015840784, -0.026512828, -0.0178989, - -0.0026321374, -0.030564176, 0.010991817, -0.01923175, 0.006155461, - 0.024315404, -0.016586931, -0.01740269, -0.021726679, -0.022179833, - 0.037689015, -0.01842041, -0.009904691, 0.014402606, 3.1301685e-4, - -0.005255802, 0.038118035, -0.0010181152, 0.012532604, -0.033798184, - -0.00711009, -0.008498044, -0.010693719, -0.0032233666, 0.0018854641, - 8.201199e-4, -0.0026686674, 0.002160681, -0.004899364, -0.007943304, - -0.011553277, 0.01942933, 0.0045561017, 0.033267256, 0.0033629027, - -0.0020406416, 0.013160547, 0.028967852, -0.0051453863, -0.037713237, - 0.009417603, 0.025462963, -0.031955905, 0.049995486, 9.1786316e-4, - -0.00462961, 0.032076526, -0.01599371, -0.0024747257, 0.004944982, - -0.0049890736, -0.009036716, -0.01969555, 0.018034147, -0.0046752365, - 0.019649725, 0.020365724, -0.008700492, 0.025967432, -0.019614436, - 0.0012295366, 0.013817325, 0.010559253, 0.017310256, -0.02866714, - -0.006305411, 0.011719741, 0.025372623, 0.020630058, 0.02587169, - 0.0063762097, 0.0046906127, -0.015915807, 0.027076278, -0.020714175, - -0.019167125, -0.0023166672, 0.0028383879, -0.0064673647, 0.030357225, - 0.021564942, -0.016183946, -0.033575945, -0.03524676, 0.006892079, - 0.0040135575, 0.0010520476, 0.0034215902, -0.0058538476, 0.021013178, - -0.014381446, 0.026624456, 0.00407209, -0.0043326793, -0.032517392, - 0.017649569, -0.002548124, 0.012168519, 0.009006954, 0.0320342, - 0.0012206171, 0.01141144, -0.0073063797, 0.002548516, -5.414028e-4, - -0.005738178, 0.0225561, -0.0155342 + "filterableValues" : { + "locations.license.id" : [ + "pdm" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.010437902, 8.990615e-4, -0.0140508, 7.6836906e-4, -0.009900854, - 0.013558291, -0.043564223, 0.022784477, 0.003526797, 0.01995256, - 0.010141465, 5.9658784e-4, 0.0031480382, 7.834077e-4, -0.011662967, - -0.0058657574, 0.027970988, -0.012086206, 0.015869701, -0.0049168603, - 6.4160605e-4, -0.0079065645, 0.0022173915, 0.026702782, -0.03864321, - 0.01299098, -0.018833444, -0.03092864, -0.015423813, -0.015705848, - 0.017897936, -0.004492592, 0.042007048, -0.02900961, -0.016218165, - 0.007119898, -0.019463448, 0.008391007, 0.01923505, -0.004763975, - 0.025457645, -0.009385637, -0.0108327065, 0.0067633046, 0.0012616183, - 0.009547961, -0.024608633, -0.0127784265, -0.016807685, -0.023928214, - -0.022806015, -0.0036744473, 0.008570812, 0.014085222, 2.7894857e-4, - -0.022133097, 0.026301283, -0.038565066, 0.014806872, 0.015266779, - -7.9604774e-4, -0.025589282, -0.016131708, -0.0060004797, -0.0072687035, - -0.0098827295, 0.02259422, 0.019378306, -0.006429147, 0.011051268, - 0.015184997, -0.010484421, -0.010662601, -0.01394194, 9.504829e-4, - 0.013736466, 0.005399585, 0.01312913, -0.004496247, -0.0025428033, - 0.008924354, -0.005267164, -0.004042642, 0.001468037, 0.025120078, - -0.017496997, -0.009827196, 0.035837222, -3.8133623e-4, -0.025854599, - -0.014163138, -0.0074073034, 0.005692663, -0.0018608574, -0.004370217, - 0.02053732, -0.006035645, 0.017301703, -0.011475224, -0.0030219525, - 0.027226683, 0.018172104, 0.0023496135, 3.6901608e-4, 0.002548196, - 0.01548995, -0.0019714416, 0.00953709, 0.014657029, -0.008323391, - 0.02386549, -0.004022673, -0.00885111, -0.0018758305, 0.03259851, - -0.018028934, -0.008823178, 0.0050176526, -0.023204552, -0.005863104, - 0.030827733, -0.0017791848, -0.01032058, -0.010399534, -0.0013883819, - -0.0019619523, 0.0074947057, -0.009249168, 0.013373357, 0.006131853, - 0.00505109, 0.0041306685, -0.015162962, -0.010600105, -0.012341216, - -0.019027099, -0.017744806, -0.0067486167, 0.0041705775, 0.01733053, - 0.010344141, -0.021029795, -0.0103006605, 0.020868056, -0.014680015, - 0.008812997, 0.026554612, -0.023195544, 0.011673871, -0.018084656, - -0.009574658, 0.0059126704, 0.009431032, 0.0058930833, -0.0043494212, - -0.023778785, 0.0057934704, 0.004539141, -0.014140388, -0.0028911803, - -0.005122783, 0.0071704984, 0.005196585, -0.022351712, -0.001007333, - 0.012704013, 0.010311322, -0.01106873, -0.0059645073, 0.004018723, - 0.008500877, -0.0062207147, -0.0055511924, 0.0236793, -0.0031719895, - 0.010264957, 0.022371499, -0.029581342, 0.009053514, 0.00326595, - -0.0328197, 4.969675e-4, 0.040155087, 0.020648912, 0.0042551807, - -0.008333372, 0.012075659, -0.010166846, 0.02995745, -0.009682698, - 0.0010089222, -0.020590883, -0.015150025, -0.0021886977, -0.0027728537, - -0.0040321928, 0.012836958, 0.0039628246, -0.0024914385, -0.022375135, - -0.0035795611, 0.009660039, 0.0058600884, -0.021113994, 0.0054083825, - -0.018566463, 0.019420471, -0.013772256, 0.01471369, -0.016332526, - -0.012576359, -0.003707809, -0.0031044658, -0.0102875065, -0.011405993, - -0.008864232, -0.011329651, 0.013310508, -0.0039058023, -0.013257062, - -0.0042760945, -0.009244469, 0.006636977, 0.013761064, 0.010429004, - 0.0041177417, 0.025346467, 0.027446862, 0.019568887, 0.0025898085, - -9.871238e-4, -0.011274801, -0.01838723, -0.01535081, -0.012956921, - -0.005913821, 0.01844801, -0.0018701605, -2.3526381e-4, 0.005404877, - 0.010566121, -0.011341224, -0.007933374, 0.041213907, 0.006113402, - -0.022818511, -0.016206479, 0.0032769765, 0.013867916, -0.0016018312, - -0.027651293, 0.030437306, -0.015228734, 0.018167948, -0.0053472747, - 0.003623051, -0.013417002, -0.011829386, -0.015675616, -0.026110131, - -0.00888295, 0.012124456, 0.01381359, -0.021029806, 0.01829403, - -0.014034543, -0.022986742, 5.876884e-4, 0.022148024, 0.007242478, - -0.005533506, -0.0020324588, -0.017517867, 0.0051396764, -0.010875316, - 0.00436344, 0.016243052, -4.0102945e-4, 0.018168649, -0.006912477, - 0.016214356, 0.060797703, 0.024211943, -0.010014967, -0.001981463, - 0.013654127, -0.0046694665, 0.004399084, -0.009559713, -0.019487066, - 0.0010454048, 0.028186198, -0.013098303, -6.1368814e-4, -0.009156814, - 0.008172432, -0.011601374, -0.014874181, -0.013949971, -0.0049647265, - -0.021447672, 0.026450295, 0.013582253, -0.02183777, -0.0011977671, - 0.011120134, -0.013499745, 0.012956687, 0.00832646, -0.017061071, - 0.005674186, 0.015792666, 0.004003923, 0.0059093484, 0.013598793, - -0.028579054, 0.0142973745, -0.013668654, -0.015790604, -0.024475632, - 0.010514518, -0.024530178, -0.013598717, -0.012398166, 0.020596543, - -0.011759956, 0.017323932, -0.005728004, -0.0037845045, -0.0033370294, - 0.0010486001, 0.011972626, -0.008539676, 0.018937213, -0.0017052906, - -9.3967444e-4, 0.013762682, 0.01045442, 0.017750164, -7.2725955e-4, - 0.005392711, -0.027606715, 0.012411671, -1.9950309e-4, -0.003017664, - 0.0039500566, -0.025463609, 0.024262227, 0.002152523, -0.013106058, - -0.0014260877, -0.0015833691, -0.017911462, 0.006438312, -0.009778518, - 0.016263017, -0.025289131, 0.013864286, -0.041283183, 0.0013657806, - -0.004639135, 0.009010994, 0.002669544, 0.044523064, -0.011379102, - 0.0066352473, 0.026273727, -0.008968001, 0.007166926, -0.015648706, - -0.029776767, 0.015146286, 0.035088196, -0.041288957, 0.011910527, - 0.02045611, -0.016428407, -0.0019226373, -0.01021819, -0.024571575, - -0.014249224, -0.0015552846, 0.023369577, 0.0022605655, -0.008729117, - -0.017053323, -0.016127797, 0.0070970985, -0.014753057, 0.01010066, - -0.010327476, -0.0070718606, -0.00229968, 0.016207363, 0.013724691, - -0.0069902353, 0.029528946, 0.030555723, 0.0023803862, -0.0073655145, - 0.0145223895, 0.005096477, 0.013438086, -8.466448e-4, 0.030809293, - -0.014772099, -0.0044437842, 0.005187562, -0.00859188, -0.006070147, - -0.0016223612, -0.059388902, 0.021345373, 0.025657728, 0.006372726, - -0.0070445146, -0.013850272, 0.0014288813, -0.022146547, 0.0011867993, - -0.020129686, 0.008816571, 0.025476122, 0.011545388, -0.002120175, - 0.024985872, -0.025652992, 0.009364424, -0.023017986, 2.02754e-4, - -0.0017067785, -0.0014038914, 0.01458699, -7.5680047e-4, -0.01394829, - -0.030441066, 0.0125631895, 0.010424638, -0.010555329, 0.004340617, - 0.0021336202, 0.008530704, 0.0031026327, 0.0014901913, -0.0049766456, - 0.007719621, -0.0031556722, 0.011729068, -0.010315193, 0.015858194, - -0.016095933, 0.010649084, -0.012578664, -0.006349607, 0.0090107815, - 0.01689262, -0.021026522, -0.01325181, -0.004076647, 0.008646025, - -0.012966567, 0.0071287854, 0.0031667522, 0.027817523, 0.0026329888, - 0.0024229698, 0.019795649, 0.0027663393, 0.03586171, 0.03059606, - -0.0012103372, -0.00769748, 0.004128409, -0.00984527, 0.0026557546, - 0.023397101, -0.021693934, 0.015208629, -0.027179858, 0.008612946, - -0.0055121765, -0.027573459, -0.006257022, 2.242577e-4, -0.006190464, - -0.0046196366, -0.0039126696, -0.003810942, 0.019874435, 0.02225208, - 0.020322438, -0.004743501, 0.0013072689, 0.009102548, -0.0112895, - 0.021392014, 1.4954348e-4, -0.0039545316, 0.036698617, 0.015505048, - 0.04053529, 0.0030174118, 0.006169339, -0.017985383, 0.010092775, - -0.0011347296, 0.02403661, 0.0109619675, -0.0157302, -0.002065703, - -0.021926248, -0.014959169, 0.0049278745, -0.01824626, -0.006702459, - -0.020580787, 0.00458749, 0.008112173, -0.030287549, 0.024542084, - -0.018561186, 6.6430547e-4, 0.005348791, -7.323572e-4, -0.0019378618, - -0.012797346, 0.0116441995, 0.046636567, 0.0112323025, -0.019155558, - -0.004718911, -0.008938926, 0.009212834, 5.4945564e-4, 0.029755896, - -0.011147411, -0.02046053, 0.010106141, 0.023390185, -0.006231622, - -0.0060526095, -0.017883679, -0.0017344413, 0.02410255, -0.009848885, - -0.026884856, -0.009103225, 7.4148586e-4, 0.0025709015, 0.0045711347, - 0.0017355281, -0.012007831, 0.019042863, -0.012490232, -0.035367027, - 0.0052275728, 0.020233082, -0.02881832, -0.024787156, -0.020991556, - 0.035350483, -0.022741, -0.012527969, 0.018728087, 0.017456206, - -0.009970842, -0.0012817846, -0.0026527965, 6.5067236e-4, -0.0030210784, - 0.0063135717, -0.0010891467, 0.0074365404, 0.01951277, 0.007732, - -0.030951513, 0.004967352, -0.011807755, -0.034581494, -0.013666389, - 0.011146623, -0.018391658, -0.02173024, -0.021225428, -0.020665666, - 0.03638, -0.026194746, -0.026643578, -0.017162124, -0.016874695, - -0.0045361365, -0.0026170225, 0.025017053, -0.0016593062, 0.0015210473, - 0.01786774, 0.007313777, 0.0132635515, 0.014681, -0.03342813, - 0.020813745, 0.0052381665, -0.008686372, 0.004887197, 0.0043674074, - 0.029729536, -0.014002245, 0.020798072, -0.0029313636, 0.0038535637, - -0.01852214, -0.0042248257, -0.029543359, 0.009777836, -0.006339655, - -0.018928643, -0.018684212, 0.011192928, 0.008291944, 0.008077973, - -0.00930854, 0.024799185, 0.011556645, -0.0060826475, -0.0013927133, - 0.0046491344, -0.017461699, 0.020301394, -0.002874921, 0.009422833, - -0.03263946, 0.025733083, -0.0011727326, 0.0134539055, -0.008168127, - -0.03137406, -0.009742903, 0.007210115, 0.0063035833, -0.01633095, - 0.037917472, 0.01832293, 0.023795724, 0.0042122817, -0.003498904, - 0.004675144, 0.0285363, 0.0062647234, 0.004006442, -0.0049354527, - 0.028765388, -0.032835547, -0.006787662, -0.010794505, 0.008127948, - -0.011871034, 0.005273064, 0.001819601, -0.017102782, 0.016861957, - -0.0014727315, -5.1469513e-5, -0.008955894, 0.0029458066, -0.019600153, - 0.024812948, -0.024915537, 0.025987586, -0.0152527075, 0.0034533779, - -0.042280562, -0.016088944, -0.014792907, 0.0070919096, -0.013487647, - 0.0017664309, -0.017769657, 0.008402506, 0.034008093, 0.003326909, - -0.008722888, -0.01133619, 0.013029308, -0.013528944, 9.2518236e-4, - -0.011635089, -0.004634374, 0.014570641, -0.023197595, 0.0071468838, - 0.028457697, -0.004690194, 0.0034513243, -0.0020482934, -0.006795086, - -0.019917822, 0.0103587555, 0.0018180842, 0.035265885, -0.026069036, - 0.023174722, 0.012512585, -0.003746165, -0.014260288, 0.0038898773, - 0.001491397, -0.004111894, 0.014307466, -0.01851225, 0.008638046, - -0.03697318, 0.008176433, -0.0076097404, 0.003645063, 0.026219776, - 0.0013239341, 0.015297203, -0.005214519, -0.0043863, 0.03296801, - -0.0055949497, 0.0024530068, 0.0087812105, -0.01560905, -0.012956943, - 0.03766546, -0.023202142, -0.0016742742, 0.012641939, -0.002723441, - -0.0077099227, -8.455009e-4, 0.0041014743, -0.015359497, -0.024330776, - 0.0017297588, -0.0116982125, 0.0013154587, 0.009189455, -0.022027701, - 0.0075684674, -0.012224359, 0.0032305582, -0.008948688, 0.028935645, - 0.0057261074, -0.026093474, -0.009546143, 9.2169596e-4, 0.0070053586, - -0.0052672615, 0.00279693, 0.012094413, 0.012046967, 0.027299978, - -0.0181159, -0.00838949, -0.023880845, 0.023088533, 0.0014678269, - -0.023534624, 0.004733009, -0.013398033, -0.016428648, -0.009838256, - 0.04004644, -0.0028368374, 0.015913095, -0.003170444, 0.013395818, - -0.0056608343, -0.0024384211, -0.013719576, 0.018329727, -0.010872487, - 0.003240531, -0.0033030224, -0.009184003, -0.0070049395, 0.0067966892, - 0.011546726, 0.006957504, 0.006515943, 0.008634833, -0.027738806, - -0.0016477822, -0.0021301548, -0.007030762, 5.9427257e-4, -0.011691936, - -0.020381844, -0.010596112, 0.02548671, 0.0018018819, -0.004406857, - -0.0012080739, 0.013766238, 0.005069684, -0.018779213, 0.010365429, - -0.009559107, -0.008735548, 0.0066331425, 0.014487606, 0.02005656, - 0.019760692, -0.032731548, 0.027520139, 0.0035861577, -0.019509891, - -0.018182531, 0.004162043, 0.004916977, -0.0048872554, -0.010061219, - -0.0024069503, -0.008987522, 0.0012699543, -5.6472456e-4, 0.0033593243, - -0.009376902, -9.733644e-4, -0.013241749, 0.0038485667, -0.0034155857, - 0.012887174, -0.014614873, 0.0026816376, 0.004785911, 0.0045092297, - 0.019940585, -0.01958313, -0.009352217, -0.018824773, -0.011855741, - -0.01150836, 0.016745482, -0.0053251646, 0.013382221, -0.018125838, - 0.0042089284, -0.0053073186, -0.0060813287, -0.014574552, 0.008470306, - -0.021326872, -0.022394478, 0.01903365, -0.0089059435, 0.021744212, - 0.014361946, 0.0019090547, -0.015214269, 0.027040677, -0.01955784, - 0.007982979, 0.010781196, -0.012701787, -0.014174284, 0.0030458707, - -0.0019247552, 0.021061001, -0.012687434, 0.007586952, 0.0028302788, - 0.003686798, 0.017661782, 0.012462241, -0.013197126, 2.5019282e-4, - 0.0108554885, 0.010016543, 0.026077678, -0.0052661123, -0.013825522, - 0.0054469733, 0.034751665, 0.008972328, 0.027932398, -0.0065959943, - 0.025224842, 0.00209188, -0.0014236462, -0.01827772, 0.022673748, - 0.02045041, -0.038654864, -0.021775717, 0.010232766, -0.003675419, - -0.005491962, -0.0043090247, 9.0423255e-4, 0.0087250285, 0.009300736, - 0.021160157, -0.0029438664, 0.003957332, -0.017678548, 0.020581823, - -0.006220767, 0.0023989289, 0.023693422, -0.0025362868, -0.012718046, - -0.011698201, -0.0029491256, 0.0065919687, -0.0071064853, 0.014653129, - 0.008384588, 0.001279733, -0.020869818, 0.007828943, -6.518835e-4, - -0.0022355453, -0.0055330102, -0.027124759, 0.013196564, 0.0012154744, - 2.406879e-4, 0.009066878, 0.03513222, -0.024926843, -0.017516477, - 0.0070736054, 0.0027710614, 0.008642146, 0.008564077, -0.020690454, - -0.0067520267, -0.012029438, -0.035621133, 0.011441893, 0.002103497, - 0.006654223, 0.009539876, 0.0034773794, -3.757589e-4, 0.0076304874, - 0.005272198, 0.00860562, 0.03080479, -0.00430924, -0.02630583, - -0.0035773932, 0.016494429, 0.010489239, 0.019642493, 0.010294599, - 0.004088102, 0.03701645, -0.0019152552, -0.040787566, -0.023209218, - -0.009330069, 0.013426831, 0.0014963732, 1.7272154e-4, 0.0021335536, - -0.0073940028, 0.028372489, -0.038872786, -0.02120538, -0.021683522, - -0.010798975, -0.011660812, 0.007351878, -0.0070132883, -0.012566065, - 0.017786017, -0.013348679, 0.012956972, 0.014466326, -0.0072024064, - -0.004379365, -0.019384999, -0.008581526, 0.0064605847, -0.038310602, - -0.0071593067, -0.019007564, 3.676312e-4, 0.026718332, -9.015443e-4, - 0.009366251, 0.00468118, -2.858389e-4, 0.038926806, -0.011088029, - -0.013076277, -0.016731061, 0.0038583337, -0.021227809, 0.023878008, - -0.012155299, -0.025981033, 0.013485819, 0.016972993, -0.008622782, - 0.0014139309, 0.011091237, 0.014372207, -0.010103282, 0.0053447546, - 0.026506465, -0.019127496, -0.0029256449, 8.612185e-4, -0.022423748, - -0.007033582, -0.01829382, -0.017608909, 0.018547937, -5.9549635e-5, - -0.0075547006, -0.030983733, -0.0047675986, 0.0031003677, 0.016667634, - 0.012585908, 0.020556506, -0.0070896344, -0.0014926117, -0.012906756, - 0.01167337, -0.025145497, 0.009136368, -0.010057039, 0.01501864, - -0.029050188, -0.021430926, -0.003169863, 0.0015303163, 0.025978142, - -9.999344e-4, -0.007746397, 0.0026848468, -0.027716791, -0.015220079, - -0.007215181, 0.008966875, 0.013055029, -0.004635695, -0.015644489, - 0.014386147, 0.00821061, 0.02077825, -0.01955588, 0.008839748, - 1.8196348e-4, -0.0036181943, -0.0062979297, 0.008961974, -0.0062743924, - 0.013846303, 0.027532302, 0.023979217, 0.011250227, -0.0039907126, - -0.0041554715, 0.037348468, -0.012485565, 0.014932747, -0.008336689, - -3.616938e-4, 0.0057515106, 0.033361543, -0.019618912, 0.031714354, - -0.010475916, -0.00140298, -0.019271815, -5.0121517e-4, -0.008099964, - -0.012679096, 5.87795e-4, -3.478125e-4, -0.0038609747, 0.023485089, - -0.0033315427, 0.003449752, 0.008638082, 9.47258e-4, -0.0065455306, - 0.0038762994, -0.0022181731, -0.015206512, 0.009737202, -0.015172445, - 0.024315415, 0.021491991, -0.030944979, -0.014116116, -0.012410417, - -0.0046023745, -0.034221105, -0.016881905, -0.0027947456, 0.004880218, - -0.020425683, 0.014984883, 0.006756705, -0.02066105, 0.0011571368, - 0.018881494, -0.0037443046, 0.013506357, -0.0038833756, 0.0047065183, - -0.021423737, -0.014949574, 0.006579457, -0.004607295, 0.0055879373, - 0.004087998, -0.0104371, 0.0055078063, 0.0066452604, -0.029750591, - 0.0018001348, -7.697631e-6, 0.01563182, -0.011443434, 0.02009361, - -0.013925172, 0.031953417, -0.020009179, 5.256748e-4, 0.02108993, - -0.022368947, 0.014695218, 0.029067123, -0.0067078415, -0.006572606, - -0.0076767197, 0.031151894, 0.036334228, -0.004862369, -0.02034173, - 0.0045362157, -0.0055224807, -0.006913374, 0.010211139, -0.0048452807, - -0.0061968938, -0.015335621, -0.011666385, -0.011463587, 0.0079670455, - -0.008263205, -0.015501398, -0.0055127502, 0.015990566, 0.0018026566, - 0.004065572, -0.008775285, 0.01265353, 0.022058966, -0.033428524, - 0.020706993, -0.014824841, -0.03355926, 0.007261025, -0.03067041, - 0.015930071, 0.0024226825, -0.0056442334, -0.03574729, 0.0077747935, - -0.024471166, 0.016112434, 0.0016879643, -0.01975334, 0.021238968, - -0.026497733, 0.028062142, -0.0082199825, 0.015810056, 0.016794194, - -0.0026726574, 0.008132857, 0.0120691685, -8.213681e-4, -0.007759123, - 0.0041733216, -0.0062481137, -0.007535666, -0.024192302, 0.010642937, - 0.0056548906, -0.014835274, 0.030809678, -0.002889398, 0.01228666, - -0.03351885, 0.010852517, 0.0077701486, -0.011535771, 0.001264777, - 0.013363931, -0.026806554, 0.005531312, -6.939729e-4, -0.0022846933, - 0.016799932, -0.011746629, -0.0029690883, 0.008209053, 0.025952103, - -0.010017022, 0.012844784, -0.008302536, -0.0037147831, -0.0081067365, - 0.011957635, 0.008640303, 0.030233886, -0.006827535, -0.005684487, - -0.029112948, -0.0055199196, 0.002162088, -0.009951943, 0.014329411, - 0.0069876323, 0.0013161908, 0.02467419, 0.014252139, 0.020911384, - -0.006893813, 0.004936567, 0.009148443, 0.020997506, 0.01722781, - -0.0073632672, 0.015422748, -0.016340522, 0.04361534, -0.02329781, - -0.0143661555, -0.0082141915, 0.009515187, 0.016886247, -0.0070195985, - 0.0010853135, 0.030084131, -0.002698157, -0.0053626453, -0.00286391, - -0.025028609, -0.0156609, -0.01490831, 0.005989298, -0.00441947, - 0.0015446248, 0.0013541004, -0.007355772, 0.00423814, -0.008703255, - 0.005121681, 0.0056977267, 0.014533504, -0.010841101, 0.0074665155, - 0.011007055, 0.001443087, -0.014073093, 0.025533462, -0.004335542, - -4.885841e-4, -0.0011777114, 0.011161486, -0.004579566, -0.020964578, - 0.023040038, 0.006210499, 0.009228513, 0.004126955, 0.016394632, - 0.007390834, 0.008647025, -0.008795291, 0.00351815, 0.008438269, - -0.009324202, -0.01703798, 0.025559647, 0.018111268, -0.026120903, - -0.024640163, 0.0050201896, -0.018631235, 0.019490933, 0.012715437, - -0.009229213, -0.010335819, -0.005644581, 0.010344132, -0.009775437, - 0.0072043943, -0.00783201, 0.00939143, 0.0044834637, 0.016408604, - -0.0036651432, 0.008446641, 0.03105689, 0.012388919, -0.008462383, - -0.0059020855, -0.004708885, 0.008424667, 0.029466143, -0.008747773, - -0.005197106, 0.016529853, -0.007957842, -0.0068919826, 0.019853817, - -0.0059514097, 0.013522286, 0.001368339, -0.0031182254, -3.3661072e-6, - 0.019297043, 0.015642624, -0.01630154, 0.0050437115, -0.021600815, - 0.014604781, 0.022277346, 0.0011643061, -0.035147835, -0.010324125, - 0.003060726, 0.0108688865, -0.010390041, 0.009462054, -0.026309911, - -0.0039525093, 0.016282668, -4.616387e-6, 0.011242343, 0.002642054, - 0.005493685, -0.019629642, 6.8715744e-4, 0.009064753, -0.011583796, - -0.001450463, -0.0070856814, 0.028459756, 0.010303421, 0.0023226328, - 0.005071813, 0.011017498, 0.0137191275, -0.00902788, -0.014340047, - -0.011553934, 0.034050047, -0.00811188, 0.012226958, 0.0086203255, - 0.016521618, -0.00538915, 0.011726343, -0.004982183, -0.005425097, - -0.009038539, 0.0054344307, 0.03033691, -0.008171743, 0.025795514, - -0.0028896576, 0.017209852, 0.0116195865, -0.007967112, 0.0011727241, - 0.0012719979, 0.0258486, -0.0033566398, 0.025680535, -0.014495544, - 4.6657055e-4, -0.0068843844, 0.014867257, 0.012201686, -0.021327524, - 0.01451048, -0.009754129, 0.015420226, -0.01364796, -8.855554e-5, - -0.008616533, -0.007150909, -0.008974518, 0.0045634564, -0.009844036, - -9.4162853e-4, 2.9998226e-4, 0.026062766, -0.010597441, -0.015176126, - 0.009960012, -0.006214691, 0.012203912, -0.029690443, 0.033502713, - -0.006096161, 0.011712611, -0.019115904, -0.0048045265, -0.0097578345, - 0.002476859, 0.0044861455, -0.0052589113, 0.015383053, 0.019000191, - 0.0030131512, -0.026013069, -0.0069687325, 0.0087137325, 0.004272476, - -6.896229e-4, -0.01449603, 0.018956177, -0.031169118, 0.017652925, - 0.011341106, -0.0053925794, -0.023058675, 0.010750341, -0.025794534, - 0.01114043, -0.00289095, -0.016244309, 0.015451574, 0.013664229, - -0.011925254, -0.008532485, 0.018156141, -0.00825886, -0.010258495, - -0.009200836, -0.0035178568, -0.007048317, 0.026037302, 0.029644787, - -0.02212682, -0.008229046, -0.018534305, 0.017615506, 0.019259742, - 0.0051191943, 0.018702159, 0.009650773, -0.014611772, 0.0025126734, - -0.0022933146, -0.003919253, -0.002112949, -0.015971841, -0.011642007, - 0.0033818916, -0.013889694, 0.013172448, 0.014857439, -0.023629613, - 0.0029410198, 0.019716742, 0.02944709, 0.021058975, -0.0041334755, - 0.00697066, -0.0068493076, 0.005711303, -0.007013685, 0.0140362345, - -0.008481994, -0.023275595, -0.022172928, -0.008162347, -0.012125038, - 0.030511418, 0.010828079, -0.021822305, -0.006923814, 0.007832718, - 0.010865951, -6.390413e-4, -0.008789664, 0.025100337, 0.020132143, - -0.004229924, 0.010803346, -9.747523e-4, 0.0042504435, -0.007095621, - 0.004311099, 0.0015516166, -0.029150032, -0.011306928, 0.013847511, - -0.009159764, 0.01390675, 0.011200166, -0.019270832, 0.0025629757, - 0.0064244987, -0.002176066, 0.035130672, 0.029099831, 0.003278009, - 0.0050071892, 0.018834542, -0.018165754, -0.016152414, -0.00457816, - -0.006739502, -0.006213848, 0.01427414, 0.02597434, 0.004947179, - 0.017535161, -0.029066058, 0.010780458, -0.008426537, 8.293085e-4, - 0.0024251516, 0.009853097, 0.004816107, -0.018300453, -0.0146756675, - -0.014355127, -0.0059636994, 0.014072993, -0.009846735, 0.013654678, - -0.013045798, 0.023352338, 0.012256129, -0.021530498, -0.012868838, - -0.012252529, 0.017148472, 0.0063334713, -0.0016986023, 0.02605433, - 0.0038255395, -0.007454377, 0.017074797, -0.0030046897, 0.0058433115, - 0.0065006022, -0.023239681, 0.024947383, -0.0097481515, -0.0010727029, - 0.0010453638, 0.013189001, -0.016596999, 0.015302686, -8.228996e-4, - -0.004077325, -0.022026625, 0.016597847, -0.0052000657, -0.008480995, - 0.0135030495, 0.013237197, 0.023976345, 0.004454968, 0.016173294, - 0.0018048726, 0.009455611, 0.021012953, 0.0074644983, 0.020062864, - -0.002615096, 9.730247e-4, 0.021338094, -0.010822561, 0.031902365, - -0.016258225, 0.0010060834, -0.035984308, -0.0074005956, 0.048671067, - 0.018594299, -0.0064644655, -0.008389723, -0.009126573, -0.023288844, - -8.485828e-4, -0.019679267, -0.0038681466, 0.016250841, 0.010488334, - 0.0051060496, 0.0063949535, 0.044135544, -5.1298464e-4, -0.009590051, - 0.0011458893, 0.014796313, -0.004089833, 8.520557e-4, 0.017455231, - -0.025420064, -0.012815692, -0.0019266331, -0.0056211264, -0.006645791, - 0.0014618657, 0.0148885315, -0.012458229, -0.012634624, -0.012760944, - -0.022844322, -0.007212341, 0.0034243972, 0.010916511, 0.0078090844, - -0.004759879, 0.002085667, 0.0073426114, 0.015305435, -0.0028066803, - 0.0017636833, 0.016868219, -0.02698376, -0.005900893, 0.004673925, - -0.008667964, 0.0121976035, -0.014128178, -0.0022721551, 0.0327316, - -0.0070113833, -0.0027729017, -0.022723956, -0.02067923, -0.020216387, - 0.0280667, 0.002565579, -0.0055997088, 0.0026833764, -0.0012591068, - -0.007936088, -0.0033542619, -0.007212342, 0.027252477, -0.015627123, - -0.0058825235, -0.0024509542, -1.807203e-4, -0.019346125, 0.008445885, - -0.022161888, -0.032007705, -0.0024061913, 0.009574066, 0.016920712, - 0.03154875, 0.015089714, -0.008485726, 0.007375526, -5.3322234e-4, - 0.0127678765, 0.007449231, 0.024026558, -0.016797813, 0.0049811304, - 0.005429076, 0.017912934, -0.024318116, 0.013068824, 5.0638715e-4, - -0.02222256, 0.0021763514, 0.023752548, 0.017063541, -0.01021638, - -0.010990077, -0.0021036072, -0.010596618, 0.0038617498, -0.0063852267, - -0.029144542, 0.028231025, -0.0019472593, 0.0081362175, -0.015300441, - -0.0034138884, 0.009911711, -0.020257412, -0.018497668, -0.013785138, - 0.007007149, 0.023234138, -0.008164731, 9.0004905e-4, -0.017873053, - 0.016651426, -0.013981085, 0.019626271, -0.03246131, 0.026391283, - -0.009586448, 0.014031961, -0.026509853, 0.034916148, -0.0054805744, - 0.011576906, 0.016549936, -0.006138326, -0.0042176736, 0.025517166, - -0.0125762215, 0.027452236, -0.024515796, -0.008876207, -0.011752686, - -0.01146894, 0.011020226, 0.009843816, -0.0019222015, 0.013512455, - 0.03442443, 0.0016247587, 0.015815584, -0.008771307, 0.023081277, - -0.023346787, 0.01023745, 0.037950158, -0.00810394, 0.03610015, - 0.009943607, 0.008472821, 0.013814486, 0.01630232, 0.0015615886, - 0.020474544, -0.027302232, -0.0044486816, -0.014908461, -0.022261545, - 0.0034835967, -0.016382566, -0.009154697, 0.01919883, 6.9539575e-4, - 0.024659779, 0.011998866, 0.0031928911, 0.0065878434, 0.0031433166, - 5.946842e-5, -0.04291176, 0.0013079144, -0.008525592, 0.023010613, - 0.007891577, -0.039813902, 0.020179207, 0.005721544, -0.01884541, - 0.01334328, 0.015628722, -0.008142592, 0.004922355, 0.011090228, - -0.010355608, 0.008256308, 0.001440348, 0.021056695, 0.0024322902, - -0.036517553, 0.034302168, 0.0022389418, 3.743278e-4, 0.0071234405, - -0.010048118, 0.011906499, 0.009791752, 0.0035108405, 0.02239992, - -0.019387174, 0.01765168, 0.011142422, -0.006472579, -2.8676175e-5, - 0.010564761, -0.024006553, -0.025199912, 0.016305506, 0.0049406583, - -0.001739581, -0.014687456, -0.0037685668, 0.0028342346, 6.644605e-4, - 0.014259024, -0.02250622, 0.007885393, 0.0046048285, -0.0044569178, - -0.010092137, 0.020363703, 0.003331741, 0.006144582, -0.0116687175, - -0.007856911, -0.025387293, -0.014601245, 0.017610285, 0.007883693, - 4.876198e-4, 0.009824469, -0.0109307235, 0.0028897566, 0.011882635, - 0.009129765, -0.033748362, -0.013077861, 0.0023305917, -0.0042974446, - 5.2518403e-4, -0.0054026963, 0.011163706, -0.034584764, 0.016124442, - 0.016721254, 0.009513599, -0.016608195, -0.034886472, 0.008159245, - -0.01248218, -0.020618577, -1.2068687e-4, -0.049350597, -0.012301368, - -0.0060769347, 0.002751975, -0.0261362, 0.01598768, 0.0056656026, - -0.0070786234, 0.017054914, 0.0022188171, -0.016111825, 0.0024481518, - 0.016338745, 0.013536836, 0.0059877583, -0.016548578, -0.0037524947, - -0.012338506, 0.017771289, -0.012364324, 0.0035235786, 0.016865825, - -0.0017878999, -0.0027636562, -0.011049528, 0.020264722, -0.001499585, - -7.119158e-4, 0.00309932, 0.011230704, -0.008956734, 0.024043564, - -0.020575821, -0.012206245, 0.0018418834, 0.017051928, 0.003914325, - -0.014015724, -0.045825038, -0.009454067, 0.009297059, 0.012738771, - 0.023596229, 0.0411069, 0.00546242, -0.004828398, 0.019633422, - -0.004615906, -0.0012366187, 0.0074696485, -0.00846435, -0.0058515617, - 0.0025285818, 0.014192128, 0.014308729, 0.021889802, 0.013201023, - 0.0065423707, 0.015822515, 0.013721694, 0.00900153, 0.015551302, - 0.0159999, 0.008441892, 0.013199808, -0.0018936102, -0.0016564229, - -0.015463779, 5.996815e-7, 0.024311436, -0.019861456, -0.012882187, - -0.0030285218, -0.0145688355, -0.0061040735, 0.01928805, 0.0103507135, - -3.8996513e-4, 0.009430432, 0.009852429, 0.026695602, -0.013845746, - 0.016479293, -0.012600806, 0.0021781249, 0.0070705716, 0.047421496, - 0.0031533353, -0.01282161, -0.0028456845, 0.014741686, -0.008638917, - -0.020471597, -0.010278106, -0.0039075837, 0.0017203991, 0.01055133, - 0.028970586, -0.022100715, 0.009129958, 0.018399961, 0.010575792, - -0.013787734, -4.3226354e-4, 0.017605038, -0.0010346245, 0.021247962, - 0.0024633086, 0.05472598, 0.0019093759, -0.013034949, 0.025015393, - 0.0028652477, 0.02684296, -0.007172084, 0.03650247, 0.02480561, - -0.006900634, -0.014415819, -0.022434564, -0.008390462, 0.01923285, - 0.012992613, -0.026185827, -0.007838231, -0.006439961, 0.0073633348, - -0.009770809, 0.0017388182, -0.022791313, 0.017251998, -0.0020599281, - -0.017897477, -0.039478455, -0.021294134, -0.013996406, -0.0035401927, - 0.013705816, 3.0977099e-4, -0.010418568, -0.012999721, 0.015508772, - -0.018405825, 9.955949e-4, -0.008814939, 0.0071247737, 4.252643e-4, - -0.023105143, 0.017608972, -0.0047432687, 0.013293023, 0.0070290715, - -0.012374371, -0.008848906, 0.005982174, -0.035546556, 0.016566925, - -0.0032957261, 0.0137764625, 0.026029084, 0.005865462, 0.011435236, - -0.0027786426, -0.0010496608, 0.006984396, -0.00677729, 0.033164356, - 0.009396672, -0.0117732035, -0.0151579715, -0.007355247, -0.014916961, - -0.04082659, -0.021059608, 0.022322807, -0.008428075, -0.017417163, - -0.022157237, -0.009729212, 0.006228937, 0.014789121, 0.016147302, - 0.00638341, -0.0054286774, -0.0013617206, -0.0018259328, -0.015388501, - 0.0138601335, 0.011786625, -0.002134044, 0.014980091, -0.027369106, - 0.01007869, -0.0137593085, 0.011886677, -0.009766611, -0.015123615, - -0.007200066, 0.0019084496, 0.017806921, -0.018124564, 0.024981482, - -0.01738693, -0.0023863, 1.3916145e-4 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.011083476, 0.03605001, -0.02826596, 0.007852668, -0.086101755, - 0.04047128, -0.05286211, -0.018962605, 0.022336457, 0.017729463, - -0.02203925, -0.0070619937, 0.016178012, 0.011658779, 0.009798316, - -0.11282641, 0.007440277, 0.0056852424, -0.006511986, 0.014373326, - -0.021414004, -0.031746514, 0.04710266, -0.0040619816, -0.010592114, - -0.01785502, 0.014121716, 0.056132972, 0.07688696, -0.020023553, - 0.027946774, 0.020688988, 0.034292787, 0.053126138, -0.021336762, - -0.03753866, 0.046875622, -0.03157721, -0.015261181, -0.012610068, - -7.42129e-4, 0.029950257, 0.017160859, -0.03532158, 0.010675022, - -0.022012739, -8.8732183e-4, 0.030280523, 0.014098951, 0.031049972, - 0.025778124, -0.02871374, -0.01375242, 0.06432766, -0.068333946, - -0.00347593, -0.0026920382, 0.032894343, 0.0071636983, 0.047340877, - 0.021857698, -0.0692137, -0.011454756, -0.037508473, 0.0038379075, - -0.016129749, 0.011051056, 0.01906177, -0.0061022504, -0.027702795, - -0.015889687, 0.04464713, -0.0020291107, 1.17028634e-4, -0.028811065, - -0.002841806, -0.0054761255, -0.058924135, -0.028060518, -0.008907924, - 0.059567112, -0.0019704336, -0.06362062, 0.020666007, 0.022557253, - -0.022406988, 0.013340612, 0.002079241, -0.015205995, 0.00879332, - 0.013689669, -0.049508583, 0.009443336, 0.0020114626, 0.0067577413, - -0.011745325, 0.0012925472, -0.0889296, 0.028919239, 4.6142633e-4, - 0.04922553, -0.007619823, -0.038420126, -0.026498482, 0.012491177, - -0.031503987, 0.008620073, -0.010807243, -0.02397547, 0.008951175, - 0.013219416, 0.02905889, 0.06864412, -0.028451635, -0.03639007, - -0.031091068, 0.032409098, -0.020676905, 0.034673538, 0.051142447, - -0.007882481, -0.031663183, -0.066844836, -0.023379525, 0.01874037, - 9.905784e-4, -0.051037315, -0.035147358, -0.029979134, 0.031675614, - -0.011366892, 0.009055028, 0.046904683, -0.0024566965, 0.015489837, - -0.051070925, -0.008562455, -0.047821105, -0.0035134866, 0.043307297, - -0.0018021638, -0.04214336, -0.0064363494, -0.01761727, 0.03968809, - 0.031836472, 0.014548117, 0.0043699183, 0.010065418, 0.0046999226, - -0.032995697, -0.0059032217, 0.06208598, -0.04113647, 0.051451657, - 0.01637728, 0.008767235, 0.047905855, 0.020070732, 0.0054355445, - -0.001029798, 0.009886323, 0.0409984, -0.035447024, -0.017695202, - -0.018079871, -0.02283492, -0.0066250954, 0.0105992295, 0.002106717, - 0.0139233405, 0.032089174, -0.057394106, -0.0124571, 0.022879584, - 0.004181536, -0.047382735, 0.0075963973, 0.0018828003, 0.0063622296, - -0.016161304, 0.04558612, -0.02440674, 0.019872814, -0.031682976, - -0.027371194, 0.012203114, -0.022190401, 0.030188724, 0.020697102, - -0.02089879, 0.075947694, -0.0021305284, -0.014010135, 0.010676471, - -0.046049953, -0.004289676, -0.010472117, -0.045585945, 0.01223583, - -0.025311094, 0.014074323, 0.042869464, -0.01798503, -0.005152433, - 0.018568378, 0.024425589, 0.004530798, -0.035590976, -0.020952875, - 0.027374847, 0.015436853, 8.7247556e-4, 0.01330483, 0.021085097, - -0.06290551, -0.015982432, -0.008559816, 0.017681831, -0.029244922, - -0.018398063, 0.029764967, 0.032764997, -0.036678687, 0.023776874, - -0.05463897, -0.017707154, -0.0012862277, 0.020824367, 0.032139543, - 0.017260473, 0.008213175, 0.067765996, 0.0064081936, 0.009433202, - -0.04840611, 0.012945875, -0.033461776, 0.055827998, 0.0018453798, - 0.015046163, -0.0010925002, 0.014685274, 0.014414969, -0.03195551, - 0.036588706, 0.023753228, 0.012775986, 0.021055363, -0.025273327, - 0.040953975, -0.013108091, -0.041277282, 0.01756959, -0.023154251, - 0.0013273516, -0.011291266, -0.03105205, 0.020807778, 0.03827428, - 0.019606033, -0.041011617, 0.0045026913, -0.052154, -0.033055168, - -0.0112187285, 0.035564285, -0.019566322, -0.006596897, -0.020403063, - -0.013952787, 0.05053711, 0.0010659109, 0.024420707, 0.013028148, - 0.008695623, 0.013363746, -0.034696702, 0.009714106, -3.7285805e-4, - -0.0146810245, -0.0519034, 0.018698022, -0.045672767, 0.020063069, - 0.011279083, -0.06163944, -0.07056255, 0.06104837, 0.036899652, - 0.0068232524, 0.018265003, -0.014773816, -0.023278508, 0.012949933, - -0.017454078, -0.009842723, -0.024264142, 0.0262072, -0.009908446, - 0.044068545, -0.011774299, -0.009675919, 0.0062753633, -0.0711937, - -0.025081303, 0.0023703685, -0.032497562, -0.045149058, -0.0043587657, - -0.025363551, 0.021365734, -0.05838219, -0.07489121, 0.04760267, - 0.04555397, 0.06160672, 0.028751343, -0.01340231, 1.9988521e-4, - 0.0099811535, 0.009541445, -0.074463055, -0.013011948, 0.042139027, - 0.004565394, -0.025280222, 0.025137175, -0.0020606928, 0.004718184, - -0.02979491, 0.0025552886, -0.009435725, 0.023626601, -0.024189897, - 0.046304353, 0.056489162, 0.020440873, -0.024806736, 0.0077150594, - -0.0021769707, -0.0058376202, 7.066681e-5, -0.06256221, -0.03180753, - 0.08123561, 0.01989291, 0.08078743, 0.015755614, 0.011499234, - 0.027810663, 0.009559998, 0.008328667, 0.014784623, 0.0031606422, - -0.014906385, 0.011798701, -0.003751647, -0.034552254, 0.020400016, - 0.040307276, -0.032355696, -0.043530792, 0.034098417, 0.034158155, - -0.037413057, 7.7183964e-4, -0.045068387, 0.017958086, -0.03894795, - 0.01586625, 0.03504697, 0.02717573, 0.03675331, 0.027909122, - 0.0010033983, -0.06770887, 0.050293725, 0.017718567, -0.016577478, - -0.034053486, -0.040200897, -0.068649784, 0.075316764, 0.025720764, - 0.009062844, 0.003480469, 0.046598718, 0.04532893, -0.03394073, - -0.016614242, -0.052495874, 0.03479214, -0.027735746, -0.009593695, - -0.036358066, 0.006092816, 0.0068289237, -0.02700296, -0.0327388, - -0.026481966, -0.057854787, -0.012877637, 0.022341661, 0.0060850508, - -0.013013887, -0.010380593, -4.1037702e-4, 0.014200017, 0.016809603, - -0.016632786, -0.015502554, -0.061665118, 0.041049607, -0.066974476, - 0.0065465225, -0.00892793, -0.046703413, -0.04769578, 0.013223877, - -0.005322448, 0.017032092, 0.026282297, -0.027618304, -0.05148987, - 0.028887067, -0.05317717, 0.010293733, 0.032003473, 0.010219074, - 0.057451036, 0.0012717337, -0.008376086, 0.038447462, 0.019195668, - -0.036666285, -0.011535468, 0.006353038, 0.0031099839, 0.022231804, - -0.035746932, 0.019726435, 0.022513282, -0.028723791, 0.035967637, - -0.029467938, 0.006151073, -0.040702075, 0.035117164, -0.031580515, - 0.018841824, 0.037558477, 0.007657425, -0.014257979, 0.025606547, - 0.017912202, 0.015424385, -0.027432323, -0.043502904, 0.041819032, - 0.009137208, -0.016782783, -0.029707663, -0.029813983, 0.05324021, - -0.0193513, -0.017067147, 0.03145754, -0.048077956, 0.058951396, - 0.0070524816, -0.034204513, -0.008838891, -0.043933604, -0.009835945, - 0.025282133, -0.04195025, 0.033141874, 0.026168969, 0.013267419, - 0.004149294, 0.0095275, 0.020517511, 0.037575737, -0.0011092958, - -0.027132295, 0.057828132, 0.0025476506, 0.039999682, 0.020518193, - -0.02383877, -0.016420938, 0.0371306, -0.0049324078, -0.033945028, - -0.0039161183, 0.031014457, 0.010271195, -0.012489746, -0.021329205, - 0.022313867, -0.030511206, -0.017447732, -0.001405067, -0.022147553, - -0.014206337, 0.04827395, 0.026264397, -0.019145472, -0.0022881655, - 9.6105057e-4, 0.053069945, 0.023686884, -0.019126523, -5.9071026e-4, - 0.01898939, -0.053790573, -0.012329374, 0.025360998, 7.4391236e-4, - -0.0049645207, 0.015720794, 0.0088149365, -0.011929947, -0.019736215, - 0.00366834, -0.009932525, 0.013904394, 0.0018384523, -0.033054408, - 0.004062356, 0.013430227, -0.03816376, 0.08604073, 0.0315146, - 0.017740885, 8.597734e-4, 0.031474605, -0.020271221, -0.018216956, - -0.0039042265, -1.5753819e-4, 0.017244622, 0.06010125, -0.036790207, - 0.024989054, 0.026990943, 0.00408087, 0.018672924, -0.018437827, - -0.030837946, -0.0064236997, 0.004210816, 0.076087765, 0.014033647, - -0.028923688, 0.011083289, -0.018200515, 0.008235225, 0.02573736, - -0.034214504, -0.008022709, 0.04841253, 0.060687326, 0.025692454, - -0.06442221, -0.025479866, -0.025714403, 0.0013765388, 0.0073433043, - 0.0115023935, 0.032787457, -0.00461238, 0.037395, 0.010815117, - -0.022058563, 0.023537971, -0.031188369, 0.006962131, -0.010554394, - -0.024045719, -0.033374917, -0.04336334, 0.042594295, 0.010049084, - -0.03912712, -0.037612867, -0.046396878, 0.049866077, 0.049696553, - 0.0034284706, -0.056550372, 0.016147314, 0.008973596, 0.03491688, - -0.037526816, 0.0798008, -0.015971143, -0.04607229, -0.041284215, - -0.017738147, 0.024864594, 0.030517504, -0.014688086, -0.03080039, - 0.021611216, 0.09506586, 0.035923835, 0.0037157815, 0.0066887047, - 0.014861581, 0.0030047495, 0.0041191373, -0.012382838, 0.0386189, - -0.008034003, -0.06489079, 0.066907875, -0.015723536, -0.0016170305, - 0.0189512, 0.054474235, 0.010771631, 0.024343798, -0.05343742, - 0.005258675, -0.016933994, -0.047963858, -0.025324212, -0.020017453, - -0.029688863, 0.019995576, 0.08076206, -0.003685259, -0.011555424, - 0.0012692222, 0.040737517, -0.016815754, 0.002318618, 0.025235076, - -0.0280619, -0.026034743, 0.0038346217, 0.009438167, -0.030127024, - 0.026307782, -0.0014766883, 0.01530787, 0.045997735, -0.015782062, - 0.052341353, -0.028939508, 0.027479388, 2.3652648e-4, 0.02236951, - 0.0025640675, -0.02177455, 0.037819378, 0.021401018, -0.053408336, - -0.017867172, -0.011067557, -0.036305767, 0.016904876, 0.008481567, - -0.0411333, 0.04960603, 0.03445554, 0.005666718, -0.032939818, - 0.0047930838, -0.055184536, 0.0021624202, -0.0056651193, -0.04279759, - -0.024282282, -0.024821077, 0.0016762471, -0.01571781, 0.008333731, - 0.018120749, 0.0150348935, -0.05895664, 0.011557082, -0.011113054, - -0.006992434, -0.019422993, 0.040283214, 0.004597479, -0.00738942, - -0.0050020143, 0.040497683, -0.037055116, -0.004284311, -0.029438892, - -0.02735005, -3.16156e-4, -0.071808204, -0.025651678, -0.004796184, - 0.054916978, 0.06687159, -0.038297925, 0.013471423, 0.021262094, - 0.021651028, -0.033449, 0.011870751, 0.048169408, 0.03486816, - 0.0028797025, 0.03206184, 0.0065988502, 0.02579395, -0.054224525, - -0.029211085, 0.022944752, 0.027244989, -0.06165222, 0.009078822, - -0.009099786, 0.036845542, 0.015644813, 0.03147103, -0.0619166, - -0.032994505, 0.023791872, -0.019855402, 0.053994723, -0.026734257, - -1.4400092e-4, -0.008759408, -0.018529765, 0.039135713, 0.049995955, - -0.0116894245, -0.005104459, 0.011697631, -0.024576101, 0.010177225, - -0.051862802, 0.0040366496, 0.057436273, -0.0282165, 0.02282214, - -0.041442834, 0.024322862, 0.017713238, 0.015510087, -0.019354913, - 0.039393697, -0.007744407, 0.07189299, -0.019733975, 0.025673253, - -0.0046262345, -0.02658361, 0.006148488, -0.009507482, 0.06418098, - 0.017921168, 0.0036233116, -0.02147429, 0.021726727, -0.02227078, - -0.069508806, -0.013750941, 0.029880809, 0.020431604, 0.027392618, - 0.02244291, 0.027281571, -0.029082501, -0.03558861, -0.007395113, - 0.04926302, 0.045245253, -0.0511317, 0.0015460765, 0.025484407, - 0.08271797, -0.032653894, 0.021525549, -0.024088658, -0.001333999, - 0.0019331317, 0.0320488, -0.012527261, -0.045431055, -0.05572984, - -0.013737768, 0.015591667, 0.026112175, -0.018782929, 0.009720199, - 0.04940255, -0.024639517, -0.024372997, 0.021940729, 0.03261035, - -0.0024295568, -0.058940835, -0.011102395, -0.018734865, 0.013368979, - 0.016921557, -0.010217396, -0.048778854, 0.018865276, 0.010430663, - 0.010015349, -0.024938578, -0.00886808, 0.0043250006, -0.016613133, - 0.053025946, -0.011951825, 0.027269643, -0.028693572, 0.046593733, - -0.019058807, -0.015234477, -0.019057365, 0.010552991, 0.019004995, - 0.014596922, -0.010612215, -0.06448785, -0.0046641133, -0.037154797, - 0.0076363934, -0.03542715, -0.003324929, -0.0204369, -0.02579298, - -0.009536222, -0.04590405, 0.050790098, 0.031146007, 0.027494371, - -0.021925207, 0.042181604, 0.0037966408, -0.016019268, 0.043656852, - 0.04751014, -0.0056405426, 0.022177026, 0.04738002, 0.01702057, - -0.0051016854, -0.016321626, 0.054958414, 0.014825315, 0.022778384, - -0.051605597, 0.03586264, -0.018635407, 0.031920567, 0.022429528, - 0.05428081, -0.012832503, 0.029105708, -0.014164868, 0.010814464, - -0.003137978, -0.040573362, 0.010810842, -0.021487448, -0.058672108, - -0.006350492, -0.026461748, 0.03002533, 0.053233255, -0.03225433, - -4.781996e-4, -0.023931509, 0.002888342, -5.4156946e-5, 0.019266522, - -0.047532152, 0.03512238, -0.008967941, 0.043952256, -0.035683244, - -0.024865165, -0.054181755, 0.0066979937, -0.033262797, -0.018313978, - 0.05119262, 0.024400378, 0.011386343, -0.012199936, 0.023344394, - 0.0016808243, -0.026872607, -0.004384151, 0.011186504, 0.0112171555, - 0.10110853, 0.05496877, 0.045884114, -0.026366625, 0.020592896, - -3.436166e-4, -0.012057585, -0.007299061, -0.019455982, 7.6172437e-4, - 0.033921335, 0.016548267, -0.030111035, -0.039463818, -0.0029241526, - -0.0026432117, -0.011156731, -0.037408344, -0.037790343, 0.027636107, - 0.019059073, 0.01642211, 0.03851188, -0.033323858, -0.014995085, - 0.043178968, 0.018987125, 0.041109793, -0.009505412, -0.029533356, - -0.018889489, 0.01441688, 0.023746476, -0.024774075, -0.012065404, - -0.022576066, 0.039230537, -0.0046625393, -0.04643734, 0.031774603, - -0.050798472, -0.048198916, 0.044179883, 0.042117435, 0.02501243, - 0.035986733, -0.0368167, 0.027334495, 0.024547342, 0.026208661, - -0.0051909364, -0.08775172, 0.01616928, 0.009861891, -0.024542501, - -0.012704194, 0.040934127, -0.0080847405, -0.0013899079, 0.03427305, - 0.02157212, 0.04356527, 0.010927153, 0.0278992, 0.009907972, - 0.0069297426, 0.002373174, -0.025892429, -0.0014371157, -0.024607452, - 0.056779582, 0.11540255, -0.008754215, 0.024738016, -0.017227907, - 0.04979454, 0.0013213167, 0.010450545, -0.008470516, -0.015119216, - -0.0059979027, 0.0072051226, -0.019296221, 0.019654237, 0.044923153, - -0.05958412, 0.012826532, 0.008802888, 0.031771403, -0.015310398, - 0.015321714, -0.019290438, 0.0076372926, 0.005473286, 0.025149312, - 0.013679593, 0.018073084, -0.021051006, 0.04616059, 0.0056394082, - 0.033135917, 0.007426056, -0.06506119, -0.08114395, -0.023751255, - 0.03308556, -0.023610469, 0.007352389, 0.010140232, 0.05089231, - 0.050959244, -0.005344844, 0.004613339, -0.012920548, 0.022633065, - -0.030565752, -0.007418252, -0.0038393503, 0.037075754, 0.0050193416, - 0.026781129, 0.009913013, 0.008592918, 0.034730285 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.04330733, + 8.5705204E-4, + 0.0028549947, + 0.018656287, + 0.012991471, + -0.04416311, + -0.008073124, + -0.027921671, + 0.0074414434, + 0.0011565624, + 0.0052935923, + 0.0025407244, + 0.04577466, + -0.015238947, + 0.007288474, + 0.026771508, + -0.0052197403, + -0.0039487304, + 0.0033488278, + 0.005031257, + -0.022920173, + -0.0042389613, + -0.0096071735, + -0.0025328663, + -0.0143847065, + -0.016036801, + 0.007221622, + 0.0019350788, + 0.009160635, + -0.0071115177, + 0.014872231, + -0.012779513, + 0.007797938, + 0.010504746, + -0.0057727243, + -2.1938681E-4, + 0.010093126, + 0.010901386, + -0.0011551153, + -0.0028103993, + 0.0016363519, + -0.011975719, + -0.0011681622, + 0.013105235, + 1.9485598E-4, + -0.023117248, + -0.0071362215, + -0.01173868, + 0.017899536, + 0.0041180747, + -0.017420666, + 0.007322266, + 0.03683978, + -0.004961741, + -0.022236135, + -0.002024429, + 0.0012453538, + 0.008919278, + 0.020910427, + -0.003693636, + -0.0017215158, + -0.009834511, + 0.011023989, + -0.02124519, + -0.020308996, + 0.0019836829, + 0.007635553, + 2.7253246E-4, + -0.026444765, + -0.009793193, + -0.013291845, + -0.024681222, + 0.0041604773, + -0.02280297, + -0.0091683585, + 0.02626987, + -0.013381276, + 0.01167665, + 0.015130762, + 0.0016582811, + 0.010521293, + -0.010534536, + -0.015810605, + 0.021329079, + -0.028267637, + 0.010818169, + -0.0038506612, + 0.014142937, + -0.0107687805, + 0.02477154, + -0.0063156765, + -0.03522566, + 0.002674849, + -0.009386068, + 0.024739489, + -0.011763211, + 0.017565913, + -0.022540318, + -0.03973847, + -0.0025283457, + 0.004550269, + 0.019613469, + -0.00788059, + 0.0025727672, + 0.021367874, + -0.015983509, + -0.0013989762, + 0.012956746, + -0.010170806, + -0.0051260083, + -0.017703157, + -0.036709473, + 0.007950869, + -0.007626246, + 0.008540666, + -0.008084427, + 0.0048018945, + -3.731701E-4, + -0.009727794, + -0.020539494, + -0.027908701, + -0.0032628248, + -0.0050373957, + 0.02440003, + -0.006603544, + -0.026249953, + 0.006847086, + 0.0041462784, + 0.010944392, + -0.0030209343, + 0.006439036, + -0.009034249, + 0.019856947, + -0.01674455, + -5.514071E-4, + -0.001359004, + 0.014190139, + 0.0056654094, + 0.016505841, + 0.004217942, + 0.006382646, + 0.021109002, + 0.0013811076, + 0.03248903, + -0.008198065, + 0.016468164, + 0.0049888664, + -0.0037456627, + 0.001961839, + -0.029562378, + -0.0070286957, + -0.021099176, + -0.019958645, + 0.01781161, + -0.020284949, + -0.034946796, + -0.0013671508, + 0.0025352216, + -0.02811337, + -0.02349055, + 0.017450336, + 0.009076121, + -0.006384689, + -0.003988769, + -0.006266409, + 0.025858462, + 0.013933686, + 0.021726478, + -0.0025560015, + -0.025838654, + 0.006822596, + -0.014816144, + -0.012477034, + 0.008747548, + -0.018016625, + -0.0034296282, + 0.005082894, + 0.008479506, + -0.009197402, + -0.014747889, + -0.011413399, + -0.0072396714, + 0.0066298256, + -0.00868928, + -0.013798072, + -0.0093811285, + -0.006311885, + 6.7543436E-4, + -0.022629, + -0.02258264, + -0.013113414, + -0.0026770588, + 0.0061345133, + 0.0067277043, + 0.02539821, + -0.0016262737, + 0.005872618, + -0.012741531, + 0.005062437, + -0.0034297009, + -0.0049647796, + 0.003993498, + 0.02319853, + 0.03191665, + -0.0117811505, + -0.023164133, + -1.1174412E-4, + -0.009410236, + -0.01684587, + -0.013649372, + 0.0036792106, + 0.008852556, + 0.017266145, + -0.014507236, + 0.022762394, + -0.019723611, + -0.006140951, + 0.045506492, + 0.008393531, + -0.0142193455, + 0.026706835, + -0.017079897, + 0.0010996163, + 0.009158777, + -0.0048942436, + 0.0072772284, + -0.042466052, + -0.01570948, + -0.014859897, + -0.015490666, + 0.01061694, + -0.0050296094, + 0.024418473, + 0.008644146, + 0.0017410262, + 0.032494407, + 0.035707485, + -0.013691766, + -0.022925215, + 0.00236967, + -0.009503584, + -0.010666386, + -0.026635237, + -0.003301904, + -0.011354841, + 0.019547276, + -0.0041849324, + 0.006921978, + -0.0012769045, + -0.01241783, + -0.023047715, + -0.015780808, + 0.02708942, + -0.013435171, + -0.008048013, + 0.042905033, + -0.01630122, + 0.019893399, + -0.0076932325, + 0.011037785, + -0.037712704, + 0.022533847, + 0.007685428, + 0.010786259, + 0.025336053, + 0.0024377862, + 0.023325363, + 0.016884452, + -0.004722029, + 0.003889324, + -0.014130679, + -0.0028737288, + 0.0031180284, + -0.0073473686, + -0.025703726, + 0.0010565193, + -0.008856133, + -0.020975208, + -0.0014464975, + 0.00959111, + -0.029703084, + -0.0022223217, + 0.026654365, + 0.008071042, + 0.027775977, + -0.020252962, + -0.018409735, + -0.013541732, + -0.013848931, + -0.007131077, + -0.007905242, + 0.010197803, + -0.008310558, + 5.795999E-4, + -0.0058508255, + 0.01065965, + 0.009719474, + -0.0063390085, + -0.0040602367, + 0.008315661, + -0.035961684, + -0.0060833753, + -0.0062556523, + 0.006018821, + 0.024579756, + -0.0043859766, + -0.011000335, + -0.018017292, + 0.052347276, + -0.017370358, + 0.0037602007, + -0.019145772, + -0.010703647, + 0.01514208, + -0.011157051, + -0.008849693, + 0.0036557575, + 0.0019167045, + -0.0020826124, + 0.011288497, + 0.041835908, + -0.017880233, + 0.008622091, + 0.012349128, + -0.012244919, + -0.00805846, + 0.030271707, + 0.020400077, + 0.027660672, + -0.009640744, + 0.0038672155, + -0.011875058, + 0.018439092, + 0.0022774679, + 0.00239443, + -0.035400275, + 0.015989684, + -0.02866339, + 0.01711281, + 0.0060661375, + -0.0045613768, + -0.028084671, + 0.010306789, + -0.003934034, + 0.013551771, + -0.012011338, + -0.008460823, + -0.0042637107, + 0.026134871, + -0.017376652, + 0.00628005, + -0.006798438, + 0.012385814, + 0.013797197, + 0.0041110725, + -0.0402275, + -0.01422158, + 0.010402914, + 0.0010819371, + 0.009340215, + -0.01787476, + -0.010919171, + 0.024859037, + -0.019615082, + -0.0050523095, + -0.015762046, + 0.004948009, + -0.017853158, + 0.007692901, + 0.0223989, + 0.005111762, + 0.0062363627, + 0.0064709643, + -0.002257718, + -0.00414492, + 0.010446, + -0.010345122, + 0.0035300497, + 0.019255435, + 0.0019203986, + -0.018432776, + -0.012034444, + -0.037659362, + 0.007371507, + -0.020540262, + 0.026905734, + 0.019186243, + 0.029403578, + -0.021777896, + 0.0029943797, + -0.009590526, + -0.012490196, + -0.004623006, + -0.017812235, + 0.025442926, + 0.0015248262, + 0.0032422778, + 0.0046829614, + -0.014130485, + 0.019647775, + 0.0037769054, + 0.002677733, + 0.03230415, + 0.0026352617, + 0.012525497, + -0.019730076, + 0.014607205, + -0.0047252583, + 0.019945545, + 0.017107336, + 0.0011897366, + 0.011534475, + -0.016494872, + -0.0057613007, + 0.0034572405, + 0.0072702803, + -0.034727667, + -0.0021566898, + -0.006158406, + 0.029464036, + -0.017716343, + -0.024875924, + -0.005651656, + 0.0017120197, + 0.0031004564, + 0.0026797631, + 0.009905829, + -0.016781433, + 0.0032116545, + 0.01798973, + 0.0018956984, + 0.0037388678, + 0.01355914, + 0.021752844, + -0.03562478, + 0.029455759, + -0.03279476, + 0.006276835, + -0.008259521, + 0.0024987983, + 0.016085139, + -0.0074482257, + 0.014029411, + -0.03127053, + 0.0066868947, + -0.018428404, + -0.012722187, + -0.0026600678, + 0.014626779, + -0.019728554, + 0.017827228, + -0.009003749, + 0.008641397, + 0.003276481, + 0.010932683, + -0.008954668, + -0.021934448, + -0.015549972, + 0.0031157597, + 0.026121045, + 7.710614E-4, + 0.027354913, + -0.010562268, + -0.009139906, + -0.012652057, + -0.0021836362, + -0.00780176, + 7.8542717E-4, + -0.008924866, + 0.0065205754, + -0.0074694636, + 0.005410924, + -0.008899386, + 0.0080818795, + -0.015109842, + 0.00600107, + -0.025187967, + 0.0039156275, + -0.012544875, + 0.010652461, + 0.010541122, + 0.004870161, + 0.004749913, + 0.0050784834, + -0.008778694, + 0.012007087, + -0.0017849366, + -0.04515878, + -0.011138351, + -0.02102648, + -0.0053707105, + 0.009406265, + -7.688334E-4, + 0.012572955, + -0.0033346422, + 0.013998773, + 0.0010946048, + -0.024724439, + -0.0024207705, + 0.04050614, + 0.007713115, + -0.003799547, + -0.0014905602, + 0.013680157, + -0.026909804, + -0.03455396, + -0.009282607, + 0.030517032, + -0.021309331, + -6.626661E-4, + 0.010057811, + -0.012508015, + 0.00831035, + -0.018357905, + -0.009764086, + -0.008201838, + 0.007098903, + -0.008209352, + -0.015729195, + 0.04452134, + 0.005104149, + -0.007397658, + 0.008513833, + 0.016350575, + 0.019278413, + -0.005562936, + 0.021118153, + -0.0073078964, + 0.002986912, + 0.0075691757, + -0.0064146677, + 0.004447408, + -0.033182763, + 0.011954111, + -7.163369E-5, + -2.2362832E-4, + -0.019997373, + 0.022027249, + 0.015407595, + -0.017817061, + 0.0016858577, + 0.010345928, + 0.005771376, + -0.019653093, + -0.0014021164, + 0.00607345, + 0.015169427, + 0.014222003, + -0.01615635, + 9.166575E-4, + 0.020345632, + -0.014654085, + 0.0045343186, + -0.015920166, + 0.011070382, + 0.021978537, + -0.012417832, + -0.0072255163, + 0.01236617, + 0.0046714162, + 0.0065550953, + 0.012644544, + 0.0010774302, + 0.014358277, + 0.016071556, + 0.0043140063, + -0.0021931217, + 0.008608662, + -0.015230409, + -0.019043405, + 0.013663875, + -0.031747527, + -0.013845879, + -0.0010539837, + 0.017415853, + -0.01197198, + -0.0015668487, + 0.028344328, + 0.007858291, + -0.009007221, + -0.0182948, + -0.025805099, + -0.009616131, + -0.0010973065, + -0.018616395, + -0.013302308, + 0.0058152135, + 0.0101089915, + 0.0091910465, + 0.001399799, + 0.011886578, + 0.009797244, + -0.0032875645, + -0.005133977, + -0.009177473, + -0.0063134637, + 0.013415197, + 0.004725368, + -0.012201724, + 0.017571405, + 0.0048879744, + -0.017989071, + -0.00990894, + 5.791265E-4, + -0.025876828, + -0.02836216, + -0.0274701, + 0.0054215435, + 0.018134033, + 0.006141046, + 0.0045349924, + 0.004059741, + -0.013692584, + -0.006887199, + 0.011954106, + -0.0017327572, + 0.0044901264, + 0.008962061, + -0.018745538, + 0.010307566, + 0.00582496, + -9.813689E-4, + -0.027433608, + -0.023041496, + -0.01175444, + -0.019562056, + -0.030858476, + -0.027247733, + 0.010196091, + 0.011293891, + -0.0035447464, + -0.0017928238, + 0.003435458, + 0.025893753, + 0.02649142, + -0.021565735, + 8.656931E-4, + 0.02893506, + -9.1921375E-4, + -0.018002477, + 0.003297409, + 0.00494458, + 0.005932094, + -0.003223112, + -0.0077465125, + -0.017373577, + 0.002300153, + -0.0045033447, + 0.036450163, + 0.006655735, + 0.01414925, + 0.021467008, + -0.025601255, + -0.01297892, + 0.0124556245, + -0.0072239395, + 7.990912E-4, + -0.0057041096, + -0.012081329, + 0.01471116, + 0.0037662538, + -0.024245184, + -0.0047646062, + 0.018674562, + -0.012415967, + 0.0019559239, + -4.7591468E-4, + 0.012068681, + -0.023658577, + -0.008125152, + 0.011623729, + 0.0129739065, + 0.0064104474, + -0.008707444, + -0.009566661, + 8.1644603E-4, + -0.002660078, + -0.02089991, + -0.005385646, + 0.040745247, + 0.0016770858, + -4.8472866E-4, + 0.004597267, + -0.012311592, + -0.02573607, + 0.008749478, + -0.027760092, + -0.003592549, + 0.006447624, + -0.024178851, + 0.0019102417, + -0.023568098, + -0.03498691, + 0.0022234116, + -6.5961404E-4, + 0.0072598504, + 0.007821374, + 0.01213976, + 0.042000506, + -0.0032604367, + 0.0065868646, + 0.005902262, + -0.010421323, + 0.010661842, + -0.025461616, + 0.024125705, + -0.00917508, + 0.0013327377, + -0.037955914, + 7.651651E-4, + 0.002190776, + 0.0038561805, + 0.028807228, + 0.026876207, + 0.002911391, + 0.023995256, + 0.0014470103, + 0.0059196795, + -0.015584953, + -0.016615767, + -0.025901612, + 0.01225743, + 0.021862162, + 0.027621072, + 0.014074747, + -0.014140359, + -7.008035E-4, + -0.00944352, + -0.027436327, + 0.0014710724, + -0.005404982, + -0.00279709, + 0.0024146447, + -0.015951673, + 0.02523643, + -0.027725268, + 0.007954328, + 0.008587238, + -0.0049411133, + -9.4653235E-4, + 0.012100517, + 0.009849618, + -0.0063216854, + -0.0035190836, + 0.0055064564, + -0.007034343, + -0.0035251882, + -0.013711838, + -0.0023839409, + 0.007451317, + -0.0032988926, + 0.014152085, + 0.011054743, + -0.0049778866, + -0.013826015, + -0.028428458, + -5.7244697E-4, + 0.011654442, + -0.04201648, + -0.002140159, + 0.0064500873, + -0.010579677, + 0.011142095, + 0.032445002, + -0.008238601, + 0.008654148, + -0.011597498, + -0.020778416, + 0.015942432, + -0.032723323, + 0.0063059903, + 0.0062585976, + -0.009767033, + -0.0044331285, + -0.013993517, + 0.011157528, + 0.0066027213, + 0.009450926, + -0.017962767, + 0.006796306, + -0.025491908, + 0.0045483876, + 0.009850726, + -0.013558126, + 0.018786056, + -0.012053766, + 0.009363496, + 0.0085436925, + -2.9582536E-4, + 6.347326E-5, + -0.012114359, + 0.016597964, + -0.022832002, + -0.005571097, + 0.016165912, + -0.04121461, + -0.017599503, + -0.0019986513, + 0.01797456, + -0.024464272, + -0.006981255, + 0.0108295055, + 0.047801204, + -0.002362918, + 0.0011911673, + -0.0023210438, + 0.0074532814, + 0.038416952, + -0.047481686, + -0.01570176, + 0.0041068983, + -1.7554076E-4, + -0.015596836, + 0.02998279, + -0.011381652, + -0.007892257, + -0.003792103, + -9.4861176E-4, + -0.0022352573, + -0.012633757, + -0.005484678, + 0.013795937, + 0.01319845, + -0.029308967, + -0.009159192, + 0.012984164, + 0.018271476, + -0.0016791837, + -0.029501373, + -0.031617697, + 0.013881337, + -0.008151071, + -0.01659574, + -0.03890875, + 0.008248434, + 0.04840305, + -0.018489758, + -0.032728367, + 0.0126472255, + -0.0027314867, + -3.4242918E-4, + 1.3375466E-4, + -0.0013344003, + 0.0061902227, + -0.021937257, + 0.021267215, + -0.025772724, + 7.858891E-4, + -0.006099905, + -0.0140660545, + -0.0058543463, + -0.013070123, + -0.010978952, + 0.0020099734, + 0.009970709, + 0.035608046, + 0.0262163, + -0.01182801, + -0.019963687, + -0.0029302733, + -0.01460413, + 0.001409107, + -0.009253873, + 0.025674272, + -0.017430594, + -0.024774857, + 0.040014785, + -1.3778174E-4, + -0.0064897044, + 0.0066070664, + 0.0024387178, + 0.027695466, + -8.990178E-4, + -0.006610364, + -0.015985524, + 0.012380653, + 0.002315901, + 1.9555665E-4, + 0.012762256, + -0.008918633, + 0.012968239, + 0.013046538, + 0.004702051, + -0.008111855, + 0.01422786, + 0.01191783, + -0.025157692, + -0.014230957, + -0.011567948, + 0.004446521, + -3.9161774E-4, + 0.035677217, + 0.0052891634, + 0.014084603, + 0.035331883, + 0.009461891, + -0.022207735, + -0.016745249, + -0.0014637946, + 0.014368423, + -0.0093654515, + -0.0049241115, + -0.0020564578, + -0.0041315267, + 0.00837753, + -0.0067935474, + 0.013173423, + 0.015635978, + -0.008657137, + -0.009357168, + 0.019427218, + 0.025780004, + 0.013841135, + 0.008136635, + -0.018125731, + 0.0047610486, + -0.007990639, + 0.031117873, + -0.00273161, + -0.010876825, + 0.005046878, + -0.0045765988, + 0.005386222, + 0.0073921196, + 0.021063862, + -0.022767872, + -0.022839896, + 0.0042304005, + -0.017031072, + -0.0017576314, + -0.00758142, + 0.00637453, + -0.01779842, + -0.002294209, + 0.00985646, + -0.03038365, + 0.0033856214, + -0.017505534, + -6.566664E-5, + -0.0052837213, + 0.018484348, + -0.015853595, + 0.004919887, + -9.6418284E-4, + -0.011797207, + 0.020597465, + 0.007564757, + 0.003309831, + 0.026095768, + -0.008745357, + 0.0024032264, + 0.012710471, + 0.019319411, + -0.023868369, + -0.010757099, + 0.011899804, + 3.0502988E-4, + -0.047934785, + 0.012802523, + 0.03218348, + -0.017589955, + -0.025520712, + 0.0074497135, + -0.019103257, + -0.01821706, + 0.009559114, + -0.0014939596, + -0.036546826, + -0.0048170895, + 0.005576521, + -0.022740582, + 0.008430454, + -0.010969241, + -0.01598024, + 0.011539471, + 0.028590161, + 0.011339744, + 0.0122997, + 0.0341255, + 0.0018596936, + -0.005530291, + -0.021767084, + 0.009455874, + 0.028962651, + -0.02192269, + -0.010255208, + -0.003783092, + -0.00645584, + -0.01076535, + 0.0070185335, + 0.011929717, + 0.009935977, + 0.029544326, + -0.029560052, + 0.015598622, + 0.007090566, + 0.002648786, + -0.03465887, + 0.014306465, + -0.009293915, + -9.7984506E-5, + 0.02853868, + -0.01677735, + -0.0010447883, + -0.0018811144, + 0.033731207, + -0.018478245, + -0.007821594, + -0.012719848, + -0.018341795, + -0.010867329, + -0.008517847, + -0.019026106, + -0.008349432, + -0.010638646, + 0.0050369473, + -0.021319836, + 0.0135259535, + -0.008642782, + -0.009158638, + -0.01181424, + 0.004752961, + 0.013267069, + -0.0010814863, + 0.005885196, + 0.0105098225, + 0.0048987884, + -3.1964984E-4, + 0.015680363, + 0.012847028, + 0.008199748, + -0.02705818, + 0.01794459, + 0.027577627, + -0.011489457, + 0.016486812, + -0.0094304215, + 0.015632715, + -0.02279789, + -0.0013189826, + 0.028053515, + 0.0166099, + 0.007419063, + 0.017293047, + -0.0056147226, + -0.0082616, + 0.010647562, + -0.014087638, + 0.0034110313, + -0.0014154803, + 0.0034343498, + 4.760002E-4, + 0.026567606, + 0.004908174, + 0.0062627904, + 0.014133003, + 0.006233251, + 0.008835949, + -0.008693451, + -0.03128761, + 0.0015396118, + -0.0036297466, + 0.012978261, + -0.011433287, + 0.028985929, + 0.008748153, + 0.0044435095, + -0.0033377544, + -0.0068743513, + -0.032413885, + -0.011188803, + -0.018149886, + 0.020410005, + 0.014132633, + 0.005277454, + 0.0024169795, + -0.0046961783, + 0.014158018, + 0.0026675037, + 0.0037128148, + 0.0030038634, + 0.013859331, + 0.020601388, + -0.019065479, + -0.028137526, + -0.008176834, + 0.020425852, + -0.0029279375, + -0.012890584, + -0.021452341, + 0.0014785989, + 0.006607296, + -0.007883749, + -0.012284161, + 0.02995559, + -0.041006085, + 3.9331923E-4, + 0.013174511, + -0.027614512, + 0.0018288281, + -0.023694083, + 0.02284188, + 0.015855955, + -0.0019387059, + 0.009047575, + -9.339521E-4, + 0.014091574, + 0.028129065, + -0.0026459114, + 0.004966338, + 0.0069352593, + 0.006251423, + -0.007089792, + -0.0072612492, + -0.01428732, + 0.024543693, + 0.018729378, + -0.009453072, + 0.005176637, + 0.03249202, + -0.01989025, + 0.016030438, + 0.02542433, + -0.00528292, + 0.0030929758, + 0.019679585, + 0.013306285, + -0.012590088, + 0.0036594195, + -0.010657419, + -0.007665874, + 0.0035882841, + 0.008070858, + -0.008047638, + 0.0034967973, + -0.018639168, + -0.019413963, + -0.009913132, + -0.0068653696, + -0.0040048556, + 0.008419221, + -0.006996941, + -0.022498203, + -0.012900218, + 0.012134307, + -0.02473577, + 0.014339151, + -0.0015514072, + -0.012459134, + 0.025262352, + -0.024101058, + -0.0216866, + -0.012944212, + 0.015757995, + 0.0050592353, + -0.013235057, + 0.011150935, + 0.009254631, + -0.0087351715, + 0.02061764, + 0.011312203, + 0.027514687, + 0.011162787, + 0.008373628, + -9.4208657E-4, + 0.01090794, + 0.012550966, + -0.033897348, + -0.020078259, + -0.0033519887, + -0.012556085, + -0.020959632, + -0.0015733085, + 0.016189964, + -0.013711021, + 0.004448344, + 0.01064168, + -0.009091687, + -0.014585592, + 0.0049822163, + 0.0078472905, + 7.653719E-6, + -0.0013148516, + 0.020639483, + 0.02525834, + -0.0058940537, + -0.007387717, + 0.0037578237, + -0.0045700083, + -0.009177622, + -0.0057462486, + -0.0136934, + -0.007799888, + -0.004088313, + 0.009264295, + -0.034297146, + -0.0016380415, + -0.010220832, + -0.002693544, + 0.007947146, + 0.015450155, + -0.017744832, + 0.010747942, + -0.013298686, + -0.014902763, + -0.005116955, + 0.032549378, + 0.028870733, + -0.020651076, + -0.008994068, + 0.039295558, + -0.021244438, + -0.0020178973, + 0.030962365, + -0.007418876, + -0.0061669014, + 0.007326091, + 0.013291318, + -0.026895631, + 0.00468662, + -0.017398957, + 0.03488245, + -0.001187917, + 0.010389858, + 0.007914616, + 0.013927035, + -0.01231101, + 0.01566489, + -0.0049876682, + -0.0012190806, + 0.025650013, + -0.01969552, + -0.027179044, + -0.01429805, + -0.009276922, + -0.010559558, + 0.022295883, + -0.03282453, + 0.02465774, + 0.004296841, + 0.0148730045, + 0.007621029, + -0.022812165, + -0.010868765, + 4.9378554E-4, + -0.031329647, + -0.018592255, + -0.015047438, + 0.020227475, + 0.009652984, + -0.00260982, + -0.0132799195, + 0.002577535, + 0.0022030545, + -0.008230403, + 0.004445899, + -0.0019817348, + 0.020412512, + -0.0023417803, + -0.014190555, + -0.017854236, + 0.0013363286, + 0.006848585, + -0.01485247, + -0.0023411415, + 0.023860296, + -0.010701904, + 0.013127403, + 0.0049475324, + -0.009946771, + 0.0062366943, + 0.007873858, + -0.0162227, + 0.0024523076, + -0.009211996, + -0.002692757, + -0.019693846, + 0.005769286, + 0.0065163444, + 0.0059393602, + -0.022323772, + 0.021526806, + 0.012847291, + -0.012308006, + 0.016708206, + 0.0041301395, + -0.0054713367, + -0.0041983267, + 0.0102045, + -0.012463038, + 0.008049763, + 0.0052519776, + -0.019611131, + 0.0190791, + 0.023330286, + -0.030855391, + -0.007868139, + 0.007848187, + -0.005022173, + -0.019909687, + -0.007919814, + -0.0049952874, + 0.0040080855, + 0.009885642, + 0.011595297, + -0.0018884386, + 0.009449339, + -0.018192444, + 0.015178324, + -0.016851583, + 0.0054917443, + -0.024925893, + -0.0011408167, + 0.037982326, + -0.0049915537, + -0.0033137477, + 0.009481598, + -0.0076404638, + -0.01218828, + 0.015926398, + 9.157291E-4, + 0.0106164655, + -0.024127988, + 0.0091845, + -0.031742066, + -0.008170792, + 0.004647608, + -0.002627071, + 0.0014632103, + -0.0045439145, + -0.021952223, + 0.0086873965, + 0.0070591453, + -0.01413211, + -0.023727758, + -0.005151174, + 0.029852066, + 0.018884989, + 5.8866275E-4, + 0.020690668, + -0.0051845936, + 0.0035205854, + 0.002658594, + 0.007527892, + 0.022071084, + 0.007675312, + 0.0065188655, + -0.00653625, + -0.013767794, + 0.01675797, + 1.0498188E-4, + 0.015881047, + -0.010650579, + 0.0055993465, + 0.0037094408, + 0.029079469, + -0.019702805, + -0.031648904, + -0.016616529, + 0.024040805, + 0.018879943, + 0.03714526, + 0.009620392, + -0.0047400203, + 0.009214208, + -0.0029938114, + 9.047669E-5, + 0.010496546, + -0.022914426, + 0.03090882, + -0.012582702, + 0.0014781789, + -0.0020532536, + 0.013988486, + 0.011656053, + -0.012540609, + -0.01630671, + 0.0024911189, + 0.005642627, + 0.03270448, + -0.006456256, + 0.0022402569, + 0.011517448, + 0.01037214, + 0.006754233, + 0.0040575913, + -0.008461683, + -0.0047199433, + -6.8680785E-4, + -0.008367721, + -0.023727302, + -0.0105577195, + -0.004716271, + 0.004847521, + 0.035366524, + -0.015294982, + 0.018039603, + -4.294823E-4, + -0.01194745, + 0.027499633, + 0.014857736, + -0.0027279404, + -0.005528997, + 8.233748E-4, + -0.017746815, + -0.016687624, + -0.0055192816, + 0.005024116, + -0.0010833844, + -0.013664187, + -7.427447E-4, + -0.003733021, + -0.0136489, + 0.020655267, + 0.0059285266, + -0.0049249516, + 2.5929394E-4, + -0.0147812925, + 0.0045954357, + -0.011889826, + 0.024978137, + 0.0046559377, + -0.0020280245, + -0.007723919, + 0.010898566, + 0.025467431, + -0.010067817, + -0.009460088, + 0.017930072, + -0.044407878, + 0.0071933363, + 0.009453007, + 0.04187245, + -0.0077693094, + -0.024720402, + 0.0027592946, + -0.005071662, + -0.011311056, + -0.016087046, + 0.004351129, + 0.0038400241, + -0.012653637, + -0.010628771, + 0.013413234, + -0.011109677, + 3.981456E-4, + 0.015323124, + -0.030664189, + -0.008246866, + -0.004920187, + 0.004052356, + -7.474312E-4, + 0.0067203306, + -0.0071828677, + -0.0114597175, + -0.009116577, + -0.012603525, + -0.014473775, + 0.016057411, + 7.090074E-4, + 0.017979732, + 0.010362409, + 0.0066044317, + 0.00626077, + 0.01857878, + 0.004199886, + -0.0076527116, + -0.001443686, + -0.029291915, + 0.0079066595, + 0.00900407, + -0.0131956, + 0.011916357, + -0.014357194, + 0.026658602, + 0.018002091, + -0.006320214, + -0.021545058, + -0.0034627928, + 0.002781168, + -3.644512E-4, + 0.006424203, + -0.013424403, + -0.023278195, + 0.026353326, + 0.019550988, + 0.028286431, + 0.010573815, + 0.028753705, + 0.0037675072, + -3.075443E-5, + -0.0011500366, + 0.007419161, + 0.012739146, + 0.015937818, + -0.021210885, + 0.022113992, + -0.013941458, + -0.024527814, + 0.0033939125, + -4.1519888E-4, + -0.0013803293, + -0.011069237, + 0.013388918, + -0.036110926, + 0.019196153, + -0.0013893947, + -0.006980707, + -0.01876039, + -0.010973361, + -0.0044377716, + 0.023036288, + 0.0036116664, + 9.815851E-4, + 0.019974373, + 0.03310648, + 0.014081437, + 0.022329772, + 0.017280895, + -0.011535253, + -8.930675E-4, + -0.006193001, + 0.011468342, + -0.005972339, + -0.006807682, + -8.360402E-4, + -0.011939742, + 9.923764E-4, + -0.021670764, + -0.003950489, + 0.0039605466, + 0.009879774, + -0.0049743764, + -0.013866899, + -0.0012649364, + -0.008841135, + 0.0035176368, + 0.027087787, + 8.297577E-4, + 0.0017957081, + -0.028960085, + 0.0062444094, + 0.017461147, + -0.0024683794, + -0.022143094, + -0.026951764, + 0.008931611, + 0.0025956247, + -0.0048917457, + -0.00685697, + 0.013576734, + -9.229782E-5, + -0.0097377105, + 0.0051234784, + 0.0011353958, + -0.012708746, + -0.02876153, + 0.0018722217, + 0.020529652, + -0.012583566, + -0.01712101, + -0.0028525374, + -0.017444327, + 0.012296771, + -0.023679186, + -0.018981025, + -0.0037203499, + 0.010538589, + -0.012466777, + 0.0072229863, + -0.01599387, + 0.012424808, + -0.029406607, + -0.0068722935, + -0.006897477, + 0.006144086, + -0.014354753, + -0.0205963, + 0.008493647, + -0.016955998, + 0.014415194, + -0.023290902, + -0.0026233732, + 0.00799168, + 0.018481974, + -1.9880719E-4, + 0.0029443065, + 0.006723062, + -0.003403358, + -0.008100972, + 0.009827101, + -0.0076622968, + -0.016481921, + 0.009303775, + 0.011505262, + -0.0052916124, + 0.010460557, + -0.0024314816, + 0.0088704, + 6.334242E-4, + 0.023914563, + -0.01638189, + 0.017815826, + -0.012181506, + -0.02165083, + -0.0029213305, + 0.012314937, + 0.012489672, + -0.008060312, + 0.014969229, + 0.015878504, + 5.4773147E-4, + 0.007079348, + 0.018443648, + -0.002340947, + -0.0031172102, + 0.011044264, + 0.011583489, + 0.026627945, + -0.02557558, + -0.01205735, + 0.0057135676, + 0.014802614, + -0.02044258, + -0.032334443, + -0.013001886, + -0.0014673332, + 0.010949021, + 0.01005103, + 0.0047143614, + 0.0030294335, + -0.016258227, + 0.01148261, + 0.007240642, + 0.009808119, + -0.007053123, + 0.013286014, + -0.015411738, + -0.011683618, + 0.0023534456, + -0.004062609, + 0.007793023, + 0.0068851593, + 0.010541781, + 0.0037808032, + -0.0066939606, + 0.0078297155, + -0.008989633, + -0.0072440365, + -0.018377922, + 0.028065866, + 0.0039471933, + -0.005155424, + -0.027958011, + -0.022619711, + -0.029301483, + 0.0075758696, + -0.010723095, + 0.0109757595, + -0.0011357033, + 0.012110362, + -0.008591968, + 0.004020834, + 0.0016672575, + 0.0014306608, + 0.00661076, + 0.003318796, + -7.564972E-4, + 0.0074839266, + -0.030967593, + -0.022705093, + -0.012813209, + 0.026289267, + 0.018535892, + -3.6592243E-4, + 0.015734784, + 0.010956996, + 2.5921117E-4, + -0.008284265, + -0.015438253, + -0.0022410857, + -0.007836923, + -0.015990619, + 0.0054506552, + 0.0043891952, + -0.0117450915, + 0.0054919566, + 0.009314396, + -0.029683864, + -0.011271468, + -0.009357182, + -0.005581764, + -0.0016574726, + -0.0010741812, + 0.0015636611, + 0.007331556, + -0.011349845, + -0.016640404, + 0.027243273, + 0.030107656, + 0.0039739287, + 0.0026418343, + 0.008481642, + 0.0059135198, + 0.005815048, + -0.0011711697, + 0.026690342, + -0.0063843317, + -0.014240736, + 0.00591525, + 3.0281235E-4, + 0.02809968, + 0.02377459, + -0.0046591414, + 0.019331614, + 0.008348247, + 0.012793149, + 0.0022194718, + -0.02591132, + -0.026183423, + -0.0073502227, + -0.019257484, + -0.009899125, + -0.0021094992, + -0.016027367, + -0.008305673, + 0.01402712, + 0.009296708, + 0.0034474412, + 0.01063697, + -0.0032664402, + 0.006877358, + -0.007244355, + 1.8404867E-4, + -0.008168466, + 0.006608239, + 0.005208673, + 0.013639951, + -0.011657871, + -0.022907676, + 0.0044129808, + 0.011020405, + 0.005176686, + 0.0025251182, + -0.012855835, + -0.018669471, + -0.015391395, + -0.011411298, + -0.0068077813, + 0.03454677, + 0.008785032, + -0.029879285, + -0.029271157, + -0.005783974, + -0.018616276, + -8.3470884E-5, + -0.011273137, + 0.011657157, + 0.008259949, + 0.0073554777, + 0.005812067, + 0.048984304, + -0.002221657, + -0.012007177, + 0.015597762, + 0.023962555, + -0.018791528, + -0.03164851, + -0.011879026, + -0.02135975, + 0.011101484, + 0.022937248, + 0.00330877, + 0.004204487, + -0.016496902, + -0.004606327, + 0.01246026, + 0.004972421, + -0.0073924945, + -0.001277072, + -0.013066531, + 0.009305723, + -0.042699672, + -0.018239131, + -0.021692084, + 0.017915962, + 0.002808902, + -0.004505296, + -0.0074220914, + -0.013346147, + 0.009054351, + 0.006408646, + 1.4697012E-4, + -0.013533656, + -0.024363996, + 0.013568249, + -0.004075893, + -0.01866577, + 0.0071677137, + 0.010625949, + -0.0134619465, + -0.007107875, + -0.0013198684, + 0.012778731, + 0.017739717, + 0.022026064, + 0.022745263, + 0.0049627693, + -0.0041465806, + -0.028430866, + -0.0011233556, + -0.020399645, + -0.003759119, + 0.022253247, + -0.029981004, + -0.0069622574, + -0.015904412, + 0.007269069, + -0.009943913, + -0.029140923, + -0.0033615718, + 0.008588569, + 0.0071552624, + 0.022943595, + -0.0032896253, + -5.9822155E-4, + -0.0032178108, + 0.0013852142, + 0.009688868, + 0.008511139, + 0.009046797, + 0.037540272, + -0.015212657, + 0.0077365227, + 0.008855938, + 0.02626019, + -0.027043479, + 0.0032790375, + 0.008383696, + -0.008531244, + 0.012718019, + -0.014951112, + 0.0149881225, + -0.0013618692, + -0.003790198, + -0.013680467, + 0.001206981, + 0.01047343, + 0.0056531574, + -0.010756914, + -0.005944809, + -0.020569205, + 0.00594653, + -0.008064925, + -0.0043980977, + -0.009426517, + 0.0012665774, + -0.02605642, + -0.004817535, + -0.028649535, + 0.034725662, + 0.002525213, + -0.023200573, + 0.009856195, + 0.008188863, + 0.02690395, + 0.009242755, + 0.016560787, + -0.0045319432, + -0.007836694, + 0.017820159, + 0.0036728666, + -0.005603979, + 0.005369161, + 0.011050602, + 0.0022094927, + -0.026691746, + -0.01966342, + -0.028624367, + 0.014805261, + -0.018673886, + 0.007868829, + -0.027268723, + 0.009483184, + 0.018086435, + -0.011359956, + -0.032068014, + 0.011882979, + -0.0078127775, + 0.0017554443, + 0.0073859175, + -9.412103E-4, + 0.017076751, + -6.0454564E-4, + -0.019693024, + 0.018583616, + 0.0091041485, + -0.007322012, + 0.024248252, + -0.020562835, + 0.0056838416, + 0.008084786, + 0.007783229, + 0.02370881, + 0.0033985975, + -0.0011634894, + -0.0080156475, + 0.02509619, + -0.01968874, + -0.009000881, + -0.025788128, + 0.021433096, + -0.0067717917, + -0.017143397, + -0.025603158, + -0.014255686, + 0.013342401, + 0.008617478, + 0.00992544, + 0.0063485955, + 0.013261962, + 0.029029088, + -0.007856349, + 0.0037405097, + 0.0060020606, + 0.013020397, + -0.016308421, + -0.0027805949, + 0.021093866, + 0.008409297, + 0.005063784, + -0.021378508, + -0.016268428, + -0.032933034, + 0.019776901, + -1.8395715E-4, + -0.016591027, + 0.011033071, + -0.006577479, + 0.016550058, + 0.0062552793, + -7.30517E-4, + 0.016362093, + 0.019015267, + 0.024901448, + 0.034988955, + 1.2158645E-4, + -2.0095517E-4, + -0.032143757, + -0.021573303, + -0.0041520987, + -0.0065475698, + 0.0060012653, + 0.039378837, + -0.007628244, + -0.0241984, + 0.023887454, + 0.019291352, + -0.0017854362, + 0.0032554204, + -0.020600095, + 0.0085951565, + 0.009526853, + -0.002639616, + 0.017820705, + -0.009469018, + 0.0032033573, + -0.0063098874, + 0.018574677, + -0.011853359, + -0.003932412, + -0.019342748, + 7.530183E-4, + 5.905667E-4, + -0.014913378, + 0.011993153, + 0.0022415405, + 0.015389377, + 0.01984045, + 0.012055849, + -0.0067432025, + 0.018908277, + 8.873105E-4, + -0.0014572035, + -0.003240329, + -0.0108544165, + 0.01635318, + 0.022311945, + -0.0050170445, + 0.010981034, + -0.023529889, + -0.006906625, + 0.012672045, + 0.018958839, + -0.0068608844, + 0.024356004, + 0.023240862, + 0.006697938, + 0.013252466, + 0.020431796, + -0.002827758, + 0.0056742462, + -0.013073976, + -0.0030079528, + -0.019316807, + -0.0069764983, + -0.018574396, + 0.015955346, + 0.0026421333, + 0.0033957816, + 0.008292095, + 0.00517735, + -0.0014985737, + 0.015002579, + -0.014019689, + 0.011043678, + -0.022903586, + -0.02615173, + -0.004749576, + 0.0042097475, + 0.017631609, + -0.008424879, + 0.027289595, + -0.010088659, + 0.007167634, + -0.0043886527, + -0.008401893, + 0.010437522, + -0.0021168382, + -0.0011457939, + 0.016342903, + -0.019876162, + 0.0017296111, + -0.023346903, + -0.004545679, + 0.005966626, + -0.021442996, + -0.005740282, + 0.012572191, + 0.026264783, + 0.018748283, + -0.0076093045, + -0.031251326, + -0.016001755, + -0.0018741083, + 0.0044416445, + -0.0021958884, + 0.0011726092, + -0.015631463, + 0.010900711, + -0.019529682, + -0.015876219, + -0.020261029, + 0.0039545964, + 0.0033383267, + 0.0070323376, + 0.0088556325, + 0.003959506, + -0.0075389976, + 0.013542733, + 0.007496658, + -0.013708731, + 0.014130059, + 0.0049265707, + -0.016415587, + 0.006048628, + 0.019098194, + -0.0015662845, + 1.6743291E-4, + 0.004455648, + -0.005732435, + 0.01393329, + 0.020133916, + 0.00800022, + -0.019177767, + -0.016661745, + -0.014929526, + -0.009894836, + -0.026977045, + -0.0025593578, + 0.017724857, + 0.02406982, + -0.022696782, + -0.010607208, + 0.022432448, + -0.0076670647, + -0.031669892, + 0.01600135, + -0.0023887556, + -0.009872859, + 0.014691198, + 0.014291725, + 0.0041786674, + -0.016284041, + -0.02305827, + -0.0023270277, + 0.0045607397, + -0.0022667267, + 0.03251768, + 7.9821254E-4, + 0.0034850594, + 0.019425327, + 4.0957585E-4, + 0.016344182, + 0.0077219526, + 0.022296432, + -0.018183406, + -0.005796602, + 0.0031615426, + 0.011652433, + 0.011994687, + -0.032887593, + 0.0054350286, + 0.030372204, + -0.0071442947, + -0.016828366, + -6.0990767E-4, + -0.0040696245, + 0.014374772, + -0.0049551297, + 8.198452E-5, + 0.012343612, + -0.030134182, + -0.0028028986, + 0.023302423, + -0.020709151, + 0.0058142035, + -0.008732063, + 0.0028301503, + -0.011678545, + -0.008248524, + 0.018404424, + 0.009829783, + -0.0032562665, + -0.017983718, + 0.014862693, + -0.015068176, + -0.0015637272, + -0.008794007, + 0.007835651, + 0.010083834, + -0.017381987, + 0.011906643, + 0.005709959, + -5.3494255E-4, + 0.024993798, + 0.00720193, + -0.016566835, + 0.00959617, + 0.0056424066, + 0.0031187113, + -0.006295176, + 0.0076343683, + 0.0076523363, + -0.0036816953, + -0.011596035, + 0.0067501655, + -0.014784746, + -0.007123821, + 0.01983801, + -0.005686374, + -0.019617587, + -0.028188458, + -0.004443182, + -0.03524613, + 0.014574828, + -6.0791406E-4, + -0.03625501, + 0.0081180325, + -0.014952704, + -0.01596426, + 0.01336858, + -0.022734141, + -0.008947122, + -0.021304006, + 0.005628718, + -0.0010115525, + 0.01676641, + 0.027937202, + -0.042075254, + -1.6573134E-4, + 0.0043845456, + -0.003929434, + 0.013111713, + -0.021876637, + -0.022038069, + -0.010324998, + 0.033389404, + -0.017284438, + -0.010241065, + -0.0027161697, + 4.960912E-4, + -0.007222491, + -0.019820793, + 0.019340638, + 0.025627455, + -4.60262E-4, + -0.025048, + -0.011406176, + -0.040920034, + -0.0252975, + -0.024235524, + 0.013333921, + 0.0017080186, + 0.030433668, + -0.020354811, + 0.01917992, + -0.013954071, + -0.013453393, + -6.247618E-4, + -0.015898274, + 0.026819034, + -9.5252186E-4, + -0.011328077, + 0.007583945, + -0.0037060399, + 0.016117549, + 0.02160251, + -0.007118106, + 0.015381438, + -0.00254698, + 0.0033578621, + 0.028857905, + 0.030280504, + -0.016197175, + 0.0070863483, + 0.0166891, + -0.0010674379, + 0.0038852312, + -0.01846792, + 0.003838592, + 0.004435925, + -0.0017555589, + -0.019647745, + 0.020313049, + -0.0018533787, + -0.002499387, + 0.025491498, + 0.011273392, + -0.053982485, + 0.0036588805, + -0.0041850302, + -0.02200988, + -0.028692383, + -0.0039338046, + 0.00877309, + 0.008294379, + -0.009925853, + 0.002901432, + 0.02542702, + 0.019409781, + 0.0043460783, + -0.009971494, + -0.018997585, + 0.0015880389, + 0.0019219032, + 7.8746036E-4, + 0.009020331, + -4.9999525E-4, + -0.025439456, + -0.01929963, + 3.2193324E-4, + -0.012730167, + 0.017589021, + -0.0025183128, + 0.04808627, + 0.03280918, + -0.0020986502, + 0.022038382, + -0.0035436067, + -0.010748287, + 0.021242114, + -0.009506015, + -0.00722529, + 0.018455165, + -0.009910158, + -0.0027800824, + -0.014891659, + -0.007039215, + -0.0044115107, + 0.0051916875, + -0.004430472, + -0.007684598, + -0.003289921, + -0.017190808, + -0.011056035, + 0.006610208, + -0.0062136594, + 0.004709946, + 0.014132381, + 0.0037914766, + -0.021480508, + 0.0059994957, + 0.002219913, + -0.020267218, + -0.008832011, + 0.006595843, + 0.0071875737, + 0.017850585, + -0.023282455, + 0.013630128, + -8.3650136E-4, + 0.009255444, + 3.3870083E-4, + -0.036835752, + 0.0018059615, + -0.03468975, + -0.018234868, + 0.016620649, + 0.0067688813, + -4.3287725E-4, + 0.0063439556, + 0.012365235, + 0.022620639, + 0.017610556, + -0.013736666, + -2.5519344E-4, + -0.018493107, + -0.010143361, + 0.0060431613, + 0.004180053, + 0.010304206, + 0.010592612, + -0.0012120862, + -0.00421628, + -0.011089087, + 0.0066463123, + 0.01720958, + 0.022060074, + 0.002320907, + -0.0045902464, + -9.462914E-4, + 0.009778665, + -0.013370559, + 0.015576119, + -0.0072602164, + -0.012077662, + -0.00847974, + 0.014444822, + -0.007601359, + 0.042331677, + -0.014855192, + 0.008341851, + -0.012174914, + 0.005553605, + 0.011016922, + 0.0065245326, + -0.0070148134, + 0.0099987285, + -0.027539253, + 0.014165472, + 8.0933515E-4, + -0.011535289, + -0.019189563, + -0.011332532, + 0.014940123, + -0.009511308, + -0.0075674346, + 0.0038523423, + -0.02734553, + -0.0060896073, + -0.009676231, + -0.014773253, + 0.011812601, + 0.014422653, + -0.013176671, + 0.020575503, + 0.012878339, + 0.0057713874, + 0.020876627, + -0.007944683, + 0.00697921, + 0.0237169, + 0.03333275, + -0.027844302, + 0.03524212, + 0.002613534, + -0.0043438138, + -0.0012424536, + 0.014086121, + -0.009400957, + -0.006303551, + 0.01703623, + -0.007535156, + -0.015058709, + 6.7312265E-4, + 0.015006437, + -0.0011036498, + -0.028913597, + -0.0010385135, + 0.0013085355, + 0.013173925, + 0.01870818, + 0.022991866, + 0.027047947, + -0.018805822, + 0.025645245, + 0.015708562, + 0.005268527, + 0.0017434364, + -0.0026058236, + 0.025242524, + 0.0155401835, + -0.008990611, + -0.034941323, + -0.009195115, + -0.019578649, + -0.015147817, + 0.009893039, + -0.036346838, + -0.018684633, + 0.0060721105, + -0.0037162064, + 0.011922149, + 0.0015402731, + 0.0044128816, + -0.0071055726, + 0.009469179, + 0.022806423, + 0.012214568, + 0.015128779, + -0.046394344, + -0.012261115, + -0.008545688, + 0.013867846, + 0.018249594, + -1.0160449E-4, + -0.011575568, + -0.0014951663, + 0.00496665, + -0.0040836926, + -4.6521652E-4, + -0.0123016825, + -0.0033624042, + -0.004810849, + 0.0034222293, + 0.0076508755, + 0.010014605, + -0.0062144417, + 4.7387913E-4, + 0.013759389, + 0.0151155945, + 0.006579333, + 0.020591501, + -0.02414248, + -0.022227831, + 0.0010170778, + 0.0054618437, + -0.021432051, + 0.018069526, + 0.03218218, + -0.004813772, + -0.008257039, + 0.004541792, + 0.01311371, + 0.024867898, + -0.0044093356, + 0.005420188, + 0.016248723, + -0.0033522672, + -0.004342812, + 0.044489447, + -0.020544069, + -0.022586413, + -0.006672264, + -0.0039203083, + 0.0057743313, + 0.026829183, + 0.008611995, + -0.004359806, + -0.0036111935, + -0.0016401423, + -0.0037393146, + -0.01665114, + 0.0050374353, + -0.02042348, + -0.0057542883, + -0.012566998, + 0.0020084428, + 0.035386164, + -2.855654E-4, + -0.031648982, + 0.024881752, + 0.0025063446, + -0.026680002, + -0.017569302, + -0.02341197, + 0.008707538, + 0.021098683, + 0.012814356, + -0.016070541, + 0.017883075, + -0.007911195, + -0.018867267, + 0.0068016276, + 0.015162289, + -0.009782027, + -0.013471922, + -0.02084776, + 0.0073597305, + -0.011298784, + -0.027855054, + 0.007560377, + 0.008052584, + -0.0069899736, + -0.0020882455, + -0.012352533, + -3.517034E-4, + -0.008203839, + -0.009966302, + -0.011707716, + 0.009138228, + -0.006797583, + 0.016615111, + 0.011556527, + -0.020841846, + -0.016958913, + -0.0020186633, + -0.010672169, + 0.015455033, + -0.031487294, + -0.01717201, + -0.03569023, + -0.018041153, + -0.014359182, + -0.016162362, + -0.042549815, + 0.0033121721, + 0.0070081647, + -0.027747206, + -0.019285768, + 0.0056648105, + -0.004169761, + 0.002200732, + -0.005465031, + 8.5049216E-4, + -0.010870361, + -0.02974625, + -0.022368124, + 0.0065291747, + -0.0032513235, + 0.0140144965, + 0.008543559, + 0.021131612, + -0.017191183, + -0.012078653, + 1.8020243E-4, + 0.021053694, + -0.0066739987, + 0.013683946, + -0.0102097355, + -0.02160459, + 0.0058787093, + -0.0031538953, + -0.01538266, + 0.0058101136, + -0.007713253, + 0.004973614, + -0.0172411, + -0.016117463, + 0.010631844, + -0.0045897313, + 0.024975987, + 0.013515754, + 0.013478864, + 0.011281009, + -0.0010530314, + 0.01586864, + 0.0028028248, + 4.7999588E-4, + 0.019345963, + -0.022612393, + -0.0233907, + -0.0027080309, + 0.015645059, + -0.015280348, + -0.034110848, + 0.020855598, + -0.03366485, + -0.027235137, + -0.004268704, + 0.021978134, + -0.023008583, + -0.016883714, + -0.008151185, + -0.0034196365, + 0.0023927058, + -0.018583972, + -0.018076459, + -0.0030058802, + -0.011200466, + -0.0037154853, + -0.009019354, + -0.007575297, + -0.0127016585, + 0.03704584, + 0.023681672, + 0.0074624047, + 0.014760981, + 0.005419205, + 9.394133E-4, + -0.014009761, + -0.027851107, + -0.0026796218, + -0.022174729, + 0.033227187, + 0.011344299, + -0.0119272, + 0.009568255, + -0.02058604, + 0.017038338, + -0.01852123, + -0.0095805, + 0.01948098, + 0.020740356, + -0.021526607, + 0.013246592, + 0.022468418, + 0.004863554, + 0.009836403, + -0.01096796, + -0.01800268, + -0.010596917, + -0.012711093, + 0.01274644, + -0.026514785, + -0.008605718, + 0.0026296126, + 0.0065093134, + 0.0024148643, + -0.004626522, + 0.014286091, + 0.0014631622, + 0.01665546, + -0.025378346, + 0.014613395, + 0.011515801, + 0.004159022, + 0.008091036, + 0.019070374, + -0.011245401, + -0.009686682, + 0.016329952, + 0.002226402, + 0.030341169, + 0.014273205, + -0.02557194, + 0.016584188, + 0.0011345348, + 0.014114817, + -0.005224213, + 0.008140452, + 0.0043255445, + 0.0039368705, + -0.016052034, + 0.018306095, + -0.025853416, + -0.015072754, + -0.0043363445, + -0.014723013, + 0.011389994, + -0.003969906, + 0.014399101, + 0.008141972, + 0.0037893683, + -1.17451804E-4, + -0.027932735, + 0.011298384, + -0.006690361, + -0.0054167304, + -0.0069102966, + 0.040946707, + 0.0031563938, + 0.020301621, + -0.0044319937, + 0.009375492, + -3.135743E-4, + -0.022721512, + -0.0055776485, + 0.009911643, + -0.0028493456, + -0.0068833474, + 0.030497296, + 0.008868957, + -0.011287731, + -0.017865984, + -0.02463307, + -0.012368447, + 0.03175101, + 0.009838793, + -0.008065747, + -0.0051873843, + 7.5334066E-4, + 0.00883049, + 0.004201047, + 0.002740067, + -9.043622E-4, + -0.012328036, + 0.0046924357, + -0.013607528, + -0.015815174, + -0.021566203, + -0.003905955, + 0.008525407, + 0.008378195, + 0.015616177, + -0.0074719843, + -0.0052004885, + -0.0140016135, + 0.0078857755, + -0.0036423532, + 0.0016382091, + -0.012006563, + 0.014095304, + 0.021992417, + -0.009921178, + -0.0011062246, + -0.005226721, + 0.0107089095, + 0.010952998, + -0.016769597, + 0.021852074, + -0.029616794, + -0.029779635, + -0.020442815, + -0.022980211, + -0.030841202, + -0.016156884, + 0.005021216, + 0.016104717, + 0.015330881, + 0.0024666837, + 0.013466989, + -0.01179191, + -0.0139243575, + -0.0052164923, + 0.0074807275, + 0.04093304, + -0.0036240336, + -1.8920767E-4, + 0.019134572, + -0.013271302, + 0.021034336, + 0.0031303784, + -0.022861205, + 4.938259E-4, + -7.858611E-4, + -0.01252374, + -0.019946303, + -0.0013222661, + 0.012522915, + -0.004640228, + -0.024309091, + -0.02911444, + 0.007668618, + -0.024148835, + 0.030360742, + -0.011128363, + 0.012961042, + 0.008010506, + 2.8576858E-5, + -0.003178739, + -0.012675803, + 0.008640357, + 0.0113966195, + 0.009066316, + 0.007785019, + 0.0035350781, + 0.011177446, + -0.0017767021, + 0.012685236, + 0.0065078954, + -0.009053321, + 0.005782715, + 0.0025009282, + 0.007427507, + 0.021391563, + 0.02594138, + -0.0071510887, + -0.008383956, + 0.017936317, + -0.022390103, + -0.002993222, + 0.021518033, + 0.049292777, + -0.002327569, + -0.012486491, + 0.04309512, + 0.025651904, + -0.009191292, + 0.034059823, + -1.736458E-4, + -0.017759033, + 0.010738094, + 0.0073587275, + -0.0033891487, + -4.5607233E-4, + 4.9684983E-5, + -0.014741775, + -0.030284613, + -4.0964587E-4, + 0.012908179, + 0.021897102, + 0.0028491896, + -0.0068289847, + 0.014615651, + -0.0065341587, + 0.029814826, + -0.014479694, + -0.011189067, + -0.015327036, + -0.0015518806, + 0.01730452, + -0.0026290189, + 0.013113568, + 0.00779733, + 0.0032488112, + 0.0033896174, + 0.0099398205, + -0.011221201, + -0.026009014, + -0.018314617, + -0.01481751, + -0.013761053, + -0.026114412, + 0.006674028, + -0.019986508, + 0.004116479, + 0.006230266, + 0.008355267, + 0.005138082, + 0.008683582, + 0.0037252407, + 0.012969769, + 0.010575516, + 0.014742951, + 0.013131492, + 0.0033642168, + -0.035878073, + -0.0020866815, + -0.004116303, + -0.033173036, + -0.01028361, + -0.0028571314, + -0.0050086933, + -0.037467256, + -0.0075425645, + -0.0188736, + 0.03106939, + -0.009629218, + -0.014102936, + 0.0053692483, + -0.009386433, + 0.010260348, + -0.00347702, + -0.001296509, + -0.015767476, + 0.01392073, + 0.02535881, + 0.015367382, + 0.0047702375, + -0.013368787, + 0.0025335616, + 0.012285833, + 0.02007474, + 0.0076431003, + -9.561877E-4, + -0.027701506, + 0.012479458, + -0.007870533, + -0.012073337, + -0.023585506, + -0.0015462434, + -0.019224584, + 0.015826862, + -0.008323701, + -0.0047730096, + -0.010549576, + 0.015999874, + 0.007270964, + 0.024523672, + -0.0018490633, + -0.015861357, + -0.007719055, + -0.024872301, + 0.013165683, + -0.0018512355, + -0.008904606, + -0.02049175, + 0.01624101, + -0.043593947, + 0.013357555, + -2.5279436E-4, + -0.014251784, + -0.021509916, + -0.011356972, + -6.4303476E-4, + 0.009176586, + -0.010541629, + 0.011898398, + -0.011351862, + 0.010861829, + -0.0033679006, + 0.022787493, + -3.5427764E-4, + 7.616456E-4, + 0.026445562, + -0.0066022025, + -0.01600894, + -0.025323045, + 0.023183638, + 0.0014017791, + -0.016678303, + 2.33176E-4, + 0.0040913373, + -0.0052194307, + -0.0012941988, + -0.028330626, + -0.0021890393, + -0.012674809, + -0.016326461, + 0.002070015, + -5.740299E-4, + -0.017890302, + 0.009102765, + 0.020654585, + 0.005524004, + 0.028062865, + -0.008111637, + 0.01633847, + 0.03225066, + -0.0025649043, + 0.029193118, + 0.019201497, + -0.02735943, + -0.023828598, + -0.0017019169, + -0.016106404, + -0.008245471, + 0.015578571, + 8.4994605E-4, + -0.008667266, + 0.0064727133, + 0.010886756, + -0.019232238, + -0.011914926, + -0.014159026, + -6.8216986E-4, + -0.02517734, + -0.011539077, + -0.00427348, + 0.0412593, + 0.032297067, + -0.0027455378, + 0.005574063, + -0.010270962, + 0.0070170267, + 0.001627865, + -0.007104801, + -0.008391701, + 0.012742909, + -0.005960808, + 0.022027016, + 0.006573352, + -0.020265333, + -0.020335676, + 0.0275802, + -0.026893832, + 0.011289379, + -0.0022959297, + 0.0035770827, + 0.0076077455, + 0.023375763, + 0.009200952, + 0.014886436, + -0.010828242, + 0.008323599, + -0.033846222, + -0.0075160298, + -0.030662801, + -0.013393849, + 0.015342665, + -0.0058528814, + 0.0135038365, + 0.0017558107, + 0.0132366335, + -0.028864132, + -1.404036E-4, + 0.02169357, + 0.012154174, + -0.0146270385, + -0.004433882, + -0.0034632366, + -0.022552779, + -0.031586085, + 0.022936847, + 0.0016430224, + 0.0061023943, + 0.010263796, + 0.033260416, + -0.01836309, + -0.0059963833, + 0.027863398, + 0.019862134, + 0.013913039, + -0.0109508615, + 0.012772963, + -0.00785171, + 0.023506904, + 0.029298095, + -0.013314912, + -0.002259744, + -0.005284424, + -0.007546349, + -0.0070977053, + 0.011756514, + 0.0191803, + -0.006993912, + 0.004243513, + 0.024641778, + 0.012490222, + -0.020247776, + -0.003725062, + -0.020618128, + 0.010170904, + 0.01675772, + -0.0011431952, + -0.03942844, + -8.8202774E-5, + 0.0014944129, + -0.034076244, + -0.02286963, + 0.015638623, + 0.018971948, + 0.02827767, + 0.031730898, + -0.010423719, + 0.007499654, + 0.0232613, + -0.017255872, + -0.0039204466, + 0.007244035, + -0.0036563764, + -0.012807951, + 0.013688012, + 0.004333634, + 0.007880631, + 0.012316335, + 0.004990263, + 0.023107914, + 0.013914264, + -0.04079425, + 0.0017881634, + 4.909956E-4, + 0.021027913, + -0.019044492, + 0.00541323, + 0.0063354787, + -0.0032543447, + 0.034928102, + -0.009434204, + 0.0057309195, + -0.01632609, + 7.9926674E-4, + -0.018593805, + 0.012227717, + -0.010093496, + -0.025114425, + -0.025273668, + 0.0067248703, + -3.0937616E-4, + 4.207308E-4, + 0.007887582, + 0.0014809135, + 0.017271385, + -0.009326462, + -0.0032825884, + 0.009654987, + -0.010899386, + 0.01965064, + 0.005740288, + -0.016365424, + 0.0068006506, + -0.0109097175, + 0.011968136, + -0.011940724, + 0.008172558, + 0.01999922, + 0.028563846, + 0.010100294, + -0.009085396, + 0.018045252, + 0.024634646, + 0.0031874871, + 0.010263513, + 0.009542533, + 0.012130656, + -0.0096218735, + -0.023172496, + -0.0057998165, + -0.014058958, + 0.00804089, + 0.027733546, + -0.005936093, + 0.04156491, + -0.008296393, + 0.008115753, + -0.008111463, + -0.016316926, + -0.005150802, + -0.015615751, + -0.02446742, + 0.0015867392, + -0.021523796, + 0.022572355, + -0.019964887, + 0.014019848, + -0.027775703, + -3.3155193E-5, + 0.008620964, + -0.031902812, + -0.007123356, + 0.0034242289, + 0.009964418, + -0.015239421, + 0.007855176, + -0.013650104, + -0.003595141, + 0.0040563103, + 0.0017124964, + 3.5662108E-4, + 0.024151409, + 0.008561391, + -1.5322083E-4, + -0.026628038, + -4.2399432E-4, + 0.013933221, + -0.035338245, + 0.0045994786, + 0.011514076, + -0.017092437, + -0.023338469, + -0.011295485, + -0.0138689345, + -0.010159169, + 0.010529856, + 0.0076392977, + 0.036041055, + -0.026875436, + -0.011076979, + -0.010152051, + 0.021751868, + 0.004403489, + 0.01123128, + 0.014665972, + 0.009649823, + 0.031213673, + -0.012017615, + 0.016534371, + 0.0014752977, + -0.0021965948, + 0.008536218, + -0.019849291, + 0.0021836043, + 0.029260917, + 0.0055073467, + -0.0068687014, + 8.354063E-4, + -0.01631791, + -0.009937712, + 1.2040125E-4, + -0.009570096, + 0.007047088, + 2.4423518E-4, + 0.004765398, + -0.022753034, + 0.027745582, + -0.025309226, + 0.0010699254, + 0.026194556, + 0.006158426, + -0.010561796, + 0.03102394, + -0.010593033, + -0.0016832649, + 0.03378684, + 0.013993837, + 0.010504737, + 0.022701118, + -0.028567418, + -0.009560582, + -0.004929895, + -0.027051313, + -0.016181402, + 0.0016383877, + -0.0011776019, + -0.01152029, + 0.0044072135, + 0.012146303, + 0.0016889783, + -0.0051700263, + -2.140949E-5, + 0.0011591539, + -0.0061740424, + -0.0033539992, + -0.002461328, + -0.011074369, + 7.8966684E-4, + -0.0011467667, + 0.0012688913, + -0.015071709, + 0.013039531, + 0.0010994175, + 0.008647516, + 0.017808458, + -0.006072768, + -0.019133242, + 0.032533545, + 0.015933257, + -0.0124714, + 0.00124487, + 0.018532151, + 0.0029154487, + -0.009052964, + 0.004482916, + 0.010432901, + -0.01079579, + 0.0069627305, + -0.0023792977, + 0.0028622341, + 0.008673679, + -0.008765197, + -0.0018753943, + 0.002640812, + 0.0011631115, + 0.008757657, + -0.009816345, + 0.012227295, + 0.013735398, + 0.009094812, + 0.023320373, + 0.015120773, + -0.010113826, + -0.019877084, + 3.084115E-4, + -0.0011922098, + 0.009177659, + -0.018754765, + -0.0039203283, + 0.0047542676, + 0.007942792, + -0.0035344197, + 0.022200095, + -0.007396031, + -0.024583522, + 0.02632803, + -0.013840341, + -4.9178918E-5, + -0.0072811507, + -0.017689675, + 0.006307179, + 0.020512443, + -0.007096708, + 0.0083507765, + 9.6849934E-4, + 0.016561193, + 0.020537434, + 0.011045521, + -0.022808602, + 0.0048203436, + 0.0019457273, + -0.0027653123, + 8.330447E-4, + -0.011645708, + -0.00981142, + -0.027849823, + -0.017580606, + -0.0015337977, + 0.015591929, + -3.1082614E-4, + -0.01263549, + 0.005231953, + -0.0060151853, + -0.021234427, + 0.051441744, + 0.0014858979, + -0.025292933, + -0.010065609, + -0.012218445, + 0.019177077, + 0.008791756, + 0.0039180107, + 0.025543403, + 0.009513415, + 0.020743448, + 0.016756464, + 0.020633172, + -0.0117490245, + 0.028308766, + 0.026542597, + -0.009837839, + -0.026025655, + -1.9121291E-4, + 0.034815263, + -0.009220333, + -0.011715876, + -0.01037195, + -0.0095168315, + 0.011222719, + 0.0013342933, + -0.00692977, + 0.031723764, + -0.015817622, + -0.008322169, + -0.00623628, + 0.03133409, + -0.0088518495, + -0.022340847, + 0.0060952175, + -0.013109938, + 0.004787448, + 0.010966219, + -0.016159127, + -0.008656484, + 0.03512871, + 0.016068585, + 0.021003429, + -0.022831067, + -0.02312745, + -0.018718079, + -0.019431895, + -0.016722223, + 0.01230062, + 0.00934258, + 0.004082489, + 0.0021014551, + -0.028175732, + -0.03208748, + -0.0063543925, + 0.0025146601, + 7.92156E-4, + 0.005989318, + 4.7814942E-4, + 0.019747265, + 0.01865446, + 0.02746459, + 0.01293171, + 0.023876913, + -0.01598841, + 0.0040957513, + 0.0064919605, + 0.014384238, + 0.00840667, + 0.008300691, + -0.003096168, + 0.018331211, + 9.884083E-4, + 0.0034282382, + 0.007227716, + -0.0044561718, + 0.0038306804, + -0.018493753, + 0.0050343457, + 0.021851292, + -0.008729875, + 0.016721565, + 5.533315E-4, + -0.0048990888, + 0.0068744496, + 0.006650494, + 0.0052688518, + -0.021958897, + -0.0040912195, + 0.0044651716, + 0.004161946, + 0.017891152, + -0.004821212, + 0.013417099, + -0.009574124, + -0.0010104435, + 0.008609382, + -0.011549421, + 0.026326396, + 0.0043524, + 0.0059623164, + 0.022517042, + 0.0108784875, + 0.014279253, + 0.0053452547, + 0.006182257, + 9.41088E-4, + -0.0020872296, + -0.029573757, + -0.0148061095, + -0.011340765, + 0.005250095, + 0.0060904445, + -0.019916156, + -0.00526153, + 0.01166675, + -0.012056417, + -0.009776283, + 0.011284197, + 0.0025747344, + -0.010115439, + -0.0029884314, + 0.008520091, + -0.0042987126, + 0.014285297, + 0.008969127, + -0.019166708, + -0.007026597, + -0.018305363, + 0.002656365, + -0.01705167, + -0.03961369, + -0.011286655, + -0.0051012095, + 0.006473104, + -0.002088236, + -0.0029049907, + -0.0060834116, + 0.010394712, + 0.021864247, + 0.017874237, + 0.016809197, + -0.00976155, + 8.525737E-4, + -0.0038821606, + 0.0010673685, + -0.0075999685, + -0.0062513603, + 0.014571444, + -0.025007686, + 0.006869756, + 0.016676504, + 6.724327E-5, + -0.022848187, + 0.009120661, + -2.1822604E-4, + -0.009491249, + -0.003991282, + -0.0047751106, + 0.028694024, + 0.017149776, + -0.0039169765, + -0.028362518, + -0.009116038, + 0.022935815, + 0.039428048, + -0.0032924088, + 0.0022245757, + -0.017328508, + -0.009754649, + -0.010632478, + 0.012803924, + 0.004666465, + 0.00856458, + -0.015117392, + -0.0052439896, + 0.04460231, + -0.024107365, + -0.02245662, + -0.0039132177, + 0.022964468, + 0.0037489396, + 0.0055377674, + -0.0034608217, + 0.0028654633, + 0.003959399, + -0.014658591, + 0.0044712992, + 0.0014233933, + -0.036809597, + -0.011366268, + -0.016315434, + -0.023269447, + 0.017981285, + 0.003188081, + 0.005707576, + 0.008224858, + 0.018617947, + 0.03382843, + 0.005626322, + 0.023139946, + -0.00650118, + -0.010391362, + 0.028677, + 0.019999163, + -0.0034109924, + -0.021144422, + -0.011894047, + 0.005614679, + -0.019476047, + 0.012373218, + -0.010228201, + -0.04133914, + 9.806402E-4, + 0.005278862, + -0.008865204, + 0.0023267558, + 0.0037629267, + 0.0062452196, + 0.0062255003, + 0.0072891777, + 0.005061027, + 0.007987784, + -0.0149123985, + -0.0030059253, + 0.016323477, + -0.017099746, + 0.012704183, + -0.009653223, + 0.0073175686, + -0.024437971, + 0.012666969, + 0.0059969877, + 0.0053375717, + -0.04114711, + -0.026792593, + 0.010481787, + 0.007398861, + 0.027390147, + -0.012766672, + -0.009829424, + 0.03258132, + 0.012428545, + -0.007816167, + 3.9141168E-4, + 0.034675326, + -0.0059890486, + 0.0065728747, + -0.007876746, + 0.014466317, + -0.015117409, + 0.011977461, + 0.003565126, + -0.016645929, + -0.050740212, + -0.018571915, + 0.011548088, + -0.015623896, + -0.011083768, + -0.0010683725, + -0.027060904, + -0.030673807, + -0.02138983, + 0.0059989565, + -0.011055635, + 0.016536474, + 0.0044148834, + -0.012081741, + 6.022939E-4, + 0.030614445, + -0.008233564, + 0.004347744, + 0.02158752, + -9.94725E-4, + 0.0049544363, + -0.013174943, + 0.016676778, + 0.0046829022, + 0.013648915, + 0.005211058, + -0.008043534, + 0.011930682, + 0.026557516, + -0.013697128, + 0.0110548595, + -0.045538004, + 0.008449213, + -0.0022493268, + 0.006888946, + -0.0089908885, + 0.02072426, + -0.013933272, + -4.8319667E-4, + -0.027724901, + -0.005563041, + -0.008709637, + 0.004884281, + -0.013282515, + 0.0054125325, + -0.001336131, + -0.028233226, + -0.04006398, + 0.011124621, + -0.015413552, + 0.0032534734, + -0.025620464, + -0.008642882, + 0.016070476, + -0.005101742, + -0.014820981, + -0.005074978, + -0.03588876, + -0.012380156, + -0.01344258, + -0.0055425554, + -0.012719266, + 0.0065337922, + -6.4478116E-4, + 0.011242078, + -0.0055795843, + 0.022474932, + 0.009692629, + 0.009504032, + 0.00460271, + -0.007678869, + -0.0085783005, + -0.008641911, + -2.5274555E-4, + -0.008444073, + 0.002986118, + -0.01853196, + 0.0120289065, + 0.013015178, + 0.03198459, + -0.009080531, + -0.038418747, + -0.001810569, + 0.021980992, + -0.024616858, + -6.687776E-4, + -0.016578773, + -0.009970124, + 0.0015054874, + -0.01616471, + 0.01573951, + -0.017719137, + -0.023880992, + -0.020714313, + -0.046109013, + 0.03007358, + 0.0033068345, + 0.023422617, + 0.015245398, + 0.013015799, + 0.0061493795, + 0.014867806, + -0.009072084, + -0.019382218, + 0.012152844, + 0.008680269, + 0.024014786, + 0.0069867442, + 7.116959E-4, + -0.019721705, + -0.00789338, + -0.007392005, + -0.010232182, + -0.001829271, + -0.0026981074, + -0.0034346501, + -0.01328786, + -0.0013905535, + -0.012893308, + 0.011631999, + 0.0032491721, + 0.031092709, + 0.018927252, + 0.0043339175, + -0.0035880825, + 0.013626335, + -0.016762445, + -0.003478697, + -0.017593931, + 0.012526975, + -0.028605051, + -0.012878735, + 0.008036494, + -0.005278313, + 0.01163804, + 0.013301716, + -0.0113696195, + -0.008448874, + -0.002494362, + -0.0096114995, + -0.0034130313, + -0.020837624, + 0.024676403, + -0.009802769, + 0.009908735, + -0.001635707, + 0.0048334105, + -0.004265994, + -0.023261279, + -0.0074497405, + 0.01862546, + -0.022357374, + 0.017362481, + -0.014749796, + -1.8780213E-4, + 0.010026499, + 0.026192077, + -0.008991662, + 0.025756484, + 0.010845342, + 0.0018657304, + -0.0019020544, + -0.021821907, + -0.005762419, + 0.0086617805, + -0.005607112, + -0.0024440843, + 0.015699128, + 0.013944788, + -0.014007882, + -5.1315967E-4, + -0.008729609, + -0.030879673, + -0.017015126, + 0.014734838, + -0.0018890197, + 0.009626106, + 0.021034146, + -0.015302793, + 0.012962517, + 0.019791871, + -7.91362E-4, + -0.019979673, + -0.007848841, + -0.021857372, + 0.01476104, + 0.02170168, + -0.0010267762, + 0.017248731, + 0.027438955, + 0.0067295395, + -0.02433804, + -0.013489938, + 0.0014190436, + -0.021670703, + -0.013987515, + 0.001058155, + -0.0053834165, + 0.015821049, + -0.009012449, + -0.01571245, + -0.024732154, + -0.004618416, + -0.014240748, + 0.010633198, + -0.019282516, + 0.0025791163, + 0.0075316704, + 0.0037277706, + -0.025726303, + -0.034195047, + -0.0024777595, + 0.0023446328, + 4.5276407E-4, + -0.018218404, + -0.0113380095, + -0.017270962, + -0.014531198, + -0.034976482, + -0.011780363, + -0.0052997707, + -0.018144174, + 0.0112941535, + -0.014277818, + 0.010745605, + -0.012234281, + 0.002350911, + 0.00534192, + -0.0076800752, + 0.005705054, + -0.014918041, + 0.011245483, + -0.019473003, + 0.021366872, + -0.0052520335, + 0.00730483, + -0.0047078356, + 0.00599278, + 0.015598775, + 0.013170707, + 0.015910935, + 0.015843892, + 0.01370487, + 0.004048053, + -0.008023315, + 0.011597688, + 0.020270431, + -0.015391429, + 0.001924194, + -0.009005069, + 0.008478814, + 0.0139468685, + -0.0089511, + -0.0021229608, + 0.02736327, + -0.018765787, + 0.023199722, + -0.032515217, + 0.009175579, + 0.0211742, + -0.01578159, + -0.006733648, + 0.0017379494, + 0.035274476, + -0.0099565135, + -0.001923215, + -0.02729919, + 0.02860073, + 0.010582887, + 0.0122416215, + 0.004541367, + -0.007666836, + 0.0046205926, + -0.0064309034, + 0.008140321, + 4.6553885E-4, + 0.019232234, + -0.0073385797, + -0.0107020615, + -0.018551242, + 0.006019546, + 0.008866032, + 0.018999556, + 0.013770564, + 0.028834123, + 0.025042329, + -0.009275585, + -0.01240267, + -0.00419857, + -0.010625877, + -0.01471366, + -0.0046804007, + -0.0040020365, + 0.011671101, + -0.0030555709, + 0.016739625, + 0.0015699739, + 0.016571114, + 0.007231816, + -0.0026121333, + 0.007292645, + -9.094655E-4, + 1.2373542E-4, + -0.0020711143, + -0.0027697876, + -0.0025097847, + 0.018095177, + -0.013818627, + -0.0033534474, + -0.016135057, + -0.007120135, + -0.022644429, + -0.016443519, + -0.015520091, + -0.010978088, + 0.019426083, + -0.0043017007, + -0.021191891, + 0.0052359034, + 0.018474793, + 0.011045157, + 0.019408897, + -0.03691347, + 0.022513043, + 6.122879E-4, + -0.025937187, + 0.011167755, + -0.010468438, + 0.037501995, + -0.0074103116, + -0.002435724, + 0.009258399, + 0.00913547, + -0.0040429467, + 0.015858678, + -0.018243685, + -0.012872084, + -0.009272952, + -0.016459104, + 0.022360506, + 0.036174133, + -0.011821497, + 0.016414683, + -0.018511612, + 0.004341948, + 0.006038547, + 0.013176069, + -0.015445934, + 0.020520346, + -0.005497187, + 8.942058E-4, + -0.0068119853, + 0.01582921, + -0.001709645, + 0.021107797, + -0.023522886, + 0.021402147, + 0.0047021485, + 0.020463208, + 7.698416E-4, + 0.0027644054, + 0.0025485053, + 0.013424827, + 0.008689724, + -0.0142012015, + -0.035666104, + -0.016817996, + 0.031824626, + 0.003470137, + -0.023613792, + -5.999081E-4, + 0.0027343074, + -0.04269569, + 0.010267497, + -2.6914582E-4, + -0.01986306, + 0.0053502084, + -7.5973273E-4, + -0.008378821, + -0.009488157, + 0.0014660965, + 0.01339505, + -0.009368395, + 0.017484164, + -0.0041715773, + 0.02557938, + -0.012553288, + 0.022724202, + -0.012934365, + -0.010306821, + 0.012454607, + -0.0038311807, + -0.011494246, + -0.0064462894, + -0.01860934, + -0.0025144627, + 0.024104396, + -0.022381755, + -0.0040075746, + 0.003715502, + -0.008741424, + -0.003292812, + 3.4372235E-4, + -0.018287947, + 0.02743354, + 0.006673843, + 0.0075116544, + -0.014597409, + 0.008605766, + 0.023064908, + -0.0022360692, + -0.0013458428, + -0.0026636922, + 0.029571503, + 0.013832681, + -0.0021019732, + 0.0057685906, + 8.500058E-4, + -0.010039866, + 0.009304596, + -0.023960063, + 0.0067289406, + -0.011979897, + -0.026460523, + 0.0084356535, + -0.0062955744, + 0.007984653, + -0.0116537195, + -0.0010179718, + -5.7598056E-5, + -0.014617756, + 0.0064709303, + -0.015075116, + -3.1066447E-4, + -0.0120075615, + -9.169016E-5, + -0.0106346775, + -0.022099141, + -0.012484574, + -0.02637546, + -0.025189456, + 6.9017947E-4, + -0.0076280897, + -0.032493517, + -0.02028269, + -0.020346275, + -0.01474414, + -0.025819581, + -5.2129227E-4, + 0.009409607, + 0.026227416, + -0.0042353407, + 0.008244922, + -0.0062741176, + -0.03253312, + -0.030385226, + 0.019997498, + 0.011151202, + 0.033814445, + -0.002228647, + -0.017387116, + -3.075682E-4, + 0.02558487, + 0.009913347, + -0.012585968, + -0.0077873617, + -0.0029058575, + 0.001066458, + 0.040555518, + 0.014517796, + -0.0067239157, + 0.006069075, + 0.0017988784, + -0.0076259845, + 7.1661547E-4, + -0.025073417, + -0.011812485, + 0.013066266, + 0.032750297, + 0.018687224, + -0.0041650226, + -0.013728437, + -0.004118183, + -0.005377633, + -0.010021914, + -0.0060362634, + -0.011348676, + 0.012992306, + 0.029285472, + -0.013659846, + -0.011860577, + 0.0393693, + 0.0021631208, + 0.026476508, + -0.0052097114, + 0.006324722, + -0.003856962, + -0.016547028, + 0.018083109, + -0.02378824, + 0.013586778, + -0.016788349, + -0.012519966, + -0.0018548167, + -0.012279104, + -0.0015275519, + -0.0025517503, + -0.003901266, + -0.015229179, + -0.04559716, + -0.012962199, + -0.005111643, + 0.005075275, + 0.0056248736, + 0.01304798, + -0.012256232, + 0.0071290145, + -0.0033518171, + 0.016487151, + -0.004378559, + -0.009266836, + 0.0044022854, + -0.0011717152, + 0.016384255, + 0.0074239587, + 0.014811557, + 0.026837435, + -0.0011014444, + -0.0023815283, + 0.019197071, + -0.018359778, + -7.9705386E-4, + -0.0026214106, + 0.0038748255, + 0.007861391, + -0.012012797, + 0.0013431013, + -0.003595749, + -0.02888007, + -0.015139341, + -1.8565686E-4, + 0.003412947, + -0.0045808963, + -0.0065573403, + 0.014803056, + 0.006759449, + -0.020411247, + 0.004693661, + -0.011576805, + 0.0062455493, + 0.017181471, + -0.004980094, + -0.0016633783, + -0.016369883, + -0.0018778698, + -0.023724232, + 0.0051404247, + -0.001997892 ], - "paletteEmbedding": [ - 0.04499479, -0.037897654, 0.009811125, 0.0021310681, -0.024916356, - -0.018162102, -0.07278394, 0.010152399, -0.04512827, 3.9241216e-4, - -0.032920744, -0.059144907, -0.017182207, 0.0048892125, -0.010949495, - -0.012503452, 0.035292078, -0.06150353, 0.031072972, -0.013080025, - 0.008480884, -0.025379118, 0.05059429, -0.031175526, -0.037583444, - -0.008942693, -0.027492395, -0.011719308, -0.08455277, -0.07680707, - 0.032717083, -1.8723012e-4, 0.06327507, -0.024161344, -0.023678849, - -0.017869174, -0.0024375294, 0.023788322, -0.0119389435, 0.0050091385, - 0.03065667, 0.0011386685, 0.02759037, 0.029480526, 0.05635402, - -0.008542667, -0.042474102, 0.026237288, 5.704197e-4, -0.0053369575, - 0.037878875, -0.006894022, 0.06125612, -0.017168736, 0.020838676, - 0.010617009, -0.09033221, 7.9237705e-4, 0.025663724, 0.0071365284, - 0.02787801, 0.0027815572, -0.018155232, 0.03648186, 0.0040393197, - 0.043632913, 0.042079326, -0.026846893, 0.039280042, 0.0012944257, - -0.046172127, -0.010272409, -0.025264865, 5.966039e-5, -0.0015575446, - -0.020355884, 0.024161885, -0.03426207, -0.005618373, -0.02403237, - 0.013435472, 0.023856457, 0.030119915, 0.035669807, 0.022945702, - -9.4086345e-4, 0.015284949, 0.018637432, 0.0187441, 0.01832908, - -0.028911283, -0.0046688537, 0.021529486, 0.048098657, -0.009405377, - 0.019596312, -0.011128593, -0.014602775, 0.011258545, 0.023267746, - 0.0060680774, -0.03838502, -0.013745489, -0.006408567, -0.018239625, - 0.009397752, -0.03231135, 0.059641093, 0.007047517, 0.0034785538, - -0.012800019, 0.009937172, -0.007001444, -0.043146875, 0.008774849, - -0.021233292, 0.0013142059, 0.007594764, 0.021814765, 0.03405065, - 0.020061094, 0.0014665617, -0.008126063, 0.039792646, 0.006876919, - 0.038506776, -0.006416642, 0.0037158248, 0.029013267, 0.040247265, - 0.043916095, 0.026378013, 0.007262341, 0.021574914, -7.7799644e-4, - 0.02940772, 0.0062167523, -0.01470604, -0.0017153318, 0.007040625, - 0.029224873, 0.020718236, -0.008196491, 0.04558161, 0.018162696, - -0.051019978, -0.029605197, 0.04147291, -6.116958e-4, 0.023192978, - 0.091835596, -0.023482917, -0.0021179751, 0.03542932, -0.02893104, - -0.00812033, -0.006393194, -0.002838144, -0.004765351, 0.05164757, - 0.0123229865, 4.5972512e-4, 0.026492864, 0.014495528, -0.010221292, - 0.031642795, -0.002320114, -8.202323e-4, 1.7711993e-4, -0.03521052, - -0.037956476, 0.06912032, -0.004587656, -0.013169648, -0.02322933, - -0.013393842, 0.016929278, 0.052598562, -0.039899155, 0.018391356, - -0.008449806, 0.022498094, -0.028191144, 0.052668277, -0.014045119, - 0.010431402, -0.03750802, 0.078839794, 0.046477128, 0.01491488, - -0.029244399, 0.0063409787, -0.02789957, 0.042083237, 0.011037253, - 0.002745393, -0.006271437, -0.006299937, 0.033468943, 0.034029663, - -0.013681837, -0.07845586, -0.008005838, 0.0317682, -0.016534036, - 0.05184375, 0.03339953, 0.009829884, 0.010240902, -0.030605663, - 0.08513448, 0.029780885, 1.16368305e-7, -0.029810004, -0.029205004, - -0.0083554275, -0.06012721, 0.025532318, -0.01858272, 0.00938636, - -0.049927436, -0.049212486, 0.020170918, 0.008771733, -0.078660354, - -0.014058411, -0.025080204, -0.013230097, -0.04346043, 4.4329857e-4, - -0.03870183, 0.0044882223, -0.031120403, -0.030185489, 0.037150413, - -0.026784604, -0.0077552944, -0.020459764, -0.084002115, -0.0043241493, - 0.02097718, -0.021555386, -0.08839842, 0.010961, 0.018939488, - -0.0391701, -0.009775174, -0.052896503, -0.030537609, 0.019040244, - -0.027584583, 0.036341112, 0.044834055, 0.035647, -0.006816846, - 0.0016287542, -0.021690233, -0.05944389, -0.035842203, -0.015004162, - 0.032907147, -0.0065945266, 0.00838547, 0.04468065, 0.034737132, - 0.029238867, 0.038374495, -0.0070181796, -0.02242765, -0.046074912, - 0.0010171698, -0.01056476, -0.0016325089, -0.0018499476, -0.029550502, - 0.005622993, 0.049546715, -4.1165392e-4, -0.03252585, 0.03739865, - -0.024881419, -0.019568967, 0.029889738, -0.01139071, -0.059170064, - 0.058694452, -0.012790671, 0.017269759, -0.07696458, 0.020652533, - 0.007766549, 0.010320087, -1.7734654e-5, -0.035394188, -0.008062866, - -0.01246424, -0.015773833, 0.0010289717, -0.038943343, 0.036405366, - 0.012011576, -0.051444903, 0.027200803, 0.0022928445, -0.016939268, - -0.038231157, 0.0030305535, 0.040473677, 0.06311159, -0.002687098, - -0.0030077973, 9.950025e-4, 0.017710038, -0.029243132, 0.028964415, - 0.01476672, 0.013185497, 0.0084140245, -0.029979452, -0.043355413, - 0.01907974, -0.023047548, -0.019289928, -0.0017988924, -0.028729953, - 0.03651174, 8.5590815e-5, -0.013418107, 0.013074679, 0.014481989, - 6.99467e-4, -0.022457479, 0.011379932, -0.012551313, 0.013428746, - -0.008560381, 0.026017755, 0.024104316, 0.012815285, -0.008411966, - 0.041839797, 0.011939078, -0.03549875, -0.06564465, 0.03669978, - -0.02181752, 0.0077782655, -0.0020031654, 0.062205203, 0.056069944, - 0.036710896, -0.08260884, 0.024063384, -0.06862047, -0.029252784, - -0.008630947, -0.05095551, 0.044791978, 0.027492205, -0.019834101, - 0.029080201, -0.010486752, 0.029717995, -0.030268392, -0.015931282, - 0.029663993, -0.04998768, 0.0056046164, -0.031082386, 0.0036297503, - -0.031591732, 0.053120434, 0.0034711622, -0.028792052, -0.018139264, - -0.050454605, -0.008022845, -0.009703471, 0.016358875, 0.0019308387, - -0.0014543347, -0.0013022443, 0.020426093, 0.02522157, -0.0040273806, - -0.0514795, -0.004958687, 0.05034286, 0.022061897, 0.05226971, - 0.011713585, 0.011143435, 0.017942905, 0.0029760906, 0.011706126, - 0.037481092, -0.028478883, 0.0053820964, -0.0078651905, 0.04363368, - -0.03678808, -0.027649168, 0.034820266, -0.057630915, 0.022488866, - 0.056121465, -0.016401175, -0.038384162, 0.0016275123, -0.018434023, - 0.0056380616, 0.051701408, 0.036466017, -0.00518856, -0.048013598, - -0.044451807, -0.042506337, 0.019757876, -0.048328478, -0.044293668, - 0.052181236, -0.04724348, 0.070267886, -0.040103268, -0.0070831743, - 0.030624539, 0.041899398, 0.0093431305, 0.024999823, 0.0048319837, - 0.018112106, 0.05105365, -0.04519332, 0.06429786, 0.039615396, - -0.036693033, -0.045677736, 0.011545216, 0.018184885, 0.05612951, - -0.029476007, 0.023429122, 0.005939141, 0.035392467, -0.026628869, - 0.059792913, 0.008122038, 0.01695858, 0.03265302, 0.02326057, - -0.04428813, 0.039300267, -0.035444446, 0.007046063, 0.044779975, - -0.061804246, 0.012308182, 0.010311002, 0.021870194, -0.036699396, - -0.033287525, -0.041374236, 0.0657253, -0.03472674, 0.0143174315, - 0.013189522, -0.017874114, -0.0063343965, -0.012021387, -0.044614777, - 0.055384494, -0.011824917, -0.012642104, -0.017316382, -0.07148122, - 0.01737162, 0.0010817327, -0.035643063, 0.026359634, -0.03529737, - 0.017624432, 0.0049407054, 1.6436267e-4, 0.038973995, -0.0023342306, - 0.0313699, 0.026609112, 0.0038562107, -0.006243314, 0.02892817, - -0.04611955, 0.0013236938, -0.011485543, 0.022088166, -0.041853543, - 0.007860796, 0.021686722, 0.00642356, -0.031899266, -0.0029409532, - -0.06746774, -0.006690611, 0.05697049, 0.009134036, 0.024432499, - 0.039521277, 0.0015303583, 0.023219917, 0.020466663, 0.015672935, - -0.025512882, 0.0565894, 0.009843554, 0.028589917, -0.0057049505, - -0.0045454074, -0.040995464, -0.07942883, 0.02021207, 0.028782101, - -0.024267184, -3.5033867e-4, 0.06338397, -0.012319578, 0.0071572284, - 0.0058196983, -0.02795173, 0.026349915, -1.5343695e-4, -0.025278853, - 0.027750446, -6.6301145e-4, 0.026301524, -0.007222939, -0.05616846, - -0.03558714, 0.02684576, 0.008670289, -0.03827871, 0.009381583, - -0.052727636, -0.006445174, 0.011398231, 0.0021331864, 0.008596802, - 0.008654923, -0.013525246, -0.0408387, 0.04220324, 0.05133939, - 0.04726997, 0.029418295, 0.0032132296, 0.05669047, -0.013472352, - -0.05244315, -0.01331469, -0.05061954, -0.007809135, 0.05773737, - 0.0047128485, -0.00800005, -0.04539911, 0.016710656, 0.0013865612, - 0.0042453003, -0.01795286, 0.010306093, 0.012319718, 0.0707496, - 0.068644516, -0.02963265, -0.01359068, 0.0139623, 0.013050857, - -0.07235579, -0.011652806, -0.014662946, 0.03239456, 0.0032565917, - 0.043290783, -0.003755819, 0.019917559, 0.020189084, 0.033494737, - 0.030730488, -0.0073342714, 0.03340747, -0.087311745, -0.022574563, - -0.06298292, -0.030224243, 0.03389898, 0.034592524, -0.01376009, - 0.016844146, 0.007331835, 0.035445426, 0.016989527, -0.012684563, - 0.004970147, -0.07505927, -0.004964543, -0.07564907, 0.03469085, - 0.03989864, 0.031672884, -0.020085676, -0.012047076, -0.018631458, - -0.049632788, -0.012512488, -0.011215601, 0.026945708, -0.0576849, - 0.029557059, -0.031194992, 0.046409186, 0.04843852, 0.020185724, - -0.033399504, 0.017266814, 0.025079804, -0.003249238, -0.018237803, - -0.018964902, 0.051160153, -0.02225384, -0.020395355, 0.028154297, - 0.023842433, -0.0689398, -0.06287431, 0.047626376, -0.019196205, - -0.01261946, -0.018383656, 0.022234155, 0.0043177675, -0.004352534, - -0.0082212435, 0.035752296, -0.033143092, 0.005406554, 0.0030295567, - -0.005963246, -0.002316555, -0.02806182, 0.042323917, 0.02803777, - -0.035903264, -0.06406279, -0.026443953, -0.010175692, 0.0030936564, - 0.0048139906, -0.041873913, 0.026802577, 0.04857147, -0.013219947, - -0.027304137, -0.0052456814, -0.0019304355, -0.01151775, -5.122541e-4, - -0.02536125, 0.0068958616, 0.050019063, -0.0052960077, 0.054661892, - -0.01931102, -0.06883659, 0.069986746, 0.02171172, 0.02216584, - 0.028039565, 0.0147635685, 0.017348006, -0.03931994, -0.0378265, - 0.016657788, 0.016487429, 0.013121336, 0.03800186, 0.064587235, - -0.007214671, -0.02758066, 0.014138198, -0.0040701693, 0.058866173, - -0.020362778, -0.028205412, 0.0018334069, -0.01569383, 0.0039438647, - 0.0020762198, -0.033561263, 0.013140225, -0.0059006996, 0.072966404, - -0.007778722, -3.4901345e-4, -0.008233971, 0.03524449, -0.019696904, - -0.044271674, -0.023845972, 0.07366403, -0.023276335, 0.013648397, - -0.02370827, -0.04320591, -0.014453286, -0.023133673, -0.01381508, - -0.04885651, 0.019408716, -0.058810372, -0.010194085, -0.030593742, - 0.017599452, 0.048657533, 0.035076085, 0.014466803, 0.020413537, - 0.017298454, 0.004447514, 0.032902863, 0.018902728, 0.0065923515, - -0.01761126, 0.04001966, -0.0256141, 0.010442895, 0.012850599, - -0.0073224143, -0.009788991, 0.027351579, -0.018322172, -0.010010254, - 0.01631972, -0.009385321, -0.019746073, -0.020173563, 0.034741152, - -0.027256012, 0.051739633, -0.004425916, -0.010418243, 0.012183268, - -9.970169e-4, -0.027935756, 0.032114726, 0.02403946, -0.059192054, - -0.04542853, 0.02231329, 0.004909181, 0.029344002, 0.041869253, - -0.028733296, 0.028889412, -0.035753008, 0.05517813, -0.028053917, - -0.007832393, -0.022426553, -0.004736975, -9.009016e-4, 0.018507859, - 0.009194814, 0.006125363, 0.042247068, 0.0038861209, 0.06562293, - 0.031516958, -0.013675883, 0.0073691634, -0.021506274, -0.004055763, - 0.028811919, 0.012500214, 0.004258288, -0.014531129, -0.0061026374, - -0.015844105, -0.005130047, 0.028094977, 0.01866443, 0.040267896, - -0.0050062006, 0.008040513, -0.03365749, -0.0010483438, 0.024666974, - 0.022847075, 0.055633277, -0.040152874, -0.031734604, 0.023423266, - -0.012182595, -0.025867114, -0.039137356, -0.026205467, -0.005407088, - -0.021948854, -0.0026764658, 0.038775094, -0.0048990655, -0.0043300893, - 0.03836653, -0.023363559, -0.044860784, -7.510882e-4, 0.008428895, - -0.02050113, -0.004253997, 0.01997902, 0.049591873, 0.102495044, - 0.03926209, -0.018074695, 0.023618136, -0.006358842, 0.06231112, - -0.005963109, -0.0015752654, 0.036670055, -0.024123544, 0.054719854, - 0.008268492, 0.04041283, -0.03086118, 0.032390088, -0.0077210767, - -0.033709787, 0.015318669, 0.021134648, -0.049998574, 0.0122048445, - -0.0074748415, 0.019990474, 0.011631607, 0.01194087, -0.044013396, - 0.014802489, 0.025046967, 0.042491652, 0.015991978, -0.040047593, - -2.65849e-4, -0.05047288, -0.027516762, -0.020003296, -0.009445384, - -0.013594718, 0.03279333, 0.011279579, -0.020003557, 0.019606976, - -0.009503075, 0.0049212663, -0.033374313, 0.022253206, -0.023920363, - 0.01491197, -0.0073689884, 0.040998157, -0.0249875, -4.56708e-4, - -2.0101371e-4, 0.039178304, 0.04786674, -0.043800943, -0.036085613, - -0.0067019127, -0.05023609, -0.022315692, -0.08163234, 0.031221785, - -0.009756972, -0.03666058, -0.008438756, 0.060246576, -0.0025268767, - -0.032037858, -0.0029065427, 0.007648147, -0.0424748, 0.035044327, - -0.047195617, -0.036202956, 0.012931212, -0.05340351, 0.035448357, - -0.043718603, -0.08639374, -0.01766466, 0.022516869, -0.007775673, - 0.002176263, 0.037713632, 0.01841284, 0.024930313, -0.012994317, - -0.017996106, -0.031530164, -7.903039e-4, 0.0041975025, 0.043617647, - -0.025953176, -0.048737712, 0.027519394, 0.026360895, -0.02865977, - -0.025336795, -0.036251284, -0.0045736074, 0.021359203, 0.03392441, - -0.03520703, -0.008736109, 0.012073862, -0.02507383, -0.021824041, - 0.059955075, 0.015048577, -0.0057506207, -0.014210872, -0.01623481, - 0.007297968, 0.024598174, 0.005610305, -0.081544906, -0.015497339, - -0.016880307, -0.017901698, -0.0071997778, -2.2561346e-4, 0.06630097, - 0.038854446, -0.005751991, -0.021787506, -0.0037947153, -0.03429969, - 0.011568604, -0.01411907, 0.04931248, -0.020627497, -0.02035091, - 0.0010291499, -0.0048923534, -0.02199795, -0.07808675, 0.00621089, - 0.06905573, 0.05563811, 0.023139097, -0.02852369, -0.020230114, - -0.018991774, 0.015833633, 0.07226123, -0.034657974, 0.04994895, - -0.012467169, 0.013908539, -0.05910034, 0.016131219, 0.0069503714, - 0.015754078, -0.031272657, 0.021225588, -0.014211972, 0.04908108, - -0.005391469, 0.008536038, -0.00837827, -0.039801657, 0.029647248, - 0.00716165, -0.03452859, 0.022221858, 0.027980814, -0.017520824, - 0.0053945994, -0.014549964, 0.008912864, -0.024787515, 0.026429946, - 0.047678467, -0.03385232, -0.025121212, 0.04321377, -0.058492478, - -0.054346398, -0.050956063, 0.030171735, 1.8026688e-4, 0.039169732 + "paletteEmbedding" : [ + -0.022992052, + 0.05277713, + 0.034550563, + -0.039291274, + -0.031239416, + 0.011127132, + -0.0049502957, + 0.003819214, + -0.0016798695, + 0.023594685, + -0.013160237, + 0.03452276, + 0.022305144, + 0.0075567984, + -0.044717714, + -0.037152424, + 0.0486423, + -0.0045770006, + -0.07263661, + -0.04488542, + -0.056599148, + -0.07357554, + 0.0212016, + -0.017657595, + 0.013081925, + 0.04341639, + -0.0029801717, + 0.03411317, + 0.017449379, + 0.01661341, + -0.03823651, + 0.011262911, + -0.0029054014, + 0.039136317, + -0.012481793, + 0.001055109, + -0.019611267, + -0.018907556, + -0.026805509, + 0.004782845, + -0.024986386, + -0.029299296, + 0.009803961, + 0.022632426, + 0.010460282, + -0.04817746, + 0.04819792, + -0.025501683, + 0.03830407, + 0.03143118, + 0.0017563751, + 0.012301774, + -0.008253802, + 0.053088717, + 0.02920578, + -0.02135998, + -0.00992559, + -0.048021358, + -0.07563378, + 0.023361674, + 0.0091597745, + 0.020768534, + 0.008910488, + -0.041269924, + -0.023182455, + -0.010354542, + -0.080736466, + 0.017262537, + 0.0031583633, + -0.029736446, + -0.0013786885, + 0.006122572, + 0.012749805, + -0.006359731, + 0.035300724, + 0.010328423, + 0.0072394167, + 0.050598342, + 0.024302742, + -0.066616334, + 0.031006973, + 0.045983665, + 0.039301258, + -0.01612683, + 0.03091359, + -0.0470928, + -0.006422369, + 0.047859605, + -0.005785955, + -0.009638561, + -0.0034665945, + -0.029492477, + 0.014437179, + 0.033620212, + 0.010742968, + -0.0069987886, + 0.0127758365, + -0.009582893, + 0.025609342, + -0.063213535, + -0.042280927, + 0.015624758, + -0.07495391, + -0.010547567, + 0.019869208, + 0.015956376, + 0.035392452, + 0.009891429, + 0.03594186, + -0.01607789, + 0.009569537, + -0.05199739, + -0.03918541, + 0.017970951, + -0.038779162, + -0.08346592, + -0.022986945, + -0.04049097, + 0.03864858, + 0.013341413, + -0.005055696, + 0.0072549786, + -0.018352646, + -0.019676417, + 0.055077747, + -0.014612272, + -0.032472875, + -0.042175554, + -0.0017403294, + 0.041792944, + 0.020173265, + 0.004856967, + 0.02884568, + 0.037065342, + 0.037270647, + 0.020304188, + -0.023210164, + 0.052689128, + 0.027007857, + -0.039533257, + -0.035682492, + -0.03394741, + 0.003260557, + 0.016087206, + -0.04962911, + 0.0411098, + -0.009774577, + 0.026101211, + -0.0063586193, + 0.005808661, + 0.049837183, + -0.037525825, + 0.013263564, + 0.0077279927, + 0.018982299, + -0.00813131, + -0.0016286061, + 0.015319506, + -0.016774535, + -0.0561085, + 0.016018845, + 0.008087164, + -0.009842933, + 0.025361933, + -0.02678872, + 0.028318388, + -0.005723287, + -0.0014087602, + -0.019567635, + -0.028502645, + 0.005323332, + -0.02015099, + -0.030571897, + -0.060682256, + -0.0087196035, + -0.003133119, + 0.06467152, + -0.006167307, + 0.024848359, + 0.052846573, + -0.03788414, + 7.0599245E-4, + 0.0028280364, + -0.046562035, + 0.028379155, + 0.048512477, + 0.013737867, + -0.006838881, + -0.010477548, + -0.041989926, + -0.0034737864, + -0.0027909083, + 1.7510654E-4, + -0.053578325, + -0.011997849, + -0.029327149, + -0.039080776, + 0.017825337, + -0.02445347, + 0.03851993, + -0.011072276, + 0.003916238, + 0.021983612, + 0.031311717, + -0.02240567, + 0.04525951, + 0.013620854, + 0.0060740323, + -0.05685419, + -0.053604785, + 0.041912075, + -0.0023868773, + 0.051290337, + 0.032654133, + 0.015613243, + -0.01601999, + 0.05309936, + -0.003947745, + -0.02354899, + 0.019577844, + 0.039556824, + -0.016636824, + 0.018964315, + 5.911445E-4, + 0.027759023, + 0.030024016, + -0.021734389, + -0.034416866, + -0.051157393, + 0.016722864, + 0.0019822617, + 0.026648669, + -0.0044862255, + 0.012355716, + -0.02075806, + 0.05913853, + -0.031950485, + 0.0193869, + 0.086768195, + 0.004648502, + -0.04620219, + 0.09976255, + 0.0089555895, + 0.028838202, + -0.04557825, + -0.0060808514, + -0.035318833, + -0.037192855, + 0.043593552, + -0.00844331, + 0.004370954, + -0.08059321, + -0.0075388756, + 0.04222178, + -0.0012927203, + -0.037309173, + 0.04745015, + -0.0070433593, + -0.0096017495, + -0.029693957, + -0.048337635, + 0.028625807, + -0.036645465, + -0.012059071, + -0.0053682593, + 0.005283068, + 0.009256716, + 0.0064296946, + 0.04059461, + 0.04439613, + 0.015631715, + 0.02530943, + -0.057814214, + -0.043035448, + 0.0108895255, + 0.034725945, + -0.007913049, + -0.018195469, + -0.02353833, + 0.0019481713, + -0.032198235, + 0.01205826, + -0.01486997, + -0.036627106, + 2.7598435E-4, + 0.027443372, + -0.061943986, + -0.012087767, + 0.015143339, + 0.038379595, + -0.019775828, + 0.058216352, + 0.025950378, + 0.062040675, + -0.015341767, + 0.009125541, + -0.018134795, + 0.008498924, + -0.0486636, + 0.006014072, + -0.0140235415, + -0.015024191, + 0.026436208, + -0.019982612, + -0.051236052, + -0.002392122, + -0.00708871, + 0.019726718, + 0.04061601, + -0.0052724984, + -0.033736855, + -0.013558166, + 0.005781621, + 0.024603445, + 0.016110992, + 0.008631809, + 0.008434395, + -0.053080603, + -0.032411583, + 0.015856907, + -1.4551541E-4, + 0.010679475, + 0.027449343, + 0.02021581, + -0.02385461, + 0.03750862, + -0.036823623, + 0.02405918, + -0.016418258, + -0.0024746286, + -0.08797615, + -0.009531988, + -0.021751394, + -0.0072371275, + -0.034314677, + -0.0337904, + -0.011470441, + -0.030001845, + -0.0072566736, + 0.007541024, + 0.030275187, + 0.014787001, + 0.027606903, + 0.012569486, + 1.4733695E-4, + -0.0054441774, + 0.03646371, + 0.012979636, + 0.009284179, + 0.018048253, + -0.022543462, + 0.029508188, + 0.0124602, + 0.015740275, + -0.03258883, + -0.015286455, + 0.01963729, + 0.044015083, + -0.002865681, + 0.014897092, + 0.028960958, + 0.028676951, + -0.012665991, + -0.008958266, + -0.01217516, + -0.0029258365, + -0.06542555, + -0.013891232, + 0.008117669, + -0.013786605, + 0.015879553, + -0.026617445, + 0.041010577, + -0.022276493, + -0.02699715, + 0.030460492, + 0.014775948, + -8.6413487E-4, + -0.013842062, + -0.018033462, + -0.027662838, + -0.06405905, + 0.0056436504, + -0.030254833, + 0.047932237, + 0.049865488, + 0.0071512186, + 0.015544321, + 0.056785014, + -0.036080267, + -0.0031460063, + -0.031403955, + -0.0032021292, + 0.04797555, + 0.013455136, + -0.0038027344, + -0.0057146694, + 0.049365215, + 0.068749815, + 0.0018191994, + 0.04080806, + -0.0187924, + -0.0021018276, + -0.041959714, + -0.07366568, + 7.413435E-4, + 0.019114468, + -0.020655178, + 0.05338088, + 0.0089983605, + -0.052857026, + 0.037224013, + 0.03291308, + 0.013958558, + -0.026113208, + -0.018294415, + 0.02913706, + 0.047142033, + -0.007861785, + -0.03618475, + -0.026881207, + -0.08977888, + -0.05061427, + -0.032936163, + 0.04614306, + 0.034736168, + -0.039774403, + 0.010897801, + -0.037424512, + -0.029372813, + 0.01796688, + -0.016522454, + -0.041306753, + 0.013849894, + 0.04847889, + 8.276481E-4, + -0.021791112, + -0.035759013, + -0.018340688, + -0.039310705, + -0.0020649103, + -0.027438777, + 0.0051174434, + -0.0110157905, + -0.058229417, + -0.03108201, + -0.012032896, + 0.039393853, + 0.015602578, + 0.023984851, + 0.014715802, + -0.051426426, + 0.022683773, + 0.024007613, + -0.042415436, + 0.02793277, + -0.025785413, + -0.022957787, + 0.025960324, + 0.034691542, + -0.01642736, + -0.0059888354, + -0.013577796, + 0.04229074, + -0.0026179054, + -0.012022222, + 0.016875034, + 0.0075550224, + -0.058143467, + -0.0059726047, + 0.02044439, + 0.02347191, + 0.04664847, + 0.015855769, + -0.05243625, + 0.010616995, + -0.00268497, + 0.06856787, + 0.009106707, + 0.005867857, + 0.0042804554, + 0.06044878, + 0.04856502, + -0.03792414, + 0.015387784, + -0.008679593, + 0.02855897, + -0.019899722, + -0.055302363, + 0.026376845, + 0.0037518356, + 0.046029128, + 0.011981563, + -0.064068265, + 0.006039734, + 1.3766687E-4, + 0.03812524, + 0.014175268, + -0.031040758, + -0.021537846, + 0.01679849, + 0.023673799, + -7.5463695E-4, + -0.04998758, + 0.06434466, + 0.018053824, + -0.006425346, + -0.047956116, + -0.0040915264, + 0.031305514, + 0.07161316, + 0.07777264, + -0.00497027, + 0.016212499, + 0.031647045, + -0.014327297, + 0.023585087, + -0.05544211, + -0.0011459164, + -0.01384696, + 0.030393155, + -0.0016976881, + 0.01286414, + -0.018007474, + -0.022250483, + 0.0363866, + 0.028206637, + -0.013202466, + 0.0016925876, + 0.004023826, + -0.07821402, + 0.03824411, + 7.623348E-4, + 7.237637E-4, + -0.027374303, + 0.023209505, + -0.0048765307, + -0.027064815, + 0.021082392, + 0.028124055, + -0.0010626311, + 0.026772583, + 0.015305862, + -0.01844892, + -0.05074004, + 5.1716616E-4, + 0.0067294384, + 0.016125215, + 0.021140324, + 7.4317906E-4, + 0.0037212316, + 0.07155466, + 0.053666234, + 0.0050136405, + 0.038738575, + -0.0041094143, + 0.01854162, + -0.001471593, + -0.0140742725, + -0.042067375, + -0.0029963306, + 0.052461416, + 0.06618476, + 0.048926048, + 0.018089363, + 2.7283205E-4, + -0.009856027, + -0.0014851248, + 0.004090985, + -0.044423852, + 0.0024302793, + -0.013720611, + 0.011067891, + -0.045861624, + -0.016198719, + 0.003293555, + 0.00679602, + 0.049053885, + -0.006633131, + 0.01214213, + 0.036500894, + -0.0056563113, + -0.014552311, + 0.03385306, + 0.03280709, + -0.0030026578, + -0.05334735, + 0.0036499142, + -0.017947882, + 0.008428668, + 0.020180259, + -0.015563101, + 0.014304998, + -0.029300785, + -0.047577657, + 0.0036456403, + 0.020223161, + -0.0015591071, + -0.040006604, + -0.008067767, + 0.031462733, + 0.034037102, + 0.02683818, + 0.016099859, + -0.020448975, + 0.03596775, + -0.012209432, + -0.02584066, + -0.03531136, + 0.0109430645, + 0.016527958, + -0.027693996, + -0.028554665, + -0.054198835, + 0.052658524, + -0.048001602, + 0.031913593, + 0.0034245395, + 0.035410166, + 0.007925508, + -0.004388517, + 0.034712378, + 0.052495565, + -0.016195904, + 0.008396035, + -0.01062665, + -0.016878534, + 0.0060021044, + 5.098284E-4, + -0.012725818, + -0.012878604, + 0.004251081, + 0.04030693, + -0.036930025, + -0.0025299331, + 0.0214687, + 4.352522E-4, + -0.007876721, + -0.004481148, + 0.0058055595, + 0.0016151002, + -0.0138686355, + 0.049696803, + -0.029180316, + 0.018390138, + 0.015817773, + 0.038293313, + 0.0116268825, + 0.0039455234, + 0.039161835, + -0.056615595, + -0.0049099308, + 0.012398606, + -0.055145666, + -0.012190114, + -0.008614603, + 0.0065330444, + -0.016184391, + 0.048630733, + -0.0071142702, + -0.017138625, + -0.025575282, + -0.0029394727, + -0.022366386, + 0.073724754, + -0.0040652086, + 0.018463783, + 0.055682596, + 0.003006966, + -0.010239531, + -0.044228356, + -0.028690016, + 0.022803633, + -0.018370934, + 0.004741367, + 0.032879528, + -0.02148755, + 3.5309332E-4, + -0.022012234, + -0.021216393, + -0.0176307, + 0.021397106, + -0.045838065, + 0.047792472, + -0.010946716, + 0.027602872, + -2.7702967E-4, + 0.01484627, + -0.04202184, + 0.03301395, + -0.0012660818, + -0.022714244, + -0.019646855, + -0.024797406, + -0.014633026, + -0.009873793, + -0.0064546266, + -0.032218203, + 0.038754396, + 0.047549672, + -0.07509171, + 0.021328222, + -0.027127665, + 0.016233455, + 0.053551074, + 0.032987367, + 7.049776E-4, + -0.023786325, + -0.02671832, + 0.05941513, + 0.0026841187, + 0.03719691, + -0.04645536, + 0.0048156953, + 0.0041392865, + -0.0066060717, + 0.048401132, + -0.03536046, + -0.030630713, + -0.015216497, + 0.043897606, + -0.0015140892, + -0.008894153, + -0.001655532, + -0.04990435, + -0.029930228, + -0.005186182, + 0.012229852, + 0.092470065, + -0.031741433, + 0.009966817, + -0.054581642, + -0.0026228395, + 0.030072693, + -0.010812121, + -0.02139632, + -0.011297912, + -0.018029284, + 0.05560642, + 0.02162476, + -0.0025671662, + -0.009638695, + 0.05073676, + -0.008359884, + 0.012331087, + -2.9440387E-4, + -8.6177373E-4, + 0.030136028, + 0.0042764945, + -0.014792368, + 0.005090368, + -0.01300278, + 0.02806527, + -0.004244069, + -0.026212389, + 0.03486507, + 0.002924913, + 0.024048302, + 0.023195483, + -0.04482042, + -0.009184397, + 0.03571881, + -0.005762859, + -0.024109721, + 0.0017977182, + 0.011353001, + 0.030997539, + 0.005283541, + 0.0055880686, + 0.03943877, + 0.0045802547, + 0.0075213388, + -0.019660946, + 0.03389958, + -0.021593122, + -0.060613148, + -0.013910403, + 0.03224764, + 0.04345123, + -0.055496324, + 0.018689536, + 0.023064852, + 0.02975698, + -0.02289686, + 0.06373366, + -0.011817552, + -0.009250551, + -0.068922624, + -0.013788315, + 0.02249191, + 0.08470649, + 0.035096157, + 0.030787913, + -0.03870468, + -0.029394064, + 0.024665318, + -0.026299505, + -0.020844707, + 0.08148662, + 0.03001045, + -0.0011720527, + 0.019129926, + -0.04697865, + -0.03603541, + -0.06389646, + -0.053069495, + 0.0031743424, + 0.0027767355, + 0.04052723, + -0.01794793, + -0.007253762, + 0.0154473735, + -0.046918236, + -0.04026067, + 0.021071807, + -0.04785261, + -0.051977977, + 0.04037263, + 0.02133305, + 0.012685613, + 0.0094689, + 0.031257432, + -0.07185908, + 0.038161874, + 0.027410284, + 0.09474671, + 0.029811457, + 6.130299E-4, + 0.039419755, + -0.030814378, + 0.0011805261, + -0.0058418545, + 0.011300094, + -0.02642148, + 0.03767435, + -0.016079852, + 0.023285422, + 0.0024878262, + -0.0054889494, + -0.0048475508, + 0.0035669387, + 0.006978889, + 0.032139197, + 0.052668124, + 0.09222005, + -0.0133153945, + -0.018738747, + 3.5386754E-4, + -0.046769552, + -0.071513824, + -0.011179939, + 0.06044145, + 0.03555568, + 0.031844813, + -0.063478515, + 0.065696076, + 0.011337489, + 0.032775387, + 0.05788513, + -0.043781277, + -0.017845115, + 0.015968375, + 0.010231345, + 0.05669485, + -0.011561654, + 0.039891873, + 0.032117054, + 0.0069515253, + -0.026645094, + -0.052225288, + 0.007341187, + -0.02279444, + 0.013639651, + -0.0069710007, + -0.028663212, + 0.028466059, + 0.0034519688, + 0.041125808, + -0.05576689, + 0.019627193, + -0.014512858, + 0.028987164, + -0.013698096, + -0.0021237312, + 0.061275274, + -0.0939692, + -0.045312405, + 0.0060411445, + 0.031191323, + 0.0061538694, + 0.0458516, + 0.053656947, + 0.007400469, + -0.0072700805, + -0.039047576, + 0.041518148, + -0.01500304, + -0.040948756, + 0.04943195, + 0.010222853, + 0.011185136, + -0.003658839, + -0.015624308, + 0.013316427, + -0.046812046, + 0.0035859505, + 0.007106124, + -0.0087414505, + 0.041404113, + 0.0057587866, + -0.016522653, + -0.027996825, + 5.163294E-4, + -0.023387935, + -0.0389178, + 0.021863785, + 0.020951396, + -0.04038368, + 0.005304274, + -0.014862255, + -0.010177253, + 0.038163546, + -0.01154108, + 0.02225919, + 0.014192975, + -0.019873792, + -0.038347226, + 0.029387234, + -0.037012987, + 0.05473197, + 0.0030315856, + -0.04685724, + 0.018823551, + 0.002236567, + -0.058149043, + 0.026088377, + 0.023838483, + -0.03312376, + 0.052134953, + 0.02038229, + -0.025317661, + 0.016734222, + 0.004303195, + 0.034076955, + -0.04934322, + 0.03169633, + 0.03098997, + 0.011627297, + -0.046305217, + 0.020435624, + 0.001977659, + 0.009137365, + 0.03990151, + 5.087821E-4, + -0.0060064546, + -0.07377441, + -0.048449017, + -0.004594351, + -0.028365765, + 0.0059803734, + -0.031077301, + -0.041780367, + -0.02230034, + -0.030848097, + -0.022080682, + -0.015936559, + -0.0038605032, + -0.016552648, + -0.071809486, + -0.026879044, + 0.0045606103, + 0.0011535838, + 0.049760934, + 0.032618716, + 0.045529686, + -0.055844013, + 7.684092E-4, + -0.034185614, + 0.021393854, + 0.0037510507, + 0.041980732, + 0.005224469, + -0.044994395, + 0.023557516, + 0.02209156, + -0.069583334, + 0.0055752583, + -0.006049461, + -0.047513265, + 0.007355709, + -0.020876268, + -0.013674011, + 0.003504083, + 0.029199341, + 0.02075404, + 0.02505168, + -0.025318353, + 0.02572665, + 0.019401414, + -0.052811198 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.everything.json b/common/search/src/test/resources/test_documents/images.everything.json index e13786bd7..e006d3d48 100644 --- a/common/search/src/test/resources/test_documents/images.everything.json +++ b/common/search/src/test/resources/test_documents/images.everything.json @@ -1,1428 +1,5341 @@ { - "description": "an image with every include", - "createdAt": "2023-11-21T14:25:44.094621Z", - "id": "wp52vobn", - "document": { - "modifiedTime": "1959-06-25T19:38:02Z", - "display": { - "id": "wp52vobn", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image with every include", + "createdAt" : "2024-11-14T14:37:56.485860Z", + "id" : "b25is1mw", + "document" : { + "modifiedTime" : "1943-09-17T11:31:58Z", + "display" : { + "id" : "b25is1mw", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json", - "linkText": "Link text: eAFmnmhjx", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json", - "linkText": "Link text: eAFmnmhjx", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#658BB7", - "source": { - "id": "vsc5ou3g", - "title": "Apple agitator", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "source" : { + "id" : "dqxovw56", + "title" : "Apple agitator", + "contributors" : [ { - "agent": { - "label": "Adrian Aardvark", - "type": "Person" + "agent" : { + "label" : "Adrian Aardvark", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "Beatrice Buffalo", - "type": "Person" + "agent" : { + "label" : "Beatrice Buffalo", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [ + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" }, { - "id": "tur", - "label": "Turkish", - "type": "Language" + "id" : "tur", + "label" : "Turkish", + "type" : "Language" } ], - "genres": [ + "genres" : [ { - "label": "Crumbly cabbages", - "concepts": [ + "label" : "Crumbly cabbages", + "concepts" : [ { - "id": "lhv6fymm", - "label": "x54TII0VPSaRa8w", - "type": "Genre" + "id" : "lejca71h", + "label" : "ugoW7DPjY7eEyUr", + "type" : "Genre" }, { - "id": "eqakv68w", - "label": "w83ptb24Wdf0ffp", - "type": "Concept" + "id" : "wmf04cfl", + "label" : "9VrODZy7KkifsFe", + "type" : "Concept" }, { - "id": "gkwupx3s", - "label": "0EIxNCtDqaYGQtY", - "type": "Concept" + "id" : "aepyhklp", + "label" : "rYYrQmMYtpbz1Al", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "Deadly durians", - "concepts": [ + "label" : "Deadly durians", + "concepts" : [ { - "id": "f6d8tqxf", - "label": "uWYjSoLFdpcpari", - "type": "Genre" + "id" : "lksf0yuj", + "label" : "706t7mv7kanMOW5", + "type" : "Genre" }, { - "id": "1vp6bsrx", - "label": "2Ag1y5HSMCthkMG", - "type": "Concept" + "id" : "ywn40rop", + "label" : "VMoAMmioWNbDYqh", + "type" : "Concept" }, { - "id": "s3wjtkzh", - "label": "kxmCLMBG67iDCYg", - "type": "Concept" + "id" : "gxjzwfd7", + "label" : "1lbnmi1f4IMuqCy", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "subjects": [], - "type": "Work" + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "wp52vobn", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Adrian Aardvark", "Beatrice Buffalo"], - "description": null, - "edition": null, - "genres.concepts.label": [ - "x54TII0VPSaRa8w", - "w83ptb24Wdf0ffp", - "0EIxNCtDqaYGQtY", - "uWYjSoLFdpcpari", - "2Ag1y5HSMCthkMG", - "kxmCLMBG67iDCYg" + "query" : { + "id" : "b25is1mw", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Adrian Aardvark", + "Beatrice Buffalo" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "ugoW7DPjY7eEyUr", + "9VrODZy7KkifsFe", + "rYYrQmMYtpbz1Al", + "706t7mv7kanMOW5", + "VMoAMmioWNbDYqh", + "1lbnmi1f4IMuqCy" + ], + "id" : "dqxovw56", + "sourceIdentifier.value" : "XIR7wFyImk", + "identifiers.value" : [ + "XIR7wFyImk" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English", + "Turkish" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ ], - "id": "vsc5ou3g", - "sourceIdentifier.value": "fLgO3sF2ol", - "identifiers.value": ["fLgO3sF2ol"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English", "Turkish"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Apple agitator" + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Apple agitator" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"Adrian Aardvark\",\"type\":\"Person\"}", "{\"label\":\"Beatrice Buffalo\",\"type\":\"Person\"}" ], - "source.genres.label": [ + "source.genres.label" : [ "{\"label\":\"Crumbly cabbages\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Deadly durians\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label": [] + "source.subjects.label" : [ + ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [ + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ "Adrian Aardvark", "Beatrice Buffalo" ], - "source.genres.label": ["Crumbly cabbages", "Deadly durians"], - "source.genres.concepts.id": ["lhv6fymm", "f6d8tqxf"], - "source.subjects.label": [], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.014772245, 0.011691398, -0.011147882, -0.00740241, 0.008886819, - 0.004588361, -0.016218834, -0.0029944358, 0.02230025, 0.0150387185, - 0.0041591967, 7.552267e-4, 0.0069595817, 0.004587762, -0.01385977, - -0.005458129, -0.018935464, -0.0021699707, 0.016319877, -0.002927258, - -0.041844156, 0.020579843, 0.01851284, 0.026636932, 0.008782446, - -0.016424663, 0.0036092033, -0.004375247, -0.025233878, 0.026413545, - 0.011427904, -0.007360614, -0.015424113, 3.6923948e-4, -0.009903682, - 0.0075957472, -0.005492313, -0.0032413292, -0.0017360774, -5.6816183e-4, - -0.011581727, -0.010876736, 0.006981826, -0.0038663421, 0.02524516, - -0.013117209, -0.016743425, -0.007835514, -0.023822647, 0.009840934, - 0.007017152, -0.0030271458, 0.006185478, -0.0011013902, -0.013997535, - 0.0041878973, -0.029481765, 0.001196067, 0.013166006, 0.0017813416, - -0.023920508, -0.0024232743, -0.0042651347, -0.0073236492, -0.016974898, - -0.009619055, -0.017170675, -3.685147e-4, 0.01519764, 0.023225602, - 0.006050198, -0.0073485645, 0.026598066, 0.005554568, -0.004293326, - -0.007259632, 0.022067538, 0.009815178, 0.024484627, 0.030407203, - -0.0110208355, -0.0058638155, 0.037114672, 0.00842794, 0.0232952, - 0.011988338, -0.008774381, 0.020019377, 0.0039650984, -0.022730282, - 0.019327357, 0.0034094295, 0.010161876, -0.010022654, -0.025172465, - 5.887494e-4, 0.008441797, -0.0024919924, -0.016568588, -0.025481591, - 0.014260518, -0.006863836, 0.0048483713, 0.010044316, -0.028782189, - 0.004613903, -0.0019083474, -0.00808856, -0.0065736505, 0.0052274643, - -0.008026429, -0.019876726, 0.013895969, 0.018320147, 0.003848451, - -0.0074378005, 0.005270741, 0.017679067, 0.023767551, 0.01176542, - -0.020306144, 0.027319765, -0.0032097476, 0.008826036, 0.0011434645, - -4.3701477e-4, 0.009867286, 0.015057992, 0.0031492163, -0.0033446208, - 0.023954961, 0.005608904, 0.016773747, -0.03551791, 0.019874698, - 0.0030432662, 0.017142715, 0.0017975077, 0.0075328005, 0.0012146949, - 0.0038573688, -0.0016414751, -0.014439316, -0.0076136943, -0.005595356, - -0.007876751, -0.0025717746, 0.0049330527, 0.006556602, -0.015129219, - 0.012015153, 0.008530792, -0.009686254, 0.043110464, -0.0053317132, - 0.007793423, 0.00482426, 0.008763237, 0.010411783, 0.00956126, - -0.017550066, -0.0025122887, -0.021569174, 0.010597371, -0.0010907367, - 0.01686781, 0.028187387, 0.017326253, 0.004813055, 0.003038278, - 0.0066981334, 0.03976376, 0.00924087, 0.006273125, -0.022431053, - 0.015804721, -0.017468391, -0.009229379, -0.014506079, 0.012022502, - 0.03031234, -0.006765059, -4.0612336e-5, -0.013746045, 0.030869141, - 0.015632235, -0.007881352, 0.018278774, -0.00667361, -0.0070710536, - -0.00874302, 0.0010233251, -0.012343637, 0.018635727, 0.0078090993, - 0.009559694, -0.0060354443, -0.016145073, 0.009290086, -0.030745039, - 0.005789005, -0.018057797, -0.025742281, -0.004469073, 0.025414534, - 0.0019162341, 0.0166571, -0.0028713353, -0.024948055, 0.0202352, - 0.0041271937, -0.047196932, 0.0028955447, 0.00972677, 0.007244483, - 0.03390285, 0.013049106, -0.0188862, 0.008945161, -0.016077401, - 0.008533836, -0.018252075, 0.02248128, -0.004601679, -0.011071821, - -0.009063044, 0.010130994, 0.0018895478, -0.010927079, -0.012914467, - 0.01629401, -0.009165147, -1.6134777e-4, 0.012938669, -0.010129569, - 0.004958823, -0.014584198, -0.019530874, 1.672066e-4, 0.026329083, - -0.0017108686, 0.0052981074, -0.014148421, -0.0036082424, -0.010799423, - 0.0017275494, 0.0019876035, 0.023170425, 0.0013142794, 0.0135320565, - 0.028891223, -0.021223241, 0.015453777, 0.031770144, -0.003216619, - -0.009359403, -0.017601572, -0.0155503405, -1.7598945e-4, 0.019338341, - -0.0109890355, -0.007972846, -0.00571929, -0.001478913, -0.005415501, - 0.0042296275, -0.029102528, -0.011859535, -0.013919235, -0.01267373, - 0.010896795, -0.007939878, -0.00675997, -0.005213444, 0.002735159, - 0.0010565046, -0.0031349205, 0.0019919733, 0.00974916, -0.018607236, - 0.01919845, 0.0061814943, 0.005407281, 0.00839771, -0.010652639, - 0.014910135, 0.0046783136, 0.0095499, -7.1600574e-5, 0.0067353356, - -0.0131317815, 0.002042047, 0.008170612, 0.015613111, -0.0029570563, - -0.02334903, -0.0053895195, -0.010212752, -0.0030533907, -0.014845941, - -0.0025472487, 0.0041908002, 0.006107157, 0.0013970373, 0.018430034, - 0.0034122895, -0.006213468, -0.0053456402, -0.012993865, 0.011944963, - 0.019192783, -0.0032494368, -0.0065383716, -0.019483777, -0.00637658, - 0.014909259, -0.022913897, -0.011197214, 0.00578899, -0.012322922, - 0.013114805, -0.0034000026, -0.0042997743, 0.021234998, 0.027338352, - 0.02560349, 0.031488106, -0.02612201, 0.005180102, 8.183578e-4, - -0.0055169794, 1.0781569e-4, 0.015690764, 0.009392772, -0.01101754, - -0.007338716, 0.01278118, 0.00406465, -0.0073748366, -0.008531883, - -0.0019610708, -0.023007005, -0.006906312, 0.013515118, -0.02215181, - 0.032459468, 0.0037363097, 1.5603747e-4, 0.0023124085, 0.008769119, - 0.0035169518, -0.019955464, -0.005256165, 0.010486424, 0.006079407, - -5.1409117e-4, -0.014782851, 0.008313365, 0.015827136, -0.008062517, - 0.00802803, -0.019768719, 9.271264e-4, -0.018182738, -0.013497786, - -0.04091876, 0.007128191, 0.0063864174, -0.007168765, -0.0054556164, - -3.4696123e-4, 0.010211456, 0.010179638, 0.017227914, 0.013762665, - 0.008844887, 0.022023004, 0.018530557, 0.009295882, -0.027031524, - -0.017204942, 0.022153063, -0.0021120303, -0.006566326, 0.037251662, - -0.0015171125, 0.025494413, 0.007268092, -0.03054605, -0.0279148, - 0.024277607, 0.017300818, -0.009843162, -0.0070043895, -0.008836813, - -0.011394766, -0.011760809, 0.011938032, -0.008402434, -0.0359208, - -0.039298177, 0.016999384, 0.0034865225, -0.0015056605, 0.0062456955, - -0.009455511, -0.008839568, -0.04111219, -0.048948843, -0.018288407, - 0.010991639, 0.01019791, -0.0064958306, -0.0034837213, -0.002654821, - 0.012047618, 0.010814256, -0.04377115, -0.002530387, -0.011645781, - 0.010980101, 0.008448889, 6.647056e-4, -0.015491879, -0.0012522858, - 0.012652387, 0.005041078, -0.010273891, -0.019702923, 0.01587276, - 9.026632e-4, -7.492298e-5, -0.02396616, -0.005727604, -0.0034845697, - 0.01533805, -0.018098207, -0.013783239, -0.0022438415, 0.007764384, - -0.0032301326, -0.02016414, -0.0031609563, 0.009427889, -0.0068745944, - -0.0058424454, -0.010718219, 0.0019391837, -0.0432725, -0.0028182263, - 0.017122054, -2.619346e-5, 0.0051738652, -0.0047176694, 0.018562358, - 8.106498e-4, -0.01021708, -0.035694554, 0.014162349, 0.0030149089, - -0.009644796, -0.0071850275, 0.043745745, 0.0055479575, 0.0063818404, - -0.013263672, 0.021313822, -0.045190454, 0.004616362, 0.0012869742, - 0.030589256, 0.0019601476, 0.0095832, -0.016320104, -0.009317419, - 0.006996031, -0.013536946, -0.0034846668, -0.014475561, 0.020780088, - -0.009924294, 0.0069047934, -0.015205446, -6.796537e-4, 0.0022863909, - 0.010409055, -0.024505425, -0.006998017, -0.013767844, -0.016671147, - -0.014875267, 0.009857243, 0.037065815, -0.012200906, 0.013966611, - -0.0053327605, 0.0060413713, 0.012367563, 0.01533236, -0.0013167937, - -2.2234174e-4, -0.0045663533, -0.0022549524, 0.031261645, 0.021576844, - -0.025456985, 0.025351483, 0.026076933, -0.01778952, 0.025025254, - 0.018028706, -0.01900251, 0.012034796, 0.015088889, 9.091051e-5, - -0.004980493, 0.025161972, -0.01613788, 0.043289475, -0.020517262, - -0.013565084, 0.018257318, -0.007289499, -0.015098356, -0.017797504, - -0.009681096, -0.0025928817, -0.021280644, 0.0022643707, -0.022222089, - -0.0045465543, 0.010255548, -0.044968635, -0.011642548, -0.020128157, - -0.02315202, -4.280186e-4, 0.0011340816, 0.020000188, -0.0023772747, - 0.01839878, 0.005941262, -0.010289409, 0.017234538, -0.015638724, - -0.0087404875, 0.016605804, 0.010650593, 0.006016291, -0.02727137, - 0.0077337837, 0.026063766, -0.0055327294, -0.001329436, -0.014763653, - -0.0010828667, 0.011119522, -0.0030513764, -0.0023387026, -0.0049307505, - 0.02012477, 0.056370202, -0.02042801, -0.03981314, 0.027280983, - 0.011855515, 0.02325698, 0.023120668, -0.029370038, -0.01778406, - 0.016170084, 0.007019489, -0.0032579415, -0.005744983, -0.013299377, - 0.007568682, 0.020840092, 4.8813967e-5, -0.0046581933, 0.026542682, - 0.0032231405, -7.411345e-4, 0.01838945, -0.02455006, 0.0014669715, - -0.01616583, -0.0071604974, -1.6128253e-4, -0.0024066113, 0.019665211, - -0.0036708468, -0.01838215, -0.009949721, 0.013717349, -1.6684142e-4, - 0.017779756, 0.025866516, 0.016445847, -4.5844962e-4, -0.027076941, - 0.0039724642, -0.049505647, -0.0024616325, 0.013560599, 0.0026870721, - -0.045997646, -0.0062711015, 0.022089697, 0.0136141535, -0.002092479, - 0.004908612, -0.027263178, -0.020977223, 0.014071547, 0.011982737, - 0.01858881, 0.035619732, 0.010482684, 0.0021208043, -0.042173576, - 5.6192304e-5, -0.0035650844, 0.01972376, -0.016061544, -0.019081507, - -0.0066156904, 0.017320737, 0.017121144, 0.021723205, -0.022740897, - 0.005646189, 0.013210454, -0.0129091535, 0.03786019, -0.0021247861, - -0.0034902757, -0.03476732, -0.022123588, -0.022356141, 0.0021015634, - -0.010337319, 0.007655911, -0.022604654, 0.008418358, -0.014881551, - -0.0012477174, 0.0062291855, -0.0018115792, -0.026060686, -0.0112536065, - 0.016833942, -0.0055370014, 0.003497764, 0.011843116, -0.0029632517, - -0.028007569, -5.429895e-4, 0.029316558, -0.0015023828, 0.014945157, - -0.01926503, 0.0068878247, -0.01472054, 0.023582576, 0.036001116, - 0.0077486658, -0.012216363, 0.018049365, 0.0073278616, -0.017287023, - 0.010493428, 0.024992138, 0.03503976, -4.3047118e-4, -0.014443448, - 0.002718574, -0.020940226, 0.0054834494, 0.0016498086, 0.008683817, - 0.008987051, -0.01974704, 5.098044e-4, 0.0056107724, -0.017965442, - 0.0145603055, 0.018288715, -0.01011018, -0.015689807, -0.026811514, - 0.019754037, 0.011799568, 0.018617567, -0.016110573, 0.009148181, - 0.0127722565, -0.031113531, 0.013501397, -0.018220233, -7.3381246e-4, - 0.009405414, 0.003174786, 0.02736896, 0.015821356, -0.0019569308, - 0.012969804, -0.0120119825, 0.020276025, 0.0051623024, 0.0016245832, - -0.018750468, 0.0013807979, 0.0061633615, -0.028711878, -0.028465891, - 0.002015448, -0.014628403, -8.6899207e-4, 0.0016271548, -0.013003979, - -0.00463107, 0.010835738, 0.0103227105, 0.021421783, -0.011413806, - -0.013073493, -0.037703723, 0.012650691, 0.036216345, 0.01575481, - -4.5149823e-6, -0.006657355, 0.004727583, 0.010019596, -0.0014444494, - 0.017430253, 0.0073038223, -0.0045862813, -0.012243809, -0.015620581, - -0.012577278, 0.026089514, 0.003485083, -0.018714482, -0.020778751, - 0.014122327, -0.009268235, 0.022114113, 0.01543055, -0.0173432, - 0.0017400637, 0.0050425595, -0.0035996393, 0.02125562, 8.172789e-4, - 0.00790028, -2.1718713e-6, -0.005173644, 0.030450003, 0.006523244, - -0.026618104, 0.0022208418, 0.025499105, -0.021272128, 0.0048951143, - -0.0030157794, -0.0119513115, -0.0059465603, -0.0028286236, - -0.012529406, -0.022367029, 4.0805133e-4, 0.0128125725, 0.028206332, - -0.006361841, -0.030653099, 0.034538362, 0.0025613, 0.012840131, - 0.013688897, -0.012633744, 8.4723864e-4, 0.028410101, -0.005990919, - 0.004254702, 0.010648602, -0.0030898063, -0.01322928, 0.005109804, - 0.0059814816, -0.006919579, -0.0056513436, 0.03256762, -0.008888523, - -0.019329647, 0.021051636, -0.011996466, 0.018273449, -0.004500593, - 0.014383086, 4.961145e-4, -0.008809257, 0.018113108, -0.0048079533, - -0.005327449, -0.024141015, -0.0145898415, 0.003395182, 0.005078314, - 3.4943645e-5, -0.0074767256, 0.00591085, -0.003333175, 0.022887804, - 0.025789838, -0.023866674, -1.1313634e-4, 0.01181664, 0.013497416, - 0.0034643526, 0.016894005, 0.018706616, -0.0035356514, 0.010841307, - -0.013455449, -0.027012905, -0.0035498312, 0.015033395, 0.02228408, - -0.0153864855, -0.016990365, -0.02003919, 0.0076785698, 0.022065477, - 0.0012911281, -0.021970812, 0.014216808, 0.015569887, 0.0014043837, - 0.037438355, 0.014411863, 0.014593901, 0.0032684773, -0.019843085, - 0.010340586, 0.017546756, -0.012555747, 0.0078033214, -0.0076957727, - -0.013704053, 0.014240065, -0.019172173, -0.01651031, -0.010768098, - -0.0026407875, -9.725653e-4, 0.0076702414, -0.02190208, -0.0011940065, - 0.0056402646, -0.019698031, 0.0035329761, 0.01680448, 0.015768416, - 0.017120274, 9.486194e-5, -0.01899288, -0.028204521, -0.0028530143, - 0.032655526, 0.011490699, 0.027969766, -0.0038734046, 0.0050714654, - 0.020837376, 0.010798562, 0.050474774, -0.01924803, 0.012550023, - -0.010841539, -0.034851942, -0.0031294273, -0.0084972195, 0.0106362775, - 0.002496894, -0.016400522, 0.015063447, 0.015717883, -0.00868362, - -0.006287044, 0.00446847, -0.0020575677, 0.018481229, -0.024146684, - 0.011095614, -7.968622e-4, 0.0029383923, -0.011837567, 0.027688794, - 0.018263651, -0.013755699, -0.013334727, 0.013268616, 0.00242808, - -0.01568991, 0.012570743, 0.00641006, 0.009617439, 0.011175739, - -0.0041091084, 0.026977759, -0.008275281, -0.03274187, 0.013801386, - -0.01848555, -0.030516574, -0.03896222, 0.0032002535, -0.0068500107, - 0.0033758346, 0.015179122, 0.013763721, -0.0077833426, 0.023696495, - 0.0051133903, 0.035759754, 0.014872389, 0.0010460846, 0.00566279, - -0.014383215, 0.022411821, 0.017238516, 0.0024304434, -0.017744817, - 5.6390225e-5, 0.018560488, 0.004214373, -0.0025117686, -0.005928769, - 0.011813606, -0.032445036, 0.007957964, 0.015925262, -0.013752221, - 0.01012475, 0.0015443705, 0.038080137, 0.026222194, -0.021858502, - -0.013586519, -1.08608016e-4, 0.019116666, -0.002583491, -0.0051777833, - 0.013865694, -0.028033152, -0.015762901, 0.0023436686, -0.019257467, - 0.011248638, 0.021383977, 0.02223202, 0.0062774955, -0.011748233, - 0.022611743, -0.0076201065, 0.009863079, 0.014686443, -0.008957861, - 0.0076921433, 0.0074634785, 0.0038869805, 0.025981788, -0.011391475, - -0.014729153, -0.019973118, 0.022586241, 0.014907218, 0.014891767, - 0.024072424, -0.018113429, 5.924106e-4, 0.02533239, 0.036065593, - -9.353942e-4, -0.004536332, -0.010954391, 0.009094465, -0.035590496, - 0.005350367, -0.00421776, 0.010999349, 0.024501735, 0.0032604996, - -5.8520626e-4, 0.0031077452, 0.020228326, -0.0034624045, -0.02067439, - -0.0072840867, -0.0053812345, 0.013626824, -0.016101701, -0.005392898, - 0.012298406, -3.1189258e-5, 0.00905127, -0.0036291739, -0.014149348, - 0.014526604, 0.0065564383, -0.02068298, -0.0027181667, -0.0059655434, - 0.015288028, 0.019969346, 0.018767994, 0.0029538202, 0.014225586, - 0.0075470535, -0.028444994, -0.0037401044, 0.018548762, 0.0023938501, - -9.980346e-4, -0.0039275507, 0.006696517, 0.006775302, 0.021529794, - 0.009385345, -0.017929565, 0.011783519, 0.03190727, 0.0020189483, - 0.020221768, 0.0069899624, -0.012944332, -0.0097878985, 0.009829423, - -0.008589562, -0.024485884, -0.009174375, -0.026202673, -0.01426919, - 0.017458558, 7.4372516e-4, 0.0036149495, -0.0024107322, 0.0019305039, - -0.02665026, 0.007916537, 0.03191915, -0.0067582894, -0.0016846257, - 0.009461877, -0.022587888, -0.005819291, 0.009850012, 0.0031778503, - 0.024897061, -0.0017192432, 0.016977241, -0.0025800571, -0.008200165, - -0.020386253, 0.010010399, 0.026234087, -0.010980848, 0.0028762375, - -0.011158596, 0.0049215956, 0.004346174, -0.018960752, -0.0015225786, - -0.002094508, 0.0158241, 0.00884075, -0.016110845, 0.00608877, - -0.009499933, 0.0016476677, -0.031216059, -0.017722191, 0.004108922, - -0.0069588874, -0.026493808, -0.010833088, -0.0051072403, -0.007984707, - -0.021193841, 0.0013008704, 0.009565751, -0.021289773, -0.034060746, - -0.02995602, 0.014712928, -0.0058740526, -0.0017763389, 0.009022601, - -0.006769429, -0.014958994, -0.0017599654, 0.013103291, -0.011927808, - -0.02271589, 0.010953097, 0.0035781304, -0.025011178, 0.017779239, - 8.253549e-4, -0.0055937283, 0.0019063725, 0.010543037, 0.0014301216, - 0.017643062, 0.024654841, -0.0065514883, 6.280361e-5, -0.006572046, - -0.0013394089, -0.022518037, -0.023958152, -0.022152416, 0.010429105, - -0.0058877408, 4.8728823e-4, 0.013668952, -0.02450285, 0.001762506, - -0.011556813, 0.003523669, 0.0050708978, 0.012153054, 0.02126771, - 0.0016737559, 0.028284537, 0.013754394, -0.01669863, -0.015201601, - 0.02633691, -0.026531301, 0.0023348976, 0.0019684883, 0.0168703, - -5.86724e-4, 0.0066364557, 0.013275061, 0.0057929116, 0.01891796, - 0.01408469, -0.0037377411, -0.012445599, -0.02095065, -0.015945503, - 0.0036209198, -0.0062503237, -0.035585828, -0.018319907, -0.010409776, - -0.009467603, 0.0068864827, 0.0056169084, -0.020632781, 0.022801919, - -0.013239611, -0.022334736, 0.010915697, -0.020624636, 0.03650401, - -0.0041403025, 0.01723747, 0.009613714, 0.024962474, -0.013999675, - 0.0036683052, 0.008311057, 0.015728923, 0.0033529336, 0.028986627, - -0.011772601, -0.007420474, 8.979038e-4, -0.028261727, -0.008941342, - 0.0017473527, 0.012655829, -0.008859887, -0.020623425, -0.002223172, - 0.013407348, -0.0026263967, 0.024175225, -0.02621791, -0.0062191747, - -0.020822333, 0.0063454695, 0.01913947, -0.01401908, 0.0055874614, - -0.011842813, -0.005220356, 0.008327817, -0.0018608953, 0.022371948, - -0.047033045, -0.04380413, -0.01934063, 0.014973333, 0.028684428, - -0.021733727, -0.024786884, -0.015263715, -0.0146400975, -0.013446178, - 0.018540105, 0.013601647, -0.01981548, 0.002815343, -0.0026828705, - 0.019618517, 0.01021506, -0.024906263, -0.018286522, 0.007836976, - 0.005288704, 0.0010946044, -0.01928648, 0.013511219, 0.010547684, - -0.010877486, 0.0076063457, -0.009731015, 9.5345825e-4, 4.6497158e-4, - 0.003843708, 0.011832011, -0.003805737, -0.021400081, -0.002243035, - -0.03474383, 0.006293013, 0.03335059, 0.014460255, 0.0021539328, - 0.014951705, -0.009478502, -0.015558111, 0.005687767, -0.008528697, - -0.02576695, -0.008845319, -0.0021512443, 0.0019407904, -0.014989937, - -0.009728925, 0.0031245463, -0.02005298, -0.012727561, -0.0013212779, - 0.004064089, -0.013735877, -0.020944381, 0.008408846, 0.004004123, - -0.008243775, 0.0028852436, -0.012095959, 0.0075229127, 0.006347123, - -0.01274966, -0.022414675, 0.010889117, -0.032544643, 0.007599912, - -0.004804228, -0.01569742, -0.016721841, 0.0049682437, -0.035533424, - -0.015812175, -0.016012581, 0.012578831, -0.016114796, -0.023512373, - 0.00422963, -0.014916034, 0.017822638, 0.01155468, -0.007145065, - -0.015438468, -0.017325452, 0.016968368, -0.008516549, -0.007851215, - -0.012563668, 0.0046753776, 0.021879196, 0.0029435633, 0.0054980866, - -0.0020502873, 0.006380654, 0.011796061, 0.0038550582, -0.007721024, - -0.006674751, -0.008651603, 0.015541956, -0.011908687, -0.0052435477, - -0.02242723, -0.016269647, -0.015328378, -0.025376229, -0.023860969, - 0.004101526, 0.010906827, 0.014127493, 0.024827711, -0.029643184, - 0.00980439, 0.0017085496, 0.005943268, -0.016471302, 0.027127858, - -0.0045791194, 0.01025278, 0.006657209, -0.004072737, 0.010441288, - -0.027171932, -0.007344101, 0.011663956, 0.004300502, -0.022209967, - 0.007371268, -0.029706823, -0.016658045, -0.01679954, -0.0042995703, - 0.0014936914, -0.0034656636, -0.014376608, 0.010225127, -0.009332247, - -0.004066901, -0.013859569, -0.027606348, 0.0101377815, 0.032791264, - 0.006034578, -0.0033611062, 0.027543312, 0.006153661, -0.009003806, - 0.017018707, 0.0014588856, 0.010330802, 0.006208849, 0.0014344358, - -0.008809694, -4.7158846e-4, -0.006459922, 0.004940065, 0.009933802, - -0.0058994633, 0.0044454955, 0.012741468, 0.0076336535, -0.008539808, - 0.018605534, -0.0094787795, -0.03198139, 0.011220302, -0.009649671, - -0.009361566, 0.003080864, -9.852697e-4, -0.006610701, -0.014019052, - 0.010091416, -0.010239863, 0.011267098, -0.0040395856, 0.035226166, - 0.003033512, -0.0231462, 0.0076872357, 0.018686678, 0.010957924, - -2.695631e-4, 0.032178424, -0.018029314, -0.016721884, -0.02388107, - -0.023637474, -0.00915469, 0.016925922, 0.012425133, -0.0051409737, - 0.017577015, -0.0060110264, -0.021360727, 5.8072584e-4, 0.03050223, - -0.019089982, 0.014456536, -0.008276675, -0.008383182, 0.017064119, - -0.013647507, 0.001932781, -0.020660145, 0.002830524, -0.0071261544, - 0.009568897, 0.015380935, -0.0102935415, -0.024194365, 0.009540107, - -0.014491988, -0.030690795, 0.004799707, -0.01790126, 0.009769756, - 0.027090874, -0.006667859, 0.010246518, -0.0016558043, 0.019125631, - -0.020719405, 0.0066643953, -0.034025967, -0.027920382, 4.2745497e-4, - -0.015943646, -0.017259907, -0.0043544457, 0.0013369472, 0.011768413, - 0.005860687, 0.0061650686, -0.029794917, -0.017676745, 0.006072746, - 0.0094316965, 0.020927085, 0.0011314151, -0.016475989, 0.003185299, - 0.021033911, -0.0017830736, 0.025149917, 0.015131034, -0.008107479, - -0.0029423668, 0.022421679, 0.015331079, -0.028510906, 0.010096159, - -0.03555543, 0.019048408, -0.024059212, -0.024689103, -0.005294596, - 0.02103058, -0.0115510505, 0.003982003, -0.022660948, -0.040611267, - 0.0071743582, -0.014378132, 0.026165226, -0.008475528, 0.015958156, - -0.011687987, 0.007836605, -6.558517e-4, 0.025627144, 0.004871918, - 0.008991063, 0.012601191, -0.01059619, 0.011461389, 0.016272247, - 0.0034898347, -0.0062877005, 0.0038491518, -0.03943219, 0.013294301, - 0.0051375357, -0.019807084, -0.010620757, 0.0030377065, 0.017722987, - -0.022663642, 0.035124782, -0.0058909473, -0.015250888, -0.001780537, - 0.011205097, 0.0157084, -0.0035849295, -0.0071005486, 0.02890655, - 0.0047717276, -0.008355551, -0.013668675, -0.0069346665, 0.01232426, - 0.021787731, -0.025196716, -0.0076821772, 0.027385982, 0.011272038, - -0.012999333, 0.033199247, -0.005950088, 0.025964713, 0.0069049723, - 0.0042917347, -0.017091574, -0.0032295375, -7.393987e-4, 0.006687451, - 0.011335345, 0.0017226004, -0.0051475326, -0.01279008, 0.019998236, - -0.011653174, 0.0092594195, 0.015814902, -0.015195212, -0.002458633, - 0.023301566, -0.0025167384, -0.008070185, -0.016030798, -0.011591596, - -0.010512654, -0.009716684, -0.017224355, 0.005628395, -0.012518744, - 3.9216675e-4, 0.025997257, -0.026110861, -0.0017668953, 0.007236358, - -0.016114729, 0.018438397, 0.028306514, 0.012468393, 0.0036075884, - 0.014916052, 0.008965856, -0.01511003, 0.021726103, 0.0032890595, - -0.0017846847, -0.0038029335, -0.01603779, 0.0020487888, 0.0022355574, - -3.7344903e-4, -0.001692997, -0.005132268, 8.477964e-4, 0.0064852936, - -0.029513141, 0.0073567047, 0.008850383, 0.028132342, 0.0031755725, - -5.6427653e-4, 0.010887344, -0.009897629, -0.0018715188, 0.0037613548, - 0.032321416, -0.01701868, 0.028290894, -0.011405143, 0.033050414, - -0.021716977, -0.0029713379, -0.010555934, 0.009471196, -0.05634594, - -0.0028918416, 0.0075026704, -0.004133603, -0.0030492784, -0.0027069454, - -0.0014454663, 0.02318194, -0.0056660515, -0.009823583, -0.01966184, - -0.010949325, 0.03732639, -0.0013881029, 0.015291124, -0.036928117, - 0.016379032, -0.004720403, 0.010248586, 0.011263138, -0.019989258, - -0.001580122, -0.008784099, -0.0014707264, 0.002957005, 0.0071805813, - -0.0037487552, 0.005981927, -0.0045933947, 0.007921106, -0.021941114, - 0.006126004, 0.0023355002, -0.003283096, 0.017975613, 0.012218504, - -0.009616033, -0.017713768, 0.010138106, -0.0039564054, 0.0051096114, - -0.009354481, -0.0023789653, 0.01642262, 0.015368439, -0.0046374626, - -0.004132283, -8.198425e-5, -0.01733642, 0.010308692, -0.030708961, - 0.020295693, -0.006274506, -0.0041549886, -0.010703534, 0.017818537, - 9.2741125e-4, -0.017747905, 0.012528624, -0.02269753, -0.007486915, - 0.004211059, -0.008408145, -0.009830207, 0.016943097, -0.020762209, - 0.010360287, -9.120088e-4, -0.030530304, 0.022324258, -0.014611331, - 0.0040069944, -7.98962e-4, -0.0023373798, 0.013758012, 0.0024662137, - 0.008327391, -0.013174367, 0.01652531, 0.0153145995, 0.0076473863, - -0.010892946, 0.03742355, -0.0035126428, 0.0011302507, 0.007344622, - -0.01187739, -0.03172403, 0.0040245736, 0.013933541, 0.004321732, - -0.028752454, 0.024130007, -0.013886793, 0.015260012, -0.0026318482, - -0.017555643, 0.008882331, -0.0049155476, 0.00446165, 0.0023927526, - -0.015666349, 0.0231726, 0.016242893, 0.0301436, -0.005805498, - 0.01614482, -0.008260093, 0.0065141884, 0.005486922, -0.02240698, - -0.028939584, 0.0059623453, -0.00932492, 0.036503594, -0.019991223, - -0.003219128, 0.012664113, 0.009823798, -0.03637185, -0.01195466, - -0.009958985, 0.007171732, 0.005917493, -0.013927105, -0.013128758, - -0.028015958, 0.013650701, -8.53854e-4, -0.014554499, 0.0025642072, - 0.01746498, 0.014766148, -0.0071529225, -0.0017555777, 0.026630955, - 0.010139203, 0.0071393927, 0.02029117, -0.027002012, -0.009749854, - 0.0021053578, -7.5159e-4, 0.028351856, 0.013265939, 0.010466353, - -0.0042193905, 0.009623429, -0.0038109361, 0.002019926, 0.023582831, - 0.0022230279, 0.004146289, -0.010024883, -0.020480907, 0.0029561473, - 0.013076471, 1.4297702e-4, -0.025425926, 0.013073058, 0.020651981, - 0.013764086, 0.0037628515, -0.012109049, -0.008536662, 0.0031206433, - 0.024203653, -0.018021025, 9.562553e-4, 0.0015715153, -0.005649353, - -0.029439213, 6.9583446e-5, -0.011805474, 0.008292514, -0.0044751097, - -0.005727427, -0.030665439, -0.0053472714, 0.007530102, -0.018530237, - 0.0026501992, 0.009825049, -0.0120989205, -0.0040163044, -0.019182347, - 0.012146562, 0.012842203, 0.008976366, 0.015593909, -0.023633467, - -0.022214742, 0.010515696, 7.811042e-4, -0.0015276785, -0.02117166, - -0.0046926537, 0.0038670155, -0.020699434, 0.02899188, -0.029572241, - 0.023360912, -0.0029075418, -0.0167436, 0.018980952, -0.0030865562, - -0.011340812, -0.02068678, 0.017210351, -0.0055087996, 0.009620949, - -1.9577619e-4, 0.01057478, -0.0024048886, 0.013350137, 0.009942027, - -0.003590654, -0.039509535, 0.0027606206, 0.0056886184, -0.006993562, - 7.139292e-4, 0.032216135, 4.242366e-4, 0.0459268, -0.008656182, - -0.015926516, 0.010471539, 0.003408966, -0.010838844, 0.009486433, - -0.02601575, -0.02369281, 0.015671287, 0.015207343, -0.008058333, - 0.033000987, 0.0070829187, -0.014231126, 0.023823183, -0.0074164877, - -0.015822131, 0.016071694, 0.019277072, 0.0014966264, 0.019627122, - -0.032627717, 0.021831697, -0.005115487, 0.0202713, 5.8669696e-4, - -0.035444513, 0.0028580606, 0.015333123, -0.0015078133, -0.034325745, - 0.02029334, 0.017535392, 0.01029657, 0.013982661, 0.017361086, - 0.022676392, 0.021004353, 0.030346038, 0.026406052, -0.00637527, - -0.0018366558, -0.0022299623, -0.0013482295, 0.001031233, 0.003174669, - 0.0041545494, 0.010879192, 0.038294848, 0.031226749, -0.017935017, - -0.027042033, -0.039878756, -0.007980293, -0.009729251, -0.011279159, - -0.011743259, 0.007389715, 0.028203249, 0.010685479, 0.010462386, - -0.009065388, 0.010041162, 0.009631994, 0.0056567686, 0.004638558, - 0.003948389, 0.01828584, -0.0074045057, 0.0038885311, 0.014038116, - -0.0068882415, -0.019717535, 0.021358484, 0.0010068994, -0.010190616, - -0.03551352, -0.0065132785, -0.03814054, -0.013389951, 0.003196556, - -0.0018379496, 4.124456e-4, -0.009986077, -0.0154201, -0.0063056266, - 0.027781313, -0.022667466, 0.004424844, 0.0045739296, 0.011379217, - -0.0014238529, 0.015509336, -0.0018827192, 0.0020017386, -0.012948774, - 0.0139308525, 0.023616556, 0.0043157213, -8.0988137e-4, 4.9779424e-4, - 0.0064727357, 0.0073775807, -3.494296e-4, -0.0149157, 0.008390865, - 0.001491478, -0.002853741, 0.0025263862, -0.025158932, -0.013739267, - -0.009107661, 0.022728678, -0.0013080562, -0.0076999217, 0.040439047, - -0.0039951093, 0.013059956, 0.0063956697, -0.032115832, -0.0037585075, - 0.026236042, -0.0012390306, 0.009996743, -0.012593487, 0.016575778, - -0.04390991, 0.00908905, 0.0054371604, -0.009601056, -0.021370228, - 0.003916748, 7.142305e-4, -0.01680255, 0.0060688746, 0.0098963445, - -0.007301318, -0.00815436, -0.00983301, 0.0015741813, 0.001716164, - 0.01534196, 0.002469387, -0.016207028, -0.0015929408, 0.0080187805, - -0.00417318, -0.0013421567, 0.0064424495, 0.012483955, 0.0031095194, - -0.0067140367, -0.007170525, -0.010559346, 0.033346962, 0.0032465502, - -0.013428208, -0.027933024, -0.007623392, -9.949106e-4, 0.015619261, - -0.0029089781, -0.024979243, -0.013206694, 0.020044781, 0.004919645, - 0.013466364, -0.0029451319, -0.0031360758, 0.014338996, 0.013963613, - -0.011560739, -0.008726024, 0.0015783131, 0.014393041, 0.025734179, - 0.03552498, -0.023690112, -0.0025225906, 0.021735502, 0.013281049, - -0.011218083, 0.018027712, 0.0044707065, -0.0024947887, -0.011858851, - -0.005758338, 0.0018061695, -0.014795974, 0.008253604, -0.021371039, - -0.009135296, -0.012732658, 0.015116543, 0.048336055, -0.034507286, - -0.011552786, 0.031635012, 0.032712836, -0.0039640972, -0.0067624296, - -0.015011576, 0.0030266158, 0.008312849, -0.0067915334, 0.019376349, - -1.16899755e-4, -0.017107563, -0.014493264, 0.025951706, 0.0025613995, - -0.011165261, -0.03081081, -0.01629877, 0.0050699622, 0.010206806, - -0.0034639959, 0.03133097, 0.013739756, -0.031061184, 0.01718322, - 0.0048889928, -0.0022932533, -1.2713618e-4, -0.016922912, 0.019267526, - 0.01940505, -0.0025103637, 0.030896422, 0.021657474, -0.014205875, - 0.015818339, 0.011224421, 0.0059757424, -0.008351637 + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.009838874, 0.016979791, -4.975743e-4, -0.026557831, 0.009509276, - -5.239639e-4, 0.01934234, 0.0069698216, -0.0055744485, -0.031511165, - 0.004164432, -0.011629769, -0.002115384, -0.03441394, -0.011555382, - 0.0061545903, -0.021517474, -0.023918133, 0.01288801, 0.009273228, - 0.01317572, 0.021885157, 0.013415053, 0.01634552, 0.017479846, - -0.0041075284, 0.013942996, 0.019598892, -0.018704826, -0.0114755435, - -0.020547492, 0.02536826, 0.019063644, -0.024084834, -0.006344126, - -0.013745934, 0.0088043725, -0.012613496, -0.0028005661, -0.002209537, - -0.018814765, 0.009360076, 0.004231437, -0.0030426688, 0.017593699, - 0.020237751, -0.021669451, 0.00441883, 2.4410186e-4, -0.0077347686, - 0.016432945, 0.01147483, 0.031089425, 0.009904426, -0.0060983924, - -0.025976654, 0.0039434778, -0.013677423, -0.017772095, -0.0011968035, - 0.009449163, -0.027701605, -0.015072115, 0.0013530749, -0.014514231, - 0.037946776, 0.020764647, -0.0038945673, -0.022334522, 0.0025287103, - -0.008680079, -0.0010519042, -0.018105794, -0.015741453, -2.1747938e-4, - 0.030554606, 0.030114189, -0.015483414, 0.011138438, -0.008445456, - 0.010651215, 0.009510019, 0.0087356595, -0.0033101647, -0.008200847, - -0.00454116, -0.008404261, -0.002451494, -0.0045122867, 0.016618853, - -0.0052141934, 0.006875806, -0.011708823, 0.0065564234, -0.029193914, - -0.024025198, -0.016505718, 0.013056605, 0.031605303, 0.0155573785, - -0.0070328354, 0.0126879, -0.010988163, 0.013028968, 0.0015027652, - -0.0011036196, 0.043492813, -0.0029733735, -0.021047618, 0.01532498, - -0.014389089, -0.0017841384, -0.02524677, 0.008722815, 0.015916139, - 0.019832961, -0.00329696, 0.013623271, 0.009135891, -0.021150008, - 0.019441428, -0.02749271, -0.009232633, 0.005462795, -0.0011448589, - 0.00859537, -0.018162707, -7.84977e-4, -0.026770608, -0.0060936, - 0.007802739, 0.01771646, -0.017687455, -0.0211986, 0.014263597, - 6.110294e-4, -0.012177885, 0.02641784, 0.004757622, -0.012207213, - 0.011995121, -0.013607563, 0.015759291, -0.02639415, -0.03859979, - -0.008197724, 0.0050249263, -0.013489885, 0.004438567, -0.013774888, - -0.013566389, 0.03703572, 0.02547538, 0.0060760304, -0.0024418896, - 0.025597434, 7.3629705e-4, 0.006909511, -3.8667998e-4, -0.0036114529, - 0.017498609, -0.02331251, -0.0056282426, 0.0026681274, 0.011271251, - 0.02464653, 0.015654024, 0.024486514, -0.019806255, 4.6563917e-4, - 0.021712316, 0.017468985, 0.013014965, 0.016735896, -0.014200794, - 0.027267803, -0.011844447, -0.0053149667, 0.010192764, -0.0026683814, - -0.018502356, 0.009443727, 0.005953685, -0.03707075, -0.003721476, - 0.003642489, -0.012270168, 0.011257022, -0.008246772, 0.0030100548, - 0.021027513, 0.014992114, 0.002707, -0.014675103, -0.01647184, - 0.016927924, 0.025060738, -0.010259826, -0.008441553, -0.02681125, - -0.006697382, 0.009897114, 0.019431485, 0.00853277, 0.01902732, - -0.022059267, 0.00286012, 0.013019025, -9.837222e-4, 0.0090115, - -0.020406805, 0.01677436, -0.0194304, -0.008240348, -0.008577168, - -0.014847277, 0.012731647, -0.0022338955, 0.0031265446, -0.017923115, - 5.062822e-4, -0.002759363, -0.0256, -0.03495098, 0.021913763, - -0.015632298, -0.021511873, 0.019887263, -0.0026229182, -0.0069019306, - 0.03577402, -0.004478459, -0.019073235, -0.0082357675, 0.010822526, - -0.014446042, -0.0030564575, -0.027304279, 0.014269001, 0.02141126, - 0.0126867015, 0.0018458874, -0.00787249, -0.0066506285, 0.0021558965, - 6.059268e-4, -0.011940337, -0.0058353264, 0.02278294, -0.0072108894, - -0.0013790706, -0.017295768, -0.04374063, 0.0021079395, 0.004408181, - -0.0025517447, 0.0015946202, -0.013338927, -0.041604884, 0.005476156, - -0.010191374, 0.031865742, 0.027718041, 0.0076435446, -0.013177601, - -0.049578276, 0.00218886, -7.9575286e-4, -0.015139512, -0.003930661, - 0.007814451, -0.017706167, 0.014814862, 0.01182044, -0.015996002, - -3.053889e-4, 0.017027896, -8.2641566e-4, -0.014631155, -0.009076997, - -0.014248271, -0.0049283262, 0.003895347, 0.020629223, 0.016210863, - -0.02999129, -0.004948142, 6.9578714e-4, -0.02714793, 0.006463025, - -0.010687029, -0.0048654596, -0.006463124, -0.025333244, -0.02831439, - 0.015918212, 0.006975156, 0.0076274625, 0.008258145, -0.009968804, - -0.0023133312, 0.019991567, 0.01651069, 0.014132135, 0.0050785127, - -0.0108061, 0.0030709142, -0.004785008, 0.01616, -0.0067108735, - 0.006698025, 0.01018155, -0.0059818877, -0.0134581635, -0.0031526098, - -0.0030448467, -0.009053126, -0.0055645416, -0.018077131, -0.030360056, - 0.024821972, -0.0027615982, 0.016394306, -0.003241281, 0.016866317, - 0.0025737658, 0.017001351, 0.01425489, -0.001145746, 0.00976943, - 0.0038403259, -0.019430052, -0.019446097, -0.01089746, 0.0138291055, - 0.006672273, -0.021081222, -0.013044377, -0.00451089, -0.0064630765, - 0.009812833, -0.012767713, -0.017934507, -0.00920698, 0.009038258, - -0.0037324645, 0.0070448956, -0.012296132, 0.028976731, 0.002444016, - 0.002059117, -0.014741173, -0.034677397, 0.01834607, 0.010387397, - 0.029723724, -0.0041015586, -0.013407698, -8.091492e-4, -0.0063322685, - 0.0067621013, -1.5423009e-4, -0.016435781, 0.0130174495, -0.0019220875, - 1.6123995e-4, -0.0019292384, -0.009537361, 0.0070142704, -0.02212405, - -0.020284977, 0.02800251, 0.024836205, -0.011962601, 0.009097047, - -0.0059837564, 0.042562116, 0.032380234, 0.012469046, 0.02958383, - -0.014356838, -0.0028913177, -0.013322983, -0.011029347, -0.0099361, - 0.02611641, -0.011922783, 0.018767389, 0.024761954, -0.028441237, - 0.011698067, 0.019588253, -0.004402775, -0.009176515, 0.008046451, - -0.01026966, -0.0022798304, 0.013149384, -0.010427278, 0.007047383, - -0.02399968, 0.011803178, -0.024588337, -0.018222915, 0.009734688, - 0.0031342818, -0.011693083, -0.0068811276, -0.019381879, 4.1743464e-5, - -0.001904875, -0.0088032205, 0.020277621, -0.016260747, 0.020059833, - 0.0017434121, 0.011350654, -4.14528e-4, 0.010087823, 0.012839924, - -0.009445291, -0.0012299728, 0.00861555, -0.004283537, -0.010540877, - 0.0080069555, 0.023549333, 0.00923858, -0.009110818, -0.026175853, - 0.027118731, -0.0011995253, 0.042894393, -0.0064516077, -0.0037424823, - -0.0028204105, -0.009767031, -0.0033396326, 0.008428769, 0.020515302, - -1.6445413e-4, 0.020331167, 0.012666892, -0.0051481873, -0.015977336, - 0.013404474, -0.0067391885, 0.010290221, 0.009972912, 0.0035759865, - -0.0053753518, -0.029086549, 0.015564216, -0.018081885, -9.2340814e-4, - 0.0268183, -0.01743476, 0.010457904, -0.02359971, 0.005934175, - -0.0017435277, 0.014964262, 0.01618568, 0.006183019, 0.028983975, - -0.010946789, -0.0107306, 0.013652927, -0.009293491, 0.0050401804, - 0.01966294, -0.019281281, 0.003781661, 0.0019354952, 0.0064750933, - -7.228437e-4, -0.019496817, -0.012924452, 0.0198512, -0.0017308785, - 0.020025222, 0.016754229, 0.018582087, 0.020994874, -0.014649635, - -0.0066816015, -0.0159305, -0.004682428, -0.03496038, 0.0064568445, - 0.012995798, 0.007508941, 0.018336054, -0.015774617, 0.010060329, - -0.00878757, 0.0016346696, -0.0068322965, 0.017432347, 0.0063733463, - 0.008432875, 0.010606106, -0.016184488, -6.747669e-4, -0.0041688955, - -0.0075509013, -0.0018078757, 0.0063306144, 0.010400537, 0.013212441, - 0.016264016, -0.015136493, -0.029527191, -0.006800774, 9.836578e-4, - -0.01150631, 0.017817045, -0.011370178, 0.043754794, 0.0019390223, - 0.013069396, -0.01331411, -1.5041878e-4, 0.0067935986, 0.0035400623, - 0.01747995, -0.020840535, -0.029686674, 0.027578235, 0.017868072, - 6.4310797e-7, 0.00346642, -0.010616078, 0.003429386, 5.519759e-4, - -0.0049367887, -0.008837843, -0.03429803, -0.0033767568, 0.0151917, - 0.0023042748, 0.012490662, -0.0028975143, -0.031360835, 0.009164016, - 0.02002888, -0.01401776, 0.00797764, 8.172537e-4, 0.020776348, - -0.018595086, 0.012153076, -0.022038039, 0.009969141, -0.0037419642, - -0.017333474, 0.002907791, 0.008248582, 0.0017976711, -0.016135724, - 0.006479472, -0.02639909, -0.022139307, 0.019200966, -0.017716002, - 0.007697391, -2.609124e-5, 0.006842817, -9.384666e-5, -0.017843846, - -0.00191346, -0.0024632774, 0.021785017, 0.014349477, -0.013038929, - 0.021352014, 0.017612806, 0.026465297, -0.014277584, -0.009810051, - 0.015201643, 0.013227391, 0.034715857, 0.02365983, -0.002587663, - 0.0074742646, -0.020257862, 0.026077688, -8.658593e-4, 2.9913755e-4, - 0.026764495, -0.016329406, -0.026691638, -0.004590019, 0.010069534, - 0.03387402, -0.009140367, -0.01208868, -0.0012445987, 0.0038295179, - -0.012216845, 0.019723114, 0.011311289, 0.018209783, 0.002676199, - 2.7492747e-4, -0.010372801, -0.0074420157, 0.01760122, -0.012864604, - 0.008829216, 0.014801625, 0.0013140221, -0.008101432, 0.011949463, - 5.9526635e-4, 0.01224512, -0.001236482, -8.4154936e-4, 0.04063421, - 0.003618703, 3.9660366e-4, -0.005649059, -0.038134474, -0.011455385, - -0.017608924, -0.016449604, -0.0032674798, -0.018284403, 0.017472617, - -0.005861988, -0.023203231, -0.024418868, 9.516456e-4, -0.0011005832, - -0.0011103494, -0.010803069, 0.02550302, -0.010295006, -0.014388782, - -0.027268754, -7.5188413e-4, -0.0072662826, -0.006372839, -0.0032007764, - -0.013511871, 3.755404e-4, -0.014135055, 0.008437916, 0.01749182, - 0.017030682, 0.028573673, 0.0125459265, 0.008800888, -0.0032899792, - 4.3262498e-4, 0.0078597665, 0.007461764, -0.007517289, -0.0054526683, - 0.021205219, 0.015780857, 0.0012499061, 0.014825378, -0.0027902767, - -0.013520949, -0.0078002783, 0.0031673214, -0.018363588, -0.011583447, - -0.023045553, -0.0022965677, 0.018477421, -0.009045772, -6.310511e-4, - 0.013068446, 4.9161335e-4, -0.016250692, -0.007501305, -0.023666248, - 0.013647332, -8.07846e-5, -0.013445527, -0.017389348, -0.011432776, - 0.0150975855, 0.015247387, 0.02074203, -0.0066191503, 0.032495216, - -0.021025471, -0.007473305, -0.017226191, 0.045988385, 0.01787813, - 0.009452165, 0.007809048, 0.009957038, 0.0014429807, -0.0098202275, - 0.01135845, -0.006496597, 0.020435162, 0.004918051, 0.023065357, - 0.012643021, 0.011017633, 0.0075292364, -8.792148e-4, -0.0034111284, - 0.025293045, -0.002138081, 0.005652082, 0.011415409, -0.0054818597, - 0.01963177, 0.026422292, 0.0043107625, -0.005005873, 0.0067268005, - 0.0041646045, 0.020070411, 0.008824493, -0.010449667, 0.0042284075, - -0.0041730753, -0.014313021, -0.021516554, -0.0051123835, 0.0029765207, - -0.018863661, -0.015983501, -0.019284839, 0.0017930036, 5.603531e-4, - 0.0059257387, 0.0119772665, -0.0025619115, 0.01540383, 0.009917777, - 0.006862347, 0.009171223, -0.0060968753, 0.02116956, -0.007823397, - -0.025569538, -0.013795023, 0.019016149, -0.00629928, 0.011286706, - -0.024887983, 0.022517266, -0.006272871, 0.005986651, -0.0049715033, - -0.003973255, 0.008466101, -0.006381626, 0.017471706, 0.0058792336, - -0.0019324388, 0.023449223, 0.0043072104, 0.019059213, -0.010619273, - 0.011450515, -0.005133034, -0.010747257, -0.022063125, 0.026052276, - 1.11581e-4, -0.007064984, -0.0033245366, 0.0036282032, 0.032360643, - 0.009495658, -0.0036686033, -7.0223946e-4, -0.0015283326, 0.018403273, - -0.0060961437, -0.015433477, -0.005230429, 0.011537705, -0.0019062234, - -0.016081687, 0.00926203, -0.0023129024, 0.01367455, 0.021138664, - 0.016768325, -0.0048484397, 0.010959692, -0.0075198603, 0.0066493596, - 0.007360128, 0.026236761, -0.029280607, 8.474802e-5, -0.007346557, - -0.013247728, 0.00880946, 0.0038714462, 0.02216958, -0.0014539133, - 0.0031165492, 0.0052287746, -0.014954811, -0.025254237, 0.009054408, - 0.009180456, -0.010084733, -0.002948995, -0.017370757, 0.008033856, - -0.01936118, -0.025106251, -0.007441702, -0.00155866, 0.0043382165, - 0.018788736, -0.015996324, 0.009900425, 7.081029e-4, 0.018214164, - -0.0044522374, 0.0012471398, -0.016654352, 0.02896839, 0.05269106, - 0.004170744, -0.0026778209, 0.022140723, -0.015030535, 0.0076466985, - 0.014975943, -0.0040193396, 0.0028852012, 0.019993797, 0.0025613303, - -0.007710091, 0.027675346, -0.0013064697, -0.0028683892, 0.021180546, - 0.0106487265, -0.00933014, -0.013893773, -0.009527096, -0.006007286, - 0.0026951835, -0.01776319, 0.0070720525, -0.012332204, -0.009628961, - -0.010095137, 0.012924371, 0.032663066, 0.010955539, -0.005910516, - -0.005892313, 0.0071450695, -0.014364612, 0.008025158, -0.005173362, - 0.0013391671, -0.009758525, 0.016506696, -0.014457712, 0.017219072, - -0.0043198094, -0.012238977, 0.0070245746, -0.0031393806, 0.0010520641, - -0.027352579, -0.0057590143, -0.02723728, 0.013936194, -0.015144776, - 0.016142592, -0.009141539, 0.006415362, 0.0037017297, -1.4721935e-4, - -0.0036844045, -3.604449e-4, 0.0031929256, -0.022347322, -0.0010106091, - 0.0148235485, -0.024835648, -0.020775575, -0.014751655, 0.032980844, - 0.02014872, -0.027576813, -0.03511841, -0.003705003, 0.0154042225, - 0.018907014, 0.0073072636, -0.011810634, -0.0206277, -0.030959103, - -0.010836696, -0.0042557, 0.008504712, 0.01895428, 0.0015486216, - -0.0024038944, 0.015091825, 0.013407603, -0.019342601, 0.0036156087, - -0.029424697, -0.02084411, -0.0057525304, -0.0036117234, -0.003964507, - -0.011424563, 0.04452206, -3.8046378e-4, 0.003161662, 0.004994268, - 0.012632682, -0.006719555, -0.004472617, 0.0058228993, -0.013579715, - -0.005472317, -0.0026890268, 0.009598394, -0.006327616, 0.012757693, - -0.018475793, -0.0023773913, 0.011581991, -0.009962262, 0.03605553, - 0.02334561, 0.010406211, 0.008834966, 0.009661944, -0.0013510839, - -0.01537465, 0.020081587, 0.008492109, -0.021689959, 0.025563587, - -0.02157871, -0.00576874, 0.026729146, -0.009990831, -0.002247201, - 0.016775832, 0.020479692, -3.4283777e-4, 0.020061688, 0.007201744, - -0.004553352, 0.0042477073, -0.012870098, -0.027668543, 0.008686617, - -0.0022785773, 0.0026119957, 0.024607364, -0.023583032, 0.029543953, - 0.008512585, -0.011354341, -0.006902577, -0.008541399, -0.0027710889, - -0.011231889, 2.6618384e-4, -0.020052375, 0.013129738, 0.022517923, - 0.015264043, 0.026000999, 0.009425229, -0.0056460197, -0.0010943968, - 0.0033273208, -0.0070245094, -0.008102199, 0.03396156, -0.0025289662, - -0.015069345, -0.0043909657, 0.021106513, 0.0074229054, -0.01345554, - -2.7574732e-5, 0.018866677, -0.0066250777, 0.015779179, 0.0028302376, - -0.017423593, -0.02312178, 0.016638631, -0.0017279547, 0.014919303, - 0.008663086, 0.012511665, 0.028300181, -0.0047717425, -0.0064069917, - 0.008936999, 0.039218623, -0.0071612983, -0.0033024924, -0.002928557, - -0.006300148, 0.039271582, 0.014553225, 0.0024475346, 0.010964859, - 0.0089436695, -0.008570491, 0.01832508, 0.020752603, -0.006360632, - -0.033810753, -0.010297859, 0.012438771, -0.006660919, -0.015014019, - -0.01141658, 0.0041224984, -0.010075206, -0.0074417987, -0.0062628095, - 0.003893409, -0.0022471293, -0.027638972, -0.03487248, -0.0022069046, - 0.013437272, -0.0071661524, -0.026398977, 0.021488428, 0.0046229744, - -0.017933171, 0.00722426, 0.0059628454, -0.0010882216, 0.0014659164, - -0.028846752, -0.012164404, 0.008110078, -0.012435339, 0.019991122, - -0.019211842, -0.025990058, -7.1114635e-5, -0.026153361, -0.013175306, - 3.5194782e-4, 0.026840733, 0.0039922227, 0.010214645, -0.010113485, - -0.0052816104, 0.013137526, 0.013899347, 0.007464628, 0.045243528, - -0.020571306, -0.015769718, -0.027469242, 0.014215175, 0.009534225, - -0.001965915, 0.03223328, 0.009858917, -0.005003234, -0.011902477, - -0.028705943, 0.01024871, 0.017921517, 0.017999366, -0.015589591, - 0.0049447226, 0.009208387, -0.005156849, -0.0033498204, -0.019421633, - 0.008836763, -0.02143431, 0.0141552985, -0.0052644736, -4.1375984e-4, - -3.8268772e-5, -0.020214487, 5.875981e-4, -0.026810126, 0.010201961, - -0.013229866, 0.00896636, -0.0063409875, 0.001845021, -0.016167648, - 0.006969506, -0.012255088, -0.012514269, -0.012869166, -0.0019684017, - 0.021836769, -0.025923058, -0.02111989, 0.0069410144, 0.0016433212, - -0.0014357031, 0.029184172, -7.2394876e-4, 0.009458642, -0.018978208, - 0.0043023615, -0.022479875, 0.009067813, -0.029487306, 6.611396e-4, - -0.002147782, -0.023340771, 0.007023214, 0.025780626, 0.0056129084, - -0.0037737768, -0.00424941, 0.015477546, 0.00901589, -0.0065905116, - -0.012016402, 0.00867304, -0.0018630762, 0.016969895, -0.015645405, - 0.0020996674, 0.0012265233, 0.0017559545, -0.0050747436, 0.007359697, - 6.6172035e-4, -0.017808923, 0.009705915, 1.0897162e-4, 0.008176, - 0.020092662, 0.032229178, -0.005201838, -0.002021588, -0.016081221, - -0.004923365, -0.0047854763, -0.0045642885, 0.023407755, 5.085803e-4, - 0.008647988, 0.02292321, -0.015154543, -0.00437112, -0.0022535364, - -0.001010415, -0.022733664, 0.0010838498, 0.0033384077, 0.025163809, - 0.006995457, -0.006852658, -0.0031682153, -0.021554457, -0.00699924, - -0.014705709, -0.012705067, 0.0076066987, 0.014983054, -0.019351399, - -0.012996614, -0.0011532773, 0.017263785, -0.02907857, -0.003886461, - -0.0058332486, -0.0069254637, 0.0057458994, -0.023342699, -0.010700336, - 0.040852167, -0.016710062, 0.014837844, -0.0017739631, 2.5132197e-4, - 0.02702305, 4.6973146e-4, -0.010068306, -0.0072514093, 0.011866433, - 0.0064484114, 0.011684575, -0.01740878, -0.029607171, 0.008834422, - -0.007082813, -0.021895396, -0.0010983065, 0.032201882, 0.018922146, - -0.006638916, 0.017284052, 0.0144477645, 0.034490753, -0.0073590195, - -0.016510524, 0.0102971615, -0.020576453, -0.01600111, -0.008003363, - 0.009925144, -0.01305192, -0.032156706, 0.015260263, -0.009198546, - 1.0563902e-4, -0.018371902, 0.004865764, -0.015465006, -0.012375021, - 0.0038233183, 0.028370218, 2.7300487e-4, -0.005273316, 9.50534e-4, - 0.0017661965, -0.0013320518, -0.03506658, -0.003114161, -0.006542067, - -0.004051527, -0.002256949, -0.020675449, -0.023466628, -0.0036468054, - 0.0015266517, 0.0122023225, -0.008342727, -0.03251001, -0.013166264, - 0.0061649266, 0.01136146, 6.406749e-4, 0.0032652183, 0.0075436304, - -0.006401448, -0.029353758, 0.0051555177, -0.0056012967, -0.00304953, - 0.015102657, -0.028362803, 0.0063026836, 0.002512922, -0.005322995, - 0.007032997, -0.02361783, -0.02920901, 0.01741718, 9.0990146e-4, - -0.01974466, 0.0039065136, 0.022735743, 0.039375998, -0.025827251, - -0.017386058, 4.791049e-4, -0.011341435, -0.005563663, 0.00607163, - -0.03240186, 0.003171984, -0.013910634, -0.014552104, 0.008338089, - 0.0061848667, 0.0057014846, -0.011806243, -0.01533261, -0.00579418, - -0.0039857007, -0.0075015477, 0.01911781, 0.0239936, -0.0029738315, - -0.00902431, 0.011489636, -1.7607567e-4, 0.015834576, 0.011108293, - 0.010613875, 0.019279778, -0.04827713, 0.016065478, -0.0153892655, - 0.005327518, -0.0062246076, 0.024122605, 0.014871082, -0.024647024, - 0.013350026, 0.035352338, -0.010716645, 0.0062287413, -0.006629184, - -0.01815532, -0.011245275, 0.0020214992, -0.0027174596, -0.022190904, - -0.008688398, 0.0015651446, 0.0066357153, 0.019621607, -0.0020719282, - -0.016127033, 0.011526012, 0.023083055, 0.017113538, 0.018199593, - 0.0031897172, 0.026809717, -0.010224237, 0.019318925, -0.017871149, - -0.009350509, -0.002522411, 0.007607315, 0.0045026047, 0.0086986385, - 0.001389777, -0.0018824814, 0.03982287, -0.0083968695, -0.0045718253, - 0.010607502, 0.005200646, 0.009788117, -0.009165881, -0.007850962, - -0.0059138485, 0.017412856, -7.647324e-4, -0.0103825955, -0.011418311, - -0.019814968, 0.0011921527, -0.0056021223, -0.012992868, -0.0024135269, - -0.017921792, 0.021012563, 0.0015103137, -0.027104536, -0.0018162322, - 0.018802427, -0.0020515425, -0.042716846, 0.0011559218, -3.772074e-6, - 0.0050770044, -0.014707321, 0.005975957, 0.029204281, -0.0073889755, - 0.020440778, 3.3149697e-4, 0.008518463, -0.001568603, -0.012621148, - 0.033605143, 0.0040233782, 0.013920386, -0.0038680488, -0.018673845, - -0.0071029146, 0.0011176647, 0.0137849925, -0.005446247, 0.007619257, - 0.00881506, -0.0058646468, 0.010806588, 0.007237691, -0.0029882777, - 0.019129626, 9.3913375e-4, 0.004826473, -0.009241149, -0.020483619, - 0.003160775, 0.0073122005, -0.02326321, -0.022838574, -0.0036584288, - 0.0040809317, 0.026981905, 0.013219619, -0.032250952, 0.012365234, - 6.092914e-4, 0.014078386, 0.019975426, 0.00714442, 0.0029103495, - 0.021318944, 0.031649295, 0.01688063, 0.019177968, 0.019746616, - -0.037551496, 2.8087784e-4, 0.0057310807, -0.03872991, 0.0115134865, - 0.014471863, -0.014077017, 0.021061413, 5.497628e-4, 0.009224516, - 0.015061114, 0.0047247033, -0.0028442007, -0.015653895, -0.0017552465, - -0.014215887, -0.02493579, -0.0030595514, 3.1921783e-4, 0.0010566899, - 0.019797985, -0.0025816034, -0.0104235355, 0.02197583, -0.016841456, - -0.013113885, -0.01769459, 0.022742987, 0.0040169973, -0.00493771, - -0.008589088, 0.011072645, 0.009642995, -0.0014697475, -0.0018575232, - -0.026441952, 7.85432e-5, 0.005327557, -0.014074815, -3.7945405e-4, - -0.02043302, 0.01776823, -0.007865768, 0.007847581, 0.016572613, - -0.019684002, 0.010200733, 0.013253326, -0.01170617, 0.003251781, - 0.009533434, -0.015706588, 0.004982544, -0.012034, -0.008387881, - 0.0049859, -0.004043208, -0.01345609, -0.0013307799, 0.014003258, - 0.0017278492, 0.011405029, 0.00361676, -0.02234225, 0.013368321, - -0.01661525, -0.010135864, 0.012006916, 0.023001313, -0.02272661, - 0.023814138, 0.009594464, 0.014566104, 4.651525e-4, 0.00984138, - -0.0043018204, -0.023146823, -0.0069845393, -0.004083893, -0.009768142, - -0.010715768, 0.0069629764, 0.0075656874, 0.005490497, -0.024562428, - 0.025271801, -0.010552409, -0.0010556185, 0.0061715133, 0.0051803296, - 0.0043203505, 0.01729956, -0.0026349556, -0.018820107, 3.4900403e-4, - -0.015537749, 0.007047141, 0.01502532, 0.015811903, 0.017391674, - -0.010082238, -0.009382879, -0.011616066, 0.009855035, 8.022051e-4, - 0.02885395, -0.005984346, 0.014952623, 0.0027925854, -0.005027808, - -0.02510242, -0.012031865, 0.018015288, 0.008342526, -0.0051729293, - 0.008114267, -0.015512778, -0.0020770393, -0.012913381, 0.008396179, - 0.014406022, 0.0060952906, 0.03239333, -0.0064336676, 0.015953166, - -0.016967582, 0.006900856, -0.0020834794, -0.008868458, 0.01857182, - 0.003716033, -0.0021015764, 0.009509481, -0.017331537, -0.0038383557, - -1.4590449e-4, 0.001612982, 0.02232741, -7.789408e-4, -0.003363079, - 0.0062251957, 0.008947482, 0.015385308, 0.020479126, 0.009252577, - 0.040546093, -0.031174079, -0.014443048, -0.002497994, -0.017129386, - 0.007519151, 0.018230187, -0.025235679, 0.013255807, 0.01559204, - -0.018040981, 0.020924134, -0.0024164584, 0.022736935, -0.012182756, - 0.015797801, 0.023300514, 0.013641176, 0.0036896886, 0.007881682, - -0.02474273, 6.0877257e-5, 0.004290023, 0.024767106, -0.010322563, - -0.003544203, -0.02616558, -0.009300817, 0.01045722, 0.017183997, - 0.0013109831, 0.011492229, 2.3234234e-4, 9.544142e-4, 0.004782094, - 0.0066708243, -0.024406929, -0.019418418, -0.01383028, 0.0067915437, - 0.018930506, -0.012371522, -0.0045467513, -0.0128961485, -0.009266119, - 0.018422661, -0.00360359, 0.018423803, 0.004662226, -0.0012296488, - 0.020213295, 0.006680377, 0.0032740987, -0.010117621, -0.018610481, - -0.0063356785, 0.024743177, 0.009786508, 0.010859731, -0.0069054114, - -0.0331677, 0.029607505, -0.00779249, -0.0022199624, -0.012026558, - -0.0034020506, 0.0022428352, 0.0032906055, 0.016271338, -0.010568176, - -0.036185615, -0.013177852, 0.011734164, -0.007201118, 0.0059429402, - 0.018669935, 0.021398304, 0.025428358, -0.0063911523, 0.009611318, - 0.017604968, 0.00561176, 0.006068413, 0.008518583, -0.003634018, - -0.046358988, 0.0366629, -0.008484557, -0.009846086, 0.008409179, - -0.008768669, -0.026398933, -0.00977997, -0.0014477058, 0.005630427, - 0.014389596, -0.007752948, 0.0078099384, 0.0034866482, -0.021747185, - 0.00236914, -0.0032903983, -0.0071362606, -0.005311794, 1.1556727e-4, - 0.033842452, -0.003112005, 0.010443583, -0.023124786, -0.02194276, - -0.0042705913, -0.019152546, -0.007979356, 0.024575394, 0.014693623, - -0.0044632507, 0.007086862, -0.012361622, -0.02030051, 0.015367403, - -0.017303757, -8.581928e-4, 0.029131573, 0.023307912, 0.016028514, - -0.016375577, -0.005173757, 0.013461301, 0.0058717504, 0.01200933, - -0.004087569, -0.015324355, 0.017281398, 0.011272809, 0.017824173, - -0.01871115, 0.0055660997, -0.0073183347, -0.013684828, 0.0044499263, - 0.01473958, -0.008535114, -0.022070559, -0.01412392, 0.026437426, - -0.007589819, -0.0025134983, -0.0058234124, -0.024763843, -0.011988867, - 0.01064541, -0.010871841, -0.021806639, -0.009743504, 5.441499e-4, - 0.010992163, 0.019475603, 0.004801757, -0.026026368, -0.00413703, - -0.00836034, -0.02649583, 0.00558875, -0.014527585, 0.021102982, - -6.507829e-4, -0.0033499142, 0.0057070768, 0.01457719, -0.0035245223, - -0.030001657, -8.9138024e-4, -0.011674708, -0.015318897, -0.026218869, - 0.033326857, -0.0273938, 0.013068969, 0.020302841, 0.005302085, - -0.011260079, 0.024770241, 0.027247671, 0.028052622, -3.4149017e-4, - 0.03303218, -0.0085016545, 0.026256263, -0.01846993, 0.015296736, - -0.007330933, 0.0065118726, -0.008739423, 0.023345329, 0.0041383505, - -0.026930062, -0.0069181104, -0.0036526683, 0.005766721, 0.017254308, - -0.008692943, 4.972122e-4, -0.01114689, -0.018260876, -0.010691556, - 0.00363172, 1.8585056e-4, 0.006578115, 0.01926092, -0.010254833, - -0.024291912, 0.022424892, -0.018482208, 0.014230536, 0.0029234106, - -0.007812323, 0.006879044, -0.029926084, -0.0023208726, 0.021243347, - 8.2598807e-4, 0.009501964, -0.022877123, 0.025729898, -0.0072415196, - 0.041640617, 0.012298765, -5.0212146e-4, 0.015072581, -0.015627336, - -0.0021776347, -0.008627238, 0.019209772, -0.011418843, -0.00518316, - -0.0016140909, -0.022957683, -0.0029275452, -0.019561945, -0.0012277834, - 0.013176988, -0.008524149, -0.0019855811, 0.022153886, -0.0074894205, - -0.009912556, 0.014901046, -0.00356824, -0.0054905564, -0.026471267, - -0.006503532, -0.019712303, -0.040992852, -0.01348216, -0.010813405, - 0.019517155, -0.010227702, 2.6118782e-4, -0.0098370705, -0.019706676, - 0.004365378, 0.021654474, -0.031843435, 0.015815988, 0.006707798, - 0.04505605, 0.0016300771, 0.0063321893, -0.030639974, -0.0032749777, - 0.019045396, 0.03394642, 0.003908621, -0.008104018, 0.0030722304, - -0.0047251857, 0.028620372, 0.006977574, -0.022653779, 0.0031439487, - -0.0217365, -0.008437953, -0.020966636, -0.0049796575, -0.019267162, - 0.0021981155, 0.0025916125, 0.018467233, -0.006170914, 0.011971309, - 0.019876989, -0.005621585, 0.009061833, -0.0043609394, -0.009168407, - -0.0054788953, 0.014212627, 0.026094638, -0.010152868, -0.013262259, - -0.001198563, -0.006662767, 0.010660647, -0.011522848, -0.0140980305, - -0.010997903, -0.006482316, 0.02837212, 0.008425941, -0.0039777635, - -0.018034229, 0.0016219862, 0.0032364312, 0.0013320012, 0.01635924, - 0.013865629, -0.015309202, -0.006946553, 0.02405338, 0.013582204, - 0.010463003, 0.0048608277, -0.0014009343, -0.0091530355, -6.7149877e-4, - -0.0202412, -0.014597088, -0.0076360526, -0.017303944, -0.00809755, - -0.045483172, 0.03435881, 0.010123667, 0.0016771627, 0.013387229, - -0.0025377919, -7.73763e-4, -0.011025666, 0.0054429574, -0.006786386, - 0.022384986, 0.009142476, 0.03109934, -0.010690853, -0.0032796785, - 0.005926975, 0.0153870685, -0.022236656, 0.025810525, -0.0011695573, - 0.004448283, -0.014112342, -0.0068850503, 0.022225184, 0.0062386617, - -0.009929081, 0.011453603, 0.009050224, -0.020636413, -0.010508095, - -0.00944437, -0.0028358032, 0.013645327, 0.010598293, 0.0068834973, - -0.006020742, -0.009735773, 0.001218131, -0.0013249048, 0.0057103694, - -0.0068464717, 0.0067978837, -0.026532374, 0.0053533143, 0.027571319, - -0.001530713, -0.0018337662, -0.01915362, 0.019333327, 0.014180579, - -0.009164664, -0.005102763, 0.020995976, 0.0067545264, -0.0033165698, - -6.114101e-4, -0.0014178226, 0.002052312, -0.028275073, -0.034319144, - -0.02154406, 0.0035232843, -0.007546367, 0.005465337, -0.006699931, - -0.0070164986, -0.01485094, -0.005302996, 0.025473915, 0.013088594, - 0.019888746, -0.04189879, -0.0017003054, -0.026797919, 0.028010068, - -0.007692414, -0.013995525, 0.00263223, -0.033816833, -0.01419401, - -0.010396101, -1.12838046e-4, 0.0014751133, 0.0063299485, -0.0127849, - -0.0013964613, -0.0036269994, 0.024969427, -0.0050794887, 0.010404476, - 0.021769306, 0.015802734, -0.0031917412, 0.008711998, 0.0013559739, - -0.013003423, -0.015773185, -0.001682039, 0.0017452748, 0.018359156, - -0.0013735474, -0.020301288, 0.005611384, 0.010875116, 0.01807214, - 0.019405505, 0.013469584, 0.017450456, 0.016483018, 0.026251538, - 0.0106311245, -2.6129853e-4, -0.007127718, -0.018530488, 0.0018982491, - 0.0029796178, 0.00871662, -0.01674496, 0.0058339415, -0.023360457, - -0.017546145, 0.015865363, 0.005040835, -0.024706362, 0.0011399302, - -0.0066368156, -0.007675386, -0.0051640132, -0.012020155, 0.026796553, - 0.028855985, 0.020669442, -0.0013737835, 0.0061984984, 0.04116966, - 0.012314152, 0.0028146906, 3.0546624e-4, 0.01259445, 0.0017647456, - -0.014427287, -0.0069281673, 5.6563993e-4, -0.016140558, 0.0070984815, - 0.013141183, -0.01788525, 0.011309932, 0.005628155, -0.016564101, - 0.023582576, 0.0018478138, 0.0016975697 + "source.genres.label" : [ + "Crumbly cabbages", + "Deadly durians" ], - "reducedFeatures": [ - -0.0020529248, -3.6685146e-6, 0.011070824, -0.026839776, 0.008821767, - 0.0033102534, 8.632052e-4, 0.024504688, 0.045050226, -0.054895412, - -0.0016650023, 0.023315955, -0.004491982, 0.0016917336, 0.010137305, - -0.013587151, -0.0014133033, -5.413664e-4, -0.0033420457, -0.027011057, - 0.007555895, 0.02370421, -0.022509277, 0.0027837113, 0.015917683, - 0.017424133, -0.022147246, -0.017271994, -0.03901547, 0.04350779, - -0.028294338, -0.032651957, -0.006150741, -0.03672414, 0.01947075, - 0.032840405, -0.01126202, -0.031258356, -0.0017259625, -0.061015274, - -0.025893917, -0.027818827, 0.021826614, 0.010655661, 0.0032631813, - 0.014133456, 0.023428699, 0.03956715, -0.0053969757, 2.7506685e-4, - -0.035080526, 0.08523129, -0.016219074, -0.049528804, 0.07238887, - -0.02703004, -0.017994251, -0.009880494, 0.059201248, -0.014011156, - 0.066205874, -0.02890528, -0.035357207, -0.03678151, -0.036780894, - -0.055365432, 0.0058191363, -0.001542463, -0.08170163, 0.0068426006, - -0.0047770934, 0.01014707, -0.0032275314, 1.2855371e-5, 0.0027351317, - 0.01898082, -0.0068140617, 0.00443493, -0.046833217, -0.055896953, - 0.002767597, 0.035582077, 0.03460999, 0.037975907, -0.027035598, - 0.034492973, 0.018741637, -0.0038400586, 0.026262319, -0.023044359, - -0.04606496, 0.0077629415, 0.036921103, -0.010373825, 0.043755896, - 0.0072472645, 0.029304804, -0.04782986, -0.02624838, 0.06496253, - -0.035792995, -0.047348738, -0.02379515, -0.026508186, 0.0070693525, - -0.0123061165, -8.9025684e-4, 0.06693774, -0.0069589405, -0.06790745, - 0.009629599, -0.047554024, -0.0035767232, 0.004012106, -0.010855882, - 0.029558098, 0.02805014, -0.02566, 0.032904923, -4.9619644e-4, - -0.03897838, -0.015520508, 0.0065170955, -0.010777862, 0.0019572442, - 0.05214148, 0.03823686, 0.026707891, -0.019781537, 0.011596827, - 0.021236187, 0.012677835, -0.027432615, 0.0394999, -0.064773895, - 0.035817146, 0.034359217, 0.010169227, -0.0059856013, -0.00875601, - -0.031065144, -0.003859869, 0.065949276, -0.032140456, 0.02335819, - -0.0036726783, 0.020165093, -0.024444094, -0.0025654323, -0.017175231, - 0.042101644, -0.004782098, 0.026349002, -0.048136834, 0.023489939, - -0.019686569, 0.0024093443, 0.013952568, 0.016032731, 0.008338073, - 0.004761651, -0.032480933, 0.032748565, -0.02117081, 0.018402949, - -0.013902979, 0.014021651, 0.037975382, -0.010273476, -0.024313044, - -0.012433916, -0.020498533, 0.009754933, -0.06260948, -0.012614004, - -0.0074656224, 0.028708406, -0.042435642, -0.036151394, 5.298889e-4, - 0.028746266, 0.021706311, 0.040448166, 0.008087646, -0.04730956, - 0.013549429, -0.006595092, 0.03515342, 0.051990494, -0.029556923, - 0.043317188, 0.020811738, 0.006898251, -0.0017131338, 0.0240644, - 0.008426409, -0.01856625, 0.019457271, -0.008344759, -0.0072755236, - 0.02898564, 0.053673968, 0.0021418307, 0.0858446, -0.027391613, - -0.010570512, 0.011077344, 0.013499747, -0.01610139, 0.030688332, - 0.012230662, -0.02885628, -0.0011555739, -0.008439625, 0.030160125, - 0.08114243, 0.060634837, 0.022427132, -0.042615302, -0.00824942, - 0.0458397, -0.00929385, -0.043471273, 0.02144159, -0.027003106, - 0.020598779, 0.027218273, 0.031520583, -0.029174827, 0.003305709, - -0.0068635144, -0.06813953, -0.04510978, 0.017034154, 0.02364492, - -0.032910433, 0.030998604, 0.034816112, -0.0631803, 0.08407414, - 0.008907252, -0.036457807, 0.05526367, 0.038779873, 0.0037043209, - -0.024829678, -0.014962741, 0.005358688, -0.0074738823, -0.035750873, - 0.0028685895, 0.04508616, 0.025759468, 0.05430459, -0.06163349, - 0.010039252, 0.014884114, 0.017997514, 0.026434513, -0.007045266, - -0.03537111, 0.01513081, -0.031379722, -0.048657183, 0.009496745, - 0.057414953, -0.03037383, 0.046548456, -0.0046732873, 0.014419306, - -0.026332127, -0.017234188, 0.08390941, -0.042294838, 0.02750585, - 0.004615764, -0.0039104302, 0.025124172, 0.005791202, 0.06370253, - 0.030081466, -0.0043391334, 0.00335326, -0.006828349, 0.0090740835, - -0.006893119, -0.034493234, -0.03130423, -0.014446087, 0.009197272, - -0.005966604, 0.019049753, -0.022489958, -0.013506718, -0.010125987, - -0.0075895735, 0.011891013, 0.013108092, -0.06337768, -0.026792675, - 0.01634857, 0.021458395, -0.08679948, 0.0022402182, 0.017193485, - 0.0026838642, 0.028613329, 0.0023374571, 0.044125218, -0.0055105435, - 0.033946935, 0.004684338, -0.021531457, 0.014061321, -0.025943615, - -0.026637549, -0.005888727, -0.0035552084, 0.009543986, -0.049294326, - 0.005441331, 0.012231854, -0.030123673, 0.033648394, -0.047386285, - -6.753328e-4, 0.042278282, 0.009745865, 0.026295673, -0.03825928, - 0.032824043, 0.008980621, 0.04072205, -0.0011246705, -0.032174435, - -0.069375455, -0.028091656, -0.055029593, 0.06457603, 0.0068874527, - -0.014576261, -0.0067229476, 0.038885463, 0.01166467, -0.052687675, - -0.0010707263, 0.032755967, -0.060946092, -0.0087208655, -0.069203824, - -0.016738331, -0.0062640007, 0.034920644, -0.06838508, 0.048189376, - 0.004573377, 0.0050907745, 0.0020472019, -0.013222541, 0.02229159, - 0.010532154, -0.03306516, -0.019832717, 0.0274652, -0.033328783, - -0.00508243, 0.08969521, 0.025549669, -4.7371708e-4, -0.01446465, - -0.010611562, -0.028180571, -0.0033425908, 0.06109721, -0.045728214, - 0.0068897083, 0.029691234, -9.185539e-4, -0.041440345, -0.010636917, - 0.013551252, 0.013793234, 0.006697253, -0.0067863073, -0.026674625, - -0.031883825, -0.008639885, -0.001424028, 0.014725507, 0.00851274, - 0.038800493, 0.034778506, 0.013820717, 0.015141432, -0.055452574, - 0.013324708, -0.014400475, -0.0044954037, 0.0048613166, -0.007762399, - 0.024445508, -0.009821188, -0.046762668, -0.018119643, 0.051201977, - -0.041142955, -0.03720331, 0.04559769, 0.02577954, 0.021590762, - 0.042762116, -0.04885385, -0.02504678, 0.018764894, 0.030165346, - 6.6468806e-4, -0.0019316174, -0.0073083616, 0.04472226, 0.004228434, - -0.010298737, -0.02838307, 0.052133933, -0.037231974, 0.010897847, - 0.020501655, 0.060439937, 0.040441953, 0.005378941, -0.005092407, - -0.020688526, 0.0065999907, -0.057206437, 0.011868862, 0.034436833, - -0.021798372, -0.031786993, 0.044245075, 0.0024160447, -0.036434874, - -0.027271075, -0.05278224, -0.017388498, -0.027671555, -0.0025918428, - 0.02256891, -0.05364146, -0.016312432, -0.013696834, 0.04129473, - 0.047237847, -0.009532498, -0.033372026, 0.04271956, 0.051085368, - -0.025657533, 0.022781901, -0.013274631, 0.06645027, -0.023552196, - -0.017247066, 0.03737097, -0.082858436, -0.023057513, 0.040825024, - 0.020018635, -0.015704371, -0.028124124, 0.03377454, -0.009681332, - 0.017734, 0.015375741, -0.07484816, 0.013939165, -0.034792267, - 0.028808383, 0.0026754488, -0.0272286, -0.070841625, -0.014630059, - -0.0126553755, 0.0046714838, -0.007266495, 0.0089875385, 0.049141496, - -0.012529835, -0.06193005, 0.041675184, -0.04669449, -0.039940167, - -0.050312635, -0.019872552, 4.7238794e-4, 0.021707876, -0.005981078, - 0.013042642, 0.025738033, 0.014508074, 0.008128353, 0.02231419, - -0.07605014, 0.02940587, 0.03767149, -0.024505666, 0.03798264, - 0.01750351, 0.013195746, -0.024624242, 0.018453564, 0.035502117, - 0.054338556, 0.05559992, 0.009905063, -0.054401297, 0.04528684, - 0.03775844, 0.0024624246, 0.059293855, 0.0229334, 0.039566893, - -0.0043333047, -0.013533998, -0.09681673, -0.04676261, -0.007232588, - -0.025941074, 0.0066427654, -0.037570864, 0.0013655219, -0.038033057, - -9.065442e-4, -0.010098445, 0.050590333, 0.036250595, 0.013679379, - 0.0013649585, -0.043899104, -0.038678866, -0.010293604, -0.012215643, - -0.027556343, 0.064689115, 0.055315346, 0.036203735, 0.034130163, - -0.060340103, -0.03630517, 0.037610974, 0.018907852, -0.041188493, - -0.020738587, 0.06400549, -0.044778056, 0.013483936, -0.055315387, - -0.0023928876, -0.012577995, 0.035366252, -0.0076582716, -0.04091748, - 0.015507751, 0.03137933, 0.045678575, -0.060300667, -0.051644523, - -0.0060965028, -0.0061743334, -0.056346543, -0.06240273, -8.4738055e-4, - 0.05795642, 0.02327988, -0.019462023, -0.028156476, -0.04104912, - -0.018328788, 0.0023729585, 0.040153615, -8.539226e-4, -0.0033960238, - -0.0042314935, 0.017637108, 0.04417662, 3.8724355e-4, -0.06875793, - -0.0047188597, -0.012931059, -0.01764851, -0.0034725147, -0.042109463, - 0.005763712, 0.03949863, 0.011654345, -0.029856097, 0.029411277, - -0.0100773135, 0.044762474, -0.0076977, -0.029551849, 0.014978593, - -0.0017845965, 7.1583834e-4, 0.025436938, -0.026301298, -0.011309559, - -0.026094187, 0.0023652315, 0.035252515, -0.021119837, -0.0148319155, - -0.01956603, -0.016352389, -0.028300025, 0.03780192, 0.0017666756, - 0.031874977, -0.05069708, 0.047597036, 0.04732127, -0.016135808, - 0.037537392, 0.014842636, 0.044591118, 0.021853011, 0.034640267, - 0.039988406, -0.018867008, -0.011317169, -0.007370828, -0.0065988624, - 0.0049258824, -0.025253516, -0.020071015, 0.0066935285, -0.008130514, - 0.0039482336, 0.007908119, 0.0050374693, -0.012925565, -4.5086464e-4, - 0.03428392, -0.06879939, 0.028535334, 0.013395337, -0.0021716321, - -0.006191354, -0.022849455, -0.030111207, 0.027755264, -0.028895533, - -0.015086649, 0.0088608945, 0.014450838, -0.013277789, 0.020378426, - 0.02311819, -0.055165786, 0.0037380098, 0.022087138, 0.058865517, - -0.018468035, 5.277789e-4, 0.024351649, -0.039986923, -0.009220691, - 0.026112901, -0.013289477, 0.021903025, 0.0069087264, -0.029037107, - 0.07274701, 0.059530348, 0.00823579, -0.0035304488, 0.0015410287, - 0.02472647, 0.018190533, 0.004405278, 0.044768512, 0.06748134, - 0.05870647, -0.013054587, 0.009685797, -0.0014592488, -0.005803505, - -0.015842516, 0.024821496, 0.0032422978, 0.026244618, -0.010363354, - 0.01701133, -0.016284011, -0.029153794, 0.008735991, -0.015625179, - 0.01128127, 0.0041383756, -9.127777e-4, 0.03302118, 0.0054988624, - 0.006401721, -0.021048682, 0.034401968, 0.04579073, -0.0302603, - 0.007160283, -0.04787406, -0.012229043, 0.0013087918, -0.0035030525, - 0.01695434, 0.037566114, -0.0078067733, -0.052147593, 0.0048760194, - 0.05392684, 0.009818015, -0.018485134, -0.06655256, 0.015561623, - 0.022981845, -0.022100184, 0.015489172, -0.030318657, -0.025705982, - -0.022205822, 0.05630167, -0.0022396496, -0.049716793, 0.03679407, - -0.04481538, -0.03451445, -0.011568424, -0.0010712605, 0.01931678, - -0.009716298, 0.050319586, 0.031205585, -0.022313578, 0.014482778, - 0.01298204, 0.0020531255, -0.020171054, -0.02507983, 0.024665602, - 5.789904e-4, -0.049372192, 0.0086810095, -0.04189496, -0.06408872, - 0.014521627, 0.01154785, -0.06431013, -0.0038348932, -0.033558436, - -0.016390475, -0.023560151, -0.032205306, -0.026688032, 0.029252114, - -0.005099548, 0.017663348, -0.023032665, -0.05829159, -0.057314634, - 0.016122105, 0.037413623, 0.0037974324, 0.03291214, 0.0050830236, - -0.0545112, 0.021061575, 0.00707644, -0.024558973, 0.024038473, - 0.02091516, -0.027854718, -0.028473828, -0.020032458, 0.019155433, - -9.265895e-4, -0.046309903, -0.0020310362, 0.025942525, -0.05001137, - 0.019269811, -0.05879535, 0.017097645, -0.03882638, -0.027790744, - 0.004489304, 0.0318788, 0.008643916, -0.04622547, 0.03756661, - -0.0032036942, 0.059159707, 0.025631553, -0.0037415796, -0.01811796, - 0.039073203, -0.045209303, -0.004173545, -0.012289136, 0.022772828, - -0.032611273, 9.505197e-4, -0.004213811, -0.028949121, -0.068977915, - -0.053514615, -0.02184014, 0.026950974, -0.025692983, -0.008571383, - -0.038305372, 0.05498275, -0.011288632, 0.009850209, -0.03151582, - 0.023664888, 0.024810692, 0.028139863, -0.02536093, 0.0030684168, - -0.0473877, -0.04369363, -0.02357273, -0.0520994, -0.018244134, - -0.016255153, -0.045398872, 0.010702844, 0.007822616, 0.03392344, - 0.002969025, -0.007489025, -0.01972091, 0.016052455, -0.019553332, - 0.08974017, 0.046209447, 0.03599872, 0.038282037, 0.027025659, - -0.033926066, 0.011396164, 0.036703955, -0.016385289, -0.022553807, - 0.0016908831, 0.027788728, -0.038562972, 0.0152904615, -0.021050924, - -0.012111787, -0.03568286, 0.012629017, -0.015542986, 0.031452764, - -0.009870604, -0.0085358415, -0.050620895, 0.05023129, -0.041205876, - 0.012735969, -0.0024884124, 0.029904192, 0.028609212, 0.0079755485, - -0.03943803, 0.03842116, -0.011694301, 0.008973887, -0.06060401, - 0.013286626, 0.0048361653, -0.057572145, 0.016443295, 7.814737e-4, - 0.049152117, 0.014031442, 0.003299376, 0.02733153, 0.0016633584, - -0.0065357434, -0.045436587, 0.0058759325, 0.02580566, -0.018498918, - 0.043522924, -0.054481197, -0.007511944, -0.041633304, 0.011463889, - 0.03953063, -0.020399937, 0.03392442, -7.937599e-4, 0.014708832, - -0.031236665, 0.013878964, 0.0248017, 0.017056663, -0.015840424, - 0.025872724, 0.0053911745, 0.029773667, -0.03300952, -0.040092014, - -0.033409316, -0.034036525, -0.02362617, 0.044449974, 0.0039671534, - 0.007068367, 0.05339533, -0.0038976467, -0.009222335, 0.004164348, - -0.042347047, -0.046347063, -0.03925707, -0.008320472, 0.025006726, - -0.0040446897, -0.037122432, -0.050952878, -0.02817706, -0.016317545, - 0.048196707, -0.045611896, 0.02476867, 0.00446831, 0.024781661, - -0.008404609, -0.015312678, 0.010153153, -0.035634235, -0.033867616, - 0.04218914, 0.018113187, 0.02042439, -0.025418269, -0.06009798, - -0.014500413, 0.018299144, -0.014447785, -0.029474238, 0.060019523, - -0.016083075, -0.021027131, 0.0015051283, -0.034815915, -0.012125104, - 0.029064294, -0.026707003, -0.0473501, 0.056242455, -0.037510414, - -0.008485493, -0.0395812, 0.004425225, 0.022395112, -0.061537698, - 0.007257641, -0.0554779, 0.022596266, 0.008792298, 0.04036774, - -0.045129556, 0.0015416135, 0.039694276, -0.008088187, -0.005340686, - 0.00925402, -0.016999373, 0.011757622, 0.011226616, -0.0057572597, - 0.009710631, 0.035021853, -0.019338824, -0.07845587, -0.041671816, - 0.004595048, -0.0132209845, 0.030168992, -0.019051785, -0.023049004, - 0.01126523, 0.015558162, -0.020828849, 0.025353441, 0.045919523, - -0.018252343, -0.02077785, -0.018841516, -0.024189202, 0.03086453, - -0.0073847524, -0.053459834, 0.062333826, 0.025348704, 0.013818491, - 0.002727693, 0.022771472, -0.005972541, 0.0033961348, -0.0095143495, - -0.0022857357, 0.0016632637, 0.0010167169, -0.03125842, -0.023067353, - 0.008481986, -0.049773432, 0.014169269, -0.009308117, -0.054874286, - -0.03310588, -0.047353394, 0.018016692, -0.044098508 + "source.genres.concepts.id" : [ + "lejca71h", + "lksf0yuj" + ], + "source.genres.concepts.sourceIdentifier" : [ + "d4QLaGJW1M", + "33Lvz6nnqJ" + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.024940599, + 0.0080954945, + 0.031152552, + 0.014731155, + -0.0012850136, + 0.0162037, + -0.016445521, + 0.020476548, + -0.028575478, + -0.010937785, + 0.0053962143, + 0.008150457, + 0.019761194, + -0.015505288, + 0.0032643804, + 0.01915914, + -0.009625013, + 0.0022609185, + -0.0075739245, + -0.0031827032, + -0.014347573, + -0.022391481, + 0.016095698, + 0.0017129708, + 0.0088537345, + 0.019310165, + -0.015235776, + 0.011255569, + 0.021227134, + 0.017490821, + 0.0031644371, + -0.013700016, + 0.002795035, + 0.005846893, + 0.0149166025, + 8.61967E-4, + -0.00962122, + -0.01112062, + -0.016209327, + 0.024906194, + 0.0014097549, + -9.0797985E-4, + 0.004688512, + -0.0023651568, + 0.005987455, + -0.014797876, + 0.013932719, + -0.008089951, + 0.001086534, + -0.003325947, + 0.02019537, + -0.022593698, + 0.0068382174, + 0.007980796, + -0.005222575, + 0.0049208105, + 0.012470468, + 0.0031856718, + -0.008524246, + 0.007529735, + 0.018855607, + -0.017294567, + -0.009878768, + 0.005261994, + -0.0119160935, + 0.01109927, + 0.0016965901, + -0.00408986, + -0.0025295431, + -0.019363685, + 0.0025057776, + -0.04002249, + 0.027802797, + 0.020945447, + 0.00873904, + 0.018782906, + 0.021913158, + -0.010422837, + 0.005583511, + 0.010458136, + 0.016652714, + -0.014691065, + -0.008907342, + 0.009071785, + -0.0034309134, + -0.010502772, + -0.0050306744, + -0.0013562826, + -0.0083949715, + 0.007543853, + 0.007912873, + -0.021285059, + 0.012322014, + 0.02602209, + -0.009296581, + -0.016781181, + -0.0022564004, + -0.0056127165, + -0.007469775, + 0.021033704, + 8.747877E-4, + 0.016615285, + 0.016267989, + 0.027158352, + 0.014000889, + 0.0052877287, + -0.02296549, + -0.013379207, + 0.011327304, + 0.017080348, + 0.013331884, + -0.019803103, + -0.020978084, + -0.0055257343, + 4.15516E-5, + -0.015561675, + 0.018223545, + 0.010040053, + 0.020259202, + 0.010623824, + 0.0073713944, + 0.010019385, + -0.031835526, + -0.0063245296, + 0.016178329, + -0.012864829, + -0.016028332, + -0.021065725, + -0.022670178, + -0.0055490597, + -0.014972818, + 0.010928561, + 0.0015131135, + 0.018379591, + -0.036054887, + 0.004418179, + -0.0011343695, + 0.0027510035, + -0.008409539, + 0.012688884, + -0.029601295, + -0.0045669344, + 0.012099192, + 0.02396213, + -0.021753985, + -0.009508835, + 0.024576215, + -0.017292887, + 0.009732744, + 0.005238574, + -0.011286461, + 0.01346816, + -0.002711265, + -0.012975044, + -0.005874906, + -0.011724803, + 0.011586124, + 0.006851825, + -0.01754878, + -3.2985126E-4, + -0.0038121436, + -0.018771473, + 0.028680164, + 9.3234866E-4, + -0.006835657, + 0.031537283, + -0.024055876, + -0.0011910052, + -0.019086698, + 0.010017772, + -0.007968387, + 0.014768758, + -0.006217396, + -0.006039518, + 0.0056008715, + -0.031823333, + 0.011634436, + -0.030914104, + 0.008662963, + -0.008775843, + -0.018032676, + 0.007399214, + -4.5118103E-4, + 0.017136753, + 0.004816271, + -0.0075178687, + 0.019804519, + 0.014191629, + -0.003697662, + 0.0082085235, + -0.016642295, + 0.009077973, + 0.009346316, + 0.00582289, + 0.01842255, + -0.0022211557, + -0.017397402, + 0.008502731, + -0.019108491, + -0.015428382, + 0.04345004, + 0.015304316, + -0.0047167414, + 0.014032424, + -0.0028433416, + -0.0061853738, + -0.019775901, + -0.005198713, + -0.003131216, + 0.03915195, + 0.026343191, + -0.006749787, + -0.010148197, + 0.014181731, + 0.0032086323, + -0.0125234425, + 0.0028018313, + -0.003882494, + -0.003206581, + 0.0052007823, + -9.971309E-4, + -0.012723343, + -0.0055785077, + 0.0040074615, + 0.026641387, + -0.008168824, + 0.0059275287, + -0.01109862, + -0.012592423, + 0.0026134453, + -0.0014091133, + 1.4413976E-4, + 0.017936137, + 0.00364186, + 0.016309954, + 0.0030372548, + 0.006929473, + -0.035677787, + 0.03649583, + 0.0012230959, + -0.009610508, + 0.011418753, + 0.01629401, + 0.00804395, + -0.013005901, + 0.022134317, + -0.018017137, + 0.0098710535, + 0.019041607, + 0.009620034, + -0.008928099, + -8.716144E-4, + 0.0010861788, + -0.007496226, + -0.005111245, + -0.012647851, + 0.007778758, + 0.01678597, + 0.0071205567, + -0.0011346822, + -0.021486185, + -0.006309468, + 0.008617488, + 0.040458135, + 0.007759709, + 0.0017846072, + -0.016361734, + -0.00915304, + 0.012865413, + 0.0029784937, + 0.024050992, + -0.002265875, + -0.015503715, + -0.010987467, + 0.03616709, + -0.009766229, + 0.0049666073, + -0.013848768, + 0.0059664384, + 0.009526974, + 0.034551833, + -0.007356179, + 0.007403164, + 0.01331396, + 0.0013597711, + -0.005781048, + -0.009987505, + -0.014337724, + 0.005471339, + -0.030963391, + 0.030888075, + 0.015805395, + -0.020708097, + 0.019933188, + 0.03813567, + 0.0012147654, + -0.016241608, + -0.017562306, + 0.019163549, + 0.0014220375, + -0.0046735825, + -0.008994536, + 0.0028069552, + -0.02107091, + 0.012602465, + -0.009734335, + 0.0027367142, + -1.8367448E-4, + 0.0056503387, + -0.008133723, + 0.04746739, + 0.018622447, + -0.041718405, + -0.029959545, + -0.011175784, + -0.0428075, + -0.007770644, + -0.015444942, + -0.011590144, + -0.027083445, + 0.0100845145, + 0.014810935, + -0.036997583, + -0.02218034, + -0.022850918, + 0.010758051, + -0.010685372, + 0.028433701, + -0.036970165, + -0.005700383, + 0.014737409, + 0.009730927, + -0.006575636, + 0.014558128, + 0.009817196, + 0.0027229807, + -0.03830734, + -0.0026584268, + 0.019165594, + 0.005113976, + -0.017248487, + 0.03472988, + 0.047623675, + 0.013574153, + -0.015844593, + -0.009816289, + -0.0041223685, + -0.002198779, + -0.013449483, + -0.0028306872, + 0.0013331965, + -0.0040593324, + -0.007010631, + 0.007716488, + 0.0022723852, + 0.036390536, + -0.0029954296, + -0.023063939, + 0.030961739, + -0.011395562, + 0.008674879, + 5.2159996E-4, + 0.010088329, + 0.0102131, + 0.0065410114, + 0.015170161, + 0.012253767, + -0.005649265, + -0.013239613, + -0.010814356, + 0.010769871, + -0.014032541, + -0.014499676, + -0.004934965, + -0.027622232, + 8.363415E-4, + -0.011636585, + 0.0011493546, + 0.016643029, + -0.006251104, + 0.006620539, + 0.009618143, + 0.005527063, + -0.031744752, + 0.015718259, + -0.024649292, + 0.019013809, + -0.014549664, + -0.00363528, + -0.004848511, + 0.004651898, + -0.028811207, + 0.027701221, + 0.013977677, + -0.016012304, + -0.0022471922, + -0.02828286, + 0.030451283, + 0.017111078, + -5.251168E-4, + -0.004666425, + 0.008856669, + 0.001950797, + -0.010190664, + -0.024237951, + 4.354601E-4, + -0.024905916, + 0.0023894764, + -0.006491571, + 0.0027568059, + 8.3944673E-4, + -0.0069154734, + 0.024916606, + 0.0046632974, + 0.014110442, + -0.021334369, + 0.036428303, + -0.0013699525, + 0.011285903, + -0.0017304196, + 0.016378857, + 0.010752093, + -0.03677082, + 0.004829668, + 3.9713838E-4, + 0.00851711, + 0.013239664, + -0.0045623295, + -0.0067398213, + 0.018511524, + 0.0060893185, + -0.0032094393, + 0.009049618, + 2.808239E-4, + 0.007301608, + -0.0018756017, + 0.0013685573, + -0.0012522027, + -0.020353584, + -0.0074766637, + -0.0068924865, + 5.67875E-4, + -0.0043681487, + -0.0014389617, + -3.4523927E-4, + 0.029806538, + -0.013797194, + -0.008082986, + 0.0042886673, + 5.382862E-4, + 0.012220525, + 0.007863061, + 0.0013435681, + -0.022461856, + -0.022805966, + -0.008454824, + -0.017611519, + -0.006906039, + -0.02124187, + 0.00287544, + 0.031201547, + 0.009864758, + 0.011630662, + -0.022485157, + 0.0023422097, + 0.033324946, + -0.008530899, + 0.014866302, + -0.01706779, + 0.01585711, + -0.0013608931, + -0.029410305, + 0.0038763885, + -0.013920846, + -0.02570372, + 0.025560139, + 0.003788184, + 0.007874599, + 0.0018703146, + 0.015241816, + -0.019893289, + -0.033697817, + -0.0022820893, + -0.0134690665, + -0.009969632, + 0.0020081135, + 0.017065205, + 0.009075397, + -0.017204292, + 0.003892031, + 0.017846312, + -0.012866259, + -0.002986809, + 0.026207196, + 0.015280808, + -0.003751002, + 0.008099774, + -0.005648627, + -0.0032106775, + -0.0021204515, + 0.02316672, + -0.020215224, + -0.0034369829, + -0.0013067381, + -0.005388076, + 4.1930997E-4, + -0.014116277, + -6.465757E-4, + -0.009045492, + -0.013098961, + 0.009658904, + -0.027606754, + -0.024396589, + -0.014836026, + -0.007033024, + -0.022246018, + 0.010991306, + -0.0061834864, + -0.007326967, + -0.005670121, + -0.011361675, + -0.014727513, + -8.169825E-4, + -0.0026709922, + -0.00733849, + 0.024306139, + -0.024695365, + -0.025347086, + -0.012583909, + -0.012013654, + 0.008628067, + 0.014359618, + -0.005707923, + 0.022974147, + -0.020971043, + 0.006630819, + 0.0025198397, + -8.153068E-4, + -6.105461E-4, + -0.009694592, + 0.010293607, + -0.01690043, + -0.005556575, + 1.0320047E-4, + 0.037180666, + -0.0023680106, + -1.4640536E-4, + 0.0016948247, + 0.026953664, + 0.005293341, + -0.030549314, + 0.0036855221, + -0.026772512, + -0.004241722, + 0.004059527, + 0.0390286, + 6.2944E-4, + -0.0073318123, + -0.011726422, + -0.012345714, + 0.031262398, + -0.013574056, + -0.015753409, + 0.003080283, + -9.3879696E-4, + 0.017377265, + 0.011693911, + 0.014427332, + -0.033181842, + 6.759024E-5, + -0.0025602814, + 0.013665643, + -0.0056158467, + -0.014610555, + 0.023485817, + -0.0059198593, + 0.01493749, + 0.0032659401, + -0.0038228277, + -0.010199833, + 0.0060137347, + -0.019062094, + -0.005848185, + 0.022738101, + 0.002479265, + -0.0018070444, + -0.00692302, + -0.01935248, + 0.008838427, + 0.015315816, + -0.018993622, + 0.012877896, + -0.019900737, + 0.010732612, + 0.004541735, + -0.0030514894, + 0.0045751017, + 0.0025856483, + 0.02863129, + -6.5276446E-4, + 0.010216344, + 0.028615946, + 0.032279924, + 0.012480637, + -0.0017818896, + -0.022469878, + -0.009363, + 0.004119621, + 0.023170142, + 0.0070484024, + -0.018465834, + -0.015223949, + 0.010784249, + -0.015468399, + -0.021278346, + -0.015519679, + -0.018118007, + 0.0044166395, + 0.04114601, + -0.008827279, + 0.0328039, + -0.019151209, + -0.010596604, + -0.019321851, + 9.4120676E-4, + 0.015876317, + -0.024484286, + 0.010036428, + 0.022206036, + -0.0067218635, + 0.0036665946, + -0.005247532, + 0.014569434, + 0.017015085, + -0.0039909445, + 0.009429755, + 4.085953E-5, + -0.009243789, + -0.048348937, + -0.016169835, + -2.6098933E-4, + 0.007275636, + -0.0044533685, + 0.019071242, + 6.41741E-4, + -0.028891962, + 0.02202042, + 0.012951942, + -0.0064042993, + -0.0025663136, + 0.014321258, + 0.006890472, + 0.02692741, + 0.018668557, + -0.0014286664, + 0.012016327, + -0.010181668, + 0.012431683, + -9.044562E-4, + -0.014478849, + 0.014162392, + -0.024716131, + 0.014537862, + -0.007920286, + 0.039401323, + -0.010506702, + -0.031530492, + 0.017730381, + 0.011059556, + 0.010253589, + -7.917919E-4, + 0.004210983, + -0.0023005626, + -0.0033716334, + -0.00461665, + -0.018209012, + -0.0042081694, + 5.044877E-4, + -0.012244489, + 0.013674022, + -0.019037984, + 9.867691E-4, + 0.0067275157, + 0.009423963, + 0.0032346263, + 0.008959552, + 0.011743273, + -0.019749844, + -0.0020942756, + -0.007762634, + -0.0039058689, + 0.0074683568, + 0.032646284, + -0.0033564633, + 0.008505419, + 0.014440007, + 0.006918023, + 0.011667289, + -0.023088103, + -0.015135942, + -0.015461081, + -0.020155404, + -0.016243802, + 0.008082333, + -0.020698523, + -0.012720037, + 0.0101797385, + 0.0027401105, + 0.026607206, + 0.01564795, + -0.0020038332, + 0.026154978, + -0.012852744, + 7.890579E-4, + -0.0020742067, + -0.0062634507, + -0.004125831, + 0.010611234, + -0.0039527747, + 0.0069649015, + 0.025355667, + -5.181814E-4, + 0.004849455, + -0.017253235, + -0.024666911, + -0.015760545, + 6.176293E-4, + -0.010994284, + 0.0019903302, + 0.014985909, + -0.010298066, + -0.0040976144, + -0.011131778, + -0.021665148, + -0.018233333, + 0.021911228, + -0.008752264, + -0.01552565, + 0.0190559, + -0.024446724, + 0.0069569307, + -7.5652864E-4, + -0.0012064471, + 0.004265706, + 0.01761433, + -0.020641068, + 0.011824784, + 0.00503999, + -0.025028672, + 0.00772954, + 0.007747735, + 0.0036089926, + 0.026334532, + -0.021127434, + -0.0011908809, + 4.863858E-4, + -0.013245802, + -0.008235612, + 0.0042034197, + -0.01699811, + 0.014362449, + 0.021795278, + -0.005117159, + 0.013419793, + -0.0075465273, + -0.011543613, + -0.0068730204, + -0.014693518, + -0.017980028, + -0.028752115, + 0.03322196, + -0.026217677, + -0.0011224562, + -0.009876451, + -0.02180698, + 0.0037607367, + 5.087332E-4, + -0.029752975, + 0.013564285, + -0.0104788365, + 0.011179951, + 0.0032150839, + -7.036948E-4, + 4.981926E-4, + 0.0010937833, + 0.00500187, + 0.0036667788, + 0.021109506, + 0.0033062026, + 0.004707874, + 0.01120706, + -0.023932083, + -0.009985722, + -0.023034556, + -0.004093366, + 0.0037841487, + 0.0011134116, + 0.006491849, + -0.007005784, + -0.0036780583, + 0.013592836, + -0.010442221, + 0.007868661, + 0.0029743903, + -0.010952237, + 0.022208666, + -0.0015944105, + -0.0016801647, + -0.01593086, + -0.015966699, + 0.010951404, + -0.021043846, + -0.011627387, + -0.0033233254, + 0.0033523024, + 0.008876687, + -0.0060232943, + 0.010081275, + -0.015725944, + -0.02850694, + 0.015365215, + -0.005852697, + -0.012019102, + -6.8992365E-4, + -0.017288644, + 1.0325859E-5, + 0.008002859, + 0.009666664, + 0.022229228, + 0.016241172, + 0.009301135, + -0.004538779, + 0.040708903, + -0.035684556, + 0.020434374, + 0.0053601805, + 0.04077312, + -0.008262442, + -0.028895674, + -0.0064101764, + -0.016831407, + -0.009327484, + -0.012129818, + 0.009332125, + -0.0063746558, + 0.02910757, + 0.0048542344, + 0.011566221, + -0.008351404, + -0.0011991635, + 0.007549572, + -9.4676885E-4, + -0.003296506, + -0.0052097044, + -0.016856598, + -0.01830717, + -5.059369E-4, + 0.005615286, + -0.012148709, + -0.026383579, + -0.008772612, + -0.013789993, + 0.016591955, + 0.0046407296, + 0.0024436545, + -0.010391106, + -0.005773447, + 0.009652607, + -0.010002826, + -0.0056541874, + -0.0072483206, + -0.021971397, + 0.015216333, + 0.0035849903, + -0.021492397, + -0.009877013, + 0.01612516, + -0.011204875, + -0.010773839, + 0.0011474643, + 0.017299267, + -0.007825362, + -0.016807318, + -0.032169707, + -0.0032383327, + 0.005133601, + -0.013029596, + 0.0146759, + 0.011203939, + -0.0010377265, + 0.014204692, + -0.0070064357, + -0.0034605642, + -0.027844034, + 0.01922777, + -0.024677051, + 0.0060483892, + 0.02182448, + -0.0051927306, + -0.013443404, + 0.014264771, + 0.0072745048, + 0.0031906446, + 0.0018311908, + -0.012484839, + -0.0051211533, + -0.0114839, + 0.013935658, + -0.021198161, + 0.0138729215, + 6.936924E-4, + -0.0013629538, + -0.0073435367, + -0.0048307623, + 0.0073160934, + 0.001530767, + -0.015960164, + 0.012363582, + 0.0044763386, + -0.020423926, + 0.012599795, + 0.014800004, + 0.012422075, + 0.0028040055, + -0.03160732, + -0.027857823, + 0.004077186, + -0.006850883, + 0.023176782, + 0.016953778, + -0.007659224, + 0.0017107081, + 0.008214779, + -0.011113558, + -0.0015175277, + -0.012841918, + 0.017805248, + -0.0034672043, + -0.012670215, + -0.002695868, + -0.0012057237, + 0.0069490736, + -0.0016257539, + -3.3123433E-4, + 0.0031221088, + -0.0060028364, + 0.020044781, + 0.034204233, + -0.0091422405, + 0.0030986082, + -0.0059833955, + 0.0033806742, + -0.0044504637, + 0.008807046, + -0.0134177245, + -0.005340404, + 0.02024332, + -0.010017209, + 0.005672939, + -0.002522333, + 0.019527232, + -0.013952712, + 0.02613423, + -0.009859733, + 0.0016438878, + 0.0012738656, + 0.017880302, + -0.018938897, + 0.012085236, + 0.023572912, + 0.0017105871, + 0.002609783, + 0.008443041, + -6.2557356E-4, + -7.260951E-4, + 0.010935426, + 0.013692144, + 0.001353434, + -0.017516503, + -0.0012049112, + -0.0016870055, + 0.0012721481, + -0.001076174, + 0.03779579, + -0.028895786, + 0.017643575, + 1.6528524E-5, + -0.009778707, + -0.017563434, + -0.016835688, + 0.013722724, + 0.027525092, + 0.017330684, + 0.013104333, + -0.02335087, + 0.031030951, + 0.022157794, + -0.0078278845, + -0.028091336, + 0.0012410451, + -2.195987E-4, + -1.9573302E-4, + -0.010146291, + -0.011165107, + -0.009425837, + 0.029478364, + -0.008644064, + 0.00684454, + -0.01193774, + -0.012445745, + -0.02032938, + 0.017213756, + 0.012586236, + 0.016150177, + 0.026470615, + 0.0122976415, + 0.0046093366, + -0.004786223, + -0.009319868, + -0.020487761, + -0.0060012843, + -0.017034413, + 0.0054274565, + -0.02867764, + 0.012011256, + -4.3115E-4, + -0.015412226, + -0.031963605, + 0.012832208, + -0.023327494, + 0.004482556, + -0.04791971, + -0.009839227, + -0.020723134, + 0.037746735, + -0.044913795, + 0.0011648267, + -0.02200245, + 0.023501635, + 0.021652117, + -0.014925045, + -0.012007844, + -0.0067321216, + 0.008223164, + -0.008365003, + 0.010800893, + 0.013130988, + 0.017409896, + 0.025862416, + 0.0013125513, + 0.023836456, + 1.5411053E-4, + -0.023558335, + 0.008446279, + -0.018255683, + -0.031032328, + -0.005707072, + -0.024384914, + -2.3935444E-4, + 0.008971105, + -0.005175536, + 0.0050492967, + 0.0059356713, + -0.01127195, + -1.12191585E-4, + -1.9134609E-4, + 0.008948127, + -0.009404132, + -0.02331114, + -0.005927677, + 0.008849588, + -0.003731975, + -0.005431432, + -0.019720746, + -0.031903762, + -0.0013139077, + 0.0070508947, + 0.007913094, + 0.0053240126, + 0.004695508, + -0.010094947, + 0.01565359, + 0.0058893864, + 0.008024132, + 8.0618745E-4, + 0.013433904, + 0.0022990315, + 0.0057209977, + 0.0019567024, + -0.019952217, + -0.017966365, + 0.008181415, + 0.033921886, + -0.0039926716, + 0.0034357875, + 0.015062665, + -0.017500412, + 0.0049524987, + -0.009578534, + -0.024181591, + -0.024739204, + -0.016347306, + -0.0055808416, + -0.006512799, + -0.012325357, + 0.018309012, + 0.0046152296, + 0.0029540097, + -0.0018478984, + 0.010004228, + -0.02048398, + 0.0058530215, + -0.01895567, + 0.019547159, + -0.012903028, + -0.015896063, + 0.028479079, + -0.015944613, + 0.006587364, + 0.014580497, + -0.023099707, + 0.0060351477, + -0.019738864, + -0.018219372, + -0.0264006, + 0.0037930217, + -0.029147984, + 0.0264086, + -0.008326266, + 0.0148153035, + 0.002053759, + -0.024549892, + -0.012696277, + -0.0012781975, + -0.025607364, + -0.02568353, + 0.022633912, + -0.01088004, + -0.009024227, + 0.015283617, + 0.011489699, + -0.009175136, + 0.025435267, + 0.010044286, + -0.0038123825, + 0.011269111, + 4.895566E-4, + 0.0238908, + 0.0028492988, + 0.0072769755, + 0.022516826, + 0.00476532, + 0.0059523713, + -0.007805132, + 0.0016669056, + -0.014902457, + -0.0029190143, + -0.0072167157, + -0.015496768, + 9.613158E-4, + 0.01637937, + -0.019484462, + 0.016779946, + -0.006349064, + 0.012555463, + 0.007673483, + -0.01236407, + -3.4497297E-4, + 0.033861287, + 0.00697078, + -0.029658323, + 0.012912313, + 0.0077058976, + 0.03148371, + 0.027661823, + 0.006266822, + 0.01150129, + 0.008720532, + 0.00125082, + 0.013843996, + 0.0069147483, + -0.013158234, + 7.4069697E-4, + -0.030344818, + 0.014234389, + 0.036006376, + 0.008890154, + 0.018386327, + 0.0045361775, + -0.008355282, + -0.008350573, + 0.022437856, + -0.003218902, + 0.004852012, + -0.019517392, + -0.03490973, + -0.003102531, + -0.038351532, + 0.010987206, + 0.004607691, + 0.009079725, + 0.008206232, + -0.04140097, + -0.011302668, + 0.0143363485, + -0.03927046, + 0.02313306, + -0.0013649288, + 0.0024285845, + 0.021854237, + -0.021670058, + 0.010377502, + 0.00965767, + 0.035678368, + 0.004316191, + -0.0077116, + 0.013640095, + 0.0011177633, + -0.024628708, + 0.01043898, + -0.014324022, + -0.0012127546, + 0.009137914, + -0.031838175, + -0.011229407, + -0.0071512456, + 0.033769116, + 0.0026321202, + -0.031443816, + -0.01403612, + 0.010879658, + 0.0065550804, + 0.019757217, + -0.012433278, + -0.0010251993, + -0.018408962, + -0.01961222, + -0.02360931, + 0.018719992, + 0.0024422798, + 0.010270369, + -0.0050701713, + -0.015854042, + -0.013110788, + 0.023663059, + 0.021880018, + -0.011328401, + -0.012835092, + -7.39464E-5, + 0.029662982, + -0.0014648082, + -0.01763273, + 0.03019765, + 0.0050850925, + -0.0050414605, + 0.0037373558, + -0.0042445823, + -0.022800937, + 0.009983873, + -0.0025355145, + 0.0200609, + -0.03318639, + -0.026857944, + -0.020436095, + -0.017810542, + -0.010584002, + 0.00260093, + 0.024304733, + 0.0030998457, + 0.013110194, + -0.0024683704, + 0.002101082, + 0.0139400475, + -0.018712537, + 0.00248163, + 1.5041331E-4, + -0.014651921, + -0.027378833, + 0.015061622, + -0.0023277123, + 0.001891817, + 0.0073091947, + -0.0150713455, + 0.0061060083, + -0.011819838, + 0.0027904022, + 0.011959117, + 0.0039314283, + 0.007982521, + 0.02141366, + 0.0011457875, + 0.008834142, + 0.02511647, + -0.0032568232, + -0.013262618, + -0.01971607, + 0.0054672495, + -0.014744828, + 0.028453227, + -0.003312869, + -0.0142692365, + -0.0042519523, + -0.0020029948, + -0.024266088, + -0.002485085, + 0.0018638164, + 4.241368E-4, + 0.008867974, + 0.009889047, + -0.016439712, + -0.008769607, + 0.021718562, + -0.0016105102, + 0.022536334, + -0.02506444, + -0.019482808, + 0.0075984835, + -3.6088118E-4, + -0.0078938445, + -0.043705896, + -0.013008342, + 0.01860366, + 8.2111073E-4, + 0.028287834, + 0.008525788, + 0.013894342, + 0.008721049, + -0.008325566, + 0.0093193175, + -4.7923106E-4, + -0.015104758, + -0.030224983, + 0.014929143, + 0.013150561, + -0.03745155, + -0.016304715, + 0.021221323, + -0.008878134, + -0.012097947, + 0.026192598, + -0.004548763, + 0.014189854, + 0.009175537, + 0.018032664, + -0.01870294, + 0.015445796, + 0.009762954, + -0.0024111874, + -1.047914E-4, + -0.012733087, + -0.0019481411, + 0.01620294, + -0.01882338, + -0.020966768, + 0.017092193, + -0.0148317525, + 0.0076751434, + -0.0075639826, + 0.0055089924, + -0.008537282, + -0.017326536, + 0.035027336, + 0.0027870368, + -0.022291688, + -0.01290572, + 0.009789422, + 0.019513138, + 0.0032894486, + -0.0017711602, + -0.010184758, + -0.013238223, + 0.022065636, + -0.031311717, + -0.01257133, + -0.015354578, + 0.024867145, + 0.019836515, + 0.00952087, + -0.018056571, + -0.0046178163, + 0.021305917, + -0.0060079778, + -0.013228829, + 0.011955517, + 0.026472893, + 0.0054299566, + 0.038124412, + 0.006279515, + -0.004446106, + -0.01514031, + -0.021086197, + -0.0028623366, + -0.013093995, + -0.014572754, + 0.0069496892, + 0.020418806, + 0.014772723, + 0.01582461, + 0.0088930875, + 0.025213918, + -0.014510252, + -0.0020608923, + 0.007509486, + 7.1713113E-4, + 0.00989952, + 0.008988032, + -0.020602096, + 0.020509047, + -0.014640799, + 0.017432638, + 0.012168905, + -0.020399332, + 0.03386641, + -0.003635033, + -0.00668069, + 0.0041418024, + 0.0037266694, + -0.020928333, + -0.01599203, + 1.5376163E-4, + -0.019922046, + 0.008575742, + -0.014308207, + 0.0054115755, + -0.00622625, + -0.019378252, + -0.009343924, + 0.026808318, + -0.016210077, + 0.029380318, + 0.009845313, + -0.010741321, + -0.022109386, + 0.008660774, + 0.006486067, + -0.03540599, + 0.0074431095, + -0.0026680767, + 0.0055611567, + -0.008561126, + 0.037430063, + -0.01190879, + -0.024210075, + -0.030446438, + -0.03439826, + -0.006197201, + -0.0019594822, + 0.0026913432, + -0.0133250365, + -0.006490706, + 0.012075124, + 0.0036218637, + 0.013257626, + -0.01663659, + 0.020392774, + -0.015849631, + 0.008755453, + 0.0036279466, + -0.0015151724, + 0.006034947, + 0.0019020074, + 0.0031060418, + -0.017291568, + 0.023475394, + -0.0121344235, + 0.0016605078, + 0.022260088, + -0.015511591, + 0.0013658934, + -9.3891396E-4, + -0.0229602, + 0.007315857, + -0.018464025, + 0.008071991, + -0.0012985017, + 0.0039029468, + -0.024066659, + -0.0026653963, + 0.014104458, + -0.017135873, + 0.005108604, + 0.011221033, + 0.019707715, + -0.0014609054, + -0.0056900694, + 0.0033689588, + -0.0013092251, + 0.011892603, + 0.010447128, + 0.010818382, + -0.029025223, + -0.0018880732, + -0.014588184, + -0.02088247, + 0.011560209, + -0.013202954, + 0.0017791437, + -0.0030828658, + 0.0030472574, + 0.0025141514, + -0.019408515, + 0.016940009, + -0.013177887, + -0.019396566, + -0.028856298, + -0.023484008, + 0.0037863834, + -0.009428776, + -0.011395981, + -0.01142946, + -0.0041627255, + 0.043671492, + -0.0059580593, + -0.0038406043, + 0.001446203, + -0.01805067, + 0.007620374, + 0.010723404, + 0.0129815005, + 0.011012111, + -0.032608073, + 0.015642509, + 0.002260868, + -0.006827663, + -0.028682912, + 0.011901667, + -0.030704018, + 0.0060195494, + -0.014548108, + -0.021193558, + 0.018880328, + 0.013896115, + -0.02008263, + -0.01094617, + -0.029057885, + -0.017151728, + -0.0059474725, + -0.0013146817, + -0.004957215, + 0.007343925, + -0.004204701, + -0.010900252, + -0.013600969, + -0.0067948755, + -0.017345695, + 0.011700824, + 0.018500857, + -0.0070937886, + -0.022407817, + -0.021708304, + 0.003719736, + 0.0013415762, + 0.013301907, + 0.02282732, + -0.011790109, + -2.6061427E-5, + 6.437017E-4, + -0.010199339, + -0.025975803, + 0.010875273, + 0.009656863, + 0.024925867, + 0.018706486, + -5.955035E-4, + -0.0124698095, + 0.0062856427, + -0.005357274, + -9.3883835E-4, + 0.02191698, + 0.014894264, + 0.013590616, + -0.026784025, + 0.0035118707, + 0.0111220265, + -0.006762385, + -0.0052269627, + 0.0233195, + 0.0014162748, + 0.00870589, + -0.008001414, + -0.009486861, + -0.019990353, + -0.013500904, + -0.0022222158, + -0.012525115, + 0.026625158, + 0.002455299, + 0.004940313, + 1.5840244E-4, + -0.029523876, + 0.011255947, + 0.0014241989, + 0.016483216, + -0.0115169035, + -0.013377235, + 0.018133312, + -0.0050501106, + -0.012395197, + 0.008747649, + -0.007441453, + 0.029799173, + 6.770246E-4, + -0.009812647, + -0.0329339, + 0.006234026, + -0.0047442364, + 0.007987505, + -0.021979101, + -0.01285687, + -0.007824522, + 0.005764742, + -0.017046202, + 0.013514671, + -0.004321394, + -0.010565844, + 0.009060288, + 0.041328616, + -0.009466161, + 0.008419416, + 0.025416525, + 0.027210971, + -0.0049567046, + 0.009023858, + -0.008995245, + 0.0074414643, + -0.031573184, + 0.028993484, + 0.010258137, + 0.0043457616, + 0.026157495, + -0.03549976, + -0.02946322, + -0.0066202967, + 0.011208668, + 0.0052864654, + -0.026965143, + 0.023567738, + 0.0139909685, + -0.035315666, + 0.0012710852, + -0.030321043, + -0.025951976, + 0.013360523, + -0.01138097, + -0.0020883225, + -0.015667025, + 0.01722951, + -0.0013961152, + -0.007377312, + 0.011948965, + -0.010704739, + 0.01994055, + -0.0070154807, + -0.004972116, + 6.994136E-4, + 0.004078566, + -0.0027698888, + -0.008492365, + -5.1121204E-4, + 0.026032453, + -0.016174244, + -0.022702523, + -0.033018198, + 0.007640021, + 0.019363603, + -0.011074728, + 0.0052483575, + -0.017449174, + 0.003692891, + 0.0034982227, + -0.020592446, + -7.945442E-4, + 0.009406057, + 0.013519009, + 0.0142050525, + 0.017539706, + 0.015998876, + -0.014693394, + -0.007198962, + 0.025598818, + -0.011996371, + -0.007596481, + 0.005844009, + 0.031689096, + -0.041445807, + 9.054864E-4, + 0.019304603, + 0.012484734, + 0.022084797, + 0.0016691618, + -0.0032030682, + 0.008068761, + 0.006929536, + -8.370686E-4, + 0.008243753, + 0.0059355856, + 0.005168186, + 0.010155903, + 0.014432407, + -0.015490922, + -0.014368416, + 0.016325183, + 0.010496223, + -0.004660305, + -9.5729216E-4, + 3.9205642E-4, + -0.021624599, + 0.0038150977, + -0.0050454796, + 0.008903312, + -0.0032507542, + -0.010867813, + 0.004806555, + 0.0069938377, + 0.007888467, + -0.011076679, + -0.010878782, + -0.026091576, + 0.002800007, + 0.008314075, + 0.008997203, + 0.0141813075, + -0.023379544, + -0.014004317, + 0.02799974, + -0.0034463531, + -0.040327404, + -0.0048588626, + 0.00842182, + -0.018192446, + 0.003525095, + 0.002647358, + 0.0065191295, + -0.0076678246, + 0.0057392907, + -0.008985307, + -0.007536749, + 0.024821773, + 0.004228501, + -0.010740187, + -0.015341722, + 0.008724884, + -0.011620117, + 0.014115329, + -0.003453217, + 0.010369915, + 0.00370698, + -6.5768784E-4, + 0.023476044, + -0.0064132283, + 0.0037949525, + 0.011206334, + -0.025036912, + 0.0073862476, + -0.0034071284, + 0.012575303, + -0.037251893, + -0.014041865, + -0.0010933955, + -9.7434624E-4, + -0.016696747, + -0.017281463, + 0.01473886, + 0.0014070787, + -0.0030461403, + -0.0012330785, + 0.009292195, + -0.028383972, + -0.025948802, + 0.029516058, + -0.022575028, + 0.006867772, + -0.005239189, + 0.020078413, + 0.016893996, + 0.012395537, + -0.009210814, + 0.010960171, + -0.028347159, + -0.0066639823, + 0.011119528, + -0.01040574, + 0.007910651, + -0.0031195204, + 0.009608547, + -0.016479822, + 5.084472E-4, + 0.0013263862, + -3.2985292E-4, + -0.015524442, + 0.005040366, + 0.009040774, + -0.020051949, + -0.003994889, + 0.0041067568, + -0.0028759597, + 0.0026160362, + -0.004821928, + 0.0032403362, + -0.012264865, + 0.006929426, + 0.019612748, + 0.037295774, + 0.00735353, + -0.023659268, + 0.0150951445, + 0.0147296935, + 4.578862E-4, + 0.013843665, + 0.02412025, + 0.0067828596, + 0.004391689, + -0.0012311379, + -0.012280229, + -0.024213076, + 7.4855066E-6, + -0.0056820093, + 0.0013891417, + -0.014958321, + -0.0038724628, + 0.03141137, + 0.007088337, + -0.0076410156, + 0.010279498, + 0.009823579, + -0.0067554372, + 0.0063330675, + -0.0028768664, + -0.0061186156, + -1.6483787E-4, + -0.0029290821, + 0.009552874, + 0.0036692254, + 0.01955998, + -0.028110608, + -0.0050959345, + 0.009073496, + -0.009819626, + -0.019583104, + -0.009925498, + 0.008046482, + 0.0072026816, + 0.016238026, + 0.0057303393, + 7.5028616E-4, + -0.0023472228, + 0.010951684, + -0.002169574, + -0.002193618, + 0.029713884, + -0.0059642615, + -0.015138475, + -0.008640669, + -0.011946322, + -0.015666237, + 0.018734919, + 0.011921757, + -0.021956436, + 0.01860041, + 0.015878825, + -0.014269344, + -0.012497424, + -0.015263716, + -0.0023489788, + 0.005961474, + -0.009482681, + 0.016672872, + 0.018283397, + -0.010243501, + -0.022238152, + -0.019763723, + -0.028775875, + -0.040182058, + 0.01924748, + -0.016875196, + -0.0014429386, + 0.0050996393, + -0.011237979, + -0.018997682, + -0.023598904, + 0.0017991482, + 0.017059973, + -0.0028583037, + 0.006371956, + -0.0027266862, + 0.003330975, + 7.345685E-4, + -0.0063858726, + 0.015618139, + 0.025378892, + 0.0099769635, + -0.004935924, + 0.018303333, + -0.032256022, + -0.028767904, + -0.0015788088, + -0.0021796166, + -6.3065963E-4, + -0.0055800905, + 0.009519891, + -0.0060053514, + 0.011823271, + -0.026518224, + -0.013293645, + 0.033602748, + -0.014185795, + -0.0018304518, + -0.00467953, + -0.013512074, + 0.01591147, + 0.016604712, + 0.0014270871, + 9.0376154E-5, + -0.0036141463, + -0.00459542, + 0.03035882, + -0.010281372, + 0.0055588763, + 0.0149600115, + 0.012830014, + -0.0060569965, + 0.010135122, + 0.011507717, + -0.019111833, + 0.0036833424, + -0.012336745, + 0.0055329576, + 0.028550776, + 0.002833787, + -0.0029586493, + -0.0044479272, + -0.0013985111, + 0.016039724, + -0.020608196, + -0.0075224107, + 0.0028668647, + 0.005654263, + -0.012132185, + -0.0037993123, + 0.013938988, + 0.018772366, + -0.012860179, + -0.03733518, + 0.0016366907, + 0.031645812, + 0.014958967, + -0.0032146608, + 0.026405677, + -0.016279204, + -0.014488786, + 0.030063774, + 0.015494536, + -0.022679301, + -0.021265421, + 0.001683296, + -0.024805952, + -0.00695635, + 0.010667205, + -0.003982252, + -0.004461626, + -0.00978502, + 0.03307354, + -0.0027329111, + 0.019118872, + 0.028986005, + 0.013108302, + -0.028695736, + 0.018782316, + -0.018722301, + -5.086557E-4, + 0.0055274307, + 0.011738716, + 0.012310473, + -0.0061482983, + 0.017554631, + 0.021879636, + 0.017031398, + 0.0062667164, + 0.011089251, + -0.0042790603, + -0.013538221, + -0.022941548, + -0.0052043656, + -0.004822051, + 0.026390042, + -3.4162868E-4, + 0.015970137, + -0.014314956, + -0.0023863523, + -0.016473142, + -0.0032605575, + -3.169129E-4, + 0.027784228, + -0.0029418182, + 0.0092384145, + 0.008448085, + 0.0041847206, + -0.009256741, + 0.023590593, + 0.015820632, + 0.00946574, + -0.0058442634, + 0.011081136, + -0.005861291, + 0.010427957, + 0.009989852, + -0.011366747, + 0.020668235, + -0.006331182, + 0.020340253, + 2.2351267E-5, + 0.0015824761, + 0.0033126632, + 0.008155198, + 0.018282937, + -0.028824445, + 0.007969826, + 0.008207359, + -0.010647115, + 0.008793847, + -0.01699644, + 0.014724233, + -0.020200087, + 0.017849406, + -0.008435807, + -0.007058627, + -0.01403792, + -0.010914897, + 0.018341575, + 0.002032085, + -0.0011933554, + -0.0035256755, + 0.014636138, + -0.00543037, + -0.017705647, + -0.015168151, + -0.008359852, + 0.00422781, + -0.001509999, + 0.012366016, + 0.00989927, + 0.0052145785, + -0.010107282, + -0.023429165, + 0.005115421, + -0.01624886, + -0.040942978, + 3.0177532E-4, + -0.001282505, + -0.007205608, + 0.0017579203, + -0.014109602, + -0.0028480557, + -0.0142434975, + 0.0113057615, + 0.03901201, + 0.013231922, + 0.02257882, + 0.0065402044, + 0.0016405528, + 0.017000234, + 0.014429056, + -0.02025527, + -0.0056941397, + -0.009324916, + 0.0027710074, + 0.0057773152, + 0.0127166575, + -0.0057821427, + -0.004448315, + 0.02452814, + -0.025367256, + -0.018251516, + 0.013237199, + -0.0081761265, + -0.0042700367, + 0.009725078, + 0.021372195, + 0.004623187, + 0.016506858, + -0.006647905, + 0.0021433171, + 0.019588606, + 0.024694843, + -0.010819989, + 0.006742007, + -0.008373795, + 0.004684026, + 4.2366516E-4, + 0.023816153, + 0.007993884, + -0.0018601794, + -0.010602303, + -0.011083997, + 0.016525237, + -0.03900623, + 0.02067397, + 0.024889447, + -0.0023189199, + 0.033324026, + 0.01650428, + 0.0068223276, + -0.004632994, + -0.017889865, + 0.0038581856, + 0.025411969, + -0.00892388, + -0.0023846598, + -0.015886765, + 0.020841321, + 0.004585201, + -0.011971614, + 0.0093956925, + 0.03279808, + 0.004156954, + 0.01810582, + -0.02098494, + -0.0017137598, + 0.0029128776, + 0.004727235, + 0.021287521, + 0.00620594, + -0.010654204, + 0.002796252, + -0.035699714, + 0.013137813, + 0.0091015445, + -0.014202297, + 0.022984833, + -0.008180295, + -0.012982265, + -0.011061814, + 0.0040178252, + 0.011042488, + 0.010482214, + 0.008669672, + -0.00457997, + 0.0071044234, + -0.009320071, + -6.936822E-4, + -0.028752442, + -0.016856609, + -0.007907473, + -0.008139752, + -0.020014064, + -0.010334412, + -0.014283351, + -0.007019871, + -0.00494127, + -0.013103457, + 0.0038207436, + 0.010113455, + -0.01757362, + -0.020958036, + 0.0016696755, + 0.010552694, + 0.017816484, + 0.0048491526, + 0.009263668, + 0.0068598404, + -0.010341855, + -0.024060218, + 0.021460483, + 8.497695E-4, + 0.0021921946, + 0.006387567, + -0.0032580541, + -9.379646E-4, + -0.014560314, + -0.009801753, + 0.018186849, + 0.0067521157, + -0.022962172, + 0.0048272014, + 0.006281989, + -0.022344768, + -0.02126824, + 0.010989355, + -0.013660293, + -0.015617452, + -0.0029390703, + 5.975641E-4, + -0.002598701, + 0.015398963, + -0.012973519, + -0.02151524, + 0.0011438013, + 0.0012116297, + -0.022577744, + 0.0049937814, + -0.032900617, + 0.004796476, + 0.010217125, + 0.0043484736, + -0.015226769, + -0.007867677, + 0.0053740186, + -0.002478542, + 0.019307181, + 0.0121947955, + -0.0049693417, + -0.006309203, + -0.005154572, + 0.018185442, + -0.010455735, + 0.015296551, + -0.023176815, + 0.011997222, + 0.002824032, + 0.0017990993, + -0.0013673311, + -0.013719036, + -0.031282257, + -0.025616165, + 0.0070612, + -0.00245628, + -0.0031334085, + 0.0077945767, + -0.014135467, + 0.025422817, + 0.018181114, + -0.026674276, + 0.014048846, + 0.01307364, + 0.0028047, + -0.012733068, + -0.017244445, + 0.02966724, + 0.014674869, + -0.028367605, + -0.010648759, + 0.042652614, + -0.02382703, + 0.019387098, + -0.00829766, + 0.013201732, + 0.0084110005, + -0.011110615, + -0.0027549895, + -0.0015285815, + -0.014989487, + 6.30492E-4, + -0.0012894718, + 0.004492329, + -0.020671388, + 0.03456731, + -0.017378615, + 0.024411762, + 0.0015906004, + 0.012274803, + -7.1295607E-4, + 7.3275174E-4, + -0.011797821, + -0.026498705, + 0.0065815696, + -0.01684181, + -0.028158039, + -0.001664086, + 0.0075068963, + 0.020803351, + -0.0010689448, + 0.014885635, + 0.020986628, + -0.014949293, + -0.005514041, + -0.0056907125, + 0.028477367, + 0.012208115, + 0.0015498538, + 0.03299364, + -0.008238133, + -0.002224778, + -0.011041411, + -0.008617682, + 0.0081434455, + 9.792089E-4, + 0.020564094, + 0.010974949, + -0.0058651296, + 0.03421195, + 0.037481, + 0.012429543, + 0.017176295, + 0.029667765, + -0.018152358, + 0.016658375, + 0.007931672, + 0.016357584, + -0.0036045632, + -0.019402605, + -0.015281619, + -0.0049660187, + 0.011175383, + 0.0073068757, + -0.0287686, + 0.014924807, + -0.0043641957, + -0.031715374, + -0.012503401, + -0.04201191, + 0.019569317, + -0.02493512, + 0.0059552127, + -0.017584236, + -0.0260332, + -0.004152038, + 0.0057174102, + -0.007867439, + -0.014907687, + -0.03641748, + -0.011012159, + -0.013732263, + -0.03103739, + 0.007282414, + -0.04524212, + 0.0072593745, + -0.0016173898, + -0.008796541, + -0.014558534, + 0.01180872, + 0.00923382, + -0.034733213, + -0.027366765, + 0.010730763, + -0.008200372, + 0.012955036, + -0.00949708, + 0.0125698615, + 0.013314932, + 0.010386201, + 0.016715517, + 0.013361773, + -0.002883496, + -0.0033279816, + 0.0039005573, + -0.0054955906, + 0.0018644803, + -0.026359094, + -0.008462638, + -0.027845416, + -0.010627583, + 0.02159695, + 0.002502716, + 0.0071578785, + -9.177491E-4, + 0.019279413, + 0.0036286053, + 0.022426723, + -0.0101267975, + 0.01591584, + -0.004809662, + 0.010256912, + -0.0079780845, + -0.0064122737, + -0.0040681004, + -0.014026193, + 0.011515929, + 0.0077936463, + -0.0040998766, + -0.015973905, + 0.019112872, + -0.0053980146, + -0.00424663, + -0.028673537, + -0.011086397, + -0.011676101, + 0.019102288, + -0.015161147, + -0.004399283, + -0.0014368828, + -0.009770068, + 0.011019268, + 0.023392465, + 0.01766113, + -0.0072523253, + -0.013058938, + 0.014430926, + 0.00985361, + 0.010821052, + 0.021621909, + 0.004201803, + 0.022416936, + -0.037195362, + -0.0012657768, + -0.0013125689, + 0.0097059775, + 0.008652058, + -0.01927824, + -4.5399553E-5, + -0.0012448061, + 0.007852066, + 0.014458631, + -0.004015119, + 0.028471366, + -0.0042247707, + 0.023421954, + 9.5530786E-4, + -0.0082211485, + -0.010654491, + 0.009485389, + 0.0065106326, + -0.0086904215, + 0.025779866, + -0.0013442633, + -0.019978827, + 0.019733988, + 0.008910502, + -7.526487E-4, + 0.004486845, + 0.008350468, + -0.012562821, + 0.0042812666, + 0.018674381, + 0.022200368, + -0.023213586, + -0.007148826, + 0.0198996, + -0.0023724742, + -0.0061408053, + 0.0014499563, + 6.3027133E-4, + -0.0076744705, + 0.0234852, + 0.007193049, + -0.0049542445, + -0.029320162, + -0.010215925, + 0.009809878, + 0.009072237, + -0.0066582505, + -0.023836635, + -0.002458951, + -0.009910395, + -0.016594991, + 0.05788816, + -5.57677E-4, + 0.009566235, + 0.012274469, + -0.009782983, + -3.5038416E-4, + 0.011908144, + 0.02470411, + -0.00533908, + -0.001537194, + -0.02056896, + 0.0035202692, + 0.015447227, + 0.0025979467, + 0.016097473, + 0.0027844654, + -0.011764924, + 0.02989914, + -0.0019948026, + 0.0049078832, + -0.009564726, + -0.038170446, + -0.025675574, + 0.0067364564, + 0.018118294, + 0.0057042213, + -0.003266229, + 6.354914E-4, + -0.0077243685, + 0.0012387915, + 0.002528686, + 0.027596382, + 0.0044348817, + -0.009825079, + 0.017527971, + -0.008132092, + -0.017142039, + 0.027853444, + 0.014168906, + -0.0021948603, + -0.015774267, + 0.026254388, + -0.0039105206, + 0.007170483, + -0.035323467, + -0.0017315829, + -0.013898116, + -0.008538952, + 0.038080614, + 0.0012346108, + -0.013917025, + 0.008636481, + -0.020255303, + 0.012672665, + 4.304831E-4, + 8.881565E-4, + -0.023480318, + 0.0056942636, + 0.007311005, + -0.0019111774, + -0.015019692, + -0.013193408, + 0.011805924, + -0.005205099, + -0.023216736, + 0.033992264, + 0.014669588, + -5.5587745E-5, + -0.0147519205, + 0.004941819, + 0.009691265, + 0.015506962, + -0.0038500535, + -0.0034690688, + -0.004207388, + -0.0071978252, + 0.013833295, + -0.006701181, + 0.0197542, + -0.01811795, + 0.015573911, + 5.0625484E-5, + 0.011104572, + -0.01201214, + -0.027491411, + 0.0016151395, + 0.021751244, + -0.016218469, + -0.0337414, + 0.011291189, + 0.021627985, + -0.013141334, + 0.037032258, + 0.027207175, + 0.017949037, + -0.018060852, + -0.006784458, + 0.02087672, + -9.226286E-4, + -0.0013875497, + 0.0139233135, + -0.0019024308, + 0.019803813, + 0.010270446, + 0.0037668268, + 0.008266821, + 0.022172352, + 0.013529287, + 0.0015660237, + -0.030393163, + -0.010895658, + 0.0044397525, + -0.020035151, + -0.025881445, + -0.010916293, + -0.025678165, + -0.012551889, + 0.007045357, + 0.005487258, + 0.024844095, + -0.0052874857, + -0.012717839, + -0.0066413106, + -0.01999797, + -0.016603092, + 0.007779639, + 0.011005667, + -0.014879509, + 0.0127441315, + 0.033071514, + -0.018567026, + 0.004324588, + 0.008879618, + -0.008877016, + -0.017840503, + 0.008774011, + -0.0050068214, + 0.018671596, + -0.024366051, + -0.0014651669, + 0.026943998, + -0.00789816, + -0.012220291, + -0.007169293, + -0.028777376, + -0.025872093, + 0.030028082, + -0.0053294613, + -0.0029942715, + -0.0050913687, + 0.018321656, + 0.019604914, + 0.013189814, + 0.028220527, + 0.022960734, + 0.03551003, + -0.014620927, + 0.023132784, + -0.012676886, + 0.018794432, + -0.039744902, + 0.028932335, + 0.009599479, + 0.012297295, + 0.005935823, + 0.016199758, + 0.008492514, + 0.015681168, + -0.016944444, + -0.010788432, + 0.003084467, + -0.012372115, + 0.009419367, + 0.0157337, + -0.033248812, + -0.009637479, + -0.0062299063, + -0.026218172, + 0.0135763595, + -0.013285053, + -0.021501938, + -0.010898493, + -0.004733516, + -0.0014114699, + 0.019117437, + 0.001933515, + -0.017456934, + -0.0047428515, + 0.0066570668, + -0.029956657, + -0.0045184293, + 0.038083788, + 0.028026158, + 0.02909185, + 0.019668078, + -0.026806977, + -7.3080615E-4, + 0.018565744, + 0.015531164, + -0.012583448, + -0.028031647, + -0.022875872, + 0.003912161, + 0.010176476, + -0.017092459, + -0.0023897882, + 0.01249627, + -0.0036702782, + -0.014580057, + 0.006176438, + -0.011774267, + -0.01262802, + 0.0068251947, + 0.009954631, + -2.310923E-4, + -0.0032776152, + 0.0055675125, + 0.0045075635, + -0.0033255448, + -0.030574001, + 0.014858695, + 0.009207258, + -0.0035253982, + -0.006992782, + -0.034793112, + 0.016307423, + -0.005893847, + 0.014668968, + 0.013622728, + -0.036396496, + -0.0048113526, + 0.013448428, + 0.001209831, + 0.0038657354, + -0.001039303, + -0.005868193, + 0.0020906231, + -0.032623947, + -9.3151536E-4, + -0.019264596, + -0.0048614396, + -0.019818902, + -0.011752133, + -0.002198867, + -0.021142917, + -0.01009757, + 0.0066242386, + -0.009976828, + -0.01253243, + 0.0043563265, + -0.0026787366, + 0.026145207, + 0.04401277, + 0.0041538035, + -0.019456375, + 3.0220897E-4, + 0.0016923797, + 0.019873148, + -0.012382474, + -0.003937931, + -0.008678406, + 0.006955865, + 5.030151E-4, + 0.0032477467, + -0.0030479683, + -0.013729488, + 0.031012543, + 0.004870516, + -0.03313788, + -0.0198021, + 8.801339E-4, + -0.01885058, + -0.0075321803, + 0.00828564, + 0.002424453, + -0.0021747805, + -0.015958227, + -0.011899642, + 0.0024348735, + -0.021365449, + 0.012148175, + 0.0034516756, + 0.008157314, + -0.0015908822, + -0.022446558, + 0.018395666, + 0.004306631, + -0.014436007, + 0.023303919, + 0.002141286, + 0.010926429, + -0.0136230495, + 0.009101116, + -0.028822036, + -0.007979372, + -2.5888765E-4, + 0.026488863, + -0.017460972, + -0.0028748831, + 0.0016675786, + -0.020731866, + -0.0014712351, + 0.0036020435, + 0.016231349, + -0.029923853, + 0.014502245, + 0.02373573, + -0.0017724109, + -0.0063352003, + 0.0026220575, + 0.025586853, + -0.0013568527, + 0.00187699, + -0.007634901, + -0.009642795, + -0.008920191, + -0.012662836, + -0.02608789, + -0.012414128, + 0.011271725, + -0.013130594, + -0.017018741, + -0.025228309, + -0.012812486, + -0.01171476, + -0.013023225, + 0.010774492, + 0.0071838587, + 6.9394824E-5, + -0.014263138, + 0.0033983628, + 0.015102732, + -0.026520165, + 0.0059861173, + -0.016705342, + 0.012838372, + -0.0057693413, + -0.003981254, + -0.018303767, + -0.02236411, + 7.664759E-4, + -0.01452735, + 0.002761534, + -0.011368097, + 0.0043430524, + 0.005766625, + 0.013808261, + 0.020649327, + -0.015717681, + -0.004645845, + 0.024137592, + -0.02448035, + -0.0068769995, + -0.007733585, + 0.0076222224, + 0.011036021, + -0.010611322, + -0.0022858307, + -0.012740237, + 0.007237696, + 0.021157434, + 0.021889638, + 5.6752004E-4, + 8.8815205E-4, + 0.01340101, + -0.0065286206, + 0.0020812878, + 0.009492758, + 0.013217768, + -0.03791901, + -0.004838511, + 0.023282371, + 0.025694199, + -0.0125039, + -0.013774116, + -0.0019750623, + 0.01043478, + 0.011330219, + 0.0013444446, + -0.011997176, + -0.0037504367, + -0.0066766203, + 0.0014362014, + 0.024644062, + -0.012642616, + -0.034560896, + 0.025745802, + -0.0070430646, + 0.0069274134, + 0.00693642, + 0.023130134, + 0.014683055, + -0.004971998, + 0.044317435, + 0.013625265, + -4.113972E-4, + 0.022273324, + 0.014255864, + -0.006406465, + 0.00983713, + 0.014368368, + 0.032785367, + 0.006411954, + 0.00896741, + -0.019505244, + 0.008250472, + 0.024307033, + 0.011630279, + -0.0136001455, + -0.024533145, + 0.006933193, + -0.019743174, + -0.005571294, + -0.0058702477, + 0.033263978, + 0.029430324, + -0.012723489, + -0.00501584, + 0.033984732, + 0.010690514, + 0.0137874, + 0.01478858, + -0.030505719, + 0.009814879, + -1.2704245E-4, + -0.006268349, + -0.0031300085, + 5.41272E-4, + 0.0134664625, + 0.013974199, + -0.027157022, + 0.0016903925, + 0.00795715, + 0.02162091, + -0.0041080313, + -0.0026059598, + 0.009771255, + 8.5484295E-4, + 0.027230754, + 0.007995489, + 3.7589947E-5, + 0.02335318, + 0.021457994, + -0.012814435, + 0.013516607, + 0.016401593, + 0.030444631, + 0.0013405525, + 0.022533368, + 0.028760301, + 0.029635975, + -0.0015422716, + -0.018539803, + 0.0019661442, + 0.022428418, + -0.009225083, + -0.010129289, + -0.016193917, + -0.0075222543, + 0.0034180565, + -0.012700717, + -0.011338325, + 0.01710473, + -0.0061396523, + -0.0018444638, + 0.024983658, + 0.0019283922, + 0.0012031677, + 0.01495916, + 0.010126685, + -0.0071358103, + -0.005095086, + -0.0038091713, + 0.0021708799, + 4.2718629E-4, + -0.0037422949, + 0.023614217, + 0.01184957, + 0.022686047, + -0.0013680023, + 0.012593714, + 0.019782316, + -0.013217849, + -0.0049247234, + -0.012614283, + 0.0058436524, + 0.0014727926, + -0.022211008, + 0.017462257, + 4.340489E-4, + -0.0060470495, + 0.0060143042, + -0.0021021035, + -0.014225532, + -0.033470962, + -0.0067659747, + -0.0016643628, + -0.006500412, + -0.027460655, + 0.012947738, + -0.018801495, + 0.003080446, + 0.028721686, + -0.008358299, + 0.012699383, + 0.0011554186, + -0.046868645, + -0.015780816, + -0.0070129177, + -0.010723343, + 0.005916064, + -0.020672156, + -0.008439619, + 0.01147141, + 0.007743945, + 0.006289319, + -0.0011427797, + 0.014155676, + 0.020987969, + -0.00739239, + 0.02319096, + -0.012556896, + -0.007849691, + -0.013889785, + 0.009366537, + 0.02250206, + -0.025283638, + 0.009470542, + -0.02026501, + 0.01653207, + 0.024471495, + -0.016938528, + 0.0028528231, + -0.014788362, + 0.014114102, + -0.007009858, + -0.0052714143, + 0.005253958, + 0.044766143, + 0.008869052, + 7.1167725E-4, + -0.009386689, + 5.06642E-4, + -0.009456124, + 0.004117299, + -0.006036743, + -0.0027604345, + 0.021210155, + 0.001463588, + 0.01317722, + 0.01026208, + 0.0069404943, + -0.011915883, + 0.023000734, + 0.021793993, + 0.0049281027, + -0.01970725, + -0.008767265, + 0.018326616, + 0.007800238, + -8.079996E-4, + 0.011029621, + 0.0013547288, + -0.0014946931, + -0.0053459015, + 0.017810773, + 0.015219717, + 0.008372662, + -0.028772509, + 0.004710348, + -0.006908732, + 0.0120546855, + -0.017324809, + 4.6505022E-4, + -0.030418731, + -0.037397828, + -0.004257819, + -0.0055296547, + -0.007144286, + -0.013092369, + 0.0058820983, + 0.0065166587, + 0.025218282, + -0.0024938155, + -0.03418597, + -0.016130473, + -0.0017508471, + -0.012257669, + -0.0027772726, + 0.015904544, + 0.001160548, + 0.00817936, + -0.0034787909, + -0.011821593, + 0.008644282, + 0.009250798, + 0.0017973272, + 0.021357983, + -6.877259E-4, + 0.014701113, + 0.006490248, + -0.016421504, + 0.036100335, + -0.0026325134, + 0.018905457, + -0.022937473, + 0.009716622, + -0.0121101, + -0.04643338, + 0.0034322282, + 0.015643187, + -0.001994928, + 0.015304822, + 0.012581606, + -0.01636438, + -0.0031105436, + -0.03589302, + 0.018633416, + -0.005654002, + 0.025447393, + -0.01048626, + 0.022748915, + -0.025801064, + 0.008753702, + -0.017153334, + -0.009756318, + -0.01597261, + 0.0020415115, + -0.011778009, + 0.008874685, + 0.011624281, + -1.5837984E-4, + 0.014030995, + -0.011745271, + 0.003592662, + -0.0051710973, + -0.016894044, + 0.014219268, + 0.02043092, + -0.0014105143, + 0.031890117, + -0.0012235868, + 0.007630052, + -0.02723348, + -0.019174606, + 0.022804912, + -0.006886529, + -0.021892978, + 0.009956029, + 0.014998702, + 0.011144071, + -0.0059643337, + -0.0071760374, + -0.015737845, + 0.04190815, + -0.003749793, + -0.028436303, + 0.023205115, + 0.009286491, + 0.018045424, + -0.006617199, + -0.008409364, + 0.02410828, + 0.006888357, + 0.01290179, + 0.0018789549, + 0.012169137, + 0.008146526, + 0.0011373116, + 0.016739918, + 0.004443262, + 0.008967574, + -0.010347887, + 0.021847857, + -0.006955942, + 0.005855499, + 0.0066310074, + 0.012712504, + -0.0064255367, + -0.007491117, + 0.025061347, + -0.0062559387, + 7.0364616E-4, + -0.024130959, + -7.944199E-4, + 0.013566073, + 0.0036085562, + 0.0034193601, + 0.019950597, + -0.008017536, + -0.0035512496, + 0.015052903, + -0.0111047495, + -0.013962973, + -0.045236107, + -0.005106731, + 0.013279969, + 0.02584682, + 0.0016253468, + 0.01651569, + -0.02513273, + -0.005916408, + 0.03083131, + -0.034708053, + 0.0020000897, + -0.0115860365, + -0.023015238, + -0.0016316281, + 0.0095416, + 0.025102455, + 0.0115137575, + -0.046389155, + -0.010784349, + -0.0149580585, + 0.007954083, + 0.011838137, + -0.01856571, + -0.019020451, + -0.016288215, + -0.010393171, + 0.008425693, + -0.00112629, + -0.007676508, + -0.021339927, + -0.008979304, + -0.015722381, + -0.006480313, + 0.011275809, + -0.016273014, + 0.0062100617, + -0.012789812, + 0.017103741, + 0.025009947, + 0.0048790746, + -0.0061157495, + -0.016590709, + 0.00452844, + -0.013777697, + -0.008359159, + -0.01534253, + -0.010500203, + 0.0051824194, + 0.022859452, + 3.5456978E-4, + 0.01406292, + -0.027036428, + -0.009403209, + 0.006827844, + -0.0013872475, + -0.0060273143, + -0.009501019, + 0.008812753, + 0.008684146, + -2.6661894E-4, + 0.0055500693, + -0.008416995, + -0.004919921, + 0.0130385505, + 0.0017989642, + -0.018130539, + 0.005350536, + 0.015611603, + -0.009622187, + -0.00886442, + -0.02560905, + -0.02989228, + 0.0025127558, + -0.017423296, + -0.02883351, + 0.006959313, + 0.003951842, + 0.017379003, + 0.023734923, + 0.022647632, + 0.010611482, + -0.0045671077, + -0.006020039, + 0.004393748, + 0.01539715, + 0.018631535, + -0.014653657, + 4.9315125E-4, + -0.004195174, + -0.011344903, + -0.0042122183, + 0.0042344634, + -0.04265162, + -0.009845865, + 0.005538633, + 5.5068143E-4, + -2.3669896E-4, + 0.013404272, + -0.011312303, + -0.024622496, + -0.005444211, + 0.004450718, + -0.010245716, + 0.0011150836, + 0.01750834, + -0.028083673, + -0.009515073, + -0.03199238, + -0.0027207634, + 0.025908453, + 0.0021891412, + -0.0052055926, + 0.023659198, + -0.017139338, + 0.022242283, + 0.010515431, + 0.0056887814, + -0.022902114, + 0.012879415, + 0.0131290825, + 0.02515642, + 0.017283816, + -0.024465399, + 0.0128220795, + -0.016606664, + -0.018690953, + -0.010543502, + 0.0014776957, + -0.0028203472, + -0.022102278, + 0.0032611121, + 0.0348789, + -0.016484769, + -0.026934985, + -0.007936405, + -0.015715737, + 0.0018548336, + 0.020621529, + -0.0069290833, + -0.005529347, + 0.021232916, + 0.025198678, + 0.019042175, + -0.012073397, + 0.019553995, + -0.009796071, + -0.008850919, + 0.014965709, + -0.006670985, + -0.020208798, + -0.022700485, + -0.0062766005, + -4.4667013E-5, + 0.016525358, + -0.0073336484, + 0.011689221, + 0.005096535, + 0.0011187639, + -0.03423727, + -0.0137366345, + 0.01910742, + 0.016564142, + -0.032541666, + -0.014112522, + -0.023109337, + -0.012205518, + 0.018043231, + -0.0052142832, + 0.0020263423, + -0.032450613, + 0.033545077, + 0.0023323114, + -0.005584135, + 0.009706569, + 0.01581612, + -0.0010838113, + 0.027302291, + 0.004310914, + -0.02294373, + 0.012663428, + 0.0015769122, + 0.017157009, + 0.0063591967, + 0.033922415, + -6.508394E-4, + 0.02573631, + -0.010060975, + 0.014059524, + -0.030578397, + 0.0050092246, + -0.019250073, + -3.196903E-4, + 0.016778655, + -0.004700387, + -0.00275383, + -0.023383996, + -0.00630129, + 0.0135906525, + 0.0072544687, + -0.0124815805, + 0.00805875, + -0.018976828, + -0.0090697305, + -0.0013692708, + -0.005604808, + 0.0028160892, + -0.021101872, + -0.0018276984, + 0.003152439, + 0.001828307, + 0.026297232, + -0.010950373, + -0.004769032, + -0.01138779, + 0.001110896, + -0.002115344, + -0.018994194, + -0.004890007, + -0.020351088, + -0.014805071, + 0.010285516, + -0.0027624085, + 6.4620376E-4, + 0.014227024, + 0.011094008, + 0.032559372, + 0.0076180357, + -0.0022778043, + 0.020949654, + 0.011700586, + -0.0057283193, + 0.024360798, + -0.011470757, + -0.0051447335, + 0.01218536, + 0.0137335975, + 0.009761782, + -0.015158162, + -0.0025302537, + -1.5131175E-4, + 0.025329717, + 0.021406455, + -0.006051997, + 0.006886992, + -0.01583906, + 0.009027411, + -0.011785994, + 0.008087532, + -0.016513545, + 0.016638553, + 0.018509168, + -0.015189222, + -0.016130952, + 0.00558408, + 0.006082462, + -9.6149735E-5, + 0.023694929, + -0.004187582, + -0.01980487, + 0.01651827, + -0.0019213548, + -0.006067614, + -0.0069881454, + 0.0038942758, + -0.010038506, + 0.0037971544, + -0.013040055, + 0.03255211, + -4.0905015E-4, + 0.010667195, + -0.008605097, + 0.023572812, + 0.0072465283, + -0.009635993, + -0.01161007, + -0.020487573, + 0.028563093, + -7.158449E-4, + -7.3826674E-4, + -0.018504098, + 0.016234294, + -0.0115802325, + -0.018572265, + -0.0060719997, + -0.0058807842, + -0.016111648, + 0.027423454, + 0.0054289876, + 0.0066576726, + -0.0144635355, + -0.004388016, + 0.019437881, + -0.009716316, + 0.037840262, + -0.019057885, + 0.0039362255, + 0.02440771, + -0.029927004, + -0.013504192, + 0.028160969, + -0.0106955785, + -0.023224657, + 0.009196321, + 0.004114864, + -0.009904705, + 0.016541587, + -0.002783906, + 0.014381704, + -0.0016085434, + 0.0093646655, + -0.010679828, + -0.011936798, + 0.018825252, + 0.01653892, + 0.020807823, + -0.018529618, + 0.0049234116, + -0.012777996, + -0.0022632817, + 0.004236206, + 0.0037574973, + -0.018455159, + -0.017993866, + 0.016216055, + 0.024794972, + 0.011870501, + -0.008961791, + -0.005234156, + -0.021398988, + -0.0067153987, + -0.0055555836, + 0.013067126, + 0.0045324196, + -0.024168791, + 0.0014261618, + 0.0038749338, + 0.0053393296, + -0.01969388, + 0.004775283, + -0.009789203, + -0.0071327873, + -0.02373651, + 0.009774485, + 0.0033481887, + 0.035858084, + -0.0050783367, + 0.018203547, + 0.0049954033, + 0.0012081127, + 0.007098644, + -0.015490527, + 0.007541678, + -0.0062444895, + 0.006568205, + 0.011003911, + 0.0029597867, + 0.0073144324, + 3.2969215E-4, + 0.021454176, + 0.032102466, + -0.0136711635, + -0.0059510823, + 0.0043574907, + -0.018239103, + -0.005315334, + 0.0035910103, + 0.001216771, + 0.003207488, + 0.024031144, + 0.009762811, + 0.023264483, + 0.015735924, + 0.018609146, + 0.04334065, + -0.011000862, + 0.005465362, + -0.013540917, + -0.0030482942, + 5.0749787E-4, + -0.0068114335, + 0.001155199, + 0.011647452, + 0.016093077, + -0.012836924, + -0.01809677, + -0.016918832, + 0.014478311, + -0.005681025, + 0.011892827, + 0.018666593, + 0.0017900451, + 0.0032632414, + 0.0064112064, + 0.027883627, + 0.0073352624, + -0.022786276, + 0.015858991, + -0.00316597, + -0.02159781, + 0.043611694, + -0.0049705417, + -0.013583814, + 0.021571035, + 4.360306E-4, + -0.0030430953, + -0.011380829, + -0.03787104, + 0.019125633, + -0.0018046561, + 0.021585187, + 0.02090057, + 0.021842793, + -0.008938171, + 0.010490696, + 0.02081219, + -0.025106551, + 0.008381098, + 0.008264506, + 0.0011025717, + 0.0017639477, + -0.0019801047, + -0.027922774, + -0.002132433, + -0.033563603, + 3.290114E-4, + 0.006081829, + -0.008809125, + -0.0056561385, + -0.0012742789, + -0.0010390419, + -0.022283066, + 0.0062495, + 0.016071793, + -0.006565498, + -0.024938667, + -0.0039870692, + 0.011357801, + -0.023115499, + 0.01370275, + 0.002935099, + 0.027640553, + 0.013959996, + -0.015597303, + -7.7925326E-4, + -0.020159915, + 0.012565605, + -0.019629199, + 0.02039801, + -0.008856249, + 1.349E-4, + -0.009714035, + 0.002235323, + 0.0021121358, + -0.003969169, + -0.0010243899, + -0.012444852, + 0.0136327585, + 0.025892738, + 0.0015186094, + -0.0047983862, + -0.0115214735, + -0.017864808, + 0.01640736, + -0.011205866, + -0.011492276, + -0.011425661, + -0.02323721, + -0.004778245, + -0.004029843, + 0.0023246382, + -0.0021868362, + 0.017358197, + -0.007312064, + -0.017370567, + 0.012039284, + -0.0031529707, + 8.5392536E-4, + -0.01117748, + -0.0135951545, + 0.004042187, + 0.029308066, + -0.0051133595, + -0.024871912, + -0.0056137624, + 0.0065125963, + -0.02048815, + 0.016399583, + -0.024057193, + -0.008290327, + 0.0023165643, + 0.021044306, + -6.8975386E-4, + -0.011129177, + -0.0015918544, + 0.0098557295, + -0.04230168, + -0.004834351, + 0.0036609387, + -0.013768879, + 0.0012173607, + 0.026184738, + 0.010280252, + -0.019950148, + -0.03035485, + 0.023228943, + -0.01160702, + 0.0034171136, + -0.02728095, + -0.0029184073, + 0.008482605, + 0.011303641, + 0.016709879, + 0.014422953, + -0.008333123, + 0.0044153086, + 0.005075137, + -0.0026069102, + 0.0069085853, + -0.023629488, + -0.013041768, + -0.005104319, + 0.006130514, + 0.015811173, + 0.019721754, + 0.011020154, + -0.023499057, + 0.0030432823, + -0.028422028, + 0.010825618, + -0.0020383592, + -0.036037777, + -0.0033402978, + 0.017964663, + 0.01777735, + -0.013294286, + -0.005519841, + -0.004889403, + 0.013417123, + 0.021782428, + -0.008167408, + 0.012296011, + -0.0015358612, + 4.9023493E-4, + 0.003431633, + -0.0061734673, + 0.010306985, + 0.008919035, + -0.030535037, + -0.010460182, + 0.007946091, + -0.002151056, + -0.03618377, + 0.0048569995, + 0.015076976, + -0.0018199607, + -0.002778986, + -0.028163504, + -0.03836312, + 0.006236271, + 0.019395152, + -0.010996863, + -0.01597771, + -0.008661634, + -0.012087574, + -0.021500552, + -0.0073093246, + -0.04736367, + -0.011033552, + -0.006715047, + 0.020407332, + 0.035812017, + -0.022072708, + 0.036908664, + 0.0050175674, + 0.014977164, + -0.0048349383, + -0.016663289, + 0.010200606, + 0.035816174, + 0.0021895464, + -0.011046825, + -0.016967963, + 0.01067808, + -0.0041426076, + -0.0016447131, + -0.024936438, + 0.0052387165, + -0.013337476, + -0.018347109, + -0.015521168, + 0.0028353662, + -0.014950336, + 0.024309404, + -0.037202198, + 0.002675221, + 0.005602554, + -0.005330045, + 0.009011192, + 0.028350532, + 0.0023901153, + -0.0023669007, + -1.6302964E-5, + -0.015137892, + 0.0016423559, + 0.011195834, + 0.014379877, + 0.013589525, + 0.012405772, + 0.023834458, + 0.0020817884, + -0.0109161865, + 0.0063996585, + -0.016623314, + 0.010056766, + -0.012364022, + -0.00842142, + 0.01155005, + 0.01064003, + -0.0032848788, + -0.006167723, + -0.021894485, + -0.003911895, + -0.007953062, + -0.003267422, + -0.019385958, + 0.010874864, + 0.011932904, + 0.019091733, + 0.013498606, + 0.014553777, + -0.019207412, + 0.00422946, + 0.0065905843, + 0.024661435, + -0.012747208, + 0.010902299, + -0.01721238, + 0.015559257, + -0.0010643511, + 0.015884655, + -0.0058071087, + -0.020925187, + 0.008726337, + 0.04537473, + 0.016238905, + -0.026938735, + 0.016345626, + -0.0017601997, + 0.008865877, + -0.0032906255, + 0.020924618, + -0.014317978, + -0.030788638, + 0.022249084, + -0.012052577, + 0.014770125, + 6.7408284E-4, + 0.0063117556, + -0.007841909, + 0.0071240617, + -0.019859591, + -0.04111942, + -0.015309379, + 0.018326502, + 0.016220532, + -0.0021532706, + -0.014437667, + -0.01308368, + 0.014601691, + -0.023181617, + -0.026694573, + -0.018114442, + -0.0327243, + 0.034403503, + 0.028558692, + 0.006448512, + -0.004193074, + -0.010223957, + 0.0026765238, + 0.005090773, + 0.02061404, + -0.010838045, + -0.0043218206, + -0.022122076, + 0.007381884, + -0.0012103555, + -0.02266931, + 4.120486E-4, + 0.0018840373, + 0.0025167062, + 0.018908955, + -0.0011784768, + -0.010208492, + 0.014159495, + -0.01926777, + -0.010518108, + 0.03318288, + 0.019329729, + -0.012879215, + -0.007526724, + -0.0011230194, + -0.01156147, + 0.006941723, + -0.012872, + 0.023099175, + 0.0067779073, + -0.004488127, + 9.107316E-4, + -0.009226261, + -0.0025168927, + -0.0025248097, + 0.010739238, + -0.0027385966, + 0.011492822, + -0.0068235206, + -0.020300146, + -0.028973226, + 0.0031753255, + 0.004940336, + 0.00440988, + -0.016642714, + -0.003781423, + -0.013304672, + -0.016535368, + -0.0111192, + 0.0015163324, + 0.016890995, + 0.0112634245, + 0.015103604, + 0.011310456, + -0.025525602, + 0.0092955325, + 0.021755055, + 0.017801015, + -0.0011954929, + 0.0070370226, + 0.018513603, + 0.0062820925, + -0.020259796, + 0.010564815, + -0.010314608, + -0.004170996, + 0.009945496, + 0.0048137438, + 0.0010792571, + -0.004195723, + -0.003939003, + 0.0033138052, + 0.0063919937, + 0.018312775, + 0.017723558, + -0.002895471, + -0.011673181, + 0.0023867097, + -0.018454552, + -0.023571799, + -0.004625049, + -0.004607118, + -0.012530846, + -0.011105717, + 0.018073838, + -0.010471549, + -0.010223588, + -0.0041044005, + -0.0014919704, + 0.0070188735, + -3.9477574E-4, + -0.0036492413, + 0.042552356, + 0.014286652, + -0.004195735, + 0.0076846597, + 0.012885523, + -5.0817063E-4, + 0.00463408, + -0.015173474, + -0.0021747795, + -0.00876442, + -0.013118885, + 0.008898542, + 0.008278192, + -0.0022380396, + -0.011506727, + 0.009159352, + -0.015954483, + -0.005802235, + -0.017866941, + 0.006741172, + 0.004337068, + -0.0055560973, + 8.978734E-4, + -0.01285786, + -0.0034187187, + 0.021680439, + -0.013673703, + -0.03760847, + -0.014184895, + -0.031970143, + -0.0021877286, + -0.011535573, + -0.0071935114, + 3.8353075E-5, + 0.014802138, + -0.0017236434, + -0.003630515, + 8.8656356E-4, + -0.011852451, + -0.007464325, + 0.033772398, + -0.017640023, + 0.036087308, + -0.01077594, + -0.01902484, + -0.0036013657, + 0.031619858, + 0.0070043537, + -0.021593796, + -0.020070935, + -0.0022541997, + -0.016098704, + 0.009366937, + 0.009680718, + 0.034578927, + -0.011204368, + 0.023032252, + 6.592547E-5, + -0.017617766, + -0.010502617, + -0.010051547, + -0.008935605, + -0.01631484, + 0.0090759, + -0.0025090578, + -0.01969366, + 0.010913939, + -0.011615241, + -0.021166084, + 0.0022404606, + -0.0025023029, + 9.0149743E-4, + 0.0014290679, + -0.016128035, + 2.7707123E-4, + -0.01794247, + 4.286196E-4, + -0.008985529, + -0.0266466, + -0.001028009, + 0.0027412416, + -0.02721526, + 0.014397235, + -0.0062538576, + 0.017709585, + -0.013434894, + -0.016753502, + -0.0023024464, + 6.556661E-4, + 3.4726772E-4, + -0.0084343655, + -0.012231286, + 0.02083245, + 0.002558335, + 0.0017487572, + -0.00660057, + 0.016317733, + 0.019955693, + 0.018117135, + -0.0052564917, + -0.0027366525, + -0.01545188, + -0.005507502, + -0.027921773, + 0.031692408, + 0.021471871, + 0.017460996, + -0.008697284, + 4.1251993E-4, + 0.026348343, + -0.018431108, + 0.02380949, + 0.0057333796, + -0.0038177394, + 0.02117419, + 0.006950926, + 1.2355785E-4, + -0.0058010262, + -0.013885026, + 0.022364283, + -0.0076232515, + 0.02080293, + -0.001683639, + 0.018223854, + -0.004042404, + -0.0049983407, + 0.004812313, + 0.010059191, + -0.010956143, + 0.010937551, + -0.02211974, + -0.01983676, + 0.030666173, + 0.005321591, + 0.018987833, + -0.03273523, + 0.0074761207, + 0.021569796, + 0.0025460182, + -0.027182305, + 0.0021597557, + -0.014929774, + -0.004732716, + -0.007837903, + 0.03809607, + 0.012459787, + -0.0141268475, + 0.009247395, + 0.00615602, + 0.004574653, + 0.019757906, + -0.0032662028, + 0.05127751, + 0.013115825, + -0.028972823, + 0.034709346, + -0.013751086, + -0.006701032, + 0.014219277, + 0.0074188136, + 0.0066613215, + -0.005045045, + -0.006621323, + 0.0042436346, + 0.0055466695, + 0.019283198, + -0.009111858, + -0.017041333, + -0.0054419925, + 0.018838542, + 0.019063286, + -0.0031995412, + -0.0017007532, + -0.04569592, + 0.0027735946, + -0.0058484026, + 0.017397929, + -0.009578686, + -0.0030761897, + -0.0055348934, + 0.01304583, + -0.030529298, + -0.021292841, + -0.0063843476, + -0.0085450765, + -0.0024504685, + -0.016458847, + -0.013683712, + 0.004968725, + 0.00520729, + 0.0026550952, + -0.0020659796, + 0.03673266, + -8.4421074E-4, + 0.021868218, + 0.011736773, + 0.007839191, + -0.003657262, + 0.0072650504, + 0.010552883 ], - "paletteEmbedding": [ - 0.044064105, 0.007853467, 0.034235153, 0.0138545595, 0.040852282, - 0.04866831, 0.0043787314, -0.001923549, -0.052025646, 0.022287583, - -0.036914885, 0.015555559, -0.027833404, -0.021021474, -0.02551204, - -0.033259615, 0.026149495, 0.030029887, 0.036663562, 0.0025233089, - 0.011788004, -0.091714434, -0.009905006, 0.025601678, 0.019637344, - -0.012447275, -0.010862657, -0.014120866, 0.019564701, -0.0026516125, - 0.026744418, 0.006340563, -0.010646375, 0.0069721425, -0.088158384, - 0.04739129, 0.0041183163, 7.5118477e-4, 0.0575099, 0.010730935, - 0.061640076, -0.013564626, -0.0063128853, 0.03793636, -0.05065323, - 0.011912906, 0.009966055, 0.09143895, -0.067488864, 0.028948097, - 0.046415668, -0.053835463, -0.026426828, 0.0040894183, 0.04592242, - -0.03145734, 0.08398508, 0.014953934, -0.009206901, -0.013269523, - -0.016667288, -0.013068234, 0.024506358, -0.015074739, 0.01093496, - 0.020061856, -0.0071280105, 0.030425236, 0.03743844, 0.016969105, - 0.029536404, -0.011834486, 0.0037397, 0.015194438, -0.022879953, - 0.01964346, -0.0014689941, -0.008099743, 0.0145604955, 0.0018278717, - 0.03188124, 0.01887124, -0.0022945756, -0.038584948, -0.062641874, - 0.040242285, 0.01775061, 0.0033639844, 0.040312797, 0.04306589, - 0.07777708, -0.019656206, -0.004378637, -0.0036500257, -0.005001786, - 0.005272049, -0.055739697, 0.006642883, -0.014657095, -0.02389483, - -0.0013495357, -0.004187388, 0.034417924, 0.033392478, 0.03493713, - 0.010081595, -0.013364596, -0.02368231, -0.022420123, 0.0020018644, - 0.009557073, 0.042434096, -0.04583663, 0.03165203, -0.0061913095, - 0.018671203, -0.04093131, 0.060002103, 0.030866766, 0.019693503, - 0.02519304, 0.008048456, 0.0060624406, -0.026161468, -0.024688013, - 0.04726135, 0.052495006, -0.08782822, 0.028518239, -0.036282413, - -0.013788171, 0.017584689, 0.017847799, 0.03516327, -0.016867701, - 0.028929908, 0.051467624, -0.04316305, -0.007652757, 0.025373843, - 0.030404342, -0.0140917795, -0.05938786, 0.027214993, -0.020086775, - 0.0010126643, 0.027927436, 0.030755838, 0.02032982, 0.0614912, - 8.90144e-4, -4.818326e-4, 0.025152424, 0.024972288, -0.0060630254, - -0.05285365, 0.010254974, 0.06225725, -0.031596176, -0.030535717, - 0.031908177, -0.008472386, 0.009305281, -0.007301037, 0.032155804, - 0.02860445, 0.01887165, -0.0052710217, -0.0680327, 0.0072384896, - -0.055841066, -0.016759126, -0.068949856, -0.0035917817, 0.038315564, - -0.005521434, 0.008288927, 0.01764247, -0.018318344, 0.0035274934, - 0.0183937, 0.022107618, 0.032922816, 0.044868298, -0.0049491655, - -0.0017906624, -0.024265543, -0.046612907, 0.05715429, 0.01915147, - -0.027217502, 0.09580183, -0.042263437, -0.016634539, 0.028890813, - 0.038485684, -0.08575735, 0.02930376, -0.013494635, -0.042001605, - -0.015727041, 0.012919249, 0.012858332, -0.010384535, 0.015184491, - -0.01721769, -0.060467508, 0.040320978, -0.05577205, -0.016260507, - -0.0074455915, 0.0021085208, 0.0010591883, 0.012910218, 0.024739873, - 0.04480094, -0.034977425, -0.020437866, 2.73931e-4, 0.043069974, - 0.023458749, -0.007725503, -0.049632486, -0.0071097314, -0.009710159, - -0.0013784047, 0.0073519303, -0.016114846, 0.03950772, 0.023987161, - -0.007158401, 3.0636345e-4, -0.034912948, 0.03743456, 0.019767214, - 0.024863876, 0.007000335, 0.013501729, -0.016263753, -0.010626077, - 0.026521858, 0.013900499, -0.07295401, -0.06281896, 0.05460048, - 0.0010118099, -0.004482568, 0.0035570827, 0.010775224, 0.0042040595, - 0.0012043187, 0.0055758683, -0.036394387, -0.020422075, 0.018286923, - 1.2693247e-4, 0.0110573415, -0.009559993, 0.03541136, 0.015025859, - -0.015320765, 0.035358004, 0.06598115, -0.053015824, -0.03564195, - -0.010507641, 0.02693983, -0.005248612, 0.020499347, 0.011068176, - 0.04814185, 0.05006691, 0.031067936, -0.01565661, 0.035482746, - -0.035878766, 0.024229335, -0.0049366513, 0.053636838, -0.07671727, - 0.012569267, -0.015525071, -0.022532223, -0.022098156, 0.014944142, - -0.006850304, 0.03255197, -0.017041288, -0.024040125, 0.003806165, - 0.03331625, 0.01489464, 0.013348829, -0.046822786, 0.022261772, - -0.052063145, 0.0044474485, -0.007569831, -0.04079623, 0.02441132, - -0.042605855, 0.004791775, -0.013303399, -0.031285957, -0.04702579, - -0.031431478, -0.028180858, 0.0011391488, -0.0010960917, -0.070445545, - 0.010165772, -0.017630916, 0.0133807575, -0.011574792, -0.030272067, - -0.01270475, -0.026902813, 0.0071472037, -0.022459883, 0.030476503, - -0.028599728, -0.009112281, -0.0072521833, 0.023700342, 0.0355238, - 0.036541224, -0.039388448, 0.03780588, -0.0107911285, -0.08731805, - -0.035022337, -0.0036278344, -0.0251428, 0.034147475, -0.018100869, - -0.05186386, 0.0088290945, 0.017958904, -0.002034896, 0.004086768, - -0.03133115, 0.023793349, 0.0028482683, -0.019189525, -0.03897594, - 0.0048139514, 0.038884893, -0.014978565, -0.04197299, -0.023208154, - 0.008262756, -0.06435472, 0.045055736, -0.047318354, -0.0072014304, - -0.016509308, 0.005934087, -0.0024281822, 0.011805518, -0.026015578, - 0.043054614, -0.0343521, -0.006881556, 0.023660332, -0.0019030356, - 7.114143e-4, -0.03490269, 0.014058751, 0.051991668, 0.022664009, - -0.028613498, -0.0541797, -0.023560915, -0.027203761, -0.0027347105, - -0.009107692, 0.008108104, -0.005772007, -0.027631402, 0.03358675, - 0.03596728, 0.01229773, -0.008916041, 0.012610624, 0.005239761, - 0.036970954, 0.0020041666, 0.06875295, 0.018471945, -0.03532948, - -7.899952e-4, 0.008028008, 0.028659299, 0.008297432, 0.036235403, - -0.007256599, 0.033913832, 0.009024619, -0.011221292, -0.010726505, - -0.009712534, -0.049261138, 0.032476295, 0.0012647426, 0.073427014, - 0.02247688, 0.019090662, -0.006507055, 2.5766317e-4, -0.018738091, - 0.017109284, -0.0038930925, 0.044684958, 0.013481646, 0.008511462, - 0.042750046, -0.018032324, 4.3484243e-4, 0.06325991, 0.056868427, - 0.031377427, 9.2210027e-4, -0.01147936, -0.025963722, 0.026447844, - 0.047927268, 0.029085526, 7.00684e-4, 0.0418599, -0.01988286, - 0.057069592, -0.03845987, -0.06118639, 0.008087735, 0.04746123, - 6.196906e-4, -0.026610266, 0.028911667, 0.022958137, 0.026945757, - -0.007176873, -0.04851485, -0.04911923, 0.020952815, 0.04186322, - 0.030847702, -0.09496318, -0.023122963, 0.03565682, -0.028628573, - 0.014181349, 0.0040098294, 0.004727367, -0.0014492252, 0.038000733, - 0.028731689, 0.065473855, 0.0017006389, -0.041114964, 0.008356865, - -0.008016623, 0.0030603681, -0.021313593, -0.0073997825, -0.006143109, - -0.01635124, -0.03714782, 0.020102507, -0.033318248, 0.022769362, - 0.017464228, -0.001783877, 0.03008256, -0.011232574, 0.0037960967, - 0.004743809, 0.014349543, -8.144606e-4, -0.0051327893, -0.043124005, - 0.0052957362, 0.0134821795, 0.056198314, -0.07013241, 4.231094e-4, - 0.021078534, 0.033674642, 0.0017711853, 0.064400405, 0.014926379, - -0.044488937, 0.021931691, 0.018534603, 0.007177229, 0.02991595, - 0.05513862, 0.012879215, -0.030448971, -0.042057473, -0.0035651359, - 0.033655427, -0.093440875, -0.034468997, 0.0372203, 0.008355554, - 0.017806958, 0.053659387, 0.05663242, 7.1750436e-4, -0.0011102909, - -0.015716072, 0.05773315, 0.012049112, -0.044818975, 5.212989e-4, - 0.057321448, -0.038496546, 0.020167196, -0.020964812, -0.05488077, - 0.038867958, -0.02090179, -0.020939972, 0.054229137, 0.007827828, - 0.010048262, 1.2543795e-4, -0.025154576, 0.01245448, -0.037939537, - -0.026566122, -0.027524682, -0.024358029, 0.015404404, -0.0022775738, - -0.033050098, 0.01109461, 9.940865e-4, -0.025172625, -0.013532271, - 0.010164019, -0.037355732, -0.01941985, -0.010285199, -0.0025605843, - -0.020794537, -0.029279817, -0.037875254, -0.03175429, -0.04419729, - -0.09110405, 0.01268275, -0.05244692, 0.0058675255, -0.05204715, - 0.02456606, 0.019218583, -0.01322106, 0.041374527, -0.031116819, - -0.045230843, 0.001170159, 0.050731797, 0.08502567, 0.060690496, - 0.0024507847, 0.01233828, 0.034979068, 0.035064835, -0.0021988703, - 0.047424592, -0.03266636, 0.017279193, -0.022852674, 0.009993713, - -0.005277963, -0.011181094, 0.06899745, -0.03440507, 0.0011336881, - -0.013414098, 0.06742301, 0.025259791, 0.0064343265, 0.0077046165, - 0.040152784, 0.009882508, 0.055457603, -0.04479894, 0.02663128, - 0.044575367, -0.051021222, -0.003889495, -6.2463974e-4, -0.023550116, - 0.03767871, -0.014786601, -0.036980286, 0.015221748, 0.0034232999, - -3.2174808e-4, 0.051756043, 4.691745e-6, -0.028296342, 0.047366336, - 0.027751777, -0.010132047, 0.0044452585, -0.05780048, 0.014813799, - 0.0148649225, 0.022586932, 9.4753044e-4, 0.0075486377, 0.0010924033, - 0.004074697, -0.039684877, 0.01957686, 0.0029384955, -0.04638869, - -0.020359231, 0.01814117, 0.005385255, -0.04553207, -0.024706097, - 0.007840371, 0.03119088, -0.039491124, 0.032403752, 0.007842333, - 0.051341202, 0.010728444, -0.027531467, -0.0013355946, -0.015399494, - -0.009746713, -0.06504447, -0.020273242, -0.031243814, 0.023538763, - -0.01834153, -0.028152917, 0.0252116, -0.020106807, 0.0135353245, - -0.010379038, -0.037706584, -0.011424571, -0.040928468, 0.02610527, - 6.319589e-4, 0.036051903, 9.838275e-4, -0.0019626888, -0.04336821, - 0.030338058, -0.046324924, 0.10683889, -0.034334406, 0.018487623, - 0.0067864554, 0.018843314, 0.002479363, -0.06371157, -0.04161105, - -0.026483115, -0.022792758, 0.041835275, 0.037000187, 0.014233238, - 0.008607061, 0.014675689, 0.030969344, -0.015881233, 0.029664185, - 0.016255941, 0.014465656, 0.009246871, 0.0013362742, 0.051860694, - -0.023476556, -0.029851422, -0.06572442, -0.023165308, -0.003070345, - 0.035717808, -0.052070763, 0.06554232, -0.0017668287, 0.0084641585, - 0.021011015, -0.051525407, -0.003628243, 0.025646709, -0.047877677, - -0.00912988, -0.045692306, 0.025152115, -0.045554176, -0.012507664, - 0.027872073, -0.06469764, 0.011847992, 0.02660741, 0.024805332, - 0.06620441, -0.04779433, 0.018514305, 0.018933205, 0.005887141, - -0.032645296, 0.05132027, -0.038329232, -0.054547783, -0.02328932, - 0.007537719, 0.026719982, 0.035051752, -0.03671421, 0.0043184333, - 0.007975558, -0.0044739, 0.014225118, 0.013888288, 2.8548806e-4, - -0.05314729, 0.016917218, 0.010113411, 0.008159617, 0.015448601, - 0.0074400743, -0.008820123, 0.025866875, -0.015345904, 0.031596914, - 0.005890457, 0.023837585, 0.009985625, -0.011648473, 0.014847324, - -0.02282079, -0.0054303384, 0.009642016, -0.008682635, -7.408755e-4, - 0.021299666, 0.015036233, -0.010953396, 0.01420714, -0.016902594, - 0.057289068, -0.025939783, 8.529749e-5, 0.028024476, -0.0027544554, - -0.006953691, 0.020846382, 0.043440122, 0.014015136, -0.0088807065, - 0.011911395, 0.013152897, 0.046959814, -0.028000493, 0.00973833, - 0.012211668, -0.013435439, -0.027982341, -0.01983588, 0.042338803, - 0.006024586, -0.041702002, -0.029659806, -0.024242576, -0.0037827482, - 0.009229041, -0.024696233, -0.029758276, 0.013374984, 0.016580747, - 0.03722404, 0.027636996, -0.010752806, 0.007415266, -0.007136015, - 0.034054853, -0.08127107, 0.055334184, 0.055826414, -0.037188914, - 0.044790257, 0.0010395345, -0.01516137, -0.0036661138, -0.048993528, - 0.025106855, -0.010845876, 0.03505636, -0.04778352, -0.014155605, - -0.009172295, -0.0031027987, 0.015063599, -5.330243e-4, -0.020729331, - 0.014858038, 0.045830455, 0.044408314, -0.010875468, 0.050207067, - 0.014988444, 6.3566683e-4, 0.008029707, -0.008952674, 0.026062515, - -0.0044333707, 0.013980321, -0.058052413, 0.00697135, 7.1419484e-4, - 0.038129203, -0.028122809, -0.0046362802, -0.018203968, 0.01685425, - 0.048899163, -0.021465484, 8.573183e-4, 0.046625827, 0.039491873, - 0.017345103, -0.043548867, 0.026981952, -0.006939628, 0.019982578, - 0.008520714, -0.021995444, -0.02324342, 0.08392058, -0.010450526, - -0.07869335, -0.027219066, -0.048765816, 0.02901237, 9.690338e-4, - -0.0063089924, 0.017076021, -0.042412896, -0.036973476, -0.031438515, - 2.3198852e-4, 0.03965944, 0.028487688, -0.017357813, 0.007933862, - -0.034011465, -0.05240461, -0.011904556, -0.002641172, -0.035479195, - 0.014489422, -0.0059014284, 0.01674072, -0.05320169, 0.039967414, - 0.01897502, -9.209697e-4, 0.038525924, 7.5744203e-4, -2.2793915e-4, - -0.009972614, -0.02717066, -0.032654706, -0.035625353, -0.0024741513, - -0.03031744, -0.06758432, -0.027209224, -0.057045396, 0.05818848, - 0.026586236, 0.0106587345, 0.034274627, 0.069255054, -0.049845126, - 0.056599446, -0.008731427, 0.0037899737, 0.013435128, 0.054134242, - 0.025485596, 0.03219696, -0.020718802, -0.006869543, 0.0018336407, - -0.03297965, -0.045704123, -0.009743528, -0.068487324, -0.02979518, - 0.016693853, 0.06652616, 0.005375776, 0.032640364, -0.016399445, - -0.030876553, 0.019385293, -0.0033977663, 6.792134e-4, 0.041452065, - 0.0012804888, 0.02419864, -0.03425178, -0.041677613, -0.027183935, - 0.008095009, -0.011635741, 0.018483963, 0.007875079, -0.0067969225, - 0.028651254, -0.026593335, 0.08561613, -0.018787367, -0.026746815, - 0.030396212, -0.01008287, 0.010177953, -0.015353077, 0.027892467, - -0.005644434, 0.040975768, 0.011467297, -0.0541, -0.04703721, - -0.00411184, -0.020772884, -0.031229574, 0.047981165, 0.023349976, - -0.027410742, -0.02759576, 0.02125344, -0.018298745, 0.013970483, - -0.012818105, -0.024040967, -0.01900834, -0.034402926, -0.0055485875, - -0.049060937, -0.011066721, 0.009213172, 0.017441032, 0.011330016, - 0.013001632, -0.10266859, 0.0033180346, 0.023234947, -0.00256963, - -0.0299757, -0.030063285, -0.0319664, 0.013051129, -0.031124355, - 0.036743753, 0.07606563, 0.034919277, -0.05113315, 0.033029586, - 0.019567925, -0.022999179, -0.04062313, 0.018172141, -0.034798805, - -0.026461456, -0.017878646, -0.0059757535, -0.02359424, 0.018719142, - 0.023693407, 0.002552916, 0.032953143, 0.050091237, -0.03137805, - 0.027089953, -0.017708309, -0.019022763, 0.0018402216, 0.009830349, - -0.011353072, 0.028960802, 0.011421474, -0.024986831, 0.0027691263, - -0.07152211, -0.0025977888, -0.014321088, -0.0072725015, 0.007816066 + "paletteEmbedding" : [ + -0.0610284, + 0.01730373, + -0.04553182, + -0.023530168, + -0.037979983, + 0.003732503, + 0.022658829, + -0.019223964, + -0.032259315, + -0.026261125, + -0.010368725, + -0.018287692, + -0.0034717086, + 0.015193402, + -0.003696944, + -0.027751543, + -0.017500633, + -0.047061622, + -0.04484411, + -0.014185179, + -0.050904755, + -0.0143913785, + -0.010443711, + 0.018924097, + -0.0053386115, + -0.014558778, + 3.2175938E-4, + -0.014932199, + 0.029252876, + -0.021864383, + 0.05726278, + 0.012355479, + 0.05287427, + -0.015432448, + -0.040078107, + 0.0041747475, + -0.0044269925, + 0.07443881, + 0.011226111, + -0.005481731, + -0.021818303, + 0.013631383, + 0.0030626033, + -0.025651725, + 0.013464043, + -7.2870986E-4, + -0.0085793035, + -0.00945084, + 0.024094915, + 0.06556708, + 0.070414595, + -0.044009823, + 0.009990707, + -0.008840939, + 0.0075824927, + 0.032017797, + -0.091018125, + -0.0016338637, + -0.08549335, + -0.02283511, + 0.012113925, + -8.094336E-4, + -0.012358464, + 0.0040013213, + -0.008932306, + -0.015115357, + -0.0072787413, + -0.05707844, + 0.03933944, + 6.4524525E-4, + -0.046145365, + 0.010531137, + -0.048428863, + -0.0055342983, + -0.027498849, + 0.028255716, + -0.029371113, + -0.013810118, + -0.0107265245, + 0.027592817, + 0.04444977, + -0.030116105, + 0.009895611, + -0.026509821, + 0.0029054687, + 0.044158008, + -0.011226314, + -0.0018832799, + -0.045349043, + 0.016698698, + -0.008097906, + -0.021883864, + 0.015041478, + -0.01873897, + -0.030795913, + 0.027617559, + -0.009752675, + 0.013329202, + 0.044462617, + -7.052359E-4, + -0.018884085, + -0.01895073, + 0.0324501, + -0.025066156, + 0.026841046, + 0.012785496, + 0.013273847, + -0.035229605, + -0.033536155, + 0.061666254, + 0.006229216, + 0.0062217405, + 0.039352763, + 0.04952164, + 0.018457143, + -0.049593203, + -0.026568579, + -0.05272057, + -0.011085046, + -0.02579331, + 0.013395203, + -0.0091732815, + -0.0010033726, + 0.009479389, + -0.028725302, + 0.06830447, + -0.00886769, + 0.018608497, + -0.038845435, + -0.08645556, + -0.030760149, + 0.013512531, + 0.042975977, + 0.03606255, + 0.008317214, + 0.020449422, + -0.045368038, + -0.029817192, + 0.060526494, + -0.046174232, + -0.082986996, + 0.007873946, + -2.2437311E-4, + -0.0059712175, + 0.01957149, + 0.021616144, + 0.037926767, + -0.010167794, + 0.02437274, + 6.4765936E-4, + 3.1326688E-4, + -0.018440837, + -0.021349171, + -0.033349503, + -0.0497207, + 0.02146903, + 0.059447557, + -0.026252279, + 0.02087922, + -0.049993813, + -0.002929146, + -0.045695014, + 0.025127556, + 0.027766436, + 0.02803882, + -0.062476695, + -0.0045033004, + 0.014314539, + -0.06948625, + 0.0017319082, + 0.03568649, + 0.043335784, + -0.027867898, + 0.027495772, + -0.019121924, + 0.023860687, + 0.017337771, + -0.029543227, + -0.028003592, + 0.00775103, + 0.022794316, + -0.027129736, + 0.0082143145, + 0.015727164, + -0.028909707, + -0.01143604, + 0.029544817, + 5.5351853E-4, + -0.02189532, + -0.03132864, + -0.009358999, + 0.08950335, + -0.0010115985, + -0.033689328, + -0.012109439, + 0.016998097, + -0.002684527, + -0.0146874, + -0.0010413486, + -0.018314235, + 0.06956373, + -4.8420188E-4, + 0.039760012, + 0.055470303, + 0.015231133, + -0.020363804, + -0.03904059, + 0.03590307, + 0.036452845, + -0.04291615, + -0.050324246, + 0.012746077, + -0.009730044, + -0.021821797, + 0.042290658, + -0.015308125, + -0.0049860976, + -0.011877941, + 0.004648949, + -0.010682847, + 0.013426261, + 0.043753695, + -0.0363128, + 0.0035283912, + -0.009789967, + 0.004638915, + 0.003012001, + 0.019338822, + 0.013029699, + 0.012173285, + -0.025211014, + -0.01841319, + 0.016876772, + 0.015264885, + -0.035067517, + -0.017688556, + -0.009696364, + 0.0023297858, + -0.06261584, + -0.014309826, + -0.012964899, + 0.01401844, + -0.007246003, + -0.06895009, + 0.01845722, + -0.030761875, + -0.036492556, + -0.013217413, + 0.066415444, + -0.011323365, + -0.019180013, + -0.0066805906, + -0.010295408, + 0.035468202, + -0.041741095, + -0.0022189817, + 0.028258573, + 0.030959329, + 0.049110275, + 0.030832725, + -0.044091016, + 0.0019236349, + -0.002695991, + -0.010608125, + 7.015966E-4, + -0.047489315, + 0.03795865, + 0.034013927, + 0.017000608, + 0.016382331, + -0.021672748, + -0.03327265, + -0.033963732, + 0.03150694, + -0.030121356, + 0.03681966, + 0.05244161, + 0.039110046, + 0.012152258, + 0.009648842, + 0.050143987, + 0.0233678, + 0.0031942688, + 0.027066993, + -0.0029831294, + -0.030756969, + -2.8092088E-4, + -0.07134521, + 0.090188004, + -0.03234931, + 0.015934616, + -0.03895553, + 0.041155495, + 0.017567698, + -0.04008217, + -0.00972977, + -0.061608173, + 0.022527725, + 0.02331383, + 0.047367953, + 0.0056270454, + 0.026976502, + -0.0576784, + -0.022738501, + 0.0062111327, + -0.009971185, + -0.0048194653, + -0.03890982, + -0.016044373, + 0.022955984, + -0.013476321, + -0.012018955, + 0.019713845, + -0.03393292, + 0.025640698, + 0.0014471353, + 0.005471605, + 0.006956118, + -0.023642836, + -0.012338983, + -0.032446057, + 0.030260535, + 0.01642734, + 0.014396225, + -0.017943155, + 0.041783936, + 0.012840549, + 0.023963315, + -0.04141408, + -0.019251626, + 0.019100567, + 0.014939156, + 0.027641365, + -0.02884519, + -0.003621339, + -0.01856612, + 0.078059785, + 8.599533E-4, + -0.0068408796, + 0.006657073, + 0.03170211, + 0.016886119, + -0.023654118, + 0.004048167, + -0.0076246005, + 0.0055312943, + -0.014026185, + -0.017250618, + 0.016769156, + 0.021008527, + 0.047153432, + -0.009729488, + -0.014904937, + -0.00976209, + 0.041034088, + -0.0012460145, + -0.044240806, + -0.013806401, + -0.024344029, + -0.030109925, + -0.023497205, + -0.017842848, + -0.00946035, + -0.023599423, + -0.021454064, + 0.041912664, + 0.06208451, + 0.02461029, + 9.3394535E-4, + 0.013874283, + -0.014640099, + -0.016099328, + 0.015119423, + 0.0294209, + 0.0012338472, + 0.021278651, + 0.050085902, + 0.0020890278, + 0.018336315, + -0.0018271897, + 0.03602808, + 0.03305363, + 0.044544645, + 0.022789257, + -0.024304684, + 0.061918847, + -0.073741704, + -5.1356724E-4, + -0.0033698375, + 0.008648229, + -0.03606741, + -0.021628316, + -0.019210812, + 0.030860178, + 0.008545937, + -0.013840396, + -2.8246234E-4, + -0.030771451, + -0.041907746, + -0.05170506, + 0.008189648, + 0.0023189106, + 0.020619944, + 0.0019420367, + 0.04230935, + 0.020435119, + -0.02156682, + 0.012701135, + 0.013339532, + -0.017533887, + -0.01718001, + -0.0119089335, + 0.002420142, + -0.011082677, + -0.0019239105, + -0.035919018, + 0.02600821, + -0.028691936, + 0.041737895, + 0.02287137, + 0.0037333018, + -0.024013076, + -0.016272746, + -0.015508235, + -0.032239836, + -0.003895201, + 0.017542474, + 0.0520804, + -0.041755743, + 0.024522776, + -0.010032176, + -0.01969645, + -0.0069747698, + -0.006573986, + -0.027074436, + -0.04302201, + 0.042096607, + 0.028698117, + -0.021242097, + 0.0021309752, + -0.016071295, + 0.049881276, + 0.05712958, + 0.0811111, + 0.04446814, + -0.014299714, + -0.020894798, + 0.013334477, + 0.021285824, + 0.012844554, + 0.036842, + 0.009468035, + -0.020758616, + -0.06378781, + 0.030348968, + 0.012472042, + -0.011368181, + -0.009659879, + -0.006756481, + 0.0024484238, + 0.009269091, + 0.030638853, + -0.065976456, + 0.04919398, + 0.0668427, + -0.046072584, + 0.0113199195, + -0.052290205, + -0.01752159, + -0.025321692, + 0.049651574, + 0.07047556, + 0.02488378, + -0.02992448, + -0.012929037, + -1.1224479E-4, + -9.806505E-4, + -0.017579123, + -0.0032728927, + -0.0040591327, + 0.05956561, + -3.374723E-4, + -0.031904206, + 0.015571705, + 0.03410886, + -0.01707647, + 0.07561831, + 5.2799383E-4, + -0.004323464, + -0.049156677, + 0.0030053484, + -0.0011774891, + -0.0042546424, + -0.0026410026, + 0.013280592, + -0.014110787, + -0.013277994, + -0.013324432, + -0.03796483, + 0.058319908, + 0.016252292, + -0.005719508, + 0.019513747, + 0.04429437, + -0.024484672, + 0.03193716, + -0.043143503, + 0.054834675, + 0.004625869, + 0.03486733, + 0.018282244, + 0.033971094, + -0.037109017, + 0.07342102, + 0.016811714, + -0.0014428141, + 0.017086247, + -0.039141048, + 0.011990607, + -0.033595994, + -0.016366275, + -0.021210589, + -0.03711057, + -0.018328581, + -0.010225645, + -0.043052834, + 0.06488437, + -0.023615625, + -0.031564653, + -0.059427503, + 0.013784464, + -0.016444575, + -0.0140978955, + 0.002072343, + -0.034229826, + -0.005667225, + 0.023422169, + 0.013110223, + -0.023408353, + -0.006960697, + 0.025846919, + -0.0043916833, + -0.006964354, + 0.015192948, + 0.008912403, + 0.015763152, + 0.0015274378, + 0.010310098, + -0.0045818016, + 0.028901655, + 0.017031334, + 0.033289917, + 0.03470791, + -0.0072855786, + 0.062072568, + -0.001977925, + -0.03710974, + -0.0023378232, + -0.025518693, + -0.010566444, + -0.016494239, + 0.045922298, + -0.011257917, + 0.039804738, + -0.007814785, + 0.015851965, + -0.0036732603, + -0.030183088, + -0.028380485, + -0.054267474, + 0.007356134, + 0.013245847, + 0.04544129, + -0.03326062, + -0.047830507, + 0.023089927, + 0.0101868035, + 0.058690887, + -0.0076913736, + 0.059044372, + 0.0049449657, + 0.006757694, + -0.033175103, + 0.017662672, + -0.011923122, + 0.013230936, + 0.011951471, + -0.013790303, + 0.011110733, + 0.030916762, + -0.01615688, + 0.09239043, + 0.0544712, + 0.022357775, + 0.0060125277, + 0.090963274, + -0.0018812092, + 0.04212522, + -0.0073830094, + -0.048158888, + 0.056004018, + -0.018103767, + -0.0239371, + -0.103040464, + 0.018701624, + 0.039142985, + -0.022070961, + -0.023160841, + 0.08251637, + 0.0042441133, + 0.011616889, + 0.04035151, + 0.049264368, + 0.024730282, + 0.010470046, + 0.048482135, + -0.015623349, + -0.055052347, + 0.017712608, + 0.022516392, + -0.011034045, + -0.00424317, + -0.009317729, + -0.012214969, + 0.030372478, + 0.034979314, + 0.017845811, + -0.02026517, + -0.006455247, + -0.004885049, + -0.028018232, + -0.016527882, + 0.013208999, + -0.023554938, + 0.006700745, + 0.04128567, + -7.787152E-4, + -0.05493045, + 0.01588493, + 0.002381429, + 0.028252413, + 0.038141053, + 0.014938131, + 0.0048384876, + -0.011075368, + 0.007986966, + -0.0051778695, + 0.017886752, + -0.014381535, + 0.093495876, + -0.0229307, + -0.04418387, + -0.02025548, + 0.031199198, + 0.05380818, + -0.051270805, + -0.049199864, + -0.03964085, + 0.015470472, + 0.029608222, + -0.013519164, + 0.08299368, + 0.057333793, + -2.6683568E-4, + -0.0110806655, + 0.007451797, + -0.03379817, + 0.008067943, + 0.008818102, + 0.022147493, + -0.02139683, + -0.024245545, + 0.010277682, + -0.02033183, + 0.003618407, + 0.016884835, + -8.599118E-4, + -0.013942566, + -0.08372197, + 0.026822029, + 0.013958736, + -0.031603217, + -0.016314138, + 0.04175674, + 0.031593617, + -0.03956901, + 0.017612087, + -0.007460046, + 0.0033426231, + -0.029201103, + -0.02800599, + 0.011719421, + 0.06781261, + 0.028393459, + 0.032874614, + -0.0271274, + 0.030009488, + 0.043079834, + -0.06694661, + 0.009224822, + 0.007951493, + 0.011998724, + 0.04539742, + 0.036742814, + -0.012355598, + -0.021899479, + -0.048448823, + -0.057907496, + -0.050937034, + -0.027524834, + 0.052010093, + -0.02865497, + 0.02968623, + 0.026892101, + -0.066577, + -0.017332144, + -0.04841233, + -0.008370193, + -1.1654568E-4, + -0.020960942, + -5.978772E-4, + 0.029208, + -0.004849377, + -8.6438155E-4, + 0.015904991, + -0.046405256, + 0.018359046, + 0.0030590987, + 0.030699605, + 0.012042665, + -0.0015193659, + -0.035131432, + 0.027191618, + 0.026917653, + 0.010574298, + 0.0046658656, + -0.08178798, + -0.020926544, + 0.034866013, + 0.08263459, + 0.014100397, + -0.035180468, + 0.003701872, + -0.019333763, + -0.013160805, + -0.023451798, + 0.05676064, + -0.005655091, + -0.016814409, + -0.041949213, + 0.028521014, + 0.009177944, + 0.0043238234, + -0.004003577, + -0.012899275, + 3.234049E-4, + -0.029260766, + -0.048391026, + 0.0016996078, + 0.031567376, + 0.013301294, + 0.022849087, + 0.007867835, + 0.007223884, + 0.015699472, + -0.0054779444, + 0.041069523, + 0.037081566, + 0.040555857, + -0.008618181, + -0.041458175, + -0.017164746, + -0.02620821, + 0.0032891526, + 0.0040605864, + -0.049657136, + -0.046294615, + 0.037695713, + -1.5235128E-4, + 0.03774269, + 0.0139717, + -0.04394935, + 0.017960157, + -0.01768288, + 0.015323467, + 0.02400015, + -0.009438015, + -0.07715017, + 0.03525516, + -0.0035564513, + 0.0032839647, + 8.787823E-5, + 0.014657263, + -0.031442337, + -0.0067535937, + -0.0116248345, + 0.03412493, + 0.050194968, + 0.0040133796, + 0.0068406067, + -0.023387734, + 0.026526466, + -0.040619873, + -0.036427114, + 0.007837619, + 0.04032192, + -0.02850739, + -0.0023331111, + -0.012335452, + 0.01583558, + -0.010546507, + -0.02023269, + 0.037468627, + 0.042960875, + 0.029686572, + 0.025086746, + 0.009429752, + -0.01619308, + 0.0060338588, + 0.048413064, + 0.038075805, + -0.0055970564, + 0.025771484, + 0.022314636, + -0.007817336, + -0.018126803, + 0.042010643, + 0.0160948, + 0.035170175, + -0.036306683, + 0.05019549, + 0.033687353, + -0.009118978, + -0.01857796, + -0.05845974, + -0.010048522, + 0.0131119145, + -0.05291306, + 0.026802413, + 0.009406437, + 0.042653326, + -0.0070147184, + 0.015211422, + -0.010372248, + -0.002420239, + -0.002906743, + 0.038025025, + -0.019793313, + -0.008882503, + -0.010672473, + 0.047060378, + -0.08494632, + 0.022639776, + 0.001172111, + 0.026339613, + 0.06346156, + 0.08111185, + -0.03444288, + -0.014374678, + 0.023475435, + -0.027196195, + -0.025646904, + 0.013216142, + 0.022710938, + 0.09021784, + -0.015556372, + 0.018476512, + 0.0042613163, + -0.019763103, + -0.014796344, + 0.0813137, + 0.016885256, + 0.009786061, + -0.03336486, + -0.0137655465, + -0.04570703, + 5.0105922E-5, + 1.6982008E-4, + -0.054283302, + 0.008967204, + 0.008430763, + 0.03833241, + -0.024459863, + -0.015779763, + -0.05102857, + 0.04259049, + 0.015030426, + -0.03625404, + 0.01724066, + -0.018106405, + 0.031530928, + 0.020710008, + -0.039756462, + -0.059956048, + 0.053683385, + 0.039236043, + 0.022347782, + -0.06488921, + 1.3612537E-4, + -0.02063508, + 0.021832122, + -0.03554597, + -0.034279145, + -0.014266116, + 0.028165441, + -0.036207337, + -0.0033061446, + 0.018718826, + 0.0047264616, + -0.06043322, + -0.019403396, + 0.0104768565, + 0.06763459, + 0.049777403, + -0.031487793, + 0.058993112, + -0.05436872, + 0.023836767, + 0.019810032, + -0.030016433, + -0.014997818, + 0.052903567, + 0.050269075, + 0.039068818, + 0.039731167, + -0.015824147, + 0.0014454669, + -0.0068931775, + 0.0049928483, + -0.031404156, + 0.0019884724, + -0.012229699, + -0.03772236, + -0.06017776, + -0.012451973, + 0.043844335, + -0.013631158, + 0.029181516, + 0.05450888, + -0.0073102806, + -8.868849E-4, + -0.03868441, + 0.021516263, + -0.014139516, + 0.005123762, + 0.0047731427, + -0.027021715, + -0.0117542045, + -0.004291499, + -0.0039231917, + 5.3096854E-4, + -0.06134184, + -0.037771605, + 0.0048573767, + 0.03463123, + -0.016314598, + 0.005348976, + 0.013246685, + -0.02025109, + -0.04985006, + 0.020713363, + 0.0025499032, + -0.011879216, + -0.00993944, + 0.03153507, + 0.036494154, + -0.03536616, + -0.020448223, + -0.004457022, + -0.0067103575, + 0.06374415, + -0.045400478, + 0.050866816, + -0.042848002, + -0.05599279, + -0.038780015, + -0.038129166, + -0.0040592323, + 0.011992642, + -0.0044245324, + -0.039149724, + -0.06317585, + 0.018862603, + 0.032272354, + -0.026706398, + -0.042825278, + -0.015113241, + -0.012592731, + -0.008460817, + -0.06313537, + 0.022791166, + 0.004147604, + -0.020557942, + 0.026973803, + 0.0029478422, + 0.045916997, + -0.04232742, + -0.03608361, + 0.02564448, + -0.027492827 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json b/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json index b4f560444..1df727495 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json @@ -1,1339 +1,5249 @@ { - "description": "an example of images with work metadata for the API tests", - "createdAt": "2023-11-21T14:25:44.194961Z", - "id": "risvmj7g", - "document": { - "modifiedTime": "2043-09-04T19:06:48Z", - "display": { - "id": "risvmj7g", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an example of images with work metadata for the API tests", + "createdAt" : "2024-11-14T14:37:56.528296Z", + "id" : "kwluai3r", + "document" : { + "modifiedTime" : "1991-07-06T03:39:13Z", + "display" : { + "id" : "kwluai3r", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/orM.jpg/info.json", - "linkText": "Link text: D1NSH6s334", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", + "linkText" : "Link text: QjI36BBKWB", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/orM.jpg/info.json", - "linkText": "Link text: D1NSH6s334", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", + "linkText" : "Link text: QjI36BBKWB", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#D1BF82", - "source": { - "id": "76n13j4t", - "title": "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#A56837", + "source" : { + "id" : "b1yceq8o", + "title" : "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "risvmj7g", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "76n13j4t", - "sourceIdentifier.value": "XpdahXotKm", - "identifiers.value": ["XpdahXotKm"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread" + "query" : { + "id" : "kwluai3r", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "b1yceq8o", + "sourceIdentifier.value" : "goaksunog5", + "identifiers.value" : [ + "goaksunog5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 5.7008024e-4, 0.0082137, 0.016919194, -0.026564676, -0.030039629, - -0.019807296, 0.01657094, 0.0055050086, 0.001967436, 0.013249127, - -0.004312647, -0.042587645, 0.0191182, -0.037011277, 0.01613851, - 0.008170997, 0.007567904, 0.00904007, -0.0010823491, -0.010122351, - 0.014717016, 0.018632358, 0.0064254245, 1.3912577e-4, -0.0045236303, - -0.01337484, -0.011633818, -0.011235416, -0.004532012, -0.0013549218, - -0.011222131, -3.650393e-4, 0.009639887, -0.022121463, -0.0026040887, - -0.0063795084, 0.0045231753, 0.0036256898, 0.034213327, -0.016894788, - 0.041252036, 0.0122269625, 0.012491027, -0.024608236, -0.0028164752, - -0.004680599, -0.008261132, 0.018390091, 0.027088732, -0.01554291, - 0.011077554, 0.009924555, 0.018761775, 0.0023214659, -0.024699636, - 0.027533345, 0.003414689, -0.010800188, -0.01638119, 0.014490383, - -0.011505201, 0.007877923, -0.02578282, -0.0056395573, 0.007927684, - -0.015202334, -0.0177896, -0.019815259, 0.0036996922, -0.0034044248, - 0.011011976, 0.0023196202, -0.0085807135, -0.023957435, -0.023086894, - 0.02371005, -0.024414832, -0.01491906, 0.020481346, -7.514608e-4, - -0.02190687, 0.016415158, -0.008668709, 0.0096185235, -0.030435797, - 0.0064689084, 0.013898303, -0.0039414945, 0.010080507, -0.009840712, - -0.018558947, 0.03471922, 0.0025918477, 0.002911493, 0.015420869, - 0.020662025, 0.016115412, -0.017161554, -0.011293808, 0.010491793, - 0.019725192, -0.018588563, 0.017072638, -0.0021561147, -0.01678746, - -0.015866572, 0.025005002, -0.009069921, 0.021999218, -0.013992365, - -0.00996843, -1.4994231e-4, -0.007949825, 0.01967883, -0.009626447, - -1.4417009e-4, 0.003327101, -0.0018433408, -0.0017462547, -0.0071759163, - 0.006912505, -0.021188205, 0.0018661738, -0.017046938, -0.014485665, - 0.017735777, -0.0038196368, 0.011494557, -0.009508831, 0.006114433, - -0.02221274, 0.0034868089, 0.015441421, -0.019169781, 0.014657897, - 0.022582138, -0.014708232, -0.016132273, 0.027734615, 0.019767078, - -1.7990304e-4, -0.011816058, -0.017002055, 0.024389224, -0.02149626, - 0.008635307, -0.015857028, 0.0042038667, -0.007136459, 0.0131862555, - 0.0036415155, 0.005304819, 0.0058327788, 0.012883368, 0.0021507088, - 0.01134258, 0.045966845, -0.015909715, -0.015837435, -0.02464, - 0.0064330855, 0.011878861, 0.022402968, 0.021124654, 0.012816944, - -0.0133511415, -0.028105661, 9.4684004e-4, -0.02358606, -0.0069970437, - -0.045539197, -0.006774394, 0.009430367, -0.016543673, -0.017388627, - -0.0044567757, -0.0026788518, -0.0022528977, -0.011713181, 0.0011893432, - -0.012355308, -0.024105724, -5.796414e-4, 0.011535596, 0.015647244, - 0.012686078, 0.008825083, 0.008935954, -0.0038025125, 0.0042686844, - -0.020930074, 0.028725212, -0.011005661, 0.0057695643, -1.3107162e-4, - -0.022790324, 0.0016972922, 0.0033577012, 0.0062817098, 0.022697903, - -0.0012524122, 0.004558224, 9.531427e-5, -0.018971164, 0.008830758, - -0.001503432, 0.0060514244, -0.03048548, -0.011937207, -0.01982382, - 0.01908799, -0.005824811, 0.0031220585, 0.03105706, 0.0061099906, - 0.0018272055, -0.013709572, -0.0078045116, 0.0039206953, -0.01771391, - 0.034232758, -0.021965178, 0.0065455018, 0.002128624, 0.015814718, - -0.016006133, -0.0076183607, 0.008137129, 0.02006209, 0.008934942, - 0.03248035, 0.00865182, -0.012045213, 0.009107281, -0.00537594, - -4.374286e-4, -0.013547772, -0.0043232976, 0.0125214765, -0.012573756, - 6.11612e-4, -0.0063748597, 0.003094996, 0.012211463, 0.011322907, - 0.0011460489, 0.001996328, 5.225825e-4, -0.0015510486, -0.0038892976, - 0.009735484, -0.01608265, -0.021951253, -0.005120347, 0.033560015, - 0.02292081, -3.6639674e-5, 0.02411351, 0.0010454613, -0.013385386, - 0.031770196, -0.009149224, -0.009069197, -0.005261711, 0.011632888, - -0.007429485, -0.01019095, 0.029887855, -3.807276e-4, 0.01850326, - -0.010922684, -0.0059731263, 0.023578022, 0.0023171594, -0.01507386, - -0.018728094, -0.004473061, 0.011939327, 0.006815305, -0.01896654, - -0.0021445432, 0.010358238, -0.009984402, -0.017438948, 0.005603775, - -0.0129665295, -0.016520334, 0.0016284076, 4.5775395e-4, -0.010114497, - 0.02299947, -4.8009533e-4, -0.004523642, 0.0083539, -0.0011402013, - -0.0051995656, -0.01166917, -0.0130277425, 0.027288442, -0.011585545, - 0.003793626, -0.015412878, 0.027269663, -0.021415798, 0.01564374, - 0.011754986, 0.011161122, -0.0145000825, 0.003631018, 0.024677875, - 0.010997037, -0.022355499, 0.017502392, -3.6321924e-4, -0.006118954, - -0.014632952, -0.0036737907, -0.01829222, 0.025628809, 0.0036246008, - 0.0013078081, 0.016590683, 0.027912848, 0.017579814, 0.008165186, - 0.0031610916, -0.0074452213, 0.0052547795, 0.029207345, -0.0040083867, - -0.004430534, -0.003687092, 0.031642675, 0.010905645, 0.0048272433, - 0.010490193, -0.014834499, 0.008555374, 0.013778544, 0.028167218, - -0.0132205775, 0.0063938233, 0.014337607, -0.0077844313, -0.019904424, - 0.012247539, 3.71755e-4, -0.03237218, -6.5364933e-4, -0.014831512, - -0.0010198645, 0.0041752006, -0.023667034, -0.019614918, 0.02811556, - -0.020633249, -0.0064575365, 0.011509579, 0.0024091464, 0.011097601, - -0.020142838, 0.0034713966, -0.031727362, -0.011271199, 0.0023350702, - 0.017725581, 0.0056760726, 0.008118428, -0.011176817, 0.0012140566, - 0.022424487, 0.0035233956, -0.02371598, 0.022093982, -0.008854377, - 6.363774e-4, 0.002553398, 0.0036261543, -0.0012865681, 0.022409746, - 1.5591056e-4, 0.003386278, 0.015566608, 0.0062831603, 0.011001535, - -0.0018196858, -0.009907306, 0.017419998, -0.025544524, 0.007633822, - 0.004576506, -0.027634574, 0.008848079, 0.0059291804, -0.034746587, - -0.011225278, 0.013050981, -0.018568864, -0.005895929, -0.0132224215, - 0.011322481, 0.0017249235, -0.01090343, -0.014204386, -0.00597914, - -0.018672403, -0.026658319, 0.0062787533, -0.013025721, 0.0034844438, - -0.0036918323, -0.0050188657, 0.003979008, -0.007827953, -0.012302381, - -0.004440714, -0.004550692, -0.008053962, 0.0050564758, -0.010275318, - 0.016655551, 0.015279234, 0.0030320974, -0.015120704, -0.020818235, - -0.006572224, -0.006606257, -0.016240519, -0.04289019, 0.0024761097, - -0.027860332, -0.019273536, -0.021007737, 0.020861508, -0.0019745047, - 0.019189708, -0.008050497, 0.03729127, -0.011862272, 0.0021089998, - 0.0032865875, 0.005009998, -0.015927985, -0.015108445, -0.008531392, - -0.0082609365, -0.010934688, -0.012726162, -0.0077184844, -0.037805617, - 0.019315867, 9.597814e-4, 0.024198188, -0.033171147, -9.5876737e-4, - 0.026455715, 0.018868748, -0.002148668, -0.013072454, 3.5088128e-4, - -0.002380115, 0.008768826, -0.007323222, -0.015707076, -0.032018438, - 0.018428747, 0.018332817, -0.033144824, -0.017907148, 0.007047592, - -0.0035656993, 0.026664134, 0.015506289, 0.012700435, 0.0015495246, - 0.028047731, -0.011597792, -0.006054692, -0.026862834, -0.013328792, - -0.019356837, -0.013003456, 0.015720816, 0.029083626, 0.0064618913, - -0.02492059, 0.019271046, 0.0030131226, -0.0015626823, 0.011337713, - 0.01010462, 0.0039276867, -0.010745235, -0.006521019, -0.027465755, - 0.017575042, -0.0017817279, -0.004921022, -0.005170503, 0.009058503, - 0.008734611, 0.012395316, 0.022394001, 2.9682287e-4, 0.004747198, - -0.011051762, 0.011775736, 0.0014056242, -0.0127504375, 0.0044183102, - 0.005169029, -0.03467078, 0.0025103195, 0.019190226, 0.0055578267, - -0.012099194, -0.015097226, 0.030668495, -0.010098808, -0.039779603, - -0.024547134, -0.011030294, -0.0028902122, 9.868309e-4, -0.023711156, - 0.013201973, 0.004357242, -0.009713878, -0.010343417, 0.010195988, - -0.0148511175, -8.4749976e-4, 0.021347016, -0.016935702, 0.029197197, - -0.0055322885, -0.016259246, 0.024084471, 0.0021118368, 0.019899037, - 0.004315687, -0.017769909, -0.0032294884, 0.019922942, -0.004786839, - -0.039095126, -0.013104935, -0.011216165, 0.024109405, 0.033339985, - 0.010360802, 0.021423236, -0.014070111, -0.024972029, 0.013746052, - 0.024629567, 0.0027340427, 0.018242829, 0.0041912836, 0.0011914466, - -1.05409556e-4, -0.011113889, -0.026601601, -0.014680197, 0.025118254, - 0.024512926, -0.0031121485, -0.0021997509, -0.003186162, 0.004562336, - 0.0076426454, 0.021380696, 0.012698387, 0.017911613, -0.021063587, - 0.0034755457, -0.023059897, 0.0053831316, 0.0052267527, 0.016819282, - -4.005353e-6, -0.023696763, 0.009982744, 0.008672924, 0.011522056, - -0.034945052, 0.030403866, -0.014930378, 0.0027932771, -0.0113519225, - -0.010016274, -0.011409691, 0.02073501, -0.004895263, 0.014635396, - 0.0029047432, -0.0016497178, 0.030350294, -0.013212973, 0.01624092, - -8.307761e-4, -0.0136334095, 0.016089868, -0.036597636, 0.009344439, - 0.004922908, -0.008301198, 0.008475351, -0.0066137137, -0.0022332766, - -0.0031026958, 0.02438352, 0.014096101, -0.015374592, -0.005437585, - 0.012958456, 0.008217776, 0.0035822857, -0.030293925, 0.0016724893, - -0.0033874928, 0.017620355, -0.015887361, -0.003634381, 0.002740298, - -0.0112811215, 0.00917277, 0.00412965, -0.020212656, 0.0062373686, - 0.009044872, -0.021794247, 0.026298607, 0.010779998, -0.0093268175, - 0.016696196, 0.0075714695, 0.0020489527, 0.031087961, -0.026888188, - -0.011215379, 0.00748586, -0.0036732152, 0.010092702, -0.03718112, - -0.0025031462, -0.017206911, -0.00715864, -7.296932e-5, -0.011011455, - 0.015670968, -0.009072038, 0.0058246106, 0.016948491, -0.0033139957, - -0.0056308312, 0.03739497, -0.02737691, -0.013408134, -0.036870062, - -0.0037931318, -0.04141281, 0.014704252, -9.262862e-4, -0.0054558385, - 0.026774354, -0.012508506, 0.016467292, 0.0101034045, -0.029586975, - 0.0055612517, -0.0025319844, 0.0028745926, 0.015280609, -0.0011420391, - 0.0041048094, 0.026921054, -1.0213975e-4, -0.012923083, -9.109606e-5, - 0.009279457, -0.0074570663, -0.020409385, -0.011413031, 0.008423695, - -0.022246506, 0.020563038, -5.7890266e-4, 0.028606191, -0.0030332147, - 0.0061029233, -0.021355538, 0.02815969, 0.0020456666, -0.015241156, - -0.014689026, -0.011354821, -0.014117562, -0.010708618, -0.009725615, - 0.02243689, 0.0047199256, 0.019423222, 0.014819346, 0.008217345, - -0.014013306, 0.031523637, -0.0035987806, 0.021311408, 0.020238241, - 0.005733467, -7.727834e-4, 0.009734138, -0.006091005, -0.01231117, - -0.015169031, 0.015122858, 0.0031957978, 0.0072436873, 0.01570161, - -0.02044748, 0.011853824, 0.004863016, -0.0016404833, -0.00457542, - -0.018983472, 0.0025187314, 0.0060816887, -0.009283405, -0.010911969, - -0.014298821, 0.011508452, 0.011884033, 0.010574659, -0.0024731036, - 0.010001089, 0.05012149, -0.013909398, 0.01809443, 0.0055742892, - 0.005161887, -0.017937953, -0.015062527, 0.009956411, 0.029708598, - -0.020182615, 0.013206573, -0.005465026, 0.017030014, 0.0021711963, - -0.0054022656, 0.006354238, -0.012838543, -4.2262403e-4, 0.002910447, - 0.021590473, 0.037245307, 3.489991e-4, -0.001057331, 0.010759391, - 0.0129773775, 0.03930399, -0.018919436, -0.009462852, -0.009922649, - 0.016616387, 0.009530981, -0.035125773, -0.014852926, 0.0042403494, - 0.005938619, 0.0020114167, -0.008998433, 0.012154413, -0.017593134, - -0.014181728, 0.002818476, 2.2464332e-5, -0.006949597, 0.008885383, - -0.012950394, -0.008138241, -0.0035226215, 0.0017780893, 0.009009427, - 0.0066280016, -0.0014063104, -0.007776114, -0.033536572, 7.0978474e-4, - -0.011266855, -0.010653267, 0.022657022, 0.016677659, 0.0056539876, - -0.024124814, 0.001015557, -0.022018688, 0.041149445, 0.01948251, - -0.014486521, 0.017959543, -0.0085490355, 0.0026896235, 0.030180532, - -0.006899703, -0.014247659, -0.020511659, -0.00547805, 0.008609668, - 0.013218123, -0.0011439389, 0.019152567, -0.0081886705, -0.008339116, - -0.00884131, -9.025084e-4, 0.0018749437, -0.030330509, -0.0016535107, - 0.014565967, 0.015323736, 0.003823557, -0.0068343165, 0.0051200124, - -0.004367543, 0.015220374, 0.0050932863, -0.011487707, -0.011720481, - -0.0044854362, 0.0057510543, 0.018909872, -3.6840787e-4, 0.0058380426, - 0.001156254, 1.8621549e-4, 0.008463094, 0.02761199, 0.009878955, - 0.02984707, 0.019838773, 0.0038272487, -0.030946808, -0.01934911, - -0.0089684725, 0.006804885, -0.0032105118, 0.01584881, 0.012525826, - 0.0072731175, 0.005359094, 0.0029362289, -0.0041052587, -0.0031054758, - -0.012471516, -0.0029306398, 0.0078980755, -9.866644e-4, 0.011213423, - -0.0035376407, 0.022269238, -7.179944e-4, -0.012993749, 0.0059594023, - 0.010900535, -0.023816353, 0.008849247, -0.018557316, -0.010860023, - -0.009777104, 0.007332194, -0.03745854, -0.017557465, 6.627248e-4, - 0.021864338, 0.01931425, 0.0042593717, 6.3760666e-4, -0.0074706697, - -0.02934101, -0.012125333, 0.0060731764, -0.009696774, -0.00892161, - -0.006307409, 0.020158052, -0.02563397, 0.024556125, -0.011862314, - 0.003165309, -0.007813402, -0.0017648885, -0.02199153, -0.0042558913, - 0.009565666, -0.012449211, -0.025619512, -0.017380068, -0.0050520585, - 0.014098151, 0.022952314, -0.014108703, 3.320084e-5, -0.0123872375, - -0.0128022535, -0.015890483, 0.019608773, 0.0031036278, 0.0050492017, - 0.013833752, 0.011821748, 0.0068211462, 0.017569102, 0.012422054, - -0.03949666, 0.0018200205, 0.013452151, 0.020374496, 0.019494725, - 0.0035457506, 0.015181899, -0.0082911495, -0.011630088, 0.019149564, - 0.017948752, -0.018411683, -0.0034930927, 0.025583193, 0.004133039, - 0.0034702031, 0.015412059, -0.005186232, -0.0046159443, 0.0065521873, - 0.026344208, 0.014223068, 0.0060919547, -0.016314711, 0.01670072, - -0.033887397, 0.0017325185, 0.0017515945, 0.042715162, -0.011044873, - -0.0013978888, -3.5523935e-4, -2.240387e-4, -0.021599213, 0.011539665, - -0.0033289252, 0.02569315, 0.014947435, 0.020857625, 0.0020613805, - 0.0029654845, -0.034747392, 0.012639206, -0.012259988, -0.009998913, - -0.018618355, 0.00273854, 0.0064170137, -0.0057550566, -0.03427771, - -0.008831457, -0.01019671, -0.014264139, 0.01601712, -0.024285305, - -0.012756345, 0.018842515, -0.03064862, -0.0025371362, -0.0059837056, - 0.023699604, 0.013332807, -0.0034744476, -0.0074329856, -0.0067983316, - 0.014662732, 1.4901474e-4, 0.017008489, 0.015356039, 0.014135102, - 0.040971123, 0.010393682, 0.03340362, 0.0085516805, -0.0045877704, - -0.024078695, -0.01847635, 0.035955373, -0.011424768, 8.99936e-4, - 2.1546896e-4, 0.010330232, 0.01932923, 0.014681991, -0.0073118117, - -0.008483942, 0.0018716526, 0.006554834, 0.008155186, -0.012832166, - -0.020309139, -0.0031157671, -0.01271338, 0.023058398, 0.009864856, - 0.009681863, -0.004006636, -0.003895487, -0.016043095, 0.014394088, - 0.0076296274, 0.0026025635, -0.00490333, 0.0033727388, -0.021365644, - 0.0014723336, 0.015046132, 0.04360117, 0.032200765, 0.016945448, - -0.025195222, -0.005082221, -0.024671735, -0.0066686976, -0.017962603, - -0.011041547, 0.0058607277, 0.0054459386, -0.025541427, 0.027274959, - -0.0050541353, -0.0018167978, -0.025581235, -0.01551805, -0.0056558717, - 0.0015598177, 0.007067663, -0.017732082, 4.3117846e-4, -0.009036561, - 8.526363e-4, 0.012524703, -0.004438731, -0.0064919, -0.005042856, - 0.010975333, -0.0040324302, 0.012354116, -0.025038278, -0.0071374723, - -0.012335926, 0.015941726, -0.017405903, -0.005476168, 0.007010511, - 0.009148228, 0.011115957, -0.022689493, -0.0058427854, 0.026543818, - -0.025936153, -0.019415693, -0.0023051132, -0.009795859, -0.011267258, - 0.0055903047, -0.03241016, -0.016604224, -0.00363722, -9.230221e-5, - -0.010587756, 0.0043371716, 0.00799145, 0.017038364, 0.01204089, - -0.005230823, -0.0039239367, 0.011204261, 0.019384805, -0.01639286, - -0.0149716055, -0.011948109, -0.0031657736, -0.008234228, -0.0066349152, - -0.0056449473, 0.025600567, 0.011677385, -0.028107356, 0.022319505, - 0.012373438, 0.0236456, 0.0018724271, -0.0087809265, 0.0013330854, - -0.007585995, -0.026311308, 0.0036223396, -0.008535385, -0.012676085, - 0.011924978, 0.008036111, -0.010402519, 8.3601056e-4, -0.018137163, - -0.0070116175, -0.042623904, -0.0024916264, 0.01791962, 0.011062424, - 0.0030772293, 0.016940728, -9.771708e-4, -0.026306288, 0.008774464, - -0.024785332, -0.007095978, -0.010043105, -0.011800713, 0.018611075, - 0.013076553, 0.021086607, -0.022507122, 0.004701126, 0.0058884574, - -0.0022085162, 8.315475e-4, 0.0049046725, 0.023248684, 0.019226896, - 0.019762835, -0.017505042, -0.012401459, -0.010327294, 0.0028521025, - 0.0021467549, -0.003272359, 0.019292973, 0.008403371, -0.007790248, - -0.0012946517, -0.0069097653, -0.0057368013, 0.004422436, 0.011064689, - 0.0091740955, 0.0025537568, -0.0014232036, -0.013868166, 0.023921322, - 0.018291505, -0.022780538, 0.0029757298, 0.018346893, -0.02211293, - 0.028922638, 0.014183584, 0.009054464, -0.012515829, 0.0014368757, - 0.020135976, 0.009113599, 0.015559672, 0.014403191, -0.005585761, - -0.014838298, -0.023120277, 0.008917132, 0.002758725, -0.043286763, - -0.027808214, -0.03352066, 0.0027553055, -0.013358316, 0.006325797, - -1.6787772e-4, 0.03605786, 0.017627517, 0.002504956, -0.05310734, - -0.013972192, 0.020191412, 0.016301062, -0.0019273047, -0.014173775, - -0.024314983, 0.0100994175, 0.0164173, 0.00826518, 0.009898062, - 0.0076943054, 0.012341618, 0.0033849978, 0.009636039, 0.0042897537, - 0.0034044401, -0.013959084, -0.002603071, -0.024410022, 0.0029762343, - 0.041450784, -0.023465766, 0.03372805, 0.025593895, -0.0029047083, - 0.0028482717, -0.022471739, 0.010587326, 0.012696797, 0.007945417, - 0.010568701, 0.027392726, 0.01485021, -0.008079169, 0.01708335, - -0.0021609971, -0.01391462, -0.020095421, 0.011639917, 0.009358249, - 0.018216575, 0.009078064, -0.0029646272, -0.01217172, -0.014070736, - 0.006880665, -0.025341855, -0.023762694, 0.012146405, -0.028447885, - -0.01874363, 0.005277716, -0.003585674, -0.0033216237, 0.031282257, - 0.0032020425, -0.0014315803, -0.02476054, 0.009912174, 0.022853563, - 0.0019851893, -1.4785542e-4, 0.023064004, 0.006471598, 0.002259786, - 0.016391143, 0.006823796, -3.4814593e-4, -0.028351048, -0.002906663, - 0.008973243, 0.016361278, -0.00421154, -0.0061086663, 0.010230823, - 0.0011698403, -0.004016121, 0.014096464, 2.2864291e-4, 0.01646729, - 9.150814e-4, 0.015176064, 0.0063953823, 0.021643247, 0.014702264, - 0.03367447, 0.016984817, -0.011797975, -0.018047912, -0.017152458, - -0.0124350395, 1.9356885e-4, 0.02451442, -0.0064896597, -0.010785897, - 0.0024937142, 0.0052774223, 0.0044671637, 0.057401676, -0.002247355, - 0.010827613, -0.004019487, 0.017438347, -0.005611146, 0.018258722, - -0.016402772, 0.015408373, -0.004553794, -0.0012247859, -0.030079834, - -0.009088568, 0.0074539958, -0.0016695755, 0.00728683, -0.009736043, - -0.044029173, 0.011604885, -0.0035660497, -0.013051078, -0.0028744158, - -0.0055208085, -0.029343868, 7.249954e-4, -0.0021881834, -0.012176076, - 0.0066981786, -0.0052150926, -0.027796911, 0.012716235, -0.009787067, - 0.026655557, 0.0070580193, -0.012715414, -0.011077842, 0.002876188, - -0.020313414, 0.0053681275, -0.0027998905, 0.014767068, -0.051129464, - -0.0024852364, 0.0024059361, 0.00765277, 0.02229182, 0.0077380436, - -0.023283672, 0.014101854, 0.0052536633, -0.01928304, 0.011418952, - 0.010370014, 0.0024494487, -0.023569908, -0.01606373, -0.010498586, - -0.0046396237, 0.01693314, -0.0042428174, -0.01587742, 6.9560274e-4, - -0.01841027, 0.022253208, -0.019541666, -0.00874112, 0.0031901498, - -0.021785924, -0.0153386695, -0.005089371, -0.009280946, 0.025018336, - -0.013312935, 0.0011180406, 0.02989119, 3.229835e-4, -6.1890006e-4, - -0.020722311, -0.0064197676, 0.0012707736, 0.03627336, -0.015723104, - -0.016937762, -0.010021282, -0.02475322, 0.01831656, 0.0047983727, - 0.030229056, 2.8112734e-4, 0.015420612, 0.02085482, -0.017755698, - 0.042458035, -0.006237384, 0.008411218, 0.003911704, 0.007043453, - -0.020064006, -0.023028081, 0.020807374, 0.025353486, 0.0019934005, - -0.0065521174, 0.0013613789, 0.014644071, 0.006700741, -0.016062193, - -6.5616233e-4, 0.028558394, 0.017873721, 0.0073840446, 0.013535944, - -0.013269446, 0.0104845, 0.025306651, 0.008020677, 0.028290886, - -0.007771422, 0.0044270633, 0.003533272, 0.0019482865, -0.016901812, - -0.033437643, 0.001298267, 0.011240613, -0.015445726, -0.008434152, - 0.013406812, -0.0055663604, -0.006740766, -0.0026659188, 0.0040396424, - 0.0024680553, -0.023078658, 0.0010865681, 0.009928257, 0.013022861, - 0.022123627, 0.007800334, 0.0055900197, -0.013259067, -0.013137888, - -0.0032950935, -0.005547256, 0.02625546, 0.015142643, -0.021967398, - -0.0029243203, -0.0054801516, -0.017770866, 0.0012631754, -0.01406948, - 0.0115265725, -0.0044618165, 0.017996281, 0.011087631, -0.02020373, - -0.0232124, 0.0043409355, 0.0268309, 0.0056411633, -0.011166687, - 0.0073347217, 0.0010428136, 0.0047986787, 0.019590337, -0.0076008206, - -0.011285443, -0.014699911, -0.016680112, 0.039303012, 0.015908794, - -0.0057962197, -0.017321266, -0.016703103, -0.0054892087, 0.02588869, - 0.024172079, -0.007925292, -0.00953852, -0.01358242, 0.011851119, - -0.020318938, 0.024943398, 0.013129914, 0.012252444, 0.01621339, - -5.1597616e-4, 0.008963116, -0.020456916, -0.012650172, -0.022228861, - -0.01475019, 0.005071157, 0.010813596, -0.021474447, 0.01070626, - 0.0056722043, 0.004946642, 0.008430902, 0.00337077, 0.044442695, - 0.034147177, -0.004424677, 0.051816344, 1.006087e-4, -0.00812501, - 3.94863e-4, 0.008628219, -0.009945798, -0.024054801, 0.014622861, - -0.022890203, 0.0014793441, 0.0057580546, 0.018103397, -0.009192469, - -0.017876469, -9.739445e-4, -0.01729215, -0.0041159475, 0.0063226614, - 0.025659826, 0.004964307, 0.023602994, 0.010403703, -0.021065578, - -0.015842304, -0.008905164, 0.0068302294, 0.027281798, 0.006648555, - 0.009844443, -0.01164449, -0.014231566, 0.0074454257, 0.007778439, - 8.367008e-4, -0.0077321082, 0.005153276, -0.0074024117, -0.0027314613, - -0.006957514, -0.025373615, -0.01821824, 0.013972648, 0.004512538, - -0.0059840726, 0.014433343, 0.0029549086, -0.020755792, -0.011850422, - -0.0032311184, 0.013497589, 0.0040784283, 0.014812426, -0.012685653, - -0.020082023, 0.020783223, 0.0015834459, -0.0145164775, -9.1406977e-4, - 0.011357428, -0.009616409, -0.022736466, -5.72728e-4, -0.01752817, - 0.009718433, -0.008306803, 0.022922646, 0.008773712, 0.0066379206, - -0.01295237, 0.006214573, -0.015103333, 0.007449386, 0.008514148, - 0.0048841387, 0.00879174, -0.017517906, -0.004054072, 0.005099897, - -0.017904991, -0.0057137106, 0.004539647, 0.019237388, 0.01024577, - 0.048569005, 0.010672124, 5.4783066e-4, -0.0024438216, -0.015061592, - 3.8846087e-4, -0.00800359, 0.007799888, -0.01862779, -0.028133454, - -0.009126055, -0.013910071, -0.012409917, -0.008923536, 0.01446916, - -0.028064895, 0.008696453, 0.007909971, 0.022236072, -0.011622307, - -0.0013359818, 0.012767665, -0.005088535, 0.0033412834, -0.0017552474, - -0.005321139, 0.026216535, -0.026670152, -0.01375981, 0.0012403075, - 0.013371934, -0.0020939808, 0.002276165, 0.027567748, -0.0026167524, - -0.0011932418, -0.0387892, 0.016824003, -9.004235e-4, 0.003005991, - 0.013839226, -0.027794123, -0.028816042, -0.0063672694, 0.006899781, - 0.05089668, -5.087178e-4, 0.034828823, -0.0022815764, 0.008232175, - 0.0022857557, 0.004152921, 0.021066431, -0.022641303, -0.0044000736, - -0.0024773406, 0.013157312, -0.034191925, -0.0069192913, 0.010288889, - -0.0050143357, 0.01192012, 9.579666e-4, -0.010347357, 0.025277149, - -0.00886875, 4.955462e-4, 0.0067060143, -0.013325372, 0.01353262, - -0.0069537507, 0.005993057, -0.012519954, -0.010835882, -0.020079317, - 0.0044388208, 0.0075540785, 0.01503148, -0.014416201, -0.024794718, - -0.0041041547, 0.001546518, -0.006033114, 0.031338636, -0.0024130389, - 0.031519685, -0.009367501, -0.005933522, 0.020346593, 0.015807336, - 0.00985614, 0.013011763, 0.009595675, -0.028279409, -0.014561879, - 0.003602503, 0.005946599, -0.008842375, 0.0062740734, 0.0050413003, - 0.0051755393, -0.001475721, 0.0074947313, -0.0064856512, -0.0073055844, - -0.026652059, 0.0044446657, 0.0116765145, -0.0046605207, 0.004467711, - 0.00580961, -0.0071466044, -0.01612497, -0.015262399, -0.009572789, - 0.0028507905, 0.018078286, 0.010170791, -0.015031166, 0.0036524518, - -0.019708827, 1.0162723e-4, -0.011263863, 0.0037082485, -0.02521145, - 0.001501738, -0.009920628, -0.02227425, -0.0023781275, 0.02480504, - -0.024690282, -0.01980877, 0.003400142, -0.0013978161, -0.027052354, - -0.0038888515, 0.051339246, 0.026821796, -0.014607722, -0.011623585, - -0.009896032, 0.0010216048, 0.027865715, -0.026652629, 0.014778175, - -0.0102148745, -0.004825079, -0.015802728, -0.011524566, -0.027928235, - -0.005348001, 0.0022286652, -0.0029296472, 0.01020417, -8.9006e-4, - -0.0040894025, 0.013716416, 0.027891412, -0.012273211, -0.014818984, - -0.0057130437, 0.022258049, -0.014886608, 0.0034061412, 0.021740517, - 0.008646045, -0.014962928, -0.022392297, 2.6607103e-4, -0.003924642, - -8.5341133e-4, 0.009384717, 0.0038899297, -0.02475473, 0.014211665, - 0.0147020025, 3.685318e-4, -0.012830174, 0.003668048, 0.02386165, - -0.029769694, -0.018255632, -0.012811642, 5.674746e-4, 0.019320104, - 0.01254418, -0.021211434, -0.018221615, 2.6824384e-4, -0.001883399, - -0.009427458, 0.0045677642, 0.0043594963, 0.02378253, -0.008981418, - 0.014000798, 0.0059109027, 0.0046539297, -0.002674698, -0.01426027, - 0.003014654, -0.022372592, 0.0072600767, -0.0013061548, -0.004925914, - -0.012526523, 0.017920915, -3.8337483e-4, 0.045021586, -0.013756116, - -0.0344228, 0.007219833, -0.019557498, -0.0037562978, -0.011666373, - -0.009630754, 0.010525432, -0.0012823546, 0.013396845, 0.010434053, - 0.0063561997, -0.022667427, -0.022216897, 0.014112612, 0.009848322, - 0.007430741, 0.009362661, -0.02610752, 0.013972845, -0.011507873, - -0.004892392, 0.03497491, 0.024294386, -0.0012424646, 0.0026676033, - 0.020654475, -0.022871122, -0.017707255, -0.017451327, 0.008660571, - 0.020928048, -0.008082859, 0.014338098, 0.0034287823, 0.0056533352, - -0.015961168, -0.018162118, 0.025256958, -0.0045313886, -0.0053051454, - -0.0054222797, 0.033547375, 0.006170074, 0.01709336, -0.009568314, - 0.015933858, 0.020279426, 0.034948736, -0.020072168, 0.0011951424, - 0.00263005, -0.012956854, 0.030355187, 0.010940193, -1.7372254e-4, - -0.015212396, 0.0017064635, 0.015907094, 0.0034994062, 0.016674504, - 8.219656e-4, 0.019054307, -0.011196071, 0.0018496275, 0.0040374673, - 0.010068723, -0.014686005, -0.0051476005, -0.0025472005, 0.02429347, - -0.0049261088, 0.018702462, -0.019806061, -0.0047859983, 0.0024675739, - 0.005343375, -0.022125626, 0.00267586, -0.046222627, 0.01739625, - -0.010652736, -0.002656229, -0.0041113202, -0.009323717, -0.026581837, - -0.018113282, -0.02565366, -0.004425764, 0.004716514, 0.020038972, - 0.0026177997, -0.0027935677, 0.010496213, -0.006068669, 0.011362148, - 0.014422548, -0.0020541213, 0.039444644, 0.01838061, 0.009913803, - -0.03049099, 3.5319166e-4, -0.010017426, 0.017761115, 0.02262901, - -0.023459256, -0.0036321143, -0.0077737654, 0.0082961405, -0.026072932, - 0.018314451, 0.016862394, -0.002446447, -0.019937208, 0.017031824, - -0.003303319, -0.024006013, -0.018876953, 0.008573309, -0.012750394, - -0.013405465, -0.017962432, 0.0035296143, -0.0058486266, -0.0028457923, - 0.0109886415, -0.008169423, -0.006107669, -0.004929275, 0.0070914826, - -0.014820801, 0.01758699, -0.020066025, 0.022672169, -0.0043909308, - 0.019608492, -0.018560492, -0.01148291, -0.01688811, 0.008535298, - -0.007484387, -0.002481509, 0.0038533185, 0.012471242, 0.0011434904, - 8.6337404e-4, 0.013816826, -0.0073924703, -0.0076515614, 0.03843621, - -8.497426e-4, -0.016725393, -0.0032842408, -0.0043986714, -1.75392e-5, - 0.0074441847, -0.0030032468, -0.005545005, 0.012756766, -0.012633907, - -0.008054677, -0.010387622, -0.014685611, 0.0011134455, -0.029714664, - 0.010482773, -0.013163689, 0.0053889523, 0.018192302, 0.009295904, - -0.03806447, 0.0026743733, 0.0011860816, 0.014677933, -0.015994847, - 0.018448249, -0.013813479, 0.031589273, 0.037550356, 0.0013605555, - 0.029571552, 0.00727137, 0.027334401, -0.00886602, -0.009779794, - -0.0021146901, -0.009276372, -0.00806774, 0.0072185774, -0.02332107, - 0.004367424, 0.03510162, 0.023258707, -0.023615109, 7.9120806e-4, - -5.340251e-4, -0.007880617, -0.006247089, 0.0016556632, 0.026166206, - 0.004814234, -0.024391945, 0.011859229, 0.0013920461, -0.019157141, - 0.020202799, 0.026294855, 0.013856467, -0.01288007, -0.023558663, - -0.02622328, -0.006082924, 1.6799575e-4, -0.0062344787, 0.0027031244, - -0.0046912814, 6.997463e-4, 0.0063268137, -0.0057227933, 0.013067757, - -0.0014971603, -0.00908931, 0.0049935197, -0.011416293, 0.02933746, - 0.008840848, 6.8338617e-4, 0.025726235, 0.01814474, 0.014180503, - 0.007252939, 0.013454851, 0.008064056, 0.00914097, -0.008659603, - 0.017699664, -0.013807748, 0.0053612734, -0.0077328654, -0.008110448, - -0.012653745, 0.01997533, 0.019331923, -0.0018735213, 0.0060967864, - -0.003203861, 0.036534056, 0.008687238, 0.006944965, -0.024263348, - 3.753455e-4, 0.023906162, 0.029872205, -0.0030710388, 0.012242527, - -0.004586164, 0.007082729, -0.016652938, 0.017371317, 0.003388385, - -0.01046742, -0.005706307, -0.004421338, -0.037291806, -0.022451319, - 0.004040873, -0.03698592, -0.01298976 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.017570473, -9.271999e-4, 0.02322493, 0.0014578064, -0.0037384431, - 0.013840565, -0.018326586, 0.0060127773, 0.0037096543, 0.011063944, - 9.319139e-4, -0.010102544, 5.61862e-4, 0.001805748, 0.013454447, - 0.024555648, 0.021946084, 0.024859985, 0.007494729, -0.00972858, - 0.0057798717, 0.025181424, 0.0064680995, 0.003740743, 0.0073191547, - -6.4370036e-4, -0.047487114, -0.024220208, -0.0028247654, 0.010160867, - -0.006183401, -0.03889546, 0.020700768, -0.007623721, 0.01084661, - 0.012480156, -0.018321134, 0.03831932, 0.010433709, -0.009760287, - -0.0330122, 0.007656201, 0.004439992, -0.0060910005, -0.023571972, - -0.019769398, 0.033285614, -0.009307903, 0.013003483, -0.01662513, - 0.0068255444, -0.01877566, 0.011885598, 0.0074929716, 0.0139829535, - -0.008346426, -0.012987398, 0.038810458, 0.0063940515, -0.0066946656, - -9.2567696e-4, -0.013600271, 0.014862387, -0.0065085967, 0.0010977742, - 0.003787194, -0.0017650077, 0.0011476347, -0.010161622, 0.0028397632, - 0.021793425, -0.010037787, -0.0036799675, 0.01805708, -0.005207769, - 0.0069367653, 0.005088919, 0.0031464936, -0.020897305, 0.005056501, - -0.010049489, 0.02571666, -0.026477823, 0.0024143998, -0.003239667, - -2.4062554e-4, 0.009645887, -0.016036393, -0.025471589, 0.006665588, - 0.028807092, 0.03267219, -0.011273549, 0.0074958825, -0.039616093, - -0.002291349, -0.0020413592, 0.010972201, -0.020007968, -5.6826062e-5, - 7.4655167e-4, -0.008744637, 0.006095472, -0.0035148782, -0.02270922, - -0.03069545, 0.0062890816, -0.0028137113, -0.005194081, -0.007322141, - 0.001027652, -0.0070443638, -0.0029608973, -0.015641984, 0.024783975, - 0.056328587, 0.008861594, 0.015952699, 0.017942064, -0.019327397, - 0.008454673, 0.013337084, -0.008751535, 0.027645651, 0.008405063, - -0.010656882, 0.01418622, -0.0054294015, -0.015665242, -0.02417729, - 0.008604052, 0.0033616985, 0.019985456, -0.017723257, -0.0091851745, - 0.00842098, 0.017024396, 0.011230204, 0.010528903, -6.822971e-4, - 0.007798524, 0.0010607655, -0.0011195117, -0.0039252434, 0.0035875596, - -0.014825617, 0.0053584133, -0.010121181, 0.024881322, 0.015140778, - 0.0077457996, -0.010210286, -9.107022e-4, -4.5293345e-4, -0.010794057, - 0.0028187425, -0.0030877446, 0.0021636018, 0.0169596, -0.012528154, - 0.0056138397, -0.011786356, 0.006256102, 0.012891257, 4.3973612e-4, - 0.019456029, 0.0018828718, -0.0022547068, 0.006942809, 0.0038317123, - 0.010453601, 0.008892128, 0.019361084, 0.004970199, 0.011197711, - -5.510794e-4, -0.0067315153, -0.036386155, 5.1026756e-4, -0.007209842, - 0.021906583, -0.008973364, -0.02733406, -0.009778834, 0.0028299552, - -0.0018643375, 0.024727954, 0.0024154074, 0.024371197, 0.00645388, - -0.0038221253, -0.013079622, 0.0019376486, 0.022317512, -0.0032730345, - -0.006024776, -0.020005738, 0.017135974, 0.016376073, -0.0011469524, - 0.0138736805, 6.627531e-4, -0.03526062, 0.0021007997, -4.6692337e-4, - -0.009490828, 0.016830329, 0.010286547, -0.025469633, -0.0132941045, - 0.008246806, 0.011189668, 0.0068574264, -0.027738705, 0.037449036, - 0.02796337, 0.025311245, 0.011253822, 0.020480372, 0.02465654, - 0.017373357, -0.011906878, -0.022651926, 0.01502682, 0.010855726, - 0.0044712843, 0.0013903845, -0.00701152, 0.004066537, 0.008605951, - 0.0017281184, -0.00576734, -0.020468717, -0.011468705, 0.017564235, - 0.0061907843, 0.02488719, 0.012644537, 0.02379735, -0.025084972, - 0.012426364, 0.024139829, 0.007674684, -0.0026619202, -0.013909326, - -0.0063167405, -0.0011894447, -0.012547155, 0.010475015, -0.023569537, - 0.006444766, -0.0066328426, -0.017352216, 0.0041291267, -0.0018034993, - -0.020751985, 0.027250426, 0.0016960781, -0.006876192, 0.0014039066, - -0.013848905, -0.010842147, -0.026162216, 0.0111577585, 0.00950348, - 0.013123387, 0.0044501713, 0.016370269, -0.023041293, -0.015185616, - -0.007287415, -0.009635212, -0.002881686, 0.0107428245, -0.010755911, - -0.01997463, -0.021088164, 0.010350494, -0.0020851106, -0.016931906, - 0.0021326665, 0.00228063, -0.0033830416, -0.032786187, 0.020783927, - 0.014921212, 0.016379597, 0.005777983, -0.014513262, -0.0069926856, - 3.1496133e-5, 0.013369584, -0.0043255473, -0.029998055, -0.020218574, - 0.019239472, -0.005669349, -0.010333858, 0.025062213, 0.01743911, - 0.015979666, -0.006717115, 0.008971289, 0.0073015857, -0.00691318, - 0.017608987, 0.012897717, -0.026092943, 0.007547048, -0.010890045, - -0.030497251, 0.016565463, 0.027310586, -0.009569116, 0.0027946096, - 0.003719435, -0.009560835, 0.0065124896, 0.007692975, 0.01389588, - -0.03262664, -0.0034055097, 0.016501535, 0.01356461, 0.006198116, - 2.6380723e-5, -0.01043891, 0.00389419, -0.00864363, 0.019698927, - -0.024709726, 0.003419763, -0.006534266, -0.0025647504, -0.020630538, - 0.0075109224, -0.0051606805, -0.018748138, 0.023768356, 0.010467975, - -0.040697195, 0.011961479, 0.014255988, -0.017642915, 0.011651582, - 0.018986396, 0.008754975, -0.01061145, -0.017952241, 0.016675917, - 0.014134625, 0.0024208017, -0.00374269, -0.011494955, -0.012691094, - -0.0052048527, -0.012007126, 6.204099e-4, 0.0051552933, -0.004053105, - 0.01984137, 8.7844284e-4, -0.017443692, -0.01245322, -0.013283465, - 0.012890991, 0.00433434, 0.012073786, -0.0027812528, -0.012189083, - -0.026229626, 0.0020516769, -0.026761355, -0.0011125663, -0.0066726147, - -0.0061678635, -0.013977843, -0.008126767, 0.014822947, -6.790305e-5, - 0.007811998, -0.014555461, 0.0041396976, 0.029369686, 0.013446559, - -0.0011601608, 0.014621867, -0.007840457, -0.01425916, 0.0081853205, - -0.013536581, 0.0050127665, 0.0049551087, -0.03075934, 0.018325675, - -0.0076373173, 0.007826883, 0.0050036595, -1.6393005e-4, -0.02907813, - -0.012209043, -0.0032738105, 0.008170867, -0.007700006, -7.259066e-4, - -0.02294961, -0.025128445, -0.0096319355, -0.012226585, -0.013369155, - 0.01426115, -0.0028001675, 0.01140558, -6.533074e-4, 0.0045664306, - -0.0024109306, 0.0040793684, 0.018838905, -0.02255842, 0.0059825815, - -0.0041117193, 0.013708564, 0.0062137833, 0.002974402, 0.004010527, - -0.007022476, 0.0012360095, -0.0070982496, -0.014899017, 0.005383129, - -0.012953466, -0.0037902743, 0.005149575, 0.004391792, -0.0012732289, - 9.323847e-4, -0.002440361, -0.006511031, -3.8375065e-4, -0.018066885, - 0.02623553, 0.022456205, 0.013802962, 0.010849136, -0.019639617, - 0.01983895, -0.007463629, -0.008862231, 0.008725524, -0.013328317, - 0.010425986, 0.0066786, -0.0032244644, -0.010287837, 0.00934981, - 0.0054961527, 0.01996132, 4.148414e-4, -0.005733076, 0.0065426296, - -0.013507647, 0.01079389, -0.008148837, -0.01732104, 0.0055448124, - 2.9058132e-4, -0.0071087, -0.007262239, 0.023624517, 0.0073551685, - -0.003712548, 0.003122348, -0.032351788, -0.016126402, 0.034987077, - -0.047454976, 0.0056068543, 0.014739058, -0.015614615, -0.011641579, - 0.022453634, -0.0023657752, 0.0038308376, 0.00754268, 0.002798828, - -0.009860552, 0.0121636605, 0.0037926363, -0.0110256355, 0.002464822, - 0.007393178, 2.885227e-4, 0.0021418387, -0.02835948, 0.007266845, - 0.019170564, -0.02519641, 0.02978184, -0.0020916474, 0.01595733, - -0.006895333, 0.026211264, -0.0115138665, -0.03327477, 0.0040800055, - -0.004053741, 0.008180963, 0.013470945, -0.006237248, -0.007284307, - 0.013437847, -0.0014875875, -0.024279255, -0.0095097115, -0.02156141, - 0.01952877, 0.015118887, -0.008484607, -0.0020374558, -0.0063252538, - 0.041905217, 0.0034172358, 0.0040371725, -5.172415e-4, 0.023757264, - -0.0057885353, 0.035742693, -0.0025120182, -0.019544689, 0.019286236, - -0.0044169826, 0.004697257, 0.022341326, 0.01537155, 0.0017174981, - 0.040771093, 0.037021443, -0.015190817, -0.010994399, 0.005553435, - -0.022219889, 6.6621456e-4, 0.006729594, -0.022049837, 0.0232656, - 0.0062172855, 0.014352998, 0.011108573, -0.01368015, 0.009978845, - -0.0029100052, -0.04235191, 0.022169827, 0.014728308, -0.016050031, - -0.021609081, -0.0057486678, -0.01400903, -0.0074442415, 0.0035406572, - 0.006168247, 0.0017288247, -0.019632323, 0.018517125, 0.019625375, - 0.01626612, 0.01021925, 3.5226933e-4, -0.008733733, -0.0011353132, - 0.014917417, -0.010032679, -0.018465932, 0.0081526255, -0.018942896, - -0.014832095, 0.02341362, 0.0076088677, -0.001941399, -0.012947206, - -0.016974347, 0.03477879, -8.541279e-4, -0.006304023, -0.0042452654, - 0.013251717, -0.024623167, 0.024079477, 0.010717098, 0.016920665, - -0.010101883, -0.019400913, 0.025795033, -0.0050549386, 0.010831996, - 0.019598242, -0.0060104686, -0.004516014, 0.008158624, -0.015719984, - -0.0076456084, -0.012894365, 0.0019671982, 0.02549195, -0.0069964495, - 0.015183446, -0.010919504, 0.010732773, 0.009131439, 0.017827015, - 0.021741465, -0.020342933, 0.0013002747, -0.009592765, -0.019004373, - 0.0018689865, -0.0075904387, 0.007899581, -0.017284075, 0.018583393, - 0.02030845, -0.038547866, -0.0077305012, -0.013422686, 0.010733167, - -0.0064802784, 0.003950969, 0.013761385, 0.0049753115, -8.265523e-4, - 0.007500985, -0.01217361, -0.022835743, -0.0017520235, -0.004835493, - -0.009202737, 0.004840393, -0.014336125, -0.0031616506, -0.030403152, - 0.0064801318, 0.038154006, -0.012784853, 0.0077765444, -0.012264642, - -0.028110208, 0.016445052, 0.0133536, 0.0064819013, -0.014523761, - 0.003985245, 0.0050675385, -0.03246101, 0.012655737, 0.01326806, - -0.013320999, 0.0035951363, 0.013357902, 0.015573729, -0.008785784, - -0.02138217, -0.0029055665, -0.010826707, 0.02382103, -0.012903481, - -0.03730309, 0.020493535, -0.00975502, -0.013690908, -0.017918406, - -0.0038453096, 0.036160268, 0.016860116, -0.0030287234, -0.02343095, - 0.009937906, 0.019192323, -0.008822494, 0.012242964, 0.035376858, - 0.024047028, -0.003955175, 0.0015447912, 0.0014589328, 0.0042585647, - 0.018493626, -0.00818548, 0.010004007, 0.027598275, -0.019676216, - -0.04215164, 0.0030193147, -0.019346736, -0.019638201, -0.008592739, - -2.9029808e-4, -0.013573393, 0.03135545, 0.0047336416, -0.009082258, - 0.008754235, -0.013049994, 0.017677084, 0.027378244, -0.010837737, - -3.6556908e-4, -0.0130891735, 0.015895592, -0.009555797, -0.0046131685, - 0.014128889, 9.879393e-4, -0.013203669, 0.010302418, 2.6322622e-4, - 0.030651867, 0.0019601537, -0.0011116157, 0.012800012, -0.022319404, - 0.01659132, -0.017315658, 0.0059279758, -0.025680266, -0.017806139, - 0.015934452, -0.03583864, -0.006230542, 0.0030140472, -0.003079271, - -0.015786018, 0.009067973, 0.014367586, 0.0037527033, -0.01194668, - 0.023914015, -0.010821811, -0.0074438187, 0.0052165156, -0.025550637, - 0.021742677, -0.027356897, -0.010507908, -0.01214935, -0.012352637, - 0.02314406, 0.030274596, 0.0058836807, -0.0037796672, -0.002174, - -0.012082821, 0.012559351, -0.0016622819, -0.018097194, -0.006868757, - 0.016524194, 0.0037879476, 0.0034514887, -0.024664935, 0.01144145, - 0.03361098, -0.02950315, -0.016144529, -0.00530781, -0.010373373, - 0.003944926, 0.008244124, -0.0073636924, -0.006302629, -0.025882008, - 0.007831638, -0.011489754, -0.014001563, 0.012278051, -0.0024834669, - -4.9561117e-4, 0.019549018, 0.0013711569, -0.003716015, 0.008365864, - 0.011526379, -0.00379001, -0.020426268, -0.0077833175, -0.013218638, - -0.0054723076, 0.017748727, 0.0050927037, 0.0021470573, -0.007270116, - -5.548528e-4, 0.0038609423, -0.010548816, 0.0013792815, -0.010562729, - 0.021927878, 0.012504693, -6.743937e-4, 0.003827238, -0.016709723, - -0.007766942, -0.0051041413, 0.014768511, -0.0012654943, 0.013306615, - -0.010549726, -5.325167e-4, 0.023293605, 0.03444294, 0.009610235, - -0.016146895, 0.025216024, -0.009273955, -9.422384e-4, -0.029327068, - 0.014468412, -0.0069636796, -0.015421727, 0.015323256, 0.013917082, - 0.014134282, -0.005926533, -0.017919336, 0.010929165, -0.013229288, - 0.0032394505, 0.00969208, -0.0010663598, 0.004776041, -0.009918855, - -0.0014072156, 0.0061199903, -0.0048046573, -0.0048212893, 0.02728165, - 0.012913027, -0.0014995626, 0.015974617, 0.0022507173, -0.0056211594, - 0.02226494, 0.016734129, -0.0011992612, -0.02049435, 0.012222116, - 0.014480014, 0.00907362, 0.001836678, -0.0087366095, 0.032778446, - -0.03265267, 0.016580231, 0.019990532, -0.0011844119, -0.01686228, - 0.004343848, 0.022480946, 0.011829072, 0.011899929, 0.015292902, - -0.024662761, -0.010441072, 0.024603749, -0.008962527, -0.010207423, - 0.0012781427, 0.006861984, 0.011628131, -8.372755e-5, -0.020055627, - 0.0075261774, -0.0052006245, -0.004376441, 0.0124402465, 0.019320257, - -0.009426371, -8.346442e-4, -0.01636161, -0.011973717, -0.023131352, - 0.003841252, 0.010507906, -0.014467331, -0.0147242285, 0.02647811, - 0.031474743, -0.018165445, 0.024829147, 0.004536559, 0.0016046838, - -0.0031798396, -0.0032460545, -0.010370917, -0.019708844, 0.0114633925, - -0.017329445, 0.002355457, -0.01593927, 0.011625462, -0.006609172, - 1.4093614e-4, -7.393798e-4, 0.0029909047, 0.027667163, -0.012999032, - 0.0021373772, 0.0020802105, 0.007580112, 0.024891624, -5.025723e-4, - 0.0070996378, -0.021593926, -0.024948617, 0.0027579837, 0.009458304, - 0.014155127, 0.0031254536, 0.008392254, -0.022209555, 0.02069994, - -0.018552672, -0.03778559, -0.029080916, 0.03478883, 0.0026122988, - 0.0061002895, -0.001646791, 0.0025958342, -0.008436518, -0.012624226, - 0.0013149728, -0.001700599, 0.023430446, -0.0033409307, 2.2124196e-4, - -0.012337771, -0.013647165, -0.02062931, -0.008747125, -0.030201249, - 0.0035608578, -0.00826002, -0.017999573, -0.020884864, -0.010096707, - -0.0066232895, 0.008477907, -0.021827655, -0.03163448, 0.009684234, - -0.019032046, -0.023474619, 0.010693218, 0.0073718126, -0.018132, - -0.019128198, -0.011947017, 0.017207861, -0.023773152, 0.0029940235, - -0.014486759, -0.0020786964, -0.008354771, -0.0068741967, 0.016587043, - 0.0067046424, -0.0051096966, -0.006065373, 0.03075345, -0.0070194234, - -0.02758299, 0.012072158, -0.030986747, -0.03295062, -0.003737731, - -0.0019944997, 0.0021125516, 0.004381639, -0.02913858, 0.020934856, - -0.013626938, -0.019800358, -0.016879488, 1.3515603e-4, -0.010627342, - -0.019767266, 0.007914565, 0.029363243, -0.00541574, 0.023952834, - -0.012790694, 0.017709184, 0.015776336, 0.020589126, -0.014085012, - 0.012836578, -4.166428e-4, -0.01285519, -4.9220445e-4, -0.005505352, - 0.01052147, 0.02049926, 0.026598416, -0.035241377, 0.023001362, - -0.0042644856, 0.0051770434, -0.0058168992, 0.04064477, -0.010668566, - 0.023120673, 0.019139923, -0.00495091, 0.008140704, -0.017022708, - -0.01860545, 0.015033081, 0.012142956, -0.0053485045, 0.008993057, - 5.620202e-4, 0.0023672616, -0.0061948835, -0.014332426, -0.0073149516, - -0.013897962, -0.012968542, 2.3320195e-4, 0.017072458, 0.015143272, - -0.013211305, 0.022252783, -0.0016597178, 0.0012547241, -0.010843667, - -0.013841209, 0.006944555, -0.006962659, -0.018267214, 0.007531755, - -0.025244135, -0.013286599, -0.0064920643, -0.008453847, -0.025840076, - 0.012735395, -0.009769342, -0.018906718, -0.008814959, -0.0035562306, - -0.017264608, -0.0023302315, -0.0055024754, 0.010300731, -0.0057875155, - 0.017836208, -0.015266305, -0.021358738, -0.0014881586, -0.0014837907, - 0.0021882195, -0.015095945, -0.02004101, -0.029174143, -0.026571773, - -0.010718043, 0.003235703, -0.0027113361, 0.010579035, 0.017717138, - -0.008641139, -0.017457282, -0.0010214472, -0.016049905, -0.008105116, - 0.015617843, -0.008583446, 0.009459432, 0.021286823, -0.011107863, - -0.017829819, -0.0010024464, 0.011501992, -0.005383886, 0.011370508, - 0.008100241, -0.0011853625, -0.015267091, -0.018619971, -0.018646847, - -0.018343663, -0.011371327, -0.009490145, 0.0064799036, -9.4541104e-4, - -0.0054755616, 0.0010112025, -0.029873481, 0.04308627, -0.013011802, - -0.02372409, 0.004749374, 0.01738143, -0.0030189366, -0.0046114186, - -0.014472239, -0.0059298375, 0.023950227, -0.021794448, 0.0016629526, - -0.01020653, 0.010742537, -0.012022204, 0.014454296, -0.02509182, - 0.0054791346, -2.268868e-4, 0.031816367, 0.03258547, -0.012165498, - 0.017347712, -0.027344411, -0.0013431972, -0.0048520947, 0.002196566, - 0.017483301, 0.009011328, -0.022941371, -0.018472308, 0.0038216382, - 0.009815756, -0.0149989305, 0.0049402467, 0.001710197, -0.01871158, - 0.010126399, 0.0047680135, -0.01700329, 0.008533626, -0.020963743, - 0.003156196, 0.010558221, -0.010094355, -0.0041656406, -0.0040401337, - -0.026347384, 0.008119751, 0.015624441, -0.0053165564, -0.0020395466, - 0.042580392, -0.023800883, -0.01315705, -0.02561007, -0.0069158934, - 0.0077600665, -0.0012050921, -0.007273975, 0.0017047499, -4.8988697e-4, - -5.307006e-4, -0.037651386, -0.0083849775, 0.0077354712, -0.022963839, - -0.011447472, -0.01944378, -0.038729154, 0.025096515, -0.016191117, - 0.027865827, -0.022960432, 0.001254727, 0.0063638305, 0.028100662, - 0.0010437478, 0.021713855, 0.009564882, -0.0038283325, 0.0018252112, - 2.5802062e-4, -0.009748614, -0.021872664, 0.031085236, -0.008421797, - 0.0028193102, -0.0032883093, 0.004255681, -0.0038377207, 0.0028859545, - 0.0032780734, -0.020737609, -0.009822336, 0.017564217, -0.004290207, - -0.014931593, 0.026829593, 0.00754514, -0.0055616046, -0.010774761, - -0.020442773, 0.027157549, -0.010226021, -0.0023275195, 0.0077822288, - 0.0025415125, 0.016515948, 0.022304298, 0.009216293, -0.024038771, - 0.0031626872, -0.028567668, -0.010854114, 0.005736462, 0.016661245, - -0.0049494375, 0.012044509, -0.010357741, -0.015922517, 0.002988935, - 0.01236536, -0.011934085, 0.01649809, -0.017699234, -0.0035302192, - -0.018062003, 0.028066477, 7.65374e-5, 0.009133492, 0.008327485, - -0.004094757, 0.008542367, 0.010395257, 0.0020841528, 0.0052901027, - -0.006691699, -0.009439107, 9.551674e-4, 0.015176527, -0.0030597604, - -0.018701972, -0.011822772, 0.021600332, 0.025964899, 0.026578506, - -0.012548629, 0.019900642, -0.004163001, 0.020625802, 0.013014076, - 0.04090292, -0.028812429, -0.03282566, 0.02133596, -0.013894601, - 0.023036394, -0.019781029, 0.017881112, 0.005210218, 0.021401815, - -0.021595608, -0.0053622234, 0.0061229784, -0.01485918, 0.016233584, - 0.008387497, 0.005045141, 0.048966333, -0.005292075, -0.0218843, - -0.019885661, 0.025085572, 2.163927e-4, 0.0155406585, -0.007264107, - -0.03383024, 0.018385047, -0.0012995962, -0.0052318447, -0.026483055, - -0.0024755334, -0.0052506723, 0.0023732346, -0.013434737, -0.011948207, - 0.011541656, -0.022303665, 0.0012427357, 0.005573657, -0.020903315, - -0.023966985, 4.1704177e-4, -2.420025e-4, -9.462602e-4, -0.017445084, - 0.019145891, -0.003490974, 0.0062421476, -0.007408224, -0.036656737, - 9.6902624e-4, 0.0037827203, -0.0020446018, -0.029878601, -0.017745983, - -0.027031321, -0.0036861873, 0.008644283, 0.014435587, 0.013274049, - 0.013086256, -0.020385304, 0.0022611276, 0.0030641127, 0.005613832, - -0.020187149, 0.025688225, -0.041179057, 0.014263289, 0.0024406079, - -0.0067744264, 0.011636771, -0.045377735, -0.0030650506, -0.0057052285, - -0.001264283, 0.021702524, 0.012786809, -0.010665934, 0.008774106, - -0.0023337682, -0.0070426133, -0.035989232, 0.018309789, -0.017302962, - 0.012078394, -0.0016352237, -0.015780384, 0.0030349526, 0.0012188165, - 4.3572618e-5, 0.009058401, -0.009420318, -0.0090006245, -0.0037985172, - -0.0030165093, 0.016316893, -0.009522798, 0.015098076, 0.00582405, - -0.010962304, -0.01960659, 0.0015561888, -0.006315081, -0.018233193, - 0.005114823, -0.0059981216, -0.0021574758, -0.027106155, -0.007836574, - 0.0017182558, 0.023933133, -0.0040000654, -0.0019900165, 0.019998197, - -0.023035891, -0.002884758, 0.0045376844, -0.0024354528, 0.012419562, - 0.016640358, -0.0024364404, 9.222236e-4, -3.304329e-4, 0.015468576, - 0.013967339, 0.019145273, -0.019925833, 0.0086709885, -0.01342264, - 0.0072671752, -5.3200213e-4, -0.011877187, 0.012138099, -0.0094610015, - 0.005661174, -0.0066825547, 0.0044694114, 0.009376298, -0.019440034, - -0.019918814, 0.025102504, 0.0047543133, -0.024689483, 0.018937564, - 0.014290698, -0.0073576574, -0.0063450043, -0.0018949528, 0.029290235, - 0.0043076295, 0.01847526, 0.0070437924, 0.030000344, 0.02128367, - 0.014689356, 0.0133862095, -0.005759618, -0.017722307, 0.015629249, - 0.011744669, 0.02199861, 0.03566702, 0.012258721, -0.013629838, - -0.010670004, -0.009813964, 0.0016251901, 0.011679125, -0.005159797, - 0.021725327, -0.0035465849, 0.0029881857, 0.011669181, 0.020182531, - -0.009496563, 0.013565038, 0.0046218596, 0.0038017775, -0.011248989, - 0.010000873, -0.0047940714, -0.021567151, -0.0066617066, 0.012934339, - 0.013403686, 0.017850572, 0.0018928264, -0.0011945617, 0.007951917, - -0.0026057032, 0.013935091, -0.006633981, -0.0140937595, 0.022850273, - -0.014201511, -0.018201826, 0.030527404, 0.01405818, -0.009797731, - 0.008291839, -0.025681918, 0.002763561, -0.02218128, 0.019048633, - -0.017121926, 0.008989568, 0.0011393377, -0.022207983, -0.012769559, - 0.023031741, 0.026837818, 0.035976145, -0.003651516, -0.015842283, - -0.004193398, -0.0079189595, 0.0063063647, -0.01046094, -0.005882446, - 0.02114483, -0.0113678705, 0.010590697, -0.0145107545, 0.015230703, - 0.008314553, 0.021544363, 0.006379128, 0.015684579, -0.024736011, - 0.010498608, 0.026621195, -0.0062014027, 0.009809157, -0.037986163, - -0.013813084, 0.005176483, -0.012450034, 0.009181527, 0.009772717, - -0.013438313, 0.0119904475, -0.013654403, 0.004125398, -0.0042903656, - 0.030074662, 0.011214364, -0.002079259, -0.028565776, -0.015784247, - -0.012836232, -0.00426992, 0.0012280266, 0.004311986, -0.046790548, - 0.0076322122, 0.014597379, 0.01219381, 0.006278568, 0.0056714234, - 0.00658712, 0.003914789, 0.020592, -0.0029243592, -0.011125632, - 0.005159822, -0.0052199904, -0.008681513, -0.027372316, -0.029393785, - 0.0039945627, -0.008958852, 0.022956075, 0.013610789, -0.03677831, - 0.0065438068, 0.004228289, 0.0033635076, 0.0019199204, 0.0038257462, - -0.014513561, -0.015538657, -6.825861e-4, 0.009655235, -6.863056e-4, - -0.012334557, -4.8992556e-4, -0.029787665, 0.0258992, -0.0029713581, - 0.0020171423, 0.026698215, -0.0062743817, -0.02749161, 0.010576355, - 0.01377404, -0.0252693, 0.017647624, -0.01592333, 0.010711577, - 0.015274808, 0.016147893, 0.013750062, -0.022947447, 0.028395899, - -0.028838877, -0.0011746815, 0.008036021, 0.008382856, -0.005833306, - 9.4934505e-5, -0.026136901, -0.013329537, -0.0050359815, -0.020431194, - 0.023288928, 0.024684086, 0.015089633, 0.0154958535, 0.015694039, - -0.019340651, -0.0066500716, 1.1753015e-4, -0.036871076, -0.0065182173, - -0.0071997084, -0.021530855, -0.008500387, 0.009892024, 0.006635479, - 0.012233204, 0.011104046, 0.0025193817, 0.0060092844, -0.0068940446, - 0.007325382, -0.018335057, -0.01995635, 0.013681508, -0.027158082, - -0.0145204095, 0.021720324, -0.015783692, -0.022915173, -0.0017359976, - 0.002725438, 0.0018324049, 0.027305849, -0.01799459, 0.025976097, - -0.0072572166, -0.014989779, 0.009050618, -0.0036108426, 0.002290975, - 0.010072704, 0.025369106, -0.015266448, 0.02238573, -0.028409712, - 0.0035586895, 0.016603995, 0.028063267, 0.020563316, 0.013855132, - 0.003871426, -0.013705345, -0.02574278, 0.015260166, 0.023036035, - 0.004344628, 0.0048916275, -0.006867807, -0.023122301, 0.0016118741, - 0.0063194633, -0.0061865645, 0.011989523, -0.004605455, -0.010426848, - 0.011360259, 0.02320986, -0.004924887, 0.013964852, -0.016139748, - -0.013951569, 0.0095048165, -0.012137337, -0.007610914, 0.022828754, - 0.0032814972, 0.01250319, 0.0034137357, 0.035735786, -0.023588868, - -0.009237733, 0.0172634, 0.017103717, -0.012134583, 0.016026305, - 0.015641961, -0.0052408194, 0.016118035, -0.020627797, 0.010804923, - -0.001851129, 0.0019538999, -0.014253585, -0.0020264369, 0.019491514, - 0.013615646, 0.016411284, -0.025504988, 0.019373711, 8.9635217e-4, - 0.007866307, -0.026309928, 1.15256786e-4, 7.119782e-4, 0.020588454, - 0.025808167, 0.0018185081, 0.010619581, -0.0025387944, 0.0077733067, - 0.013023186, 0.0076938774, -0.0019633165, -0.024430996, -0.009535723, - 0.006156277, -0.02641905, 0.0050658514, 0.012818488, -0.006476768, - -8.398017e-4, 0.015363092, -0.026198016, 0.004495002, -0.0050923484, - -0.0067912447, -0.0065300628, 0.005832052, -0.018370157, -0.0049626287, - -0.0033407472, -0.010776062, 1.6278018e-4, 0.0144541785, -0.0021142273, - 0.0085256575, 0.0030508274, -0.006033073, 0.010910022, -0.0055291383, - -0.004568042, -0.005718711, 0.0038286303, 0.012409818, -0.04478559, - -0.021806305, 0.0037334315, -0.002958243, -0.013937436, -0.0060548633, - -0.007784227, -0.008299364, -0.028734421, 0.015532536, 0.0013668702, - 0.012327648, 0.013585118, 0.01514611, 0.011281508, 0.015898641, - -0.020140251, 0.00598805, -0.012636538, 0.0062607825, 0.009951996, - 0.024062086, -0.02006261, 0.008160919, -0.0034053458, -0.023438578, - 0.010629061, 0.002271586, -0.023665436, 0.0150652155, 0.010859065, - -0.04556799, -0.0024487402, 0.017214155, -0.0046937806, -0.014021557, - 0.00193815, -0.012125911, 0.019395363, 0.026457373, -0.00854949, - 0.0224439, 0.016496046, 0.003044676, 0.0060441215, 0.02796829, - -4.3319768e-4, 0.008703182, 0.017139366, -0.007311541, 0.01987748, - 0.011617472, -0.0069262167, -0.016674815, -0.0073863408, 0.005717188, - -0.0099461395, 4.040214e-4, -0.005356266, -0.01692811, 0.0029434767, - -5.79452e-4, 0.008823537, -0.011316656, 0.024347575, 0.014344973, - 0.0048540547, -0.004557502, -0.0059362664, -8.746997e-4, -0.011974005, - 9.638577e-4, -0.0070883115, -0.009242184, 0.028330304, -0.011829282, - 0.006895722, -0.0316305, -0.0023662597, -0.010719588, 0.026587043, - 0.006019639, -0.01983319, 0.025741203, 0.013028612, -0.02049631, - -0.008751715, 0.018300256, -0.0053086733, 0.0032861729, -0.0064848335, - -0.0060745836, -0.018399805, -0.003349702, -0.0047453116, 0.011090071, - 0.0038408486, 0.0137228295, -0.009402927, 0.021299642, -0.0060830945, - 0.023309862, -0.00241839, 0.010410509, 0.015080935, 0.020181112, - 0.013671433, -0.0084596835, -0.011966034, -0.017509872, -0.011314301, - -0.013475803, -0.016199877, -0.024758434, 0.009986305, 0.023428705, - -0.008553143, -0.0013465544, -0.032377888, -0.037787274, -0.024264066, - -0.016664404, -0.019118188, 0.0013966477, 0.004791019, -0.0044643097, - -0.0016436586, 0.023046277, -0.028470688, -0.006298949, 0.002238202, - -0.001834411, 0.00586608, 0.027669765, -0.017699819, -0.005179772, - -0.010172737, 0.0045955935, -0.028579397, 0.015933357, 0.0051222593, - -0.009894651, 0.006425558, 0.011704663, -0.014893092, -0.03019271, - -0.006717095, 2.626599e-4, 0.003009294, -0.008123946, 0.017255127, - -0.0037823177, -0.04053822, 0.0041729524, -0.010007998, 0.016344909, - 0.0061719357, -0.00737181, 0.018340185, 0.018314669, 0.016399277, - 0.008541755, 0.0074528744, -0.024673682, -0.0110740345, -0.010574752, - 0.008109562, -0.018327637, -0.0031802333, -0.0026994993, 0.0074547925, - 0.02498261, 0.01214847, 0.0011734194, -0.005440321, 0.009241675, - 0.017792363, 0.008205315, -0.010306081, -0.017985173, -0.020778256, - 0.0042865966, -0.024110286, -0.002607756, 0.0093292985, 0.04205504, - 0.012963667, 0.016735828, -0.010557126, 0.005726047, -0.011009635, - -0.033011407, -0.0053578187, -0.02862089, 0.012064491, -0.02090066, - 0.003230209, -0.0048620705, 0.0019549655, -0.026395708, -0.01980936, - 0.00971209, 9.2460803e-4, 0.0100905765, 0.022844477, -0.004274559, - -0.01973929, -0.020754674, 0.006912508, 0.004841644, 0.010450837, - -0.020330487, -0.027466392, -0.005280999, -0.019657265, 0.020813694, - 0.020223193, 0.00872212, -0.017854305, -0.007234729, -0.012250713, - 0.0102811735, -0.0140921455, -0.009369597, 0.0029782702, 0.0019203039, - -0.01693004, -0.0017492821, -0.0076831058, -0.032468993, 0.011148679, - -0.025647314, -0.021299329, -0.01381495, 0.026977425, -0.0020428598, - 0.008808808, -0.0145942, 0.019360822, 0.0151347015, -0.008864512, - 0.003651063, 0.016824663, -0.004549539, -0.004174972, 0.015540881, - -0.028502224, 0.009600274, 0.0109881265, 0.03205994, -0.009389534, - 0.016469788, -0.017342588, 0.011536153, 0.0026568973, -0.01832169, - -0.020680452, 0.008494723, 0.00857936, -0.007512372, -0.011293662, - -0.008235048, -0.040620953, 0.0037238172, 0.010039144, 0.004751889, - -0.02326209, -0.0072042034, -0.0052151936, 0.017940274, 0.009342044, - 0.022786448, -0.0033938799, -0.010913707, -0.021200195, 0.003467602, - 0.0058720135, -0.015859852, -0.010082735, 0.0366167, -0.002073037, - 0.0035604127, 0.027053945, -0.012183245, 0.015642988, -0.007891811, - -0.008517107, 0.02144893, -0.008056686, -0.0037856807, 0.02977527, - 0.018577076, 0.0026269488, 0.0049726935, 0.0068668774, 0.032912612, - -0.0042743934, -0.013059268, 0.011959142, 0.014073093, -0.003986633, - 9.546893e-5, -0.006169866, -0.002304578, -0.013760614, -0.008399816, - 0.022143293, 0.0038963745, 6.400377e-4, -0.00573001, 0.010871003, - 0.014549277, -0.013710529, 1.9523197e-5, -0.010770217, 3.4274167e-4, - 0.0043876893, -0.024659444, 0.011544272, -0.033305917, 0.021321833, - 0.0063394373, 0.010785012, -0.0038825918, -0.021399876, -0.01602757, - 0.018822448, 0.006351396, 0.0051340023, -0.013029274, 0.022682864, - 0.008588955, 0.017822016, 0.0076075215, -0.015914207, 0.012690118, - -0.011571587, 0.023497062, 0.035432663 + "source.genres.label" : [ ], - "reducedFeatures": [ - -2.7630304e-6, 0.018881507, 0.009207798, -0.026952866, -0.026901137, - 0.0367333, 0.006519982, 0.045605045, 0.017684594, 0.0069691795, - 0.06676779, 0.037372354, 0.024312673, 0.008646836, 0.018275384, - 0.0059158807, -0.02415565, -0.053645454, -0.035583355, -0.01376219, - -0.026642798, 0.015899654, 0.007516532, 0.029351408, -0.0020070742, - -0.008769624, 0.032007493, 0.029412521, 0.009033153, -0.005274281, - 0.036070425, -0.051170398, 0.005096037, 0.01794485, 0.08982959, - 0.03010828, -0.0150256725, 0.036311958, 0.016732503, -0.03062338, - 7.947401e-4, -0.033956457, -0.015173491, 0.057022117, 0.0024302884, - 0.019782599, -0.014415911, -0.048386503, 0.07863666, -0.007829338, - -0.0072853686, -0.0029152976, -0.07555657, 0.011865857, 0.025073051, - -0.06308759, 0.017971851, -0.050750148, -0.058807116, 0.025109634, - -0.007978654, 0.044053927, -0.023249846, -0.053873472, -0.002698968, - -0.023261072, 0.008342076, -0.004355356, 0.047055222, -0.038464617, - -0.0020127818, -0.009218567, -0.016498575, 0.0104709035, -0.020443898, - -0.045570068, 0.011612322, 0.0035000294, -0.0044330475, 0.014648146, - -0.017945785, -0.051063467, 0.026418297, -0.0072049275, -0.0033527876, - 0.04627724, -0.019725999, -0.008102309, 0.01985722, 0.009782347, - -0.052179724, 0.035398033, -0.028927542, 0.042955667, 0.01697679, - -0.008534066, -0.016848924, 0.032806605, -0.031037945, -0.027263321, - -0.017663226, 0.06015002, -0.038440038, 0.042541325, 0.03580113, - 0.0071740574, 0.016737543, 0.024263298, 0.02057735, -0.05562988, - 0.06392182, -0.008261325, -0.013065793, 0.08850706, -0.0013281301, - -0.0070669036, 0.014140091, -0.023096412, -0.013532734, -0.034592837, - 0.0022897588, -4.7618983e-4, 0.06651423, 0.030572494, 0.0024512536, - -0.05617349, 0.024848517, -0.019527134, 0.0040330905, -0.013429193, - 0.026187282, 0.017633976, 0.0027548152, 0.04156788, -0.008665417, - -0.061083596, -0.011839467, -0.010527523, 0.032094356, -0.07872858, - 0.023203671, 0.006360376, 0.054440077, -0.027040496, 0.0057524615, - 0.061926764, 0.019854639, -0.03535122, -0.03963788, -0.029642407, - -0.009660808, -0.005235043, -0.0010227975, -0.034730524, 0.07464383, - 0.02068078, -0.009846992, -0.01630438, 0.013001357, 0.027670909, - -0.018493222, -0.06444281, 0.018045422, 0.020878745, 0.0049079694, - -0.020184126, -0.03465449, -0.030209044, 0.03754349, -0.002682934, - -0.021516241, 0.026722196, -0.043909013, 0.048837807, 0.0034600103, - 0.0027042723, 0.014020748, 0.005056187, -0.010733562, -0.12143785, - 0.040770404, -0.027992219, 0.0025976296, 0.008958844, -0.015242521, - -0.018032454, 0.0028352556, -0.026070427, 0.009891038, -0.005356572, - -0.021562144, -0.009433078, -0.026700115, -0.016197234, 8.8785775e-4, - 0.032839824, -0.0021279794, 0.009823385, 0.025897557, 0.020684443, - 0.021951089, -0.03491837, -0.0020349743, 0.011435213, 0.02508662, - -0.022324558, -0.019700415, -7.74305e-4, -0.014821819, 0.05154298, - -0.023484405, -0.006659188, 0.035808142, 0.00273292, -0.039153002, - 0.013591204, 0.007518368, -0.017083656, -0.051289044, -0.01031843, - -0.06536428, 0.004427211, -0.0012590153, -0.0030890007, 0.009018822, - 0.008062735, -0.04459798, 0.0349653, -0.016889848, -0.017597977, - 0.019216355, -0.048909664, -0.0058682295, -0.012923807, -0.05058665, - -0.05378754, 0.035246138, 0.02479502, 0.017543826, -0.020813331, - -0.011746855, 0.008702737, 0.023781229, -0.0042927302, 0.04374567, - -0.048855197, 0.022110192, 0.016364604, -0.009694791, -0.0033469915, - -0.0030041132, 0.04487756, 0.019487645, 0.025872279, -0.017585415, - 0.02839474, 0.025392694, -2.555511e-4, 0.031667545, 0.05352869, - 0.052415214, -0.008704106, 9.892473e-6, 0.017247267, -0.01834715, - -0.06475017, 0.023360593, -0.033747923, 0.024062539, 0.09003549, - 0.038175445, -0.05715877, 0.008267149, -0.014717798, -0.03522486, - -0.007851552, -0.025364514, 0.044325154, -0.0373376, 0.0044210046, - -0.03377105, 0.03664766, 0.0015596441, -0.025984786, -0.004347719, - -0.01368468, -0.04031538, 0.0042919572, 0.0011336701, 0.03027315, - 0.050085254, -0.0038923773, -0.039388932, -0.017565435, -0.029169818, - -0.02287687, 0.03358216, 0.034842297, -0.07131407, -0.030968497, - -0.015344855, 0.04046446, 0.01619924, 0.025769146, -0.008808689, - 0.04083491, 0.0020434803, 0.032880798, 0.005960141, -0.021381645, - -0.025058152, -0.0028999464, 0.02416646, 0.01357215, 0.02402188, - -0.043952882, 0.023971805, -0.022745641, -0.03170426, 0.005344073, - 0.021090012, -0.0068187355, 0.009508215, -0.059100404, -0.062179297, - -0.025696587, 0.03731189, -0.04481515, -0.03794826, 0.05340005, - 0.012358275, -0.014912235, -0.024576318, -0.012619464, -0.003167414, - -0.01322866, -0.054132808, 0.028584508, -0.0136027, -0.034539804, - -0.0044369614, -0.009674674, -0.0028586295, 0.030589858, 0.079196736, - 0.012743363, 0.010537793, 0.006113873, -0.0053805984, -0.037122943, - -0.030405393, -0.0020060667, -0.009781923, -0.0120638665, 0.007316777, - -0.023433818, 0.0020362064, -0.042860843, 0.04681594, 0.011607813, - 0.020524908, 0.011696948, 0.029621774, -0.03301028, -0.0067450698, - 0.02549717, -0.008781952, -0.031274863, -0.037441462, 0.010335813, - -0.0026690483, -0.007634179, 0.027760176, -0.06459978, 0.022097928, - 0.02300449, -0.00853485, -0.047382224, 0.010626964, -0.039391417, - -0.009893842, -0.02261156, 0.044584583, -0.0047985003, -0.0114573, - 0.007586286, -0.0015407457, 0.041020703, 6.8470516e-4, -0.027702458, - 0.0127811, 0.022224972, 0.014310719, -0.03181043, -0.0638018, - -0.0030955574, 0.003986698, 0.052296396, -0.01273908, -0.0016093351, - -0.03704404, 0.036979493, 0.07973951, -0.003579881, -0.04008584, - 0.022596668, -0.03411189, 0.064036556, -0.020069588, -7.854679e-4, - 0.026277127, -0.02404523, 6.137232e-4, 0.023164691, -0.0344246, - -0.03994794, -0.027029438, 0.010196471, 1.7365116e-4, 0.028518317, - 0.07263003, -0.008459359, 0.031428054, -0.009654805, -0.016698483, - 0.005220213, -0.010752891, -0.02736607, 0.0137378825, 0.03730059, - 0.015241008, 0.012794111, 0.012167633, -0.023088282, -0.0027465012, - 0.016548868, 0.047556844, -0.029013354, 0.002003729, 0.029262397, - 0.055505347, -0.0073876376, 0.0029842667, 0.0049106516, 0.017418727, - -0.04216583, 0.016777113, -0.01189326, 0.05960974, -0.066074215, - -0.025935177, -0.05090749, 0.012132196, 0.015837267, -0.02934607, - 0.020993441, 0.008223563, 0.023076372, 0.029537154, 0.072736904, - 0.0592489, -0.015756594, -0.0073899287, -0.02004629, -0.0040926337, - -0.059895832, 0.005336138, -0.008369323, -0.005910519, 0.014312612, - 0.03717521, 0.048866715, 0.002126788, 0.0137809515, -0.024444133, - -0.05311084, -0.01325496, -0.015842214, -0.04015081, 0.041791763, - -0.024853503, -0.043662384, -0.011753156, -0.0027623544, 0.04615713, - -0.06156462, -0.05093253, 0.0032409732, -0.010985104, 0.022922134, - -0.033079036, 0.041500863, 0.04896559, 0.058102407, -0.006323358, - 0.011907079, 0.044148486, -0.022967853, 0.075952336, 0.017765224, - -0.029741611, -0.021811146, 0.005569356, -0.023064848, 0.012651132, - 0.03710008, 0.027506338, 0.038767837, -0.020904852, 0.053533524, - 7.294303e-4, 0.006760032, 0.0377825, -0.038839653, 0.010384642, - -0.0017861048, 0.03191268, 0.03545022, 0.029120838, 0.0061659194, - 0.060912125, -0.012723501, -0.008723556, 0.0040980144, -0.028259836, - -0.011762516, 0.008745967, 0.04045229, -0.030444186, 0.020377053, - -0.026970979, -0.012356908, 0.02881456, 0.004914483, -2.668896e-4, - -0.021182757, 0.0038408195, -0.021762172, 0.024848804, 0.037706576, - -0.0038423433, 0.0053646923, -0.04243919, 0.071508415, -0.016607935, - 0.033354767, 0.022223076, -0.03912673, -0.018045593, 0.05201439, - -0.072609305, 0.006782337, -0.017939925, 0.003126858, -0.012785732, - 0.03054424, 0.010581868, 0.017618183, -0.024136815, -0.0051245284, - -0.016370792, -0.020832947, -0.0066435686, -4.3038029e-4, 0.009052743, - -0.008173509, 0.018766534, -0.0075022625, 0.012823837, 0.03052486, - -0.030696774, 0.0026012438, -0.03779533, 0.048784014, 0.075296186, - 0.04070128, -0.01003191, -0.032524787, -0.013149388, 0.012289715, - 0.048207987, 0.013485458, 0.03579748, 0.02970651, -0.056761023, - 0.014219051, -0.015657658, 0.028630422, 0.013777448, 0.0228578, - 0.07070552, -0.038588673, -0.04391591, 0.017906778, -0.01485449, - 0.036779683, -0.024501815, 0.0411012, 2.5666714e-5, -0.06256561, - -0.018956415, -0.06889772, 0.024639972, -0.026883377, -6.671159e-4, - 0.040857144, -0.049135696, 0.038953565, -0.015505527, -0.005431338, - 0.014538761, -0.042635698, -0.015500116, 0.028305236, -0.017918456, - -0.05648523, -0.006837414, -0.009885453, -0.023782877, 0.034192212, - 0.038025204, 0.049997512, -0.0594978, 0.018733447, 5.989305e-4, - 0.042638578, 0.021446148, 0.07715539, -0.003766469, 0.0014020267, - 0.014835793, -0.024622323, 0.022560962, -0.013861333, 0.036789898, - -0.007696147, -3.3559615e-4, -0.015163151, 0.053113498, -0.016906934, - 0.005608136, 0.0148818465, 0.015188231, -0.015002104, 0.024132721, - -0.011453024, 0.016868057, -0.071278326, -0.00912672, -0.07750228, - 0.066614784, -0.0074046804, 0.034122806, 0.059652302, -0.016497882, - 0.038538907, 9.45364e-5, 3.6026843e-4, 0.013367311, 0.021429336, - 0.01077533, 0.005681673, -0.032328073, 0.0069348277, 0.004970449, - 0.0030919516, -0.054533955, -0.018200431, 0.0011164168, -0.03332813, - -0.0065745986, -0.031709824, -0.017211711, -0.040753305, 0.038580067, - -0.0025141302, -0.030137947, -0.014085736, -0.017959792, 0.029816756, - -0.004208283, -0.06795353, -7.21235e-4, -0.012316891, -0.011474574, - 0.025937643, 0.014572491, -0.0325185, -0.029494988, 0.008107002, - -0.005242686, 0.012034137, 0.070613876, 0.026442444, 0.012898024, - 0.016071117, -0.014594492, -0.022772113, 0.033452217, 0.0050626043, - -0.006997462, -0.05912532, -0.057851117, 0.012913885, -0.025286775, - -0.021452868, 0.034419525, 0.017041912, 0.01485032, 0.017429318, - 0.011705437, 0.056772314, 0.020457674, -0.023723917, -0.0016178584, - -0.0290485, -0.009678036, -0.026772924, 0.0054713036, -0.039943427, - 0.012698505, 0.046477217, -0.016337672, -0.047299255, 0.030247523, - -0.042563714, -0.0032367054, 0.029813841, 0.004244384, 0.010431018, - -0.022869717, -0.027082164, -0.027356671, -8.665563e-4, -0.046703566, - 0.019447444, 0.0100879995, 0.06906829, -0.016222993, -0.042457215, - 0.01066365, -0.014446226, 0.006402157, -0.00641054, -0.049073424, - 0.028744206, 0.04839371, -0.018404217, 0.024924066, 0.007703331, - -0.0092437025, -0.0036484136, -0.02522352, 0.025079107, -0.023294339, - -0.017106969, 0.043568704, -0.01387186, -0.04319966, 0.039144974, - 0.01658876, 0.027484464, -0.014726737, -0.017848654, 0.026438355, - 0.0047667054, -0.0143482555, 0.015753165, -0.040189683, 0.02467896, - -0.051992774, 0.0069947857, 0.015711743, 0.0035916218, -0.010360562, - -0.016701192, -0.104803756, -0.058991883, -0.053604867, 0.019660924, - 0.013558056, 0.052006494, 0.002722879, 0.0067604245, 0.04601631, - 0.07746208, 0.04777584, -0.035842363, 0.016349757, 0.027444338, - -0.04717676, -0.004326739, -0.022461265, -0.05977837, 0.059238795, - -0.015457256, -0.016121311, 0.028010642, -0.044464547, -0.0077723386, - 0.0022732487, 0.054888077, -0.056772754, -0.009868019, -0.043359693, - -0.0062256744, 0.03063077, 0.036526717, -0.035984628, -0.0020623922, - 0.002793353, -0.042055797, 0.01047822, -0.034345146, -0.009964486, - -0.02720592, -0.013872747, -0.06930055, 0.018490655, 0.04501714, - 0.021222765, -0.0353232, -0.03848899, -0.017605351, -0.018124724, - -0.05128768, -0.005746115, -0.024727589, -0.0028633217, 0.02695522, - -0.02049968, 0.017883977, -0.017338632, 0.0026326983, -0.003165255, - 0.020061303, -0.02760733, -2.7169706e-4, 0.071749344, 0.026035953, - -0.04093791, 0.025158713, 0.021601245, -0.011921854, -0.008044096, - -0.008258544, 0.017182099, 0.025828194, 0.009111699, -0.011232355, - -0.03364654, -0.029022558, -0.005841538, -0.018402811, -0.015989257, - -0.042015422, -0.054300107, -0.023121709, -0.016386079, -0.027261138, - 0.027087653, -0.010278227, 0.029265665, -0.0106124235, -0.04340082, - -0.06831718, 0.07238992, 0.027864806, 0.015803855, 0.02771388, - 0.01902088, -0.020421378, 0.03487546, -0.046229623, 0.011797803, - 2.3082165e-4, 0.0064697317, 0.0057216673, 0.019921215, -0.0029798842, - 0.005266359, -0.0023754723, 0.02703529, -0.04683268, 0.040819928, - -0.024076004, -0.026798854, -0.015913682, 0.010696063, 0.021320058, - -0.008726058, 0.021012489, -0.013190548, -0.0030515406, -0.024663975, - 0.022457195, -0.016303023, -0.051364638, 0.022680994, -0.0051654554, - 0.046063986, 0.07423732, 0.0019118098, 0.024182308, 0.009634333, - -0.019349696, 0.045875125, -0.017875958, -0.02907249, 0.033801764, - 0.035397995, 0.030492812, -0.0170654, 0.03955174, 0.0037848232, - -0.053055815, -0.008679073, -0.051204067, -0.00541803, 0.02059695, - 0.053965293, -0.02768457, -0.067010194, 0.0036328835, 0.0046326024, - 0.001155863, 0.041293405, -0.0019232363, 0.077417806, 0.009769548, - -0.017836928, 0.009238482, -0.061676648, -0.027741188, 9.1671466e-4, - -0.023573682, -0.009534771, -0.011197971, -0.012971569, 0.011944359, - -0.006699636, -0.06304176, -0.0148955155, -0.0352159, -0.009308757, - -0.008150285, -0.0017835487, 0.012035684, -0.010419024, -0.044179346, - 0.0557778, 0.03843828, 0.012558588, 0.025619686, -0.016761487, - 0.012267178, 0.032579437, 0.043142755, 0.0076163393, 0.007272365, - -0.0031547898, 0.0114851175, -0.010473392, -0.06301524, -0.038293883, - -0.01660027, -0.016075335, -0.021177823, -0.0024319652, 6.876518e-4, - -0.01778597, -0.029312242, -0.0062915203, -0.06209854, -0.0017424943, - -0.038265254, -0.03540697, -0.021936394, -0.05309538, -0.019039879, - -0.022595309, -0.021795303, 0.013200424, 0.01206181, 0.00981291, - 0.016584167, 0.03680635, 0.025179185, -0.008473061, -0.03466676, - 0.0015616709, 0.004894014, 0.0077948226, 0.020878231, 0.031310305, - 0.032408476, -0.12227556, -0.0010420844, 0.032099217, 0.048991602, - -0.016302481, -0.031806506, 0.02921962, 0.0017307291, 0.037256792, - -0.014965907, 0.021398187, -0.008261868, -0.008994093, -0.0038992565, - -0.001943448, 0.005002082, -0.012152712, -0.010229756, -0.059648387, - 0.07676977, -0.0077909944, 0.020250909, 0.0054582856, -0.044814244, - 0.023373727, -0.028089246, -0.040698525, 0.023353508 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.020432228, + 0.01433251, + -0.007882895, + -0.00711963, + -0.0029928295, + -0.0050527914, + 0.019092353, + 0.013001283, + 0.006563495, + 0.025057368, + 0.0024918125, + -0.019641096, + 0.005942286, + 0.027606118, + -0.0052916175, + -0.011710967, + 0.014304218, + -0.013689496, + 0.0051465984, + 0.0074364226, + -1.8206109E-4, + -0.019808523, + -0.008880538, + 0.012739957, + 0.011032376, + -0.023384206, + -0.017704228, + 0.010363077, + -4.290777E-4, + 0.008020971, + 0.015788969, + -0.01304065, + 0.0070423316, + 9.5698575E-4, + -0.006227628, + -5.395617E-4, + -0.011063239, + -0.0065070554, + 0.0121052405, + -0.014819646, + 0.0058432645, + 0.0047024256, + -0.012603707, + -0.023486717, + -0.022205543, + -0.030566694, + -0.021224633, + -0.004874501, + 9.593883E-4, + 0.006877654, + 0.005846964, + -0.011322625, + -0.0017556868, + 0.01872676, + -0.0028397453, + -0.008047889, + 0.0036772287, + -0.010294459, + -4.3836376E-4, + 0.0027379019, + 0.0016081937, + -0.018157437, + -1.8223278E-4, + -0.0056479666, + 0.007276882, + 6.704073E-4, + -0.0018581996, + -0.023344224, + -0.011815082, + -0.012878892, + 0.014874602, + 0.030177724, + -0.018250477, + 0.008955778, + -0.002464937, + -0.021310002, + -0.00731683, + 0.013205182, + -0.0016484766, + -0.012256119, + 0.032746132, + 0.0033172516, + 0.010067454, + 0.014553086, + -0.009680452, + 0.0067469054, + -0.010663465, + -0.028841203, + 0.019062284, + 0.016957931, + 0.032912478, + -0.013587502, + -7.0819946E-4, + -0.016406128, + 0.0073401094, + -0.026519347, + 0.0056868065, + -0.013525718, + 0.012293357, + -0.007258488, + -0.0014499179, + 0.0139384335, + -0.015178755, + -0.010992805, + -0.02160594, + -0.0108740255, + -0.007561568, + -0.004245807, + -0.0045593223, + 0.008280459, + 0.017679045, + -3.2725884E-4, + 0.023468956, + -0.011956106, + -0.020772692, + -0.0110431025, + 0.029131241, + 0.022684403, + 0.002519601, + 0.04055965, + 0.020109057, + 0.018832933, + -0.0050762943, + 0.015607098, + -0.016694196, + 0.0045406693, + 0.0027194966, + -0.004423112, + 0.0091531705, + 0.007473177, + -0.009451719, + -0.007858381, + 0.0087752305, + 0.014575264, + 0.008005722, + -0.0036732825, + -0.02477355, + 0.048563763, + 0.029425394, + 0.016013533, + -0.020947644, + -0.008338424, + 0.0047386517, + 0.017875824, + -0.010345776, + 0.009507915, + -0.0038012904, + 0.0024153392, + -0.011597846, + 0.01824482, + -0.0030834568, + -0.018524952, + 0.031612787, + 0.00842266, + -0.0066049984, + -0.01022424, + 0.012309343, + 0.0023050609, + -0.020376373, + 0.012104472, + -0.006395497, + -0.0012322752, + 0.011206929, + -0.012291215, + -0.022322359, + -0.020316552, + 0.016357353, + 0.0059331204, + 0.014847726, + -0.009271055, + 0.017409226, + 0.032543108, + 0.014228017, + 0.023577226, + 0.016924106, + -0.018148541, + -0.0063591073, + -0.013332293, + 7.9978816E-4, + 0.01121455, + 0.0059718513, + -0.013045361, + 0.0131324325, + -0.007101398, + 0.0032884432, + -0.011680385, + -0.0015928411, + -0.004642081, + -0.00763096, + -2.4381456E-4, + -0.016265342, + -0.0029488625, + 0.007433678, + 0.013620463, + 0.009037413, + 0.009172664, + -0.014175665, + -0.008472585, + 0.017160416, + 0.011405511, + 0.015395061, + -0.009421741, + -0.0024291973, + -0.02023195, + 0.014535527, + 0.017470375, + -0.009730235, + -0.0074514276, + 0.02940425, + 0.034943726, + -0.009076398, + -0.009930467, + -0.027717525, + -0.031131467, + -0.011890002, + -0.015984429, + 0.0023358942, + -0.020765224, + -0.014489223, + 0.0047576106, + 0.006128793, + 0.0067063547, + -0.015050098, + -0.01108008, + 0.011901294, + -0.015191914, + 0.017490515, + 0.0043507772, + 0.0126850465, + 0.03340281, + -0.035119202, + 0.0021855382, + -0.027200313, + 0.009547391, + 0.0019493615, + -0.015168169, + 0.010481688, + 0.016632179, + -0.0077438937, + 0.023603745, + 0.012197686, + 0.021422353, + -0.010423571, + 0.0021308223, + 0.011019872, + -0.015750812, + -0.011279151, + 0.015267178, + 0.004538026, + -0.022838246, + -0.007506361, + 0.018092502, + 0.0018639194, + -0.007058215, + 0.017760068, + 0.0033521578, + 0.021413693, + -0.007388583, + -0.010873915, + 0.008809713, + 0.005086578, + 0.0043612737, + -0.0031054786, + -0.020322962, + -0.0017129873, + -0.009957892, + -0.007282812, + 0.0056451717, + -0.0149989985, + -0.015299601, + 0.0022573213, + -0.0018977653, + 0.007141187, + -0.028291263, + 0.030842269, + -0.03148317, + -0.004597326, + -0.017287683, + -0.0036845724, + -0.014493055, + 0.005150653, + -0.006903863, + 0.008036165, + 0.037047364, + 0.0070440136, + -0.0010200564, + -0.015932165, + 0.014160907, + -3.7899194E-4, + -0.0027100244, + -0.01521979, + 0.0066031143, + 0.025748802, + 0.005587868, + 0.0046625608, + 0.016315041, + -0.008589133, + 0.0016952244, + 0.022035096, + 7.0245407E-4, + 0.011791642, + 0.0035829348, + 0.006721672, + 0.01932176, + -0.008126006, + -0.03325537, + -0.029919744, + -0.019737555, + -0.004575185, + -0.0011353634, + 0.0034594235, + -0.015145365, + 0.0152674215, + -0.004394929, + -0.009831516, + -0.01740457, + -0.007785988, + -0.0029134213, + 0.027936405, + -0.05186419, + -0.0103640305, + -0.017245712, + -0.016492914, + 0.04521556, + -0.009044676, + 0.0035734219, + 8.5768057E-4, + -0.0030371442, + 0.012077142, + -5.9713666E-6, + 0.004457341, + -0.0013686973, + 0.01576312, + 0.014541306, + 0.009028564, + -9.044855E-4, + -0.030082101, + -0.016417066, + -0.0022334398, + -0.010210772, + -0.022242205, + 0.009553442, + -0.0064670434, + -0.0031823714, + 0.0059201047, + 7.7070796E-4, + -0.006713381, + -0.013629947, + 0.02299483, + 0.008957242, + -0.0031214366, + -0.007122649, + -0.0022388026, + 0.0042965035, + -0.011725565, + 0.0050617154, + -0.011188563, + 0.0105765965, + -0.006890459, + 0.004058786, + 0.01089591, + 0.026216231, + 0.022378558, + -1.4428678E-5, + -0.021663997, + -0.036174033, + -0.0052690655, + -0.014888498, + -0.0042604744, + -0.0330325, + 0.01798893, + 0.019138666, + -0.009437107, + 6.773362E-4, + 0.011942138, + -0.0011354173, + -0.009053728, + -0.010577765, + 0.019404719, + -0.006830187, + -0.023733728, + -0.010030354, + 5.2909175E-4, + -0.0093318885, + 0.015858011, + 0.012332006, + -0.0045819166, + -0.0025491952, + -0.013744516, + 0.0027349573, + 0.019539706, + 0.02812238, + 0.020908954, + 0.028771555, + 0.016586207, + -0.0031426605, + -0.013222085, + 0.017558001, + -0.018197734, + -0.011846645, + 2.1223488E-4, + 0.0012846269, + -0.005171502, + 0.037912644, + -0.010668174, + 0.0065657115, + -0.018882908, + -0.026063135, + -0.0050632632, + 0.004739699, + -0.0025603084, + 0.009050678, + -0.006900661, + -0.017603172, + 0.003668583, + 0.017515976, + 0.025008671, + 0.0113553, + 0.014299798, + 0.00778611, + 0.022111777, + 0.00341161, + -0.016600111, + -0.016906586, + 0.0010843734, + -0.01293554, + 0.031280354, + -0.012038858, + -0.020481115, + 0.011473663, + -0.007079226, + -0.016562741, + -0.018052837, + -0.014556221, + -0.018645547, + 0.004158845, + 0.009608379, + 0.017888943, + -0.019881748, + 0.045805644, + -0.012425977, + 0.0137801645, + -0.004924289, + -0.008025418, + 0.02203079, + -0.026053408, + -0.0016947343, + -0.011112119, + -0.022201834, + -0.029663986, + 0.004313977, + 0.022487821, + 0.019722288, + -0.009924719, + -0.024399124, + 0.022665836, + -0.015397027, + -0.010011483, + 0.013195869, + 0.022020489, + 0.014035294, + 0.012648717, + -0.032317776, + -0.006438833, + 0.010190149, + -2.3127411E-4, + -0.033688087, + 0.016788226, + 0.024891775, + -0.0020973764, + 0.02569618, + 0.002135846, + 9.492524E-4, + -0.024927108, + 0.021367358, + -0.014104262, + -6.471427E-4, + -0.0026840477, + -0.009953417, + -0.013092365, + 0.037580594, + 0.0515255, + -0.002972676, + -0.010576525, + -0.018004885, + 0.0011360123, + -0.019461604, + -0.0077843354, + 0.0051203356, + 0.016448777, + 0.007109825, + -0.0035426097, + -0.006625077, + -0.003591148, + -0.008892218, + -0.008125423, + 0.005037885, + 0.008147061, + -0.009322222, + 0.018434778, + -0.0025398622, + -0.0032815307, + 0.008669559, + -0.02110237, + 0.01713188, + 0.004369296, + 0.009643503, + -0.009665682, + 0.004060414, + 0.011952639, + -0.0132178515, + -0.016214592, + -0.029787354, + -0.0050766394, + -0.008498202, + -0.0074527734, + -0.02650139, + 0.013288161, + -1.5820624E-4, + 6.815905E-4, + 0.006965158, + 0.02077829, + -0.0035275626, + 0.0019753098, + -0.015437989, + 0.028759498, + 0.017898025, + -5.8093545E-4, + -0.0025220867, + -0.0023415035, + 0.012604227, + -0.027535098, + 0.014392337, + 0.017313134, + 0.015764466, + -0.015557632, + -0.029568085, + -0.0039639827, + -0.008621592, + -5.4335955E-4, + 0.01434167, + -0.0048302426, + -0.0045528477, + -0.035154365, + 0.023537552, + -0.018524103, + -0.0071124593, + -0.002445116, + 0.011427931, + -2.3519929E-4, + -0.012394891, + -0.008355188, + 0.0057123527, + 0.020738283, + 0.010326386, + -0.01684313, + 0.0127779655, + -0.012481773, + -0.016278595, + -0.016134825, + 0.008425883, + -0.0027687114, + -0.0027638744, + 0.032471612, + -0.013106994, + 0.0095325485, + 5.275527E-4, + -0.018962352, + 0.01664951, + -0.012510606, + -0.010947927, + 0.0140102375, + -0.027089711, + 0.020732874, + -0.012929268, + 0.026725942, + -7.6339213E-4, + 0.0026275867, + -0.01995817, + -0.03825978, + -0.010636496, + -0.016005145, + -0.027616417, + 0.007388354, + -0.0193223, + 0.0027659826, + -0.024950063, + -0.02295209, + -0.012720928, + -0.00974157, + -0.013363604, + -0.0056225886, + -0.009713727, + -0.0059234984, + -0.0080467975, + 0.0041040867, + -0.013339437, + -0.0044882623, + 0.028236745, + 0.0032068146, + -0.0052602445, + -0.004495862, + -0.0056432234, + -0.016370377, + -0.005870142, + 0.0023850778, + 0.026926674, + -0.022305353, + 0.012993072, + 0.0023305512, + -0.022035966, + -0.008675766, + -0.019299338, + 0.014897583, + 0.010068004, + -0.0031763169, + 0.006689113, + 8.753165E-4, + 0.020080954, + -0.034553356, + -8.513477E-4, + -0.0017059013, + -0.0061183064, + 0.0075723515, + -0.011527292, + -0.003403524, + 0.015925331, + 0.017248299, + -0.002523539, + -0.018409781, + -0.003248683, + 0.021116994, + -0.008794737, + -0.026762618, + 0.027943771, + 0.01783728, + -0.027350675, + -0.006786097, + 0.01324354, + -0.030440802, + -0.012596844, + -0.0060858447, + -0.0010210207, + -0.016198434, + 0.0060260477, + 0.01355262, + 0.016269222, + 0.013691631, + 0.025757797, + -0.006101474, + -0.008313965, + 0.0038159175, + 0.0045976257, + -0.0020675587, + 0.0034343957, + -0.0033805154, + -0.031578727, + 0.0052680653, + 0.016608126, + 0.02153978, + -0.01790211, + 0.029726833, + -0.010747445, + -0.0023998676, + 0.013761084, + -0.017059183, + 0.010192923, + 0.008705193, + 0.032637104, + -0.001168284, + -0.0168793, + -5.6197343E-4, + 0.011518048, + -0.015583013, + 0.009140645, + 0.006884684, + -0.011409347, + -0.003758795, + 0.0037718462, + -0.040682867, + 0.005919234, + -0.015366739, + -0.012655282, + 0.01376157, + 0.025636429, + 0.0037191054, + 0.022198616, + -0.0071177618, + 0.029916057, + 0.01976841, + 0.016475234, + -0.012011492, + -0.016447207, + 0.001678384, + -0.012651414, + 0.002622418, + -0.032209918, + -0.006578963, + 0.004631914, + 0.0103468625, + -0.03805341, + 0.02849881, + 0.010892563, + -0.0035512727, + -0.03131571, + 0.006810755, + -0.012475288, + -0.012048584, + 0.007071382, + -0.01355604, + -3.9721778E-4, + -0.033607006, + 0.0018813638, + 0.006749335, + -0.043371465, + 0.013548713, + 0.017081212, + -0.0076730447, + -0.0029665527, + -0.011989252, + 0.009012696, + 0.033422228, + 0.022798112, + -2.6863566E-4, + -0.0052735857, + -0.0057884636, + -0.02655056, + 0.0071013495, + 0.0043067997, + 0.009045973, + -0.01010748, + 0.018870926, + -0.0085288165, + -0.013655993, + -0.020200495, + 0.0037553036, + -0.001681035, + 0.01246582, + -0.017822433, + 0.006382255, + -0.0023044914, + -0.010904296, + -0.008546005, + -0.01236052, + 0.016373036, + 0.013082482, + -0.020246249, + -0.033542838, + -0.015255737, + 0.0011366544, + -8.0554764E-4, + 0.017909497, + -0.0065285102, + -0.0047290977, + 0.013518383, + 0.010679814, + -0.015955947, + -0.028649172, + 0.041034363, + 0.001659126, + 0.027441615, + -0.014720666, + 0.01686184, + 0.0039013785, + -0.0012522414, + 0.017416403, + -0.030683262, + 0.009813457, + -0.014546792, + 0.0018578751, + -0.006551754, + 0.021387877, + 0.013751271, + -0.020988122, + -0.028150197, + 0.011477247, + -0.002318409, + 0.011235715, + -0.011577109, + 0.024176337, + -0.009894324, + 0.02324915, + -0.0013732165, + 0.021437533, + -0.011888106, + 0.016285006, + -0.022433633, + 0.009094131, + 0.02608867, + 0.011790612, + 0.0067550763, + -0.0036485763, + 0.016650816, + 0.009886733, + 0.010454639, + 0.0017600445, + -0.015744817, + 0.014529953, + -0.0060516726, + -0.017406363, + 0.01368245, + -0.03454914, + 0.027304724, + 0.01332261, + -0.03210639, + -0.028517589, + -0.014627134, + -0.0047999765, + -0.0020326364, + 0.001566726, + -0.05737826, + -0.006031402, + 0.023919275, + -0.0072585344, + 0.012786056, + 0.015720433, + 0.024369966, + -0.005753561, + -0.003207508, + 0.015807563, + 0.010652554, + 0.022764795, + 2.847549E-4, + 0.0049257795, + -0.010257412, + 0.0027342238, + 0.002823619, + 0.0068406374, + 0.008570204, + 0.011898638, + 9.4956165E-4, + 0.03291284, + -0.0039745155, + 0.014627925, + -0.0020866184, + 0.014339039, + -0.008216485, + 0.0010622052, + -0.0062433206, + 0.0076163486, + 0.018138023, + -0.012195203, + 0.013841492, + -0.024512036, + 0.0072382865, + -0.013139614, + 0.0033686666, + -0.031819858, + 0.0073073884, + 0.0117588695, + 0.0057144105, + 0.014071307, + 0.015518447, + -0.007705424, + -0.015711555, + -0.0045430916, + 0.009341795, + -0.0012094069, + 0.01365145, + -0.017284917, + 0.007936775, + -0.025176046, + 0.016632367, + 0.02633432, + 0.015719835, + -0.010956655, + 0.019068997, + 0.023262423, + 3.0238077E-4, + -0.0063942913, + -0.008394915, + 0.028733289, + 0.012605706, + 0.007063196, + -0.013175609, + -0.028574439, + -0.004975265, + 0.007965939, + -0.009274599, + 0.022737274, + 0.019277286, + -0.0012844044, + -0.0042132353, + 0.024198467, + 0.015273673, + -0.014494326, + -0.0017938436, + -0.0044499603, + 0.010342991, + 0.007484558, + 0.0068901423, + -0.0075910115, + 0.028893251, + -0.012725064, + -0.0038408192, + 0.008784449, + -0.017069276, + 0.0016478518, + -0.013388334, + -0.023772882, + -0.039670873, + -0.012089644, + 0.015847005, + -0.028519232, + 0.008855616, + -0.016046286, + -0.010631833, + -0.0077167284, + 0.01743227, + 0.034612723, + 0.012927748, + 0.017860057, + 0.0051207743, + 0.018946903, + -0.008021225, + 0.04690013, + -0.009106845, + 0.0018678359, + 0.0135875335, + 0.020205243, + -0.015606571, + 0.041818004, + 0.010846232, + 0.00275242, + -0.0016460464, + -0.010126597, + -0.015790833, + -0.023111833, + 0.022883736, + -5.877536E-4, + -0.013120908, + -0.0061697233, + -0.030163603, + -0.009458561, + -0.020802228, + -0.0016680289, + 0.005565225, + -0.011470858, + -0.0050715413, + 0.004779434, + -0.029292857, + -0.012723195, + -0.014368196, + 0.017351002, + 0.0018758964, + -0.0035688982, + 0.032437183, + 0.0029909348, + -0.009230355, + 0.015985612, + 0.044595245, + -0.011153728, + 0.012573301, + -0.0104910955, + -0.022823796, + 0.017426617, + 0.0047430396, + 0.020014571, + -0.006114292, + -0.002270889, + -0.0040760203, + -3.4959216E-4, + -0.010064765, + -1.8084813E-4, + -0.015416202, + -0.015363962, + -0.013368631, + -8.27555E-4, + 0.001454131, + -0.007546008, + -0.0038338997, + 0.002149977, + -9.541689E-4, + 0.030183364, + 0.007196149, + 0.009455995, + -0.0023074748, + 0.008482289, + -0.00644327, + 0.0057595843, + 0.019281955, + -0.022707038, + 0.01872258, + 0.017932368, + -0.009520163, + 0.026845673, + 0.012419602, + -0.0037467002, + -0.03724087, + 0.0043751495, + 0.016275438, + -0.0022899057, + 0.008540283, + -0.0067587225, + 0.021381786, + 0.025718153, + -0.013889534, + -0.014150315, + -0.0020144784, + -0.007825603, + -0.019817907, + 0.018111901, + 0.011342452, + 0.0033244288, + 0.025911767, + -0.015436597, + -0.005323718, + -0.024991127, + -0.0030838402, + 0.018067848, + -0.030154174, + -0.009964244, + 0.018618323, + 1.9156086E-4, + 0.003541902, + 0.011182201, + -0.01266852, + -0.01015921, + 8.031709E-5, + -0.020521434, + -0.017566778, + 0.0082387095, + 0.0028729828, + 0.03901835, + -0.0060072746, + -0.021684969, + -0.04450659, + 0.008357477, + 0.0049283565, + 0.006257282, + -0.023837278, + 0.0232745, + -8.1484986E-4, + -0.009888301, + -0.005941502, + -0.0076056807, + -0.030738143, + 0.004572188, + 0.016187442, + -0.0029264947, + -0.002190264, + 0.031925775, + 0.02489506, + 0.017186575, + -0.014731595, + -0.014134353, + -0.0041461415, + 0.009430586, + 0.014012543, + 0.002628826, + 0.015975684, + -0.013031592, + -0.019303216, + 0.002893031, + -0.011547704, + -0.0293902, + -0.016780574, + 0.025883984, + -0.0339651, + 0.012474821, + 0.013129915, + 0.016199876, + 0.0030735494, + 0.009254286, + 9.49603E-4, + -0.0071665747, + 0.0014936432, + 0.005304347, + -0.015180422, + 0.015276, + 0.013421952, + 0.019857835, + -0.0014724693, + 0.02194952, + 0.007049115, + 0.015920475, + -0.007896086, + 0.0067485417, + -0.0014910795, + 0.02160042, + 0.0025363893, + 0.003863883, + 0.0065134424, + 0.039041992, + 0.0069511337, + 0.0045524044, + 0.012752975, + 0.014481035, + 0.011252949, + -9.860638E-5, + 0.0016208695, + -0.008373107, + 0.011163834, + -0.0050388537, + 0.039356392, + 0.020287689, + 0.0190923, + 0.007688954, + -0.028360974, + 0.0038210559, + 0.0029955932, + 0.009751721, + 0.019813526, + 0.003511139, + 0.012128005, + -0.017847843, + 0.011859032, + 0.0026251154, + 0.019419635, + 0.021284709, + 0.006011059, + 0.0021340246, + -7.4674987E-4, + 0.013402431, + -0.005396012, + -0.005667522, + -9.0521976E-4, + 0.019744957, + 0.004785734, + 1.0950638E-4, + -0.0021291787, + -7.821257E-4, + 0.010762872, + 0.016907228, + 0.006863966, + 0.02927995, + -0.019572977, + -0.010873459, + 9.6863066E-4, + -0.022942321, + 0.015938116, + -0.015236453, + 0.013857823, + 0.008195951, + 0.006974247, + 0.029387107, + 0.0014153386, + -0.015418087, + -0.0075264703, + -0.010998764, + -0.020816855, + 0.005869758, + 0.0028357545, + 0.01777862, + 0.022363445, + -0.02586814, + -0.00661583, + -0.018450703, + 0.008930585, + 0.006566059, + -0.0072688833, + -0.023782374, + 0.0076709487, + -0.004603206, + 0.024127103, + -0.014457299, + 0.013561098, + -0.020980079, + 0.006605914, + 0.008832419, + -0.02931542, + -0.012524839, + -0.009266994, + -0.036397554, + 0.018551845, + 2.3183477E-4, + 0.00844603, + 0.01069086, + 0.03167318, + -0.01945005, + 0.018391589, + 8.7639806E-4, + 0.021058453, + -0.0032221505, + -0.0021312, + 0.02944166, + 0.00823781, + -0.0053492766, + -0.022399507, + -0.02013222, + -0.0059894295, + -0.0151710585, + -0.026202483, + 0.024992129, + -0.0044260398, + -0.0055608265, + 0.020961465, + 3.1635864E-4, + -0.019066988, + 0.014575445, + -0.017408527, + -0.01520762, + -0.0041023404, + 3.009989E-4, + -0.022112705, + 0.008675288, + 0.028653545, + 0.005449831, + -0.023661198, + 0.014257045, + 0.0126190325, + 0.0061484324, + 0.023662062, + 0.01711148, + 0.02038239, + 0.003639254, + -0.014575879, + -0.004478669, + -0.010369586, + 0.014857303, + 0.017459618, + -0.01167463, + 0.027301984, + 0.014474682, + 0.0014356406, + -0.0017171613, + 0.021228626, + 0.0085448455, + 0.012922921, + -0.020752, + -0.0046995315, + -0.0064264946, + 0.0038065526, + 0.011720901, + 0.01073654, + -0.024859374, + 0.03184257, + -0.019795308, + -0.0201669, + -0.02130894, + 0.026013743, + 0.0056173913, + 0.023310522, + -0.0038207287, + 0.009363157, + -0.0111473, + -0.015430849, + -0.00305096, + -0.0076596313, + 0.01162696, + -0.023417262, + -0.0053270473, + 0.011675487, + 0.015817823, + 0.0068956856, + -0.0076282136, + 0.005870794, + -0.00647637, + 0.015936377, + 0.015695138, + 0.010803312, + -0.0036259561, + 0.009865527, + -0.0053108, + 0.01673563, + -0.0024118517, + -0.0029222826, + -0.015531059, + -0.01332111, + 0.010701129, + 0.0020549495, + 0.009301454, + -0.009044043, + -4.998581E-4, + -0.027393123, + 0.0025065395, + -0.044704154, + -0.009110586, + 0.0057664276, + -0.013860354, + 0.009425424, + -0.004631082, + 0.03759662, + -0.016181882, + 0.011717694, + -0.008691501, + 0.001838299, + -2.0490646E-4, + 0.020685004, + 0.01678122, + -0.013148059, + -0.0011886101, + -0.012162923, + 0.0012245963, + 0.008639028, + -0.003608811, + 0.0022305236, + -0.0069347043, + -0.029190773, + 3.9907816E-4, + -0.023534702, + -0.009203137, + -0.004843267, + -0.021928784, + 0.021740364, + -0.023195414, + -0.016642768, + 0.0072674453, + -0.0061424947, + -8.796036E-4, + -0.0358347, + -0.046720125, + 0.035781, + -0.010686086, + 0.05796328, + 0.010289065, + -0.010025944, + -0.013481127, + -0.006092897, + 0.0039294953, + -0.0016141599, + -0.005773721, + 0.02178126, + -0.008781539, + -0.0101986, + 0.003035184, + -0.015093795, + 0.020908238, + -0.005578855, + 0.008145844, + 0.019642742, + -2.347636E-6, + -0.002501302, + -0.022252671, + -0.032885525, + -0.0015661484, + -0.015213035, + 0.002368824, + 0.026608124, + 0.012261231, + -0.0014443396, + 1.7732162E-4, + -0.030435458, + -0.004103708, + -0.0037892754, + -1.7959844E-4, + 0.004271046, + -0.01523855, + -0.032128762, + 0.030531649, + 0.038304213, + -0.0013587994, + 0.024044406, + 0.01308102, + -0.0038924713, + -0.0070089158, + 0.014320596, + -0.0023462523, + -0.029094143, + 0.0034246116, + -0.0042746197, + -0.004151029, + 0.016465075, + 7.7207555E-4, + 0.030731013, + -0.023725698, + -0.0012493851, + -0.007120568, + -0.025970612, + 0.01019555, + 0.018839594, + -0.0026536572, + 0.0103937695, + -0.0028313855, + 0.013911138, + 0.0029034344, + -0.029223861, + 0.014652075, + -0.020404622, + -0.0021131549, + -0.00820955, + -0.011030617, + 0.004800963, + 9.5562177E-4, + -0.021589367, + 0.0071136137, + -0.040423952, + -1.5554695E-4, + 0.0020791458, + -0.008188941, + -0.013258036, + -0.011075501, + -0.015701901, + -0.0020944006, + 0.002764982, + 0.009399285, + -0.011479234, + 0.016566375, + -0.012227765, + 0.014057291, + 0.007813936, + 0.001925703, + 0.01997971, + -0.01905693, + 0.0109822415, + -0.023047294, + -0.0063216304, + -0.010579577, + -0.0185314, + 0.024388868, + 0.017983941, + -0.0018909744, + -0.005133376, + -0.0037558184, + 0.016666412, + -0.02960023, + -0.021343056, + -0.011456146, + 0.009379852, + -0.009892736, + 6.3506566E-4, + 0.0042763543, + -0.019627897, + 0.013679999, + -0.0022929588, + -0.015871046, + 0.02628432, + -0.011652202, + -0.01024715, + 0.02439773, + -0.011925774, + 0.012745635, + 0.008417806, + -0.008493263, + -0.008803745, + -0.033348173, + 0.0055978773, + 0.028416239, + 0.014088191, + -0.01681509, + 0.011020196, + -0.008274585, + 0.0049520843, + 0.007029784, + -0.0050106286, + -0.0035563766, + -0.012150276, + 0.003623773, + 0.00408074, + -0.022808127, + 0.011111781, + 0.004866436, + 0.010905905, + 0.015434296, + 0.0016619213, + -0.0069274623, + -0.0017825516, + -3.3504906E-4, + -0.0028681685, + 0.027138826, + -0.004487791, + 0.015670285, + 0.01709054, + -0.010241416, + -0.0029136534, + -0.021077791, + -0.014519596, + -0.018824624, + -0.01145444, + 0.009536625, + 0.0018591022, + 0.007616158, + 0.020191224, + -0.023040138, + 0.016416153, + 0.01843495, + 3.6197266E-4, + -0.0015568996, + 0.026216276, + -0.004139115, + -0.009454501, + 0.006732271, + -0.01241752, + -0.010382729, + 0.015406235, + -0.015161565, + 0.0077188974, + 0.0050875884, + -0.0033957914, + -0.0263382, + 0.0057011293, + 0.027223233, + 0.010223587, + -0.0010319668, + 0.002938467, + -0.00912519, + 0.024991209, + 0.0073433537, + -0.012991083, + -0.008022707, + -1.803038E-5, + 0.029945057, + 0.01154256, + 0.0022684396, + -0.0014071919, + -0.022099026, + -0.01075905, + 0.027591176, + -0.012729767, + -0.0020968951, + 0.008836587, + 0.016441537, + -0.010926947, + 0.007552074, + -0.007798638, + -0.016682671, + -0.004781879, + -0.0059195454, + -0.023093302, + -0.008993881, + -0.034769006, + 1.2018316E-4, + -0.020120496, + -0.005117241, + 0.009035209, + -0.0105004655, + 0.024003236, + 0.0022612605, + -0.032673806, + -0.0012559202, + -0.012143611, + -0.002891374, + -0.0017919167, + 0.0055159014, + 0.0038205707, + -9.0630056E-4, + 0.019780127, + 0.010426025, + 0.010671414, + 0.019939786, + -0.032035936, + -0.012850573, + -0.019362174, + -0.016921664, + 4.2107273E-5, + -0.016334573, + -6.831726E-4, + 0.02451733, + 9.072546E-4, + -0.010740044, + -0.017703202, + -0.015348419, + 0.022965487, + -0.006962352, + 0.015200053, + 0.029179666, + 3.5346762E-4, + 9.182191E-4, + -0.010764673, + -0.016133443, + 0.012500881, + -0.028762946, + 0.00702115, + -0.019570772, + -0.011906996, + -0.009760152, + -0.0013969885, + -0.0010462891, + 0.014890996, + 0.016025279, + -0.016113985, + -0.00549086, + 0.009662988, + 0.006855135, + 0.00266397, + -0.014879503, + 0.007328497, + 0.002508194, + 0.0035244199, + 0.017752096, + 0.005960157, + 0.013913347, + -0.011153076, + -0.0032066186, + -0.0049016885, + -0.0022010764, + -0.0023405582, + 0.016260972, + -0.0017511531, + -0.013985195, + 0.022150671, + -0.008451494, + 0.054458946, + 0.016169555, + 0.0066840774, + 0.017649092, + 0.005102502, + 0.060018018, + -0.008188309, + -0.017284418, + 0.012204444, + -0.035948154, + -0.02218676, + 0.006771651, + -0.0083385045, + 0.03015246, + 0.010542957, + 0.0025535743, + 2.4762584E-4, + -0.008480998, + 0.0057143536, + -0.0015245548, + -0.001396828, + -0.016380688, + -0.012424693, + -0.0012092987, + 0.0067970166, + 0.0169723, + 0.012501195, + 0.02533718, + -0.009630409, + -0.01835432, + 0.0145793995, + 0.0074165445, + 0.017257627, + -0.016100107, + -0.0021772103, + 0.028874552, + 0.001805936, + 0.007211917, + 0.029486472, + -0.025991673, + 0.0019882028, + -0.0062050396, + 0.005779261, + 0.012727416, + 0.0021879864, + -0.012481191, + 0.03429229, + 0.014692973, + -0.018081915, + -0.008171189, + -5.6342484E-4, + 0.017069174, + 0.010647696, + -0.004123873, + -0.010024382, + 0.0035795958, + -0.008863283, + 0.036445606, + 0.010190892, + -0.015344839, + 0.012512656, + 0.024193292, + 0.0063188197, + -0.0063551324, + -0.027582899, + 0.0027017419, + 0.009871661, + 0.042357583, + -0.01456567, + -5.97157E-4, + -0.037622824, + 0.012996685, + 0.006333914, + 0.013607236, + 0.00793021, + 0.021607192, + 0.011328039, + -0.009697086, + 0.0022787517, + 0.01824284, + -0.015811134, + -0.02643839, + -0.006271327, + -0.018276516, + -0.019882567, + -0.025898887, + 0.016741239, + -0.010199472, + -0.009390834, + 0.00551637, + 0.01939781, + -0.039671514, + -0.004195943, + -0.026460709, + 0.0011896897, + -0.011945847, + 0.00887953, + -0.0031858624, + 0.007187757, + 0.006693039, + 0.026198808, + 0.021866582, + -0.007933497, + 0.02229909, + -0.01254389, + -0.021826481, + -0.013738436, + -0.005642094, + 0.0043910616, + 0.015789952, + -0.0113603035, + 0.019109137, + 0.022215895, + 0.025846263, + -0.0076724594, + -0.0058685765, + 0.0059932685, + -0.020774597, + 0.0020969529, + -0.011232176, + -0.0073260725, + -0.01904278, + -0.01622711, + 0.03536484, + -0.017286874, + -0.010829659, + -0.005989343, + -0.0025594174, + -0.0173662, + -0.0011865027, + 0.005975765, + 0.020115528, + 0.005648831, + -0.011076674, + -0.010466024, + -7.961524E-4, + 0.0016301456, + 0.010435098, + -0.013687257, + -0.022363223, + -0.0021538166, + 0.0072180894, + 0.008925322, + -0.023035029, + -0.007360974, + -0.005985973, + 0.034434322, + 0.0139781125, + -0.014203956, + 0.015313788, + -0.01809504, + -0.013250751, + 0.0013814155, + -0.01652605, + -0.0031987336, + 0.026266238, + -0.006249106, + 0.0067808586, + -0.010428984, + 0.0029209077, + 0.007980241, + 0.00998177, + 0.028558267, + -0.0055236267, + 0.0025545321, + 0.0016191367, + -0.011640381, + -0.021535436, + -0.01203022, + 0.011996147, + -0.026092313, + 0.025716411, + -0.016151022, + 0.016978363, + -0.024025638, + 0.0035175974, + 0.009736161, + 5.628811E-4, + 0.002080437, + 0.016880285, + -0.031978026, + -0.008937802, + -0.0020935773, + 0.007277234, + 0.005935588, + 0.013985008, + -0.017784745, + -0.014535212, + -0.025401246, + 0.009380157, + -0.012807212, + -0.0062111663, + 0.023641985, + -4.6501745E-4, + 0.016882164, + -0.0057721175, + 0.001852814, + 0.02128218, + 0.009508981, + 3.815385E-4, + -0.001233821, + 0.014395574, + -0.0029464993, + -0.008432615, + -0.002078403, + 0.0010087554, + 0.008703549, + -0.010149929, + 0.03522762, + 0.010677033, + 0.03519906, + -0.023542354, + -0.0070797764, + 0.003822152, + -0.0024231037, + -0.020265581, + -0.005573261, + -0.022694536, + 0.013582553, + 0.007584878, + 0.006417069, + -0.0020969016, + 0.003960308, + 0.00480097, + 0.017356772, + -0.008306082, + 0.010516247, + 6.028268E-4, + -0.015394975, + 0.013432045, + -0.007315698, + -0.018339097, + -0.0270969, + 0.011295913, + -0.007142309, + 0.02361809, + -0.0048614903, + 0.012679254, + 0.027814347, + 0.0035071706, + 0.0028646016, + 0.015973717, + 0.0061334753, + 0.005730584, + 0.012332315, + -0.00588529, + -7.9415785E-4, + -0.0065558488, + 0.013676499, + 0.0035154382, + -0.009696547, + 0.0034289, + 0.008728186, + -0.026719756, + -0.028965825, + 0.0075216843, + -0.010747468, + -0.024554161, + 0.0018287238, + -0.013156289, + -0.0022264128, + 0.002926209, + 0.032415688, + -0.016878784, + 0.0069579096, + -0.03451841, + -0.008038766, + -0.0013804241, + -0.008020933, + -0.012996846, + -0.028073275, + -6.3717295E-4, + 0.010031931, + -0.006891074, + 0.0022859834, + 0.018512007, + 0.0039853295, + 0.02560504, + -0.01229939, + 0.007562284, + -0.008591361, + 0.019805381, + 0.015249539, + -0.0030688592, + 0.010109666, + 0.0025041183, + -0.0037827499, + 0.009206845, + 0.024479302, + 0.011589638, + 0.0046815053, + 0.0123841055, + 0.014742484, + -0.0029792269, + 0.01767821, + -0.014770343, + 0.021282287, + 0.0032347573, + 0.0148449745, + 0.0015380734, + -0.0068029147, + 0.012425802, + 0.018468088, + 0.002661783, + 6.240149E-4, + 0.0052604354, + 0.0070234844, + 0.021308545, + 0.006635268, + -0.0043352125, + -0.014428767, + -0.038689084, + 0.016365813, + -0.024142655, + 0.004374312, + -0.003091822, + -0.024365656, + -0.0049233204, + 0.0076628244, + -0.02021499, + -0.012370278, + -0.0135601275, + -0.0058397874, + -0.004198963, + -0.041501474, + 0.02169942, + 0.013311432, + -0.013214358, + -0.0044468543, + -0.0020523565, + -0.025556969, + -0.017086754, + -0.0037445303, + 0.026355622, + 0.0031418002, + 0.01095075, + -0.02752529, + -0.02132372, + 0.00731404, + 0.009696119, + -0.0030029626, + -0.031230088, + -0.022634037, + -0.003724497, + 0.01545791, + 0.028461756, + -0.020417998, + -0.011297791, + 0.017431274, + -0.006457649, + -0.0016897187, + -0.0048702452, + 0.0039968938, + 0.039221093, + -0.0011049217, + -0.015453882, + 0.006447702, + -0.005518007, + -0.0024513067, + -0.004657573, + -0.012007748, + -0.009995167, + 0.0028325794, + -0.017716162, + 0.012926947, + 3.5263528E-4, + 0.008823975, + 0.030328266, + 0.0072318264, + -0.02200925, + -0.0014277418, + 0.014302236, + -8.0188335E-4, + 0.0030377414, + 0.005083434, + 0.009966185, + -0.005223097, + 0.020864006, + -0.010467111, + -0.02444331, + 0.0045709475, + 0.016151179, + 0.01915239, + -0.010885046, + -0.035062857, + -0.031388503, + -0.023549223, + -0.015609742, + 0.02501561, + 0.028282972, + 8.9172187E-4, + 0.0050999345, + -0.029039873, + 0.0037806635, + 0.0073800087, + 0.016625581, + -0.004666273, + 0.0048490344, + 0.012035615, + 0.00542888, + -0.013173248, + 0.0034259537, + 0.017451674, + 0.011737766, + 0.014365222, + -0.0035113012, + 0.0035086272, + 0.014109762, + 0.017764576, + -0.0010780779, + -0.016148083, + 0.009249827, + -0.047820136, + 0.004515234, + 0.0034854722, + -0.0019928527, + -0.0039819037, + 0.0062822094, + -0.0042172107, + 0.0039686766, + -0.019179037, + -0.013628576, + 0.011493517, + -0.0013365695, + 0.047356144, + 0.015959378, + -0.0015410949, + 0.019326953, + -0.030894758, + 0.005287821, + 0.003064453, + 0.0027918506, + -0.017125877, + 0.014080255, + 0.009899498, + 0.004968514, + -0.010879126, + 0.017590174, + -0.0071491967, + -0.008335706, + 0.0055094515, + 0.021061439, + -0.009582561, + 0.0049589253, + 0.010518721, + 1.8028555E-4, + 0.02043108, + -0.006047538, + 9.0003596E-4, + -0.009648701, + -0.009727401, + 0.009404614, + 0.0030064718, + 0.025582954, + 0.0070107207, + -0.022681862, + 0.019623328, + -0.016819727, + 2.2439667E-4, + -0.0041319514, + -0.035610016, + 0.013978366, + -0.014144188, + -0.0020387603, + 0.011313293, + -0.006545604, + -0.004124096, + -0.018918667, + 0.013409137, + -0.0045700013, + -0.0099635925, + -0.008062898, + 0.011202106, + -0.018373884, + 0.017707493, + -0.023232603, + -0.0035343373, + -0.017175188, + 0.008990239, + 0.0119688315, + 0.011944883, + 0.007817637, + 0.013769798, + -0.01592128, + 0.019295642, + -0.017538667, + 0.00643291, + -0.009983181, + -0.015206311, + -0.040860575, + 0.008435884, + 0.014920899, + -0.0018183345, + -1.363604E-4, + -0.03846543, + -0.022223078, + -0.020408686, + -0.021772448, + -0.010061385, + 0.014181046, + -0.022121806, + -0.025500039, + 0.0075745974, + -0.004669962, + -0.0031179064, + -0.0055559436, + -0.005444041, + -0.009743584, + -0.019457709, + -0.0061387667, + -0.013610766, + 5.8882276E-4, + 0.010321368, + -0.006986643, + 0.014169023, + -0.0035653107, + 0.0037808572, + 0.013454745, + -0.029705334, + -0.016648348, + -0.0011652373, + -0.008427296, + 0.01830793, + -0.0021558667, + -0.008714082, + -0.0031782547, + 0.01707159, + -0.0010464826, + 0.0060826745, + -0.019589163, + -0.0064256857, + 0.009902974, + -0.008798267, + -0.010391214, + 0.023176402, + -0.018250585, + 0.017447613, + -0.02466816, + 0.02218213, + 0.01358688, + -0.0012726543, + 0.011767004, + -0.032308146, + 1.2139586E-4, + 0.009415697, + -0.023402754, + 0.012769851, + -0.02786567, + 9.2699035E-4, + -0.0013871993, + 0.030453308, + -0.0123689165, + -0.019525439, + 0.011004253, + 0.011111752, + -0.021621056, + 0.003029521, + 0.0057414137, + 0.017168274, + 0.019107886, + -0.01719962, + 0.01742109, + -2.5819568E-4, + 0.0035460312, + -5.600985E-4, + -0.007243039, + -0.01534692, + -0.0029638875, + 0.01361519, + 0.0358349, + -0.019415986, + -0.027159952, + -0.020611348, + -0.007976766, + -8.264882E-4, + -0.017610088, + 0.0065860264, + -0.0045964387, + 0.015010755, + 0.0078263385, + 0.0109077105, + -0.030204905, + -0.025493382, + -0.025888426, + -0.01035468, + -0.011123937, + -0.010831138, + 0.0022451873, + 0.003411571, + -0.015150579, + -0.003739595, + -0.020887349, + 0.02468842, + -8.815075E-4, + -0.04171241, + 0.005283409, + 0.0014359148, + 0.016288333, + 0.026105588, + 0.048482694, + 0.0062950086, + -0.0034127517, + 0.007121347, + 0.011717814, + 0.007108214, + 0.039870877, + 0.049479954, + 0.02921262, + -0.022522127, + -0.0023548128, + 4.8499458E-4, + 0.0076698954, + 0.011957064, + -0.025129149, + -0.0051598265, + 0.02050024, + 0.0020244392, + -0.009224056, + -0.012924404, + 0.0014748647, + -0.008313781, + -0.021774592, + -0.0012066353, + -0.018721728, + 0.014583583, + -0.013810383, + -0.0037195294, + -0.012451302, + 0.013734955, + -0.011165081, + 0.011066845, + 0.0024915747, + -0.03280172, + -0.0032750191, + -0.010247251, + 0.03532691, + 0.0018705109, + 0.013016297, + 0.008262323, + -0.012336495, + -0.0300793, + -0.0013651849, + 0.012623252, + -0.003526087, + 0.008040394, + -0.026713302, + -0.018690445, + -0.030087465, + 0.0014999107, + 0.0071785063, + -4.8078183E-4, + -0.005582932, + -0.01310869, + -0.0053112237, + 0.019451441, + 0.018393427, + 0.02739124, + -0.010068069, + -0.007887072, + -0.0013480745, + 0.0066793957, + 0.0125338975, + 0.006775963, + 0.005820679, + 0.0052422285, + 0.0050556427, + -0.017978596, + -0.014000695, + -0.027480166, + 0.012814216, + 0.0018179847, + 0.036649212, + 0.008463483, + -0.0048217475, + -0.0022931644, + 0.0024054106, + 0.00589755, + 0.011975133, + -0.0224905, + -0.004218089, + 0.008176135, + 0.023078904, + 0.024257477, + 0.014015939, + -0.013893943, + 0.025922606, + 0.013830455, + -0.0038362355, + -0.0024730517, + 0.018594138, + -0.00583414, + -0.0030160535, + 0.010290494, + -0.0020984756, + 0.0094405515, + 0.006534876, + -0.021102265, + -0.02943327, + 0.008996085, + 0.012143788, + -0.005181365, + -0.012781663, + 0.00424155, + 0.020913243, + -0.006553234, + -0.012575001, + 0.013564267, + 0.008595633, + -0.01982815, + -0.008734519, + -0.009402702, + -0.011009828, + 0.0015754295, + 0.021928484, + 0.01048074, + -0.022056071, + -0.022391355, + -0.004406173, + 0.009466852, + -6.2424026E-4, + -0.03343235, + -0.013736042, + 0.007072342, + 0.025638044, + -0.03927442, + -0.015288446, + -0.00674437, + -0.015064901, + -0.03135439, + -0.008120246, + -0.015199588, + 0.020921515, + -0.0049561174, + 0.008052594, + -0.0011668726, + 0.0016252475, + -0.0141301695, + 0.0038793157, + 0.0027986148, + 0.019679105, + 0.010657545, + -0.0067598065, + 0.016256258, + 0.013969445, + -0.0044054384, + 0.0072005833, + 0.013701932, + -0.0154780205, + 2.0783381E-4, + -0.022742892, + -0.008438193, + 0.037431754, + 0.00535284, + -9.881551E-4, + -0.004043398, + -0.0075005796, + -0.021162381, + 0.007148834, + -0.008418682, + -0.018380364, + -1.83097E-4, + 0.009264401, + -0.0066359206, + 0.0064276857, + -0.0148877045, + 0.008007711, + 0.0057027787, + -0.01912648, + 0.009673735, + 0.016865622, + -0.007090897, + 0.017277788, + 0.028027877, + -0.0012733268, + 0.035632662, + 0.008246753, + 0.013604549, + 0.0068741543, + 0.02128081, + 0.012538512, + -0.012211163, + -0.013381605, + 0.003508146, + -0.011009302, + 0.0037160756, + 0.017482432, + -0.024566676, + -0.020696234, + -0.013464849, + -0.0014622547, + -0.010317967, + 0.006690369, + 0.010739165, + -0.005517624, + 0.0065940963, + -0.0010528882, + 3.7720156E-4, + 0.0037855264, + 0.008931659, + 0.017803647, + 0.021573177, + 0.009276783, + 0.006529521, + 0.011218494, + 0.029938154, + -0.0010198277, + 0.014530322, + 0.005622898, + -0.0057598012, + 0.006989856, + 0.022215378, + 0.014186551, + 0.017307777, + 0.030646492, + -0.019968359, + 0.009196697, + -0.008240315, + 1.1674952E-4, + 0.0068495423, + -0.011667996, + 0.020702718, + -0.0025403816, + -0.00425026, + -0.015084611, + -0.015220793, + -0.010536954, + -0.0022357001, + 0.012561479, + -4.3336648E-4, + 0.011221667, + 0.01982318, + 0.029978449, + 0.012046339, + 0.011103529, + 0.0046092677, + -0.012115385, + -0.020765964, + 0.031173207, + -0.012569434, + 0.054477468, + -0.02449429, + 0.020652983, + 0.0037188309, + -0.008825121, + 0.02226398, + 0.019854702, + 0.0057655443, + -0.018711504, + 0.015822982, + 0.032813665, + 0.009428706, + 0.011172782, + 0.018584657, + 5.285998E-4, + 0.017064368, + -0.0058328956, + -0.002291685, + 0.007249522, + -0.013196292, + -0.023092449, + 0.006575219, + -0.022121854, + -0.012255814, + -0.0067589767, + 0.014070173, + -0.022783672, + -0.03433408, + 0.022218863, + 0.024638573, + 0.003536904, + -0.020906378, + 4.8472666E-5, + -0.0032066358, + -0.0012615824, + 0.016647747, + -0.020153776, + -0.017544394, + -0.0133170225, + 0.015710805, + 0.003828346, + -0.005246293, + -0.0048236414, + 0.023298558, + 0.007205192, + -0.0046814852, + -0.007786092, + 0.0050312006, + -8.764336E-4, + 0.012745365, + 0.0074953465, + 0.0011206114, + -0.021479974, + -0.002172288, + -0.006904923, + -0.0067857616, + 0.015799247, + -0.024930269, + -0.016282286, + 0.003407476, + -0.0059127887, + 0.0010266292, + 0.009571946, + -0.007834044, + 0.0035874723, + 5.014498E-4, + 0.0064936667, + -0.008201937, + -8.8912883E-4, + -5.685858E-4, + 0.012020471, + -0.012716768, + -0.027473653, + 0.020065835, + -0.010137085, + 0.0010691527, + -0.004498438, + 0.0042754607, + -0.0383325, + 0.044565525, + 1.6897268E-4, + -0.027213914, + -0.017125513, + 0.006227063, + 0.010803042, + 0.0042219637, + 0.013272494, + -3.257356E-4, + 0.0011179066, + -0.0069559566, + -0.026367463, + -0.013860424, + 0.017789807, + 0.0093287295, + -0.00225452, + -0.012802289, + 0.010695303, + 0.0065559377, + -0.016019963, + -0.0028294292, + -0.0033950915, + -0.008164646, + -0.021275515, + 0.017512852, + -0.0026250936, + 0.0019648783, + -0.023617396, + -0.037368923, + 0.011226116, + -0.0069377, + -0.035404105, + -0.0027103391, + -0.0054547135, + -0.018273281, + 0.004069259, + 0.01000249, + 0.04189904, + -1.7899141E-5, + 0.014454289, + 0.012318833, + 0.0014358996, + -0.026456492, + 0.035295602, + 0.02044101, + 0.021647027, + -0.010857235, + -0.008669007, + -0.011821792, + -3.8595332E-4, + 0.0030762833, + 0.017785054, + 0.002416679, + -0.017895939, + 0.006489574, + -0.03209084, + 0.0027416623, + -0.026861973, + -0.0104930345, + -0.010345595, + -0.013210942, + -0.018945158, + 0.004805828, + 0.0048539615, + 0.0041246703, + -0.010322775, + -0.0256403, + -0.0139123, + 0.0059448653, + -0.0041661737, + -0.0011537949, + -0.01578366, + -1.4364482E-4, + 0.016113965, + -0.006569434, + 0.0140062515, + -0.012527555, + -0.0049445564, + 0.013342191, + 0.0058432827, + -0.01542307, + -0.0068988316, + -0.0223226, + -0.009155639, + 0.0028940912, + -2.3359951E-4, + 0.028535418, + 0.011003955, + -0.012213657, + 0.023991227, + -0.008911512, + 0.00581608, + 0.022005826, + -0.012922587, + -0.020649683, + 0.032998364, + -0.008166205, + 0.0018913219, + 0.0010078591, + 0.014167553, + 0.0033874256, + 0.018685548, + -0.026906893, + -0.009329423, + -0.022944648, + -0.002951067, + 0.0072633605, + 0.0035365364, + -0.013208966, + -0.0015134321, + -0.017592538, + -0.0018380635, + -0.014563922, + -0.007993204, + -0.009551666, + 0.0015013389, + 0.0027217458, + -5.035705E-4, + -0.015362425, + -0.017433483, + 0.012181427, + 0.007009637, + -0.022583893, + -0.017020607, + -0.012885462, + -0.009494601, + -0.01752872, + -0.023384318, + -0.0193899, + -0.004858399, + 0.004490527, + 0.009266738, + -0.015628805, + 0.027672231, + 0.0064693675, + 0.0067793033, + -0.012714179, + -0.0037264759, + -0.006954227, + -0.04506262, + -0.019232817, + 0.0234254, + 0.0090773115, + 0.0025717209, + 0.017753804, + 0.014583401, + 0.009076117, + -0.009736611, + 0.014078145, + 0.01158931, + -0.009000096, + -0.015600838, + 0.015223361, + -0.016429557, + 5.2068214E-4, + -0.02143457, + 0.008328394, + 0.018354667, + -0.034832653, + -0.008635952, + 0.017080383, + -0.01696291, + -0.02551765, + -0.008916096, + 0.018800339, + -0.008086607, + 0.022705708, + -0.0115396585, + -0.00804812, + -0.0073841917, + -0.034618367, + -0.012850275, + -0.007222573, + 0.00990583, + 0.018894196, + 0.005043465, + -0.034767184, + 0.0076895333, + -0.012238722, + 0.006597075, + -0.023167087, + 0.018319402, + -0.015881889, + 0.012286893, + -0.025057182, + -0.0032303547, + 0.016082652, + 0.004428858, + -0.023834132, + 0.012638445, + 0.003576874, + -0.0038840855, + 0.014944666, + -0.04079515, + 0.0103287045, + -0.024489688, + -0.026381806, + -0.015332434, + 6.004503E-4, + 0.0017110854, + 0.026348572, + -0.023596874, + -0.012453078, + -0.010758787, + -7.6875335E-4, + -0.010022752, + -0.010689588, + 0.023886696, + -8.751816E-4, + -0.025020028, + 0.001792876, + 0.0046801483, + -0.036036287, + 0.0010454755, + -0.001997101, + -0.010721569, + -0.012892155, + -0.006929465, + 0.0011231569, + -0.011255977, + -0.0029277715, + 0.00801711, + -0.019172838, + -0.017874364, + -0.008161659, + -0.012553867, + 0.008513056, + -0.0107161775, + 0.0046925037, + 0.01359408, + -0.005159308, + 0.019138068, + 0.0035125033, + -0.012697436, + 0.030127492, + 2.969996E-4, + 0.0047842753, + -0.020334013, + 0.017208487, + -0.0094592655, + 0.0055194064, + -0.0073743127, + -0.020185295, + 0.016737472, + -0.0026568938, + 0.012294979, + 0.031744383, + -0.020409858, + 0.01753005, + -0.017943205, + -0.0065909517, + 0.0018507261, + 0.024373082, + -0.009894676, + -0.016500628, + -0.0039000327, + 0.002738697, + 0.010953989, + -0.009293538, + 0.01986219, + -3.7802788E-4, + -0.0032390743, + 0.015601021, + 0.025907109, + 0.0016443684, + -0.010010369, + 0.0020909018, + 0.018262858, + 0.022980286, + -0.009348465, + 0.023154631, + -0.026132768, + 0.018216873, + -0.014886817, + -0.015670108, + -0.019194229, + -0.0035625866, + 0.01687616, + 0.014114771, + 0.0063590147, + -0.001575185, + 0.014306739, + -0.0018369764, + 0.024661744, + -6.99488E-4, + -7.461431E-5, + -0.0016709748, + -0.029569311, + -0.009562054, + 0.00443053, + -0.0011013647, + -0.0030096346, + 0.007937911, + 0.018124828, + 0.0021453758, + -0.014515773, + 0.01510001, + 0.015653498, + -0.0057445713, + 1.8471928E-4, + 0.017561926, + 0.0067412704, + 0.0020287805, + -0.00651652, + -0.021191271, + 0.02042251, + 0.02461247, + -0.021906162, + 0.006577903, + -0.014489149, + -0.008440864, + 0.007924132, + 0.002060706, + 0.0031303095, + 0.003796666, + -0.004893399, + -0.009208295, + 0.0039047494, + -0.001471453, + 0.01009556, + -0.005136873, + 0.019365555, + -0.016292747, + -0.017771846, + -0.0040053176, + 0.025077647, + -0.029696453, + 0.0011011838, + 0.017796455, + -0.0010610413, + -0.014562529, + 0.03345276, + 0.005298594, + -0.0064525423, + -0.028801301, + -4.7107748E-4, + -0.044615116, + -0.002726528, + 0.002396672, + 0.0018915591, + 0.0055543715, + -0.0029119116, + -0.01496367, + 0.016037386, + -0.009555725, + -0.03292139, + 0.011816606, + 0.014434349, + 0.006687553, + 0.006773711, + 0.004559024, + -0.008809654, + 0.009397779, + 0.003331969, + -0.0048893746, + -0.017059967, + 0.010766227, + 0.008348856, + 0.00853481, + 7.786604E-4, + 0.0064129867, + 0.005959057, + 0.008755935, + -0.001939066, + 0.016677534, + -0.017096933, + 0.020774718, + -0.011977212, + -0.008189854, + -0.0023213401, + -0.007960158, + 0.018168714, + -0.008976235, + 0.029181965, + 0.016884962, + -0.014552088, + 5.1626954E-5, + 0.0019257265, + 0.004653791, + 0.007711962, + -0.01104506, + 0.0058372575, + 0.0069724084, + -0.011857746, + -0.022624452, + 0.011570243, + -0.0038626576, + 0.0078121917, + -0.019964794, + -0.0013657084, + -0.0064234044, + -0.011589546, + -0.0060691475, + -0.01036942, + -0.010561459, + -0.03517146, + -0.006148923, + -0.0056071957, + 0.029941656, + 0.02000563, + 5.519747E-4, + -0.0073680477, + 0.022996912, + -0.0057163755, + 0.015760982, + -0.010655023, + 0.0020260809, + 0.014482202, + -0.008530907, + 0.013097761, + 0.02184122, + -0.010137996, + -0.0056854915, + 0.02343017, + 0.028638894, + -0.0015197286, + -0.012223179, + 0.022796521, + 0.00501094, + -0.012309157, + 0.002534639, + 0.037454873, + 0.0027933822, + -0.021620166, + 0.010221684, + 0.009476246, + 0.020806212, + -0.014667796, + -0.008856575, + -0.013849147, + -0.013175276, + 0.020173103, + 0.014781723, + 2.885997E-4, + -0.01333595, + -0.0023153403, + -0.004075112, + 0.006491135, + 0.017484583, + -0.010921518, + -0.02000018, + -0.021351589, + 0.01791484, + -0.028429903, + -0.0026946247, + -0.0052033877, + -0.0014005791, + -0.012276886, + -0.025086785, + -0.016435865, + 0.002043497, + -0.0025847526, + 0.01517819, + -0.03241977, + 0.029151324, + 0.011457065, + 0.006864935, + 0.018006235, + -9.667162E-4, + 0.008342972, + -0.014295043, + -0.019640101, + 0.0071813655, + 0.006169376, + -0.019176198, + 0.0028994065, + 0.013268154, + -6.324905E-4, + -0.013004373, + -0.0083993105, + -0.02263941, + -0.024903098, + -4.87417E-4, + 0.01560442, + -0.03466669, + -0.019190896, + 0.01412776, + -0.0057458943, + -0.029949358, + 0.0050036, + 6.8064994E-4, + 0.0038286091, + -0.0048733843, + 0.0010598338, + 0.0018059135, + 0.011306224, + 0.019419126, + -0.023500282, + -0.012528004, + -0.0055836667, + -0.003513698, + -0.05298164, + 0.0025065632, + -0.026902659, + 0.009613335, + 0.003010753, + 9.534549E-4, + -0.016369494, + 0.023110405, + 0.0024875046, + 0.017192142, + -0.0118145095, + 0.011873671, + -0.021875322, + 0.019518724, + 0.017119858, + -0.01290231, + -0.006797323, + 0.009044308, + -0.0028473826, + 0.0065393, + -0.014977282, + -0.025198463, + -0.019801289, + -0.006256468, + 0.008898523, + 0.004944835, + 0.0090719685, + -0.011617941, + 0.006646597, + 0.022278618, + 0.014744027, + -0.0066036917, + -0.00656928, + -0.009273307, + 0.017960897, + 0.042549964, + -0.0024661557, + -0.0027133343, + 0.019892408, + -0.0101601565, + -0.010299888, + 0.0020923822, + 0.011741199, + -0.011418917, + 0.012245904, + 0.010469649, + 0.02034729, + -0.014880004, + -6.566267E-4, + 0.016857611, + -0.016815681, + -0.019728422, + -0.022319939, + -0.010040813, + -0.020672876, + -0.008048285, + 0.023625288, + -0.0029476457, + -0.012023794, + 0.011206466, + 8.810305E-4, + -5.007771E-4, + -0.037357442, + -0.012987611, + -0.0030052396, + 0.022277787, + 0.005839186, + 0.014604304, + -0.024907766, + 0.03317277, + 0.00527108, + -0.010737235, + 0.017325329, + -0.03210659, + 0.018615661, + 0.0028454114, + -0.0021832716, + -0.0049324543, + 0.019430466, + -3.8876082E-4, + -0.010956099, + 0.020660399, + 0.0065950598, + -0.014776917, + 0.010953643, + 0.005038814, + -0.020286089, + 0.024500199, + 0.0054656486, + 0.002571194, + -0.018305536, + -0.00905247, + -0.006132866, + 0.0045937686, + -1.9680163E-4, + -0.02079521, + -0.017843517, + 0.0070566754, + 0.011887888, + 0.0059471596, + -0.0016389077, + 0.015267312, + 0.0014124764, + 0.0035024728, + 0.036097355, + 0.014451085, + 0.010924922, + -0.0077105733, + 0.037332576, + -0.0036824949, + 0.0071293977, + 8.2967825E-5, + -0.015715582, + -0.007853116, + -0.010316319, + -0.0064119496, + -0.007828711, + 0.021370733, + -0.023423966, + 0.0032452832, + 0.0038754102, + -0.0062278863, + 0.005036874, + 0.014812615, + -0.021674728, + -0.010517627, + 0.004425976, + -0.0131702665, + 9.523147E-4, + -0.0073579005, + -0.014420871, + -0.022880735, + -0.031577855, + 0.0046731075, + -0.012844767, + -0.006479236, + 0.009982291, + -6.423786E-4, + 0.017223867, + 0.013566831, + 0.009441594, + 0.008590739, + -0.0039597075, + 0.01870267, + 0.0046652313, + 0.00364608, + -0.027935257, + -0.01272436, + 0.0025984799, + -0.0036187735, + -0.0073432345, + 0.030956304, + 0.030381972, + -0.0031839558, + -0.009637706, + -0.018320283, + -0.0081075, + -0.020601993, + -0.018955395, + -0.036959235, + -0.017035784, + 0.012819835, + -0.015965188, + 0.0017076483, + -2.5484397E-4, + -0.005625278, + -0.006829309, + -0.01946613, + 0.008019608, + -0.02043013, + -0.024360308, + -0.004285429, + 0.02598274, + -0.008824484, + 0.015980294, + 0.0045058113, + -0.013647056, + 0.015577676, + -0.0013761014, + -0.004951679, + 0.014326089, + -0.00422217, + -0.019579593, + -0.012297264, + 0.008665268, + -0.007179119, + -4.255692E-4, + -0.004095194, + 0.022253314, + -0.020623498, + -0.0026177678, + -0.012453205, + 0.030771734, + 0.007623673, + 0.012402233, + 0.0062439996, + -0.024566842, + -0.014510786, + 3.5888414E-5, + 0.0018407864, + -0.0076539004, + -0.011100388, + 0.0063947905, + -0.019692967, + 0.017776115, + -0.017864091, + 0.0039174976, + -0.025653541, + 0.016792592, + 6.868005E-4, + 0.003382978, + -0.008103616, + 0.0022389805, + 0.0062390524, + -0.024505503, + -0.0035167579, + -0.017859267, + -0.0027271993, + 0.013159757, + -0.021584349, + 0.010677775, + -0.004244842, + 0.002342547, + 0.01684071, + -0.012651203, + 0.025127616, + -4.0963636E-4, + 0.005394215, + 0.008447549, + 0.008811228, + -0.0074817725, + -0.008637987, + 0.015742667, + -0.0090003, + 6.0834846E-4, + 0.013405857, + 0.037788633, + -0.0061988845, + 0.012094091, + 4.2956905E-4, + -0.02978074, + -8.2622113E-4, + -0.009412207, + 0.0015042021, + -0.003470336, + -0.019969696, + 0.018073022, + -0.0028470282, + 0.016254053, + -0.0062538884, + 0.012072764, + 8.6686143E-4, + 0.024397274, + -0.009875957, + 0.021238957, + 0.0054227333, + -0.0063197245, + -0.016503084, + 7.892824E-4, + 0.008327321, + 0.007778067, + 0.015884846, + -0.010883699, + -0.0019000266, + 0.0068246922, + 0.0062403437, + 0.012223677, + -0.007713173, + -0.0068319817, + 0.012469698, + -0.005456923, + 0.006565703, + -0.024660327, + -0.002207613, + -0.013039157, + -0.00834731, + 0.012464957, + 0.025685256, + 0.014873667, + 0.0094909575, + -0.016271032, + 0.032640416, + 0.0061364737, + -0.014281278, + -0.0025440666, + -0.003801666, + 0.015027763, + 0.027230715, + -0.0040751193, + 0.005558303, + 0.010355933, + -0.01775932, + 0.007833871, + -0.019831173, + 0.021594478, + -0.009419552, + 0.018328667, + -0.009017695, + -8.3049637E-4, + 0.01084969, + -0.011793291, + -0.017119817, + 0.0022829364, + 0.011135641, + -0.022009125, + 0.0014144313, + -0.020875754, + 0.015418715, + -0.011656754, + -0.022261648, + 0.023166403, + 0.012249188, + -0.015578333, + 0.0017920431, + -0.018453462, + 0.006849978, + 0.02285034, + 0.021788448, + -0.01987323, + -0.002292531, + -0.008227578, + -0.023327786, + 0.0015554898, + 0.003230766, + -0.010916647, + 0.026564304, + -0.0129355155, + 0.02394734, + 0.0011646511, + 0.0011133071, + 0.012369449, + -0.010151683, + 0.0073035704, + 7.115279E-5, + 0.0034771797, + 0.012022417, + -0.012391305, + -0.008459283, + 0.017889917, + 0.016714701, + 0.0130079165, + 0.023139035, + 0.0063377367, + -0.006580906, + -0.018400205, + 0.021413878, + 0.0051811216, + -8.7678165E-4, + 0.0031785243, + -0.0040444834, + 0.024879428, + 0.0059382874, + -0.015444693, + 0.01924557, + -0.020097367, + -0.030374285, + 0.004198228, + 1.4351966E-4, + -0.0026809727, + 0.019911066, + -0.014534437, + 0.0043737907, + 0.008055468, + -0.006816874, + 0.015638525, + -0.0072577465, + -0.009371602, + -0.014283189, + 0.010182775, + -0.0044200993, + -0.007119274, + -9.0448424E-4, + 0.007850819, + -0.01301172, + -0.021034513, + 0.004783178, + 0.010622126, + -0.0070056617, + -0.0034036252, + -6.783324E-4, + 0.0053012497, + 0.010490505, + -0.004372091, + 0.011499944, + -0.0039277454, + 0.011191065, + 0.0113295745, + 0.013491066, + 0.012230149, + -0.010812624, + 0.012907141, + 0.004843917, + 0.0013636888, + 0.021425605, + 0.022226935, + 0.0043192124, + -0.026203478, + 0.013505572, + -0.0015431417, + 0.0059706974, + -0.025496446, + -0.008262502, + -0.0048558195, + 0.005853232, + -0.024178246, + -0.0039886204, + 0.021518039, + -0.018157916, + 0.008627008, + -0.020966863, + -0.0057318923, + 0.026874024, + -0.008854665, + -0.010669446, + -0.0033223643, + 0.023320353, + 0.009569658, + 0.00288467, + -0.00351163, + -0.015944518, + -0.0056271185, + -0.009535146, + 0.003118087, + 0.019562831, + 0.029622171, + 0.0035197542, + 0.016434582, + 0.013497202, + 3.6957875E-4, + -0.025231926, + -0.024862044, + -0.012451528, + 0.0017846375, + 0.0019164933, + -9.1446406E-4, + 0.021217402, + 0.014018585, + 0.015691295, + 8.336481E-4, + 0.010767692, + -0.010609636, + -0.01522425, + -0.01335025, + 0.032689802, + -1.5006082E-4, + -0.007183841, + 0.0058113574, + 0.012091639, + 0.012706483, + -7.4097695E-4, + 8.655032E-5, + 0.02890865, + -0.012739417, + -0.013441227, + 0.005397901, + -0.035326187, + -0.008002092, + -0.008606024, + 0.0108110765, + 0.0063670906, + -0.01482192, + -0.0017620291, + 0.022899196, + -0.00576739, + 0.008313709, + -0.021897173, + 0.034831937, + 0.025102882, + 7.258154E-4, + -8.4794493E-4, + 6.00403E-4, + -0.0032438964, + -0.0015634766, + -0.0071833506, + 0.003845125, + 0.010030402, + -0.01399324, + 0.021384744, + 0.009981351, + -0.007401883, + -0.0011942219, + 0.005053503, + 0.031851348, + 0.0028352507, + 0.008294725, + 0.0051531265, + -0.033176634, + -0.008557251, + 0.004689958, + -0.015861742, + -0.0070587783, + -0.0032085981, + -0.014831463, + 0.031471767, + 0.02459845, + -0.015653217, + -0.020408899, + -0.011328934, + -0.009918684, + -0.0075092395, + 0.011662388, + -0.0026346336, + -0.011788083, + 0.009431364, + -0.017731272, + -0.020541703, + -0.021733247, + -0.019651435, + -0.0056140996, + 0.016728234, + -0.046088237, + 0.03495122, + -0.039831556, + 0.0018083424, + -3.54224E-4, + 0.028716609, + 0.0113789635, + -6.267255E-4, + -7.955268E-4, + 0.013910036, + -0.030941153, + -0.018391993, + 0.014932398, + 0.009403443, + 7.7942706E-4, + -0.009271203, + 0.004385453, + 0.026691688, + 0.012129142, + -0.030336656, + -0.006019241, + -0.008659295, + -0.00348161, + -0.0016664622, + -0.0157652, + 0.0055498267, + 0.0073413528, + 0.015559672, + -0.007135694, + -0.015868858, + 0.020256322, + -0.0067808623, + -0.019056227, + 0.002984432, + 0.02442608, + -0.014125072, + -1.8293851E-4, + 0.0024410756, + -9.655799E-4, + 8.181604E-4, + 0.008720391, + -0.013597759, + 0.0183654, + -0.02777809, + 0.02991028, + -0.037476383, + -0.0133099975, + -0.0070195217, + -0.023962356, + -0.019722754, + -0.010914417, + 0.0019268773, + -0.0069744773, + 0.019986859, + -1.189514E-4, + 0.028975032, + -0.006526743, + -3.1009957E-5, + 6.952547E-4, + 0.013926161, + 0.0028475919, + -0.014726523, + 0.011261496, + -0.015568667, + -0.0158769, + 0.014788325, + -1.23484115E-5, + -0.011111538, + -0.0019422439, + 0.010433989, + -0.006565803, + -0.039761655, + -0.0058402778, + -0.00690646, + 0.027688013, + 0.0013684394, + -0.0073392135, + -0.0015648167, + 0.00863769, + -0.0026527657, + 0.010817647, + -0.012751115, + -0.0048042284, + -0.0015406102, + 0.0010093022, + 0.008595524, + 0.0010874829, + -0.009640763, + 0.013621574, + -0.024483182, + 0.01641628, + 0.0017175783, + -0.011439989, + 0.005653864, + 0.0058535794, + 0.008464283, + 0.0016843871, + 0.004978509, + -0.0028090484, + 0.025475428, + -4.9387093E-4, + 0.0066570793, + -0.00378412, + 0.0066283573, + 0.017929409, + 0.020799147, + 0.021591797, + -0.004755127, + 0.0038269246, + 0.022834111, + 0.022299943, + 0.0011501199, + -0.019716809, + -0.01085429, + -0.012976523, + 0.00783868, + 0.0013490043, + 0.0072860257, + -0.014832687, + 0.008547503, + -0.021558411, + -0.0029702932, + -0.017441519, + -0.013984796, + -0.015420236, + 0.0060185175, + 0.025307357, + -0.012955385, + -0.0013253131, + -0.026151208, + -0.0029193354, + 0.004262792, + 0.024711452, + 0.030116007, + 0.020695625, + -0.0010769757, + -0.010737237, + -0.02347459, + -0.002353717, + 0.004340826, + -0.026448404, + -0.015287923, + 0.0011916445, + -0.0135425115, + 0.015427859, + -0.0043003317, + -0.020385394, + 0.027477076, + -0.009177796, + 0.009162901, + 0.009058006, + 0.024151426, + 0.0027642683, + -0.018086914, + 0.005858407, + 0.019560138, + 0.005761133, + -0.0039692046, + -0.027159203, + 0.036518354, + -0.0011075694, + -0.0052512093, + -0.00142406, + 0.004139181, + -0.014771605, + 0.0013181701, + 0.01043749, + 0.019943213, + -8.562638E-4, + 0.01036375, + 0.0068979184, + -0.016290922, + 0.01629693, + -0.0068901023, + -0.013818907, + -0.00420225, + -0.0052054883, + -0.0076361718, + 0.019595368, + 0.020007588, + -0.01084712, + 0.0078793485, + -0.003532188, + -0.01572247, + -0.008629776, + 0.013012443, + 0.0012342392, + -0.041895263, + -0.0091698235, + 0.03072858, + -0.015093288, + -0.02171556, + 0.018455088, + 0.008425617, + 0.02567955, + -0.0055421786, + -0.016954225, + 0.01545478, + 0.035646014, + 0.011822321, + -0.00763794, + 0.010364675, + 0.019998321, + -0.0153253265, + 0.02021873, + -0.012634444, + -0.01529044, + -0.021227574, + 0.014582596, + -0.0062908866, + -0.028979477, + -0.04016271, + 0.0070657507, + 0.0055340556, + -0.006337045, + 0.004839154, + 0.0076943003, + 0.006601806, + 0.0081242565, + -0.014255325, + 0.011825034, + -0.002727099, + 0.0016710731, + -0.006131609, + 0.017285878, + -0.02277522, + -0.022796744, + 0.018064044, + 0.0019038626, + 0.030258555, + -0.0060639507, + -0.012584178, + 0.013096933, + -0.025551181, + 0.025371308, + 0.014919562, + 0.004804428, + -0.0025690044, + 0.015043129, + -0.008575833, + -0.0139134275, + 0.010339496, + 0.020355066, + -0.0029340337, + 0.01144959, + -6.3221836E-5, + 0.011486457, + -0.011918625, + -0.005353988, + 0.009760395, + -0.041095685, + 0.004393849, + 0.0053950963, + -0.003525375, + -0.012126631, + 0.013364105, + -0.026981154, + 2.4556008E-5, + 0.005835469, + 0.025941253, + 3.0728886E-5, + 0.019721435, + 0.0044938666, + -0.009267921, + 0.046169348, + -0.027750116, + 0.02693777, + -0.0077367416, + 3.3984712E-4, + -0.012247193, + -0.00804581, + -0.013608752, + -0.013510815, + -0.026549945, + -0.021420091, + 0.05150275, + -0.0069334, + -0.025015349, + 0.0043046568, + -0.009416531, + 0.004042891, + -0.034709312, + -0.006112847, + 0.0125556355, + -0.03377385, + -0.007626429, + 0.007023537, + -0.012134868, + -0.014767023, + 0.010219869, + 0.01283853, + 0.004840593, + 0.018232942, + -0.007360916, + 0.014820443, + 0.020039719, + -0.019731402, + -0.005554579, + -0.008299276, + -0.012020098, + 0.011405547, + 0.001225654, + -0.01624091, + -0.015034131, + -0.0013887081, + 0.008921913, + -0.019504307, + 0.021851517, + 8.499472E-4, + -4.515412E-4, + 0.022978444, + -0.013826086, + -0.010142472, + 0.02487716, + 0.010513763, + -0.036833275, + -0.01148669, + -0.00608062, + -0.02269678, + 0.0037055132, + -0.0136039285, + -0.004377697, + -0.01018731, + 0.006742381, + -0.019034093, + -0.0061669284, + 0.018095842, + 0.012348189, + -9.279308E-4, + -0.00571737, + 0.008899132, + -0.010035965, + -0.0233751, + 1.08543696E-4, + 0.01715769, + -0.011301921, + -0.025776288, + 0.022511141, + -0.021536719, + -0.014668692, + 4.7043362E-4, + 0.0061448393, + -0.010575813, + -0.02617575, + 0.012637337, + -0.012084046, + 7.628721E-4, + -0.011038939, + 0.011222891, + 0.017011287, + 0.014958731, + -0.027462753, + -0.016752461, + 0.016732732, + 0.001209268, + 0.00391878, + 0.01530704, + 0.012767999, + -0.00573571, + 0.019558664, + 0.005435424, + 2.1932135E-5, + -0.016993929, + 0.0010242928, + -0.014949779, + 0.012388194, + -0.025439609, + -0.003656668, + -0.010845355, + -0.026287489, + -0.0049358536, + 0.018084686, + 0.017493209, + -0.02262402, + -0.01036587, + -0.004636971, + 0.028543737, + 0.008569681, + -0.018363131, + -0.027936438, + 0.035751212, + 0.010367478, + -8.2998094E-4, + -3.308459E-4, + 0.038529888, + 0.0038506833, + 0.0010498203, + 0.002210875, + -0.008505237, + -0.0034729796, + -0.021465288, + 0.0059929662, + -0.015358442, + -0.028576529, + 0.0017044402, + 0.018725798, + 0.0019290791, + 0.024537563, + 0.016729586, + 0.012825355, + 0.0104509285, + 0.017929219, + -0.014827072, + -0.003788258, + 0.020545425, + 0.020077717, + 0.001437352, + 0.016545711, + 0.018526914, + -0.0050973967, + -0.023995956, + -0.009197113, + 9.7215053E-4, + -0.0042974846, + -0.009228193, + 0.01755547, + -0.0057167867, + 0.016714636, + -0.002489801, + -0.009654261, + -0.011663422, + -0.037569642, + -0.012228889, + -8.0274616E-4, + -0.02379061, + -0.006312325, + -0.015044158, + 0.014840492, + -0.0023204302, + 0.012588008, + -0.007618865, + 0.020700347, + -0.023178017, + -0.020836178, + 0.0052181417, + -3.8714538E-4, + 0.0034214417, + 0.013194214, + -0.032423634, + -0.021616742, + -9.712709E-4, + -0.0023223755, + 0.019503238, + -0.00598074, + 0.01869393, + 0.011829407, + -0.0215096, + 0.022841958, + -0.008023818, + 0.011157427, + 0.013110034, + 0.014091453, + -0.016679185, + 0.016883465, + 0.0038979074, + 0.011616815, + -0.005560938, + 0.009334608, + -0.009165313, + 0.029197043, + 0.033311818, + 8.012692E-4, + -0.009404657, + 0.0044897725, + -0.020711595, + 0.0357642, + -0.004538315, + 0.014295962, + -0.007640418, + -0.01189827, + 0.016684148, + 0.009886954, + 0.013215165, + -0.00381908, + -0.0012184952, + -0.006270097, + -0.01362559, + -0.029803919, + -0.017774459, + -0.02830106, + 0.011995519, + -0.010571152, + 0.001488902, + 0.0028041895, + -0.019359397, + 0.010858, + 0.013818793, + -0.008335093, + 0.008120864, + 0.0012596797, + 0.0015404812, + -0.009257775, + 0.024989763, + 0.016519597, + -7.3808193E-4, + 0.007530046, + 0.008833728, + 0.0032570933, + -0.005239495, + 0.0020388714, + 0.008465717, + 0.010260031, + -0.011817749, + 0.0012212232, + -0.0013289728, + -0.015415986, + -0.0036531924, + -0.0043218383, + -0.0010810619, + 4.530911E-4, + 8.601121E-4, + 0.005327452, + 8.2759483E-4, + 0.0145953735, + -0.0060489615, + 0.013679296, + 0.011112853, + 0.0037744183, + -0.021142814, + 0.01260464, + 0.015732644, + 0.019322991, + -0.017494429, + 0.008290673, + -0.020762613, + 0.003618565, + 0.02309416, + 0.019157419, + -0.0024705117, + -0.032050766, + -0.008627532, + 0.013478066, + -0.0026134239, + -0.005912061, + 0.019433372, + -0.017864514, + 0.0016518938, + 0.032684565, + -0.0067656483, + 0.013164968, + 0.020638853, + -0.02081185, + -0.0152309425, + 0.026127066, + -0.0075596264, + 0.004469388, + -0.014325338, + -0.02190536, + 0.0072133965, + 0.023380958, + -0.024279745, + 0.0053428244, + 0.030108735, + 0.0034456216, + -0.023322048, + -0.03355062, + 0.020544278, + 0.0176203, + -0.0119716255, + -0.001407389, + 0.027881315, + -0.002578811, + -0.018020716, + -0.0093707545, + 0.02958384, + 0.001358424, + 0.003925196, + -0.0051417, + 0.023848968, + -0.0068774708, + 0.02394058, + 0.028147168, + -0.016319774, + -0.017069986, + -0.0010279224, + -0.0037098594, + -0.0035774917, + -0.029275937, + 0.010793921, + 0.0057517453, + 0.012317942, + -0.0044773924, + 0.011245971, + 0.0025818618, + 0.019313656, + 0.0146507025, + -0.003483148, + 0.0033405935, + 0.013070426, + -0.017585509, + -0.006063838, + -0.0098948125, + 0.024667876, + -0.02090988, + -0.02700216 ], - "paletteEmbedding": [ - 0.030429289, -0.049309738, 0.025306106, -0.006635327, 0.008124439, - 0.028185394, 0.03792791, -0.010641413, -0.009816899, 0.04284803, - 0.009576108, 0.020392766, -0.015182928, 0.03607462, 0.0381394, - -0.015939275, 0.048076626, -0.010686094, -0.023589866, 0.006085031, - -0.016279357, 0.005342147, -0.049746327, -0.007554362, 0.009628355, - -0.030175684, -0.01899266, 0.037992734, 0.022336917, 0.006686832, - 0.005216455, -0.024944264, 0.08083705, -3.4251038e-4, 0.061031695, - -7.1848925e-5, -0.010166234, -0.044671513, 0.06340302, 0.0011563477, - 0.010666061, -0.027102122, 0.004025843, -0.02619078, 0.0137094995, - 0.026685448, -0.042114764, 0.015942374, 0.04165749, 0.03882913, - -0.020862445, -0.030572623, -0.007250171, 0.010376437, -0.049909424, - -0.006084243, -0.015882606, 0.025182541, 0.028073603, -1.4000793e-4, - -0.017765734, -0.004739784, -0.019446267, 0.005226765, -0.0333511, - 0.0025428121, 0.005829151, 0.036673214, -0.042814318, 0.026272442, - -0.011777832, -0.04294178, -0.014923416, -0.021810332, 0.074767984, - 0.010867915, 0.0121671995, 0.0062847272, 0.017517129, -0.011480039, - 0.03203224, 0.05482785, -0.019200955, 0.009223031, -0.07647935, - -0.012763727, -0.030314362, -0.011368299, 0.029554287, -0.009174768, - -0.011309528, -0.062145755, -0.0039648707, -0.029063694, 0.027162176, - -0.0030726204, 0.00757323, -0.041021958, -0.008720563, -0.020528952, - 0.03698223, 0.053571552, -0.0058361716, -0.018153828, -0.027857194, - -0.039648462, 0.0125190085, 0.0775672, -0.018340304, 0.008087668, - 0.03347036, 0.046186864, 0.021408943, -0.048941165, -0.018337771, - -0.023131551, -0.0045912126, -0.044292737, -0.0060064676, 0.029024566, - 0.0332015, 0.007499109, 0.044580158, -0.02886995, 0.004029256, - 0.024091091, -0.013787351, -0.005960907, -0.016710712, 0.018848704, - -0.030757325, -0.010361595, 0.0089034075, -0.012107292, 0.0039123814, - -5.5349235e-5, 0.019041028, 0.013362683, 0.018130835, 0.02899606, - -0.049124014, 0.0032009117, 0.055153985, -0.014549176, 0.010976893, - -0.024944847, 0.004238822, -0.024174644, -0.046888273, 0.035066985, - 0.10027555, -0.014626788, 0.014130035, -0.00138161, 0.024419304, - 0.001779539, 0.035359606, -0.0045131645, -0.007489897, -0.04244273, - 0.021141596, -0.04315493, -0.0119442055, -0.01721755, 0.006856238, - 0.053306635, 0.038223773, -0.03946185, -0.0059922216, 0.008619471, - -0.0033258332, 0.012702751, -0.03682134, -0.0015614307, 0.002380129, - 0.03901918, 0.09466179, -0.04143542, 0.0027153096, -0.028384378, - 0.0038726954, 0.05012115, -0.056930803, -0.055287194, -0.028531866, - -0.014760824, -0.032850552, -0.108803995, 0.018445, 0.01685543, - -0.022712298, -0.021292, -0.05018632, 0.09491219, 0.045824297, - 0.017841808, -0.01499584, 0.026714837, -0.019022675, -0.025591249, - 0.012125834, 0.0020198731, 0.029119493, 0.009674751, 0.084031634, - -0.0042892545, 5.9870834e-4, -0.052072536, -0.0034520137, -0.04593879, - -0.0326061, 0.00596529, 0.03191477, -0.019952687, 0.044185936, - 0.015247115, 0.020922462, -0.00749758, -0.038892936, -0.013755406, - 0.01130004, -0.004854764, -0.011923232, 0.0022035444, 0.001767991, - 0.036586776, -0.06669547, -0.018458413, -0.009010786, 0.01424164, - -0.003101879, -0.01936463, -0.0140609, -0.014049084, -0.02860878, - 0.019347586, 0.035029247, -0.06551858, 0.035298392, -0.0060511585, - -0.014115293, 0.041775376, -0.04983906, 0.034867015, -0.053251956, - -0.012090273, 0.00678964, 0.026237868, -0.03179599, 0.0362407, - -0.005576393, -0.01747541, -0.048605844, -0.0032479998, -0.05463283, - -0.0035134437, -0.029173512, 0.014788457, 0.007846922, 0.01266038, - 0.018524066, -0.06492718, -0.048526913, -0.0252898, -0.021723144, - -0.033848472, 0.008886739, -0.013757034, 0.032070607, 0.0075445417, - 0.0060738698, -0.007906554, -0.02944362, 0.057368353, -6.486774e-5, - 0.0067538973, -0.032877244, -0.02724028, 0.019743863, 0.01045181, - 0.023158485, 0.020420063, 0.029847503, -0.0042827865, -0.013086105, - -0.026363857, 0.036158722, 0.018868078, -0.0066064824, 0.02053154, - -0.018532569, -0.044398215, 0.009720006, 0.016983014, -0.03987253, - 0.01556204, -0.009736979, -0.01252712, 0.04355355, 0.008022929, - -0.005898456, -0.00818571, -0.018794127, 0.005647601, 0.0232601, - -0.017897815, -0.0015585999, 0.022352986, -0.026263515, 0.05444753, - 0.08820081, 0.01914983, -0.0017624154, 0.051754262, -0.03968073, - -0.02622853, -0.012932877, -0.028204385, 0.036624525, -0.03870474, - -0.04199354, 0.0020317065, -0.023761235, 0.022006797, 0.02060484, - 0.011197644, 0.01688913, 0.0103769, -0.01627659, -0.04236458, - 0.05703047, 0.048118085, 0.045643304, -0.040250357, 0.009785352, - -0.01160352, -0.025404554, 0.02263628, 0.0031971226, 0.007864647, - 0.027339324, 0.015536104, -0.06308101, 0.0059075938, -0.01284067, - -0.03126744, 0.03440397, 0.0077249375, -0.031120116, 0.011990634, - -0.01412468, -0.06519268, -0.010856872, 0.035767145, -0.05002537, - 0.06550924, -0.0152261425, 0.0027675556, 0.02212761, 0.0100236535, - 0.034114268, 0.040006172, 0.026538156, 0.004297473, 0.0033775026, - -0.015938325, -0.016236266, 0.0018276058, 0.0033480548, -0.021491216, - 0.04032565, -0.009809025, -0.04137434, -0.056792103, -0.06965018, - -0.044061873, -0.06439471, -0.06690918, 0.04070202, 0.036884714, - 0.07037464, -0.0011285576, 0.024000274, 9.719222e-4, -0.052608326, - 0.016229387, -0.02757779, -0.03005634, 0.008166647, 0.014377545, - 0.021280624, -0.021115664, 0.0021010647, 0.004572309, -0.0020268008, - 0.004597711, 0.01798957, -0.019897753, 0.031301092, -0.026968468, - 0.010707557, 0.012998152, -0.025118468, 0.0029409716, -0.022237847, - -0.025305843, -0.01364749, -0.053234138, -0.026957363, -5.2876957e-4, - -0.0055538174, 0.010102471, -0.03608748, 0.025063746, -0.04932315, - -0.07887754, -0.017675735, 0.011632667, -0.03760116, -0.008114152, - -0.06718644, -0.0033451875, 0.023449, -0.04036452, 0.024012757, - 0.016872857, 0.034744937, 0.01499597, 0.011563336, -0.0063554235, - -0.019278402, -0.0018595633, 0.032173812, 0.047264628, -0.03708189, - -0.009130019, 0.041055717, -0.027939156, -0.0030821052, 0.027159648, - -0.009157594, -0.0023034406, -0.014415078, 0.019114397, -0.055569105, - 0.04227786, -0.015921371, 0.0293181, 0.04259086, -0.032202724, - 0.011051924, -0.035685834, -0.0066273557, 0.018296732, -0.05372569, - -0.02545285, 0.03556203, 0.0022497503, -0.025575507, -0.0022084625, - 0.002501869, -0.025583316, 0.020111484, -0.0070844684, -0.012786446, - -0.0014686094, 0.01081227, -0.012995217, -0.04253377, -0.01923787, - 0.0035614118, -0.018843226, -0.0049671675, 0.053087242, 0.019380616, - 0.017089853, -0.045305498, -0.03231117, -0.004938969, 0.006978375, - 0.004375989, -0.018194078, -0.031039307, -0.007814154, 0.024125615, - 0.006809194, 0.0022021055, 0.0070309592, 0.0192417, 0.035951465, - 0.014990006, -0.0217632, 0.013969092, -0.0635782, 0.021939231, - 0.04248584, -0.034968276, -0.019496592, 0.008255222, -0.0021079327, - 0.012712379, 0.025525177, 0.017816264, 0.042892817, -0.029360624, - 0.0116105145, 0.012934927, 0.018128106, -0.011599757, 0.019438751, - -0.036405228, -0.041991945, 0.0013886626, -0.015540754, -3.8850433e-4, - 0.029959574, 0.002368276, 0.055869192, -0.008240043, -0.006617663, - -0.013348248, -0.037173178, -0.06838938, -0.045438487, 0.0030290144, - -0.06791672, 0.039089195, 0.051516593, 0.017203452, 0.012614834, - -0.03879873, 0.012646631, -0.01217594, 0.045855124, -0.035212155, - -0.055379167, 0.045992967, -0.03271051, -0.013542969, -0.01694232, - 0.00971164, 0.04752658, -0.023754202, 0.027745264, -0.013947172, - -0.02728454, 0.027136598, -0.035616513, -0.044975247, -0.062520176, - -0.03559065, 0.04151324, -0.016317563, 0.0012363585, 0.0038835984, - 0.005428338, -0.018523525, 0.02931303, 0.002777152, -0.030700574, - -0.030280126, -0.009772065, 0.013046451, -0.014785114, -0.018261975, - -0.053012688, -0.0031288653, -0.05724163, -0.038407773, -0.020751933, - -0.026877161, 0.0027057028, 0.014109758, 0.030425081, -0.01950162, - -0.025378145, -0.0309085, -0.029838976, -0.0029012507, -0.016093168, - 0.077457085, 0.032705635, 0.032632064, -0.006365469, 0.018962359, - 0.031132504, -0.013309185, 0.006608868, 0.033096448, 0.039054796, - -0.0106399525, -0.06178028, 0.0069569955, 0.03281008, -1.4797205e-4, - -0.032269362, -0.014033663, -0.005267513, -0.02042408, 0.040269192, - 0.026087662, -0.026622333, 0.0040894044, -0.016923439, -0.009620906, - -0.05011407, 0.016248068, -0.07565299, 0.038845774, 0.051927052, - 0.013964731, 0.004431438, -0.014596216, 0.05538433, -0.013455416, - 0.0076925885, 0.038677804, 0.0052721407, -0.03160084, 0.04828308, - -0.0044799014, 0.0012350947, -0.0028365962, -0.012699542, 0.0142518105, - -0.026618963, 0.02348114, 0.0032102691, -0.026432678, 0.05580519, - -0.033678006, -0.005935541, 0.011589315, 0.0071925274, 0.0033122082, - 0.0030430302, -0.017036062, 0.043461923, 0.001461067, -0.004267526, - 0.024153575, 0.011182636, 0.0052557094, 0.053561717, 0.023242554, - 0.0077431, -0.048033644, 0.0072367406, -0.034505285, -0.04676834, - 0.015713869, 0.001052481, 0.025414249, -0.0075271833, -0.04774764, - 0.036506824, -0.030964874, 0.03146498, 0.018551681, -0.035804227, - 0.025827566, -0.0035917035, -0.008751178, 0.017811274, -0.033195548, - 0.041068226, 0.033256534, 0.047045294, 0.0063205427, 0.045044366, - 0.010316735, 0.04287567, -0.061894223, 0.053465378, -0.024678836, - -0.050120372, 0.03451283, 0.041872244, 0.069690645, -0.005695687, - -0.021220451, 0.0053500095, -0.05170987, -0.06978132, 0.01306351, - 0.040779892, -0.07241259, -0.020440036, -0.045292348, 0.04123201, - 0.026372459, 0.047478605, -0.037583902, 0.0029762355, -0.017250255, - 0.009685943, 0.033875145, -0.03471338, -0.0028019315, -0.021516638, - -0.06123321, -0.008332234, -0.021201668, -0.03610195, 0.06654477, - -0.036229167, 6.301477e-4, 0.016169012, -0.044073965, -0.017452737, - 0.06727791, -0.02945115, 0.07070728, -0.043028034, -0.066988416, - 0.021718815, 0.042249285, -0.05047629, -0.029726142, -0.04065673, - 0.01182079, 0.030600237, 0.004290419, -0.029162345, 0.01679814, - 0.0058259, -0.045538303, -0.004626135, -0.0034448851, 0.08242384, - -0.008915403, 0.054508403, -0.05894478, 0.018432695, -0.03713487, - 0.010078744, 0.045650825, -0.0067063086, -0.011613, -0.02760124, - -0.053790495, 0.049014278, -0.008282022, 0.02091292, -0.02432607, - 0.0070911194, 0.017265933, 0.015201362, -0.005996627, -0.0052203047, - 0.013630822, 0.009931191, 0.0024644614, -0.030106423, 0.012631592, - -0.074122004, 0.023515971, 0.013204517, -0.008033793, -0.001976375, - -0.019337792, 0.037743997, 0.03327618, -0.014233111, 0.035933863, - 0.012740057, -0.035569537, 0.047104664, -0.038884133, -0.0021245633, - 0.014764145, 0.00930676, 0.03638656, 0.032676026, 0.011204708, - 0.04212908, 0.0012581543, 0.01987608, -0.0460407, 0.008996317, - 0.00871553, 0.022804512, -0.021987839, 0.018152757, 0.0044559212, - 0.015482167, -0.02234942, 0.019703805, -0.024900494, -0.012098527, - -0.010750788, -0.010813771, 0.05018637, 0.025777118, 0.013323439, - 0.008438959, -0.04842029, -0.033902787, -0.02994225, 0.01543604, - 0.004251569, 0.037550874, 0.014390251, -0.044307705, 0.015385159, - 0.026429337, 0.029038563, -0.03179099, 0.04193039, 0.050186686, - -0.0104000615, -0.048623063, -1.9172464e-4, -0.011288127, -0.0071733748, - -0.045016855, -0.049708396, 0.009281143, -0.05272396, -0.051324017, - -0.044906035, 0.033449523, 0.03773591, 0.0058780774, 0.019733496, - -0.03297874, -0.037619058, -0.068419285, 0.023902003, -0.031607017, - -0.029954934, -0.003556974, 0.048265114, 0.029506352, -0.002676185, - 0.037331123, -0.020960873, -0.07398739, 0.024944136, -0.028579265, - -0.027921863, 0.042939663, 0.018787276, -0.021716373, -0.03676595, - 0.05128915, -0.0029071642, -0.0645281, 0.009546023, 0.03996351, - -0.009439992, -0.0014878553, 0.02658775, 0.015316841, -0.006887114, - 0.018754715, 0.011947271, 0.0015690838, -0.028359653, 0.043901205, - -0.030754402, 2.8199088e-4, 0.066235036, -0.016248347, -0.036197696, - -0.023588877, 0.0225864, 0.032662217, 0.007820307, 0.029332608, - 0.06302818, 0.049916178, -0.057864867, 0.020910356, -0.02315305, - 0.05979401, -0.043244604, -0.019797396, 0.015162158, 0.069060095, - 0.012571723, -0.031526417, -0.022606889, -0.0119222645, -0.038326316, - -0.031534072, -0.033014044, 0.010521716, 0.043647565, -0.010598531, - -0.040884554, 0.014139803, -0.039364543, -0.0038504165, 0.0129271, - 0.015663654, 0.018972436, 0.09155279, 0.029894767, 0.026453555, - -0.009184156, -0.049886264, 0.009644723, 0.0113680465, -0.013061491, - 0.031625137, 0.05747724, -0.012170443, -0.06565865, -0.025541708, - 0.018687656, -0.004546302, -0.0061721248, -0.013855718, 0.020384518, - -0.016819607, -0.0062374184, -0.047155213, -0.021181729, -0.0084816255, - -0.08272305, 0.032676622, -0.035593696, -0.027167827, -0.02657389, - -0.02121758, 0.0151130445, -0.018884866, 0.02862839, -0.0047032004, - -0.037518278, -0.06467624, -0.0018883239, 0.015587343, 0.035613004, - -0.073945515, 0.031371515, -0.03779783, -0.023442958, 0.028119747, - -0.068605416, -0.034606535, 0.053462192, 0.04475618, -0.05031619, - 0.03987656, 0.01892237, 0.006957805, 0.013001057, -0.006218253, - -0.0029160853, -0.03741477, -0.014775327, -0.006934692, 0.03271172, - 0.019144505, 0.012465566, -0.036048714, -0.030715726, -0.0188182, - 0.04436641, -0.007501469, 0.05126535, -0.00321579, 0.03594796, - -0.00150349, -0.0076936726, -0.045814566, -0.030181047, 0.01748305, - 0.03212044, -0.0022751847, 0.03234849, -0.042567264, -0.020468276, - -0.020001836, -0.020483807, 0.025901994, -0.040782556, 0.046290796, - 0.061351884, -0.0029589767, 0.0063015437, -0.02945172, 0.018899625, - -0.04089466, 0.0031563865, -0.026697269, -0.0060240338, 0.038812514, - -0.0068109278, -0.014977421, -0.0056090066, -0.022647867, 0.008380877, - 0.044030003, 0.070905805, 0.013695356, -0.022116892, -0.033864576 + "paletteEmbedding" : [ + -0.06018525, + -0.0218374, + -0.010382953, + -0.016055323, + 0.040283263, + 0.011408834, + 0.009103001, + -0.018845946, + -0.017500835, + -0.023256846, + 0.0060900194, + 0.014918708, + 0.012295926, + -0.020341517, + -0.030511504, + 0.0476823, + -0.024098013, + -0.010636025, + -0.014297663, + 0.061670303, + -0.011341193, + 0.025497146, + -0.04794803, + -0.0030038862, + -0.023706527, + 0.011792652, + 0.0012508471, + -0.016295303, + -0.033812843, + 0.027135307, + 0.023619894, + 0.023904504, + -0.022079783, + 0.0058113877, + 0.028511148, + 0.054467622, + 0.03299948, + -0.0193829, + -0.029965647, + 0.047823783, + 0.034316875, + 0.0035389247, + -0.029568752, + -0.0094978195, + 0.030624855, + -0.026319321, + -0.06639204, + -0.03982159, + 0.044703268, + -0.020935085, + 0.030835414, + 0.0044246763, + 0.021880278, + -0.017491296, + -0.02084819, + 0.028366543, + 0.021950683, + 0.032049663, + 0.031599, + 0.052933395, + 0.04511007, + -0.019111758, + 0.0052869306, + -0.054532915, + -0.01295073, + 0.010595386, + -0.054042835, + -0.0023555055, + -0.036601067, + 0.059068426, + 0.024021821, + -0.028941086, + 0.016201584, + -0.014404171, + 0.09615797, + 0.033830848, + 0.02394741, + -0.009680096, + 0.04823926, + 0.041738406, + 0.010893886, + -0.010612946, + -0.049756043, + -0.01475007, + -0.0026908494, + -0.026039721, + -0.021470467, + -0.01048729, + 0.085914046, + -0.04571833, + -0.024335407, + 0.023900107, + -0.027328849, + 0.05215418, + 0.015601193, + -0.06664227, + 0.035366848, + 0.03331041, + -0.040926997, + -0.023455407, + -0.021669282, + 0.03217181, + 0.024183096, + -0.038869828, + -0.01358052, + 0.0060814046, + 0.0578588, + -0.022097163, + -0.025117941, + 0.0069944975, + -0.035081945, + 0.0077066296, + 0.0320027, + 0.025821531, + 0.049872935, + -0.031502176, + 0.024820935, + -0.014927159, + 0.008925513, + -0.02470312, + -7.2188285E-4, + 0.0527321, + -0.037520166, + -0.015183434, + 0.02109522, + -0.03474319, + 0.035410475, + 0.03108547, + -0.0069348672, + 0.029315263, + -0.0326377, + 0.03328992, + 0.021911731, + -0.03443111, + -0.0044570407, + 0.024142079, + 0.0056994744, + 0.019144434, + 0.033003435, + 0.009911738, + 0.0016754313, + -0.028582383, + 0.019394755, + 0.08193455, + -0.031882793, + 9.106087E-4, + -0.058237597, + 0.02167286, + 0.0082314005, + 0.036309406, + 0.06822972, + -0.022097215, + -0.008476843, + 0.012239165, + 0.008888313, + -0.003175818, + 0.017094247, + -0.065107726, + 0.026418077, + 0.03002096, + -0.011252645, + 0.041917503, + -0.009424524, + 0.025770925, + -0.03517949, + -0.014494831, + -0.038157877, + 0.006401757, + 0.014302767, + -0.020496976, + 0.070243016, + 0.057559386, + -0.029894637, + -0.029817635, + -0.008053369, + 0.022163896, + 0.020625163, + 0.030670999, + -0.010179389, + 0.06399591, + -0.008627923, + -0.023811743, + 0.039061975, + 0.04549451, + 0.016646434, + 0.029564543, + 0.0029047453, + -0.031005943, + 0.0024647499, + 0.06241475, + -0.04317369, + 0.003550765, + -0.01924419, + 0.019784275, + 0.050741397, + 0.0037726995, + 0.029681116, + 0.032141723, + 0.01835828, + 0.006518715, + 0.053918015, + -0.00982438, + 0.010267569, + 0.006878681, + 0.0063096764, + 0.007893536, + -0.0069586607, + -0.002235303, + -0.010628832, + 0.06285258, + 0.011910709, + 0.02554989, + -0.020992978, + -0.034601502, + 0.017378926, + 0.030456828, + 0.020161802, + 0.05154714, + -0.0043418864, + 8.306163E-4, + -0.008542693, + -0.017870873, + 0.0077717686, + -0.015289812, + 0.019922983, + 0.008890645, + -0.061200783, + -0.0037415077, + 0.007613468, + -0.015701411, + -0.034012344, + -0.028874526, + 0.03921125, + -0.02096618, + 0.042821426, + 0.016314134, + -0.017269803, + 0.033336166, + 0.020449111, + -0.0035596574, + -0.009395177, + 0.020034049, + -0.049039282, + 0.0027827611, + 0.007284663, + 0.005662518, + 0.02754848, + 0.011442246, + -0.024084268, + -0.07279085, + 0.006353154, + -0.043254804, + -0.02614067, + 0.024066199, + -0.037923858, + 0.008380083, + 0.002609093, + -0.029911026, + 3.567916E-4, + 0.0050702677, + 0.026464147, + -0.03246567, + 0.024242584, + 0.016131956, + 0.010688789, + -0.028113166, + 0.036775805, + -0.0109743625, + 0.011762264, + -0.017519047, + -0.01998469, + 0.04792082, + 0.032889046, + -0.051439825, + 0.0027213378, + -0.012607585, + -0.023388702, + -0.027039537, + -0.010243639, + -0.052944835, + -0.026668692, + -0.037877515, + 0.020634672, + 0.016739424, + 0.014806507, + 0.06537319, + 0.05055256, + -0.07021369, + -0.03245773, + -0.013089347, + 0.038373735, + -0.021919815, + 0.010731324, + -0.0232894, + -0.030543024, + -0.059903014, + 0.03925363, + 0.040560264, + -0.03395462, + 1.4984755E-4, + -0.015151743, + 0.029605687, + 0.030161664, + 0.045880847, + 0.019731827, + -0.04014256, + -0.021521868, + 0.022409154, + 0.028936597, + 0.01946465, + 0.0135958, + -0.027164733, + 0.02124061, + 0.014763274, + 0.033157498, + -0.0062148147, + 0.026588801, + -0.03372718, + -0.07401886, + -0.08916358, + -0.033509515, + 0.052487444, + -0.040549424, + -0.024119804, + 0.02850284, + -0.03290216, + 0.02347069, + -0.009381993, + -0.0025222169, + 0.059211273, + 0.031824328, + 0.021660516, + 0.035170272, + -0.0114675965, + 0.044238247, + 0.022764064, + -0.0031807097, + -0.023280881, + -0.03890203, + -0.036037177, + 0.007724368, + -0.009919117, + 0.013107224, + -0.005784376, + 0.0042972914, + -0.004646218, + 0.033058114, + -0.0112711685, + 0.07747212, + -0.0034772183, + -0.080788724, + 0.020318199, + 0.027680436, + -0.011751422, + -0.058999076, + 0.021492373, + -0.035449486, + -0.016254593, + -0.048931617, + 0.019400684, + -0.03923849, + 0.033450495, + 0.02480454, + -0.008132439, + -0.02278652, + 0.0060747406, + -0.037269693, + 0.018879801, + -0.03584926, + 0.0035986581, + -0.02853113, + 0.038564663, + 0.04160196, + -2.6200042E-4, + 0.0026927865, + 0.017953273, + 0.06943956, + -0.0127485385, + 0.0018365288, + -0.011375023, + -0.020574186, + 0.015276075, + -0.018781234, + 0.05270219, + -0.033316623, + -0.029544128, + 0.008980221, + 0.032940883, + 0.0038807194, + 0.041093983, + 0.013368798, + 0.035414636, + -0.06602599, + -0.03506557, + -0.009047859, + 0.0060387733, + -0.039125677, + 0.035843868, + -0.031183658, + 0.012763991, + -0.0450434, + -0.06482605, + 0.006840934, + -0.024587918, + 0.01928519, + -0.0064685377, + -0.016299088, + -0.021397732, + -0.023870626, + 0.020241257, + 8.794623E-4, + -0.025973165, + -0.029597372, + -0.028056404, + 0.027038025, + -0.011882121, + -0.013513659, + -0.09822448, + 0.008399762, + 0.04550006, + 0.016604194, + -0.031128647, + 0.0294716, + -0.015509564, + 0.045547135, + 0.029125482, + 0.062270086, + -0.041372977, + 0.029530508, + 0.014838865, + 5.992665E-4, + 0.045462072, + -0.03242985, + -0.02210453, + 0.043239046, + -0.008212449, + -0.0016623449, + 0.008363567, + 0.0027520661, + -0.016180618, + 7.7905686E-4, + 0.03620102, + 4.6998396E-4, + -0.020194309, + 2.9771737E-4, + -0.020078748, + 0.05039535, + -0.018735727, + 0.044639233, + 0.02770045, + 0.0026795305, + 0.005605929, + -0.044364717, + 0.011244424, + -0.033820264, + 0.0073337657, + -0.02105811, + 0.007220278, + 0.07891518, + 0.07245552, + 0.014077195, + -0.022506233, + 0.050180595, + -0.022955569, + 0.025115835, + 0.0037775033, + -0.02817358, + -0.0024088102, + 0.0674262, + 0.017071923, + -0.04317685, + 0.020023338, + -0.010590718, + -0.08038938, + 0.0060034697, + -0.024721088, + 0.015182822, + 0.034814443, + 0.0017128249, + -0.007860464, + -0.010373578, + -0.0041674157, + -0.064917184, + 0.01319983, + -0.045854013, + -0.09700562, + -0.026353003, + -0.015105293, + -0.0036435951, + -0.04172687, + 0.041096278, + -0.005463084, + -0.008644355, + -0.028371047, + 0.031884186, + -0.05957408, + -0.07557994, + -0.0675778, + -0.018586462, + -0.07103607, + 0.04013107, + -0.009368529, + 0.03369675, + 0.010657244, + 0.06127775, + -0.05396032, + 0.013006115, + -0.017633034, + -0.011316193, + -0.03236738, + 0.07423098, + -0.037737004, + 0.07502696, + 0.011621537, + -0.025467455, + -0.014616455, + 0.014889136, + -0.007689126, + -0.00959431, + -0.03996066, + 0.019200126, + 0.027684217, + -0.0030877034, + -0.03415688, + 0.014564732, + 0.031006554, + 7.580693E-4, + 0.009272038, + -0.009071102, + -0.013560548, + -0.046875812, + 0.0021194934, + 0.03926535, + 0.031026993, + -0.019488666, + -0.037615336, + -0.013513162, + 0.009557433, + 0.012406514, + -0.03404077, + -0.036160782, + 0.009477199, + -0.011612942, + 0.0060393135, + -0.007152242, + 0.019557934, + -0.027942775, + -0.0036330386, + -9.6444745E-4, + -0.03147111, + -0.081663296, + 0.011879913, + 0.010363474, + -0.027689504, + -0.030579565, + 0.004547614, + -0.0057982304, + -0.042264804, + -0.057039935, + 4.1338714E-4, + 0.017220616, + -0.014137941, + 0.0074146227, + -0.025568858, + -0.010974569, + -0.019432541, + 6.581467E-4, + 0.022000872, + -0.019761689, + -0.015467945, + 0.009309852, + -0.015916137, + -0.012791039, + 0.014060425, + 0.021472184, + 0.060920693, + 0.003385911, + 0.05295089, + -0.031054951, + -0.007552248, + -0.04037882, + -0.03406312, + 0.0037865292, + 0.014838966, + 0.058565583, + -0.0065850383, + 0.00690589, + -0.050413266, + 0.046225812, + -0.0040176734, + 0.040522672, + 0.010219236, + -0.017041868, + -0.042813156, + -0.050666012, + -0.009805426, + -0.057337053, + -0.028077677, + -0.014632464, + -0.023079107, + -0.0367295, + -0.02868694, + 0.025453022, + -0.010497218, + -0.02019397, + 0.01973862, + 0.026725603, + -0.03259642, + -0.051666252, + -0.020634443, + -0.0065446026, + 0.03676634, + -0.07977447, + -0.07327336, + 0.016068015, + 0.02824509, + 0.033572484, + -0.006008199, + -0.05200917, + -0.038289994, + -0.022832645, + -0.05291338, + -0.011871152, + 0.050600603, + -0.0061302204, + 2.0579678E-4, + 0.016879877, + 0.013198772, + 0.0541401, + -0.04560535, + -0.027981725, + -0.007546317, + -0.0067656133, + 0.008424048, + 0.021413654, + 0.01116128, + 0.010532486, + 0.0024215772, + -0.02284671, + -0.033392232, + 0.012918763, + -0.04090103, + -0.010133291, + 0.04839019, + -0.0016733126, + 0.034706287, + 0.019701144, + -0.0069926884, + 0.021770572, + -0.044393145, + 0.057925105, + 0.011473045, + 0.058873877, + -0.057985976, + -0.010966764, + 0.037111443, + 0.03296061, + 0.026223097, + 0.018779997, + -0.01616963, + 0.06581291, + 0.023944978, + -0.025553811, + -0.03006737, + -0.043990374, + 0.020757927, + -0.042205658, + -0.03500538, + -0.012226577, + -0.033854466, + 0.0021847824, + -0.01707394, + -0.015874285, + -0.00460776, + -0.029025815, + 0.03174981, + 0.013550126, + -0.025331665, + -0.038964435, + -0.0022687912, + 0.0019756309, + -0.015413258, + 0.048767738, + 0.035679642, + 0.017531943, + -0.030672463, + -0.03836257, + -0.02806644, + -0.002992911, + -0.015335028, + 0.07032915, + -0.026592791, + -5.6124426E-4, + -0.0059420164, + -0.024145517, + -0.028491002, + -0.012738824, + 0.00961854, + 0.08196995, + -0.01652648, + -0.04222298, + -0.015581887, + -0.004709244, + -0.05888433, + -0.0019262695, + 0.020613395, + -0.037567776, + -0.0314458, + 0.043064788, + 0.032888312, + 0.005038722, + 0.032396972, + 0.026446423, + -0.0047330046, + -0.026625074, + 0.028303633, + -0.04465347, + 0.06049536, + 0.027144857, + -0.024895258, + -0.026443943, + -0.042677794, + -0.023008276, + -0.0034316294, + -0.011530241, + -0.0066537927, + 0.007962773, + -0.002212076, + 0.0047447113, + -0.0372565, + -0.01064952, + 0.028113885, + -0.057913434, + -0.04216479, + -0.015829267, + -0.041557956, + -0.030942926, + -0.033287987, + 0.0061765886, + -0.012890596, + 0.042888682, + -0.011325054, + 0.018067263, + 0.038754024, + -6.559924E-4, + -0.012787562, + -2.024194E-4, + -0.049002502, + 0.0011780105, + -0.011335205, + -9.4391895E-4, + 0.008302804, + -0.0352444, + -0.056123547, + 0.043595694, + 0.026385704, + 0.008517943, + 0.003736458, + -0.024918178, + 0.025864135, + 0.0011689066, + -0.0076690195, + 0.0030008473, + -0.02157044, + -0.04384781, + -0.0037957402, + 0.042071532, + 0.060979053, + -0.020931559, + 0.006252314, + 0.021093186, + 0.002316577, + 0.030375239, + -0.018027347, + -0.03963408, + 0.009034126, + -0.0045626974, + -0.017675094, + -0.020310387, + -0.061260663, + 0.0026770418, + 0.025337083, + -0.039509, + 0.011019674, + 0.022524094, + -0.035848323, + -0.0097424, + -0.00990166, + -0.07667312, + 7.4527354E-4, + -0.0071354797, + 0.03846984, + 0.026035652, + -0.018838102, + -0.033409394, + 0.034641705, + -0.02244336, + -0.028330589, + 0.03308585, + -0.0861321, + 0.035492677, + 0.0047937934, + -0.03589316, + -0.025908234, + 0.012515936, + -0.042845264, + 0.049856797, + 0.025639512, + 0.025936944, + -0.052353237, + -0.011568244, + 0.004167448, + 0.011332989, + -0.07633102, + -0.065133184, + -0.01276094, + 0.047712233, + 0.002273834, + -0.0043407227, + 0.037092585, + 0.039152846, + -0.014587965, + 0.032916516, + -0.04373575, + -0.014469197, + 0.039334837, + -0.009894456, + 0.018641751, + -0.008162182, + 0.015936581, + 0.008988132, + -9.0329524E-4, + 0.047892418, + -0.023684638, + -0.01390792, + 0.041879367, + -0.0010537354, + -0.02923406, + 0.030183846, + -0.016572515, + -0.070138134, + 0.006016396, + -0.028798657, + -0.021209257, + 0.00724373, + -0.0036940072, + -0.0056841634, + -0.054951932, + -0.06510752, + 0.007138125, + 0.03146949, + -0.0166865, + -0.02030048, + -0.023073535, + -0.031356566, + 0.023965439, + -0.05148129, + 0.012911238, + -0.01018517, + -0.0034600487, + 0.05020941, + 0.010212035, + -0.030347131, + -0.0123339845, + 0.03303931, + -0.018996928, + -0.011137656, + -0.04167568, + 0.017885854, + -0.0072829407, + -0.039661836, + 0.00964505, + 0.03326997, + -0.05330049, + 0.023918044, + 0.0016834346, + 0.005466441, + 0.008032617, + 0.024991205, + -0.012341696, + -0.0243512, + 0.006295408, + -0.09999164, + 0.029126657, + 0.04368778, + -0.024099857, + 0.004306203, + -0.025093095, + 0.021767613, + -0.004583809, + -0.026913917, + 0.06379191, + 0.025769478, + -0.010418573, + -0.010756127, + -0.013925621, + 0.0010564496, + -0.0035857928, + -0.017722892, + -0.044823702, + 0.0020521483, + 0.039098494, + -0.0074394136, + -0.0018877486, + 0.04563993, + 0.020050755, + -0.018286822, + 0.036125347, + -0.034604218, + 0.010615723, + 0.0055213985, + -0.029278534, + 0.004542654, + 0.008739099, + -0.05053474, + -0.02132009, + 0.032033637, + -0.020564023, + -0.01659775, + -0.025892744, + 0.0058364724, + -0.04819993, + 0.013687269, + -0.03560545, + -0.055812072, + -0.045638718, + 0.01083948, + -0.029493583, + -0.012436738, + -0.02934035, + -0.042110585, + -0.032003377, + 0.0083217565, + -0.03069937, + 0.0012033547, + -0.022086078, + -0.010818866, + 0.027821809, + -0.026773995, + -0.051233657, + 0.008323365, + -0.02734153, + 0.009519343, + -0.04744087, + 0.010183918, + 0.018354932, + -0.011715959, + 0.054368738, + 0.008337667, + 0.0027481616, + 0.07185645, + 0.0034698627, + -0.028853005, + 0.0033352, + 0.00624404, + 0.030217348, + -0.010084518, + 0.034578875, + -0.05219853, + -0.062442712, + 0.020227088, + 0.03271255, + -0.026009751, + 0.055659704, + 0.012502143, + 0.027354077, + -0.0031551344, + -0.001547778, + 0.011825508, + 0.0053365454, + 0.018765962, + -0.048425753, + -0.011486672, + -0.015349625, + -0.012383869, + -0.015225264, + -0.0050567733, + 0.013748017, + 0.031861346, + 0.025891658, + -0.022880191, + -0.018026667, + -0.013446658, + -0.014277713, + 0.019722898, + 0.03163491, + -0.003075594, + 0.038208317, + 0.017041577, + 0.054205284, + -0.0024155586, + -0.041316748, + -0.06848348, + 0.02027397, + 0.011127812, + 0.0059538456, + 0.0135318125, + 0.00944851, + -0.02877036, + 0.048151605 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json b/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json index 7b7ea696e..aefa67822 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json @@ -1,1341 +1,5249 @@ { - "description": "an example of images with work metadata for the API tests", - "createdAt": "2023-11-21T14:25:44.199338Z", - "id": "h34ad3uc", - "document": { - "modifiedTime": "1978-02-28T02:07:11Z", - "display": { - "id": "h34ad3uc", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an example of images with work metadata for the API tests", + "createdAt" : "2024-11-14T14:37:56.532694Z", + "id" : "a0jqzjtw", + "document" : { + "modifiedTime" : "1958-01-12T23:10:27Z", + "display" : { + "id" : "a0jqzjtw", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/N0a.jpg/info.json", - "credit": "Credit line: 9lfOcP9CU", - "linkText": "Link text: ZmbDu9GVg1", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", + "credit" : "Credit line: oF56Pxe", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/N0a.jpg/info.json", - "credit": "Credit line: 9lfOcP9CU", - "linkText": "Link text: ZmbDu9GVg1", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", + "credit" : "Credit line: oF56Pxe", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#579B5A", - "source": { - "id": "coaljebh", - "title": "A Ligurian style of bread, Focaccia is a flat Italian bread", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#BC1300", + "source" : { + "id" : "0nicager", + "title" : "A Ligurian style of bread, Focaccia is a flat Italian bread", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "h34ad3uc", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "coaljebh", - "sourceIdentifier.value": "TJ0AKA60d4", - "identifiers.value": ["TJ0AKA60d4"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A Ligurian style of bread, Focaccia is a flat Italian bread" + "query" : { + "id" : "a0jqzjtw", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "0nicager", + "sourceIdentifier.value" : "o97hEiMpb7", + "identifiers.value" : [ + "o97hEiMpb7" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A Ligurian style of bread, Focaccia is a flat Italian bread" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 3.0294477e-4, 0.013188538, -0.008244438, -0.02159364, 0.0046034004, - -0.015717613, -0.013886169, -0.008549661, 0.0036446543, -0.0034337859, - 0.026102828, -0.0031123925, 0.022344131, -0.009291552, -0.02286686, - -0.002015578, 0.006533347, -0.0029961278, -0.0037064285, 0.020909196, - -0.00392211, 0.008177105, 0.0045891334, 0.012879867, -3.2829167e-4, - 0.0113193095, -0.009161901, 0.01712289, -0.03513128, -0.03788799, - 0.011639718, 0.022376657, -0.0034591143, -0.019644016, -0.015093947, - -0.009703221, -0.018389488, -0.03189077, 0.0070480336, 0.0030149803, - 8.9975435e-4, -0.015437311, 0.022828242, 0.006027197, -0.0035681925, - 0.016083004, -0.021503324, 0.030245557, -0.0037326028, 0.0019238408, - 0.020026537, 0.0028937946, 0.00491214, 0.012339347, -0.015925894, - 0.0109921815, 0.004425152, -0.004049172, -0.023813406, 0.02035717, - -0.010631651, 0.012529114, 0.020759482, 0.013092335, 0.012267795, - 0.026225176, 0.011669459, -0.016009135, 0.020175524, 9.496139e-4, - 0.021550776, -0.0066541233, 0.04140646, -0.0019158006, 0.0029898118, - 7.899843e-4, 0.004944554, -0.002526859, 0.014850103, -0.006099686, - 0.010429773, 0.0040263073, -0.012441335, -0.00400354, 0.0040044994, - 0.0013841676, -0.0061682123, -0.028532, 0.016386932, 0.012268111, - -0.015210724, -0.010398147, 0.035101827, 0.0094790915, 0.014261852, - 0.0026707493, 0.0051935236, -0.010710384, -0.015544806, -0.018354448, - -0.02491945, 0.0045464383, -0.019162051, -0.0014280896, 0.001507756, - -0.006081266, 0.008126798, -0.0068341163, 0.009600392, 0.01377986, - 0.032810982, 0.016756145, 0.020726463, 0.031596422, -0.020298611, - -0.003694053, -0.013997036, -0.012272721, -0.018976336, 0.009365271, - 0.015643049, 0.037300777, 0.006193348, -0.020259624, 0.02699017, - -0.0021328167, -0.03446227, -0.0013684862, -0.0336662, -0.010185992, - 0.015223074, 0.0057539046, 0.0049007246, -0.0044485237, -0.0050426475, - -0.012017749, 0.006616572, -0.008851792, -0.003941731, -0.0019175771, - 0.023078987, -0.022054795, -0.0072617647, -0.012506566, 0.005897116, - 0.0069399606, 0.015427778, 0.0040518646, 0.023894282, -0.012484583, - -0.030543923, 0.0017566702, -0.016766967, -0.002525069, 0.011622711, - -0.017745527, -0.011034065, 0.0069007734, 0.018330999, 0.017831657, - 0.012361921, -0.0022593325, -0.0067414134, 0.011258174, 0.0028056034, - -0.014464758, 0.008102758, 0.029595437, -0.00850802, 0.014645092, - 0.013659642, 0.0029576684, -0.009048555, -0.0069313655, 0.012454442, - 0.0011511513, 0.0211021, -0.011518761, -0.03438718, -0.008168925, - -0.0082167145, -0.01790748, 0.019654008, -0.037075426, -0.0063765934, - -0.0052748984, -0.016693223, 0.037136097, 0.009441927, -0.007127713, - 0.014141406, 0.022885362, -0.009302217, -0.022924984, 0.02011295, - -0.03287549, 0.003966696, -0.016672388, 0.018518046, 0.0061776345, - -0.009804032, 0.0027197248, -0.0013371652, -0.009257572, 0.02990244, - -0.03302056, 0.029380435, -0.024928559, 0.0075298646, -0.0018029021, - 4.8255094e-4, -0.014619145, 7.6954206e-4, 0.0010042485, -0.004767802, - -0.0098105725, -0.011750605, 0.010709945, 0.0051634125, 9.4324135e-4, - 0.008836102, 0.006154993, -0.01617289, -0.016004022, 0.012749056, - -0.01119931, -0.0044447267, -0.0038944217, -0.019432357, 0.008986475, - -0.004944108, -0.035865128, -0.0075709135, -0.022515366, 0.0053460617, - 0.008316008, 0.009120582, 0.010795388, -0.008794206, 0.009574922, - 0.010614731, 0.026874693, -0.010867564, 0.0033921166, -0.0071649137, - -0.021458821, 0.0059124497, 0.0011332221, -0.004510692, -0.010774261, - -0.0014989753, -0.027934443, 0.012338762, -6.174025e-4, -0.029370073, - -0.021013685, 0.0028616805, -0.016208235, 0.013790556, 0.0064556086, - -0.019437762, -0.001975257, 0.022362998, -0.0016707646, -0.0090932995, - 0.008321761, -0.019141292, -0.0433353, 0.013181436, 0.010714935, - -0.016330741, -0.0129443, 0.0061857235, 0.015296014, 0.009918043, - -0.0047218115, -0.0018539152, -0.0011305953, -0.023715967, 0.010684154, - -0.007856083, -0.003559589, -0.009934892, 0.005883616, -0.0046574217, - -0.017037412, 0.005322517, 0.020856336, 0.041614387, 0.017735258, - -0.013358343, -0.01684362, 0.012210949, -0.010277592, -0.014309881, - 0.013606166, -0.015849296, -0.023255825, -0.0069821347, -0.004391028, - 0.017882025, 0.019803504, 0.021741364, 0.008268568, -0.0010246121, - -0.009815044, 0.019225972, -0.028585095, -0.030967802, -0.016218022, - 0.0031386395, 0.0051714373, 0.013927091, -0.026634017, -0.03547714, - -0.0082396595, -0.0031656784, -0.0071438816, -0.021085314, 0.041271463, - 0.02541183, 0.013110313, 0.014564857, 0.005176786, -0.014798411, - 0.014737186, 0.013175581, 0.015409256, 0.022097759, 0.003434327, - 8.3629315e-4, -0.024473762, -0.0073389574, -0.011101761, -0.005485376, - -0.0076953657, -0.009817563, 0.018356988, -0.0019518184, -0.0325078, - 0.005908333, 0.021517519, 0.012187212, -0.01641044, -0.024836773, - 0.026669135, -0.012144884, -0.014751342, 0.023904782, -0.01924997, - -0.0023101778, -0.026894942, 0.0062450333, -0.017498104, 9.7830954e-5, - -0.0040702424, -0.004845484, 0.010709633, -0.009574788, -4.1633286e-4, - -0.006047672, -0.001227155, 0.02220179, 0.01543443, 0.0051211966, - 0.009678102, -0.022814075, 0.013767803, -1.7222938e-4, 0.0252275, - -0.013037402, 0.015118323, -7.599392e-4, 0.0045805443, -0.008066266, - -0.030775988, 0.019650852, 0.0020749033, 0.012053224, 8.184761e-4, - -0.015683418, -0.01944627, 0.02910976, 0.029640988, 0.01598015, - 0.0107183475, 5.611075e-4, -0.03174575, -0.007607503, 0.030174356, - 0.0154572455, -0.011505089, 0.018609997, -0.011287526, 0.010443491, - 0.007381757, 0.008466747, 0.015049649, -0.035576604, 0.006800527, - 0.0026098036, 0.0100612445, -0.022100838, 0.02190334, 0.010435201, - 0.0062694685, -0.019697301, -0.029481389, -0.007242131, -0.00995795, - 3.6864445e-4, -0.0014242753, 0.013371309, -0.001594137, -0.00843556, - -0.0077542015, -0.03136704, 0.018329259, 0.01139649, 0.048847426, - -0.0012564873, -0.004208383, 0.021211127, 0.011474054, -0.0075528566, - 0.01162072, 0.004664372, 0.01294947, 0.005155397, 6.387185e-4, - 0.01118833, -0.01460213, 0.0026479885, 0.010633653, -0.008716014, - 0.0089280335, 0.0019893686, -0.00952047, 0.0045414637, -0.0035530268, - -0.005235371, -0.018191997, -0.007961961, 0.027815573, 0.0042762044, - -0.0067265523, -0.016731692, 0.008519181, -0.0101666385, -0.0021674735, - -0.027990172, -0.012339308, 0.033666223, -0.01896237, 0.0358928, - -0.005101748, -0.0052592023, 0.022330098, 0.011363857, 0.003103017, - -0.005422973, 0.021879377, -0.025816014, -0.0057476414, -0.03960815, - -0.013239309, 0.006909013, -0.03997615, 0.022475602, 0.016533025, - 0.014420593, -0.0017529161, 0.01343715, -0.01892111, -0.0064441036, - 0.004163805, -0.0068672956, -0.009394096, 0.0054094433, -0.021399396, - -0.019495426, -0.01144081, 0.01947952, 0.0023786607, 0.0058248676, - -0.009239956, 0.0019409523, -0.03966431, -0.0264686, -0.006258467, - -0.003533948, 0.007279995, -0.014349214, -0.0029273834, 0.0024108062, - -0.008818512, -0.005295128, -0.010098258, 0.01423874, -7.956329e-4, - 0.0022193377, 0.013342976, -0.011988174, -0.025405798, -0.0014676515, - -0.010595371, -0.0037252696, -0.009348509, 0.021938557, -9.867385e-4, - 0.008739823, -0.016047377, -0.01849581, -0.004107026, -0.01452352, - 0.016368477, 0.021221709, 0.011805164, -0.003635118, 0.008961669, - 0.005528651, 0.011474495, 0.012651916, 0.0019237587, -0.035946358, - 0.032574452, 0.023823824, -0.013144076, -0.01700319, 0.014307261, - -8.191329e-4, 0.008141782, -2.837502e-4, -0.020692846, 0.0066341166, - 0.030161405, -0.00138241, 0.018373037, -0.001738392, -0.024979781, - -0.0061931936, 0.028788593, -0.010785083, 0.0151870055, -0.011593628, - 0.0024649063, -7.887042e-4, 0.02049247, -0.0067937435, 0.023617188, - 0.020635454, -9.422502e-4, -0.013195716, 0.0031273614, 0.0092378445, - 1.0297313e-4, -0.013855555, 0.004018927, 0.04570827, -0.007579998, - -0.01781335, -0.004143157, 0.0056021726, 0.028632518, -0.029681133, - -0.013883382, 0.0034187322, -0.012611472, 0.022665884, 0.009163395, - 0.018126864, 0.0099442685, 0.0041391985, -0.00833699, -0.006235501, - -0.011305128, -0.0035568012, -0.017451545, 0.014942821, 0.019150697, - 0.016041597, -0.022135304, 0.0034753599, -0.015460115, 0.0018105555, - 0.009814472, 0.017384794, 2.5597008e-4, -0.012917315, 0.0105734365, - 0.008969952, -8.120887e-5, -0.0063124713, -0.014900714, -0.022277785, - -0.0041361614, 0.0021886309, -0.013202888, 0.01364067, -0.011991624, - -0.0072128554, 0.018505838, 0.036319476, 0.035428014, -0.004475784, - 0.024707468, 0.0026081032, -0.0086812135, 0.026804784, -0.011516497, - -0.011655745, 0.017681945, 0.031319678, -0.011589077, -0.018768834, - -0.010315484, -0.021216394, -0.006221981, -0.01907069, 0.0023579204, - -0.028716955, 0.033321027, 0.024392815, -0.002244804, 0.013012457, - -0.0016223518, -0.0018573109, 0.010341905, -0.017035585, -0.0010773689, - -0.011297704, 0.0155817345, -0.014050789, 0.015386795, 0.016245985, - 0.008831609, 0.002589173, -0.0012591297, 0.0035485453, -0.02121723, - 0.0052732066, -0.0056200223, 0.027861202, 0.018875472, 0.024829008, - -0.025698574, 0.0030773096, 0.026959095, -0.023766037, -0.025535401, - -0.027188977, 0.006193516, 0.03860283, -0.02157928, -0.023708243, - 0.0059179775, -0.015303261, 0.0015378655, 0.0026772814, -0.012964572, - -0.013733331, -0.0049615107, 0.0056767017, -0.0010299779, -0.012887668, - -0.008333383, 0.025233744, -0.022093534, -0.024635889, -0.011954192, - 0.0052050985, -0.019777788, -0.003766752, -0.02015859, 0.0045051742, - 0.035349485, 0.0033535883, 0.01846278, 0.0012430821, 0.010195806, - -0.01497011, -0.0019388684, 0.0100589795, -0.011109634, -0.041965887, - 0.006006617, -0.009443888, 0.003637878, -0.017187757, -0.016379775, - 0.02598709, -0.023086209, -0.0015851991, 0.03784159, 0.026475685, - 0.009620519, -0.010148089, -0.016275568, 0.008007203, 5.511348e-4, - -0.027380789, -0.019052338, 0.004430684, -0.020912334, 0.00732516, - 0.015338065, 0.014155454, -0.0071101817, 0.0052114623, -0.021504527, - -0.0064958353, 0.013644837, 0.01343043, 0.014818057, 0.0075923777, - -0.013813279, 0.008244742, 0.030665334, -0.00474312, -6.79096e-4, - -0.0051422426, -0.022764988, -0.008272792, 0.013537635, -0.010899687, - 0.00751259, 0.010257209, 0.02212922, 0.014319405, -0.010467488, - -0.008380556, 0.024989601, 0.0061987326, 0.01942014, -0.013159213, - -0.016259689, 0.029255146, -0.0046725613, -0.0148523385, 0.005710286, - 0.009233896, -0.016465269, 0.0029611834, -0.010295564, 0.008750345, - 0.008408109, 0.021565026, 0.010676275, 0.022224898, 0.006014099, - 0.011434534, -0.0068310658, 0.006560356, -0.0037331216, -0.003017906, - -0.013120718, 0.0038122404, 0.019093208, 0.020682411, 0.04076939, - 0.0066583855, -0.022742586, -0.0015158828, -0.0071239495, 0.010755716, - -0.015319436, -0.018658526, 0.011054104, -0.00683657, 2.3355188e-4, - 0.016546544, -0.0014498503, 0.029012922, 0.014240591, -0.0063638054, - -0.0046466645, 0.011803551, 0.013442811, 0.0066619623, 0.010905735, - 0.010282965, -0.010024762, -0.0055754203, -0.014303262, -0.004355178, - -0.014959167, 0.009236321, 0.0058163586, -0.01905564, -0.009500967, - 0.009817913, -0.03132816, -0.010045443, 0.022324683, -0.004075354, - -0.012520504, -0.018436393, 0.013151436, -0.010074627, 9.772346e-4, - -0.02115361, -0.011260708, -0.023799345, -0.027365813, 0.0144699095, - -0.00394179, -0.025233757, 0.016904084, -0.0068083866, -0.0018543229, - -0.010541118, 0.0030206582, -0.016683025, 0.03209251, 0.0048982576, - 0.009864724, -0.024905795, -0.01995905, -0.014649013, -0.028946191, - -0.01793452, -0.005549314, 0.017343773, 0.022348821, -0.03275404, - -0.007993052, 0.016946437, 0.018985542, 0.010223233, -0.0023924715, - 0.018890992, -5.922062e-4, -0.009502748, 0.022967454, -1.8185751e-4, - -0.015391793, 0.026631866, -0.0199686, 0.0026523203, -0.0107529955, - -0.006098576, -0.031667072, 0.011330882, 0.022647196, -0.012775855, - -0.0017743375, 0.0060535623, 0.009224886, 0.008641524, -0.0017153937, - -0.025558291, -0.021623617, -0.0075848172, 0.0033922119, -0.0015178963, - -0.021309014, 0.0024399336, 0.020746676, 0.0049642203, -0.0039369287, - 0.0029529396, 0.017375885, 0.009276632, -0.017424874, 0.0031626064, - 0.003947677, 0.011217108, -0.022958832, -0.019563705, 0.0042113718, - 0.0075609055, -0.007999451, -0.01209298, 0.0059120595, -0.009016881, - -0.02741783, -0.013971706, -0.0048345146, -0.024686204, 0.0072030365, - 0.026972812, 0.0076104184, -0.021510947, -0.0047455085, 2.3044701e-4, - -0.010009068, 0.020645253, 0.022140527, 0.0061296667, -0.022920782, - -0.0043267333, 0.015865773, 0.022172388, -0.0035809444, 0.014378457, - -0.01557876, 0.028893406, -0.0016512066, 0.0063690213, -0.0024253018, - 0.007577549, -0.01850795, -0.010129385, 0.012241593, 0.011795805, - 0.026894413, -0.03691635, 0.024439838, -0.022532448, -0.025544247, - 0.0064463024, -0.0037232845, -0.0016563726, 0.0013593149, -0.009199807, - 0.012686472, 0.005629887, 0.0048243087, 0.0028048833, -0.0020478545, - 0.008551952, 0.011008557, -0.007540049, 0.002883962, 0.011099806, - 0.020476295, -0.023509936, -0.0044607986, -0.0033557732, 0.00968507, - -0.0174962, -0.020194981, 0.0043566846, -0.021372067, 0.020162709, - 0.014372921, 0.01509288, 0.0055342624, 0.00735015, -0.024877723, - 0.007772015, 0.008637521, 0.012888806, 0.03915204, -8.5643673e-4, - -0.0065775216, 0.008326011, -2.742732e-4, -0.004598093, -0.007643517, - 0.036900308, 0.016268596, -0.008406044, -0.0083387615, 0.02268582, - -0.018396255, -0.0019104567, -0.010713426, 0.018263778, -0.015662542, - -0.0015386565, -0.008838472, -0.014166705, -0.0093074115, -0.0010815378, - 0.029108042, -0.0056511695, 2.8280218e-4, 6.3396426e-4, 0.012782871, - -0.0208291, 0.016334135, -0.005517316, -0.028906533, 0.03372496, - -0.020446483, -0.026810559, 0.005115821, 0.03161161, -3.6245515e-4, - 0.007885466, 0.0396192, 0.006212953, 0.0042186035, 0.02929624, - 0.022189366, -0.018491903, -0.025450103, 0.002477008, 0.01354057, - -0.033188462, -0.016979516, -0.0226282, -0.0015702761, 0.015619733, - -0.020779118, -0.008499499, -0.0067156893, -0.0011112174, -5.204751e-4, - 0.0058130953, -0.0029464327, -0.009730458, 0.008541093, 0.003086437, - 0.02076401, -0.019057704, 0.020011177, 0.009642415, -0.018041627, - -0.006569221, 0.011580937, 0.013021843, -0.011842321, 0.014204084, - 0.007460879, 0.0038578368, -0.006194988, 0.0034846172, -0.0064885295, - -6.4720743e-4, 0.006652854, 0.013277913, -0.005816714, -0.01644447, - 0.006844388, 7.904466e-5, 0.017503634, 0.040983755, -0.0139368195, - -0.002231535, -0.023001807, -0.027894648, 0.010696626, 0.020676991, - 8.684789e-4, 0.004969965, -0.019377055, -0.010585806, -0.0088847745, - 0.015594971, 0.009583503, 0.014978217, 0.008572422, 0.011411534, - 0.0063569527, 0.0019293949, -0.011140842, -0.020679135, -0.0011077874, - 0.004809657, -0.0132996505, 0.016771995, 0.01768534, 0.01291163, - 0.01486284, -0.019950856, -0.013311107, 0.022424443, 0.03973369, - 0.0070681656, 0.013848464, -0.02034434, -0.015942123, -0.0036960994, - 2.8146776e-5, 0.0024514238, -0.0013703877, 0.013942496, 0.028817246, - 0.0042143725, 0.025982073, -0.010893321, 0.0050419318, -0.007840597, - 0.003326582, 0.007841161, -0.026112538, 0.01746917, -0.0033903997, - 0.008419072, 0.014067202, 0.009458774, -0.0041779187, 0.01970324, - 0.013075513, -0.023091083, -0.019803124, -0.015950112, 0.010915498, - 0.0101694185, 0.0041972133, 0.005780176, 0.021449247, 0.005135588, - 0.0011703473, 0.015165912, -0.035298478, 0.025618056, -0.009106303, - -0.017753173, 0.018403225, 0.011764832, -0.0072305896, 0.004593056, - 0.021011416, -0.017825574, -0.01613028, -0.0015537629, -0.024063693, - -0.010074641, 0.004696341, 0.0040573208, -0.003705016, 0.012930168, - 0.0036369718, -0.0017597262, -0.024942389, -0.0030216058, 0.018306134, - 0.0011619689, -0.028819738, -0.014892801, -0.008569849, 0.022468694, - -0.0033694394, -0.0048111035, 0.025329389, -0.02498152, -0.02078711, - 0.0038543122, -0.0051939227, 0.022522926, 0.009227972, 0.025220435, - 0.012430338, -0.01663887, -0.004659486, 0.0042145187, -0.012272864, - -0.008451526, -0.0019382932, 0.021663914, 0.02517737, -0.003939836, - 0.013976827, 0.0061433036, 0.03461555, -4.6191525e-4, 0.018377021, - 0.006404774, 0.011033364, -0.0049624015, -0.023637313, 1.8428153e-4, - -0.018343061, 0.019946126, 4.405622e-4, -0.0045609074, 0.015367832, - -0.009725019, -0.002810821, -0.011956695, -0.011937882, 0.003369682, - 0.0030426222, -0.009132057, -0.006140932, 0.0056108083, 0.008363998, - -0.018375315, 0.0023292787, -0.022022245, -0.0071300576, 0.018922959, - -0.0019016387, -0.01502618, 0.010410678, -6.323951e-4, -0.008024706, - 0.011593522, 0.015654756, -0.004170618, 0.016605364, -0.008399528, - -0.045788247, 0.001521288, -0.019031273, 0.0016770252, -0.019084478, - -0.02387554, -0.028492915, 0.004149157, -0.0014805174, -0.002061987, - 0.0127540305, -0.028990407, 0.032175176, 0.0029532472, -0.009677831, - 0.009467106, 0.008368796, 0.016901737, 0.0053914827, -0.01309665, - 0.020493027, -0.01069815, 0.022520125, 0.0030927812, 0.016264409, - 0.017943641, 0.019045318, -0.022204258, 0.007998181, -0.013474506, - -0.012249069, -0.014429832, 0.010244674, 0.016987951, -0.02271658, - -0.012989608, -0.010037249, -0.01610542, -0.0015863383, 0.015267056, - -0.026158193, -0.0076514212, -0.009952807, -1.0883467e-4, 7.177895e-4, - -0.027595673, 0.013917927, -0.006214046, 0.0034011828, 2.1824319e-5, - -0.0015697536, -0.0057607093, -0.007909338, 0.009324047, -0.033406988, - -3.5974474e-4, 0.008141623, -0.014173055, -0.0050745183, -0.041203562, - 0.0024045722, -0.0068640467, 0.010045802, 0.0155611, 0.009892464, - -0.012666375, 0.015059961, -0.03275843, -0.015675705, -0.027225314, - 0.0031803006, -0.0056371926, 0.0052517676, 0.014430201, -0.0034807445, - -0.011040834, 0.010236424, 0.005317137, -0.01150221, -0.018282488, - -0.010183257, 0.0033247208, -0.010473998, 0.026626803, -0.008360079, - -0.002717267, -0.003667661, 0.005630208, -0.0058918493, 0.0106561715, - 0.017089237, 0.00211436, -0.0062502003, -0.009820828, -0.01879254, - -0.016394882, 0.0023046257, -0.02127689, -0.020521555, 0.009688765, - -0.014913642, 0.0056807958, 0.013274506, -0.010313188, -0.005112262, - -0.0044236374, -0.026979296, -0.00824834, -0.012064978, -6.5999e-4, - -0.024372809, -0.011605682, 0.007365163, 0.0060933884, 0.0199679, - 0.006779665, -0.013384569, 0.010396906, -0.0033241026, 0.011034079, - -0.02577771, -0.022685781, 0.014176547, 0.02824623, -0.011534357, - 0.03192937, 0.033201877, 0.02596595, -0.006480543, 0.01119773, - -0.017511878, 0.023156462, 0.02088638, -0.021176139, 0.0016588188, - 0.017627269, -0.007181058, -0.0061809774, 0.01686974, 0.009635687, - 0.002321582, -0.010830275, -0.0224572, 0.019363161, -0.0031254194, - 0.0020849458, 0.013034528, -0.010709347, -0.012720393, 0.026058331, - 0.019666066, 0.0012284196, 0.006811083, 0.012184311, -0.007447418, - -0.01483141, 0.013385895, -0.007716073, -0.010649703, -0.0013387449, - 0.0017156289, 0.020820526, -0.01974269, -0.019950498, 0.0071585216, - -0.02186103, 0.012835501, 0.009323581, -0.005445335, -0.017492179, - 0.00802327, 0.001057704, 0.016965115, 0.016048161, -0.0015912509, - 0.010836477, -0.010591501, -0.001212043, -0.016210534, 0.0036801535, - -0.010276983, -0.013576964, 0.0057648146, 0.0014560809, 0.0021269633, - 0.009865219, -0.023077127, 0.0071607903, -0.01347907, 0.016101362, - -0.013689114, 0.013124997, -0.040049464, -0.02840333, 0.0049919696, - 0.00822243, -0.016566519, 0.001900545, -0.0029003248, 0.0063805776, - -0.011825077, 0.00529599, -0.0021208783, 0.014264821, -0.0058789775, - -0.026675694, -0.0020680404, -0.0032543358, -0.02803579, -0.025767975, - -0.010010848, -0.009756356, 0.032920327, 0.012934711, -0.0026422688, - -0.03950226, 0.013299386, 0.0013958752, -0.0021740082, -0.011271161, - 0.017698374, 0.012038545, 0.0033685302, -0.012334184, -0.008413509, - 0.0071840016, 0.0023959444, 0.006709346, 0.016844237, -0.0022181482, - -0.0050553805, -0.0151009485, 0.003089315, 0.009618074, -0.020056944, - -0.012094033, 0.01836465, -0.0047863484, -0.010489928, 0.009093218, - -0.0020838897, -0.011943763, -2.9985723e-4, 0.006658699, 0.003637481, - 0.01709242, 0.005377201, -0.011639412, -0.012521393, -0.0049521513, - 0.018910654, 0.022519803, 0.008832738, 0.0030989144, 0.021802915, - 0.01192444, 0.014682188, 0.003744892, -0.015115864, -0.020102566, - -0.0069551677, 0.0039198515, 0.005879205, -0.014485749, 0.018349322, - -0.009964252, 0.0074012657, 0.0056732656, 0.025102507, 0.010418979, - 0.0033340717, 0.011633756, 0.0060631116, 0.014772911, 0.01937209, - -0.0013999419, 0.0061124275, 0.0056558484, 0.009610277, 0.008819413, - -0.031713765, 0.024169292, -0.0018558588, -0.014981688, -0.019392814, - -0.001002702, 0.008733984, 0.024320194, -0.0069719357, 0.014642732, - 2.5054766e-4, 0.014331553, -0.017853322, -0.013767617, -0.013357653, - 0.00239685, -0.00633339, -0.0017051976, -0.028115766, 0.0067876163, - -0.012741895, 0.01335109, 0.018673368, -0.014205697, 0.040033516, - 0.018480733, 0.0052829115, 0.005648288, 0.015839212, 0.023574034, - 0.0075474577, -0.014686209, -0.01142512, 0.004786165, -0.011142589, - -0.02065339, 0.0041637863, -0.017407203, 7.786098e-5, -0.026803842, - -0.004639845, -0.0055509964, 0.023224542, 0.005670164, -0.023827204, - 0.0038300855, -0.0016034447, 0.02251892, 0.010711597, -0.00807478, - 0.0011004168, 3.9488083e-4, 0.022720998, 0.009796617, -0.0033607704, - 0.005822804, 0.008475759, 0.0019121546, 0.008759064, 0.010702224, - -0.012965335, 0.029506657, -0.0064552682, 0.010730151, 0.018771168, - -0.015787205, 0.0026516665, -0.017684449, 0.004233834, 0.027590442, - -0.0024040772, -0.012693785, -0.016806599, -0.0013393944, -0.030860964, - -0.00657061, -0.0015999012, -0.0063144355, 0.0035144011, 0.024749037, - -0.033602454, -0.023801375, -0.007267138, -0.0015400229, 0.0014609087, - 0.043321438, -4.488413e-4, -0.0048865383, 0.0040612263, 0.03640909, - 0.0011500728, -0.0027172926, -0.009935951, 0.020781126, 0.0071781417, - 0.0060405005, 0.004107124, -0.019039925, -0.0024827188, 0.014020943, - 0.014796358, -0.031621978, -0.007034214, 1.7159042e-4, -0.008662839, - -0.0013839559, 0.011794084, 0.019664828, -0.004756894, -0.025679193, - 0.010437162, -0.0056279046, 0.028972922, -0.012339722, 0.0048238556, - 0.004257454, -0.0019359158, -0.008454193, 0.019096747, -0.0065015345, - -0.012563891, -0.021022538, -0.018201144, -0.0015771065, 0.0024963343, - -0.016455302, -0.015226789, -0.02035466, 3.605799e-4, 0.013209624, - 0.004224544, -0.01712164, -0.017652905, -0.018246483, 0.034117, - -0.011502425, 0.0073959436, -0.0034769177, 0.011450104, -0.012472782, - -0.014686903, 0.041339405, -0.024322245, -0.03727647, 0.012205608, - -0.015554925, -0.007294462, 0.0026779391, 0.008332616, -0.018564405, - -0.033480015, 0.0041120215, -0.015182954, -0.0014270934, 0.018887976, - 0.011380842, 0.039471965, 0.0050233626, 0.013877504, -0.009642544, - 0.003359649, 1.3786786e-4, -0.014057957, 0.0013622409, -0.01434016, - 0.04460197, -0.022890873, -0.0021777838, 5.891101e-4, 0.0010559614, - 0.010866632, -0.0023378434, -0.006487032, 0.01771488, -0.0021958542, - 0.012305152, 0.0012498046, 0.011196443, 0.0011153718, 0.013180086, - -0.005637025, 0.0028677671, -0.040113524, -0.0056707826, 0.029341508, - -0.0033168604, 0.007676188, -0.008771378, 0.018959312, -0.007862061, - -0.017727457, 0.0073781856, 0.022574574, 0.0045876484, -0.009928633, - -0.039423943, -0.036084414, -0.01577342, 0.01842287, -0.019718904, - 0.025775064, 3.3141577e-4, -0.0025234772, 0.004501592, -0.010166281, - 0.0028242518, 0.0035038362, -0.002235035, -0.012276596, 0.01887982, - -0.008847701, -0.0028986342, 0.015705146, -0.01280351, -0.017957741, - -0.021486202, -0.02380611, -0.020841846, -0.029570535, -0.00438582, - 0.010086214, 0.022730542, -0.031745557, 0.002583933, 0.0086359, - 0.011401243, -0.013915172, -0.03727507, 0.010275178, -0.017502759, - 0.003772205, -0.012488419, -0.022373762, -0.019661166, 0.0036241661, - -0.029870113, -0.013197166, 0.020331498, -0.007699845, -0.0050379597, - 0.0026986008, -0.0134931635, -0.011384186, -0.004852175, 0.018621545, - 0.010601509, 0.011378291, 0.024158211, 0.013345855, 0.0032495144, - -0.0084310295, -0.017975284, 0.024263287, -0.01377026, 0.0019808225, - 0.012982775, 0.0015931221, 0.0057130894, 0.012003249, -0.016776081, - 0.005225946, 0.0028454678, -0.010151935, -0.018879145, -0.004878427, - 0.023428528, -0.008804164, 0.006716606, -0.0045231106, -0.0072533223, - 4.701854e-4, -0.008012802, -0.0080471495, 3.295985e-4, -0.014333769, - 0.027372094, -0.003816187, -0.005896727, -3.0903504e-4, 0.007286357, - 0.04221852, -0.011527078, 0.004528092, 0.022019079, 0.006312045, - 0.012673211, 0.0039905584, -0.021822697, -0.022038415, 0.030272532, - 0.02683985, -0.01547927, 1.4996265e-4, -0.026763108, 0.014097221, - -7.153274e-4, 0.018369593, -0.0084502995, 0.026056273, 0.029295465, - -0.0041319192, 1.144395e-5, 0.0014656789, -0.0031393592, -0.0012360674, - -0.017828366, -0.0032775125, -0.013538131, 0.01685479, 0.014727342, - -0.0076269056, -0.014550859, 0.024115238, 0.039831426, -0.013962589, - -0.009626599, -0.026880886, -0.013404218, -0.014645436, 0.012323408, - 0.011161333, 0.008271676, 0.03028315, 0.020798031, -0.015205992, - 0.0034088357, 0.008110169, -0.008198827, 0.0035729674, 0.008861231, - 0.0055964044, -0.010582659, -0.009766698, -0.035736132, 0.011860259, - 0.0076880874, 0.019659318, -0.016013663, -0.0128690535, -0.005768326, - 0.0015655598, 0.014985854, -0.013079392, 0.010551921, 0.024123799, - 0.0200076, -0.009997726, -0.010217324, -0.0102409, 0.017528152, - 0.005225055, -0.0015870837, 0.013986708, -0.02016457, -0.00304043, - -0.013827261, 0.00949013, -0.006335409, -0.020566985, 0.0062801293, - -0.04758646, 0.009317245, -0.008775894, 0.03321321, -0.012449557, - 0.005698007, 0.009517353, -0.0071870913, 0.0025871883, 0.003842406, - -0.0018832985, 0.00852285, 0.024006533, 0.0044924617, 4.933789e-4, - -0.0029746953, -0.011082167, 0.023240773, 0.0062819635, 0.036752474, - 0.009504092, 0.01106696, 0.0047626616, 0.0018669984, -0.0013203603, - -0.011030555, -0.024780799, 0.010901143, -0.005986363, -0.029022517, - -0.021639766, -0.007888889, 0.0217145, 0.0041863583, 0.026558494, - -0.0023703477, 0.033792898, -0.052126057, -0.00562275, 0.021598697, - -0.014563489, -0.027402664, -0.010745142, -0.012293595, 0.022893671, - 0.01647181, -0.007990326, -0.019153852, -0.0028382582, 0.024709208, - -0.008253508, 0.014397089, 0.005159787, 0.016487222, 0.00664236, - -0.008806654, -0.0022223515, -0.016634842, 0.0035619081, -0.028470192, - -0.017037157, -0.004042158, -0.006199994, -0.014254918, 0.001426602, - -0.020374652, -3.8983737e-5, 0.034420878, 0.002632911, -0.021468008, - 0.0026231413, -0.012136365, -0.021313027, 0.008533256, -0.00699291, - -0.027807256, -7.1504345e-4, -1.174346e-4, 0.016660152, -0.0052120113, - -8.6111284e-4, -0.026695535, 0.028563565, 0.020765064, -0.013802719, - -0.005235163, 0.008020513, -0.020262964, 0.0014650968, 0.021157945, - -0.026671855, -0.023495678, -0.0078540025, -0.022959003, -0.0068823285, - 0.012738696, -0.023448132, 0.026580734, -0.0043746773, -0.03754026, - 0.0010456392, -0.02556474, -0.0063036885, 0.017768713, 0.0096217925, - -4.5780118e-5, 0.01652618, -0.02894314, -0.0057153134, -0.012202263, - -0.003172137, -0.012312439, 0.001676528, 0.018336128, -0.0074199997, - -0.004690269, -0.020642255, 0.012438025, -0.01743157, 0.0140373735, - 0.007034679, -0.017718175, 0.0022938463, -0.0023191937, 0.0022665139, - -0.025932975, -0.0028565817, -0.018254181, 0.009768051, 6.893754e-4, - 0.026101975, 0.0036806457, 0.010936104, 0.012670494, -0.009742101, - -0.007497241, -0.006492937, -0.006048342, -0.0132188955, 0.009697396, - 0.034462165, 5.2849576e-4, 0.01177384, 0.020753847, 0.011447753, - -0.014110565, 0.017112495, -0.019644372, -0.022059878, -3.1113424e-4, - 0.010263213, -0.0027156032, -0.012015268, -0.011292131, -0.027808426, - 0.007820271, 0.013439117, -0.005948942, 0.009240476, 0.024684964, - -0.0070720757, 0.002321201, 0.0014826381, -8.829162e-4, -0.0014823053, - 0.0042264154, 0.018096903, 0.016086804, 0.0059339665, 0.004880499, - 3.6738455e-4, 0.021395512, -0.040586118, -0.005125199, 0.015830768, - -0.0036072517, -0.016124567, 0.012369297, -0.0018705006, -0.014635584, - -0.016474303, -0.0038828272, 0.008134757, -0.0078215785, 0.0067498027, - -0.004369704, -0.0058374563, -0.0036786075, 0.0070175556, 0.016703162, - 0.021082707, 0.024112165, -0.022286804, 0.004421602, -0.006957162, - -0.025601892, 0.029033462, 7.3531095e-4, -0.011893304, -0.011560344, - 0.0026138038, 0.009014518, -0.0042820405, 0.011409356, -0.0037835934, - 0.005638435, -0.008488197, -0.023394365, 0.029087177, -0.0037447198, - -0.004974219, -0.0021425965, -0.02231991, 0.008784097, 0.023329332, - -0.012314559, 0.035885286, -0.019077735, 0.003380182, 0.025490683, - -0.0035343748, 0.0054875114, -0.017467424 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.005498854, 0.016790936, 0.013874195, -0.02094812, -0.008348712, - 0.016091859, 0.004361391, -0.009775973, -0.010962325, 0.0111556435, - 0.05010492, -0.0061821085, 0.013968058, -0.017734356, -0.012363937, - 0.016017437, -0.005132874, 0.008170817, -0.0012694797, -0.017983058, - 0.012944069, -0.02156191, 0.007907694, -0.014089029, -0.034415, - 0.011374788, 6.735953e-4, 0.016345488, 0.021627657, -0.012103493, - 0.012113529, 0.009287077, 0.0013033585, 0.011959121, -0.010968927, - 0.009119712, 0.007978027, 0.004720586, 0.013009367, -0.024343792, - -0.02311795, 0.009460643, 0.008477505, 0.02031193, -0.02399411, - 0.004210179, -0.012976923, 0.012917704, -0.025090333, -0.023177741, - -0.01511798, 0.0061534964, -0.0030805916, -0.008925444, 0.006728332, - -0.018624518, -0.014425687, -0.01793357, 0.024058964, 0.00963056, - 0.0057778903, 0.014926333, 0.013608745, 0.02028056, -1.1272606e-4, - 0.011926583, -0.017563755, -0.018265916, -0.015173093, -0.026904035, - -0.015008747, 0.003755587, -0.0057449597, -0.020645712, -0.044215858, - -0.0013548634, 0.003862732, 0.008637116, -0.0060602278, -0.02430863, - -0.0046506887, -0.012465513, 0.012591163, 0.0010065661, -0.009794325, - -0.0059661237, -0.009504369, -0.0025179295, 0.023256658, 0.011578216, - 0.0035243945, -0.03146557, -9.08953e-5, 0.00917888, 0.013396073, - -0.011746969, -0.0029442501, 0.0105403075, -0.010247513, -0.008110989, - 0.030538665, -0.013319772, -7.3071686e-4, 9.1883514e-5, 9.646381e-4, - 0.0026107405, -0.0058456333, 0.009515241, -0.008335379, 0.011118357, - 0.013880574, -0.031440362, -0.0039233468, 0.005436402, 0.011807198, - -0.008749184, -0.010726749, -0.019461187, 0.032917447, -0.008198082, - -0.04055732, 0.0075792046, 0.011205293, 0.014275681, 0.009646549, - -0.007354271, 0.025203649, -0.003036441, 0.0015849972, 0.008611305, - 0.029659243, 0.012584357, -0.014560506, -0.010492192, -0.0014416251, - 0.021550698, 0.0059277057, 0.01696958, -0.011585827, -0.0094647305, - -0.035564307, 0.01780027, -0.0023162547, 0.0071638706, 5.0393114e-4, - 0.024278054, -0.0031532648, 0.0030010033, -0.0026467294, 0.021855077, - -0.020355927, -0.049966756, -0.0050451625, 0.022187868, 0.030369721, - -0.005448286, 0.010351625, -0.008577018, 0.011178357, -0.0017686643, - -0.023686094, -0.025036287, -0.005050402, -0.01678134, -0.025835017, - 2.0878429e-4, 0.017060256, -0.0024023468, 0.008439523, -0.012117781, - 0.013011289, 9.6528145e-4, 0.0046591796, -1.9030175e-4, -0.018207556, - -0.00840243, 0.036526687, 0.025142428, 0.012135046, -0.008070193, - 0.014017165, 0.019275336, -0.021413362, 0.0054508992, 8.869106e-4, - 0.0016400914, 0.01538949, 0.0036061334, 0.015731545, 1.3703734e-4, - -0.023822604, 0.0065634865, 0.006081061, -0.021426933, 0.0038335174, - 0.037610397, 0.012000425, -0.0077744937, -0.0071390755, -0.030805513, - -0.009052229, 0.0023279001, -0.014551495, 0.0042860275, -0.009780248, - 0.0115937255, -0.016744886, -0.02062348, 0.0021093534, -0.005167173, - 0.009382292, -0.022020781, 0.017229838, -0.0044810795, 0.0078232065, - 0.013959443, 0.0010090754, -0.0037606135, -0.003482265, 0.017602775, - -0.001833806, -0.009643807, -0.006324013, -0.0029492362, -0.0045894287, - -0.009108566, 0.022437083, -0.0028258224, -0.042358182, 0.014143638, - 0.0018791433, -2.8385918e-4, -0.0054857284, 0.0025813498, -0.01200093, - 5.2537734e-4, -0.015348432, -0.023784852, 0.0034543432, 0.0165054, - -0.009974602, 0.02502652, 0.009597742, -0.004768071, 0.033428077, - -3.077727e-4, 0.0031394027, -0.020123595, -0.0056726187, 0.0010510695, - -0.014711037, 0.007061351, -0.0035751902, -0.035640206, 0.0133711975, - -0.035576563, 0.001349386, -0.019435981, -0.0036248825, -0.0031646122, - 0.0072920634, -0.011536334, 0.037688263, -0.0049907137, -0.0071053086, - 0.027793607, -0.039717607, -0.01643869, -6.1374943e-4, -0.010962016, - -0.0034895793, 0.021843664, -0.02092965, 0.014483762, -0.003957763, - 0.010788849, -0.029361749, -0.0030925898, 0.009176229, 0.023018053, - 0.00653737, -0.0131602, -0.005801273, -0.0030885276, -0.0047096726, - -0.0075700707, 0.009679807, 0.02510186, -0.015494021, 0.021148011, - 0.02764339, -0.037130225, -0.011637776, -0.012772204, -0.0022740248, - -0.006677726, 0.013688203, -0.008745091, -0.021244675, 5.194437e-4, - -0.022836026, -0.01971711, -0.014068184, 0.001608781, 0.012892345, - 0.016738096, -0.0155296875, 0.002874706, 3.5652737e-4, 0.0026662326, - 0.010301927, -0.036885817, 0.005938575, -0.012507945, 0.010331563, - -0.029234499, -0.026113097, 0.008490563, -0.008102518, -0.004930284, - -0.0075630867, 0.01397329, -0.0057632555, -0.0036642652, 0.009698725, - -0.011941975, 0.01114814, 0.021151233, -0.004111123, -0.02238432, - -0.0106534455, 0.004244106, -0.03509849, -0.015501808, -0.027504481, - 0.010752449, -0.0082593225, -0.015898881, 0.0070958207, -0.00864727, - -0.02314991, -0.014754788, 0.0142045235, -0.016623376, 0.013889564, - -0.016088162, 0.007509301, 0.010116186, 0.006451969, 0.030496249, - 0.0045755473, -0.019460786, 0.016599892, -0.0054851035, 0.045339815, - 0.006072467, 0.0027201893, 0.0040465905, 0.024983037, 0.012201321, - 0.0010719334, -0.0028629412, -0.029683683, -0.005348954, -2.2366083e-4, - 0.01597765, 0.015709542, -0.008754828, -0.02039191, 0.011045618, - -0.005702597, -0.020029599, -0.015807133, 0.019406127, -0.0019388838, - 0.0025160015, -0.016376963, 0.00620059, -0.011593879, 0.02109219, - -0.011324575, -0.011068419, -0.01868399, -0.0052700355, 0.009091695, - -0.02466458, 0.007945478, -0.0126959365, 0.003930315, -0.0016527594, - -0.005532814, -0.010734381, 0.028362826, 0.009329496, -0.003379674, - 0.0075620078, 0.011570819, -0.0032144825, 0.0026680087, 0.0177334, - -0.015930528, 0.030069856, -0.02060092, -0.00260126, 0.01093229, - -0.007905846, -0.0046932846, 0.008397293, 0.01610562, -0.008309935, - 0.010256048, -0.020626387, 0.0109081175, 0.004986928, 0.011954442, - 0.0126043875, -0.007558985, -0.0037558558, -0.009798539, -0.00285116, - -0.020828677, -0.011799397, 0.0064754724, 0.008078897, 0.0015485731, - 9.937438e-4, -0.02001186, -9.848748e-4, -0.0029231356, -0.0123885665, - 0.0067588976, -0.013278457, 0.033424057, -0.017046183, 0.0058741733, - -0.010274727, 0.0068847034, 0.008853113, -0.0020409352, 0.030618317, - -0.0057468177, 0.023346385, 0.020311201, -0.012336867, -0.006039412, - -0.0072301123, 0.029110426, 0.0046226126, -0.0018179719, 0.0047054687, - -0.03114963, 0.022302518, -0.020400979, -0.020073263, 4.424846e-5, - -0.009232483, 0.008069957, -0.016637258, -0.002343769, 0.0074460907, - 0.02156642, 0.013644382, 0.0024782778, -0.025078706, 0.0055545075, - 0.013459867, -0.027125403, 0.005171094, -1.3277456e-4, 0.017078653, - -3.1845926e-4, -5.199458e-4, 0.027185632, -0.02026331, -0.0026596095, - -0.021214325, 0.013026297, -0.002271225, -0.00922971, 9.4254385e-4, - -0.0066249873, -0.029724943, -0.016381703, -0.011702138, -0.014630737, - 0.0026895965, 0.0050512715, 0.011610146, 0.0030323341, 0.029650683, - 0.01071054, 0.018788572, 0.014197915, -0.031279016, -0.0028875186, - 0.023299342, 9.976169e-4, 0.0049354592, -0.009429331, -0.0019852894, - 0.0047771437, -0.013422206, 0.02306009, -0.015548772, -0.006703021, - -0.018065125, -0.028415447, -0.006728738, -0.009475228, 0.0058576604, - -0.018140286, -0.020126143, 3.384418e-4, 0.0014141657, -0.005882674, - -0.0051121744, 0.0066060843, -0.022167312, 0.0024046956, -0.043514717, - 0.02005362, 7.278361e-4, 0.013119514, -0.0029292183, -1.6449988e-4, - 0.0047759754, 0.013389525, 9.794888e-4, -0.004468356, -7.7116775e-4, - 0.011477495, -0.004154607, 0.0012537737, 0.017880322, 0.0050181285, - -0.047145866, -9.586765e-5, -0.019361485, -0.0011206602, -0.025865672, - -0.0012269338, 0.0039560245, 0.01840456, 0.0030774944, 0.006661977, - 0.016080614, -0.008893503, -0.026594637, 0.0021193281, -0.009396717, - 0.016889252, 0.013294988, -0.011430601, 0.0013126561, 0.021386668, - -0.020224333, 0.008254844, -0.015057913, 0.028608236, 9.906454e-4, - 0.002812526, -0.010837408, -0.0025251766, 0.0012836235, 0.030882267, - 0.0027719545, 0.023661021, -0.005896818, -0.016829468, -0.002560872, - 0.0123612005, 0.04628133, 0.0063458364, -0.014940993, -0.02040649, - 0.004657432, 0.016263956, 0.043813728, -0.023578541, 0.010284644, - -0.026948377, 0.02044521, -8.057908e-4, -0.0024995632, 0.029674232, - 0.014803879, -0.019035432, 0.0020141804, -0.026689094, 0.02114553, - -0.026609326, -0.0031153804, 0.017428882, -0.0037365027, 0.013547612, - -0.010347135, 2.540201e-4, -1.3877414e-4, 0.004284291, 0.0035088295, - 0.01905981, -0.018519145, 0.0042932746, 0.005128978, 0.0037922813, - 0.012823264, 0.008527792, 0.016640274, -0.033343654, 0.01879961, - 0.002647758, 0.02623181, -0.005138592, -0.0030959095, -0.012047485, - 0.031361468, 0.03132275, 0.0154020665, -0.00842932, -0.004903432, - -0.040178653, 0.012149983, 0.007660303, 0.012546097, 0.009068127, - -0.0069676787, -0.030933263, 0.012634624, -0.016686812, -0.006229875, - -3.187042e-4, 0.0037934473, 0.03629113, -0.0054013696, -0.013777846, - -0.0038334762, -0.0011861074, 0.0041797454, -0.004193918, 0.008583782, - 0.025921045, 0.012326193, 0.0117765, -0.008377033, 0.018307386, - -0.009792281, 0.014599669, 0.0059017166, -0.0066293813, 0.016324839, - 7.3943584e-4, 0.014376744, -0.009223485, 0.010637812, -0.017100088, - -0.0051369015, -0.0029078647, 5.3994986e-4, -0.011606147, -0.013490685, - -0.04418782, 0.020230656, -0.008343149, -0.013616665, 0.021244068, - -0.0049868985, 0.009544019, 0.008116424, 0.0069038672, 0.0019320031, - 0.031853914, 0.0032536949, -0.006503182, -0.02286746, 0.015441591, - 0.011278577, 0.01107558, -0.01584592, 0.030163266, 0.008358687, - -0.0046143895, 0.013346542, -0.003148306, 8.234237e-4, 0.014184923, - -0.0019866596, -0.0016238553, -0.014428534, 0.020657936, 0.0063611297, - 0.0035958549, 0.009728873, -0.030435923, -0.00991771, -0.0033400063, - 0.018120497, 3.9531963e-4, -0.020201521, 0.012547063, -0.0027343773, - 0.01731291, 0.008019336, -0.011820138, -0.009432182, 3.0702492e-4, - 0.03181181, -0.007912649, 0.002944052, 0.014990954, 0.007558829, - 0.0010278887, -0.030574257, 9.166009e-4, -0.004430711, -0.014869499, - 0.0056822067, 0.017447941, -0.0012325167, -0.004177461, -0.004113345, - 0.016462363, -0.0017217364, 0.0039581154, -0.013718539, 0.010557155, - -0.024532225, 0.01977653, 0.01599479, 1.7511644e-4, 0.025012286, - -0.019405166, -0.018084092, -8.314607e-6, -0.02072554, -0.008244446, - 0.008568923, -0.006960303, 0.0047564027, 0.006708573, 0.026503207, - -0.018125858, -0.009946112, 0.005701613, 0.009846508, 7.325892e-4, - -0.0031681194, -0.015594463, -0.025170648, -0.00477254, -0.009250673, - -0.006498581, -0.0378628, -0.005345571, -0.0044838362, 0.015999574, - 0.025582591, -0.010141685, 0.020320773, 0.0017851597, -0.0041478085, - -0.020003835, 0.004269384, 0.011546419, -0.019324735, -4.888288e-4, - -0.0026020713, -0.010618107, 0.03273374, -0.0011062057, 0.026229281, - -0.00121019, -0.0065909224, -0.011754133, -0.018733643, 2.6866197e-4, - 0.013696063, -0.010314264, 0.0038923256, -0.021706417, -0.002839883, - -0.017436756, -0.027219469, -0.0079631535, -0.0026281865, 0.0047249612, - -0.0049498696, -6.055524e-4, 0.010701054, -0.0027647014, 0.013513517, - 0.008990565, 0.010980604, -0.0107814865, 0.030802561, -0.03163723, - -0.013033892, -1.3014213e-5, 0.016403034, 2.8971626e-4, -0.019547932, - 0.02488235, 0.020772826, -0.007959449, -0.026050162, 0.0016465945, - 0.020160647, -0.023119202, 0.04736609, 0.03560228, -0.015105223, - 0.0118364915, -0.0022338955, -0.0010085533, -0.0043172436, -0.013248509, - -0.0030250652, -0.0030496405, 0.006018285, -0.008325906, 0.016402474, - -0.023304258, 0.0077206544, 0.014948272, 0.026989145, -0.009479359, - 0.003872453, -0.013128403, -0.0071546207, -0.014975947, 0.02491453, - -0.0053166845, -0.014869857, -0.008275611, -0.029237852, -0.023828443, - 0.009310014, -0.010351699, 0.008504005, 0.022337258, -0.010985227, - -0.014356265, -0.021783845, -0.022118693, 0.01395998, 0.010129562, - 0.008635354, -0.0079328185, -0.012651392, 0.027105011, -0.010221543, - 0.018039208, -0.008110187, 0.009870267, -0.0116257025, 0.020457303, - -0.04885632, -0.0020782053, 0.016886093, 8.079809e-4, -0.009972207, - 0.012933775, -0.010347045, 0.008696859, -0.023427084, 0.0082011325, - 0.0068234317, 0.015294426, 0.021034425, -0.022253992, 0.025291167, - 0.0060353717, 0.016811563, -0.022513863, 0.023597391, -0.002261597, - 0.004045694, -0.011116523, 0.018932492, 0.007094954, 1.4119237e-4, - 0.023393705, 0.02103789, -0.0017236389, -0.0011425966, 0.01223685, - -0.019102639, -0.03542859, 0.017065652, 0.020278886, -0.003609769, - 0.0062810695, -0.010416381, 0.013781847, 0.020111086, -8.110434e-5, - 0.035701305, 0.0019286453, -0.001046272, 0.011141679, 2.1382197e-4, - 0.0010718004, -0.016926678, 0.011370711, -0.004450138, 0.0021533626, - 0.0052034855, -0.020429784, 0.009650709, 0.013233275, -0.024181783, - -0.02376197, 0.011467367, -0.013848745, 0.0045594033, -0.019448588, - -0.021516768, 0.03500295, 0.006944456, -0.007730507, -0.012126748, - -0.0036784986, 0.02006037, -0.014109482, -0.008935745, 0.0038224033, - -0.0153097985, 0.017166091, 0.0063857688, -0.0030326876, 0.008735774, - 0.013274011, 0.015374662, -0.016984683, 0.0045298715, -0.012768463, - 0.011179415, 0.0040464764, 0.011004571, 0.007887506, -0.007095703, - -0.030129774, -0.015992763, 0.0010011689, 0.019020434, -4.6068957e-4, - -0.006307198, -0.009076362, 0.002005806, 0.0032783796, 0.010323067, - 0.010049185, -0.01825597, -0.0077484543, 0.0080727525, 0.019132333, - 0.019411907, 0.009938127, -0.0024252224, 0.015072256, 0.004034428, - 0.014789257, -0.0036290947, 0.011814661, 0.003546346, -0.010453974, - -0.009256094, -1.6573197e-4, 0.033009823, 0.0040028747, -0.0011446757, - 9.6297526e-4, 0.0044061486, -0.015940884, 0.024347873, 0.0063399593, - -0.027181396, 4.864364e-4, -0.020561947, -2.9978296e-4, 0.0060302913, - -0.024273477, 0.03258182, 0.005435147, 0.0059982124, 0.01562319, - -0.022130657, -9.88057e-4, -0.0057044527, -0.007127337, 0.0076939776, - -0.0019065193, 0.0017822128, 0.014986256, 0.006349935, -0.017189048, - -0.013497711, 0.0016568494, -0.0072771264, -0.016897142, 0.008745152, - -0.007780253, 0.032932818, -0.0026680722, -1.3549416e-4, 0.015377387, - 0.03959545, 0.0049998653, -0.02223121, 0.013574644, 9.567963e-5, - 0.02054536, 0.015272032, 0.014661686, -0.010467955, -0.001519782, - 0.011929838, 0.015246668, -0.013478935, 0.007554629, 0.021960268, - 0.0133704925, 0.015454919, -0.007035382, -0.025542445, 0.005400451, - -0.0031873735, 0.009701413, -0.014614162, 0.014941036, -0.034211297, - 0.019347722, 0.026854457, -0.013033949, -0.008045294, 0.0037994066, - 0.020862175, -0.001335736, 0.0028919964, 0.014294383, 8.141265e-4, - 0.0067137787, 0.03678081, 6.1038736e-4, 0.013092634, -0.0017765133, - -0.0067235716, 0.013850118, 0.006999952, -0.0025599068, 0.011946149, - 9.708335e-5, -0.013969495, 0.018335383, 0.0043585743, 0.0142528815, - 0.020926164, 0.006623793, 0.006931653, 0.022609407, -0.0021621028, - -0.022119602, -0.0098807495, -0.008733101, -0.007731845, 0.0018007366, - -0.018183766, -0.007672218, 0.0077598933, 0.007649179, 0.029057411, - 0.018611616, -0.0050291233, -0.004611405, 0.006048048, -0.0057055, - 0.048494153, 0.005035901, -0.01192641, 0.0052567627, 0.01640318, - -0.023974288, -0.0043214345, -0.0041574202, -0.033866018, 0.021560216, - -0.020710757, 0.018610477, 0.006084852, -0.0103985565, -0.00495447, - -0.0065503893, -0.0065049343, 0.008306797, 0.020471117, 0.040474527, - -0.019747322, -0.03605955, -0.015123478, 0.0118407775, 0.018803053, - 1.8864809e-4, -0.003190111, -0.009270311, 0.0035956735, 0.013156172, - -0.022827458, -0.02279854, -0.006639233, -0.01399622, -0.012263581, - -0.029133769, -0.019587724, 0.01669072, 0.024989193, 0.016367221, - 0.009853529, -0.015275706, 0.015452474, -0.013057571, 0.0011834349, - 0.007716665, -5.1313895e-4, 0.011835072, -0.005730292, 0.00787143, - -0.006358291, 0.015217638, 0.019048415, 6.122343e-4, 0.0073647355, - -0.0030825804, -0.0225125, -0.0111866025, 0.011503548, -0.004806336, - -0.023059575, 0.019177986, 0.012752745, 0.015183151, 0.0065921918, - -0.0068568815, -0.0010842732, 0.01705764, 0.0059798136, 4.1115194e-4, - 0.013403895, -0.009408663, 0.016676143, -0.0060022557, 0.0076120384, - 0.011582158, 0.0077317986, 0.011304113, -0.009741804, -0.00725146, - 0.0072657703, -0.0021608572, -0.018845087, 0.0013843167, 0.022885673, - 0.016083693, -0.014534952, -0.0071210912, -0.0085527245, -0.012462198, - 0.014454286, 0.0051122005, 0.006219006, 0.0014786514, 0.0068037407, - -0.021062264, -0.010815886, -0.004905983, -0.019823328, -0.009272535, - -0.0015224734, -3.1398004e-4, 0.0046362747, -0.013318837, 0.01403242, - 0.0036441595, -0.0074846386, -0.022467867, -0.0047696517, 0.01881419, - -0.008351511, 0.0065800427, -0.00948576, 0.005357814, 0.01897627, - -0.0033426455, -0.0050461395, 0.022177847, 8.2152814e-4, -0.004860102, - -0.012262446, -0.017228512, -0.006446043, 0.0045229867, 0.006868568, - -0.010095735, 0.023116333, 0.004040558, -0.005082191, -0.023060618, - -0.007971066, 6.880507e-4, -0.0071997647, 0.026875308, -0.012100493, - -0.0033984417, -0.037371825, -0.013801236, 0.0077543575, -3.9198255e-4, - -0.0025452832, -0.0036448585, 0.023317603, 0.01833654, -0.008424734, - 0.0022192483, -0.0010871432, 0.0067740087, -0.009048896, 0.006495313, - -0.016194606, -0.007601824, 0.013076451, 0.018456124, 0.0048129186, - -0.004127097, -0.013162045, -0.0022133302, -0.008907162, 0.033849508, - -0.021458242, -0.027279295, 0.01633947, -0.013662873, -0.004294006, - 0.02953713, -4.320784e-4, 0.008122002, -0.022782061, -0.013413307, - -0.013271806, 0.021809408, 0.016522923, -0.0051996442, 0.010336458, - 0.0040991367, 0.0043077515, 0.008832822, 0.0010341388, -0.03084462, - 0.016746761, -0.008760265, 0.029989528, 0.018218089, 0.00670625, - -0.0070110154, -0.0075027016, 0.0019113274, 0.0027400346, 0.026617263, - -0.015489434, 0.0014659051, 0.0126391845, -0.01364691, 0.016111644, - -0.005007929, 0.02111393, 0.0028385276, 0.007444846, -0.00614693, - 0.0073171104, -0.0017123629, -0.010283283, 0.015819918, 0.021692066, - 0.0060294513, -0.018972855, -0.04002377, -0.022574754, -0.032031815, - -0.012098418, -0.011893197, -0.014493617, 0.03220914, 0.003776079, - -0.015926732, -9.416781e-4, -0.015299001, 0.024992596, -0.027422592, - 0.025495097, -0.012315546, 0.01647972, -0.001105356, 0.0024273577, - -4.2499678e-4, 0.0046026804, -0.006561852, 9.7616436e-4, 0.012415587, - 0.012572283, -0.013971391, -0.02402848, 0.019096872, -0.014877964, - -0.0042766496, -0.015538186, 0.0036836758, 0.042681374, -0.011929924, - -0.040238082, 0.019771809, 0.02165659, 0.021480128, 0.0016811556, - -0.00859315, 0.020100795, 8.5745865e-5, 0.008684258, 0.03755981, - 0.008810359, 0.005216834, 0.03175851, 0.009087872, 0.0066639283, - 0.009190042, 0.02133365, -0.0137818325, -0.005400344, 0.024334714, - 0.003014487, -0.009342811, 0.009441836, -0.0159767, 0.017093668, - 0.023118665, -0.0059494674, 0.0045285374, 0.0045957635, 0.0072742454, - 0.0056052958, 0.012740951, -0.014018992, 0.016712546, -0.010476854, - -1.6976769e-4, 0.004465813, 0.0068396786, 0.012391488, -0.003354325, - -0.040672366, -0.015787836, -0.0037566277, -0.014832067, -0.013383514, - -0.028996732, -0.02088891, 0.017057268, 0.024098096, 0.0067746104, - -0.024384614, -0.014426053, 0.011913281, 0.02243786, 0.01363623, - -0.020197839, 0.005659466, -0.010194885, 0.007503101, 0.02377418, - -0.026209377, -0.0048430106, 0.02236141, 0.010648287, 0.012354009, - 0.0031409569, 0.009426683, 0.024866916, 0.003883724, -0.011299092, - -0.006858174, -0.0059460136, 0.0200766, -0.040782362, 0.0037659649, - -0.014350089, -0.0035070372, -0.026425049, 0.007870243, 0.0015547622, - -0.021594482, 0.0076804147, 0.01833711, -0.0061953175, 0.011098529, - -0.0062847747, 0.0054460946, -0.008235148, 0.02200508, 0.015486654, - -0.003113421, -0.0129977595, -6.0362107e-4, 0.0028040854, -0.027498618, - 0.026508432, -0.023121035, -0.01608845, -0.013816912, 0.0072244895, - -0.013987154, 0.010236415, -0.012805811, 2.879666e-4, 0.022813704, - -0.0049073077, 0.004340265, -0.018756837, 0.0059597273, -0.008755424, - 0.011242164, 0.012780478, 0.0077629574, 0.0027567511, 0.0019417979, - 0.03195439, 0.0075529665, 0.030402448, 0.009607199, -0.013974645, - -0.0050538653, -0.003444527, -0.009721185, 0.025931345, -0.026046218, - 0.007576639, 0.022565423, 0.0023587705, 0.014762483, 0.039976407, - 0.02132963, -0.0018339277, -0.01419381, 0.0052142716, -0.023396753, - -0.012068157, 0.004105147, -0.010951491, 0.0041127545, -0.009873341, - -0.003329406, 0.0134379575, 0.01571974, -0.01942862, -0.005724607, - -0.0010979439, -0.008367636, 0.0067010997, -0.0073845466, -0.012485495, - -0.013288404, 0.02071835, 0.009382031, 0.0037200174, 0.020269394, - -9.894205e-4, 0.032303054, -0.0049110083, -0.008282762, 0.004429429, - 0.0033922242, -6.8417157e-4, 0.005420097, -0.021378655, -0.011034738, - 0.027920583, 0.01993221, -0.001682291, 0.0016179546, 0.013173913, - -0.0407501, 0.008801878, -0.0067194854, 0.011773617, -0.02366218, - 0.015278377, -0.017173363, 0.0015130132, 8.315521e-4, 0.031534173, - 0.0059173303, 0.0042873994, 0.0127254585, -0.016786134, 0.037982844, - 0.03130538, -0.0113114845, -0.030640295, 0.0029426042, -0.003894505, - -0.0024355594, 0.007232218, -0.0014567735, 0.0016180375, 0.017216915, - -0.0086440835, -0.01948861, -0.014802481, 0.020562442, -0.012312148, - -0.0109838005, 0.012804952, -0.032500282, -0.02688235, -0.017257448, - 0.01534418, -0.009480409, -0.022064112, -0.015845383, 0.024109598, - -5.768522e-4, 0.020450057, -0.015585239, -0.0016218082, -0.00849663, - 0.005703053, -0.011520234, -0.0080663785, 0.021771872, -0.022135109, - -0.011180709, -0.021215959, -0.008890243, 0.011894071, -5.608891e-4, - 2.9470772e-4, 0.024663992, -9.6836226e-4, -0.0017075024, 0.008803799, - 0.0126326205, 0.0019879497, -0.009859813, 0.012014258, 0.034656867, - 0.02397551, -0.0070849927, -0.03605137, -0.010153004, 0.0073222523, - -0.0022445673, 0.011603501, -0.03267538, 0.012664059, 0.028192343, - -0.0011196561, 0.022073762, 0.025467334, 0.02326072, 0.0043789824, - -0.0058397823, 0.022073617, 0.0011105052, 0.022720758, -0.0155990515, - -0.019479658, -0.009728139, -0.0035859575, 0.016033638, 0.010777969, - 0.005458078, -0.012970564, 0.017326541, -0.003544827, -0.027923988, - -0.0064317216, 0.014073023, 0.002701494, -0.0050541465, 0.0028669247, - -0.0023841267, -0.017068464, 0.029961964, 0.010212084, -0.023731219, - -0.008857059, 0.027673827, -0.025048938, -0.020721955, -0.010033533, - 0.0012745386, 0.004058821, 0.0010315233, 0.013117677, 0.011154692, - -0.02329737, 0.0032285259, -0.02012016, -0.0060541355, 2.0325712e-4, - 0.016462274, 0.014895537, -0.0031813695, 0.0042932695, -0.0031199518, - -0.010350328, -0.00728, 0.031287212, -0.010417782, -0.018424187, - 0.030015735, -0.012110312, 0.017587671, -4.6735813e-4, 0.021012284, - 0.037400972, -0.018142838, 0.0408082, 0.0054695928, -0.021947319, - 0.015826013, -0.035096448, 0.010343046, -0.008409736, -0.00509439, - -0.029191751, -0.0052498677, 0.0028588907, -0.00403037, 9.492681e-4, - -0.0019508861, -0.0038270953, -0.004062917, 3.1557793e-4, 0.024040762, - -0.012036854, 0.018963803, 0.0045679314, 0.0020219546, -0.02322675, - -0.021950062, -0.007910479, -0.0085457945, 0.007998022, 0.031432908, - -0.010063774, 8.207739e-4, -0.013199518, 0.001735345, -0.010769078, - -0.0061374777, -0.027478185, 0.001115363, 0.0020273929, 0.010151815, - -0.0052560335, 0.004702274, 0.013935593, -0.0046590194, -0.0057712975, - 0.015663289, -0.0038947426, 0.024125276, 0.012858148, 0.026730904, - 0.0204802, -0.024882285, -0.0035109147, 0.010333766, -0.008299965, - -0.005319906, 0.002517088, 0.0072434423, 0.019611796, -0.0044712843, - 0.0067477124, 0.017098114, 0.031580206, -0.038446326, 0.022351611, - -0.029893553, 0.012406216, 0.004485883, 0.010863842, 0.0057106754, - -0.022702461, 0.011529343, 0.0011778043, -0.018662388, 0.0032182864, - -0.014136181, -0.010844135, -0.014037498, -0.015410694, 0.0030825557, - 0.011026209, 0.010296692, 0.011646626, -0.00845005, -0.022798581, - 0.0023796575, -0.003949203, 0.007771092, -0.0057641407, -0.0053326637, - 0.0059566745, -0.029408077, -0.010955523, -0.02038938, 0.0071477056, - 0.02451845, 0.010449516, -0.016756812, -0.011677002, -0.010077011, - -0.020238655, 0.0034539213, -0.0052720644, 0.006990036, -0.01983082, - 0.0152039975, -0.024179144, -0.0041621495, -0.01917441, -3.449749e-4, - -0.013115038, 1.2583601e-4, 0.016909227, -0.0066452026, -0.005927173, - -0.010572305, 0.015831871, 0.014886346, 0.018857375, 0.00860187, - 0.024084128, 0.019492336, -0.003290092, -0.009030186, -0.016922027, - -0.02480507, -0.006179743, 0.002994426, -0.007925066, 0.028520728, - -0.0026745417, -0.013685165, -0.013660922, 0.0020788761, -0.008439251, - -0.0056859506, 0.0032177563, -0.0018531404, 3.8989531e-4, 0.023370769, - -0.01013614, -0.014100914, -0.0056492807, -0.0032930374, -0.021811977, - -0.015862864, -0.0139571605, -0.0077188998, -0.0115827145, 0.025285194, - 0.019808529, 0.009054197, -0.004408176, -0.018362608, 0.011856713, - -0.008802359, -0.0053184186, -0.001805823, 0.0063749007, -0.0062917206, - 0.014281179, -0.006241584, 0.011055223, 0.0063838605, -0.00711695, - 0.009047053, 0.015539597, 0.01895687, 0.008192811, 0.0040328763, - -0.01816355, -0.00732752, -0.021506814, -0.021695038, -0.012951937, - -0.010917569, -0.010542045, -0.008122083, 0.012452064, -0.0013222331, - 0.014969547, 0.018247562, -0.018610053, 0.009107205, 0.038983267, - 0.006387817, -0.008878614, -0.0057988353, -0.03225076, -0.0017493882, - 0.02257541, -0.022085108, -0.016996723, -0.021658348, -0.0068199662, - -0.007933597, 0.013576155, -0.016354352, -0.007268682, 0.018273337, - -0.0077150427, -0.014011249, 0.010829809, 0.01611661, 0.007950567, - 0.004930636, -0.028535685, -0.002072635, 0.025930816, 0.026517479, - -8.488733e-4, -0.012965414, 0.0069063962, 7.970297e-4, -0.003165815, - -0.013402365, -0.024418617, -0.011760028, 0.0072945724, -0.013741968, - 0.004420048, 0.031079832, -0.0067879274, 0.012843923, 0.020305809, - -0.0042545875, -0.020547614, 0.011564486, 0.02167894, -0.031791072, - 0.009651011, -0.0063818675, 0.004784407, 0.011180742, 0.0089827655, - -0.019113386, -0.005325041, 0.01404901, 0.014961466, 0.010318458, - -0.008959379, 0.015713468, -0.008147865, 0.011387734, -0.0078014354, - -0.012411302, -0.0141092, 0.009122296, 0.009818015, -0.008435274, - 0.024551205, 0.015575601, -0.020976404, 0.019204957, -0.00898528, - 0.0015780801, 0.00747765, -0.0072947238, -0.009185021, 0.001939426, - 0.020877225, -0.023200447, -0.0032142794, 0.0060323286, 0.007208011, - 0.0057777604, -0.010118752, 0.024422966, 0.030785581, -0.0141787, - -0.019206095, -0.018562535, -0.00788065, -0.015382267, -0.008027198, - 0.026258184, -0.016223045, 0.029455561, -0.018655742, -0.0034522777, - 0.004846421, -0.0043858145, -3.8649642e-4, 0.015642216, 0.021316634, - 0.0073031113, 0.007243816, -0.011066479, 0.01578186, 0.024014028, - -0.01757528, 0.009465875, 0.010274546, -0.022736847, 9.123452e-4, - 0.013557848, 0.0032762764, -0.0011556956, -0.0059337215, -0.020654803, - -0.010851851, 0.00971138, -0.014356573, -0.0060511953, 0.011198683, - 0.036786802, 0.02127221, 0.00937625, 0.02242154, -0.0015147164, - -0.00729871, -0.015553602, -0.0074253976, -0.017903872, 0.029935863, - 0.012764546, 0.022154419, 0.002945877, -0.030592583, 0.016617132, - 0.01891595, -0.02484739, 0.014459485, -0.013133446, -0.0026423156, - -0.004623203, 0.0037892354, 0.028399618, 0.007758913, 0.0048858635, - -0.006499997, -0.019429078, -0.00232355, 0.0018318603, 0.014291551, - -0.009636622, 0.007835535, 0.02807567, 0.007794974, 0.011691315, - -0.024954047, -0.0025655439, -0.02754879, -0.018934745, -0.011384768, - -0.0017800204, 0.010216979, 0.016173182, -0.009239336, -0.0033287853, - 0.009973261, -0.019785922, 0.011450791, 0.046827335, 0.0075854887, - 0.016244134, -0.02250517, 0.0071237665, -3.4726135e-4, 0.008266969, - 0.018407226, 0.012045662, 0.0031042958, -0.0036403623, 0.0031349114, - -0.022507012, 0.009191246, 0.0054944237, -0.005424803, 0.009602105, - -0.031003581, 0.020243276, -0.005900505, -0.018521506, -0.010534409, - -0.015872004, -0.018306678, -9.901113e-4, 0.0107531315, -0.0143667655, - 9.34187e-5, 0.014367223, -0.005315889, 0.0035028937, -3.9648297e-4, - 0.003942911, 0.021880548, -0.009096576, -0.0071758344, 6.263981e-4, - -0.012515654, -0.040119115, -0.008265608, 0.018752467, 0.015449975, - -0.026443826, -0.012964014, 0.003231516, 3.0937325e-4, 0.01609274, - -0.006089489, 0.004289433, 0.013832734, -0.01816612, 0.0058427663, - -0.02709438, 0.026402751, -0.009615112, 0.006421045, -0.012079068, - -0.015793672, -0.0071121743, 2.9900626e-4, -0.028525136, -2.8340518e-4, - -0.015337485, 0.004624279, -0.019122189, -0.0072824233, -0.005514476, - -0.019714545, 0.017648274, 0.0098458845, 0.012128718, 0.020719755, - 0.008044056, 0.01409248, 0.012663389 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.0065667504, -0.013540269, 0.013736627, 0.07231696, -0.01484121, - -0.01946601, 0.007973229, 0.017999679, 0.0055474583, -0.04157689, - -0.02011108, -0.019213587, -0.01828789, -7.506501e-4, -0.013912146, - -0.017490203, 0.033457734, -0.005914278, 0.0020452312, 0.013712756, - -0.018095255, 0.0058970363, 0.020462226, 0.005497842, -0.0026017826, - -0.0017327177, -0.063690215, -0.006938592, 0.028089462, 0.02619156, - -0.040297873, 0.0061863894, -0.04367876, 0.01789535, -0.010162695, - -0.0074802944, -0.038736105, 1.5913913e-4, 0.004742556, 0.014182443, - 0.051238187, 0.016762633, 0.031288236, -0.016404888, 0.028821763, - -0.014742874, -0.04497757, 0.032575987, 0.019547656, -0.014662431, - 0.010854822, 0.018257057, 0.05739297, 0.031587455, -0.01066455, - 0.039648063, -0.00471194, 0.029247614, 0.056110553, 0.020043675, - 0.048176367, 0.011872532, 0.04379998, 0.027150927, 0.029622937, - -0.004854769, 0.022321524, -0.01796264, 0.003564651, 0.01788722, - -0.008725008, 0.07386147, 0.010584257, 0.021584634, 0.03456956, - -0.025264008, 0.034843564, -0.016971301, -0.013992446, 0.01124246, - -0.02481894, 0.020218909, 0.04115293, 0.050384033, -0.050722603, - -0.019745901, 0.06509445, 1.572326e-4, 0.08391488, 0.053428784, - -0.055025782, -0.011137769, 0.044090472, 0.013277167, 0.045189038, - -0.028493019, 0.025867295, 0.0072913733, -0.03907857, -0.0055702734, - -0.021759493, 0.017304542, 0.025242286, -0.041790172, -0.002527565, - 0.012158078, -0.0050832257, -0.016700035, -0.011258242, 0.02003357, - 3.2341288e-4, -0.0040939823, 0.026674207, 0.02160797, 0.050823253, - 0.00698236, 0.017102448, 0.031500906, 0.046249673, 0.0056093372, - -0.026257854, -0.032552622, -0.0026816803, -0.009113746, -0.0040924037, - -0.045827266, -0.05583546, -0.007917145, 0.056476563, 0.04667993, - -0.03370238, -0.053310875, 0.011381246, 0.07519016, 0.026129408, - -0.032339722, 0.0502618, 0.021383822, -0.022087555, 0.05591635, - -0.0013716589, 0.081210144, 0.06161026, 0.010378164, 0.05591647, - 0.035075624, -0.052809287, -0.012968869, -0.048317533, 0.0113620525, - -0.0046055056, -0.05741764, -0.02974979, 0.009981041, -0.026906842, - -0.013826474, -0.03211445, 0.029391078, -0.026811823, 0.013938257, - -0.018012855, -0.0019569667, 0.027639054, -0.007047607, 0.017332634, - -0.039628964, 0.027398257, -0.0218124, 0.015194076, -0.0081352, - -0.01070913, -0.0016525096, -0.037440453, 0.01717924, -0.0073914235, - -0.0037373386, 2.9942647e-4, 0.008626126, -0.015222304, 0.0015879316, - 0.006796251, -6.8779546e-4, -0.0030138723, -0.009634739, 0.037445668, - 0.007895652, -0.0089538125, -0.031604208, -0.041937128, -0.0038017314, - -0.023332959, -0.03361446, -0.0014400259, 0.0011625323, 0.00450314, - 0.010432348, -0.031218471, 0.04169167, -0.008335781, 0.0019310644, - -6.1578053e-4, -0.053252015, 0.011438162, -0.050219517, 0.013705444, - 0.06572624, 0.0115814945, -0.04193761, -0.058517184, 0.028637404, - 0.030897884, 0.004309801, 0.030459816, -0.015586205, -0.0060267304, - 0.031008013, 9.94037e-4, 0.01890201, -0.012315257, 0.010114268, - 0.0043287827, -0.028832974, 0.01803709, -0.060785178, -0.031420574, - -0.0656949, -0.022237834, -0.009236441, -0.06488601, 0.02449323, - -0.024943458, 0.025051326, 0.07466712, -0.045521565, -0.0207172, - 0.028123215, 0.007698315, 0.036386386, 0.021129804, 0.011126515, - 0.03726052, 0.04286381, -0.031326286, -0.027094193, 0.015074348, - -0.008810682, 0.0062347283, 0.025615314, 0.02549753, 0.078549236, - 0.016520405, -0.03897648, -0.061946504, 0.002076629, 0.0062129344, - 0.0010556822, -9.856118e-4, 0.004224398, 0.033474017, 0.00445631, - 0.047969427, -0.0016851544, -0.031065753, 0.060404584, 0.015695931, - 0.02525786, 0.055005655, 0.021593211, 0.032704256, 0.05900743, - 0.033288825, -0.017552197, 0.012038849, 0.0015107719, -0.03519663, - -0.022426745, -0.026296645, 0.045930766, -0.0028179523, -0.015571571, - 0.06580159, -0.028198715, -0.051264405, 0.0062222355, 0.016601747, - 0.016801013, -0.0019097754, 0.017213453, -0.018275725, -0.020144505, - -0.008581621, -0.01702236, -0.005054313, 0.034529403, -0.014411444, - 0.0013431854, -0.018495675, -0.0014205187, 0.0433988, 0.046206217, - 0.049413178, 0.0052135726, 0.0044813873, -0.00866605, -0.01654243, - -0.011536046, 0.021402352, -0.0035022318, 0.027302023, 0.061957963, - -0.07296125, 0.034656893, 0.020829251, -0.010116715, 0.07673485, - -0.04607805, 0.0019686874, -0.0021544232, 0.011515409, 0.020871844, - 0.042119633, -0.013928459, -0.024596455, -0.01655689, -0.0448622, - -0.01369774, -0.029324565, -0.014669304, -0.008459793, 0.008694758, - 0.021164961, 0.06967501, -0.07659777, 0.05181797, 0.026917422, - -0.054001223, -0.0044340533, -0.0050997003, 0.03758663, 0.014175133, - 0.032654032, 0.011158227, -0.03213293, -0.056517854, 0.025523156, - -0.036384806, -0.006498077, 0.046250068, 0.034264345, 0.009222604, - -0.026303684, 0.015927985, 0.014787945, -0.014997465, -0.053001624, - 0.042636547, 0.058800314, 0.020410419, -0.016361197, -0.019179342, - -0.021625891, -0.04463102, 0.019016583, -0.0014802417, 0.06217568, - -0.01228157, -0.04560483, -0.019081764, -0.004139882, -0.008511192, - -0.038037095, -0.0307054, 0.03805293, -0.057723157, 0.002933387, - -0.047218375, 0.002940024, -0.007177512, -0.0041074427, -0.037287146, - -0.019098647, -0.0050465073, -0.009938553, 0.028178759, -0.018945096, - -0.054908372, -0.046456546, 0.016913313, -0.04145794, 0.0093280235, - -0.05492388, 0.028455643, 0.049160305, 0.014745844, -0.04031407, - 0.01264215, -0.019298535, -0.06333134, -0.04299131, 0.052710567, - -0.019795828, 0.030388447, 0.013101712, -0.008886108, 0.04077668, - -0.005644389, 0.017954424, -0.017094333, -3.708123e-4, 0.038637724, - 0.026068553, -0.004529288, -0.0050351243, 0.06650403, 0.02457129, - 0.036664255, 0.010941284, 0.030468792, -0.008564116, 0.06938964, - -0.004323966, -0.014146276, -0.044359647, -0.06802927, 0.019811833, - 0.027059825, -0.026667226, -0.008335966, 0.026373224, 0.036594726, - 0.045689836, -0.025363924, -0.02532437, -0.0065321093, -0.017020592, - 0.005348094, 0.021486694, -0.011251785, -0.011519082, 0.022830756, - -0.02627955, 0.0021214038, 0.031211058, 0.021097146, 0.060425743, - -0.029297423, -0.020028776, -0.039342184, -0.023916006, 0.050784327, - 0.021460673, -0.03530749, -0.028237175, 0.07194857, 0.047971845, - -2.7358017e-4, 0.005676252, -0.022683332, -0.04138302, -0.022649394, - -0.025789397, -0.035155494, 0.019421345, 0.005186545, 0.008876837, - -0.013516259, 0.008661241, 0.035033822, 0.030684965, -0.03672271, - 0.006149354, 0.0403772, 0.02922636, -0.0071547315, -0.050959803, - -0.041478995, -0.034197867, -0.010791022, 0.015740596, 0.021867778, - 0.023871252, 0.009452228, 0.015165366, 0.059194427, -0.035229605, - 0.01510609, -0.088389575, -0.004137654, 0.0064813173, 0.070236884, - -0.038965266, 0.015990637, -6.792896e-4, -0.011507985, -0.03730273, - -0.033699892, -0.002012357, 0.027953135, 0.031867035, 0.007590346, - 0.013268094, 0.010017145, -0.030707268, 0.00898481, 0.02738574, - -0.0019614985, -0.027495805, -0.008183583, -0.008498907, 0.044459555, - 0.028332848, 0.0012875764, 0.03041753, -0.03412602, 0.038836546, - -0.03410532, 0.030822456, -0.0066213086, 0.042997386, -0.005296437, - 0.030867122, -0.0010170431, 0.0055258805, -0.048256315, 0.027938621, - 0.006996978, 0.0010698506, 0.049906798, 0.018981688, -0.014190109, - 0.021697467, 0.050833344, 0.058516964, 0.0015676256, -0.04004698, - -0.023610078, 0.035402935, -0.013329443, 0.0026313588, -0.028946783, - 0.0356658, -0.0047412696, 0.0037419868, -0.032754395, 0.033644564, - 0.004190612, 0.0049484614, -0.009726111, 0.055250984, -0.011068789, - 0.016007403, 0.010407727, 0.028606448, 3.869315e-4, -0.0037382096, - 0.0464648, 0.008095594, 0.009435875, 0.03873442, 0.03975133, 0.0727101, - -0.015560984, -0.02874188, -0.007895082, 0.040804762, 0.060492914, - -0.0057339384, -0.040281337, 0.018067686, -0.026638929, 0.017052894, - -0.020727657, -0.0348608, -0.035885576, 0.08696594, -0.011237121, - 0.046725623, 0.0561914, -0.04586644, 0.019669075, -0.017413778, - 0.0038830386, -0.022184832, 0.013013624, 0.005270587, 0.038630333, - -0.04079159, -0.039925713, -0.0069524786, -0.05456536, 0.038378328, - 0.021771219, 0.042680044, -0.0032909154, 0.026425961, 0.014627542, - 0.0019650506, -0.031483904, 0.005905657, 0.055059593, 0.063247636, - 0.058513273, 0.034195244, 0.030784233, 0.009300798, -0.021566283, - 0.027212823, 0.001661246, -0.045159478, 0.024027638, 0.029617747, - 0.042521752, 0.043283854, -0.046636544, 0.035935856, 0.012904958, - 0.0022495266, 0.04385539, -0.03257905, -0.030592542, 0.021066012, - -0.0062715937, 0.029385688, 0.028251668, -0.008100425, 0.008430731, - 0.022825366, 0.018222742, 0.059800997, -0.03656978, -0.017913409, - -0.023611967, 0.013867688, 0.024106301, -0.01366791, 0.020819012, - -0.01300738, -0.014367332, 0.015178154, 0.028475255, 0.043810584, - 0.001410004, 0.0075533083, 0.052763075, 0.0016410104, 0.0078062583, - 0.012254458, -0.010985992, 0.027293324, -0.065138094, -0.03219803, - 0.04523299, 0.012224194, -0.0075067203, -0.035967283, 0.041583057, - -0.017050555, -0.049294665, -0.019285684, 0.018290495, -0.008433427, - 0.0043719904, -0.034320302, 0.0011084642, -0.015393809, 0.030952888, - -0.045846615, 0.020764364, 0.031953063, 0.040424507, -0.035301685, - 0.043828964, -0.0071666744, -0.010661467, 0.008638891, 0.025382318, - 0.012369387, -0.0115861315, 0.012779837, 1.6602928e-4, -0.018400716, - 0.0038436952, 0.026432112, -0.025644813, -0.0140661895, 0.024420695, - -0.013824528, 0.011674014, -0.021069346, -0.010162147, 0.05903509, - 0.017060064, 0.023545263, 0.027866991, 0.0026968, -0.06094705, - 0.0064946874, 0.0115596475, 0.0054638, 0.020763563, 0.007048425, - -0.0087998705, 0.009696731, -0.011150652, -0.006744755, 0.022684794, - 0.020278534, 0.033465978, 0.050457686, -0.0055578602, 0.06828355, - 0.01964513, -0.068996795, 0.0048985016, -0.012728399, -0.0068968735, - 0.015443119, 1.6095434e-4, 0.04301921, 0.04954981, 0.03080329, - 0.0043558474, -0.0046550278, -0.04510996, -0.006062063, -0.03643999, - 0.011007404, 0.009945736, -0.036520276, 0.0065946477, 0.0074972794, - 0.023134641, -0.0012695102, -0.024754966, 0.053611156, 0.03024499, - 0.038603757, 0.0086148, -0.015676998, 0.0435281, -0.018153695, - 0.042211384, 0.0529154, -0.017559055, 0.012825441, -0.04351942, - 0.043793168, 0.026479876, -0.051986326, -0.033013657, -0.0095725125, - 0.009791229, -0.001599627, 0.0051934677, 2.7647006e-4, 0.03510849, - -0.007554211, 5.8947556e-4, -0.03596048, 0.008585112, -0.027587429, - -0.006644245, 0.028101997, 0.05074655, 0.022210175, 0.016155377, - 0.026084747, 0.028055705, 0.022783836, -0.01323419, -0.007310244, - 0.034870796, -0.028606964, 0.023259131, -0.016302746, -0.015800025, - -0.0103324205, 0.01905321, -0.033611648, -0.07219326, 0.015152986, - -0.019085167, -0.042774253, -0.01194134, 0.020406041, -0.02404184, - -0.009684503, -0.014472509, 0.011078883, 0.038509775, 0.04111836, - 0.04520361, -0.044415236, -0.068857685, -0.03491857, -0.010712831, - -0.0038054835, 0.03949322, -0.019544024, 2.3326196e-4, -0.05862986, - -0.031221094, -0.0072101066, 0.0014308338, 0.022915909, -0.022997357, - -0.01965452, 0.0034609807, 0.059085123, -0.016926179, -0.025966406, - -0.022537844, 0.010460529, 0.02006142, 0.011115678, -0.03533552, - -0.05523631, 0.029832484, -0.039050438, -0.061181787, -0.040406857, - 0.030141035, -8.690191e-4, 0.05419058, -0.029424598, 0.0037490625, - -0.008187454, -0.013317869, 0.037058156, 0.006411292, -0.021923669, - 0.017101783, 0.031790577, -0.002558435, 0.0057905964, -0.05596026, - 0.019782245, 0.028159212, 0.020570032, -0.071356095, 0.022167325, - 0.0026675025, -0.0085024005, -0.056969725, -0.008545617, -0.022324376, - 0.023272134, 0.009770054, -0.0060727866, -0.0010062802, 0.008006653, - -0.031272907, -0.030493267, 0.007074979, -0.0013535812, -0.050049867, - -0.012955466, -0.046210665, -0.018549804, -0.010591624, -0.010989363, - -0.04162909, -0.00928214, 0.040707156, 0.024093132, 0.008098625, - -0.009443368, 0.013437711, 0.027562257, 0.016962426, 0.00579842, - -0.0035290758, -0.038772587, -0.045818403, 0.040397923, 0.03715157, - 0.0103896875, -0.02624995, 0.053443503, 0.010177652, -9.829138e-4, - -0.054008752, 0.018115092, 0.006186208, -0.0020218976, 0.05557748, - -0.009431228, 0.007179254, -0.004097571, 0.031975903, 0.050572272, - 0.044599466, -0.033843845, 0.032453544, 0.01457161, 0.015260816, - -0.047900878, -0.07419425, -0.032108184, -0.026296275, -5.5238226e-4, - 0.024606986, -0.04529587, 0.019106809, 0.025729055, 0.018662363, - -0.033504523, 0.003796865, 0.004763982, 0.021789946, 0.0024252308, - -0.0113067, 0.048578836, -0.006481642, -0.010251597, 0.08776392, - 0.031857044, -0.027739262, 0.013159804, 0.008836162, -0.01020541, - 0.02541853, 0.009676072, -0.019438507, 0.022891829, -0.040616017, - -0.045867756, 0.02656071, -0.0367855, -0.050951276, 0.03664463, - 0.015142119, 0.026276495, 0.014969054, -0.0054513076, -0.013803315, - 0.019299274, -0.011260631, 0.05577242, -0.0027665093, -0.0077379793, - -0.027987018, -0.021302603, 0.043053795, -0.002442557, -0.08753242, - 0.022745324, -0.03579328, 0.018732546, -0.017549027, -0.02755854, - 0.029512703, 0.063835196, -0.016109444, -0.029294476, 0.055037145, - 0.081809364, 0.031371225, 0.0072951033, -0.008729084, -0.016802965, - -0.042745136, -0.0102770915, 0.030680692, -0.046917714, 0.008801581, - -0.02350039, 0.028548917, 0.0016669563, 0.053676456, -0.009129056, - -9.184615e-4, -0.016612072, 0.05490107, 0.014313099, 0.011075436, - 0.011884559, 0.018966535, 0.08761378, 0.06632269, -8.565703e-4, - 0.038218997, 0.024445888, 0.023611793, -0.0037288251, 0.04239772, - 0.058801986, -0.0309808, -0.025113046, -0.0012495435, -0.059725724, - 0.05458732, 0.005230559, 0.060206465, 0.02924392, -0.0017540986, - -0.007846695, -0.019106338, -0.0012749967, 0.026103495, -0.026939316, - -0.04490413, -0.005044642, -0.011810651, -0.05842706, -0.01668807, - -0.030008754, -0.04183543, 0.008042612, 0.021341179, 0.014456872, - 0.002470547, 0.063238494, -0.011264894, 0.031747974, 0.011190133, - 0.0032582309, 0.047577735, 0.0376929, 0.028530909, -0.018638974, - 0.05040141, -0.06337989, -0.04203803 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.0013886964, + 0.011064052, + -0.009729621, + 0.0073454967, + 0.012572947, + 0.01222345, + -0.0048718527, + -0.0032819128, + -0.018436354, + -0.015290559, + 0.001835915, + -0.002440764, + 0.03001955, + 0.0063346885, + -0.005460644, + -0.008160179, + -6.6724676E-4, + 0.0030504928, + -2.6045268E-4, + 0.0106174415, + -0.0035505248, + -0.01815218, + 0.009819627, + -0.010335032, + 0.0015206276, + 0.006756784, + 0.02440039, + 2.8667558E-4, + 0.0162647, + 0.013055181, + 0.025930526, + -0.0097664865, + 0.007572337, + 3.2279018E-4, + -0.0038101652, + -0.015756981, + -2.6876313E-4, + 0.018960407, + -0.017673803, + -0.008278409, + 0.0016291777, + -0.030459093, + 0.0021387711, + -5.592251E-4, + -0.008823365, + 0.0070749954, + 0.013398481, + 0.004137993, + -2.0092072E-7, + -0.008635387, + 0.008993725, + 0.010950026, + 0.037328247, + 0.04488572, + -0.0053825225, + 0.017508203, + -0.0021539067, + 0.0014163291, + -0.022952788, + -0.019181712, + 0.011944734, + 0.014467424, + 0.01340552, + -0.011463183, + 0.0040308307, + 0.0065688975, + -0.0011796464, + 0.010635839, + 0.011280927, + -0.0061446736, + 0.015852248, + 0.012750191, + 0.005925361, + -0.027749848, + 0.017304666, + 0.016576273, + 0.0075640306, + -0.017037664, + -0.009421124, + -0.0011985763, + 0.014177507, + -0.019454159, + 0.017946303, + -0.013522345, + -0.006723827, + -0.010936229, + -0.016597144, + -0.014299222, + 0.0011347578, + -0.010905213, + -1.066179E-4, + 0.0077842525, + -0.020692518, + -0.02352056, + -0.025039967, + 0.013816151, + -0.011980665, + -0.009045144, + 0.017024437, + -0.006361984, + -0.022827074, + -0.020716941, + -0.002413028, + 0.008091024, + -0.0052944943, + -0.0016051272, + -0.031016085, + -1.6193494E-4, + -0.025379023, + 0.020300109, + 0.02665938, + 0.008580873, + -0.0059914254, + 0.015552099, + 0.026261507, + 0.008892992, + 0.018197386, + 0.0076815896, + 0.051965117, + -0.022612123, + -0.014643317, + 0.004193289, + -0.0046159755, + 0.014508368, + -0.0126026245, + 0.028214436, + 0.01093671, + -0.0012766242, + -2.0919132E-4, + -0.03455948, + 0.018653022, + 0.007254833, + 0.007342063, + -0.03234979, + 0.0013999912, + 0.008528802, + 0.014033223, + -0.025375769, + 0.02053833, + -0.018958632, + -0.020864869, + 0.026812892, + -0.0027763008, + 0.012960751, + -0.0070075192, + 0.034984484, + -0.002276242, + 0.006325268, + -0.002722358, + 7.41634E-4, + -0.009656032, + 0.0020395145, + 0.010169933, + -4.879291E-4, + 0.034702055, + -0.02542948, + -0.008990349, + 0.0012319678, + 0.007030114, + -0.0060549174, + -0.017210204, + -0.01307235, + 0.00641711, + 0.024022998, + 0.015691385, + -0.016505886, + -0.009678985, + -0.0028342374, + 0.008938381, + -0.0014457491, + -0.0045215907, + -0.019803463, + -0.0019302007, + -0.0129400985, + 0.0026389346, + -0.012754267, + -0.024611855, + -0.0070854207, + 0.0031567845, + 0.013779895, + 0.0066997325, + -0.004722143, + -0.01617169, + 0.012061285, + 0.027548963, + 2.729709E-5, + 0.014152413, + -0.028883677, + 0.0070895255, + 0.01797028, + 0.0045901127, + -0.0082391305, + 0.024529016, + -0.010948874, + 0.013852399, + -0.04114748, + 0.017360192, + -0.003082356, + 0.007281506, + -0.0048643164, + 0.021226158, + 0.0028026726, + 0.012917913, + -0.0114136515, + -0.003490667, + 0.004030263, + -0.012589616, + -0.011978202, + 0.023468975, + -0.011915084, + -0.006239308, + -0.0071763103, + 0.0114782825, + -0.031503856, + -0.02542655, + 0.008365459, + 0.010341374, + 0.017711017, + 0.025335887, + -0.0075675366, + 0.01148843, + -0.039121475, + -0.009728115, + -0.004159351, + -0.024350986, + 0.012393612, + 0.016937587, + 0.023786379, + 0.011879609, + 3.6144815E-4, + 0.023868807, + 0.012272074, + -0.0076100943, + -0.016045857, + -0.026700884, + -0.008886862, + 0.015411384, + -0.0021041646, + 0.023310112, + 0.0053901123, + 0.016198514, + -1.1553465E-4, + 0.014875524, + -0.00659276, + 0.015311127, + -0.014826132, + -0.011000338, + 0.01414685, + -0.0024489446, + 0.018837394, + -0.013189846, + -0.005172045, + 0.024045862, + 0.015786827, + 0.0055243415, + 0.008333033, + 0.012620317, + -0.024882069, + 0.010498223, + -0.0075324695, + -0.012169955, + 0.015540139, + -0.007763086, + 0.010907867, + 0.016747363, + 0.01061762, + -0.003685234, + 0.02019593, + -0.0073008914, + -0.004774481, + 0.007208766, + 0.005319231, + 0.017880809, + 0.029195318, + -0.011307669, + -0.005761711, + 0.017267553, + -0.012082517, + -0.0011335579, + -0.01202441, + 0.013062714, + -0.013288321, + -0.004349952, + -0.0019358221, + -0.024172762, + 0.004630994, + 0.0043297624, + 0.013622486, + -0.02542265, + 0.0011456659, + -0.0057608862, + -0.006956995, + -0.01154905, + 0.0045638173, + -0.013618727, + 0.0021631247, + -0.006783098, + 7.34615E-4, + -0.0052963505, + 0.0070460197, + 0.008173132, + -0.0049992516, + 0.018412737, + -0.022377985, + -0.007935519, + 0.015566224, + 0.0144609045, + -0.0022705174, + 0.0022129233, + 0.004835802, + 0.0036759917, + 0.030415608, + -0.0022613332, + -0.010401635, + -0.0073345755, + 0.01311479, + 0.017812394, + 0.0067056, + -0.0018769044, + 0.016403327, + 0.011938959, + -6.797611E-4, + -3.7758535E-5, + 0.0052067004, + 0.011161072, + 0.012870326, + -0.0011944361, + -0.016088512, + -0.019555058, + -0.009936309, + 0.032395408, + 0.0042166784, + -0.003658937, + 0.0044524614, + -0.001681859, + -0.006604184, + 0.007940647, + 0.011577043, + -0.017668486, + -0.0059157396, + -0.021222945, + 0.01227789, + 0.02101619, + -0.024647668, + -7.575736E-4, + -0.005352516, + 0.0153544145, + -0.0033158534, + 0.014743002, + 0.011254107, + 0.0071526347, + -0.003453508, + 0.012667432, + 0.0038862657, + -0.032719817, + 0.0010002773, + -0.004048654, + 0.0077166874, + -0.013028281, + 0.032197006, + 0.0016565443, + 0.018464478, + -0.010741309, + 0.030852728, + -0.028087601, + 0.0096964855, + 0.009326889, + 0.0018192565, + -0.0060029575, + -7.4268406E-4, + -0.02257203, + 0.0035471506, + 0.0071439943, + -0.013945447, + 0.019274483, + -0.010620223, + -0.0038764807, + 0.024453374, + 0.005262953, + -8.914302E-4, + -0.0015367743, + -0.00898379, + 0.004760036, + 0.02551436, + 0.008368759, + -3.3366904E-4, + 0.009972218, + -0.020822154, + 0.021780849, + -9.0050904E-5, + -0.020350507, + 0.0023215655, + 0.010635679, + 0.016247021, + -0.008684817, + -2.4772057E-4, + 0.0111422865, + 6.2352314E-4, + -0.015793953, + 0.009057726, + 0.010901373, + -0.014686171, + 0.01967473, + 4.8796006E-4, + -0.0011662171, + 0.018512437, + 0.0088952165, + -0.02243936, + -0.0056062457, + 0.009931311, + 2.9365686E-4, + 0.007859207, + 0.008346579, + -0.01957799, + -0.028177777, + 0.013395113, + -0.019993555, + -2.3478756E-4, + 0.011964729, + -0.0112711, + 0.0038577893, + -0.010736277, + 0.0080305, + -0.0022083754, + -0.004954358, + 0.012941443, + 0.011940468, + 0.022605099, + -0.013486712, + -0.025975987, + -0.030705536, + 0.0016853642, + -0.0069475193, + -3.4637225E-4, + -0.007904227, + -0.018017048, + 0.0073434827, + 0.009319099, + -0.01586766, + -0.005111728, + -0.0070974473, + 0.006425124, + 0.013550102, + 0.0017383615, + 0.003685295, + -0.016320784, + -0.010180727, + -0.019548802, + -0.008392566, + 0.011679663, + -0.005182522, + -0.013321372, + 0.023108259, + 3.8537895E-4, + -0.011394122, + -0.0056289593, + 0.024448605, + -0.0057428116, + -0.0066194274, + -0.015272843, + -0.015414419, + -0.0044883364, + -0.011473097, + -0.007961675, + 0.013904911, + 0.0038176186, + -0.009209584, + -0.0104619935, + 0.026573926, + -0.0074006245, + -0.003384164, + 0.028184397, + -0.028540475, + -0.037086308, + 0.0049605668, + 6.713878E-4, + 0.002229857, + -0.028314132, + -0.017447634, + -0.03053211, + 0.018783467, + -0.001762042, + 0.016753426, + 0.003287232, + -0.030413605, + -0.027086403, + 0.013998645, + 0.02039416, + 0.0076855845, + -0.0073258276, + -0.025932949, + 0.008040466, + 0.004524373, + -0.008628113, + 8.1304857E-4, + 0.026273338, + -7.06871E-4, + 0.009666783, + 0.019784408, + -0.014790083, + 0.010049671, + 0.013495997, + -0.013369042, + 0.014674312, + -0.030007599, + -0.0038136428, + -0.018828867, + 0.024363995, + -0.016813815, + -0.03850645, + -0.009706724, + 0.02487835, + 0.028299525, + 0.019563736, + -3.0696392E-4, + -0.0077495906, + -0.017550338, + -0.02146285, + -0.023046857, + -0.008713825, + 0.01472503, + 0.006793057, + 0.009196071, + 0.024513114, + 0.008500756, + -0.043660756, + 0.013290653, + -0.03085837, + 0.026728291, + 0.032156702, + 0.01826022, + 0.009343901, + 0.012873555, + 0.008552395, + 0.0232926, + 0.033039223, + 0.011988843, + 0.013440742, + 0.008392929, + -0.011217198, + -0.004296576, + -0.010583726, + 0.011416824, + 0.0015730882, + 0.003578296, + 0.028295226, + -0.0036871315, + -0.0021922113, + -0.005170612, + -0.023694009, + 0.021452935, + 0.0071766274, + -0.022473821, + -0.008806161, + 0.027577229, + 0.041302964, + 0.006862564, + 0.01019551, + 0.0100992825, + -0.0066958405, + -0.012398476, + -0.008803582, + -0.021871878, + -0.008292416, + 0.012300718, + 0.016619598, + 0.025121288, + 3.3257506E-4, + -0.0041500805, + 0.0072023417, + 0.020192135, + 0.0039818143, + -0.014819837, + 0.021203753, + -0.012520398, + -0.013555188, + 0.0039778035, + 0.04076276, + -0.0028138016, + 0.01686834, + -0.0016179248, + 0.0042854976, + 0.002293148, + -0.00248156, + -0.014872482, + 0.0027255449, + 0.014691336, + -0.017559752, + -0.008247018, + -0.011458816, + -0.013344201, + -0.0165853, + -0.018834548, + 0.0070789866, + -0.007352264, + 0.014614795, + 0.01159331, + 0.0095407, + 0.0021275356, + -0.0044403193, + 0.0019407694, + 0.012831675, + -0.009348415, + -7.270389E-5, + 0.013195167, + 0.0017840749, + 0.013498946, + -0.011151671, + -0.011564419, + -0.013223635, + 0.036849048, + -0.0052636624, + 0.0035589654, + -7.3735917E-4, + 0.001114765, + -0.0049786265, + -0.02020752, + 0.008443962, + -0.0020472866, + 0.022498285, + -0.015490309, + -0.021142444, + -0.0138669815, + -0.026001802, + 0.0053070574, + 0.0050015985, + 0.01376967, + 0.007757207, + 0.03640835, + 0.004501156, + -0.013734931, + -0.010173871, + 0.01874116, + -0.0039723064, + -0.004057446, + -0.01579817, + 0.015597032, + -0.0152487885, + -0.0034701598, + -0.0060006585, + -0.0069468063, + -0.003886185, + -0.021443, + -0.0073437225, + -0.04238068, + -0.002210783, + 0.007105958, + 0.0140270125, + -0.0040900996, + -0.026820883, + 0.0070137493, + -0.009095304, + 0.022859499, + -0.0072565824, + 0.005087443, + -0.009389015, + 0.009266586, + -0.0058936505, + -6.1667175E-4, + -0.0066051376, + 0.013055832, + -0.024199046, + -0.025459047, + 0.011027078, + 0.01952591, + 0.0059258295, + -0.023547113, + -0.039659325, + 0.019543186, + -0.019743988, + 0.0020826817, + 0.025724718, + 0.025710251, + -0.009275971, + -0.0023044145, + 0.0021968246, + -0.015023612, + 0.020605875, + -0.014944678, + 0.011651079, + 0.00223701, + -0.006518139, + 0.006780783, + -0.013118945, + -0.0010901501, + -0.0072421036, + 0.021268735, + -0.0025194841, + 0.022497816, + 0.039073702, + -0.02704042, + -0.031066976, + -0.0049611456, + -0.007832466, + -0.012557345, + -0.024676407, + -0.020330684, + -0.0140149705, + -0.017766574, + -2.3747719E-4, + 0.039286472, + 0.012470173, + -0.005534082, + 0.007392919, + 0.032702323, + 0.012889837, + -0.011647103, + -0.0012853771, + -0.008375292, + 0.011556283, + 0.020457491, + 0.026887815, + 0.016701717, + -0.0033212209, + -0.022645975, + -0.015717084, + 0.0041086865, + -0.0029186863, + 0.009472561, + -0.0074107833, + -0.02273323, + 0.024963954, + 0.010014769, + 0.0033830493, + 0.0041841036, + 0.013442121, + -0.0071399785, + 0.010240637, + -0.011451695, + -0.004202763, + -0.0030979484, + 0.0136122145, + -0.0028729888, + -0.0041302396, + 0.0018952761, + -0.0039623845, + -0.029156417, + 0.03289565, + 0.0114759505, + 0.018073227, + -0.014488702, + 0.011312694, + 0.0119702555, + 0.0043544127, + 0.0048261657, + 0.016691819, + -0.033869363, + -0.01933612, + 0.01899733, + 0.02141669, + 0.034300573, + -0.0044279858, + 0.00856377, + 0.024119321, + 0.017665384, + 0.009132848, + -0.00565249, + -4.0656017E-4, + -9.5842674E-4, + -0.009465512, + 0.0026141345, + 0.026789833, + 0.0145852715, + 0.010686298, + -0.0043639336, + 0.012170351, + -0.001209195, + -0.01651117, + -0.005199861, + -0.037486624, + 0.011330646, + 0.003674313, + -0.01078634, + -0.016433539, + 0.02332877, + -0.030834433, + 0.00957849, + -0.015297239, + 0.01324092, + -0.017723013, + 0.012484674, + -0.03136677, + 0.029108575, + -0.018966665, + 0.033863127, + 0.026351, + -0.031295612, + -0.020978779, + 0.006527297, + -0.011996141, + -0.009038858, + -0.025018997, + 0.0050846213, + 0.0015836105, + 0.022819743, + 0.029866816, + -0.0019656715, + -0.0053624404, + 0.004687909, + 0.008908179, + -0.0032560898, + 0.0069310144, + -0.019484952, + -0.014701248, + 0.01230132, + 0.011752475, + -0.014011442, + 0.0035788612, + -0.011424027, + 0.0065335263, + 0.005143114, + 0.005495647, + -8.98943E-4, + -0.018049786, + 0.0033425495, + -0.004757581, + -0.0032893352, + 0.01604363, + -0.016863277, + 0.027131729, + 0.009517365, + 0.008794679, + 0.0129881315, + 0.0102742715, + -0.012734111, + -0.014180963, + -0.01610755, + 0.017433962, + 0.008505277, + 0.010244575, + 0.014323522, + -0.018546553, + -0.0064884727, + 0.022568505, + 0.0029692608, + 0.004575268, + 0.015685571, + 0.0038802486, + 0.012064732, + 0.009376979, + -0.02504605, + 0.001461309, + -0.021170326, + 0.0018419299, + 0.023210244, + -0.005424393, + -0.0018553212, + -0.0063240635, + 0.0066264714, + -0.023700371, + -0.01264118, + 0.010849368, + 0.0010586797, + -0.017289285, + 0.012971844, + -0.017662102, + -0.012019499, + -0.032419156, + -0.01249799, + -0.0016346038, + 0.0037549862, + -0.00901396, + 0.002229277, + -0.020911809, + 0.019330658, + -0.007095132, + 0.0025388193, + 0.019411601, + 0.017956156, + 0.0015822226, + -0.016887907, + -0.0016645025, + -0.005795307, + -0.0071504954, + -0.0014913683, + 0.017487388, + -0.025650354, + -2.5785255E-4, + 0.0041646897, + 0.015448966, + -0.0016021404, + 0.023429908, + -0.0070461025, + 0.022178074, + -0.019663293, + -0.009618854, + 0.03144148, + 0.015105904, + -0.027220031, + -0.006016715, + -0.0144468015, + 0.005939834, + 0.017144158, + -0.027124707, + -0.0072368267, + 0.0021328789, + 0.022391353, + 0.004375298, + -0.0044299257, + 0.006457873, + 0.009977322, + 0.032442566, + -5.039869E-4, + -0.0019870042, + 0.0058688996, + -0.0010394377, + 4.4419104E-4, + -0.0093297055, + -0.0065926514, + -0.0011178402, + -0.020214431, + -0.013290895, + -0.0020676963, + -0.0034150532, + -0.009490114, + -0.007975461, + 0.010252055, + -0.006625461, + 0.047483336, + 0.021799294, + 0.010813521, + 0.02160736, + 0.017773274, + 0.01479229, + -0.016177477, + -0.033048976, + 0.009344131, + 0.007069417, + 0.024015142, + -0.006071169, + 0.0064676492, + 0.04455128, + -0.008968801, + 0.01516022, + -0.008344531, + 0.004528079, + 0.0024065566, + 0.0047489335, + 0.0035677445, + -0.008895, + 0.0061551607, + -0.015052621, + 0.0033073786, + 0.018936584, + -0.052136246, + -0.028968833, + 7.6452334E-4, + 0.004209805, + -0.02327798, + -0.013808838, + 0.010148065, + 0.0022887075, + -0.0012741962, + 0.0030243513, + -0.0058831587, + -0.00487387, + 0.004596972, + -9.107662E-4, + -6.509785E-4, + 0.019816097, + 0.0059279087, + 0.0061835325, + 0.0052391295, + -0.003686629, + 0.008008419, + 0.01836671, + -0.017747553, + -0.017514467, + 0.01158238, + -0.002088454, + -0.010123781, + -0.010991587, + -0.004526069, + 0.0042386805, + -0.016468411, + -0.005577027, + 0.01541173, + 0.026716108, + -0.0089224, + -0.021503448, + -0.0038979703, + -0.005588985, + 0.015105532, + -0.028591013, + 0.0031546736, + 0.004061484, + 0.0071395407, + 0.0026296584, + 0.009318385, + 0.010556665, + -8.100158E-4, + 0.0065785, + -0.001037952, + 0.011582876, + -0.010917708, + -0.0016205382, + 0.005516734, + -6.0570845E-5, + -0.031354044, + 0.009642204, + -0.0016286263, + -0.015471223, + -0.0102723325, + -8.970028E-4, + 0.018826203, + -0.014487782, + 5.286046E-4, + 0.010238698, + -0.015740689, + 0.029942071, + -0.008746615, + 0.029633809, + -0.007537497, + 0.0056738136, + 0.011532957, + 0.010672639, + -0.009784307, + 0.017074, + -0.016159939, + 0.008611751, + -0.0068533816, + -0.0049143024, + 0.01746462, + 0.0038414868, + -0.01716426, + -0.006396392, + -5.250749E-4, + -0.016604878, + -0.013109072, + 0.0036442217, + -0.0077751325, + -0.01608307, + 0.01316256, + 0.008227781, + -0.019039951, + -0.033633236, + -0.01670965, + 0.012557011, + -0.017653951, + -0.0065318695, + 0.005784909, + -0.013401545, + -0.021737823, + 6.6997786E-4, + -0.016204452, + -0.033658724, + -0.014233436, + -0.0025499836, + -0.004578123, + -0.0016054813, + 0.045097575, + 0.020963369, + -0.0027520119, + -0.004577072, + -0.028906448, + -0.008963751, + 0.017471561, + 0.011576266, + -0.014995112, + 0.013131767, + -0.0016588038, + 0.0092464555, + -0.006268846, + -0.017030098, + 0.0081410995, + 0.0033325125, + 0.01984368, + 0.035666153, + 0.0033465717, + -0.020729072, + -0.018836768, + 0.02061163, + 0.026445245, + 0.019755526, + 0.0045212847, + 0.024473643, + -0.01855093, + -0.03079496, + 0.016990954, + -0.007608645, + -0.0038998956, + 0.0044103838, + 0.0040130145, + -0.0048224293, + -9.4490114E-4, + 0.013764007, + 0.022793487, + -0.018948577, + 0.007621562, + -0.004796656, + -0.00912063, + 0.0019339488, + 0.012541875, + -0.010693896, + -0.011936636, + -0.013505428, + -8.2736264E-4, + -0.02041415, + 0.019536003, + -0.0070492667, + 7.865757E-4, + -0.0043449216, + 0.0030632608, + -0.017526943, + -0.0047257156, + -0.014795911, + -0.02429959, + 0.004592821, + 9.527229E-4, + 0.0017185636, + 0.013685735, + -0.030025348, + 0.0056449715, + 0.009308861, + -0.025964655, + 0.008590755, + 0.0030022853, + 0.039649475, + -0.015634557, + -0.0031930758, + -0.0102281235, + 0.027077584, + -0.0083095, + -9.776484E-4, + -0.0037238982, + 0.015222523, + -0.020176312, + 0.022832854, + 0.006164663, + 0.0029108375, + 0.0039659794, + -7.441992E-4, + 0.014117303, + 0.009625686, + -9.479771E-4, + 0.010912444, + -6.109001E-4, + -0.021264788, + 0.009453235, + 0.0067148544, + 0.01906972, + -0.015809696, + -0.018525232, + -0.0065745767, + 0.022604506, + 0.003901034, + -0.019639373, + -0.011753067, + -0.006601981, + 0.005744983, + 0.020225197, + -0.021418443, + -0.024863675, + 0.017719707, + 0.012108881, + -0.01277773, + -0.0036342968, + -0.014354002, + 9.62791E-4, + -0.020843813, + -0.017017785, + -0.016473696, + -0.016215242, + -0.010055318, + -0.002032993, + -0.007733377, + -0.009004363, + 0.001331412, + 0.014740297, + 0.02109204, + -0.005541689, + 0.02814372, + -0.010272447, + -0.019085499, + -0.008807462, + 0.0076945582, + 0.008143024, + 0.038745124, + 0.011165039, + -0.0051174397, + -0.010455396, + 0.024352364, + -0.0049176253, + -0.01690231, + -0.0041905562, + 0.0028437928, + -5.45398E-4, + -0.025163509, + -0.0021781113, + 0.004111103, + -0.0026815087, + -0.002879175, + 0.010099542, + -3.86104E-4, + 0.02010357, + 0.006623135, + 0.014634483, + 0.0021619275, + -0.0021698175, + -0.0020500247, + 0.003375219, + 0.0027237106, + -0.011383419, + -0.015380447, + 0.025791287, + -0.017340438, + -0.0038690118, + 0.011948526, + 0.0064683985, + -0.02045078, + -0.016236307, + 0.014525982, + 7.506497E-4, + 0.008371999, + -0.004724712, + -0.017751636, + -0.0110108275, + 0.0026776425, + -0.022150649, + 0.0046308734, + 0.005412368, + -0.021020528, + 0.0068652895, + -0.0043842364, + -0.049721953, + -0.018410003, + -7.0310803E-4, + -0.041024216, + 0.01864851, + 0.02627062, + 0.034698796, + 0.012046862, + 0.011530789, + -0.023728633, + -0.007344721, + -0.0033019502, + -0.0070476024, + -0.0023442593, + -0.0067652096, + -7.951944E-4, + 0.024065632, + -0.016892647, + 0.022224316, + -0.0042846524, + -0.01044748, + -0.007825823, + -0.015328511, + -0.0026220218, + 0.024955852, + -0.028043628, + -0.004595962, + 0.009790847, + 6.497183E-4, + -0.002350631, + 0.021421378, + -0.0062265536, + -0.004507031, + 0.01733876, + 0.0019171939, + -0.026212268, + -0.007031539, + -0.027082024, + 0.0056885546, + -0.0038749764, + -0.0010440036, + 0.005480094, + 0.0046160677, + 0.016400386, + -1.7883547E-5, + 0.005285089, + -0.01662962, + 0.018455917, + -0.013391427, + -0.032718062, + 0.032921176, + 0.0043542623, + 0.011434823, + 0.005209029, + -0.006038987, + -0.019868607, + -0.04876216, + 0.009394417, + 0.027821012, + 0.0026617253, + -0.0088315485, + 0.0028777767, + 0.014342858, + 0.0034464302, + -0.0089948345, + 0.010907436, + -0.010650696, + -0.013481673, + -0.014937617, + 0.0037680378, + 0.002422455, + -0.010348901, + -0.01078964, + -0.0070097414, + 2.4923444E-4, + 0.008996518, + 0.0028161397, + -0.015800375, + -0.036841933, + -0.020563545, + -0.021788793, + -0.017335739, + 0.008178647, + -0.022039117, + -0.002555791, + -0.013650743, + -0.009577211, + 0.013721396, + -0.02017709, + 0.009274634, + -0.02416015, + -0.010898626, + 0.010674434, + -0.01428223, + -0.013914661, + -0.022295412, + -0.0040876665, + -0.0041361484, + -0.0016539985, + 0.026265245, + 1.5274581E-4, + 0.011979267, + -1.3641923E-4, + -0.0112878615, + -0.020008398, + -8.010465E-4, + 0.015849791, + 0.002912586, + 0.006100473, + 0.022732526, + -0.007838565, + -0.0055733155, + -0.030777961, + 0.006187915, + 1.4985408E-4, + -0.013813763, + 0.0015980157, + 0.008863036, + 0.011858057, + -0.022702174, + 0.0077618225, + -0.013148639, + 0.0014531224, + 0.040632214, + 0.008457207, + -0.013666797, + -0.002561573, + -0.016053831, + 0.012650793, + 0.017324707, + 0.01959726, + 1.0671658E-4, + -0.0014127955, + -0.014015871, + -0.008005318, + -0.014246574, + 1.8357177E-4, + 0.014715135, + 0.014542954, + -0.0030774423, + 0.008994174, + -0.0035352136, + -0.0028279023, + 0.005733085, + 0.0049161185, + 0.017423023, + 0.009387745, + 0.007792587, + -0.030671779, + 0.0052420436, + -0.013972043, + -0.0077912146, + -0.030582186, + 0.0049589425, + 0.019931514, + -0.022194022, + 0.0011766964, + -0.0022180835, + -0.012447298, + -0.017416073, + 0.009583618, + -0.0057968087, + -0.028896816, + 0.014797385, + -0.014239005, + 0.020406088, + 0.014894822, + -0.015708514, + -0.013778897, + -0.018908264, + -0.01859689, + 0.020778542, + 0.014815326, + -0.007012991, + 0.0013337637, + -0.027370537, + -4.6678234E-4, + 0.019706292, + -0.0025110457, + -0.015609103, + -0.015095131, + 0.009659122, + -0.010161574, + -0.010051887, + 0.019535264, + 0.008368874, + 0.012607431, + 0.017722558, + 0.010346806, + -0.032123603, + -0.017852753, + 0.019519372, + -0.0056011565, + 0.008505682, + 0.017049061, + -0.010962959, + -0.010763564, + -0.009372313, + -0.0015896641, + -0.0131381275, + -0.006701265, + 0.003297962, + -0.00832072, + -0.0030121394, + -0.012330292, + -0.0023286643, + 0.0074625527, + 7.594241E-4, + 9.186847E-4, + 0.028607003, + -0.0010855255, + -0.01091673, + 0.009188175, + 0.025176955, + 0.006614837, + 0.008080325, + -0.018962447, + 0.015358507, + -0.007854991, + 0.014913727, + -0.017462322, + -0.00593749, + -0.0065141143, + -0.016897542, + 0.004695705, + 0.0016126669, + 0.030939583, + 0.01718103, + 0.0033388876, + 0.01263988, + -0.030976566, + 0.022731652, + 0.0063269422, + 0.007414866, + -0.01214207, + 5.3409964E-4, + -0.009681614, + -0.03789068, + -0.0037839469, + 0.0062934123, + -0.0076969336, + -0.00211223, + -0.008948652, + 0.0026972427, + -0.02559201, + -0.007546574, + -0.0075394134, + -0.025682079, + -0.002896531, + 0.016085891, + 0.0150974635, + 0.019935207, + 0.008610507, + -0.002520049, + 0.007924779, + 0.0017347304, + 0.02338793, + -0.01620025, + 9.988356E-5, + 0.020357274, + -0.014768493, + 0.013485064, + 0.017372822, + 0.007814901, + 0.021941071, + 0.0224783, + -0.008890928, + -0.02757965, + 0.015859477, + -0.011349738, + -0.003660518, + 0.0068221344, + 0.004028314, + 0.013015996, + -1.7058545E-4, + -0.006447607, + -0.0045797257, + 0.011409517, + 0.02277979, + 0.0038428889, + 3.3685056E-4, + -0.0126108, + 0.0037003525, + 0.003929611, + 0.007100554, + -4.729E-4, + 0.011744206, + -0.008253756, + 0.028265871, + -0.02078981, + -0.001610399, + -0.00883299, + 0.001597214, + -0.005933121, + -0.028452095, + 0.0076629105, + 0.008262379, + 0.019590667, + -0.026506603, + 0.0022290943, + -0.0016284161, + -0.0069784317, + -0.012469639, + 0.009074592, + -0.023866536, + -0.0071095144, + 0.026732804, + -0.029828295, + -0.008709504, + -0.029154586, + -0.008878995, + 0.02374439, + 0.032143123, + -0.012292689, + -0.0034456076, + 0.015907202, + 0.009650649, + 0.01703496, + -0.0148332985, + 0.022910967, + 0.011407998, + -0.025233809, + -0.017130176, + 0.019120412, + 0.03420409, + -0.009805438, + -0.0036381679, + -0.017778762, + -0.009611255, + -0.045213733, + 0.010436697, + 0.0017428012, + 0.0020847186, + -0.026188636, + -0.008946437, + -0.005619024, + -0.0046662274, + -0.014692482, + -0.0041354373, + -0.023396783, + -1.3277742E-4, + -0.033498473, + -0.014719094, + -0.007864218, + 0.01189114, + 0.0011648169, + 0.01368308, + 0.004257751, + 0.004056466, + 0.0015738059, + -0.0010399086, + -0.0024061827, + -0.022808226, + 0.0035659582, + 0.014878027, + -0.012173387, + -0.010485327, + 0.012848948, + -0.02511007, + -0.008059351, + -0.021572283, + 0.013594289, + 0.029395636, + 0.024934283, + 0.0025943469, + 0.010668623, + 0.011408657, + 0.013511888, + -2.7669937E-4, + -0.012734105, + 0.007451875, + -0.018988078, + -0.012072337, + 0.015391874, + -0.042245373, + -0.005794379, + -0.009235281, + 0.026085984, + 0.019094303, + -0.019378448, + -0.015471952, + -0.006058681, + 0.016631534, + 0.016286995, + -0.004373262, + 0.0058035157, + 0.0146029955, + 0.008991012, + -7.592991E-4, + 0.0041159038, + -0.008703811, + 0.014703884, + 0.011343261, + 0.011216668, + 0.01667243, + -6.2934007E-4, + 0.041155897, + 0.012990706, + -0.0147823235, + 5.160247E-4, + 0.03715891, + -0.017116664, + -0.04015642, + 0.005703153, + 0.010239431, + -0.0062769153, + 0.02470341, + 0.011851518, + 0.013613253, + 0.026900467, + 0.013866784, + 0.011936602, + 0.022062853, + 0.0043905126, + -0.023884395, + 0.006400551, + 0.009303902, + -0.005801645, + -0.013276445, + -0.008947608, + 0.001384336, + -0.0126588475, + 0.007962235, + 0.0067766006, + 0.0018261527, + 0.0024562813, + 0.010332344, + -0.0054519973, + 0.007829472, + 0.0122301085, + 0.005498521, + 0.014598013, + -0.0031069063, + -0.011577611, + -0.017420638, + 0.03556736, + -0.0048177955, + 0.009136911, + -0.0018296288, + 0.00919753, + 8.299745E-4, + 0.017797153, + -0.042005677, + 0.0111009525, + -4.627916E-4, + 0.011325403, + 0.027724179, + 0.012993414, + 6.0771115E-4, + -0.012442086, + 1.6729815E-4, + 0.023348771, + -0.006496412, + 0.0011052085, + -7.804757E-4, + 0.00930616, + -0.012326105, + -0.012763396, + 4.186507E-4, + -0.028810473, + -0.025356043, + -0.008843748, + -0.029758833, + 0.0013332019, + 0.010797984, + 0.007680145, + 0.005557188, + -0.0030000533, + -0.010426483, + 0.010951387, + -0.007881943, + -0.0010022819, + 0.015757918, + -0.0050893817, + 0.0056695426, + -0.0042557283, + -0.0047871075, + 0.009595922, + 0.005142716, + 0.0076422775, + -0.014873894, + 0.01408486, + 0.0043911748, + 0.005587696, + -0.04470593, + 0.013047738, + -0.024888923, + -0.03959056, + 0.021935252, + 9.0776774E-4, + -0.030999312, + -5.5960234E-4, + 0.001454895, + -0.017166844, + 0.02117788, + -0.01019884, + -0.0054384326, + -0.0033884791, + -0.025681363, + -0.0012469005, + -0.016620802, + 0.014277542, + 0.0061872536, + 0.01408392, + -0.005308319, + 0.020815643, + 0.0037392331, + 0.037498396, + 0.014478388, + -0.0034353104, + -0.015596047, + -0.0026902107, + -0.006682572, + 0.009960836, + 0.030591488, + 0.028598737, + -0.0034948136, + 0.027497822, + -0.044233106, + -0.016437609, + 0.0048291967, + 0.0019614156, + 0.01653203, + -0.010828525, + -0.011072045, + 0.002038021, + 0.0087921135, + -0.0129477335, + -0.0022625949, + -0.0060776286, + -0.0014497744, + -0.036482584, + -0.014797423, + -0.008395292, + 0.0066560004, + 0.0011667626, + 0.0066644493, + -0.009240723, + -0.024030311, + 0.00813973, + -0.0013585492, + 1.2516686E-4, + 0.006525622, + 0.024155758, + -0.004244388, + -0.011353908, + -0.024687378, + 0.022644836, + 0.008389245, + -0.010632855, + 0.005882341, + 0.022413755, + 0.014948914, + 0.0054887696, + 0.008627138, + 0.008412446, + 0.0054100384, + 0.013557525, + -0.0039253323, + 0.00392577, + 0.0061002877, + 0.026953736, + -0.001913276, + 0.0035843628, + -0.0053881835, + 0.01763444, + 0.005172941, + -0.009887342, + -0.0042014364, + -0.0268524, + -0.0037264451, + 7.762739E-4, + 0.011588905, + -0.0035501304, + -0.016736243, + -0.017773885, + 0.03060904, + -0.0084112305, + 0.028986102, + -0.021750633, + 0.019736495, + -0.033291522, + 0.007624661, + 0.009793287, + 0.025066623, + -0.0013170409, + 0.014373617, + 0.016261004, + 0.00513954, + 0.021301784, + 0.0110075, + -0.005808346, + 0.025397588, + -0.0043248236, + 0.0037325262, + -0.0011866967, + 0.021942459, + -0.012346814, + -0.019216388, + -5.9207703E-4, + 0.011184895, + -0.014281063, + -0.006246071, + 0.018484315, + -0.0025760648, + 0.005798402, + 0.004439441, + 0.008897567, + 0.015663514, + -0.0022880025, + -0.010268999, + 0.0066884076, + 0.0057194233, + 0.008116617, + 0.0010910002, + -0.021513997, + 0.026206747, + -0.001655962, + -0.013294995, + -6.7201984E-4, + -0.00942465, + -0.026666101, + 0.04952675, + 0.02481422, + -0.020813348, + -0.011602323, + -0.013501014, + 0.016941344, + -0.023725623, + 0.012057692, + -0.004846076, + 0.018118449, + -0.008212362, + -0.010501856, + -4.2829372E-4, + 0.002538745, + -0.008125508, + -0.0035197025, + 0.004649791, + -0.023132186, + -0.0018306609, + 0.011872574, + 0.013561539, + -0.022810262, + -0.030734211, + 0.0046173125, + 0.0061128703, + 0.0014198733, + -0.007724009, + -0.019862745, + -0.0136159025, + -0.00305766, + -0.014444395, + 0.007475211, + -0.021287441, + -0.016734045, + -0.01681794, + 0.009068712, + 0.0046212915, + 0.014179501, + 0.029508581, + -0.03620038, + 0.0069591776, + -0.002843431, + 8.475322E-4, + 0.010380398, + -0.014910358, + -0.008956934, + 0.0076401783, + 0.03645528, + 0.013244377, + 0.013301342, + 0.009993933, + -0.023045776, + -4.287778E-5, + -0.018263461, + 0.01111424, + -0.008353358, + 0.016179912, + 0.0030173338, + 0.020879, + -0.0047096293, + 0.005441882, + -0.008172031, + 0.021839024, + 0.012821874, + 0.002624006, + 0.0067890617, + -0.0066611296, + 0.0035240292, + 0.0065462464, + 5.722438E-4, + 0.0091805225, + -0.009081288, + 0.01490973, + 0.0026448334, + 0.0088769775, + -0.01185816, + 0.010914558, + -0.013088334, + 0.0062052123, + -0.014553822, + -0.009276507, + -0.008645531, + 0.007655783, + -0.0051434757, + -0.024352474, + -0.0032296167, + -0.008890954, + 0.01786051, + 0.004118169, + -0.007801209, + 0.012001395, + -0.015970796, + -0.002773032, + -0.0047586984, + 0.006290624, + -0.027514063, + 0.022207636, + -0.0074031595, + 0.0068716193, + 0.0015361004, + -0.0013963977, + 0.0013027637, + -0.01538352, + -0.009252366, + -0.012001072, + -0.01505272, + 0.032531064, + 0.008480707, + 0.008215068, + -0.0041212216, + 0.0074354764, + -0.014058995, + 0.011134881, + -0.011387594, + 0.008587228, + -0.011448701, + 0.0024191155, + -0.0042052763, + 0.00807499, + -0.033305533, + 0.007275715, + -0.02539717, + -0.00448955, + 0.016782714, + -0.019747946, + 0.009081376, + 0.010321119, + 0.0012877834, + 0.00949476, + 0.020238664, + 0.021052595, + 7.615925E-4, + -0.0023982697, + 0.006133896, + -0.0026072224, + -0.0021757, + -0.013443274, + -0.02668273, + 0.014413639, + 0.0014408678, + -0.011865569, + 0.002616845, + -0.018703593, + -0.0051349197, + 0.013702034, + -0.0067276745, + -0.025686298, + 0.0090218745, + 0.015218416, + 0.006790271, + 4.0075532E-4, + -0.00603653, + 0.00546033, + -0.006035879, + 0.008205394, + 0.005106832, + -0.004317945, + 0.013039513, + -0.008236144, + -0.036284555, + 0.0042014206, + -0.006852266, + 0.030045193, + -0.021809282, + -0.0047211163, + 0.030556789, + 0.014616941, + 0.004425572, + -0.02800201, + -0.028682806, + 0.011149753, + 0.011639669, + -0.009740742, + 0.0043623615, + -0.0046738833, + 0.0038235951, + -0.003690308, + -0.032606054, + 0.01717735, + 0.007300867, + 0.010745401, + -0.007498965, + 0.004768017, + -0.014029324, + -0.009598542, + -0.0150083, + 0.0048180856, + 0.020598203, + 0.003826329, + -0.005702997, + 0.010405392, + -0.016889341, + 2.946105E-5, + 1.9143846E-4, + -0.0055641234, + -0.0063487687, + -0.022337157, + 0.012004216, + -5.2460888E-5, + -0.010528353, + 0.026690127, + -0.031076575, + -5.717688E-4, + 0.011469879, + -0.009568928, + -0.010359606, + 0.0011675816, + -0.018180989, + 0.04042857, + 0.0065806634, + -0.042100605, + -0.028978704, + 0.0034973526, + 0.016826514, + 0.028854823, + 0.021757182, + -0.014357992, + -0.0036176965, + 0.011041237, + 0.003186131, + -0.010454218, + 0.0026257215, + -0.017849518, + 0.0143446, + 0.0035090712, + 0.015947627, + -0.01507662, + -0.010424653, + -0.010916143, + -0.0043421397, + 0.0014725006, + 0.0023238892, + 0.019035287, + -0.022458922, + -0.0050473646, + 0.039110735, + 0.007948622, + -0.03471528, + -0.007200615, + 0.0039498922, + 0.009215185, + -0.008932687, + -0.017569177, + 0.010055074, + 0.0040083616, + -0.014569853, + 0.006970363, + 2.560715E-4, + 0.019543918, + 0.020967958, + -0.007200829, + 0.011130002, + 0.0023923528, + -0.0049072425, + 0.00816914, + 0.008090727, + 0.0033878768, + -0.027069142, + -0.0030747175, + -0.018480182, + 0.0067539513, + 0.037183683, + -0.0017831717, + -0.0016344693, + 0.0027775606, + -0.019541033, + -0.019224687, + -0.007231569, + -0.0013140194, + 0.012811181, + 0.005502156, + 0.01665425, + 0.020336377, + -0.002821832, + 0.0013051537, + -0.016068043, + 0.025634574, + -0.01317771, + -0.026896004, + 0.02090276, + 0.010719237, + -0.011152225, + -0.005325999, + 0.016277632, + 0.011875028, + -0.014541844, + -0.0018226977, + 0.010025699, + -0.0078684045, + -9.4238174E-4, + -0.0032666666, + -0.008064327, + 0.0044755205, + 0.0019497168, + 0.0015988649, + 5.288196E-4, + -0.0046919794, + -0.018211575, + 0.006708227, + -9.0063934E-4, + -0.013707137, + 0.002781515, + 0.015212486, + 0.010806559, + -0.003873, + -0.015138896, + -0.008829418, + 3.426984E-4, + -0.015914824, + 3.4752855E-4, + -0.019121803, + 0.015459373, + 0.008777543, + 0.007291295, + 8.353756E-4, + 0.008906684, + 0.011201184, + -0.04064433, + 0.039331157, + -0.0050276723, + -0.011543353, + -0.013137082, + -0.012929864, + -0.007467777, + 0.0012912999, + 0.0013080898, + 0.02066355, + 0.019356724, + 0.005259951, + 0.0067485077, + 0.0013079855, + -0.011278554, + -6.1104976E-4, + 0.0060126977, + -0.015757976, + -0.0068391524, + 0.00889493, + -0.01345905, + 0.0067668213, + -0.0068475762, + 0.0083040735, + 0.0059841573, + 8.5292244E-4, + -0.006847232, + 0.0024526073, + 0.0062680626, + 0.024746297, + 0.017469041, + -0.034216896, + -0.013630399, + -0.009382128, + -0.005722745, + 0.010160844, + -0.025316654, + -0.028774366, + -4.871693E-4, + 0.00903642, + 0.015177774, + -2.7640375E-5, + -0.00663194, + 0.0019726842, + -0.008037675, + -0.0036456424, + 0.02481388, + -0.02800484, + -0.040673714, + -0.040044364, + 0.011392574, + 0.014989289, + 0.006229534, + 0.009196479, + 0.018945742, + 0.0056404616, + -0.0016859963, + -0.0028280192, + -0.008444651, + -0.0039171283, + 0.0031341847, + -0.006547985, + -0.008009781, + 0.0025595736, + -0.0056827683, + 0.0022264607, + -0.007826171, + 0.013931648, + 0.0021211274, + -0.010523453, + 0.008807943, + -0.010366351, + 0.030136902, + -0.026219781, + -0.02828098, + 0.0028917997, + -0.0059595816, + -0.038599316, + -0.0027983922, + 0.007520523, + 0.0075787925, + 0.022624495, + -0.012419777, + -0.0064699715, + -0.041283745, + -0.007744594, + 0.020582458, + 0.02440313, + -0.0343065, + 0.0061832773, + 0.01908396, + 0.02771735, + -0.0017740042, + 0.009280031, + 0.008725436, + 0.022961417, + -0.0032104792, + 0.02141919, + -0.004163212, + -0.0047326377, + 0.005545642, + 0.0126586845, + 0.010395288, + -0.0056908843, + 0.0060430104, + 0.012485373, + -0.016718155, + -0.0039663417, + 0.020167736, + 0.021541419, + -0.010844721, + -0.010772982, + 0.004427586, + 0.03611024, + -0.018165711, + -0.011235449, + -0.019146997, + 0.0010535131, + -0.002225967, + 0.014623959, + -0.023235062, + -0.007733724, + -0.016426137, + -0.023454074, + -8.3904335E-4, + 0.007170847, + 0.004275184, + 0.0046940567, + -0.02749785, + 0.03156496, + 0.008261785, + 0.004960204, + 0.034038972, + 0.022024421, + -0.010488849, + 0.036136664, + 0.004429711, + -0.004885046, + 0.010520997, + 0.010189734, + -0.004913399, + -0.019369045, + 0.008325977, + -0.016129168, + 0.011002116, + -0.035184864, + 0.010309626, + -0.034443494, + -0.022459911, + 0.0039062533, + 0.007873983, + -0.009649482, + 0.0147070745, + 0.0070713377, + 0.01091273, + 0.0153921265, + 0.01273785, + -0.0010181371, + 0.004898686, + -0.010266694, + -0.0015996116, + -0.013861656, + 0.010758286, + 0.0064857295, + -0.020002887, + 0.0035219912, + -0.01362503, + -0.0133966915, + 1.3916072E-4, + 3.1179655E-4, + 0.005246646, + -0.013829281, + 0.013791286, + 0.022196244, + -0.005431486, + 0.013073824, + 0.033382345, + -0.00388866, + -0.005288482, + -0.005822133, + -0.007878497, + 0.0069864793, + 0.002941037, + -0.019266332, + -0.026845774, + 0.005525378, + 0.005539928, + -0.015362669, + -2.2737661E-4, + -0.016020015, + -0.0074930415, + 0.0143532455, + -0.002915428, + 0.011242013, + 0.022014648, + 0.0013218931, + 0.04251463, + 0.005867972, + 0.0064074574, + -0.0063098962, + -0.013737055, + -0.017568568, + -0.011955542, + -0.0137239685, + 0.016511468, + 0.012568581, + -0.021739036, + 0.0066604754, + 0.01520447, + -0.0020630034, + 0.010230646, + -0.027689518, + 0.023007004, + 0.041580908, + 0.00651586, + 0.014498159, + 9.351198E-4, + 0.0099446755, + 0.012439145, + 0.0013978224, + -0.003143671, + -0.009429078, + -0.005235189, + 0.0017846532, + 0.0068735196, + 0.0020811292, + -0.01551177, + 0.0063903313, + 0.005915887, + -0.0051333304, + -0.01661915, + 0.014611378, + -0.012439719, + 0.023457019, + -0.008391775, + -2.2423589E-4, + -0.006476023, + -0.017544314, + 0.03865196, + 0.0026973232, + 0.0066970503, + 0.0062959376, + -0.008388457, + -0.011735405, + 0.021499826, + 0.012721249, + 0.0029715963, + -0.02584957, + -0.010322259, + 0.0037480395, + 0.008216427, + 0.012473143, + -0.026811391, + 0.010506135, + 0.02237422, + -0.020222194, + 0.024421766, + 0.013995732, + -4.948036E-4, + -0.008219997, + -0.003805798, + 0.020903222, + 4.0413107E-4, + 0.04632684, + 0.018126037, + 0.0057282955, + -0.004115268, + -0.003901886, + 0.010872839, + -0.005448209, + -0.011641548, + -0.004449443, + -0.0035236282, + 0.021986151, + -0.035187818, + -0.011815659, + 0.009066622, + 0.005835124, + 0.025911452, + -0.019146204, + 0.027916616, + 0.009016664, + 0.016912952, + -0.04151572, + 0.0049515716, + -2.3383244E-4, + -0.015805507, + 0.008256246, + 0.01208725, + 0.0042778193, + 0.0138850715, + -0.019057103, + 0.008488532, + -7.507157E-4, + -0.027304294, + -0.008439829, + 0.0038403096, + -0.0037225292, + 0.007895037, + 0.004579468, + -0.010603164, + 0.0067866663, + 0.010019836, + 0.022524463, + 0.0024668733, + 0.014977883, + 0.0036051387, + -0.0044332985, + -0.006393343, + 0.026783668, + 0.013024721, + 0.0023892357, + 0.023975795, + 0.0041165375, + -0.027303958, + 9.50042E-4, + 0.00861891, + 0.0021978316, + -6.764724E-4, + -0.015254831, + -0.0010337074, + 0.013614831, + -0.015577231, + 0.0036521978, + -0.038025007, + -0.022081597, + 0.02145155, + -0.016907357, + -0.019898152, + 0.02099217, + -0.016981237, + 0.009545978, + 0.016330747, + -0.019124266, + 0.011986443, + 0.008788621, + 0.008623236, + 0.01666223, + 0.00629792, + 0.021240124, + -0.01949637, + -0.020991577, + 0.014122592, + -8.844662E-4, + -0.004428733, + -0.010441945, + -0.028662123, + 0.0059393966, + 0.019815857, + -0.010013476, + -0.008061932, + 0.0067951074, + 0.011450791, + 0.011734621, + -0.013296681, + 0.004608812, + 0.02152272, + -0.009187577, + 0.015662044, + -0.0064707412, + 0.018250743, + 0.015888022, + -0.009827017, + 0.008319546, + -0.012487874, + -0.006392274, + -8.654562E-4, + 0.01972141, + 0.019563451, + -0.0056939228, + -0.01762378, + -0.0054274807, + -0.027291166, + -0.027759526, + 0.0017725927, + 0.014341308, + -0.02533425, + 0.028562428, + -0.027787331, + -0.0029429502, + 0.013528461, + -0.008081165, + 0.009507553, + -0.0140030505, + 0.004741984, + 0.0017162533, + -0.0026859408, + 0.03160307, + 0.0029130639, + -0.009416972, + 0.022018151, + 0.005021284, + 0.013917591, + 6.7852455E-4, + 0.013335093, + 0.014766347, + 0.009659498, + 0.040136557, + -0.016420554, + -0.004064158, + 0.010029538, + 0.012117202, + 0.00237781, + -0.03621963, + 0.006670198, + 0.0011695531, + -0.0031310748, + -0.0059307353, + -0.010288397, + -0.016781365, + 0.022819323, + -0.030452352, + 0.0074874773, + 0.0039680335, + 0.025824646, + -0.0035023112, + -0.005124947, + 0.0028055354, + 0.0034621512, + -0.025887493, + -0.011022829, + 0.0057632276, + 0.004793403, + 4.375742E-4, + -0.023610586, + -0.021190975, + 0.0051270407, + 0.0075683696, + 0.0013264227, + 0.0050960006, + -0.0018123275, + -0.005021117, + -0.0061955815, + -0.015111824, + 0.011747956, + 0.022590073, + -0.017021744, + -0.014965755, + -0.014113532, + 0.0060163056, + -0.0014850559, + 0.010508796, + 0.0071745715, + 0.0066369507, + -0.025969073, + -0.012996475, + 0.0084568765, + -0.0057348963, + -8.013016E-4, + -0.005903172, + 0.010131504, + 0.011379282, + 0.0029988843, + -0.005863941, + 0.0338701, + 0.004174815, + -0.006820776, + 0.010039672, + 0.02801638, + -0.022593252, + 0.008493127, + -0.01326096, + -0.0010674843, + -2.566438E-4, + 0.016665878, + -0.0135368705, + -0.017393546, + -0.009181345, + 0.014328451, + 0.02322862, + 0.012987011, + 0.015596692, + 0.027015893, + 0.027849, + -0.011089095, + -0.020720005, + 0.016527131, + -0.020725701, + 0.0049489527, + -6.412791E-4, + 0.014680556, + 0.01074002, + 4.3705286E-6, + 6.8209483E-4, + 0.0022322035, + 0.031037161, + -0.020192144, + -0.027196832, + 0.015508607, + -0.0076111984, + -0.016820613, + -6.368186E-4, + -0.004654602, + -0.016010145, + 0.0117404135, + 0.00756398, + 0.0020252655, + -0.0033347309, + 0.01630133, + -0.021901524, + -0.015297601, + -0.010968367, + 0.018521385, + -0.0024080132, + 0.010422446, + -0.02675012, + -0.0126376245, + 0.003034648, + -0.004938792, + 0.03290853, + 0.014602342, + -0.01595536, + 0.041967835, + 0.015880622, + -0.022110997, + 0.021122187, + -0.0069594053, + 0.021488978, + 0.010921044, + 0.0071754125, + -0.01952216, + 0.013621112, + -0.0026613283, + 0.020808045, + -0.033328455, + 0.021103859, + 0.019719772, + 0.04555787, + 0.009884395, + -0.014995093, + -0.0014881879, + -0.021114009, + 0.014694586, + -0.0040484737, + 0.0133556295, + 0.019246254, + -0.0067309337, + 0.0015563956, + -0.0107386, + 0.013414316, + -0.0060261833, + 0.012735629, + -0.022017892, + 0.044835903, + 0.012257949, + 0.021507587, + -0.006956348, + -0.018418767, + -0.0010970443, + 0.029984757, + -0.007706407, + 0.02366352, + 0.012365415, + 0.017499542, + -0.016159745, + 0.016409555, + 0.02866928, + 0.015619411, + -7.7430956E-4, + -0.0017950983, + -0.0071183355, + -0.029842444, + -0.014099214, + -0.01972822, + -0.010972986, + -0.025648845, + -0.023118794, + 0.0020133506, + -0.009441808, + 0.024941847, + -0.006071722, + -0.0046124347, + 0.0029949907, + -5.5741274E-4, + -0.0060559786, + -0.039351065, + 0.012120586, + -0.009451602, + -0.015118637, + 0.019449873, + -0.011977307, + 0.012412368, + 0.013385086, + 0.016916448, + 0.007465023, + -0.013109542, + -0.0042510633, + 0.021979643, + -1.6352533E-4, + 0.013049715, + -0.027537646, + -0.020177556, + 0.020335738, + 0.02347326, + -0.013819937, + -0.017592968, + -0.0133199105, + 0.013958073, + -0.026421854, + -0.0013296043, + 9.880363E-4, + -0.0076125176, + -0.016263623, + -0.01450612, + 0.014399204, + 0.020348113, + -0.015722867, + -0.029555576, + -0.0030886405, + -0.0019046735, + 0.014844505, + 0.0059499396, + 0.004368965, + -0.009368741, + -0.020544777, + 0.0011346363, + 9.1394025E-4, + -0.015633663, + -0.004296105, + 0.017486151, + 0.004940367, + 0.010204541, + 0.03959094, + -0.002718914, + 0.013742568, + -0.012016125, + -0.0136262225, + -0.012110017, + -0.012547844, + -0.020727007, + -0.0045729917, + -0.02105417, + -0.045222644, + -0.0061069783, + 0.028479088, + 0.012907859, + 0.01470812, + -0.027965141, + -0.033856597, + -0.00476286, + -0.007224976, + -0.005303935, + -0.0043702577, + -0.023621108, + -0.016420517, + 0.0031101063, + -0.03173392, + 0.0035107457, + -0.01697454, + 0.0042079794, + -0.022367049, + -0.008428096, + 0.0013982283, + 0.025839593, + -0.035226364, + -0.015717892, + -0.019859403, + -0.008708156, + -0.004530091, + 0.007410772, + -0.012071994, + -0.010449815, + 0.015444427, + -0.0042976644, + -0.014590942, + -0.0077057704, + -0.019446334, + -0.042599153, + -0.023518771, + -3.515157E-4, + 0.0048221927, + 7.1659207E-4, + -0.012692383, + 0.019105757, + -0.0025902104, + 0.009636715, + 0.024881467, + -0.0023758854, + 0.006109579, + 0.019082297, + -0.006369207, + -0.021562139, + -0.010461666, + -9.598721E-4, + 0.034076963, + -0.008890653, + -0.0030013856, + 0.008725746, + 0.028966071, + 0.009207479, + 0.004819941, + 0.032509077, + 5.4915407E-4, + -0.015491394, + 0.008182044, + 0.019315481, + -0.037678484, + -0.004640951, + 0.0014290052, + 0.0047489703, + 0.013738169, + 0.0027977163, + 1.04280465E-4, + 0.0036496397, + 0.0041565155, + 0.011874735, + 0.0058709546, + -0.013204142, + -0.011258635, + -0.004679004, + 0.010046763, + 0.008054648, + 0.003707804, + -0.005293264, + -0.0016470734, + -0.003855295, + -0.018863617, + 0.0027018595, + -0.018318152, + -0.018212374, + -0.0076930705, + -0.022054585, + 0.009451707, + -0.0016093265, + -0.0033282004, + -0.015425395, + -0.009284064, + 0.017314708, + -0.018492496, + -0.0114635695, + -0.039268844, + 3.146787E-4, + 0.01672784, + -0.020364111, + -0.014219726, + 0.008413224, + -0.013925233, + 0.00885144, + 0.010821206, + 0.001433887, + 0.018128775, + 0.03790049, + -0.017234439, + 0.026336648, + -0.016236788, + -0.014192037, + -0.004270611, + -0.018335866, + -2.8468715E-4, + -0.014242203, + 0.02148423, + 0.010587693, + 0.017685328, + 0.0032733597, + 0.015962983, + -0.0022833277, + -0.019809391, + 0.02622535, + -0.01430818, + -0.0183744, + -0.0040048864, + 0.0074432124, + -0.010510841, + 0.013991197, + 0.029159801, + 0.02649377, + 0.0053846296, + -0.017423598, + -0.0070048086, + 0.005804816, + -0.0014273557, + -0.002454539, + 0.007590208, + -0.006786898, + -0.021037972, + 0.015260093, + 0.01750434, + 0.0054706223, + -0.031481475, + 0.0022406697, + -0.0050306213, + 0.018955545, + -0.011138808, + 0.019633716, + -0.012310628, + 0.01145361, + 0.012026796, + 0.020524787, + 0.0062963106, + 0.019515185, + 0.01723999, + 0.01535867, + 0.0026408082, + 0.0047264392, + -0.01089255, + 0.03660187, + 0.006381159, + 0.0027116423, + -0.019235007, + -0.0390256, + -0.020217335, + 0.031281862, + 0.021582892, + -0.02228839, + 0.015809527, + -0.0059888503, + -0.006936465, + 0.0017512267, + 0.0024247807, + 0.017900005, + -0.0011658175, + 5.858418E-4, + -0.0039242315, + -0.0042432453, + 0.0058751116, + -8.949895E-4, + -0.017569304, + 0.007829555, + 0.022103956, + -0.018152688, + 0.022657638, + 0.015553965, + -0.013467345, + 0.01978831, + 0.015240524, + -0.0016469802, + 0.0042960276, + -0.003460467, + -0.022184653, + -0.0028247028, + -0.005730124, + -0.009329558, + 0.0012448175, + 0.013492621, + -0.018088352, + -0.008067504, + 0.009675034, + 0.039947983, + -0.01070844, + 0.0024325508, + -0.024515964, + 0.008548487, + 0.019232925, + -1.4857612E-4, + -0.004569508, + 0.00701102, + 0.00814488, + -0.022404166, + 0.016760873, + -0.001072229, + -0.02807767, + 0.017040445, + 0.009133604, + 0.011884737, + -0.0061995555, + -0.006094438, + -0.0052523552, + -0.0057748994, + 0.0097749885, + 0.0036814725, + -0.016019335, + 0.0012687198, + 0.0037541338, + 0.013459314, + 0.008442642, + 0.0034275192, + 0.02084231, + -0.027685093, + -0.0025485957, + -0.015657753, + 0.017144077, + 0.01689085, + -0.02230601, + 0.038306627, + 0.009195206, + 0.012472286, + -0.010987796, + 0.0012220702, + -0.0056624194, + 0.032165088, + 5.183495E-4, + 0.0012341837, + -0.021748785, + -0.020903716, + 0.012600237, + -0.025060749, + -0.029169384, + 0.01632784, + -0.006285578, + 0.013916113, + -0.004816141, + -0.004070064, + -0.009651986, + 0.016829623, + 5.563893E-4, + 0.0048994343, + -0.028775807, + 0.004350032, + 0.0061676204, + -0.023162626, + -0.003676859, + 0.0021637548, + -0.0113493735, + 0.010670938, + -0.003946156, + -0.039162453, + 0.012748953, + -0.0185507, + -0.006047945, + -0.023734232, + -0.00968699, + 0.009759147, + -0.010121028, + 0.01530575, + 0.0055229287, + 1.476187E-4, + -0.009557591, + 0.008291625, + 0.0052274843, + -0.0075468817, + -0.0036244341, + 0.02169753, + -0.012933558, + 0.015411803, + -0.023685198, + 0.0078885285, + 0.029167468, + -0.0016418414, + 0.0010167663, + 0.0055509503, + 0.015349858, + -0.0053531593, + 0.0036409434, + -0.009130442, + 0.013060584, + 0.0046994127, + -0.009578087, + 0.013842101, + 0.015374391, + -0.008796323, + -0.009304227, + -0.014132694, + 0.0184852, + -0.01434386, + 0.041361474, + -0.00402264, + 0.010085622, + 0.0019020791, + 0.024239091, + 0.014713721, + -0.017976642, + -0.024005542, + -0.025169412, + 0.003519001, + -0.014490101, + -0.015779935, + 0.016373862, + 0.005365489, + -0.0094262315, + 0.016484631, + -0.006639765, + 0.018640537, + 0.0034135426, + -0.008746062, + -0.010028557, + -0.0081625935, + 0.0172033, + 0.0049203984, + -0.0085452385, + -0.031442042, + -9.1254344E-4, + -0.03990541, + 0.008283121, + 0.0032956845, + -0.016381782, + 5.6630216E-4, + 0.0047683725, + 4.5834153E-5, + -0.005856068, + 0.017593633, + -0.011295687, + 0.007990435, + -0.008220544, + 0.028110286, + -0.0022736264, + -0.035287563, + 0.009843764, + -0.005535788, + -0.0059110518, + -0.02101067, + -0.04411423, + -0.005176207, + 0.0010044157, + -0.010272322, + -0.017672876, + -0.009664907, + 0.025465775, + 0.03249663, + -0.004602655, + 0.00447379, + 0.023829727, + -0.025984362, + 0.023860738, + -6.2758656E-4, + -0.010951606, + -0.023348635, + 0.0012433665, + 0.0063761626, + 0.0094325, + -0.0078526065, + -0.008758537, + 1.6479072E-4, + 0.005721403, + 2.3786578E-4, + 0.005888029, + -0.015776152, + 0.0032417476, + 0.033293113, + 0.0068682465, + 0.0092246765, + -0.026380518, + -0.0073461886, + 0.0050383015, + 0.0041738856, + 0.007034207, + -0.008511536, + 0.0049033053, + 0.006626709, + -0.020847833, + 0.014006918, + -0.0057081305, + 0.025954021, + -0.015861826, + -0.004435257, + 0.026153639, + -0.0041944957, + -0.015434507, + 0.010597314, + 0.022425868, + 0.03381312, + 0.0111642415, + -5.368053E-4, + 0.027217511, + 0.0036959194, + -0.019063381, + -0.028400922, + -0.0070191715, + 1.8740272E-4, + 0.006435113, + -0.018413393, + -0.017992333, + 0.00288652, + -0.0050234855, + -0.01031855, + 0.029711502, + 0.016530724, + 0.012612399, + 0.020197216, + 0.015935978, + 0.044598818, + 0.017297009, + 0.0064771166, + 0.029450364, + 0.008685758, + 0.0022176215, + 0.0015583218, + 0.019503511, + 0.010661385, + -0.008038671, + 0.017779656, + -0.01428528, + -0.02124257, + 9.229024E-4, + 0.010713998, + -9.534973E-4, + -0.01728367, + -0.0024360376, + 0.0036733076, + 0.0075137233, + 0.0072479807, + -0.027948575, + 0.025530206, + 0.006867679, + 0.016500065, + -0.0031989233, + 0.02243785, + -0.008209368, + 0.014338414, + -9.927509E-4, + 0.017367925, + -0.016773872, + 0.008663127, + 0.02342548, + 0.006425741, + -0.037819494, + 0.013479155, + 0.002897071, + -0.014705545, + 0.018042635, + -1.6321044E-4, + 0.006912239, + -0.0064712334, + -0.02215358, + -3.0922057E-4, + -0.009071505, + 0.004382103, + 0.028009336, + 0.014038271, + -0.013589632, + -0.016135713, + 0.0032218862, + 0.008528605, + 0.025053162, + -0.014853672, + 0.009004418, + 0.015789216, + -0.034332108, + 0.005523103, + -0.015952304, + -0.023589166, + -0.0068278825, + 0.01456184, + -0.019727884, + -0.010512431, + 0.010014899, + -0.019580543, + 0.0048666294, + -0.0052227415, + 0.009226693, + 0.0077741947, + -0.028725557, + 0.03239825, + -0.00934951, + -0.023615742, + 0.009328699, + -0.013194473, + 0.02157615, + 0.00593251, + -0.031264767, + -0.006396269, + 2.0256217E-4, + 0.006986894, + -0.015167211, + 0.003481835, + 0.0027454067, + 0.00583022, + 0.006216303, + 0.016808627, + -0.0039946744, + 0.010712827, + 0.00227186, + -0.005788323, + 0.021481644, + 0.030560862, + 0.0115829, + -0.008439344, + 0.005006025, + 0.0015152695, + -0.015011912, + -0.0088605415, + 0.014200563, + -0.025590451, + 0.00585463, + -0.004306914, + 0.024453994, + -0.003971806, + 0.0017750411, + -0.020440526, + -0.008483189, + 0.03157735, + -0.0060330806, + 0.0027497648, + -0.03181655, + -0.013255765, + 0.026727997, + 0.0036797842, + -0.0047209207, + 0.008960904, + -0.013060026, + 6.320643E-5, + -0.0017480048, + 0.017219624, + 0.00468686, + -0.0071699996, + -0.0043735076, + 0.001202983, + 0.009296768, + 0.009801939, + -0.017043797, + 0.017595908, + -0.012795908, + 5.312921E-4, + -0.023702439, + -0.01576202, + 0.0012455927, + -0.0010852693, + -0.034558058, + -0.0010831311, + -0.031899337, + 0.013061909, + -0.025968619, + 0.013702908, + 0.0026409845, + 0.0073405895, + 5.554115E-4, + 0.007439218, + -0.02269536, + -0.027488988, + -0.0047448142, + 0.008729532, + 0.016189437, + 0.0040613385, + 0.006793615, + -7.06218E-4, + -3.3568006E-4, + -0.007945036, + -0.009938167, + -0.010911541, + -0.016950516, + 0.022137793, + -0.027847886, + 0.010105116, + 0.024132503, + -0.0015632967, + -0.008300176, + -0.016388165, + 0.015097153, + 0.007003488, + -0.006040404, + 0.00721633, + -0.007940392, + 0.017648024, + 0.0164211, + 9.1809063E-4, + -0.011681722, + 0.014760372, + 0.013914261, + 0.007046252, + -0.0077632884, + 0.0034286669, + -0.023802606, + 0.0018698901, + -0.0012449068, + -0.016504128, + -0.019866904, + 0.016422786, + -0.009748914, + -0.00501228, + 0.04118064, + -0.009881486, + -0.023474623, + 0.017892031, + -0.00973473, + -0.0011110825, + -0.013051181, + -0.026304776, + 0.0249861, + 0.006804243, + 0.0028823211, + 0.012660186, + -0.017870445, + -0.0068298248, + 0.026153628, + -0.009372988, + 0.0015358658, + -0.0187407, + -6.4903876E-4, + -0.0025113572, + -0.015848352, + -0.0048765684, + 0.046027098, + -3.0709192E-4, + 0.009132407, + 0.011577016, + 0.029398153, + 0.0026692105, + -0.002829151, + 0.008277626, + -0.024184445, + 0.007587445, + 0.016943352, + -0.01850128, + 0.02800251, + 0.011753552, + 0.0020663333, + -0.014915658, + 0.01225747, + -0.0041598175, + -0.015333448, + 0.023584314, + -0.0072147194, + -0.0049745464, + 0.027282923, + -0.012337504, + -0.01336947, + 0.030689996, + -3.708419E-4, + -0.017521258, + -0.005347448, + -0.02361293, + -0.0104950825, + -0.00905811, + -0.024920342, + 0.018334111, + 0.01929502, + -0.028431924, + -0.020710694, + 0.0043249517, + 0.004149043, + -0.019155046, + 0.0012684102, + 0.003070686, + 0.021002935, + 0.017943922, + 0.006963776, + 0.0078199515, + -0.013632267, + 0.013255567, + -0.0122436695, + 0.027022613, + -0.009660155, + -0.016424177, + 0.010444556, + -0.015927136, + -0.014303981, + 1.06916086E-4, + -0.0022767165, + -0.014596748, + 0.0061942646, + 0.012592302, + -0.028899476, + -0.019671693, + 0.015891152, + 0.011982087, + 0.02099062, + 0.0051800986, + -0.020019535, + -0.029411072, + -0.014093789, + 0.018499533, + 0.01614787, + -0.005234079, + -0.006334265, + 0.022584425, + 0.0098211905, + 0.0037267779, + -0.007526198, + 0.006487322, + 0.020637184, + 0.0055454792, + -0.011139188, + -0.0036246732, + -0.0019258918, + 0.021429062, + 0.020000922, + -0.0028734154, + 0.004673664, + -0.00856652, + 0.005942566, + -0.002018549, + 0.0018209809, + -0.020820927, + 0.014447662, + 0.005149736, + -0.02494725, + 0.014736416, + 0.031850085, + -0.0074718976, + -0.014452368, + 8.9760975E-4, + -0.007935434, + -0.004338881, + -0.017512243, + -0.012396188, + -0.014933337, + -0.0148508325, + -0.009758019, + -0.0022398795, + 0.006346863, + -2.3639035E-4, + 3.51597E-4, + -0.0014459982, + 0.005419592, + 0.0049867965, + 0.005739245, + -0.0013550338, + 0.018617854, + -0.009327323, + 0.01794255, + -0.008875012, + -1.2210704E-4, + 0.02292028, + -0.013593096, + 0.026091542, + -0.017425781, + -0.00268557, + -0.029274907, + -0.0038694618, + -0.0051867226, + -0.0029292754, + 0.010632246, + 0.0038040704, + -0.009511157, + 0.03314954, + -0.0090455925, + -0.021038614, + 9.108666E-4, + -0.020804409, + -0.008966281, + 0.005594277, + -9.6627476E-4, + 0.006344779, + -0.019888462, + -0.0058816425, + -0.0034353647, + 0.010517168, + 0.018119246, + 0.0047772275, + 0.031679533, + -0.0038897009, + -0.013769619, + -0.013439282, + -0.001140487, + -0.0026519152, + 0.0053000893, + 0.008939806, + -0.029094215, + -0.007260872, + 0.006619918, + -0.0032996803, + -0.016543224, + 0.0045914636, + 0.012066811, + -0.02080074, + 0.009547064, + -0.007658261, + 0.00940665, + 0.015047073, + -0.005341896, + -0.013581626, + 0.01218812, + -0.012073277, + -0.01896547, + 0.014919461, + 0.017638806, + -0.0015484754, + -0.016743597, + -0.005741916, + 0.02698557, + 0.0014249071, + 0.018264798, + 0.013545911, + -0.014686992, + 0.014001645, + -0.011660995, + 0.022994181, + 0.011057086, + -0.030740444, + 0.0032779982, + 0.013367341, + 0.009430629, + 0.020797294, + -6.553407E-4, + -6.180431E-4, + 0.003731177, + 0.008018641, + -0.027640268, + 0.040759593, + -0.00798252, + 0.0035024618, + -0.0012760961, + -0.0077716415, + 0.022758957, + -0.009398621, + 0.0029472543, + 0.01202776, + -0.0037087328, + -0.007310643, + 0.012556161, + -0.0021394659, + 0.013326025, + 0.01838442, + 7.31073E-5, + -0.0071747606, + -0.0012208646, + -0.00287973, + 0.0043255715, + 0.01345709, + 0.020979062, + -0.019312607, + -0.010262174, + 0.009247046, + 0.011861527, + 0.0049471967, + 0.009625576, + -0.016662197, + -0.001118664, + -0.013821036, + 0.01240162, + 0.005071213, + 0.0038052537, + -0.010750232, + 0.008884303, + -0.029103708, + 0.010899991, + 0.015589473, + 0.013365667, + 0.013304993, + -0.028000442, + -0.024343567, + -0.013470778, + -0.031640157, + 0.02098046, + 0.027121283, + -0.001664939, + 0.021196932, + 0.02133531, + -0.0065735574, + -0.036403924, + -0.0014659388, + -0.008656048, + -0.016838241, + 0.046063453, + 0.0028675615, + 0.015531232, + -0.014475512, + 0.022933273, + 0.009246995, + -0.014454001, + -0.027350629, + 0.03593814, + 0.0033053996, + 0.008830994, + -0.008209581, + 0.0069459104, + 0.026693597, + 0.014234001, + 0.011259994, + -0.0051755556, + 0.022246212, + -0.015270582, + -0.0037921816, + -0.025894891, + -0.022361692, + 0.0031346008, + -0.020049516, + -0.008441858, + -0.0107733905, + 0.026472088, + -0.011264239, + -0.026013397, + 0.0010003858, + -0.003991577, + 0.0056506605, + 0.005962331, + 0.012103366, + 0.0022185661, + 0.004102202, + -0.01637961, + -0.0018218912, + 0.03058262, + 0.0047967667, + 0.022900572, + 0.022373997, + -0.04561274, + 0.022208277, + 0.03289797, + 0.004823533, + -0.0020627773, + -0.0075611616, + 0.0040950105, + 0.013364931, + -0.016366424, + 0.012266101, + 0.010980394, + -0.010176847, + -0.0038614566, + -0.012448865, + 0.0069846995, + 0.0034336618, + 0.0105112335, + 0.006560672, + 0.016213097, + -0.0036639099, + -0.0176038, + -0.018075084, + 0.0010509294, + 0.010760242, + 0.003657917, + -0.016603129, + 0.02489439, + -0.025311923, + 0.004363967, + -0.004119494, + 0.008177794, + 0.008233952, + 7.183541E-5, + 6.5242546E-4, + 0.0037564868, + -0.01931527, + -0.011713052, + -0.007942747, + -0.0062008672, + 0.017294692, + -0.014664135, + 0.0034239294, + 0.0010213825, + -0.008703322, + -0.010756137, + 0.003625308, + -0.0062175156, + -0.02434826, + 0.002780446, + -0.008328482, + 0.0014957401, + 0.032993432, + -0.015785953, + -0.00970836, + -0.01590744, + -0.029741555, + -0.014647757, + -0.026542475, + -0.017866975, + 0.0035110125, + -0.0053531267, + 0.0020044735, + -0.0154538695, + -0.018322764, + 0.0061803516, + 0.024594609, + 0.02252728, + 0.024360804, + -0.011438053, + -0.022059198, + -0.009073849, + 0.007869821, + 0.03575136, + 0.0246192, + 0.014824685, + 0.011647246, + 0.019829681, + 0.023485534, + 0.01647828, + -0.013428737, + -0.011528795, + -0.014683444, + 0.007661001, + 0.007301907, + -9.252531E-5, + -0.016600685, + -0.021130526, + 0.012142761, + -0.013843705, + 0.0031580837, + 0.01039352, + -0.01588099, + -0.0087391995, + 0.0068973214, + -0.0149183115, + -0.01732212, + -0.003545195, + 0.007835556, + 0.030172765, + -0.0015265215, + 0.02532906, + 0.008887138, + -0.018263286, + -2.6521034E-4, + -0.038541857, + -0.02111565, + 0.03890899, + 0.012588187, + 0.026566744, + -0.0068677673, + 0.03461391, + -0.0181865, + 0.011189656, + -0.01673977, + 0.025397377, + 0.032937545, + 0.015616234, + -0.001733157, + -0.009500191, + -0.013755237, + 0.0083136745, + 0.0034797275, + -0.0261897, + -0.022930874, + -0.015823495, + -0.015735047, + 0.022474132, + -0.036350477, + -0.020169156, + 0.0013946495, + -0.0020067333, + -0.014211778, + -0.00640317, + -0.01930245, + -0.019913873, + -0.0039056663, + -0.006596838, + 5.5368384E-4, + 0.0030056105, + 0.022944067, + 2.5930387E-4, + -0.012676811, + 0.015689218, + 0.016903846, + 0.025144521, + 5.740451E-4, + 0.02148331, + -0.008904117, + -0.009970255, + 0.012386676, + -4.735902E-4, + 0.016648496, + 0.017324442, + -0.007896243, + -0.029320652, + 0.02335002, + -0.024921402, + -4.4610674E-4, + -0.0028114081, + 0.016636966, + 0.012757604, + -8.250286E-4, + 0.0028408936, + 0.0021853307, + -0.0016284363, + -0.0040027853, + -0.0034778658, + -0.019691478, + -0.017215444, + 0.0077741295, + -0.009836834, + 0.01907161, + -0.009381048, + -0.012804588, + -0.016686987, + 0.01739752, + -0.0043505607, + 0.025406122, + -9.3868433E-4, + -0.0104228025, + 9.408974E-4, + 0.020330783, + 0.022643588, + 0.010982486, + -0.02719602, + 0.0047858674, + 0.0067421296, + -0.0013222257, + -0.0031292054, + 0.040399376, + -0.009586484, + 0.01889318, + 0.035532627, + -9.103512E-4, + 0.013058223, + -0.017955342, + 0.008889624, + 0.0019394227, + -3.7465885E-4, + -0.0037957893, + -0.020355746, + 0.024348367, + 0.003376175, + 0.0034364697, + 0.022060731, + 0.03046852, + -0.003753587, + -0.0132247405, + -0.008502572, + 0.006503674, + 0.018536765, + 0.041009035, + 0.0096962415, + -0.030162267, + 0.016901847, + -0.021777622, + 0.013604528, + -0.003280017, + 0.0057176515, + 0.020289686, + -0.0034025076, + -0.018357454, + -0.05449903, + 0.0028291612, + -0.021361116, + 5.3217873E-4, + 0.02811225, + 1.7189558E-4, + 0.022556534, + -0.044940267, + -0.013868138, + 9.069593E-4, + -0.041171752, + -0.019018162, + 0.012637025, + -0.018696781, + -0.019094478, + -0.008796526, + 0.013689747, + 0.00960309, + 0.0079197, + 0.017732296, + -2.3284413E-4, + -1.9433166E-4, + 0.018903868, + 3.714992E-4, + 0.026165657, + 0.017818747, + 0.009190223, + 0.030062098, + 0.003671612, + 0.0017458956, + -0.01685586, + -0.008897636, + 0.020091437, + 0.032869652, + 0.0146906655, + -0.029510157, + -0.010264472, + -0.021330358, + -0.0049881823, + 0.0017726014, + 0.0019406319, + -0.0133942235, + 0.00972443, + 0.021612545, + -0.0014517764, + -0.01315854, + -0.021347018, + 0.012771677, + -0.013682204, + 0.014154987, + 3.8625535E-6, + -0.008564943, + -0.019519003, + 0.034105852, + 0.026191622, + -0.037443623, + 0.006894669, + -0.0010418918, + 0.0037935346, + 0.0010110976, + -0.02449031, + -0.0061684414, + 0.013063439, + -0.027369445, + -0.006000628, + -0.029713308, + -0.0072011314, + 0.011913033, + -0.021799967, + 0.009456586, + -0.0022694874, + 0.02060837, + 0.004506536, + -0.019973366, + 0.022730377, + -0.017647408, + -0.02727318, + -0.0019305617, + -0.016091028, + 0.0026974578, + 0.016386176, + -0.004520562, + 0.010071945, + 9.430789E-4, + 0.004993117, + -0.002115406, + -0.00953327, + -0.020284208, + -0.018867407, + -0.012627947, + 0.013594767, + -0.02107723, + -0.034346364, + -0.012564644, + -0.033777494, + 0.024319893, + -0.009184736, + -0.026713785, + -0.0051015276, + 0.022980986, + 0.009679418, + -0.0045616245, + 0.0139664225, + -0.01793358, + 0.02917207, + 0.0051142196, + 4.339313E-4, + 0.0134043675, + 0.0032282888, + -0.0058943434, + -0.018946378, + -0.022357954, + -0.01041864, + 0.0035542352, + -0.0068992446, + -0.0019228581, + 0.004228082, + -0.016557718, + 0.032288905, + 0.013516162, + 0.0051509757, + -0.009231605, + 0.007865352, + 0.012022948, + 0.024108687, + 0.010249025, + 0.0030504586, + 0.02482843, + -0.008339618, + 0.02534886, + 0.021418465, + -0.0056798877, + -0.02311608, + 0.016575132, + 0.023288663, + -0.008575179, + -0.004639285, + -0.019274931, + 9.1266795E-4, + -0.0045041763, + -0.0078094336, + 0.009626141, + -0.013394861, + 9.001692E-4, + 0.0015145261, + -0.0056894612, + 0.01828093 ], - "paletteEmbedding": [ - 0.003758369, 0.029622838, -0.008568031, 0.0203849, -0.08356115, - 0.010596298, -0.018945802, 0.007418104, -0.001722189, -0.019488925, - 0.04787168, -0.07539881, 0.03265276, 0.06654513, 0.045507967, - -0.057936914, 0.025354452, -0.04372517, -0.012785912, -0.006010403, - 0.0060168207, -0.049599037, -0.001954655, 0.008698581, 0.016024701, - 0.0063670753, 0.029161844, 0.040516376, -0.020086113, 0.03008392, - 0.0066120117, 0.01048483, 0.023907054, 0.0011533293, -0.035998568, - 0.017389908, 0.029894672, 0.02385427, 0.011438534, -0.047279578, - -0.03920333, -0.028815638, -0.03844517, 0.0476802, 0.036997482, - -0.0018026395, -0.0047071036, -0.0739853, 0.009658323, 0.012168037, - 0.0443044, 0.038337052, -0.004642446, -0.019362919, -0.03835154, - 0.015531062, 0.020780062, 0.013756436, 0.03503487, -0.027077, - -0.009434187, 0.026236897, 0.007467803, 0.03812733, 0.041150067, - -0.018962564, 0.0072660805, -0.04348973, 6.938914e-4, 0.024013286, - 0.00512184, -0.022097308, 0.020101702, 0.02006321, -0.036706984, - 0.053552307, -0.02473188, -0.025149463, -0.023407295, 0.012297687, - 0.019640466, 0.0077085784, 0.0014549204, 0.024542077, -0.0028592024, - -0.02548573, -0.0013618598, 0.019356115, -0.017755112, -0.04176406, - 0.019783229, 0.024856962, -0.015240604, -0.054211784, -0.012470009, - -0.037400994, -0.009060984, -0.017068032, -0.015002533, 0.04453089, - -0.04270341, 0.0025380817, -0.0019001573, -0.024642242, -0.01562167, - -0.05474376, 0.053300515, -0.0289583, 0.044524025, 5.6442636e-4, - -0.03745514, 0.014022333, 0.032595683, -0.019851001, -0.05570512, - 0.033653002, -3.9988186e-4, -0.028417824, 0.0069195866, 0.031740427, - -0.02892193, -0.0020037997, -0.007274999, 0.024059512, 0.0063762194, - -0.022312738, 0.012442793, -0.00775447, 0.0013662488, 0.03581897, - -0.078929745, -0.029314108, -0.015465417, 0.003394812, 0.029137505, - 0.019623209, 0.0126704145, 0.032464422, 0.042154662, -0.01783641, - 0.016612135, -0.0035424656, -0.025944125, -0.062435802, 0.01243723, - -0.056303546, 0.0066140075, 0.019108498, -0.033345927, 0.012727418, - 0.059201635, -0.02438746, 0.059666093, -0.06708915, -0.042057622, - 0.05151558, -0.009459719, -0.012233763, 0.032512624, 0.017428469, - -0.014606016, -0.016284576, 0.042724684, 0.024836255, -0.046920422, - 0.01012642, -0.0024018371, -0.0384098, 0.01009327, -0.052486666, - -0.022452114, 0.017584298, -0.034445576, 0.041973844, -0.0032336896, - -0.012243046, -0.009416048, 0.019220192, 0.017569872, 0.030420912, - 0.01886693, -0.027853826, -0.01763665, -0.020435758, 0.023362035, - 0.0027594387, -0.02787801, -0.0020311417, 0.013382675, 0.015458338, - 0.006193941, -0.0037395395, 0.035886217, 0.04704432, -0.049170665, - 0.008596556, 0.01374734, 0.014917035, -0.0053727427, -0.024766123, - -0.03225077, -0.023221333, -0.038599696, -0.018014515, -0.0074804304, - -0.022122748, -0.020232432, -0.0374049, 0.0439639, -0.026267914, - 0.023302771, -0.041464746, 0.051644266, 0.0012364989, 0.0066172383, - -0.037816375, -0.009614509, -0.023468725, 0.047309842, -0.069841295, - 0.008359063, 0.056710042, -0.03503551, -0.043160748, -0.0222362, - 0.0017433182, 0.025310064, 0.023549784, 0.028732652, -0.024496308, - -0.02170946, -0.068953395, -0.025787931, 0.037005924, 0.023404552, - 0.0056875334, 0.039651975, -0.009775312, -0.035296783, 0.019138765, - -0.008708254, -0.072879724, -0.005865549, 0.016411128, -0.0110267205, - 0.001364017, 0.015036518, -0.022830486, 0.08609091, 0.026159333, - -0.03801014, -0.017821439, -0.045109354, -0.0077728443, -0.0041711032, - 0.018885106, 0.024858987, -0.03834658, -0.016552964, -0.0234344, - 7.2802644e-4, -0.013135097, 0.008462116, -0.013823456, 0.0091423, - -0.045746326, 0.07943421, -0.030209797, 0.0180599, -0.05553408, - -0.02162855, -0.06372378, 0.027591936, 0.00668687, -0.02542895, - 0.011777216, 0.028599275, -0.017588872, -0.0032096459, -0.03775491, - -0.053920433, -0.07190169, 0.028456073, 0.040544387, 0.0082843965, - -0.010551858, 0.025481509, 0.04820572, 0.041047107, 0.033007395, - 0.030186705, -0.008379954, -0.014917123, 0.04708863, 0.0255079, - 0.0069470573, -0.044944994, 0.023073317, -0.024563953, 0.021931473, - -0.046013173, -0.044674713, -0.018988973, -0.015794577, 0.025743023, - 0.0155276945, 0.0711513, 0.03986008, 0.02996041, -0.027243193, - 0.032926634, -0.010860532, 0.04258557, 0.040865324, 0.033093374, - -0.021525446, 0.06116427, 0.0043814844, 0.009494107, 0.00729993, - -0.01427901, -0.016705701, 0.020484595, -0.007940215, 0.06477506, - -0.055196334, -0.053057767, 0.056358155, 0.015570228, -0.026507035, - -0.03577832, -0.0035274487, -0.038399722, 0.0015061949, 0.016041763, - -0.012813775, -0.03911717, 0.009847959, 0.03181154, 0.05302044, - 0.05139397, 0.035801284, 0.037259717, -0.026214452, 0.028021552, - -0.031835012, -0.029247403, -0.012829206, 0.012717346, -0.037969634, - -0.007890767, 0.009498578, 0.03323874, 0.012691818, -0.033055652, - 0.03304385, 0.008795635, 0.017118737, -0.05395746, 0.010359982, - -0.0059659625, -0.025292004, 0.030588297, 0.011783413, 0.0010625473, - -0.035522718, -0.01186387, 3.760726e-4, -0.028155008, 0.039725818, - 0.05921348, 0.0019744635, -0.017322266, -0.014356472, 0.025664419, - -0.019586833, 0.0039364416, 0.06387999, 0.046349388, 0.052209917, - 0.020645276, -0.007631851, -0.02552232, -0.027452137, 0.0050203423, - 0.04181691, -0.038376562, 0.0027681068, -0.011319883, 0.0065032616, - 0.0016266729, 0.019761164, 0.0023602573, 0.01037213, -0.04230798, - 0.061383504, 1.8999827e-4, -0.002942596, -0.003758349, 0.0047310847, - 0.033098336, 0.013962411, -0.049430516, -0.049699266, -0.045643415, - 0.030138355, 0.026880689, -0.017346712, -0.064171605, 0.07970265, - 0.029515138, 0.025516588, -0.043641165, 0.036958516, 0.047444988, - -0.01786122, -0.029022602, 0.005223902, 0.0051067797, 0.024351973, - -0.026796572, 0.043376733, -0.027130514, -0.043975737, 0.024440508, - 0.062278006, -0.019690983, 0.033043955, -0.05840635, -0.0037707093, - -0.01285623, 0.024862766, 0.025175124, 0.022129124, -0.0077779316, - -0.021537112, -0.0494543, 0.0033450928, -0.018065354, -0.05314376, - -0.019123072, 0.028165478, -0.05365726, 0.050782427, -0.02058252, - 0.014296783, 0.03111192, 0.009680995, 0.022103757, 0.03435229, - 0.012216796, -0.025460482, -0.041248247, 0.017875947, 0.02054582, - 0.025058895, -0.005556866, 0.06740123, 0.010672312, 0.027539426, - 0.0054094344, -0.003802534, 0.009401701, 0.011106865, 0.024619894, - 0.022858758, -0.045688417, 0.036036275, -0.024949301, 0.03980729, - 0.04392801, 0.012496707, -0.0017936459, 0.009262237, 0.026868679, - 0.011321968, 0.045717414, 0.022143561, 0.051174007, -0.059090767, - 0.019914705, -0.0395104, 0.0585024, -0.015374526, 0.020578608, - 0.01360586, 0.056474205, 0.026309507, -0.024886305, 0.011458096, - 0.01771527, 0.07220793, -0.004114474, -0.022444975, -0.005896139, - -0.014366841, -0.015457335, -0.019538758, -0.05456424, -0.057693496, - 0.04825428, 0.01600727, 0.008794093, -0.0029139868, 0.034757327, - -0.0028587724, 0.016812634, -0.033629097, 0.018577665, 0.008943236, - -0.010745011, 0.035744566, 0.026683899, 0.06741606, -0.021751465, - -0.0016446065, 0.01426547, 0.02848673, 0.013489341, 0.025136482, - 0.010401066, -0.04732273, -0.062856555, -0.028726492, -0.039406423, - 0.011068568, -0.012428387, 0.010191341, 0.0055994866, 0.011473416, - -0.0070845457, -0.030341689, 0.031881627, -0.046970434, -0.036477935, - 0.03317378, 0.0026551222, -0.0056639765, -0.060101073, -0.03674273, - 0.03410937, 0.0011499835, 0.045931038, -0.0026635968, 0.016230328, - -0.062142964, -0.0040707355, 0.017336307, -0.013684718, 0.021093022, - 0.0010430247, 0.027954018, 0.035465192, 0.031609077, 0.0112685, - -0.018268565, 0.029089432, 0.009197392, 0.028350865, -0.012760951, - 0.0069965706, 0.021628715, -0.009552124, 0.010518857, -0.022432229, - 0.03659554, -0.011716001, 0.04869141, 0.080530025, 0.018851448, - -0.015008024, -0.010738046, -0.0050938944, 0.038917556, 0.0340018, - -0.00433272, -2.2720509e-4, -0.007909929, -0.0120795015, -0.025163174, - -0.018198567, 0.026838781, -0.023109846, -0.007912883, 0.021408943, - 0.049949624, 0.009109624, -0.042561572, 0.02774939, 0.0048208125, - -0.011380907, 0.007717049, 0.03477086, 0.001144976, -0.004321357, - 0.04393285, -0.0436024, 0.016073138, 0.016471516, -0.07457765, - 0.033233132, -0.004562745, 1.8892888e-4, -0.04281615, 0.020278743, - -0.024472894, 0.028112207, -0.021215022, -0.019075006, 0.03334982, - -0.042604417, 0.020347334, -0.0038160246, 0.028440794, -0.0021927776, - 0.010922333, -0.057987824, -0.03319487, -0.004309258, 0.011603308, - 0.06361429, 0.023825595, 0.026531368, -0.014957068, -0.0017165529, - 0.059634045, -0.033680297, -0.071643375, 0.0055020237, -0.058953278, - 0.030458307, -0.035579517, -0.035384256, -0.021218909, 0.0027405731, - -0.0012958187, -0.057577115, -0.013328681, 0.0021130918, -0.0042545684, - -0.054564714, 0.06172286, 0.031603336, -0.013635431, -0.017666832, - 0.0075272145, 0.058893114, 0.007934685, -0.02118214, 0.04237196, - -6.236674e-4, -0.03432526, -0.03048642, -6.4314634e-4, -0.008912635, - 0.007654218, 0.017998397, -0.062397238, -0.047227316, 0.029237216, - -0.003381228, 0.009501829, 0.04358835, 0.0407083, 0.022147303, - -0.009130934, -0.017753294, 0.0037458423, -0.004726067, 0.023580458, - 0.013521217, -0.012852885, -0.07696781, -0.022690224, -0.005641472, - 0.04905842, 0.036732037, 0.017550068, 0.06907191, -0.052282207, - -0.05613694, 0.0806859, -0.021254575, -0.008848727, 0.01700041, - 0.03982335, 0.0011609078, -0.0035620625, -0.044546943, 0.01907782, - 0.018699877, -0.0017497063, -0.029551733, 0.026953828, -0.014103498, - 0.0044089374, -0.024910659, -0.02887859, 0.006489292, -0.027653145, - 0.024936905, -0.019309092, 0.049328767, -0.013182405, 0.0023970671, - -0.008866595, -0.0370373, -0.003466493, 0.010995348, 0.034996778, - 0.08868352, 0.026469678, 0.005080446, 0.045168567, -0.009934152, - 0.019298358, -0.0062029115, -0.029745746, -0.0968467, -0.03872616, - 0.006196193, 0.01608286, -0.056517497, -0.025835987, -0.010256494, - 0.03979066, 0.03146141, -0.0077398894, 0.012684075, -0.034878783, - 0.021454679, -0.020653693, 0.015272321, -0.019822486, -0.019574067, - -0.02530933, 0.051852483, 0.042262774, 0.015786177, 0.017852819, - 0.011421388, -0.11967636, -0.028897302, 0.02049303, 0.017798232, - -0.030536532, -5.8161473e-4, 0.005274056, -0.06339819, 0.015334367, - -0.0328453, 0.02573923, -0.045676697, 0.032019053, -0.01091251, - 0.0010690961, 0.028946629, 0.014855335, 0.010305982, 0.045022786, - 0.005195862, 0.013295413, 0.05711561, -0.038596068, -0.017073276, - -0.046232544, -0.017596453, -0.03496501, 0.07387791, 0.0134414155, - -0.038613327, -0.033595726, 0.032797996, -0.009119507, -0.0036463253, - -0.038049947, -0.014812441, 0.007243897, -0.040851016, 0.048714373, - 0.015352697, -0.02745929, 0.018024553, 0.021656217, 0.015165418, - 0.031731725, 0.00857504, -0.036759626, 0.004562625, -0.03697559, - -0.044056993, -0.007474109, 0.032135416, -0.038113583, -0.0346088, - 0.0034130716, 0.0053223763, 0.027674848, -0.003505953, -0.0018212922, - -0.057280343, 0.009011898, 0.060657114, 0.04717176, 1.7636939e-4, - 0.030232953, -0.057747968, 0.0244795, -0.015753211, -0.05224545, - -0.003526776, 0.0573683, -0.008485951, -0.012322757, 0.0015546175, - 0.025505463, 0.011154729, 0.05389798, -0.023270953, 0.010152784, - 0.040380653, -0.031935673, -0.0064435187, 0.0024460999, 0.015678123, - -0.029285135, 0.03875712, -0.018457284, 0.033882864, 0.016564442, - -0.021077255, -0.019517587, -0.056980364, -0.025730116, 0.040217865, - 0.030714223, 0.020407882, 0.015494838, 0.040395103, -0.021671427, - 0.0031886392, 0.025557846, -0.042635854, 0.0040027774, 0.043545146, - 0.02090078, 0.021863027, -0.01958905, 0.060639903, 0.004337852, - 0.010193194, -0.037179597, 0.004806235, -0.009112611, -0.041040737, - 0.07206044, 0.044978045, -0.0143228, 0.009929999, -0.035230223, - 0.05169466, 0.021503842, 0.029182019, 0.004603049, -0.026850784, - -0.03854285, 0.011281568, -0.016977035, -0.0135545395, 0.011191519, - -0.04624774, -5.9468544e-4, 0.03428506, -0.0044786977, 0.035221435, - -0.021703977, 0.024342384, -0.014922696, -0.046152245, 0.037507165, - -0.017837504, 0.0037607318, 0.0056300303, -0.0071988446, -0.021079095, - -0.029254818, 0.052702244, 0.012548158, 0.003343902, -0.00505796, - -0.011498121, 0.010673957, -0.053794283, -0.014029014, 0.016614256, - 0.04616918, 0.0019455233, 0.014096553, -0.018598767, 0.008586126, - -0.012572451, 0.02674916, -0.040213373, -0.01158089, -0.006297609, - 0.011752206, 0.030203339, 0.0092631765, 0.024266427, -0.047273528, - -0.02188689, -0.012666575, -0.038839377, 0.01492083, -0.026970314, - -0.029501809, 0.032503203, 0.0011584918, 0.07050974, 0.011027932, - -0.06257419, -0.033672437, -0.0027453545, 0.052121002, 0.077477016, - 0.0055499147, -0.0011059487, -0.013187136, -0.0040769167, -0.017999718, - -0.01834491, 0.005595113, -0.014866767, 0.0547683, 0.05947999, - -0.05447873, 0.021109095, 0.0017196373, -0.011293952, 0.013822506, - 0.04613152, 0.018818494, -0.006733782, 0.008491063, -0.005940393, - -0.029885273, 0.0118098995, -0.01029937, 0.013854584, 0.008487934, - -0.0039853067, -0.02319544, 0.055209577, 0.010342053, -0.011960528, - 0.025376404, -0.0705704, 0.063607536, 0.008958522, -0.016063448, - -0.033439055, -0.013965209, -0.031127285, -0.013886052, 0.07668005, - 0.045263913, 0.010031753, 0.03287487, -0.01675501, -0.013412829, - 0.008734392, -0.027228944, 0.006345392, 0.025767334, -0.031628363, - 1.04909144e-4, 0.05006096, 0.0135447, 6.200503e-4, -0.0019414977, - -0.02241357, 0.011682382, -0.014680942, 0.0050980737, -0.009822333, - -0.04324445, -0.03012498, -0.021574661, -0.064523056, -0.012509147, - -0.055846352, -0.0029440916, 0.023297118, 0.0676818, 0.07249781, - 0.025843311, 0.0010105821, 0.031149114, -0.031216966, 0.049424846 + "paletteEmbedding" : [ + 0.06807296, + 0.040722467, + -0.03441322, + -0.014582179, + 0.022654496, + -0.03092859, + -0.009445408, + -0.018964287, + -0.023912573, + -0.027295055, + -0.025864271, + 0.034477778, + 0.021023415, + -0.017091596, + -0.049312323, + -0.006332638, + -0.055557504, + -0.027404023, + -0.014765341, + -0.010691677, + 0.004844999, + 0.027110375, + -0.0178682, + 0.07817951, + 0.013892176, + -0.025594514, + -0.063271865, + 0.033038925, + 0.05438504, + 0.06509227, + -0.021702982, + 0.029960003, + 0.04072942, + -0.0054879934, + -0.0626217, + 0.029469648, + -0.0066639143, + -0.015761627, + -0.011065991, + -0.023720205, + -0.03249139, + 0.030863782, + -0.015494914, + 2.4357304E-4, + -0.05949874, + 0.04903993, + -0.0152701, + 0.053636234, + -1.37056995E-5, + -0.022221267, + -0.009844078, + -0.024124421, + 0.005280987, + -0.03577151, + 0.06577413, + -0.019424947, + 0.02135256, + -0.09802145, + -0.0012551161, + -0.029343119, + 0.011585306, + -0.012084898, + 0.027227426, + 0.028419442, + -0.0031266822, + -0.02622703, + 0.02195954, + 0.02791066, + 0.025326781, + 0.02527955, + 0.00640177, + 0.008960996, + -0.031145565, + 0.03491868, + -0.013753641, + 0.02236177, + 0.023095101, + -0.040721685, + -0.0050108, + 0.00810364, + -0.006741763, + 0.015753098, + 0.06058133, + -0.07264332, + 0.00591107, + 0.021824747, + 0.034219913, + -0.012182013, + 0.046546604, + -0.03674019, + 0.008141585, + -0.0397314, + 0.011709921, + -0.05257045, + -0.025073614, + 0.0010258543, + -0.008789972, + -0.04451012, + -0.03388721, + -0.021725664, + 0.012968289, + -0.041373707, + 0.03550139, + -0.026591286, + -0.036270544, + -0.031410877, + -0.016658489, + 0.0023699903, + 0.011298674, + 0.017184895, + -0.012067758, + 0.017244646, + 0.005220501, + 0.021045512, + -0.0076535987, + -0.015943412, + -0.07537187, + 0.032908034, + 0.05617779, + -0.006594185, + 4.5086243E-4, + 0.014771591, + 0.05097577, + -0.023462858, + 0.004541048, + 0.035484627, + 2.925965E-4, + 0.03668864, + -0.024208339, + -0.045229133, + 0.037409265, + -0.0026063388, + 0.054223593, + -0.032607, + -0.0017877826, + -0.011183579, + -0.044458207, + 9.295109E-4, + -0.014018905, + 0.0028656805, + -0.008820879, + 0.02094423, + -0.023652337, + 0.0026574337, + 0.032010622, + 0.004791607, + 0.004755194, + 0.0393437, + 0.023132408, + 0.014234035, + -0.017890727, + 0.057621185, + 0.027418008, + -0.013541585, + -0.021650907, + 0.009383614, + 0.0544344, + -0.0039443844, + -0.06050669, + -0.009028561, + 0.017544875, + 0.0076017585, + -0.028480444, + -0.032167803, + 0.0045213345, + -0.044202138, + -0.014902469, + -0.010943177, + 0.017572107, + 0.010277532, + 0.030827247, + -0.023137907, + -0.0051566516, + 0.008199166, + 0.014790159, + -0.024581473, + 0.057005577, + 0.009190467, + 0.04635109, + 0.009938884, + -0.01380404, + -0.012599973, + 0.04457242, + 0.057597965, + 0.0075525376, + 0.014075646, + -0.01930899, + 0.03664463, + 0.048947282, + -0.07639613, + 0.0036828516, + -0.0073236693, + -0.02715094, + -0.026033925, + -0.0059884703, + 0.0011195337, + -0.012307508, + 0.05056307, + -0.005756409, + 0.028601913, + 0.04760841, + -0.022776939, + 7.125075E-4, + 0.07600684, + 0.017816154, + -0.020959286, + -0.021596512, + 0.028804617, + 0.041362107, + 0.01835833, + 0.0033633925, + -0.029563535, + -0.00999559, + -0.022575263, + 0.028796365, + -0.036950182, + -0.024257941, + -0.03158422, + 0.017124157, + -0.0070950477, + 0.049210895, + -0.004249945, + -6.279501E-5, + -0.010070527, + -0.052307595, + -0.02584557, + 0.0023506545, + -0.007025131, + 0.065233216, + 0.0069416827, + -0.05813171, + -0.029763732, + -0.023345701, + -0.024172459, + -0.015047241, + 0.004103414, + -0.018536193, + -0.037568312, + -0.028474959, + -0.009076794, + -0.014645762, + 0.026456993, + 0.0030891164, + -3.641461E-4, + 0.028742677, + -0.018738162, + -0.013970845, + -0.021540964, + -0.015746458, + -0.0054011284, + 0.018858857, + -0.022186387, + -0.010003758, + 0.003547859, + -0.011547668, + -0.051036272, + 0.054625772, + 0.006904368, + 0.02579776, + -0.0042813295, + 0.032313354, + -0.05350996, + 0.022528084, + -0.007351882, + -0.019793423, + 0.027592162, + -0.057737008, + 0.05236054, + -0.03453173, + -0.07675473, + -0.02256305, + 0.040729426, + 0.0213709, + 0.0072744577, + -0.0061869514, + 0.029781574, + -0.02788867, + 0.022648957, + -0.012819767, + 0.05908764, + -0.00756685, + 0.012767554, + 0.023138419, + 0.004383925, + -0.004942522, + -0.0070871147, + 0.014574339, + 0.03355723, + -0.030225765, + 0.015722282, + 0.014957362, + -0.0016123598, + -0.012196548, + -0.0533467, + -0.01569937, + 0.012233404, + -0.023257038, + -0.0103781065, + -0.0143430345, + 0.020565558, + -0.035727646, + 0.049881868, + 0.0014265476, + 0.044866312, + -0.019051418, + -0.028897312, + 0.01527518, + 0.016323583, + 0.059362236, + 0.078212224, + -0.031609144, + 0.020313824, + -0.05874808, + -0.025996326, + 0.049500536, + 0.004973172, + -0.0039771786, + -0.039782166, + 0.004756787, + -0.022246817, + 0.050117943, + 0.0036125248, + 0.044169772, + 0.025309464, + -0.005388339, + 0.041324757, + -0.0015395466, + -0.008420164, + -0.0074932263, + -0.0655612, + -0.06026546, + -0.010700178, + -0.030521346, + 0.04521652, + 0.023311203, + -0.07821379, + -0.040607728, + 0.035209924, + 0.024158308, + -0.023671167, + -0.033725776, + 0.032193888, + -0.04835745, + 0.013783582, + -0.031136662, + 0.049345788, + -0.019922031, + -0.046674434, + -0.010565072, + 0.027173933, + 0.028394742, + 0.012776857, + -0.037430488, + 0.046567246, + -0.026137576, + 0.025024492, + 0.036805063, + -0.012461532, + -0.002532111, + 0.014185895, + -0.0074569546, + 0.0024665252, + 0.003893795, + -0.030036256, + -0.013735884, + -0.020064238, + 0.031971935, + 0.012008309, + 0.038547672, + 0.037000638, + -0.023806697, + -0.0055124285, + -8.7861496E-5, + -0.024343437, + -0.013239875, + 0.0283592, + 0.01752373, + 0.028516866, + 0.009727569, + -0.039433096, + -0.007834699, + 0.011902064, + -0.011972369, + 0.012337507, + -0.0029589208, + -0.028747246, + -0.027043642, + 0.007979538, + 0.0035650765, + -0.04411674, + 0.001579925, + -0.013983134, + -0.0010085419, + -0.013719704, + 0.0458348, + 0.06454506, + 0.006249867, + 0.037176352, + -0.011176262, + -0.008554562, + -0.012045288, + 0.016996326, + -0.052670825, + -0.010047313, + 0.001955011, + -8.0973847E-4, + 0.0059259753, + -0.025516493, + 0.04007152, + 0.012097775, + 0.039570395, + -0.0012946513, + 0.0012213168, + 0.006005232, + -0.06025262, + 0.015482006, + 0.02052305, + 0.042947307, + -0.06640248, + 0.02861384, + 0.040807184, + -0.009950011, + 0.0335405, + -0.0032225912, + -0.029826537, + -0.023148071, + -0.022785217, + 0.03732179, + -0.011048295, + -0.029107125, + 0.021172594, + -0.014664301, + 0.00962486, + 0.0235614, + -0.01681008, + -0.014436232, + 0.054279592, + 0.034790535, + -0.018850196, + 0.06604872, + 0.07140645, + -0.0060098507, + 0.01667574, + -0.071234666, + -0.06966131, + -0.052412383, + -0.032775313, + -0.021983026, + -0.004152071, + 0.020871125, + -0.02349453, + -0.047962874, + 0.014166446, + 0.02429647, + 0.032062028, + 0.003311317, + -0.023974063, + 0.011944393, + -0.048733342, + 0.01683185, + 0.086585686, + 0.029651634, + 0.009272759, + 0.0014964793, + 0.029615488, + 0.015678098, + 0.015753234, + -0.017573282, + -0.021487687, + 0.06351306, + 0.028935082, + 0.01626443, + 0.0022467715, + 0.007577603, + -0.033455595, + -0.0026899602, + -0.014703289, + 9.1206515E-4, + 0.042140257, + -0.06399529, + -0.005814604, + 0.015877152, + 0.0046108393, + -0.062325306, + 0.009950145, + 0.061327618, + 0.022044525, + -0.027314976, + -0.021013234, + 0.029988423, + -0.04728598, + -0.02237077, + -0.027324285, + 0.051818162, + -0.0056907902, + -0.011895886, + 0.024008693, + -0.03059561, + -0.014275788, + -0.029486014, + -0.029637886, + -0.01668358, + -0.012781934, + -0.019635309, + -0.039299496, + -0.014377684, + -0.0042569656, + 0.046812493, + 0.0022428632, + 0.040191673, + -0.02145972, + -0.01067591, + 0.0033056634, + 0.0044811866, + -0.017168934, + -0.021846056, + 0.011610751, + -0.0350769, + -0.007796098, + 0.005176104, + 7.117538E-4, + -0.031257026, + -0.043577846, + -0.011721422, + -0.025791854, + 3.1688926E-4, + 0.004774079, + 0.018557455, + -0.04015544, + -0.038997706, + -0.080838196, + -0.029456481, + 0.08846532, + -0.05064325, + -0.03335318, + 0.035090227, + 0.030086942, + -0.0024127527, + 0.03602064, + -0.04137845, + -0.014419489, + 0.0028253472, + -0.005094736, + 0.06002185, + -0.008606952, + -0.020973435, + -0.034280427, + -0.044570763, + -0.026396144, + 0.03732029, + -0.08556798, + 0.021689933, + -0.019322174, + 0.014185137, + 0.015175457, + 0.010225009, + 0.049373273, + -0.052287694, + -0.006699806, + -0.051429402, + 0.00986918, + 0.009078655, + 0.007862801, + -0.013338874, + 0.04206231, + -0.012793322, + -0.008117367, + 0.001098233, + 0.03207765, + -0.030455202, + -0.025166947, + -0.069069825, + 0.014764007, + 0.022158798, + 0.036461156, + 0.050737344, + 0.025921226, + -0.016671974, + -0.05124067, + -0.038026895, + -0.022869201, + -0.030702421, + -0.027547255, + -0.007133888, + 0.032638002, + -0.013367949, + 0.019873012, + -0.025758214, + -0.001368844, + -0.06077213, + 0.042421248, + -0.030590797, + 0.008916427, + 0.03813385, + 0.016248534, + 0.0119773215, + -0.012772554, + -0.0039956346, + 0.016287873, + 0.051439174, + -0.0054032933, + -0.028003622, + 0.06675665, + 0.062376514, + -0.028300168, + 0.006610891, + 0.0022103076, + 0.033507943, + 0.018934939, + -0.03449104, + 0.01893536, + 0.010750626, + 0.02174497, + 0.009926028, + -0.011907237, + -0.027131408, + -0.031168312, + 0.0034014783, + 0.012268975, + -0.03358387, + -0.004000619, + 0.019829685, + 0.03927686, + 0.053428426, + -0.050058745, + -0.027149228, + 0.016898958, + 7.558667E-5, + -0.055074096, + 0.001170633, + 0.048255242, + -0.019682746, + 0.0029914621, + -0.0069558895, + -0.02738656, + -0.01848671, + 0.02025021, + -0.003841848, + -0.011855473, + -0.022705851, + -0.028541414, + 0.0062716343, + 0.02498098, + -0.02339677, + -0.006992054, + -0.03947515, + 0.0083848275, + -0.016128488, + 0.043943215, + 0.0071610482, + 0.052007623, + -0.004567945, + -0.04492729, + -0.030177888, + -0.019631138, + 0.012777529, + -0.06398975, + -0.0060540913, + -0.013848674, + 0.025030691, + -6.394608E-4, + 0.009664501, + 0.0010477288, + 0.03348312, + 0.030863537, + 0.03448513, + -0.009198255, + 0.10240453, + 0.028217012, + 0.03241603, + 0.0035237195, + 0.038339686, + 0.04085718, + 0.015244749, + -0.06604851, + 0.04334433, + -0.0031304886, + 0.02377504, + 0.008125715, + 0.024004476, + 0.07097842, + 0.045854077, + 0.015986966, + 0.016201336, + -0.009369019, + -0.040328525, + -0.02599145, + -0.01737169, + 0.013471788, + -0.057768416, + 0.037166733, + -0.034597024, + 0.01008806, + 0.032130253, + -3.0739116E-4, + -0.030070135, + -0.059936572, + -0.009505603, + -0.011494773, + 0.024199696, + -0.017529307, + -0.0058633895, + 0.022835726, + -0.013429296, + -0.04523281, + 0.03143996, + 0.032762416, + 0.0037236772, + 0.007320964, + 0.054898094, + -0.006038088, + -0.004288231, + -0.017395368, + -0.0062407623, + -0.047933556, + 0.046490166, + 0.045784645, + -0.024030438, + 0.009842858, + 0.009424321, + -0.0042749313, + -0.05936989, + -0.015553794, + -0.01450044, + -0.0019093447, + 0.019685665, + 0.034296744, + 0.041368682, + -0.0066056005, + 0.02197912, + -0.0021411027, + -0.0038763732, + -0.010501504, + -0.004457754, + -0.0737976, + -0.025222315, + -0.025144558, + -0.05271141, + 0.014974083, + 0.034574088, + -0.02377071, + -0.032443635, + -0.0018581935, + -0.0032420303, + 0.011636448, + -0.037926517, + -0.0047606984, + -0.027019512, + 0.032615, + 0.021621086, + 0.02173557, + -0.015438819, + -0.0032038596, + 0.007365273, + 0.030566264, + -0.03158211, + -0.007599578, + 0.02381525, + -0.028829727, + 0.0067805136, + 0.015061278, + 0.011159689, + -0.03860579, + -0.023385203, + -0.015750295, + 0.02701764, + -0.007955624, + 0.010984788, + 0.04145965, + -0.002217621, + 0.04884614, + -0.030710943, + -0.0015173606, + -0.024629857, + 0.008415166, + 0.02797676, + -0.022142017, + -0.010140071, + -0.054747894, + -0.008799802, + -0.048011523, + 0.015529797, + 0.017944386, + -0.041479874, + -0.019014928, + -0.019349677, + 0.0057955896, + -0.012336235, + -0.03897172, + -0.068653464, + 0.0055842884, + -0.061161004, + 0.04026206, + 0.0138004385, + 0.006699987, + 0.07183776, + 0.009122024, + 0.010108507, + 0.006520253, + -0.0030103743, + -0.012473683, + 0.03409455, + -0.012639309, + 0.06932175, + 0.0096062515, + -0.016474862, + 0.027084742, + -0.04515801, + 0.033727635, + 0.0012484604, + 0.04456927, + -0.018085469, + -0.01037423, + -0.015326747, + 0.003373844, + 0.027322786, + 0.0064923977, + 0.05426211, + 0.027434736, + -0.051025506, + 0.0019412719, + -0.042225312, + 0.014496263, + 0.02089454, + 0.06301304, + 0.045713942, + 0.018161817, + 0.021056732, + 0.019143892, + 0.00990037, + 0.058527388, + 0.007019843, + 0.060492612, + -0.06392898, + 0.018020023, + 0.009808519, + 0.047075927, + -0.01937082, + -0.010942298, + -0.024430493, + -0.010044458, + -0.044561137, + -0.0030272463, + -0.0027671566, + 0.031158006, + 7.859475E-4, + -0.033196937, + 0.015125524, + 0.0015204687, + -0.00665277, + 0.037568126, + 0.034178793, + 0.06718827, + -0.05390569, + 0.0057145804, + 0.069099374, + 0.037689958, + 0.011098281, + 0.016184898, + -0.037322402, + -0.023666741, + -0.0048975586, + -0.02398615, + -0.006388042, + 0.046085607, + 0.03983064, + -0.03438034, + -0.058287278, + -0.031146668, + 0.025717484, + -0.0670472, + 0.068563, + -0.10627086, + -0.058849953, + -0.0055493047, + 4.6858366E-4, + -0.052837145, + -0.013984505, + 0.014553077, + 0.043437075, + -0.034156933, + 0.015450579, + -0.016161852, + -0.008784139, + 0.023895036, + 0.019014644, + -0.008295879, + -0.006490458, + -0.09511607, + -0.02718721, + 0.035596013, + -0.012407808, + -0.024641067, + 0.020238236, + 0.035403922, + -0.022430101, + 0.009773163, + -0.034981072, + -0.02559039, + -0.012098804, + -0.048483137, + 0.0063801245, + 0.024611473, + 0.046652496, + -0.005036601, + -0.055219114, + -0.055035938, + 0.024475453, + 0.0026033018, + -0.0055497573, + -0.040560115, + -0.013136761, + 0.016033486, + 0.006141769, + 0.010600621, + 0.05520821, + 0.042939894, + 0.030403784, + -0.008862152, + 0.043589342, + 0.0039058537, + -0.06610516, + -0.010203703, + -4.1475994E-4, + 0.0074082343, + -0.03297145, + -0.06935354, + 0.005382007, + 0.021267382, + 0.01077789, + 0.034137122, + 0.029529806, + -0.013322368, + 0.02068084, + -0.034134507, + 0.03434215, + -0.01244114, + 0.022951715, + 0.018166535, + 0.013102236, + 0.047486164, + -0.07373636, + 0.011412864, + -0.036975674, + 0.011579497, + -0.01950086, + 0.036310583, + -2.2325783E-4, + -0.031927995, + -0.0032943522, + 0.013318952, + 0.015446181, + 0.07017507, + 0.0626487, + -0.0622324, + -0.0120878555, + 0.025819851, + -0.03279713, + 0.02460669, + 0.015276028, + -0.01832894, + 0.03975307, + -0.009726445, + -0.032908812, + 0.010255866, + 0.011806031, + 0.033765346, + 0.028360477, + -0.023364628, + -0.0048311185, + 0.019581746, + 0.050826553, + 0.008220417, + -0.028080218, + 0.011290052, + 0.022366853, + 0.06479679, + 0.024155833, + -0.039058115, + 0.017897913, + 0.011773603, + -0.0850061, + -0.03383094, + 0.027103692, + 0.04963552, + 0.036561508, + -0.0066701854, + -0.015072661, + 0.022257837, + -0.019624421, + -0.020381501, + -0.012744989, + -0.045318086, + -0.030279484, + -0.01098346, + -0.026333014, + 0.037913866, + -0.019063039, + -0.008558772, + 0.006234683 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json b/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json index 01a657d48..98db7ff56 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json @@ -1,1339 +1,5249 @@ { - "description": "an example of images with work metadata for the API tests", - "createdAt": "2023-11-21T14:25:44.228730Z", - "id": "sza9evn0", - "document": { - "modifiedTime": "1940-11-09T07:19:10Z", - "display": { - "id": "sza9evn0", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an example of images with work metadata for the API tests", + "createdAt" : "2024-11-14T14:37:56.540803Z", + "id" : "nnqbdi1u", + "document" : { + "modifiedTime" : "2030-01-04T16:08:59Z", + "display" : { + "id" : "nnqbdi1u", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ky4.jpg/info.json", - "credit": "Credit line: kpBXUO0N", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", + "linkText" : "Link text: gYXOTsi", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ky4.jpg/info.json", - "credit": "Credit line: kpBXUO0N", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", + "linkText" : "Link text: gYXOTsi", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#DAC833", - "source": { - "id": "xzpoov99", - "title": "Mantou is a steamed bread associated with Northern China", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#E9439A", + "source" : { + "id" : "jnrpu9mi", + "title" : "Mantou is a steamed bread associated with Northern China", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "sza9evn0", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xzpoov99", - "sourceIdentifier.value": "TUQC6H3rmz", - "identifiers.value": ["TUQC6H3rmz"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Mantou is a steamed bread associated with Northern China" + "query" : { + "id" : "nnqbdi1u", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jnrpu9mi", + "sourceIdentifier.value" : "JOUy2UKH3K", + "identifiers.value" : [ + "JOUy2UKH3K" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Mantou is a steamed bread associated with Northern China" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.006182259, -9.950474e-4, -0.018980019, -0.014369232, 0.015621481, - -0.02225123, -8.6333207e-4, -0.032301348, 0.014438236, 0.011454422, - -0.01932888, 7.377642e-4, -0.022605417, -0.0038293004, 0.014275057, - -5.210301e-4, -0.01677307, 0.03945364, 0.0071166465, -0.015881144, - 9.885328e-4, 0.022097385, 0.004203359, 0.011757569, 0.0023173112, - -0.0024527167, -0.002343308, -0.03376103, 0.011475487, 0.00686556, - 0.0012106132, 0.0065456848, -0.01772041, -0.018387903, 0.0019226036, - 0.0045345984, -0.019377299, 0.007491143, -0.034045428, -0.013805497, - -0.014211755, -9.210433e-4, 0.003312262, 8.446121e-4, 0.013575123, - -0.008696223, -0.007843698, -0.027561396, 0.009158346, -0.011108488, - 0.0076127825, -0.005074355, -0.027667223, 0.016149493, 7.2393415e-4, - 0.021710638, -0.004043561, -0.012018676, 0.0069653746, -0.011563356, - 0.0035181693, -0.010604405, -0.011015137, -0.0048059262, -0.018571442, - 0.012002326, -0.028498124, -0.0048391703, 0.0052504153, -0.0026453151, - -0.030960718, 0.0065190922, -0.001753777, -0.0018104392, -0.007819196, - 0.0074687945, -0.019250548, 0.010056457, -0.019757105, 0.006791063, - 0.0059547583, -0.004852291, 0.005513029, -0.006544936, 0.0052065747, - -0.0063747554, 0.009485431, 0.02021718, 0.014522739, -0.0085847955, - -0.0052924347, 0.021190723, -0.008841714, 0.0036679646, 0.023826076, - 0.019451562, -0.010061041, 0.018249968, 0.01160079, 0.0049199034, - -0.005769024, 0.0012263763, 0.0030236533, 0.013774268, -0.006902854, - -0.004076327, -0.026007866, 0.016275859, 0.004083429, -0.025109863, - -0.0013565805, -0.012657345, 3.782921e-4, -9.5603254e-4, 0.009829687, - 0.012260121, 0.030677872, 0.014756327, 0.019333165, 0.0036967504, - 0.013097329, -0.010478267, 0.013075053, 0.02718116, -0.014847967, - 0.011704322, -0.014598755, 0.00599016, 0.014539546, 0.013770979, - 0.0033460453, 0.008951291, 0.021343255, -0.022839071, 0.01092789, - -0.0071247066, 0.038043723, 0.0024830648, -0.0026150802, 0.019534947, - 0.0027218433, -0.012396212, -0.042609204, 0.012651091, -9.708559e-4, - 0.0069063827, 0.03137447, 0.0068864543, -0.0035609987, 0.020300517, - -0.01932043, 0.0057379813, -0.0053087072, -0.015935844, 0.021783646, - -0.0020151082, -0.007897119, -0.035939816, -0.026136708, 1.1862629e-4, - -0.0023553516, 0.009553607, -0.0013626989, 0.017881788, -0.010976017, - 0.004573877, 0.021559134, -0.017732605, 0.027358862, -0.032119133, - -0.0057745245, -0.01767495, -0.0017492896, 0.01995168, 0.010751034, - -0.009985556, 0.005431466, -0.018248081, 0.005477837, 0.015775131, - 0.0040765875, 0.023146648, -0.0130934045, -0.003344103, -0.01039785, - -0.020908397, 0.015203938, -0.019476376, 0.010035263, -0.0050903456, - 0.013857497, -0.0015251508, 0.008978037, -0.0011113287, -0.00999043, - 0.015679602, -0.03316351, 0.013495373, -0.0014278982, 8.872214e-5, - -0.008977039, -0.020568714, 0.0025503233, -0.0014451839, -0.0010543513, - 0.0027168004, 0.015955813, -0.011556918, 0.002293291, -0.02205261, - 0.012682106, 0.0053000473, -0.014007786, 0.0021469018, 0.004794222, - -0.025404263, -0.026927782, -0.016913338, 0.019971924, 0.026491586, - -0.0056688334, -0.0025071225, 0.0012406211, 0.0025498555, 0.0068802573, - 0.010270507, 0.0119426865, -0.0013881576, 0.016764645, -0.015917195, - -0.02205901, 2.4054515e-4, 0.013896257, 0.018564923, -0.008438661, - -0.0018269076, 0.008627443, -0.03017846, 0.03158756, 0.0050436864, - -0.014319163, 0.01214184, 0.009173387, 0.003805287, 0.0013335529, - 0.0338056, -0.011912309, 3.3614744e-4, 0.0018139615, -0.023717642, - -1.4696631e-4, 0.012414965, 0.0014918103, -0.014562605, -0.0118677635, - 0.01396222, -0.01339175, -0.022734925, -0.011896383, 0.020150613, - 0.008999578, 0.035707347, -0.0083616935, -0.0033736723, -0.0030059656, - 0.0041984855, -0.0053860713, -0.014555943, -0.0013133705, -0.011474305, - 0.008786579, 0.001780655, 0.025988981, 0.011945907, 0.007994085, - -0.008267571, 0.014228464, 0.01545411, 0.013472943, 0.0126005905, - -0.012084587, -0.0048265425, -0.012427561, 0.0044109668, 0.034731537, - 0.011822374, 0.0067109177, -0.03001665, 0.0027988884, 0.025026767, - 0.0036113947, 0.0067082127, 0.0019669253, -0.0016235912, -0.014929763, - -0.006456411, 0.01022571, -0.035952367, 4.945743e-4, -0.025226567, - -0.002619004, -0.039321676, 0.025362251, 0.008508298, 0.0025749302, - -0.0011361826, -0.041048337, 0.0011874322, 0.009027487, -0.027496712, - 0.013559152, 0.0050454787, -3.7409747e-5, -0.007386913, -9.242109e-4, - 0.0062230704, 0.022598756, -0.01960231, 0.013704693, -0.018179841, - -0.0041753664, 0.022016952, -0.01834518, 0.0030246398, -0.0040011024, - -0.012943533, -0.009732713, 0.005657095, -0.010329629, 0.01265861, - -0.04198433, -0.0032129285, 0.011051367, 4.8018937e-4, -0.009695172, - -0.007393723, 0.0015940026, -0.0011113093, 0.0104407035, -0.036451463, - 0.02361192, 0.023461852, -0.0050355536, -0.0084061185, -7.1235205e-4, - 0.0010576197, 0.00234104, -0.019269442, 6.288722e-4, 6.4637227e-4, - 0.02432389, 0.0198099, -0.019250087, 0.009399137, -0.014548684, - -6.0180295e-4, 0.017775286, -0.0025275263, 7.5659664e-5, 0.0055083632, - 0.022629548, 0.022541542, -0.009148799, -0.005044325, -0.024197206, - -0.0036928412, -0.0028133804, -0.0030333146, 0.0021608833, - -0.0048627183, -0.008858238, 0.014885387, 0.013711334, -0.0013679815, - -0.015823178, -0.0064706905, -0.0078315195, -0.021913724, 0.016675776, - -0.001348838, -0.004289178, 3.988463e-5, 0.009499117, -0.0016464515, - -0.021510202, -0.019261891, 0.012514382, 0.022326833, 0.013788826, - 0.0048830635, -0.0037439212, 0.018800782, 0.02198767, 0.0110884225, - 8.3393604e-4, 0.006141856, 0.018481024, 0.0017090401, -0.0015790337, - -0.024656544, 0.01925973, -0.008742484, 0.012087805, 0.017193874, - -0.014266043, -0.003087295, -0.006185955, 0.009395248, 0.016802834, - -0.026979666, -0.004890631, -0.010830976, -0.0023654862, 0.021720046, - -0.011488282, -0.011452082, -0.015674347, 0.034268633, 0.02059229, - -0.0062650787, -0.035674855, -0.0055523287, 0.021757359, 0.021419054, - -0.026053617, 0.0058279303, -0.008200122, 0.0014066243, 0.010908508, - 0.010966838, 0.0018371976, -0.0030691437, 0.012990173, 0.0055115344, - -0.015566174, 0.0010231194, -0.0097947, 0.010808955, -0.0013251235, - -0.011677233, -0.026605695, 0.005263081, 0.017977174, -0.0024342705, - 0.01306425, 0.018715478, 0.012313797, 0.00905939, -0.0074131624, - 0.01101393, -0.008998442, 0.030908445, 7.56494e-4, 0.019284584, - -0.0079213325, -0.004982168, -0.013002779, 0.0016367706, 4.3079886e-4, - -0.025638426, -0.003099406, -0.0067250016, -0.015125312, -0.001172125, - -0.0025598658, -0.028648607, 0.0076756477, 0.0045188465, 0.011089487, - -0.0184511, -0.021617098, -0.005964341, -0.012161505, 0.0114616975, - 0.0011870995, -0.0018457373, -0.025187237, 0.025625596, 0.0054766275, - -0.014042384, 0.0041870954, 0.020375725, 0.0022672452, 0.011938248, - 0.025726894, -0.009096408, -0.040044162, -0.035264317, 0.015709594, - -0.028596189, 0.024709415, -0.017028995, 0.010934683, 0.023999598, - 0.0019796435, -0.01954313, 0.008799847, 0.028980665, 0.017437564, - 0.018896211, -0.026223121, 0.009859772, 0.017057022, -0.01902428, - -0.016091341, 0.008411159, 0.021473752, -0.0013933275, -0.0051071467, - 0.011249885, -1.00423356e-4, 0.027186261, -0.032313377, -0.005488542, - 0.012682195, 0.022402834, -0.0073423204, 0.01210605, -0.010020435, - -0.0059130522, 0.026138702, -0.006390943, -0.0089091, -0.0060600755, - -0.014599682, -0.018998437, 0.0012447104, 0.0153135, -0.017861212, - -0.014150387, 0.018499797, -0.017466791, 0.010456683, -0.0051785973, - 0.025542153, 0.0059174187, 0.012387677, 0.007495778, -0.014435329, - -0.0029381758, -0.018743712, 8.137575e-4, 0.0010840814, 1.0628077e-4, - 0.006690838, -4.0126292e-4, -0.022401648, 0.032690134, 0.0017426184, - 0.006721644, -0.0074463007, 0.017496476, -0.004357427, 0.015051517, - 0.022014976, 0.011585318, -0.014705867, -0.01579391, 0.020238444, - 0.003479713, -0.0036856846, 0.012729994, 0.013681476, 0.01905042, - 0.03925109, -0.008378725, 0.01587859, -0.010110496, -0.0063055535, - 8.3962636e-4, 0.0032155085, 0.02715644, 0.026619269, 0.002953758, - -0.004658394, 0.002176072, 0.0027556217, -0.024870986, 0.0112667605, - 0.02561535, -0.004050794, -0.017013645, 0.040455967, 0.006815564, - -0.0130093405, 0.027020717, 0.0038798498, 0.0062228, 0.013570813, - 0.022050316, -0.011488469, -0.053987686, 0.0032133989, -0.023635853, - 0.005194743, 0.025438266, 0.0074384194, 0.022205845, 0.006622403, - 0.017132752, 0.023279246, -0.00303803, -0.011546877, -0.021082804, - -0.011474944, -0.018204803, -0.0034566675, -0.023792831, -0.005803913, - -0.009937896, 0.012823046, 0.010223215, 0.017817348, 5.134685e-4, - 0.018765323, -0.018656246, 0.011729987, -0.002267499, -3.1601154e-5, - -0.0126693295, -9.516245e-4, 8.745458e-4, -0.0062268497, -0.0041691274, - 0.03126776, 0.012291199, 0.00297416, 0.02712879, 0.017787397, - -0.005620435, 0.011332932, -0.018605558, -0.021069063, 0.032238863, - 0.005390906, 0.0024206226, -0.006602878, 0.01816869, -0.0034256207, - 0.009494086, 0.028548868, 5.669842e-4, 0.004325291, -0.007519164, - 0.023212632, 0.0061753, 0.011800627, -0.009375731, -0.013012032, - 0.00301463, -0.027081294, 0.016236687, 0.00506164, 0.01980053, - -0.033816237, 0.001181555, -0.012984787, 0.008037205, -9.146267e-4, - 0.008000682, -0.016649986, 0.0084792795, 0.021602461, 0.0012327046, - 0.0031715343, -0.019427478, 0.01865665, 0.003063477, 0.017588835, - -0.02168004, -0.01394979, 0.017324183, -0.01511524, 0.010400672, - 0.040197987, -0.015626464, -0.013355993, 0.011766481, -0.0020887856, - -0.024512254, -0.0018933795, -0.021996276, 0.02436312, -0.029487595, - -0.0021842723, -0.019319257, 0.0047784564, -0.001938928, 0.0044377553, - -0.0073144473, -0.004394477, -0.0015998037, -0.018794961, -0.0042226035, - 0.0089219995, 0.0043913024, -5.880332e-4, 0.002287909, 0.0078112036, - -0.015340681, -0.032457784, 0.013241798, -0.013689903, -0.011740649, - -0.011206947, -0.02309638, 0.008696952, -0.01368853, -0.012120772, - 0.017195605, 0.009954427, 0.016459513, -0.011004178, 0.025043141, - 0.02078766, -0.0072540375, -0.013433738, 0.0016572694, 0.023908084, - 0.0047265906, 0.011230919, -0.009320243, 0.01456074, 0.020385632, - 0.0067927144, 0.0027011987, 0.037633657, 0.011971507, -0.018151665, - -0.008979854, 0.0011474469, 0.00840976, -0.024391226, 0.009507286, - 0.024758747, 0.013803008, 0.010044669, -0.006153082, 0.005103352, - 0.018740876, 0.0070117256, 0.0075148125, 0.00661883, -0.015359407, - 0.009887851, -0.023929117, 0.009143816, 0.012545303, 0.0037349586, - 0.0065881484, -0.0077218977, -0.027484652, 2.2711144e-4, 0.008618855, - 0.011226653, 0.0068220645, -0.0054124505, 0.008925787, -0.009116682, - 0.009818541, 0.013777124, -0.006906393, 0.002364284, 0.02003306, - -0.0025533705, -0.014002347, 0.0033496062, -0.018889595, -0.005932873, - 0.028148057, 0.0103697395, 0.019088719, -0.005870563, 0.01974337, - -0.017177345, 0.011206471, 0.013599612, 0.0028504082, 0.005092722, - 0.010447565, -0.008286355, 0.031355847, 0.036133315, -0.03822452, - 0.01291608, 0.028014023, -0.010139301, 0.009863842, 0.021622516, - 0.0045314357, 0.010159025, 0.01657261, 0.0055456352, -0.026949596, - -0.0087603545, 0.015033156, 0.016552422, 0.024113188, -0.0050901696, - 0.013532671, -1.8379519e-4, -0.0030366203, 5.466003e-4, -0.013109956, - -0.0094691925, -0.0044262167, 0.014068298, 0.0076551563, -0.008729223, - -0.0022315502, 0.0092823235, -0.0038467548, 0.018659044, -0.017288366, - -0.0017111369, 0.027673597, 0.020488884, 0.022924457, -0.031967435, - 0.015787072, -0.008654129, -0.009829811, 0.0044316766, 0.016203536, - 0.035341535, -0.009329161, -0.014327908, 0.00877801, -0.0013437759, - 0.0025919634, -0.007521751, 0.01712794, -0.01748212, 0.021890113, - 0.014452212, 0.019495338, 5.2914687e-4, 0.01813642, -0.01584127, - -0.011616128, -0.0052212374, -0.004486702, -0.021915963, -0.014860209, - -0.017366223, -3.6299022e-4, -0.0085689435, -0.004760667, 0.0074089374, - -0.008121991, -0.027206296, -0.039904345, -0.00954754, 0.009908661, - -0.011943013, -0.002872058, -0.012908585, -0.024949279, 0.020219335, - 0.027625123, 0.02692375, -0.043038715, 0.0060088406, 0.022750363, - 0.0213856, 0.0016125089, 0.015079671, -6.8841426e-4, -0.024139315, - -0.005778827, -0.0062726964, -0.023894703, 0.015589592, 0.004755727, - -0.021889482, 0.007996424, 0.016234078, -0.011445334, -0.006753755, - 0.004850882, 0.014187106, -0.0035961745, 0.011844427, -0.0105594555, - -0.03428729, -0.0047441116, -0.006921013, 0.019279685, 0.0135646695, - 0.0016488098, 0.007162547, 0.013673, 0.013770999, 0.010793802, - 0.0058470857, -0.008855505, 0.0022111032, -2.8021352e-5, -0.009086723, - -0.01913087, 0.0040799854, 0.012887783, 0.017196596, -0.0011149354, - -2.1138995e-4, -0.01099462, 0.013239724, 0.04307126, 0.008435881, - 0.00391451, 0.0014277232, -0.0035685103, 0.019408405, -0.014785855, - 0.0011058508, -0.007361138, -0.0073499843, -0.010472142, 0.0022006303, - 0.038129274, -0.008652904, 0.014585775, -0.009384353, -0.0080991, - -0.00226403, -0.005774919, -0.0010426076, -0.008089039, 0.01341824, - 0.020510543, -0.007962489, -0.022801012, -0.013118784, 0.006162868, - -0.009061363, -8.658115e-5, -0.008163088, 0.015989337, -0.005299329, - -0.0019034833, 0.009870948, -0.007530384, -0.006422395, 0.037240066, - -0.018431703, 0.0018131897, 0.010114972, 0.0022733863, 0.065281644, - 0.0059664184, 0.026928337, 0.015526563, -0.030355059, 0.020986594, - -0.002540404, 0.012454792, -0.004933621, 2.9424365e-4, 0.001935293, - -0.023633242, -0.0011126397, 2.3798193e-4, -0.0062047387, -0.0038996742, - 0.0018793276, 0.0055924305, 0.020139717, 0.010144319, 0.013289965, - -0.003201951, -0.02072599, 0.014184698, 0.013108564, 0.017308159, - -0.0033257247, 0.009526164, -0.0033172467, -0.005180538, -0.027078552, - -4.503118e-4, 0.007600712, 0.013974966, 0.01807272, 0.012403149, - -0.01565326, 0.023536341, 0.017077036, -0.040939715, 0.0012808784, - 0.0012734021, -0.039254725, 0.03689712, -0.003842645, 0.0022504714, - 0.01158866, 0.010247472, 0.010400875, -3.8983806e-5, 0.015934383, - 0.010245887, 0.0047410144, 0.0074747987, -0.017453782, -0.015369846, - -0.013783461, 0.0016933843, 0.019819086, -0.022645341, -0.013797715, - 0.011713802, 0.0099758245, -0.037604894, -0.015174219, -0.004360775, - -0.007710232, -0.015589452, -0.0017152542, -5.5307184e-5, 0.0026228142, - 0.0189857, -0.013359814, -0.010590389, -0.04472784, 0.011487575, - 0.0016762823, -0.032765385, 0.025207879, 0.017564787, 0.014358854, - -0.01236983, -0.0058993264, -0.028292673, 0.012577362, -0.010214709, - -7.6494456e-5, 0.005059835, -0.0081268875, -0.02915384, -0.0012378035, - 0.02279913, -0.010245184, 0.02094405, -0.0025073413, -0.012684826, - 0.0041096527, 0.0033531154, -0.02956744, 0.02264455, -0.0033307567, - 0.013715974, -0.014659616, -0.006178861, 0.018793674, -0.020643873, - 0.013692003, 0.019837731, 0.017712407, -0.0019945554, -3.369571e-4, - -0.005422051, -0.002714773, 0.015516948, 0.03717614, -0.0058319415, - -0.0022667109, -0.021837473, 0.011037896, 0.013354161, -0.0015512618, - 0.008363158, -0.0086071, -0.01433629, 0.035976, -0.0067102336, - 0.0039945603, 0.009830531, 0.0038200195, -0.0043995525, 0.028762605, - -0.008535276, -0.004611067, 0.020133853, -0.004864155, -0.038995016, - -0.0029314014, -0.0137200635, -0.024782509, -0.014304561, 0.009019319, - 0.003517359, 0.0027026932, 0.010381845, 0.012074411, -4.6796526e-4, - -0.0019703363, -0.0068040267, 9.386964e-5, 0.002519122, -0.018679783, - -0.00228776, -0.002130333, 0.009104239, 0.017901378, 0.041923087, - -0.0068745045, -1.6138615e-4, -0.015882313, 0.024811404, -0.0051501985, - 0.03621981, -0.0052310443, 0.0036512478, 0.022599142, 0.021206047, - 0.010822227, 0.004302602, 0.007335301, 0.021071786, 0.016622735, - 7.097548e-4, 0.015778277, -0.013971361, 0.00243626, -0.0053424193, - 0.005753729, 0.0031259635, -0.022786593, 0.014029555, -0.005676091, - -0.033256978, -0.01567348, -0.008152959, 0.004915625, 0.015364466, - 0.015009939, -0.014326111, -0.0042341673, 0.024490377, 0.018117355, - 0.0015026311, 0.0030906268, -0.0047415416, -0.011025125, -0.006132044, - -0.007657372, -0.017018922, 0.010636581, -0.0022630505, 0.018513145, - 0.019819617, -0.006038392, 0.0021815218, 0.0017630878, 0.005960342, - -0.012150121, -0.020764198, -0.017800901, -0.008652034, -0.029300489, - 0.0063529853, 0.0017542803, 0.011619456, -0.010876278, 0.01667522, - -0.0113819605, -0.015117111, 0.019864999, -0.0014018068, 0.014936111, - 0.0052134125, -0.0056635095, 0.012532231, 0.00870025, -5.555285e-5, - 0.020691466, 0.0071511897, -0.014653939, 0.0064726532, -0.0011152698, - -0.02552633, -0.0048646005, -0.0051542274, 0.034870457, -0.010553305, - -0.0038435962, -0.02883924, 0.0063536484, 0.020274786, 0.007259159, - -0.0056112944, -0.017843317, 0.0077158953, -0.013296938, 0.012324704, - -0.0144444145, -0.012066121, -0.013194335, -0.025078604, -0.005647414, - -0.016098857, -0.019335505, -0.009641278, 0.004238821, 0.013132975, - -0.016066821, -0.008655069, -0.012756984, 0.0033833275, 0.009548237, - 0.0037882628, -0.0027949768, 0.003899244, 0.013060032, 0.007995384, - -0.003515021, -0.0091017615, -0.0045454404, 0.018389015, 0.0023385745, - 0.02936679, 0.013871723, 0.03486467, -0.031757027, -8.404554e-4, - 0.011473667, -0.0020636213, 0.00993911, 0.014122676, 0.01497956, - 0.006101379, 0.013765277, -0.010098998, -0.0122589115, 0.039257165, - -0.008492779, 0.02269304, 0.008072556, -0.007163655, 0.0017989307, - 0.004819595, -0.016178139, 0.013011508, 0.015515655, -0.005628823, - 0.008701516, -0.004703266, -0.01815563, 0.020613832, 4.223661e-4, - -0.005813514, 0.004037118, -0.0056024273, -0.0086901, -0.0091949785, - 0.034112297, -0.022358233, -0.012302117, -0.024174584, -0.0028325813, - 0.004408259, 0.0046347897, -0.0010594082, 0.025928041, 0.006323358, - 0.003352763, 4.7888965e-4, 0.018170718, 0.027898675, -0.0046571135, - 0.005901829, 0.01929757, 0.03343387, 0.0026303595, -0.011856233, - 0.0068154526, -0.025774805, -0.022500407, -0.0023979882, -0.0059392196, - -0.014863738, 0.03594733, 0.028371248, -0.0061691264, 0.010928253, - 0.0011754453, 0.029186107, 0.012440203, 0.01058159, -0.00202222, - 0.013736227, 0.013149014, -0.018559316, 0.01941619, 0.011812605, - 0.004378444, 0.012790452, 0.0070902323, 0.026945159, -0.014984802, - -0.009214752, 0.009388922, 0.012116606, 0.009675185, -0.006256122, - -0.006817888, -0.021457154, 0.004889577, 0.00933456, 0.013845482, - -0.012272493, -0.019223286, 0.012242672, -0.024062946, -0.017575571, - 0.01448132, 0.03208827, -0.0055563888, -0.016940879, 0.011807311, - -0.0059177997, -0.001938362, -0.0280264, 0.04165815, 0.0018186542, - -0.01099018, -0.005693884, 0.021530082, 0.0016716444, 0.022674158, - 0.023379931, 0.016971111, -0.01018594, 0.0065561705, -0.012299213, - 0.013047147, 0.0068141115, 0.0024729902, -0.0054169237, -6.661073e-4, - 9.1717124e-4, 0.028186774, 0.0047965995, 0.016298102, 0.009155508, - 0.017302712, 0.012461678, 0.008976911, 0.005948135, 0.032158863, - 0.026674138, -0.010209439, -0.012476564, -0.017512498, 0.008500852, - 0.011427891, 0.009480986, 0.01457514, -0.012088744, -0.028845614, - -0.008496641, 0.006625045, 0.006748167, -0.014123284, 6.806266e-4, - -0.01424135, -2.416537e-4, 0.015636506, -0.0063188076, -0.0042961775, - -0.009105811, -0.018829633, 0.009292525, 7.5817946e-4, 0.011543831, - -0.020367537, -0.021272762, -0.011906758, 0.017924974, -0.0332848, - -0.0039236126, -0.015307358, 0.010829961, 0.011401858, -0.008098116, - -0.016882421, 0.012594938, -0.011944022, -0.022340553, 0.0019256213, - -0.014314478, 0.009151399, -0.017620223, -0.006599417, -0.017357647, - -0.0031258173, -0.030617617, -0.019581988, -0.0034826943, -0.018688137, - 0.019370668, -0.014059857, -0.010959563, -0.037027683, 0.025243852, - 0.006973119, 0.0097064795, -0.023732843, 0.022138115, -0.032586955, - -0.009299682, 0.018516412, -0.017941287, -0.010647519, -0.0064146584, - -0.016824635, -0.011634611, 7.749907e-4, -0.016521908, 0.007818939, - -0.019249916, 0.003819649, -0.011844833, 0.021267489, 0.00970265, - -0.0013202946, 0.0056033595, 0.0042719753, 0.018369613, 0.0027472563, - -0.0038295672, 0.026640978, 0.020277768, 0.0034598107, -0.01354078, - -0.00959883, -0.003155874, -0.009450149, 0.030090537, -0.017499365, - 0.008736007, 6.709851e-4, 0.010970946, 0.0096167205, 0.010205028, - -0.0037448583, -0.009205628, 0.0057127685, -0.0013011411, 0.022038905, - 0.019699514, -0.023833578, -0.0012273497, -1.7495902e-4, 0.012346283, - 0.005995428, -0.017238684, 0.0039570155, -0.002664155, -0.0061195698, - -0.016006568, -0.019919116, -0.0041333516, 0.023279957, -0.014684364, - -0.017897315, -0.02959344, 0.0032672111, 0.017518021, -0.0025497212, - 0.004521389, -0.00543166, 0.008810829, -0.016518418, 0.02596178, - -0.017026456, -0.041661453, 0.0020282508, -0.016219828, -0.0067778877, - -0.002381245, 0.0017961387, 0.012639909, 0.027367814, -0.011987243, - 0.016851997, -0.0016550511, -0.0010023136, 0.010288295, 0.011173671, - 4.835489e-4, -1.0340995e-4, 0.0037987682, -0.023419581, 0.0073839063, - 0.0030840563, -0.012865618, -0.009540709, -0.022510083, -0.0056450693, - -0.014407767, -0.0052149603, -0.035330046, 0.01782532, -0.02661462, - 0.02009428, -0.001656749, -0.0074173575, 0.007559113, 0.0060568773, - -0.0030388166, -0.020463053, -0.0046503292, 0.027641658, -0.029252473, - 0.023646042, 0.009118313, 0.0068026423, -0.025795648, -0.013268554, - 0.018340923, -0.01800162, -0.00923773, 0.004402457, 5.7204184e-6, - 0.0030464425, -0.010940073, -0.014040494, -0.0066795344, -4.3127258e-4, - -0.02618433, 0.0018355452, 0.008673646, -0.04103742, -0.02734654, - -0.016416144, 0.015285241, 0.009459886, -0.030346295, 0.014318718, - 0.010457673, -0.014214616, -0.00240527, -0.009843451, -0.028108388, - -0.010424596, -0.015289646, 0.022847602, 0.011168505, 0.012261962, - -0.011460237, -0.045908354, 0.012086872, 0.01879723, 0.0012249445, - 0.00486117, -0.010831556, -0.005776443, -0.0075762006, -0.021702603, - 0.038564693, -0.007887078, -0.025571084, -0.022548694, 0.004093142, - 0.0011228658, 0.011310927, 0.016638277, -0.018051632, 0.012469843, - 0.02667959, 0.018772494, -0.0144534595, 0.0313575, -0.0057425504, - 0.0094644865, -0.0014346287, -0.01667429, 0.01477248, -0.015073965, - -0.023554988, 0.0059928047, 0.0024463579, -0.01569035, -0.017746447, - -0.03280044, -6.702003e-4, -0.034213327, -0.016780144, -0.003242026, - 0.022033472, 0.02252283, 0.0014008521, 0.018481385, 5.7076115e-5, - -0.022580754, 0.015809232, -0.01709279, -0.0101966085, 0.0011357089, - 0.019347223, -0.028679349, 0.0038325451, -0.019684821, 0.0071864687, - 0.011800031, -0.017175328, -0.0093975095, -0.0013163663, 0.0025086848, - 0.023166005, -8.135347e-4, 0.028757134, 0.011280916, -0.006731823, - -0.021450927, -0.011273547, 0.01014546, 0.012908959, -0.014867013, - 0.014308227, -0.013595923, -0.026723007, -0.01245064, -0.0068401177, - -0.003760267, -0.02613995, 0.019621208, -3.00797e-4, 0.0077024885, - -0.022514367, -0.024034016, -0.0016662457, 0.027560923, -0.02689339, - -0.012533362, -0.02212132, 0.017340532, 0.0025425705, -0.010507175, - -0.008128978, -0.004277563, 0.029264877, 0.013016766, -0.0036031087, - -0.010712307, -0.0031342863, -0.0013127627, -0.018390948, 0.018900704, - 0.001838126, -0.0030215958, 0.007337274, -0.01953077, 0.008803302, - 0.0084595885, -0.0058557964, -0.013143339, 0.014172952, 0.0023209471, - 1.7250025e-4, -0.021900898, 0.011819537, 0.018761417, 0.010514002, - -0.0018081703, 0.021628445, -0.005205221, 0.017332206, -0.014968432, - -0.008907931, 0.018165775, -0.032751195, 0.030872095, 0.011143054, - -0.010696683, -0.004336632, 0.0121952575, -0.02186203, -0.01130937, - -0.021493962, 0.0052057668, 0.025828084, 0.004859663, 0.01556597, - -0.016041383, -0.017246412, -0.019340249, 0.0054994198, -0.014465683, - -0.010231857, -0.0048503727, -0.0051777796, -4.3373482e-4, 0.016488722, - -0.0014047109, -0.009051807, -0.027361838, -0.00585546, 0.04121463, - -0.007845455, -0.0068225795, -7.404536e-4, 0.0033354745, -0.0025678643, - -0.0013213843, -0.0023837695, 0.019858375, 0.0026189487, -0.014533555, - 0.00366268, -0.0021241703, -0.013169185, 0.023533085, -0.03190123, - 3.7235348e-4, -0.019490099, -0.0044731125, -0.021854315, -0.0049460325, - -0.00963923, -0.00496371, 0.0039141336, 0.0130306035, -0.020302366, - 0.0051637497, 0.017819546, -0.0189297, 0.0072749094, 0.009081834, - -0.015006355, 0.0011612771, -0.005879914, 0.02407873, -0.02316573, - -0.009869439, 0.016887186, 9.933051e-4, 0.030868309, 0.014986033, - 0.023291582, -0.0056525767, 0.00680335, 0.005337339, 0.019443946, - 0.010023995, 0.0043714317, -1.8513203e-4, 0.010911173, -0.00915568, - 0.029285021, -0.004591744, 0.007844771, 0.013996967, -0.012991838, - 0.023251558, -0.028017556, 0.02984628, -6.0563703e-4, -0.01019217, - -0.003131104, -0.01975256, -0.004754876, -0.016347647, -0.0125128785, - -0.009443871, -0.0051408526, 0.030579917, -0.0072716605, 0.0076697273, - 0.017137498, 0.024746342, 0.002412599, -0.0012703416, 0.002957244, - 0.0055424157, -0.026541952, 0.0056532775, 0.022582484, -0.00987073, - -0.0052564233, 0.014906917, -0.022521548, -0.0043949825, 0.0034931283, - 0.010946693, -0.013923132, -0.006076494, -1.4364047e-4, 0.01987752, - 0.0051450427, 0.013386915, -0.0059252717, 0.0030354445, -0.0073142205, - -0.0054330323, -0.019438878, 0.008426304, 0.015753651, 0.011412827, - -0.0063715074, -0.0015836072, 0.006524729, 0.029701171, -0.021094702, - -0.009008344, 0.018291343, -8.3151745e-4, -0.006710489, 0.0035606355, - -0.017712085, -0.012878693, -0.0041955346, 4.5871394e-4, -0.0037395903, - 0.01861059, -0.0031604334, -0.0076836147, -0.020957343, -0.013193593, - -0.017744565, -0.0017735796, 0.037304766, 0.03236694, 0.00794473, - -0.008179424, -0.019220663, -0.036034983, -0.00829013, -0.0019177354, - 0.015232828, 0.02513633, 2.2580079e-4, 0.011315021, -1.1259981e-4, - -0.015356481, -0.035780303, 0.011382686, -0.019633858, -0.016892247, - -0.019794846, -0.00571037, 0.023246232, -0.0112904925, -0.006695886, - 0.012655025, -0.0156183615, -0.0153386, -0.010754688, 0.0026390157, - 0.012148827, -0.02388059, -0.014817872, 0.0068622734, 0.0067271353, - 0.009491054, -0.0026016408, -0.018384043, 0.012241472, -0.010538533, - -0.0045007053, -0.009674324, -0.0021519994, 5.6612503e-4, 1.0394041e-4, - -0.002444339, 0.021588622, 0.0086299265, -0.012538793, 0.029187428, - -0.025785318, -0.009628181, 0.0028117485, 0.01936975, -0.010029656, - 0.026261566, -0.019633941, 0.040144864, -0.03460241, 0.0016635297, - -0.018178582, 0.0016155324, 0.0050757676, 0.017317176, -0.017072668, - 0.015593784, 0.028224591, -0.031028464, -0.0027181641, 0.007869922, - -0.009602032, -0.014818466, -0.011257573, 0.038298927, -0.011035991, - 0.02109451, -0.0063345204, 0.007343885, 0.01096879, -0.027379788, - -0.026827164, 4.905563e-4, -0.016686644, -0.018293248, -0.010879364, - 0.00807305, -0.01969174, -0.0053531774, -4.1886963e-4, -0.019831961, - 0.016708141, 0.0050641308, -0.022151923, -0.024105463, -0.002629755, - 0.029595051, 0.0017300243, 0.010732656, 0.0074656457, 0.01940239, - 0.013929007, 0.010921746, 0.012257814, -0.021245398, 0.0141886035, - 0.0021125905, 0.0014389054, 0.006257786, -0.0067161387, 0.013746176, - -0.021749904, 0.025098598, 0.004955913, 0.009997137, -0.004109534, - -0.021991516, 0.005108366, 0.003082829, -0.024638023, -0.004742792, - -0.018624153, -0.0056685456, 0.03978975, 0.025663344, -0.0045372564, - -0.02290591, 0.017462796, 0.017846497, -0.012686318, 0.018078145, - 0.006396075, -0.013681299, -0.009229831, -0.025112908, 0.005543486, - 8.241426e-4, -0.009253683, -0.019186076, 0.03099738, -0.0044179363, - 0.0070858053, 0.0061248583, -0.011997814, 0.0061238883, 0.026918698, - 0.005901057, 0.004480234, 0.015478313, -0.007189767, -0.020895964, - -0.006829594, -0.0064335964, 0.044084936, 0.026995203, -0.02306587, - 0.009610941, -0.010500356, 7.6219364e-4, 0.0028912881, 0.0058960128, - 0.021839462, 0.007657258, 0.016473452, -0.01445688, 0.005694711, - -0.008555298, -0.015278488, 0.0072176987, 0.007037874, -0.018364301, - 0.019553741, 0.008585033, 0.011642219, -0.0023288762, 0.015781587, - 0.0030859688, -0.0070645134, -0.0148294605, -0.033577465, -0.013936701, - 0.007014219, -0.028958654, -0.007210804, 0.00351535, -0.0075408486, - -0.009943349, -0.0056763375, -0.0048666326, -0.019471195, 0.027311463, - -0.0063279094, 0.021513851, -0.0041410592, -8.729234e-4, 5.4257544e-4, - -5.929626e-4, 0.030821405, 0.0010740334, -0.002161488, 0.0058017396, - 0.018455412, 0.02022095, 0.010597253, -0.0019193679, 0.008149719, - 0.036202833, 6.8549224e-4, -0.008780066, -0.016869254, 0.013794693, - 0.020182034, 0.004039919, 0.016282719, 0.033496786, -0.007847783, - 0.012021642, 2.0064271e-4, 0.008498106, 0.010113184, 0.022041172, - -0.010330434, -0.02533924, -0.008222602, 0.029453162, 0.014849173, - 0.010472531, -0.0025434499, -0.024557455, 0.033270057 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0043791025, -0.006275577, -0.04426912, 0.0032525882, 0.007942272, - 4.714098e-4, 0.0029813764, -0.010520723, 0.0019359541, -0.007995997, - -0.005090072, 0.017436609, 0.001999597, 0.013420239, -0.036142536, - -0.006929016, 0.0071783382, 0.0023282217, -0.010805253, 0.0027849923, - 0.010466092, -0.006548129, -0.0023196347, 0.0023852782, 5.828285e-4, - 0.0046900157, -0.019238424, 0.026733119, 0.04394868, 0.0070853857, - -0.0018616649, -0.007891205, 0.0203029, -0.015428177, -0.0051321364, - 0.017043076, -0.016223673, 0.0029167135, 0.025970038, 0.019171486, - -0.024846924, -0.017056404, 0.0061495425, 0.001474604, -0.016975224, - 0.010070711, 0.013560881, 0.008497744, -0.0011233682, -0.013436494, - 0.019612957, -0.008529891, 0.0077299047, -0.0024683762, -0.0055397437, - -0.017232321, -0.008755459, -0.031138321, 0.014407365, 0.014060659, - 0.0061119725, -0.02538783, 5.541308e-4, -0.01735813, -0.013131852, - -0.014587451, 0.0100164935, -2.262085e-4, -4.0818247e-4, -5.639422e-4, - -0.016405618, 0.007410722, -0.0058716265, -0.002956763, -0.008178057, - 0.0051775225, -0.0154369855, -0.009295734, -0.0054485262, -0.0066322833, - 0.012981509, -0.010327154, -0.0070012063, -0.023423009, 0.02394915, - 0.014010293, -0.009278533, 4.9080164e-4, -0.032723915, -0.00653681, - 0.018858356, -0.014579285, -0.026520927, 0.01581331, 0.005820496, - -0.010725251, -0.015668586, -0.014288906, -0.02178952, -0.010213624, - -0.009165683, -0.023055017, 0.008615609, -0.0068499227, 0.016752189, - -0.013315877, -0.0302165, -0.0028721236, 3.4257927e-4, 0.02143221, - -0.011608819, 0.034016166, 0.01390662, 0.02674588, -0.024138374, - -4.5496188e-4, -0.008869111, 0.0054079024, -0.0056584748, -0.010557607, - -0.025596926, -0.037642412, 0.016066816, 0.007220969, 0.0011168438, - -0.02401403, -0.028638657, 0.033510048, -0.027785249, -0.0109962635, - -5.2608625e-4, -2.5502584e-4, -0.0145214135, -0.0028480138, - -0.016221555, 0.015975757, 0.014257645, -0.024596069, 0.0014293487, - -0.008922795, -0.005934398, 0.006308067, -0.0044768634, 0.004939973, - 0.0017192664, -0.005119774, 3.2513097e-4, -0.035638575, -0.0031773366, - -8.997552e-4, 0.009494268, 0.013741526, -0.029646434, -0.017870711, - -0.0023159133, -0.0026463435, 0.018235667, -0.006277772, 0.005545345, - -0.009419695, 0.005178567, 0.01336369, -0.023468453, -0.009751, - -0.0053725177, -0.0047647697, 0.0041728937, 0.018499883, 0.0014858429, - -0.014340883, -0.00693016, 0.0024052495, 0.005376067, 0.012350409, - 0.039161667, -0.0013651133, -0.024970243, 0.008414504, -0.010156553, - 0.006327155, 0.013790625, 0.033302307, -0.0093279695, 8.057937e-5, - -0.028106328, 0.01370848, 0.026476676, 0.020605652, 0.011191936, - -0.0010303861, -0.013897642, -0.0063493857, -6.8341504e-4, 0.015368171, - -0.0043155616, 0.021624727, -0.014862569, -0.018046336, 0.0048544668, - -0.0022680978, 0.011102832, 0.012919301, -0.016368022, 0.0027024425, - -0.040643867, -0.017749583, 0.0024887654, -0.003045392, -0.015400193, - -0.01211509, 0.007621165, 0.020476626, 0.007451198, -0.008687945, - 0.0044238386, -0.009541885, 0.0155085735, -0.011701618, 0.0017163012, - 0.022074189, 0.036220476, -0.0034692027, -0.01569329, -0.025353033, - 0.0089691365, -8.069591e-4, -0.03307202, 0.008315569, -0.036566958, - -0.0028333054, 0.013798593, 0.01597808, 0.021682257, -0.020374374, - -0.019113427, 0.0013949113, 0.007169614, -0.015117925, 0.022672836, - -0.008396303, 0.011560216, -0.0029676822, 0.0047039636, 0.028844642, - 0.0063403575, -0.0013460005, 0.01977854, 0.02148961, 0.0019733424, - 0.02465328, 0.010047577, -0.008819249, -0.006835362, 0.0053172205, - 0.008578681, 0.0013153931, 0.011034994, 0.0064677373, -0.028440464, - 0.0020036357, -0.0067024636, -0.0033891578, 0.0068374895, -0.017188793, - -0.001695294, 0.007571307, -5.6270612e-5, -0.014105162, 0.0066672806, - -0.007393084, -6.2957115e-4, -0.014434939, 0.019758878, 0.0025412529, - 0.009050443, 0.025633676, 0.0039169216, 0.002629535, 0.009241023, - -0.0033806972, -0.016468411, 0.011895077, 0.0044020717, 0.0077807247, - -0.01134322, -0.01094567, -0.008312031, -0.04659887, -0.018710073, - -0.011671829, -0.007947212, 0.0132701965, -0.03415929, -0.012839171, - -0.013835355, -0.0050905626, -0.0029711784, -0.006840671, -0.0022950508, - 0.0127075, 0.017711448, 0.022599334, -0.011157722, -0.0069406363, - -0.020605952, 0.004801699, 0.006254143, -0.0039728787, -0.016010778, - -0.013370704, 0.021421451, -0.014360556, -0.02343686, 0.028130118, - -0.0042708754, -0.026340038, -0.0066772522, -0.0012464304, -0.010817094, - -0.01247138, -0.0024780952, -0.0036125358, 0.018590914, -0.0045650513, - 7.920817e-4, 0.02087167, -0.015380523, 0.009938521, -0.019023847, - 0.009145115, -0.0129487235, -0.011144953, -0.023091886, -0.013099721, - -0.009518583, -0.0044229617, 0.0028714903, 0.022738833, -0.019446734, - -0.0026004072, -0.0043052845, -0.0083989985, -0.013714343, 0.0023147312, - 0.005167541, 0.008471426, -0.0016904207, 0.016554259, -0.014804961, - 0.006971308, 0.018909734, -0.009109816, -0.009933444, -0.004044375, - 0.0038514792, -0.0055489326, 0.031609267, -0.011537407, 0.03798965, - -0.011685138, 0.020441743, 0.016128961, -0.011446774, -0.011706926, - 0.009145382, -0.032726903, -0.006662479, -0.008904199, -0.0069076554, - -0.009189631, -0.024885248, -4.078477e-4, 0.0039565456, 0.011099167, - -0.00721629, 0.027129026, -0.018825985, 0.010398649, -0.02511924, - 6.6132774e-4, 0.020020038, 0.017095659, 0.015202238, 0.03392289, - 0.0054480466, -0.005963316, -0.024443535, 5.627347e-4, -0.015201795, - 0.018866006, 0.020033304, -0.012068956, 0.021501752, 0.016571756, - -0.0010338656, -0.015440807, -0.002966657, -0.026262593, -0.0043050493, - -0.0035863754, 0.022066643, 0.002975569, 0.010281809, -0.011908244, - 0.007482092, -0.0013039445, 0.01943514, 0.008427695, -0.009182826, - -0.0081457, -0.0040576034, -0.0026078916, -0.0134009, -0.015622997, - -0.015015193, 9.4264187e-4, 0.013766453, -0.010158011, 0.015763154, - -0.010129599, -0.028824624, 0.0011963615, -0.007824611, -0.010623485, - -0.010006916, 0.0042111822, 0.015525799, -0.029589644, -4.816499e-4, - -0.026070625, 0.017545417, -0.018577479, 0.0065768026, -9.0354675e-4, - -0.008133601, -0.012277238, -0.004749081, 0.0071539297, 0.003118588, - -0.009364115, -0.006403957, -0.010018911, 0.004174583, -0.023648513, - -0.002869572, -0.017132195, -0.041111954, 0.03134207, -0.0033222183, - 0.0066423835, 0.01902439, 0.01192988, -0.0030443468, 0.0068761585, - 0.012047831, -0.004471871, -0.0063655055, -0.022970896, 0.0026382445, - 0.033958018, -0.022082923, -0.0016867339, -0.015584383, -0.0076768002, - 0.0057998197, -0.032229263, 0.0086946385, 0.004602264, -0.013309382, - -0.0071678082, 0.021475723, 0.022451987, -0.0076388908, 0.009998407, - 0.016635185, 0.023314683, 0.019121064, 0.007306403, 0.019790202, - 0.018076565, -0.026737623, -0.010698895, 0.0014020381, 0.012713528, - 0.0171019, 0.013717018, 0.0080312975, 0.021804906, 0.005517009, - -0.0046176673, 0.0083467895, 0.03404006, 0.007746097, -0.006487954, - -0.0023526822, 0.023523292, 0.027143316, 0.023649422, 0.027096942, - -0.014114947, -0.011203036, -0.0014737492, 0.008426579, 0.01340055, - -0.015656155, 0.021256573, 0.0057216417, 0.010583412, 0.021209724, - -0.02180201, 0.009038049, 0.00853709, -0.004854834, 0.0025634572, - -0.008378351, -0.0177375, 8.144535e-5, 0.018288318, -0.009623477, - -0.011997311, -0.0073763705, -0.04519482, 0.003922085, 6.108091e-4, - 0.006203231, 0.00643707, -0.02871844, -0.008586453, -0.004169603, - -0.0021605445, 0.016100334, 0.016255448, 0.0148377605, -0.013990195, - -0.021102581, -0.003973418, 0.0042233435, -0.012993446, -0.020371098, - 6.164723e-5, -0.010536261, 0.041495882, 0.00885413, -0.025272187, - -0.0019600948, -0.0049255462, -0.004165985, 0.009857019, -0.035877325, - -0.0015239795, 0.005065254, 0.018047305, -9.939051e-4, -0.012029461, - 0.015370343, 0.022761907, 0.03702218, 0.011143149, -0.0086180065, - 0.0037531967, 0.0045773704, 0.013464621, -0.016501626, -0.010888554, - -0.021365147, 0.0030490907, 0.006507551, -0.022980254, -0.011547095, - 0.008046654, -0.011958356, -0.008859159, -0.027265474, 0.019662127, - 0.008749814, -0.024429975, -0.01936775, -0.011681371, 8.186592e-4, - -0.0040360037, 0.010353039, -0.0014619554, -0.015537185, 0.003737044, - -0.0033484825, -0.0050874697, -0.008394077, -2.7206792e-5, 0.02376189, - 0.024116749, -7.537383e-4, -0.033476073, -0.023862977, -5.047378e-4, - 0.0012851283, 0.03419393, 0.016939022, -0.004052537, 0.02316584, - -0.04327766, 6.737915e-4, -0.006841708, -0.004716508, 0.003386263, - -0.022035556, 0.006899425, -0.0055720713, -0.021956077, -0.016735086, - 0.010218175, 0.003655858, 0.0021856064, -0.0078120274, -0.013218797, - 0.0043300684, -0.013381924, 0.024626592, 0.012550084, -0.01982051, - 0.012972862, 0.0136065055, 0.00376779, 0.0063768076, -0.004405078, - 0.009424314, -0.024554221, -0.009498044, -0.0057366285, -0.007801637, - 0.003672563, 0.008108215, 5.2671303e-4, 0.001814837, 0.0021762147, - 0.008132819, 9.392991e-4, 0.011543504, -0.022349289, 0.008551856, - 0.0073277266, 0.015572235, 0.0074973563, 0.016648743, -0.010913627, - 0.009676917, 0.019989064, 0.00483583, 0.01398065, -0.012388882, - -0.0027052318, -0.015808947, 0.010231973, -0.025777355, 0.0029401146, - -0.009671017, -0.0018064934, -0.040070165, -0.015609112, 0.0034215348, - -0.005771335, -0.016865108, -0.0012855862, 0.024514291, -0.0011433546, - 0.023659322, 0.011469356, -0.011993391, -0.0025613243, 0.020314252, - -0.003181716, 0.017178735, -0.008833123, 0.026678283, -0.009408166, - -0.024737857, -0.031013362, 0.015762057, 0.011587619, 0.010795307, - -0.014982886, 0.02012183, -0.006606313, -0.019146722, 0.00559508, - 0.004244477, 0.03155002, 0.019313503, -0.010761985, 0.015938371, - -0.032462668, 0.0063009895, 0.0034152642, 0.015348335, -0.005533038, - 0.0024679038, 0.0072914143, 0.0060310117, -0.0031292376, -0.015126569, - -0.008895082, 0.02696935, -0.0015005207, -0.008998212, -0.01015233, - -0.007686824, 0.002061806, -0.02701209, -0.0056254673, 0.0081207175, - -0.014434313, -0.017504381, -0.012635424, -0.0047737835, 0.016610166, - -0.0213216, 0.00994301, 0.0017093666, 0.011966954, 0.0054161963, - 0.031305872, 0.009892034, 0.0154212555, -0.016052792, -0.0037339143, - -0.0011474747, 0.0077289105, 0.0128919985, -0.026796479, 0.0022163384, - 0.030459985, -0.0065148445, -0.0026255639, 0.007459757, -0.010827031, - -0.013332423, 0.03944374, -0.012826513, 0.022991927, -0.014535807, - 0.0053533236, 0.019361833, 0.011313319, -0.025923638, 0.0023651784, - 0.0015677665, -8.098387e-4, -0.01827191, -0.004646297, 0.012642882, - -0.018955337, -0.030776707, -0.019117823, 0.013030303, -0.0061159567, - -0.0011617357, -0.009020682, -0.018088935, 0.002059483, -0.027706636, - -0.018790176, -0.016384277, 0.008996739, 0.0031437804, -0.011040616, - 0.0073542153, -1.19074066e-4, -0.0016530416, 0.005488183, 0.011956957, - -0.014059229, 0.0111760935, 0.011987735, -0.014946096, -0.012136638, - 0.0044744397, 0.007170497, 0.011731021, 0.0033487338, -0.03681311, - 0.037665755, -0.019058079, -0.019479543, 0.014844707, 5.725769e-4, - -0.006567214, 0.02952261, 0.010091246, -0.017793857, 0.013459247, - 0.015892927, -0.014042288, -0.0056398287, 0.002368345, 0.027460668, - 0.00841847, -0.020330103, -0.009701878, -0.0077136965, 0.011179107, - 9.7575143e-4, -0.004397215, 0.0035279, -0.0053063496, -3.877062e-4, - -0.023147432, -0.033964645, 0.026638918, 0.0062125516, -0.0015239862, - -0.03284739, -0.01694511, 0.0077926684, -0.0057922294, 0.02708252, - -0.029751662, -0.027845917, -0.029927477, 0.0035189728, 0.008597976, - 0.019022986, 0.022036903, 0.028447919, 0.0066564507, 0.019292964, - 0.0065879556, 0.006091002, 0.021877715, 0.026764221, -0.021152137, - 0.016209804, -0.0069347033, -0.019641139, 0.018097175, 0.014429157, - 0.00374139, 0.0031269751, -0.0056528007, 0.0026317006, 0.013930303, - 0.0046324935, 0.020743968, 0.038735416, -0.03497269, -2.4417476e-4, - -0.02567776, -0.030203424, -0.009624636, 0.0038958385, 0.0013379083, - 0.0060604424, 0.0050233165, 7.230526e-4, -0.0045463787, -0.0072678127, - -0.021153767, -0.0036110757, -0.008442361, 0.019509053, -0.0017666691, - 0.019142853, 0.01980646, 0.005869502, -0.011780874, 0.010034189, - 0.02012753, -0.0011299981, -0.018442957, 0.0021053317, -0.0030760488, - -0.013341268, -8.615181e-4, -2.7055974e-5, 0.029389882, -0.0059418166, - -0.0068873223, 0.012930787, 0.019328853, -0.0036725085, 0.0053548208, - -0.0034435445, -0.01858341, 0.03445506, -0.0034526854, 0.01668212, - 0.014268028, 0.013911043, -0.003850326, 0.019007986, 0.020433966, - 0.016756317, 0.010641118, 0.012920013, 0.024056463, -0.01082484, - 0.011024008, 0.02269674, 0.024886781, -0.009517322, 0.013192515, - -0.020030452, -0.0140352845, -0.0015641338, -0.006613248, 0.0039999224, - -0.012325561, 0.010695947, -0.010551537, -0.0074021085, 0.016308771, - -0.0011389934, 0.005243793, 0.00703691, 0.011776805, -0.014381683, - -0.0057387534, -0.013080877, 0.0069465335, -0.02364076, -0.013858455, - -0.003845022, -0.028810404, -0.018625507, -0.015239139, 0.031528387, - -0.027607422, -0.007920681, 0.02278654, 0.005173346, 0.016026445, - 0.004916772, -0.022927709, -0.0107341325, -0.02381987, 0.027570602, - -0.0077816555, -0.009173158, 0.01920846, 0.008693427, -0.0046004537, - 0.010118254, -0.013127585, -0.0057924916, -0.032724105, 0.009851606, - 3.7611698e-4, 0.020793954, -0.0062585487, -0.00776452, -0.03289273, - -0.016822036, -0.02269431, 0.008298829, -0.002542108, 0.0073822476, - -0.010157377, 0.0013556308, -0.020946164, -0.0065850257, 0.0014685858, - -0.0054389797, 0.022103127, 0.021665614, -0.013357335, 0.022392262, - -0.01767821, -0.008073164, -0.008496139, -0.020182502, -0.0106994845, - 0.0041352273, -0.022066457, 0.023517415, 0.012639934, 0.011784385, - 0.014585337, -0.021080961, -0.0023566007, -0.02754241, 0.006336832, - 0.02202512, -0.0010766772, 0.0026307725, -0.008858234, -0.03333383, - 0.012987177, 0.0048898547, -0.018118352, 0.0037911804, 0.01456491, - -0.020968992, 0.0051990678, -0.013240475, 0.025158936, 0.02270198, - 0.014633865, -0.0345053, -0.0039842967, -0.015400635, -0.008914296, - 2.0189711e-4, 0.006621421, 0.017278263, -0.018329453, -0.023572143, - -0.008309253, -0.0010027832, -0.0017814694, -0.010461359, -0.032046247, - 0.0022185713, 0.014047141, -0.024356833, 0.014386379, -0.012561194, - 0.01400845, 0.0016582861, -0.006066195, 0.019644715, 0.023837607, - 0.0041288673, 0.02393961, 0.00884379, -0.005153289, 0.0077534355, - 0.021684371, -0.016577797, 0.016975027, 0.020852719, -0.01996934, - 0.0021800091, -0.005383714, -0.0027844352, -0.013353744, -0.019500447, - -0.013267284, 0.011031295, -0.012851893, -0.0044276435, 0.020937817, - 0.0047174725, 0.013936987, 0.019431077, 0.0266001, -0.034836043, - -0.002432605, -0.0016094553, -0.011752122, -0.0037086862, -0.023805223, - -0.017066108, 0.01886557, -0.009256854, 0.012294761, 0.01902245, - -0.0020181255, 0.00604077, 0.008048718, -0.004005547, 0.012760961, - 0.022049071, 0.0021895515, 0.038130745, 0.019343037, 0.011338762, - 0.011725078, 6.326306e-4, 0.015066556, 0.031854253, 0.013094849, - -0.011766588, 0.008956411, 0.010111712, -0.019922094, 0.023081383, - -0.010934341, 0.036809225, 0.021932475, -0.015607375, 0.0014468771, - 0.0055093574, -0.017656669, -0.008854812, 0.013383349, -0.005024815, - -0.030100051, -0.04276202, -0.034813147, -0.010502898, 0.00234079, - -0.0036199952, -0.015078644, -0.002449634, 0.028166281, 0.01723366, - 0.002708497, -0.011727565, -0.016923342, -0.010429125, 0.005984845, - -0.009654974, -0.004710236, -0.004517859, 0.0013100697, -0.024666257, - 0.009939561, 0.004529477, -0.013055857, -0.005051914, -0.015565623, - 0.0011589178, -0.018647522, -0.0019513393, -0.0333817, 0.010438389, - 0.016993806, 0.0014006044, -0.030298846, 0.0042654406, -0.0030997568, - 0.0017226986, -0.035016067, -0.0066505666, 0.007928971, -0.0118545545, - 0.00709496, 0.0069173947, -0.032431133, 0.0147617515, 0.016428646, - 0.0043927743, 0.01835642, 0.02255425, -0.021356935, 0.0026626764, - -0.019173179, 0.009413951, 0.0019815231, -0.011399993, -0.036555145, - 0.02040473, -0.0013040062, -0.003574329, 0.034224123, -0.034401946, - -0.017664822, 0.012539889, -0.012141422, -0.009276558, -0.0028914798, - 0.0015544948, 0.011196375, -0.023927046, -0.026780142, 0.0040625674, - -0.028399164, 3.803211e-4, 0.006271735, 0.019119034, 0.006192823, - 0.010073626, -0.0014374931, 0.0039580395, -0.006166864, -0.00693215, - 0.0071958792, 0.007961755, -0.039715968, 0.015607304, 0.014985396, - -6.573755e-4, -0.012196308, 0.012818258, 0.006018085, -0.030532697, - 0.0046773795, -0.01764956, 0.010478136, -0.0044838125, -0.0023679577, - -0.0075837984, 0.017122453, -0.029838372, -0.015945153, -0.02238775, - -0.009206822, -0.04278814, -0.02091852, 2.7415116e-4, -0.014278812, - -0.0048698112, 0.0061710444, 0.004649586, -0.0029034235, 0.0018660752, - -0.0029913562, 0.006320599, 0.0051613897, 0.00138851, -0.03128961, - 0.0022881876, -0.04113849, -0.013894398, -0.041285243, -0.011436078, - 0.0040729987, 0.026637176, -0.018868249, -0.003255538, 0.0155750895, - 0.0057211504, 0.016175631, 0.021103924, -0.006516474, -0.005053827, - -0.015156145, -0.019809352, -0.005287241, 0.029880518, -0.009357226, - -0.020950504, 0.01237285, 0.009946423, -0.008007256, 7.4973307e-4, - -0.0025091427, 0.0029989926, -0.010992913, 0.010493587, -0.002158892, - -0.017505651, -0.006124121, 0.009162059, -0.009535888, 0.0019527515, - 0.0037211385, -0.0035216233, -0.008273822, 0.0010168687, 0.0066576805, - 0.010532773, -0.010782373, 0.030069148, -0.008217804, 0.0028887761, - -0.004445758, -0.012091527, 0.0016131413, 1.4635563e-4, 0.0047587175, - 0.009733265, 0.013931188, -0.017337322, 0.004443034, 0.01423894, - 0.02198719, 0.011104645, 0.009663137, -0.015392869, 0.021863775, - -0.0014073177, 0.007759792, 1.6822551e-4, -0.012910427, -0.0070430064, - 0.0077761533, -0.028978238, 0.009250645, 0.008868735, 0.0125965215, - 0.006441637, 0.024257608, -0.007926753, 0.0041226055, 0.00911924, - -0.017431019, -0.0011463381, -0.010226021, -0.009337232, 0.017022094, - 0.010793724, -0.0017276882, 0.01633029, 0.02120565, -6.0052454e-4, - -0.021186935, 0.029506555, 0.014125839, -0.039982617, -0.02202762, - -0.0038826016, -0.015182899, -0.016175922, -0.01233232, -8.724952e-4, - 0.027895074, -0.023327818, -0.005443177, -0.012649454, -0.007953997, - -0.004076209, -0.00514383, 0.005199329, 0.02159486, -0.006120215, - 0.006146746, 0.018372944, -0.0014814675, 4.671782e-4, -0.014453691, - 0.012706851, -0.0027186926, 0.022358825, -0.005527932, 0.0026763943, - -0.014354627, 0.021521505, -0.014458894, -0.004003955, -0.011871818, - 0.009683451, 0.033689115, 0.023560705, 0.015158518, -0.0045556943, - -0.005985387, -0.01401752, 0.012029623, -0.0064944727, -0.012281577, - 0.039197505, 0.014092012, -0.033113826, 0.005043736, 0.03348831, - 0.006671869, 0.027775846, -0.007836613, -0.022606622, -0.01116792, - -0.021441171, -0.0020481988, -0.00769984, 0.012335476, -0.0064931433, - -0.019957501, 0.015971603, -0.0030213431, 0.010920269, 0.023755819, - -0.014712576, 0.014732849, -0.0045064758, -0.017932815, -0.0074409647, - -0.002608107, 0.005017896, -0.007237613, -7.104694e-4, -0.0033828828, - -0.0046045566, 0.0053649093, -0.0034552985, 0.002182653, 0.033236425, - -0.015573277, -0.007640149, -0.020929549, 0.0056161904, 0.0068293298, - 0.0010696218, 0.006997347, -0.008412515, 0.007451729, -0.006366656, - -0.015814243, -0.0028093543, -0.029161701, -0.01706337, -0.0047095628, - 0.0064608967, -0.0069149006, 0.0015450999, -0.012305264, -0.0011226677, - 0.002230019, -0.0030718115, 0.0264304, -0.029775215, -0.01588604, - -0.014189243, -0.04642749, -0.0067243394, -0.016059188, -0.020464404, - 0.010538079, -0.016799469, 0.0090405075, 0.0011242353, -0.011034302, - 0.002989061, 1.243816e-5, -0.029722568, -0.010653744, -0.020982804, - -0.0083384095, -0.011349017, -8.521936e-4, -0.016600989, 0.019072143, - -0.0051958724, -0.024025224, -0.0062538018, -0.0036944263, 0.027632397, - 0.008089819, -3.4874113e-4, 0.0070924056, -0.0023016373, -0.0025373937, - 0.01645835, 0.006817636, -0.0054164585, -0.025489196, -0.02396674, - 0.024370031, -0.011923168, -0.019865738, 0.009563548, -0.00508097, - -0.0043366738, 0.0069044456, -0.0035905468, 0.005765212, -0.012606831, - -0.011303395, 0.01669824, 0.013960108, 0.019263947, -0.0012262249, - -0.0053543653, -0.014294011, 0.007251386, 0.0010955249, -0.011920243, - 0.019544005, 0.008787761, 0.026619766, -0.007723414, 0.010160477, - -0.023040129, 3.114007e-4, 0.015511908, 0.005443328, -0.0133786, - -0.0058881068, -0.043673437, 0.0016961605, 0.022981223, 0.018009055, - -0.012257842, 0.0037615176, -0.023992548, 0.024738599, 0.0070726136, - 0.0021546315, 0.013923328, -0.017514685, 0.005686577, -0.007315206, - -0.026328627, -0.008020072, -0.022769487, 0.013108397, -0.012230335, - 0.0064993063, 0.012995244, -0.012587349, 0.030228948, -0.041175537, - 0.027254038, -0.031784587, 0.018422093, 0.013365725, -0.018383054, - 1.9081791e-4, -0.022974975, -0.010130992, 0.002783228, 0.011652262, - -0.0152573045, 0.01859114, -0.008229926, -0.0109205935, 0.01972558, - -0.007919038, 0.0325946, -0.010280886, -0.010224626, -0.0072878473, - 0.01424242, -0.031178538, 0.0068124817, -0.019332958, 0.0107690375, - 0.01639553, 0.013916559, -0.015142081, 0.0076082093, 0.012748315, - -0.020804109, 0.0117705865, 0.020345068, -0.027368411, 0.012826149, - -0.011469407, -0.0031910925, -5.931733e-4, -0.0034518586, 0.0017850143, - 0.005848878, 0.0064189206, -0.008712496, -0.029769713, 0.043511588, - -0.007687876, -0.0040730806, 0.012598025, 0.013484564, -0.024824655, - -0.0038948867, -0.005301056, -0.010374696, 0.006524603, 0.03069807, - -0.005721091, -0.004268002, -0.0056893653, 0.015908463, -0.009912426, - 0.0050301775, -0.0051778853, -6.2096666e-4, -0.008377198, 0.029295798, - -0.021032339, 0.017711237, -0.008717778, -0.021398285, 0.003976664, - -0.015625035, 6.853495e-4, 0.014382155, 0.0042529725, -0.004691301, - 0.0070092813, -0.0052405302, -0.012279032, -0.019442689, 0.018976688, - 0.008307694, -0.03557072, -0.012190784, -0.0083228825, -2.0846905e-4, - 0.011527375, -4.0939337e-4, -0.00629894, 0.012244669, -0.012132863, - 0.0013907857, 0.007979251, 0.0041657058, -0.019488411, 0.02115454, - 0.002311308, 0.018587066, -0.018995384, -0.023190934, 0.020040622, - 0.03970232, -0.011889893, 5.6727347e-4, 0.024298577, 0.013512989, - -0.009088525, -0.008883573, -0.010759557, -0.012713243, -0.016926358, - -8.1398065e-4, 0.0048036543, -0.0012074719, 0.0014960156, 0.017725877, - 0.001173851, -0.015134461, -0.024274793, -0.00477661, 0.0037865152, - 0.0023822319, -0.004441355, 0.02607729, 0.032049667, 0.0050518564, - 0.017515182, 0.018651057, -0.013012042, 0.018039215, 0.024834251, - 0.017418735, 0.0028728347, 0.005231594, 0.0068604415, -3.8063707e-4, - 0.015296475, -0.010854367, -0.012282349, 0.006349741, -0.024118012, - -0.013115264, 0.0071858456, -0.0026228637, 0.007153507, 0.02012945, - -4.747611e-4, 6.684789e-4, -0.018260758, 0.0068695378, -0.0049943193, - 0.021121977, 0.008407075, 0.015880443, -0.022846054, -0.027183114, - -0.030572865, 0.0073814704, -0.004382647, 0.0040941797, 0.029724935, - -0.012655173, 0.015868464, -0.003529056, -0.0030489818, 0.018831884, - -0.009319978, -0.0076128957, -0.01824621, -0.0026184795, 0.007809411, - -0.024048127, 0.004813761, -0.012552095, 0.020349573, 0.010408015, - -0.0026531192, -0.025161106, -0.025736272, -0.011652671, 0.023046758, - -0.03181313, 0.010401001, 0.0140449405, 0.026146708, -0.018302767, - 0.008266194, 0.01482537, 0.0062283026, -0.012888893, 0.015807802, - 3.9133496e-4, -0.008479292, -0.0069823246, 0.019266633, 0.02097522, - 0.014112467, -0.012543032, -0.017697094, 0.011096304, -0.026105396, - 0.021181649, 0.0037457282, 0.019227695, -0.008605911, -0.018644521, - -0.008636327, -0.006540342, 0.0092573175, 0.0116119245, -0.005957783, - 0.0042420384, -0.009501077, 0.006526322, 0.016349196, -0.0050690984, - 0.005869635, -0.013426042, -0.002062583, -0.02030577, 0.025276925, - 0.03164581, 0.022832526, -0.0038696858, 0.0026216495, -0.05699847, - -0.02404432, 0.012127837, 0.004468617, -0.009688125, 0.003041222, - 0.011712462, 0.012275265, 0.033612568, 0.018385157, 0.015863916, - -0.013845955, -0.023484608, 0.011848383, 0.0125239305, -3.5583376e-4, - -0.028001009, 0.0038232552, 0.011338117, 0.008075535, 0.0031727497, - 0.023491103, 0.023858095, -0.029800385, -0.00497771, -0.00931333, - 0.009560846, -5.134728e-4, 0.0076364996, -0.002212645, 0.011374856, - 0.016939115, -0.016340382, 0.010576133, 0.011388393, 0.0052383286, - 0.0018430303, 0.013441084, -0.010328446, -0.002038631, -0.010095671, - 0.014401255, 0.0041449293, 0.037636463, 0.0019337715, -0.018905073, - 0.00987682, 0.012082744, -0.002645936, 0.002648952, 0.0061141537, - 0.0066682827, 0.005255594, -0.020662796, -0.015621798, 0.0014031488, - 0.019121053, -0.0041348822, -0.008586684, 0.031471938, -0.010630444, - 5.54857e-4, -0.013618383, 0.021063877, -0.016651768, -0.01954709, - 0.013860169, -0.004748212, -0.0010667698, -0.031772353, -0.014997479, - -0.012932424, 0.015790764, 0.007039089, 0.0033531417, -0.01270601, - -0.011305358, 0.016695052, 0.0028093762, 0.037399963, 0.014014381, - 0.008764608, 0.012495346, -0.025255809, 0.0018569437, 0.0035939796, - 0.005987391, 0.0051355404, -0.013749922, -0.022996552, -0.009049669, - 0.0061661564, -0.010046187, 3.9820513e-4, 0.0028296695, -0.0057327687, - 0.016561579, -0.0055464287, -0.0058612013, -0.002350866, -0.025856677, - -4.291496e-4, 0.0018252758, 0.0032232981, 0.036461692, 0.02131648, - 0.025333825, 0.008021166, -0.01756741, -0.0020854739, -0.014942943, - -0.002706883, -0.0067458786, 0.0028651694, 0.025804698, 0.008092385, - -0.0127861565, -0.0046197083, 0.011885255, -0.023515956, -0.0039312965, - 0.0019302615, -0.0040144087, -0.020655585, 0.011473813, 5.728764e-4, - 0.008086882, -0.0036067537, -0.026674874, -0.006833843, 0.0014851417, - 0.0092464425, -6.041339e-4, -0.0015476736, -0.00932828, -0.009845369, - 0.01377014, -0.0042900764, 0.0027545372, -0.018084448, 0.013282203, - -2.2039625e-4, -0.011049999, -0.0030431706, -0.0027872617, 0.032005038, - -0.021436058, 2.8967293e-4, 0.018354999, -0.029478608, -0.0064535527, - 0.0031404938, -0.007345276, 0.010154233, -0.0038858138, -0.0022489273, - -0.0056013293, 0.024694726, -0.0040379255, -0.015591019, -0.004512111, - -0.003952289, -0.019498674, 0.024556257, -0.024922188, -0.008908576, - -0.0063099484, -0.020646034, 0.029777009, 0.01221398, 0.013375005, - 0.0122345835, -0.019017918, 0.0042279926, -0.023537893, -0.031313255, - -0.0017322571, -0.019608619, 0.0081485305, -7.617134e-4, 0.018749882, - 0.019924557, -0.02853364, -0.012514676, -0.025365658, -0.012562232, - 0.007651387, 0.01202494, -0.004132318, -0.014149795, -0.009544079, - -0.015021016, 0.007620329, 0.017984616, -0.0056857876, -0.0029250782, - 0.011136987, 0.02064887, -0.016550617, 0.014217842, 9.050221e-4, - -0.015821125, -0.033982698, -0.015187577, -0.018480845, -0.0016443897, - 0.0059777903, 0.017843977, -5.4083596e-4, -0.003093519, -0.020394469, - 0.0018141569, 0.031040892, -0.0063238386, -0.012033994, -0.0152506195, - -0.010901588, 0.0018683895, -0.0070080226, -0.0076692593, 0.022784816, - 0.024495706, -0.02202673, 0.008858847, -0.016065057, 0.01265721, - -0.0024189458, -0.013884689, -0.010030581, -0.021019485, 0.038870577, - -0.02410618, 0.01896807, -0.006875908, 0.025700497, 0.003042254, - 0.01183425, -0.0076153707, -0.02432707, 0.038045883, -0.0070126206, - -0.005838152, -3.2494622e-4, 0.0042865383, 0.014246533, 0.034586277, - 0.016809603, -0.033980574, -0.00999343, 0.005133705, 0.004181367, - -0.0033559657, -0.005222873, 0.007614752, 0.0063013975, 0.015087059, - -3.686089e-4, 0.008609379, -0.0010272132, -0.011974282, -0.030763483, - -0.022787664, 0.01114579, 0.01935261, 0.0017608429, -0.012071308, - -5.897816e-4, 0.009040539, -0.009440802, -4.2410193e-5, 0.0112160435, - 8.468692e-4, 0.006246632, 0.0029642133, -0.006111122, -0.029935075, - -0.0052224738, -0.020256976, 0.0048838495, 0.004663203, -8.762303e-4, - -0.008629154, 0.0065587442, -0.0058698137, 0.016981402, -0.011589064, - -8.1335986e-4, -0.019575153, 0.0049536796, 0.03352511, -0.017281396, - -0.0048994427, 0.004153395, -0.019170733, -0.02404095, 5.2787253e-4, - -0.0106979655, 0.011317912, 0.0010647263, -0.015361746, 0.0010119283, - 0.03189225, 0.019627696, -0.009000185, -0.013820292, -0.019223934, - 0.025273697, -0.022861378, -0.01597255, 0.0150585035, 0.03704779, - -0.010777938, -0.007270592, 0.004479318, 0.00602006, -0.026971916, - 0.0067740087, 0.013528013, 0.004314263, 0.0028803702, -0.007835941, - -0.027770659, -0.0021440492, 0.0012822589, -0.014716508, -2.6845888e-4, - -0.0036557189, 0.012739735, -0.007216862, 0.02232409, -0.012872234, - -0.0045200894, 0.0142519055, 0.004349487, -0.017768027, -0.0070510064, - 0.0040339516, -0.0019082787, 0.03052377, -0.02502384, -0.012266869, - 0.014015176, -0.002288281, -0.010227694, -0.02051387 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.0023564408, 0.0023681864, 0.073483996, 0.005843958, -0.029302381, - 0.03338752, -0.024147552, 0.070475034, -0.0017914105, 0.01918205, - -0.006046191, 0.06088604, 0.029463477, 0.04616206, -0.06866245, - 0.0045684595, -0.013517634, -0.02861152, -0.05001613, -0.061683025, - 0.0027879854, 0.026384214, 0.017477307, -0.030401027, -0.015067505, - 0.035037674, -0.026551224, -0.0068594776, 0.006723712, 0.010366679, - -0.01722672, 0.013642289, -0.028151838, -0.008261579, -0.042444475, - -0.04194282, -0.0065966365, -0.027722362, 0.028261898, -0.008130191, - -0.009819868, -0.008042964, 0.020574497, -0.0024985634, 0.028607724, - 0.039375488, -0.021814743, -0.09783514, 9.81264e-4, 0.011940577, - -0.0039952844, -0.012827867, 0.06630284, 0.023011316, 0.021064421, - -0.045410834, -0.020222744, -0.022736896, -0.06801198, -0.02746179, - -0.008904078, -0.04857802, -0.0071379393, -0.014931923, 0.0027920182, - 0.037199996, 0.01686142, 0.009061006, 0.02384411, -0.008146557, - -0.03992511, 0.027593326, 0.013627553, 0.006966668, -0.044776704, - 0.085555844, 0.03763794, -0.0027110302, 0.024477964, -0.021318572, - 0.042044893, -0.0076474417, 0.022044826, -0.04200666, -0.026065405, - -0.07645532, 0.022718571, -0.029884484, 0.041209795, 5.502922e-4, - -0.002622956, -0.011949356, 0.022907346, 0.006716942, -0.0019686292, - -0.015986007, 0.017375553, -0.016974268, 0.0430587, -0.006698205, - 0.018582849, -0.018757569, 0.062780716, 0.017293902, -0.015100255, - 0.07728481, 0.03304527, 0.011724291, 0.018360019, -0.032779127, - -0.044995666, 0.028326852, -0.013446008, 0.028757859, -0.08056427, - -0.018425502, -0.011421609, -0.009652598, 0.04938801, 0.015919428, - 0.007001293, -0.009229972, -0.05701735, 0.051006403, -0.0047820276, - 0.013697779, -0.03580696, 0.03512129, 0.016151424, -0.027752327, - 0.034481138, -0.004422916, 0.017359968, 0.0018991134, 0.017379023, - 0.01195751, 0.015255809, -0.0048781824, -0.0136575755, 0.06478158, - 0.013169319, -0.041973464, -0.0048257275, -0.037939306, 0.014865181, - -2.3120563e-4, 0.003193064, 0.045870338, 0.015636269, 0.024270454, - -0.042581957, -0.020622196, -0.040141646, 0.016547032, 0.046980426, - -0.03415166, 0.02487477, -0.042675674, -0.007400251, 0.01646326, - 0.013965605, 0.047592197, -0.007877147, -0.025019784, 0.023485597, - -0.052375123, 0.05779531, 0.04902849, 0.043088686, 0.021192562, - -0.023852563, -0.0329279, 0.059911873, 0.045872252, 0.06360149, - 0.036497835, -0.0030335898, 0.006514202, -0.016320908, -0.023941481, - 0.0013346295, 0.0032832501, -0.021716543, -0.046259668, 0.022619614, - 0.035288226, 0.024227915, 0.0017455037, 0.019656118, 0.080857724, - 0.018584993, -0.07375518, 0.016163668, 0.0072682966, -0.030333547, - 0.067016214, 0.0069720186, -0.015169521, -0.03209589, -0.028685022, - 0.019327203, 0.042808454, 0.020967223, -0.0022211345, 0.021901239, - -0.020955758, -0.011964642, -0.006011583, -0.028531684, 0.0034910166, - -0.020631721, -0.034245484, -0.042098027, -0.017542882, -0.002208116, - -0.0023498563, 0.01626935, 0.031551227, 0.008588921, -0.007261167, - 0.032126743, 0.026490033, 0.0193556, -0.010691181, 0.05434678, - -0.030289736, -0.052414455, -0.038597636, -0.01812461, -0.009118165, - -0.036904678, -0.026994169, 0.08334488, -0.027967438, 0.039001446, - 0.015638368, 0.0337679, -0.057705503, 0.028675713, 0.0035313999, - -0.013991631, -0.019068561, -0.02370219, -0.021445423, 5.0979963e-4, - -0.054578934, 0.04475151, -0.0015574015, 0.072374344, -0.060731854, - 0.06759797, 0.027010985, 0.017091455, 0.025572237, 0.036155, - 0.022228992, -0.014787122, -0.014068393, -0.016198192, 0.008752767, - -0.026779838, -0.028357666, -0.027105298, -0.007009276, -0.042175654, - -0.004887806, -0.015587907, 0.035790388, -0.008111872, 0.019425184, - -0.0018332881, -0.017311422, -0.007519087, -0.033867706, 0.013418431, - 0.020623775, -0.05929595, 0.022277731, -0.041208312, 0.011170223, - -0.026261555, -0.056574967, -0.0018614401, -0.015212451, -0.033335455, - -0.01280027, 0.010672384, -0.008742586, 0.006744737, 0.0023986548, - -0.05569968, 0.018075923, -0.0299777, -0.02944585, 0.023572555, - -0.0018787084, -0.027242124, 0.052102614, 0.025261857, -0.057352226, - 0.022702506, -4.449087e-4, -0.037545536, -0.0342313, -0.0138371475, - -0.017132793, -0.03793557, -0.03464437, -0.0055377223, -0.0074136024, - 0.083500914, -0.033398736, 0.029668957, 0.019633092, 0.07142555, - 0.0032360451, -0.04600558, 0.04890609, 0.013965653, -0.023895591, - 0.051999524, 0.039604504, -0.02394102, -0.04197571, -0.032343335, - 0.02659927, -0.029993886, 0.05854605, 0.062190223, -0.0744175, - 0.007264014, 0.004426866, -0.01344649, 0.026300814, -0.042958386, - 0.022820342, 0.06710996, 0.02906969, -0.04055711, -0.0056464453, - -0.04595124, 0.025962494, 0.0019839522, 0.025620118, 0.0036124217, - 0.015675388, -0.04451916, -0.03444868, -0.06670519, -0.04416683, - -0.03300889, -0.016569216, -0.020170728, -0.030590966, -0.0010622882, - 0.015335114, -0.021788558, 0.025687523, 0.01966202, 0.03721397, - -0.014082387, -0.04741423, -0.056788072, 0.04497792, -0.05238401, - -0.026770508, 0.044613533, 0.022651572, 0.010887665, -0.027573783, - 9.225189e-4, -0.01858597, -0.051042717, -0.017421577, 0.059319876, - 0.022016399, -0.02496935, -0.02502509, -0.025707379, -0.00373796, - -0.025837192, -0.005819324, -3.9463292e-4, -0.03243554, 0.06860907, - -0.002133405, 0.03579783, -0.014700124, -0.045496628, 0.0071133287, - -0.02645622, -0.0048286254, -0.027375171, -1.5610535e-4, 0.019016795, - 0.036910832, 0.04891973, 0.060816646, -0.017500006, 0.009648933, - 0.03445457, -0.027509665, -0.0029242286, -0.0053232913, 0.013212351, - 2.9478458e-4, -0.0043286085, -0.004033914, 0.012168591, 0.024245827, - -0.012221158, 0.010635565, 0.030715942, 0.04957699, 0.056355238, - -0.06462584, 0.007403497, 0.04084036, 0.011510308, -0.0328829, - 0.017893663, 0.01354088, -0.009196266, 0.025078675, 0.003247224, - -0.05033272, -0.009489925, 0.020623907, 0.01957737, -0.044095438, - 0.0043266537, -0.014255417, -0.010765174, -0.023335563, -0.056168757, - -0.02787273, -0.008362172, 0.025608059, -0.0026300289, -0.023215214, - 0.030247262, -0.038217034, 0.03172618, -0.018757427, -0.006806951, - -0.03316991, -0.019096497, 0.054858033, -0.037445884, -0.033697642, - -0.03542293, 0.004972282, 0.058219302, 0.0045097955, 0.022288535, - 0.053017348, 0.04322127, 0.025576785, -0.0022635572, -0.005760996, - -0.004781713, 0.0041163014, -0.019100022, -0.007602404, -0.036584266, - 0.0050170566, -0.0077541233, -0.0296697, 0.01826509, 0.0089240745, - 0.0076323715, -0.006649674, -0.013426847, 0.012870165, -0.017219488, - -0.023844305, 0.003253999, 0.010426539, -0.06517661, 0.019123811, - -0.016304929, 0.014590489, -0.024820227, 0.036270607, 0.004739174, - 0.017162198, -0.0067247422, 0.02941706, 0.025553333, -0.043396644, - -0.008654694, 0.027868342, -0.016186273, 0.035247456, 0.0045661554, - -0.0062432084, -0.024632521, 0.024843875, -0.0026324738, -0.016988033, - -0.03510398, -0.008969003, 0.024867382, -0.0069781784, -0.027098238, - 0.041671302, 0.007549832, 0.007039744, -0.021038495, 0.0062481435, - -0.03750782, -0.042259265, 0.03646094, -0.0019529507, 0.04453846, - 0.013871026, 0.007405181, 0.023974638, 0.06750666, 0.014375823, - -0.01613953, 0.043771233, -0.05651535, -0.05542256, -0.026511004, - 0.018878698, 0.049126826, -0.07497643, -0.020012585, 0.022225123, - 0.012158731, 0.03932628, 0.015282826, -0.013743728, -0.05940863, - 0.011271328, -0.02145294, 0.008669111, -0.002052575, 0.010586363, - 0.026296759, 0.010486198, 0.049406566, 0.02156716, -0.04108038, - 0.022760697, 0.049499743, 0.009665133, 0.025477394, 0.005502662, - -0.045564357, -5.8487296e-4, -0.013440333, 0.025401652, -0.05069434, - -0.0042527365, 0.010248701, 0.022220008, 0.0260735, -0.055024937, - 0.0139815565, 0.017086629, 0.021843495, 0.01677439, -0.0157651, - -0.018853562, 0.022737958, -0.014238951, -0.046059813, -0.021895625, - 0.04807941, -0.025386097, -0.010884245, 0.03218429, 0.033557493, - 0.008244959, 0.03301781, 0.0025985725, -0.0063290317, -0.001027871, - 0.04178559, 0.007055261, 0.01217077, 0.049789365, -0.027217528, - 0.05397859, 0.00996132, -0.012651789, -0.060102526, 0.010961842, - -0.026849026, 0.02997889, 0.013665417, -0.050245564, -0.009327201, - -0.02175907, 0.011584264, 5.20861e-6, 0.016775047, 0.033984248, - -0.011114591, 0.035887353, 0.045296106, 0.051613174, -0.0020041864, - 0.023536336, 0.009127122, 0.008315064, 0.0012812661, 0.004940492, - 0.02067917, -0.052781533, -0.05172009, -0.002512969, -0.02079928, - -0.018841065, 0.054260097, -0.028528629, 0.045070644, 0.020109456, - 0.0037997658, 0.06609023, 0.036015194, -0.008751649, -0.026836934, - 0.01642138, 0.014309384, 0.03438075, -0.010867018, 0.007100287, - 0.029390732, -0.04527397, -0.044054758, 0.008817332, -0.053961035, - 0.05511837, 0.008113004, -0.06283169, 0.023713525, -0.0053997734, - -0.01983649, -0.03943626, -0.0010742272, 0.016374394, -0.028111458, - -0.03899218, -0.068190426, 0.04039186, 0.05692362, -0.025731852, - 0.013376331, -0.022600435, 0.006435206, -0.01022583, -0.02126157, - 0.019135298, 0.021909054, 0.026558336, 0.018398823, -0.008293174, - -0.006968855, 0.01704921, -0.031658143, 0.021906976, 0.020953534, - 4.2676416e-4, 0.05557808, 0.006599091, 0.014035631, -0.027619803, - 0.014989113, -0.0013839125, -0.045770623, -0.0027148782, -0.05946652, - 0.041625686, -0.016971057, 0.03175312, 0.03250694, 0.010975227, - -0.043638937, -0.05092608, 0.018737195, -0.0074971095, -0.0043101, - 0.0088967355, -0.021194872, -0.003068837, -2.0036861e-4, -0.021303674, - 0.027009144, 0.020976676, -2.6368869e-5, -0.0116138905, -0.03307484, - -8.5358496e-4, -0.017235534, 0.012773495, 0.022786101, -0.014348154, - -0.020299917, -0.0071404898, -0.012191275, -0.020365868, -0.009843934, - -0.015331087, 0.048754547, -0.0017752709, 0.005428963, -0.00772952, - -0.0014622447, 0.019666757, -0.009370831, -0.0059356187, 0.023873486, - 0.03184777, 0.021346996, 0.041179214, -0.007966216, 0.022504102, - -0.0020416547, 0.0155321, -0.027029589, -0.009857558, -0.0212464, - 3.1181593e-5, -0.028237745, -0.024971712, -0.009806867, -0.028165717, - 0.0045742174, -0.042748936, -0.008052507, -0.025259973, 0.02982619, - -0.020038938, -0.008683736, 0.07536805, 0.028246973, 0.0032471828, - -0.031814028, -0.069210306, 0.025029864, -0.01056568, 0.011952413, - -0.017853616, -0.023817664, -0.03585204, -0.00583442, 0.020199524, - -0.010196234, -0.022884157, -0.049440715, -0.030824952, -0.044027746, - 0.040983647, -0.0011783661, -0.043262497, 0.020095343, 0.020104982, - -0.0035751362, -0.01001744, -0.013975842, 0.014663546, -0.008635236, - 0.005712322, -0.0073140813, -0.014307184, -0.034120787, -0.0111653, - -0.025317995, -0.017196272, 0.011332144, 0.02841156, -0.019044125, - 0.02637756, -0.018440044, -0.0637538, -0.0055928114, -0.029074492, - -0.001992959, 5.311177e-4, 0.030540599, -0.0045543807, -0.022383634, - 0.025741523, 0.01609443, 0.06603407, 0.0729375, -0.037044354, - -0.001195251, 0.008875803, 0.019917404, 0.034017406, -0.07416776, - 0.050023932, -0.025337098, 0.0066176825, 0.015677007, -0.0067971298, - -0.01051802, 0.039821003, 0.05282373, 0.0045527094, -0.015546587, - 0.022766083, -0.01598302, 3.246829e-4, 0.03412906, 0.02281749, - -0.004239437, -0.008874888, -0.029949203, 0.033339232, -0.008326791, - -0.0042106844, 0.025924, 0.0072200797, -0.029416185, 0.020686025, - 0.027878543, 0.039022785, 0.015719302, 0.01370851, -0.018236462, - -0.0031778964, 0.01601705, -0.032734115, 0.01778009, 0.008699786, - 0.013093318, -0.03810988, -7.272695e-4, 0.02682832, 0.008061901, - 0.015939908, 0.010548714, -0.007120367, -0.026748035, -0.03123655, - 2.4188984e-4, -0.040046223, 0.032994065, 0.058434755, -0.037500307, - 0.06394567, 0.027879529, -0.057841886, 0.0022282577, -0.042905297, - -0.009585655, 0.028391743, 0.057270538, 0.014423428, -0.04040581, - -0.017782947, -0.03176994, -0.024735488, 0.043181174, -0.042604845, - -0.030130124, -0.0302762, -0.045622833, 0.04530105, -0.0078969, - -0.02089272, -0.017126871, 0.014157986, 0.03317014, 0.015874611, - 0.015221605, 0.031100275, -0.0151209645, 0.031873364, -0.003884558, - 0.029564464, 0.048458073, 0.0565341, 0.0058341776, -0.012880991, - -0.042415787, 0.002995391, 0.024223663, 0.0637452, 0.002178687, - -0.018218918, 0.001739122, -0.039460383, 0.055143084, -0.06448551, - 0.02915165, -0.010935004, -0.017272238, 0.029118808, -0.016036043, - 0.03301493, -0.01496545, -0.0636, 0.014429207, -0.03218839, 0.004293779, - -0.03700947, -0.007862154, 0.075213365, 0.004756614, 0.030291773, - -3.343767e-5, -0.043981444, 0.029233107, -0.00767615, -0.013752926, - 0.019228386, -0.0072558443, 0.016168986, 0.013998575, -0.039774552, - -0.017373998, 0.044838484, 0.0019040116, -0.053141516, 0.024548745, - -0.001275761, 0.019269444, 0.06155194, 0.007969449, 0.010895274, - 0.037572168, -0.04469772, 0.0036854243, 0.02184072, 0.015491259, - 0.09095498, -0.010368108, -0.01519491, 6.427437e-4, -0.106964946, - -0.059980597, -0.019308137, 0.01806316, -0.0025732757, 0.03062352, - 0.027014865, -0.039605867, 0.022032168, 0.007534426, -0.045332517, - 0.05393117, 0.0055063767, 0.038040806, -0.03237987, 0.02418306, - 0.004590439, 0.049253087, 0.025627458, 0.022970235, 0.0034232475, - -0.035300706, -0.04084687, 0.0056403647, -0.007091647, -0.020928169, - -9.807703e-4, 0.009234423, -0.02237626, 0.042622186, 0.034079168, - -0.07666525, 0.02261093, 0.025809044, -0.007899824, 0.011025101, - 0.014303059, 0.032463383, 0.019474145, -0.014697072, 0.033803128, - 0.018502986, 0.020867912, 0.049487688, -0.012205887, -0.023938874, - 0.020427741, -0.023346148, 0.0033933877, -0.02985893, 0.044580013, - -0.02057102, 0.0036355797, -0.067733295, 0.014594748, 0.017589988, - -0.036275707, 0.042538155, -0.012913882, -0.011853046, 0.043874845, - 0.02075214, -0.005238982, 0.041827317, 0.069553606, 0.035335027, - 0.029441876, 0.017646994, -0.0317458, 0.031698164, -0.06930752, - -0.08289741, 0.044475656, 0.026162837, 0.035552736, -0.019839577, - 0.011899878, 0.020631433, -0.039102346, -0.02129209, -0.026416248, - 0.037557885, 0.010856813, -0.058581073, 0.0029795598, -0.061994735, - 0.030529216, -0.04519713, -0.0010489961 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.0071231714, + -0.02301155, + 0.006131334, + -0.0021737264, + 0.0011320589, + -0.015728064, + -0.021987095, + -0.02463282, + -0.012200558, + -0.0050228224, + 0.0055632535, + -0.0062511596, + 0.00844215, + 0.014988833, + -0.0024549388, + 0.014119208, + 0.01184706, + 0.014725956, + 0.046206515, + 0.006568129, + 0.0012015242, + 0.029452756, + -0.0023600569, + -7.344289E-4, + -0.0017786772, + -0.015832976, + 0.0046189073, + 0.0032822888, + 0.021292113, + 0.018946186, + -0.009980682, + -0.01575211, + -0.029117817, + 0.014607008, + 0.0026112832, + -0.01604707, + -0.0034973999, + 0.024129892, + -0.0055689914, + 0.009996883, + -0.014031921, + -0.00467353, + 0.0023202326, + -0.0028676083, + 3.8824748E-4, + 0.0037072129, + 0.0076980004, + -0.01523516, + 0.014179306, + -0.018687934, + 0.008495369, + 0.02524376, + 0.0054785125, + -0.0069721728, + 0.01100425, + 0.0010658479, + -0.0020176277, + 0.040126286, + -0.0098329745, + -0.022931281, + -0.0025259936, + 0.009044732, + 0.015565808, + 0.0028375725, + 4.1761075E-4, + 0.021884087, + -0.009354252, + 0.024472313, + -0.017456684, + 0.007104901, + -0.003942504, + -0.030791553, + -0.006096873, + -0.014488381, + 0.005785271, + -0.014092379, + -0.012274438, + -0.037525594, + 0.02082091, + 0.024991147, + 8.4218E-4, + 0.008992385, + -0.007029059, + -0.01173217, + 0.0035678837, + 0.008459403, + -9.362179E-4, + -0.005249604, + 0.026440842, + 0.001977718, + -0.012915729, + 0.023836015, + -0.0035245789, + 0.007324318, + 0.010559783, + -0.004794506, + -6.556362E-4, + 0.008853519, + -0.009600291, + 0.01743849, + -0.029470233, + 0.015758881, + 5.1181036E-4, + 0.004954661, + -0.021225663, + -0.007612467, + -0.02006698, + -0.031136392, + -0.011175166, + 0.0036272705, + 0.006918062, + -0.0013571405, + 0.0010113249, + -0.012277457, + 0.008180783, + 0.005450898, + -0.009625933, + 0.0030474083, + 0.005390776, + 2.1312316E-4, + -0.0013721136, + -0.0057111015, + 0.0057637715, + 0.010405594, + -0.034619, + 0.0013624824, + 0.008470468, + -0.021222692, + 0.007571983, + 0.002220002, + 0.010069423, + -4.6150253E-5, + 0.02800172, + -0.025786264, + -0.009695442, + -0.00652807, + -0.0075372807, + -0.013714376, + 0.03147514, + -0.005035566, + -0.004055669, + -0.013128217, + -0.0031073447, + -0.0024899656, + 0.0050140107, + -0.011243751, + -0.020867286, + 0.007921151, + 0.013018788, + 2.7347024E-4, + 0.00858811, + 8.690531E-4, + 0.0044988515, + -0.023373628, + -0.008958261, + -0.0026074937, + 0.010058625, + -0.0030227283, + 0.016493859, + -0.0076141697, + -0.0064943857, + -0.015191027, + 0.0012225573, + 0.025263378, + 0.014062015, + 0.012042515, + -0.022948746, + -0.020026144, + -0.00485094, + -0.007226223, + -0.02934018, + 0.008640064, + -0.017565066, + -0.006096262, + 0.012430841, + 0.009176955, + -0.0045397882, + -0.017714677, + -0.009447043, + 0.0071046795, + 0.014486605, + 0.0053426623, + -0.0021311983, + -0.014204817, + 0.017511446, + -0.02762454, + 0.012609589, + 0.013046608, + -0.0036132964, + 0.018686652, + -0.01697324, + -0.0025427886, + -0.0047205626, + -0.007448199, + -0.008846315, + 0.023917714, + -0.016537948, + 0.017182348, + -0.006110874, + -0.0093353875, + -0.012674741, + 0.023026057, + -0.021820959, + -0.0057690255, + 0.0065774634, + -0.0055882083, + -0.025764389, + 0.0017185161, + -0.010893263, + -0.004691786, + 0.0046558245, + 0.0030918077, + 0.022071863, + 0.007949623, + -0.010354565, + 0.015499742, + 0.0021377497, + -0.01065784, + -0.026094606, + 0.017480163, + 0.010716327, + -0.007794316, + -0.001915282, + 0.0062519456, + 0.007657793, + -0.0016959807, + -0.024499008, + -0.0106347855, + 0.009888261, + -0.0037062808, + -0.013160442, + -0.0075072716, + 0.020426553, + 0.0059167137, + 0.013090788, + -0.011664342, + -1.6576191E-4, + -0.025224157, + -0.014146697, + 0.006792241, + 0.0019433694, + 0.0077463523, + 2.2369568E-4, + 0.017914424, + 0.017692804, + 0.0033611646, + -8.312067E-4, + 0.03645455, + 0.00246605, + 0.0043917648, + 0.017463878, + -0.004731569, + -0.018316958, + 0.014533869, + 0.018270815, + -0.006358579, + -0.0058349264, + 0.017705442, + 0.001341456, + 0.005495157, + 0.012774588, + -0.022918371, + -4.585487E-4, + 0.023443587, + 0.0151505945, + -0.02705498, + 0.023301255, + 0.0076713227, + 0.0036688528, + 0.027564293, + -0.018241618, + -0.0013291135, + 0.00613714, + 0.025381641, + 0.013984559, + 0.00858895, + 0.015018618, + -6.828475E-4, + 0.0046007303, + 7.517316E-4, + 0.0010088612, + 0.015292962, + 0.0068778037, + 0.023614822, + 5.96543E-4, + 0.018205618, + 5.41102E-4, + -0.0036680805, + 0.020236708, + 0.003427162, + 0.025064696, + 0.007046704, + -0.004639068, + 0.0052392855, + -0.014427331, + -0.0070080077, + 9.134382E-4, + 0.020233616, + -0.0021421916, + 0.013211494, + -0.024410848, + -0.00843917, + -0.027748683, + 0.017000677, + 0.0053423345, + 5.312724E-4, + -0.007528053, + -0.014275183, + 0.00754604, + 0.021263134, + -0.0060375375, + 0.00368505, + -0.02312099, + 0.009007738, + 0.0140285175, + 0.01053046, + 0.0061204573, + -0.02464043, + 9.142309E-4, + 0.006672087, + -0.006081402, + -0.013888522, + 0.016925309, + 0.017333522, + -0.020341963, + -0.02465848, + -0.0048788693, + -0.010068131, + -0.008114742, + -0.011797133, + 0.0032642349, + -0.0075560245, + 0.02190701, + 0.0012564694, + -0.011110543, + -0.04019796, + 0.0068139057, + 0.021669954, + 0.018750137, + -0.0098636905, + 0.015567109, + 0.018753843, + 0.009903827, + -0.012700955, + 0.003607243, + -0.032500867, + 0.007877519, + 0.016427502, + -0.0040054168, + -0.017129017, + 0.015869418, + -0.019414885, + 0.006836094, + 0.02063624, + -8.404365E-4, + -0.022992264, + 0.011599059, + -0.0051160417, + -0.0067009996, + 0.012113592, + 0.0019779503, + -6.7463063E-4, + 0.0088995285, + -0.01288196, + -0.011338768, + 0.013287381, + 3.6103942E-4, + 0.013835804, + -0.018182172, + -0.0011102887, + 0.02944784, + -0.007130934, + 0.021951377, + 0.0022905632, + -0.00788648, + 0.007495999, + 0.0010995654, + -0.012463333, + 0.022974588, + 0.01339623, + -0.03177254, + 0.03428937, + -0.031244675, + -0.01912274, + 0.008570691, + -0.01094822, + 2.8338635E-4, + 4.3595614E-4, + 0.030408883, + -0.016943041, + 0.0105605, + -0.0039013587, + -0.002032801, + 0.007063793, + 0.0031661065, + 0.02418428, + 0.019518625, + -0.0052746856, + -0.0012748239, + -0.0035895281, + -5.550787E-4, + -0.0048392955, + 0.015019257, + 0.0017163159, + -0.0025632265, + -0.013123025, + -0.012367169, + 0.013371599, + 0.0056102085, + 0.0067888713, + -0.013786145, + -0.014837003, + -0.013112315, + 0.0035221702, + -0.00494844, + 0.02163919, + -0.017916434, + -0.009564281, + -0.009971535, + -0.015606647, + 0.012280506, + 0.016891912, + -0.046766933, + 0.025800541, + 0.016134107, + 0.0046889163, + -0.0069571882, + 0.012834621, + -0.0028681247, + 0.004449619, + 0.044556234, + 0.002639306, + -0.007966692, + 0.021630393, + -0.008732591, + 0.023898734, + -0.024039093, + 0.032740235, + -0.008680449, + -0.0036688512, + 0.025360476, + -0.042805202, + 0.014393021, + -0.004849463, + -0.012349184, + 0.011822671, + 0.006510049, + -0.0050315373, + 0.009141483, + -0.008662452, + -0.005825974, + -0.027016615, + -0.04391141, + -0.008114365, + -0.004927298, + 0.020723546, + -0.027574817, + -0.0210276, + -0.012143986, + 0.012536826, + -0.006573493, + -0.0040111523, + 0.016867522, + 0.0020726626, + -0.010441068, + -0.014059699, + 0.007925305, + 0.038503315, + -0.010026083, + 0.004690927, + -0.009669722, + -0.015033595, + 0.005662023, + -0.0064039645, + 0.013148246, + -0.028689831, + -0.010852692, + 0.0026164039, + 0.022964193, + 0.016631952, + 0.010400463, + 0.021549923, + 0.02230781, + 0.0101059405, + -0.01447828, + -0.023612766, + -0.0022190178, + -0.047648262, + 0.01089937, + 0.0071300454, + 0.01003024, + 0.0010272781, + 0.003764422, + 0.010885166, + -0.013218893, + -0.0032629156, + -0.009621954, + 0.0051885713, + -0.02735988, + 0.02948036, + -0.012236882, + -0.031446125, + -0.0049268473, + 0.022900783, + -0.020678181, + 0.013655059, + 0.009019263, + 0.0053509725, + -0.00475507, + 0.011000996, + -0.01226399, + -0.022900827, + -0.011406854, + 0.031088911, + 0.0016612776, + -0.03645868, + 0.024813892, + 0.02667051, + -0.005958686, + 0.028583055, + 0.004543257, + 0.012580965, + 0.012505601, + 0.01349691, + -0.007767957, + -0.0144098215, + 0.0062869405, + 0.012990302, + -0.02301633, + 0.010818682, + -0.002173075, + 0.012363339, + -0.0102271205, + -0.016373277, + 0.014654355, + 0.008575741, + -0.0062455502, + -0.009210569, + 0.0026990713, + 0.00425059, + 0.0017774539, + 0.0054303603, + 0.041191593, + -8.4226945E-4, + -0.019088738, + 0.005451994, + -0.030041328, + -0.010177716, + 0.014312007, + 0.0022636366, + -0.012232593, + 0.0070440257, + 0.02606587, + 0.013649994, + 0.023305237, + -0.008302136, + 0.017059652, + -0.023005815, + 0.0231612, + -0.026348501, + -0.0022506567, + 0.039190963, + 0.0067668, + -0.0021762273, + 0.025208471, + 0.017350553, + -0.010577952, + -0.006167666, + 0.02438018, + -0.012635084, + 0.014753264, + 0.006381641, + -0.009232045, + 0.005599752, + -0.013895442, + -0.012115875, + -0.0041270605, + 0.009033797, + 0.0074882014, + 0.016148522, + -0.0127933705, + -0.020980187, + -6.2999444E-4, + -0.03371453, + -9.026276E-4, + 0.0011904627, + 0.0046600415, + -0.022183487, + -0.0095731085, + 0.03625395, + -0.02645649, + -0.0028486608, + -0.013551683, + 0.009023054, + 0.012857562, + -0.013731398, + -0.002790871, + -0.02357376, + -0.010133887, + 0.0032479328, + -0.010812936, + -3.7971002E-4, + -0.0084242625, + 0.003949787, + -0.0057583186, + -9.584877E-4, + 0.016844401, + -0.005824079, + -0.020207219, + -0.012343188, + 0.016043382, + 0.002709438, + 0.0071671773, + 0.0015273506, + -0.0052540055, + 0.023309026, + -0.016368091, + -0.02114283, + 0.027174952, + -0.0021593866, + 9.406078E-4, + 4.920833E-4, + 0.013898086, + 0.02441377, + -0.0049271863, + 0.030719291, + -0.016623441, + 0.009639361, + 0.011360618, + 0.0062892516, + 0.038305435, + 0.02778744, + 0.010873336, + -0.0034926306, + 0.008270663, + 0.004648908, + 0.032710824, + 0.0050979936, + -0.010511997, + 0.012632467, + -0.011474858, + 0.018990953, + -0.027569283, + -0.002953978, + -0.023126194, + 0.0030359074, + -0.008770616, + 0.006802999, + 0.011787958, + 0.0071337908, + 0.0085649965, + -0.010329891, + 0.0051382054, + -0.009213447, + 0.019973228, + 0.004481875, + -0.0013554512, + -0.0038618513, + -0.02443104, + 0.003955117, + -0.012314231, + 0.002516084, + 0.004372058, + 0.024370657, + -0.026455624, + 0.004453654, + 0.0063538984, + -0.033048756, + -0.014235994, + -0.0039308053, + -0.02456629, + -0.029051764, + 0.009925658, + -0.02514131, + 8.167522E-4, + 0.014661541, + -0.017208995, + -0.007808474, + 0.010555452, + -0.018961756, + 0.005784754, + 0.0038006033, + 0.030976351, + -0.025091968, + -0.008099096, + -0.005366842, + 0.0015565, + 0.0086213695, + 0.001908659, + 0.013365408, + -0.015541315, + 0.028926883, + -0.0026551888, + -0.008648225, + 0.012915384, + 0.011237256, + -0.031259052, + -0.0065682633, + 0.008951158, + -0.0146733, + -0.0135493, + 0.013281406, + -0.0124949105, + -0.015028818, + 0.0026599637, + -0.031251498, + -0.0014001009, + -0.0064324993, + 0.01783109, + -0.009774028, + -0.021843089, + 0.017491901, + -3.1307267E-4, + 0.0033352254, + 0.004452615, + 0.0020836464, + -0.012512669, + -0.01275348, + -0.0017073917, + -0.019614212, + 0.0017220215, + 0.032126755, + -0.019514728, + -0.0154387, + -0.010062162, + -0.0096356375, + 0.018260349, + 0.029847817, + 9.421317E-4, + -0.023745611, + 0.0057269987, + 0.012589805, + -0.0043838792, + 0.018863112, + -0.025390014, + -0.013592182, + 0.017640525, + -0.0019214771, + -0.0304031, + -0.0027794852, + -0.0095317, + -0.007855309, + 0.0052298643, + -7.786241E-4, + -7.5713504E-4, + 0.012309345, + -0.0034801771, + 0.0060041035, + 0.022047263, + -0.0010983911, + -0.002645803, + 0.007981785, + 0.00878961, + -0.041986905, + 0.012350543, + 0.009818617, + 0.0072224233, + 0.010533638, + 0.026077589, + -0.004285927, + -0.0077947187, + -0.027788937, + -0.003695285, + -0.01063643, + 0.03643741, + 0.008077347, + 0.014217459, + 0.0052116998, + -0.0040937015, + -0.007846569, + -0.012814795, + 6.4005595E-5, + -0.019232064, + -0.021277787, + 0.026476631, + 0.0017294614, + 0.028432447, + 0.004781272, + 0.04307499, + -0.0027092022, + 0.0014102742, + -0.019747147, + -0.025326688, + 0.025688495, + 0.010573595, + 0.016368838, + 0.009927081, + 0.008359106, + -0.0020343969, + 0.014868758, + 0.027259404, + -0.012638586, + -0.014096602, + -0.02249279, + -0.013617665, + 0.014768839, + 0.01606353, + -0.0026979405, + -0.004501779, + -0.026217395, + 0.0019368276, + 4.2992498E-4, + -0.012580558, + 0.012003193, + 0.0432286, + 0.035945643, + 0.007679944, + 0.014020342, + 0.0087320665, + 0.0074841916, + -0.00309507, + 0.011586571, + 0.007546774, + 0.010511376, + -0.027006812, + 0.0038899872, + 0.021402232, + 0.016016813, + 0.0032059974, + 0.016009739, + 0.0061385087, + -0.0078517245, + -0.008496352, + -0.014989225, + 0.01158021, + -0.016643774, + -0.0066209733, + -0.0024822904, + -0.0034189934, + -0.005614137, + 0.0026902852, + 0.027563881, + -0.0018051321, + 0.00995117, + 0.031474758, + 0.0033974794, + -0.019433029, + 9.7516435E-4, + -0.0053214603, + -9.6833427E-4, + -0.016024379, + 0.0037644284, + 0.012239895, + 0.015440173, + 0.007593689, + 0.014368305, + -0.0059419614, + 0.020740742, + -0.012761697, + -0.008666381, + 0.01004935, + -0.016005047, + -0.012463849, + -0.017724587, + 0.0011227545, + 0.0088275615, + -0.029146533, + 0.010711268, + -0.0028514322, + -0.02606669, + 0.010547485, + 0.011482677, + 0.01405337, + -0.006513412, + -0.008186163, + 0.026731113, + 0.0046460414, + 0.021104917, + -0.012464598, + 0.008775122, + -0.013582171, + 0.0219082, + 0.0056448774, + 0.0023649014, + -5.530762E-4, + 0.015708696, + 0.022420233, + -0.003977705, + -0.023519177, + 0.0054825894, + -0.016051685, + -0.0052485154, + -0.026823936, + 0.012310235, + 0.010900403, + 0.010869872, + 0.028716361, + 0.0065867025, + -0.026289893, + 0.007664583, + 0.022612117, + -0.01820378, + -0.014535236, + -0.0010111673, + -0.00979221, + -0.02508805, + -0.009550469, + 0.010820864, + -0.0010159012, + 0.019037316, + -0.029560545, + 0.014384775, + 0.009893842, + -0.00545745, + -0.023260934, + -0.04116647, + -0.018079143, + 0.017566733, + 0.0045976946, + -0.009771223, + -0.0374959, + 0.013130698, + 0.009481798, + 0.0038867416, + -0.01010854, + -0.03744044, + -0.011084732, + -0.0077360882, + 0.007677347, + 0.0016001392, + -0.02146492, + 0.005149543, + -0.01979272, + 0.018435422, + -0.024893051, + 0.0028278884, + 0.011473985, + -0.0039945533, + 1.5584615E-4, + -0.01485993, + 0.0018477321, + -0.0027282564, + 0.004237276, + -0.013719718, + 0.0129895145, + -0.010738255, + -0.006459107, + 0.006847498, + 0.017963257, + 0.018257549, + 0.040638756, + 0.005784367, + -0.00882562, + 0.005529646, + -0.011450867, + -0.02516854, + -0.01455019, + -0.013757884, + -0.00683141, + 0.0066583166, + 0.006448814, + 0.01568583, + 0.008857156, + 0.02024771, + 0.015879273, + 6.727971E-4, + -0.0121167675, + 0.023155985, + -0.022931509, + -0.011241289, + 0.028275304, + -0.01127635, + -0.0057348646, + -0.01878628, + -0.025922494, + 0.020618308, + -0.0016996277, + -0.008314096, + -0.0023205548, + -0.006121019, + -0.018382298, + 0.020890879, + 0.0053289086, + 0.012184179, + 0.0384291, + 0.0044905017, + 7.563371E-4, + -0.016142732, + -0.006056605, + -0.005132128, + -0.0012030734, + -0.0013411258, + 0.009636973, + -0.0031163201, + -0.017883582, + -9.5364964E-4, + -0.015522991, + 0.016037574, + 0.020300984, + 0.028836036, + 1.7117374E-4, + 0.011207035, + -0.014118464, + 0.007556472, + 0.008239776, + 0.01567336, + 0.0020480475, + 0.0074476586, + 0.0025241538, + -0.012667381, + -0.02791756, + 0.016456943, + -0.019187978, + -0.009456514, + -0.0051103043, + 0.003874255, + 0.029022375, + 0.019925065, + -0.0068019633, + 0.02500448, + 0.008313182, + -0.014949455, + 0.009248735, + 0.003529774, + -0.0058313427, + -0.014685875, + -0.009804498, + -0.0027114965, + -0.024539957, + -0.01141283, + -0.017299457, + -0.011362672, + 0.008457974, + 0.01786014, + -0.027461825, + 0.017785372, + 0.01019665, + 0.02757682, + 0.010839796, + -0.009978132, + 0.011408768, + -0.004993064, + 0.010321204, + 6.137781E-4, + 0.013022394, + -0.055046927, + -0.028859377, + 0.009439378, + 0.033466488, + -0.028736763, + 0.013555322, + -0.026508214, + 0.016441705, + 2.985467E-4, + -0.019096758, + 0.02763874, + -0.012740642, + 3.2164282E-4, + 0.031986147, + -0.0011360841, + -0.02010283, + -0.010428961, + 0.00478035, + 0.0034953172, + 0.013324853, + -0.003635875, + 0.015357536, + -0.0050259093, + -0.009644395, + -0.017522668, + 0.010595713, + -0.02583563, + 0.015064673, + 0.015734432, + -0.0052470756, + -0.008468095, + -0.01589598, + 0.00939203, + 0.0073157023, + -0.008420377, + -0.007485283, + 0.006539602, + 0.002010918, + 0.0049427445, + -0.0030519627, + -0.0011570284, + 0.013081199, + 0.0051895366, + 0.025712874, + 0.014515108, + 0.018953834, + -0.0021641175, + 0.005559479, + -0.01725745, + 0.011042814, + -0.0091536855, + -0.029543787, + -0.015514471, + 0.017948799, + 0.004055464, + -0.011143642, + 0.006577522, + 0.01233706, + 0.02656757, + 0.024747523, + 0.003493281, + -0.018634, + -0.0061241398, + -0.011155875, + -0.017107897, + 0.008497703, + -0.0035207304, + 0.018720532, + 0.009948314, + 0.02756585, + 0.002881009, + 0.0047426634, + 0.014243339, + -0.012601785, + 0.00870671, + 0.016647946, + -0.010529771, + -0.008306954, + 0.015761307, + 0.0051594716, + -0.003335484, + 0.013096183, + -0.01577308, + 0.0045008534, + 0.0045464155, + -0.017927554, + -0.015057471, + -0.02605232, + -0.008539302, + 0.0049728113, + 0.045859843, + 0.017514436, + 0.0036845326, + -0.022115918, + -0.002966411, + -0.0012924926, + 0.01805537, + -0.0058799917, + 0.008117312, + 0.0040901913, + -0.0029343148, + 0.030994425, + -0.0017614008, + 0.010616788, + -0.016434146, + -0.004856373, + -0.008868274, + 0.035293423, + -0.0011709013, + 0.011394303, + -0.016849404, + 0.030045873, + -0.010691133, + -0.022171766, + 0.017498862, + 6.9367635E-4, + 0.012405547, + 0.018994251, + 0.023517495, + 0.004350553, + 0.0042760405, + -0.024447862, + 0.013162034, + 0.0038560368, + 0.014858107, + -0.018001728, + -4.8251034E-4, + -0.027600948, + 0.016827527, + 0.011777438, + 0.018233038, + 0.032971464, + -2.9742988E-4, + -0.008775432, + 0.022792503, + 0.0037707158, + -0.00964891, + -0.0024127879, + -0.0041816183, + -0.010152719, + -0.009880731, + -0.0048549823, + -0.0013896885, + 0.014985369, + -0.0018391935, + 0.010925023, + -0.010760648, + -0.012480286, + -0.019036744, + -0.008033014, + 0.02912166, + 0.017017959, + 0.010861309, + -0.03544025, + -0.009730904, + 0.0065115523, + 9.438654E-4, + 0.028294057, + -0.0052714697, + -0.0034660464, + 0.026744448, + 0.021332355, + 1.7448439E-4, + 0.019421775, + 0.017387047, + -0.0130486945, + -0.007398236, + -0.01262608, + -5.9340906E-4, + -0.029591843, + 0.0021358614, + 0.00620246, + -0.022250626, + 0.007613147, + 0.027938005, + -0.011840882, + 0.029285084, + -0.0025881873, + -0.013249467, + -0.00833178, + 0.006996402, + -0.017776247, + 0.0387254, + 0.022845807, + -0.02247274, + -0.0018404078, + -0.017705932, + 0.009849966, + -0.024107188, + -0.0218115, + -0.018740973, + -0.020162774, + 0.008206856, + 0.010904083, + -3.428323E-4, + 0.009337557, + 0.0044725314, + 0.011238981, + 0.011153961, + -0.027032461, + 0.008625491, + -0.01977818, + 0.0049187886, + -0.010326971, + -0.026586996, + 0.017210951, + 0.015472037, + -0.015391961, + -0.001650306, + 0.017935215, + 0.011181684, + 0.032473076, + 0.010613448, + 0.017297855, + 0.019663084, + -0.01746741, + -0.016179103, + -0.003602627, + -0.014320663, + -0.0075013214, + -0.0015604448, + -0.0029441589, + -0.029306147, + -0.004455599, + -0.015629359, + 0.00840321, + -0.013287371, + -1.8480676E-4, + 0.011828975, + -0.006638854, + -0.025405925, + 0.0040916707, + 0.003392871, + 0.010128608, + 0.013732745, + 0.020956423, + -0.018411659, + 0.029128226, + -0.0090004, + -0.006875827, + 0.0073456485, + -0.0055431775, + -0.0021214513, + 0.0017689001, + -0.0017068863, + -0.02162639, + -0.00965158, + 0.0071027214, + 0.00459757, + -0.006069629, + 0.008415122, + -0.0032449274, + -6.936369E-4, + 0.016175916, + 0.005759807, + -0.001846495, + -0.002774485, + -0.010602033, + 0.007738656, + 0.010548416, + -0.011796083, + 0.008547736, + 0.018825877, + -0.013531697, + -0.033743467, + -0.009837276, + -0.0039458433, + 0.01730338, + -0.011771416, + 0.005708099, + 0.00785712, + 0.009190144, + 0.016283954, + 0.021448197, + -0.0042540478, + 0.019231303, + 0.004333002, + 0.004628082, + -0.009884948, + -0.0029359113, + -0.016910575, + 0.004204396, + -0.0011191573, + -0.028728163, + 0.007972345, + 0.009062401, + 0.015974725, + 0.0010068145, + -0.007850347, + -0.024817683, + 0.016202156, + 0.016331237, + 0.004021803, + 0.008155403, + -0.01463305, + -0.014414317, + 5.7926436E-4, + 0.027849723, + -0.03941047, + 0.012372497, + 0.021682724, + -0.010772028, + -0.017403683, + 0.0014670233, + -0.013499828, + 0.006081543, + 0.016253145, + 0.0033237694, + 0.010550446, + 0.0025614311, + 0.02122594, + -0.00463727, + 0.015474878, + -0.019223597, + 0.010070579, + 0.0034690527, + 0.027193448, + -0.02613626, + 0.011193896, + 0.012681179, + 0.0036199316, + 0.016968207, + 0.029599875, + 0.0021867347, + 4.8850104E-4, + 0.009300426, + 0.014231764, + -0.0021329126, + 0.010959751, + 0.001537738, + -0.017346531, + 0.0043852055, + 0.014830354, + 0.0037365982, + -0.010736947, + -0.01038868, + 0.015341566, + 0.010198646, + -0.019232338, + -0.009187856, + -0.00760098, + 0.024851285, + -0.0054611047, + -0.018292546, + -0.005113013, + 0.008940227, + -0.0022712864, + -0.028473562, + -0.0011891075, + 0.010434005, + -0.013291719, + -0.0070757926, + 5.3831143E-4, + -0.008714561, + -0.0018505643, + -0.0070953583, + 0.008832992, + -0.018535215, + -0.0060620015, + 0.002556698, + 0.006840213, + -0.02206272, + 0.011438162, + 0.01737244, + 0.01035141, + 0.026225114, + -0.010056175, + -0.017021665, + 0.013294509, + -0.0012563549, + 0.028994659, + -0.0064744153, + 0.008264139, + -0.017028924, + -0.014715333, + -0.025523774, + 0.02567282, + -0.01665489, + -0.018111214, + 0.020595491, + 0.010370354, + 0.013254347, + -0.0121638635, + -0.011634088, + -0.009212522, + 8.898037E-4, + 0.028701765, + -0.0031841819, + 0.0028602018, + 0.006466869, + 0.043355834, + -0.023115115, + 0.029901253, + -0.0013441375, + 5.813527E-4, + -0.0035452894, + 0.0062653543, + 0.0024020115, + 0.008378676, + 0.0021343252, + -0.011537404, + 0.0057551716, + 0.005414989, + -0.012350318, + -0.006768127, + 5.613863E-4, + 0.0289831, + 0.010354992, + 0.010582671, + -0.023802128, + -0.0017384124, + -0.0044307425, + 0.037757263, + 0.002158248, + -0.022608452, + 0.018065384, + 8.1007654E-4, + 0.0061804284, + 0.008260739, + -0.02158522, + 0.0044847727, + 0.030591078, + 0.019657234, + -0.009310655, + -0.0065648924, + 0.005262506, + -0.013162303, + 0.014388047, + 0.020919306, + 0.011864071, + -0.013332995, + 0.0131252, + -0.016527727, + 0.019395184, + 0.013853844, + 0.013829274, + -0.023599997, + 0.011009413, + 0.0082723675, + -0.011478335, + 0.002458206, + 0.019471055, + -0.0088765165, + 0.009403865, + -0.018034065, + 0.011532972, + 0.011994213, + -0.017124714, + -0.003205636, + -0.006118949, + 0.0076437676, + 1.3428513E-4, + 0.019207561, + 0.0025072978, + 0.0031525139, + 0.014856123, + 0.010083544, + -0.008935115, + 0.012461748, + -0.008697592, + -0.024499603, + 0.015660731, + 5.795627E-4, + 0.0018167055, + -0.00947832, + -0.015730547, + 0.007919071, + -0.02498411, + -0.020856168, + 0.0076438757, + -0.0048919613, + -0.026280042, + 0.011383143, + 0.006136181, + 0.019519646, + 0.028210558, + 0.008385679, + -0.012184392, + 0.011990413, + 0.017793013, + 0.0159921, + -0.0067544985, + -0.025026727, + -0.019077063, + -0.016631091, + 0.001214071, + -0.035327088, + -0.012229108, + 9.5634506E-4, + -0.00814655, + -0.016238585, + 0.03008707, + 0.01863856, + -0.009493767, + 0.0018392934, + 6.8925315E-4, + 0.006982325, + 0.014027431, + -0.0036989064, + -0.027560065, + -0.009139807, + -0.005106147, + 0.002559305, + 0.015308332, + -0.0024659082, + 0.035523985, + -0.0011633607, + -8.090858E-4, + -0.0038048641, + -0.02038185, + -4.168868E-4, + -0.0053213034, + -0.01202865, + 0.012859977, + -0.0044087614, + -0.019418698, + -0.02162495, + 0.010749013, + -0.02244652, + 0.003065559, + 0.014786429, + 0.040044144, + -0.013252574, + -0.008403672, + 0.0016560202, + -0.0099498695, + 0.023884676, + 0.007995066, + -0.013454562, + 0.015862405, + 0.013879738, + -0.007851529, + -0.008646533, + -0.015237036, + 0.007641425, + 0.003323334, + 0.007901968, + -0.014611774, + -0.017125584, + -0.023504365, + -0.0025035315, + 0.009753352, + 0.0034993477, + -0.003365585, + -3.5501417E-4, + -0.014418795, + 0.0014146193, + -0.0052579306, + 0.010762402, + 9.412083E-4, + 0.01845454, + -0.027479243, + -0.03684768, + -0.0143378945, + 8.1119733E-4, + 0.0049773753, + -0.010506081, + 0.008730914, + 0.031548005, + 0.02064498, + -0.010761481, + -0.0064100586, + -0.013375907, + 0.0035674379, + -0.01394232, + -0.026216026, + -0.011346717, + -0.02974999, + -0.011628902, + 0.007992879, + 0.013630188, + -0.030633254, + 7.11289E-4, + -0.008672396, + -0.01282364, + -0.016129147, + -0.009596731, + 0.021471735, + -0.0060959095, + -0.005384811, + -0.040499166, + 0.004562911, + -0.01672698, + 0.011572032, + 0.0024500296, + -0.010730486, + 0.023876889, + 0.0066498267, + 9.3209057E-4, + -0.017068585, + -3.9474425E-4, + 0.0037357018, + -0.0010624079, + -0.017650107, + -0.0037646496, + -0.007536836, + 0.010425688, + 0.040363904, + -0.024384355, + -0.0060430234, + 6.147353E-4, + -0.0014675014, + -0.0076178988, + 0.013491549, + 0.014140417, + 0.004198161, + 0.023238406, + 0.023091268, + 0.01309927, + -0.033284053, + 0.001253205, + -0.006074153, + 0.020864598, + -0.007228093, + -0.004919143, + -0.022322848, + -0.009831257, + -0.01361471, + 0.007175914, + -0.009021148, + 0.011447955, + 0.01035431, + -0.012361483, + -0.005536688, + 0.02169474, + 0.0033114424, + 0.0072462116, + -0.011150751, + 0.020334508, + 0.010818754, + -0.012501177, + 0.019433593, + 0.018101508, + 0.0026390692, + -0.01040913, + -0.018198336, + -0.012562052, + 0.003678338, + -0.006286012, + 0.0036750166, + 0.008591307, + -0.005419949, + 0.006595624, + -0.0050800424, + 0.0083511295, + -0.0084842825, + 0.02839705, + -0.017227959, + -0.030120177, + 0.011064341, + 0.0029510069, + -0.0055894544, + -0.01294826, + 0.02915382, + 0.009798239, + 0.017840585, + 0.0060524326, + -0.0018385258, + -0.0045431037, + -0.002282053, + -0.025210971, + 0.012365546, + -9.612963E-5, + 0.0032542006, + -0.006867072, + -0.04138439, + -0.0064206347, + -0.009652794, + -0.014486158, + -0.035363216, + 0.016660918, + 0.0047101295, + 0.028208945, + -0.016939562, + 0.017830376, + -0.014694177, + 4.4521096E-4, + -0.037197083, + -0.016698364, + -0.007428402, + -0.0014582371, + 0.017910153, + 0.009663243, + -0.0035431238, + -0.0011078303, + 0.015241337, + -0.0054994267, + 0.008276247, + 0.011289828, + 0.022973437, + -0.0064161313, + -0.009297085, + -8.442139E-4, + 0.01983162, + -0.008626996, + -0.011430229, + -0.010274391, + 0.029245842, + -0.008624928, + 0.03004844, + -0.011288425, + -4.910185E-4, + 0.011078833, + 0.014844199, + 0.00807819, + 0.0015316778, + 0.0052732085, + 0.01522785, + 0.02079638, + 7.65526E-5, + -0.004629105, + -0.0125612365, + 0.033849917, + 0.0043279417, + 0.0050651184, + 0.001610668, + 0.019059667, + -0.01999721, + -0.020597583, + -0.005807626, + -0.006547472, + -0.014856335, + 0.009110496, + -0.008503082, + -0.0062632915, + 0.008458007, + -0.028660882, + -0.015680937, + 0.006953559, + -0.012230551, + 0.002212174, + 0.018175693, + -0.0064040935, + -0.0047402317, + -0.016264498, + -0.018372385, + 0.006366606, + -0.0028235365, + -0.017975431, + -0.007465304, + 0.0073772273, + 0.0037317174, + -0.003328611, + 0.011533974, + 0.013552674, + 0.0046452107, + -0.010882587, + 0.012687748, + 0.010825294, + 0.008394006, + 0.016598325, + -0.037863247, + 0.00516105, + 0.0187491, + 0.001167383, + -0.037242122, + 0.026433075, + -0.019552875, + -0.007365652, + -0.025317566, + 0.02255004, + 0.0052872724, + -0.014897682, + 0.014582206, + 0.002713456, + 0.017801369, + 0.012763266, + 0.0063458877, + 0.0019432254, + 0.00368823, + -0.017645136, + 0.009160473, + 0.015317093, + 0.019749558, + 0.007369715, + 1.7923258E-4, + 0.00892959, + 0.01249516, + -0.0016536618, + 0.013398612, + -0.012011867, + 0.018973077, + -1.5517254E-4, + 3.8274602E-4, + -0.002808844, + -0.0021708899, + 0.013167397, + 6.7099737E-4, + -0.01741986, + -0.009467216, + -0.0056227697, + 0.0031327617, + -0.03275954, + -0.0016388916, + 0.020544901, + 0.0015670374, + -0.007782429, + 0.0017165798, + -0.03270464, + -9.919809E-4, + 0.0015192364, + -0.0032238082, + -0.011448435, + 0.01081412, + -0.01420569, + 0.013906253, + 0.014979452, + -0.015084257, + 0.03991958, + 0.012729867, + -0.007299663, + -0.0078101153, + -0.01733055, + 0.016303388, + -0.023241723, + -0.016150512, + 0.012505247, + 0.015563303, + -0.024838729, + -0.019267133, + 0.0151989255, + -0.019015882, + -0.009156631, + -0.026339894, + -0.012414848, + 0.0018180937, + -0.0019670066, + -0.0011973273, + 0.01950212, + -0.02724201, + 0.0020423995, + -4.562662E-4, + 0.007285153, + -0.021403907, + -0.024976006, + -0.013801746, + -0.019835, + -2.7233222E-4, + -0.005857514, + 0.0070145573, + 0.013220005, + 1.9415067E-5, + 0.0044137584, + -0.009895034, + -0.0259358, + 0.004936401, + 0.0055186925, + -0.012341667, + -0.015348211, + 0.009169698, + -0.015077535, + 0.0046650483, + -0.012199361, + 0.018177826, + 0.010651254, + 0.0049379356, + 0.025948284, + -0.0029451887, + -0.02246371, + -0.018267278, + -0.028219396, + 0.032620605, + 9.4760273E-4, + 0.013971127, + -0.007251345, + -0.0109146945, + -0.009280886, + -7.99402E-4, + 0.015107436, + 0.029644316, + 0.0031145262, + -0.00660323, + -0.0332172, + 0.025447866, + -0.006636984, + -0.011080389, + -0.027904503, + 0.023782142, + 0.0045871064, + 0.008331849, + -0.014565564, + 0.012109384, + 0.023138883, + -6.66389E-4, + -0.01396065, + -0.012208711, + -0.008848483, + -0.0051651485, + 0.005494025, + -0.020456033, + -0.009425021, + -0.014533502, + -0.014341909, + 0.006281774, + -0.03849179, + 0.017007563, + -0.030718287, + 0.012434511, + -0.0072535747, + 0.008663014, + -0.01684721, + 7.8777823E-4, + 0.0078060995, + 0.013894764, + 0.015274646, + 0.011176855, + -0.01802681, + -0.003949316, + -0.011822251, + 0.006444167, + -0.0127557535, + 0.0024766568, + -0.023939434, + -0.008610084, + -0.0060720034, + -0.029833281, + -0.01230911, + 9.4715186E-4, + 0.0013326949, + -0.011623312, + 0.017748192, + -0.001166409, + 0.03060657, + 0.0038470195, + 0.0011333611, + -0.016789086, + 0.043267984, + 0.021473475, + 0.001137578, + 0.008674582, + 0.008511843, + -0.0035782252, + -0.023395237, + 0.021765731, + -0.019416839, + -0.008104437, + -0.030160442, + -0.016702753, + -0.021483183, + -0.02030712, + -0.01455235, + -0.015087947, + 0.011116114, + -0.001476592, + -0.010882748, + -0.009257145, + -0.004967062, + 0.0045201457, + -0.023222974, + -0.008938553, + -0.006630678, + 0.004067297, + 0.011744792, + -0.025742078, + 0.02362501, + -0.01294765, + 0.01022657, + 0.004867912, + -0.0028198578, + -0.024891663, + 0.0024921503, + -0.009748731, + 0.019550085, + 0.015018694, + -0.019404583, + -0.0074622817, + -0.00548822, + -0.019013328, + -0.011600292, + 0.015610292, + 0.014093368, + 0.022044891, + -0.014853403, + -0.021356551, + 0.014287879, + 0.011269168, + -0.0010592636, + 0.009547459, + -0.0063792127, + -0.0022550705, + -0.0055846404, + -0.0330401, + 0.012052412, + 0.010650371, + 0.01936291, + -0.012434667, + -0.015854431, + 0.017756369, + 0.03503135, + 0.009462427, + -0.004343772, + -0.007797172, + -0.0146330455, + -0.01189716, + 0.039274618, + 0.017071437, + -0.009920317, + -0.010786372, + 0.014531897, + -0.021217221, + 0.012894227, + -0.005152373, + 0.013099863, + -0.0059774844, + -0.010801091, + -0.021675194, + -0.0266948, + 0.009063598, + 0.0065265624, + -0.021575024, + -0.005786795, + -0.0037560991, + 0.0031255519, + 0.017151348, + 0.0141508905, + -0.002122842, + 0.003847277, + 0.038163107, + -0.004104745, + 0.014612, + -0.013942206, + -0.0051602875, + -0.0018190816, + -0.046657972, + -0.0162464, + 0.003431318, + 0.007934801, + -0.012268483, + 0.01080862, + -0.010851991, + -0.012375827, + 0.02026933, + 4.4383915E-4, + 0.00355567, + 0.008332046, + -0.0070381546, + 0.01437473, + -0.0011458899, + 0.0062018386, + -0.0077127665, + 0.019303236, + -0.017054403, + -0.0075691286, + 0.0036832532, + 0.040355947, + -0.011665246, + -0.009479181, + -0.046701353, + 0.031204779, + 0.005579611, + 0.0037259483, + 9.0918876E-4, + -6.687094E-5, + 0.009729667, + -0.014800863, + -0.014897367, + 0.00873998, + 0.0035084197, + 0.0056646387, + -0.01607128, + -3.163021E-4, + 0.013107802, + -0.012882116, + 0.0077904314, + 0.00553465, + -0.024538707, + -0.014671695, + -0.057273295, + 0.003819406, + 0.012074034, + 0.0017179771, + 1.9153359E-4, + -0.013553284, + -0.0068354523, + 0.035873868, + 0.004949781, + 0.0133931395, + -0.0043587564, + 0.031175435, + 0.0029526486, + 0.013198891, + -0.001753353, + -0.0011575297, + -0.008189724, + 0.003491247, + -0.0033921138, + 0.012646052, + -0.01554926, + 0.0058737313, + 0.013875625, + 4.873524E-5, + 0.02924377, + -0.0050619384, + -0.012202368, + 0.0043790545, + 0.010505654, + -0.015156496, + -0.0068112942, + -0.004005527, + 0.011397283, + -0.0024264292, + -0.003446624, + 0.018215545, + -0.024512563, + 0.0011207288, + 0.010065328, + -0.023096442, + -0.002044109, + 0.0068991403, + 0.006015298, + 0.018068647, + -0.0030896475, + 0.0256282, + -0.0106179565, + 0.0072259833, + 4.4873872E-4, + 0.0031187544, + 0.0055657313, + 0.00282677, + -0.008507418, + -0.0040125623, + 0.020152668, + -0.012674202, + 0.012851508, + 0.0012732683, + 0.013513071, + -0.010452968, + 0.031349745, + -0.012580104, + 0.016703794, + 0.011052124, + 0.03073204, + 0.04204452, + -0.0024809635, + -0.00789639, + -0.008166237, + 0.029181268, + -0.008438728, + -0.0049700774, + -0.013233393, + -0.0016634981, + -0.034196213, + 0.010799412, + -0.009737921, + -0.031903856, + -0.032952275, + 0.02472773, + -0.0046022134, + 0.008657413, + -0.004425956, + 0.009098371, + -0.008790892, + 9.873643E-4, + -0.011126411, + -0.017473625, + -9.714853E-4, + 0.018046405, + 0.0057601044, + -7.3963567E-4, + 0.016486602, + 0.009182013, + -0.009701859, + 0.003273271, + 0.016565545, + -0.0054132678, + -0.016446538, + -4.8821713E-4, + 0.026876332, + -0.028893922, + -0.019642012, + 0.024682995, + -0.0034919945, + -0.0049071326, + 0.036237527, + 0.027711684, + 0.008017644, + -0.006077337, + -0.0077886092, + 0.0045500947, + 0.016344164, + -0.015193917, + 0.025151785, + -0.019469112, + -0.02451896, + 0.007813422, + -0.009499238, + -0.0053896173, + 0.017796814, + 0.011897627, + -0.0053927307, + -0.008937346, + -0.007272321, + 0.009777084, + -0.009006565, + 0.02829101, + -0.00836694, + 0.004723749, + -0.006597399, + -0.0023497725, + -0.016383342, + 0.009190157, + 0.004474561, + 0.0077028396, + -0.0023663505, + 0.024959518, + -0.017058088, + -0.0017724942, + -0.011249696, + -0.007914815, + -0.012501177, + -0.0011304762, + 0.005921781, + 0.02900922, + 0.008016106, + 0.010852693, + 0.019785376, + 0.00899973, + 0.0103347665, + 0.0063672443, + -0.0019074314, + -0.0031302483, + 0.0023085931, + -0.004964627, + -3.5864362E-4, + -0.0068826587, + -0.0112629505, + 0.027700689, + 0.016271986, + -0.028434947, + -0.0059583513, + 0.004894602, + 0.02578056, + -0.01004817, + 0.006794142, + 0.011029527, + 0.008616208, + 0.0027944406, + -0.0065946016, + 0.013528035, + -0.0077817338, + -0.0066754697, + 0.023552535, + 0.007680306, + -0.011188106, + -0.008080245, + -4.2079398E-4, + 0.01126975, + -0.0011123652, + 0.0017282639, + -0.014278064, + -0.014393982, + 0.0074904906, + -0.020193927, + 0.009603251, + 0.0039486247, + 0.009331843, + -7.746533E-4, + 0.0032397984, + 0.022091037, + 5.435392E-4, + 0.0010640064, + 0.018444099, + 0.014089703, + -0.005692854, + -0.009862675, + -0.023804655, + -0.0165452, + 0.018844793, + -0.009904702, + 0.0025313175, + -0.0089284405, + 0.008073966, + -0.0061971126, + 0.002714172, + -0.008429993, + -0.025569655, + -0.0067947516, + -0.028757015, + -0.017788308, + -0.013928295, + -0.008496603, + -0.015327995, + 0.020750528, + 0.012021939, + 0.00289609, + 0.001926887, + -8.2306867E-4, + -0.023758503, + -0.008260625, + -0.04726885, + -0.0058177128, + -0.0046930504, + -0.019988904, + -0.0115974415, + -0.00792441, + 0.011995748, + -0.0066648307, + 0.005952094, + 0.006636202, + -0.006780257, + -0.0059661474, + -0.017575597, + -0.012111747, + 0.0059844004, + 0.0027828233, + 0.016572375, + 0.0037854111, + -0.022419784, + -0.016532786, + 0.0018611513, + -0.0107605895, + 0.019184005, + -0.017113881, + 0.0037636517, + 0.023578705, + -0.008504541, + -0.0010201044, + -0.0012474295, + 0.016724102, + -0.009428846, + -0.0027348697, + -0.015419008, + -0.003241791, + -0.0018451647, + 0.003517574, + 0.0059169023, + 0.024095908, + -0.02202984, + 5.457764E-4, + 0.007161864, + 0.017705599, + -0.004013629, + -4.7151325E-4, + -0.0021421995, + 0.005628129, + 0.036690086, + -0.027638642, + -0.017086374, + 0.0055730706, + -0.004312809, + -0.010542008, + 0.020267941, + 0.011410576, + 0.012481421, + -0.007187419, + 6.800051E-4, + -0.03973449, + 0.013694391, + -0.016329523, + -0.01095018, + 0.0066781505, + -0.004309228, + 0.0027854666, + 0.009118191, + -0.0067436807, + -0.0230638, + 0.014798663, + 0.009252808, + -0.0014903751, + 0.008074081, + -0.008021784, + -5.34789E-4, + -0.0012801612, + -0.04193313, + -0.0024684153, + -0.008978057, + -0.0031596986, + -0.0028794738, + 0.01339752, + 0.0047007217, + -0.010937295, + -0.001840709, + -0.003963297, + -0.0084266225, + -0.00826388, + 0.027988255, + 0.027789913, + -0.02022708, + 0.012963352, + -0.00861371, + 0.00946527, + 0.0018218767, + 0.009055728, + -0.0018866848, + 0.011231547, + 0.017379655, + 0.0064809984, + 0.0021240497, + 0.0056478144, + 0.020477531, + -1.2929508E-4, + 0.0134460945, + -0.008023929, + 0.009688164, + -0.0030265073, + 0.004344875, + 0.021770965, + -0.0025428655, + 0.012174206, + -0.02157629, + -0.0087788645, + 0.007189056, + -0.012826586, + 0.011152791, + -0.025017904, + 0.009709615, + 0.0015883194, + 0.032523654, + 0.00448589, + 0.0046909065, + -0.027734542, + -0.043312363, + -0.0063767894, + 0.00606713, + 0.033424284, + -0.0017115513, + 0.029672861, + -0.0030980255, + 0.024167769, + 0.009239534, + 0.0031414197, + -0.0046831323, + -0.009453646, + -0.004699376, + -0.014805347, + -0.024192646, + 0.01840519, + -0.024810703, + -0.02578915, + 0.016745633, + 0.009174177, + -0.005385955, + -0.030907258, + -0.0046210275, + -0.0064942013, + 0.019634454, + 0.019146116, + -0.0033274128, + 7.257302E-4, + -0.0017061416, + -0.009655204, + -0.0029864889, + 0.0030631167, + -0.015534972, + 0.009106863, + 0.026354298, + 0.013284598, + 0.0076659317, + 0.0044301627, + -0.031017361, + -0.020244354, + 0.015983226, + -0.028012438, + 0.0035414265, + -0.0264683, + 0.03495784, + 0.018672332, + 0.013248727, + -0.009752791, + 0.0114216115, + 0.0017200098, + 0.023318848, + -0.00212222, + 0.014050204, + -0.0019021, + 0.020770378, + -0.011189624, + -0.010014971, + 0.010934673, + 0.019732302, + -0.0101727275, + -0.032457273, + 0.010961721, + -0.007066347, + 0.02043164, + -9.388415E-4, + 0.011635274, + -0.011030787, + -0.015781984, + 0.002367748, + -0.009698628, + 0.0077157672, + 0.0054062605, + 0.0170537, + 0.023883136, + 0.012730539, + -0.0054902392, + -0.0101232845, + -0.006541076, + -0.010584395, + -1.19011136E-4, + -0.0052584563, + 0.031643197, + 7.277951E-4, + -0.019778222, + 0.009900281, + -0.008061252, + -0.0028184461, + -0.0025920537, + 0.038345154, + -0.029872078, + 0.0029901383, + -0.0063128066, + 0.009352195, + 0.016850734, + -0.0032296106, + 0.007551749, + 0.010573124, + -0.004473081, + 0.0125996275, + -0.014248703, + 0.01924201, + -0.008712343, + -0.0155450385, + -0.0030303053, + 0.019180994, + -0.0050340137, + 0.030389942, + -0.005337889, + -0.013859625, + 0.01936954, + -0.027464839, + -0.017377477, + 0.025059596, + 0.0013845316, + -0.006316514, + -1.9524101E-4, + 0.02107703, + 0.019753624, + -0.008740537, + -0.004485527, + 0.019916732, + -0.023039378, + -0.005674918, + -0.0024558262, + 0.0045033777, + -0.0049823923, + 0.010856891, + 0.0037164127, + 8.876847E-4, + 4.6528544E-4, + 0.004818315, + 3.920818E-5, + -0.0022633988, + -0.0022502379, + -0.015278363, + 0.0016377885, + 0.027632784, + 0.0018959645, + 0.009423324, + -0.022333033, + -0.001073912, + -0.005683786, + -0.0040613804, + 0.013166089, + 0.0017048742, + -0.008885922, + -0.01531467, + -0.0078071, + 0.022646446, + 0.025582382, + 0.0030558957, + -0.007902016, + -0.019609023, + 0.008056491, + 4.1801675E-4, + 0.02072612, + 0.018449372, + 0.007636887, + -0.004399877, + 0.01681292, + 0.0068946593, + 0.008384204, + 5.9651633E-5, + 0.0022623395, + -0.012027267, + 0.024037331, + 0.023917668, + 0.008743087, + 0.003221632, + -0.0034071472, + 0.030993499, + -5.843496E-4, + 0.0049720486, + -0.002015225, + -0.0309834, + 0.021543743, + -0.02390038, + 0.017578442, + -0.044899642, + 0.0055521, + -0.0129643865, + -0.0010984725, + 0.0051184343, + -0.0050481623, + 0.0034094623, + -0.012506514, + -0.008757407, + 0.007390911, + 0.0066762813, + 0.019061735, + -0.04519852, + 0.018298924, + -0.002764251, + -0.007853981, + 0.0661572, + -0.0092386855, + 0.03613424, + -0.02171847, + -0.028596148, + -0.0020436062, + -0.0017526738, + 0.008625105, + -0.0019020031, + -0.0031581202, + 0.002977034, + 0.016140603, + 0.01917935, + 0.006023732, + -0.021144174, + 0.011031993, + 0.001769396, + 0.0013319381, + 0.009396664, + -0.0068567684, + -0.020173563, + 0.016822407, + 0.007489929, + 0.024327297, + 0.012708235, + 0.02809615, + -0.022919996, + -0.015749117, + 0.015689936, + 0.009433202, + 0.023132352, + -0.027801897, + 0.031994175, + 0.0015904295, + -0.0059846463, + -0.007127883, + 0.027579088, + 0.02034543, + 0.0034723144, + -0.008607977, + 0.0061922045, + 0.025936035, + 0.0032123628, + -0.014605735, + -0.0041900924, + 0.00377741, + -0.0025562048, + 0.01254454, + 3.7845384E-5, + 0.0069682337, + -0.020418877, + 0.003548326, + 0.05768111, + 0.022313455, + -0.0036019299, + -0.01149925, + -0.011834948, + -0.0042699864, + -0.028846785, + 0.02461929, + -0.006290961, + 0.00922721, + 0.010243923, + 0.023818377, + -0.008394825, + -0.014925877, + -0.016715407, + 0.015669739, + -0.0063215853, + 1.8349115E-4, + -0.004767196, + -0.013868818, + 0.0010085389, + 0.021732723, + -0.0043009487, + 0.0027964273, + 9.1217214E-4, + -0.020584298, + 0.017075375, + -0.010204965, + 0.007903059, + -0.012331004, + 0.008360827, + 0.0174618, + -0.023760838, + 0.008047389, + -0.0061768126, + 4.2469037E-4, + -9.326991E-4, + -4.8216732E-4, + -0.006413673, + -0.01301711, + 0.021967696, + -0.006148946, + -0.030504486, + 0.009103391, + 0.005717287, + 0.015180882, + -0.02068464, + 0.009670476, + 0.010933756, + 0.02121712, + -0.008209584, + 0.0077420697, + -0.01356901, + 0.0067281267, + -0.005693793, + -0.007343232, + 0.014217569, + 0.011108694, + 0.024498213, + 0.0069269594, + -0.024987683, + 0.024392325, + 0.012571142, + -0.03036327, + -0.012098481, + -0.008089549, + -0.01736806, + 0.010596569, + -0.010955928, + 0.009342032, + -0.0030952115, + 0.013654591, + 0.0074232337, + -0.019165814, + -0.0170847, + 0.013641276, + 0.015531092, + -0.023978608, + -0.008717767, + -0.015329744, + -0.00777589, + 0.013768086, + 0.006255892, + 0.013149296, + 0.005684204, + 1.7168354E-4, + -0.023987874, + -0.009047955, + -6.2528974E-4, + -3.5297958E-4, + 0.0012890655, + 0.01549382, + 0.0012336469, + -0.0039974544, + 0.020437138, + -0.0032290819, + -0.006968205, + -0.0195604, + -0.0024612548, + 0.0036778254, + -0.0018888875, + -0.008403782, + -0.0063332226, + -0.0048225336, + -0.01466373, + 0.0049376804, + -0.020510713, + 0.03046167, + 0.007980085, + -0.0025268397, + 0.016635861, + -0.0033048182, + 0.013411961, + 0.0063230316, + 0.0087253675, + 0.02198839, + -1.5295048E-4, + -0.027822131, + 0.016198214, + 0.028780809, + 0.0072483765, + -0.036038112, + -0.0015789057, + 0.019070817, + 0.015732931, + -0.015890973, + -0.022496095, + 0.0030776754, + -0.004287333, + -0.008037712, + 0.012020468, + -0.03472475, + -0.0074916906, + 0.0025967488, + 0.0021663804, + 0.018717801, + 0.014640779, + 0.0075892867, + -0.0011913609, + 0.0018398733, + 0.0011765328, + -0.0074495007, + 0.006320773, + -0.031630192, + -0.020228744, + 0.0045450656, + 0.041122742, + 0.0024865582, + 0.00773142, + 0.01561216, + -0.0024945806, + 0.019742042, + -0.008722112, + -0.006322739, + 0.0130563425, + -0.003698672, + 0.03255148, + -0.0011102135, + 0.0015212718, + -0.013277231, + 2.6203244E-4, + -0.0014221165, + 0.0037931683, + -0.03625045, + -0.0067125494, + -6.6528836E-4, + 0.002791153, + -0.0023336469, + -0.02060167, + 0.017576309, + -0.0014462029, + 0.006470619, + -0.027570205, + -0.0053610946, + -0.0054957615, + -0.004409948, + 0.0023443364, + -0.01098652, + 0.019494904, + -0.01369556, + -0.044811647, + -2.47188E-4, + -0.013691628, + -0.021000749, + -0.016511317, + 0.0044982573, + -0.027572548, + 0.010685472, + 0.010197991, + -0.035790052, + -0.015405897, + 0.0112686595, + -0.023392018, + -0.004775597, + 0.012409564, + -0.0038174975, + -0.029684713, + -0.019327173, + -0.0065594525, + -0.0013457768, + 0.02878973, + -0.0015568326, + 0.022435464, + 0.0062575033, + 0.012848444, + -0.018576548, + -0.00155272, + 1.4039205E-4, + -0.017768342, + 0.021904109, + 0.02268615, + -0.032418363, + -0.010835878, + -0.022997439, + 0.03850712, + -0.011999359, + -0.004295968, + 0.0057502547, + 0.01078576, + 0.010923822, + -0.040037747, + -0.009854775, + -0.0033103044, + -0.026668396, + -0.03381318, + 0.002292099, + 0.017979797, + -0.036779255, + 0.004786665, + -0.033232134, + -0.0030542363, + 0.028901542, + -0.0067416746, + 0.014196262, + 0.02140542, + -0.01079922, + -0.014695391, + 0.0036281915, + -0.004273851, + -0.016044023, + -0.0023506647, + -3.1179705E-4, + 0.010132197, + -0.007860467, + 0.0055515794, + 0.018445102, + -0.030945644, + -0.0040087816, + 0.019489363, + -0.0021388324, + -0.01741977, + -0.016608592, + -0.011050813, + -0.0055461554, + -3.8444085E-4, + -0.0051910365, + -0.020150574, + 0.010332258, + -0.007748405, + 0.050782137, + 0.008311659, + 0.0096617695, + 0.013375661, + 0.008832818, + 0.019467209, + -0.0025839452, + 0.010929663, + -0.02459471, + -0.004748166, + 0.014271926, + -0.0033514928, + -0.028726295, + -0.010080818, + 0.007546885, + 0.009158033, + 0.007098656, + 0.0065392246, + -0.020951798, + -0.024538321, + 7.3269324E-4, + -0.011498937, + 0.015578563, + -0.010328579, + -0.010464472, + -0.011202488, + -0.022524823, + -0.036134798, + 0.014821143, + 0.024715107, + -0.035843186, + 0.031691913, + 0.011099746, + 0.009458101, + 0.013748443, + 0.007185211, + -0.030032318, + -0.0032922062, + -0.002617843, + -0.03139878, + 2.8015414E-4, + 0.008441961, + -0.004922211, + 0.0041637984, + -0.013231167, + -0.019889086, + -0.030715145, + -0.014091008, + -0.015136332, + 0.009794518, + -0.002840011, + -0.0075723105, + 0.008928272, + -0.001546027, + -0.0046337424, + -0.01858907, + 0.013742299, + 0.003459314, + 0.0058538234, + -0.0048261667, + 0.0071926597, + 0.0119797345, + -0.010324803, + 0.018866336, + -0.01290306, + -0.0065745222, + -0.02741405, + 0.030632975, + -0.014711487, + -0.0088529205, + 0.008636484, + 0.009198447, + 0.014033732, + 0.0075290953, + 0.0015689024, + -0.011473674, + 0.014022283, + 0.015877414, + -0.0140805375, + -0.008248097, + -0.008748006, + 0.015960913, + 0.0025340305, + -0.018344222, + -0.0041783312, + 0.009012029, + 0.0042248364, + -0.009820412, + 0.034976795, + 6.206792E-5, + -0.0039577074, + 1.8616985E-5, + -0.0043728277, + -0.0019125731, + 0.006023994, + 0.0041640275, + 0.046903305, + -0.00738533, + -0.01023612, + -0.0149399545, + -0.0025930777, + 0.013661981, + -0.013177462, + -0.0034179748, + 0.013434808, + 0.01988223, + 0.02886437, + -0.007956696, + -0.006482374, + 0.02201937, + -0.0016230093, + -0.009286108, + -0.0046425783, + -0.005169361, + 0.0027932848, + 0.020170126, + 0.021752406, + -0.020170528, + -0.021808058, + -0.010161093, + -0.00878183, + 0.024085043, + 0.0041003865, + -0.013007451, + -0.021008668, + -0.019735714, + 0.018656785, + 0.02285748, + 0.0068721226, + -0.016817333, + -0.0125022475, + -0.0019210288, + 0.040290065, + -0.0042078504, + -0.0021797349, + -0.0049178298, + -0.01565437, + -0.030322827, + 0.017352015, + -0.006045138, + 0.023218548, + 0.023408046, + -0.0014101482, + 0.0054972777, + 0.023849353, + 0.0066075902, + -0.036275595, + 0.0017727454, + 0.024560533, + -0.015742822, + -0.02560263, + 0.0066662766, + 0.028918864, + -0.0045981323, + -3.9997796E-4, + -0.015803225, + -0.013741957, + -0.02029449, + -0.021665568, + -0.007935686, + 0.004435307, + 0.03495766, + -0.008642243, + 0.0116677685, + -0.010462207, + 0.011204722, + 0.014007767, + -0.016664237, + -0.012759148, + 0.033137284, + 0.02316878, + -0.031267952, + 0.0040608253, + 0.01795774, + -0.0061971294, + 0.0048152767, + 0.019846508, + -0.026130795, + 0.0075345053, + -0.011213973, + -0.0075214757, + -2.5363034E-4, + -0.014339444, + 0.012755991, + 0.032648623, + 0.0034273057, + 0.0065944754, + 3.2989963E-4, + -0.00235906, + -0.023002498, + 0.0053811544, + 0.027901217, + 0.0026747577, + 0.016566651, + 0.013892564, + 0.0011289938, + 0.015148833, + 0.01139158, + 0.026936656, + -0.014735897, + -0.0028137777, + -0.038413342, + 0.014392023, + 0.026552668, + -0.0057146396, + 0.012726035, + 0.011408824, + -0.006368006, + 0.022248691, + -0.01478188, + -0.004365995, + 0.008619795, + -0.0074486886, + 0.019913187, + -0.01963456, + 0.007433709, + 0.022719307, + 0.007020464, + -0.009193339, + 0.012145133, + 0.008398869, + 0.0015991587, + 0.009468864, + -0.016316323, + -0.014356257, + -0.004641771, + -0.0034008997, + 0.014725479, + 0.0011207866, + 0.008345506, + -0.025550202, + 0.012379507, + 0.009193802, + -0.0024138924, + -0.02166465, + -0.003177905, + -0.0026262435, + 0.0051285625, + -0.018247897, + 0.0020201053, + -0.018754551, + -0.014542625, + -0.009582696, + 0.01577279, + 6.1940454E-4, + 0.030060291, + -0.0067535965, + 0.0049434323, + 0.012458607, + 0.025444517, + -0.0047973236, + 0.006992994, + 0.0017078156, + -8.939771E-4, + -0.004725484, + 0.016857885, + -0.002315499, + 0.0028098112, + -0.007589976, + -0.011966345, + -0.00488816, + 0.010188613, + -0.021251144, + -0.014857272, + -0.011208127, + -0.0032832078, + -0.01909312, + -0.0012366571, + 0.008153187, + 0.01194848, + 0.0059355507, + -0.00665224, + 0.014450498, + -0.0077846167, + -0.002995848, + 0.036225546, + 0.015799178, + -0.0061805667, + 0.020050297, + 0.015173075, + -0.015477672, + 0.026218148, + 0.01505412, + -0.030287312, + 0.0068183774, + 0.040172927, + 0.0035254157, + 0.006904168, + 0.018645737, + -0.004917845, + -0.012833203, + 0.01968365, + -0.01100882, + -0.0074011106, + -0.0056516444, + 0.012890717, + 0.0153595675, + 0.037735038, + 0.02214976, + -6.569887E-4, + -0.0046291435, + -0.006222725, + 0.019744778, + -0.006110801, + -5.908728E-4, + 0.0028553128, + 0.034883182, + -0.009698198, + 0.0066337017, + -0.017896485, + 0.0076823733, + -0.0028256369, + 0.021231351, + -0.012848053, + -0.01745887, + -0.005246347, + -0.029633801, + 0.011685461, + -0.0023042771, + -0.006405363, + 0.025408512, + 0.0059698774, + 0.0042675976, + 0.01770244, + -0.018062275, + 0.0027421499, + 0.01656016, + 0.0044498206, + -0.0036121572, + 0.008737389, + 0.0014663179, + -0.023640674, + 0.0060597314, + 0.011369495, + 0.028904453, + -0.009043048, + 0.019192684, + 0.0014836164, + -0.007364604, + 0.0040043737, + -0.0037699672, + 0.0080940025, + 0.019709097, + -0.010420952, + 9.005112E-4, + 0.011885095, + 0.004241407, + 0.025260596, + -0.019784, + 0.0074410504, + -0.01667943, + 0.015808016, + -0.0066883825, + -0.0058297375, + 0.014778836, + -0.027531901, + 0.036027938, + 0.02364575, + 0.005379801, + 0.015236894, + 0.02497463, + 0.014338034, + 0.004010505, + 0.0038811676, + -0.009141487, + -0.015617602, + -0.003146367, + 0.01080935, + 0.0043146764, + 0.008365338, + 0.05837564, + 0.0023486998, + 0.010210915, + -0.017336145, + -0.0010930627, + -0.014069317, + 0.017784795, + 0.0021276074, + 0.017624827, + 0.006790273, + 0.016850054, + 0.016928649, + 0.016588924, + -0.029408084, + 0.0052019013, + -0.0023905372, + -0.011317073, + -0.0059276125, + -0.03803449, + 0.0015965982, + -0.029593907, + 0.0057587335, + -0.009783146, + -0.0017162362, + -0.0019500406, + -0.021900496, + 0.007944305, + -0.015569916, + 0.0287906, + -0.010956152, + -0.008493076, + -0.011386101, + 5.842568E-5, + 0.008304427, + 0.009359341, + 0.002161933, + -0.011789576, + -0.008055679, + -0.009814484, + 0.0023882934, + 0.011322513, + 0.022748845, + -0.0135965515, + 0.034959633, + 0.028499784, + 0.022823589, + -0.0053240964, + -0.0064539784, + -0.012322336, + -6.839229E-4, + 0.016409712, + 0.01551286, + -0.01004425, + 0.0024965934, + 0.014920378, + -0.017875446, + 0.009151927, + -0.0035437713, + -8.9700817E-4, + -0.008723395, + -0.016554207, + 0.0037008023, + 0.0015522147, + 0.0065191262, + 0.0028892267, + -0.021750072, + -0.031149035, + -0.012174743, + -0.028873214, + -0.008663565, + -0.01656182, + 6.7304E-4, + 0.027085226, + 0.019310838, + 0.01369626, + 0.01040142, + -0.018875087, + 0.017692748, + -0.004816985, + 0.0013031039, + 0.0014410799, + 0.012447958, + -6.148959E-4, + -0.003654195, + -0.023239972, + 0.008505569, + -0.008122149, + 0.0033253324, + -0.0050450107, + -0.006994623, + 0.027400194, + 0.015131512, + -0.0023137217, + -0.011914275, + -0.019347746, + 0.015269356, + 0.019002158, + 0.004429059, + -0.017021727, + 0.001236492, + -0.02265237, + 0.016492162, + 0.017089806, + -0.024710663, + 0.013312217, + 0.030240992, + -0.041294686, + 0.002305377, + 0.017198477, + -0.004538284, + 1.0483014E-4, + 0.003224653, + -0.02656607, + 0.019308778, + 9.5514825E-4, + -0.03258, + 0.01840048, + 0.008058097, + 0.0070051346, + -0.010481296, + 0.003832756, + 0.0079968, + 0.010546702, + -0.014683845, + -0.032004215, + -0.002363039, + 0.0068256985, + -0.006695705, + 0.0056527695, + -0.006520873, + 0.006716996, + -0.004382348, + 0.01836605, + 0.0461336, + -0.018961169, + -0.024658598, + 0.005159157, + -0.0023317316, + 0.010198291, + 3.7697417E-4, + -0.026195694, + -0.0036592328, + 0.009616918, + -0.010461268, + 3.3769317E-4, + 0.007814768, + 0.051652186, + 0.0033536046, + 0.04583229, + 0.01660366, + 0.020336628, + -0.002970499, + 0.014724242, + 0.013671529, + -0.013170619, + 0.0061567184, + -0.01780746, + -0.012862552, + -5.725523E-4, + -0.017708348, + -0.017595395, + -0.005342571, + 0.011840618, + -8.0662436E-4, + -0.0052785906, + 0.002393164, + -0.013055463, + 0.021964941, + 0.004683485, + -0.030797161, + 0.010653906, + 0.011279807, + -0.013973699, + -0.005722629, + -0.016086278, + -0.014931895, + -0.012010737, + 0.004088051, + 0.0034681985, + -0.02154281, + -0.0136184655, + -0.0056805657, + -0.003917571, + 0.030723983, + -0.015867991, + 0.0034195834, + -9.888188E-4, + -0.025170129, + -0.015602113, + 0.010595579, + -4.9399293E-4, + -0.018944195, + -0.010138012, + 0.01411645, + 0.015200679, + 0.0030087351, + -4.915599E-4, + -0.020434536, + -0.011221205, + 0.016428253, + 0.015777806, + -0.0011587697, + 0.0060383207, + 0.023929823, + 0.0041453773, + -0.011898154, + 0.0047054477, + -0.0055088555, + -0.018908955, + 0.005730623, + 0.018810743, + 0.005774579, + -0.013585985, + 0.016917573, + -0.011864181, + 0.0038635044, + -0.013587939, + -0.00800216, + 0.003744064, + 0.0069380775, + 0.011742564, + -0.00902505, + -0.0045761154, + 0.0018729118, + -0.0022059039, + -0.008269529, + -0.019877082, + -0.017013516, + 0.0062068347, + 0.003002118, + 0.022349067, + 1.68604E-4, + 0.016051931, + -0.011299585, + 0.021637049, + -0.027742974, + 0.0123399, + 5.9784116E-4, + -0.026840532, + -0.015074886, + 0.0073963995, + 0.0075249257, + 0.015316778, + -0.016150853, + -0.008495793, + 0.010092071, + -0.0062154806, + 0.009937612, + -0.017064337, + -0.012642957, + -0.045659054, + -0.0019260569, + -0.0021336204, + -0.017796194, + -0.019357404, + 0.0044451333, + 0.026511561, + -0.0071482942, + -5.677378E-4, + 0.020638362, + -0.014030478, + 1.8051438E-4, + -0.015043035, + -0.013472015, + -0.00409332, + 4.884497E-4, + -0.008083268, + -0.010546882, + 0.00295663, + -0.006163918, + -0.0010805198, + -0.009900714, + -0.022171246, + -0.015876777, + 0.007369273, + -8.5840264E-4, + -0.0014398491, + 0.02089324, + 0.0062025134, + 0.015759576, + -0.002040785, + -0.03193618, + -0.012561873, + 0.012247476, + -0.020854747, + -0.03323532, + -7.2673516E-4, + -0.008324139, + 0.0012585839, + 0.007918939, + 0.009137219, + 0.024563154, + 0.003390307, + -0.015144016, + -0.022243764, + -0.0013107224, + 0.023980616, + -0.005227927, + 0.008577141, + 0.005568053, + 0.003948805, + 0.016849998, + -0.01329086, + -0.019079851, + -0.021328894, + 0.01092228, + -0.020016305, + -0.0044142674, + -0.0011810745, + -0.0093738595, + 0.008429628, + 0.0063104136, + -0.0062252525, + -0.0031060807, + 0.00112736, + 2.0991676E-4, + 0.0056098294, + -0.008459588, + -0.028480668, + -0.005345791, + -0.015529785, + -0.011962033, + -0.016355038, + -0.011253648, + -0.029296663, + -0.0010570753, + 0.0023754928, + 0.0013260408, + -6.482337E-4, + -0.019090772, + 0.0068232333, + -0.01215349, + 0.0021330966, + 0.013701556, + 0.009252885, + -0.0014098411, + 0.017559227, + 0.005592184, + -0.0146501195, + -0.005245882, + 0.0032161893, + -0.0066478914, + -0.013586079, + 0.022029959, + -4.80941E-4, + -0.0072035366, + -0.00523388, + 0.022253342, + -0.013994108, + -0.01562024, + 0.010106857, + -3.24561E-4, + 0.011729449, + 0.009875848, + 0.003050846, + 0.008785549, + 0.021613218, + 8.1457733E-4, + 0.0021997718, + 0.020474948, + -0.0020253556, + -0.012501912, + -0.021252496, + 0.0028576246, + 0.0069228606, + 0.017528748, + 1.2381375E-4, + 0.0047859754, + 0.011176308, + -0.009468274, + -0.023490047, + -0.00224303, + -0.017209552, + 0.018081894, + -0.016735235, + -0.02107216, + -0.03602883, + -0.013528074, + -0.019185036, + -0.020319676, + -0.0013199743, + -0.0038303705, + -0.015303301, + 0.033639602, + 0.0093913525, + -0.036710195, + 0.014318784, + -0.005912755, + 0.018611396, + 9.736368E-5, + -0.007688881, + -0.0015348406, + 0.02100089, + 0.010533674, + 0.0063187, + -0.024826419, + 0.015463139, + 0.009922441, + 0.012180187, + -2.9106103E-4, + -0.011780829, + 4.5155603E-4, + -0.020120533, + -0.025054464, + 0.004941694, + 0.009511093, + -0.032188676, + 0.01244906, + -7.087056E-4, + 0.0040306235, + 0.01089446, + -0.013272263, + 0.018071268, + -0.018212289, + -1.2992913E-4, + -0.0072408053, + -0.01443579, + 0.011440002, + 0.01592321, + 0.005547748, + -0.016809165, + 0.037660923, + -0.0200164, + 0.0012086243, + -0.003616542, + 0.015028336, + -0.0032916325, + -0.013901476, + 0.0077688117, + -0.008801599, + -0.017972566, + -0.005391984, + -0.010144444, + -0.014018097, + 0.014297575, + 0.0030852193, + 0.022757638, + 0.008208492, + -0.032561257, + -0.012941845, + -0.017048743, + 0.004991705, + 0.017470162, + 0.017598476, + 0.01578826, + -0.00529742, + 0.009240701, + -0.007669004, + 0.0033340913, + 0.0076957634, + 0.00842592, + 0.027093422, + 0.045148067, + 0.0038645118, + 0.013362389, + 0.016683102, + -0.01189623, + -0.019576013, + -0.018205881, + 0.023302801, + 0.025856761, + 0.0031264196, + 0.018816913, + 0.042475685, + -0.014934777, + 0.0052119847, + -0.0018667699, + -0.011461965, + 5.908944E-4, + 0.022594268, + 0.01355099, + 0.0017103623, + 0.01383703, + -0.009542738, + -0.0033808043, + 0.0026435894, + 0.009438282, + 0.010204334, + 0.0037752942, + 0.0068542105, + 0.0062626237, + -0.021318726, + -0.0221989, + 0.015481568, + -0.001111984, + -0.022537503, + 0.0076161698, + 0.03351957, + -0.004516107, + 0.009566022, + 0.009500082, + 0.023387747, + -0.003880503, + -0.017528607, + -0.010657966, + 0.032395102, + -0.017186936, + -0.0022056296, + 0.018002883, + -0.012296798, + -0.0043888525, + 0.005730078, + 0.008381441, + 0.0045385226, + -6.610786E-4, + 8.9210276E-5, + 0.012358506, + -0.012888867, + 0.0071874456, + -0.0065341825, + -0.0061319554, + -0.008989008, + 0.02139569, + 0.006130691, + 0.019699167, + -0.0065546487, + 0.019386068, + 0.015607653, + -0.016445188, + -6.8031705E-4, + 0.02978467, + -0.0020999876, + 0.0068417415, + 0.004495513, + -0.018886134, + 0.01881684, + 0.022559626, + -0.008586231, + -0.026324576, + -0.0041667125, + -0.0066743395, + -0.026585352, + 0.020955194, + 0.020542568, + 0.02574947, + 0.029784944, + 0.0029098568, + -0.0060642753, + -0.007400506, + 0.025150886, + -0.0056920713, + -0.014518875, + 0.0033462637, + -0.011072459, + -0.016667157, + -0.015982393, + -0.0075421045, + 0.012610311, + -0.0046179444, + 0.0051822937, + 0.042313505, + -0.019885872, + 0.0043591917, + 0.008846678, + -0.039613135, + -0.025448382, + -0.011091731, + -0.0024328197, + 0.0068852236, + -0.0071082585, + 0.016678715, + 0.029828211, + 0.003075664, + 0.008390447, + 0.016573528, + 0.01963283, + 0.008036549, + 0.027626988, + 0.0104332315, + -0.010827085, + 0.0072862455, + 0.019040322, + 0.01604493, + 0.030903704, + 0.0068377494, + -0.015851995, + -0.011586165, + -0.03935805, + -0.009906987, + 0.0052444334, + 0.0013795899, + 0.005023526, + 0.0033166262, + 0.017965235, + -0.017526172, + -0.04657156, + -0.007624646, + 0.027471948, + -0.0035918697, + 0.01156438, + -0.025172237, + -0.014337064, + -0.003722682, + 0.005742627, + -0.014718949, + 0.0014885868, + -0.025948303, + -0.020189008, + -0.02489381, + -0.012690449, + -0.024182074, + 0.011062612, + -0.011851501, + 0.0019388945, + 0.0014150487, + 0.007255316, + -0.009213575, + 0.014803378, + -0.0022730932, + -0.0037811098, + 0.013583699, + -0.015837085, + -0.0035996425, + -0.0027851306, + -0.0018832556, + -0.0026688238, + -0.030094633, + 0.012848573, + 0.026442144, + 0.0059422404, + 0.018018024, + 0.008704067, + 0.003997164, + 0.008406361, + 0.011846531, + -4.0965353E-4, + 0.011027719, + 0.023202663, + 0.00718987, + -0.018295141, + 0.020685347, + -0.01765627, + 0.0038680588, + -0.025831314, + 0.0029071101, + 0.003756198, + 0.045566387, + -0.029479412, + -0.023419954, + 0.019542288, + 0.036235645, + -0.008010127, + -0.009856542, + 0.03178374, + -0.0033497787, + -0.013101866, + -3.8360388E-4, + 0.020615958, + 0.004982579, + 0.010686586, + 0.0018171866, + 0.009110309, + -0.02575787, + 0.01832021, + -0.012244038, + 0.0164482, + 0.0069838795, + -0.026153848, + -0.0088707125, + -0.016798744, + 0.012508528, + 9.193191E-4, + 0.036769684, + 0.008742002, + 4.836722E-4, + 0.02487766, + 0.009193384, + -0.011094468, + -4.4765457E-4, + -0.031974547, + 0.029780375, + -0.019486811, + -0.005476982, + -7.627387E-4, + -0.030553607, + -0.012933439, + -0.019068198, + 0.049823172, + -0.040754784, + 0.030903725, + 0.006112586, + -0.017813375, + 0.0021249922, + 0.029370656, + 0.031263236, + 0.027122809, + 0.0049860394, + 0.013100003, + 0.023428194, + -0.010183438, + 0.012762739, + 0.01092962, + -0.019656822, + 0.0035968192, + -0.02567879, + 0.009762051, + -0.017087225, + 0.035738207, + 0.018060705, + -0.015984334, + 0.023811134, + 0.004295717, + 0.015893571, + 0.035371095, + 0.010259691, + -0.02529554, + -0.005284326, + -0.008096066, + 0.0024551945, + -0.00770257, + -0.013668948, + 0.0047409465, + 0.012862556, + 0.007493324, + 0.02228323, + -0.023582174, + 0.022838136, + -0.007776513, + 0.0254309, + -0.0143115595, + 0.0074754106, + -0.0024499034, + -0.010000424, + -0.0010035514, + 0.041366898, + 0.032971933, + -0.009346434, + -0.018486759, + 0.0021787877, + 1.386275E-4, + 0.015408226, + -4.59737E-4, + 0.022060812, + -5.071751E-4, + 0.005409937, + -0.022821669, + 0.0045255735, + 0.012897626, + -0.0011430539, + 0.014663913, + -0.0069299443, + 0.0077272328, + -0.004054895, + 0.002823037, + 0.023214422, + 0.0070991046, + 4.5002307E-4, + 0.0041192635, + 0.015656376, + -0.011137508, + 0.014062133, + -0.011337734, + 0.0035304988, + -0.012759836, + 0.012462755, + -0.0030591036, + -0.025026282, + -0.019434182, + -0.0016711298, + 2.0031675E-4, + 0.0025923296, + 0.0070730024, + -0.0014504197, + -0.019124702, + -0.0045912703, + -0.02437215, + 0.012878028, + 0.015624818, + 0.0018450703, + -0.0052491357, + 0.009937189, + -0.006651723, + 0.0050636386, + 0.00725487, + 0.0023392653 ], - "paletteEmbedding": [ - 0.009752077, 0.03969416, 0.014847501, -0.012412062, 0.017825797, - -0.033435117, 0.05389819, 0.0065882187, 0.03640453, -0.02466419, - -0.004591962, 0.025105314, 0.009248078, -0.02922891, 0.0032800697, - 0.003534641, 0.061780713, -0.022208566, 0.001780144, -0.0130787045, - -0.038308043, -0.063985996, -0.014984881, 0.010458046, 0.032833256, - -0.04666373, 0.014964049, 0.023357365, 0.029018436, -0.022168545, - -0.023019182, 0.034986872, 0.019829428, 0.024972187, 0.03457998, - -0.03799923, 0.012254333, -0.03324311, -0.022753991, 0.0046674293, - -0.003625963, 0.034861006, -0.00849423, -0.021219432, 0.017033868, - 0.012559118, 0.0037805615, 0.008468131, 0.013745194, -0.054029185, - 0.027139056, 0.0058465675, 0.017314378, -0.02194255, -0.023156917, - -0.015533953, -0.03954043, 0.032285504, 0.024134496, 0.01869659, - 0.01944881, -0.008214115, -0.04775227, -0.032355793, -0.05770193, - 0.04554412, 0.030753199, -0.042150676, 0.056661386, 2.0768006e-4, - 0.019846894, 0.015800832, -0.06081291, -0.07302826, -0.002174656, - 0.08311955, 0.06844478, 0.008504356, -0.019101465, 0.0033055162, - 0.04131333, 0.0058020554, 0.03415541, -0.040725864, -0.044474095, - -0.009799772, 0.009562047, -0.0062780664, 0.014724897, -0.057055045, - -0.011294231, -0.016582418, -0.008906277, 0.0023724788, 0.00216306, - 0.055164225, 0.002853548, 0.052893233, 0.027061624, -0.0075119706, - -0.0013569454, -0.028416714, -0.005072282, 0.0021393553, 0.022514427, - -0.013032908, 0.013590672, -0.016115846, -0.019497687, 0.04465777, - -0.008971117, -0.03257806, 0.015229634, 0.04373265, 8.0199726e-4, - -0.018370118, 0.048980024, -0.022953201, 0.0027267651, 0.036289483, - -0.005625296, 0.0046024728, -0.019280504, -0.033958044, -0.00813603, - -0.010013789, 0.019762333, 0.08097175, 0.016053207, -0.017106097, - 0.01043303, -0.01605772, 0.0608874, -0.008954326, -0.017865885, - -0.030693771, 0.027942155, -0.025835177, 0.014066853, 0.02595861, - -0.05015148, -0.012207153, 0.010248674, 0.0056941877, 0.059437558, - -0.049231667, 0.012340398, 0.006201209, 0.0043520727, 5.2550426e-5, - 0.022610636, 0.018071821, -0.038583744, -0.054763604, 0.025098136, - -0.039786242, -0.004218422, 0.0653965, -0.012738014, 0.020497568, - 0.079091236, -0.02219873, -0.0065633003, 0.025358224, -0.021088006, - 0.004981807, 0.029084967, -0.010519614, -0.0122965975, 0.046121772, - -0.02973932, 3.7222897e-5, 0.016589303, 0.0076559894, -0.039240748, - -0.020285241, -0.06642255, -0.020643018, -0.02667045, 0.011559146, - -0.050182402, 0.01192809, -0.028682273, -0.026177913, 6.738914e-4, - -0.009599616, 0.009708321, -0.054385126, -0.007479043, -0.051703896, - 0.0594639, 0.046006877, -0.04601089, 0.017756797, 0.008663792, - -0.029125944, 0.045489974, 0.030165717, -0.06265173, 0.014474858, - 0.08763796, 0.038950652, 0.0056779017, -0.02440002, 0.07161806, - -0.0340871, 0.06885641, 0.018828921, 0.059618067, 0.0014403998, - -0.0039360784, 0.0015224024, -0.024265125, -0.012121731, 0.0065658395, - 0.06456487, 0.01668731, 0.053331997, -0.06459697, 0.044441298, - 0.036001403, -0.018254539, -0.009168799, 2.3447501e-4, 0.006566799, - -0.09814344, 0.050659128, 0.024392426, 0.06992371, 0.019824412, - -0.03225226, 0.008395304, -0.006583713, -0.014777868, 0.061349, - 0.0133660855, -0.03796184, -0.05834587, 0.02050369, -4.3098838e-4, - 0.02048852, -0.02627691, -0.016445298, -0.018891336, -0.046705637, - -0.047024675, 0.022616949, -0.05794159, 0.03309694, -0.009555922, - -0.008350316, 0.058004476, 0.039662786, -0.01859337, 0.012545297, - -0.002706517, 0.041270886, 0.021632684, 0.024720704, 0.006245551, - -0.03681643, -0.05095729, 0.0040560374, -0.028258983, 0.031343915, - -0.014251751, -0.03936788, 0.035607755, -0.026239192, -0.036374778, - 0.007528759, -0.047594164, 0.01864533, -0.004992185, 0.01359749, - -0.013935585, -0.038672987, -0.007847414, -0.033033792, 0.036664862, - -0.016532714, 0.007170573, -0.009498487, 0.022133607, 0.008869074, - -0.016848538, -0.030657647, 0.02635164, -0.03124895, -0.038450044, - -0.03457522, -0.022075169, 0.02264262, 0.088311344, -0.025784502, - -0.03111038, 0.048711758, -0.02027593, 0.035219263, 0.004113702, - -0.009727905, -0.05462902, -0.05369722, 0.038879216, -0.031853378, - 0.01785697, -0.015264024, -0.040573463, 0.019366207, -0.013115983, - -0.015347264, -0.06339555, 0.11225949, 0.019836841, 0.0035471746, - -0.021520799, -0.0092713395, 0.021781215, 0.026353447, 0.04939329, - -0.035220064, 0.061699487, 0.023789324, -0.018156419, -0.032412082, - 0.027926926, 0.00263558, -0.007237844, 0.012956374, -0.032814197, - -0.04278959, -0.040997628, -0.059524253, -0.0049340045, 0.03279551, - 0.012447244, 0.0137944585, 0.014222398, 0.020976828, 0.033723474, - 0.034212407, 0.008856677, -0.022105677, -0.02963578, -0.028483793, - -0.03646651, -0.002582631, -0.013374154, 0.0133721875, 0.009203499, - 0.01728165, -0.013871896, -0.041029613, 0.047496907, 0.012321028, - -0.02972108, 0.022107627, 0.0145677645, -0.018950967, 0.026595805, - 0.011450773, -0.02878619, 0.028918035, 0.018389972, 0.025322406, - -0.022237774, 0.02932288, -0.0027680036, -0.053468652, -0.04692874, - -0.03932535, -0.001329006, 0.0619442, -0.03545179, 0.014700046, - -0.021481756, 0.024101675, -0.0330922, -0.029176503, 0.029623322, - 0.047926374, -0.028664881, -0.019888926, -0.023009336, 0.012205478, - -0.019993396, 0.036071755, -0.032838408, 0.0026003437, -0.0012135103, - 0.0032127674, -0.041955028, -0.009649374, -0.012539508, -0.031574655, - -0.013321952, -0.0033414273, 0.029686956, 0.039498035, 0.003667608, - -0.0385134, -0.007722502, -0.0014900276, 0.0082356, 0.04336719, - -0.032601587, -0.05778003, 0.02587522, 0.037059598, 0.0067735654, - 0.022615982, -0.020131856, -0.0130940685, -0.019111134, -0.05503263, - 0.019341212, -0.005168533, 0.004709742, 0.004762022, 0.0019435793, - 0.035020214, -0.029729579, -0.0052262703, -0.015783267, -0.04920377, - -0.0042644907, -0.049113, -0.049485885, -0.03126434, 0.026875922, - 0.056637485, -0.022361133, -7.369324e-5, -0.04651627, -0.021838784, - -0.03367605, 0.0026950487, 0.034499507, 0.033961732, -0.0872183, - 0.052143108, -0.017962681, 0.009436528, -0.0455477, 0.02607208, - 0.007688262, -0.06119058, -0.011669541, 0.080283664, 0.026591228, - -0.029911775, -0.0063117454, -0.041287415, -0.025864758, -0.035578366, - -0.016963994, -0.015129477, 0.020627953, -0.036777582, 0.011309514, - 0.0118595045, 0.027734993, -0.014503079, 0.038443636, -0.026274629, - -0.0018923685, 0.01857379, -0.014974635, 0.051610004, -0.01061677, - -0.013455045, -0.022352751, 0.0023652548, 0.0045945533, -0.014541562, - -0.027091365, 0.0037235792, 0.009278491, -0.013362957, -0.009785888, - 0.015099189, -0.07160457, -0.025945624, 0.015880426, 0.032627694, - -0.025275856, -0.011588588, 0.0054919114, 0.0558336, -0.03573707, - 0.015843906, -0.009053417, 0.0349779, 0.051930346, -0.056576256, - 0.0666088, 0.06685675, -0.017466636, 0.034745287, 0.015897527, - -0.027184583, 0.0076596388, -0.034320656, 0.025839044, -0.0106640365, - 0.022122767, -0.051172744, -0.008644406, 0.0050213654, -0.010213234, - -0.04261916, 0.027732803, 0.0027487397, -0.0329691, 0.051945053, - 0.008490853, -0.025490694, 0.036272194, -0.05867087, -0.033646394, - 0.026094683, -0.0034905698, 0.0068089734, -0.041247677, -0.043259073, - -0.022700178, -0.04211316, 0.0074846335, -0.013048973, 0.08399372, - 0.05668319, -0.0045457934, 0.03584239, 0.0074123507, 0.005204801, - -0.012586899, 0.0012400489, -0.026913002, 0.018764306, 0.025092432, - 0.052264873, 5.834163e-4, -0.011002548, 0.026197065, -0.04237306, - -0.004219851, -0.0049259635, -0.07299187, 0.020137208, -0.03902704, - 0.013722877, 0.003368677, 0.0011742515, 0.012428411, -0.048063546, - -0.037530355, 0.016734714, 0.009986467, -0.037033204, -0.017786287, - 0.03751024, 3.7438946e-4, 0.053916156, -0.030743495, 0.034907494, - 0.015087724, 0.027962655, 0.013986651, 0.04208224, 0.036902927, - 0.01163427, -0.009257926, -0.044819072, -0.010072849, -0.03295571, - -0.008226337, -0.047396645, 0.031481937, 0.0417168, -0.030328052, - -0.015896779, 0.01609872, 0.031043066, 0.040659163, 0.0024854052, - -0.00991258, 0.024556607, -0.033109944, 0.057321794, 0.023257893, - -0.052778535, -0.042592093, 0.02365732, -0.0022896936, -0.06528282, - 0.0043580225, -0.0035754652, -0.0049124933, 0.0317905, 0.020504484, - 0.013042786, -0.048474174, -0.040488645, 0.029541891, 0.022767868, - 0.052231073, -0.023367042, 0.022032764, -0.017279327, 0.050790023, - 0.031124244, -0.014141971, 0.01339241, -0.019189972, -0.020823222, - -0.008465417, 0.029177647, 0.001631535, 0.021890068, 0.026856625, - -0.0051851263, 0.010296947, -0.013709741, 0.011743181, -0.06196048, - -0.014966049, 0.06818062, -0.0023982457, -0.0056444025, -7.584694e-4, - -0.02857246, -0.0042180456, -0.016806548, 0.00986323, -0.051696297, - 0.047208987, 0.04585557, -0.008718901, -0.030852586, -0.014061814, - 0.01568418, -0.03412309, 0.006294359, 0.01009474, 0.019185271, - -0.021884069, -0.0154135665, 0.07488171, -0.031687424, 0.032458477, - -0.013198386, 0.003624904, 0.023590155, -0.04110156, -0.032937117, - -0.02124241, -0.040593795, 0.019972106, -0.0010150925, -0.025532054, - 0.020169605, -0.021672733, -0.0061701946, 0.0313831, -0.0471575, - -0.048306443, 0.03715796, 0.04345115, -0.027717743, 0.00962112, - 0.03587582, -0.046891015, 0.05784644, 0.020839734, -0.0058647613, - 0.063202634, -0.007959784, -0.048208077, -0.024696387, 0.028080732, - -0.011312738, -0.015516897, -0.010630409, -0.0030976287, 0.023153884, - 0.02936281, 0.018475357, 0.04138968, -0.011171213, -0.009939178, - 0.027835349, -0.027098445, 0.028293597, -0.054124523, 0.0212804, - -0.030146401, -0.011010744, 0.07674446, 0.0043235463, -0.012795705, - 0.008201085, -0.03270749, -0.045729168, 0.04260381, -0.0039157188, - -0.026525797, 0.029381009, 0.027508454, 0.022664765, -0.04422477, - 0.00846265, -0.0019960974, 0.046896104, -0.030814711, -0.03769441, - 0.033577885, 0.06649097, 0.024548167, 0.0607804, 0.019435462, - 0.012295649, 0.026666768, 0.027187115, 0.039608005, -0.01648388, - 0.014920802, -0.03172921, -0.026135156, -0.011591241, -0.0066583375, - -0.020830093, 0.015014062, -0.023996595, 0.0014026087, -0.0071720947, - -0.0069261463, -0.028519318, -0.018381562, -0.006011674, -0.011049074, - -0.022184042, -0.007959623, -0.03458991, -0.009296296, 0.031926252, - 0.007997679, 0.04133333, -0.005311382, -0.033636257, -0.02911394, - 0.0057626474, 0.003206381, -0.042873684, -0.033891723, -0.02249242, - 0.013939616, 0.031950008, 0.101694904, 0.039716076, -0.021764684, - 0.008458403, 0.00598889, -0.04294259, 0.021393277, -0.0062650205, - -0.021663897, -0.016933737, -0.059783246, 0.03232996, -0.05116109, - 0.04246813, 0.024482084, 0.025246372, -0.0139665175, 4.6915804e-5, - 0.02093593, -0.014758791, -0.011072222, 0.024494033, 0.012452157, - -0.04194744, -4.577409e-4, 0.024070129, 0.009606217, 0.023299623, - 0.0060167355, 0.033916228, 0.009081904, 0.06511294, 0.022402834, - -0.038641457, 0.01608653, 0.018431049, 0.059666604, 0.044619426, - 0.020872436, -0.011837938, -0.040714946, 0.015878862, -0.026741846, - 0.0397983, -0.0370477, 0.009942559, 0.03902723, -0.027342563, - -0.014273116, -0.003723457, 0.017240174, -0.03021727, -0.0075302282, - 0.024801543, -0.03710206, -4.1844716e-5, -0.014737577, 0.0121804625, - 0.082715206, -0.03296555, -0.0030671733, 0.031139292, 0.0029792073, - -0.015609524, -0.018242298, 0.010930702, 0.003143988, -0.010620737, - 0.031161038, -0.048432495, -0.026659109, 0.01779636, -0.031425733, - 0.013992845, -0.029525563, 0.0045242556, 0.022699926, 0.02124629, - -0.006016193, -0.04012927, 0.016586578, 0.041827604, 0.014416621, - -0.049204405, -0.025518674, -0.004957324, -0.056487653, -0.020940047, - -0.04608257, -0.00764755, -0.01437453, 0.0033871545, 0.020766305, - 0.010820968, 0.035219233, 0.023013722, 0.022374924, -0.015264783, - 0.03999056, -0.044001143, 0.03952506, -0.019335616, -0.006526533, - 0.027307725, 0.0096087195, 0.008760466, -0.012596772, 0.0051772255, - 0.01202087, 0.0015871982, -0.040545214, 0.0616976, -0.032629497, - -0.05087431, 0.04085565, 0.023131415, -0.0501142, -0.0012393695, - 0.039762888, -0.0627726, 0.0073771016, -0.021483645, -0.0018052796, - 0.05178758, 0.01830269, 0.04452355, -0.0151289, -0.004243853, - 9.909959e-4, -0.011474091, -0.048743285, -0.014915796, -0.0101067, - 0.03178815, -0.0033729556, -0.031943496, 0.026846483, 0.02991074, - 0.041194983, 0.009728213, -0.007478301, 0.048193075, -0.07900296, - 0.0049136598, 0.013015215, -0.034326103, -0.0086280545, -0.001796463, - 0.01467355, -0.037989732, -0.0054580276, -0.01583415, -0.011934373, - -0.008851746, 0.062146336, -0.0018643297, 0.040509738, -0.019914126, - -0.011520533, -0.00568082, 0.03203088, 0.028620526, -0.014726625, - 0.013070584, -0.017548645, -0.031702142, 0.030708395, -0.04034615, - 0.0074884454, 0.0014346807, -0.0014974882, -0.03232859, -0.044996317, - -0.0024993091, 0.04024317, 0.049572993, 0.027559467, 0.0221576, - -0.02867221, -0.016523458, 0.044790886, 0.009226884, -0.0066987816, - 0.02334222, -0.007124689, 0.029130243, 0.022233086, 0.036500126, - 0.029431557, 0.07615561, 0.03247141, -0.05676582, 1.2224648e-4, - -0.05753745, -0.006080944, -0.0037540952, -0.066422984, -0.015359605, - -0.03660091, 0.005425359, -0.019547483, -0.051651616, 0.00927678, - 0.03212568, 0.004166481, -0.06994803, 0.0072145974, -0.02199361, - 0.005489821, 0.025866078, 0.06277817, -0.021054327, 2.6374788e-4, - -0.034863103, 0.032899912, -0.008455177, 0.026133604, -0.05180179, - 0.011431753, 0.004801925, -0.01057289, -0.08878996, 0.030431965, - -0.024556901, -0.0075993584, -0.024198087, 0.02916592, -0.050838143, - -0.040629596, 0.016570369, 0.0015538684, 0.0047689467, -0.0049252165, - -0.0118629085, 0.039800342, 0.055947755, -0.020966085, -0.0074150586, - -0.024747388, -0.013404935, 0.0047000665, -0.03229074, -0.054309428 + "paletteEmbedding" : [ + 0.012462096, + 0.009021927, + 0.04427529, + 0.01954361, + -0.038145795, + -0.028632458, + 0.025873072, + -7.568672E-4, + 0.009792748, + -0.030833457, + 0.0019255882, + -0.021616304, + -0.0046585333, + 0.03889737, + -0.0025353292, + -0.07611699, + -0.0399008, + -0.025095517, + -0.05010472, + -0.02742048, + 0.015542538, + -0.027047882, + -0.028587155, + 0.005572388, + 0.024350692, + 0.027256636, + -0.0076221144, + -0.04681948, + -0.00803935, + 0.0044496804, + -0.044636324, + -0.01403495, + 0.010903689, + -0.03175255, + 0.03215601, + -0.009351608, + 0.028607232, + -0.07158166, + -0.038871467, + 0.040481947, + -0.010324769, + -6.8953005E-4, + -0.009878612, + 0.039091654, + 0.06821946, + 0.014705962, + -0.025409225, + 0.01575849, + 0.01681069, + 0.009526316, + 0.011343655, + -0.026974214, + -0.032939974, + -9.784568E-5, + 0.0448577, + 0.07114822, + -0.033402823, + 0.0039342926, + 0.029232958, + 0.006716247, + -0.0021385776, + 0.014401301, + 0.00891106, + 0.006531154, + 0.0411882, + -0.020556899, + 0.049764987, + 0.043818645, + 0.027517887, + -0.03701809, + 0.01790776, + 5.0474686E-4, + 0.0046297135, + 0.022826185, + -0.008778897, + -0.008420736, + 0.019579768, + -0.0011246995, + -0.0057368604, + 0.0072432454, + -0.036466762, + -0.015678521, + -0.033576243, + -0.072852336, + -0.036834657, + -0.019351246, + 0.034185514, + -0.004913106, + -0.015064119, + 0.02134647, + 0.028907124, + -0.002260066, + 0.0018848127, + -0.06762951, + -0.023531105, + 0.0010506378, + 0.03793196, + -0.0057722055, + 0.03053061, + 0.017504277, + -0.025036443, + -0.053708676, + -0.015290158, + -0.03359272, + -0.017901115, + 0.009163941, + -0.020742688, + -0.053933945, + -0.055479348, + 0.020706529, + 0.054318883, + 0.0254123, + 0.011688074, + -0.0031097776, + 0.060826726, + 0.013711266, + -0.008144991, + -0.029111324, + -0.07473135, + -0.024725547, + -0.042854518, + 0.06157267, + -0.01756894, + 0.01043522, + -0.010950243, + 0.021596657, + 0.028732192, + 0.014742992, + -0.028533794, + -0.012873656, + -0.024245208, + 0.007667652, + 0.013018175, + -0.015026631, + -0.0067979638, + -0.011575246, + 0.064806014, + 0.002514505, + 0.054601166, + 0.01750502, + 0.010937593, + 0.018119706, + 0.028857566, + -0.023718517, + -0.010053369, + 0.0058324127, + 0.03620229, + 0.017058054, + -0.026270498, + -0.05264163, + 0.018232495, + 0.060315978, + -0.038447157, + 0.004530707, + 0.068117715, + 0.013158938, + -0.008826857, + -0.03340352, + 0.017164243, + 0.012267238, + 0.02815582, + 0.05275392, + -0.027000835, + -0.004837568, + 0.035070185, + 0.018247055, + -0.061959967, + 0.016412506, + 0.016304916, + 0.0016235962, + -0.004992312, + 0.0022322831, + -0.053388193, + 0.019708214, + 0.03617219, + 0.019849231, + -0.017090535, + -0.028471451, + 0.020175455, + -0.0056850878, + 0.039831325, + -0.0629974, + 0.0061785304, + -0.018100874, + 0.015682092, + -0.010067927, + 0.02918961, + -0.005880608, + -0.050195172, + 0.031985912, + 0.019323718, + -0.06930991, + -0.023047222, + 0.02769082, + 0.018874677, + 0.027163627, + -0.025789583, + -0.02960538, + 0.05186814, + -0.028165454, + 0.002205561, + -0.021737922, + 0.011521691, + -0.047642276, + -0.018879827, + -0.02432183, + 0.06633516, + -0.0014988484, + -0.017553963, + 0.026139025, + -0.03523779, + -0.010958295, + -0.054453943, + -0.007311319, + -0.031041939, + -0.037090085, + -0.008660681, + 0.048456244, + -0.03368185, + -0.03064328, + 0.007435863, + 0.005985452, + 0.05787201, + -0.0094397925, + 0.039463785, + -0.03895652, + 0.021898018, + -0.018000104, + -0.017529136, + -0.0067089563, + -0.042523768, + 0.011822061, + 0.020010514, + -2.8978148E-4, + 0.047853842, + 0.051920783, + 0.0088151265, + 0.0031422975, + 0.034036722, + -0.025736444, + 0.021124521, + 0.033606257, + -0.0074444804, + 0.031443726, + 0.009347012, + 0.03362511, + 0.040058132, + -0.021606207, + -0.046207633, + -0.043165397, + -0.06641445, + 0.018482782, + -0.01098292, + -0.020792466, + -0.049432643, + -0.011672027, + 0.009736032, + -0.03231593, + 0.0330942, + -0.034424126, + -0.012626913, + -0.004444592, + -0.026633872, + 0.03498105, + 0.043149356, + -0.041537914, + 0.0016596678, + -0.028604398, + 0.0074698445, + -4.3305862E-4, + 0.025242776, + -0.0076037575, + 0.020540785, + 0.034226865, + 0.012249444, + -0.018166507, + -0.042837836, + -0.00558611, + 0.00678573, + 0.008150078, + 0.025294492, + 0.028251942, + 0.025984595, + -0.048766073, + 0.02474074, + -0.00977165, + 0.01188556, + -0.008695247, + -0.03473286, + -0.0044883303, + -0.019379519, + -0.026351226, + 0.016126314, + 0.012903856, + -0.01995138, + -0.050060406, + 0.06304249, + -0.031002175, + 0.059887603, + 0.020960847, + 0.0073458077, + 0.045611672, + -0.0024086079, + -0.033495743, + 0.015955683, + 0.032979283, + 0.0014079844, + 0.02516703, + -0.015736658, + -0.0065386295, + -0.03650374, + 0.022340398, + -0.024009533, + -0.022415474, + -0.07041288, + 0.0039685573, + 0.04746023, + 0.053444054, + -0.015452919, + 0.032407828, + 0.014530249, + 0.006186808, + -0.022273792, + -0.05022922, + 0.03944935, + -0.012442969, + -0.054631878, + 0.025353711, + -0.025482701, + -0.017367044, + -0.012249677, + 0.08042798, + -0.037759736, + -0.025406063, + 0.006436837, + -0.018097924, + -0.0045076273, + 0.00819438, + -0.0029111635, + 0.011804225, + -0.014997243, + -0.015421345, + -0.027463501, + -0.001943005, + 0.01144949, + 0.017914744, + 0.012927957, + -0.032033235, + 0.01429791, + -0.020521456, + 0.03920726, + -0.003943768, + -0.017025264, + 0.010713692, + -0.036856122, + 0.00311183, + 0.011179672, + 0.028232409, + 0.02080755, + -0.06240059, + -0.011076655, + 0.00590011, + -0.034300927, + -0.05040033, + 0.011118751, + -0.020675635, + -0.04140233, + -0.02525862, + -0.051672127, + -0.012021956, + -0.017728245, + -0.05312069, + 0.012124124, + 0.0060624797, + -0.010060041, + -0.018035596, + 0.0075906357, + 0.06827045, + -0.027371753, + 0.028420521, + 0.009915407, + 0.07406171, + -0.0018503082, + 0.0021668042, + -0.028381502, + 0.04623757, + -0.040444896, + 0.028871814, + -0.092670456, + 0.0069575594, + 0.054093733, + 0.017859692, + 0.05142267, + 0.057360552, + 6.380176E-4, + -0.080594316, + 0.005888089, + 0.054017343, + 0.009793045, + 0.03136575, + -0.019087771, + -0.011024903, + 0.0031860906, + 0.004735481, + -0.016939951, + -0.01991803, + -0.011903398, + 0.021707589, + -0.018906223, + -0.013918788, + 0.08858447, + -0.025707392, + 0.020062936, + 0.056353975, + 0.053195335, + 0.05685381, + -0.01335373, + 3.798323E-4, + 0.049159184, + -0.015384465, + 0.01091662, + 0.020844216, + 0.016680215, + 0.0070053386, + -0.009316578, + 0.001402915, + 0.017371217, + -0.057195805, + -0.016861212, + -0.04182093, + 0.060466625, + -0.0063240393, + -0.05958991, + -0.009434606, + -0.04482671, + 0.03905695, + -0.018768473, + 0.03543105, + -0.0050072954, + -0.0034810172, + 0.01599092, + -0.0013566108, + -0.03295069, + -0.0027160773, + -0.03172365, + 0.040765963, + -0.031952333, + -0.10088633, + 0.024726918, + 0.03033626, + 0.0063739014, + 0.007121309, + 0.015499283, + -0.015302832, + 0.024718415, + -0.09270921, + -0.03205612, + 0.027453342, + -0.028686507, + 0.022424428, + 0.05076663, + 0.017325224, + 0.0070464755, + 0.022136789, + -0.040301938, + -0.08470875, + 0.024230594, + 0.029687239, + 0.011878996, + -0.06717162, + 0.0341652, + -0.04467589, + -0.02076902, + 0.033461124, + -2.624944E-4, + -0.014625659, + 0.004828076, + -0.028032396, + -0.018615173, + 0.030046975, + 0.053598747, + 0.06666798, + -0.047049932, + -0.038656496, + 0.049779635, + -0.005036239, + -0.016536256, + 0.004096726, + 0.025867008, + -0.03181251, + 0.021139558, + -0.006779418, + -0.04013446, + -0.011372268, + 0.0024682286, + -0.011740968, + 0.030731788, + 0.036172632, + -0.010353899, + 0.0032887189, + -0.026852414, + 0.017359715, + -0.020875506, + 0.021345997, + 0.062299892, + -0.031358823, + -0.085209526, + -0.007392974, + 0.014156853, + -0.0133024845, + 0.028107285, + 0.014536263, + 0.0059029916, + -0.01677748, + 0.048481166, + 0.040251594, + 0.011335194, + -0.056685094, + 0.06748682, + -0.006896179, + -0.05428038, + 0.0014597503, + -0.035762504, + 0.0012844994, + -0.020111438, + 0.026638031, + -0.023558427, + 0.0046602124, + 0.02281971, + -0.018404711, + -0.020157615, + -0.010021433, + 0.02030636, + -0.04048169, + 0.0026014135, + 0.023702815, + 0.055485375, + -0.010005615, + -0.0115310345, + -0.001015854, + -0.022101324, + -0.012173926, + 0.023915624, + -0.0043858215, + 0.0077084415, + 0.009899473, + -0.0032767972, + -0.045580067, + -0.045823622, + 0.03659591, + -0.028071309, + 0.014636036, + 0.012738884, + -0.008156398, + -0.045681395, + 0.051457673, + 0.010005329, + -0.023138287, + 0.022936836, + 0.01906382, + 0.020494118, + 0.02001705, + -0.013249246, + 0.038135637, + -0.008880377, + -0.040720455, + 0.04602605, + -0.003570473, + 0.0067817336, + -0.0517087, + 0.0091955485, + 0.026709618, + -0.04824072, + 0.031379897, + 0.04876468, + -0.041030355, + 0.023862539, + -0.02436494, + 5.072441E-4, + -0.0029270193, + 0.0098906895, + -0.08946863, + 0.0013446823, + 0.05675208, + -0.0026202805, + -0.022422176, + -0.01774691, + 0.03864587, + -0.056319285, + -0.004008322, + 6.894166E-4, + -0.035110604, + -0.0025312947, + 0.05944655, + -0.09738592, + -0.025624521, + -0.008413248, + -0.010166043, + 0.032584973, + 0.0401773, + 0.01259465, + 0.0130292075, + 0.06574443, + 0.05384499, + -0.03989323, + -0.02064878, + 0.06579556, + -0.031371187, + -0.032625716, + -0.0016270301, + -0.03302814, + 0.009219385, + 0.026065353, + -0.035720684, + 0.0016025443, + 0.010152271, + -0.0050645615, + -0.08120776, + 0.04722175, + -0.0028394985, + -0.0089333365, + 0.016499178, + 4.066763E-4, + 0.0011011868, + -0.010994424, + -0.028054375, + 0.056070704, + 0.039726835, + -0.026479041, + -5.3449363E-5, + -0.010428898, + -0.074980624, + 2.8557592E-4, + -0.041193742, + -0.023614869, + -0.022060884, + -0.02534137, + 0.030225266, + -0.0017701164, + 0.030047279, + 0.036787976, + -0.031943996, + -0.013040228, + -0.046200193, + -0.07235755, + -0.008107425, + 0.012512811, + 0.0202491, + -0.0018441947, + -0.012484598, + 0.051116664, + 0.0036412557, + -0.014558696, + 0.012275591, + -0.012051141, + 0.040468268, + 0.0018830331, + -0.028888084, + 0.011122717, + 0.018025065, + 0.025239639, + -0.050648466, + 0.043134235, + -0.005624883, + 0.012516962, + -0.012581437, + -0.00826229, + -0.035868816, + -0.059250183, + -0.010776913, + 0.014496308, + -0.012653609, + 0.04720492, + 0.0016568786, + -0.0066910665, + -0.017968463, + 0.05537769, + 0.011762051, + -0.0015992258, + -0.040502477, + -0.014032833, + 0.04414044, + 0.0012891596, + -0.029410642, + 0.046138484, + 0.04678463, + -0.034334492, + 0.011098231, + 0.03689698, + -0.017567778, + 0.023321535, + -0.09600192, + -0.02921893, + -0.013567381, + 0.008115172, + 0.029531678, + -0.023306852, + 0.06292248, + 0.059308413, + 0.041560028, + 0.012696116, + -0.011700441, + -0.042124223, + -0.001974156, + 0.015604875, + 0.007844967, + 0.06715406, + 0.040626377, + 0.047001265, + -0.016256511, + 0.031540178, + 0.03524904, + 0.008461929, + -0.011187122, + 0.0210438, + -0.06412899, + -0.050777, + 0.024487592, + 0.012238336, + 0.046677697, + -0.0131673645, + -0.0057390397, + -0.021319577, + -0.077653974, + -6.64761E-4, + -0.00984245, + 0.0041775843, + -0.016154004, + -0.037650894, + 0.03833698, + 0.040676214, + 0.044628203, + 0.040143333, + -0.028029656, + -0.06717823, + -0.049509175, + -0.038081948, + 0.0036630556, + -0.039778415, + 0.011652392, + -0.0074392175, + 0.06620686, + 0.0016129897, + -6.5089314E-4, + -0.08436174, + -0.037237383, + 0.058145534, + -0.003203466, + 0.021862978, + 0.021201324, + -0.023239387, + -6.542983E-4, + -0.035838276, + 0.02464352, + 0.0035441674, + -0.036188263, + 0.003861598, + -0.02958575, + -0.03425617, + -0.034329917, + 0.030663842, + 0.032185223, + 0.024260437, + -0.030264102, + 0.004696122, + 7.178753E-5, + 0.033335462, + -0.022469096, + 0.02357654, + 0.010719453, + 0.025362413, + -0.010743337, + -0.037492752, + -0.0016191712, + -0.03546928, + -0.011560511, + 0.03028471, + -0.0016905689, + 0.031921785, + -0.02388717, + 0.0373675, + 0.008197887, + 0.0012965056, + -0.035541777, + 0.0027606743, + 0.080175646, + -0.0301371, + 0.024067996, + 0.0014595955, + -0.006951403, + 0.038419053, + -0.032553855, + 0.012115838, + -0.025685372, + 0.0011938224, + 0.012423354, + -0.03163653, + 0.018753868, + 0.03823084, + -0.05662659, + -0.003059543, + -0.023980161, + -0.0045269006, + 0.0071578533, + 0.007997477, + -0.05291364, + -0.04275897, + -0.03285062, + 0.017206825, + -0.03667257, + -0.003635203, + -0.009059465, + -0.052665237, + -0.030054202, + 0.0050731185, + -0.02873445, + 0.03735627, + 0.02962065, + 0.004994885, + -0.0025325126, + 0.001404337, + -0.0185855, + 0.037607145, + -0.0026509722, + -0.0031150656, + -0.062498346, + -0.024943996, + -0.05418286, + -0.037086744, + 0.019066522, + 0.0043271785, + -0.080481574, + 0.0030634922, + 0.02199853, + -0.0054961606, + -0.012358782, + 0.01902965, + -0.037121482, + -0.02029398, + 0.032972567, + 0.03531836, + -0.0114994, + -0.017571853, + -0.02220772, + 0.011305205, + -0.032194808, + -0.048722133, + 0.017070357, + -0.013034153, + 0.010115995, + 0.031486865, + -0.0410897, + 0.022235388, + -0.01344715, + -6.880068E-4, + -0.036663637, + -0.019857856, + -0.03394658, + 0.055800404, + 0.011904439, + -0.00844373, + 0.0329168, + -0.04381384, + 0.011293125, + -0.016747175, + -0.016821431, + 0.027466478, + -0.008111226, + -0.014670552, + -0.040828645, + 0.03373078, + -0.008490383, + -0.0017296062, + 0.005095745, + 0.0050594485, + 0.026686953, + 0.0032422843, + 0.04201295, + -0.02003173, + -3.2939388E-5, + 0.01144509, + -0.00987774, + 0.003074879, + 0.0012721563, + 1.989869E-4, + -0.022297656, + -0.005945139, + 0.029821744, + 0.00682105, + 0.0019319132, + 0.043767653, + 0.022300817, + -0.007987549, + 0.027367333, + 0.036597133, + -0.049592953, + -0.01237861, + 0.0035047648, + -0.05574532, + 0.04228001, + -0.014933043, + -0.0029453936, + -0.026226453, + 0.0057278657, + -0.015512351, + 0.0011886881, + 1.3030335E-4, + -0.013482453, + -0.027870025, + 0.0034904361, + -0.029749105, + -0.01098955, + -0.005926429, + -0.015407061, + -0.030006034, + 0.012941014, + 0.0359247, + 0.030407047, + 0.048216913, + -0.042750258, + -0.013723978, + 0.019467935, + -0.047707252, + 0.015104033, + -0.05246475, + 0.004263668, + -0.0029208234, + 0.057295326, + 0.03461532, + 0.0026719961, + 0.019059395, + 0.021535136, + 0.03853379, + -0.009153219, + -0.034829546, + 0.021735521, + -0.0021597731, + 0.03480934, + 0.022861218, + -0.012539912, + 0.00797549, + -0.047606315, + -0.001018662, + 0.037015885, + 0.06477848, + -0.0039136, + -0.034217406, + 0.026997838, + -0.02894033, + -0.0030680948, + -0.008113757, + 0.0109493565, + 0.025596838, + -0.01650379, + 0.018949319, + 0.04066888, + 0.052455932, + -0.015194701, + -0.004907389, + 0.0037215035, + 0.012600648, + 0.04884928, + 0.015890684, + 0.007702222, + 0.05219951, + -0.04847734, + 0.051909585, + 0.003938809, + -0.030290788, + 0.010831886, + 0.007248959, + 0.018625684, + 0.04825323, + -0.022690654, + 0.022409549, + -0.015985727, + -0.011383447, + 0.028097756, + 0.03576732, + 0.011378095, + -0.053685587, + 0.031054644, + 0.05282361, + 0.018347997, + -0.0061106505, + -0.05858637, + -0.044880044, + 0.018119954, + 0.009098214, + 0.015815945, + -0.06184581, + -0.02614706, + -0.0097732125, + 0.002742799, + -0.029117167, + -0.075962946, + 0.022590611, + -0.014770288, + 0.019113656, + 0.010093869 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json b/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json index fdb00a9fe..2dc7826a0 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json @@ -1,1341 +1,5249 @@ { - "description": "an example of images with work metadata for the API tests", - "createdAt": "2023-11-21T14:25:44.204768Z", - "id": "drmfrjk1", - "document": { - "modifiedTime": "2032-01-03T16:39:00Z", - "display": { - "id": "drmfrjk1", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an example of images with work metadata for the API tests", + "createdAt" : "2024-11-14T14:37:56.536538Z", + "id" : "bydileh4", + "document" : { + "modifiedTime" : "2061-03-12T16:25:24Z", + "display" : { + "id" : "bydileh4", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/oup.jpg/info.json", - "credit": "Credit line: jtrEyPxhF", - "linkText": "Link text: aFh6ZV6x", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", + "credit" : "Credit line: mnFe54B", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/oup.jpg/info.json", - "credit": "Credit line: jtrEyPxhF", - "linkText": "Link text: aFh6ZV6x", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", + "credit" : "Credit line: mnFe54B", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#448AE9", - "source": { - "id": "5toox7nz", - "title": "Schiacciata is a Tuscan focaccia", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#219A51", + "source" : { + "id" : "iar4ofhk", + "title" : "Schiacciata is a Tuscan focaccia", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "drmfrjk1", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5toox7nz", - "sourceIdentifier.value": "5IIe8kCoQQ", - "identifiers.value": ["5IIe8kCoQQ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Schiacciata is a Tuscan focaccia" + "query" : { + "id" : "bydileh4", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "iar4ofhk", + "sourceIdentifier.value" : "YK6s4XYzl3", + "identifiers.value" : [ + "YK6s4XYzl3" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Schiacciata is a Tuscan focaccia" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.005607667, 0.0011427692, 0.02050571, 0.017957471, -0.014531879, - -0.013305815, 0.0066051953, 0.016365636, 0.0058412547, 0.005647905, - 0.030491577, 0.0019295369, -0.012691682, 0.008362166, 0.002080638, - 0.0039466275, 0.013242536, 0.020539267, 0.0069304826, 0.015375055, - -0.0015088022, 0.0145471245, -0.010854225, -0.007847594, 0.004544067, - 0.0318276, -0.012758432, 0.026518028, 0.009271351, 0.028725006, - -0.020654079, -0.0042852275, -0.013344419, 0.020289542, -0.0012252511, - -0.00793673, 0.0030878629, -0.044383757, -0.022101006, 0.0066747926, - 0.0019133814, 0.008745997, -0.02091183, -0.023886822, -0.011054457, - 0.009755963, -0.038831126, -0.022708636, 0.027338644, 0.0241446, - -0.031851083, 0.016003955, 0.015745752, -0.004307149, 0.0059529464, - -0.004894917, -0.0019418311, -0.008309673, -0.017537242, -7.3436415e-4, - -0.011232896, -0.025248773, 0.037807945, 0.015800169, -0.029454922, - -0.009724189, 0.0024896418, -0.0154949045, 0.015972186, 0.016492104, - -0.004214532, 0.01685077, 0.010693242, -0.005702701, 0.012815705, - 0.014205996, -0.007781018, -0.014020526, -0.03155261, -0.0052794507, - 0.002117156, 9.35666e-4, -0.0022914303, -0.0042243935, -0.011543437, - -0.008411912, -0.022256454, 0.030466009, 0.027232544, 0.012043845, - -0.0031715315, -0.027388426, -0.023028955, 0.014924836, -0.009032122, - 0.009046218, -0.017790278, 0.024365524, -0.011702431, 0.007635304, - -0.010517929, -0.014604561, 0.026930353, 0.011961559, -0.008051047, - -0.0273263, -0.0056116376, -0.022474673, 0.007093255, 0.01760803, - -6.117404e-4, 0.028161393, 0.019963834, 0.022934146, 0.02815974, - 0.005451107, 0.021242185, 0.0016604284, 0.02676284, 0.0061107613, - -0.012888998, 0.037610877, 0.012817205, 0.02077903, -0.017575333, - -0.023121899, -0.020212144, 0.02988325, -0.0121677155, -0.0087456945, - -0.014964732, -0.001282815, 0.0056260442, -0.004086328, -0.019455384, - 9.3119475e-4, -0.001529323, -0.021717507, -0.0011827811, 0.004644973, - -0.006781428, 0.0026382236, -0.018936759, -0.003614974, 0.011898383, - 7.676458e-4, 0.017967079, 0.0023921144, 0.0011600765, 0.009888934, - -0.0044399463, -0.0057026916, 0.0011340377, 0.006610918, 6.902169e-4, - -0.002705215, 0.010780661, -0.0024819744, -0.009369026, 0.006458684, - -0.008625455, -0.027154759, 0.0039650374, -0.0010101345, 0.011790572, - -0.03721155, 0.0018762902, -0.012057911, -0.0050230077, 0.0025685572, - -0.025901183, -0.0027173331, -0.0046756463, -0.011222979, -0.018051514, - -0.0151077295, 0.015733758, -0.003298009, 0.0023254417, -0.004189934, - -0.012430466, 0.03679582, -0.011003459, 0.015966116, 0.014308218, - 0.017807467, 0.0017399895, 0.0095456075, 0.010046005, 0.0013861563, - -0.018439807, 0.02843088, -0.012469799, -0.0027892538, -7.1582734e-4, - -0.0087124165, -0.0010134849, -0.010017412, -0.01957261, -0.0066159777, - -0.012651938, -0.009951874, 0.022114636, 0.006440268, 0.020764874, - 0.009164164, -0.011706267, -0.010526006, 0.031420227, 1.5529149e-4, - 0.010456262, -0.009178636, 0.01809737, 0.01791537, -0.018695112, - -0.016273214, 0.0049566776, -0.012398004, 0.025137473, 0.011366188, - 0.0072872327, 0.034472, 0.016600342, -0.002765154, -0.0028362256, - -0.010616826, -0.009364622, 0.020720929, 0.036510594, 0.007840362, - -0.0093474435, 0.012540316, 4.4025277e-4, -0.023607327, -0.0044029523, - 0.008027206, 0.007517566, 0.019594837, 0.015734667, -0.025996583, - -0.0138051575, -0.011151744, -0.021152645, -0.029568983, 0.01116293, - -0.030865729, 0.0075999196, -0.014004716, 0.03320408, -0.00801059, - -0.016686298, -0.009641387, -0.018704697, -0.012039746, 0.014494371, - 3.3904263e-4, 0.019061424, -0.013623563, -0.0014910748, -0.027625617, - 0.02426709, 0.010279284, -0.0072052055, -0.0077136047, -0.007428728, - -0.012970398, -0.0062160073, -0.028597752, -0.00849247, 0.032755893, - -4.0582885e-4, -0.012584206, -7.919004e-4, -0.021595737, 0.014764807, - 0.0094892215, -0.0072718123, -0.053616196, 0.018513782, -0.022986053, - 0.011547653, 0.0070664072, -0.003691928, -0.005855108, 0.017216247, - -0.018711599, 0.022945967, 0.0028930635, 0.0028379965, 0.03101988, - -0.0061789476, 0.004520431, 0.005229815, -0.00845682, -0.013836931, - -0.014325463, -0.016817387, 0.0033926861, 0.012182934, -0.020527527, - 7.1843184e-4, -0.012721872, -0.007209903, 0.009910696, 0.01406669, - -0.0065626027, -0.00875506, 0.0021027392, -0.020834811, 0.009855483, - -0.009921217, 0.013352448, -0.024096172, -0.022657543, -0.030196056, - 0.017536014, 0.009344848, -0.024417065, -9.2396076e-4, -0.0099335825, - 0.018307751, 0.010982835, -0.021992229, -0.010839935, 0.01640627, - 0.011439561, 0.029564751, -0.014945598, -0.022683939, -0.005188811, - -0.014154633, -0.017556414, 0.020861017, -0.005914668, 0.025087122, - 0.0029827345, -0.0066934032, 0.010839759, 0.02051715, 0.0076064304, - -0.012094877, -7.922443e-4, -0.0075144335, -0.012399775, -0.0097076865, - -0.007105819, -0.0026746602, -0.01564393, -0.0054155234, -0.0022469428, - -0.023999117, 0.0023887565, 0.0073362477, 0.0049601845, -0.031170486, - -0.037350304, 0.010178649, 0.006307732, -0.0068125837, 0.010704788, - 0.020027753, -0.017379075, -0.015563546, 0.03208814, -0.011550999, - 0.0039684786, 0.0033282817, -0.00910216, 0.0076069203, 0.0050899205, - -0.01887947, -0.032201722, 0.0029254016, 0.015615951, 0.013816899, - 0.00832317, 0.008803365, 0.008659669, -0.0021451847, -0.021565324, - 0.011114666, 4.9194973e-4, -1.3581495e-4, -0.006556538, 0.026983343, - -7.6932076e-4, 0.0018980585, -0.0028595517, 0.010716246, 0.0038140414, - -0.014500297, -0.007637125, -0.0020998716, 0.02240633, 0.011035604, - 0.013126938, 0.013104004, 0.0020421906, -0.011008691, -0.029735534, - -0.03012413, 0.027272511, 0.0031818666, 0.018973736, -0.016520081, - -0.0038166433, 0.008192235, 0.0055043427, -0.021808498, 0.021533977, - -5.0136814e-4, -0.009977096, 0.0064696902, -0.013229783, -0.016587744, - -0.0045708986, 0.008563824, 0.009441583, 0.011638799, -0.019855792, - 0.0039202916, 0.019784195, -0.024401218, 0.0028887435, 0.040747914, - -0.0035419576, -0.016799359, 0.015790911, -0.014020988, 0.0068461015, - -0.011323667, -0.009013742, 0.010715578, 0.023050047, -0.008440608, - -0.02074157, -0.008952142, -0.009726088, 8.815766e-4, 0.016615773, - 0.013311458, 0.019911418, 0.009442564, 0.006156174, 0.01663984, - -0.0016994114, -9.0445194e-4, 0.010292141, -0.010516961, 0.027460672, - 0.027282022, 7.187585e-4, 0.0071637286, 0.01685081, 0.012531962, - -0.016236806, -0.01357198, -0.0038364164, -0.010360378, -0.010601601, - -0.0012198788, -0.0016069699, -0.032073718, -0.016678134, -0.0018274178, - 0.02130053, -0.011815241, -0.014990636, 0.01040098, 0.021251615, - -6.314095e-4, 0.008223613, 0.022862906, 0.015869986, -0.013859083, - 0.019504463, 0.018891161, -0.009707247, -0.0051194965, 0.0042868895, - -0.023411386, -0.027378477, -0.007054266, 0.02488807, -0.0030350043, - -0.013430988, -0.0060033198, -0.005531101, 0.018283086, -0.0020195243, - -0.0108721955, 0.0031722952, -0.013352474, -4.568764e-4, -0.007251966, - 0.003453167, 0.0076915734, -0.017120482, -0.024023525, 0.013355602, - -0.0036983455, -0.004578649, -0.009120829, 7.0508826e-4, 0.025341634, - 0.0097691845, -0.020274727, 0.026155723, -0.0062185093, -0.009451224, - 0.006582537, -0.0072642057, 0.0052453014, -0.0045888806, -0.010319856, - 0.0066439803, 0.025412768, -0.02352712, -0.009993701, 0.0143304765, - 0.020393768, 0.013183553, 0.016084127, 0.012951024, -0.002897821, - 0.0012263441, -2.4971692e-4, 0.011574082, 0.010762269, -0.032188892, - -0.013552195, -0.015398245, -0.016096491, 7.9071877e-4, -0.020062096, - -0.0044438844, 0.022619396, 0.012498701, 0.01210969, -0.01138874, - -2.5677675e-4, -0.006567475, 0.005034889, 0.018045621, -0.004524777, - 0.01849663, -0.0065408843, 0.03812793, 0.019348957, -0.014611261, - -0.003899099, -0.005788969, -0.008496465, 6.3800304e-5, 0.0125214, - -0.009341579, -0.012340619, 0.005373807, 0.0016558458, 0.033771086, - 0.012180666, -0.029530155, -0.010135292, 0.0080497945, 0.0013877124, - -0.009107414, -0.01532219, 0.028127907, -0.021001477, -0.0015735433, - 0.012139215, -0.0128454, 0.015565229, -0.018045753, -0.005849584, - -0.03107202, -0.015114509, -0.002747059, 0.015530435, 0.016209893, - -0.012680892, 0.0018344523, 0.007756802, -0.012459861, 0.005289563, - -0.015117841, -0.008073253, -0.0070150993, -0.0054156063, 0.009666408, - -0.042965457, -0.011385537, 0.031145507, -0.0024626013, 0.0039013599, - 2.86121e-4, 0.009187342, -0.009704684, 0.0095960535, 0.009065712, - 0.00804188, 0.03987561, -0.006294226, -0.005356117, -0.0042174305, - 0.021682044, 0.0064178435, -0.01642643, 0.007994931, 0.019109648, - -0.020557616, 0.0041033947, -0.02015942, 0.006244682, 0.014072264, - -0.014712126, 0.011906309, 0.007679046, -0.018372301, -8.3328376e-4, - -0.0037982, 0.009770895, 0.0020614418, -0.005187112, 0.0048598633, - 0.014586186, 0.0123187695, 0.007234244, 0.0035535905, -0.0209003, - 0.013919474, -0.024139034, 0.0029185512, -0.011013583, -2.8353257e-4, - 0.021617778, -0.01464737, -0.017974148, -0.0032738051, -0.015522229, - 0.008238961, -0.003930081, -0.006145712, -0.0078624245, -0.007833561, - 0.015002194, 0.007753216, -0.0028915321, 0.011127981, 0.039520793, - 0.0024944118, -0.02416843, 0.032103166, 0.012624941, -0.035253186, - 0.009412143, 0.024919199, -0.011095315, 0.0069424147, 0.013533597, - 0.0039497823, -3.519941e-4, 0.019622924, -0.02602935, 0.0011603402, - -0.017508576, -0.008455385, 0.020289786, -0.013527747, -0.0019116868, - -7.757965e-4, -0.008473561, 0.01514006, 0.0110209165, -0.014357598, - 0.004769428, 0.0056183385, 0.004731754, -0.010353319, -1.8583889e-6, - 0.003083866, -0.0035514364, -0.009672776, 0.0088222325, -0.017202733, - -0.0115631595, -0.004506386, -0.02255497, -0.0169131, 0.0038107333, - 0.0020386416, 0.012985919, 0.018850055, 0.017582083, 0.009487027, - -0.017658532, -0.014136111, -0.0023569956, 0.015956994, -0.0025575657, - -0.017276686, 0.004320872, -0.015360134, -0.0017592403, -6.8163587e-4, - -0.011355452, -0.008447032, -0.018189602, -0.007647888, 0.011142969, - 0.0027869353, -0.0016966186, 0.0063373055, -0.021838898, -0.025302194, - 0.007934495, -0.020446947, 0.0034269148, 0.013830021, -0.011435638, - -0.012543825, -0.015702153, -0.0039758226, -0.0027123876, 0.010581049, - -0.022132175, -0.008032571, -0.018569624, -0.016557723, -0.017384646, - -0.039220717, 0.021440955, -0.01136712, 0.010248671, -0.0077033583, - 0.003757296, 0.004194124, -7.2008726e-4, -0.023203889, -0.008176382, - 0.00729043, 0.011671749, 0.011628127, 0.006934173, -0.0017511676, - 0.0014792008, -0.003096177, -0.012960937, -0.0060833893, 0.006084113, - -0.007102384, 0.0010002524, -0.01970963, 0.016458482, 0.033696454, - -0.029180096, 0.025072293, -0.009776864, 0.019173287, 0.008678832, - 0.026727503, -0.016745932, 0.011212355, 0.030875385, -0.017792756, - 0.0014954472, 0.01743193, 0.023673318, 0.017455263, 0.012632215, - -0.015425465, 0.015299738, 0.004408714, -0.0010588743, -0.0039445763, - -6.2150566e-4, 0.0018067982, -8.704892e-4, -0.004084272, 0.0036424198, - 0.009044638, -0.009735334, 0.02950757, -0.01711654, -0.023130687, - -0.01673993, -0.0054903, -0.010105576, -0.02311947, 1.212213e-4, - 0.010340542, 0.0032802683, -0.018127669, -0.005835045, 0.0169691, - -0.014564103, -0.01391392, 0.007319532, -8.820307e-4, -0.0018236743, - 0.006985548, 0.002010031, -0.011617137, 0.0016045378, -0.005492673, - 0.026631769, -0.011200776, 0.009984132, 0.0010288886, -0.0077312803, - -0.012947651, -0.001192995, -0.0034164106, 0.009922642, -0.018004358, - 0.021345874, 0.0027687922, 0.0101256035, -0.017155869, 0.007054852, - 1.1178896e-4, 0.023180695, 5.8404345e-4, -0.012206548, 0.01896181, - -0.0077215983, 0.016436344, -0.016202826, -0.009770933, -0.010355963, - 0.03604584, 0.009294652, -0.0042228545, 0.0071613053, -0.02816832, - -0.023936478, 0.0024917403, 0.009748471, -0.0072731692, -0.028315762, - -0.01609369, -0.01796616, -0.017099787, -0.0060678967, 0.017683156, - -0.0059389826, 0.004998553, -0.014926502, -0.030798638, -0.009886192, - 0.00488869, -0.011075079, -0.011000824, 0.01609992, -0.004409774, - 0.010324762, 0.0031017764, 0.016351415, 0.0040169805, 0.013247465, - -0.0093292, 0.009102775, 0.01762177, 5.3872314e-4, -0.014188151, - 0.0058332044, -0.002001171, -0.005924362, 0.014903216, -0.026753059, - -0.015013529, 0.0068288962, 0.0020057787, -0.022783035, 0.031821467, - 0.005203941, 0.015883438, 0.004428581, -0.001213746, -0.0046693836, - 0.0064281994, -0.014783728, -0.012639547, -0.016699078, -0.009300529, - 0.014135815, 0.011120902, -0.011804536, 0.019447902, 0.00915261, - -0.008894318, -0.010399408, -0.031592973, 0.013932947, 0.013090086, - 0.002366096, -0.030788124, 0.004356804, -0.015432191, 0.015514139, - -0.0061990474, -0.004893649, -0.009970553, -0.03246867, 0.0051120156, - 0.0060623167, 0.0016465768, -0.00965014, 0.0052238414, -0.005213982, - -0.015050108, -0.004073848, 0.0015154552, -0.012030538, -0.005211078, - -0.009118298, 0.01688459, -0.009523308, 0.0024874997, -0.01614711, - -0.002395485, 0.034853213, 0.0076027433, -0.009331507, 0.015178369, - 0.03247132, -0.015783083, -0.011010675, 0.0044995192, 0.035121445, - -0.0031187274, -0.009307691, 0.0036232774, -0.03716115, 0.02235989, - -0.01883768, -0.025446918, -0.0020441364, -0.021523455, -0.01402104, - 0.011571113, 0.0041645425, -0.022783834, -0.005926179, -0.002410378, - -0.030492205, -0.023419295, 0.031679433, 0.018502599, -0.011098155, - 0.02910922, -0.0070633055, 0.0026358014, 0.011421826, 0.0016068836, - 0.009714766, -0.033005465, -0.02067622, -0.009761125, -0.0077405768, - -0.0024875465, 0.016211033, 0.013640666, 0.009306056, 0.002482007, - 0.0048323777, -0.041028943, 0.005913811, -0.030151607, -0.022977795, - 0.02807795, 0.012977287, -0.02138978, -0.0049877884, 0.010917087, - 0.026291942, 0.0072403303, -0.032461133, 0.0038118893, 0.010159734, - 0.012044263, 0.012729937, 0.022954065, 0.021138113, 1.9766105e-5, - 0.0014214866, 0.020646693, -0.0062593594, -0.009710032, 0.032728277, - -9.80912e-4, -7.1847806e-4, -3.8902598e-4, -0.0049449834, -0.043872375, - 0.008562709, 0.011550372, 0.0030017302, -0.015763044, -0.044462606, - 0.010146452, 0.014873971, 0.011206625, 0.005080091, 0.016318683, - 2.4564087e-4, 0.014321978, -0.010540752, -0.0010449231, 0.0132548865, - -0.032701764, -0.0039493134, -0.031462457, 0.012802955, -4.955177e-6, - 0.0045687053, -0.0039604367, 0.014591876, 0.042170916, 0.0031265814, - 0.017085953, -0.0033536695, 0.009241995, 0.014495997, -0.031178277, - -0.010587523, -0.0030460458, -0.026158165, 0.010328055, -0.012098436, - -0.0029349679, -0.0015581538, 0.0127296075, 0.004330313, 0.008404808, - 0.01326941, 0.023307452, 0.0012476743, 0.0013967912, 0.0038951416, - 0.009553658, -0.0020868317, -0.01189966, 0.002277533, -0.016546719, - -0.012164499, -0.0034759697, -0.012008538, 0.022081204, 0.0048258197, - 3.548448e-4, 0.021361021, -0.002002234, -0.0014076943, -0.005948648, - -0.004604399, -0.013135362, 0.014845099, 7.6659746e-4, -0.010340437, - 0.018507808, -0.029067568, -0.024524208, -0.00546817, -0.0065047685, - 0.016072294, -0.0026392469, -0.01989506, 0.0070071006, -0.017486561, - -0.0244052, -0.012536073, 0.025810452, -0.00933139, -0.010019684, - -0.0052074934, 0.013434943, -0.005326633, -0.004192554, -0.0045501855, - -0.005562439, -0.0021441435, -0.014283848, -0.023496209, -0.0017857032, - -0.023771146, -0.002654032, 0.020571325, 1.754149e-4, 0.004318688, - -0.009496737, 0.029444555, -0.00564454, -0.0020156193, 0.0083466275, - -0.005572104, -0.015971491, 0.015348682, -0.004726857, -0.001617163, - 0.016889947, -0.009148892, -0.008535053, 0.0030010631, -0.0060314424, - -0.01928064, -0.019884916, -0.035158645, -0.015556377, 0.009020386, - 0.010122661, -0.007871135, -0.016419748, -0.0039002919, 0.0042239535, - -0.04718266, -0.010863816, -0.02424851, 0.012710194, 0.010762125, - 0.032731287, 0.018529534, 0.025406716, -0.0057096463, -0.0025640642, - 0.011436281, -0.00784009, -0.007738945, -0.016507452, 0.009749718, - 0.009012775, -0.0075253067, 0.0014775702, -0.0051936405, -0.0060895197, - 0.0028745485, -0.027936935, 0.031740457, -0.002041135, 8.5770123e-4, - -0.018845843, 0.014457461, 0.023963027, -0.0051797493, 0.034150925, - 0.0050044027, 0.025813594, 3.7404828e-4, -0.01034259, -2.1268883e-4, - 0.033957884, 0.0023081596, 0.005899519, -0.009482008, 0.010754252, - 0.018870147, -0.02632335, 0.0027171443, -0.017670833, 0.010362294, - -0.0017590527, -0.009722618, 0.0059263557, -0.038976215, 0.0056413943, - 0.010707208, 0.008999284, 0.01865967, 0.010348257, -0.030492796, - -0.008903016, 0.01388248, -0.0059139514, 0.012299262, 0.026027663, - 0.010494685, -0.027899705, -0.03295293, 0.0010997292, 0.009990931, - 0.003890115, -0.011869465, -0.012582261, 0.028462669, 0.0044637676, - -0.0062308707, 0.018096942, -0.009339275, 0.022470511, -0.012344964, - 0.0048138397, 6.15013e-4, 0.010011784, -0.01541098, -0.011749039, - 0.012048864, -0.007979452, 0.007383056, -0.0036817614, -0.008226379, - -0.029257758, -0.012797091, 5.93335e-4, -0.014206034, 0.004990722, - 0.01850215, -0.032217346, 0.014461935, 0.003523399, -0.013003719, - -0.002163563, 0.011098327, 0.014628077, 0.021037988, 0.030193813, - 0.021488031, -0.0018871088, -0.0103398105, -0.008425633, -0.015075896, - -0.02292123, 0.010057219, 0.010277042, -0.0023476523, 0.015209859, - -0.016301988, 0.01924631, 0.0033812786, -0.0037565792, -0.007722023, - 0.014147265, -0.007531373, -0.032259874, -0.013698509, 0.0065399, - 0.015276006, 0.00746709, 0.0017675905, 0.008436484, 0.012748642, - 0.0119434185, 0.004787873, -0.01324085, -0.010492434, 0.024613095, - 0.018411502, 0.0065406915, 0.0072057177, 0.011377662, -2.003491e-4, - 0.014058614, 0.0069924663, -0.01773907, -0.004774222, -0.0053313184, - 0.004595482, 0.0030917453, -0.004034392, -0.0031588504, -0.01215593, - -0.006040066, 0.007118619, 0.020530626, 7.572584e-4, -0.015040862, - 0.023935175, -9.316888e-4, 0.021469934, 0.010105709, -0.026552914, - 0.0028369664, -0.027448371, 0.01083417, 0.0024907417, 0.035877757, - -0.015120964, 0.0076242182, -0.012773672, 0.008744992, 0.015633808, - 0.01516537, 0.014837118, 0.005555723, 0.008987653, -0.002865456, - 0.009673555, 0.009650077, -0.005526916, -0.0013640352, 0.018208558, - 0.013225475, 0.017375192, -0.017611017, 0.011253896, -0.006482439, - 0.03745229, 0.0160535, -0.01393364, 0.017267084, 0.016296402, - 0.0015034076, 0.026257867, 0.0038923505, -0.02010534, 0.006487139, - 0.007841848, -0.003770781, -0.01051987, -0.02091813, -0.0054557575, - 0.027098026, -0.015379579, -0.003870162, 0.0016161571, 0.008962351, - -0.0054925657, -0.020915143, 0.002696143, -0.0020042593, -0.0067425584, - 0.016481495, 0.0031424223, -0.029015794, 0.004040891, 0.014835501, - 0.012718141, -0.004236207, 0.0034123927, -0.027961552, 0.020388579, - 7.856532e-4, 0.018250963, 0.01747801, -0.013146293, -0.0026741368, - 0.0095283715, -0.004434869, -0.013951703, 0.0038042634, 0.012018992, - -0.0031503418, -0.015841242, 0.0033732571, 0.016192526, 0.021819698, - 0.0027654527, 0.013430041, 0.01931577, -0.002879474, -0.0023599528, - -0.0026724278, -0.018661425, -0.011806101, -0.020593448, 0.013103924, - 0.018333238, 0.020344812, 0.043982167, 0.0112917125, 0.018934263, - 0.014473225, 0.011113398, -0.0213199, 0.002530115, 0.010511045, - 0.023053117, 0.01498007, -0.0118275955, 0.009995286, 0.012780655, - -0.0067095947, -0.0011973692, -0.002033663, -0.003161725, -0.009167819, - 0.019309167, 0.01049049, -0.0061429385, -0.007612418, -0.005824326, - -0.01336994, 0.022898166, 0.024241153, -0.013275213, -0.0033979404, - -0.011448128, -0.0038626606, -0.02065383, 0.0076448177, -0.01062802, - 0.01615147, 0.0150889, 0.024101812, -0.0015325373, 0.018959168, - 0.002427427, -0.010878933, -0.012162521, 0.033387303, 0.0058594304, - -2.3136364e-4, -0.022591038, 0.011942671, -0.0013239826, 0.019778075, - -0.006939861, 0.0303539, 0.018436028, 0.015501625, -0.017243894, - -0.015630504, -0.0062830197, -0.015313945, -0.016524019, -0.01577605, - -3.9546427e-4, 0.027949128, -0.009295582, 0.0030876098, -0.010269045, - 0.013596445, 0.01229703, 0.007816972, 0.017253458, 0.017426109, - 0.028742967, -0.017177299, 0.00549837, 0.016924692, -0.0014851135, - 0.007213798, -0.0020703545, 0.028735055, -0.0076774857, 0.02180317, - -0.00787756, -0.010890082, -2.5974886e-4, -0.010718697, 0.013158751, - -5.30734e-4, 0.0040815007, 0.0015181907, 0.008599273, -0.014768241, - -0.013988336, -0.012789675, 0.025831195, 0.010717447, 0.0054682214, - -0.029961662, -0.024190405, 0.0035546913, -0.007642441, -0.01112648, - 0.012124206, -0.019723687, 0.001521326, -0.0047457893, 0.037755437, - 0.01613622, 0.003369036, 0.016291792, 0.011048683, 0.02350994, - 0.013170627, 0.015877478, -0.011080709, 0.004212341, 0.00623279, - 0.023312032, 0.0071295127, -4.5692446e-4, -0.009682447, -0.011305833, - -0.008760691, -0.013609193, 0.0041982075, -0.00792585, 0.002431625, - 0.028374916, -0.0023977591, -0.0045066, 0.018736683, 0.02137463, - 0.009041343, 0.016652515, -0.021855164, -0.0011875189, 0.0010584102, - 0.0014325803, 0.002834273, 0.015826875, -0.012479821, -0.014134313, - 0.002370067, -0.03722236, 0.031357296, -0.006986435, 0.011352394, - 0.008470498, -0.0037757044, -0.017378736, 0.0065500187, -0.008238491, - 0.0050629443, 0.006371595, -0.013197133, -0.025900062, 0.013412814, - 0.03758589, 0.0120013, 0.016829254, -0.0013374814, -0.012420167, - -0.0043817125, -0.019356763, 0.0017399082, -0.008780265, 0.020774936, - -0.010746099, -0.00393576, 0.01684966, 0.005466645, 0.010587398, - 0.018060017, 0.00506802, 3.4846738e-4, -0.004921792, 0.0016616697, - -0.019677438, -0.009958166, -0.0077155815, -0.012097101, -0.009982581, - -0.012393226, -0.00515945, 0.013718807, -0.001768679, 0.014420681, - 0.010863619, -0.001790092, 0.014757513, -0.005403193, 0.0131833665, - 0.01945894, 0.01613427, -0.0360688, 0.028718935, 0.020813653, - 0.022634713, -0.0147639625, 0.009350917, -0.0045726215, 0.005639748, - 0.008455138, -0.009914812, -0.0040414175, -0.016357541, 0.0063996087, - -0.04907764, -0.037347157, -0.004628414, 0.028875727, -0.03400771, - -0.0055884966, -0.010652249, -0.03295951, -0.011507347, -0.030082418, - -0.005040632, -0.019152174, -0.015562589, 6.4518425e-4, 0.0031619016, - 0.015720304, -0.013752216, -0.008051381, -0.0034501124, 0.008529512, - 0.031907566, -0.0059830197, 0.0048256866, 0.016980754, 0.0074301567, - -0.007962242, 0.009192639, 0.009327729, -0.004534998, -0.021972934, - -0.015417976, 0.006617503, 4.3877264e-4, 0.005197056, -0.016614407, - -0.023957718, 0.005940432, 0.0151882265, 0.015095395, 0.006476154, - -0.0014939968, 0.017061517, -0.011266199, 0.0051720208, 0.0066859, - -0.0109983375, -0.028068447, 0.012292485, -0.010805679, 0.007105735, - -0.006321379, -0.0024815397, 0.019215018, -0.0032200515, 0.0010896402, - -0.0338814, -0.0071832566, -0.011649613, 0.017745227, -0.011109717, - 0.013170437, -0.020555057, -0.025210936, 0.023447923, 0.0021334914, - 0.03654135, 0.011606335, 0.018891122, -0.0038870235, 0.011297517, - 0.027575538, 0.006598254, 0.024882393, 0.0074038864, -0.0071750623, - -6.1143935e-4, -0.03717403, -0.0029672426, 0.01692463, -0.006358309, - -0.018672515, 0.015687156, 0.017099801, 0.017818404, -0.010352486, - -0.003601532, -3.1759782e-4, -0.024444977, -0.013907802, -0.0049034376, - 0.0045521525, -0.0017210039, 0.03153119, 0.0244149, -0.020250002, - 0.005652052, -0.023397878, 0.0104261385, -0.013819894, -0.009930446, - 0.007005632, 0.036974322, 0.010979594, -0.009163701, 0.0033746234, - -0.0020686898, 0.013722712, -0.01480839, -0.0067670275, 0.011504313, - -0.014707123, -0.012075545, 0.005182695, 0.012908299, 0.0034663281, - -0.0013942274, 0.009743045, -0.030249463, -0.029366117, -0.016509267, - -0.022425758, 2.810728e-4, -0.016711676, 1.0887618e-4, 0.015473771, - -0.0012365957, 0.014570489, -9.981827e-4, 0.018726498, 0.008145136, - 0.0031847465, 0.008054184, 0.0013654715, 0.0020032122, 0.0027826712, - -0.0059701065, -0.02334574, 0.0035505665, -0.021743061, 0.0043452503, - -0.0013923116, -0.016685925, -0.014275719, -0.007834896, -0.008350993, - -0.010397694, 0.009918167, 0.023797916, 0.011810731, 3.413577e-4, - -0.0039863796, 0.03620874, 0.015867442, -0.0061619724, -0.012437385, - -0.027056519, -2.4020304e-4, 0.01342225, 3.275186e-4, 0.026393844, - -0.013637469, -0.012511584, 0.0021468925, 0.016704893, 0.029331883, - -0.015911698, -0.016442254, 0.0039913547, 0.010994189, 0.0011589432, - -0.011223683, 0.012927621, -0.017741453, 0.004736957, 0.0051856944, - -0.023756126, 0.0068506165, -0.013376497, 0.002619423, -0.0042212624, - 0.007107476, 0.016793918, -0.003821446, 0.018972537, 0.008877552, - -0.016160753, 0.014334503, 0.00894175, 0.019085968, 0.008716945, - 0.001985866, -0.008867979, 0.0017741123, 0.030645197, -0.0052039092, - -0.0072595556, 0.018968321, 0.021121949, -0.011165127, -0.025544027, - -0.030341463, -0.018945774, -2.2583366e-5, -0.021158168, -0.017624272, - -0.0029726587, 0.023974266, -0.006413436, 0.015390918, 6.968277e-4, - 0.0042846235, -0.009838018, 0.008811575, -0.009256407, 0.010118519, - 0.01359743, 0.01931018, 0.009404415, -0.0074166204, 0.0032750757, - -0.018016756, -0.020766376, -0.01003571, 0.027816325, -0.0070696254, - -4.6056975e-5, -0.027953606, -0.021632882, 0.0014673114, 0.0052625043, - 0.004030351, 0.0011912696, 0.028202018, -0.0068009607, 0.005353029, - 0.013492781, 0.007195247, -0.028505947, 0.022913398, -0.020636054, - 0.0033618717, 0.010250657, -0.0022538041, -0.023034515, -0.002862878, - -0.014398411, 0.017690776, -0.008649956, 0.0030113403, 0.009262477, - 0.032077286, 0.010750025, -0.010909247, -0.01303731, -0.004524088, - -0.023986176, 0.036893237, -0.006808271, 0.02040499, 0.002545973, - 0.019331906, 0.01587159, -0.008108196, -0.031494115, -0.03046361, - -0.009349014, 0.0034179701, 0.0015364927, -0.0031044823, -0.0020231616, - -0.018536009, -0.012478087, -0.0013510108, -0.008109079, 0.0033028119, - 0.01728236, 0.02303072, -0.001510887, 0.010633254, -0.03167532, - 0.0085484935, -0.03675898, -0.014634933, 0.006288821, -0.0033772714, - 0.020223398, 0.014112857, 0.027670855, -0.004524879, 0.020318765, - -0.014543406, -0.022942375, -0.016161347, 0.006513251, -5.687047e-4, - 0.008288773, -0.0072652856, 0.0023848019, 0.015119768, -0.014809251, - -0.002650282, 0.0025160937, -0.015556508, 3.5326614e-4, -0.017463323, - 0.007503659, 0.014454348, 0.02431367, -0.018550018, 0.004720637, - 0.012076711, -0.027302606, -0.018602125, 0.013361851, 0.0016407882, - -0.0070778993, -0.020205941, 0.0036817524, 0.007959939, -0.01673634, - 0.010467304, 0.011438326, -0.02207751, -0.0055793985, 0.014971184, - -0.015851425, 0.0037755289, 0.032749258, 0.0011793968, 4.268065e-4, - -0.0073945555, 0.0010349054, -0.010476226, -0.019146523, -0.0017611386, - 0.0075820466, 0.011243293, -0.009004612, 0.006079132, -0.051413734, - -0.014775977, 0.014524949, -0.025932759, -0.0038887572, 0.0071032406, - -0.0050259214, 0.045308787, -0.0172679, -0.02248401, -0.004696684, - -0.015990881, -0.0045101857, 0.024794891, -0.007631902, -0.017372184, - -0.0014828978, 0.0074447226, -0.015326323, 0.01258782, -0.0049949023, - -0.022124484, 0.010130967, 0.012686418, -0.003813422, -0.010448206, - -0.02211672, 0.004927372, 0.013010012, 0.00627598, 0.016086617, - 0.013545466, 0.004956244, 0.0041435957, -0.0030624077, -0.001884342, - 3.4869328e-4, 0.019975822, 2.5202433e-5, -0.009071724, 1.0403681e-5, - -0.023692898, 0.0073135686, 0.018652966, 0.0013342071, -0.004579384, - -0.010525888, 0.0094025945, 0.004602367, -0.011823981, -0.015546013, - -0.007867893, -0.012874075, -0.013685112, 0.022935562, 0.010851871, - -0.028863432, -0.005674024, 0.024204446, 0.008631713, -0.019615063, - 0.021165902, 0.0048212702, 0.017740332, 0.01673602, -0.0075626504, - -1.4971055e-4, 0.010546141, -0.018392503, -0.027130084, -0.006932061, - -0.027207935, 0.0031705995, 0.028523674, 0.012802287, 0.008678415, - -0.0066588237, -0.029802693, -0.005464218, 0.01332791, 0.028461326, - -0.0016814441, 0.009237371, -0.016045796, 0.014135235, -0.0072358586, - 0.0150272045, 0.025637126, -0.012549307, 0.018691136, 0.016460033, - 0.021213472, -0.018416345, 0.012420373, -0.0042092097, 0.01020809, - -0.005064122, -0.03034532, -0.02472056, 0.0061066975, 0.015144594, - 0.025102062, 0.008808969, -0.008129663, 0.0025970493, 0.01407284, - -0.017569743, -0.021658497, 0.012633868, 0.032988045, -0.0017043939, - 0.0177645, 0.0016266282, -0.0063117226, -0.012699819, -0.0017599167, - -0.015444788, 0.012869913, -0.03589626, -0.012102075, 0.010551936, - -0.024765482, 9.895221e-4, -0.0035336872, -0.03921717, -0.011197652, - -0.03663346, -0.007015772, -0.019316994, 0.009907305, -0.0039060505, - 0.018506339, 0.026046496, 2.58244e-4, 0.018450286, -0.0124838315, - -0.0020485928, -0.004977085, -0.022824928, 0.013678872, 0.0037703586, - -0.008894577, -0.01768214, -8.099877e-4, 0.016764635, -0.02431459, - 0.011283299, -0.013072398, 0.006756631 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0026872952, -0.0346588, 0.014947589, -0.012513772, -0.003697902, - -9.877245e-4, 0.024240252, -0.005834232, 0.023305925, -0.010348881, - -0.0104335025, 0.014882276, 1.1186406e-4, 0.009956427, 0.006941183, - 0.014751671, -0.017843897, 0.012532932, -0.012982817, 0.01596263, - 0.021658497, -0.0018844497, 0.0095108645, -8.586518e-4, 0.014196391, - -0.014353736, -0.004988902, 0.006135053, -0.016541382, -0.0011922457, - -0.018080708, 0.0217977, 0.0053245593, -0.0034456416, 0.0034360115, - 0.008999913, -0.0070759356, -0.004039604, 0.0020049023, -0.026836304, - 0.04552928, -0.0074819806, -0.004138263, -0.009252731, 0.025664737, - 0.016584216, 0.015421994, 0.02355763, 7.904561e-4, -0.015168349, - -0.0011502638, 0.0021365765, -0.030118613, -0.018293034, -3.7947163e-4, - -0.015099384, -0.002637052, -0.021413453, 0.005378499, -0.011991331, - -0.0061323848, -0.0140787, 0.012056411, 0.001345463, 0.004519732, - -0.005390279, -0.009537449, -0.013016441, -0.0068193753, 0.012021754, - 0.0052241418, -0.010558754, 6.583921e-4, -0.0077945786, 0.005734694, - 0.013747826, 8.728519e-4, -0.012438094, -0.0028996044, 0.01572402, - 0.0060590357, -0.0040563503, 0.009666814, 0.0040105395, 0.0059152935, - 0.017680483, -0.0012581258, 0.03405533, 0.008679745, -0.009328028, - 0.0022450124, 0.011930075, 0.015971195, 0.020873796, 0.0011449577, - -0.017823009, -0.0019303388, -0.0021748308, -0.009616828, -0.005180235, - 0.005935311, 0.005882117, -0.0179591, -9.982825e-4, 0.0046249037, - -0.023209885, -0.0018356944, 0.015916988, 0.0025123733, 0.02045091, - 0.010405648, -0.028384198, 0.0034639942, 0.018262366, 0.027448015, - 0.010745727, 0.019987203, 0.02376694, -0.0060660793, -0.029598465, - 0.011511121, 0.008979806, -0.0024463471, -0.02919812, 0.0066023315, - -0.012164904, -0.017646516, 0.0052097715, -0.0020836326, -7.927517e-4, - 0.002695447, 0.017475698, 6.6081545e-4, -0.014489292, 0.023919515, - -0.012759231, -0.0038474612, -0.006582283, 0.00433767, 0.00470694, - -0.006502772, 0.017468046, 0.016194705, -0.006868031, 0.030745314, - 0.0015416815, -0.011085033, 0.00559775, 0.0012632597, -0.012528974, - 0.0105009, -0.007193751, -5.6843786e-4, -0.019127993, -0.0013306568, - 8.9948974e-4, 0.023644945, 0.024213785, -0.0044438047, -0.0013999098, - -0.014921997, 7.891285e-5, -0.021821694, 0.015534011, -0.007806231, - 0.012213905, -0.0014537913, -0.010423607, -0.0018820066, 0.0018319996, - -0.0045391736, -0.008585541, 0.010381236, 0.036175262, 0.008677062, - -0.020104662, -0.0029745107, -0.022634953, 2.6783164e-4, -0.009881597, - 0.019655814, 0.023721894, -0.016212335, -4.3076844e-4, 0.016015988, - -0.0030060923, 0.010992007, -0.020869093, -8.624013e-4, -0.0030212463, - -0.02356963, 7.245162e-4, 0.013248567, -0.010020664, -0.001288284, - -6.811475e-4, -0.0044718846, 0.0143843945, -0.007697793, -0.007389702, - -0.0041714218, 0.012770415, 0.022955276, 0.024048636, 0.010883809, - -0.015158976, 0.0102009475, 0.024993874, 0.0062887706, 0.008403527, - 0.019404983, -0.0049618096, -0.0033042347, 0.0064930716, 0.02212524, - 0.017699959, 0.02161801, 2.9639938e-5, -0.017518692, 0.022735301, - 0.02473228, -0.010313516, -0.0054601324, -0.0035963566, -0.019003648, - 0.0063757356, 0.035807136, -0.004843092, 0.021061365, 0.024988975, - 0.017116044, 0.0071134716, 8.562344e-4, -0.020759089, 0.005582613, - 3.0338072e-4, -0.018105952, 0.005011048, -0.025334185, -0.013262609, - 0.010807153, -0.006942495, 0.0045351065, -0.02382624, -0.012180938, - -0.009629073, 0.024079498, -0.0056536105, -1.1889714e-4, -0.021595588, - 0.021939691, -0.004701575, 0.008456483, -0.009595554, -0.030850662, - -0.004733553, -0.020094503, 0.017342178, -0.005192158, 0.027009811, - 0.026828384, -9.366298e-4, -0.005795462, -0.017304644, 0.0040508355, - 0.026669322, 0.027734932, -0.021115994, 0.0038383405, -0.015153318, - 0.033503857, 0.013468434, -0.008716519, -0.018960021, 0.014472921, - 0.024788255, 0.020346241, -0.013253845, 0.014737918, 0.015018191, - -0.0016448791, 0.028779149, 0.015939884, 8.5951714e-4, 0.021206055, - 0.0070937937, 0.004662447, 0.008570024, -0.008711192, 0.014230913, - 0.005962064, 0.0064994385, -0.017528377, 0.014778529, 0.0042996793, - 0.0036443446, 0.015126462, 0.010834252, -3.4585912e-4, -0.004800012, - 0.0015156001, -0.005574541, -0.0060227686, -0.017906789, -0.007039356, - 0.010629928, -0.0026888042, 0.018589007, 0.014393433, 0.015007506, - 1.8723986e-4, 0.005905519, -0.0012098575, 0.011304756, 0.0056405836, - -0.007964982, 0.030652871, 0.017120024, -0.009204205, -0.0038546317, - 0.0040230476, -0.017738884, -0.0037475561, -0.01502365, 0.0012568606, - -0.01341437, 0.019726949, -0.013889954, -0.025116429, 0.013280468, - -0.013311989, 0.014756266, -0.0155307315, 0.013504634, -0.013662188, - -0.020610932, 0.014998562, -0.0058821593, 0.020912709, 0.010230432, - -0.024303954, -0.004812049, 0.011194759, 0.004957899, 0.0021380023, - -0.020244101, 0.014089117, -0.006362577, 0.011931267, -0.008983066, - 0.020357361, -0.0075439606, 0.006935826, 0.008440856, 0.0014346876, - 3.1427192e-4, 0.01593203, 4.9828336e-4, 0.005754214, -0.0020418272, - 0.0021943673, -0.011017899, -0.0058469544, 0.0053867567, -0.0055331215, - -0.0036109968, 0.010690061, -0.021065578, -0.013511204, -0.009763855, - -0.008698488, 0.00872089, -0.018542025, 0.020329298, -0.0065384316, - 0.00601436, 0.003959548, 0.03729727, -0.0052915765, 0.026838476, - -0.029013224, -0.022764882, -0.026108418, -0.0015204727, -0.0030539082, - -0.009124607, -0.020661352, 0.009783129, -0.023226699, 9.459122e-4, - -0.016011823, -0.007874637, -0.005013914, 0.004511502, 0.023331802, - 0.014207145, 0.026297154, 0.0021844192, 0.018377883, 0.00928969, - -0.01278369, -0.0023044257, 0.017765196, -0.008999509, 0.004240232, - -0.010729481, -0.004077722, 0.014499078, 0.023767032, 0.0031623403, - 0.009807087, 0.023901122, -0.0029471933, -0.018239712, 0.022974428, - -0.012628955, 0.0011833935, 0.0018516347, -0.024565162, -0.012248842, - -0.010976994, 0.009455724, -0.004016185, 0.025348352, 0.018289901, - 0.011707352, 0.011249385, 0.0023833292, 0.0367161, -0.008373664, - 0.0046081943, -5.3306785e-4, 0.017306855, -0.026576828, -0.017625425, - -0.0043024505, -0.01787212, -0.014251227, 0.006498333, -0.0064325435, - -0.02268254, 0.015099823, 0.012598747, -0.0016323086, 0.0069215125, - 0.019369883, 0.03623859, 0.0059999293, -0.021243382, -0.019976387, - 0.018523082, 0.024445258, 0.018682405, 0.029946446, 0.013402806, - -0.0019104276, -0.023757393, -0.004964753, -0.011334662, 0.0065094843, - 0.002248042, 0.011862797, -0.017568056, -9.686982e-4, -0.010216583, - 0.007326306, 0.031904858, 0.016230538, -0.009515975, -0.0018377298, - -0.008096848, 0.035420287, -0.021348083, 0.0075405003, 0.00272465, - -0.023439689, -0.002243008, -0.0143617755, 0.036892656, -0.00848853, - -0.00964138, -0.02069784, 2.5987534e-5, 8.455836e-5, -0.040560704, - 0.017186804, 0.005559212, 0.008586091, 0.0055706766, -0.00760778, - 0.005800499, 0.004170807, 7.436258e-4, 0.0037722657, 0.024678051, - 0.018873373, -0.0021779123, -0.048783697, -0.026035314, -0.01151255, - 0.011229489, -0.026264517, -0.010918258, -0.020585654, -0.0062605725, - 0.018538304, -0.01792969, -0.008344557, -0.016182052, 0.007306452, - 0.004523048, -0.034869652, -0.0051226234, 0.008072458, -8.342638e-5, - -0.029051404, 0.0038828647, 0.003109044, -0.017812341, 0.007090039, - 0.0017541284, -0.012367008, -0.007334608, -0.017872078, 0.011344351, - 0.0014488779, -0.003280308, -0.0063266903, 0.007301119, 0.014362836, - -0.017169433, -0.0048894747, 0.015301462, -0.027114384, -0.022949826, - 0.01115794, -0.004365199, 0.003924881, -0.0010617985, 0.0036021995, - 0.007797522, 0.012304328, -0.001988162, -0.014274941, 0.0200679, - -0.010157888, -0.0013192534, 7.5557065e-4, -0.002008025, 0.03720219, - -0.013784626, -0.011885597, 0.0071839876, 0.0086213155, -0.008517371, - 0.018088007, -0.009331503, -0.0039003326, -0.007675943, -0.017044581, - 0.023391774, 0.018450934, 0.041191213, 0.008893556, -0.02811723, - 6.6668406e-4, 0.022358669, -0.005839105, -0.014414949, 0.0016379233, - 0.00935183, 0.011281511, -0.04464188, 0.007136717, -0.0067110406, - 0.008054616, -0.013883602, 0.016070733, -0.008475619, 0.014385353, - 0.024634613, 4.43354e-5, 0.00825992, 0.0074463724, -0.0018231941, - 0.023633292, -0.008458268, 0.014340001, -0.0037015479, 0.017207991, - 4.1810639e-4, 0.0022742343, 0.023593795, 0.01440389, 0.0031145946, - 0.018261496, -0.0062296637, -0.025302075, -0.035929214, -0.005029078, - -0.0016408372, -0.011087943, -0.010538016, 0.02464925, -0.01726317, - -0.014977659, -0.017307596, -0.015033339, -0.004523026, -0.036836524, - -0.033274565, 0.012710072, 0.0030547203, -0.018303363, -0.0031030527, - 0.013649279, 0.01792779, -0.01845803, -0.0013204515, -0.010386628, - 0.001331218, -0.007669859, 0.016393336, -0.009222696, 0.0039096833, - 0.010160129, -0.025110643, 0.010107039, 0.0069396757, 0.011426486, - 0.010244766, -0.006522078, 0.014312287, 0.014942011, 0.0077269943, - 0.0022963684, -0.0151924975, 0.01921392, -0.024477212, 0.02924844, - -0.0108127305, -0.003600804, -0.01584137, -0.005911975, -0.01711617, - 0.01456812, -0.0030446853, -0.013163837, -0.016226163, 0.028403483, - 0.02111766, 0.009639921, -0.009067109, 0.00770471, -0.0024557102, - 0.0017807389, -0.0010431451, 0.02291158, 0.022457987, 0.007840934, - 0.009349212, -0.0034746164, -0.004751508, -0.00489206, 0.0035768857, - 0.02182639, 0.02263703, -0.017152552, 0.02817345, -0.02692771, - 1.2632147e-4, -0.0049753604, -0.0026795175, -0.017173577, 0.040553886, - 0.0044716764, 0.035027217, -0.0012564388, -0.021915546, 0.0069989576, - -0.017149268, -0.023367783, 0.0060648485, 0.015762784, 0.008961436, - -0.0060516964, -0.008768343, 0.012630372, -0.005661596, -0.011275772, - -0.012401908, 0.025654607, -0.005697681, -0.002868576, -0.0076926826, - -0.025737593, 0.015992507, -0.00147518, -0.006822416, -0.007047253, - 0.018374057, 0.014398589, -0.020514265, 0.0035748635, -0.012977059, - 0.015381585, -0.016182335, -0.014108014, 0.0133400345, 0.003618666, - -4.7377936e-4, -0.005864849, 0.029327739, -0.018672979, -0.016829304, - 0.036974568, -0.018352872, -0.011730079, 0.010500086, 0.0155605925, - -0.0043597086, 0.019314429, 0.0014963791, 0.0067327465, -0.020407999, - -0.0012195765, 0.0045324652, -0.0026440807, -0.01956283, 0.016354946, - 0.009591111, -0.016610702, 0.026480297, 8.127564e-4, -0.021660361, - -0.0019614818, -0.004176281, 0.013558047, 0.007233561, 0.01564436, - 0.008863078, -0.009064311, 0.0058878544, 0.023056913, -0.008118279, - -0.015535738, -0.018842781, 0.009131361, -0.02380882, 0.010085247, - 0.018693246, 0.03442058, -0.008898678, -0.0075244317, 0.015441704, - -0.019196782, -0.007371702, 0.0064369487, 0.0046368777, 0.02630805, - -0.02258677, -0.00825791, -0.02122613, 0.01882533, -0.022870017, - 0.01072808, 0.005317323, -6.179431e-4, -0.023545923, -0.02187025, - 0.016931523, 0.0016896686, 0.02450697, -0.009218235, -0.019460807, - 6.115982e-4, 0.008754095, 0.013638579, 0.016801814, 0.00893578, - -0.0036598318, -0.04249087, -0.008491445, -0.0063020075, 0.0015902495, - -5.0706934e-4, 0.0185819, -0.0029320035, -0.015221136, 0.007905485, - 0.0040251943, 0.006014227, 0.025448816, 0.02369345, 0.008281779, - 0.011373305, -0.03185558, 0.011010058, -0.010346258, -0.008537592, - 0.013482458, 0.0055188765, 0.0017568377, 0.00449998, -0.0068961703, - 0.02573934, -0.012857106, -0.008060775, -0.017632004, -0.0022661702, - 4.6593157e-4, -0.022751939, 0.0010670176, 0.007529801, -0.024750106, - -0.034083124, 0.016301965, -0.012583267, 0.0035349883, 0.003633015, - -5.9885933e-4, 0.007925115, 0.008319077, 0.03559177, -0.013211698, - -0.011321568, -0.031014953, -0.01528564, 0.017061893, 0.034352697, - -0.0077711185, 0.006852952, 0.0031422528, -0.0095062135, 0.003330172, - -0.013085466, -0.008453969, -7.3179515e-4, -0.02886988, 0.006549819, - -0.018139204, -0.014804015, -0.011251502, 0.0074016955, -0.008676626, - 0.017114092, 0.0068585053, -0.004258315, 0.023823887, -0.01760007, - -0.042846847, -0.021169178, 0.014008495, 0.0054340176, 0.008555632, - -0.005361937, -0.014672247, 0.009995092, -8.182316e-6, 0.0026554451, - 0.011183985, -0.014393757, 0.03129887, -0.003816672, -0.01377952, - 0.024179399, 0.0036961006, -0.008901892, 0.013466378, -0.012951285, - 0.007819427, -0.013087759, -0.008939356, -0.0030810006, -0.00739607, - -2.4062244e-4, -0.02254759, 3.3834207e-4, -0.008214367, 1.9650947e-4, - -0.008952102, 0.016340844, -7.2939985e-4, 0.013025889, -0.004949153, - 0.031348575, -0.002370898, 0.008485017, 0.0048878314, 0.0011715181, - -0.0131391175, 0.012838514, -0.019679273, -0.0032418799, 0.015940992, - -0.013132969, -0.010093583, -0.009150493, 0.015463588, 0.019191137, - -0.036343873, 0.01843134, 0.022161044, -0.01325682, 0.016282786, - 0.031239409, -0.006701694, 0.040160593, -0.00846193, 0.0016915743, - -0.0055225138, -0.009576373, -0.004502782, -0.009952295, -0.004569924, - -0.00663693, -0.023044165, -0.0046632187, -0.007612404, -0.011727411, - 0.0032230627, -0.019521756, -0.0151919555, -0.0012887616, 0.033861335, - 0.0031702034, -0.018407919, -0.0068489444, -0.006116606, 0.023538101, - -0.006692106, -0.0054854536, -0.0047196243, -0.0061214557, -0.00802255, - 0.006871854, 0.009588854, -0.009457494, 0.023800755, -0.0046853875, - 0.020944975, 0.014407688, 0.014281763, 0.010831981, 0.014675392, - 0.0019883283, 0.026629824, 0.004189133, 0.0022507112, -0.002192242, - 0.037377007, 0.013738132, 0.020760212, 0.0050018, 0.02865498, - -0.0045363675, -0.011605067, 0.0035945205, 0.022723889, -3.5629483e-4, - 0.006932749, 0.026368005, 0.007298938, -0.012684279, 0.015243581, - -0.0017750392, 0.004181233, -0.004185058, 0.0023313118, 0.0124887815, - -0.0011434482, -0.024471147, 0.023080844, -0.013711305, -0.00792741, - 0.005246998, -0.02283714, -0.002926729, -0.04337374, 0.007283075, - 0.031541906, -0.009529059, 0.057377476, -0.031102924, -0.014278434, - -0.020412872, -0.005341796, -0.012114268, -0.015774501, -0.0081006875, - -0.033497013, 3.7366842e-4, 0.008933989, -0.0044457037, -0.006651133, - 9.537265e-4, 0.038271558, -0.008771945, -0.016787801, -0.0011401726, - -0.012415001, 0.015877528, 0.0041807694, -0.0012744687, 0.009948668, - 0.026213985, -0.02007118, 0.013589589, -0.012674955, -0.024963, - 0.011569147, -0.014494184, -0.019327804, 0.012964804, 0.0028873633, - 0.0038003067, 1.9492474e-4, -0.005801163, 0.03859362, 0.02292448, - 0.0067358273, 1.9680368e-4, 0.0047769523, 0.010454454, -0.020463547, - -0.0102435425, 0.024243169, 0.009450445, -0.009091169, 0.019150924, - -0.036567688, 0.019322652, -0.0043703583, -0.0017721945, 2.3425097e-4, - -0.021370698, -0.00242872, -0.025341371, -0.0020852184, -0.02060934, - -0.029011363, -0.0013194949, -0.029383607, 0.008344942, 0.002497097, - 0.010518216, 0.017156959, -0.033682697, -0.008037213, 0.0024575926, - 0.002383663, 0.002268739, -6.5830303e-4, 0.03378643, 0.00428432, - -0.012046221, -0.015241182, 0.009071433, 0.015254969, 0.026495816, - 0.017713845, -0.0014426855, 0.0049523246, -0.0095229605, 0.0029345714, - 0.025386952, 0.013324126, 0.0143662635, 0.0033796462, 0.025713312, - 0.0183031, -0.0022751002, 0.007405053, -0.009098975, -0.01863113, - -0.008126933, -0.010315537, 0.008953448, -0.026870854, -0.008323781, - -0.028647376, 0.008482754, -0.025994144, -0.009352229, -0.028896444, - 0.0015052106, 0.016142258, -0.0022086515, -0.0012520038, 0.006720527, - 0.014484693, 0.0013567518, 0.01018329, 7.938374e-4, 0.010618533, - 0.0026338615, -0.0075351023, -0.015021252, -0.011843458, -0.013173832, - 0.019034669, -0.0056274524, 0.015534413, -0.01547031, 9.556256e-5, - 0.00658511, 0.017193798, -0.0039141714, 0.012328013, 0.041818976, - -0.005443511, 0.012206681, -0.006197999, 0.024261566, 0.014703624, - -0.014406095, 0.01089175, 0.0071796654, -0.013220446, -0.0030627064, - 0.0024273873, 0.015765887, -0.016368598, -0.022143805, -0.041435853, - -0.0025022512, -1.9789714e-4, 0.008335962, -0.02582671, 0.02012167, - 0.0032119523, 0.021528859, 0.02235249, 0.00593079, -0.0146648325, - -0.036471024, 0.0017243634, -0.010209929, -0.0043080216, -0.0073680365, - 0.0044479193, 0.0037584342, 3.3862708e-4, -0.013125963, -0.011781045, - 0.017803589, -0.014201649, -0.014252153, 0.032477826, 0.007634301, - -0.004232186, -0.038615394, -0.03146584, 0.016181344, 0.012660423, - 0.019920794, -0.0055844905, -0.003814988, 0.01346013, -0.0045853355, - -0.017542763, 0.0054796725, 0.013672564, 0.029903555, 0.0035751648, - -0.02819487, -0.016431333, -0.036718704, -0.00985506, -0.0063011283, - 0.0055213813, -0.016517252, 0.026277894, -0.029549219, 0.00951433, - -0.020007368, -0.011033768, 0.0085052885, -0.009673416, -0.022586698, - -0.014002135, 0.012418497, -0.0036210676, -8.707915e-4, -0.002694216, - -0.023788137, -0.0073109353, -0.042570665, 9.694888e-4, 0.033087485, - -0.004784094, 0.012563729, -0.016038327, 0.0013216463, 0.005481097, - 0.026375242, 0.0036267105, -0.0017527582, -0.004638134, -0.0072066532, - -0.0064912974, -0.008477488, 0.0027912203, 0.007539145, -0.0017308827, - 0.0062717055, -0.0124120265, -0.019455394, -0.027401147, 0.013827237, - 0.008308141, -0.011352635, -0.0016959656, -0.00913103, -0.010058742, - 0.017415168, 0.016619004, 0.003077083, -0.002540727, -0.023908312, - 0.002506694, 0.009680956, -0.01080465, -0.03063589, 0.02330437, - 0.01022991, 0.005852986, 0.00527033, 0.012859296, -9.790394e-4, - 0.0014892444, -0.022615682, -0.0060260384, 0.017211085, -0.0021890826, - 0.011231672, 0.012571527, 0.010776057, -0.009288555, -0.0012679542, - 0.029142875, -0.004725237, 0.016980227, 0.003713012, 0.006920412, - 0.0048488635, -0.008042116, 0.011722918, 0.016596064, -0.011106528, - -0.016658176, -0.02011486, -0.021992944, -0.0291051, 0.024048874, - -0.03925934, 0.016986974, -0.017570337, -0.010766656, -0.028169164, - -0.009613276, 0.006677991, 0.019221267, 0.0095782, -0.019889982, - 0.005042452, -0.0027771655, 0.003314839, -0.018752497, 0.023440517, - -0.026413158, -0.003793754, -0.012495133, -0.013428281, 0.011619027, - -0.024342991, 0.004037869, -0.015082068, 0.015514109, 2.2595799e-4, - 0.023094103, -0.023383316, -0.004093122, 0.008165681, 0.0030527394, - 0.02235244, 0.0040478515, -0.028671851, -0.0010972203, 0.0035440286, - 0.00881404, -0.0038361133, 0.04048562, 0.019101998, -0.0015821654, - 0.001624806, -0.009321454, -0.023275152, -0.016607104, 0.019282963, - -0.0145415105, -0.019591495, 0.004735066, -0.017066302, -0.030757377, - 0.018055608, -0.016987452, 0.03104787, -0.011754277, -0.009358196, - 0.019789604, 0.013957669, -0.013064806, 0.02210083, -0.004523457, - 0.0075394674, -0.003395248, 0.0031692744, -0.008509054, 0.018005973, - -0.0038378735, 0.016163101, 0.012509874, -0.0021609045, 0.016528845, - 0.010763389, 0.00978827, -0.031188725, 0.018413747, -0.026010066, - -0.0031428451, -0.013741768, 0.0148134725, 0.02194646, -0.0055358736, - 0.017759047, -0.01825208, 0.0078657735, 0.010287367, -0.03437134, - 0.018525936, 0.0057301545, -0.012463758, -0.007919113, 0.0038434828, - -0.010988716, -0.0042443327, 0.0011409878, 0.0017554202, -0.029490422, - -0.030672146, 0.006324633, -0.002374538, 0.012450878, 0.009574921, - 0.029895786, 0.01633599, 0.014717116, -0.00952917, -0.005827629, - 0.004737215, 0.004016261, 1.504233e-4, 0.0022762085, 0.013018235, - -0.011338002, 0.018789712, -0.0016145832, 0.0051228753, -0.022826275, - 0.015798781, -0.0064816726, -0.03270125, -0.02139976, -0.006662011, - -0.01357753, 0.009230964, 0.0048730043, 0.012537166, 0.025161758, - 0.0455307, 0.014153104, -0.031754185, 0.007964172, -0.012648053, - 0.0020102982, -0.01107024, 0.00627471, -4.0975388e-4, -0.007117033, - -0.019303199, 3.8762967e-4, -0.002723496, -0.016574489, -0.03110626, - -0.009599041, 0.030009754, -0.016623506, 0.0045691286, -0.0070070904, - 0.012183117, -0.0050097997, -5.084371e-4, -0.0047649965, -0.0183807, - 4.6217765e-4, 0.009571653, -0.02008101, 0.00216833, -0.0029440986, - -0.0032686081, 0.0044696312, -0.004285961, -0.017681552, 0.02032214, - 0.007889249, 0.009253179, 0.01342385, 0.012864673, -0.0127335545, - 0.03082668, 0.013912446, -0.009105856, 0.0061938316, -0.02687885, - -0.009328944, 0.025949748, -0.010055136, -0.0022696236, 0.0013694129, - -0.0025504588, 0.0077711656, 0.0035221558, 0.0021894746, -0.015344578, - -0.0055966214, 0.0067749014, 0.01308831, 0.006721873, -0.0012595187, - -0.020537768, -0.0067673866, 0.023059294, 0.051374447, -0.025288917, - 0.002022361, -0.0057422672, 0.015301635, 0.009107995, -0.0073175, - 0.008300375, -0.02515749, 0.012805308, 0.0047843354, -0.0027498868, - 0.020046404, -0.0012589869, 0.008454622, 0.001580031, 0.011380621, - 0.005997778, 0.02438212, 0.011987331, -0.012063553, 0.0042530727, - 0.010062241, 0.0142452745, -0.012068612, 0.018162811, -0.039320394, - 0.0038295807, -0.013015934, 0.031085012, -0.0017951495, 0.020736353, - 0.020921782, 0.026734553, 0.013223479, 0.016310396, -0.020376517, - -0.005701975, 0.011188146, 0.0048744017, -0.0064097745, -0.015554725, - 0.027497632, 8.1475574e-4, 0.0010461295, -0.0127134, 0.015086598, - 0.042688597, 0.013834296, -0.008989573, 0.025434071, 0.022270413, - 0.015268313, 0.00784794, -0.010469402, 0.023872467, -0.005030667, - -0.010972733, -0.026436491, 0.041373417, 0.012898631, -0.034005128, - -1.7729066e-5, -0.005498328, -0.0031722034, -0.0077228406, -0.008492634, - -0.010625264, 5.340123e-4, -0.025736215, 0.008127905, -0.008765202, - 0.0036080934, -0.029594999, -0.013358214, 0.006917579, -0.024215508, - -0.019976271, -0.015514654, -0.014954719, -0.034836106, -0.014138462, - -0.0024820457, 0.0015876996, -0.020914424, 0.0033492695, -0.012666338, - -0.007613916, 0.020189803, 0.048284627, 0.012938619, 0.001640439, - -0.04178186, -0.026914224, 0.015558446, -0.041962318, 0.0017484379, - 0.003198673, 0.013008471, -0.015626835, 0.0074507236, -0.001430052, - -0.006887321, 0.028439382, 0.010095398, -0.013155153, 0.0145389745, - -0.010202702, -0.0026926873, -0.03183802, 0.0105552655, 0.02782466, - -0.028871268, -0.020418113, -0.014122931, -0.01340011, -0.017383298, - 0.02445446, 0.024037365, 0.002207163, -0.018136108, -0.0062964894, - -0.008590263, -0.0067593874, 0.067067094, 0.009701943, 0.008272521, - 0.0146725075, -0.009534448, -0.037797775, -0.012562476, -0.0073670954, - -0.039822925, -0.014298637, -0.008450739, 0.005680715, -0.013500084, - 0.017657612, -0.017447304, 0.008551125, -0.014115542, -0.015299096, - 0.01746569, -0.015683828, -0.021368021, -0.001181407, 0.01908591, - 0.021762459, 0.019019619, 2.504707e-4, -0.008066879, -0.013732991, - -0.004326849, -0.023529736, -0.0053183287, 0.012787423, 0.011452908, - -7.6784554e-4, -0.004430727, -0.0019814696, -0.02380647, -0.018557653, - -0.02901271, -7.100589e-4, -0.0016666469, 0.008469268, -0.008725742, - 0.010997264, 0.016697673, -0.0038847595, 0.015202866, 0.025085237, - 0.013468517, -0.0020814126, 0.024885464, -0.013190827, -0.013363384, - -0.0041282633, -0.009479791, -0.013163071, 0.0105345985, -0.010066771, - 0.015791787, -0.0072466535, 0.011886711, 0.0037913087, -0.033715513, - -0.00868603, 0.022295786, -0.014857666, 0.0072897817, 0.0124727385, - 0.011674598, 0.00761519, -0.0033120774, -0.011343973, -0.003516325, - 0.006093545, -0.007109152, -0.01014118, -0.019899355, 4.2106002e-4, - 0.02319966, -0.01697467, -0.023112465, 0.0048341113, -0.00430851, - 0.024239767, 0.013358296, -0.016131215, -0.0015886589, 0.025535785, - -0.019914351, 0.01740953, 1.1955382e-4, -0.013594037, -0.00799196, - -0.021856993, 0.021004122, -0.009923917, 0.018407816, -0.0016239616, - 0.009505728, -4.8402217e-4, -0.01821797, -0.010997863, 0.0042306283, - -0.023838112, -0.017714985, -0.022779627, 0.01605012, 0.009579467, - 0.0021868753, -0.014485508, -0.009068058, 0.0032890344, 0.0093390215, - 0.014667633, -0.008773676, 0.003960305, 0.013725053, 0.0020281535, - 0.007102399, 0.0062881103, -0.0301073, -0.0017028404, -0.002825851, - 0.011627356, -0.016829193, -0.036076006, 0.0023623812, 0.016818581, - -0.016662981, -0.010569451, 0.0028978616, -0.0040369835, -0.0071671503, - -0.0043321485, -0.012911843, 0.008980121, -0.006305046, -0.01284087, - -0.011479913, -0.01645524, 0.019920362, -0.0019587476, -0.0020869803, - -0.013952034, 0.02926751, -0.0047688647, -0.0143562285, -0.031331405, - 0.025919057, -0.00825454, 0.0115617635, 0.01384056, 0.016081136, - -0.016420247, -0.0041065174, -0.0106897, 0.018378465, -0.0038162372, - 0.011302323, -0.007099306, -0.022920506, 0.0392091, -0.015487399, - -4.3548972e-4, -0.017024864, 0.002906499, -0.01063416, 0.015328436, - 0.017806504, -0.02819464, 0.018256407, -0.016161129, 0.034505296, - -0.008860877, 0.021083884, -0.037511297, -0.010731334, -0.0047403844, - -0.0132526355, -0.0057438263, -0.012547114, 0.020707415, -0.016954364, - -0.0125012575, -0.0056643854, 0.011838509, 0.002178332, -0.0033632594, - -0.0411512, 0.0057507483, 0.009304065, -0.0127452845, 0.012771003, - -0.013902433, -0.011073355, -0.01395476, -0.0033375982, 0.0068078614, - 0.019417197, 0.0025041949, -0.006025322, 0.009695181, -0.010443715, - -0.019179748, -0.0015489222, 0.014862717, 0.001146041, 0.001059632, - 0.010433243, 0.011026093, 0.008183414, -0.0054727425, -0.029822446, - -0.043314267, 0.017164398, 0.011576871, -3.206761e-4, -0.030362925, - 0.008500213, -0.024479529, -0.0055941837, 0.0111523345, -0.015113908, - -0.0039615706, 0.011974631, 0.0030735687, 0.0077618547, -0.015849281, - -0.003812999, 0.0017098925, -0.008908479, 0.009415633, -0.010994841, - -0.0021845151, 0.0023165513, -0.011647243, 0.004835918, -0.008660292, - -0.017242732, 0.0065337387, 0.019805266, 0.0037504244, 0.0035222855, - 3.6114187e-4, 0.030834097, -0.0067727854, -0.0067490297, 0.003508953, - 0.016915385, -0.0037413882, 0.0037604317, -0.036747463, 0.028604897, - -0.0032243975, -0.0030571653, -0.011585134, -0.006112722, 9.722361e-4, - 0.020580105, -0.016093727, -0.01956299, -0.011019986, -0.015057402, - 0.007989398, 0.02404027, -0.002067749, 0.024973784, -0.0043189134, - 0.03284224, -0.007827894, 0.011448025, -0.034242228, -0.0034927237, - -0.015267573, 0.010641061, -0.031801537, -2.7281954e-4, 0.031470247, - 0.006026762, -0.0024201316, -0.017461536, 0.009333674, -0.0019255998, - 0.024888393, 0.011690535, 0.0072435043, -0.013979397, 0.01699995, - -0.0020807523, -0.021816224, 0.019068327, -0.0155653665, -0.029756716, - 0.03492026, -0.016525878, -0.008525943, 0.02387724, 0.0049530873, - -0.024163974, -0.0050089015, 0.008096384, -2.10978e-4, -0.0037465969, - -0.0021508085, -0.007057204, -0.029486401, 0.012505197, -0.0120082265, - -0.011117634, -0.0037549562, 0.01400974, -0.01518536, 0.005931089, - 0.0138093745, -0.021917727, -0.017920312, -0.002942594, 0.0013685686, - -0.0064442717, -0.0234922, 0.006154503, 0.014702599, -0.0024967713, - -0.019524697, -0.009011641, 0.014499276, 0.003056456, 0.03795018, - -0.006250436, 0.006011196, 0.00586657, 0.00808044, -0.0075282054, - -0.0010605538, 0.0068626385, 0.013971476, 0.010655993, 0.003777779, - 0.0054805195, 0.061618533, -0.014925349, -7.9694815e-4, -0.011128872, - -0.017433047, 0.0072793984, 0.028098725, 0.02708147, 0.0011973577, - 0.0094082, -0.0155059155, -0.02436006, 0.014361411, -0.020549878, - 0.01425461, 0.016071828, -0.003475979, -0.01872329, -0.016667707, - 0.0073091835, 0.0076804967, -0.0094174845, 0.01238182, -0.019591624, - 0.013010796, -0.0099809095, 0.012809674, -0.017396664, 0.013985486, - 7.5163966e-4, 0.02038116, 0.02037656, 0.01041952, 0.0031758233, - -0.0013522618, 2.2732545e-4, 0.03177915, -0.035537127, 0.009216658, - 0.009242368, -0.010730347, 0.02395928, 0.015144808, 0.008108521, - -0.014242481, 0.0045966064, -0.00509185, -1.6725021e-4, -0.026670754, - 0.0033306128, 0.015888665, 0.022627935, 0.0027594646, -0.0036810294, - 0.01888588, 0.01973612, 0.0033843468, 0.015805498, 0.021419507, - 0.008760465, -0.004865577, -0.0026466122, -0.0023605507, 0.022977622, - 0.008100887, -0.008562626, 0.027367646, 0.010983608, -0.012870116, - 0.021633582, -0.008555699, -0.004155108, -0.008838035, 0.007527131, - 0.005271261, -0.007456076, -0.0017481617, -0.013796826, -0.0069018276, - -0.01739439, -0.0034039433, -0.0324927, -0.02377695, 0.01940987, - 0.012151462, -0.012925508, -0.007573354, 0.015396934, -0.028020035, - 0.007239415, -0.011037866, 0.012701999, -0.01972782, -0.010926431, - -9.200585e-4, 0.03869893, 0.0073530683, 0.01798856, -0.0028942074, - 0.012262085, 0.0038459569, -0.013767764, -0.0053928574, 0.012710378, - -0.013301762, -0.005960086, 7.84616e-6, -0.0071786446, 5.886614e-4, - -0.005491783, -0.019200504, 3.29074e-4, 0.014291633, 0.0011203106, - -0.032285493, 0.0057790377, 0.0077904663, 0.023886038, -0.0150518045, - -0.0031219006, 0.018393246, 0.03067226, -0.0391858, 0.029154606, - 0.002846866, -0.005457399, -0.007351409, 0.013438694, 0.0038218966, - 0.01967453, 0.0014955067, 0.02292121, -0.008569952, -0.0032581768, - 0.021589004, -0.007103729, 0.013636626, -0.022518944, -0.013472168, - 0.0138381785, -0.024064913, 0.011047103 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.0059864814, -0.04757957, 0.013562286, 0.008832423, -0.010393197, - -0.05457649, 0.009238018, -0.011069807, 0.03081908, -0.031111868, - 0.0678511, 0.009589611, 0.024941305, -0.003997427, 0.080796175, - -0.014677233, 0.03986007, 0.0016398394, 0.010423503, 3.8572555e-4, - -0.044090234, -0.018886866, -0.014756369, 0.02925954, 0.006844377, - -0.0058511836, 0.06382044, -0.0015269341, -0.02188328, -0.002910878, - -0.03778574, 0.032264598, -0.013668876, 0.05085677, 0.006267193, - -0.0103895115, 0.050568122, 0.0011846147, -0.0051670913, 0.01360206, - -0.007498066, -0.0032172021, -0.03836206, 0.0090560075, -0.050792657, - 0.016141934, -0.010199807, 0.033885665, -0.026698042, 0.0035039983, - -0.0064384826, 0.008808603, 0.01728114, 0.04725795, 0.010013006, - -0.07771134, 0.036046375, 0.05220312, -0.012793771, 0.03704706, - 0.03667238, -0.0038148358, 0.058237568, -0.028392768, -0.0030871301, - -0.046880934, -0.030813055, 0.032905936, 0.005345427, -0.019138988, - 0.017818725, 0.018739142, 0.027044114, 0.03116968, 0.04062017, - 0.018093765, 0.058672894, 0.014840756, -0.013591537, -0.010728468, - 1.2175132e-5, -0.0072417525, -0.04461808, 0.033026174, -0.01805493, - 0.014065744, -0.016898682, -0.0040708072, -0.060814932, -0.009580551, - 0.026286406, -0.004954444, -0.021405486, 0.046598345, -0.012551792, - 0.0037078646, -0.015430173, -0.004262418, 0.010167471, 0.020567039, - -0.003975687, 0.04319963, -0.04325243, 0.0061166515, 0.01657044, - 0.013927285, 0.0401596, 0.033952296, 0.023857776, -0.0022394555, - 0.01021802, -0.03161651, -0.03322851, -0.050327364, -0.0045233443, - -0.03160607, 0.013386694, -0.0019242989, 0.022678457, 0.008988239, - 0.027312377, -0.0051451125, 0.042716544, 0.0403458, -0.038701676, - -0.029875267, -0.030594707, 0.03324229, 0.010499228, -0.016156333, - 3.9194897e-4, 0.03606973, -0.043604013, 0.053052455, -0.06253923, - -0.037220355, 0.0052601676, -0.031716593, -2.957778e-4, -0.07542351, - 0.012385375, -0.025699725, -0.011137409, -0.028488893, -0.0071393074, - -0.026721459, 0.015844729, -0.019902037, 0.04478935, 0.029454876, - 0.005221187, -0.045313884, -0.0028246962, -0.04116854, -0.03743944, - -0.0053639323, 0.045996446, -0.020750128, -0.024066001, 0.0022631472, - -0.008992394, -0.021781592, 0.010389236, 0.018849496, 0.017525408, - -0.037546106, 0.007138235, -0.0043766424, 0.06597287, -0.037046455, - -0.020728813, -0.017057072, -0.0068277162, 0.0043792347, 0.06394581, - -0.033793718, -0.038928542, -0.0631889, 0.006835798, 0.009528708, - -0.0065523316, 0.058352195, 0.034328133, 0.02642781, 0.012475448, - -0.020773042, -0.034349535, 0.01767149, -0.0201987, -0.016411917, - 0.06716116, -0.046498157, 0.036027983, 0.013743224, 0.04313648, - -0.03727899, 0.010519035, 0.005623907, 0.037800994, 0.034323975, - 0.053462118, -0.0038649186, 0.019489275, 0.0150856115, 0.008453658, - -0.013763505, 0.068808906, -0.0053111236, -0.017631713, -0.02489277, - 0.05453956, -0.027535556, -0.07399856, 0.05043534, -0.04541932, - 0.07234108, -0.006399906, -0.013065754, 0.013390916, -0.004799114, - 0.04463896, 0.06315188, 0.054874998, 0.0062379832, -0.010316719, - -0.015057957, 0.009377818, 0.040151473, 0.028484713, -0.008064784, - 0.013493744, 0.044773076, -0.030344458, -0.039608497, -0.05923217, - 0.021271769, 0.056179486, -0.014032644, -0.016461173, 0.028620545, - -0.047962528, -0.041110396, -0.010897025, -0.027345913, -0.04677273, - -0.040742245, -0.04822645, -0.02253767, 0.036350843, 0.0058119413, - 0.025395839, -0.03446607, 0.017496547, -0.032278247, -0.037214972, - 0.021125233, -0.006655973, 0.032966483, 0.0030551073, 0.009129526, - 0.02145284, -0.016377844, -0.005177298, -0.01899833, 0.060825422, - -0.013691786, 0.0035690041, 0.012099694, 0.009243984, -0.032601614, - 0.0032219195, -0.030356351, 0.018820945, -0.0136873955, 0.055025235, - -0.004632264, 0.014011025, -0.06314808, -0.02860029, 0.006879382, - 0.06277179, -0.03256981, -0.0014749112, 0.025798863, -0.024255734, - 0.022777997, -0.028976936, 0.0047523477, -0.018776748, 0.005985902, - 0.004121676, 0.037025895, -0.0053829066, -0.008211518, -0.0039897347, - 0.019380076, -0.026252935, 0.02092523, -0.017124197, 0.030100338, - 0.01695855, 0.00852398, 0.0024170585, -0.024734423, 0.026912047, - -0.00932715, -0.04643851, -5.228168e-4, 6.264058e-5, -0.021402992, - 0.046875414, 0.0033641092, 0.020488964, 0.007624058, 0.0010185486, - -0.0461882, -0.021469602, -0.039890278, 0.002722751, -0.038265858, - -0.03757058, 0.011578208, 0.04228623, -6.1064493e-4, 0.0047455793, - -0.020118602, -0.037871994, 0.009737312, -0.054267954, 0.023402635, - 0.020021012, 0.0414815, -0.034966953, 0.047839615, 0.00814813, - -0.026645914, -0.051812638, 0.0061230254, 0.0075807893, -0.024586169, - -0.016318405, -0.007802533, -0.0070719663, 0.033520453, -0.014885972, - 0.013304121, -0.040617064, 0.009663459, 0.0083488785, 0.009298314, - -0.011350992, 0.050779115, -0.031298436, -0.03356553, 0.0485894, - -0.011354234, -0.04519388, 0.04978615, 0.010169317, 0.0037730779, - -0.020264179, -0.005762707, -0.039819732, 0.016450565, -0.01840185, - 0.05264324, 0.0026399111, 0.015488812, -0.003456185, 0.026941918, - -0.029143967, 0.011501617, -0.022313286, 0.04613432, 0.031242749, - -0.010158727, 0.013268034, 0.029694874, 0.0069382065, -0.012420224, - 0.02384924, 0.019955937, -0.026618607, 0.012213047, 0.023753101, - -0.015783127, 0.043657124, 0.045969777, 0.014137041, -0.016133385, - -0.066626124, -0.045888357, -0.042239454, -0.010805784, -0.0056078956, - 0.005605159, -0.001708199, -0.026157342, 0.03353781, 0.026462564, - -0.031667262, 0.0078478325, -0.0017606041, 0.0143109765, 0.0055275206, - 0.044207644, -0.07017398, -0.03473138, -0.013077881, 0.010090063, - 0.03361427, -0.022462366, 0.00395797, -0.009608841, -0.014473346, - 0.011514641, -0.0077614766, -0.013968955, -0.0038038455, -0.048032433, - 0.044528853, -0.03228357, 0.026919017, -0.0035932227, 7.9622015e-4, - 0.016437193, -0.053653788, 0.08322832, -9.859359e-4, 0.010221452, - 0.021212963, 0.012523565, 0.036747634, 0.043210883, -0.01922418, - -0.010336083, 0.029836664, -0.02260416, -0.022816539, -7.2889007e-4, - 0.018324874, 0.023261895, -0.02731365, -0.04847828, 0.013125315, - 0.036327157, 0.008841948, 0.013742815, 0.032846335, 0.010338282, - 0.0069686365, -0.023523634, 0.044745218, -6.6540705e-4, 0.011191689, - -0.046934895, 0.0040863547, -0.045782004, -0.040745046, -0.0029502427, - 0.059665296, 0.006414953, -0.038276378, 0.021514805, -0.05154351, - 0.031054627, -0.002516478, 0.02436267, -0.036292687, 0.043098252, - 7.806853e-4, 0.008817339, 0.020779911, 4.2913988e-4, 0.023358993, - -0.02904963, -0.03654578, -4.6467368e-4, -0.020854687, 6.763044e-5, - -0.021882001, 0.018102309, -9.4564166e-4, -0.016199172, 0.0046640052, - 0.035795826, 0.024384795, 0.0084922975, 0.034748897, -0.003407975, - 0.011563792, -0.0013169601, -0.016022123, -0.0034619416, 0.035950698, - -0.046192676, 0.020659935, -0.022034947, -0.0027583453, -0.057107914, - -0.006014637, 0.04659247, -0.041893072, 0.04304235, 0.028674295, - 0.015059872, 0.07088953, 0.021972014, -0.050150678, -0.045254428, - -0.018143507, 0.04800145, 1.6072002e-4, -0.042546768, 0.05771246, - 0.0058183046, 0.053183567, 0.0013680601, -0.024999732, -0.012848973, - -0.0024201958, 0.059953768, 0.07389743, 0.0018993692, -0.02551357, - 0.013221738, 0.04598145, 0.04148111, -0.027510086, 0.009934003, - -0.03988414, 0.020865284, 0.010534015, 0.02042984, 0.039057232, - -0.05031141, -0.08450161, -4.9275895e-5, 0.060436517, -0.002574502, - 0.01958784, 0.044790376, -0.012209997, -0.02374339, -0.031205248, - 0.096079156, 0.017885314, -0.002770192, 0.020219259, -0.037156772, - 0.04148224, 0.027002268, 0.009294781, -3.5817045e-4, 0.052590746, - -0.02074726, 0.020612342, -0.010544997, 0.01283541, 0.011151696, - 0.021443821, 0.032614414, 0.009426236, -0.014860568, -0.027480666, - 0.01962877, -0.02266165, 3.1906483e-4, 0.014955917, -0.010689965, - -0.046330847, -5.609252e-4, -0.01162246, -0.054734807, -0.06057687, - 0.039171215, -0.014263408, -0.01939294, -0.0015298245, -0.017959235, - 0.04077761, 0.008194652, -0.015743542, 0.048020944, -0.01621276, - -0.0022012554, 0.04767745, -0.0481599, -0.018247621, -0.034594852, - -0.005513232, -0.016043765, -0.028372696, 0.017395372, -0.0257493, - -0.017078398, 0.041806784, 0.004954375, 0.008486664, -0.018524349, - -0.034124784, 0.06525332, -0.009169136, 0.008925065, 0.0057742307, - -0.0025304758, -0.044911288, -0.014311302, 0.05093588, 0.019847749, - -0.011092221, -0.007957653, 0.07042574, 0.030587325, -0.028735474, - 0.05141886, 0.048672542, 0.017477306, 0.029882712, 0.035502315, - -0.003726777, -0.014054001, -0.006967309, 0.026709422, -0.01647677, - -0.015207726, -0.0044065183, -0.029803095, 0.038608413, 0.0823642, - -0.009721846, -0.040478308, -0.04327969, 0.013947534, -0.038668588, - 0.030399086, -0.035638735, -0.036585584, 0.06269685, 0.03891701, - -0.04320291, -0.030864049, -0.014189934, 0.035588965, -0.024781076, - 0.007446793, 0.02826712, 0.037817862, -0.018676704, 0.036533445, - 7.991527e-4, -0.064230196, 0.02707473, 0.0479695, 0.024345499, - -0.036546357, -0.060305163, -0.0449136, 0.010823095, 0.033894293, - 0.0045712767, 0.009323934, 0.04330497, 0.021560527, 0.0676812, - 0.022528978, 0.034781963, -0.018588359, 0.016327355, -0.04746726, - 0.0029752299, 0.0051728687, 0.020652736, -0.021837644, -0.028953109, - 0.024966355, -0.035665553, 0.021883912, 0.020508664, 0.030997079, - 0.0134441815, -0.009161727, 0.037502307, 0.04828434, -0.043421395, - 0.015424014, -0.04366802, -0.04471382, 0.004207622, 0.017918913, - 0.02433529, 0.02762101, 0.020268109, -0.043461997, 0.0061609643, - -0.01647325, -0.08108175, -0.024183461, -0.041380964, 0.013187061, - -0.015237444, -0.032633793, -0.010973677, 0.043360725, -0.066059425, - -0.078925595, -0.03928601, 0.0025924253, 8.6140627e-4, 0.040836785, - 0.008324112, 0.013520302, -0.016911225, -0.0460044, -0.047400646, - 0.037727825, -0.0063386806, 0.0064896075, 0.006028706, 0.048436955, - 0.039315265, -0.028798018, 0.0034207788, 0.010017024, 0.0446267, - 0.08210738, -0.037509996, 0.0056391675, -0.018235948, 0.028595438, - -0.044979688, -0.011286104, 0.04432275, -0.019469539, -0.016662026, - 0.035795927, 0.007802164, 0.01232175, -0.05336641, -0.03476869, - 0.030663835, 0.005192845, -0.009779672, 0.039395895, 0.008246534, - -0.0076776515, -0.044262577, 0.0335329, -0.0021410834, 0.023930553, - -0.00488095, -0.006544209, -0.028215652, -0.036062233, -0.023374526, - -0.035389427, 0.010143748, -0.028805688, -0.0077674896, -0.03827329, - 0.066750124, -0.013541643, -0.04567657, -0.012715226, -0.014496137, - -0.0020626623, 0.0148323905, 0.05101751, 0.022546595, 0.039046936, - -0.0672942, -0.0015636116, 0.026780237, 0.01936428, 0.041645687, - 0.0013159107, 0.015304801, 0.026470175, 0.010424418, -7.53321e-5, - 0.0064675943, 0.012085958, -0.021159422, -0.032023348, 0.01777679, - 2.6372125e-4, -0.0093794055, 0.019892018, 0.045318097, -0.042339686, - 0.017667904, -0.03078788, -0.020473173, 0.0033050778, 0.029249305, - -0.0021662586, -0.035972934, 0.0033054778, -0.038049363, 0.006936888, - -0.0056337053, -0.0010916628, -0.0024989, -0.007823701, -0.03145287, - 0.06446018, -0.05652254, 0.03245182, -0.010336983, 0.0077233366, - -0.005239528, 0.004719506, 0.031988285, -0.08102533, 0.0095761325, - 0.041815247, -0.040038407, -0.060217287, 0.002422511, 0.034632016, - 0.010633244, -0.018134318, -7.8708754e-4, -0.005153149, -0.018750621, - -0.017220682, 0.014195542, 0.03557145, 0.012241165, -0.0527322, - -8.5055217e-4, -0.015364275, 0.011619598, 0.023913, -2.932282e-4, - -0.012516154, -0.052885953, -0.00688293, 0.008524744, -0.0073967534, - 0.045860942, 0.035467736, 0.005913568, 0.043182667, 6.9993985e-4, - -0.014056594, 0.028333595, -0.019216798, -0.018861381, -0.04700253, - -0.0030703852, -0.026864383, -0.0031751103, 0.063278936, -0.028930284, - 0.009536437, -0.057447676, -0.02694817, 0.061601873, 0.014844548, - 0.03357748, -0.03812291, 0.0192072, -0.017467596, 0.0028345136, - -0.030886792, -0.039655507, -0.04288237, -0.04312588, -0.0067210444, - 0.032597512, 0.064217485, -0.029850077, 0.029093105, 0.025389807, - -0.004734334, 0.03181043, -0.041050088, -0.023236208, -0.020471854, - -0.07838259, 0.008175319, 0.026962291, -0.009711278, -0.018010449, - -0.002165239, -0.016241334, -0.031272646, -0.022806698, -0.02789452, - -0.025328286, 0.03943289, -0.053714033, 0.01681108, 0.010863735, - 0.0071221367, -0.0064344853, -0.034779847, 0.026851868, -0.020754343, - 0.06278939, -0.038619976, -0.012641145, 0.0012389489, -0.017814476, - -0.032060813, -0.04192275, 0.045288462, -0.10463215, 0.015235026, - 3.5405738e-4, -0.043194305, -0.012280319, -0.048482433, 0.058528088, - -0.017343285, -0.019256737, 0.018347956, 0.013465373, -0.007824831, - -0.03926883, -0.03534319, -0.037676528, 0.015781492, 0.010577638, - 0.059932906, 0.04252564, 0.0055530057, -0.016250866, 0.006380573, - -0.004418274, -0.00660058, 0.04142093, -3.5188947e-4, -0.0016748358, - -0.028430097, 0.023712551, -0.03015407, -0.025664479, -0.009422249, - -0.007566943, -0.02054735, 0.049792588, 0.020656448, 0.0074298363, - 0.08256566, 0.029142115, 0.012835243, -0.0054422906, -0.010096131, - -0.025305698, -0.03274389, -0.023639644, -0.019898815, -0.008601798, - 0.024405763, -0.03637691, -0.028507808, 0.1008851, 0.004636462, - -0.017051974, -0.014826255, 0.0065199477, 0.023080181, 0.014802936, - -0.014731835, 0.003469113, -0.057021588, -0.023482881, -0.037426297, - 0.02915041, -0.038146295, 0.0025897205, -0.015849555, -0.019235387, - 0.055470236, 0.010944553, -0.031739786, -0.017217407, 0.011268668, - -0.035140093, 0.009470937, -0.056994457, 0.023866897, -0.032610804, - 0.026803564, -0.025550734, 0.015178567, 0.0906353, 0.028189667, - -0.019741539, -0.012027413, 0.021083785, -0.0077586113, 0.022255987, - 0.053966787, 0.0095954565, 0.018725103, 0.05944947, -0.03285358, - -0.009347165, 0.014720225, -0.026751796, 0.038798694, -0.04132463, - -1.3927702e-4, -0.015159218, 0.023629878, -0.059064962, -0.029532712, - -0.044508737, 0.033176817, -0.02526758, -0.0148113845, 0.062215645, - 0.027567023, -0.020616824, 0.037292928, -0.03298713, -3.564724e-4, - -0.023426004, 0.0110465195, -0.0028723064, -0.005806261 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.0042873025, + -0.0017539904, + 0.0022809075, + 0.0026063751, + 0.010896127, + 0.0017263596, + 7.0474093E-4, + 0.0019492441, + 0.0020956043, + 0.018708605, + 0.012980943, + -0.0293941, + -0.0035178307, + -0.009582421, + -0.005161834, + -0.008917893, + -0.011288553, + -0.010562293, + 0.011817615, + 0.008225016, + 0.00261701, + -0.007961734, + -0.0025838825, + -0.015557714, + -0.0062591317, + -0.00889279, + -0.0044565815, + 0.013009548, + 0.011901262, + 0.022808202, + -0.008717091, + 0.012290708, + 0.03350906, + 0.02546615, + -0.021834258, + -5.6438416E-4, + -0.008359905, + 0.02262901, + 0.012581666, + -0.010626622, + -0.01009871, + -0.009409697, + -0.005429752, + 0.01596772, + -0.016219368, + -5.909937E-4, + -0.0041681225, + 0.027487613, + 0.005583747, + -0.0012605012, + -0.035906937, + 0.023000494, + 0.0031156938, + 0.024878358, + 2.415833E-4, + -0.0090374965, + 0.004481689, + 0.00648745, + 0.025778465, + 0.012075556, + 0.022916924, + 0.014491714, + -0.0126557825, + 0.03200302, + 0.012964099, + 0.00950708, + -0.024662219, + -0.021249084, + -0.010515255, + 0.006439093, + -4.2381935E-4, + -0.004019982, + -0.0053780465, + 0.018735321, + -0.0054694335, + 0.0039019145, + 0.023430742, + 0.01975748, + 0.023741258, + 0.010220278, + -5.5925286E-4, + 0.020134397, + 0.0014031538, + 0.010388079, + 0.026665157, + -0.023997717, + 0.0095316125, + 0.01127163, + 0.0023958138, + 0.0019391897, + 0.017773326, + 0.0066425567, + 0.015241952, + 0.008038828, + 0.02154572, + -0.007577009, + 7.0462516E-4, + 0.026431624, + 0.017185766, + -0.006340614, + -0.0035701257, + 0.0072766533, + 0.017932756, + -0.0447004, + 0.0070470655, + -0.0051354403, + -0.027549451, + -0.004742543, + -0.0031917102, + 0.053385265, + -0.01775732, + -0.0020394872, + 0.010136052, + -0.0010562447, + -0.018184748, + -0.007903485, + 0.00734716, + -0.0050775446, + 0.0021679907, + -0.011779424, + 0.019416664, + -0.021976927, + -0.035929024, + 0.015023223, + -0.024992222, + 0.026953187, + 0.009521887, + 0.03014112, + -0.028339734, + -0.020147031, + 0.025237663, + 8.643126E-6, + 1.07238935E-4, + -0.010393943, + -0.00431544, + -0.014863064, + -0.013247141, + 0.007984698, + 0.002685295, + 0.0058231303, + -0.01799118, + -0.029099945, + 0.00470444, + -0.0015339258, + 0.022118507, + -0.010070807, + -0.0133058755, + -0.018031897, + 0.005988124, + 0.0129093025, + 0.00239276, + -0.012825082, + 0.021744894, + -0.0052079144, + -0.01437891, + -0.0063316007, + -0.014036391, + 0.0057136347, + -0.0029491638, + 0.030552845, + -0.008640888, + 0.003431585, + 0.007562928, + -0.0035102842, + -0.02434941, + -0.006121633, + -0.0062351236, + -0.008517646, + -0.024465397, + 0.011409502, + 0.006856417, + 6.526861E-4, + -0.010358459, + 0.007067733, + 0.012171341, + -0.026385292, + -9.219371E-4, + -0.014181206, + -0.013298104, + 0.006069886, + 0.0012365477, + 0.01633464, + -0.009726485, + -0.013808727, + 0.020156812, + -0.015059601, + -0.013236779, + 0.012501126, + 0.030888958, + 0.016739493, + -0.008977409, + 0.002731145, + 0.024615232, + 0.017209418, + -0.0036301462, + 0.012119362, + -0.008740023, + -0.025590498, + -2.749995E-4, + -0.015541865, + 0.014973188, + -0.010080303, + -0.019927265, + 0.002363056, + -0.0051161777, + -0.012414962, + -0.023064783, + -0.009499084, + 0.009747508, + -0.010625624, + 0.02035887, + 0.009794966, + 0.02192204, + -0.013032673, + -0.008136378, + 0.032181118, + -0.010716943, + -0.02075754, + -0.006418429, + 0.0044807885, + -0.019990666, + 0.016739532, + 0.006958727, + 0.015509956, + -0.026848435, + 0.0060624634, + 0.0025749053, + 0.0065279254, + 0.0026357702, + 0.0020872287, + 0.0024742621, + -0.015319005, + 0.007668782, + 0.021904198, + -0.04009276, + 0.0023492114, + -0.03656765, + -7.7705256E-5, + 0.004952588, + 0.0025077777, + 0.0060020234, + 8.802736E-4, + -0.007870138, + 0.018788395, + -5.0621486E-4, + -0.021103818, + -0.017365731, + -0.031360332, + 0.015838731, + 0.0095772995, + 0.012840775, + 0.0026772437, + -0.008765995, + -0.021731118, + 0.01133536, + -5.394403E-4, + 0.0042731566, + -0.0079487115, + -0.023646003, + -0.012412285, + 0.019342585, + 0.034829862, + 0.02254945, + 0.0015128583, + -0.029419271, + -0.029808989, + 0.006600482, + -0.011497154, + -0.0105855195, + -0.004530089, + 0.021626055, + 0.0070594125, + -0.01540542, + -0.011054277, + 0.010069091, + -0.023984957, + -0.011474778, + -0.016606811, + 0.030299991, + 0.014841589, + -0.004769264, + 0.014037814, + -0.013436319, + 0.009477231, + 0.021456894, + 0.012092994, + -0.006049974, + 0.009599812, + 1.07285196E-4, + -0.0035328623, + -0.0034785422, + 0.008809934, + -0.0030909555, + -0.0049035763, + -0.006896649, + -3.0896268E-4, + 0.021085497, + -0.0066079656, + 0.023281084, + -0.01543706, + -0.033724036, + 0.025095996, + -0.033191085, + 0.0032580262, + 0.013776082, + 0.0125376, + -0.012114283, + 0.03231079, + -9.546165E-4, + -0.011937962, + -0.01614398, + -0.008070201, + 0.020789841, + -0.016231893, + -0.006773372, + 0.023192568, + 0.018707853, + 0.004128763, + -0.031974476, + 0.005797561, + -0.0019250219, + -0.011542209, + 0.012227526, + 0.015254655, + -0.0042265896, + 0.007990701, + 0.04263616, + -0.05156511, + -0.00632064, + 0.007458013, + 0.0054058414, + 0.011561427, + -0.0126069905, + 0.010438358, + 0.011572648, + -0.0039995406, + 0.0037180083, + 0.0047784816, + 0.0075630774, + -0.02338778, + 0.015648967, + 0.015303198, + 0.016276315, + -0.026710909, + 0.010016569, + 0.0030023125, + 0.02298717, + -0.009795022, + -0.024215816, + -0.003860174, + -0.014764445, + -0.03179281, + 0.008919605, + 0.0038261898, + 0.024035932, + 0.0026884899, + -0.0013971772, + -0.0107568195, + -0.0043184524, + -0.006656941, + 0.025445802, + 0.02430419, + -0.01135124, + 0.0020027242, + -0.0110450415, + -0.02443918, + 0.0045931335, + -0.0038107054, + -0.014119532, + -0.008792912, + -0.0052390923, + -0.013291474, + -0.013461009, + -0.0045393435, + 0.016678069, + 0.016419059, + -0.0088837, + -0.03435729, + 0.0048681768, + -0.026900696, + -0.007675044, + 0.01333745, + 0.0030673763, + -0.030357994, + -0.024603581, + 0.009962024, + 0.016928012, + 0.012657922, + -0.041576155, + 0.032295324, + -0.0023965824, + 4.4914088E-4, + 0.016290482, + 0.0015777186, + 0.001152555, + 0.0025854458, + 0.010414195, + -0.011900589, + -0.009887057, + 0.02461809, + -0.007862676, + -0.0048199715, + 0.009291986, + 0.024014305, + -9.921283E-5, + -0.005857586, + 0.013998122, + -0.0061985035, + -0.009970456, + 0.018053463, + -0.013039387, + 4.4736976E-4, + -0.012268275, + 0.0031591207, + -0.017981153, + 0.0039520934, + -0.0076500135, + 0.0054488615, + -0.032177895, + 0.010349853, + -0.028140437, + 0.0047880206, + 0.023233725, + 0.010967874, + 0.014765783, + 0.0065812287, + 0.0053784903, + -0.007605667, + 0.014347577, + -0.013499682, + 0.03715937, + -1.7681195E-4, + -0.024055384, + -0.0010909961, + 0.004930373, + -0.006571659, + -0.020008832, + -0.00214371, + -0.0024687555, + 0.0109707, + -0.015775088, + 0.014085442, + 0.0076481435, + 0.002494241, + -0.014459023, + -0.012524693, + 0.00859605, + 0.012327496, + 0.01798276, + 0.0106656365, + 0.012065098, + 0.006997725, + -0.0154038025, + 0.0066850237, + 0.020569364, + -0.016485056, + -0.0257701, + -0.008449774, + 0.00509461, + -0.016467689, + -0.036709435, + -0.0054412936, + -0.01457949, + -0.009338789, + -0.0118457675, + 0.006394632, + 6.334691E-4, + -0.004659721, + 0.019066893, + -0.009736078, + -0.028020445, + 0.010634402, + -0.021833958, + 0.004606471, + -0.0033082338, + 0.018309437, + -0.0053033377, + -0.006798231, + 0.0058168457, + -0.024606891, + -0.010951631, + -0.008581087, + -0.0030572556, + -0.023230964, + 0.016476646, + -0.015123738, + 0.0072132694, + 0.0134695815, + -0.014358455, + -0.008154317, + -0.008005434, + -0.0021140922, + 0.018683048, + -0.018531458, + 0.01838865, + -0.00990734, + -0.021090236, + 0.010207313, + -0.006139821, + -0.0021317026, + 0.0016299092, + 0.0017591066, + -3.892544E-4, + -0.012279879, + 0.012700481, + -0.00863571, + -0.009164919, + -0.027889173, + -0.018536823, + -0.009559338, + -0.03056211, + 0.0024191167, + 0.026180873, + -0.023541443, + 0.004041391, + -0.0016016169, + -0.014219444, + -0.0058434205, + 0.033181153, + -0.0028706007, + -0.007610869, + 0.004407878, + -0.022797914, + 0.012151857, + -0.026850669, + -0.0144239385, + -0.004013134, + 0.0133517105, + -0.006329075, + 0.006722597, + -0.033210456, + 0.019792944, + 7.789188E-4, + 0.008751928, + 7.5738784E-4, + -0.007310255, + -0.0055192113, + -0.0127643095, + -0.020852946, + -0.025729109, + 0.029580964, + 0.027413419, + -0.014122801, + 0.012396866, + 0.008754833, + -0.020617312, + -0.008953763, + -0.019248782, + -0.0073571107, + 0.011493656, + 0.0015230809, + -0.007460124, + 0.0091361515, + 0.0022385763, + -0.0058190012, + -0.004329024, + 0.017719073, + -0.0052549574, + -0.03466886, + -0.012124365, + -0.02788216, + -0.016047308, + 0.0069257943, + 0.030775787, + 8.740194E-6, + -0.009176087, + -0.003690898, + 0.0038742237, + -0.028593024, + -0.02252112, + -0.017420681, + 0.009375195, + 0.02781497, + 0.0038492528, + -0.0011262486, + -0.0016426229, + -0.020955421, + -0.0083439, + 6.536228E-4, + -0.004435264, + -0.027199278, + 0.007446286, + -0.002507683, + -0.002139568, + -0.009320415, + -0.02684554, + -4.3785316E-4, + 0.0034666315, + 0.024893401, + 0.0071476847, + 0.014737476, + 0.011668751, + 0.012025092, + -0.01139257, + -0.0035936409, + -6.329161E-4, + -0.003767968, + 0.0064202785, + -0.014282907, + -0.022741595, + 0.009893259, + 0.029087968, + 0.010223852, + 0.016879072, + -0.012846719, + -0.0152975395, + 0.0061283726, + 0.020052081, + 7.919466E-9, + 0.009315053, + -0.0046098223, + 0.008000363, + -0.0056620566, + -0.016560974, + 0.0033383863, + 0.012252453, + -0.021039609, + 0.0038111832, + -0.0049892287, + 0.0102704065, + 0.0017063635, + 0.0055739754, + -0.002561293, + 0.018315172, + -0.02205669, + 0.0023138328, + 5.3010473E-5, + 0.02500377, + -0.011327291, + 0.005795294, + -2.566638E-4, + 0.022010617, + 0.0028131143, + 0.005219971, + -0.022923386, + 0.03880659, + -0.021807294, + -0.009052646, + 0.01830343, + 2.7027607E-4, + -0.011306774, + 0.0075072385, + 0.013342333, + 0.018035281, + 0.0048376108, + -0.019045204, + 0.030117018, + 0.02833321, + -0.006733931, + -0.0047017084, + 0.017048027, + -0.012321597, + -0.010470972, + -3.8193868E-4, + 0.0046514054, + 0.014931915, + 0.017923452, + 0.008863732, + -0.038802803, + -0.0138463555, + -0.030210253, + -0.004245523, + 0.0126713, + 0.004215442, + 0.0113679655, + -0.006636775, + 0.008345401, + 0.0053702313, + 0.018263353, + 0.004630458, + -0.0078014536, + -0.014309177, + 0.0039414526, + 0.0055245087, + -6.0030405E-4, + 0.015313179, + 0.013911507, + -0.00950973, + 0.0027309437, + -0.0091325445, + 0.03166543, + -0.017623799, + -0.019417549, + -0.0016277498, + -0.019017039, + -2.6444727E-4, + -0.03142323, + 0.024655996, + 0.009522342, + -0.026424788, + -0.026830243, + -0.01025602, + -0.0034136036, + 0.031149184, + 0.006020349, + 0.0047004693, + -0.0034988082, + 0.008467278, + -0.025410317, + 0.022735626, + 0.0046523116, + -0.0042443606, + -0.0052296775, + -0.0077415, + 0.0038151979, + -0.011723966, + -0.025421616, + 0.004890256, + 0.03279478, + -0.0067814323, + -0.0039147646, + 0.017267656, + 0.010134952, + 3.455692E-4, + 0.018106487, + 0.033134107, + -0.022676675, + -0.0030640583, + 0.021976369, + -0.011302141, + 0.049821053, + 0.0077760303, + -0.019374628, + 0.01734644, + 0.03422806, + 0.012578721, + 0.0015687258, + -0.009058493, + 0.0018232509, + -0.015363306, + 0.0039233477, + 0.009112597, + 0.0033243026, + -0.0049624625, + -0.008813499, + 0.0040552225, + 0.02113329, + 0.02366789, + 0.016737321, + 0.0072401864, + -0.016811425, + 0.0138822105, + 0.0044932556, + -0.010337487, + 0.022116112, + -0.015780395, + -0.011824051, + -0.009411996, + -0.028642235, + -0.01684201, + 0.013059902, + 0.0018060934, + -0.0017207236, + 0.004880148, + -0.022950217, + 0.010561497, + 0.014284965, + 0.016892178, + 0.0026246463, + -0.012517879, + -0.010885145, + 0.025937261, + -0.029401302, + -0.019921115, + -0.0023985724, + 0.002857077, + 0.012728246, + 0.021781942, + -0.019231103, + -0.021035662, + 0.009926226, + 0.008118806, + 0.021317907, + 0.0025231775, + 0.023361856, + 0.010361504, + 0.021253329, + 0.01281563, + -0.0057436153, + 0.0062714894, + 0.0018886428, + -0.030632747, + 0.019704789, + -0.007289704, + 0.018195052, + -0.016830029, + -6.453357E-4, + -0.005990975, + -0.0020868117, + -0.01901431, + 0.0056353607, + 9.153228E-4, + -0.008100979, + 0.016320815, + 0.0021051688, + 0.022338068, + 0.008755128, + -0.017489973, + 0.029785842, + -0.0031568075, + 0.019917859, + 0.021056965, + 0.003888116, + 0.009959248, + -0.0050703515, + -0.015132696, + -0.016848342, + -0.012967303, + 0.023609268, + -0.0137697775, + 0.0023404842, + -9.6617977E-4, + -0.024586542, + 0.0033272002, + 0.009298639, + -0.015306022, + -0.009898208, + -0.013637639, + -0.012783952, + 0.003783916, + 0.016076362, + 0.005881593, + -0.008784958, + -0.009065851, + 0.005926292, + 0.0025640612, + 0.005506047, + 0.009598839, + 0.026938858, + 0.022087099, + -0.005831095, + -2.9814336E-4, + 0.023161503, + -0.0029041797, + -0.002925602, + -0.0044609113, + -0.028589407, + -0.029801346, + 0.023524703, + 0.018454537, + 0.004062162, + 0.007479266, + -0.012206301, + -0.012644096, + -0.0014783116, + 0.011968836, + 0.011260073, + 0.024431389, + 0.002691608, + -0.0073227617, + 0.010052185, + -0.019560095, + -0.0010731565, + 0.00926479, + -0.0046811462, + -0.01376558, + -0.029611764, + -0.017766977, + -0.021546675, + -0.0012508996, + -0.031644322, + 0.042603, + -0.0021935483, + 0.004248655, + -0.0051757535, + 0.0024753562, + 0.0045705033, + -0.011235603, + 0.007838562, + 0.034922764, + -0.00954418, + 0.032500137, + -0.02548923, + 0.022645054, + -0.006889278, + 0.02452116, + -0.018571982, + -0.020721005, + -0.023185048, + -0.01780003, + 0.037816018, + 0.0029327588, + 0.011759274, + 0.026307922, + -0.0011743952, + 0.008363233, + 0.0063332017, + -0.0027124695, + -0.014858607, + -0.009140731, + 0.0152881825, + 0.011293438, + 0.029492842, + 0.0049015987, + -0.0024245607, + -0.026084762, + -0.005331478, + 0.014239812, + 0.001680554, + -0.012657318, + 0.011386235, + -0.0059362566, + 0.0061034774, + -0.01264011, + -0.023974767, + -0.02570474, + -0.0049377433, + -0.007899661, + -0.008254947, + 0.039930724, + -0.009058471, + -0.008073891, + -0.00878094, + 0.0057238904, + 7.5412344E-4, + -0.007617945, + -0.0100490535, + 0.010674857, + 0.013475442, + -0.00739499, + 0.008913055, + 0.005273821, + -0.019267142, + 0.02028782, + -0.015592691, + 0.0067150965, + 0.0057426454, + -0.007222461, + 0.0040876796, + -0.0024489616, + 0.0120014595, + -0.018763088, + -0.010678584, + -0.03176579, + 0.017568765, + 0.0038983333, + -0.005236341, + -0.0044674505, + -0.0040563233, + 0.003204964, + -0.029089088, + -0.022171674, + -0.017074648, + 0.005752158, + 0.023829985, + -0.007799974, + -0.010791431, + 0.018774293, + 0.007910701, + 0.0064355014, + -0.009184902, + 0.0035795935, + -0.0027477574, + 0.025701292, + 0.010115538, + 0.0156017365, + 0.01108167, + -0.0040351497, + -0.015659045, + 0.0018262233, + -0.008289936, + 0.0015208096, + -0.023515048, + 0.013987933, + -0.03569572, + 0.013255609, + 0.0062755747, + -0.012644416, + 0.021112582, + 0.0069928183, + 0.004642236, + -0.029810352, + -0.017732559, + 0.03257582, + 0.0036986824, + -0.00558575, + 0.0113040805, + -0.0014804215, + 8.62299E-4, + 0.0067589707, + 0.0048227864, + -0.015921928, + 0.008597333, + -0.0035264704, + 0.011345082, + 0.016477715, + -0.0075193783, + -0.01069547, + 0.026186723, + 0.022617765, + -0.015537767, + -2.4792994E-4, + -0.017796813, + 0.015593781, + 0.014150654, + -0.003945552, + 0.029664945, + -0.02257727, + 0.004163624, + 0.036818232, + 0.0031421434, + -0.0049965954, + -0.0016883537, + -0.008804734, + 0.004242565, + 0.02508314, + 0.0016884174, + -0.012810998, + 0.0036839915, + -0.0033373353, + 0.044694003, + 0.013261283, + 0.04089465, + 0.014169619, + 0.02325012, + -0.0042171446, + 0.00660905, + -0.012467033, + -0.016490202, + 0.016606543, + -0.005366795, + -0.005010359, + 0.0054623196, + -0.014116875, + 0.02339669, + 0.00253059, + -0.008039514, + 0.013051126, + -0.017196601, + -0.022743732, + -0.0053276788, + 0.029738294, + 0.024735363, + 0.0061835446, + 5.27291E-4, + -0.008543595, + 0.021625271, + 0.021885538, + 0.004626391, + 0.010250462, + -0.003056872, + -0.015232398, + 0.004801548, + 0.0026603271, + 0.0040079467, + 0.0082039265, + 0.0074454183, + -0.020835768, + 0.020622952, + -0.01044945, + -0.013536695, + -0.017295562, + 0.026299462, + -0.006715292, + 0.026200168, + -0.021011826, + -0.0030928717, + -0.004163833, + 0.03099952, + -0.015314104, + -0.0024531754, + -5.1816087E-6, + 0.021954462, + 0.03274046, + -0.005070998, + 0.018281057, + -0.0016156837, + -0.009283165, + 0.021059154, + 0.0056536454, + 0.0027898767, + 0.028913436, + 0.0058487374, + 0.021532234, + -0.008678422, + -0.0028802247, + -0.0167202, + -0.023754476, + -0.008498495, + -0.0022275792, + -0.002952398, + -0.009755695, + 0.01721052, + 0.012060404, + -0.0047811805, + -0.010333066, + 0.016247021, + -9.835294E-4, + -0.025423856, + -0.009947095, + -0.0044508753, + 8.860993E-5, + -0.0058439528, + 0.0033432036, + -6.89976E-4, + -0.015644034, + -0.006583365, + -0.0011224543, + 0.00397252, + 0.013180651, + -0.037875712, + -0.017619075, + 0.019912826, + 0.011841716, + 0.017891927, + -0.0026371083, + 0.027441187, + 0.01095976, + 0.01616169, + 0.005094664, + -0.0017289014, + 0.005289358, + -0.012451633, + -0.031287875, + -0.0015470946, + -0.016827093, + 0.017841365, + 0.038944468, + -0.010356524, + 0.0027040453, + 0.004994605, + 0.011507433, + -0.006688962, + 0.006894967, + -0.012783352, + 0.0122712925, + 0.0152763575, + -0.02496996, + 0.01215565, + -0.014354979, + 0.007981509, + -0.0031559397, + 0.014340969, + 0.017810522, + 0.012613856, + -0.020525947, + -0.013895013, + -0.034765366, + 0.007959131, + 0.03733305, + -0.0053305156, + -0.023434296, + 0.013589496, + 0.04211057, + 0.002529613, + 0.015661582, + -0.017107485, + -0.0046227975, + -0.022559833, + -2.750048E-4, + 0.0051020333, + 0.032548428, + 0.0033758846, + -0.0013383884, + -0.01922051, + -0.02831196, + -0.008947905, + -0.0061274245, + 0.027504882, + -0.013228713, + 0.029395517, + -0.009358839, + -0.0053612986, + 0.00804087, + 0.0013441443, + 0.014063941, + 0.0034694625, + -0.015769368, + 0.015411546, + -0.008945563, + -0.015145517, + -0.016426312, + 0.009077859, + -0.0018410527, + -0.02039129, + -0.0076173446, + 0.006365633, + 0.028676877, + 0.014114978, + -6.6902424E-4, + -0.040295616, + -0.0025179572, + 0.008004611, + 0.0034690073, + 0.021279482, + 0.032444928, + 0.011101462, + -0.022133837, + 0.003434922, + 0.013655404, + -0.0150852855, + 0.026347432, + 0.019317847, + -0.0033064017, + -0.010870203, + -0.0089965435, + -0.022170434, + 0.007935701, + -0.017444713, + 0.0026222633, + -0.004660256, + -0.006763413, + 0.007485996, + 0.005490612, + -0.018736068, + -0.003953561, + 0.0049654306, + 0.012266803, + -0.011300454, + 0.006012406, + 0.015843876, + 0.01704635, + -0.00856279, + -0.0010764282, + 0.009546777, + 0.0050058602, + 0.029615251, + -0.0034222342, + -0.0073969853, + 0.008300966, + -0.01566115, + -0.011207532, + 0.019266354, + -0.019332195, + 0.018231358, + 2.057076E-4, + -0.009941798, + -0.002303263, + 0.010055286, + 0.003822369, + 0.0038904084, + -0.0040370543, + -0.017301517, + 0.0059065484, + 0.017042192, + 0.004304918, + 0.027718315, + -0.015943605, + -0.001063477, + -0.0060530263, + -0.021713879, + -0.011821035, + -0.021966409, + 0.0129156485, + 0.0037245443, + -0.027643673, + -0.018508296, + -0.011331378, + 0.009730275, + -0.0020181874, + 0.031092882, + -0.025173115, + -0.008578538, + -0.009711069, + -0.01778942, + -0.03787957, + 0.01543651, + -0.010842186, + 0.016219223, + -0.0025867578, + 0.021256126, + 0.009041745, + -0.037128627, + 0.0147949755, + 0.0033415128, + 0.011977242, + 0.02017642, + 0.021226427, + -0.01087593, + 0.0027584562, + 0.0027641852, + -0.021356503, + 0.0025926314, + 0.0022142224, + -0.0056293793, + -0.009976008, + 0.011363775, + 0.002705225, + 0.039551605, + -0.032350104, + 0.018486293, + -0.004479806, + -0.0060783783, + 0.008694294, + -0.010949901, + -0.0044489093, + 0.010250248, + -0.018077744, + 0.012414875, + -0.019636022, + 0.0070665753, + 0.016396496, + -1.4173687E-5, + 0.014208535, + -0.014344019, + 4.6461762E-4, + -0.006046789, + -0.026816633, + 0.020166405, + 0.01565207, + -0.009356023, + -0.0047381343, + -0.01656739, + 0.0011731372, + 0.016192676, + 0.0039940025, + 0.004870509, + 0.008482313, + -0.023639211, + 0.0029390876, + -0.010122182, + -0.014467692, + 0.0026386525, + 3.2627466E-4, + 0.009511662, + 4.3725144E-4, + 0.0017023538, + 0.03397898, + -0.02656834, + -0.02088838, + 0.019538607, + -0.012713922, + -0.011527378, + 0.006899707, + 0.012356928, + 0.010413272, + -0.01633925, + 0.0015402092, + 0.013701022, + 0.02073774, + -0.029273044, + -0.02132396, + -0.033884045, + 0.009789212, + -0.007455139, + 0.009040943, + 8.696195E-4, + 0.009037535, + -0.0037610459, + -0.03422478, + 0.03133708, + 0.0076011755, + 0.0061950707, + -0.020654052, + 0.002591277, + 0.0049957386, + 0.009784398, + -0.0063126315, + 0.024108486, + -0.008354102, + 0.021608077, + -0.019698799, + -0.015882364, + 0.017084861, + 0.01923309, + -0.012893253, + 0.007311426, + -0.009019457, + -0.02004792, + 0.0066691423, + -0.02865967, + 7.078923E-4, + -0.012412636, + -0.0048153033, + -0.010339145, + 0.014093832, + 0.02289413, + -0.018915048, + -4.297525E-5, + -0.015936805, + -0.01179173, + 0.006539019, + 0.0052758334, + -0.008900267, + -0.021510027, + 0.013861801, + -0.0115739135, + -0.009155373, + -0.010716578, + -0.011607329, + -0.019103777, + 0.038484555, + -0.040531963, + -0.015873544, + 0.005595081, + -0.027108394, + 0.022102436, + -0.014673958, + 0.006629171, + -0.0036544173, + 0.017323079, + 0.015083294, + -0.011514034, + -0.025585836, + -0.02174551, + 0.008744658, + 0.009544928, + 0.0065213717, + -0.009456097, + -0.0040438347, + -0.008361264, + 0.0026597541, + 0.0049733324, + -4.5327088E-4, + 0.029753115, + -0.027424762, + 0.0019139746, + 0.0022275087, + 5.5713556E-4, + 0.01815136, + 0.016193252, + 0.01664025, + -0.013832773, + -0.018190134, + -0.0088306265, + 0.006746839, + -0.005432253, + 0.013091201, + 0.015859177, + -0.0047447416, + -0.0035626146, + -0.025403347, + 6.9293915E-4, + 0.013868544, + -0.028295936, + -1.5479505E-4, + -0.019065464, + 0.020161927, + -2.5744177E-4, + -0.0036846905, + 0.02777036, + 0.01390148, + 0.021282861, + -0.011846611, + 0.011087762, + -0.003225544, + 0.008248101, + -0.0017524754, + -0.0088698035, + -0.0092241205, + 0.011338686, + -0.02127907, + 0.028233435, + -0.023900136, + 0.0035943512, + -0.0037838768, + 0.012808551, + -0.03189497, + -0.0012643314, + -0.0030371197, + 0.0017695462, + -0.008396345, + -0.006010249, + 0.020384964, + -0.011592886, + 0.0063976273, + -0.012456871, + -0.03640436, + 0.011423292, + -0.024170265, + -0.010943689, + 0.016116438, + -0.008937642, + -5.245259E-4, + 3.8039795E-4, + 0.015406825, + 0.013800049, + -0.013065248, + -0.0055147335, + -0.022846064, + 0.009156881, + 0.018361177, + -0.012800737, + -0.011541407, + 0.013035785, + -0.04060943, + 0.004837163, + 0.0069071734, + 0.015903154, + -2.208566E-4, + -0.008220696, + -0.015962103, + -0.0086709, + -0.01573579, + 0.008068583, + -0.011763089, + 0.0032193374, + 0.005407648, + 0.0031839025, + -0.0073047634, + 0.03306978, + -0.015147024, + 0.008262872, + -2.6832233E-4, + 0.00781506, + -0.034801185, + 0.008507768, + -0.0034733207, + -0.0058565848, + -0.023795001, + 0.0014075044, + 0.010866138, + 0.017898884, + 0.0022695195, + -0.012667301, + -0.012986663, + 0.014444675, + 0.020990618, + -0.005085232, + -0.0064426055, + -0.0039338507, + 0.0038559171, + 0.02115703, + -0.0012845433, + -0.009022364, + -0.005089526, + -0.024060057, + 0.0022354706, + -0.019823125, + 0.008993978, + 0.013701504, + -0.004651268, + 0.011627661, + 0.03263376, + 0.020692375, + -0.022380166, + 0.004832727, + -0.01665118, + 0.004010669, + -0.01718928, + -0.0030644578, + 0.02575747, + -0.019144276, + -0.025161177, + 0.00416466, + -0.021139696, + -0.017071972, + -0.005906634, + -0.005410917, + -0.029948015, + 0.009126058, + 0.026274497, + -0.020409556, + -0.036652308, + 0.025988135, + -0.013724429, + -0.016331112, + -0.001449079, + 0.005501221, + 0.025794769, + -0.024980823, + -0.007866095, + 0.014348883, + 0.009433063, + 0.009055547, + 0.0076478315, + 0.019831631, + -0.010167057, + 0.042756923, + 0.007717398, + 0.007004313, + 0.023220487, + -6.4005045E-4, + -0.0017866108, + -0.023021273, + -0.004779482, + -0.022949344, + 0.016820729, + -0.016650314, + -9.663821E-4, + 0.004402239, + 0.019400798, + -0.018836642, + 0.025071835, + -0.025989234, + 0.0020971964, + 8.350197E-4, + 0.004280744, + -0.013075807, + -0.009890295, + -0.0041572824, + 0.015696755, + -0.007128818, + -0.0050481423, + 0.0022737111, + 0.0034485532, + -0.029130695, + -0.017436506, + 0.0026869788, + 0.007465715, + -0.0011157478, + 0.009615342, + 0.019020054, + 0.017400203, + 0.009736388, + 8.0404873E-4, + 0.029141143, + -0.021251569, + 0.009824742, + 0.004629512, + 0.009483308, + -0.023083562, + 0.010221447, + -0.009876012, + 0.016449565, + 0.006174682, + -0.031048765, + -0.017796565, + 0.027287738, + 0.021041935, + -0.009044145, + 0.005276259, + 0.0014734587, + -0.0048563243, + -0.014351159, + 0.006843217, + 0.0015334075, + 0.017379072, + -0.03287009, + -7.742272E-4, + 0.010451957, + 0.003117522, + -7.3255907E-4, + -0.0023411901, + 0.010741585, + 0.0057102204, + -0.027375888, + -0.010823316, + -0.037427165, + 0.035650726, + 0.009996125, + -0.0068995706, + 0.0031744074, + -0.012484204, + 0.029846253, + -0.005432089, + -0.0035176177, + -0.0059318887, + 0.0038016583, + -0.015894903, + 0.013025105, + 0.0055903452, + -5.898227E-4, + -0.0065578828, + 0.003268052, + -0.017496182, + -0.0077229207, + 0.020177785, + 0.007302386, + 0.0101113, + -0.02611794, + -0.011727801, + 0.011378198, + 0.013783537, + -0.025407288, + 0.006332701, + -0.005939613, + 0.010057801, + -0.019930197, + -1.289378E-4, + -0.010165535, + 0.005598304, + 0.0033422518, + -0.0024373818, + -0.019090092, + -0.009916313, + 0.0051336503, + 0.017909952, + -0.010071137, + -0.009368436, + 0.0137629, + -0.017638324, + -0.001877927, + 0.0044963476, + -0.004215743, + 0.013239892, + 0.011036862, + 0.0014518882, + 0.015270479, + 0.0068299165, + -0.010458923, + 0.007228221, + -3.774634E-4, + 0.0014761196, + 0.0023287414, + -0.007997848, + 0.016611315, + -0.040785413, + -0.0032119956, + -0.002914814, + -0.0044450844, + -0.018545516, + -0.018873103, + 0.006585041, + 0.022070607, + 0.0030194926, + 0.0044989153, + -0.014731403, + 0.014975055, + -0.005294273, + -0.013793791, + -0.008468295, + 0.031993125, + 0.004829206, + -0.017038282, + 0.003215906, + -0.0072676176, + -0.018213673, + 0.015182616, + -0.004602097, + 0.011977572, + 0.023736708, + 0.0010190225, + -0.023134239, + 0.012753709, + 0.0073443716, + 0.005323028, + 0.0137841925, + 0.025168635, + 2.9850024E-4, + 0.007003391, + -0.007037203, + -0.014952342, + 0.025059847, + 0.002918756, + 0.017315619, + -0.0025243172, + 0.006538564, + 0.020896874, + 1.24922335E-5, + 0.002233569, + 0.022651548, + -0.017113136, + -0.0065007885, + -0.004904317, + -0.014486745, + 0.0014148229, + -0.012720438, + -0.0104534635, + -0.021044897, + 0.019603012, + -0.007990148, + 0.0037289923, + 0.0017484201, + 0.0055258116, + -0.009793631, + 0.006591603, + -0.014257394, + 0.0034459385, + -0.019653264, + 0.012272282, + 0.020375593, + 0.0013591744, + -0.013561269, + -1.9398046E-4, + 0.0022333735, + -0.02578845, + -0.01813669, + -0.010745574, + 0.0037153165, + 0.007265542, + 0.008383997, + -0.034781635, + 0.0010255201, + 0.020102557, + -0.0072375624, + -0.008417324, + -0.0063729216, + -0.017995298, + 0.010350187, + 0.005289193, + 3.98393E-4, + 0.006631023, + -0.013027954, + -0.028801152, + -0.01697777, + 0.007943346, + -0.01922169, + -0.0030552014, + 0.005965563, + 0.0038546596, + -0.0046169637, + 0.02354633, + 0.0044583096, + 0.003831608, + -0.0077391304, + -0.012496155, + 0.006584601, + -0.01607687, + 0.020912262, + 0.016460355, + 0.022506082, + 0.015201667, + 0.015236663, + 0.02276853, + -0.0060022427, + 0.02760971, + 0.02027948, + 0.031086149, + -0.013134464, + -0.021198098, + 0.019676084, + -0.01785979, + 3.7766455E-4, + -0.0032157998, + 0.02092691, + -0.023434212, + 0.027898224, + -0.050114837, + -0.015574662, + 0.03341815, + -0.001492628, + 0.0013118979, + 0.003982643, + -0.019937934, + 0.035470534, + 0.00878574, + -0.013242144, + 5.2618847E-4, + 0.022057513, + -0.004928349, + -0.0054803384, + 0.0116139, + -0.022415191, + -0.014224289, + -0.014729823, + -0.010798013, + -0.0040303967, + 0.014273619, + -0.012667866, + 0.022584844, + -0.008386247, + 0.0015881343, + -0.022713337, + 0.008404933, + 0.02407412, + 0.003789207, + 0.017200569, + 0.015686953, + 0.0041077565, + 0.014717458, + -0.006618339, + 0.0057212277, + 8.5719797E-4, + -0.0017434416, + 0.009676991, + 0.031168481, + 0.019724388, + -0.0041404516, + -1.9355511E-4, + -0.041529737, + -0.021182554, + -0.022138119, + -0.030264348, + -0.0035228806, + 0.027144311, + -0.010195763, + -0.010654849, + 0.0072123315, + -0.042959735, + -0.017131478, + -0.01824145, + 0.014812824, + 0.0017916196, + -8.4645225E-4, + -0.012591975, + 0.011594383, + 0.01861442, + -0.0344881, + 0.011219927, + 0.012297568, + 0.015373958, + 0.022864968, + 0.003301931, + 0.010787861, + -0.003297477, + -0.0047708396, + 0.023390003, + -0.004937665, + 0.007062896, + -0.0021595967, + 0.0023371095, + -0.006228996, + -0.008034906, + 9.278372E-4, + -0.0034579393, + 0.012156564, + -0.022959886, + 0.036325257, + 0.016271355, + -0.015989687, + -9.1522903E-4, + -0.014970603, + -0.029973162, + -0.0028850397, + 0.011242153, + -0.0022167913, + 0.011345322, + -0.018439103, + -0.0038737652, + -0.027419712, + 0.017753618, + 0.020066459, + -0.0054950314, + -0.013998191, + -0.008886083, + 0.022467535, + 0.029170481, + -0.0034991007, + -0.019681226, + 0.015222839, + 0.0038823187, + -0.0066256775, + -0.01822421, + -0.030063385, + 0.0043760776, + -0.010345399, + 0.008633734, + 0.020911263, + 0.009070035, + 0.007694492, + 0.01484309, + 0.008322612, + 0.007900081, + -0.008412037, + -0.02288237, + 0.006420838, + -0.018708182, + 0.0020301405, + -0.007825689, + -0.0027648925, + 0.0025527268, + 0.004640653, + -0.0075087068, + 7.06045E-4, + 0.0077467314, + 0.018297562, + -0.01407025, + -0.015030829, + 0.0018139081, + 0.0021368666, + -0.009647442, + 0.0048647607, + -0.0033595157, + -0.0088772895, + -0.02456459, + -0.029448282, + 0.010053262, + 0.021701502, + 0.040863216, + 0.019711766, + -0.030270124, + 0.0073869713, + -0.016307196, + -0.0010253836, + 0.032890163, + -0.0029718033, + -0.0014536934, + -0.00738781, + -0.022092767, + -0.015634684, + -0.01082714, + 0.005874807, + -0.014647971, + -0.0014340136, + -0.004004331, + 0.007119558, + -0.020824179, + -0.007508241, + 0.00516378, + -0.007445943, + 0.02354528, + -0.017898602, + 0.032787584, + -0.024168942, + -1.2992494E-4, + 0.026432171, + 0.018074494, + -0.004705131, + 0.009027459, + -0.025954507, + -0.0030298203, + 0.02456475, + 0.014741089, + -0.003904949, + -0.010768618, + 0.013636253, + 0.007573285, + 0.008234161, + 0.018346813, + -0.002920757, + -5.851815E-5, + 6.003072E-4, + -0.03142309, + -0.002894315, + 0.009207972, + -0.001805292, + -0.0042798384, + -0.026571646, + -0.0058454913, + -0.009288435, + 0.010564923, + 0.009531933, + -0.0069123, + 0.0012166342, + 0.010813277, + 0.016594926, + 0.0012633903, + -0.018154684, + 0.036933694, + 0.0043018777, + 0.00754599, + -0.014911462, + -0.010742029, + -0.021297976, + 0.014811986, + 0.0029832043, + -0.02330585, + -0.010703931, + 0.01510878, + -0.0090215355, + 0.007851331, + -0.017259566, + 0.0039485176, + -0.0022604913, + 0.011315446, + 0.0146461865, + -0.01637988, + -0.011820975, + 0.0028934954, + 0.0071057496, + 0.014311018, + 0.017972607, + -0.0012627955, + 7.9340406E-4, + -0.0071295993, + -0.023400152, + -0.015410465, + -0.020489462, + 0.0061716796, + 0.013074647, + -0.012047183, + -0.008591118, + 0.028244495, + -0.01143272, + -0.020179238, + 0.011261221, + -0.017907493, + -0.017622737, + 0.01297166, + -0.012679447, + 0.0077808667, + -0.0490582, + 0.021621132, + -0.01437513, + 0.011659398, + -0.025640951, + 0.04800305, + -0.018592522, + -0.014995296, + -0.0018005305, + 0.009301288, + 0.008432702, + -0.023421258, + 0.0080239745, + 0.024303451, + 0.033163413, + -0.028307509, + 0.010943063, + -0.002754428, + -0.016838808, + 0.012033172, + 0.008937408, + -0.021790134, + -0.0134443715, + 2.4612717E-4, + -0.023524143, + 0.0245768, + 0.016590368, + 0.004705981, + 0.019504672, + -0.0064794873, + -0.029750394, + -0.0063739186, + 0.0025893052, + -0.0047277263, + 0.009058299, + 0.032859016, + -0.010066571, + -0.018479038, + 0.03021328, + -2.3507484E-4, + 0.020014353, + 0.015231032, + 0.009150419, + -0.010070011, + -0.029855812, + 0.012471125, + 0.030761685, + -0.015532672, + 0.044241216, + 0.01132893, + 0.020265434, + 0.01717103, + -0.007415646, + 0.0120191965, + 0.017527103, + -0.027118556, + 0.0040424145, + -0.013859817, + -0.0015578069, + 0.016589321, + -0.008479148, + -0.0073013552, + 3.9483173E-4, + -8.1737024E-5, + 0.014809569, + -0.015918378, + -0.020783719, + 0.003354111, + 0.00543503, + 0.017180152, + 0.013344825, + -0.035421442, + -0.0023216698, + 0.0024647242, + 0.015974727, + 0.0010967734, + -0.007909234, + -0.010427274, + -0.001299763, + 0.012142797, + -0.010711083, + -0.019662203, + -0.019423198, + 0.006882267, + 0.0017668713, + -0.01784182, + 0.008637573, + 0.008970594, + 0.034707278, + -0.007852203, + -3.7672927E-4, + -0.005104158, + -0.0145020215, + 0.0090349065, + 0.0047658687, + 0.016157039, + 0.003039296, + -0.009883362, + -0.02051814, + 0.01586274, + -0.012715035, + -0.005799948, + -0.005855267, + 0.0069960435, + -2.832416E-4, + 0.009802617, + -0.014027578, + -0.010961002, + -0.006893444, + -0.006188895, + 0.0054632886, + 0.009280276, + -0.016737971, + 0.001538485, + -0.012116935, + 0.0055659493, + 0.010351216, + -0.004444612, + -0.009527532, + 0.022515938, + -0.0128102265, + 0.02183488, + -0.031161016, + 0.008060093, + 0.010288136, + -0.0051385225, + -0.008192103, + -0.014239421, + 0.016855957, + 0.007709526, + 0.020565784, + -0.017466726, + -0.016895248, + -0.0054057306, + -0.00980701, + 0.01652119, + -0.017290408, + 0.017326705, + 0.005400357, + 0.01693634, + 0.010330392, + 0.0064713783, + 0.012955215, + -0.011283618, + -0.0043272753, + -0.0054368065, + -0.026174225, + -9.79855E-4, + 0.014009652, + 0.0029533976, + -0.018460667, + 0.0029165517, + 0.021452392, + 0.011523262, + 0.016017787, + -0.00845501, + -0.030162543, + 0.03835217, + -0.02479955, + 0.0051965453, + -0.011636381, + -0.004757139, + -0.005647428, + -0.0027936327, + -0.0037281576, + -0.022187833, + 0.009584154, + 0.019345907, + 0.033451967, + 0.0013635239, + 0.0035889999, + -0.005060745, + -0.012882766, + -0.0047948635, + -0.03145147, + -0.0015868131, + -0.0056804307, + -0.011708486, + 0.03110865, + 0.013143099, + 0.015205721, + 0.0067069298, + -0.0023473175, + -0.007758025, + 0.0014651534, + 0.008167448, + -0.0018570746, + -0.0060545933, + 0.008644202, + -0.0011020565, + 0.015665643, + 0.020499995, + 0.023593266, + 0.00318072, + 0.0032214762, + -0.023307377, + -0.009566098, + 0.008220225, + -0.019536529, + 0.005548998, + -0.024076609, + 0.03351747, + 0.0027696723, + 0.03735505, + -0.016173026, + 0.012562182, + 0.039028887, + -0.016217219, + -0.009880609, + -0.017413827, + 0.017009912, + -0.008376176, + -0.012673251, + -0.0049894275, + -0.02253601, + 0.003158952, + -0.002403873, + 0.017919643, + -0.0151104145, + -0.006635243, + -0.0028138314, + 0.033463396, + 0.0044623604, + 0.0010906212, + -0.010345723, + 0.008897651, + 0.012179087, + 0.009849035, + 0.016929012, + 0.01243498, + -0.0018082123, + 0.027805923, + -0.005928816, + -0.024851691, + -0.023489416, + 0.005409496, + -0.011981254, + -0.011285521, + -0.013893214, + 0.02534277, + -0.0041788784, + -0.0215748, + 0.0026746537, + -0.017483814, + -0.009562764, + -0.0042363177, + -0.018735677, + -0.00224357, + 0.026058486, + -0.0010612981, + 0.012562399, + 0.0026979728, + 0.015500194, + -0.017778484, + -0.033144385, + -0.031078957, + -0.020623898, + 0.0080558825, + 0.011298898, + -0.009927691, + -0.0046691084, + 0.043537542, + 0.015033574, + 0.011255332, + 0.029472968, + -0.009703529, + 0.013868968, + -0.012104671, + 0.02391023, + 0.014505179, + 0.019334206, + 0.011806694, + -0.0077190637, + 0.044341203, + 0.0061577456, + 0.0057229064, + 0.005255207, + 0.014501857, + -0.010671022, + -0.011660974, + 0.01206411, + 0.0032240716, + -0.012522103, + 0.03195899, + 0.032346882, + 0.023449363, + 0.0010500114, + 0.009384632, + 0.02265802, + -0.002005014, + -0.027387122, + -0.0102755735, + -0.011957567, + 0.022341955, + -0.0012239473, + 0.021305095, + -0.011758102, + 7.205937E-4, + 0.011917098, + -0.011837447, + -0.035204656, + 0.013036039, + 0.0070954654, + 0.0110117085, + -0.007715065, + -0.018805545, + -0.013974656, + 0.0012283528, + -0.0022790367, + 0.013913268, + 0.014289644, + -0.01513189, + 0.011778472, + -0.017262317, + -0.012042233, + 0.0110197, + 0.030715562, + 0.004476446, + -0.010732155, + 0.010385249, + 0.021511156, + -0.020711401, + 0.021915989, + -0.00688264, + -0.009563557, + 0.0151904635, + -0.0034984061, + -0.012413653, + 0.048090246, + -0.009986676, + 0.008402435, + -0.009247084, + 0.009476024, + 0.0024676137, + 0.016647685, + -0.016828706, + 0.008613607, + -0.0048595727, + -0.022724641, + 0.0026679141, + -0.0044678096, + -0.03924228, + -0.011396527, + 0.025232557, + 0.003225735, + -0.0059446935, + 0.010691376, + -0.003443904, + -0.018227264, + 0.017532693, + 0.012283563, + -0.002454585, + 0.0034376027, + 0.0057296935, + -0.013874499, + -0.004953692, + 0.008759105, + -0.0014968158, + 0.017409705, + 0.0039113294, + 7.90657E-4, + 0.010293772, + 0.010334758, + -0.005233977, + -0.01303875, + 0.012186109, + -0.011348573, + -0.012958081, + -0.00789529, + -0.0045517613, + -0.026382552, + -0.021009568, + 0.018156439, + 0.009371827, + -0.009513944, + -0.019677982, + 0.04970566, + 0.0035242045, + -0.012007649, + 0.00571941, + 0.018068522, + 0.007500526, + -0.014817053, + -0.013359313, + -0.004707392, + 0.0034161801, + -5.2221696E-4, + -0.0047899415, + 0.030555839, + 0.023376334, + -0.009514197, + 0.021751551, + 0.020293185, + 0.00799262, + -0.021171581, + 0.015849562, + -0.02803849, + -0.0072350986, + 0.0107452385, + 0.024274938, + -0.011755012, + -0.0077329283, + -0.012102855, + -0.019223291, + -0.009485336, + 0.0122360755, + 0.033723548, + 0.01953874, + 0.034838814, + 0.024504608, + 0.005408585, + 0.0018611434, + -0.016282333, + 0.021920357, + -0.023774805, + -0.02352358, + -0.012783782, + 8.0673967E-4, + 0.0035001212, + 0.027841013, + -0.010711088, + 0.014189162, + -0.004750483, + -0.013072911, + 0.0027837662, + -0.033150375, + -0.00400566, + 0.0077891005, + -0.003016577, + 0.003150206, + -0.023208687, + -0.018767735, + -0.0030491753, + 0.005380233, + -0.01917284, + 0.007823514, + -0.0011377983, + 0.0054243747, + 0.004628216, + -0.019819397, + 0.011817236, + -0.0020520592, + -0.010208312, + -0.025448842, + 0.004504536, + -0.009136812, + 0.021358095, + -0.0062330365, + 0.0030939667, + 0.010127283, + -0.0018794606, + -0.029928412, + -0.006242169, + 0.016890408, + -0.010523905, + -0.0012174912, + 0.005729442, + 0.027717803, + -0.021462603, + -0.0076546734, + 0.020247111, + 0.0069158575, + -0.0016035754, + -0.020567061, + 0.013200427, + -0.023773858, + -0.010978658, + -0.0041660597, + -0.022621948, + -0.003840842, + 0.0050574862, + -0.02021929, + 0.029656164, + -0.0053925337, + -1.9913424E-4, + 0.036583077, + 0.016900415, + -0.0033676424, + -4.8112345E-4, + -0.026112156, + -0.015516415, + 0.017095694, + 0.013619506, + -0.0027767275, + 0.015770786, + 0.026830055, + -0.008987027, + 3.1648457E-4, + -0.0033859496, + 0.024870202, + 0.009705363, + 0.014922346, + 0.007148055, + 0.042183597, + 5.683762E-4, + -0.015438201, + 0.020046638, + -5.5133586E-4, + 0.012990661, + -0.041328374, + 0.0073116976, + -0.017124576, + -0.0024873996, + 0.006718998, + 0.015109266, + -0.020028478, + 0.003709992, + -0.021825029, + -0.0143154515, + -0.01985738, + -0.030336907, + -0.001561365, + -0.013128115, + -0.0034094953, + -0.002756065, + -0.001952874, + -0.0027178512, + 0.025429135, + 0.0013264007, + -0.009008255, + -0.011487025, + -0.01514626, + 0.006897154, + -0.0028086551, + -0.029807404, + 0.0017053612, + 0.048798922, + 0.0077425176, + 3.4451895E-4, + -0.007359071, + 0.018800505, + -0.021893736, + -0.0018821695, + 0.011859513, + 0.0019014971, + 0.0010566415, + -5.7546434E-4, + 0.020510899, + 0.015490144, + -5.4344453E-4, + -0.0056953556, + 0.0041600573, + -0.024221301, + 0.008377395, + -0.0020536336, + -0.029025119, + -5.63791E-4, + 0.0011968308, + 0.007861282, + 0.022398887, + -0.031200822, + -0.015780132, + 0.008170134, + 0.010025979, + 0.006457043, + 0.004278994, + 0.003592772, + -0.0141494535, + -0.007734262, + -4.982152E-4, + 0.0017923851, + -0.006897979, + -0.0031261262, + 0.010861713, + 0.015910745, + 0.005352221, + -9.513825E-4, + 0.009495229, + 0.009039099, + -0.007199288, + -0.012362551, + 0.0015970174, + -0.014871751, + -0.009613657, + 0.011465877, + 0.0081606, + 4.6458142E-4, + -6.403718E-5, + 0.0052193133, + -0.0019369693, + 0.03671517, + 0.0016452166, + 0.017378105, + -0.009765249, + 6.9928163E-4, + -0.013512519, + -0.0074788784, + -0.019994458, + -0.0025802583, + -0.048788823, + -0.020701475, + 0.005041498, + -0.0129212085, + -0.011056406, + 0.0017504896, + -0.0067675165, + -0.0075425375, + -0.0010843042, + -0.010283501, + 0.0026473005, + -0.004892386, + 0.005777534, + 0.015266681, + -0.008036855, + 0.020074517, + 0.0060618557, + 0.033947486, + -0.010242594, + -0.0298292, + 0.028335119, + -0.009725022, + -0.014551919, + 0.0049998984, + 0.0012127396, + -0.029467473, + -0.004045583, + 0.00967012, + -0.014436939, + -0.0071231853, + 0.0015342083, + -0.002313259, + 8.548168E-4, + -0.0023146109, + 0.027351297, + -0.027043397, + -0.008398256, + -0.016687704, + -0.013524183, + -0.012767674, + 0.005922504, + -0.00997109, + 0.01718724, + -0.03539991, + -0.01955113, + 0.006370247, + -0.0013179237, + -0.009546204, + -0.010006201, + 0.0011130312, + 0.005597634, + -0.043681182, + -0.009964004, + 0.0016559314, + 0.0135073615, + -6.8569044E-4, + 0.0104136495, + -0.011703542, + 0.012099216, + 0.0012522537, + 0.0060378755, + 7.312256E-4, + 6.0363626E-4, + 0.008898891, + 0.008640198, + 0.019093307, + 0.0035376707, + -0.007889183, + 0.0065142815, + 0.0040555038, + 0.017892404, + 0.0013655854, + -0.014259721, + 0.019194419, + -0.030217413, + 0.019483978, + 5.1821454E-4, + -0.016034173, + 0.0053063207, + -0.010536579, + -0.007396146, + 0.0111936135, + 0.0029258716, + -0.0038437042, + -0.0053894343, + 5.853418E-4, + -0.013489166, + 5.3655816E-4, + -0.017577494, + -0.0014632381, + 0.0062711816, + -3.7918185E-4, + 0.0064172405, + 0.019436521, + -7.1506866E-4, + 0.016103063, + 0.010505801, + -0.026552642, + 0.0061499435, + 0.008870661, + 0.03844621, + 0.021094494, + 0.003977295, + 0.002203919, + 0.018323759, + -0.019226668, + 0.012399756, + 0.00221122, + -0.015237807, + 0.0134853525, + 4.868813E-4, + -0.0029966536, + 0.002580327, + 0.009463329, + 0.0027950436, + -0.028244222, + -0.018112002, + -0.007204615, + 0.011789665, + -0.009371066, + -0.01181471, + -1.9153106E-4, + -0.0052386415, + 0.0034682883, + -0.01681299, + 0.0047904947, + -0.0076165283, + -0.0060498947, + 0.017882189, + 0.007709842, + -0.015827073, + -0.033216123, + -0.008587344, + -0.0056986935, + 0.021299953, + -0.026389748, + -0.0067756143, + -0.0111963395, + -0.02711992, + -0.010345809, + 0.006433483, + -0.017126625, + 0.0070518227, + -0.023653112, + 0.008222103, + -0.013285064, + -0.004395297, + 0.024889907, + -3.7370148E-4, + -0.02724372, + 0.0123326, + 0.007150974, + -0.02640845, + -0.022137031, + -0.010742194, + -0.0019149198, + -0.0025938116, + -0.024332374, + -0.014570908, + -0.0013353842, + 0.0021161484, + -0.008863786, + 0.0071921875, + 0.016769342, + 0.008289354, + -0.015583972, + 0.029913478, + -0.011651101, + -0.022123307, + -0.015429976, + -0.0115923695, + -0.008073953, + -7.116705E-4, + -0.03154735, + -0.011077334, + 0.01612122, + 0.011949008, + -0.013307229, + -2.1840631E-5, + -0.0018052366, + 0.005842592, + 0.019030971, + -0.0012089225, + -0.050272975, + -0.012523011, + 0.0034113014, + 0.016914472, + -0.012546597, + -0.013186852, + -0.009601976, + 0.02130205, + 0.0033908582, + -0.02785212, + 8.2848995E-4, + -0.021553572, + 0.014312327, + -0.018630344, + 0.003044199, + 0.0053258417, + 0.0010861597, + 0.0047880444, + 0.0052345805, + -0.0059225555, + -0.004374661, + 0.017637758, + 0.009253273, + 0.008740261, + -0.005865918, + -0.026554026, + 0.017193059, + -0.003749616, + -0.0024674407, + -0.001712206, + -0.0077458606, + -0.0018225977, + -0.012632211, + -0.0010100795, + 0.005643455, + 0.018100979, + -0.025412114, + -2.025033E-4, + 0.018817905, + 0.03363743, + 0.019735906, + -0.02480738, + 0.00924457, + -0.0044552167, + -0.021681262, + 0.0031498787, + 0.010339592, + 0.0015459739, + -0.006289373, + 0.010533724, + -0.029700508, + 0.01703871, + 0.006122145, + -0.0030262724, + 0.0013743885, + 4.1783118E-4, + 0.03036727, + 0.0039876145, + -3.0331925E-4, + 0.0158032, + 2.4514203E-4, + 0.017270437, + -0.00684679, + 0.016420841, + 0.0063466574, + 0.018241202, + 0.033269092, + 0.018910836, + 0.018145898, + -0.019866588, + -0.026498955, + -0.017585827, + 0.01033335, + -0.0049745785, + 0.010904028, + -0.0039851433, + -0.010987069, + -0.0017520437, + -0.021854445, + 0.0025731798, + 0.013104857, + -0.01593894, + -0.014622693, + -0.02373902, + 0.00950515, + 0.007877833, + 0.01056168, + 0.012633842, + 0.013013887, + -0.0016525366, + 0.008124883, + -0.0019743808, + -0.011222879, + -0.018889802, + 0.017260168, + 0.004522499, + -0.002683565, + 0.039742526, + -0.006010599, + -0.0021642253, + -0.007974322, + -7.9417607E-4, + -0.0047157295, + 0.0077149165, + -0.010037971, + 0.025368104, + 0.0015571073, + -0.0033655795, + 0.008526487, + 0.0062858304, + -0.021608653, + 0.013674187, + -0.025130743, + -0.015646828, + 0.007016449, + 0.0044423887, + 0.008374175, + -0.0035263556, + 0.0136402715, + 0.034259357, + -0.022744132, + -0.02684365, + 0.00811266, + -0.006968344, + 0.012443542, + 0.005284236, + 0.006934584, + 0.0061797495, + 0.0022693623, + 0.019728055, + -0.013247963, + -0.019626934, + -0.0052946657, + -0.01300995, + -0.010070194, + -0.019103434, + 0.014030801, + 0.0066715046, + -0.0037243273, + 0.014570417, + -0.001840869, + 0.023605954, + 0.031700406, + 0.007177911, + -0.014913687, + -6.530852E-4, + 0.010643492, + -8.421513E-4, + -0.0064311065, + 0.008812688, + -0.006937085, + -0.013741583, + 0.016385807, + 0.03685122, + -0.023979137, + 0.0014534218, + 2.8333915E-4, + 0.0077254674, + 0.018522888, + -0.012254728, + -0.0039472636, + 0.0027739943, + 0.003692188, + -0.0062962114, + -0.016377216, + -0.01666483, + 0.015648326, + 0.013378766, + 0.028269026, + -0.0038533148, + -0.013115072, + -0.005631645, + 0.014762888, + -0.0016837609, + -0.023760816, + 0.0109650185, + -0.0039882488, + 0.03304894, + 0.00430884, + 0.00909672, + -0.028108893, + 0.0038940122, + 0.022719413, + 0.011841235, + 0.019788494, + 0.0020802172, + 0.002107941, + -0.004574193, + 0.005721416, + 0.0029729602, + -0.0034039996, + -0.007923242, + 0.005951111, + -0.020924894, + 0.014023578, + 0.028163726, + -0.0060671694, + -0.013505065, + -0.004185589, + 0.015177283, + -0.025793945, + -0.0125756925, + -0.01052687, + -0.041955046, + 0.0031572462, + 0.005273666, + 0.021619776, + -0.017565202, + 0.007990763, + -0.03675357, + -6.839654E-4, + 0.013054708, + -0.0040373052, + -0.015835011, + 0.022287842, + -0.013262486, + -0.019528309, + 0.023176512, + 0.009878523, + -0.0019914506, + -0.024102809, + -0.009874339, + -0.018153911, + 0.011665674, + -0.014001182, + -0.011274035, + -0.012545924, + -0.0028639403, + 0.012605966, + 0.016418528, + -0.018635433, + 0.007243549, + 0.010507345, + -0.005087534, + 0.0049114474, + -0.0010346306, + -0.0055927117, + 0.0053010974, + 0.0045411363, + -0.0036990005, + 0.012284162, + -0.007732896, + 0.017384503, + 0.007559544, + 0.021938086, + 0.015305027, + 0.01285555, + -0.015589408, + 0.04996056, + -0.003271083, + 0.0047759456, + -0.0019905784, + 0.0048732986, + -0.011946262, + 0.019499198, + 0.020337978, + 0.0032965338, + 0.011606922, + -0.016855191, + 0.0010966961, + -0.0054163304, + 0.013176277, + -9.765954E-4, + -0.0031477856, + 0.01513679, + 0.04328264, + -0.020743504, + 0.032878615, + 0.015023685, + -0.0061968104, + -0.012287098, + -0.007713134, + -0.015740357, + -0.0037235925, + -0.008684142, + -0.0116544, + -0.002641128, + -0.008720667, + 0.0067346944, + -0.0011313955, + -0.004281443, + -6.255419E-4, + -0.018876003, + 0.01334824, + 0.009368158, + 0.0103457095, + 0.00978522, + -1.4333075E-4, + 0.0065655853, + 0.01040611, + 0.011301649, + -0.022370739, + 0.00432774, + -0.0022790763, + 0.018092409, + -0.006991061, + -0.0014332887, + -0.0040148757, + 0.00835178, + -0.023648629, + -0.014093954, + 0.0056000045, + -0.009026847, + 0.029450703, + 0.0043693557, + 0.030918349, + -0.030100334, + -0.022382239, + -0.014913861, + -0.0045267823, + -0.009998725, + -0.002878736, + 0.012726198, + 0.004667132, + -0.008033297, + 0.018884541, + 0.003614413, + 0.010494901, + -0.0010733824, + 0.0023241844, + -0.013737076, + -0.010030268, + -0.010742656, + 0.021889351, + -0.019807734, + -0.009881702, + 0.007944103, + -0.016489806, + -0.014291235, + 0.01606155, + 0.010170581, + 0.022927873, + 0.018644502, + -0.005528078, + -0.0021811149, + -0.0063750306, + -5.51205E-4, + -0.0077163773, + 0.0099206995, + 0.012317165, + -0.013890621, + -0.029842716, + 0.003340435, + 0.0036814772, + 0.025898673, + -0.015207763, + 0.011687541, + -0.0038727294, + 0.011188194, + 0.014312585, + -0.011241756, + -0.0064041708, + -0.035509583, + -0.013531892, + -0.011995777, + -0.025052506, + -0.024779964, + 0.0011516955, + -0.020660074, + -0.03677717, + 0.0022639362, + -0.01802262, + 0.0026282088, + -0.017798385, + 0.0069366167, + 0.009670903, + -0.0071212836, + 0.003736309, + -0.0012914102, + 0.01864063, + -0.0067432215, + -0.004399099, + -0.0070743775, + 0.014575064, + -0.0126316175, + -0.01525065, + -0.03136224, + -0.015429306, + -0.0124150505, + 0.022205802, + 0.011207812, + -0.010070023, + -0.020203412, + 0.0025431793, + -0.025938809, + -0.003968685, + 0.036212973, + 0.018544074, + -0.0064496365, + 0.020914756, + -0.019629793, + -0.010206327, + 0.0079024695, + 0.0125349965, + 6.035379E-4, + 0.007946007, + -0.013883676, + -0.0103175705, + -0.009406814, + -0.016182201, + 0.0041757864, + 0.026227923, + 0.012534705, + 0.02072807, + -0.010500927, + 0.004809904, + 0.0020642928, + -0.004871827, + 0.010988569, + -0.005240915, + -0.0039452333, + 0.023318132, + 0.021112412, + -0.009933329, + -0.009030261, + -0.018758079, + -0.0012679636, + 0.009325315, + -0.010203097, + -0.032444946, + -0.0014804014, + 0.005453406, + -0.008031326, + -0.008783834, + -0.014756843, + 0.00900453, + -0.025877478, + 0.0067216703, + 0.023437161, + 0.01281831, + -0.02423419, + -0.0068312245, + 0.0053651356, + 0.020105993, + -0.017630216, + -0.014525355, + 0.021249546, + 0.0132925585, + 0.020715222, + 0.00269328, + 0.018105788, + -0.0029499931, + -0.013498209, + 2.1373235E-5, + -0.018397946, + -0.03126233, + 0.018962402, + 0.007050797, + 0.012193685, + 0.013286077, + 0.008698498, + -0.0012326385, + -0.005672085, + 0.00482714, + -0.003268038, + 0.004278885, + 0.010292813, + -0.008907224, + 0.006278935, + 0.017575348, + -0.039140698, + 0.02658443, + 0.00404942, + 0.0114378, + -0.014042245, + -0.01520038, + 0.0014019653, + -0.0074808034, + -0.0115149645, + 0.0136623075, + -0.021693101, + 0.0057870457, + -0.0033031916, + -0.017295554, + -0.001623164, + -0.024777884, + 0.0045238957, + -0.0028531433, + -0.02176815, + -0.009707965, + -0.008856376, + -0.016250385, + -0.021275727, + -0.025914311, + 0.002098556, + -0.0011413886, + 0.012925652, + 0.01583773, + 0.011007381, + -0.0023643454, + 0.023497524, + -0.0073849373, + 4.940913E-4, + -0.010620164, + 0.0036665604, + 0.021835202, + -0.021217396, + -0.002133741, + 0.007716272, + 0.037551504, + 0.018712964, + 0.0032329098, + 0.01611635, + 0.009516556, + -0.025296403, + -0.011716194, + 0.020306556, + 0.009808503, + 0.015407334, + 0.0067335316, + 0.02282707, + -0.0213339, + 0.023924075, + 0.012611384, + 0.0012185427, + 0.003743132, + -0.021950135, + 0.020460887, + -0.0032601643, + -0.025079887, + -0.0060950387, + 0.009029069, + -0.015804958, + 0.021693263, + 0.014227581, + 0.013270471, + -0.0020025154, + 9.966166E-5, + 0.0045735184, + -0.0027945053, + 0.0044962345, + -0.048409346, + -0.01189534, + -0.02709361, + -0.0034110676, + 0.01309963, + 0.009806126, + 0.0127072055, + 0.0057766214, + 0.02396151, + 0.03073255, + 0.0075575495, + 0.0059695905, + 0.012547637, + 0.004731698, + -0.010799857, + -0.010159766, + 0.025671285, + -0.012624118, + -0.024675502, + 0.02267082, + 0.01006681, + -0.0013311923, + 0.004687402, + 0.013765016, + -0.012272144, + 0.01903066, + -0.018449517, + -5.217826E-4, + 0.0034514868, + 3.4752235E-4, + -0.009282609, + 0.002277813, + -0.008808194, + 0.0107814735, + 0.0065114577, + -0.0038970965, + 0.028939048, + -0.006312379, + 0.009825011, + -0.0173262, + -3.3195733E-4, + 0.023636954, + -0.04150146, + -0.0061017117, + 0.013122931, + -0.014243785, + -0.002539611, + 0.008098517, + 0.019561544, + -7.6561E-4, + 0.028124647, + 0.013638014, + 0.028633816, + 0.004217156, + -0.010029406, + 0.013879658, + 0.02318271, + 9.420056E-4, + -8.80072E-4, + 2.3914046E-4, + 0.005320076, + -0.0015535684, + -0.009262263, + 0.019048667, + -0.009123141, + 0.01133962, + -0.0030224265, + 0.015983984, + 0.008970565, + -0.008894184, + -0.006816284, + -0.040685628, + -0.018304983, + 2.8185506E-4, + 0.009809141, + -0.020137364, + 0.0089767035, + -0.0058141137, + 0.017438263, + 0.0015701436, + 0.0316622, + -0.020053873, + -0.007918053, + 0.021274257, + -9.2302164E-4, + 0.010621625, + 0.018834976, + -0.005411452, + 0.030016597, + -0.0040326975, + -0.008759846, + -0.018765071, + -2.7791059E-5, + 0.0036924665, + -0.02558622, + -0.0044210237, + -0.027862899, + 0.011130066, + 0.024533736, + -0.034982514, + 0.017022269, + -0.019894393, + -0.017047806, + 0.008689241, + -0.006203725, + -0.0018404628, + 0.0029156038, + 0.014125083, + 0.010098613, + 4.667531E-4, + 0.009068738, + 0.004432874, + -0.014508388, + 0.0044743693, + 0.016249644, + 0.003925577, + -1.4208983E-4, + 0.038180143, + 0.0012588056, + 0.03339936, + -0.014580962, + 0.0032874756, + 0.015793383, + 0.024645606, + -0.004724639, + 0.024589373, + 0.009817284, + -0.02156069, + -0.01257597, + -0.0010730427, + -5.4559237E-5, + 0.0034112905, + 0.015125068, + 0.008751659, + 0.012189538, + 0.013618431, + 0.006565418, + -0.005713711, + -0.009395241, + 0.008974812, + -0.0033845399, + -0.00345437, + 0.009202269, + 0.032333735, + 0.019780165, + 0.008119736, + -0.004770889, + 0.003752108, + 0.0014438366, + -0.011764414, + 0.004920312, + 0.0015718001, + -9.615287E-4, + 0.015772698, + -6.2079687E-4, + 0.013216127, + 0.0013049671, + 0.0058472417, + 0.0017815338, + 0.015191637, + 5.330768E-6, + -0.01354508, + 0.0025041662, + 0.021344552, + 0.021869529, + 0.011443231, + -0.002819851, + 0.01010104, + -0.00993046, + -0.010019241, + 0.008169658, + -0.004530274, + -0.017215725, + -7.490626E-4, + 0.010870198, + -0.020268125, + 0.0038405103, + 0.009346786, + -0.008941943, + -0.018228646, + 0.0219344, + 0.026081286, + 0.017636951, + 0.0135544455, + -0.0068435445, + 0.0055503836, + 0.005120319, + -0.03730703, + 0.0011926262, + -9.812117E-5, + 0.024000313, + 0.010624355, + 0.0048722355, + 0.0149686495, + 0.009161435, + 0.012582641, + 0.010482265, + 0.0076521873, + -0.0012016305, + -0.014783674, + -0.0014148346, + -0.019252345, + 0.010291976, + 0.007833955, + -0.0136864865, + 0.024197383, + -0.0030938361, + -0.018190684, + 0.009806676, + -0.009808444, + 0.011476528, + 0.006613641, + -0.013476427, + 0.0026228635, + -0.014463224, + -0.02565693, + 0.019996447, + 0.018213606, + 0.007494794, + -0.0027840051, + 0.005520404, + -0.009746521, + 0.0020237213, + 0.014154936, + 0.028915767, + -0.020086521, + 0.0017402661, + -0.006802666, + 0.019183254, + 0.006103982, + -0.005922263, + -0.020352544, + -0.0059385444, + -0.008208089, + 0.009221693, + 0.008368813, + -0.028266223, + -0.032460816, + -0.00880939, + -0.027596442, + -0.011989402, + -0.011800892, + 0.015574816, + -0.01567376, + 0.033853434, + -0.0022013297, + 0.03061815, + -0.024093553, + -0.0011901088, + -0.012891903, + -0.015736125, + 0.016478129, + -0.00253871, + 0.007508824, + 0.013654959, + 7.8408566E-4, + 0.03303813, + -0.004266543, + -0.017040825, + 0.011808711, + 0.028033147, + -0.020203693, + -0.0052033104, + 0.03088841, + 0.011844833, + 0.01442351, + 0.01228579, + 8.90205E-4, + -0.002662074, + 0.0069335145, + 9.401797E-4, + 0.0038351913, + 0.0168634, + 0.009774026, + 0.0022113568, + 0.047234766, + -0.027096774, + -0.0031911954, + 0.0027828994, + 0.005923965, + 0.018492904, + -0.008421418, + 0.0113767935, + -0.023731727, + -0.01981558, + 0.0064509916, + -0.0014278993, + -0.025733996, + 0.029721325, + -0.020375162, + -0.005856568, + 0.0041954783, + -0.0060621663, + -0.009722909, + -0.039788358, + -0.010217462, + -0.01640768, + 0.009443366, + -0.0011836658, + -0.031464238, + -0.01825097, + -0.011997836, + -0.016704164, + -0.0021951857, + 0.01646023, + -0.014860112, + 0.027894042, + -0.009137206, + 0.015184939, + 0.0022125985, + 0.0017453377, + 0.014149194, + 0.011020162, + -0.009799878, + -0.014719917, + -0.03572769, + -0.018332988, + -0.007484263, + -0.007278335, + 0.0070037157, + 0.03412355, + 0.0017044055, + 0.0020768489, + -0.011477803, + 0.021818278, + -9.032586E-4, + 0.021133723, + -0.021994881, + 0.001975759, + 0.004779377, + -0.03695627, + 0.024630241, + -0.0016028885, + -0.016728768, + -0.008090214, + 0.017685656, + -0.012499999, + -0.0028727108, + 0.006400908, + 0.023695312, + 0.008833814, + -0.017597562, + 0.013594651, + -0.025302712, + -0.013500442, + -0.007167176, + 0.00468817, + 0.010143043, + 0.006845265, + -0.0059475983, + -0.0073899524, + -0.0144011285, + -0.018867075, + -0.006791483, + -0.021412225, + -0.01087444, + 0.010836878, + 0.0012024235, + -0.01896686, + 0.0049590603, + -0.013854999, + -0.0028566616, + 0.018455796, + -0.0013495311, + 0.012405637, + -0.028024945, + 0.019012593, + 0.0129251825, + 8.6108694E-4, + -0.011247248, + 0.019694235, + 0.0123030925, + 0.0031961799, + 0.013163545, + 0.0059356475, + 0.010558927, + -0.003474235, + 0.012816414, + 0.005505283, + -0.010054856, + -0.023739588, + -0.009647575, + 0.003548101, + 0.016455742, + 0.01575857, + 0.0065655485, + 0.016033974, + 0.0064585977, + 0.0049069487, + -0.010458352, + 0.007059706, + -0.020331943, + 0.010877491, + -0.012929161, + -0.010937857, + 0.016976716, + -0.0045563257, + 9.424506E-4, + -0.03193347, + -0.0046549346, + -0.0042487555, + 0.025176674, + -0.006351294, + -0.022522895, + 0.004209742, + -0.0018317718, + 0.0122257965, + 4.1938366E-4, + 0.016286, + -0.014523608, + 0.0035689683, + -0.005306818, + -0.0098771835, + -0.0013127648, + -0.0047688475, + -0.017638715, + 0.010409417, + -0.016008174, + 0.0072069657, + 3.2866455E-4, + 0.016878864, + 0.010332065, + -0.0033082897, + -0.004212633, + -0.021867825, + -0.008852436, + 2.3093632E-4, + -0.018853959, + 0.009249733, + 0.0026976413, + -0.0015475249, + -0.013933488, + 0.0028194913, + 0.007438456, + -0.038397532, + 0.018294003, + -8.5100695E-4, + 0.0032043715, + 0.004043238, + 4.3891266E-4, + -0.0062739877, + 0.028468296, + 0.01373131, + 0.0053893086, + -0.002983554, + -0.0023900971, + 0.0064588794, + -0.009740632, + 0.004366014, + -0.01466875, + 0.010926527, + -4.7552066E-6, + -0.009687447, + -0.023369802, + 0.007253744, + 0.010343593, + 0.002298716, + -0.025586253, + 0.017080244, + -0.015380375, + -0.0053588976, + 0.001529917, + 0.027690312, + -0.021867711, + -0.0064272396, + -0.00277616, + -0.02211769, + 0.0050841337, + 9.5978414E-4, + 0.0073275617, + -0.01190074, + 0.024889128, + -0.006732752, + 0.0067848307, + -0.012114967, + 0.02243146, + -0.030848425, + 0.0209741, + -0.013731277, + 0.023414738, + 0.0060602156, + -0.028217807, + -0.012767804, + -0.0047229463, + -0.02460589, + -0.020511502, + -0.002371121, + -0.015598145, + 0.007851567, + -0.019737678, + -0.039526932, + 0.015184579, + 0.023496099, + -5.846856E-4, + -0.0082944045, + 0.0028748005, + -0.017965611, + -0.017756961, + -0.019843329, + 0.0067491387, + 0.007724688, + 0.0068776393, + -0.0289816, + 0.013124451, + 0.019337358, + 0.012514191, + -0.018669283, + 0.022853544, + -0.039262433, + 0.002977071, + -0.0052436404, + 2.4024055E-4, + -0.009501506, + 0.01938698, + 0.04008228, + 0.0012751311, + -0.0076417653, + 0.026158748, + -0.011617619, + 0.0011755881, + -0.03640969, + 0.015125579, + 0.010501763, + 0.015258899, + -0.02664964, + -0.0041334056, + -0.024436466, + -0.006226369, + 0.02602726, + -0.0068097347, + -0.014886716, + 0.0092118485, + 0.029000575, + -0.0029392426, + 0.004472962, + -9.876605E-4, + -0.0035896003, + 4.8464714E-4, + 0.0059393095, + 0.01571702, + 0.021667106, + 0.016667675, + -0.016094254, + -0.016598804, + 0.01675397, + 0.009192276, + 0.0064030276, + -0.004013533, + 0.0021689918, + 0.0041558864, + -0.008440148, + -0.0253996, + -0.01413477, + -0.03280186, + 0.004995582, + -0.016735397, + -0.011159237, + 0.020894784, + 0.01823335, + 0.008639305, + 0.01436381, + 0.019451682, + 0.009875195, + 0.0011909592, + 0.0038495404, + -0.022061704, + -0.002605589, + -0.008697044, + -4.7753274E-4, + 0.013028551, + -0.018041464, + -0.006473397, + -0.008551297, + -0.008513802, + 0.0033945087, + -0.006001329, + 0.026319537, + -6.037103E-4, + -0.008036768, + 2.0179401E-4, + 0.012289334, + -9.120082E-5, + 0.012395218, + 0.031010829, + 0.011634277, + 0.011654768, + 0.027848125, + -0.003583491, + -0.027212162, + 0.010471222, + -0.01670893, + -0.016759466, + 0.009159492, + -0.01924079, + -0.010445996, + 0.018165747, + 0.03732631, + 0.007174115, + -3.7962505E-5, + 0.0021116755, + -0.01625649, + -0.020161131, + -0.0028979604, + 0.001883829, + 0.024597555, + 0.010994297, + 0.014529102, + 0.0044042133, + 0.008547014, + 0.0053419834, + 0.007750656, + 0.005261345, + 7.245577E-4, + -0.0075154095, + 0.011612494, + 0.019654132, + -0.018994546, + -0.0184015, + -8.512469E-4, + -0.030819666, + 0.031152032, + 0.014595515, + 0.014030668, + -0.009288487, + 0.014987315, + 0.03807883, + -0.022788312, + -0.019754715, + 0.014536462, + -0.02363551, + 0.00795027, + -0.005113175, + 0.004653827, + -0.0078094546, + 0.011356193, + 0.0016201664, + 0.013939861, + -0.0052174455, + 0.014289589, + 0.019646792, + 0.021152154, + -0.001001927, + 0.007851643, + -0.013488028, + 0.016435983, + 0.008946916, + -0.01631092, + -0.022748008, + -0.003504726, + 0.0074932813, + -0.002982787, + 0.029891636, + -0.0042733364, + 0.023500653, + -0.028476117, + 0.00825433, + 0.008942765, + 0.020208247, + -0.007723392, + 0.0033054042, + 0.009452517, + 0.038844574, + -0.04119541, + -0.012230054, + -0.027878799, + 0.005531327, + -0.0045071794, + 0.0030332603, + -0.026461383, + 0.020128934, + -0.021636616, + -0.0026721389, + 0.021192383, + -0.0031469702, + -0.029040156, + 0.012035185, + 0.009914368, + 0.012702089, + 0.04120519, + -0.021207927, + -0.0055031786, + -0.010443807, + -0.0028793907, + -0.0020932334, + 0.016872682, + 0.022978403, + 0.02841622, + -0.0018077906, + 0.011650088, + -0.022967394, + -0.0022378243, + 0.0015641022, + -0.027037118, + 0.019785406, + 0.0013595112, + -7.917829E-4, + -0.020596862, + 0.024891745, + 0.008881069, + 0.002546753, + 0.012474326, + -0.013808157, + -0.003772188, + 0.0032111567, + -0.004892313, + 0.020104984, + -0.001803603, + -0.00864601, + -0.016600389, + 0.023306724, + 0.012642046, + -0.009003552, + 0.009636106, + 0.016665312, + 0.0036307897, + -0.01907432, + 0.013633492, + 0.014585814, + -0.010837921, + -0.03152404, + -0.007361514, + 0.006209801, + -0.008333068, + 0.013114184, + 0.024287883, + 0.0043154745, + -0.013492214, + -0.012628451, + 0.012256101, + 0.008367812, + -0.009047383, + 0.02389221, + 0.0057403753, + -0.019198466, + 0.0088914605, + 3.7337853E-5, + -0.010153243, + -0.009151877, + 0.018273082, + -0.015923968, + -0.010427619 ], - "paletteEmbedding": [ - -0.009860796, 2.2434868e-4, 0.00885959, 0.007225219, 0.017894674, - 0.009973896, -0.011433647, -0.03458244, 0.013348277, 0.0011102766, - -0.0068418337, -0.045234855, 0.06462027, 0.05291242, -0.014800439, - -0.008851048, 0.019001734, -0.007625901, -0.058543645, -7.8786287e-4, - -0.032734066, 0.033933196, 0.031100636, 0.019220637, 0.05770539, - -0.0082182875, 0.016952312, -5.829703e-4, 0.021955458, 0.02398265, - 0.017906826, 0.0079047475, 0.020158792, 0.081529975, 0.050270293, - -0.049369585, -0.013518486, -0.05443109, -0.0076292595, 0.0052753207, - -0.017399987, -0.042173706, -0.013910169, -0.020731028, -0.018766733, - 0.014158908, 0.0062140855, 0.031113427, -3.7190245e-4, -0.040652294, - 0.044800274, 0.03925272, 0.09924596, -0.0090938145, -0.023618681, - 0.03287442, -0.021308368, 0.031279948, -0.05176141, -0.013235537, - 0.037632782, -0.03742657, -0.012718584, 0.0113464575, 0.0031061089, - -0.010843034, 0.03186101, 0.025403924, 0.034898665, 0.021118803, - 0.0148145575, 0.031413864, -0.010966453, 0.04126911, -0.008013338, - -0.009876462, 0.020154906, 0.031987935, -0.0014678487, -0.019317532, - 0.008744797, -0.0026385365, -0.024359278, -0.005867511, 0.053769004, - 0.013244784, -0.059082974, -0.016681667, -0.026155032, -0.006514827, - 0.015499876, -0.049649782, 0.062154446, -0.022188952, 0.021440638, - 0.042247824, 0.041562364, 0.015550656, -0.018805437, -0.01001944, - -0.022764605, 0.0018094021, -0.0347423, -0.004670343, -0.016922133, - 0.036295965, -0.010287408, -0.030431338, -0.0017448693, -0.005053859, - 0.04282453, -0.0046661505, 0.056281902, -0.01283835, 0.047663305, - 0.0043363655, -0.009879261, 0.018253574, -0.0364663, 0.032020155, - -0.029427053, -0.011774265, -0.028565243, 0.045355074, 0.021091672, - -0.009248109, 0.017120954, -0.048552506, -0.051078506, 0.041458424, - -0.0037619967, 0.018120278, 0.016603814, 0.004496935, 0.05798089, - -0.0071654543, 0.012652162, -0.025151255, 0.016894339, -0.027215583, - 0.04453241, 0.015364951, -0.0057040993, -0.06577234, -0.0050156964, - 0.062224478, -0.008384164, 0.010428471, -0.024887567, -0.015156779, - 0.029164819, 0.038581647, -0.00779924, 0.067010395, -0.008975964, - 0.031039057, -0.031024843, -0.007761358, -0.056183245, -0.009010847, - 0.036371246, 0.048548702, 0.022094542, -0.0035889011, -0.038194865, - 0.06416149, 8.200687e-4, -0.0058089597, 0.03959036, -0.027065242, - -0.046734463, 0.00936915, 0.06438089, -0.0055214665, -0.041363172, - -0.05163145, 2.6381016e-4, 0.02877721, 0.028170057, -0.038064975, - -0.004072087, -0.03713966, -0.02173499, -0.014941869, 0.020046195, - -0.021891829, 0.03834277, 0.0039822683, 0.0560472, 0.026227947, - -0.028801197, -0.016095234, -0.010334645, 0.029432813, -0.02413818, - -0.015028644, -0.026386958, -0.020035654, 0.031529553, 0.007984724, - 0.0023408795, -0.04718193, 0.026765643, -0.057701048, 0.029330008, - -0.004472722, -0.042046767, -0.010495519, -0.016293652, 0.04193975, - -0.0214865, 0.020619784, 0.07171083, 0.022116397, -0.010245964, - 0.0013209297, 0.0060463566, -0.022608535, -0.008230884, 0.014528695, - 0.029474542, -0.0031612539, -0.027548729, 0.036656868, 0.013184199, - -0.06263329, -0.0041131503, -0.002162144, 0.003596683, 0.033084128, - 0.012844817, 0.039144903, -0.015643813, 0.062372763, 0.008306745, - 0.006996447, -0.01038239, 0.010514222, -0.040582128, -0.03425305, - 0.0080606975, -0.06835894, -0.012146189, 0.009903067, -0.044845063, - 0.026749102, -0.012017454, -0.0048035523, -0.030549308, 0.006239314, - -0.017516147, -0.03433115, 0.012877076, 0.04084977, -0.022422226, - 0.0054252483, -0.04062309, -0.010299083, 0.018772468, -0.054672424, - -0.015072532, -0.0030239094, 0.029165756, -0.012554582, 0.019823253, - 0.03129683, 0.006672241, 0.05183325, -0.0028382337, -0.027377576, - -0.025614297, -0.0026244584, -0.010682852, 0.026488503, 0.07520354, - -0.014597966, -0.042645134, 0.024437947, -0.011362453, -0.06288108, - -0.0231197, 0.035034105, -0.026736904, 0.019239187, 0.052008715, - -0.014075172, 0.039817274, 0.046725083, -0.001677327, -0.013976919, - -0.052638087, -0.015991582, 0.03285663, 0.011281759, 0.0298036, - -0.027598504, 0.069427215, -0.03864541, -0.03664817, -0.016538264, - -0.047375917, 0.040849186, -0.0075411936, 0.014138073, 0.0060746544, - 0.011028597, -0.046449862, 0.02567415, 0.018950632, 0.010961161, - 0.047072213, 0.0036911475, -0.0031573432, 0.0014906552, 0.029529952, - 0.02127743, -0.060215943, 0.013880532, 0.0134640215, -0.010387506, - 0.052962396, -0.0052859513, 0.016372707, 0.011821598, -0.010697515, - 0.005781438, 0.055424426, 0.00943176, -0.054607846, -0.041228194, - 0.027876565, -0.07378111, -0.0071200803, -0.015833115, 0.0014155996, - 0.05449593, 0.053451177, -0.036699194, 0.009853072, 0.016438445, - -0.013468701, 0.039303843, -0.01747836, 0.043300036, -0.0019913926, - -0.063119896, -0.03589685, -0.0040511233, 0.024824701, 0.0022043136, - -0.019467901, 0.014247564, -0.010639235, -0.004647471, 0.0026794814, - -0.011108636, 0.01066397, -0.009911782, -0.008874059, -0.011775748, - 0.012589219, 0.0028030132, -0.049440295, 0.07867291, 0.01784975, - -0.0038150134, -0.012741749, -0.008983284, 0.008722931, 0.010999612, - -0.010373372, -4.1662817e-4, -0.0100030545, -0.04089766, 0.0057530734, - 0.03761222, 0.019454233, -0.008723204, 0.0055155396, -0.010826986, - -0.03539762, -0.015230754, -0.010249104, 0.025997974, 0.018397428, - 0.013221834, -0.011162811, -0.0038930415, -0.052903943, -0.057553906, - 0.013411205, 0.0067424974, -0.025692815, 0.024902996, 0.0022769847, - -0.02634257, 0.019769805, -0.040584426, 0.01251304, -0.010018402, - 0.013211685, 0.02825574, 1.00231904e-4, 0.03015539, -0.03432254, - -0.05761475, -0.017685072, -0.009846334, 0.052137464, -0.05759684, - 0.010910438, 0.0101645915, -0.02659339, -0.03860913, -0.020360693, - -0.03711005, 0.013481314, 0.070501655, -0.05579665, 0.039292846, - 0.0020735408, -0.059845142, -0.021470407, -0.018078232, 0.0023624462, - -0.02861477, 0.03355277, -0.010454453, -0.03735162, -0.040639427, - -0.013483642, 0.005996789, 0.044965256, 0.0051139076, 0.05256438, - 0.030284058, -0.03882847, -0.019155191, -0.0071905237, -0.055427063, - 0.05804646, -0.0128613, -9.49244e-5, -0.094021544, 0.040467963, - -0.06339359, -0.015347264, 0.005483742, -0.016577022, -0.04785051, - -0.021083053, -0.0062583587, -0.02019116, 0.045774255, -0.027406327, - -0.019584501, 0.018197585, 0.012969123, -0.007609835, -0.041745193, - -0.021593127, -0.03592267, -0.05569542, 0.0262935, -0.017861398, - -0.029547118, 0.02534527, -0.02448675, 0.021153921, 0.014692152, - 0.04150728, -0.012770151, -0.00372805, 9.095288e-4, 8.1836357e-4, - -0.017232673, 0.020413097, -0.0043018754, 0.019069118, -0.01640763, - -0.03608904, 0.061361495, -0.008149519, 0.007441013, 0.0070289853, - -0.0016175705, 0.05613011, -0.006819989, 0.026696267, -0.02478173, - 0.044517267, -0.023701593, 0.007087797, -0.05639482, -0.0020389305, - 0.039376277, 0.017758278, 0.019068798, 0.023283022, -0.03942385, - 0.0050544287, -0.05161427, -0.026639141, -0.0060360343, -0.048804875, - 0.039706603, 0.05935211, -0.05923441, 0.0320039, 0.013499273, - -0.040077474, -0.02088421, -0.016857712, -0.021724837, -0.007503379, - 0.06379108, 0.09711524, -0.009326328, 0.038229104, 0.030839134, - -0.08371438, 0.07070588, 0.012542514, 0.006242096, -0.0248668, - 0.007254017, -0.0019844, -0.004658454, 0.009576018, -0.00771315, - 0.0014144683, -0.019193314, -0.010946854, -0.015562944, 0.036417827, - 0.075433046, 0.0051685697, -0.014618417, -0.032991774, 0.017396463, - 0.0117176445, -0.012457827, -0.004796241, 0.010189283, 0.026992759, - 0.027274607, 0.032360952, 0.061814304, 0.031007817, 5.686003e-4, - 0.019062757, -0.0276619, -0.044344068, -0.017689886, 0.011536856, - -0.014560498, -0.057268478, 0.002217127, 0.015313195, 0.023809731, - -0.04792568, -0.050285775, -0.005291434, 0.02983238, -0.02496368, - -0.045064762, -0.03611573, 0.015301853, 0.042299516, -0.055526845, - -0.02040866, -0.019379485, 0.027531276, -0.064023204, 0.015083541, - -5.101968e-4, -0.03447148, -0.01075717, -0.029395998, -0.024753101, - 0.0073985266, -0.04038518, 0.03990804, 0.0150126135, 0.028717132, - -0.0066403584, 0.027700607, -0.029832019, 7.296859e-4, -0.0024068498, - 0.01402942, -0.056181733, 0.007903187, 0.0061829495, 0.009838646, - -0.03717302, -0.03533558, 0.042140547, -0.012552906, -0.0076380437, - 0.0115443375, 0.013488522, -0.02642252, 0.008023353, -0.09267589, - 0.038141306, 0.0038189318, -0.02242617, 0.04837869, 0.0186454, - -0.010724684, -0.012058346, 0.03884212, -0.005372321, -0.004950237, - 0.06889919, 0.067969374, -0.040104996, -0.014525178, 0.008751328, - -0.025035018, -0.0068929084, 0.023826456, 0.018546993, -0.07900469, - -0.014537034, 0.009634519, 0.041569535, -0.0108734965, 0.02038328, - 0.001968354, -0.012580649, 0.040382385, 0.030873783, 0.0359337, - 0.07309918, -0.05346039, 0.026580306, 0.009732182, -0.0058900435, - -0.030898998, 0.005767692, 0.042091075, 0.010232522, 0.01136941, - -0.024376582, 0.006136411, 0.013747011, 0.012218344, 0.0888144, - 0.009733247, 0.021916064, 0.043365926, 0.0073172594, 0.052725405, - 0.06753479, -0.01374801, -0.03135543, 0.0180876, 0.023402277, - 0.037653413, -0.015633592, -0.021873683, -0.030121591, -0.05288764, - 0.03653076, -0.011738144, 0.04153236, -0.024265712, -0.018589852, - 0.009402135, 0.052918296, -0.025103606, -0.03760229, -0.03228836, - -0.010074558, -0.044580508, 0.0027853395, -0.056973796, -0.0051556313, - -0.025169173, -0.036174048, -0.0059701176, -0.04423567, 0.028696747, - 0.020719577, 0.00807163, -0.03384245, 0.016208764, -0.0065452415, - -3.3398252e-4, 0.02593773, 0.0053893076, -0.024035001, -0.045674983, - -0.019010007, 0.032219537, 0.0035661145, 0.02567557, -0.029357828, - 0.017832546, -0.026104836, -0.027748184, -0.043502893, 0.0038405093, - 0.021928927, 0.053724345, -0.023594039, 0.028336903, 0.01586815, - 0.021152545, 0.027038753, 0.029777713, 0.011268932, -0.016706813, - -0.037930384, -0.005173665, -0.011114686, -0.037493207, -0.005888378, - 0.01882109, -0.013763562, -0.07867485, -0.0068252855, 0.012483132, - 0.022716574, -0.02080514, 0.015583313, -0.028984739, 0.009132113, - 0.025639793, 0.0368406, -0.002182627, 0.03510615, 0.03716318, - 0.016051572, -0.048701078, 0.020073928, -0.024847994, 0.018899005, - -0.03946958, -0.011349975, 0.019167984, 0.03609421, -0.030541161, - -0.006689544, -0.03189094, 0.029668571, 0.04611808, 0.006374527, - -0.007692633, -0.008651427, -0.029687628, 0.011091437, 0.03474487, - -0.056431245, -0.031411693, 0.012031516, -0.0028916234, -0.004033299, - 0.012988424, 0.0057953657, -0.033600386, 0.012380746, 0.015892593, - 0.018390166, 0.009630184, -0.044068962, 0.04038936, -0.0014180309, - -0.090139896, -0.034662265, -0.019933464, 0.026945967, 0.059131492, - -0.0041156705, 0.02376616, -0.022217685, 0.022277761, -0.00840572, - -0.023759287, -0.03288038, 0.059805837, -0.026457777, -0.009474327, - -0.025227375, 0.06355833, -0.020787986, 0.011927648, -0.018137442, - 0.0020369918, -0.078265764, 0.04964513, 0.034035265, 0.0349647, - -0.015088515, -0.034544148, 0.020539317, -0.058007766, 0.054795884, - 0.0043585068, 0.018501012, 0.044753242, -0.036706254, 0.031899776, - 0.0126535855, 0.040961545, -0.004257206, -5.124361e-4, -0.046538405, - -0.025907228, 0.008862293, -0.011235045, -0.0034963721, -0.047146294, - -0.03233989, 0.011608461, -6.831241e-5, -0.036006317, -0.019970685, - -0.015017351, -0.07245834, 0.068552025, 0.00545136, -0.028276062, - -0.0051416457, -0.041956753, 0.008478251, -0.050282322, 0.014553381, - 0.030506076, -0.05391894, 0.02492599, -0.059552144, -0.030855477, - 0.031175062, 0.04876941, 0.02935586, -0.034346506, 0.027615273, - -0.020125192, -0.01350555, 0.0044459123, 0.0051185386, -0.02988711, - -0.003714134, 0.0148530165, 0.023870068, 0.03138506, -0.016495485, - 0.03669001, 0.014099338, 0.05977999, 0.013167012, 0.0015345962, - 0.019665176, 0.036292482, 0.032715753, 0.039032847, -7.701363e-4, - 0.03554051, -0.047300257, 0.05002755, 0.026299477, -0.0017496757, - 0.020894933, -0.01046176, -0.06970547, -0.03472626, 0.036832944, - 0.030233819, 0.0416758, -0.00830103, -0.0053235097, -0.0035413115, - -0.059193853, 0.07005247, -0.0037181738, -0.0052944953, 0.003418845, - -0.03353077, 0.017913299, -0.022636889, -0.020078596, -8.4036664e-4, - -0.019050485, 0.040274, -0.025756167, 0.005964387, 0.03848728, - 0.01091561, -0.03131287, -0.017504279, -0.0104440125, 0.04013524, - -0.02141832, 0.008107416, 0.053496536, 0.019016283, -0.024621531, - 0.015369957, -0.02581816, 0.007849677, -0.03232022, -0.020837687, - -0.06773359, -0.020895192, -0.009932062, 0.06331906, -0.02302865, - 0.003873211, 0.016623745, 0.03334611, 0.002663266, 0.0135031445, - -0.0074948324, -0.027513629, -0.021993833, -0.029634727, -0.025864841, - 0.0018523748, 0.030770486, -0.016361287, 0.01064045, 0.050310884, - 0.045110438, -0.101912536, 0.06118194, 0.021992443, -2.0146143e-4, - 0.021535328, -0.01686029, -0.016028605, 0.0069455802, 0.008025149, - -0.0135459155, 0.010093472, -0.042724427, -0.024239356, 0.061262365, - 0.021371793, -0.028274417, 0.042691104, 0.006249878, -0.005815717, - -0.011222392, 0.0043146037, -0.031845935, 0.008160486, 0.027106294, - 0.0011572627, 0.044088185, 0.04368769, -0.0050184014, -0.010038058, - -2.2856603e-4, 0.04849153, -0.017167691, 0.01880195, -0.025626646, - -0.027428677, 0.05657012, 0.0117281, 0.08103364, 0.0028246003, - 0.07594617, 0.026274541, 0.05960697, 0.038780347, -0.008611901, - -0.012504594, -0.011067388, -0.0097136665, 0.036493495, -0.03166627, - 0.050997686, -0.033066712, -0.011161962, -0.007499922, 0.016111225, - -0.025276376, -0.022675697, 0.08159405, -0.022302797, -0.028853208, - 0.03501156, 0.044782184, -0.05320803, -0.05545919, 0.019459475, - 0.02933896, 0.0128376335, -6.237385e-5, 0.017883914, -0.033773545, - 0.036152568, -0.0066586463, 0.021743476, -0.016519649, 0.021064458 + "paletteEmbedding" : [ + -0.0020102437, + -0.026884358, + 0.025183758, + -0.0054649543, + 0.0036308237, + 0.02681004, + 0.0030531767, + 0.025207667, + 0.030649966, + -0.010382006, + -0.032772284, + 0.04932295, + -0.04506889, + 0.032862525, + 0.023021175, + 0.033838682, + -0.0033030629, + 0.019317867, + -0.016956305, + -0.029933149, + 0.021862997, + -0.068540566, + -0.01768402, + -0.02206263, + -0.029677799, + 0.012057909, + 0.043402497, + 0.07881273, + 0.021519465, + -0.0011434265, + -0.019639522, + 0.0112412395, + 0.066774495, + -0.016453011, + 0.001572377, + 0.02252606, + -0.009122205, + -0.0047887573, + 0.0024073955, + -0.024859987, + -0.059065334, + 0.03329157, + 0.014559623, + 8.9788286E-4, + 0.026171602, + -0.0045589036, + 0.00918105, + -0.032196585, + -0.042081017, + -0.019447712, + 0.021134615, + -0.03238332, + -0.0064477515, + -0.020064434, + -0.025546921, + -0.028329588, + -0.01510717, + 0.006220104, + 2.0669328E-4, + -0.04628101, + -0.06847166, + -0.038919415, + 0.025397915, + -0.017565917, + -0.029477403, + -0.02511514, + 0.005260185, + -5.962932E-4, + 0.042843357, + -0.008184439, + -0.014148, + -0.010579209, + 0.056239005, + 0.037675876, + -0.007124409, + 0.051257458, + -0.059958063, + -0.0038651954, + 0.049560264, + 0.028217064, + -0.0038280638, + 0.017121796, + 0.009207529, + 0.01824061, + 0.054735124, + -0.031018723, + -0.013103877, + 3.832718E-4, + -0.05674284, + 0.0048688296, + -0.017458042, + -0.05315295, + -0.0022082287, + 0.02031442, + 0.010633805, + 0.0420315, + -0.024364082, + -0.01899304, + -0.0026909038, + -0.0040795878, + 0.037637524, + 0.00946469, + 0.016315293, + 0.02226633, + 0.023540996, + -0.021771181, + -0.02825883, + 0.0149674695, + 0.0258575, + -0.023402447, + 0.06930766, + 0.011580963, + 0.006156798, + -0.025961524, + 0.03781763, + -4.893089E-4, + -0.036054496, + 0.031286556, + -0.02611397, + -0.033503678, + 0.0043445, + 0.027851371, + 0.08796279, + -0.009983056, + 0.008714197, + 0.04610983, + 0.0076091187, + -0.026928104, + 0.041671, + 0.06411958, + 0.017356435, + 0.01904211, + 0.042333342, + 0.028366225, + -0.052674174, + -0.0035736824, + -0.017125927, + -0.0043027285, + -0.070888504, + 0.0061563067, + -0.003218329, + -0.035140734, + 0.033890918, + -0.012201, + 0.025363846, + 0.04162838, + -0.010896374, + -0.0035179323, + 0.015966255, + -0.025912512, + 0.065891355, + -0.023307983, + 0.023192957, + 0.040486615, + -0.017715642, + -0.029166387, + -0.029424071, + 0.023749376, + 0.01238396, + 0.062033363, + -0.026086645, + -0.015327677, + 0.019969637, + 0.0487443, + -0.009388743, + -0.03051636, + 0.058263715, + -0.001110479, + -0.0018155132, + 0.041879997, + -0.036094274, + 0.009958755, + 0.010454604, + -0.017573308, + 0.054034907, + 0.05338549, + -0.0076510715, + -0.0099664815, + -0.012376308, + -0.075342774, + 0.03944816, + -0.0022318359, + 0.0073354365, + -0.016259737, + -0.025885768, + -0.004162973, + 0.012119734, + -0.0142236715, + 0.03334953, + 0.04674569, + 0.038094733, + 0.024405202, + 0.011402385, + 0.04332262, + -0.042249702, + -0.002147717, + 0.018793399, + -0.06554761, + 0.012040829, + 0.0073139737, + 0.0047010435, + 0.018529749, + -0.06837966, + -0.04455283, + 0.0037805974, + -0.013179936, + 0.03654216, + -0.007189595, + -0.04151328, + 0.04276994, + 0.052177504, + -0.036777887, + 0.0051733465, + -0.012449847, + -0.026529444, + -0.012961474, + -0.08883098, + -0.028679356, + -0.036560602, + 0.03427729, + 0.030598719, + -0.022916019, + -0.03631877, + 0.010892684, + -0.028198257, + -0.012675065, + 0.015506141, + -0.018741846, + -0.026043892, + 0.040669415, + -0.06897005, + -0.009944248, + 0.020760221, + -0.0025822178, + 0.012819554, + 0.013587635, + -0.0396901, + 0.017720325, + 0.010082348, + 0.033955622, + 0.014655283, + 0.0052762935, + -0.074784175, + 0.02676002, + 0.029009517, + -0.0038715636, + 0.015013023, + 0.0388427, + 0.030941283, + 0.013180475, + 0.057909075, + 0.015942955, + 0.017587991, + 0.0026368639, + -0.018610822, + -0.020271095, + 0.011536147, + 0.013657974, + 0.03745623, + -0.028800745, + 0.043228067, + 0.034648113, + 0.02438863, + 0.050981086, + 0.0026063162, + 0.002141419, + -0.014124374, + 0.016150458, + 0.06504158, + 0.054995935, + -0.016871018, + 0.01793778, + 0.04145722, + -0.026557954, + 0.014056919, + 0.0012370768, + -0.008988952, + 0.006052252, + -0.05007627, + -0.07942463, + -0.0056626694, + 0.026980467, + -0.01636395, + 0.013660624, + -0.039462205, + -0.041669413, + -0.020576827, + -0.044035204, + 0.008945022, + -0.02747297, + 0.0047294693, + 0.0010535518, + 0.012072781, + 0.007185223, + -0.02857759, + 0.0188211, + 0.020766588, + -0.013485619, + -0.037592996, + -0.026169728, + -0.017014354, + 0.0056012184, + -0.041262697, + 0.006473712, + 0.06468772, + 0.048752137, + 0.015085343, + 0.036137205, + 0.043483034, + -0.018255427, + -0.01990446, + 6.2204164E-4, + 0.018532556, + 0.03421925, + 0.06784243, + -0.014431092, + 0.0540329, + 0.019857641, + -1.2441442E-4, + -0.012624491, + -0.042396642, + -0.012971579, + -0.035093036, + -0.027780829, + 0.056634888, + 0.034311373, + -0.016151097, + -0.03387843, + 0.027866807, + -0.042722117, + -0.008178705, + -0.041259546, + 0.015814854, + 0.018097177, + 0.02500352, + -0.034475084, + -0.006386182, + -0.0028012455, + -0.008698955, + 0.021234771, + 0.057386376, + 0.0047416897, + -0.034401413, + 0.0060631433, + -0.0731734, + 0.0065242997, + -0.020727077, + 0.014205013, + 0.004661603, + -0.016674621, + -0.050733794, + 0.031586807, + 0.020726675, + 0.021317689, + -0.05545111, + -0.0044132276, + 0.048816334, + -0.033049624, + 0.035165492, + 0.030972037, + 0.005298653, + -0.013686836, + 0.021681057, + -0.043023102, + -0.00984777, + 0.03688549, + -0.0013242745, + 0.0011837194, + -0.0030397272, + 0.040981635, + -0.012173975, + 0.010762548, + -0.041676145, + 0.0034612045, + 0.03498028, + -0.008602429, + -0.01262788, + -0.011670718, + -0.029623985, + -0.004525443, + -0.028478302, + 0.040631667, + -0.013536597, + -0.04364859, + -0.021476118, + -0.022821955, + -0.0064117857, + -0.043663256, + 0.056762256, + -0.020040125, + 0.004689276, + -0.020379763, + 0.026869347, + -0.013850274, + -0.030086564, + 0.011431847, + -0.040105093, + -0.03165072, + -0.018296633, + 0.011915521, + 0.017500782, + -0.046678353, + -0.023345467, + 0.0060765524, + -0.018875845, + 0.053709395, + 0.010254164, + -0.062525906, + -0.0140813375, + 0.0011062076, + -0.039727394, + -0.0070109097, + 0.025464335, + -0.004538062, + -0.043891583, + -0.052729044, + 0.0045400835, + 0.069480754, + 0.058131862, + 0.026607575, + -0.012619355, + -0.047224473, + 0.017677613, + 0.033149373, + 0.005197806, + 0.015300966, + 0.00978868, + 0.011822421, + 0.007580241, + 0.051994376, + 0.04243135, + 0.029979898, + 0.055738073, + 0.002161514, + 0.014883927, + 0.0018233032, + 0.023752099, + -0.07107778, + -0.02788026, + 0.012969516, + 0.013149276, + -0.002331236, + -0.019966232, + -0.0076966793, + 0.011018335, + -0.010262962, + 0.044060107, + -0.028974982, + 0.019221349, + 0.017732281, + -0.035072785, + -0.00959173, + 0.0036624765, + -0.005199433, + -0.02717652, + -0.022913342, + -0.0019333479, + -0.033461966, + 0.027881244, + 0.020923926, + 0.019365905, + 0.03853835, + -0.012590593, + -0.0010663787, + -0.012387245, + -0.00931463, + 0.05198185, + 0.01879597, + -0.0070429943, + 0.03283354, + -0.0649904, + -0.0047932947, + -0.0076461844, + 0.04205139, + 0.01959527, + -0.05607451, + 0.044556074, + -0.045292858, + -0.035465363, + -0.049231563, + 0.00973619, + -1.7230473E-4, + -0.0037272056, + 0.028299047, + 0.056822516, + 0.0021445304, + 0.039528634, + -0.014797092, + -0.025704974, + 0.05013156, + -0.048293605, + 0.046815205, + 0.0014072472, + -0.014713572, + 0.027609363, + -0.02197855, + 0.024280464, + 0.041019566, + 0.032106366, + 0.020232258, + -0.008905179, + -0.0061190636, + -0.0021367643, + -0.08378985, + -3.4241038E-4, + 0.06946933, + 0.046806905, + -0.019030737, + -0.023792502, + 0.011578622, + 0.030836735, + 0.024347505, + -0.02067136, + 0.05808314, + 0.026279453, + -0.0151259, + -1.0506306E-4, + -0.027627027, + -0.014530246, + 0.032824945, + -0.002978168, + -0.017185703, + 0.03740312, + 0.040949553, + -0.0060945023, + 0.026563682, + 0.0022086627, + 0.058004368, + -0.014101984, + -0.0135514615, + -0.041931763, + -0.03013763, + 0.0057493057, + 0.037130345, + -0.010151735, + 0.003037096, + 0.033163987, + 0.0016979432, + 0.0069361054, + -0.0074183648, + 0.05356085, + -0.004734028, + -0.005225941, + 0.015850134, + -0.014220753, + -0.029771624, + -0.0045971097, + 0.041961234, + -0.016491683, + 0.039695952, + -0.021045381, + -0.030224407, + -0.032551873, + 0.090855435, + 0.02276729, + -0.047411136, + -0.0027448034, + -0.012856963, + 5.3549218E-5, + -0.03566695, + 0.02772996, + 0.039109673, + 0.01816772, + 0.022943275, + 0.015846249, + 0.03205544, + 0.019295735, + 0.011570125, + 6.397456E-4, + -0.021419033, + 0.0067038345, + -0.052398898, + -0.011674558, + -0.034156278, + 0.042338382, + -0.024660291, + -0.033144314, + 0.013718736, + 0.06883739, + -0.053107932, + 0.023218254, + -7.400657E-4, + -0.0028423623, + 1.623868E-4, + -0.016935654, + -0.031145336, + 0.060874533, + -0.04449808, + -0.035447262, + 0.0027471534, + 0.025161047, + 0.025227085, + 0.037020765, + 0.020567233, + -9.170822E-4, + -0.037625637, + -0.07741212, + -0.050672244, + 0.030045578, + 0.011983895, + 0.07255164, + 0.020145155, + 0.029457428, + 0.054806367, + 0.028857421, + 0.0032980274, + -0.042873513, + -0.0379226, + 0.034666255, + 0.04842982, + -0.025637805, + 0.021765579, + 0.055824846, + -0.03505821, + 0.012930972, + -0.016867986, + -0.0014943779, + -0.0015784692, + 0.0678753, + -0.05277599, + -0.027727228, + 0.06498384, + -0.008304055, + 0.044686075, + 0.05280236, + -0.023633868, + 0.010891046, + 0.028450973, + 0.001150768, + -0.034810796, + -0.036258128, + -0.012670106, + 0.015656479, + 0.013382813, + 0.016892212, + -0.038909346, + 0.036830764, + 5.477852E-4, + 0.015590901, + 0.02452748, + -0.010065669, + 0.039831102, + 0.06764072, + -0.0048244125, + -0.067304574, + -0.03161952, + 0.05598845, + -9.3782233E-4, + 0.0073682894, + -0.0218119, + 0.0077773253, + 0.0353674, + 0.02534449, + -0.0220311, + 0.009269214, + 0.05375857, + -0.034109358, + 0.033680815, + 0.0055513787, + -0.020960307, + 0.0055905394, + 0.043225184, + 0.034034863, + -0.011344621, + 0.02021364, + -0.04582387, + 0.02533581, + 7.658763E-4, + 0.02133756, + -0.010536523, + 0.021001065, + -0.012142424, + -0.040155813, + 0.014007494, + 0.05730608, + -0.03280459, + 0.0026102767, + 0.002103984, + -0.0197595, + 0.02684279, + -0.024055386, + 0.046547573, + -0.0066239443, + 0.06318881, + -0.0205657, + 0.026131481, + -0.009998848, + -0.025774295, + 0.029697867, + 0.01830181, + -1.5058268E-4, + 0.045466106, + 0.017336873, + -0.051956743, + -0.08224061, + 0.012025664, + 0.06752313, + -0.028002622, + -0.045113724, + 0.021726882, + 0.020067982, + -0.016524984, + -0.035983123, + -0.026357383, + -0.038933348, + -0.015001474, + 0.017938493, + -0.012103052, + 0.013035536, + 0.040435005, + -0.0063701184, + -0.06522336, + 0.010659619, + 0.031529143, + -0.0080170045, + -0.0033105751, + 0.04282089, + -1.1294628E-4, + -0.007049466, + 0.06025119, + 0.04648048, + -0.026813028, + -0.008487447, + 0.0012722439, + 0.07520046, + -0.015447761, + 0.05468597, + 0.0020999853, + -0.05321591, + -0.06961336, + 0.020677816, + -0.011151446, + 0.09597536, + -0.010212024, + -0.027062537, + 0.01590149, + 0.03301375, + 0.035232175, + 0.018232644, + 0.055110484, + -0.03655258, + 0.046709526, + 0.031454425, + -0.04546416, + 0.012698646, + -0.03827221, + -0.08067814, + 0.041825987, + 0.064741924, + 0.0027362483, + -0.0074242926, + -0.026514102, + -0.009598499, + 0.0041231355, + -0.038361885, + -0.03368543, + 0.03344119, + -0.028296782, + 7.4327225E-4, + 0.004130304, + -0.054808818, + -0.030893693, + -0.015532048, + 0.033223048, + 0.038871385, + -0.011197891, + 0.0049265563, + 0.0045973514, + 0.045115866, + 0.008906028, + 0.015718432, + 0.02696773, + 0.0033445668, + -0.0010499778, + 0.0134301, + -0.038388256, + 0.0018154829, + 0.034084734, + -0.008842069, + 0.04038282, + 0.028219618, + 0.02026828, + 0.032252617, + -0.0328989, + 0.016880376, + -0.00955026, + -0.018429743, + -0.017115606, + -0.020141313, + -0.003121969, + 0.008781012, + 0.037120093, + -0.04375787, + 0.011582328, + 0.005724443, + 0.06942605, + 0.0028309182, + -0.036002737, + 0.010580457, + -0.01780352, + 0.015207521, + -0.033194944, + -0.030396143, + 0.020202918, + 0.008825754, + -0.046469737, + 0.019121803, + -0.027959507, + -0.03675686, + 0.013736039, + -0.022038164, + -0.025518907, + 0.025136422, + -0.012515631, + -0.020193642, + -0.031111175, + -0.024581365, + 0.026387326, + -0.012409762, + -0.020884551, + -0.011311183, + 0.01212375, + -0.005655121, + 0.01570275, + -0.0072038025, + 0.07184204, + -0.020858869, + 0.0052547944, + -0.014387293, + 0.006084174, + -0.009137686, + -0.02463069, + -0.0038657673, + -0.05192213, + -0.018346759, + 0.01157736, + -0.06248991, + -0.018002706, + 0.010921522, + -0.02748043, + 0.07512238, + 0.038211647, + -0.002783446, + 0.021404512, + 0.017160175, + -0.03560679, + -0.025906429, + -0.02640484, + -0.024307858, + 0.031729527, + 0.05559684, + 0.023220966, + -0.0026162842, + -0.044822693, + 0.011165308, + 0.0061166985, + -0.0055060624, + 0.010613657, + -0.03298406, + 0.002549463, + -0.009166392, + 0.046199337, + -0.04937858, + -0.0057847006, + 0.0059942524, + 0.010419445, + 0.027604789, + -0.037764348, + -0.007135307, + 0.042680465, + -0.06795638, + 0.0023779355, + 0.011386197, + 0.018039372, + -0.053812526, + 0.024828054, + 0.048936885, + 0.013904095, + -0.03284134, + 0.026071707, + -0.02734713, + 0.017247688, + 0.0389815, + -0.03829693, + 0.016942073, + 0.010911787, + 0.06457134, + -0.058749434, + 0.03674825, + -0.05198205, + 0.012230327, + -0.0023998846, + 0.014118695, + 0.0081776865, + 0.026184201, + -0.035217855, + 0.004245145, + 0.01526426, + 0.033239577, + 0.026668767, + -0.002044284, + 0.038749952, + -1.9451816E-4, + 0.008100895, + -4.88793E-4, + -0.01745935, + -0.01219486, + 0.052910022, + -0.020211855, + -0.029602496, + 0.023200586, + 0.04050745, + 0.015892845, + 0.0118999025, + 0.033127584, + 0.02106199, + -0.0381677, + -0.025967374, + -0.025534466, + 0.080265425, + -7.662693E-5, + 0.060297683, + -0.027836207, + -0.011967266, + 0.008211102, + 0.028989758, + -0.011410782, + 0.023404967, + 0.025933968, + -0.0035704824, + -0.016790718, + 0.020105697, + -0.06740198, + -0.044715904, + 0.020102218, + -0.0059176446, + -0.04719658, + 0.036090557, + 0.072831236, + 0.041277993, + -0.03447672, + 1.7667226E-4, + 0.017006189, + 0.028593985, + 0.0125219785, + 0.025955994, + 0.02053851, + -0.010520948, + 0.028061103, + -0.0016323846, + 0.024107194, + 0.018835062, + -0.045394234, + -0.004639426, + -0.03907079, + -1.9372396E-4, + -0.023620166, + 0.064030215, + -6.324323E-4, + -0.016195899, + -0.017237999, + -0.0032102684, + -0.008928211, + 0.01821115, + 0.024684343, + -0.016962208, + 0.042872306, + -0.029324703, + 0.061903402, + -0.026744543, + 0.042293176, + 0.0027039053, + -0.0025689001, + 0.0200679, + 0.005995441, + 0.021201635, + 0.026094507, + -0.019593162, + 0.032376904, + 0.039492566, + 0.02301958, + -0.008936035, + -0.037337728, + 0.052406818, + 0.0067281895, + 0.036781162, + -0.0029032119, + -0.022042371, + -0.01255778, + 0.022680422, + 0.051113073, + 0.0077718855, + 0.03489801, + -0.0044416008, + 0.0046306476, + 0.018803336, + -0.06387859, + -0.068241395, + 0.012172032, + -0.056324277 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue-foot.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue-foot.json index ebc73af83..7389571a5 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue-foot.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue-foot.json @@ -243,12 +243,16 @@ "id": "zg92eeag", "source": { "alternativeTitles": [], - "contributors.agent.label": ["David Linstead"], + "contributors.agent.label": [ + "David Linstead" + ], "description": "Polarised light micrograph of a section of skin on the sole of a foot. This sample is from a vintage prepared slide from the period pre-1900 and was sold by the firm Watson and Sons. Dermal and epidermal layers of the skin, spiral sweat ducts and underlying muscle and frothy adipose tissue are visible here. This sample is likely to have been obtained from a human cadaver based on the anatomical structures seen, the age of the slide, and the frequent use of human cadaver material in other Watson slides of the same period. It is however possible that the tissue was obtained from a monkey or ape. Composite of 19 individual images stitched together. Horizontal width of image is 6 mm.", "genres.concepts.label": [], "id": "wfuu85b9", "sourceIdentifier.value": "B0010784", - "identifiers.value": ["B0010784"], + "identifiers.value": [ + "B0010784" + ], "images.id": [], "images.identifiers.value": [], "items.id": [], @@ -298,8 +302,12 @@ ] }, "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["David Linstead"], + "locations.license.id": [ + "cc-by" + ], + "source.contributors.agent.label": [ + "David Linstead" + ], "source.genres.label": [], "source.genres.concepts.id": [], "source.subjects.label": [ @@ -319,1092 +327,5105 @@ "source.production.dates.range.from": [] }, "vectorValues": { - "features1": [ - 0.5474179, -1.316853, -3.5674388, -2.9119823, -2.406084, 0.75750524, - 0.2072421, 0.2021783, -1.5916975, -0.31194246, -2.078783, -2.2035687, - -1.1002083, -1.2486653, -1.3997052, -0.23377052, -3.0178928, -1.1652756, - -0.7706225, 0.8724476, -1.7061205, -0.8416448, -1.2598524, 0.598611, - -1.4803625, -0.38472736, -0.86582476, -0.30078542, 1.8278189, - -1.4181807, -1.020858, -0.5664243, -3.0323217, -0.56794065, 0.550558, - 1.3706049, -1.8562284, 0.17216599, -0.9150808, -0.7506602, -1.2631098, - 0.59138894, -1.2837582, -2.9777236, -2.3307438, -3.1620145, 0.12627992, - 0.84580517, 1.9593905, -0.7709648, 0.2794819, -0.5468471, -3.4350562, - -2.6968882, -2.6566322, 1.9982882, -1.7744523, -2.207128, -0.15729524, - -0.8219979, 0.906626, -2.9853802, -3.0812495, -3.2932734, -3.5197496, - 1.0720938, -1.289756, 0.6328545, 0.21323033, -3.6635966, -1.131213, - 0.40111557, -1.349889, -0.2758465, 0.71339476, -0.7556002, -2.3195472, - -0.87950057, -0.31359994, 0.2642597, -0.93290323, -0.836685, -2.6766174, - -0.39980945, -1.3053552, -1.6598493, -4.9020605, 0.22037713, -4.51803, - 1.2148646, -0.6720948, -0.0991064, -1.5731302, -3.7551858, -2.7057686, - -2.6889825, -0.8453339, -3.085438, -1.8111674, 0.505141, -0.7946543, - -1.954674, -0.34095478, -1.6245304, -3.2910998, -0.9799579, -0.40247834, - 0.50085413, -3.544418, -2.6333895, 0.2666953, -2.7076364, -3.3384855, - -2.5183523, -1.7656348, -2.444836, -0.8348865, -1.337853, 1.6746298, - -1.8286741, 0.9127977, -0.48450905, 1.3592416, -0.00530993, 0.3222139, - 0.3356961, -0.22854947, -2.2448199, -2.565207, -1.6530572, -1.7620102, - -1.7209692, -0.57270986, -0.64347875, -0.87589383, -1.9195962, - 0.32051343, -1.7048572, -2.7478302, 1.7726237, -1.1384075, -2.3850942, - -4.786557, -0.37536997, -1.4030256, -0.25751978, 0.10566476, -2.2423737, - -3.0707912, -3.867751, -2.684241, -2.6396387, -1.8445613, 0.40194765, - -2.9648106, -0.015624292, -2.1432803, -1.0709481, -0.7109667, -2.103019, - -3.1790705, -1.6776065, -0.33672652, -0.55424666, 0.5825538, 2.2906559, - 0.47455046, -1.1046222, -0.55664515, -0.2492094, -0.50245774, - -2.6639185, 0.16063218, -2.2699695, -0.51929724, -0.5188417, - -0.80791306, 0.7617173, -1.8685347, 0.029594664, -1.4765534, -2.1002138, - -3.384354, -0.2763174, -1.9294147, -0.2557763, -3.0487492, -2.0551345, - -2.6873143, -2.598233, -3.0410275, -2.2693202, 0.8975753, -1.8188727, - -1.7934233, 2.0540946, -0.45995182, -0.99785817, -1.7944596, - -0.39114925, -1.3174038, -1.4782599, -1.797539, -1.7292796, -2.0603964, - -2.7431033, -1.6396203, 0.9224567, -1.6790115, -3.097042, -0.4292585, - -1.0873318, 0.017273568, -0.45128134, -2.4861584, -0.44874528, - -1.223761, -2.4292028, -1.3690896, -1.4502997, -2.881721, 0.16666152, - 2.2720475, -1.856358, -1.1249983, -0.5285052, -0.936375, 0.44256294, - -1.6957912, 2.71424, -1.7121631, -0.25208282, 1.8760808, -1.4738511, - -1.6830442, -0.49209335, 0.39676157, -1.6578033, -2.2033353, -1.2973673, - -0.30215704, -0.7000924, -0.023842074, -1.1579576, 0.0653098, - -0.37322628, 0.36619815, -2.0417783, 1.1584785, -1.5404449, -1.0584497, - -1.6260763, -0.14955652, -1.2133749, -1.875689, -1.4932731, -3.616383, - -1.6685939, -1.5693191, -2.7061787, -1.1903754, -1.5598022, -2.224755, - -4.2074428, 0.7782275, -1.1265478, 1.4741573, 1.3309703, 0.43600872, - -1.630162, -0.9326757, 0.004684314, 0.94541323, -1.3507103, -3.64986, - 0.5493115, 0.81597006, -0.6566524, 0.3087521, -2.9039774, 0.879674, - 0.09827456, -0.44857892, -1.7775252, -1.6059431, 0.33139664, -3.516113, - -0.12706542, -1.0274137, -0.11598915, -0.60605854, -1.4608238, - -0.07308939, -3.3382797, -1.8135409, -1.2616705, 1.6444621, 1.4569774, - -1.714946, -0.53620446, -2.284881, -1.1795412, -1.3128713, -2.4444401, - -0.6937853, 0.87032294, -0.057901092, 1.0554717, -1.5500379, - -0.84278446, 1.3943238, -2.6159098, 0.77493334, -1.4307184, -0.6544377, - 0.48610577, -0.2538982, -0.53349334, -1.5818689, -3.651921, -3.055035, - -4.363384, -2.8458674, -3.0104797, -2.7927146, -0.9987624, -1.0304879, - -1.026567, -3.526831, -1.3178775, -0.98640573, -0.6883019, -2.329242, - -2.3842745, -0.18683052, -2.2184303, -1.599523, -3.1279335, -2.2279456, - -0.48330694, -2.2146454, 0.27733207, -2.7114258, -2.0393243, -1.5778614, - -2.8880558, -0.46754992, -0.60278106, -3.6364386, -0.14904346, - -1.6393147, -0.4292337, -0.6737992, -0.44369605, -3.3304265, -1.8950007, - -0.08356251, 0.06534827, -0.8181084, -0.57941747, -0.2899803, -2.256247, - -1.4749925, -0.41666847, -0.5065158, 0.5086997, -0.6785751, -1.7634187, - -0.69843346, 0.6755252, -1.6978456, -2.5940108, -3.274409, -1.6137401, - -1.1057402, -0.3914486, -0.060178626, -1.6371195, 0.16884962, - -1.4837419, 0.37730473, -1.6308676, -3.2151976, -0.7231247, -0.08208195, - -1.7311954, -0.7476307, -2.1255975, 0.80360943, -1.104586, -2.491623, - -3.008584, -1.7407365, -1.2100163, -3.9757674, -0.68796223, -1.4852053, - -0.4317851, -3.115227, -2.9394453, -1.1532451, 0.32423297, -1.8766537, - -1.15166, -1.3816183, -1.7211423, -1.3380363, 0.17291592, -1.5546416, - -1.8842765, 2.3708348, -0.9895525, -2.2733924, -0.36695436, -5.735505, - -0.6980605, -0.5634977, -0.3075263, -0.5168081, -1.5395306, -1.2253741, - -0.026619967, -2.2873433, -1.2813438, -1.975955, -0.07068421, - 0.017742679, 0.2138018, -0.08643456, -1.2481941, -1.5171808, -1.4212785, - -1.5055557, 1.3182456, -2.9294136, -2.3673909, -0.23963603, -2.381334, - 0.29798916, -3.4743705, -3.139981, -4.036595, -3.1574602, -1.1651428, - -3.5293736, 0.7328644, 0.03397657, -1.6828836, -3.6810963, -2.1647534, - -1.6540122, -0.82526153, 0.017553916, -0.7172952, -1.7751389, - -1.2050939, -0.59925973, 0.28270325, 2.4537263, 0.42284852, -2.1989658, - -0.51956064, -1.0825719, -3.0478885, 0.3230425, -2.7956026, 0.10145016, - -2.9971135, -0.52567035, 0.17042518, -1.3914471, -0.84717095, - -3.7865853, -3.3740394, 0.31516314, -3.740332, 2.2978034, -3.5147479, - -2.1900976, 0.52026254, -3.6171465, -4.5632815, -0.9780744, -2.4910932, - 0.8892105, -2.7244475, -2.2075415, -0.07460759, 0.17627928, -0.81642133, - -1.5298401, -1.7865058, -2.8071215, -3.0796916, -0.71653795, -1.0062704, - -1.3196913, -0.47760898, -0.69717294, -0.93221396, -1.1307783, - -1.9112732, -1.3083222, -2.7431056, -3.1152256, -1.3856511, 1.9653901, - -1.8868983, -0.83153, -2.4251251, -0.95016724, 2.8324332, -1.938225, - -0.37871587, 0.68185323, -3.50797, -1.8764633, -1.9340146, -1.4666979, - -1.0449675, -0.6479384, -3.438404, -0.7685263, 0.60937434, -0.8979986, - -2.036234, -1.9276316, 0.7103868, -2.2483597, -3.5070066, -1.1262516, - 0.91475004, 1.1575272, -2.3639214, -2.611497, -2.565619, 0.540208, - 0.24859323, -0.015427798, -0.93600875, -3.1238832, -0.15290716, - -2.0702443, -0.92667055, 0.27840734, -0.3436914, -1.3822514, 1.4880216, - -2.5446482, -2.900054, 0.9415558, 1.493929, -2.6051323, -2.198201, - -4.2558393, 0.655753, -0.86877424, 0.42752057, -1.3751421, -1.7453758, - -0.5083625, -0.19414939, -1.8653557, -2.84986, -0.7237859, -1.1234931, - 1.5394171, -0.67411405, 1.2714325, -0.07841666, 0.654258, -0.010049216, - 0.015659008, 0.6849503, -2.581439, -2.041457, 0.53596556, 1.3894049, - 0.059270516, -0.692389, -3.186962, -2.6285665, 1.8632079, 1.5931435, - -0.00560865, -1.2005191, -2.6455302, 0.2518835, -1.0653614, -0.30879796, - -0.2732494, 1.2267631, 0.31333956, -0.61208844, -1.5625708, -0.15955943, - -0.82149684, -4.6401362, -2.7348235, -0.6984188, -1.3638238, -2.493244, - -0.11261269, -2.6409578, -2.0834553, -2.660181, -2.7793324, 0.8639029, - -2.7649999, -2.9511683, -2.545642, -0.6256226, -2.5661788, -1.8424003, - -3.1685152, -3.2741523, -0.31039494, 0.8220682, -2.5338192, -0.7184057, - -0.9515679, -1.6290689, -3.0098674, 1.3729786, -2.7119503, 0.5245986, - 1.4652289, -1.0905946, -1.0396124, -1.0009329, 2.0488925, -1.9028629, - -0.08818396, 1.0230978, -1.8778608, -0.48833683, 0.45950115, 0.523654, - 3.218631, -1.0437756, -0.4913952, -0.60820854, -2.6413226, -2.6260004, - 0.40093878, -0.79992896, -2.6964056, -0.4518445, -1.4864825, - -0.27700981, -1.3060241, -0.56156373, -1.8078665, -2.306203, -3.3114865, - -1.4754642, -0.88503647, -1.711686, -3.8446004, -3.308454, -2.1542118, - -3.1266117, -1.9381664, -0.7636004, -0.67314893, -1.5744988, -1.2269647, - -3.0355318, -3.7477632, -0.14481568, -2.3613832, -0.021018352, - -2.6161473, -3.4537647, -3.1115708, -1.9087796, -1.2303507, 0.17549309, - 1.0967457, -1.4514415, -1.1895819, -0.66823834, 1.5376221, -1.0954434, - 0.2759563, -1.8458776, -2.1682339, -0.8869586, -3.446625, -1.6272495, - -1.5276104, -2.0043807, -2.3691566, 1.5983609, 1.280562, -2.5101094, - -1.7015407, -3.8436115, -0.94888216, -2.6893735, 0.50589305, - -0.21186626, -1.518613, 0.14289957, -0.7932285, -2.7033906, -0.8422485, - 0.021520207, 0.9006536, 1.742639, -0.35857922, -1.3571228, -0.1167005, - 0.22250532, -0.5632925, -1.1440984, -3.1908348, -0.68059576, 0.43838274, - 0.14148213, 0.848314, -0.20138882, -2.3468843, -1.7688543, -0.031976208, - -0.5347581, -3.8212504, -0.64615345, -3.7465332, -0.86941594, - -0.84484124, -0.4687795, -0.87552685, -0.67834586, -4.4212575, - -0.91636133, 3.5547864, -0.770481, -2.167838, -1.2176561, -1.97648, - 2.9429436, -0.8569262, 1.0741533, -2.7657342, 2.9024613, 2.0410683, - -0.24342886, -2.4046159, -1.9454728, -2.7962825, -1.2564586, -0.8981565, - -0.4126013, -3.4365945, -1.1792825, -2.4767454, -3.050882, 0.13633311, - 1.4902277, -0.9582637, -0.50687546, 0.6031981, 0.65897876, -1.8789985, - -1.0841821, 0.8119797, -0.94084513, -0.3233932, 1.0225071, 0.19085574, - -0.0054208115, -0.28704304, -0.5356293, -2.2436905, -3.6214278, - 0.7254942, -1.3202386, -3.217339, -1.1360575, -2.1696596, 0.61498, - -1.2962404, -1.8876607, -0.081175715, -3.3338742, -1.3022745, - -0.021691207, -2.336379, -3.2387953, -3.882938, 0.111493744, -3.213349, - -2.7065723, -0.7482825, -2.316457, 1.1462928, -1.787053, -1.391641, - -2.9613924, -1.2219291, -0.8275139, -3.226801, 2.4136918, -0.71814066, - -3.2905314, -2.69357, -1.2278032, -1.3902713, -0.13596657, -1.0587955, - -1.9425824, -3.9210835, -2.7365139, -2.8867502, -4.715665, -3.9544795, - -1.7638019, -0.18712494, -4.3479667, 0.2519834, -0.49782807, -2.1524618, - -1.2806451, -1.6453773, -3.180169, 0.6065728, -3.3570518, -1.5640985, - -2.2720845, -1.8683752, -1.9138206, -0.19344586, 0.56470764, -1.2582808, - -0.058433063, -2.0724397, -0.44680464, -0.7926112, 1.5227572, - -0.8181129, -0.47506618, 1.4596943, -1.0788056, 0.55308014, 0.8147035, - -4.5860248, 0.947189, 4.8457394, -2.627122, -0.26592922, -0.8795847, - -0.7222452, 0.2653484, -0.21843141, -3.2900126, -1.3163437, -0.7765849, - 0.8249572, 0.32963052, -1.5008366, -2.0524898, -1.06774, -0.74150866, - -1.8209338, -2.9207087, -1.9370507, 1.4185222, -5.1151314, 1.053677, - -3.0254352, -1.8827779, 0.8080584, -4.4440017, -2.1557748, -3.0798068, - 1.173343, -2.338284, -2.7509444, -3.8496583, 1.4203442, -0.54701805, - -0.23553146, -1.3333565, -1.2699229, -0.3253125, -0.0197207, -1.2372794, - -2.5884473, -2.7965815, -0.5903121, -1.8998307, 3.0363407, -3.6140606, - -1.3136946, -0.45217836, 1.7606164, -2.286804, -0.052194178, -2.1076243, - 3.1811411, -2.6969104, 1.9462069, -1.3542563, -2.429542, -0.17125033, - 0.4271658, -4.0116897, -1.2565376, -1.1188847, -2.0153265, -0.27765274, - -1.2047873, -1.6637597, -0.6989512, 0.6668249, 0.6583037, -1.9422916, - -0.045109216, -1.28139, 1.8041466, -1.68466, -3.4824374, -4.7948127, - -1.8745565, -2.1676311, -1.4782195, -0.7705639, -1.2119161, 1.6931734, - -3.1213698, -0.43633825, -2.507501, -1.2842196, -2.279533, 0.59828794, - 0.854528, -0.72534925, -2.9162922, -2.5314841, -0.82555217, -0.338674, - -4.2594924, -1.50181, -2.3745148, -0.5346476, -1.4069571, -5.038789, - -0.5435143, -1.6381028, -1.2374717, -1.2266849, -1.7500875, -2.0530574, - 1.5464387, 2.4626358, -1.071468, -3.3034482, -1.7193662, -2.2456903, - -1.2560158, -3.9294872, -3.0707035, -0.9629464, -1.588723, 1.2439522, - -1.4124659, -1.4198725, -1.8257986, 2.476243, -1.2283298, -2.8036833, - -2.638812, -0.06038454, -3.4764118, -1.6290028, -3.440578, -2.6238003, - -1.5056094, -2.7058864, -0.23828568, -2.5175524, -2.2757497, -2.5742574, - -0.7973701, -1.8547741, -2.1465359, -0.5423863, -3.242224, -1.6810656, - -1.7821127, 0.7776337, -3.079242, -1.2109271, -1.840698, 2.6546547, - -2.980796, 0.070879936, -5.2428555, -2.6472979, 0.8130106, -3.8760087, - -2.6590934, -2.7725265, -2.033653, -0.3477857, 1.0496544, -1.6890252, - -3.3371692, -1.8259534, -2.333772, -1.8981375, -1.441752, 2.610219, - -0.96777445, -3.9392154, -1.0766699, -0.40293992, 0.17979018, - -3.5141544, -3.1503313, 0.9424289, -2.4411368, 0.5299948, -1.7832943, - -1.3269464, -1.6684579, -2.1513898, -2.6386788, -3.5133817, -0.20624714, - 0.6180282, -0.25855172, -0.49231786, -0.3550452, -0.38931188, - -2.1570065, -0.7903847, 0.16105348, -0.7579572, -0.9254532, -1.7931992, - 0.03916662, -2.1606252, 0.7695113, -0.94464135, -1.6081553, 1.1369249, - -1.6252965, -2.2099082, 0.8894552, -3.2907734, -0.68494993, -1.6795721, - -2.415317, -0.8675341, -1.4525659, -1.3358939, 0.3469757, -3.2747202, - -0.41811854, 0.52072716, -3.0422142, -0.15351552, -0.63396204, - -1.6242188, -2.1433902, -1.5664648, 0.23877494, 1.3817512, -2.1496582, - -2.8755605, -2.0207646, -2.823876, 1.1982554, -0.6657442, -3.2347145, - -2.91687, -4.849861, -0.9929796, 1.1195753, -2.3519168, -4.1247497, - -0.95149463, -1.7486941, -1.7287345, -1.5256356, -0.8544283, - -0.64574796, -1.8661395, -1.8683735, -0.5604404, -0.4166962, 0.27703154, - -2.3198516, -0.4534009, -0.8696252, 0.7355217, 1.0123322, -2.4085374, - -1.0003338, -1.2417314, -2.984005, -3.3427005, -0.94546634, -0.56846166, - 0.5389146, -3.79571, -0.5453446, 0.12580483, -1.6872013, -0.48174942, - -1.4173032, 0.03551632, -2.30842, -0.74216235, -1.6569291, -2.2677958, - -1.7192954, -1.6107386, -2.348507, -2.2177098, -1.7610683, -1.4401027, - -2.7009583, -1.8854917, -1.6333838, 0.38005242, -2.3128464, -1.8236041, - 0.097995214, -4.374699, 2.7420044, -0.100157976, -3.0048301, -1.4743509, - -0.889747, 0.75249517, 1.3867797, -1.6788847, -2.72908, -0.32512736, - -0.9314611, 0.041993402, 0.5169918, -0.7975606, -0.5217616, -2.5033197, - -1.1429946, -0.6288871, -0.34869206, -1.2181083, -0.4598215, -0.8322107, - 0.346309, -2.6265535, -2.4583812, -2.3677602, 2.74614, -1.446141, - -3.819611, -1.3675921, -1.1599818, -1.2813376, -1.8045765, -3.1483266, - -1.2288332, 0.62411654, -0.48685768, -3.6410878, 1.3101234, -1.935005, - -2.8080113, -0.33533207, 1.0433089, -2.078452, 1.1755208, -0.9550637, - -3.4860737, -2.994612, -2.393774, -2.2115293, -0.5506341, -1.1176527, - -2.3370004, -2.6978166, -1.2013043, -1.5747765, -1.2329091, -0.9524489, - 2.2780163, -0.6287182, 0.46547794, -2.4111998, -2.524545, -2.4392788, - -1.1353822, -0.008898007, -1.4584355, 0.48436803, -0.13988411, - -0.3149437, 0.6688666, -1.8771477, -2.462545, -2.1387951, -4.119277, - -2.2498975, -2.5255606, -1.52709, 2.0534918, -2.391448, -1.7194312, - -1.3896531, -2.2571287, 0.94615626, -0.88868445, 0.334149, -1.8207256, - -1.9538122, -1.0233971, -2.1819382, -3.2178633, 2.2693355, -1.3914016, - -0.9239534, -2.1938007, -2.1729307, 0.118648656, -2.0532033, -2.6238654, - -1.9863793, -1.4323465, -3.40273, 1.1095388, -2.0830128, 0.7720579, - -0.90738964, -0.46912855, -1.7030566, 0.75630337, 0.51160574, - -3.2913454, -2.6437697, -1.5579715, -2.912796, -1.0042565, -1.3710586, - -3.2177758, -0.667692, -0.7997797, -0.8333295, 0.42652836, 0.789068, - -0.68649435, -0.8229017, -2.0719643, 0.8815259, -0.04962045, 0.21828929, - -3.102114, -1.3003668, -0.40105844, -3.072418, -0.6936128, 1.443387, - -1.4920672, 0.637758, -2.4589236, -2.1635354, -1.2722343, 0.32646984, - -1.2967517, 0.04944077, -3.226778, -1.972707, -2.7080305, 2.4441893, - -1.0403243, 0.86182165, -0.4220565, -2.0039718, -2.5892556, -1.486862, - -2.0254016, -2.6142316, -4.5667634, -2.5686848, -0.9783379, 0.51597095, - -3.6628356, -2.647361, -1.0541615, -1.2326806, -2.2821891, -2.962492, - -3.544386, -0.710154, -0.38294452, -0.39902198, 1.6369646, -2.1982949, - -0.7912327, -0.99375224, -0.73040026, -0.063999966, -1.6478866, - -1.2200859, 0.40800264, -2.8506017, -3.2465882, 0.033734053, -0.7435169, - 1.5006886, -0.48365927, -0.8280616, -1.8895444, -1.0698173, -2.9056568, - -0.53465676, 0.79759717, -0.7065776, -1.029986, -2.594477, -1.0263947, - -1.5849516, -3.279718, -0.92501515, -1.6014745, -0.47769687, - -0.39259252, -3.3440015, 0.18298894, -1.0878794, -1.3123616, -3.3099918, - -0.88272387, -3.8644161, -3.3589818, -3.2061133, -1.6352298, 0.25050893, - -1.0228306, -0.3365456, -3.7360444, -2.3177893, -2.3737803, -2.2508397, - -0.11100703, -0.8622778, -0.9934965, 0.10636828, -2.435654, -2.909179, - -1.7594414, -3.2248852, 0.08225292, -1.319561, -2.074678, -2.312632, - -1.9086915, -1.5267341, 1.2693697, -0.5068653, 0.6364166, -1.3677592, - -1.7714099, 0.18237333, -0.7139504, 0.39750132, -2.0338936, -1.1182821, - -2.064767, -1.8208395, 1.486708, -1.8053572, -0.47932366, -1.7331772, - -1.9114369, -0.0641128, -2.5408366, -2.3049567, 1.0586021, 0.9347272, - -0.8481534, -1.1149576, 1.7677722, -2.0587635, -0.780102, -1.342454, - -2.3135707, -1.4517499, -1.5631428, -1.0285586, -1.8033013, -2.212653, - -0.80101895, -0.5665295, -3.1237645, 2.6269867, -0.3970814, -2.9766707, - -0.49331006, -1.7854215, -0.4005775, -0.7974676, -2.6676466, 0.31912303, - -3.1986268, -0.97917604, 0.30181858, -2.4494529, -0.01795942, -1.56935, - -1.117912, 0.80296046, -0.094784886, -1.7831548, 0.10287976, -2.2898798, - 4.032458, -0.13060842, 1.627953, 0.28415716, -0.036001313, -0.5542849, - -2.7953086, -1.5646999, 0.3614793, -1.1738161, -2.8294427, -1.8955573, - -2.0140753, -1.5690907, -2.9621108, -1.6502683, -3.282606, -0.76503783, - -1.7127024, -2.2119303, -0.74404895, -1.9648626, -0.66055626, - -0.46712977, 0.3134973, -0.87581843, -1.3083503, -2.902523, -2.9657812, - -0.0040179603, -1.8263322, -1.1969295, 1.6191325, -0.7671125, - -1.7611368, -0.07607934, 0.8121651, -2.0029461, -1.4398607, -1.9554292, - -2.0219476, 1.7615013, 0.62009865, -0.85284513, -0.46065962, -1.648551, - -2.1277673, -0.9687454, -0.6376119, -1.0234338, -2.8812861, 0.19511475, - -1.886353, -2.5177853, 0.010018602, -2.020919, 0.96207976, -2.9906447, - -2.6060665, -2.508602, -1.4865361, -0.124570705, -1.2864494, -3.6369026, - 0.7137727, 0.09904902, -1.5577894, -0.38266346, -2.4713962, 1.6359799, - 0.19893253, -0.5100133, -1.925381, -1.9023441, 0.52436733, -5.210722, - -1.4992911, -1.2759508, -1.4326127, -1.3372897, -3.0535932, -2.0819275, - -1.4748052, -1.2911773, -2.6716106, 0.31387442, -1.2162181, -2.9934118, - -1.7247418, -1.47596, -1.1656573, -0.7654457, -2.0735235, -1.6821017, - -3.8152056, 0.009349354, -0.014361072, -0.4165883, -1.5438337, - 0.2648925, -3.7824378, -4.26278, 1.2962552, 0.685117, -1.7895038, - -2.5745695, -2.6035485, -2.8511105, -3.0834136, -4.078054, -0.7550174, - -2.9134054, -1.2089076, -0.074717745, -1.1111515, -1.8630717, 0.258137, - 0.13588049, -0.7133218, 0.28855863, -0.8253359, -0.3310722, -1.4304714, - 0.8750058, -4.048156, 1.078841, 0.6283602, -1.9289185, -1.1367927, - -0.23384066, 0.9457586, 0.7851839, -0.5285208, -0.8705314, -1.9467527, - -1.3268862, 1.4234663, -1.2448523, 1.2164847, -4.4899445, -2.4941518, - -0.43587574, 0.66717625, -0.7464943, -1.0249834, 2.4580932, 0.01803799, - 1.2945765, -0.072116524, 2.4241736, -1.5410677, -1.2280802, -0.33010215, - -1.1701133, 0.17257416, -1.5798111, -2.734944, 0.14186426, -2.5259466, - -0.09319819, -1.4096906, 0.21206233, -2.0637705, -2.4296117, -1.4110116, - -1.6294725, -0.05643602, -2.3948283, -1.9278865, -0.4618758, -2.2839322, - -2.6514928, -1.3982751, 0.54170805, -2.2268877, -1.323351, -1.6883119, - -2.1329112, -0.19573463, -0.3783637, -2.7119894, -1.4511344, -2.8728158, - -2.5821388, -2.4476786, -2.3213248, -0.05141423, -2.1888828, - -0.33235443, 1.5089272, -2.5600157, 0.5802607, 0.65091765, -0.3706513, - -1.5939249, -3.085284, 0.9042808, -2.0715508, 3.0864549, -1.764651, - -0.83608574, -1.7813188, -1.5084093, -1.3912321, 0.5736771, -1.1877832, - -1.2557584, -0.4519015, -0.1545048, 0.07546208, -0.93114907, -2.089968, - -1.5614046, -0.2928427, -4.2716665, -3.6146176, -3.007801, 1.8451284, - -2.2302227, 1.888705, -2.7208028, -1.2307856, 3.3086221, -2.645394, - -0.089178964, -1.865007, -1.8046582, -0.779453, -2.0281065, -1.7199123, - -1.1573988, -2.8079467, -2.411256, 0.6950745, -0.9657813, 1.2792587, - -2.4501271, -2.1413522, -2.6000931, -2.191433, -2.0608268, -0.5597129, - -1.8239374, -1.106739, -2.8423724, -2.0556147, -0.26376528, 1.9219394, - -0.073258944, -0.18122536, -1.26445, -3.0248132, -4.162165, 2.4626675, - -1.0009269, -0.5944567, -0.8497085, 0.7395016, -1.8881719, -1.3475672, - -2.8374937, 2.2792525, -0.9775161, 0.18699929, -0.3280425, -1.9961344, - 0.14541206, 0.49935097, -0.25931814, -2.5444732, -0.97169745, - -2.5334234, -3.0365183, -1.5565822, -3.450518, -0.9067814, -2.2843597, - -0.56444687, -4.237436, -2.9693801, -2.2243, -3.9018035, -1.8013673, - -1.6884586, -0.20789155, 0.97715354, 0.09961076, 0.33041704, 0.10291839, - -0.8718432, -3.6395006, 0.67300117, -3.2652674, -1.979236, -0.515079, - -0.48492143, -2.31853, -2.6428847, -0.9382572, -1.7316326, 1.2222681, - -1.0490205, 0.5407071, -1.8893456, -0.54875666, -2.8401847, 0.16773403, - 2.1136725, -1.8245094, -2.4944139, -3.0607805, -1.2277975, -2.0116184, - -3.2052124, -3.246906, 0.9984669, -0.5632889, -1.0594923, -3.6624322, - -2.481782, -2.1729887, -1.7420039, 0.8304401, -4.0484996, -1.4117613, - -2.1225345, -3.6837358, 1.1375132, -0.9455212, -0.17495382, -0.22859988, - -0.89019716, 0.39637, -0.42474344, -2.2331119, -0.6081158, 0.116354406, - -1.0749643, -1.431127, -2.4042199, -2.360323, -0.49711913, -2.0010195, - 1.1589146, -2.7040143, -3.0908523, -3.9615853, -1.1325988, -0.29270613, - -0.4315195, 3.3226078, 1.6245999, -0.8863602, -1.4671363, -0.538594, - -4.551793, 0.19986916, -1.7601012, -0.44502035, -2.2011406, -3.8564315, - -2.2511883, -5.434403, -0.80130523, -1.1328647, -0.5258449, -3.428546, - -0.47210166, -3.1022274, -0.17857209, -2.902323, -2.2160487, -0.8248639, - 0.372478, -2.3752887, -0.82238984, 0.77067244, -1.7982664, -0.86275077, - -2.136158, 0.92046475, -2.1427155, -1.9647673, 0.54408467, -3.2545683, - 2.132861, -2.7538779, -1.0478201, -2.0835557, -0.31005245, -1.972415, - -1.9661335, -0.5936148, -1.2260053, -1.1871859, -1.117564, 1.5522978, - -1.0711871, -1.0297009, -2.3625646, 0.09540435, 0.79430014, 1.242163, - -1.9661632, -1.1171769, 0.046177134, 0.6564926, -0.5388552, -0.6725738, - 1.2082819, -2.6146162, -0.5062007, -2.1994817, 0.745518, 2.2624478, - -1.3221596, -0.044243813, -2.0357945, 0.79987204, -0.1739525, - -1.8780547, -1.1762333, -1.3095964, 2.1347857, -0.42852467, -1.0760249, - -1.9163158, -1.8955909, -2.1288135, -2.9969928, -1.6673179, -1.0670788, - -2.5601518, -1.9590313, 1.2253377, -0.5272713, -3.3433588, -4.1887937, - 1.2975559, 1.1317726, -1.513439, -4.2749815, -1.5874736, -3.9413218, - -2.937018, -1.7163333, 0.020348728, -0.041721314, -3.367427, -1.1937704, - -0.8376074, -0.156897, -2.6738722, -1.2530789, -3.2082913, -3.0789201, - 1.1910464, -3.4878447, -1.5301936, -2.6488857, -1.8661295, 1.6926866, - -0.7862801, -0.1417116, -0.059560135, -1.5959189, 0.8615232, 0.49367195, - -2.5808876, -4.831795, -0.86086285, -1.5078801, -1.3671883, 0.61434937, - 0.26595712, -1.8484337, 0.11780225, -0.31299937, -1.732431, 0.51758033, - -1.2906793, 0.9605705, -1.4049122, 1.6318635, -1.1698107, -2.4980974, - 0.6406027, -3.0513756, -1.7572402, -2.5540552, -2.6963522, -1.7824421, - -1.8688382, -4.2000136, -3.0741136, 1.7229426, 0.10344861, -1.5905156, - -0.32816616, -1.6654176, -3.0317576, -0.88168705, -1.2609706, - -2.3896685, 0.108811975, -0.01568077, -0.57360154, -0.6491694, - -0.19874993, -1.4127653, -1.267043, -1.1538296, 0.25669444, -3.3923945, - -3.1543624, -1.485003, -2.033068, -3.0691137, -3.1064336, -3.9619713, - -3.2696075, -1.2137648, 1.1385205, -2.6777, -3.0067813, -2.9748926, - -3.739777, -0.1780626, -1.2339872, -1.8114047, -2.1343772, -1.8783878, - 1.1250054, -1.2001607, -2.5710886, 1.477018, 0.021673605, 0.00014139712, - -0.662348, -2.4362338, 0.38385937, -1.0064119, -2.0108988, -1.8320608, - -0.39803925, -0.7006788, -1.7544264, -0.32268724, -1.8287808, - -0.8645954, -3.9145606, 1.3773383, -0.8612452, 0.38028175, -1.5366199, - -5.125387, 0.056870777, 2.3760083, 0.96339023, -1.25955, 0.4777613, - -3.929494, -3.7833889, -3.720139, -1.4127117, -1.0591596, -2.425906, - -0.8986761, -3.7396867, 0.17115548, -0.9242104, -0.58166677, - -0.93527406, 1.7191828, -0.8325123, -3.8013842, -0.3195626, 0.3812946, - -1.9669905, -3.4310553, -3.5775688, -0.6595269, -2.9989896, -1.5551988, - -1.1252458, -3.1627042, -1.5915599, 0.31948608, -1.4964076, -0.4636087, - 0.07341942, -0.3505221, -1.5056137, -0.5874805, -3.3270829, -2.1645718, - -1.0509915, -0.12476927, 0.65474737, 0.87649727, -1.829804, 2.2167645, - -3.0135152, -0.9634564, -0.2261234, 0.72194064, 0.68673784, -0.5669289, - -0.8766375, -0.23129657, -1.2145841, 0.69167215, -4.137996, -3.1093879, - -1.5513853, -1.214448, 1.1311368, -2.1342843, -1.20611, -0.59236777, - -3.5896528, 0.4506791, -1.89236, -1.307574, 1.2677956, -2.338478, - -1.244308, -2.6283915 - ], - "features2": [ - -0.5161324, -4.4697328, -0.10542903, -0.8152752, -0.753196, 0.071259096, - 0.12578626, -1.0925492, -1.849569, -3.146363, -1.7883563, -2.3074136, - 0.8448478, -2.948433, -0.9216788, -3.3479247, -2.3410943, -1.4243942, - -0.07227181, 0.6246707, -2.3474925, -1.0456603, -2.07729, -1.1473691, - -1.5905014, -0.71153975, 1.3106455, 0.91899323, -0.8890516, -0.45288542, - -1.8848072, -3.3904989, -1.9185959, 0.11395502, -1.0295757, 0.6324295, - 1.107388, 3.0948024, -3.4872293, -1.9094329, 0.85287774, -2.5841475, - -1.6638677, -2.6168277, -1.1295799, -1.3087261, -2.735762, -0.9941416, - -3.2674992, -2.3129566, -0.5933087, -0.8711727, 0.24966541, -0.22787179, - -1.7369951, -0.09522955, -2.0958006, -2.6929727, 0.3674644, -3.7659013, - -3.4892983, -2.836257, -2.9230583, 1.9084524, -0.94057703, -2.7925825, - 0.14823769, -2.801974, -0.9122646, -3.8324306, -2.537711, 1.0801313, - -3.334733, -1.6719697, 2.4406874, -2.8737333, -1.1350671, -3.8614318, - -2.1253033, -1.3381568, -1.1802572, -1.9645456, -0.97866166, -1.7036223, - -2.2416217, -0.32031593, 1.0839564, -2.3547342, -1.3712629, -3.4160914, - -1.8184313, -2.021906, 1.0408448, 0.02379053, -1.8654691, -1.4987997, - -3.9549844, -1.0362781, 1.1522968, -1.9856217, -1.7555548, 0.3734253, - 0.6238629, -2.7668462, -1.6863797, -0.53428715, -2.5613778, -1.7420881, - -2.8662364, -1.5363032, -1.7892051, 0.38878965, -1.2509137, -0.54233986, - -3.0138438, 0.46475685, -2.8691247, -1.2653052, -1.6381657, -4.102301, - 1.6167902, -0.32043055, -1.2664094, -0.61883616, -0.8059899, - 0.043331414, 0.10387237, -0.0816803, -3.8252282, -0.7928238, -3.2771292, - -2.8937984, -3.5733378, 0.603378, 1.2166159, -2.0471575, -1.3340857, - 0.61903405, -1.8041683, -5.581356, -0.43191263, -1.5796759, -3.093169, - 0.013734132, -2.2474458, -1.9864085, -1.8788295, 1.289488, 2.0030336, - -0.66111255, -3.101145, 0.65675974, -1.8645236, -0.7213056, 0.8830354, - -1.852717, -2.7787595, -0.45016217, -2.895661, -0.7399148, -0.66504973, - 0.06932432, -1.3053533, -2.1916265, -2.8077393, 3.4424806, -2.5468106, - -1.1003668, 1.4356936, 0.49180785, -0.8572936, -2.7555003, 0.031979315, - -0.5949714, -2.3496659, -2.6154747, -1.7339103, -1.2546707, 0.37123558, - -1.7772778, -2.428568, 0.09954353, 0.97941315, -1.4534613, -0.8889748, - 0.6427898, -2.114204, 0.6922102, 0.72260803, -3.1284556, -0.3818493, - -0.4758185, 2.0999694, -0.22212605, -2.508314, -0.72606194, 0.9461019, - -3.119587, -1.0559274, -0.9117703, 0.5154045, 1.8563988, 1.2835212, - -2.1331527, 0.6460867, -2.6361701, -1.6392113, -1.3550696, -1.1174624, - -2.0458052, 0.75757134, -3.9489827, -1.0641108, -2.7316566, -0.9638491, - -1.1705608, -0.73091674, -4.782743, -1.2096897, -0.94154346, 0.44827744, - -0.04233227, -1.0682693, -2.0787847, -0.49853054, 1.36069, -2.4102075, - -1.8497546, -0.46764183, -1.1570451, -2.0345078, -0.9829187, -3.447754, - -0.44156164, -1.7068796, 1.7473166, -2.2616105, -1.4894832, 2.1055353, - -3.4960892, -0.59073794, -1.0831871, -2.444911, -1.6741699, -1.789855, - -1.7514218, -1.7019198, -1.9390079, -1.6434352, 0.9830089, -1.8733878, - -1.3669854, 2.0528352, -1.3632342, -0.010459252, -0.2101801, -1.916747, - 0.13474067, 2.6048832, -1.2006979, 0.5970688, -0.36097187, -1.9217821, - -1.4836938, -2.010605, -1.3243821, 0.95268095, -0.3858586, 0.24735576, - 0.17033558, -2.536981, -1.7736241, -1.5249772, -0.7640321, -0.89425105, - -1.8970038, -2.2362332, 0.8032052, -0.91450477, -1.2487307, 0.39210224, - 1.060894, 1.8800912, -3.180322, -2.0141768, -2.262616, -3.0528018, - -3.9085355, 0.34947008, 0.62847507, 1.5545143, -1.4524316, 0.8716452, - -4.0369806, -1.23552, -0.3047239, -1.1967297, -1.4008213, -1.4123317, - -1.4884075, 0.46663836, -0.9289216, -4.270558, 0.081390455, -1.2204671, - -0.6738838, -1.825533, -0.25068823, -0.015516542, 0.1298579, 1.4753964, - -2.79094, -0.14818227, -1.918039, 0.90853375, 0.7719008, -1.7810465, - -0.65753853, -2.3019762, -1.6706024, -2.8070333, -0.06596078, - -2.8196886, -1.5050893, -1.2872951, 0.24927981, -2.7484052, -1.3739296, - -0.3902196, -3.7386572, 0.7250456, -0.41681707, -1.0214088, 1.2056676, - -0.9317947, 0.72972107, 0.88367283, -0.37230024, -3.09445, -2.479872, - -1.2995936, -1.5170323, -2.4550176, -1.6000181, -0.2952382, 2.3228037, - -1.2601479, -0.16100651, -3.2426631, -2.1472898, -0.1790114, -1.8836786, - -2.2226384, -1.6719398, -1.7754139, -1.5477014, -1.176201, 1.1258271, - -3.4529727, -2.7028615, -2.3990672, -2.915524, -3.3030446, -2.1559424, - -1.3379884, 0.22330503, 0.44614395, -0.6088908, -1.7166506, -1.9018486, - 1.4151586, -0.09603689, 0.62953085, -0.10224138, -1.5711088, 0.3894805, - -2.4689863, -0.73237413, -1.8423359, -2.5117352, -0.049651608, - -2.6547468, -3.112064, -1.9288563, 0.6766173, -1.1956047, 0.23261255, - -2.2638931, -2.8555, 1.2098359, -1.2402204, -3.8315697, -3.2518177, - -1.1429822, 1.0310605, 0.7704411, -0.128859, -0.9910017, -1.036159, - 1.2167497, -0.18249615, -1.9946018, -1.422387, -1.7572569, -0.8775545, - -0.64253676, -1.6645133, 1.1135614, -2.560833, -0.5581676, -0.1575512, - -0.16267866, -2.404518, 1.3652263, -2.2649446, -0.700864, -0.10380615, - -3.0882049, -2.4652286, 0.06453568, -3.509977, -0.6681062, -3.3231473, - 0.8603388, -2.4897516, -2.4307258, -2.5575635, 0.6658595, -0.78042626, - 3.430143, 1.6308513, -1.5529779, -1.4342047, -1.1756586, 0.6325517, - 1.1872393, 2.5187237, -1.0565045, -2.797634, -1.9810542, -1.8453732, - 0.40669936, -1.7466025, 2.0528533, -1.1206865, -2.6286263, -3.8085842, - -1.4997531, -0.4072062, -2.5568783, -1.1581311, -0.21286485, -1.5841081, - -1.4082217, -3.5491395, -0.64502054, -0.15795171, -3.0216746, - -1.7833582, -3.0277667, -1.6525642, -0.014915682, -1.2080746, -0.72683, - -0.47874075, -3.3789723, -0.8042989, -1.1260699, 1.3068469, -1.1350899, - -1.3839264, 0.64136505, 0.0668288, -0.22794765, -2.1987655, -0.9431215, - -2.3363268, -1.0659521, 0.5284427, 0.13139498, -2.4733863, -1.5590484, - -3.1454298, -2.945282, -1.8457646, -3.024388, -1.1609192, 0.1367015, - -0.4283323, -0.7502474, -1.5628037, -2.5151408, -1.6780646, -3.1376812, - 0.4240067, -0.7686658, -1.3032888, -1.5524538, -2.013523, -2.8437154, - -0.3781691, 0.22715087, 0.18949081, -2.0524752, -0.9833186, -2.2672334, - -2.1203496, -1.4188898, -1.3195293, -1.3024467, -3.0122287, 1.8520495, - 0.12287846, 1.7472178, -2.2245708, -2.3238873, -1.338541, -2.751578, - -2.527587, -1.4912149, -1.9921464, -2.6339164, -0.03339307, 1.040935, - -1.0688285, 1.6862944, -1.8241383, -0.8484578, -1.0219359, 0.80234134, - -1.2855515, -1.5249616, -0.87250906, -2.100949, -0.06437151, -1.8890864, - -1.2641789, 2.153308, -2.7303522, -0.5956467, -2.186958, -0.25277308, - 2.7742286, -2.4670405, -0.5036679, 0.39291015, -0.6930565, 0.8115959, - -0.8514108, -3.0444942, -0.7828322, -0.6438068, -0.99597436, 2.9485266, - -3.5112233, -0.8503226, -2.346805, -2.1104527, -2.5104396, -1.4162257, - -2.3501022, -0.723697, -1.8430127, -3.0210931, -0.33590233, -0.10352137, - -0.39755657, -2.0208142, -1.1346749, 0.2112296, -0.024046186, 1.6339196, - 0.42410737, -1.5648284, -0.55680656, 2.002478, -4.16983, -1.3776331, - 1.3107224, -0.736851, -1.3355889, -0.6698103, -1.2810153, 2.5420008, - -0.613623, -0.06471649, -0.49013585, -1.8933955, -1.8452603, -2.23379, - -2.9241893, 1.5829446, -2.4096017, -1.2528435, -0.781952, 2.9796622, - -2.391671, -1.2841946, -2.950792, 1.269604, 0.8044456, -0.04169147, - -1.4543254, 1.8298209, 0.5502785, -0.9157107, -0.5076908, 0.80551237, - 0.42460114, -2.2359428, -1.1662791, -3.4234328, -2.3980296, -0.58399177, - 0.39438856, -2.0581017, 0.24294612, -0.32931587, -0.08604447, - 0.61495954, -0.66872317, -1.647372, -1.1169575, 0.77506804, -1.7957895, - -0.9404655, -2.982819, -0.8287475, 0.55035055, -3.2190077, 0.5654685, - -0.36583948, 0.5724165, -0.9551693, 0.07985285, 2.4566848, -1.7872027, - -1.0584778, -1.4303839, 0.14321603, -1.9076282, -2.3032126, -2.1003706, - 2.511304, -1.3002367, 2.1182792, -3.321539, -1.7845051, 1.2899048, - -3.0170643, -2.304642, -2.1844316, -1.5532717, -2.3938167, -1.7187377, - -1.1259727, -0.44978508, -3.431313, -1.7804742, 0.04510244, 0.018402528, - -0.21513785, -1.5821593, -2.9257803, 0.8944782, -1.0594283, -0.93030494, - -0.8375414, -1.6535, 2.3384638, -0.014808085, -1.3278943, -0.22397323, - -1.4097526, -0.6851405, -0.9184639, -1.9832075, -1.2623247, -0.29239038, - -0.25979537, -3.7191088, -0.90037763, -4.7497573, -2.4038355, - -2.3007452, 0.57171416, -1.4478201, 0.4019217, -1.0531884, -0.04942453, - 0.8076097, -3.0196187, -2.0006652, -0.25524318, -1.396995, -1.2833258, - 1.2881144, -0.7362089, -0.77727216, -2.3286464, -1.0812764, -2.3197496, - -0.89967805, -2.359193, -2.5263786, -0.35044938, -1.9605898, -1.4683712, - -0.15848404, -1.3961083, 1.5353391, -1.3980886, -2.51157, 3.7669184, - -1.6963233, -2.2089224, -2.8298888, -2.6039433, -0.015533075, - -0.35395858, 0.012863215, 1.5421084, -1.7359372, -5.116779, 1.2139068, - 1.8641745, -1.1421282, -1.2801707, -2.940298, -2.07667, -1.4954165, - -2.6708379, -1.4928145, -1.1764617, -2.1398187, -1.2605386, -0.8004914, - -1.8956141, 1.436394, -0.7480417, -3.3748703, -3.4174926, -1.5136094, - -0.527885, -2.4685793, 1.1488625, 0.67488974, -0.054974835, -1.1249222, - -0.21107739, 2.8494039, -1.7675833, -0.8428415, -1.8628942, 0.9658331, - -0.78406906, 2.6108377, -2.9550312, -0.31458548, 0.39286068, -2.7085853, - -1.0259973, 0.049780432, -0.962925, 0.011866864, 1.8446187, 1.1375296, - -0.7426921, 1.6136091, -1.3411715, -2.1001396, -2.5181959, -1.3541217, - -0.23117357, 0.03089527, -2.9180336, 1.5620674, -0.8327567, - -0.006354004, -3.3973699, -1.0916468, 0.26272273, -0.260071, -1.8344758, - 0.6905678, -0.2367974, -0.24417222, -2.3147573, -2.4979172, -0.06361057, - -1.1143682, -1.5701786, 1.44737, -2.3218372, 0.96094924, 1.0523782, - -0.13156462, -0.5063982, 0.7346613, -2.5308945, 0.49688295, -1.8947037, - -2.4277902, -2.4829237, -0.73199135, -1.5536276, -1.6297417, -1.9098852, - -0.11170322, 1.601388, -1.559671, -1.2354565, -0.33925003, -0.33784902, - -1.3407044, -1.3242337, -1.652544, -1.266826, -0.47416812, -1.3697451, - -1.5853492, 0.52742666, -1.4133848, 0.9164483, -2.2686996, -2.305093, - -3.305062, -4.7369137, -2.6441605, -2.6021676, -1.6363322, 0.033046413, - -2.271907, -3.0447655, -1.7035925, -1.8390115, -0.8742699, -2.7898092, - -2.986492, -1.7704034, 0.48049366, 0.3053134, -0.83934695, -4.249071, - -2.8114264, 1.459973, -1.3250579, -0.17625682, -1.2614572, -3.252711, - 0.32420677, -2.3085616, -0.6267585, -2.0317895, 1.0615497, -1.7556973, - -1.9544488, 0.9802668, 3.138605, -2.715631, -0.4579574, -1.7543395, - 1.10097, -0.4704097, -1.6929177, 0.9983366, -0.33104348, 0.62674993, - 0.25244355, -1.2926906, -0.4858356, -1.0543065, -0.4499369, 1.1340377, - -1.600445, -1.5646889, -1.3937434, 0.6722658, -3.2438662, -1.4484576, - -0.5245757, 0.2578044, -1.2423533, -0.23542818, -5.7683835, 0.29030195, - -0.20704438, -0.6619157, 0.35511822, -1.0089712, -2.1806808, - -0.32204336, -1.04466, -3.739159, -2.4214487, -2.9126883, -2.150966, - -2.439599, 0.10130532, -1.5103204, -1.5802214, -1.1884618, 0.047557324, - 1.3608987, 0.5538167, 0.54638815, -0.2616163, -0.7365467, -3.1886897, - -2.4384742, -1.8112134, -1.9450077, -3.0035768, -1.4179589, -1.1841718, - -3.0749037, -1.2640274, -0.76185083, -2.8072155, -3.4769218, -1.3422844, - 1.1970192, -2.2244377, -1.9320792, 1.7911353, -0.37203723, -2.551926, - -0.17940474, -1.5398943, -1.1605132, 0.00059813634, -1.3067716, - 1.1305753, -1.3320425, -3.0981286, 0.9638903, -1.7906747, 0.304748, - -2.530428, -1.0570818, -1.6426312, 0.5610542, -1.5197476, 1.2770095, - -0.69796455, -2.3691032, -2.3827786, -1.4994138, -3.29887, -0.34297898, - -1.3047763, -0.3313252, -1.3962106, -0.67549026, 1.1510017, -0.27048904, - -2.453348, -1.5765198, -2.5222538, -2.3730438, -4.286078, 1.2442065, - -3.3891025, -3.303304, 1.5740032, -2.3406496, 0.20165187, -0.35429227, - -0.27560872, -2.0169487, 0.2189663, -0.22671074, -1.5829499, -1.1652985, - 0.6772788, -3.7289405, -3.2878478, -3.4254177, -1.4837327, -2.1003344, - -3.1159396, -0.52094877, -1.2036628, -2.4070916, -2.0795033, 0.27791053, - -1.0710052, -1.8897417, -1.2408221, -3.3430884, -1.9838054, -2.8925107, - -4.4509645, -1.531741, -1.2511108, 0.14010346, -1.2855015, -0.53352696, - 0.88503534, -2.30146, -2.0899615, -0.013870336, -0.4600969, -1.9764581, - -1.103631, 0.4904912, -1.7845541, 0.7875587, 1.6942137, -2.9805589, - 0.88354564, 0.053090185, -0.40995535, -2.0424676, -2.0479202, 1.3145165, - -1.7371008, -0.078648396, -3.217249, -0.69816774, 0.5781359, -2.0156686, - 1.5084174, 0.93510616, -0.0009200759, -0.7270841, -1.5671403, - -1.2029626, -3.4241025, -0.4112502, -1.5881706, -2.2487648, -1.2256336, - -1.6805853, -0.58188224, -1.7062949, -2.744766, 1.9120073, -1.8773845, - -2.5582924, 0.49707305, -1.6279985, -3.8515148, -4.3307505, - -0.009459015, -1.476451, -2.4893858, -1.601743, -1.147111, -0.62855613, - -1.381622, -0.31137687, 0.057488423, -3.0750854, -2.055074, -1.3953165, - 0.3306165, -0.8991718, -2.6856956, -1.892597, -3.01271, -1.4923167, - -0.9201938, -1.6975366, -0.038479265, 0.8966965, -0.3007846, 2.5082867, - -1.9215599, -2.9666512, -0.36588886, -3.243975, 0.92428327, 1.8296144, - 0.040676128, -0.78286505, -1.8887427, -1.7019439, -3.4412763, - -0.85906684, 1.4626664, 0.07922615, -1.0871751, -1.0349351, -2.6536195, - -1.4690374, 0.6692576, -0.7414203, 1.8227624, 0.6049447, -3.5579531, - -1.2400603, -1.0950612, -3.671093, -2.433216, -1.6444811, -2.9630222, - -1.3094859, -0.9516873, -1.467557, 1.1936107, -2.4889524, -0.72668505, - -3.257125, -1.8214154, 0.68147343, -0.651277, -0.95996004, -1.5701755, - -1.916969, -2.1997502, -3.4376094, -1.3839058, -2.159647, -1.7274115, - -2.0029564, 0.88115156, -1.422959, -2.4176114, -2.5218954, -2.1402254, - -0.6793532, -3.2128296, -3.9656723, -1.9777927, 0.30649567, -1.7172198, - -1.0663757, 2.3845258, -0.47129604, -2.20821, -0.58135915, -3.8572204, - -1.6387085, 0.061926063, -1.4325309, -2.0872068, -0.9893798, -0.5580497, - -1.0441282, -0.6757684, -1.5731523, 0.1908638, -0.14385018, -2.483753, - -2.0025465, -1.614142, -1.1189388, -2.3309925, 1.4176493, 0.7154604, - -1.1352651, -1.7084662, -2.727373, 1.0002528, -2.05001, -1.8227, - -1.0133194, -2.5603, 0.20404579, -0.63602364, -4.268132, -2.8412118, - -1.6594578, -1.7181634, 0.13988858, -0.7106501, -2.0223734, -2.6218362, - 1.8768117, -0.9407907, 0.36422837, 1.6314704, 0.91813064, -3.057007, - -2.3446915, -0.13295251, -2.582255, -1.2076906, -1.7806182, -1.1459928, - 0.5909342, 0.63737434, -1.5012031, 2.1638603, 0.069113195, 1.2445791, - -0.91223586, -2.2543075, -0.41427875, -0.3844043, -0.7175787, - -2.8699293, -2.4711745, -2.7183409, -0.37290093, -1.8285304, -1.8057108, - -2.6686304, -0.5866813, -0.052058756, -0.047314465, -1.6955729, - -0.34425482, 1.0981107, -0.9853406, -2.1358125, 1.8749835, -3.3439991, - -3.715414, 0.43228668, -1.6649098, -1.0341923, -3.8109236, 2.2246087, - -0.6891522, -2.4184663, -4.142077, -0.24596651, -0.5903641, -0.96719384, - 0.19597346, -2.3584914, -2.803187, -0.98346484, -0.11051993, - -0.24869934, 0.8949443, -0.7487914, -3.1111763, 0.46451664, -0.8138971, - -1.2977772, -0.73288643, -2.1040928, -1.8520353, 0.07649805, -1.4043394, - 2.2632775, 1.0760689, -2.042419, -1.353579, -2.7798548, -2.8993025, - -2.7956324, -2.9936674, -0.42007783, 0.631987, -2.0875993, -1.1127508, - -1.0341119, -1.3158371, -1.1915932, -1.1427785, -2.5474517, -2.319387, - -0.5847122, -1.6382904, 4.105111, -0.7522636, 0.39420882, -3.2883863, - -0.7603191, 0.021096956, -1.7189834, -0.7409266, -2.0224748, -1.3625745, - -0.94057375, 0.58942795, -1.4747198, -2.217752, -1.5931351, -1.8298427, - 0.8170583, 0.8051811, -3.0524268, 0.9958006, -1.7746677, -0.90374774, - -2.0150368, -2.832964, -2.7535243, -0.8902488, -0.003395485, 0.13318479, - 1.219176, -2.5938241, -0.18965933, -1.6631216, -3.4096339, -3.1008384, - 1.107847, -1.8065816, -2.9440863, -3.1544673, -3.010302, -2.5968716, - -4.827379, -2.02977, 0.97435665, -1.1046319, -1.9639428, -3.543221, - -0.50478274, -0.74023503, -1.2525373, -1.6021928, -1.7287216, - -1.0867945, 0.62275696, 1.0652598, -3.0716014, -0.74814963, 1.3674797, - -0.41573268, -0.03846313, -1.4413192, -1.5962107, -0.9300885, - -1.3604447, 0.5339656, -0.36159632, -1.9126433, -1.3536053, -0.48818555, - -1.5371894, -3.4025679, 0.7941315, -1.8887626, 0.8519342, -0.79139334, - 1.9260228, -0.96303964, -2.0809426, -1.8641114, -0.56687117, 0.60311794, - 0.14379531, -2.2734852, -1.407124, 2.3759313, -0.54442465, -0.19916695, - -1.7628635, -3.2138903, -2.0382116, -1.7935009, -1.1688502, -0.43704045, - 1.3630536, -2.2527857, -0.45003402, -2.3320403, 0.2082254, -0.31006786, - -3.352754, -3.249165, -0.40245342, -0.075551584, -3.1223307, -0.995512, - 0.16866495, -1.5880574, -1.5210587, -3.0098643, -1.7705859, -0.39265093, - -1.7503241, -1.8833627, -0.99108624, -1.0020931, 1.5298655, -0.3152265, - -3.3196988, -1.0886782, -0.57665205, -1.9081295, -2.5987504, 2.0995946, - 0.47235438, -2.6010766, -2.748723, 0.1878403, -0.9267224, 0.63413554, - -0.32933563, -0.08373279, -0.5115389, 0.6062579, 2.0880094, -1.2011465, - -4.06648, -2.8739464, 0.5111994, -1.3876137, -0.079093546, 1.353235, - -2.9451134, -2.167704, -1.3137752, -1.3535147, -1.3472275, -2.557388, - -1.3985487, -1.4724405, -1.4952027, -1.077451, -0.75871587, -2.8924203, - -1.7981699, 0.8915179, -1.3932449, -2.994081, -1.5686907, -0.71891546, - -3.4365273, -0.23036128, -1.7466971, 0.29550326, -1.326088, -1.3941715, - -1.7223675, -0.015861813, 0.2933765, -0.6478692, -0.19211623, - -2.8288846, 1.2707671, -1.8443224, -3.638109, 3.0475874, -3.479168, - -0.11200287, 0.06188826, 1.1209679, -2.0345356, -0.18730122, - -0.48819193, -1.726583, -1.3956811, -1.5119046, -3.0152812, -1.5906167, - -1.5188305, -2.774665, -2.387219, 0.20804143, -1.7211777, 0.48258495, - -1.7470189, 0.011129189, -0.5786709, -2.8249388, -1.3902628, -0.9920086, - -2.2889824, -2.0207777, -3.8011136, -3.3304858, -0.94203824, -2.0636308, - -3.830863, -1.5288714, -0.7405615, -3.7040799, -3.452238, -1.8442681, - -1.4393313, -3.3156593, 2.1970031, -1.6227102, -2.4085906, 1.1123859, - -4.387467, -0.25172365, -1.5645491, -4.7314796, -1.9336295, 0.6086579, - -1.4959489, 1.4612868, -4.1339526, -1.8849672, -3.562747, -1.4637277, - -2.6941042, 0.50286806, 1.8240528, -2.7999425, 1.1645092, -0.43424225, - 0.88089854, 0.6472002, -1.0186855, 0.5384528, -0.1235202, 0.045397326, - -1.6951365, 0.0032622218, -1.9439372, -4.422624, -3.4364302, -0.5595908, - -0.96645975, 0.9130808, -1.3676168, 0.77036536, -1.4264729, 0.4339018, - 0.80290586, -3.592894, 0.5342967, -0.30689344, -1.5998918, -2.1599314, - -1.1205258, -2.8097074, -0.40570045, 0.27111372, -1.8051484, -1.0338967, - -1.3399647, -1.1825758, 1.1115731, -2.3653479, -1.3860538, -0.35678703, - -0.7203189, -0.13012666, 0.31425598, -1.1487805, -1.506431, -0.3015156, - -1.6607585, -0.340544, -3.7022192, -0.5048501, 1.99958, -1.2745253, - -4.0305986, -0.62772393, -1.9357276, -1.1851362, 1.4410216, - -0.035521314, -0.91383195, 0.09978239, -2.6502697, -0.61181384, - -1.417368, 0.59399116, -0.81628495, -1.3424262, -3.7720754, -1.560451, - -2.4114106, -2.947822, -0.5867413, -4.4937606, -0.8824466, -3.0452888, - -2.2672248, -1.9147773, -0.53281695, 0.15928403, -0.026211075, - -2.3949065, -3.3988316, 1.2552387, 0.5981126, -2.4350846, -2.0782282, - -3.0895848, -1.4489486, -0.8830151, 1.6696664, -0.37742275, 1.0320001, - -1.8830143, -0.3109472, -0.60986215, -2.6471162, -2.321794, -1.441087, - -2.0997627, -2.4158862, -3.1370206, -1.0309926, -0.73838735, 0.58629656, - 1.2377971, -5.736645, -1.209899, -1.9336689, -1.6865911, -2.5596824, - -1.9046593, 1.1072637, -2.9565868, -0.37193102, -0.7164636, -1.984507, - -1.087477, 0.45601496, -1.2720462, -0.7707711, -1.0110775, -0.110636964, - -2.5568573, -2.2442734, -2.7868323, -0.74260557, -0.29729173, - -1.0936242, -2.1705346, -2.1651492, 0.2526048, 1.0704782, 0.030358419, - -2.2908561, 0.80925655, -0.97133696, -2.5077279, -0.22602955, - -0.9696686, -0.38169783, -1.5445102, -0.056607984, -1.3387206, - -0.5496021, -2.5909834, -2.8189492, -0.8439301, -0.5547573, -0.78247124, - -2.0709834, 0.40173545, 0.8362448, -1.9293919, -1.9027473, -3.028667, - -1.3388032, -2.5288131, 2.3473384, 0.1349555, -1.3592595, -1.7254407, - -1.0179509, 1.0281206, -0.1941824, -1.4982557, -0.8940742, 0.6034585, - -0.7788205, 0.46646935, -1.997497, -0.943395, -1.6518942, -0.3590237, - 0.29395, -0.23760805, 0.5106779, -2.0072918, -0.9807216, 0.48999658, - -2.2341552, -3.0634925, -1.8440171, -2.6970384, -1.1295438, -3.1017866, - -1.5481144, -0.4673599, -1.8854315, -0.61503285, 1.5487939, -1.4693816, - 0.12093959, 0.68452543, -0.35333532, -2.3731313, 1.6409035, -0.03549736, - -3.1354983, -0.64633936, -0.6491836, -4.3951283, -0.43617895, - -0.15813644, 0.578134, -3.5471046, -2.5502114, -0.19880831, -3.4263206, - 0.06466547, -2.6716328, 1.6874098, -0.58701843, -1.6886848, 0.87082, - 1.1701256, -0.8315829, -1.2571298, -2.2910452, -1.6248376, 0.68250567, - -1.3752847, 0.701113, -1.0372673, 2.725924, -2.48143, -0.6443938, - -1.0353733, -2.3455012, -1.7782929, -2.3184137, -0.7332386, -3.068944, - 1.2053701, -2.4543452, -0.17174014, -2.6434731, -1.6480997, 0.12287252, - -2.3851235, -0.013506547, -1.5956079, -1.0518322, -1.424807, -0.9840194, - -0.6062268, -2.5282981, -1.7726761, -0.024114266, -1.7564265, 1.5282528, - -1.4693853, -1.7566159, -2.407969, 0.7187283, 0.73358804, -1.041336, - 0.8736901, -3.3452735, -2.2549124, 0.01051525, -0.5141814, -1.5787835, - -0.51765186, -3.3217256, -3.590225, -0.5378768, -2.497068, -2.2261086, - -2.3408937, -2.6551926, -3.6412666, -4.6958685, -0.86825305, -2.4971285, - -1.2657151, -0.047712665, -2.8236463, -1.1473091, -1.0490885, - -0.30115563, -0.75480044, -3.219396, -0.14721054, -0.6186846, - -3.2564535, 0.4129666, -0.79923, -0.49616897, -0.27796665, -2.9974153, - -1.3571388, 0.35047427, -1.2953807, -1.7513176, -0.840645, -0.38002402, - 1.9215292, 1.0563313, -2.862195, -1.1863155, 1.0855864, 0.11750317, - -2.489505, 2.4529898, -1.3490745, 0.15374805, -3.538679, -1.5531833, - -2.9609838, 0.76307833, -2.41869, -0.43391404, -2.8988338, -1.7261423, - 1.5697639, 0.99019796, -2.816159, -1.7228392, -0.29706216, -2.4561794, - 1.1673589, -1.9053322, 0.590559, -2.7877715, -0.32049423, -1.8160796, - -0.19143085, -1.1286592, -2.4083445, -0.8099447, -0.6954362, -1.9611033, - 0.4072987, -2.294286, -2.9562929, -1.4186754, -0.80110013, -1.9091649, - -1.5606637, -1.1693568, -2.3731446, -2.610302, 0.385736, 0.5718378, - 0.18257391, -2.7581885, 1.1578385, 0.32202998, -2.540714, -0.9909942, - -1.4857708, -1.2799826, -1.4794189, -1.7558554, -1.758427, 0.38126883, - 0.19345194, -0.41625583, -0.030052172, -1.3761785, -1.0539793, - -1.2189004, -2.2388241, -1.7247688, 2.8494668, -2.9082875, -1.487876, - 2.1350758, 1.1844382, -0.38176048, -2.0315208, -1.8356713, -0.92276067, - 0.97975594, -4.2817016, -0.3617181, -0.22413534, -1.5337112, -1.9420925, - -2.0235338, -1.1681079, -1.5177892, 1.0397927, -0.36385152, -0.3277321, - -0.66242975, -0.5931213, -2.953803, -3.1471763, -2.2958698, -0.903662, - -1.4333681, -0.20230398, 0.8682639, -1.1395909, 0.5746768, 0.32542968, - -1.349594, -3.075314, -1.6450585, 0.056009013, -2.4287355, -0.28403252, - 2.0614076, -2.337551, -2.7796443, -0.9892932, -2.1841805, -1.0922873, - -2.4007456, -2.0118432, -0.23107556, -1.1562732, -2.1138434, 0.5983133, - -4.951912, -3.5216544, -2.5064464, -2.5552888, 1.6363915, -0.9644043, - -2.333234, -2.8982115, -3.1043174, -3.6957316, -1.1912488, -0.39536262, - -3.2150393, -1.3439374, -2.9684153, -0.29811677, -1.1560951, 0.6091517, - 1.1963608, -1.012259, -3.8975928, -0.5901283, -0.04434405, 1.0726608, - -1.939835, -3.1368637, -0.7343256, -0.18618433, -1.2540692, 0.1719213, - -1.738211, 1.3644805, -1.6342188, -1.5821288, -0.4155193, 0.19216242, - -1.5131222, -3.344176, 1.9302657, -2.3383503, -3.3325253, -0.41590136, - -1.436161, 1.9482858, -1.6867082, -1.2183262, -1.3444921, -1.0823064, - -1.3527025, -0.87650377, -2.7138247, -1.4658757, -2.4253964, -3.6688018, - -1.9331144, -0.8969663, -3.396385, -2.4411356, -0.49977702, -0.30337453, - -1.1727408, -0.51064414, -4.364719, -4.0274577, -3.264237, -1.1569604, - 0.95355767, -0.95686615, 1.9811532, -2.9574518, -0.060973965, - -0.4504309, 1.9584577, 2.3035054, 1.4227885, -3.3148086, -1.9475933, - -1.4299215, -0.86964, 0.5368135, 0.0521885, -1.3935249, -0.5276638, - 0.53543335, 0.15418059, -3.4692519, 0.15958472, 2.9161077, -0.8365114, - -1.0052366, 0.7595452, -0.8300331, -2.7491791, -2.4703054, -1.2640057, - -2.3973827, -0.85286844, -0.03797687, -2.544431, -3.0010512, 0.19088995, - 0.15744522, 2.5693161, -2.2767522, -0.7304227, -2.2772362, -2.8996356, - 1.056462, -1.2783369, 0.045423247, -3.6563168, -1.9609153, -1.6049942, - -3.3823614, -0.51593924, 0.41982365, -3.7037933, -0.570772, -1.6427131, - -2.1323454, -1.989336, -1.2109352, -2.2704325, 0.27557394, 0.9518668, - -1.6719706, -1.2374803, -2.7152948, -2.9639308, -0.15630314, - -0.47283113, -0.87615526, -0.9517518, -1.6037334, 0.92839146, - 0.91292924, -0.75500864, 1.1194586, -3.8504105, -2.2574472, - 0.0090462975, -0.3258147, 1.2873489, -4.005417, -2.5741618, -2.8927593 - ], - "reducedFeatures": [ - 0.008940926, -0.02150804, -0.05826665, -0.047561143, -0.03929835, - 0.012372264, 0.0033848663, 0.0033021597, -0.025997048, -0.0050949277, - -0.033952575, -0.035990685, -0.0179696, -0.020394336, -0.022861257, - -0.0038181525, -0.049290966, -0.019032339, -0.012586507, 0.014249607, - -0.02786591, -0.013746508, -0.020577054, 0.009777059, -0.024178626, - -0.0062837168, -0.014141437, -0.004912701, 0.0298536, -0.023163015, - -0.016673582, -0.009251356, -0.04952663, -0.009276123, 0.008992213, - 0.022385964, -0.030317608, 0.0028119714, -0.014945931, -0.012260464, - -0.020630257, 0.009659101, -0.020967504, -0.048634887, -0.038067825, - -0.051644895, 0.0020625184, 0.013814459, 0.032002546, -0.012592098, - 0.0045647523, -0.008931604, -0.05610446, -0.04404803, -0.04339053, - 0.032637857, -0.028981967, -0.036048822, -0.0025690887, -0.013425617, - 0.014807839, -0.04875994, -0.050325766, -0.053788733, -0.05748775, - 0.01751041, -0.021065466, 0.010336355, 0.0034826715, -0.05983719, - -0.018475998, 0.006551384, -0.022047615, -0.004505376, 0.011651811, - -0.012341149, -0.03788495, -0.014364802, -0.0051219994, 0.0043161293, - -0.015237023, -0.0136655, -0.04371695, -0.006530051, -0.021320246, - -0.027110167, -0.08006491, 0.0035993995, -0.07379258, 0.019842273, - -0.010977264, -0.0016186958, -0.025693793, -0.06133311, -0.04419307, - -0.043918904, -0.013806761, -0.050394177, -0.02958163, 0.008250422, - -0.012979017, -0.03192551, -0.0055687833, -0.026533308, -0.05375323, - -0.016005563, -0.0065736417, 0.008180405, -0.057890657, -0.04301091, - 0.00435591, -0.044223577, -0.05452718, -0.041132018, -0.02883795, - -0.039931282, -0.013636124, -0.02185103, 0.027351575, -0.029867567, - 0.014908642, -0.007913442, 0.022200368, -8.6726606e-5, 0.00526269, - 0.005482894, -0.0037328776, -0.036664438, -0.041897293, -0.026999233, - -0.028778752, -0.028108433, -0.009354018, -0.010509879, -0.014305894, - -0.03135259, 0.0052349167, -0.027845277, -0.04488006, 0.0289521, - -0.018593505, -0.038955525, -0.0781784, -0.0061308835, -0.02291549, - -0.004206047, 0.0017258129, -0.036624484, -0.050154954, -0.063171625, - -0.043841463, -0.04311298, -0.030127052, 0.0065649743, -0.04842398, - -0.00025519013, -0.035006, -0.017491698, -0.011612155, -0.034348417, - -0.05192347, -0.027400194, -0.0054997234, -0.00905246, 0.009514798, - 0.03741307, 0.007750789, -0.018041695, -0.009091634, -0.0040703146, - -0.008206597, -0.043509535, 0.0026235906, -0.037075203, -0.008481635, - -0.0084741935, -0.013195571, 0.01244106, -0.030518606, 0.00048336692, - -0.024116412, -0.0343026, -0.055276345, -0.0045130667, -0.031512953, - -0.004177571, -0.049794942, -0.033566326, -0.043891657, -0.0424367, - -0.049668826, -0.0370646, 0.014660016, -0.029707482, -0.029291818, - 0.03354934, -0.007512351, -0.016297927, -0.029308744, -0.006388605, - -0.021517036, -0.024144284, -0.02935904, -0.028244166, -0.03365227, - -0.044802856, -0.026779769, 0.015066401, -0.027423142, -0.050583705, - -0.0070110396, -0.01775929, 0.0002821276, -0.007370737, -0.040606197, - -0.007329316, -0.019987576, -0.039675947, -0.022361215, -0.023687612, - -0.047066886, 0.0027220673, 0.037109144, -0.030319726, -0.018374495, - -0.008632028, -0.015293728, 0.00722834, -0.027697204, 0.044331435, - -0.027964603, -0.004117246, 0.030641856, -0.024072275, -0.027489007, - -0.008037316, 0.0064802705, -0.02707675, -0.035986874, -0.021189783, - -0.0049351035, -0.011434545, -0.00038941042, -0.018912815, 0.001066699, - -0.006095871, 0.005981081, -0.03334818, 0.018921323, -0.025159946, - -0.017287564, -0.026558556, -0.0024426929, -0.01981794, -0.030635457, - -0.024389494, -0.059066053, -0.02725299, -0.025631545, -0.04419977, - -0.019442294, -0.025476106, -0.03633672, -0.068719774, 0.012710718, - -0.018399803, 0.024077278, 0.021738617, 0.0071212905, -0.026625287, - -0.015233307, 7.650848e-5, 0.015441348, -0.022061028, -0.05961283, - 0.008971855, 0.013327165, -0.010725044, 0.00504282, -0.047430396, - 0.014367635, 0.0016051094, -0.0073265987, -0.029032156, -0.026229722, - 0.0054126712, -0.057428353, -0.0020753478, -0.016780654, -0.0018944402, - -0.009898699, -0.0238595, -0.0011937623, -0.05452382, -0.029620398, - -0.020606749, 0.02685885, 0.023796678, -0.028010057, -0.008757778, - -0.037318755, -0.019265339, -0.021443008, -0.03992482, -0.011331532, - 0.014214905, -0.00094569323, 0.017238922, -0.025316626, -0.013765122, - 0.022773365, -0.042725418, 0.012656915, -0.023367792, -0.010688871, - 0.007939521, -0.0041468963, -0.008713498, -0.02583652, -0.05964649, - -0.04989761, -0.07126675, -0.046481293, -0.04916989, -0.04561315, - -0.016312696, -0.016830865, -0.016766824, -0.057603408, -0.021524774, - -0.016110875, -0.011241972, -0.038043298, -0.038942136, -0.0030514859, - -0.036233418, -0.026124863, -0.05108825, -0.036388833, -0.007893808, - -0.0361716, 0.004529639, -0.04428547, -0.033308096, -0.025771067, - -0.047170352, -0.00763645, -0.009845168, -0.05939362, -0.002434313, - -0.026774777, -0.007010635, -0.011005101, -0.0072468473, -0.054395553, - -0.030950874, -0.0013648188, 0.0010673273, -0.013362089, -0.009463573, - -0.0047362214, -0.03685108, -0.024090918, -0.0068054083, -0.008272876, - 0.008308546, -0.011083105, -0.028801756, -0.01140745, 0.011033291, - -0.027730757, -0.04236774, -0.053480625, -0.02635707, -0.018059954, - -0.006393494, -0.000982892, -0.026738923, 0.0027578054, -0.02423382, - 0.0061624837, -0.026636811, -0.05251353, -0.011810729, -0.001340637, - -0.028275456, -0.012210984, -0.03471719, 0.013125279, -0.018041102, - -0.04069545, -0.04913893, -0.02843129, -0.019763084, -0.06493585, - -0.011236425, -0.024257723, -0.0070523066, -0.05088072, -0.04800969, - -0.018835846, 0.0052956673, -0.030651214, -0.018809957, -0.022565845, - -0.02811126, -0.021854024, 0.0028242199, -0.025391819, -0.030775717, - 0.038722627, -0.01616227, -0.037131112, -0.005993432, -0.09367748, - -0.011401359, -0.009203557, -0.0050227987, -0.00844098, -0.025145013, - -0.020013923, -0.00043478148, -0.03735897, -0.020928072, -0.03227309, - -0.0011544788, 0.00028978955, 0.0034920052, -0.0014117277, -0.02038664, - -0.024779975, -0.023213612, -0.024590105, 0.021530787, -0.047845844, - -0.03866638, -0.0039139534, -0.038894113, 0.00486703, -0.056746576, - -0.051285025, -0.06592934, -0.05157051, -0.01903017, -0.057644937, - 0.011969807, 0.0005549362, -0.027486384, -0.06012301, -0.03535672, - -0.027014831, -0.013478921, 0.00028670652, -0.011715517, -0.02899318, - -0.019682689, -0.0097876545, 0.0046173665, 0.040076487, 0.0069063464, - -0.03591551, -0.008485937, -0.017681547, -0.049780883, 0.0052762236, - -0.04566032, 0.0016569762, -0.04895158, -0.008585726, 0.0027835388, - -0.022726377, -0.013836766, -0.06184595, -0.055107877, 0.0051475307, - -0.0610905, 0.03752981, -0.057406057, -0.035770662, 0.0084974, - -0.059078522, -0.07453166, -0.0159748, -0.040686797, 0.014523394, - -0.044498153, -0.036055572, -0.0012185589, 0.0028791532, -0.013334535, - -0.024986738, -0.029178835, -0.04584846, -0.050300322, -0.0117031485, - -0.016435323, -0.021554397, -0.007800744, -0.011386862, -0.015225765, - -0.0184689, -0.031216651, -0.021368707, -0.044802893, -0.050880693, - -0.022631712, 0.032100536, -0.030818537, -0.013581303, -0.039609347, - -0.015518995, 0.046261873, -0.031656854, -0.0061855316, 0.011136646, - -0.057295356, -0.030648103, -0.03158808, -0.023955444, -0.01706736, - -0.010582718, -0.05615914, -0.01255227, 0.009952855, -0.014666929, - -0.033257622, -0.031483833, 0.011602683, -0.036722254, -0.05727962, - -0.018394964, 0.014940529, 0.018905787, -0.038609713, -0.04265334, - -0.04190402, 0.0088231675, 0.0040602502, -0.00025198082, -0.015287746, - -0.0510221, -0.0024974188, -0.03381311, -0.015135226, 0.0045472016, - -0.00561348, -0.022576185, 0.024303721, -0.041561507, -0.047366317, - 0.015378345, 0.024400206, -0.042549387, -0.035903014, -0.06951024, - 0.010710354, -0.01418961, 0.0069826543, -0.02246007, -0.028507063, - -0.008303038, -0.0031710241, -0.030466685, -0.046546504, -0.011821529, - -0.01834991, 0.02514316, -0.011010244, 0.020766191, -0.0012807722, - 0.010685937, -0.00016413293, 0.00025575716, 0.01118723, -0.042162407, - -0.03334293, 0.008753876, 0.022693023, 0.00096805993, -0.011308727, - -0.052052356, -0.042932138, 0.030431606, 0.026020667, -9.1605565e-5, - -0.019607969, -0.043209203, 0.0041139903, -0.017400451, -0.005043569, - -0.0044629574, 0.02003661, 0.0051177465, -0.009997184, -0.025521327, - -0.0026060697, -0.013417433, -0.07578692, -0.04466762, -0.0114072105, - -0.02227521, -0.040721927, -0.0018392927, -0.04313452, -0.034028884, - -0.043448493, -0.04539458, 0.014110047, -0.04516049, -0.048201162, - -0.041577738, -0.010218237, -0.041913163, -0.030091755, -0.05175107, - -0.05347643, -0.005069652, 0.013426765, -0.041384637, -0.011733655, - -0.015541871, -0.026607433, -0.04915989, 0.022424733, -0.044294037, - 0.008568221, 0.02393145, -0.017812584, -0.016979894, -0.016348146, - 0.033464372, -0.031079287, -0.0014403006, 0.016710162, -0.030670928, - -0.007975961, 0.0075049903, 0.0085527925, 0.052569605, -0.017047891, - -0.008025913, -0.009933814, -0.043140482, -0.042890225, 0.0065484964, - -0.013065167, -0.044040147, -0.007379935, -0.024278583, -0.004524376, - -0.021331172, -0.009171969, -0.029527718, -0.037667003, -0.054086205, - -0.024098622, -0.01445522, -0.027956812, -0.06279351, -0.054036677, - -0.035184544, -0.051066663, -0.031655893, -0.012471816, -0.01099448, - -0.025716145, -0.020039903, -0.04957906, -0.061211873, -0.0023652613, - -0.038568255, -0.00034329083, -0.042729296, -0.056410022, -0.050821003, - -0.031175923, -0.020095207, 0.0028663126, 0.017913047, -0.023706261, - -0.019429332, -0.010914275, 0.025113842, -0.017891776, 0.004507169, - -0.03014855, -0.035413567, -0.014486614, -0.05629341, -0.026577717, - -0.024950322, -0.032737367, -0.03869522, 0.026105883, 0.020915303, - -0.04099739, -0.027791109, -0.062777355, -0.015498006, -0.043925293, - 0.008262705, -0.0034603924, -0.024803367, 0.0023339656, -0.012955729, - -0.04415423, -0.013756367, 0.00035148757, 0.014710293, 0.028462363, - -0.0058566416, -0.022165762, -0.0019060586, 0.003634159, -0.009200205, - -0.018686455, -0.05211561, -0.011116108, 0.007160065, 0.0023108148, - 0.013855435, -0.0032892653, -0.038331445, -0.028890535, -0.0005222645, - -0.008734155, -0.062412135, -0.010553565, -0.061191782, -0.014200091, - -0.013798715, -0.007656533, -0.0142999, -0.011079361, -0.072211996, - -0.0149668455, 0.05806, -0.0125841955, -0.0354071, -0.019887866, - -0.032281667, 0.04806683, -0.013996097, 0.017544048, -0.045172483, - 0.047405634, 0.033336584, -0.0039759013, -0.039274372, -0.03177523, - -0.045671426, -0.020521624, -0.014669509, -0.0067389794, -0.056129582, - -0.019261114, -0.040452454, -0.049829777, 0.0022267161, 0.024339752, - -0.015651233, -0.008278751, 0.00985198, 0.01076304, -0.030689511, - -0.017707847, 0.013261991, -0.015366738, -0.0052819517, 0.016700514, - 0.0031172293, -8.853762e-5, -0.0046882476, -0.008748384, -0.036645994, - -0.05914845, 0.01184943, -0.021563336, -0.052548505, -0.018555123, - -0.035436854, 0.010044412, -0.021171376, -0.03083099, -0.0013258355, - -0.054451864, -0.02126993, -0.0003542805, -0.038159866, -0.052898947, - -0.06341967, 0.0018210171, -0.05248334, -0.0442062, -0.01222163, - -0.03783448, 0.018722296, -0.029187772, -0.022729546, -0.048368152, - -0.019957656, -0.013515708, -0.052703045, 0.039422605, -0.011729326, - -0.053743947, -0.04399383, -0.020053597, -0.022707174, -0.0022207296, - -0.01729321, -0.03172802, -0.064042695, -0.044695232, -0.04714903, - -0.077020526, -0.06458815, -0.028808016, -0.0030562945, -0.07101494, - 0.004115622, -0.008130981, -0.035155963, -0.02091666, -0.026873797, - -0.05194141, 0.0099070985, -0.05483042, -0.025546277, -0.037109748, - -0.030516, -0.03125826, -0.0031595335, 0.009223319, -0.020551385, - -0.0009543819, -0.033848967, -0.0072976192, -0.012945646, 0.024871053, - -0.013362164, -0.0077592125, 0.023841053, -0.017620033, 0.009033407, - 0.013306478, -0.07490312, 0.015470351, 0.07914502, -0.04290854, - -0.004343398, -0.014366177, -0.0117963655, 0.0043339115, -0.0035676204, - -0.053735476, -0.021499721, -0.012683891, 0.01347395, 0.0053838254, - -0.024513027, -0.033523127, -0.017439298, -0.012110993, -0.029741146, - -0.04770367, -0.031637672, 0.023168594, -0.08354498, 0.01720961, - -0.049414158, -0.03075124, 0.013197944, -0.072583474, -0.035210073, - -0.050302204, 0.019164102, -0.03819098, -0.044930924, -0.06287611, - 0.023198353, -0.008934395, -0.0038469138, -0.02177759, -0.020741533, - -0.005313299, -0.0003220964, -0.020208372, -0.042276874, -0.04567631, - -0.009641514, -0.03102976, 0.049592275, -0.059028123, -0.021456454, - -0.007385388, 0.028755987, -0.03735016, -0.00085248274, -0.034423634, - 0.051957287, -0.04404839, 0.03178722, -0.022118945, -0.039681487, - -0.002797016, 0.00697686, -0.06552256, -0.020522913, -0.01827464, - -0.032916144, -0.004534877, -0.01967768, -0.027174035, -0.011415906, - 0.01089119, 0.010752014, -0.031723272, -0.0007367647, -0.020928824, - 0.029466962, -0.027515396, -0.056878332, -0.07831324, -0.030616961, - -0.03540372, -0.024143625, -0.01258555, -0.019794114, 0.027654447, - -0.05098105, -0.0071266727, -0.040954784, -0.020975042, -0.037231404, - 0.009771782, 0.013956928, -0.011847063, -0.047631536, -0.041346498, - -0.013483668, -0.0055315318, -0.0695699, -0.024528924, -0.038782734, - -0.008732351, -0.022979703, -0.08229808, -0.008877169, -0.026754983, - -0.020211512, -0.020035332, -0.028584018, -0.0335324, 0.025257843, - 0.040222004, -0.017500188, -0.053954918, -0.028082252, -0.036678657, - -0.020514391, -0.06417996, -0.05015352, -0.015727716, -0.025948467, - 0.020317357, -0.023069678, -0.023190647, -0.029820602, 0.04044425, - -0.020062199, -0.045792304, -0.043099478, -0.0009862552, -0.056779917, - -0.026606355, -0.056194644, -0.04285429, -0.02459098, -0.044194996, - -0.003891898, -0.041118953, -0.037169613, -0.04204511, -0.013023373, - -0.030293856, -0.035059173, -0.008858746, -0.05295495, -0.02745669, - -0.029107084, 0.012701021, -0.050292976, -0.019777963, -0.030063951, - 0.043358233, -0.04868507, 0.0011576755, -0.08563108, -0.043238074, - 0.013278827, -0.063306496, -0.04343073, -0.045283422, -0.03321547, - -0.0056803524, 0.017143909, -0.027586693, -0.05450568, -0.02982313, - -0.038117282, -0.031002106, -0.023548003, 0.042632468, -0.015806573, - -0.06433885, -0.01758515, -0.0065811807, 0.0029364966, -0.057396363, - -0.05145407, 0.015392605, -0.039870866, 0.0086563565 + "features": [ + 0.005260072, + -0.01183003, + -0.02912178, + -0.025074368, + -0.020439925, + 0.005433952, + 0.0009918886, + 0.0014850058, + -0.0122885285, + -0.002940204, + -0.015411037, + -0.018473415, + -0.0105777485, + -0.011061925, + -0.0090160975, + -0.0066144094, + -0.025273256, + -0.0101168, + -0.0071847714, + 0.0055003073, + -0.015548812, + -0.008680155, + -0.012575615, + 0.0052638236, + -0.013891911, + -0.00236316, + -0.00766487, + -0.004172891, + 0.014430312, + -0.012151843, + -0.0074568787, + -0.0046406128, + -0.024219988, + -0.004197971, + 0.0046706726, + 0.01227437, + -0.015976358, + 0.0032744536, + -0.006078316, + -0.007288408, + -0.010797468, + 0.0045270263, + -0.011514893, + -0.023146436, + -0.02031756, + -0.024137799, + 0.0013814764, + 0.008970645, + 0.014464813, + -0.007859349, + 0.00054573145, + -0.0056872233, + -0.028096782, + -0.02166161, + -0.022441942, + 0.01778454, + -0.014324182, + -0.0184376, + -0.0010209364, + -0.008167871, + 0.006719154, + -0.023208521, + -0.02682721, + -0.029993305, + -0.02970684, + 0.009691912, + -0.009369094, + 0.004267313, + 0.0034041812, + -0.030655203, + -0.010273091, + 0.0040106797, + -0.014007396, + -0.00094289804, + 0.0052622105, + -0.0077127703, + -0.021276923, + -0.008417313, + -0.0043921024, + 0.0022306358, + -0.009119483, + -0.0076037375, + -0.022059338, + -0.0042203134, + -0.010077443, + -0.014998194, + -0.043196216, + 0.00058842934, + -0.037938375, + 0.0093141915, + -0.005316646, + -0.0007721429, + -0.014658492, + -0.030600285, + -0.02245282, + -0.021456538, + -0.006458929, + -0.027644202, + -0.013359445, + 0.0029924451, + -0.008721255, + -0.016425047, + -0.004149328, + -0.014041893, + -0.02481344, + -0.007485062, + -0.0021056354, + 0.003158897, + -0.02781393, + -0.024188101, + 0.003370471, + -0.022573616, + -0.027482161, + -0.023563324, + -0.01561605, + -0.019281123, + -0.008459333, + -0.0116661955, + 0.015943822, + -0.015466614, + 0.0097605735, + 6.703045e-06, + 0.009508255, + -0.0016497773, + 0.0009085118, + 0.0027211711, + 0.0006534988, + -0.019901473, + -0.020582749, + -0.013758515, + -0.0150186485, + -0.0137004545, + -0.005047361, + -0.008655735, + -0.0077200294, + -0.01672912, + -0.002076991, + -0.015763227, + -0.02304172, + 0.013441461, + -0.011405018, + -0.021569591, + -0.038187463, + -0.0040633534, + -0.012814775, + -0.003623837, + 0.0004792397, + -0.020352924, + -0.024265822, + -0.03165151, + -0.026545193, + -0.020994408, + -0.015526243, + 0.0015005186, + -0.023109725, + 0.0014221426, + -0.0175295, + -0.008342724, + -0.0054782075, + -0.014670587, + -0.026467895, + -0.014052464, + -0.003020444, + -0.004422681, + 0.005684415, + 0.020362506, + 0.0040017636, + -0.009225197, + -0.0055280146, + -0.00037773527, + -0.0029435172, + -0.022152713, + 0.0015617056, + -0.016037641, + -0.0022723316, + -0.0038125208, + -0.0074716504, + 0.009021873, + -0.014966751, + -0.0009780065, + -0.011097671, + -0.018780693, + -0.030088572, + -0.0023402872, + -0.015653027, + -0.0031158389, + -0.024822574, + -0.018210806, + -0.024475805, + -0.0228716, + -0.023532737, + -0.019312013, + 0.003981298, + -0.013271221, + -0.016195986, + 0.016478313, + -0.0030101372, + -0.01157941, + -0.015486461, + -0.0033482593, + -0.011343188, + -0.013295784, + -0.015539711, + -0.014402295, + -0.016518246, + -0.022552159, + -0.011065273, + 0.0077927583, + -0.016677067, + -0.027348595, + -0.0041932915, + -0.0086268885, + 0.0005229565, + -0.0046552974, + -0.020500924, + -0.0022599953, + -0.008065219, + -0.021502623, + -0.012079646, + -0.011113682, + -0.022966528, + 0.0012625657, + 0.017134234, + -0.012743233, + -0.010401154, + -0.0071289134, + -0.008943035, + 0.003155497, + -0.0117883235, + 0.024758633, + -0.016699897, + -0.0024342828, + 0.018445889, + -0.014072817, + -0.015272593, + -0.0044731265, + 0.006018255, + -0.014394672, + -0.021290965, + -0.011844908, + -0.0050575514, + -0.0052874265, + -0.0027013659, + -0.0105414335, + 0.00068666344, + -0.00036810493, + 0.0019105588, + -0.016813742, + 0.009964862, + -0.013643754, + -0.008933157, + -0.015326185, + 0.0007530445, + -0.0098968055, + -0.013398586, + -0.011593892, + -0.028776959, + -0.013266381, + -0.014236263, + -0.022253977, + -0.010715258, + -0.013503169, + -0.020732714, + -0.03506687, + 0.004961241, + -0.008947464, + 0.013084785, + 0.009808703, + 0.0032195474, + -0.013252033, + -0.007322219, + -0.0017544251, + 0.006200446, + -0.011465725, + -0.029675819, + 0.0035753334, + 0.005700793, + -0.0060661803, + 0.0053895446, + -0.024546802, + 0.008156157, + 0.00028259086, + -0.0033165189, + -0.013236148, + -0.01276651, + 0.0033659393, + -0.031453922, + -0.0036329555, + -0.0075046183, + -0.0017887534, + -0.0060867514, + -0.012254942, + 0.0005124064, + -0.025391482, + -0.016018197, + -0.008624129, + 0.011416786, + 0.01113839, + -0.01472724, + -0.0036390799, + -0.017416794, + -0.010936922, + -0.013210081, + -0.018237194, + -0.004453294, + 0.005285777, + -0.001188771, + 0.0072129276, + -0.012323747, + -0.008110701, + 0.008160492, + -0.022050826, + 0.0065216306, + -0.010612986, + -0.007954888, + 0.0032838273, + -0.003208164, + -0.0049656266, + -0.01385482, + -0.029076274, + -0.024859127, + -0.036669355, + -0.023616819, + -0.025986765, + -0.025205715, + -0.0078055025, + -0.010445308, + -0.008321652, + -0.031899057, + -0.012199167, + -0.008064504, + -0.005479022, + -0.019463416, + -0.020281713, + -0.0005099678, + -0.017384889, + -0.014075989, + -0.02267254, + -0.017343758, + -0.0037161782, + -0.015574882, + 0.0029899129, + -0.022190386, + -0.015732173, + -0.012822777, + -0.020794999, + -0.0024188522, + -0.005102107, + -0.0316692, + -0.000625265, + -0.012952769, + -0.0067506623, + -0.0058517572, + -0.005788595, + -0.029588198, + -0.017120078, + -0.0005756409, + 0.0005724263, + -0.007561613, + -0.0042605274, + -0.0013438376, + -0.018772783, + -0.012082282, + -0.004852102, + -0.0043134307, + 0.00565373, + -0.0049132314, + -0.015578765, + -0.0093708085, + 0.0059938845, + -0.016590761, + -0.020837089, + -0.026288819, + -0.013289661, + -0.010182684, + -0.0010015842, + -0.003356889, + -0.015458142, + 0.0015252125, + -0.012068133, + 0.0023062595, + -0.013511453, + -0.026586603, + -0.005138287, + -0.0021508809, + -0.011722958, + -0.0059136986, + -0.017810429, + 0.0064679096, + -0.009756326, + -0.019596769, + -0.025418727, + -0.014407033, + -0.00812075, + -0.033108678, + -0.0053497944, + -0.013420504, + -0.0026092378, + -0.029048348, + -0.02348581, + -0.00864628, + 0.0015077792, + -0.01447791, + -0.01091136, + -0.011077748, + -0.0135703, + -0.011124027, + 0.002067783, + -0.014311382, + -0.013930439, + 0.0225081, + -0.0075934036, + -0.020146284, + -0.0029504544, + -0.04845114, + -0.0067241397, + -0.0058068936, + -0.0017242265, + -0.0024287978, + -0.01466659, + -0.012972647, + -0.0020501497, + -0.016800588, + -0.009369141, + -0.016855897, + -0.002535844, + 0.00010928646, + 0.00090118014, + 0.00017525384, + -0.008402139, + -0.014084839, + -0.012716315, + -0.013611242, + 0.010304978, + -0.024551814, + -0.018423349, + 0.0014553384, + -0.018819831, + 0.0024021189, + -0.028250268, + -0.025025759, + -0.0332457, + -0.027547827, + -0.011645826, + -0.03167907, + 0.0073133917, + -0.0012419542, + -0.012413568, + -0.031931512, + -0.017923234, + -0.012000619, + -0.007993728, + 0.0010459897, + -0.006118647, + -0.012309958, + -0.012332627, + -0.0042404863, + -0.000240416, + 0.018496651, + 0.002465881, + -0.019298896, + -0.0053973985, + -0.008945067, + -0.027556106, + 3.392328e-05, + -0.023404425, + 0.0003514426, + -0.024239851, + -0.0028307931, + 0.0018116263, + -0.01075067, + -0.0089757005, + -0.033419415, + -0.02651756, + 0.005222122, + -0.02977584, + 0.01783091, + -0.026602264, + -0.019251775, + 0.004524921, + -0.02706094, + -0.03863697, + -0.007624903, + -0.021485046, + 0.0050374353, + -0.024707494, + -0.016808687, + -0.002392351, + 0.001138597, + -0.00588351, + -0.013303869, + -0.013228282, + -0.024737334, + -0.024478972, + -0.0077842525, + -0.010503807, + -0.010569083, + -0.0025749027, + -0.005893401, + -0.008105446, + -0.007959444, + -0.0146501325, + -0.010848555, + -0.024320235, + -0.026455788, + -0.0104796905, + 0.017210633, + -0.017949753, + -0.009595856, + -0.019197641, + -0.009299663, + 0.024662258, + -0.016630938, + -0.0059209806, + 0.00589715, + -0.030669987, + -0.01569359, + -0.015296246, + -0.014825039, + -0.0079790745, + -0.005164334, + -0.030650478, + -0.007369498, + 0.006689872, + -0.006399364, + -0.019239256, + -0.013086702, + 0.005010848, + -0.01833751, + -0.028411506, + -0.007142269, + 0.006240959, + 0.011557374, + -0.020889435, + -0.022446983, + -0.019800916, + 0.0018151229, + 0.0006408306, + -1.4719407e-05, + -0.008115775, + -0.026278097, + -0.0009989333, + -0.01800948, + -0.006570158, + 0.0017272466, + -0.004888422, + -0.014250532, + 0.010863281, + -0.021833166, + -0.025128707, + 0.008704723, + 0.014539563, + -0.020537933, + -0.018753156, + -0.035658047, + 0.0076688994, + -0.008145041, + 0.0042683263, + -0.011742191, + -0.014450537, + -0.0029553524, + -0.0040679136, + -0.01691692, + -0.020525303, + -0.0065537645, + -0.0099148955, + 0.0132387625, + -0.0053696823, + 0.009618159, + 0.0011292314, + 0.004374966, + -0.000997219, + -0.0015932528, + 0.0069625364, + -0.020962287, + -0.016748643, + 0.0036119998, + 0.010083472, + 2.7336284e-05, + -0.004716617, + -0.028416581, + -0.022353664, + 0.015454075, + 0.01221624, + 0.0021343213, + -0.011689615, + -0.02211384, + -0.00070925563, + -0.007816253, + -0.0029931173, + -0.0042381077, + 0.007778746, + 0.002681893, + -0.0069412002, + -0.010590479, + -1.0917234e-05, + -0.007384624, + -0.03588816, + -0.024377683, + -0.007001786, + -0.011454386, + -0.020468142, + 0.00010627595, + -0.021336943, + -0.018229252, + -0.022216449, + -0.025047092, + 0.0063540996, + -0.024911068, + -0.02612903, + -0.020258142, + -0.00542155, + -0.020358564, + -0.015230123, + -0.026132023, + -0.028463215, + -0.0015552862, + 0.004785684, + -0.021480117, + -0.006007975, + -0.010140898, + -0.011391207, + -0.02574045, + 0.011107983, + -0.023848722, + 0.006280631, + 0.010362257, + -0.010305182, + -0.007061648, + -0.0066307685, + 0.016790014, + -0.015779268, + 0.00031598806, + 0.00678367, + -0.0124833025, + -0.0038160288, + 0.0036921008, + 0.0044521913, + 0.026440382, + -0.0074032214, + -0.0036537002, + -0.004694254, + -0.023878878, + -0.022448657, + 0.0016346362, + -0.00505447, + -0.022452416, + -0.0012209603, + -0.014134633, + -0.0022658983, + -0.008963381, + -0.004829376, + -0.014872405, + -0.02126485, + -0.029080406, + -0.014489436, + -0.008620349, + -0.01631465, + -0.030266937, + -0.025501143, + -0.017807752, + -0.028367965, + -0.0154003175, + -0.004727133, + -0.0049318336, + -0.014234495, + -0.009029675, + -0.023667026, + -0.029807499, + -0.0022345197, + -0.020812178, + 0.0013771283, + -0.020035341, + -0.03024834, + -0.02751651, + -0.016734272, + -0.013133753, + -5.4546043e-05, + 0.0071977125, + -0.014472336, + -0.010419276, + -0.0044427156, + 0.010424839, + -0.011898365, + 0.0019776693, + -0.015588939, + -0.017799033, + -0.0069273487, + -0.028760776, + -0.012900011, + -0.013345632, + -0.016859042, + -0.019782819, + 0.011387006, + 0.0112549225, + -0.021353532, + -0.012866739, + -0.03272783, + -0.007902607, + -0.022119058, + 0.006738656, + -0.0016406758, + -0.014845233, + 0.0016149118, + -0.0050197677, + -0.024391418, + -0.010776692, + 0.00040868402, + 0.005189646, + 0.013021776, + -0.0033020943, + -0.010695287, + -0.003728155, + 0.0036256295, + -0.0049041393, + -0.007142192, + -0.026761979, + -0.007232608, + 0.002030556, + 0.002344401, + 0.0071155387, + -0.002405572, + -0.01813771, + -0.012747751, + -0.0019497136, + -0.0038436528, + -0.031887613, + -0.0056793187, + -0.030952986, + -0.006702428, + -0.008220358, + -0.004956975, + -0.009889591, + -0.0027408781, + -0.035342433, + -0.006375467, + 0.03045455, + -0.008383214, + -0.015823869, + -0.011013849, + -0.017314285, + 0.02441029, + -0.005276642, + 0.008453239, + -0.019807776, + 0.022825005, + 0.016201407, + -0.0020499378, + -0.019447599, + -0.017808678, + -0.024107587, + -0.014396833, + -0.0077365325, + -0.0026646247, + -0.030374177, + -0.0077807927, + -0.021335095, + -0.02549495, + 0.0032923606, + 0.008945633, + -0.01095349, + -0.005337906, + 0.0015641375, + 0.0073230457, + -0.014973103, + -0.009836449, + 0.005641596, + -0.0057208613, + -0.0040962044, + 0.008897519, + 0.0004238065, + 0.001502399, + -0.0032956363, + -0.005129121, + -0.017773284, + -0.030997684, + 0.006094407, + -0.009966109, + -0.026670204, + -0.0085082855, + -0.017545797, + 0.0039948225, + -0.011939843, + -0.01337825, + 0.001482835, + -0.027596273, + -0.009569108, + -0.00050132925, + -0.018499102, + -0.027112972, + -0.032017678, + 0.002960548, + -0.02508498, + -0.024125777, + -0.0050340947, + -0.018902728, + 0.010764225, + -0.014465266, + -0.011701487, + -0.022374557, + -0.009926289, + -0.009092041, + -0.027652489, + 0.01672604, + -0.0042852014, + -0.028733501, + -0.021684457, + -0.009212843, + -0.014574295, + -0.0002389776, + -0.010979387, + -0.0167723, + -0.033757508, + -0.022246247, + -0.021970358, + -0.041299395, + -0.03155546, + -0.0152493715, + -0.0009947388, + -0.03727329, + 0.002003287, + -0.0040117847, + -0.017676888, + -0.012076737, + -0.011286109, + -0.029472997, + 0.004406112, + -0.028661758, + -0.013060259, + -0.01758151, + -0.014417326, + -0.014839127, + -0.0015016834, + 0.0027330255, + -0.011437194, + -0.0010082115, + -0.01642063, + -0.0038035007, + -0.0070002526, + 0.013762601, + -0.00872649, + -0.005027794, + 0.013624555, + -0.011451743, + 0.0036393497, + 0.005974042, + -0.037065927, + 0.00786047, + 0.042237103, + -0.0210925, + -0.00239042, + -0.006129005, + -0.007902123, + 0.000665881, + -0.00211927, + -0.028188663, + -0.011383651, + -0.005522948, + 0.005150063, + 0.0012256578, + -0.0122954, + -0.018483933, + -0.0097924, + -0.0077659427, + -0.01348148, + -0.022772275, + -0.014965775, + 0.010700472, + -0.041819222, + 0.0068876427, + -0.02519396, + -0.015423237, + 0.009125915, + -0.036036726, + -0.018136233, + -0.02589218, + 0.008477595, + -0.020474628, + -0.02184369, + -0.031158762, + 0.009667833, + -0.0041666133, + -0.0036248642, + -0.010271488, + -0.0087346565, + -0.00125901, + -0.0014462429, + -0.0085755335, + -0.021629956, + -0.021686234, + -0.005733381, + -0.015670188, + 0.024667714, + -0.03062921, + -0.012196418, + -0.002835596, + 0.010181451, + -0.018003538, + -6.0423707e-05, + -0.019301338, + 0.024704402, + -0.021514377, + 0.013175529, + -0.010610363, + -0.021492012, + -0.0012895783, + 0.0040573594, + -0.03452927, + -0.010329499, + -0.008959769, + -0.017484086, + -0.0004204185, + -0.010421777, + -0.01492267, + -0.004362373, + 0.0049702977, + 0.0047953026, + -0.016403686, + -0.00026712244, + -0.011041584, + 0.014783524, + -0.0150154615, + -0.026567265, + -0.039179035, + -0.015639402, + -0.020521728, + -0.011763707, + -0.008526522, + -0.01264032, + 0.014133523, + -0.026183026, + -0.0050483495, + -0.021883119, + -0.008873122, + -0.01917119, + 0.0047264094, + 0.0055972463, + -0.005995622, + -0.02401369, + -0.022198148, + -0.007947886, + -0.001912701, + -0.03665237, + -0.012183498, + -0.017113205, + -0.0046926434, + -0.011938696, + -0.038618147, + -0.005490049, + -0.014628787, + -0.012440093, + -0.008414655, + -0.012626048, + -0.016067607, + 0.0148086855, + 0.023241427, + -0.008489208, + -0.027843215, + -0.014629824, + -0.017327853, + -0.008376935, + -0.03311561, + -0.024979414, + -0.0063910214, + -0.013472295, + 0.0114034265, + -0.011425878, + -0.011755831, + -0.012852017, + 0.022210874, + -0.008821698, + -0.020246118, + -0.019140225, + 0.0003185474, + -0.029140694, + -0.015294446, + -0.027168943, + -0.021301797, + -0.014207942, + -0.024815362, + -0.0019411598, + -0.021125069, + -0.01998116, + -0.024118334, + -0.005631475, + -0.016478471, + -0.017388169, + -0.0034704122, + -0.026528489, + -0.015193945, + -0.016394911, + 0.008686094, + -0.025704848, + -0.010466777, + -0.014789197, + 0.022459935, + -0.024125192, + 0.00038035304, + -0.04370559, + -0.0222785, + 0.009584909, + -0.032508448, + -0.021499563, + -0.020543944, + -0.018535195, + -0.0039303037, + 0.011906188, + -0.013416647, + -0.027070688, + -0.01328377, + -0.017586598, + -0.015081426, + -0.01203812, + 0.0204405, + -0.006603094, + -0.03360559, + -0.011018185, + -0.0019464234, + 0.0013996796, + -0.028084107, + -0.027164582, + 0.005870038, + -0.020326441, + 0.0038297512, + -0.015316389, + -0.012873575, + -0.014199724, + -0.016183598, + -0.01963419, + -0.02726072, + -0.000384818, + 0.0043152645, + 0.00011473722, + -0.007420453, + -0.002279337, + -0.0030334624, + -0.01574663, + -0.006795262, + 0.0012974422, + -0.008463941, + -0.0068575903, + -0.015051446, + 0.0010264857, + -0.017578844, + 0.005931336, + -0.0072356, + -0.011297825, + 0.007085329, + -0.0120098, + -0.019045534, + 0.0077434746, + -0.026871085, + -0.0031648935, + -0.015250296, + -0.020240022, + -0.0067765405, + -0.012081233, + -0.0110029355, + 0.0040662466, + -0.02757155, + -0.003690889, + 0.0028711692, + -0.02613967, + -0.0033976568, + -0.0037296012, + -0.012017054, + -0.015676895, + -0.011564758, + -0.00044561437, + 0.011622862, + -0.019688979, + -0.02482582, + -0.014877034, + -0.022826793, + 0.009675217, + -0.006769774, + -0.027403673, + -0.02439036, + -0.04009263, + -0.008295122, + 0.006741356, + -0.020676516, + -0.0340821, + -0.008251265, + -0.014877647, + -0.01427028, + -0.011104685, + -0.009814219, + -0.005573553, + -0.015469315, + -0.015052155, + -0.004369653, + -0.0050548944, + 0.0003947399, + -0.019351589, + -0.0016038829, + -0.008318231, + 0.0053225555, + 0.008765594, + -0.023026453, + -0.009838564, + -0.008833874, + -0.025920311, + -0.025859704, + -0.007977918, + -0.0039292313, + 0.003280947, + -0.031637255, + -0.0066655106, + 0.003092624, + -0.015086271, + -0.00569007, + -0.010127752, + 0.002406295, + -0.019287137, + -0.007241248, + -0.015029649, + -0.021599317, + -0.015327837, + -0.012432211, + -0.02142082, + -0.019525297, + -0.015026315, + -0.010939733, + -0.025606502, + -0.015564137, + -0.0147165945, + 0.0024635445, + -0.019045353, + -0.016656362, + -0.0018443496, + -0.03635419, + 0.023370469, + -0.002910082, + -0.024256118, + -0.013461449, + -0.0069411313, + 0.00774993, + 0.015545439, + -0.01332117, + -0.026227271, + -0.0022712084, + -0.008918608, + 0.00082303793, + 0.0023018895, + -0.0071992557, + -0.0040411768, + -0.021933585, + -0.010043619, + -0.0058609867, + -0.002940005, + -0.010170211, + -0.0053891093, + -0.0034280159, + 0.0026786304, + -0.0235131, + -0.019424314, + -0.018157423, + 0.023907043, + -0.015572826, + -0.033633187, + -0.009519521, + -0.010355242, + -0.010536818, + -0.015912708, + -0.025615063, + -0.010753188, + 0.004565156, + -0.0065025417, + -0.030004358, + 0.012270182, + -0.017232811, + -0.02215677, + -0.0040301797, + 0.007571437, + -0.016498689, + 0.0080983415, + -0.007077815, + -0.029723195, + -0.023082828, + -0.016890159, + -0.018788027, + -0.0030858594, + -0.010745366, + -0.019549957, + -0.022548879, + -0.011267701, + -0.014139549, + -0.0111647975, + -0.006900741, + 0.020920599, + -0.00847189, + 0.0032778059, + -0.021045865, + -0.019816475, + -0.019835591, + -0.009297471, + 0.0022988832, + -0.011791367, + 0.00503805, + -0.003323277, + -0.004318171, + 0.0069328067, + -0.014341783, + -0.020438919, + -0.018576622, + -0.034914937, + -0.017899532, + -0.020560456, + -0.012595268, + 0.015243724, + -0.019862944, + -0.013605644, + -0.0068710037, + -0.017870214, + 0.007829886, + -0.007602781, + 0.0014176636, + -0.017640118, + -0.01630646, + -0.010400084, + -0.015720665, + -0.024137761, + 0.019536225, + -0.011785455, + -0.008375014, + -0.01780224, + -0.018802496, + 0.0012951315, + -0.017044185, + -0.02270421, + -0.01713978, + -0.013519861, + -0.026101416, + 0.01069069, + -0.018043663, + 0.007877227, + -0.007200832, + -0.003123758, + -0.012616819, + 0.008220514, + 0.00485487, + -0.028032145, + -0.02282485, + -0.011666193, + -0.025037942, + -0.008280851, + -0.012541875, + -0.027276237, + -0.00532934, + -0.007771197, + -0.0067842095, + 0.0029318766, + 0.0067803725, + -0.0071471655, + -0.005813367, + -0.018609112, + 0.008298369, + -0.0014136519, + 0.0017914014, + -0.027280476, + -0.011196308, + -0.0029050987, + -0.02580742, + -0.0068295817, + 0.008660692, + -0.014254353, + 0.0016455308, + -0.019677395, + -0.018306753, + -0.010686481, + 0.004546918, + -0.009538837, + -0.0010911006, + -0.02488732, + -0.015963214, + -0.02407368, + 0.019494664, + -0.0086885905, + 0.00827197, + -0.003762017, + -0.017132644, + -0.023381013, + -0.012060178, + -0.01907817, + -0.021619782, + -0.03785942, + -0.02185782, + -0.008275596, + 0.0037857222, + -0.031088693, + -0.020638153, + -0.009875293, + -0.010177145, + -0.020586811, + -0.02487795, + -0.028292395, + -0.0073558046, + -0.0048235315, + -0.004776991, + 0.014148853, + -0.01868346, + -0.007882636, + -0.0077423514, + -0.007386237, + -0.0034944213, + -0.015545263, + -0.013192239, + 0.0019743608, + -0.025535613, + -0.028753487, + 0.0010762091, + -0.008503487, + 0.012163452, + -0.004102235, + -0.0045941896, + -0.016212974, + -0.011023801, + -0.023541452, + -0.006388607, + 0.0052485066, + -0.004497633, + -0.009576908, + -0.02283397, + -0.009675664, + -0.012519796, + -0.026639428, + -0.0062530143, + -0.012859783, + -0.0061912863, + -0.0014094786, + -0.02953879, + -0.0027173874, + -0.008997974, + -0.010954938, + -0.02840939, + -0.0070232265, + -0.03179608, + -0.026909715, + -0.025182378, + -0.014301549, + 0.0015492253, + -0.009535764, + -0.0017146544, + -0.032312248, + -0.018253684, + -0.019769428, + -0.016383404, + -0.00066411746, + -0.008014943, + -0.006735229, + 0.0031711075, + -0.020554854, + -0.023923026, + -0.014833596, + -0.027163405, + 0.0016048724, + -0.012916041, + -0.018970257, + -0.019656984, + -0.017310815, + -0.015607259, + 0.009720976, + -0.006557799, + 0.004832607, + -0.012439965, + -0.014715838, + -0.0014870849, + -0.007265852, + 0.004111471, + -0.018131787, + -0.0096305, + -0.018737234, + -0.015472424, + 0.013240697, + -0.014591007, + -0.0048743496, + -0.012365677, + -0.016512543, + -0.00027385823, + -0.019829718, + -0.018881418, + 0.007823468, + 0.007249635, + -0.0073087495, + -0.00893865, + 0.014790771, + -0.017724812, + -0.008114968, + -0.011057275, + -0.02040876, + -0.011307456, + -0.011434472, + -0.008769772, + -0.016697966, + -0.017035663, + -0.006206323, + -0.0037656345, + -0.02721536, + 0.022025025, + -0.0041482667, + -0.024738189, + -0.0027196135, + -0.014281759, + -0.0034974897, + -0.009409509, + -0.022618312, + 0.0031083603, + -0.029514322, + -0.0067408932, + 0.0030832074, + -0.021800123, + -0.00014439573, + -0.0153989745, + -0.010815604, + 0.007021514, + 0.00096202956, + -0.015868705, + 0.0012516695, + -0.017692123, + 0.03326766, + -0.0007980925, + 0.014480765, + 0.0039909314, + 0.0006886849, + -0.004219093, + -0.02262585, + -0.013100804, + 8.6627806e-05, + -0.010438235, + -0.0222275, + -0.016756114, + -0.018401675, + -0.01253285, + -0.023745252, + -0.012174177, + -0.027340733, + -0.0067240153, + -0.014259469, + -0.018607955, + -0.00784616, + -0.016244827, + -0.0072841765, + -0.006808473, + 0.0014271984, + -0.00727968, + -0.012928215, + -0.024195077, + -0.025733063, + 0.0009226804, + -0.017454993, + -0.01269374, + 0.014012424, + -0.0067532486, + -0.015639031, + -0.00068734644, + 0.005887105, + -0.01569729, + -0.01245288, + -0.016703483, + -0.016356422, + 0.012402033, + 0.004182419, + -0.00779651, + -0.005101504, + -0.013201839, + -0.01742293, + -0.007438283, + -0.0047371085, + -0.008946728, + -0.022568103, + 0.0030361095, + -0.015311718, + -0.020884773, + -0.0017324748, + -0.016661655, + 0.005414489, + -0.02528061, + -0.022094378, + -0.021098526, + -0.013562908, + -0.00127576, + -0.010940302, + -0.028059093, + 0.007869159, + 0.0011158758, + -0.013117734, + -0.0021271668, + -0.017959686, + 0.013684917, + -0.0011985318, + -0.0060760737, + -0.019292982, + -0.016926406, + 0.004738467, + -0.042569567, + -0.011246058, + -0.010761542, + -0.013894284, + -0.008727686, + -0.02519158, + -0.01882257, + -0.014708973, + -0.008198561, + -0.02354149, + 0.0030307279, + -0.010057586, + -0.025893798, + -0.013975826, + -0.0147972265, + -0.0081371665, + -0.005592175, + -0.016209805, + -0.013572121, + -0.030950278, + 0.00024352355, + 0.0012381953, + -0.0020520743, + -0.013509721, + 0.0017118588, + -0.031519897, + -0.034972794, + 0.00822407, + 0.0053100795, + -0.0151882935, + -0.021569643, + -0.022153674, + -0.023871563, + -0.025466604, + -0.034584813, + -0.009009644, + -0.022050282, + -0.008349115, + 0.000310035, + -0.009833717, + -0.0171368, + 0.0006132005, + 0.0013518283, + -0.0049939477, + 0.0034767713, + -0.008279498, + -0.0030140732, + -0.011381751, + 0.007622515, + -0.033180397, + 0.008725277, + 0.004919138, + -0.014935178, + -0.011899746, + -0.001259751, + 0.007453298, + 0.0040170625, + -0.004491531, + -0.0057798033, + -0.015074229, + -0.010058633, + 0.009413216, + -0.011012861, + 0.010543603, + -0.03620278, + -0.019468442, + -0.003000398, + 0.005499523, + -0.008197818, + -0.0067870496, + 0.020007586, + -0.0018721096, + 0.01200922, + 0.00026994426, + 0.019943928, + -0.014207632, + -0.009096092, + -0.0031484056, + -0.009441377, + 0.002941809, + -0.012735995, + -0.023388254, + 0.0005326191, + -0.024269989, + -0.0014961358, + -0.011445989, + -2.57794e-05, + -0.018253885, + -0.022167193, + -0.013001305, + -0.014315986, + -0.0012163982, + -0.017887983, + -0.014808678, + -0.0037698336, + -0.018685259, + -0.019469377, + -0.012360486, + 0.005259334, + -0.018678514, + -0.011811261, + -0.013209137, + -0.017436156, + -0.0024889004, + -0.0031574145, + -0.024624113, + -0.013660264, + -0.024431033, + -0.021549713, + -0.020849839, + -0.017394278, + -0.0011608492, + -0.020171436, + -0.0044520646, + 0.012369267, + -0.02284966, + 0.0051171067, + 0.0052703223, + -0.006129117, + -0.010596712, + -0.023614535, + 0.0059543326, + -0.018928938, + 0.02402196, + -0.013644063, + -0.007899023, + -0.01285108, + -0.013817585, + -0.012086374, + 0.0063561047, + -0.011035298, + -0.010922415, + -0.004429179, + -0.0011720081, + 0.0005719023, + -0.009392613, + -0.016644971, + -0.014290951, + 0.00022279688, + -0.03536828, + -0.028351331, + -0.02611613, + 0.013228899, + -0.019203959, + 0.013363064, + -0.022615494, + -0.0093368925, + 0.02620595, + -0.021880109, + 0.00051055674, + -0.016254928, + -0.014709214, + -0.008131475, + -0.018643506, + -0.012411831, + -0.010854253, + -0.023051279, + -0.019398212, + 0.0024258017, + -0.010247987, + 0.010531966, + -0.024072336, + -0.017565725, + -0.024465537, + -0.015790995, + -0.02089511, + -0.004356387, + -0.015158661, + -0.008037942, + -0.0219117, + -0.015732331, + -0.0015162326, + 0.0138539, + -0.0017656175, + -0.0003773349, + -0.0071313884, + -0.025202535, + -0.034884963, + 0.01701807, + -0.007483274, + -0.005084644, + -0.0056988806, + 0.005955027, + -0.014998901, + -0.008702089, + -0.022995126, + 0.018849928, + -0.008786117, + -0.0011803185, + -0.0033842416, + -0.01714527, + 0.002090779, + 0.005403808, + -0.0024582457, + -0.022520369, + -0.0070507377, + -0.023569893, + -0.027038548, + -0.012855296, + -0.030986939, + -0.009399054, + -0.020169938, + -0.006950544, + -0.035033282, + -0.02486491, + -0.017228678, + -0.033465322, + -0.01614754, + -0.013729343, + -0.0037005146, + 0.0069941874, + 0.00024753314, + 0.0039236695, + 0.0011285301, + -0.006038021, + -0.030566523, + 0.006511856, + -0.027285306, + -0.018125439, + -0.0048070257, + -0.0045176377, + -0.016973238, + -0.020692911, + -0.004836258, + -0.013737942, + 0.008956431, + -0.008246039, + 0.005566635, + -0.015300146, + -0.0038097054, + -0.02387492, + 0.0013583822, + 0.017257968, + -0.015681932, + -0.020544348, + -0.023727722, + -0.010423834, + -0.017303817, + -0.026139656, + -0.028629312, + 0.005973634, + -0.0063536596, + -0.0096027395, + -0.031066336, + -0.02182305, + -0.020750407, + -0.016289521, + 0.00487598, + -0.03529983, + -0.012812614, + -0.01720016, + -0.030132456, + 0.010908116, + -0.0077970154, + -0.0036633092, + -0.0027451222, + -0.007166155, + 0.0053466363, + -0.005383035, + -0.017372219, + -0.0060668387, + -0.0005062716, + -0.009491484, + -0.010304545, + -0.020264538, + -0.020972183, + -0.004655323, + -0.015705816, + 0.008923242, + -0.022653116, + -0.023567237, + -0.033483665, + -0.009729663, + -0.0019265707, + -0.0046167364, + 0.025296286, + 0.013741184, + -0.009795794, + -0.012366195, + -0.0023641926, + -0.03582336, + 0.0011149182, + -0.012289151, + -0.004828472, + -0.020370362, + -0.031484, + -0.018514099, + -0.045209486, + -0.0060155327, + -0.007983884, + -0.005362355, + -0.027974896, + -0.002829789, + -0.026961815, + -0.0038147536, + -0.023369705, + -0.019392407, + -0.008445342, + 0.0011768189, + -0.020492027, + -0.005294004, + 0.005851117, + -0.017012905, + -0.0076235854, + -0.018964471, + 0.008006494, + -0.016617153, + -0.015737655, + 0.0060762283, + -0.027279045, + 0.01711892, + -0.02426703, + -0.009790454, + -0.019014632, + -0.0024923133, + -0.015626315, + -0.018224029, + -0.002158171, + -0.0104037095, + -0.008902014, + -0.008882629, + 0.015314942, + -0.009935379, + -0.0075186505, + -0.018770201, + 0.002521213, + 0.006928704, + 0.010563488, + -0.016743043, + -0.0076315464, + 0.0018279982, + 0.004443057, + -0.0044044736, + -0.0047947457, + 0.01132481, + -0.02254471, + -0.0057625407, + -0.01967894, + 0.0057930937, + 0.018362287, + -0.010234343, + -0.0011022524, + -0.016276574, + 0.0072089285, + -0.0021955287, + -0.016550824, + -0.009975594, + -0.010042388, + 0.019426346, + -0.0052873963, + -0.0067137927, + -0.015350089, + -0.01555041, + -0.014672356, + -0.025474897, + -0.014669559, + -0.007837977, + -0.020988336, + -0.016516142, + 0.010910598, + -0.0044825333, + -0.029050525, + -0.031972576, + 0.011975538, + 0.0070434306, + -0.014059996, + -0.034870204, + -0.012979148, + -0.032723963, + -0.025139796, + -0.01655773, + 0.0009341974, + -0.0003612999, + -0.027811209, + -0.007879721, + -0.006501773, + -0.0012265588, + -0.023098055, + -0.008626048, + -0.026544973, + -0.02470124, + 0.010248916, + -0.028903158, + -0.012054695, + -0.021562872, + -0.01786411, + 0.011688307, + -0.0076571745, + -0.0011620201, + -0.0014898423, + -0.011507379, + 0.009464949, + 0.002991494, + -0.024550837, + -0.039794907, + -0.0060630827, + -0.012304508, + -0.010589019, + 0.0024591028, + 0.0017720299, + -0.016097547, + 0.0013161108, + -0.0035848096, + -0.014205413, + 0.0031359384, + -0.012602691, + 0.007187207, + -0.011388447, + 0.015432869, + -0.0099970605, + -0.019053688, + 0.008106003, + -0.024327755, + -0.01616737, + -0.019345611, + -0.024065835, + -0.015097169, + -0.01670827, + -0.03335916, + -0.02369288, + 0.012778319, + 0.00060089416, + -0.01415361, + -0.00022106113, + -0.014082809, + -0.025277995, + -0.006901052, + -0.011614191, + -0.020147314, + 0.001252103, + -0.00015900939, + -0.005572372, + -0.004387814, + -0.0021596316, + -0.013187931, + -0.008874789, + -0.011820817, + 0.0014245545, + -0.023863768, + -0.027131643, + -0.013189793, + -0.016762868, + -0.02769719, + -0.023060478, + -0.033307325, + -0.02581744, + -0.01050393, + 0.009382721, + -0.022737931, + -0.02676387, + -0.02540641, + -0.030911233, + -0.0028241705, + -0.010280831, + -0.016308378, + -0.018120136, + -0.015221944, + 0.00943313, + -0.009526939, + -0.021434467, + 0.010121717, + 0.0008855035, + -0.0035321694, + -0.0068116994, + -0.020909453, + 0.0029815128, + -0.007992559, + -0.019116199, + -0.01596701, + -0.003852755, + -0.0035970719, + -0.01760099, + -0.0024590641, + -0.017789176, + -0.011131195, + -0.03060453, + 0.0109548215, + -0.009125396, + 0.0013937164, + -0.010815975, + -0.041511495, + 0.0025479025, + 0.018955294, + 0.009138651, + -0.010999109, + 0.003950309, + -0.030741973, + -0.030645585, + -0.032087617, + -0.011968611, + -0.006927528, + -0.02197127, + -0.0058572753, + -0.029889831, + 0.0014719315, + -0.007927147, + -0.0036671294, + -0.008681384, + 0.014316872, + -0.0062194485, + -0.031317104, + -0.0031718067, + 0.0031242887, + -0.017750487, + -0.029493459, + -0.029264335, + -0.005114572, + -0.024885222, + -0.015054733, + -0.008176612, + -0.028859148, + -0.015230603, + 0.0025647592, + -0.013650334, + -0.0042128214, + 0.0011002728, + -0.0016080778, + -0.0124113085, + -0.004643117, + -0.0282193, + -0.01814684, + -0.009614897, + -0.001262704, + 0.00541485, + 0.007030572, + -0.013117026, + 0.018119663, + -0.025619151, + -0.0074266205, + -0.0017580792, + 0.006413514, + 0.0047305697, + -0.002644924, + -0.008362154, + -0.0017838589, + -0.011480069, + 0.0070730103, + -0.03433647, + -0.024710653, + -0.012007947, + -0.0088503035, + 0.011250578, + -0.019104496, + -0.008267996, + -0.0057195877, + -0.028458351, + 0.0053332387, + -0.015893277, + -0.011247292, + 0.012265528, + -0.01887593, + -0.010932142, + -0.02353126, + -0.005315324, + -0.036202833, + -0.0006304015, + -0.0052952357, + -0.0074453047, + 0.0019812316, + 0.0012180342, + -0.0065830196, + -0.014798008, + -0.027809795, + -0.015912985, + -0.018563468, + 0.0072750268, + -0.02512478, + -0.0069093923, + -0.027207704, + -0.017661119, + -0.012856672, + -0.0027004937, + 0.004508702, + -0.01841289, + -0.008959378, + -0.016838524, + -0.006852551, + -0.013511242, + -0.0046521616, + 0.010381366, + 0.00919171, + -0.007201524, + -0.006901803, + -0.015439721, + -0.026673961, + -0.01482268, + 0.00044226035, + -0.008660286, + 0.0031168424, + 0.011400465, + 0.028270235, + -0.029095436, + -0.017887902, + 0.007101447, + -0.022963932, + -0.013114413, + -0.022184452, + -0.009827073, + -0.012581928, + -0.02270861, + -0.0079969745, + -0.027625816, + -0.016539194, + -0.006657262, + -0.006956402, + 0.0023792458, + -0.0023352664, + -0.015834503, + -0.0012666566, + -0.017214637, + -0.022546547, + 0.00043846198, + -0.031427488, + -0.02932192, + -0.021236863, + -0.02339052, + 0.016852334, + -0.008250581, + -0.023406457, + 0.0014385306, + -0.022127967, + -0.0073956554, + -0.031182507, + -0.017851043, + 0.010598218, + -0.027788593, + -0.014369835, + 0.020296631, + -0.02200462, + -0.00957023, + -0.031329047, + -0.015905526, + -0.010946431, + -0.009480527, + -0.018073801, + -0.009977829, + -0.016078873, + -0.016439069, + -0.0030947772, + 0.0074069216, + -0.018757597, + -0.01319105, + -0.027040059, + -0.013054097, + -0.015916869, + 0.009703832, + -0.0009099219, + -0.016450426, + -0.015598596, + -0.032621447, + -0.009650175, + 0.0072113387, + -0.016716842, + -0.01523061, + 0.0039473055, + 0.0060739676, + -0.02050208, + -0.011620048, + -0.0025593587, + -0.019421745, + -0.014977445, + -0.025713576, + -0.013066544, + -0.0155819245, + 0.001436831, + -0.009256742, + -0.0047381707, + -0.025484318, + 0.004413189, + -0.02102977, + -0.00878633, + -0.013362879, + -0.0357224, + 0.01241024, + -0.0013757589, + -0.012627777, + -0.006804057, + -0.011071035, + 0.0037048755, + 0.0004200434, + 7.8286044e-05, + -0.031666283, + -0.004413449, + -0.026057618, + -0.022815438, + -0.030551832, + 0.0071551125, + 0.010577846, + -0.014669202, + -0.010791416, + 0.0049361167, + -0.012425696, + -0.044420302, + -0.00040143618, + -0.014562504, + -0.023708638, + 8.9296766e-05, + -0.017882083, + -0.017687015, + -0.01730103, + 0.0085080415, + 0.01901598, + -0.0043330104, + -0.0265753, + 0.0040882877, + -0.015584633, + -0.0070133707, + 0.0052505485, + -0.015464549, + -0.02300847, + -0.0025834257, + -0.024741001, + -0.0053243516, + -0.0070354324, + 0.00048691174, + -0.01143677, + -0.018961115, + -0.021877522, + 0.027162593, + -0.021171706, + -0.009956214, + 0.010957524, + 0.003863089, + -0.0074660056, + -0.021672182, + 0.0017356949, + -0.004754376, + -0.018261846, + -0.022406718, + -0.013877728, + -0.009497521, + 0.0031272785, + -0.0129805235, + -0.020662762, + 0.00036569816, + 0.0070983376, + -0.011661625, + -0.009945996, + 0.004691504, + -0.017933754, + 0.0064004636, + 0.0071426686, + -0.02661027, + -0.0023199976, + -0.0047305883, + 0.016759558, + -0.0038808405, + -0.021451985, + -0.0056467648, + 0.00949421, + -0.025461866, + -0.010103016, + -0.0060655302, + 0.0043188306, + 0.018188791, + 0.012546219, + -0.020171603, + 0.0047566416, + -0.020108616, + -0.015384357, + -0.009079046, + -0.0077622915, + -0.017450955, + 0.004057421, + -0.033453412, + -0.010861646, + -0.022923218, + -0.009257824, + -0.010904921, + -0.0027318124, + -0.039089225, + -0.010708091, + -0.008355706, + 0.0035133136, + 0.000495031, + -0.008640354, + -0.015877405, + -0.0020785371, + 0.010647974, + -0.01885173, + -0.016849237, + -0.0043344223, + -0.010242331, + -0.014607073, + -0.0066881757, + -0.0301227, + -0.004544958, + -0.0148233045, + 0.012925678, + -0.017241, + -0.011795866, + 0.019924978, + -0.028884102, + -0.005901788, + -0.009695592, + -0.019202057, + -0.014916846, + -0.014594319, + -0.016014153, + -0.014188239, + -0.014939865, + -0.013700718, + 0.008545454, + -0.01645621, + -0.012288441, + 0.017056571, + -0.01251697, + 6.1996536e-05, + -0.0040546074, + -0.016224567, + 0.0010010639, + 0.02221578, + -0.0076133455, + 0.0051322486, + -0.0042031384, + -0.015440263, + -0.0108281365, + -0.015343815, + -0.009990719, + 0.0077439533, + -0.0009891507, + 0.0016691154, + 0.0014573126, + -0.025286475, + -0.0144866565, + -0.012047369, + -0.004984264, + -0.0060142367, + -0.016517168, + -0.018631253, + 0.004957096, + -0.007034423, + -0.010405262, + 0.0023328806, + 0.011591162, + 0.012888565, + -0.022555398, + -0.015891584, + -0.019162234, + -0.024707172, + -0.033808473, + 0.002471673, + 0.0073126806, + 0.012731674, + -0.012577723, + 0.007670383, + -0.034754205, + -0.011037475, + -0.005101044, + -0.009392039, + -0.014106139, + -0.011092656, + -0.012950771, + 0.0036195524, + -0.0056492314, + -0.035826158, + 0.00065552566, + -0.013577794, + -0.0067515573, + -0.013459287, + -0.0032568634, + 3.1019823e-05, + 0.0049717133, + 0.009556398, + -0.022184897, + 0.0005989082, + -0.014080382, + 0.0075599733, + 0.0036684475, + -0.0142739285, + -0.0063555017, + -0.018248308, + -0.013673801, + -0.020017123, + -0.001573845, + -0.022143845, + -0.013594409, + -0.008750506, + 0.0029151826, + -0.022452563, + -0.012866557, + -0.0035783388, + -0.032495048, + 0.003194178, + 0.00081023166, + -0.0076973587, + 0.011206245, + -0.0071322, + 0.0061884145, + 0.006389836, + -0.0031991864, + -0.025865018, + -0.019549793, + -0.012786101, + -0.012864155, + -0.018965743, + -0.014188546, + -0.0019560629, + 0.018430239, + -0.010339896, + -0.004020125, + -0.026060298, + -0.020264644, + -0.0010166238, + -0.017700836, + -0.018116444, + -0.014753206, + -0.012387919, + -0.015097276, + -0.0104408115, + 0.010489973, + -0.032898344, + -0.023577401, + -0.018787732, + -0.024409393, + -0.027268285, + -0.019691443, + -0.010988493, + 0.003009424, + 0.0045171487, + -0.0047643054, + -0.015213376, + -0.01577297, + 0.011651699, + 0.0022002633, + 0.0066791736, + -0.0014688045, + -0.010884022, + 0.0018974957, + -0.019463554, + -0.004153073, + -0.015263329, + -0.022621563, + 0.00046911556, + -0.023422653, + -0.02659915, + -0.014227533, + 0.005373812, + -0.008570821, + 0.0018863061, + -0.017915955, + -0.022585625, + 0.008377234, + -0.010629605, + -0.030498922, + -0.026767267, + -0.008446271, + 0.009881276, + 0.005529737, + -0.0018413811, + -0.009519774, + -0.008032463, + 0.011522506, + -0.001268885, + -0.01871277, + -0.0127988625, + -0.014393279, + -0.0056018354, + -0.005544914, + -0.015139351, + 0.0102674095, + -0.022257904, + -0.0059888083, + -0.0008274354, + -0.0011801061, + -0.020609673, + 0.0114715295, + -0.018336782, + -0.0059299082, + -0.0037308384, + -0.025206644, + -0.019473365, + -0.0012936976, + -0.027475545, + -0.007028386, + -0.027838243, + 0.007291059, + -0.02052804, + -0.020254087, + -0.021309964, + 0.0050573447, + -0.0048184986, + 0.028157592, + 0.012366695, + -0.011703236, + -0.013351032, + -0.008348974, + 0.0041294503, + 0.008520595, + 0.020153718, + -0.007000457, + -0.02413738, + -0.014151689, + -0.01597284, + 0.0026206349, + -0.014253292, + 0.014638766, + -0.010015404, + -0.024080073, + -0.03231355, + -0.012068615, + -0.0010091548, + -0.022599395, + -0.009662044, + -0.0018528688, + -0.011942997, + -0.009911295, + -0.030748233, + -0.007259491, + -0.0013805913, + -0.025481882, + -0.014855347, + -0.02554233, + -0.011333697, + -0.0030093093, + -0.010190431, + -0.007048322, + -0.00344837, + -0.027850019, + -0.008378399, + -0.010248297, + 0.010301436, + -0.009071369, + -0.011959733, + 0.0063406285, + -0.00041851404, + -0.0026965984, + -0.01652748, + -0.005543986, + -0.01838228, + -0.009251098, + 0.0056184386, + -0.0014839799, + -0.02070766, + -0.013312803, + -0.02745894, + -0.024444647, + -0.012296324, + -0.025505584, + -0.011944337, + 0.0022063712, + -0.0032410847, + -0.005866617, + -0.013516129, + -0.021690356, + -0.013313571, + -0.027898068, + 0.0057806186, + -0.008756637, + -0.009592104, + -0.0129409665, + -0.016097605, + -0.025412872, + -0.006106094, + 0.0018378817, + 0.0013788274, + -0.016841743, + -0.007132433, + -0.019729482, + -0.017218543, + -0.010289553, + -0.009117469, + -0.00874821, + -0.024437625, + 0.015914567, + -0.0010555525, + 0.016056767, + -0.019128123, + -0.019254778, + -0.011009639, + -0.023450095, + -0.022450779, + -0.013195797, + -0.016702032, + -0.022531556, + -0.00016238957, + 0.0063582542, + -0.010215417, + 0.011981588, + -0.016550334, + -0.007890747, + -0.008151188, + 0.006646033, + -0.011415981, + -0.013753858, + -0.0060345843, + -0.01994769, + -0.00092711835, + -0.015048447, + -0.009411656, + 0.017663028, + -0.023595506, + -0.0048579723, + -0.019399833, + -0.003783974, + 0.021691, + -0.021064224, + -0.005605748, + 0.0027955766, + -0.006688095, + 0.007267468, + -0.0074222595, + -0.024697712, + -0.008343487, + -0.00587935, + -0.009631852, + 0.023779517, + -0.03133544, + -0.00853043, + -0.019805865, + -0.017046334, + -0.022754628, + -0.012334209, + -0.017679857, + -0.005223166, + -0.012092065, + -0.023531906, + -0.0006949741, + -0.0023629293, + -0.006197572, + -0.01630248, + -0.011239208, + 0.00284414, + 0.0016797268, + 0.012177574, + 0.0038904587, + -0.014098852, + -0.0047130436, + 0.017099837, + -0.033149485, + -0.01079386, + 0.008716184, + -0.005433554, + -0.011509194, + -0.0062986314, + -0.011767573, + 0.020899527, + -0.0028161714, + 0.0015716434, + -0.0028654006, + -0.017744536, + -0.013654668, + -0.018851692, + -0.02525507, + 0.012648838, + -0.021308597, + -0.010025235, + -0.0028949599, + 0.024700027, + -0.018775051, + -0.010766432, + -0.024936534, + 0.013898972, + 0.0050287503, + -0.0020482768, + -0.013563707, + 0.014517353, + 0.0022376315, + -0.009524047, + -0.0045654895, + 0.005957402, + 0.0035769169, + -0.019314133, + -0.008218419, + -0.03129325, + -0.017843742, + -0.0064520105, + 0.003203025, + -0.01638788, + 0.0009861216, + -0.003085877, + -0.0019588468, + 0.0064790333, + -0.005027608, + -0.013522665, + -0.009992952, + 0.0069151125, + -0.015114892, + -0.005715066, + -0.027172307, + -0.0073554553, + 0.004948839, + -0.028770566, + 0.005303657, + -0.0030342124, + 0.0016727272, + -0.009444755, + -0.0015683736, + 0.019651445, + -0.01108815, + -0.0076243696, + -0.010934955, + -0.00028364538, + -0.016825985, + -0.018517727, + -0.016198197, + 0.017348807, + -0.008675428, + 0.019175328, + -0.025897691, + -0.017208576, + 0.010037197, + -0.023757841, + -0.01793704, + -0.021259263, + -0.012298787, + -0.019751152, + -0.016396007, + -0.007694001, + -0.0039528403, + -0.027503278, + -0.0160653, + -0.0008361646, + 0.00030027324, + -0.0022533159, + -0.015120357, + -0.021644173, + 0.008538699, + -0.010490488, + -0.007722459, + -0.0066568176, + -0.015704438, + 0.01816002, + -0.00047421703, + -0.011700534, + -0.0023075247, + -0.011529187, + -0.0069756275, + -0.008497622, + -0.014245392, + -0.010074173, + -0.0025269203, + -0.0024005773, + -0.029736606, + -0.009073697, + -0.03933626, + -0.021615928, + -0.019725159, + 0.005017434, + -0.012105033, + 0.0029881166, + -0.0067991656, + -0.0021967553, + 0.009156252, + -0.022040835, + -0.016430888, + -0.003506503, + -0.012938573, + -0.010682596, + 0.011783375, + -0.0070178253, + -0.0051356587, + -0.020127485, + -0.010567606, + -0.020633245, + -0.0061860112, + -0.020619957, + -0.02079271, + -0.0026879874, + -0.013159924, + -0.0111217, + -0.0035731622, + -0.012207866, + 0.01147678, + -0.010540999, + -0.020677697, + 0.02918594, + -0.013534994, + -0.017174132, + -0.021023646, + -0.02144189, + 0.0018937816, + -0.0032810732, + -0.0009869703, + 0.012174754, + -0.014576112, + -0.042452097, + 0.007830156, + 0.015640954, + -0.009759973, + -0.010073107, + -0.023499863, + -0.017880078, + -0.011289394, + -0.022924243, + -0.013682929, + -0.010380385, + -0.017756693, + -0.012216283, + -0.005975877, + -0.0155049525, + 0.011279664, + -0.006236498, + -0.028539984, + -0.029749412, + -0.016306626, + -0.0010237739, + -0.020798294, + 0.0074474383, + 0.00803258, + 0.00073133747, + -0.011384217, + -0.0032788175, + 0.022368364, + -0.0136394445, + -0.006087764, + -0.016502617, + 0.007474809, + -0.005758893, + 0.022548426, + -0.024053987, + -0.0031678085, + 0.00041859166, + -0.022723574, + -0.008835052, + -0.00045492023, + -0.008098431, + 0.00046813572, + 0.017193245, + 0.0097896485, + -0.0071367985, + 0.011865854, + -0.011318653, + -0.01853801, + -0.020926332, + -0.011528673, + -0.0033330698, + 0.00017917393, + -0.021379963, + 0.011080313, + -0.008295742, + 0.0008608837, + -0.030620012, + -0.008749239, + 0.0035715, + -0.0013937328, + -0.017668905, + 0.0028635995, + -0.0016156165, + -0.0016016181, + -0.014417698, + -0.021444887, + -0.00095610786, + -0.012264689, + -0.012061895, + 0.009252055, + -0.018401803, + 0.009125429, + 0.0077734618, + -0.0041626478, + -0.003570843, + 0.0071459673, + -0.020538313, + 0.0029859596, + -0.017621338, + -0.020801729, + -0.020580897, + -0.007843294, + -0.013085551, + -0.01261712, + -0.014430423, + -0.0015131896, + 0.013966356, + -0.012826477, + -0.010232674, + -0.0022780655, + -0.0043898537, + -0.00978578, + -0.012511342, + -0.015612276, + -0.010916056, + -0.0045981416, + -0.010059611, + -0.012295792, + 0.0040527275, + -0.013712991, + 0.0074695186, + -0.017287774, + -0.020987956, + -0.025961725, + -0.041095495, + -0.021620193, + -0.020714052, + -0.017611193, + 0.0018148851, + -0.017756935, + -0.02515223, + -0.013280457, + -0.01581183, + -0.0052845986, + -0.021297308, + -0.023613222, + -0.012938063, + 0.0037385628, + 0.003226737, + -0.009995143, + -0.034631696, + -0.024016943, + 0.011917305, + -0.013339696, + -0.0018692095, + -0.010633373, + -0.027015224, + 0.0019940918, + -0.019279744, + -0.009330759, + -0.015521556, + 0.0070883804, + -0.0129428385, + -0.016420178, + 0.0062114885, + 0.023583697, + -0.021990016, + -0.0027209662, + -0.012316472, + 0.00771463, + -0.0049065817, + -0.013421901, + 0.0063648084, + -0.0029293783, + 0.003992219, + -0.0004450292, + -0.010119472, + -0.004014701, + -0.0091909105, + -0.0036455465, + 0.009066126, + -0.010890261, + -0.012403495, + -0.012752173, + 0.0035586844, + -0.024643678, + -0.0118694175, + -0.0049326746, + 0.0016067214, + -0.010570916, + -0.0016004994, + -0.04551865, + 0.0013829637, + -0.0008282105, + -0.0051987004, + 0.002442154, + -0.008576039, + -0.01615578, + -0.00319091, + -0.0078044324, + -0.029724972, + -0.021178996, + -0.024364442, + -0.018487444, + -0.019390106, + 0.0021463856, + -0.0133679025, + -0.013536838, + -0.007594582, + 1.1604175e-05, + 0.012350529, + 0.004512671, + 0.00122902, + -0.0011372376, + -0.005622039, + -0.026185934, + -0.019766504, + -0.01817753, + -0.017099753, + -0.025336858, + -0.012206737, + -0.009431153, + -0.024658935, + -0.007556449, + -0.004528169, + -0.022093792, + -0.028723674, + -0.013298712, + 0.01060749, + -0.01930796, + -0.018052181, + 0.01575044, + -0.0029747777, + -0.020012302, + 0.0018711005, + -0.010339747, + -0.008652733, + 0.00062506495, + -0.009830169, + 0.010503633, + -0.009198978, + -0.024865197, + 0.007291168, + -0.011251083, + 0.0023613928, + -0.022112427, + -0.009097621, + -0.013331948, + 0.0024737688, + -0.012633255, + 0.010776298, + -0.005169744, + -0.017566066, + -0.020119855, + -0.015251302, + -0.027711404, + -0.0011911041, + -0.015615122, + -0.0017927138, + -0.012587473, + -0.004489143, + 0.0092976345, + -0.0020472677, + -0.021346483, + -0.013489898, + -0.021687092, + -0.019852823, + -0.03525117, + 0.010861998, + -0.028628703, + -0.030019434, + 0.0120676, + -0.018054783, + 0.0035675913, + -0.0019071434, + -0.0027847434, + -0.015335194, + 0.00036369494, + -0.0025871622, + -0.014638842, + -0.011758862, + 0.0054483498, + -0.0327329, + -0.025720788, + -0.029708246, + -0.0124349315, + -0.019295512, + -0.02763222, + -0.003936146, + -0.010930292, + -0.021251723, + -0.016745029, + 0.0013179444, + -0.010042304, + -0.01765186, + -0.008365887, + -0.027651614, + -0.01713685, + -0.025741946, + -0.035748404, + -0.013852254, + -0.0124503765, + -0.002922343, + -0.01056648, + -0.0038887898, + 0.00878566, + -0.019209191, + -0.015712557, + -0.00016048776, + -0.005022276, + -0.018095504, + -0.0115097845, + 0.004748219, + -0.017928561, + 0.0046623074, + 0.012617408, + -0.0273438, + 0.006110891, + 0.0009511098, + -0.0032808722, + -0.017811041, + -0.017182209, + 0.011861626, + -0.016443178, + -0.0005048482, + -0.026363848, + -0.007953714, + 0.0027662297, + -0.012908064, + 0.011387008, + 0.007317925, + -0.0009477816, + -0.007011909, + -0.016448403, + -0.010441891, + -0.028306173, + -0.004143521, + -0.0143341115, + -0.018903682, + -0.012665412, + -0.01345946, + -0.0030256172, + -0.012674251, + -0.022641318, + 0.013858989, + -0.017651606, + -0.022337873, + 0.004366769, + -0.013051236, + -0.034195423, + -0.0349064, + -0.00067349063, + -0.012172294, + -0.019436534, + -0.015246131, + -0.008083536, + -0.003767349, + -0.011054865, + -0.0025597517, + -0.00038801137, + -0.026557684, + -0.016312333, + -0.01040961, + 0.0030108239, + -0.0060412986, + -0.021336408, + -0.013104449, + -0.023307608, + -0.014445283, + -0.0077875005, + -0.012770212, + 0.0013186428, + 0.008101167, + -0.0014743863, + 0.0223933, + -0.018103857, + -0.02440241, + -0.0023679563, + -0.02827857, + 0.0076298444, + 0.011994288, + -0.00066604983, + -0.0071185348, + -0.015405046, + -0.014936172, + -0.02707361, + -0.008950856, + 0.011906095, + 0.0010393691, + -0.009486967, + -0.009295136, + -0.020307599, + -0.014654206, + 0.004024047, + -0.0067928373, + 0.015149941, + 0.0039912187, + -0.028977357, + -0.011061035, + -0.008092218, + -0.030119807, + -0.019239044, + -0.0143541, + -0.025419028, + -0.008058973, + -0.005914251, + -0.010058017, + 0.00847742, + -0.020038346, + -0.0066534407, + -0.02777699, + -0.014741153, + 0.0031423322, + -0.004136951, + -0.008543238, + -0.01159654, + -0.014400071, + -0.017931055, + -0.027391799, + -0.012586341, + -0.018032644, + -0.016269622, + -0.017808773, + 0.010068929, + -0.014702317, + -0.021240026, + -0.020579502, + -0.017988253, + -0.0066986987, + -0.02440975, + -0.03325485, + -0.014276902, + 0.0023256773, + -0.015341584, + -0.0061887195, + 0.018083574, + -0.001925036, + -0.017383642, + -0.0047954493, + -0.030707818, + -0.01422979, + 0.0007503001, + -0.012859212, + -0.015543946, + -0.011421485, + -0.004264725, + -0.007058349, + -0.0064000254, + -0.01173229, + 0.001009938, + -0.00087788096, + -0.021523464, + -0.016303703, + -0.013969994, + -0.010378784, + -0.020857366, + 0.00999063, + 0.0063022715, + -0.011093689, + -0.013018112, + -0.022948772, + 0.010195462, + -0.019183049, + -0.015663221, + -0.009209741, + -0.01699003, + 0.0017937468, + -0.008240416, + -0.03247859, + -0.02197617, + -0.013066576, + -0.014103206, + 0.0012095773, + -0.0051543084, + -0.016283277, + -0.018744288, + 0.013774183, + -0.009248557, + 0.001846884, + 0.012906058, + 0.0057397024, + -0.02684651, + -0.019438066, + -0.0014326862, + -0.02366647, + -0.011167773, + -0.01730653, + -0.008416124, + 0.002311516, + 0.004643889, + -0.011891096, + 0.018292295, + 0.0013598269, + 0.010351606, + -0.004790222, + -0.017737627, + -0.0034010836, + -0.0037934892, + -0.0056079505, + -0.023313452, + -0.018338345, + -0.018881992, + -0.002216851, + -0.0150527125, + -0.016042804, + -0.022338932, + -0.002244201, + -0.0027927277, + 0.00022031287, + -0.01257018, + -0.0033811969, + 0.00820307, + -0.008416567, + -0.016391339, + 0.015156725, + -0.026050746, + -0.030926019, + 0.0038728875, + -0.012545516, + -0.010593768, + -0.03148219, + 0.018269747, + -0.0075857984, + -0.020144913, + -0.035114102, + -0.0019876838, + -0.00506514, + -0.011324953, + 0.0014905417, + -0.021346886, + -0.025494926, + -0.006959595, + -0.001475422, + -0.0030491364, + 0.0076987217, + -0.0056714066, + -0.024912182, + 0.0043625706, + -0.0073478264, + -0.009537855, + -0.006522954, + -0.017072117, + -0.014643132, + 0.0007534879, + -0.013156704, + 0.019174607, + 0.009001579, + -0.015272016, + -0.0101152025, + -0.023393298, + -0.025191246, + -0.025249902, + -0.023696365, + -0.003315359, + 0.0062356507, + -0.018567763, + -0.008743941, + -0.007096729, + -0.010767215, + -0.011007128, + -0.010532054, + -0.022655807, + -0.01877857, + -0.006623819, + -0.015170879, + 0.035668172, + -0.0068555335, + 0.0038836165, + -0.028196922, + -0.0072681936, + 0.0025341366, + -0.015306834, + -0.005968431, + -0.017725956, + -0.010049205, + -0.009338201, + 0.004406604, + -0.010376872, + -0.018987441, + -0.010710387, + -0.01338882, + 0.008147776, + 0.0048794034, + -0.028841414, + 0.009995747, + -0.01633759, + -0.009353494, + -0.018305741, + -0.02334242, + -0.024585089, + -0.0091020325, + -7.373295e-06, + -0.0010877165, + 0.010352768, + -0.02255012, + -0.0030542898, + -0.016196495, + -0.029430835, + -0.02636423, + 0.010470728, + -0.016857889, + -0.026943192, + -0.02622848, + -0.025891583, + -0.021898793, + -0.0409147, + -0.01710797, + 0.0071645086, + -0.009376602, + -0.015741972, + -0.031961706, + -0.0024422382, + -0.0051039327, + -0.012788484, + -0.013543206, + -0.016503885, + -0.010753744, + 0.00468857, + 0.008107541, + -0.026178677, + -0.003777891, + 0.012550479, + -0.0014837445, + 5.2612835e-05, + -0.013134119, + -0.014137736, + -0.007172525, + -0.011924066, + 0.0063497457, + -0.0041515254, + -0.016147103, + -0.010824104, + -0.0038776186, + -0.015856294, + -0.027342152, + 0.007426388, + -0.016628947, + 0.0060071745, + -0.0052168067, + 0.013340046, + -0.007349918, + -0.017941017, + -0.016613364, + -0.0040956344, + 0.004775534, + 0.0005828635, + -0.01983965, + -0.012524143, + 0.020339034, + -0.004045757, + -0.0013988683, + -0.016418666, + -0.027304133, + -0.017291555, + -0.017015647, + -0.007704253, + -0.0016943623, + 0.009124787, + -0.02027843, + -0.0038674502, + -0.019608006, + 0.0014285237, + -0.004662862, + -0.028268961, + -0.02554571, + -0.003982108, + -0.002794264, + -0.02775702, + -0.0066026957, + -0.00024406651, + -0.011157763, + -0.01299252, + -0.025926592, + -0.01622197, + -0.0038640727, + -0.01612407, + -0.015060128, + -0.010278572, + -0.009833496, + 0.0120274685, + -0.00055208564, + -0.026047464, + -0.008297558, + -0.0063078757, + -0.016993161, + -0.021278623, + 0.016308362, + 0.005091995, + -0.021717168, + -0.022027623, + 0.0019545918, + -0.0070850817, + 0.0037820288, + -0.0010101295, + -0.0029660447, + -0.0066325627, + 0.008951262, + 0.01525586, + -0.009766032, + -0.034114193, + -0.021312494, + 0.002627137, + -0.011179602, + -0.0005520576, + 0.009429149, + -0.024766956, + -0.01704157, + -0.010322968, + -0.010062985, + -0.009819885, + -0.022236586, + -0.013092163, + -0.0130969025, + -0.011076843, + -0.008111911, + -0.004803481, + -0.024454061, + -0.0149550475, + 0.009111104, + -0.013173874, + -0.021233182, + -0.011804128, + -0.0065622786, + -0.030266872, + -0.002126466, + -0.012676562, + 0.0020302965, + -0.012081763, + -0.012118586, + -0.016039541, + -0.0003629933, + 0.002420406, + -0.006851797, + -0.0016657158, + -0.027093278, + 0.010344994, + -0.016312, + -0.030295124, + 0.02822311, + -0.029180823, + 0.0019586212, + -0.00074288185, + 0.007346384, + -0.017489592, + -0.0015790806, + -0.004457275, + -0.014075014, + -0.0149133345, + -0.012425031, + -0.02725138, + -0.014712192, + -0.015677804, + -0.023355588, + -0.018473545, + -0.0016245665, + -0.012139022, + 0.005150626, + -0.01586819, + -0.00026472073, + -0.0072194175, + -0.024040228, + -0.014467952, + -0.008154419, + -0.017692238, + -0.016901426, + -0.031282924, + -0.025601294, + -0.009323663, + -0.017662859, + -0.030209662, + -0.012113173, + -0.0073758634, + -0.030862516, + -0.028748097, + -0.01496605, + -0.014460288, + -0.026277957, + 0.018621543, + -0.015684552, + -0.019517107, + 0.007908532, + -0.03559787, + -0.0020604373, + -0.013605455, + -0.03970632, + -0.016062133, + 0.004308266, + -0.012254537, + 0.010468585, + -0.036099233, + -0.015847385, + -0.028329682, + -0.013625816, + -0.021071615, + 0.00479634, + 0.014617624, + -0.025174309, + 0.011809253, + -0.004173232, + 0.007401733, + 0.007027704, + -0.008640893, + 0.004485636, + -0.0004759077, + 0.000922407, + -0.014283525, + 7.1148075e-05, + -0.017444974, + -0.03550622, + -0.028113527, + -0.005464016, + -0.010690006, + 0.010250102, + -0.014493812, + 0.0049720556, + -0.011396694, + 0.004347869, + 0.00832778, + -0.028898094, + 0.005230697, + 3.430392e-05, + -0.012993523, + -0.01703841, + -0.008433841, + -0.022726899, + -0.0029770024, + 0.0024175793, + -0.017435364, + -0.007968014, + -0.009406629, + -0.010994628, + 0.006331602, + -0.018621761, + -0.013103768, + -0.0027225616, + -0.0054412493, + -0.003812713, + 0.0016359243, + -0.010729086, + -0.012844091, + 2.815093e-05, + -0.014637867, + -0.0021286584, + -0.031070178, + -0.0045566605, + 0.016728789, + -0.012687956, + -0.03383775, + -0.0058437176, + -0.014875791, + -0.0072561367, + 0.013482552, + -0.004084432, + -0.00883584, + 0.0018340092, + -0.021660786, + -0.006612134, + -0.010851054, + 0.0045425124, + -0.0069717653, + -0.010903672, + -0.03148363, + -0.012434999, + -0.018562282, + -0.023816913, + -0.0054374593, + -0.036067944, + -0.007844961, + -0.02665257, + -0.019790994, + -0.01505567, + -0.006156669, + -0.00024247855, + -0.00038202145, + -0.01795808, + -0.025209973, + 0.009359214, + 0.0030318087, + -0.020705858, + -0.018999955, + -0.02505287, + -0.011710664, + -0.006121054, + 0.01239014, + -0.0021391294, + 0.0074178195, + -0.017744096, + -0.00287524, + -0.0055631306, + -0.0223749, + -0.019038402, + -0.014022736, + -0.016717995, + -0.020561326, + -0.025534274, + -0.008150817, + -0.0045196274, + 0.006863996, + 0.01214948, + -0.04896787, + -0.011272458, + -0.016297553, + -0.014818098, + -0.021696376, + -0.014750764, + 0.008959437, + -0.023360053, + -0.0008891367, + -0.0071503674, + -0.015497413, + -0.00801182, + 0.006153759, + -0.0129222665, + -0.008049619, + -0.008471773, + -0.00093644194, + -0.023447188, + -0.017305005, + -0.023617193, + -0.0075290417, + -0.0029976212, + -0.009569303, + -0.01592759, + -0.016714042, + -0.00017163077, + 0.007904162, + -0.0011321951, + -0.02007883, + 0.009027258, + -0.008035575, + -0.019344056, + -0.0028011922, + -0.0058552716, + -0.0055790925, + -0.012413867, + -0.001183118, + -0.010857167, + -0.0042237495, + -0.02075844, + -0.02411511, + -0.006227772, + -0.00823772, + -0.009447084, + -0.019975774, + 0.0028223414, + 0.00766597, + -0.012757045, + -0.015628435, + -0.024973853, + -0.012061516, + -0.021306966, + 0.01734091, + 0.00044564955, + -0.013617829, + -0.014610898, + -0.005923038, + 0.008205655, + 0.00093622395, + -0.011924737, + -0.0092815375, + 0.0058825566, + -0.009255844, + 0.003555821, + -0.016099328, + -0.0076411865, + -0.01414841, + -0.0037677346, + 0.003419477, + -0.0037025076, + 0.0052586626, + -0.018278036, + -0.008992375, + 0.0027903984, + -0.01691431, + -0.02465766, + -0.014357506, + -0.022887778, + -0.010495839, + -0.027298827, + -0.012418147, + -0.0036973439, + -0.015142911, + -0.0047620325, + 0.00848913, + -0.015187032, + -0.0004033274, + 0.0054271463, + -0.003899259, + -0.020661086, + 0.0144790085, + 0.0021827614, + -0.024682939, + -0.0046744053, + -0.004399965, + -0.034912296, + -0.0050070887, + -0.001815277, + 0.0062932363, + -0.031442836, + -0.021645436, + -0.0017756014, + -0.02945726, + 0.0016186348, + -0.022952002, + 0.015124477, + -0.00518408, + -0.014497079, + 0.008068234, + 0.011078778, + -0.006275206, + -0.01054025, + -0.018627303, + -0.012830487, + 0.005707511, + -0.012678603, + 0.004533634, + -0.007884849, + 0.023133136, + -0.021059385, + -0.006359301, + -0.008392878, + -0.01904295, + -0.017180983, + -0.02097023, + -0.005656766, + -0.024648696, + 0.008672913, + -0.020790102, + -0.0016452462, + -0.022892855, + -0.013765625, + 0.00032573915, + -0.01802287, + -0.0016035556, + -0.01610462, + -0.008916383, + -0.011779057, + -0.009369822, + -0.004897529, + -0.022049997, + -0.013956687, + -0.0034312252, + -0.015085405, + 0.011671966, + -0.013040731, + -0.013883187, + -0.0183207, + 0.0061229374, + 0.0074585043, + -0.007990672, + 0.007451795, + -0.027502751, + -0.01892427, + -0.00024362626, + -0.004725467, + -0.014168155, + -0.003571128, + -0.028112177, + -0.030539364, + -0.0034925316, + -0.022046393, + -0.020302406, + -0.020011408, + -0.02150077, + -0.030238818, + -0.039130658, + -0.0069376123, + -0.022147426, + -0.010866366, + -0.0034802193, + -0.023557672, + -0.010206565, + -0.0077839065, + -0.0040070773, + -0.0027277411, + -0.025928525, + 0.00037450626, + -0.0048648417, + -0.028273953, + 0.0026730353, + -0.007530867, + -0.0048646117, + -0.0026287483, + -0.027311912, + -0.0087974435, + 0.0027818705, + -0.01091309, + -0.011134616, + -0.005227377, + -0.0036638249, + 0.015842928, + 0.007647452, + -0.026106082, + -0.010009718, + 0.011498783, + 0.00026230933, + -0.019363787, + 0.020905275, + -0.012822368, + 0.0008680926, + -0.0332062, + -0.014039164, + -0.027347408, + 0.008978229, + -0.021022214, + -0.0053934082, + -0.024966458, + -0.01376597, + 0.011442412, + 0.005925889, + -0.02409302, + -0.015492104, + -0.0028113457, + -0.022306899, + 0.006112894, + -0.01280285, + 0.0029958189, + -0.021907648, + -0.00114158, + -0.013122578, + -0.0031442333, + -0.0082455445, + -0.023134258, + -0.008446762, + -0.0064550443, + -0.01635597, + 0.0031694258, + -0.0205294, + -0.024740495, + -0.0088046435, + -0.0064539104, + -0.01613162, + -0.012126333, + -0.010643176, + -0.019154133, + -0.020964883, + 0.0028735432, + 0.0050537046, + 0.0017424808, + -0.023485284, + 0.007909619, + 0.0012396564, + -0.019857954, + -0.011667718, + -0.01243212, + -0.011279226, + -0.011085644, + -0.01367687, + -0.018299347, + 0.0048334794, + 0.00073778396, + -0.001563189, + -0.00014838074, + -0.010791515, + -0.009750974, + -0.008419416, + -0.018300882, + -0.01677427, + 0.024381148, + -0.022905247, + -0.012224542, + 0.017764026, + 0.009228364, + -0.0041791406, + -0.017268399, + -0.012029687, + -0.009100184, + 0.0071034585, + -0.035205226, + -0.0023229585, + -0.0025020773, + -0.010606424, + -0.015321134, + -0.014202533, + -0.007196247, + -0.013812607, + 0.011390136, + -0.0010892655, + -0.0017005537, + -0.0038590825, + -0.0067757987, + -0.024521679, + -0.02599677, + -0.01969784, + -0.0077202427, + -0.014640941, + -0.0010889492, + 0.0051140497, + -0.008718894, + 0.001074197, + 0.002077758, + -0.013621648, + -0.024350047, + -0.013963382, + -0.0009093026, + -0.022332255, + -0.001298165, + 0.017413167, + -0.019353313, + -0.023217175, + -0.00843271, + -0.016122866, + -0.012384882, + -0.022845024, + -0.015967937, + -0.0021895766, + -0.012259537, + -0.017254857, + 0.0030514617, + -0.04324339, + -0.029890945, + -0.019565845, + -0.022223737, + 0.014992608, + -0.008349156, + -0.019931568, + -0.024183802, + -0.026705148, + -0.03222995, + -0.013296713, + -0.002409101, + -0.026841514, + -0.010875199, + -0.02519792, + -0.004965445, + -0.006326777, + 0.005318776, + 0.008387672, + -0.008313208, + -0.030925812, + -0.0058494117, + 0.00035220906, + 0.010425931, + -0.015506498, + -0.026738932, + -0.007898017, + -0.0019692148, + -0.013726333, + 0.0023931016, + -0.015958536, + 0.012840017, + -0.013147946, + -0.012517189, + -0.0038045917, + 0.0024229016, + -0.011996616, + -0.028298177, + 0.014874085, + -0.01903374, + -0.030383991, + -0.0042057135, + -0.010482398, + 0.01562319, + -0.013142477, + -0.009132964, + -0.010862977, + -0.010386861, + -0.015001086, + -0.00923326, + -0.023022315, + -0.015850639, + -0.021988228, + -0.027789522, + -0.017713191, + -0.0074183694, + -0.028796636, + -0.019791795, + -0.006162057, + -0.003517702, + -0.01078102, + -0.005914975, + -0.035673037, + -0.033089697, + -0.027926162, + -0.011745501, + 0.009400789, + -0.004490916, + 0.017906737, + -0.021738386, + 0.0025518641, + -0.0039102384, + 0.016521743, + 0.019187452, + 0.012140783, + -0.028995609, + -0.016474029, + -0.0114043495, + -0.008003753, + 0.005313408, + 0.001431725, + -0.013739011, + -0.0046409187, + 0.0035383007, + 0.0023679733, + -0.028509466, + 0.0012773582, + 0.025091158, + -0.0043585384, + -0.008352487, + 0.0051007727, + -0.0070172646, + -0.023554917, + -0.021019965, + -0.008910737, + -0.01931249, + -0.006216895, + -2.5278016e-05, + -0.018617354, + -0.023612048, + 0.001972163, + 0.0010486585, + 0.019711545, + -0.018162746, + -0.0038869877, + -0.018050753, + -0.025447406, + 0.008313318, + -0.009363533, + 0.00012257608, + -0.029784383, + -0.015955977, + -0.011535485, + -0.028101569, + -0.0033886677, + 0.0030043782, + -0.0307806, + -0.006068395, + -0.013086666, + -0.016373618, + -0.017813206, + -0.008700777, + -0.01869878, + 0.0035122824, + 0.00519465, + -0.012763204, + -0.01083835, + -0.02262965, + -0.024269931, + -0.0027010264, + -0.004367316, + -0.0057776915, + -0.007938846, + -0.013613772, + 0.007929076, + 0.006533891, + -0.0045316704, + 0.009219371, + -0.031808607, + -0.019959446, + -0.0003493491, + -0.0020312623, + 0.00870564, + -0.03074167, + -0.021397958, + -0.025106838 ], "paletteEmbedding": [ - 0.0036284241, 0.00354596, 0.004040745, 0.0021440687, 0.0012369627, - 0.00016492837, 0.00016492837, 0.0, 0.0, 0.0, 0.0050303154, 0.00907106, - 0.008246418, 0.006267278, 0.0033810316, 0.0014018911, 0.00082464184, - 0.00024739254, 8.246418e-5, 0.0, 0.0037108883, 0.007999026, 0.009235988, - 0.009235988, 0.0077516334, 0.0039582807, 0.0036284241, 0.0016492837, - 0.0010720344, 0.00032985673, 0.0023914613, 0.0065146703, 0.009235988, - 0.010637879, 0.01203977, 0.014266304, 0.011957306, 0.009565845, - 0.0052777077, 0.0015668195, 0.00074217765, 0.0030511748, 0.0064322064, - 0.011462522, 0.02226533, 0.027295645, 0.031583782, 0.03075914, - 0.020121261, 0.008823668, 0.00024739254, 0.0024739255, 0.005937421, - 0.010802808, 0.026718395, 0.039582808, 0.059044354, 0.06795049, - 0.058467105, 0.033150602, 0.00024739254, 0.00082464184, 0.0032985674, - 0.00907106, 0.020616045, 0.042304125, 0.06737324, 0.09425656, - 0.10275037, 0.08122722, 0.00016492837, 0.00016492837, 0.0009895702, - 0.0065971348, 0.0131942695, 0.026718395, 0.056487966, 0.10159587, - 0.14109622, 0.13466401, 0.0, 0.0, 0.00016492837, 0.0019791403, - 0.0047004586, 0.011380057, 0.031253926, 0.074795015, 0.1436526, - 0.18983255, 0.0, 8.246418e-5, 0.0, 0.00041232092, 0.0015668195, - 0.004040745, 0.011380057, 0.04378848, 0.104234725, 0.16509329, - 0.00907106, 0.011709914, 0.010555415, 0.005442636, 0.0014843553, - 0.0010720344, 0.00032985673, 8.246418e-5, 0.0, 0.0, 0.015833123, - 0.023337364, 0.020616045, 0.015420802, 0.007834097, 0.004370602, - 0.0018142121, 0.00074217765, 0.00024739254, 8.246418e-5, 0.012781949, - 0.025069112, 0.025069112, 0.023007507, 0.015998052, 0.01203977, - 0.0072568483, 0.0029687106, 0.0014018911, 8.246418e-5, 0.008906132, - 0.014926017, 0.025481433, 0.029604642, 0.029192321, 0.030594211, - 0.02820275, 0.016080515, 0.008411347, 0.0032161032, 0.0033810316, - 0.0110502, 0.02028619, 0.033645388, 0.04453066, 0.058054786, - 0.063167565, 0.053519256, 0.030429283, 0.013524126, 0.0020616045, - 0.0056900284, 0.013689054, 0.030099427, 0.05343679, 0.080979824, - 0.10646126, 0.108357936, 0.08584522, 0.046427336, 0.00032985673, - 0.0032161032, 0.00907106, 0.021523152, 0.048406474, 0.080402575, - 0.11693421, 0.14711611, 0.14035404, 0.10604894, 0.0004947851, - 0.0010720344, 0.004617994, 0.013111806, 0.031418853, 0.054756217, - 0.09343192, 0.13985926, 0.18298802, 0.16080515, 0.0, 0.00024739254, - 0.00090710603, 0.005854957, 0.012699484, 0.024656791, 0.048818797, - 0.09780252, 0.15948573, 0.18216339, 8.246418e-5, 0.0, 0.00041232092, - 0.0015668195, 0.00354596, 0.00808149, 0.020121261, 0.051787507, - 0.10431719, 0.1528886, 0.01814212, 0.024162006, 0.019956332, - 0.009318452, 0.0037108883, 0.0012369627, 0.00032985673, 8.246418e-5, - 0.0, 0.0, 0.02721318, 0.034882348, 0.033810314, 0.022760114, - 0.010060631, 0.005772493, 0.0023914613, 0.0009895702, 0.00016492837, - 0.0, 0.022595186, 0.037356276, 0.044613123, 0.038510773, 0.024491861, - 0.017647335, 0.011297593, 0.0047004586, 0.0016492837, 0.0004947851, - 0.0145961605, 0.03216103, 0.047004584, 0.04906619, 0.048406474, - 0.040242523, 0.02779043, 0.019296618, 0.007174384, 0.0025563897, - 0.008658739, 0.021935472, 0.03669656, 0.0520349, 0.068197876, - 0.074465156, 0.06894006, 0.049313582, 0.027460573, 0.012452092, - 0.0042056735, 0.013029341, 0.028532607, 0.04964344, 0.07306327, - 0.101760805, 0.11784132, 0.10011152, 0.07256848, 0.034634955, - 0.0011544985, 0.0042881374, 0.015998052, 0.036119312, 0.07248601, - 0.10654373, 0.12674744, 0.13499387, 0.11289347, 0.07553719, - 0.0005772493, 0.0016492837, 0.0064322064, 0.022182865, 0.04453066, - 0.06836281, 0.096730486, 0.11973799, 0.13755026, 0.10761576, - 0.00016492837, 0.00041232092, 0.0029687106, 0.008246418, 0.02168808, - 0.032573353, 0.047251977, 0.07487748, 0.1084404, 0.112068824, 0.0, - 0.00032985673, 0.00074217765, 0.0029687106, 0.0056900284, 0.010637879, - 0.015585731, 0.034882348, 0.062342923, 0.07685662, 0.020533582, - 0.025976218, 0.01715255, 0.010967736, 0.0032161032, 0.0011544985, - 0.00065971346, 0.0, 0.0, 0.0, 0.029934498, 0.041726876, 0.039500345, - 0.022430258, 0.011462522, 0.004947851, 0.002308997, 0.00074217765, - 0.00016492837, 0.00016492837, 0.02721318, 0.049313582, 0.04848894, - 0.040242523, 0.026471002, 0.012864413, 0.0065146703, 0.0026388539, - 0.00074217765, 0.00016492837, 0.022347793, 0.037686132, 0.053684182, - 0.048983723, 0.043293696, 0.03018189, 0.020780975, 0.01162745, - 0.0039582807, 0.0013194269, 0.014018911, 0.026965788, 0.04576762, - 0.056323037, 0.056075644, 0.056323037, 0.049313582, 0.03273828, - 0.015008481, 0.004865387, 0.007586705, 0.019379083, 0.032985672, - 0.0476643, 0.065064244, 0.08576275, 0.074465156, 0.053189397, - 0.034799885, 0.014761088, 0.00354596, 0.010143095, 0.017482407, - 0.03603685, 0.058054786, 0.07669169, 0.07809358, 0.06778556, - 0.050715473, 0.030016962, 0.0020616045, 0.004123209, 0.009400917, - 0.023172436, 0.03917049, 0.053766645, 0.05813725, 0.059044354, - 0.0520349, 0.040984698, 0.00032985673, 0.0016492837, 0.002721318, - 0.00907106, 0.019214155, 0.026388539, 0.02976957, 0.036531635, - 0.03999513, 0.036201775, 0.00024739254, 0.00041232092, 0.0011544985, - 0.0037108883, 0.00709192, 0.008658739, 0.009730774, 0.014926017, - 0.024904184, 0.023172436, 0.016080515, 0.018636905, 0.012287163, - 0.0064322064, 0.0020616045, 0.0005772493, 0.0004947851, 0.0, 0.0, 0.0, - 0.023337364, 0.02976957, 0.025563898, 0.015338338, 0.0070094555, - 0.002308997, 0.0010720344, 0.00016492837, 0.0, 0.0, 0.021440687, - 0.034634955, 0.03273828, 0.024656791, 0.015420802, 0.008906132, - 0.0024739255, 0.0013194269, 0.00032985673, 8.246418e-5, 0.019873869, - 0.034882348, 0.037521202, 0.033397995, 0.02267765, 0.01871937, - 0.010637879, 0.004370602, 0.0014018911, 0.00024739254, 0.014926017, - 0.031253926, 0.03826338, 0.034387566, 0.034387566, 0.028862463, - 0.01871937, 0.012699484, 0.004617994, 0.0014018911, 0.011380057, - 0.023089971, 0.03150132, 0.031831175, 0.035954382, 0.03884063, - 0.032408424, 0.020616045, 0.009978166, 0.0038758167, 0.007174384, - 0.017482407, 0.019956332, 0.028532607, 0.031088997, 0.033810314, - 0.031418853, 0.024409398, 0.0131942695, 0.007339312, 0.0028037822, - 0.0066795987, 0.009895702, 0.01756487, 0.02407954, 0.02680086, - 0.024409398, 0.020451117, 0.014431232, 0.0075042406, 0.0014843553, - 0.0020616045, 0.004617994, 0.00907106, 0.013029341, 0.015008481, - 0.011874842, 0.009648309, 0.008658739, 0.008246418, 0.00041232092, - 0.00041232092, 0.0019791403, 0.0029687106, 0.005442636, 0.0072568483, - 0.0061848136, 0.004865387, 0.004453066, 0.004123209, 0.009318452, - 0.008658739, 0.0065146703, 0.0018142121, 0.00074217765, 0.00032985673, - 0.0, 0.0, 0.0, 0.0, 0.014101375, 0.015668195, 0.011215129, 0.0061023496, - 0.0029687106, 0.00041232092, 0.0005772493, 8.246418e-5, 0.0, 0.0, - 0.013111806, 0.020368652, 0.015503267, 0.010637879, 0.0055251, - 0.002226533, 0.0010720344, 0.00041232092, 0.0, 0.0, 0.015503267, - 0.022017937, 0.024491861, 0.013853983, 0.009813238, 0.0036284241, - 0.002721318, 0.0014843553, 0.00032985673, 0.00016492837, 0.016822694, - 0.024904184, 0.024162006, 0.017482407, 0.012287163, 0.009978166, - 0.0061023496, 0.0030511748, 0.0014843553, 0.00032985673, 0.017482407, - 0.025728825, 0.025728825, 0.016987622, 0.01360659, 0.0110502, - 0.008906132, 0.0037933525, 0.0013194269, 0.00032985673, 0.016245443, - 0.020945903, 0.019379083, 0.013689054, 0.012781949, 0.011709914, - 0.007834097, 0.006762063, 0.0023914613, 0.0005772493, 0.007999026, - 0.010802808, 0.014018911, 0.009483381, 0.0110502, 0.008988596, - 0.007669169, 0.0037933525, 0.0019791403, 0.0011544985, 0.003133639, - 0.004453066, 0.0051127793, 0.005442636, 0.006762063, 0.006267278, - 0.004370602, 0.002226533, 0.0023914613, 0.00065971346, 0.0005772493, - 0.0013194269, 0.0014018911, 0.0020616045, 0.0034634958, 0.0036284241, - 0.0020616045, 0.00074217765, 0.0005772493, 0.00041232092, 0.0030511748, - 0.0037933525, 0.0024739255, 0.00074217765, 0.00024739254, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0053601717, 0.0061023496, 0.0037108883, 0.0014018911, - 0.00074217765, 8.246418e-5, 0.00024739254, 0.0, 0.0, 0.0, 0.0065971348, - 0.007339312, 0.0055251, 0.0042881374, 0.0009895702, 0.0005772493, - 0.00032985673, 0.00024739254, 0.0, 0.0, 0.008906132, 0.012534556, - 0.008493811, 0.0047004586, 0.0026388539, 0.0009895702, 0.00024739254, - 0.00024739254, 0.0, 0.0, 0.014018911, 0.022512723, 0.015255874, - 0.009730774, 0.0032161032, 0.0018966763, 0.0009895702, 0.00041232092, - 0.00032985673, 0.0, 0.020863438, 0.027872894, 0.019708939, 0.008328882, - 0.0042056735, 0.0039582807, 0.002308997, 0.00041232092, 0.00016492837, - 0.0, 0.017317478, 0.028285215, 0.021193296, 0.008988596, 0.0047004586, - 0.0023914613, 0.0014843553, 0.0013194269, 0.00041232092, 0.00016492837, - 0.014101375, 0.019956332, 0.014018911, 0.007999026, 0.0028862464, - 0.0018966763, 0.0015668195, 0.0005772493, 0.00016492837, 0.00016492837, - 0.005772493, 0.008163954, 0.007999026, 0.0037933525, 0.0025563897, - 0.0021440687, 0.0013194269, 0.0004947851, 8.246418e-5, 8.246418e-5, - 0.0014843553, 0.0018966763, 0.0018966763, 0.0013194269, 0.0013194269, - 0.0012369627, 0.00041232092, 0.0, 0.0, 0.0, 0.0013194269, 0.00082464184, - 0.00032985673, 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0013194269, 0.0012369627, 0.00041232092, 0.00041232092, 0.0, - 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.002308997, 0.0026388539, - 0.0018142121, 0.00082464184, 0.00041232092, 8.246418e-5, 8.246418e-5, - 0.0, 0.0, 0.0, 0.005854957, 0.005772493, 0.0038758167, 0.0015668195, - 0.00065971346, 0.00016492837, 0.00016492837, 0.0, 0.0, 0.0, 0.01203977, - 0.013276733, 0.0077516334, 0.0042056735, 0.0010720344, 0.00024739254, - 0.00024739254, 8.246418e-5, 0.0, 0.0, 0.018389514, 0.02383215, - 0.015255874, 0.007174384, 0.0009895702, 0.00041232092, 8.246418e-5, - 0.00016492837, 8.246418e-5, 0.0, 0.022430258, 0.027295645, 0.018471977, - 0.00709192, 0.0019791403, 0.00065971346, 0.0004947851, 0.00016492837, - 8.246418e-5, 0.0, 0.018389514, 0.02069851, 0.013359197, 0.00453553, - 0.0014843553, 0.0004947851, 0.00016492837, 8.246418e-5, 0.0, 0.0, - 0.00808149, 0.0103904875, 0.0075042406, 0.0032985674, 0.0011544985, - 0.00016492837, 0.00032985673, 8.246418e-5, 0.0, 0.0, 0.0023914613, - 0.0032985674, 0.002226533, 0.00090710603, 0.00032985673, 0.00041232092, - 8.246418e-5, 0.0, 0.0, 0.0, 0.00016492837, 0.00016492837, 0.00016492837, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00065971346, 0.00082464184, - 0.00024739254, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0004947851, - 0.00090710603, 0.0004947851, 8.246418e-5, 8.246418e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0018966763, 0.0028862464, 0.0014018911, 0.00032985673, - 0.00016492837, 8.246418e-5, 0.0, 0.0, 0.0, 0.0, 0.0064322064, - 0.0064322064, 0.0037108883, 0.0014018911, 0.00041232092, 8.246418e-5, - 0.0, 0.0, 0.0, 0.0, 0.01261702, 0.015668195, 0.009235988, 0.002308997, - 0.00065971346, 8.246418e-5, 0.0, 0.0, 0.0, 0.0, 0.017070087, 0.01913169, - 0.01162745, 0.0042056735, 0.0005772493, 8.246418e-5, 0.0, 0.0, 0.0, 0.0, - 0.013853983, 0.016327908, 0.010225559, 0.0029687106, 0.00041232092, - 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.0069269915, 0.008906132, - 0.0047004586, 0.0018142121, 0.0004947851, 0.00016492837, 8.246418e-5, - 0.0, 0.0, 0.0, 0.0024739255, 0.002721318, 0.0019791403, 0.0004947851, - 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00016492837, 8.246418e-5, - 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00016492837, - 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.246418e-5, - 0.00016492837, 8.246418e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0004947851, - 0.00082464184, 0.00024739254, 0.00016492837, 8.246418e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0028037822, 0.002308997, 0.0014018911, 0.0004947851, - 8.246418e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0037108883, 0.006762063, - 0.0037108883, 0.0012369627, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0069269915, - 0.008658739, 0.0038758167, 0.0014018911, 0.00016492837, 0.0, - 8.246418e-5, 0.0, 0.0, 0.0, 0.007999026, 0.007586705, 0.004123209, - 0.00090710603, 0.0, 0.00016492837, 0.0, 0.0, 0.0, 0.0, 0.004370602, - 0.004040745, 0.0030511748, 0.00090710603, 0.00016492837, 8.246418e-5, - 0.0, 0.0, 0.0, 0.0, 0.0010720344, 0.0016492837, 0.00082464184, - 0.00024739254, 0.00032985673, 8.246418e-5, 0.0, 0.0, 0.0, 0.0 + 0.0036284241, + 0.00354596, + 0.004040745, + 0.0021440687, + 0.0012369627, + 0.00016492837, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0050303154, + 0.00907106, + 0.008246418, + 0.006267278, + 0.0033810316, + 0.0014018911, + 0.00082464184, + 0.00024739254, + 8.246418e-05, + 0.0, + 0.0037108883, + 0.007999026, + 0.009235988, + 0.009235988, + 0.0077516334, + 0.0039582807, + 0.0036284241, + 0.0016492837, + 0.0010720344, + 0.00032985673, + 0.0023914613, + 0.0065146703, + 0.009235988, + 0.010637879, + 0.01203977, + 0.014266304, + 0.011957306, + 0.009565845, + 0.0052777077, + 0.0015668195, + 0.00074217765, + 0.0030511748, + 0.0064322064, + 0.011462522, + 0.02226533, + 0.027295645, + 0.031583782, + 0.03075914, + 0.020121261, + 0.008823668, + 0.00024739254, + 0.0024739255, + 0.005937421, + 0.010802808, + 0.026718395, + 0.039582808, + 0.059044354, + 0.06795049, + 0.058467105, + 0.033150602, + 0.00024739254, + 0.00082464184, + 0.0032985674, + 0.00907106, + 0.020616045, + 0.042304125, + 0.06737324, + 0.09425656, + 0.10275037, + 0.08122722, + 0.00016492837, + 0.00016492837, + 0.0009895702, + 0.0065971348, + 0.0131942695, + 0.026718395, + 0.056487966, + 0.10159587, + 0.14109622, + 0.13466401, + 0.0, + 0.0, + 0.00016492837, + 0.0019791403, + 0.0047004586, + 0.011380057, + 0.031253926, + 0.074795015, + 0.1436526, + 0.18983255, + 0.0, + 8.246418e-05, + 0.0, + 0.00041232092, + 0.0015668195, + 0.004040745, + 0.011380057, + 0.04378848, + 0.104234725, + 0.16509329, + 0.00907106, + 0.011709914, + 0.010555415, + 0.005442636, + 0.0014843553, + 0.0010720344, + 0.00032985673, + 8.246418e-05, + 0.0, + 0.0, + 0.015833123, + 0.023337364, + 0.020616045, + 0.015420802, + 0.007834097, + 0.004370602, + 0.0018142121, + 0.00074217765, + 0.00024739254, + 8.246418e-05, + 0.012781949, + 0.025069112, + 0.025069112, + 0.023007507, + 0.015998052, + 0.01203977, + 0.0072568483, + 0.0029687106, + 0.0014018911, + 8.246418e-05, + 0.008906132, + 0.014926017, + 0.025481433, + 0.029604642, + 0.029192321, + 0.030594211, + 0.02820275, + 0.016080515, + 0.008411347, + 0.0032161032, + 0.0033810316, + 0.0110502, + 0.02028619, + 0.033645388, + 0.04453066, + 0.058054786, + 0.063167565, + 0.053519256, + 0.030429283, + 0.013524126, + 0.0020616045, + 0.0056900284, + 0.013689054, + 0.030099427, + 0.05343679, + 0.080979824, + 0.10646126, + 0.108357936, + 0.08584522, + 0.046427336, + 0.00032985673, + 0.0032161032, + 0.00907106, + 0.021523152, + 0.048406474, + 0.080402575, + 0.11693421, + 0.14711611, + 0.14035404, + 0.10604894, + 0.0004947851, + 0.0010720344, + 0.004617994, + 0.013111806, + 0.031418853, + 0.054756217, + 0.09343192, + 0.13985926, + 0.18298802, + 0.16080515, + 0.0, + 0.00024739254, + 0.00090710603, + 0.005854957, + 0.012699484, + 0.024656791, + 0.048818797, + 0.09780252, + 0.15948573, + 0.18216339, + 8.246418e-05, + 0.0, + 0.00041232092, + 0.0015668195, + 0.00354596, + 0.00808149, + 0.020121261, + 0.051787507, + 0.10431719, + 0.1528886, + 0.01814212, + 0.024162006, + 0.019956332, + 0.009318452, + 0.0037108883, + 0.0012369627, + 0.00032985673, + 8.246418e-05, + 0.0, + 0.0, + 0.02721318, + 0.034882348, + 0.033810314, + 0.022760114, + 0.010060631, + 0.005772493, + 0.0023914613, + 0.0009895702, + 0.00016492837, + 0.0, + 0.022595186, + 0.037356276, + 0.044613123, + 0.038510773, + 0.024491861, + 0.017647335, + 0.011297593, + 0.0047004586, + 0.0016492837, + 0.0004947851, + 0.0145961605, + 0.03216103, + 0.047004584, + 0.04906619, + 0.048406474, + 0.040242523, + 0.02779043, + 0.019296618, + 0.007174384, + 0.0025563897, + 0.008658739, + 0.021935472, + 0.03669656, + 0.0520349, + 0.068197876, + 0.074465156, + 0.06894006, + 0.049313582, + 0.027460573, + 0.012452092, + 0.0042056735, + 0.013029341, + 0.028532607, + 0.04964344, + 0.07306327, + 0.101760805, + 0.11784132, + 0.10011152, + 0.07256848, + 0.034634955, + 0.0011544985, + 0.0042881374, + 0.015998052, + 0.036119312, + 0.07248601, + 0.10654373, + 0.12674744, + 0.13499387, + 0.11289347, + 0.07553719, + 0.0005772493, + 0.0016492837, + 0.0064322064, + 0.022182865, + 0.04453066, + 0.06836281, + 0.096730486, + 0.11973799, + 0.13755026, + 0.10761576, + 0.00016492837, + 0.00041232092, + 0.0029687106, + 0.008246418, + 0.02168808, + 0.032573353, + 0.047251977, + 0.07487748, + 0.1084404, + 0.112068824, + 0.0, + 0.00032985673, + 0.00074217765, + 0.0029687106, + 0.0056900284, + 0.010637879, + 0.015585731, + 0.034882348, + 0.062342923, + 0.07685662, + 0.020533582, + 0.025976218, + 0.01715255, + 0.010967736, + 0.0032161032, + 0.0011544985, + 0.00065971346, + 0.0, + 0.0, + 0.0, + 0.029934498, + 0.041726876, + 0.039500345, + 0.022430258, + 0.011462522, + 0.004947851, + 0.002308997, + 0.00074217765, + 0.00016492837, + 0.00016492837, + 0.02721318, + 0.049313582, + 0.04848894, + 0.040242523, + 0.026471002, + 0.012864413, + 0.0065146703, + 0.0026388539, + 0.00074217765, + 0.00016492837, + 0.022347793, + 0.037686132, + 0.053684182, + 0.048983723, + 0.043293696, + 0.03018189, + 0.020780975, + 0.01162745, + 0.0039582807, + 0.0013194269, + 0.014018911, + 0.026965788, + 0.04576762, + 0.056323037, + 0.056075644, + 0.056323037, + 0.049313582, + 0.03273828, + 0.015008481, + 0.004865387, + 0.007586705, + 0.019379083, + 0.032985672, + 0.0476643, + 0.065064244, + 0.08576275, + 0.074465156, + 0.053189397, + 0.034799885, + 0.014761088, + 0.00354596, + 0.010143095, + 0.017482407, + 0.03603685, + 0.058054786, + 0.07669169, + 0.07809358, + 0.06778556, + 0.050715473, + 0.030016962, + 0.0020616045, + 0.004123209, + 0.009400917, + 0.023172436, + 0.03917049, + 0.053766645, + 0.05813725, + 0.059044354, + 0.0520349, + 0.040984698, + 0.00032985673, + 0.0016492837, + 0.002721318, + 0.00907106, + 0.019214155, + 0.026388539, + 0.02976957, + 0.036531635, + 0.03999513, + 0.036201775, + 0.00024739254, + 0.00041232092, + 0.0011544985, + 0.0037108883, + 0.00709192, + 0.008658739, + 0.009730774, + 0.014926017, + 0.024904184, + 0.023172436, + 0.016080515, + 0.018636905, + 0.012287163, + 0.0064322064, + 0.0020616045, + 0.0005772493, + 0.0004947851, + 0.0, + 0.0, + 0.0, + 0.023337364, + 0.02976957, + 0.025563898, + 0.015338338, + 0.0070094555, + 0.002308997, + 0.0010720344, + 0.00016492837, + 0.0, + 0.0, + 0.021440687, + 0.034634955, + 0.03273828, + 0.024656791, + 0.015420802, + 0.008906132, + 0.0024739255, + 0.0013194269, + 0.00032985673, + 8.246418e-05, + 0.019873869, + 0.034882348, + 0.037521202, + 0.033397995, + 0.02267765, + 0.01871937, + 0.010637879, + 0.004370602, + 0.0014018911, + 0.00024739254, + 0.014926017, + 0.031253926, + 0.03826338, + 0.034387566, + 0.034387566, + 0.028862463, + 0.01871937, + 0.012699484, + 0.004617994, + 0.0014018911, + 0.011380057, + 0.023089971, + 0.03150132, + 0.031831175, + 0.035954382, + 0.03884063, + 0.032408424, + 0.020616045, + 0.009978166, + 0.0038758167, + 0.007174384, + 0.017482407, + 0.019956332, + 0.028532607, + 0.031088997, + 0.033810314, + 0.031418853, + 0.024409398, + 0.0131942695, + 0.007339312, + 0.0028037822, + 0.0066795987, + 0.009895702, + 0.01756487, + 0.02407954, + 0.02680086, + 0.024409398, + 0.020451117, + 0.014431232, + 0.0075042406, + 0.0014843553, + 0.0020616045, + 0.004617994, + 0.00907106, + 0.013029341, + 0.015008481, + 0.011874842, + 0.009648309, + 0.008658739, + 0.008246418, + 0.00041232092, + 0.00041232092, + 0.0019791403, + 0.0029687106, + 0.005442636, + 0.0072568483, + 0.0061848136, + 0.004865387, + 0.004453066, + 0.004123209, + 0.009318452, + 0.008658739, + 0.0065146703, + 0.0018142121, + 0.00074217765, + 0.00032985673, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014101375, + 0.015668195, + 0.011215129, + 0.0061023496, + 0.0029687106, + 0.00041232092, + 0.0005772493, + 8.246418e-05, + 0.0, + 0.0, + 0.013111806, + 0.020368652, + 0.015503267, + 0.010637879, + 0.0055251, + 0.002226533, + 0.0010720344, + 0.00041232092, + 0.0, + 0.0, + 0.015503267, + 0.022017937, + 0.024491861, + 0.013853983, + 0.009813238, + 0.0036284241, + 0.002721318, + 0.0014843553, + 0.00032985673, + 0.00016492837, + 0.016822694, + 0.024904184, + 0.024162006, + 0.017482407, + 0.012287163, + 0.009978166, + 0.0061023496, + 0.0030511748, + 0.0014843553, + 0.00032985673, + 0.017482407, + 0.025728825, + 0.025728825, + 0.016987622, + 0.01360659, + 0.0110502, + 0.008906132, + 0.0037933525, + 0.0013194269, + 0.00032985673, + 0.016245443, + 0.020945903, + 0.019379083, + 0.013689054, + 0.012781949, + 0.011709914, + 0.007834097, + 0.006762063, + 0.0023914613, + 0.0005772493, + 0.007999026, + 0.010802808, + 0.014018911, + 0.009483381, + 0.0110502, + 0.008988596, + 0.007669169, + 0.0037933525, + 0.0019791403, + 0.0011544985, + 0.003133639, + 0.004453066, + 0.0051127793, + 0.005442636, + 0.006762063, + 0.006267278, + 0.004370602, + 0.002226533, + 0.0023914613, + 0.00065971346, + 0.0005772493, + 0.0013194269, + 0.0014018911, + 0.0020616045, + 0.0034634958, + 0.0036284241, + 0.0020616045, + 0.00074217765, + 0.0005772493, + 0.00041232092, + 0.0030511748, + 0.0037933525, + 0.0024739255, + 0.00074217765, + 0.00024739254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0053601717, + 0.0061023496, + 0.0037108883, + 0.0014018911, + 0.00074217765, + 8.246418e-05, + 0.00024739254, + 0.0, + 0.0, + 0.0, + 0.0065971348, + 0.007339312, + 0.0055251, + 0.0042881374, + 0.0009895702, + 0.0005772493, + 0.00032985673, + 0.00024739254, + 0.0, + 0.0, + 0.008906132, + 0.012534556, + 0.008493811, + 0.0047004586, + 0.0026388539, + 0.0009895702, + 0.00024739254, + 0.00024739254, + 0.0, + 0.0, + 0.014018911, + 0.022512723, + 0.015255874, + 0.009730774, + 0.0032161032, + 0.0018966763, + 0.0009895702, + 0.00041232092, + 0.00032985673, + 0.0, + 0.020863438, + 0.027872894, + 0.019708939, + 0.008328882, + 0.0042056735, + 0.0039582807, + 0.002308997, + 0.00041232092, + 0.00016492837, + 0.0, + 0.017317478, + 0.028285215, + 0.021193296, + 0.008988596, + 0.0047004586, + 0.0023914613, + 0.0014843553, + 0.0013194269, + 0.00041232092, + 0.00016492837, + 0.014101375, + 0.019956332, + 0.014018911, + 0.007999026, + 0.0028862464, + 0.0018966763, + 0.0015668195, + 0.0005772493, + 0.00016492837, + 0.00016492837, + 0.005772493, + 0.008163954, + 0.007999026, + 0.0037933525, + 0.0025563897, + 0.0021440687, + 0.0013194269, + 0.0004947851, + 8.246418e-05, + 8.246418e-05, + 0.0014843553, + 0.0018966763, + 0.0018966763, + 0.0013194269, + 0.0013194269, + 0.0012369627, + 0.00041232092, + 0.0, + 0.0, + 0.0, + 0.0013194269, + 0.00082464184, + 0.00032985673, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0013194269, + 0.0012369627, + 0.00041232092, + 0.00041232092, + 0.0, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002308997, + 0.0026388539, + 0.0018142121, + 0.00082464184, + 0.00041232092, + 8.246418e-05, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.005854957, + 0.005772493, + 0.0038758167, + 0.0015668195, + 0.00065971346, + 0.00016492837, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.01203977, + 0.013276733, + 0.0077516334, + 0.0042056735, + 0.0010720344, + 0.00024739254, + 0.00024739254, + 8.246418e-05, + 0.0, + 0.0, + 0.018389514, + 0.02383215, + 0.015255874, + 0.007174384, + 0.0009895702, + 0.00041232092, + 8.246418e-05, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.022430258, + 0.027295645, + 0.018471977, + 0.00709192, + 0.0019791403, + 0.00065971346, + 0.0004947851, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.018389514, + 0.02069851, + 0.013359197, + 0.00453553, + 0.0014843553, + 0.0004947851, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.00808149, + 0.0103904875, + 0.0075042406, + 0.0032985674, + 0.0011544985, + 0.00016492837, + 0.00032985673, + 8.246418e-05, + 0.0, + 0.0, + 0.0023914613, + 0.0032985674, + 0.002226533, + 0.00090710603, + 0.00032985673, + 0.00041232092, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.00016492837, + 0.00016492837, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00065971346, + 0.00082464184, + 0.00024739254, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0004947851, + 0.00090710603, + 0.0004947851, + 8.246418e-05, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0018966763, + 0.0028862464, + 0.0014018911, + 0.00032985673, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0064322064, + 0.0064322064, + 0.0037108883, + 0.0014018911, + 0.00041232092, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01261702, + 0.015668195, + 0.009235988, + 0.002308997, + 0.00065971346, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017070087, + 0.01913169, + 0.01162745, + 0.0042056735, + 0.0005772493, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013853983, + 0.016327908, + 0.010225559, + 0.0029687106, + 0.00041232092, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0069269915, + 0.008906132, + 0.0047004586, + 0.0018142121, + 0.0004947851, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0024739255, + 0.002721318, + 0.0019791403, + 0.0004947851, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016492837, + 8.246418e-05, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016492837, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.246418e-05, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0004947851, + 0.00082464184, + 0.00024739254, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0028037822, + 0.002308997, + 0.0014018911, + 0.0004947851, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0037108883, + 0.006762063, + 0.0037108883, + 0.0012369627, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0069269915, + 0.008658739, + 0.0038758167, + 0.0014018911, + 0.00016492837, + 0.0, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.007999026, + 0.007586705, + 0.004123209, + 0.00090710603, + 0.0, + 0.00016492837, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004370602, + 0.004040745, + 0.0030511748, + 0.00090710603, + 0.00016492837, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0010720344, + 0.0016492837, + 0.00082464184, + 0.00024739254, + 0.00032985673, + 8.246418e-05, + 0.0, + 0.0, + 0.0, + 0.0 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue.json index 2e4feb0b4..8856dc61b 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.blue.json @@ -219,12 +219,16 @@ "id": "df4wc7rk", "source": { "alternativeTitles": [], - "contributors.agent.label": ["David Linstead"], + "contributors.agent.label": [ + "David Linstead" + ], "description": "Polarised light micrograph of a section of rabbit cerebellum. This Victorian slide mount was made by Professor Karl Thiersch in Leipzig in the 1860s. Blood vessels were injected with dye (carmine; black) before fixing and sectioning the tissue in order to visualise even the finest capillaries whilst leaving the rest of the brain tissue almost transparent. This was a newly developed technique at that time. Composite of 74 individual images stitched together. Horizontal width of image is 20 mm.", "genres.concepts.label": [], "id": "rrdtjtzr", "sourceIdentifier.value": "B0010778", - "identifiers.value": ["B0010778"], + "identifiers.value": [ + "B0010778" + ], "images.id": [], "images.identifiers.value": [], "items.id": [], @@ -270,8 +274,12 @@ ] }, "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["David Linstead"], + "locations.license.id": [ + "cc-by" + ], + "source.contributors.agent.label": [ + "David Linstead" + ], "source.genres.label": [], "source.genres.concepts.id": [], "source.subjects.label": [ @@ -289,1062 +297,5105 @@ "source.production.dates.range.from": [] }, "vectorValues": { - "features1": [ - 1.748621, -0.8372956, -1.9182409, -0.64974004, -2.7221212, -0.94708014, - -2.2782207, -0.92831844, -2.5628614, 0.34479713, -1.5281103, 0.2773284, - -2.3686628, -0.14241853, -0.14355704, 2.4496946, -2.884581, -1.608839, - -2.1020603, 4.608801, -2.7096064, -1.0483284, -1.6538992, 0.2697194, - -1.9183275, 2.731831, -1.4132724, 2.252159, -2.1389854, -2.24644, - 0.88955164, 0.97233343, -1.06787, -2.101512, 0.16379705, -0.74169534, - -1.9041848, 3.9436789, 0.8440875, -0.05935996, -0.018569127, 1.1627032, - 0.023877796, -2.3997018, -0.93096644, -1.1928025, 2.2007148, -1.5598313, - 0.83710927, -0.93557936, 2.7313485, -2.377855, -3.2189393, -2.0140479, - 0.11975024, -2.3407676, -1.0472459, -0.16335414, -2.4659092, 2.909457, - 1.0000974, 0.26828006, -1.7193073, -2.8094325, -1.6294817, -3.1500287, - -2.0746093, 0.68710846, -3.2291498, -2.3655348, -1.0855956, -1.374825, - -0.038298253, -0.42759597, 2.3286169, -1.232795, -1.5624127, -1.4468578, - -0.06663557, -0.08344483, -1.93095, -0.13818043, -2.1665175, -1.673524, - 0.16716379, -2.705591, -3.8753712, -1.7336488, -1.7233751, -1.646041, - 0.6799087, 0.35033384, -1.625012, -1.9354576, 0.41761616, -0.6011818, - -0.8578402, -1.4972807, -2.1994548, 0.8311124, -2.1265824, -1.8768947, - 0.7437779, -2.352238, -4.3330007, -0.17258897, 2.737751, -1.4039999, - -1.6008679, -4.436677, -0.8507578, -2.1169682, -0.8096115, -3.7357783, - -2.9886591, -1.6346271, 0.26127565, -4.5242376, -1.7817107, - -0.116947085, 1.3044055, -0.7241718, -0.5780787, 0.7913957, -0.77002513, - -1.7481987, -0.36779037, -2.0343506, -4.123071, 0.6953127, 1.1934892, - -1.8009009, -1.6422805, 0.19497903, 0.94744104, -0.3557097, 2.6399326, - -2.257352, -3.7507124, -1.9415988, -4.5113826, -1.3781675, -3.7599075, - 2.3639305, -1.9332141, -0.88667107, -0.8459646, -0.8220113, -1.1761091, - -2.4890833, -0.28134117, -2.1412914, 1.6582013, -2.0235386, -3.0819743, - -0.8887182, 1.5213605, -2.231512, -3.8524096, -0.41752768, -1.7904079, - -2.5624444, 0.8384195, 0.52531266, 1.1311989, 1.261125, 2.0874467, - -2.7454152, -0.097030446, -3.0572991, -2.6605911, -4.1769876, -2.124132, - -4.2156205, -2.5527086, -0.086239025, -1.0787754, 0.59199584, - -0.7266265, -2.4275591, 0.20471983, 0.6499801, -4.1057115, 1.8115393, - -3.065622, 0.22714216, -1.5385962, -1.9972351, -1.9622815, -1.9147048, - -0.12855266, -0.9677882, 0.32805753, -1.7217531, -2.2060597, 2.5759673, - -0.85734653, 0.7144222, 0.59332675, -0.31227645, -0.6829889, -2.8109493, - -2.540343, -1.448341, 0.5722474, -1.1835264, -3.8809116, 0.44468558, - -2.0072188, -3.2871802, -3.5802479, -1.4323273, -1.6442599, 0.1689416, - -1.6223079, -0.9938666, -0.34148666, -2.0460136, -2.5971992, 0.8086171, - -1.3300881, -1.6690986, 0.6851684, -2.8499787, -0.4853376, -0.002175048, - -2.6192012, 1.4087545, -1.0075717, -3.0662358, -0.68870246, 0.7370068, - -0.009755336, -2.6911967, -3.007797, -0.45350328, -0.9010435, - -1.9488181, -0.09253226, -1.8058993, -1.6355597, -2.6112893, 0.911419, - 6.573647e-5, 0.021820078, -0.6839373, 0.9649201, -3.921066, -2.5331707, - -3.1385193, -1.3994901, -2.3804002, -0.75889766, -1.4462768, -3.8765185, - -1.1895654, 0.38961205, -2.2724862, -2.8740127, -0.70578843, -3.2406747, - -1.4076111, -4.4212017, -3.782042, -0.41761112, -0.14183575, - -0.71819216, -2.05654, -0.18423878, -1.7716323, 1.2185736, -2.4110227, - 2.2889404, -0.65296566, -4.0769916, 0.28346825, -4.2069306, -2.7576737, - -1.171524, -1.6977978, 1.4502746, -2.4300423, -1.9301535, -2.5941575, - -2.4686296, 1.3197243, -1.4741806, -0.22781974, -3.3345025, 0.8467922, - -1.2560686, -1.0853827, -1.4723688, -2.34511, -1.3352114, -1.9465597, - 0.46873754, 2.0000834, -1.2267145, -1.6489602, -2.5584066, -2.3251076, - -0.32080027, -1.749008, -2.71196, -2.7160466, 1.7963328, 1.9153554, - -1.6997298, 2.118212, -2.3845122, -3.28596, -1.2227887, 1.0699117, - -1.5692245, -0.7522399, -2.5991096, 0.9343677, -2.3473814, -2.5771928, - -1.5081964, 0.46430597, -0.5493844, -2.832731, -0.6184682, -3.9541397, - -0.77349716, -1.5951728, -1.9048349, -2.0714364, 0.031927418, - -0.9709706, -2.6092553, 1.4569001, -2.6416743, -1.9343668, -0.5647503, - -0.65746474, -1.00844, -0.8143119, -0.53599495, -1.1118655, -3.6114018, - 0.24149567, -0.7981496, 0.92850983, 2.0458984, -1.060207, 0.07823254, - -0.23814677, -3.7463024, -0.21743783, -1.9586562, 0.45072818, - -0.42417455, -0.45955342, 0.9285478, -3.0724766, -1.5903484, - -0.82805306, -0.976882, 0.2185205, 2.172729, -2.4902616, -0.38995492, - 1.4281596, -1.4546134, -0.6481234, -1.7384295, 1.4417266, 1.4928609, - -2.02736, -1.7464608, -0.7410987, -0.9139824, -1.514176, 0.36940318, - -2.288018, -2.2939079, -1.7017109, 0.12623774, -4.291004, -0.5334043, - -0.9164326, -0.5289391, 0.5136043, -0.88293576, 0.27389207, -2.4439697, - 0.75786805, -1.9999363, -0.10604192, -0.8225688, -2.8631518, -1.4725225, - -0.526639, -0.7703865, 0.9138036, -2.0041041, -3.2990048, -0.9429704, - -2.7335017, -2.222892, -0.9366219, -1.4618049, -2.1361594, -3.9061372, - -1.4655023, -1.5479405, -0.88174254, 1.4245824, 0.14807168, 0.5727878, - -0.99036604, -1.9161029, -2.0249827, 1.8368037, -1.3586835, -1.8552982, - 1.4087008, 0.09123433, -2.8838146, -0.7815688, -2.6437123, -2.5904112, - 0.30583575, -0.73454386, -2.0534546, -0.6377322, -2.5564969, 1.5407139, - 1.8915275, -1.0441109, 1.4131507, -0.23079792, -2.0996237, -0.27368376, - -3.1300898, -0.21228716, -1.5239892, -1.4937196, -3.6065326, -3.0903502, - -0.45988303, -0.74364525, 1.758956, -1.1307427, 1.8920367, -2.704046, - -1.8858136, -4.410461, -0.44118267, -1.7603177, -2.8564298, -1.0848011, - -3.0352116, 2.4034066, -1.2039399, 0.5468477, -0.51372087, -0.33496076, - -1.6222918, -0.57360625, -0.081291124, -0.7087588, -2.2902813, - -4.086194, -2.943226, 0.17892535, 0.019313699, -1.7469333, -2.8670273, - -3.6064734, -2.4237947, 0.01435446, -2.944255, 1.4339747, -2.2802687, - -2.2989798, -1.2448517, -4.3696513, -2.7389052, 0.085830525, - -0.83553445, -0.4447077, -1.4894166, -0.9090313, 2.3825793, -3.914649, - -3.2843218, 0.0392527, -2.5518932, -3.1356034, -2.3336444, 0.13562159, - -0.07297992, -2.1780572, -0.4744919, -1.7731302, -1.45542, -1.2872746, - -1.6257192, -0.687077, -2.478106, -1.8251203, -2.223238, -0.5969959, - -2.3624287, -1.3146067, -1.944608, -3.8353703, 0.83752275, -1.3780867, - -0.9421289, -1.6216588, -3.456233, -3.0781949, -3.6584463, -0.09243226, - -2.3791952, -0.017223287, -2.1804552, 0.20306006, 1.3510504, - -0.58541095, -0.908609, -0.6360722, -2.4910378, -3.5732012, -1.8496182, - -0.3749721, 0.09600717, -1.2525991, -1.8211954, -1.6860522, -1.9487358, - -1.370604, 1.4474504, -0.696523, -0.19298077, -3.287428, -2.1991322, - 0.77219975, -1.2689345, -3.0653307, -2.107949, 1.0565306, -1.5089514, - -1.2396468, 0.05017401, -1.6322122, -0.16687106, -0.58050776, 1.1705071, - -1.4332451, -0.93197906, 2.336249, -1.1602848, -2.0207777, -4.3907876, - 1.4672658, 0.51666814, -1.0224369, -3.3204112, -0.14923428, -2.56814, - 1.2859894, -2.0647042, -3.0917504, -1.090169, 1.0209787, -2.996301, - 0.8790418, 2.0820034, -1.6653413, -1.8702734, -1.8765829, -1.3164468, - -2.233676, -1.9443156, -3.342974, -2.0936062, -0.42855287, 0.45233557, - -3.9424012, 0.21702841, -1.8003395, -0.81815046, 0.4221063, -0.0789275, - 1.384414, 1.8162315, -0.8354958, -2.5285373, -2.7978492, 0.27545926, - 0.38287145, -2.737671, -2.806445, 0.74868107, 1.2780435, 1.0065829, - -4.4881797, -1.7720313, -1.160358, -0.6291196, -4.6821637, -1.1084397, - 0.088030994, -1.3153833, -1.5611968, -0.6084802, -0.17826022, - -1.0805913, -1.7363844, -0.7864922, -0.26616818, 1.5019522, -1.6244277, - -1.0534313, -2.265466, -2.6694343, -3.9152474, -0.78174746, -2.7494073, - -1.0338913, 1.0924748, -1.3748358, -1.184454, -1.0800662, -0.16346036, - -0.9982656, -1.4116241, -0.39191803, -4.347998, 0.047438946, -2.8957143, - 0.7629632, 1.6868631, -2.1457033, -3.8810217, -2.3244476, -2.125945, - -3.433602, -0.17933181, -2.1231754, -2.7980099, -0.042025562, - -0.07539031, -1.226077, 0.53481627, -0.2994755, 0.109325215, -1.7437853, - -3.4046745, -1.3245213, -2.1845715, 0.3237489, -5.2453847, -2.7433128, - -2.3949547, -3.9257789, -1.3707769, -1.6755337, -0.40979275, - 0.072523326, 1.1789827, -1.1517657, -3.192249, -0.9030809, -2.1895082, - 1.6374289, -0.45411384, -0.06847021, -3.206885, -0.66696984, 0.93386817, - 3.6065125, 0.52142817, 0.60698885, -3.618569, -1.1392864, 2.8094862, - -1.9213462, 0.95620066, -0.3063339, -2.1826692, -2.3383124, -2.9048662, - -1.8149896, 0.8528198, -1.1802144, -4.7767973, 1.1992451, -4.55017, - -2.0506794, -1.0998755, -3.031328, 2.8060372, -1.089442, -1.7353414, - -0.8734865, -0.9071022, -0.10134059, -0.3921886, -1.1535866, -1.6869687, - 0.30510074, 1.1699467, -0.424177, -1.7246146, -0.9546996, -1.4669248, - -1.2615288, -4.0392895, -0.6078479, -2.0192971, -1.5312637, -0.61964357, - -2.4819772, -1.0751549, -1.257095, -2.6660714, -0.68535584, -0.33782285, - 0.3689615, -1.3096722, -0.07776721, -5.2939296, -1.8027925, -1.0247873, - 0.4535581, -1.2009895, -1.1201562, -2.2848141, -2.5311532, 3.362197, - -1.0006865, -3.8837543, -0.7436649, -1.8663933, 1.6075854, -0.07008372, - 1.6698458, -1.6830742, 0.79081726, -0.46472278, -2.5197961, -1.3233353, - 0.20505863, -3.1952848, 1.7006251, -2.3265376, -0.5864652, -3.4599404, - -1.6315628, -4.1799674, -3.4939964, 1.192579, 0.81508964, -1.4579101, - 0.8390686, 1.7055742, 0.90652084, -5.3728995, -2.5147858, -2.3480628, - -1.2669392, -1.4632305, -0.21810666, 0.060626917, 0.3240836, - -0.19521338, -1.6738497, -3.8544197, -4.217324, -2.4649472, -2.4957278, - -3.4493477, 3.0059826, -4.0021834, 0.32391426, 2.89609, -1.3060414, - 0.21971127, -1.8138375, -3.2031574, -1.273081, 1.006052, -1.2791753, - -2.0564036, -0.3221351, -3.4939008, -3.3729825, -0.3647774, -5.4617324, - -1.7386603, -2.4909625, -2.0946202, -0.88424945, 0.7772688, -0.922059, - -3.6997378, 2.9747732, -1.2718668, 0.5515747, -2.0554192, 0.22699422, - 1.4116472, -0.27685717, -4.0852046, 1.2493819, -1.8805852, -0.6418715, - -0.9505714, -1.6415044, -2.9811368, 1.268, -0.6591436, -2.2266378, - -2.2898512, -1.0064725, -2.0631237, -0.89222723, -0.85090923, -2.817428, - -0.36950275, -4.742127, -3.3853452, -2.795491, -0.8133387, -4.396467, - -1.3076292, 1.6388711, -0.16631344, -1.5118685, -0.99141955, - 0.099365935, 0.0737886, 0.20797434, -2.6152189, -1.1191912, 0.2723088, - -0.60343784, 1.2056855, -3.345088, -1.6003352, -2.5860848, 3.0788596, - -0.38956875, 2.4447734, -0.995054, -2.1573098, -2.5836325, -0.82166874, - -2.4820387, -0.80812365, -2.147847, 0.6463731, 0.12635456, -2.066006, - -2.7504115, -1.8194339, -0.66165775, -0.64005446, -3.0773842, - -1.1568543, 0.07089898, -4.1215744, 1.8757464, -3.0539439, -0.20282708, - 1.2826687, -2.213309, -2.3202672, -1.8034151, 2.2458107, -1.4202055, - -2.127823, -2.0676506, 0.6727089, -2.8069062, -0.68648463, -3.0999494, - -4.7011867, 2.379042, -0.8474434, 1.5531666, -0.7726576, -2.4613793, - 0.73863304, -1.4109142, -1.482836, -3.1158922, -4.131213, 1.1245307, - -0.67159814, 1.3582665, -2.0066435, -4.250203, 2.3673704, -3.0867667, - 1.9996984, -2.7296016, 0.62231964, -0.2203909, -1.1780356, -2.3978717, - -2.4550037, -0.0038493276, -2.89743, -1.0556924, -0.25018683, 0.6491672, - -1.2294811, -0.9619986, -1.8837429, 0.05255842, 0.2671895, 1.8527484, - 2.7895405, 2.4314692, -3.6610029, -2.511465, -2.178033, 0.43531138, - -3.3990254, 1.3926668, 0.9814403, -0.31753853, -1.8046585, 0.39447528, - -2.1149368, 0.20578964, -3.4013662, 2.601207, -1.6978925, -2.0865555, - -1.5854298, 1.3658007, -3.5658586, 0.1539314, -0.8894363, -0.31992424, - -1.5567805, 0.17527929, 0.93687755, -0.7940965, -0.016018823, -2.64372, - -2.6945856, -3.2812827, -2.749739, -3.676321, -2.6548421, 0.59899205, - -2.383033, -4.3749456, -1.1660194, -1.9975286, -4.138886, -3.2944553, - -0.606929, -0.6988263, -0.41350856, -1.3287975, -3.350041, -0.2095032, - -1.2717471, 1.932979, -1.9754058, -0.00036593527, -2.2746723, - -1.2849934, -2.9545414, -0.43594307, -1.4584656, -2.6610813, -1.0486808, - -5.114089, -0.25842756, -2.535011, -0.40261644, -0.42695662, 0.5482024, - -2.3789802, -1.9204122, -1.4680594, -1.022932, -1.0562541, -1.0398041, - -3.667577, -4.391426, -2.1975312, -0.64817226, 1.4911246, -2.7142813, - -0.41366127, -2.9230845, 1.0971584, 0.6081834, -1.5901799, -1.7542447, - -0.010743011, -0.45243222, 2.3985314, -0.45586014, -3.1115155, - -2.3322906, 2.3907135, -2.214772, 0.24678138, 0.65167844, -0.20439869, - -1.9229648, -2.1048472, -0.5882881, -1.5244366, 0.32208037, -3.0362492, - -4.2934484, -1.0039939, 0.8298902, 2.79585, 0.29159477, -3.5977914, - -1.3074906, -4.1940494, -1.5904669, -0.88487506, -1.0177991, 3.0229332, - -1.2651618, -1.4787478, 0.89939696, -1.1704955, -4.091701, -4.297064, - -1.6236285, -3.424481, -0.0018928573, -0.9670265, -1.2489629, - -2.9889383, 1.1636482, -0.5373112, -2.0916061, 0.6249473, -3.0920482, - -4.7429533, 1.5212278, -2.9444308, -2.6848595, 0.47635776, -3.6973557, - -1.5065122, -2.02586, -0.83087224, 0.9492475, -0.38832384, -0.092371784, - 0.047209457, -5.1754403, -4.833365, -2.7243016, 1.3590933, 0.23440155, - -0.01359202, -2.5660641, -1.9182845, -2.8039002, -4.5329323, -3.2658634, - 0.3968896, -0.7192278, -2.0687518, -2.6316469, -2.9622364, -0.44392455, - -1.5705494, 2.2532027, -0.857482, -2.6370518, 0.5437514, -1.5917616, - -3.0793738, -2.651237, 1.038764, -0.9111791, -0.9670862, -4.3856707, - -0.46245942, -2.1661792, 0.5315304, -2.6248186, 2.431037, -1.478711, - -1.7121865, -2.4464033, -0.8230146, -1.5058483, -0.7609131, -1.2333647, - -0.76401764, 0.69041044, -0.75097924, -1.8830032, -2.103383, -1.2225677, - 0.79107124, -1.5571425, 0.56314623, 0.57468957, -1.9066627, -2.9358456, - -1.916067, -1.3967719, -1.3703388, -1.2511874, -0.76555604, -1.1630838, - 0.3204401, -1.8753392, 2.0334206, -1.920122, -1.3255556, -2.2823286, - 1.8640604, -4.285117, -1.9391178, -2.1246302, -3.159825, -1.4873002, - 0.43905556, -3.749932, -2.1913948, -3.3297045, -1.3169038, -1.6428692, - -1.9703839, -1.1579261, -0.81582457, 0.38584894, -0.41632968, -2.045343, - -0.92902553, -0.9149154, -1.0842371, -0.49645177, -1.0819248, 1.8373816, - -1.1317672, -1.1099015, -3.416261, -0.48404983, -0.13500014, -2.8255296, - -1.4292191, -1.1735274, -2.9255137, -2.1093261, -1.7349751, -1.9554391, - -1.7820946, -1.7212096, -1.1107193, -2.363909, 0.3557376, 0.62388366, - -1.7436637, 1.3493301, -1.4483185, -3.6127706, 0.25467628, 0.7102233, - -2.623545, 2.4751837, -1.4162483, -2.67288, -1.8595684, -2.9153116, - -3.011723, -2.6165934, -1.2187388, 0.1245715, -1.2569981, 2.632764, - -0.881166, 1.4093131, -0.59529877, 0.54651207, 3.4388802, 0.5457057, - -3.3922021, -3.0650046, -1.2755284, -1.6106086, -1.6668141, -4.301805, - -0.0560605, -1.1472355, -1.6392839, 3.0675428, -1.1615118, -1.8060653, - -2.705503, -2.184862, -2.8687408, -3.882741, -1.3237255, -0.4258774, - -2.1526742, -2.108825, 0.75495553, 0.27733436, -2.5665915, 0.18248594, - 0.10577084, 0.17403224, -3.4714432, -1.3537855, -4.056384, -3.1342862, - 2.7864277, -2.3153782, -2.2632103, -0.9497195, -2.4854255, -3.0650523, - -0.26352686, -1.0352999, -2.4501572, -1.8986804, -1.5448503, - -0.31862533, -2.2927623, 0.32863376, -1.8862495, 1.1289062, -1.71243, - 0.19241254, 0.5429136, -3.1576197, -4.3151336, 0.69178414, -1.54545, - 0.24826922, -2.0168014, -3.3580923, -1.1889594, -0.7827991, -2.121515, - 0.24031268, 1.6839036, -2.6083088, 0.0031881854, -2.322606, -0.15295754, - -0.47512376, -0.9478315, -1.1617069, -0.56808436, 0.017845571, - -1.9856094, 1.0917555, 1.2949027, -0.45329776, 0.66004676, -2.0999997, - 0.977008, -2.8352067, -2.3814733, -1.2871585, -1.6398368, -3.6299372, - -4.5537987, -2.518707, -0.56511486, 0.36117628, 0.6499414, -1.2726134, - -2.3364081, -2.5753815, -1.4687713, -2.2634299, -1.2602012, -4.8380346, - -3.464604, 0.85656786, 0.6701, 2.6163442, -0.5757887, -0.69356984, - -1.6187695, -0.44311598, -2.9010663, -4.150989, -0.8481116, 2.1114926, - -2.4268358, 0.9006837, -0.12906761, 2.410972, -1.8482568, -2.608291, - -1.8841672, -2.5929549, 2.3327699, -0.40353402, 0.46548796, -0.15590635, - -0.27796766, -2.1058831, 0.15247886, -1.2323052, -1.2000337, -3.1728666, - -4.2088666, -2.6905131, -0.13555193, -0.055499434, -0.67488307, - -4.335411, -3.321845, -0.2429755, -3.2230504, -1.7998772, 1.4227593, - -4.010498, 0.7266167, -3.616419, -0.5050503, 2.3357835, -1.7618881, - -3.0678353, -3.8551655, -0.6080625, -5.716305, -2.2189128, -2.6324465, - -0.50426364, -1.6201599, -3.0363674, -2.6266475, -4.019027, -3.172701, - -2.3466916, -0.5587135, -0.31570628, 1.3491107, -3.832937, -3.9044893, - -3.0004804, -2.0920753, -2.3187153, -3.2056744, 0.35638547, -1.4408976, - -1.2175608, -1.7490046, 1.9618098, -0.76003, 1.290604, -2.615681, - 1.8692471, 0.4117957, -2.489931, 1.1749827, -0.7089361, -0.30885717, - -1.0767626, 0.7488331, -3.902348, -3.2012355, 3.5599368, -1.2089291, - -0.103061095, 0.52088517, -0.499251, -2.0004587, -2.273332, -2.4903693, - -2.990996, -0.82828504, -2.1041968, -2.56158, -0.04190368, -2.9148462, - -2.2537513, -2.420791, -3.0364413, -4.3219447, -0.41443875, -2.2626634, - -0.21767598, -2.3619149, -2.388851, 0.10680309, -1.6125853, -0.49813718, - -1.5590092, -0.9684507, 1.5465192, 0.26123822, -0.8143631, -1.260035, - -2.2972133, -0.28759593, -3.564516, -3.5479987, -1.4541677, -3.5225213, - -0.10595855, -2.7801068, -0.9548277, -0.7951202, -1.2675734, -1.8789759, - 1.4140257, -1.1970761, -1.4378319, -0.79049146, -1.1647079, -2.7183325, - 0.6736484, -0.07387837, 1.6266268, 0.38621625, -2.4566236, -1.3728657, - -1.0739326, 0.8919162, 3.5041797, -2.732183, 1.1034677, 0.62843, - -3.0112007, -0.25610653, -3.685867, 0.968372, -2.309061, -3.6178405, - -2.1963925, 0.32707077, 0.24635145, -3.0845685, -0.30050656, -3.5651252, - -2.2153633, 0.99443984, -0.9881684, -1.366631, 0.58000386, -0.52954507, - -1.4944537, -2.0333495, 0.30655283, -3.6107926, -4.3975387, -1.5614756, - -1.5708566, -1.3343624, -0.58625525, -0.8991018, 1.2291579, 1.0142365, - 0.710872, -2.711528, 0.86048186, -4.334355, -0.4683248, -1.7924231, - -1.4189583, -4.0629077, -0.6930433, -1.8825384, 0.8116647, -3.2341504, - -1.3267788, -4.2397804, -2.3266425, -1.7369347, -0.25295526, -1.1066221, - 0.6525903, -0.34520304, -2.394222, -1.4397112, -3.9578352, 0.57553583, - -0.6364398, -1.7266808, -2.404833, 1.3990422, -1.3530977, -5.2513638, - -3.4024599, -0.8666061, -2.2904456, -2.9235, 2.3235319, -0.96410984, - -1.4638554, 0.60840094, 2.161374, -1.4810153, -0.873237, -3.915199, - -1.1596082, -2.4781744, -0.031655006, 2.5999465, -1.809887, -1.7309163, - -3.268546, -0.78124756, -0.6028305, 0.04356962, -1.556153, -2.74601, - -3.3311844, -2.003341, -1.8626996, -0.15457463, -1.699404, -1.8016025, - -4.189559, 0.06906427, -1.3797504, -4.128097, -0.23804757, -3.4398363, - 0.7154391, -1.2855549, -1.5735891, -0.8729747, -0.71550804, 0.9348103, - 2.0374558, 1.8943994, -3.744177, -0.13825828, -1.9949476, 0.914286, - -2.5761578, 4.1856656, 0.937748, -2.1446116, -2.420519, -2.1529388, - -2.0307257, 0.14010361, 0.24065408, -1.8560767, -3.2950284, -1.3019853, - -0.13539359, 0.9166056, -2.1907172, -2.4326463, -2.9569564, -2.113359, - 0.7155257, 0.9153953, -3.0343668, 5.0674706, -0.46904975, 0.4756543, - 1.2451411, -0.7685592, 0.751344, -3.5472567, -1.3920664, -1.3776071, - -0.6970434, -2.8250344, -1.7916973, -1.0902219, -3.41059, -1.1140804, - -2.6514864, -1.8031183, -3.2362297, -0.48887876, -1.863296, - -0.057323158, -1.7403222, -2.8638704, -0.93062764, 1.0798277, - -5.6484528, -1.7820252, -0.8193872, 1.3777604, -2.039605, 1.6702203, - -2.7233744, 1.3728366, 0.73101795, -0.41561455, -3.205072, -1.8692033, - -3.451322, -1.3922645, 0.38455194, -5.7448244, -1.8807228, -3.8181047, - -0.61656195, 1.2157462, -2.1290302, 1.2250532, -0.08079589, -0.30464116, - -2.0355463, -3.1467762, -0.2407211, -1.1601483, 1.3052284, -0.5810642, - -2.419297, -1.2469994, -0.6392799, -1.9298216, -0.7670497, -0.6655519, - -0.768531, -1.5657935, -2.3995814, 0.05937607, 0.11011538, -2.4237347, - -2.9893405, 1.7060915, -1.5930115, -1.5424129, -0.6928856, 1.9595084, - -3.8823245, 2.3749685, -0.20671743, -4.060716, 2.5094507, 1.1273001, - -0.63743085, -2.1623, -0.145589, 1.3592465, -0.7776423, -2.4943793, - -2.4866383, 0.41813886, -0.8700222, -0.76631093, 0.3333074, 1.8366327, - 2.4457912, -1.767725, -0.07963511, -1.5509638, -2.0372515, -0.056810506, - -0.26270932, 0.6651484, 1.374258, -2.108939, 0.9223712, -1.6126461, - -2.175516, -0.049286373, -2.527602, -3.2600396, -2.0984905, -0.646778, - -0.62691796, -2.8202844, -1.0748848, 0.79551834, -2.4958296, -1.503227, - -2.3385782, 1.3866596, -0.14873889, -0.5771605, 4.943845, -3.9891288, - -1.0904266, -1.1198415, 0.7523828, -2.2776315, -4.2427683, -1.344334, - -2.0097706, 0.96120906, -2.4959342, -0.015341252, -1.4951683, - -1.5406725, -3.4828327, -3.822911, 0.5363471, -2.3157542, -1.9198915, - 3.5572152, 2.8902016, 0.16005796, 2.0630333, 0.0944618, -0.9424281, - -0.8759543, -3.2089255, -0.068176806, -4.446816, -1.3503841, 1.2973324, - -0.109672904, -0.24584508, -1.0492327, -0.3246154, -2.8752484, - 0.8648462, -1.1620525, -1.1429538, -2.343237, 1.3574488, -0.63873994, - -1.1401827, -0.8084902, -0.52953863, -1.0104679, -1.9332838, -2.308046, - 1.0665684, -1.070544, -4.882097, 3.2292385, -1.1763111, -0.8427405, - -2.5923076, -1.0184628, -0.7460477, 1.0440924, 1.5182799, -2.49881, - -2.6712477, -2.2404416, -3.8911023, -0.5016436, -0.12507877, - -0.39597887, 0.12154251, 3.2070966, 0.4938375, -2.061595, 0.7870311, - 0.32636282, -1.186784, -2.0480037, 0.04989604, -2.6606984, -3.4379008, - -0.09891264, -1.8144578, 0.38379258, -1.9326398, 0.3252597, -1.5873469, - -0.46646515, 0.64668477, 0.45582747, -2.7720888, -1.7243356, -1.0837309, - -3.7440958, 1.155415, -1.6314745, -0.21031372, -1.1807599, -3.373336, - -2.295621, -4.472203, -0.6374258, -2.7372015, -2.6540463, 4.202573, - -0.10255419, -1.1693573, -0.46450195, -0.21517092, -0.3480123, - -1.9699942, -2.912945, -0.3310557, 0.13799547, -2.283276, -1.3677081, - -0.15625402, -3.6861832, -2.022624, -4.254314, -1.3751022, -0.13547565, - -1.3952821, -0.63426626, -2.6354904, -1.3485941, -1.7678787, -2.0717804, - -0.4676081, -0.2234325, -2.019951, -3.411806, -1.1059612, -3.011991, - -0.88171333, 1.1164873, 0.36330083, 1.5552728, -1.0011374, 0.5057987, - 0.35400814, 0.04566413, 0.054066695, -1.2129676, -4.6557384, 0.65798753, - 1.3344905, 1.5032387, -0.8062129, -2.490426, -0.4630722, -3.2263594, - -0.95155156, -0.8067856, -1.2147126, 0.24614312, -1.5385702, -3.0700676, - 2.502607, -3.230654, -0.55269086, -0.65410286, -1.9354526, 0.4653979, - -0.31674674, -2.3516853, -1.8016616, -0.9724742, 1.4255973, -0.6340198, - 1.177372, -0.71452713, -1.4424806, -1.352291, 0.44360203, -0.78654957, - -4.6635866, -0.581855, 0.27334058, -1.3208069, -3.14575, -5.4135785, - -2.5646632, -2.15545, -3.2143862, -2.8506398, -3.2106743, -0.22853772, - -2.4828432, -1.9595474, 1.5395118, -0.8962314, -1.6214833, -1.4245316, - -1.5028086, -1.6397066, -0.45782664, 0.4093747, -3.0036004, -3.9476304, - -1.8694985, 1.1685228, -0.6875334, 0.94737196, -2.3770897, -3.49373, - 2.5309744, 3.7368991, -4.16952, -4.9345336, -3.2922492, -0.38585687, - -1.1347781, -1.2091678, -0.65489686, -1.8662224, -0.13981812, - -1.9316442, -2.970911, 1.8484877, -1.8248527, -1.3802555, -3.5999281, - 1.995588, 0.082498, 1.3774552, -1.6082114, -0.44045275, -0.70289785, - -1.8873469, -3.5271654, -0.15193969, -1.0977298, -0.44175225, - -0.87357867, -0.87063307, -0.848019, -2.3508422, -2.297049, -0.37934986, - -2.840786, 0.15784982, -3.0104694, -3.6195986, -0.004172612, 0.9492572, - -1.8490455, -0.5296053, -0.26150566, -4.1313543, -1.1378043, -1.66019, - 0.16404901, -1.5859044, -0.8029402, -2.883104, -3.7302191, -3.8894007, - -1.6866751, -1.7547152, -2.9238317, -2.5035129, -1.138879, -3.0761573, - -3.6137664, -2.3647864, -3.9270532, -2.2518833, 0.48209774, 0.24363856, - -3.5346587, -1.0881633, -1.8551676, -1.1750872, -3.8151214, - -0.008687511, -1.6995846, -0.55481076, -0.17274915, 0.17930079, - 1.448707, -2.645814, -4.236966, -2.2275198, -0.6397236, -1.2642782, - -0.06287864, -0.20081374, -1.1145403, -0.7622582, -3.5364988, - -2.1815088, -0.36787093, 0.99890286, -0.3602501, -4.425295, -0.4164564, - 2.6025994, 0.8585661, 0.8372166, -0.58667433, -3.425721, -1.8514435, - -3.3430715, -0.03368977, 0.1750687, -4.2291255, -1.1984373, -1.0419679, - -1.0601577, 1.4164348, -0.32212022, 0.34695384, -0.7128792, -0.10124315, - -2.7294135, -1.3329067, -1.481261, -1.7502353, -2.3207605, 0.28312972, - 0.9035341, 0.38961798, -1.8012062, 3.3757, -2.1441483, -0.7372583, - -2.3385358, -1.1101763, -2.1506684, -0.7999901, -0.61337084, -1.1640661, - -0.72648907, -2.5595798, -2.484224, -2.906327, 2.0948713, 0.6971594, - -1.3581437, -1.8331472, -0.956749, -2.832755, -2.7493162, -0.17326069, - 1.8718406, -0.7325073, -2.720563, -1.9003923, -1.5736444, 0.89018106, - 1.1081532, -2.029302, -3.4895225, -3.064387, -1.8286631, -0.75673825, - -0.7981018, -1.8596779, -0.3173856, -4.183376, 0.0028021634, -3.5037158, - -0.122737125, 2.2747371, -3.1218405, -2.5581357, -1.841859 - ], - "features2": [ - -1.2229719, -1.2606219, -0.106527574, -0.099122785, -1.9448783, - -1.691515, -0.86392146, -2.157003, -1.0531653, 0.7818643, 0.3219341, - -3.7913027, -2.2815413, -0.56699324, -3.1915073, -1.6849166, 0.6942812, - 0.42599362, -0.97882295, 0.11536321, -3.2146811, 0.9639572, -3.1530633, - 0.8590239, -1.7512175, -0.56702745, -0.18360457, 2.8697522, -2.0105658, - 0.837036, -0.27955815, -2.7020588, -0.4452506, 2.2084858, 0.6752391, - -1.3094867, -0.59628403, -0.115037635, -2.0802302, 1.0374703, 1.6492045, - 0.80257684, -0.6273246, 0.056134403, 0.5631712, 0.5602336, -5.224211, - 0.4580474, -1.8218565, -0.5261071, 0.12274422, -1.6883687, -2.2680073, - -0.3230709, -1.049776, -2.498981, -2.1653621, -2.113365, -2.3585448, - -4.2859397, -3.2097394, 1.4840411, -2.855503, -0.2488224, -0.14442924, - -1.6694806, -2.5774934, -2.6055307, -0.3507438, -3.1713276, -2.9021344, - -2.0848837, -2.2510228, 0.0011092313, 0.84545445, -1.0557556, - 0.40126452, -1.1047652, -3.469764, -0.5408616, -1.6554563, -1.2241253, - 0.068168186, -1.623819, -1.6916677, -0.9790196, -3.2463121, -3.0292106, - -2.2023718, -3.7046683, -2.1841292, 0.22800225, -1.7433754, 0.7852774, - -0.28145668, -2.4163067, -0.7725579, -0.5563125, 3.3156435, -1.7401308, - -2.2555907, 2.7499974, -2.6101525, -2.811449, -0.8855925, 0.84322315, - -3.1066985, -2.5061905, -2.4500377, -0.47067177, -4.0573115, -0.9353237, - -2.5277977, -0.10335924, -0.84091705, 2.3096786, -1.8993638, -0.7856492, - -1.2321209, -2.9319057, 3.6447232, 2.648513, -0.98701143, 0.18989983, - -0.20361918, 1.037934, -0.039142698, -0.37226745, -2.8663588, - -0.78041506, -1.6584338, -3.3774877, -1.2297877, -1.9963065, 1.866448, - -2.388147, -0.9001118, -1.3123758, 0.82870173, -2.78977, 0.80210274, - 0.8573042, -0.97806495, -4.0979257, 0.116857715, -1.0986522, -1.3024919, - -0.8546468, 1.9339341, -1.1502018, -4.17304, 0.81762874, -0.008581009, - -0.35770637, 0.16265541, 0.53665453, -1.4113656, -0.17119735, - -1.3053557, 0.33343342, -3.084063, 0.24627686, -3.9503706, -0.7848374, - -2.9557269, -0.7597784, -2.290459, 0.81289315, -1.7756335, -0.7418033, - 0.16750804, -1.7497641, -2.408521, 0.3133198, -2.4582615, -2.79373, - -0.15897834, -0.62007797, 0.8069693, -1.6765668, -3.6275532, - -0.36355895, 2.6126304, -4.750764, -0.792976, -1.5788411, 0.36852717, - 0.21614929, -2.0761325, -3.7888255, -0.91232777, 0.1569194, 0.14381668, - -2.1789787, -0.10214393, -1.5116953, 1.6956947, -2.3272388, -2.1138918, - -0.8528992, -0.23281367, 1.0330269, 1.6764563, -0.17799523, 1.0635407, - -1.5009617, 0.30027074, -2.983949, -0.8491268, -0.6823915, -2.9713018, - -0.57901645, -1.5116125, -1.0265437, -2.1398695, -3.172925, -1.4577143, - -4.4526296, -1.4226383, -0.48351136, -0.019165643, 1.8228151, 0.5594007, - -2.0788233, -1.719104, 1.4595813, -1.9065132, -0.7889682, -0.3771221, - -1.8612864, -1.0383816, 0.62264293, -2.6410835, -0.71947545, 0.2959398, - 0.030787498, -2.6115725, -2.5832698, -0.6856599, -1.8929499, 0.91317254, - 0.31409672, -1.8849744, 0.16066448, -1.9879596, 1.503261, -4.1566377, - -0.24546124, -0.5252208, 1.6783469, -3.6012948, -3.2463562, - -0.115660116, 1.0441198, -0.9978336, 0.3685625, -4.116541, -0.9365464, - 2.8870375, -3.1142344, 1.5923761, -0.15939087, -2.3610842, 1.2556279, - -1.6125304, -3.1876771, -0.12852103, -2.568036, 1.4288379, 0.33893672, - -0.7280681, -0.345093, -2.9632132, -2.159572, -1.3662233, -2.2816973, - -2.058038, 1.6721511, -0.6091001, -2.6757612, -1.9741758, -0.93607134, - 0.48129946, -1.0564036, -1.4509985, -3.8939042, -2.37241, -3.3030496, - -1.416035, 1.2373163, -0.89811444, -3.020068, -1.3413969, -0.48380917, - -3.679157, -1.9416553, 0.5932422, -0.5474791, -2.3025587, -3.516889, - 1.2593794, -1.0145041, -4.2513733, -2.2659478, -1.8367174, -3.4127152, - -2.3433936, -1.3779894, 0.34121782, -3.7593532, 3.323203, -2.2787547, - -1.9381787, -2.8304045, -1.5846846, -2.4883158, -3.4243376, -2.778068, - 0.070988536, 0.4615045, -2.2737885, -0.90832376, -3.4654758, -1.8490955, - -3.0657694, 2.2380805, -1.9729489, -2.463656, 2.9587772, -3.1361983, - 0.43245888, -0.54905844, -3.0092006, 0.2452907, -1.735467, -2.1276278, - -0.8751286, -0.6633431, -1.387715, -1.8547031, -2.0183952, 2.4484375, - 0.72570264, -2.0539558, -4.509123, 1.5705041, 0.7014161, 2.9115326, - -2.4992478, -2.172181, -0.23248048, -1.672969, -0.7631462, -3.9041693, - -1.1136624, 2.4773297, -0.34605673, -1.5003369, -0.73146504, -3.6510487, - -2.2099478, -1.2211895, 1.032192, -4.131006, -4.531031, -1.2553777, - -0.25181675, -0.5442553, -3.8679814, -2.1148858, -1.3272591, 0.43744242, - -3.56518, 0.57614774, -0.98085195, -0.6978848, -2.956152, -1.8842121, - -4.2677193, -2.3588707, -1.856942, -2.827254, -2.1808958, -2.4297016, - -1.6669793, 0.33774358, 0.25140753, -0.80285656, -5.5862265, 1.5787245, - -2.3858104, -2.7038689, -1.2947714, -1.1689789, -0.089347444, - 0.103708565, 0.08782152, -0.5648821, -1.3087826, 1.420968, -0.28117257, - 0.11701832, -2.1899679, -4.616943, -1.5963525, 0.92105806, -1.3144853, - 0.02243203, -1.0984889, 2.3362687, 0.7448922, -0.5315659, -4.2092257, - -0.5337865, -1.5009387, -1.2719681, 0.3993093, -0.37396434, -2.2149737, - 2.096296, -1.2165364, -0.14078987, -1.3173593, 2.2050562, -3.420353, - -4.465617, -0.8814056, -0.21555723, -2.637884, -0.095071405, -1.4882424, - -1.767934, -1.7110388, -3.3868558, 0.84692883, 1.3051479, -1.2674428, - 1.0317487, -1.8084018, -2.8722558, -1.9795096, 1.259134, -1.0318733, - 0.79434603, -1.6365268, 1.9672693, -4.716871, -0.3278325, 2.1141074, - -2.5962265, -2.615978, 1.2938263, -0.5755916, -2.5189922, -1.9374305, - -0.83653134, 0.29638013, -1.6325129, -2.7194757, -2.788888, -2.6374846, - 0.7396475, -3.4159093, -1.6425892, 0.72885936, -1.7009028, -1.4585158, - -1.2448823, 0.6807987, -1.7731011, 1.281146, -2.5306706, -0.59407395, - -2.0751522, -0.20637825, 0.80134475, -0.5339093, -3.511801, -1.0825564, - -0.43873462, -2.5526767, -0.7800365, -2.0569177, 2.4150927, -1.5845907, - -1.6178529, 0.38648298, -2.6194282, -1.6701823, 1.0661064, -1.4945288, - -5.0289173, -0.46891266, -1.5836732, -0.585922, 2.1165247, -1.196045, - -1.0514596, -1.8709047, -2.3367755, -0.37477198, -2.0908482, -0.2547554, - -1.6672165, -1.4192709, -1.8439063, -2.164816, -1.5504065, -3.989207, - 0.31797895, -4.106147, 1.7880458, 0.23861349, -0.273903, -0.9019429, - -1.6830287, -1.5259792, -1.3654377, 0.42056194, -4.193857, -1.9836754, - 2.1196218, 0.18308818, 1.693432, -0.54312086, 0.28709492, -1.8820409, - -0.58188266, -0.49400654, 0.79359937, 0.2877879, -2.3405652, -1.025807, - 0.36746275, -1.8248718, -1.7128067, -1.3891354, 0.57330376, -1.5094185, - -0.28982314, -4.92436, -2.2306516, 1.8182948, 0.48516467, 0.38310432, - -1.4377995, -0.32530096, -0.5270895, -3.9688468, -1.7570724, 0.15325297, - -0.0097577665, -2.8819873, -0.94617474, 0.90687877, -1.3631531, - -1.0846485, -2.2237823, -0.9095652, -1.4788109, -3.2331707, -1.3299956, - -3.3086367, -3.4535673, -0.7039049, 1.7279176, 1.6679369, -0.16793476, - -1.2439715, -2.263701, 0.4766039, -0.32460082, 1.3164722, -1.1796591, - -0.5019107, 2.0080714, -2.537298, -0.29821026, 1.346097, -2.2569387, - -2.080905, -0.42657846, -3.1230216, 2.0475726, -2.4458148, -2.7640555, - -1.2651927, 0.9249155, -4.0199327, 0.2088567, -1.2144983, -0.3597672, - -0.8018901, -1.0121422, -2.0308192, 2.862237, -0.49137494, -1.3425952, - -2.9426289, 0.11720629, 1.3480308, -2.0995967, -0.5567646, 1.638276, - -0.34242162, -1.8548769, 1.412867, 1.0496857, 0.13981594, -1.5972916, - -2.0640423, -1.2310206, -1.8316681, 2.342263, -0.76941943, -3.6241827, - 2.9079256, -1.4295094, -0.45831752, -0.88737303, -3.5238936, - -0.91122246, -0.8172405, 1.7766056, -0.60831636, 0.23514603, -2.1341546, - -1.8574576, -0.93441427, 0.7760124, 3.286666, -2.2710805, -1.92082, - -1.0570843, -2.219371, 1.5507445, -0.63182455, -4.2259493, -1.7631185, - 2.1231089, -1.1413003, -1.3794539, -2.8089695, 2.8192403, 0.9765125, - -2.243969, -0.9225218, -1.7439529, -2.5963202, -5.33815, -1.5642158, - -1.5166143, -0.30699167, 0.023522858, -1.0984893, 0.28363287, - -2.0938582, 0.62142974, -0.59433705, -3.8839834, 0.14618184, -2.0937192, - -0.35222936, -1.7400495, 1.8862674, -1.366026, -0.19398917, -0.24582182, - -2.4241118, -0.3053155, -0.78046036, -3.631706, -0.3350253, 0.30531535, - -0.49251157, 0.8269384, 0.2014886, -1.4960935, -0.1887368, -0.6423813, - -0.9501391, -1.2946961, 0.14950573, -2.0305715, 1.6906915, -2.2506108, - 0.3333541, -1.9981092, 0.13445461, -0.6076478, -0.93876296, -2.9589586, - -2.7386324, 2.4845293, -1.9777613, -1.030121, -0.36306655, 2.4491441, - 1.1383239, -1.8790455, -1.6662929, -0.50044465, -0.094403744, - -2.9859946, -1.8321812, 1.5592158, -3.1395373, -0.4955783, 0.24687111, - -1.315812, -3.3180227, -2.757995, -3.1691797, 2.8040888, -1.0619612, - -1.8404573, -2.7286818, 1.5727504, -2.3642046, -1.4145515, -0.22799218, - 1.3885423, -0.46990952, -0.1308497, -1.664027, -0.59273446, -0.932784, - -0.18826114, -0.9825312, -0.43451297, -2.3779001, -3.3219848, - -1.9439932, -1.5224795, -1.3935713, 1.8198212, -1.8542665, -1.9026854, - -1.201385, 0.7729521, -0.616576, -3.5345142, 0.406362, -1.577248, - -4.125837, -3.3322096, -0.849049, -0.7599879, -1.5419116, 0.2938872, - 0.29913235, -1.1328723, -0.34715667, -4.4574823, 2.1280446, -1.9018637, - 2.9543884, -2.9756284, -0.7171951, 0.373195, -1.578397, -1.5325482, - -2.4842174, 0.304149, 2.058029, 0.92904276, -1.0135169, 0.14838786, - 1.6350837, -3.4612913, -0.72693396, -2.6835458, -1.5944363, -2.5784118, - -1.7921574, -2.1433403, -0.34658659, 0.7269357, -1.337389, 1.3495398, - -2.015879, 1.5791306, -0.5417837, 1.9828397, 1.3970968, 1.3737518, - 0.41585216, -3.5302844, 0.011257414, -0.4756806, -0.658183, 1.3508116, - -0.44132036, 0.017643591, -1.695218, 1.8927593, -0.7590168, - -0.048427485, 0.5507157, -3.111156, 1.9309347, -0.8589911, -2.031059, - -0.09745234, 0.85329354, -1.3254275, -1.9344075, -1.0598747, 1.0495204, - -4.0453753, 1.1365982, -2.7046638, 0.9024785, -1.440722, -0.02432724, - -0.47493422, -2.2703612, -0.2525977, 2.971966, -4.038834, -3.321288, - 0.03471853, 0.14325637, -0.79391253, -1.0703146, -3.2188404, -3.0896769, - -0.61272013, -0.6984964, -0.76297635, -3.2528167, -1.2460742, - 0.0051079392, -2.3164518, -2.0169253, -4.747648, -1.910854, -3.555984, - -0.29949552, -2.7127204, 2.4964368, -0.9007466, -0.5778199, -1.2451057, - -2.3465571, 0.4193532, -1.7585856, -0.33848193, -0.6945673, -2.2347538, - -0.488781, 0.9107185, -1.336635, 1.1599247, -3.1063702, -3.373343, - 1.0309523, 1.3483264, -0.7449854, 0.92699033, -0.91111803, -1.0290666, - 1.9530967, -0.75399005, -3.7442753, -2.1878567, 0.532388, -3.5334656, - -0.04831781, -2.8505442, 1.1750537, -1.7882061, -1.6776597, -1.3894367, - -3.7280958, -1.106539, -2.1252503, -0.50272834, -0.37760127, -3.0709805, - 2.337731, -0.9754338, -3.6289067, 1.7625135, -4.1661305, 0.84969485, - -3.470546, -0.6153348, -0.22043648, -0.3592661, -3.57863, -2.4329307, - 1.2276264, -1.2169402, -3.1438503, -3.1001236, 1.0696362, -1.3135285, - 0.7976235, -2.5992858, -0.16809408, -1.9096823, -0.07563123, - -0.036555782, 1.540127, -0.8128877, 0.32566375, 0.6907645, -3.0696013, - -2.1155777, -1.6670629, -2.049062, -2.0887709, -0.33369032, 1.9428596, - -3.6351771, -0.6874192, -4.7451715, -3.7856786, -1.53754, -1.5538027, - 1.84121, -5.122795, -0.8192579, -0.1572204, 0.5666573, -2.3105173, - -1.7748492, -1.6302226, -0.91123897, -1.8961792, -2.8322754, -1.4391617, - -4.2983656, -3.5149188, 0.5936057, -2.5021179, 0.3458546, -0.7523065, - -1.3362662, -3.0053835, -0.5566102, -2.5065231, 1.5429775, 0.7580607, - -4.6878757, 0.33236995, -2.036432, -1.8729051, -3.2998896, -0.97429293, - -2.8139691, -0.104102194, 0.75321305, -0.29774627, 0.1752156, -2.548727, - 0.12661189, -1.9997234, -2.6181095, -3.7250996, 0.44980738, -4.490592, - -1.0155965, -0.8675658, -1.4323689, -0.40104693, 1.0816594, 0.718031, - -1.3677737, -1.3343254, -1.6286169, 2.0364645, -2.6657298, 1.0267113, - -2.5886784, -2.17486, -0.79798096, -2.0538373, -0.6757809, 0.8248162, - -0.2713376, -3.1996944, -1.0454681, -2.1241527, 0.9040015, -0.26605213, - 2.2506084, -2.402723, -2.3294704, -4.20016, 1.6097375, -0.37286186, - -0.6469172, 0.6907583, 1.6578047, -2.5870833, -0.67235893, -2.4403007, - -3.602425, -2.5768013, 1.29501, 0.8798809, -2.6161315, -0.5364878, - -2.5124576, -3.169013, -1.1004761, -0.20622697, 1.3712364, 2.4021702, - 1.0370282, -2.8436077, -4.2228184, -1.2196772, -3.1740057, -3.2615697, - -2.6968799, -1.1920686, -2.5651195, 1.610375, -1.6267267, -2.1864023, - 1.6867265, 0.43803057, -3.716721, -0.33871007, 0.063958034, -0.6226304, - 0.9601486, -0.31861848, -3.494761, 0.09150569, -3.2088032, -3.1077952, - -1.6295246, -0.23498353, 1.0893425, 2.3861945, -1.8705682, -2.4220674, - -3.0307937, -1.979695, -2.8675222, -0.10010584, -1.6554977, -0.5358255, - -3.2304778, -1.0553676, -0.0012138486, -1.4129138, -1.9182233, - 0.94023526, 0.25706965, -3.1445348, -1.2700545, 1.3876619, -3.844223, - 0.92490673, -3.2405357, -6.0049877, -1.8543943, 0.6568481, -2.5749004, - -1.6978285, 0.65316516, 0.72468406, -0.71493375, -3.502996, -0.6450229, - -3.2729654, -0.04623697, -2.0071156, 1.8783158, -0.2167386, -0.89526874, - 0.39745182, -4.5600424, -3.141514, -1.4595032, 0.81815237, -2.4776185, - 1.0160426, -0.74959964, -1.8809756, -1.7864866, -0.47914284, -0.3955587, - -1.0410548, -1.1833729, -2.7471406, -1.6358935, -2.9008048, 1.0935305, - -0.45895457, -0.55447364, -5.4336085, 0.07802637, -2.6579645, - -2.4774044, 1.5381743, -2.4572525, 1.5755675, -2.2709637, -2.9648926, - -1.4917016, -0.7751667, 0.20420264, -2.4983687, -3.0726588, -3.7691305, - -3.3692422, -1.0573453, -0.8024138, -0.381675, -0.5576689, -2.442328, - 0.5076387, -2.4527571, -3.0385382, -0.7616028, -1.4804926, -4.665754, - -3.9413073, -1.9942503, 1.31485, -2.4602058, -1.6574066, 1.8057569, - 0.36644185, -2.167684, 0.10771243, -2.0682738, -4.799055, -0.28046834, - 0.33822176, -0.772703, -0.11272034, -0.71990263, -0.76012266, - -0.6619966, -1.2327799, -4.557393, -1.4262085, -0.8270211, -0.88568246, - -1.708834, -1.6352265, -3.4269724, -0.6444505, 1.1082721, -0.29354626, - -0.32767832, -4.1824245, -0.74908096, -0.3218462, -0.4954612, -2.318161, - -2.4356432, 0.47177178, 0.3974104, -0.037587825, -1.9774727, 0.74213904, - -2.4208107, -0.89418244, -2.5098166, -2.498669, -3.662412, 1.3608401, - -2.3879337, 1.2796407, -0.28400102, 0.07448548, -3.2486885, -1.7560235, - -1.0618364, 1.466997, 0.5416254, -0.89952284, -0.114819214, -0.89100873, - -1.8054374, -3.507212, -0.2770125, 0.33414653, 0.23840977, -0.15657976, - -1.5374383, -0.4510698, -2.703125, 0.7832138, -2.710056, -2.3270693, - -3.2683237, -0.65525997, -1.6883035, -3.3812938, -2.2755444, 0.0980055, - -2.9347126, 1.1837193, -2.4965327, -1.1597483, -1.4158425, -0.28081208, - 1.2268056, 0.10801688, -1.2296013, -2.0613878, -1.0909575, -3.4964669, - 1.113005, -2.0261672, 1.0580235, -4.0067544, -0.94473696, -2.4773858, - -1.3226475, -1.4678175, -0.28011197, -2.0759401, -3.3318248, -3.8367453, - -0.98457444, -1.8257895, -2.8533964, -0.5772301, -0.7370397, - -0.26028568, 0.7788365, 0.36148134, -1.1675031, -0.31840494, 1.5276176, - 0.86383885, -0.25935856, -1.0235178, 0.28213587, 1.4659718, -1.3549093, - -2.3732715, -0.24796739, -3.1151032, -2.9187083, -1.7445009, - -0.24115819, 0.76454353, -2.3760123, 1.6338477, 0.8747087, -1.3447765, - -2.7563434, -0.6204669, 1.4788373, -3.8504424, -1.7777596, -0.55093104, - 1.1221843, -4.174518, -0.123027295, -1.5828519, 0.66606843, -0.47899458, - -1.5310359, -2.001483, -2.6187773, -2.2347686, -0.7480952, 0.46104652, - -4.5830913, -3.1925118, -1.9763212, -0.5455297, -1.3041438, 3.0720224, - -0.67059004, -0.2659497, 1.1883438, -0.55871546, -0.4827094, -3.6758842, - -0.80507475, 2.238055, 0.14556433, 0.5242273, 1.9498109, -4.03196, - -0.8461255, -0.4898078, -2.1965842, -2.7860765, -1.2791849, -0.05529912, - -2.3481128, -0.9261902, -3.3252234, -0.58009046, -4.2709527, 0.5797334, - 0.32559645, -2.2581763, -3.9751484, -3.353316, -0.9809823, 0.5113374, - 1.664099, -1.1805911, -1.5253456, 0.2664608, -1.0307086, 1.7490695, - -1.1698972, -3.0471249, 1.2433738, -0.12365215, -1.6023349, -1.8644526, - -1.8194528, 0.056293342, -0.762643, 1.2170544, 0.0872715, -4.8320494, - 2.1962042, -3.680313, -1.137112, -3.5927577, -2.2305439, -2.0476124, - -0.62662643, -0.7882325, -0.45811814, -2.4159355, 1.7718077, 0.93036586, - -0.77652264, 0.25901172, -1.1211385, -2.5421588, -4.7446003, 2.6260223, - -1.1467873, 0.69093335, -0.4314839, -0.72882307, -3.9895513, 0.6990382, - -3.3745205, 1.5488291, 1.0927877, -2.0110583, -0.5304139, -1.068465, - 1.4022919, 1.0407543, -1.2922523, -2.2635508, -3.7632222, -1.8922783, - -0.6210513, 3.0906339, 0.31670207, -0.6250788, -3.591876, -1.8568779, - -0.443946, -1.6809717, -2.6363258, -0.18887177, -0.9160925, 0.87414664, - -1.4465287, -3.9709108, -4.5778804, -2.6399355, -1.5235906, 1.5505104, - -0.223026, -3.2163188, 0.34377596, -1.9569163, -2.815296, -0.9947296, - -2.2296548, -0.99531925, -1.2675365, 0.23589036, -1.5551913, -0.6244218, - 0.17775792, 0.2613602, -4.7768188, -4.7157774, 0.32059282, -1.1099404, - -2.413397, 1.4448494, -3.732297, -4.319057, -1.2483528, -0.5057731, - -1.2479788, -0.066342026, 0.26104748, 1.0739124, -2.1460104, -2.9008448, - -0.5619612, -2.5244784, -0.65430725, -0.39784056, -1.0704283, -3.704677, - 0.000447765, -2.636752, -4.943998, 1.3705504, -1.4359349, 1.0661933, - -3.2099288, -2.6882524, -2.7921352, 0.11907624, 0.35704818, 0.025423724, - 0.7628119, -3.2461462, -0.10190296, -1.1338662, -4.174233, 1.8278084, - -3.3428826, 0.018331774, 0.49909803, 2.5283265, -3.818642, 0.044879943, - 0.16341533, -1.3042203, 1.4155478, -0.06834318, -1.3446146, -2.3571024, - -2.7549036, -2.0140293, -3.7453213, -2.5345595, -2.477061, 0.67903113, - 1.2489984, -0.04060242, -0.10694342, -4.0718913, 1.4619162, -0.479822, - 0.58365047, 1.4231597, -2.6527662, -4.3639154, -2.172819, -0.640738, - -3.8739223, -0.53813124, -3.4490979, -4.3218246, -3.4323578, -1.2922928, - -3.7937813, 1.1674455, 0.88452566, -2.888023, 1.9326484, 1.1634233, - -2.2710807, -3.1343935, -2.9077363, -2.567258, 0.19476286, 0.23603953, - -3.1666775, 1.2475233, -4.2331963, -3.956123, -0.8681747, -1.1796315, - -1.6152707, -1.9154437, -0.6072467, -4.028001, 0.6270018, -1.5127573, - 1.4287314, 1.9739323, -1.8210927, 0.27318588, 0.7602674, 0.54006064, - -3.0025318, -0.013132602, -4.007563, -1.9473522, -2.5071244, - 0.0019273199, -1.7769841, 1.8931813, 0.5867173, -0.33692238, -2.8471966, - -0.45551205, -2.173805, -2.506032, -1.0182236, 0.713593, -2.334552, - 0.050464906, -0.22231871, -1.57145, -2.8778882, 0.04359418, -3.2873769, - -1.2876993, -2.4758198, -3.7919407, 1.3278677, -1.4853477, -0.29294688, - 1.8969203, -2.4923768, 1.870143, -1.7744483, -1.5498501, -3.4300404, - -1.3455986, 0.07397102, -0.49808365, -2.7535942, -3.2034888, 0.69384086, - -1.0658879, -0.55262697, -2.6094377, -3.0124292, -2.7589142, 2.79835, - 0.03308346, -2.1283429, -2.5959277, -3.3477507, -1.9685043, -2.0988, - -1.6138245, -2.8975203, -1.7039521, -4.40231, -1.0056863, -1.3385597, - 0.030006927, 2.0010207, -0.19557986, 0.9088988, -2.212143, -1.8989142, - -1.455219, 1.6304927, 1.4978088, 0.37370843, 3.064334, -0.4754628, - 1.9153473, 0.746414, -2.7951124, -2.5203228, -2.0135448, -2.9580462, - -0.88997185, -2.9726944, -1.5319226, 0.32843107, -0.3250188, -1.7062896, - 0.9965456, -0.2541777, -1.3355155, -1.0476938, -2.331386, -0.96649736, - -0.8902715, -2.8348882, -0.13856578, -1.6947277, 0.24080436, -5.469427, - -0.28298363, -1.0311298, 0.17375828, -2.1731198, -0.66567534, 0.6366025, - -1.0509813, -1.7293667, -0.8374297, -1.5944142, -2.783089, -2.2574763, - -0.14308119, -1.5338681, -4.1894, 0.0122024575, -3.0349514, -0.5389118, - -3.503791, -0.8466447, -0.6030341, -1.4677132, -3.2960124, -1.3065135, - -0.68614155, 3.0796316, -0.8731954, -3.5408342, -0.69254804, -2.468882, - -2.568697, -1.9174616, -2.3494403, -1.446836, 1.1684076, -0.15180011, - -3.4109056, 2.8431976, -0.65302026, -2.885479, 0.107850276, 1.7583852, - -1.6782621, -2.4950404, -1.7831302, 2.6493385, 1.2770883, -2.345086, - -2.9406197, 2.806235, 0.028153688, -1.0290807, -1.81459, -0.86820793, - -2.7550776, 0.60778475, -1.6365782, 1.5973824, -1.5882009, -2.8804243, - -1.4105537, -1.2520115, 1.0385883, -4.1263385, -1.4373075, -1.8809172, - -2.866998, -0.8168938, 1.270475, -0.3698786, -5.104989, 0.5681375, - -0.8880712, -0.13682564, -3.2122428, -3.7790198, -2.334912, -2.9814796, - -1.2381254, -1.6598223, -0.19686374, -2.631772, -1.727883, 0.48368257, - -1.1023253, -1.5037276, -1.0253423, -1.1096804, -2.9001524, 0.7179253, - -2.5128975, -5.24762, -0.9099925, -1.4724319, -5.7146087, -0.4000667, - -0.861738, -1.3951303, -2.776809, -0.52245, 0.4869739, -2.6061342, - -1.2966074, 0.3702203, -0.6724893, 1.2845542, -3.3454661, -1.0560024, - -2.6452613, -0.9474956, -3.5591843, -1.6500314, -1.0957682, - -0.0010255128, 0.060151163, -0.62809765, -4.2050304, 0.72384, -0.629161, - -3.886684, 0.50740844, -0.9303056, -0.07625134, -0.5139513, -0.89854985, - -2.7257638, 0.42165866, -2.8220925, -1.0464956, -1.2263923, -0.7700527, - -1.6822603, -0.9093812, 2.2290998, -3.2549946, -2.0669527, -1.9310576, - -2.4850867, -1.7610102, -1.6075077, -2.8674076, 1.963362, -0.9259282, - -0.2776214, 0.06670183, -2.5074933, -2.669656, -1.1105796, -0.08806798, - -1.5901015, -1.2264059, -4.497833, -1.6114391, -0.2710173, -0.9134674, - -1.3005723, -3.372261, -2.1164556, -3.1956935, -3.6982553, -2.0385675, - -1.2732242, -0.102461085, -2.5334787, -4.1831365, -2.4652324, 0.409414, - -4.859621, -1.9308819, 0.20015796, -0.6400899, -0.42370388, -1.1378064, - -2.151354, 0.10121194, -0.63391936, -0.044722013, -0.17104857, - -3.5661519, -0.79850847, 1.4321249, -3.9294157, 0.25348368, 0.4316484, - 1.1412677, -0.042602956, -1.9740164, -4.1855774, -1.8428134, 2.74728, - -1.1051749, 0.52074546, -2.1362696, -1.6524395, 0.4639877, 1.6059246, - -3.984823, -0.12030756, -2.2507598, -2.2912092, -2.2620227, -1.1775082, - -1.351737, 0.814556, -3.0638363, 1.0453382, -1.7365706, -3.1964495, - -0.5190406, -2.9254007, -1.0193967, -4.771585, -0.22308451, -1.3713795, - -0.5122732, -3.2394297, -1.5230895, -2.9538717, -1.9450994, -3.9122438, - -1.6241709, -3.049314, -2.7840948, -3.2313986, -1.3001037, -1.8462573, - -2.4900627, 2.454965, -2.3728435, -1.294131, 1.2043931, -0.74667406, - -2.6448846, -1.4851772, -1.7485331, -0.45312434, -2.2215352, -1.5616161, - -0.20910832, -1.3507217, 2.3242185, -1.9090526, -2.0511181, 0.4386587, - -4.386893, -2.152744, -1.5695196, -1.7741363, 1.1419647, -1.8748591, - 0.5400093, -1.9876575, 0.27952653, -1.8144262, -2.01203, -1.1443472, - -2.6469843, -0.57550967, 2.2347393, -1.8159871, -1.4552133, 0.77699274, - 0.20133778, 0.85680765, -1.7593908, -2.2373462, -2.0839403, 0.91245776, - -3.1035764, -1.4491054, 0.21742272, -0.3776642, -3.7541454, -0.95705456, - 1.7503644, -0.8381438, 0.2537256, 0.57593805, -2.641122, -2.4127738, - 1.4577878, -0.11939276, 0.08030544, 0.613838, -1.8845044, 0.68680775, - -3.0530577, -3.655169, -1.4266908, -0.01729678, 0.5853936, -1.9615635, - -3.7686434, -1.3030336, -0.8865583, -1.4261919, -1.4935803, 0.08136803, - -4.1285152, -1.6552496, -0.43871704, -1.0113068, -0.5371991, -0.2139631, - -1.7099621, -1.3290457, -0.24585941, -3.7370713, 3.0200799, -0.5319518, - -0.44812208, -1.8222877, -3.6081161, 0.6282474, -0.97424597, -4.5346785, - -3.7917325, -6.2423625, -0.87408197, -0.79766923, 0.9127986, -1.9469383, - -0.32372776, -2.3296278, 0.4475857, -3.930208, 1.3262557, -0.5279317, - -0.5408308, -1.1188041, -0.090590686, -2.7963014, -0.014224563, - -1.2034943, -2.8810906, -2.8190181, -0.7386983, -0.29375726, 3.7624693, - -2.624543, -0.86277986, -0.21672866, -0.5478572, -2.3434973, 0.70309913, - -0.9474581, -2.1145492, 3.3422859, -4.593315, -0.9083521, -2.068277, - -2.5688903, 0.32811132, -0.82875216, -1.7993802, -0.95580584, - 0.07750753, 2.2453253, 0.77007186, -0.9668867, -1.0340143, -0.25117934, - -3.0710158, -1.875599, -0.29348186, -3.8389685, -0.0834652, -2.690261, - -2.647075, -4.7492313, 0.85020685, -3.6214576, -4.492771, -2.496433, - -2.2699437, 0.62196773, -1.4743627, -0.13191357, -1.9193469, -0.1795977, - -0.90567344, -0.28086987, 2.747515, -0.5775955, -0.6130174, -0.6085521, - -2.266429, -3.4215057, -0.8016162, -1.9016263, 0.036220577, -2.4049418, - -0.34529445, 1.2845671, -1.4597759, 0.28011155, 2.6560209, -0.048726644, - -3.8319726, -0.70501816, -2.3716803, -1.3472031, -2.5944848, 0.8112366, - 0.6185733, -1.6699352, -0.74850935, -1.4142393, -2.9092386, -0.5567811, - -0.3179198, -2.0763376, 0.049961362, 0.6292184, -2.5798223, -1.9275535, - 0.7241968, -1.1060907, 1.3502761, -0.75712705, -2.5042298, 0.63266563, - -1.9078522, -0.30368552, 1.2037921, -1.5406984, -5.097269, -2.3655055, - 1.8606374, 0.56861037, -0.93117315, -1.8555549, 2.1524704, 0.6778861, - -1.0857131, -0.64951104, -1.4893798, -1.5199589, -0.27856424, - -0.36450583, -1.2736789, 1.8643304, 1.155476, 0.5807743, 2.0268476, - 1.0499597, -2.2841763, -4.3546443, -4.255714, 0.2460562, -1.8276663, - 4.6290903, -2.6824002, -0.2750348, -2.070624 - ], - "reducedFeatures": [ - 0.027301054, -0.013072617, -0.029949315, -0.010144331, -0.042500224, - -0.014786673, -0.035569645, -0.014493749, -0.040013716, 0.005383285, - -0.023858242, 0.004329902, -0.03698171, -0.002223567, -0.0022413426, - 0.03824685, -0.045036692, -0.025118653, -0.03281927, 0.071956776, - -0.04230483, -0.016367452, -0.025822172, 0.0042111035, -0.029950665, - 0.04265182, -0.02206529, 0.035162747, -0.03339578, -0.035073455, - 0.013888486, 0.01518095, -0.016672553, -0.032810707, 0.002557348, - -0.011580019, -0.029729858, 0.061572287, 0.013178659, -0.00092678145, - -0.00028991804, 0.018153176, 0.0003728018, -0.037466317, -0.014535092, - -0.018623114, 0.034359552, -0.024353499, 0.013069708, -0.014607113, - 0.04264429, -0.037125226, -0.050256997, -0.03144514, 0.0018696492, - -0.036546186, -0.01635055, -0.002550433, -0.038500007, 0.045425076, - 0.015614427, 0.004188631, -0.026843384, -0.043863405, -0.025440944, - -0.0491811, -0.03239068, 0.010727759, -0.050416414, -0.03693287, - -0.016949302, -0.021465013, -0.00059794704, -0.006676016, 0.036356475, - -0.019247511, -0.024393803, -0.022589656, -0.0010403749, -0.0013028162, - -0.03014774, -0.002157398, -0.033825632, -0.026128573, 0.0026099125, - -0.042242136, -0.060505807, -0.027067294, -0.026906893, -0.025699483, - 0.010615351, 0.005469729, -0.02537116, -0.030218117, 0.006520202, - -0.009386195, -0.013393378, -0.023376903, -0.034339882, 0.012976079, - -0.03320213, -0.02930378, 0.011612534, -0.036725268, -0.06765073, - -0.0026946154, 0.04274425, -0.021920519, -0.0249942, -0.06926942, - -0.013282801, -0.033052024, -0.012640388, -0.058326356, -0.046661653, - -0.025521278, 0.004079272, -0.070636496, -0.027817681, -0.0018258839, - 0.02036556, -0.0113064265, -0.009025488, 0.012355987, -0.0120223295, - -0.027294463, -0.0057422766, -0.031762127, -0.06437312, 0.010855852, - 0.018633835, -0.028117297, -0.02564077, 0.0030441892, 0.014792308, - -0.0055536623, 0.041217018, -0.035243828, -0.05855952, -0.030313998, - -0.07043579, -0.0215172, -0.058703084, 0.036907826, -0.03018309, - -0.013843512, -0.0132079655, -0.012833985, -0.018362481, -0.038861822, - -0.004392553, -0.03343178, 0.02588934, -0.03159332, -0.048118573, - -0.013875473, 0.023752859, -0.034840386, -0.060147308, -0.0065188203, - -0.02795347, -0.040007204, 0.013090164, 0.008201657, 0.017661301, - 0.019689826, 0.03259111, -0.04286391, -0.0015149273, -0.047733326, - -0.041539557, -0.06521492, -0.03316387, -0.065818086, -0.0398552, - -0.0013464418, -0.01684282, 0.009242775, -0.011344751, -0.037901253, - 0.0031962714, 0.010148078, -0.06410208, 0.028283393, -0.04786327, - 0.003546349, -0.024021957, -0.031182643, -0.030636916, -0.029894106, - -0.0020070805, -0.015109986, 0.0051219314, -0.02688157, -0.034443002, - 0.040218335, -0.013385671, 0.011154207, 0.009263555, -0.004875543, - -0.010663441, -0.043887086, -0.039662138, -0.022612812, 0.008934445, - -0.018478286, -0.06059231, 0.0069428342, -0.03133852, -0.051322434, - -0.055898074, -0.022362791, -0.025671676, 0.0026376694, -0.02532894, - -0.015517146, -0.005331599, -0.03194422, -0.040549826, 0.012624863, - -0.020766541, -0.02605948, 0.010697469, -0.04449645, -0.00757753, - -3.395882e-5, -0.040893342, 0.021994751, -0.015731122, -0.047872853, - -0.010752647, 0.011506817, -0.00015230913, -0.0420174, -0.04696045, - -0.007080504, -0.014067907, -0.030426713, -0.0014446975, -0.028195335, - -0.025535839, -0.04076981, 0.014229898, 1.0263374e-6, 0.00034067483, - -0.0106782485, 0.015065207, -0.061219234, -0.039550155, -0.049001407, - -0.021850107, -0.037164964, -0.011848598, -0.022580583, -0.06052372, - -0.018572573, 0.0060829762, -0.03548011, -0.04487169, -0.011019409, - -0.05059635, -0.0219769, -0.069027804, -0.059048668, -0.006520123, - -0.0022144683, -0.011213067, -0.032108564, -0.0028765027, -0.027660329, - 0.019025475, -0.03764307, 0.03573701, -0.010194692, -0.063653685, - 0.004425763, -0.06568241, -0.0430553, -0.018290894, -0.026507556, - 0.022643, -0.03794002, -0.030135306, -0.040502336, -0.038542483, - 0.020604732, -0.023016242, -0.0035569281, -0.052061275, 0.013220888, - -0.01961088, -0.016945979, -0.022987956, -0.036613982, -0.02084653, - -0.030391453, 0.007318355, 0.031227116, -0.019152578, -0.02574506, - -0.03994416, -0.036301687, -0.0050086244, -0.027307099, -0.04234158, - -0.042405378, 0.028045975, 0.029904265, -0.026537722, 0.033071443, - -0.037229165, -0.051303383, -0.019091284, 0.01670443, -0.024500154, - -0.01174465, -0.040579654, 0.014588195, -0.036649443, -0.040237468, - -0.023547327, 0.0072491653, -0.008577487, -0.044227164, -0.009656087, - -0.06173561, -0.012076538, -0.024905283, -0.029740008, -0.03234114, - 0.00049847976, -0.015159672, -0.040738057, 0.022746444, -0.041244213, - -0.030201087, -0.008817393, -0.010264935, -0.015744679, -0.012713775, - -0.008368439, -0.017359452, -0.056384478, 0.0037704492, -0.012461434, - 0.014496736, 0.03194242, -0.016552912, 0.0012214374, -0.0037181631, - -0.058490667, -0.0033948363, -0.030580316, 0.0070371768, -0.006622597, - -0.0071749645, 0.0144973295, -0.047970288, -0.02482996, -0.0129283145, - -0.015251966, 0.00341174, 0.033922613, -0.038880218, -0.0060883295, - 0.022297721, -0.022710742, -0.01011909, -0.027141936, 0.022509541, - 0.023307897, -0.03165298, -0.027267328, -0.011570704, -0.014269921, - -0.023640687, 0.005767457, -0.03572261, -0.03581457, -0.026568653, - 0.001970938, -0.06699505, -0.008327991, -0.014308176, -0.008258277, - 0.008018855, -0.013785193, 0.0042762514, -0.03815747, 0.011832522, - -0.031224817, -0.0016556226, -0.012842689, -0.04470212, -0.022990355, - -0.008222365, -0.012027972, 0.014267129, -0.03128989, -0.051507052, - -0.014722508, -0.042677905, -0.034705803, -0.01462339, -0.022823023, - -0.033351656, -0.060986154, -0.02288075, -0.024167849, -0.0137665635, - 0.02224187, 0.0023118292, 0.0089428825, -0.015462492, -0.029915934, - -0.031615864, 0.028677844, -0.021212997, -0.028966596, 0.021993913, - 0.001424433, -0.045024727, -0.012202561, -0.04127603, -0.040443845, - 0.004774985, -0.011468364, -0.032060392, -0.0099568525, -0.039914344, - 0.02405502, 0.02953224, -0.016301606, 0.022063388, -0.003603426, - -0.03278123, -0.004272999, -0.048869796, -0.0033144194, -0.0237939, - -0.023321303, -0.056308452, -0.048249345, -0.0071801106, -0.011610463, - 0.027462414, -0.017654179, 0.02954019, -0.042218015, -0.02944303, - -0.06886011, -0.0068881437, -0.027483674, -0.04459717, -0.016936896, - -0.04738847, 0.03752416, -0.018797, 0.008537882, -0.008020676, - -0.0052297106, -0.02532869, -0.00895566, -0.0012691907, -0.011065784, - -0.035757948, -0.06379736, -0.045952313, 0.0027935447, 0.00030154295, - -0.027274705, -0.044762626, -0.056307532, -0.03784248, 0.00022411483, - -0.04596838, 0.022388512, -0.03560162, -0.035893753, -0.019435752, - -0.068222955, -0.04276227, 0.0013400639, -0.013045121, -0.0069431793, - -0.02325412, -0.014192619, 0.037198987, -0.061119046, -0.051277805, - 0.0006128487, -0.039842468, -0.04895588, -0.03643497, 0.002117447, - -0.0011394286, -0.034005802, -0.0074081975, -0.027683714, -0.022723336, - -0.020098098, -0.0253822, -0.010727269, -0.038690437, -0.028495433, - -0.034711204, -0.00932084, -0.036884375, -0.02052483, -0.030360982, - -0.059881277, 0.013076164, -0.021515938, -0.01470937, -0.025318807, - -0.05396184, -0.048059568, -0.05711898, -0.0014431361, -0.03714615, - -0.00026890557, -0.03404324, 0.0031703576, 0.021093823, -0.009139966, - -0.0141860265, -0.009930936, -0.03889234, -0.055788055, -0.028877914, - -0.005854404, 0.0014989509, -0.019556712, -0.028434152, -0.026324175, - -0.03042543, -0.021399112, 0.022598907, -0.010874748, -0.0030129906, - -0.0513263, -0.034334846, 0.012056282, -0.019811755, -0.04785872, - -0.03291121, 0.016495513, -0.023559116, -0.019354489, 0.0007833621, - -0.025483575, -0.002605342, -0.009063413, 0.018275017, -0.02237712, - -0.014550901, 0.036475636, -0.018115416, -0.031550214, -0.068552956, - 0.022908283, 0.008066691, -0.01596321, -0.051841266, -0.0023299807, - -0.04009613, 0.020078031, -0.032236032, -0.04827121, -0.017020706, - 0.015940445, -0.046780966, 0.013724397, 0.032506123, -0.026000816, - -0.029200401, -0.02929891, -0.020553559, -0.03487417, -0.030356416, - -0.052193537, -0.032687277, -0.0066909557, 0.0070622726, -0.06155234, - 0.0033884442, -0.02810853, -0.012773707, 0.006590306, -0.0012322876, - 0.021614725, 0.02835665, -0.0130445175, -0.039477814, -0.043682557, - 0.0043007196, 0.005977736, -0.042742997, -0.04381676, 0.011689087, - 0.019953974, 0.015715683, -0.07007353, -0.027666558, -0.01811656, - -0.009822384, -0.07310218, -0.017305965, 0.0013744197, -0.020536955, - -0.024374818, -0.009500144, -0.00278316, -0.016871171, -0.027110007, - -0.0122794295, -0.0041556587, 0.023449838, -0.025362037, -0.016447123, - -0.035370506, -0.041677628, -0.06112839, -0.012205349, -0.042926237, - -0.016142048, 0.017056707, -0.021465182, -0.018492768, -0.016862972, - -0.0025520911, -0.015585828, -0.022039553, -0.0061189793, -0.067884885, - 0.0007406598, -0.045210514, 0.011912072, 0.026336834, -0.033500664, - -0.060594026, -0.036291383, -0.03319218, -0.053608507, -0.0027998907, - -0.033148937, -0.043685064, -0.00065614114, -0.0011770618, -0.019142624, - 0.008350036, -0.0046756826, 0.0017068842, -0.027225556, -0.053156864, - -0.020679627, -0.03410751, 0.005054661, -0.081895694, -0.042831086, - -0.037392203, -0.061292816, -0.021401811, -0.02615995, -0.0063980557, - 0.0011322999, 0.018407347, -0.01798241, -0.049840283, -0.014099717, - -0.034184586, 0.025565023, -0.0070900368, -0.001069019, -0.050068796, - -0.0104133375, 0.014580396, 0.056308143, 0.008141009, 0.00947686, - -0.056496374, -0.017787572, 0.043864243, -0.029997798, 0.014929071, - -0.0047827624, -0.03407781, -0.036507852, -0.0453534, -0.02833726, - 0.013314995, -0.018426577, -0.074579686, 0.0187237, -0.071041375, - -0.032017063, -0.017172253, -0.04732784, 0.043810394, -0.017009355, - -0.027093722, -0.013637663, -0.014162501, -0.0015822211, -0.006123204, - -0.01801084, -0.026338484, 0.004763509, 0.018266268, -0.0066226353, - -0.026926246, -0.014905634, -0.022902958, -0.019696131, -0.063065045, - -0.009490273, -0.031527095, -0.023907477, -0.009674436, -0.038750876, - -0.016786292, -0.019626906, -0.041625123, -0.010700396, -0.0052743964, - 0.005760561, -0.020447789, -0.0012141721, -0.08265363, -0.028146831, - -0.015999908, 0.0070813596, -0.018750936, -0.017488893, -0.035672586, - -0.039518658, 0.052493665, -0.015623624, -0.060636688, -0.011610771, - -0.029139824, 0.02509908, -0.0010942105, 0.026071146, -0.02627768, - 0.012346955, -0.007255673, -0.03934134, -0.02066111, 0.003201561, - -0.049887683, 0.0265517, -0.036324013, -0.0091564255, -0.054019723, - -0.025473436, -0.06526144, -0.054551437, 0.018619625, 0.012725918, - -0.022762213, 0.013100299, 0.02662897, 0.014153425, -0.08388657, - -0.039263114, -0.036660083, -0.019780602, -0.02284528, -0.0034052788, - 0.00094656233, 0.0050598867, -0.0030478481, -0.026133658, -0.060178693, - -0.06584468, -0.03848499, -0.038965564, -0.053854343, 0.046932124, - -0.062485714, 0.0050572427, 0.04521638, -0.020391101, 0.0034303314, - -0.028319275, -0.050010595, -0.019876493, 0.015707396, -0.019971643, - -0.032106437, -0.005029465, -0.054549944, -0.05266206, -0.005695235, - -0.08527351, -0.02714554, -0.038891163, -0.03270311, -0.013805703, - 0.012135425, -0.01439602, -0.05776366, 0.046444852, -0.019857537, - 0.008611684, -0.032091066, 0.0035440393, 0.022039915, -0.0043225447, - -0.06378192, 0.019506482, -0.029361399, -0.01002148, -0.014841182, - -0.025628654, -0.04654421, 0.019797165, -0.010291147, -0.034764286, - -0.03575123, -0.01571396, -0.032211356, -0.01393026, -0.013285166, - -0.04398824, -0.0057690116, -0.07403838, -0.052855078, -0.043645736, - -0.0126985805, -0.068641625, -0.020415893, 0.02558754, -0.002596636, - -0.02360466, -0.01547894, 0.001551391, 0.0011520544, 0.0032470839, - -0.040831167, -0.017473826, 0.004251532, -0.009421418, 0.018824255, - -0.052226543, -0.024985883, -0.040376298, 0.048069946, -0.0060823, - 0.038170017, -0.015535684, -0.033681873, -0.04033801, -0.012828637, - -0.038751837, -0.012617159, -0.033534132, 0.010091762, 0.001972762, - -0.032256357, -0.042941917, -0.02840665, -0.0103304, -0.00999311, - -0.04804691, -0.018061858, 0.001106939, -0.064349756, 0.029285852, - -0.047680937, -0.00316672, 0.020026186, -0.034556188, -0.036226112, - -0.028156549, 0.03506363, -0.022173535, -0.0332215, -0.032282032, - 0.010502941, -0.04382396, -0.01071802, -0.048399217, -0.073399186, - 0.037143756, -0.013231054, 0.024249444, -0.01206343, -0.038429283, - 0.011532208, -0.02202847, -0.02315138, -0.04864813, -0.06450024, - 0.01755719, -0.010485599, 0.021206487, -0.031329535, -0.06635802, - 0.03696153, -0.0481934, 0.031221103, -0.04261701, 0.009716218, - -0.0034409424, -0.01839256, -0.037437744, -0.038329743, -6.0099188e-5, - -0.045237303, -0.016482426, -0.0039061434, 0.010135386, -0.019195773, - -0.015019594, -0.029410701, 0.00082058966, 0.0041716048, 0.028926786, - 0.043552835, 0.0379623, -0.057158895, -0.03921127, -0.034005426, - 0.0067964755, -0.053068664, 0.021743575, 0.015323135, -0.004957699, - -0.028175963, 0.0061589056, -0.03302031, 0.0032129744, -0.053105213, - 0.0406124, -0.026509037, -0.032577194, -0.024753166, 0.021324119, - -0.055673413, 0.0024033163, -0.0138866855, -0.004994947, -0.024305867, - 0.002736619, 0.014627381, -0.0123981545, -0.00025010036, -0.04127615, - -0.04207031, -0.051230356, -0.042931415, -0.057398055, -0.0414498, - 0.009352007, -0.037206072, -0.06830561, -0.018204952, -0.031187225, - -0.06462004, -0.051436022, -0.009475925, -0.010910709, -0.00645607, - -0.02074639, -0.052303873, -0.003270954, -0.019855669, 0.030179419, - -0.030841826, -5.713313e-6, -0.035514243, -0.020062482, -0.046128977, - -0.006806338, -0.022770885, -0.041547213, -0.016372954, -0.07984579, - -0.004034805, -0.03957889, -0.0062860125, -0.0066660335, 0.008559032, - -0.037142795, -0.029983215, -0.022920674, -0.015970942, -0.016491197, - -0.016234364, -0.057261534, -0.068562925, -0.03430985, -0.010119853, - 0.023280788, -0.04237782, -0.0064584543, -0.045637842, 0.017129831, - 0.00949551, -0.02482733, -0.027388858, -0.00016772961, -0.0070637814, - 0.037448045, -0.007117301, -0.0485798, -0.036413833, 0.037325986, - -0.034579027, 0.0038529744, 0.010174594, -0.0031912576, -0.030023068, - -0.032862782, -0.009184888, -0.023800885, 0.0050286106, -0.047404673, - -0.06703321, -0.015675262, 0.012956997, 0.043651342 + "features": [ + 0.011833177, + -0.005691369, + -0.014657207, + -0.0060637463, + -0.020929342, + -0.007712169, + -0.016980033, + -0.007202498, + -0.020346204, + 0.003234924, + -0.012447319, + 0.0009230675, + -0.016822958, + -0.0016516058, + -0.0010470732, + 0.017090771, + -0.021829594, + -0.0123515865, + -0.017612437, + 0.03838417, + -0.019563327, + -0.007558338, + -0.012202268, + 0.0019735752, + -0.0151688475, + 0.021867774, + -0.0127218, + 0.018106325, + -0.014602644, + -0.016851995, + 0.008001346, + 0.007561467, + -0.0076569933, + -0.015103379, + 0.0006788207, + -0.0052350857, + -0.015887946, + 0.029839126, + 0.0071830926, + -0.0012325039, + 0.0026390739, + 0.008173356, + -0.00064481265, + -0.01824106, + -0.005669639, + -0.008982614, + 0.016992964, + -0.012326709, + 0.0066493647, + -0.008399017, + 0.019981015, + -0.019244218, + -0.025479551, + -0.016460719, + -9.916274e-05, + -0.016741412, + -0.009313033, + -0.0013716683, + -0.020448452, + 0.022530725, + 0.007782746, + 0.0010321015, + -0.01338734, + -0.021433549, + -0.011855238, + -0.02348605, + -0.01315132, + 0.005219033, + -0.025309654, + -0.01951627, + -0.009654872, + -0.010508005, + -0.00033804757, + -0.0029554442, + 0.016392186, + -0.009719713, + -0.012079865, + -0.010683904, + -0.0004791842, + 0.0009311923, + -0.014085078, + -0.0020206876, + -0.01762178, + -0.011728986, + -0.00015711976, + -0.021578863, + -0.030142503, + -0.012761029, + -0.013334937, + -0.011129171, + 0.004228533, + 0.0027022555, + -0.011112518, + -0.014984667, + 0.0006357577, + -0.0055499086, + -0.0062240637, + -0.0130336955, + -0.018222509, + 0.0072729266, + -0.016552718, + -0.014308708, + 0.0033479875, + -0.018441172, + -0.033998616, + -0.0018971594, + 0.020452507, + -0.0088510215, + -0.012404027, + -0.03545862, + -0.006133589, + -0.017460782, + -0.0068968916, + -0.028863268, + -0.022238195, + -0.0138309235, + 0.0016092884, + -0.03322321, + -0.014783344, + -0.0030384185, + 0.009363255, + -0.00563836, + -0.005504498, + 0.006264766, + -0.0060774544, + -0.0119055025, + -0.0017858592, + -0.016367374, + -0.030011423, + 0.004167545, + 0.0081560565, + -0.012185903, + -0.013925236, + 0.0026340347, + 0.007736638, + -0.004412311, + 0.021058006, + -0.016865842, + -0.029015645, + -0.015009921, + -0.035520684, + -0.010325842, + -0.030291287, + 0.0184655, + -0.016173642, + -0.007637902, + -0.00806975, + -0.0068425275, + -0.009596386, + -0.020231387, + -0.0035105527, + -0.016925698, + 0.012847183, + -0.013779197, + -0.023715815, + -0.0070070443, + 0.01094613, + -0.017110903, + -0.028179932, + -0.0033985528, + -0.016152572, + -0.019818433, + 0.0040856353, + 0.002890191, + 0.008874397, + 0.011097961, + 0.014438361, + -0.02213631, + -0.0021928707, + -0.023867117, + -0.020766146, + -0.031740945, + -0.015900068, + -0.030722044, + -0.01984969, + -0.00049692456, + -0.008354249, + 0.0037749037, + -0.0061916043, + -0.01794333, + 0.0011941959, + 0.0043058847, + -0.03269026, + 0.01344121, + -0.023525804, + 0.002657364, + -0.013001033, + -0.017279834, + -0.0140914675, + -0.014969687, + -0.002367478, + -0.0067188675, + 0.0038203704, + -0.0130807785, + -0.017001241, + 0.02183282, + -0.006586414, + 0.0048523895, + 0.002752195, + -0.00245397, + -0.0060104155, + -0.021022115, + -0.018913416, + -0.011421806, + 0.0033466243, + -0.008043015, + -0.029516902, + 0.0041082734, + -0.014344106, + -0.025530852, + -0.027268229, + -0.010185285, + -0.01399157, + 0.0010547272, + -0.012863539, + -0.009005251, + -0.0036347082, + -0.015701052, + -0.01973628, + 0.005568686, + -0.010963226, + -0.013540802, + 0.005395212, + -0.023173705, + -0.0052688937, + 0.0019661216, + -0.02060737, + 0.010527355, + -0.0073471065, + -0.021546174, + -0.006131125, + 0.005762465, + 0.0014384914, + -0.021612113, + -0.02477408, + -0.003988277, + -0.0068041626, + -0.015405133, + -0.0015749459, + -0.013641567, + -0.013088163, + -0.018820679, + 0.0075816475, + -0.0018239475, + 7.085344e-05, + -0.004459869, + 0.006975323, + -0.029962717, + -0.019977126, + -0.024117118, + -0.009212337, + -0.018201403, + -0.0077159563, + -0.01168114, + -0.0314033, + -0.010606234, + 0.0038894834, + -0.018083934, + -0.021403302, + -0.005557717, + -0.02277002, + -0.009847233, + -0.033247944, + -0.028456047, + -0.0017958848, + -0.0018249889, + -0.005940981, + -0.016029729, + -0.0014461322, + -0.01460699, + 0.00860831, + -0.017980138, + 0.019100677, + -0.0053187455, + -0.032204725, + 0.0011196703, + -0.032311585, + -0.019179177, + -0.008200687, + -0.012269849, + 0.012092438, + -0.018702984, + -0.013718933, + -0.020494929, + -0.018203737, + 0.010147913, + -0.011534934, + -0.0017337424, + -0.02470605, + 0.005933295, + -0.007858162, + -0.009752346, + -0.011728559, + -0.018339287, + -0.010483766, + -0.014342747, + 0.0057148444, + 0.013603795, + -0.009114996, + -0.013484018, + -0.021711273, + -0.018296642, + -0.002204662, + -0.013281666, + -0.021682108, + -0.019867202, + 0.01391531, + 0.01462289, + -0.013338747, + 0.016549975, + -0.017659405, + -0.025218636, + -0.00868571, + 0.006338324, + -0.011583297, + -0.007155268, + -0.020666696, + 0.007570746, + -0.019538078, + -0.020281183, + -0.01345533, + 0.0039304136, + -0.002734814, + -0.0229821, + -0.0060081487, + -0.031085225, + -0.006163276, + -0.012601611, + -0.015161525, + -0.015392057, + -0.0012649585, + -0.00876247, + -0.020856556, + 0.011765534, + -0.02008739, + -0.01611842, + -0.0039584637, + -0.0045792744, + -0.00897152, + -0.006318332, + -0.004475734, + -0.0094515905, + -0.026960196, + 0.003104667, + -0.0064223385, + 0.0059621735, + 0.014372566, + -0.0075945994, + -0.0016208931, + -0.0008244108, + -0.029034266, + -0.0010906567, + -0.015859568, + 0.003406493, + -0.003744359, + -0.005114271, + 0.0069650286, + -0.022936162, + -0.012877462, + -0.0055102613, + -0.008103296, + 0.0011548593, + 0.016563205, + -0.018188814, + -0.0027957796, + 0.011944471, + -0.009689097, + -0.0044937637, + -0.014108227, + 0.009733129, + 0.011576023, + -0.01666543, + -0.013446399, + -0.005166911, + -0.0082126865, + -0.010515405, + 0.0023486733, + -0.018279979, + -0.016998434, + -0.012576387, + -0.0003651929, + -0.03301223, + -0.0039958325, + -0.0062083625, + -0.004196715, + 0.004725612, + -0.006454865, + 0.0011992893, + -0.01828489, + 0.004968802, + -0.01565259, + -0.0011559371, + -0.004964596, + -0.02187903, + -0.011812829, + -0.0051360074, + -0.005634315, + 0.00567935, + -0.015979521, + -0.024028875, + -0.0062526064, + -0.021353966, + -0.016400125, + -0.008266106, + -0.010653171, + -0.015636468, + -0.030907298, + -0.010731415, + -0.011053201, + -0.006995203, + 0.011442984, + 0.0014323059, + 0.0024896956, + -0.007996348, + -0.016718054, + -0.0155288875, + 0.015163101, + -0.011084608, + -0.015499642, + 0.010928491, + 0.0010318096, + -0.021441836, + -0.008495814, + -0.019769061, + -0.019590447, + 0.0017940514, + -0.0058560986, + -0.016167749, + -0.006564123, + -0.02044159, + 0.011205623, + 0.014226885, + -0.005985633, + 0.012645344, + -0.002314699, + -0.016994549, + -0.003175752, + -0.025211697, + -0.003239216, + -0.015058269, + -0.011479587, + -0.02777685, + -0.023533456, + -0.0043606134, + -0.0044216, + 0.013682197, + -0.0076425364, + 0.013586371, + -0.021908846, + -0.014299256, + -0.034382403, + -0.001912012, + -0.013509983, + -0.021876803, + -0.009408842, + -0.021747585, + 0.017999748, + -0.009881222, + 0.0049566804, + -0.004319614, + -0.00040492593, + -0.011825688, + -0.0049072765, + -0.0026803368, + -0.006846077, + -0.019013906, + -0.03075664, + -0.021302951, + 0.00222215, + 0.0014600158, + -0.013686444, + -0.021128742, + -0.028502159, + -0.017718643, + 0.00013163015, + -0.021991221, + 0.009604462, + -0.017738516, + -0.018769339, + -0.009268483, + -0.033598293, + -0.023211725, + 0.00013287264, + -0.0068213106, + -0.0042722737, + -0.01244566, + -0.0066002803, + 0.01639598, + -0.03157399, + -0.023465391, + -0.0010813825, + -0.019384999, + -0.022620479, + -0.01864628, + 0.0021460876, + -0.0009295103, + -0.018236011, + -0.0046373024, + -0.010405926, + -0.0116415005, + -0.010419702, + -0.013773495, + -0.0050226916, + -0.018848745, + -0.013594151, + -0.017232476, + -0.005511355, + -0.016159466, + -0.011698847, + -0.01599029, + -0.030696787, + 0.00745537, + -0.01063764, + -0.005252753, + -0.012408479, + -0.027107034, + -0.023296066, + -0.028932013, + 7.446973e-05, + -0.019984167, + -0.0010775786, + -0.019015476, + 0.001558146, + 0.01293274, + -0.0051872795, + -0.009047473, + -0.005210707, + -0.018157551, + -0.028490838, + -0.0140392305, + -0.0026396723, + 0.0017202453, + -0.008153103, + -0.015788788, + -0.013494051, + -0.014576794, + -0.0118742, + 0.010606444, + -0.0034921202, + -0.0004345676, + -0.026346542, + -0.017874485, + 0.005014526, + -0.010486524, + -0.022483844, + -0.014308164, + 0.00813432, + -0.01110255, + -0.010839654, + 0.0008798177, + -0.011918001, + -0.0015902057, + -0.0053459876, + 0.009107953, + -0.01097922, + -0.006136511, + 0.018937692, + -0.008826214, + -0.016716586, + -0.03324094, + 0.010307857, + 0.0032081378, + -0.007444118, + -0.025951201, + -0.0007929627, + -0.02008283, + 0.008675014, + -0.01738177, + -0.02424778, + -0.008176329, + 0.008626345, + -0.023193972, + 0.0065043224, + 0.014908916, + -0.012217559, + -0.013621808, + -0.014231772, + -0.009584779, + -0.018466642, + -0.014542284, + -0.02437398, + -0.01664222, + -0.0030458998, + 0.0044612093, + -0.028358264, + 0.002376968, + -0.013302391, + -0.00665072, + 0.0024307722, + -0.0015008765, + 0.009736572, + 0.013612504, + -0.006791756, + -0.018925369, + -0.021705825, + 0.0022973474, + 0.0028318306, + -0.021366844, + -0.021454759, + 0.0075275307, + 0.008955462, + 0.006436159, + -0.033773627, + -0.013933165, + -0.00877556, + -0.0052234363, + -0.0354545, + -0.006969422, + 7.30946e-05, + -0.012220928, + -0.010733973, + -0.002858135, + -0.0020874743, + -0.0073102918, + -0.0139330095, + -0.007280234, + -0.00062159024, + 0.011051713, + -0.012661084, + -0.00871505, + -0.01541716, + -0.020320632, + -0.029866511, + -0.0037521, + -0.022125427, + -0.00644746, + 0.008253781, + -0.008688055, + -0.008648394, + -0.008085562, + -0.0016522652, + -0.008779894, + -0.009578818, + -0.0024499162, + -0.034742888, + 0.0008398694, + -0.021160133, + 0.0034485727, + 0.0141029935, + -0.01640715, + -0.029500863, + -0.017466988, + -0.016398633, + -0.027093742, + -0.0027670155, + -0.015558653, + -0.023591928, + 0.00031487588, + -0.0015219343, + -0.00871193, + 0.0031315095, + 0.0004876902, + 0.00081349176, + -0.014713423, + -0.025471495, + -0.010644498, + -0.0160973, + 0.003265853, + -0.040011268, + -0.021311643, + -0.019189147, + -0.029716186, + -0.010931596, + -0.012318353, + -0.0035153239, + -0.001160379, + 0.009905426, + -0.009492241, + -0.024783045, + -0.0063269427, + -0.01654225, + 0.010544913, + -0.0028164499, + -0.0005917758, + -0.024335165, + -0.0063572577, + 0.008428771, + 0.027655985, + 0.0046211854, + 0.0057413117, + -0.027076583, + -0.00913609, + 0.020776652, + -0.012722847, + 0.0065172464, + -0.002288307, + -0.016499346, + -0.016733147, + -0.02182516, + -0.012751705, + 0.007146044, + -0.008478668, + -0.036085896, + 0.008698131, + -0.03384681, + -0.01587758, + -0.008656577, + -0.024067596, + 0.021396771, + -0.007213302, + -0.013836808, + -0.006584196, + -0.0071151857, + -0.0009716164, + -0.0034719866, + -0.0085282475, + -0.012042201, + 0.002064354, + 0.00894855, + -0.0020765946, + -0.012092722, + -0.008011428, + -0.010255653, + -0.008558903, + -0.03133506, + -0.0063463496, + -0.016411472, + -0.011960485, + -0.0039252355, + -0.02001836, + -0.007827528, + -0.010847132, + -0.020362489, + -0.004108151, + -0.003197109, + 0.004682612, + -0.0118174665, + -0.0018244474, + -0.039871167, + -0.015400164, + -0.008002618, + 0.0039900597, + -0.011734591, + -0.009098141, + -0.018860834, + -0.020483354, + 0.024265232, + -0.008226428, + -0.029252313, + -0.004620114, + -0.015713392, + 0.01275621, + 0.0011657716, + 0.013574725, + -0.011102811, + 0.0056949677, + -0.00412821, + -0.01908078, + -0.010311426, + 0.00040803984, + -0.025830733, + 0.011858415, + -0.018357376, + -0.004453713, + -0.028218826, + -0.011732574, + -0.03249778, + -0.026390236, + 0.008905814, + 0.0063580843, + -0.011628441, + 0.006674033, + 0.014501029, + 0.0054518916, + -0.041648492, + -0.018804135, + -0.016797207, + -0.010990507, + -0.011086534, + -0.0016094334, + 0.00018305577, + 0.004671164, + -0.00072608603, + -0.011330358, + -0.027672773, + -0.033251435, + -0.017552286, + -0.018611021, + -0.027278623, + 0.023618098, + -0.03094576, + 0.0033889501, + 0.021798309, + -0.009626991, + 0.003967774, + -0.014141184, + -0.025001531, + -0.01062376, + 0.0087821055, + -0.007220251, + -0.016594704, + -0.002870494, + -0.028034996, + -0.02746995, + -0.002403599, + -0.044593528, + -0.01295175, + -0.017263006, + -0.015580376, + -0.0070779854, + 0.0044440785, + -0.008286323, + -0.029110525, + 0.02196828, + -0.010216924, + 0.005727174, + -0.016398188, + 0.00059586216, + 0.009915282, + -0.004207987, + -0.030480698, + 0.009855519, + -0.014605568, + -0.004822786, + -0.007097813, + -0.012834119, + -0.024438206, + 0.009246984, + -0.004054283, + -0.016238997, + -0.016979633, + -0.008443519, + -0.015860498, + -0.008241012, + -0.0077459803, + -0.022529993, + -0.004791247, + -0.03799877, + -0.02622947, + -0.021836963, + -0.006815284, + -0.03335205, + -0.009615278, + 0.013846149, + -0.0029833568, + -0.012103234, + -0.0068086283, + 0.0020488522, + 0.00020694503, + 0.0028690281, + -0.019315673, + -0.007508826, + 0.0034110814, + -0.005270861, + 0.008343326, + -0.026157038, + -0.012406413, + -0.017602505, + 0.025313176, + -0.0035059978, + 0.017584842, + -0.0060067405, + -0.015530975, + -0.019669231, + -0.007021605, + -0.018340817, + -0.00673774, + -0.017542604, + 0.0061999275, + 0.003099107, + -0.017000968, + -0.021685494, + -0.012855765, + -0.0045545367, + -0.006946047, + -0.02420399, + -0.0098222615, + 0.003608053, + -0.031049013, + 0.016072625, + -0.023663294, + -0.0026203285, + 0.011425652, + -0.020179356, + -0.017563628, + -0.013852788, + 0.018628677, + -0.0102729695, + -0.018270928, + -0.016867364, + 0.004401518, + -0.02103024, + -0.0053752693, + -0.02412374, + -0.0365427, + 0.018111194, + -0.0058433292, + 0.011691805, + -0.0073890705, + -0.017963983, + 0.00546801, + -0.010756286, + -0.010145724, + -0.022104662, + -0.03070122, + 0.006764236, + -0.004222018, + 0.008826249, + -0.01618774, + -0.03216298, + 0.017225962, + -0.02161645, + 0.016538788, + -0.023349052, + 0.0037896652, + -0.0014883709, + -0.010058509, + -0.018617343, + -0.019692697, + -0.00068129244, + -0.02241359, + -0.008195388, + -0.00091701176, + 0.0044238283, + -0.008612409, + -0.007590614, + -0.013132634, + 0.0013362722, + 0.0025769952, + 0.013243563, + 0.022720296, + 0.01743561, + -0.028352039, + -0.021815775, + -0.016554298, + 0.0046282625, + -0.027913671, + 0.010558188, + 0.0091214245, + -0.0027775594, + -0.013139819, + 0.0043307478, + -0.015703287, + 0.0013001211, + -0.027138757, + 0.021368643, + -0.013204059, + -0.01596361, + -0.012241575, + 0.010332743, + -0.027683403, + 0.00093484257, + -0.006730151, + -0.002849661, + -0.012030958, + 0.0025206583, + 0.0052601923, + -0.006490228, + 0.00048168213, + -0.02163276, + -0.020623473, + -0.026197612, + -0.022473542, + -0.027687851, + -0.019577611, + 0.006694874, + -0.017880684, + -0.034114495, + -0.009021674, + -0.014214267, + -0.031575076, + -0.025790494, + -0.0051030344, + -0.0048143347, + -0.0025124508, + -0.008578988, + -0.026332213, + -0.0014439974, + -0.009142683, + 0.0140613625, + -0.016280392, + -0.0002980411, + -0.017240303, + -0.009709091, + -0.023807026, + -0.004704942, + -0.010789964, + -0.0191336, + -0.00852885, + -0.03982625, + -0.002129157, + -0.019577771, + -0.0035653254, + -0.0031234093, + 0.003988768, + -0.018478146, + -0.014421196, + -0.011739734, + -0.009196453, + -0.009333934, + -0.009823587, + -0.026400464, + -0.03244514, + -0.017014261, + -0.006188449, + 0.012943472, + -0.021513183, + -0.001551069, + -0.023079144, + 0.0068675424, + 0.0038316636, + -0.012036896, + -0.014134756, + -0.0016000514, + -0.0049957056, + 0.016420411, + -0.00465487, + -0.025108654, + -0.019310052, + 0.017165136, + -0.017057627, + 0.00064068864, + 0.0033327965, + -0.001726926, + -0.014399958, + -0.016062591, + -0.0056660855, + -0.01095315, + 0.0017327613, + -0.023671184, + -0.034152657, + -0.0066002035, + 0.0040903552, + 0.020642454, + 0.0029085302, + -0.027012212, + -0.012122046, + -0.031409536, + -0.011721573, + -0.008007925, + -0.00811974, + 0.022353934, + -0.010578808, + -0.012525601, + 0.005279944, + -0.008700707, + -0.03134369, + -0.032209735, + -0.012263976, + -0.02660912, + -0.0011217864, + -0.009242891, + -0.008690371, + -0.024061512, + 0.009432892, + -0.002594408, + -0.017067997, + 0.004082354, + -0.023276398, + -0.036774356, + 0.012186186, + -0.021333104, + -0.01899394, + 0.0056791385, + -0.029579237, + -0.009825577, + -0.014890816, + -0.005747901, + 0.0069608246, + -0.004334367, + -0.0009478631, + 0.0008241026, + -0.041249372, + -0.038627166, + -0.020799017, + 0.01117145, + 0.0017187358, + -0.002828317, + -0.019112816, + -0.013244114, + -0.019721774, + -0.035017684, + -0.026929103, + 0.0014015803, + -0.0053173634, + -0.01795421, + -0.020179423, + -0.022709891, + -0.0041571795, + -0.011316425, + 0.016953835, + -0.008286735, + -0.021672007, + 0.0064284992, + -0.0131564215, + -0.023739217, + -0.02047045, + 0.005783428, + -0.007639081, + -0.0062099244, + -0.034549918, + -0.0041796886, + -0.015427125, + 0.0061448016, + -0.019735925, + 0.020958375, + -0.011889639, + -0.014067148, + -0.019157123, + -0.007602045, + -0.010618156, + -0.006223593, + -0.008682896, + -0.0066082524, + 0.00507557, + -0.00702652, + -0.013877855, + -0.016363025, + -0.009065205, + 0.0072959466, + -0.011317787, + 0.0035440035, + 0.0038521294, + -0.013228583, + -0.022074176, + -0.014034869, + -0.009858809, + -0.010719642, + -0.009309774, + -0.007076987, + -0.008696687, + 0.0009621209, + -0.01451771, + 0.0138710635, + -0.016420702, + -0.010457615, + -0.017179543, + 0.014695881, + -0.03421879, + -0.015338956, + -0.016608424, + -0.02495772, + -0.00870463, + 0.0040474148, + -0.028643884, + -0.016657809, + -0.024701186, + -0.009665589, + -0.011539894, + -0.014942199, + -0.008737505, + -0.0061214427, + 0.0024847726, + -0.0030433568, + -0.016406773, + -0.0068846717, + -0.0066966307, + -0.011367381, + -0.0051736976, + -0.009767015, + 0.015545983, + -0.006946593, + -0.008812586, + -0.026060514, + -0.0033522083, + -0.0033755, + -0.019415295, + -0.011018093, + -0.007993024, + -0.022761993, + -0.015784888, + -0.012007332, + -0.015085633, + -0.014655057, + -0.01489373, + -0.008948133, + -0.017273577, + 0.002354616, + 0.0052316557, + -0.0153480135, + 0.009776263, + -0.010279334, + -0.026653748, + 0.0022923404, + 0.00517536, + -0.019415876, + 0.018744586, + -0.012809453, + -0.019812008, + -0.014605139, + -0.024002617, + -0.02278417, + -0.020812564, + -0.010726441, + 0.0001808766, + -0.010196979, + 0.018972127, + -0.006033713, + 0.009857378, + -0.005028781, + 0.0053699743, + 0.027696243, + 0.0028314348, + -0.025497248, + -0.025331102, + -0.012708461, + -0.011485083, + -0.0131844375, + -0.032870352, + -0.0008461726, + -0.0066921813, + -0.013760263, + 0.024318995, + -0.0088994, + -0.013256511, + -0.019289626, + -0.01707887, + -0.022777332, + -0.028504819, + -0.009635933, + -0.0030758332, + -0.01722059, + -0.016778274, + 0.0034761124, + 0.0025618447, + -0.019527173, + 0.00046493852, + 0.002640228, + 3.0501775e-07, + -0.027253332, + -0.0098883305, + -0.031244772, + -0.022919185, + 0.023784414, + -0.017145213, + -0.015648989, + -0.0072060665, + -0.020145979, + -0.023614835, + -0.00259656, + -0.008833904, + -0.019183345, + -0.015728509, + -0.01134969, + -0.002219928, + -0.018579716, + 0.0030461396, + -0.012888856, + 0.008579136, + -0.012349409, + 0.003049621, + 0.0041661165, + -0.023485858, + -0.03317071, + 0.0047006267, + -0.010059317, + 0.0013394293, + -0.016142692, + -0.026565816, + -0.009177238, + -0.0065180724, + -0.015701007, + 0.0015573971, + 0.0121222325, + -0.019708002, + 5.49083e-05, + -0.017553266, + -0.0027750856, + -0.004466839, + -0.007992853, + -0.01017481, + -0.0048321355, + -0.0005506185, + -0.015949734, + 0.008701617, + 0.011093287, + -0.0026104143, + 0.007078545, + -0.014618136, + 0.007594774, + -0.022489835, + -0.017765196, + -0.010477505, + -0.01165857, + -0.029958146, + -0.033461664, + -0.018899828, + -0.0015335694, + 0.0015298337, + 0.004561764, + -0.010822818, + -0.019245204, + -0.01955496, + -0.011943282, + -0.018254152, + -0.0111084385, + -0.03664402, + -0.02687316, + 0.007721087, + 0.0043140007, + 0.020794464, + -0.0049916576, + -0.0048374822, + -0.01337019, + -0.0021573054, + -0.02234587, + -0.031293973, + -0.0053571532, + 0.014185044, + -0.019532314, + 0.0062837084, + -0.00069508137, + 0.018858323, + -0.015076551, + -0.02010451, + -0.01390116, + -0.020291418, + 0.01890819, + -0.0035002797, + 0.0041616373, + -0.0008661852, + -0.002489856, + -0.015334321, + 0.001390452, + -0.010343641, + -0.009031223, + -0.02307419, + -0.032513507, + -0.018429695, + -0.0009250092, + 0.00023170482, + -0.0055188923, + -0.03328314, + -0.025615936, + -0.00089846697, + -0.02577889, + -0.0149325095, + 0.011043903, + -0.03077201, + 0.0073036104, + -0.026547715, + -0.005202245, + 0.017451009, + -0.015515494, + -0.024444686, + -0.03038463, + -0.004094264, + -0.043304022, + -0.01670102, + -0.018973604, + -0.0029879939, + -0.012217139, + -0.021854065, + -0.020509815, + -0.03142158, + -0.023948725, + -0.019552957, + -0.0026008252, + -0.0014417939, + 0.010607704, + -0.02955786, + -0.029772356, + -0.024388278, + -0.014716661, + -0.017210139, + -0.023534486, + 0.0013067019, + -0.011208436, + -0.01016644, + -0.012010449, + 0.015968243, + -0.0043401085, + 0.009324313, + -0.019761713, + 0.015378092, + 0.0026656538, + -0.019015104, + 0.00869929, + -0.004150267, + -0.0022309234, + -0.008113014, + 0.0063450807, + -0.028271718, + -0.02511694, + 0.029923398, + -0.009388505, + -0.0016091813, + 0.005570278, + -0.0035135765, + -0.013131683, + -0.018161424, + -0.019607713, + -0.023954427, + -0.0064862706, + -0.016996903, + -0.018115263, + -0.00074990845, + -0.021462994, + -0.0175506, + -0.019312257, + -0.022729682, + -0.03388552, + -0.0031438072, + -0.01718937, + -0.0009496899, + -0.015162093, + -0.018429171, + 0.0003985336, + -0.013008945, + -0.0015892676, + -0.013226766, + -0.00650512, + 0.012801333, + 0.0029851235, + -0.0055152224, + -0.010453989, + -0.018703714, + -0.0020101212, + -0.02792254, + -0.025985641, + -0.009526906, + -0.027255869, + -0.0006862349, + -0.022413293, + -0.010413152, + -0.0069175595, + -0.008936682, + -0.01382683, + 0.009316748, + -0.0111897625, + -0.011583051, + -0.0060497527, + -0.008953204, + -0.021504525, + 0.0044514714, + -0.000766421, + 0.011180867, + 0.0031993983, + -0.018040625, + -0.010105319, + -0.0095582465, + 0.0062670745, + 0.026288034, + -0.02079395, + 0.007009168, + 0.006652688, + -0.024071483, + -0.002929313, + -0.028557071, + 0.0075905332, + -0.017221468, + -0.027101837, + -0.017251514, + 0.0035474275, + 0.0008374734, + -0.022869678, + -0.0010949643, + -0.027459484, + -0.016334163, + 0.0064406865, + -0.007755751, + -0.009586464, + 0.005614709, + -0.004162479, + -0.010993857, + -0.015950495, + 0.0018862906, + -0.027140077, + -0.03380572, + -0.012368172, + -0.010971999, + -0.010282461, + -0.0042791776, + -0.006227874, + 0.00896523, + 0.0070929155, + 0.0041674934, + -0.019477902, + 0.008071421, + -0.0329556, + -0.0038007253, + -0.012689406, + -0.010657181, + -0.032206938, + -0.0077291355, + -0.012979208, + 0.005743795, + -0.02671463, + -0.00975119, + -0.03191179, + -0.016689144, + -0.013377598, + -0.0022371449, + -0.0076066623, + 0.0038533835, + -0.0025606682, + -0.017541837, + -0.009384312, + -0.029831905, + 0.0066749165, + -0.0033813326, + -0.014675234, + -0.019586867, + 0.010817113, + -0.011801554, + -0.04019491, + -0.02678614, + -0.0076181404, + -0.017684324, + -0.02337104, + 0.018615795, + -0.0075565088, + -0.012482268, + 0.0035150722, + 0.015808215, + -0.011356075, + -0.0066544563, + -0.030560207, + -0.0101387035, + -0.019144187, + -3.2782193e-06, + 0.020114725, + -0.012245309, + -0.014081248, + -0.024981773, + -0.0051926314, + -0.003151228, + 0.0017693056, + -0.012270058, + -0.019039847, + -0.025022006, + -0.016305683, + -0.013659573, + -0.0019900978, + -0.014761648, + -0.014025616, + -0.031575255, + -0.000545205, + -0.011561597, + -0.033531733, + -0.0011743186, + -0.02856733, + 0.0051306593, + -0.008592932, + -0.012477263, + -0.007132612, + -0.004636477, + 0.007077649, + 0.014776384, + 0.014727222, + -0.029027423, + 0.00028928713, + -0.014818026, + 0.007663026, + -0.02108554, + 0.030930422, + 0.0057114493, + -0.017042618, + -0.018468535, + -0.017820155, + -0.01745327, + 0.0024822776, + 0.0025801074, + -0.014177743, + -0.026665172, + -0.01063288, + -0.0023127166, + 0.00511623, + -0.015869863, + -0.022751076, + -0.024642242, + -0.014251095, + 0.008558533, + 0.0064947177, + -0.02320412, + 0.038712975, + -0.0048440564, + 0.0025976617, + 0.009569019, + -0.004151133, + 0.005189277, + -0.026000477, + -0.011432064, + -0.0108534945, + -0.0061593526, + -0.020962406, + -0.012499323, + -0.00883759, + -0.025788255, + -0.008508449, + -0.020905493, + -0.014209192, + -0.025143694, + -0.0041057155, + -0.015022687, + -0.0018766286, + -0.010452502, + -0.020843146, + -0.005453578, + 0.0084807705, + -0.043306287, + -0.014363214, + -0.005359735, + 0.0096400855, + -0.015439025, + 0.012806239, + -0.02275212, + 0.011396839, + 0.006615121, + -0.003393641, + -0.02406501, + -0.014161607, + -0.027342219, + -0.010823886, + 0.0019937796, + -0.043800637, + -0.015654707, + -0.027837425, + -0.0043310416, + 0.009328593, + -0.016765283, + 0.008089018, + 0.0011144106, + -0.0029938521, + -0.015673222, + -0.023675963, + -0.0012621755, + -0.008670511, + 0.012770549, + -0.007185347, + -0.019365672, + -0.0094850855, + -0.006358854, + -0.014038608, + -0.006681227, + -0.0041189482, + -0.004910583, + -0.011684745, + -0.017567575, + 0.0002487251, + 0.0015094534, + -0.019495673, + -0.021890027, + 0.0143012535, + -0.013932078, + -0.014058626, + -0.0069965124, + 0.014649567, + -0.029403204, + 0.019591458, + -0.002798929, + -0.031199513, + 0.019375686, + 0.007868517, + -0.005271241, + -0.01574724, + -0.00038280216, + 0.0089024985, + -0.006591318, + -0.018860493, + -0.018093273, + 0.002129093, + -0.0057239104, + -0.007480494, + 0.0030777396, + 0.012783253, + 0.01851295, + -0.014722884, + -0.000786064, + -0.011738013, + -0.016162533, + -0.00069774844, + -0.0013583276, + 0.0065943934, + 0.009969949, + -0.016258325, + 0.0054875463, + -0.010438806, + -0.014560015, + 0.00024448193, + -0.018505609, + -0.02510837, + -0.017288432, + -0.0030030892, + -0.006486192, + -0.022774179, + -0.009053016, + 0.005290353, + -0.018695347, + -0.0106091, + -0.016177397, + 0.009548957, + -0.00047590528, + -0.0025618267, + 0.038753174, + -0.03054259, + -0.007124505, + -0.009296868, + 0.006708802, + -0.01815781, + -0.03245844, + -0.011101833, + -0.014961379, + 0.006832231, + -0.020974366, + -0.0003083277, + -0.013154856, + -0.01073373, + -0.02527944, + -0.0294409, + 0.00432446, + -0.017884921, + -0.013367099, + 0.027062302, + 0.021638807, + 0.0043137423, + 0.01648361, + 0.00031037765, + -0.0068557127, + -0.0086504035, + -0.0268075, + -0.000110115405, + -0.03562112, + -0.008420513, + 0.008316338, + -0.00026728545, + -0.0010961783, + -0.008332419, + -0.004599733, + -0.019731533, + 0.007120493, + -0.008488792, + -0.008645504, + -0.017623916, + 0.008992385, + -0.004066749, + -0.0064752423, + -0.005329609, + -0.0056358604, + -0.008784389, + -0.014929292, + -0.017019697, + 0.006090083, + -0.011126679, + -0.038407203, + 0.025582254, + -0.007986501, + -0.00841622, + -0.020190604, + -0.007011469, + -0.006665574, + 0.0071866275, + 0.012477341, + -0.019906607, + -0.018689187, + -0.015856706, + -0.030219506, + -0.0038243588, + -0.00010502267, + -0.00504785, + -0.00021003251, + 0.023811044, + 0.004218557, + -0.017476393, + 0.0056690495, + 0.003322901, + -0.00843413, + -0.015360273, + -0.00013632787, + -0.019052029, + -0.027269404, + -0.0010995532, + -0.014730553, + 0.0021605105, + -0.01718033, + 0.0021314267, + -0.012307927, + -0.0019909067, + 0.0063668783, + 0.003411565, + -0.022358468, + -0.014428602, + -0.0083419345, + -0.02838834, + 0.009905337, + -0.012990032, + -0.0015102265, + -0.008746429, + -0.026382638, + -0.016716886, + -0.033954643, + -0.0052208547, + -0.02071299, + -0.01881474, + 0.034172315, + -0.0028572571, + -0.0106231915, + -0.004984781, + -0.003965023, + -0.0019868205, + -0.0144834025, + -0.022034109, + -0.002324069, + 0.0023102632, + -0.016586209, + -0.010717779, + -0.00089695654, + -0.02888888, + -0.014643496, + -0.0331755, + -0.0091351345, + -0.00050795794, + -0.011965574, + -0.005792417, + -0.019047754, + -0.00891471, + -0.014309878, + -0.016105514, + -0.0050011557, + -0.002924032, + -0.014508051, + -0.027570039, + -0.008432655, + -0.022412328, + -0.006953905, + 0.005833481, + 0.002985864, + 0.010423637, + -0.008022903, + 0.0028571435, + 0.0023401347, + 0.0025118233, + 0.00088063773, + -0.01030083, + -0.034235135, + 0.0057269223, + 0.010192997, + 0.009656035, + -0.0061970423, + -0.01830849, + -0.0056669856, + -0.02536018, + -0.0070811883, + -0.0065828026, + -0.009270336, + 0.0005474042, + -0.012505167, + -0.022517292, + 0.019931657, + -0.02576426, + -0.0034301372, + -0.006554002, + -0.015352415, + 0.0037085484, + -0.0015686159, + -0.020038603, + -0.014979273, + -0.0067584584, + 0.01004757, + -0.0062704557, + 0.009243177, + -0.006070522, + -0.0124384165, + -0.010362234, + 0.0052447575, + -0.006731311, + -0.036039606, + -0.005472129, + 0.00320902, + -0.009544634, + -0.024134265, + -0.042714097, + -0.019319095, + -0.01715176, + -0.025222253, + -0.023183806, + -0.024804173, + -0.001708441, + -0.01911352, + -0.015182414, + 0.011974597, + -0.007287805, + -0.010993213, + -0.011308331, + -0.0126891155, + -0.014157935, + -0.0029918184, + 0.0024028958, + -0.025069494, + -0.028943963, + -0.013621269, + 0.00965412, + -0.0058880737, + 0.0088896295, + -0.019746149, + -0.024506228, + 0.020121325, + 0.028221224, + -0.030599605, + -0.038677566, + -0.026255371, + -0.0019721861, + -0.009084052, + -0.010411426, + -0.004827521, + -0.01489902, + -0.0010436202, + -0.015715353, + -0.023793653, + 0.015140237, + -0.015688263, + -0.010476583, + -0.025682528, + 0.016376913, + 5.186545e-05, + 0.011982317, + -0.011990153, + -0.0039839847, + -0.005975962, + -0.015710616, + -0.02704845, + -0.00071907876, + -0.010653123, + -0.005166499, + -0.006693245, + -0.0066189915, + -0.0065726484, + -0.018673895, + -0.016669707, + -0.0018383387, + -0.023351122, + 0.000106947184, + -0.023027902, + -0.027798124, + -0.0017084295, + 0.007551411, + -0.013736565, + -0.0038624837, + -0.00046111137, + -0.031242715, + -0.0091585135, + -0.012501002, + 0.00108392, + -0.011531879, + -0.0048598954, + -0.021560676, + -0.028281271, + -0.031163633, + -0.01237981, + -0.014976991, + -0.022656528, + -0.019105267, + -0.009974115, + -0.023610594, + -0.026677895, + -0.018642526, + -0.0299599, + -0.01620819, + 0.0036247883, + 0.00195815, + -0.027130593, + -0.008390597, + -0.01594843, + -0.008241416, + -0.02922071, + 0.0016989124, + -0.014859738, + -0.0035849984, + -0.0006602618, + -0.0001442033, + 0.011483871, + -0.01952839, + -0.031860787, + -0.015277779, + -0.0047081597, + -0.009545043, + -0.00044362943, + -0.0019694574, + -0.009167017, + -0.0051517305, + -0.027544338, + -0.0146043105, + -0.004567981, + 0.008874204, + -0.004566049, + -0.03475168, + -0.0025782294, + 0.020383095, + 0.005337796, + 0.0061253076, + -0.00354922, + -0.028043048, + -0.016117789, + -0.027032927, + -0.0015291137, + 0.00033058098, + -0.030777209, + -0.009291037, + -0.0069219735, + -0.008205734, + 0.011819208, + -0.00040865762, + 0.002900514, + -0.0059633586, + -0.002133363, + -0.021517644, + -0.009788968, + -0.011335706, + -0.012626003, + -0.018287955, + 0.003682021, + 0.006871217, + 0.0022000796, + -0.01476105, + 0.02549601, + -0.015198113, + -0.0076527223, + -0.018226642, + -0.008371882, + -0.016729722, + -0.00587837, + -0.003827379, + -0.008450646, + -0.0066190585, + -0.019855097, + -0.021723036, + -0.024198648, + 0.01533092, + 0.004431245, + -0.009677328, + -0.015579527, + -0.0068644737, + -0.022840524, + -0.020391678, + -0.0013392784, + 0.014887176, + -0.0046996675, + -0.020234663, + -0.015504164, + -0.012399457, + 0.0070701907, + 0.006676461, + -0.015654992, + -0.026455995, + -0.023790726, + -0.014227549, + -0.0057038167, + -0.006669764, + -0.014578391, + -0.0028483353, + -0.032878738, + -9.737414e-05, + -0.027853535, + -0.0007143402, + 0.017145997, + -0.023012113, + -0.019359438, + -0.014863232, + -0.010752105, + -0.009649364, + 0.00053473434, + -0.00064924516, + -0.015312371, + -0.012155648, + -0.006467913, + -0.01566804, + -0.0072955512, + 0.0041821427, + 0.00038722524, + -0.029232733, + -0.01640161, + -0.0053814007, + -0.024558762, + -0.01418882, + 0.0042592795, + 0.0024655855, + -0.0074625136, + -9.869167e-05, + -0.02510342, + 0.008634589, + -0.02388138, + 0.0071504563, + -0.013296485, + -0.0024838035, + -0.00047078863, + 0.021686686, + -0.015428439, + 0.0068396106, + -0.003597547, + -0.019973503, + -0.004318684, + 0.016736547, + 0.005225373, + -0.010206855, + -0.0028900378, + -0.0009818999, + -0.01715931, + 0.0068375054, + 0.012900936, + 0.0047004153, + -0.005357228, + 0.0008834834, + 0.0034497231, + 0.0034926601, + -0.04031235, + 0.004837056, + -0.014776223, + -0.0036322447, + 0.00082056597, + -0.0146695385, + -0.01649823, + -0.0029741297, + -0.009073095, + -0.019409528, + -0.01735976, + -0.016041128, + -0.015542829, + -0.0343773, + -0.024528923, + 0.009739111, + -0.021921119, + -0.0022037777, + -0.001158643, + -0.013751683, + -0.019507205, + -0.018797783, + -0.002177756, + -0.025115898, + -0.021450078, + -0.014257765, + -0.01698517, + 7.91399e-05, + 0.0063542644, + -0.008578674, + 0.0013706214, + -0.010607475, + -0.026154533, + -0.005031874, + -0.012918423, + -0.009591755, + -0.00086576556, + -0.011410853, + -0.01587375, + -0.008606049, + -0.024745615, + -0.022589142, + -0.016495325, + -0.02966225, + -0.017538838, + 0.0003874084, + -0.01236241, + 0.0066927117, + -0.003468993, + -0.018362595, + -0.006942258, + -0.0044790464, + 0.025729338, + -0.011946251, + -0.016094992, + 0.020726591, + -0.01882596, + -0.022573873, + -0.005422551, + 0.0070275953, + -0.025386529, + -0.019154621, + -0.01834839, + -0.0037092275, + -0.030157289, + -0.007476358, + -0.019360784, + -0.0006538986, + -0.005995925, + 0.01664536, + -0.014335639, + -0.0061870352, + -0.009992619, + -0.022199389, + 0.030582879, + 0.020730559, + -0.008234762, + 0.0016857251, + -0.000416924, + 0.008269062, + 0.0005556096, + -0.001917418, + -0.02010569, + -0.0056155827, + -0.013170107, + -0.024962906, + -0.009382933, + -0.015523143, + 0.015194913, + -0.01611215, + -0.007945462, + -0.008534309, + 0.0072433157, + -0.023234323, + 0.006909066, + 0.005431249, + -0.008046788, + -0.031971686, + 0.000912406, + -0.009136523, + -0.011650165, + -0.0061237905, + 0.016294416, + -0.0058774143, + -0.03026235, + 0.006263947, + -0.00049278105, + -0.0016965624, + 0.0012291225, + 0.0060373526, + -0.011313719, + -0.0012122423, + -0.011075034, + 0.003616528, + -0.02284443, + 0.002347995, + -0.030345883, + -0.0053264266, + -0.022845931, + -0.006449493, + -0.018512934, + 0.0041896673, + -0.012721966, + -0.006381864, + 0.0013307129, + -0.01256345, + -0.016606249, + 0.00214933, + -0.01971957, + -0.020509265, + -0.0038046422, + -0.0037526826, + 0.007113044, + -0.013324355, + -0.028254207, + -0.002393624, + 0.019851597, + -0.036385134, + -0.0054699345, + -0.012780021, + 0.0014579524, + 0.0010419209, + -0.016502231, + -0.029518006, + -0.0052472907, + 0.0021668389, + 0.00033782574, + -0.018201062, + -0.002652566, + -0.011886216, + 0.013164875, + -0.01806199, + -0.015426924, + -0.00591759, + -0.002365192, + 0.008248256, + 0.013126456, + -0.0021954055, + 0.009403169, + -0.012790493, + 0.00082035596, + -0.022507792, + -0.004562285, + -0.0066197603, + -0.023563253, + -0.0063840295, + -0.011623165, + -0.008172179, + -0.017600035, + -0.023963183, + -0.011244571, + -0.037018973, + -0.009592234, + -0.0045034545, + 0.0009833368, + 0.015606539, + 0.0047910144, + -0.014980348, + -0.01068957, + 0.010757858, + -0.015225946, + -0.006050174, + -0.0028390943, + -0.0141097605, + -0.008327076, + 0.0046143555, + -0.02035685, + -0.0043795756, + 0.0019707428, + 4.4029028e-05, + -0.022435753, + -0.020677058, + -0.0039784187, + -0.01582089, + 0.0075711454, + 0.0015243074, + -0.014956108, + 0.0014708424, + -0.016164873, + 0.010611155, + -0.03257951, + -0.0021837598, + -0.0028033466, + 0.013192725, + -0.027376283, + -0.023014039, + -0.00021788779, + 0.0067236037, + -0.0062372433, + 0.0047241636, + -0.032700844, + -0.008011057, + 0.02389259, + -0.02381525, + 0.013524782, + -0.0007811933, + -0.01808574, + 0.00889906, + -0.013339557, + -0.025187064, + -0.002311137, + -0.018975507, + 0.010843833, + 0.0025946214, + -0.0053992276, + -0.0030470318, + -0.021967486, + -0.016916614, + -0.009817864, + -0.017381465, + -0.01717669, + 0.01378805, + -0.0043626735, + -0.021858988, + -0.015076606, + -0.008157874, + 0.0050918427, + -0.0067326147, + -0.010665835, + -0.030764103, + -0.020126358, + -0.026575495, + -0.0090216305, + 0.009929236, + -0.0069769886, + -0.0226562, + -0.01217986, + -0.005296193, + -0.02950733, + -0.013127332, + 0.003134096, + -0.003397542, + -0.02006275, + -0.025176885, + 0.009533233, + -0.007069472, + -0.033164047, + -0.015258233, + -0.012768075, + -0.02628997, + -0.018817144, + -0.010520269, + 0.0027381135, + -0.027286682, + 0.027028412, + -0.0174068, + -0.01600996, + -0.022357622, + -0.012616624, + -0.017800957, + -0.026161393, + -0.019672316, + 0.0012455919, + 0.0045987144, + -0.019414533, + -0.005366712, + -0.025688732, + -0.015485263, + -0.023028193, + 0.018289376, + -0.016647847, + -0.019047188, + 0.02326557, + -0.024850134, + 0.005081753, + -0.0037860658, + -0.022505853, + 0.0028117876, + -0.013060229, + -0.016671661, + -0.007951731, + -0.003367477, + -0.010975547, + -0.01581485, + -0.013543699, + 0.018782554, + 0.0063973847, + -0.01621506, + -0.034684326, + 0.012052713, + 0.0052755647, + 0.020158598, + -0.020700166, + -0.018166041, + -0.0014446478, + -0.011140869, + -0.006483936, + -0.030125016, + -0.008285882, + 0.019477203, + -0.0016459274, + -0.010469287, + -0.0070718336, + -0.027325891, + -0.016866697, + -0.009475473, + 0.0085909255, + -0.03253641, + -0.035398588, + -0.009124865, + -0.0016017027, + -0.0039795297, + -0.028873067, + -0.01506376, + -0.011513844, + 0.0023158006, + -0.026096223, + 0.004824968, + -0.005245419, + -0.0054315464, + -0.022073854, + -0.013779471, + -0.03137509, + -0.018317709, + -0.013629098, + -0.021513944, + -0.017517043, + -0.016481515, + -0.010215958, + 0.003956095, + 0.0017650409, + -0.0071553667, + -0.042656224, + 0.012350085, + -0.018715871, + -0.02485595, + -0.009651838, + -0.009537105, + 0.00057721423, + 0.00037033498, + -0.0009565996, + -0.004624366, + -0.01160685, + 0.012916981, + -0.00015346799, + 0.0011455577, + -0.015192297, + -0.03742128, + -0.012679367, + 0.0060177213, + -0.010056871, + 0.0013649351, + -0.0066360575, + 0.0158789, + 0.005441298, + -0.0043153507, + -0.03180352, + -0.0040964843, + -0.010066836, + -0.0080070235, + 0.0045292336, + -0.0022401768, + -0.017468592, + 0.016166575, + -0.009259493, + -0.000760202, + -0.010097608, + 0.017843433, + -0.025811942, + -0.033930395, + -0.0069178636, + -0.002176415, + -0.019695852, + 0.0002550875, + -0.011110365, + -0.013027129, + -0.013316062, + -0.026601518, + 0.0052188616, + 0.009026938, + -0.010486771, + 0.008325332, + -0.014951839, + -0.023324534, + -0.01683163, + 0.009508537, + -0.007458886, + 0.0061171856, + -0.012513387, + 0.013762381, + -0.036059134, + -0.0021156052, + 0.013597992, + -0.01921239, + -0.019265695, + 0.008816688, + -0.0059977663, + -0.019131903, + -0.014722133, + -0.006007052, + 0.0031464812, + -0.013373403, + -0.020522313, + -0.02113989, + -0.020707775, + 0.0061753844, + -0.026736159, + -0.011315495, + 0.004933087, + -0.014987629, + -0.0125250025, + -0.012087972, + 0.0047294158, + -0.01257732, + 0.00990422, + -0.01945763, + -0.005303762, + -0.01583947, + -0.0028954942, + 0.0062719537, + -0.0042799725, + -0.027509803, + -0.0066547175, + -0.0029270062, + -0.019892555, + -0.0056778234, + -0.01447016, + 0.0185763, + -0.012577192, + -0.011904788, + 0.0032963662, + -0.019129507, + -0.0127874985, + 0.007371633, + -0.010191925, + -0.039558366, + -0.005090748, + -0.012449046, + -0.0028076435, + 0.016254304, + -0.008151271, + -0.0085980715, + -0.015227154, + -0.020540338, + -0.004890166, + -0.015937444, + -0.0020649368, + -0.010123492, + -0.010883292, + -0.013110144, + -0.017543888, + -0.0106295915, + -0.030266743, + 0.0032168126, + -0.032786023, + 0.012918766, + 0.0029456238, + -0.0009577153, + -0.008274856, + -0.012655182, + -0.013069393, + -0.010822409, + 0.003679918, + -0.031633716, + -0.015318483, + 0.014792076, + 0.001536776, + 0.010852109, + -0.00586612, + 0.0027149746, + -0.014111752, + -0.0054150564, + -0.004077985, + 0.0053712917, + 0.00066392095, + -0.018970514, + -0.007712496, + 0.0009944672, + -0.013604019, + -0.012355936, + -0.012345128, + 0.0042664334, + -0.012855101, + 0.0007252671, + -0.038937796, + -0.016265498, + 0.01453597, + 0.0029225058, + 0.0012705092, + -0.010248809, + -0.0021588833, + -0.004098622, + -0.030610299, + -0.0137490695, + -0.001505629, + -0.0010378682, + -0.024016505, + -0.0066897133, + 0.0073067485, + -0.010297257, + -0.00975645, + -0.01939416, + -0.0074213725, + -0.011618169, + -0.025721157, + -0.009770052, + -0.025387289, + -0.026336843, + -0.004055249, + 0.012410649, + 0.014912244, + -0.0005079661, + -0.010446577, + -0.01584476, + 0.004523615, + -0.0030184234, + 0.009864094, + -0.008972753, + -0.0038558652, + 0.014099404, + -0.018683484, + -0.0013812144, + 0.009387291, + -0.016237497, + -0.016659498, + -0.003268378, + -0.024107452, + 0.016105846, + -0.019664444, + -0.019712465, + -0.008483236, + 0.006834578, + -0.030896787, + -0.00071246503, + -0.009680428, + -0.0038842103, + -0.006267432, + -0.008090902, + -0.015961029, + 0.021455286, + -0.0041125296, + -0.008917791, + -0.022912778, + 0.0033068275, + 0.010536809, + -0.016607163, + -0.0047219926, + 0.012104087, + -0.003911369, + -0.014406851, + 0.010275466, + 0.008945229, + -0.0006471376, + -0.0123889195, + -0.018343864, + -0.010739318, + -0.01477908, + 0.015616742, + -0.0072215777, + -0.027219977, + 0.01994465, + -0.011817525, + -0.0024203095, + -0.007608431, + -0.0266541, + -0.0046092947, + -0.006974338, + 0.016254514, + -0.0021091276, + 0.00081241794, + -0.01487214, + -0.014144207, + -0.006583907, + 0.007817549, + 0.025603343, + -0.017117303, + -0.014314113, + -0.009955448, + -0.01564348, + 0.013764861, + -0.004031389, + -0.03232158, + -0.013475844, + 0.015492316, + -0.009300993, + -0.010719067, + -0.021395633, + 0.022380773, + 0.007898336, + -0.015603477, + -0.00522325, + -0.014457631, + -0.02116571, + -0.039738204, + -0.012298171, + -0.013400955, + -0.004576095, + -0.0016999756, + -0.009625627, + 0.0026731926, + -0.016079357, + 0.002528926, + -0.0041374937, + -0.030072939, + 0.0002665845, + -0.016002797, + -0.0016484807, + -0.016704781, + 0.015660942, + -0.009539942, + -0.0022030314, + -0.0015065342, + -0.020272074, + -0.003923917, + -0.00589183, + -0.029489188, + -0.0036213035, + 0.0025928405, + -0.0031047307, + 0.007621493, + -0.0008335394, + -0.014396102, + -0.0015515594, + -0.0050777425, + -0.007243414, + -0.010751848, + -0.00030713822, + -0.015822876, + 0.014556078, + -0.017141255, + 0.0042879186, + -0.013788158, + 0.0010401717, + -0.004813426, + -0.0064812317, + -0.021830184, + -0.022383804, + 0.01867749, + -0.013405859, + -0.0073603694, + -0.003070968, + 0.0202787, + 0.0075369338, + -0.016583314, + -0.012189209, + -0.0028504916, + -9.8075194e-05, + -0.024178274, + -0.0139434645, + 0.012536553, + -0.025122724, + -0.001268847, + 0.0015342225, + -0.008646546, + -0.024427706, + -0.019123893, + -0.024832385, + 0.02327665, + -0.007439426, + -0.014789624, + -0.020995539, + 0.013108835, + -0.01804001, + -0.010353782, + -0.0014089884, + 0.0110588, + -0.0035604255, + -0.0024133364, + -0.012581741, + -0.0017976683, + -0.007836851, + -0.0020364164, + -0.010449942, + -0.002293457, + -0.018462293, + -0.02543077, + -0.015138698, + -0.011527207, + -0.011272607, + 0.014585635, + -0.014147675, + -0.012975104, + -0.008651784, + 0.006416952, + -0.0066412706, + -0.026963823, + 0.0031760552, + -0.009835375, + -0.030697307, + -0.027699413, + -0.0070429198, + -0.005394037, + -0.011552456, + 0.0022772225, + 0.0033519827, + -0.009358099, + -0.0021917394, + -0.033711497, + 0.016584545, + -0.013042182, + 0.02311237, + -0.021590298, + -0.00718218, + 0.0024973042, + -0.014190715, + -0.010937833, + -0.018832836, + 0.0012799205, + 0.01615763, + 0.009053072, + -0.007198468, + 0.0018296168, + 0.0128488345, + -0.027439354, + -0.006572043, + -0.020898994, + -0.011871726, + -0.018139452, + -0.01311295, + -0.019035544, + -0.0019119038, + 0.0066674254, + -0.009808056, + 0.009300679, + -0.015161686, + 0.013336135, + -0.0060614916, + 0.015109397, + 0.012994026, + 0.011623911, + 0.005335971, + -0.027695313, + -0.0022469503, + -0.0033057332, + -0.0045794216, + 0.010820243, + -0.0016534979, + 0.0006575174, + -0.013046707, + 0.015337889, + -0.0069140857, + -0.0005846732, + 0.006609437, + -0.024697512, + 0.012688604, + -0.005841111, + -0.016148679, + -0.0015683824, + 0.0061626113, + -0.0095986705, + -0.015203322, + -0.008840972, + 0.009094441, + -0.031544592, + 0.0073335287, + -0.021148728, + 0.0063188104, + -0.0121840015, + -0.002412918, + -0.0041771135, + -0.018270198, + -0.0018128864, + 0.021521147, + -0.030165935, + -0.025849918, + 0.000119204335, + 4.093964e-05, + -0.0061760093, + -0.008286195, + -0.024703886, + -0.023543186, + -0.004167227, + -0.0065567736, + -0.005400238, + -0.024492443, + -0.010121226, + -0.0003853867, + -0.01717733, + -0.014287276, + -0.03596432, + -0.013723314, + -0.028335804, + -0.0029618605, + -0.022075715, + 0.018964741, + -0.007086736, + -0.004943802, + -0.009402551, + -0.01879819, + 0.0043681734, + -0.013183819, + -0.0024919808, + -0.00452708, + -0.019166017, + -0.0033148706, + 0.005649941, + -0.012115744, + 0.008892407, + -0.024056287, + -0.026742732, + 0.0076330947, + 0.009562952, + -0.0058857035, + 0.0073656742, + -0.009962563, + -0.008428849, + 0.015193468, + -0.007105206, + -0.02974102, + -0.017286979, + 0.004396057, + -0.027576169, + -0.0008865441, + -0.022575581, + 0.006736343, + -0.01386083, + -0.012135151, + -0.0094337985, + -0.028844893, + -0.009673313, + -0.016962392, + -0.0035608974, + -0.0053267516, + -0.023063801, + 0.017769625, + -0.0070838234, + -0.027664538, + 0.013574221, + -0.03297787, + 0.008033233, + -0.026064206, + -0.0046633175, + -0.0028339908, + -0.002976522, + -0.026447998, + -0.017404176, + 0.008184494, + -0.011501086, + -0.0236672, + -0.024828263, + 0.007542371, + -0.008812927, + 0.0078032697, + -0.020719592, + -0.002086654, + -0.013937569, + -0.002149822, + -0.00034729388, + 0.012744779, + -0.00772299, + 0.0013236629, + 0.0066950005, + -0.025411416, + -0.018496707, + -0.012607472, + -0.015693264, + -0.015489336, + -0.0025766464, + 0.0142773595, + -0.030810455, + -0.0058017485, + -0.035671018, + -0.030324792, + -0.01205337, + -0.013721458, + 0.01454236, + -0.040390253, + -0.006855581, + 0.0005254136, + 0.0049790465, + -0.017707227, + -0.015343698, + -0.013341895, + -0.0068094935, + -0.014829764, + -0.022269893, + -0.010536515, + -0.032912984, + -0.028797481, + 0.004881857, + -0.017465493, + 0.0025673655, + -0.0040581822, + -0.0072606583, + -0.021000452, + -0.0023997212, + -0.019693902, + 0.011969409, + 0.0053539025, + -0.03430508, + 0.0022531075, + -0.015491001, + -0.014683503, + -0.023512017, + -0.006036196, + -0.020796616, + -0.0017494041, + 0.0059572053, + -0.00166309, + 0.00012425621, + -0.019091614, + 0.0013543038, + -0.018019702, + -0.019779306, + -0.028031867, + 0.0054991734, + -0.034165237, + -0.008293444, + -0.0056066895, + -0.01104856, + -0.0028087832, + 0.006957106, + 0.006511354, + -0.009655549, + -0.009807385, + -0.012797159, + 0.013313882, + -0.020536115, + 0.008134894, + -0.020003315, + -0.017606232, + -0.006627877, + -0.017354498, + -0.0057889554, + 0.0063100136, + -0.002392415, + -0.024485517, + -0.007199811, + -0.015617482, + 0.0060465517, + -0.0027140616, + 0.017533451, + -0.018497378, + -0.018572185, + -0.031732585, + 0.0122135095, + -0.0065852655, + -0.006170423, + 0.0056751827, + 0.014524553, + -0.019336576, + -0.007119101, + -0.017932862, + -0.027512988, + -0.018185448, + 0.00921504, + 0.0080035, + -0.020033995, + -0.003494041, + -0.017868318, + -0.024267035, + -0.0065928935, + -0.0012005449, + 0.0066942386, + 0.018637946, + 0.0054174312, + -0.02155026, + -0.030734815, + -0.01013831, + -0.024466474, + -0.025066502, + -0.021538617, + -0.010410924, + -0.018573536, + 0.014547058, + -0.012319335, + -0.016685203, + 0.014250289, + 0.0019815236, + -0.029037878, + -0.0043636705, + 0.0030146975, + -0.005674699, + 0.0074394867, + -0.0034931398, + -0.027345808, + 0.00017479548, + -0.02599815, + -0.021183161, + -0.013993363, + -0.0014024454, + 0.006927011, + 0.016730174, + -0.014328591, + -0.01885304, + -0.023463337, + -0.016023504, + -0.020538118, + -0.0010346442, + -0.011718487, + -0.005577347, + -0.023470549, + -0.009007613, + -0.00094802503, + -0.010103195, + -0.015215999, + 0.008013315, + 0.0012741426, + -0.024020068, + -0.010088843, + 0.01069096, + -0.027923737, + 0.008820092, + -0.023513349, + -0.045730464, + -0.016153427, + 0.004174935, + -0.01932571, + -0.011437463, + 0.0062163314, + 0.004441244, + -0.005528986, + -0.02568377, + -0.006446028, + -0.024287619, + -0.00030019783, + -0.01477582, + 0.013100235, + -0.0041813497, + -0.0077623357, + 0.0032300309, + -0.034754764, + -0.022945866, + -0.010770593, + 0.005677675, + -0.019707339, + 0.00724687, + -0.0056943865, + -0.014747649, + -0.013731535, + -0.0012152777, + -0.004107408, + -0.007658716, + -0.011089377, + -0.02155838, + -0.011645666, + -0.023840707, + 0.006405783, + -0.004041932, + -0.0039412724, + -0.0393041, + 0.00020752073, + -0.020579742, + -0.018979311, + 0.0097745145, + -0.021114388, + 0.015196206, + -0.017825775, + -0.024713079, + -0.012204731, + -0.006813635, + 0.0012126938, + -0.020315789, + -0.023583714, + -0.03015211, + -0.025516577, + -0.0078116655, + -0.0048242733, + -0.0055023236, + -0.0054262704, + -0.018404, + 0.003855943, + -0.018852305, + -0.025124304, + -0.0069091246, + -0.01338933, + -0.03443959, + -0.030234773, + -0.014837728, + 0.009679504, + -0.020110061, + -0.011881558, + 0.013669733, + 0.00048558082, + -0.017397374, + -0.000672466, + -0.017291939, + -0.035499133, + -0.001394664, + 0.0016100074, + -0.0055228, + -0.000984104, + -0.0045691016, + -0.004311879, + -0.004940935, + -0.0104217, + -0.03386699, + -0.011253961, + -0.0070552235, + -0.006143276, + -0.011885443, + -0.011537914, + -0.027134117, + -0.0040545785, + 0.0073237093, + -0.0005935715, + -0.003064798, + -0.031111075, + -0.0050239167, + -0.0026911353, + -0.0022975015, + -0.017186496, + -0.018299723, + 0.0037829385, + 0.002056151, + -0.001593586, + -0.015108423, + 0.0048378194, + -0.017676016, + -0.006338601, + -0.019030793, + -0.01713831, + -0.029008854, + 0.011349134, + -0.016660633, + 0.011100114, + -0.0022764355, + 0.0009133111, + -0.025095025, + -0.015021578, + -0.0074836747, + 0.011819919, + 0.0041963705, + -0.007644797, + -0.0013152875, + -0.0065282835, + -0.014303493, + -0.026109846, + -0.0017660641, + 0.0032576355, + 0.0022198244, + -0.0030239318, + -0.010823068, + -0.0033739412, + -0.01845512, + 0.0066205678, + -0.021170625, + -0.019019349, + -0.025347032, + -0.004483543, + -0.013853082, + -0.025425414, + -0.016341599, + -0.00039799322, + -0.022226568, + 0.010783376, + -0.018916614, + -0.009475176, + -0.010208985, + -0.0017206401, + 0.007897803, + -0.0009478974, + -0.010281121, + -0.016100524, + -0.008412713, + -0.025427876, + 0.009491039, + -0.016353218, + 0.008041063, + -0.030503232, + -0.009626047, + -0.01975433, + -0.009551984, + -0.010543035, + -0.0030213322, + -0.017614823, + -0.026445545, + -0.03189792, + -0.0077471063, + -0.014968303, + -0.021982083, + -0.0041782497, + -0.005938946, + -0.001032913, + 0.0056793042, + 0.0020775513, + -0.007932812, + -0.003690032, + 0.011088432, + 0.0062488024, + -0.0014433586, + -0.007206947, + 0.0038846612, + 0.009709596, + -0.009923254, + -0.019286241, + -0.0029224167, + -0.025461921, + -0.02249084, + -0.013084365, + -0.0022859469, + 0.006191093, + -0.01810993, + 0.013009791, + 0.0060951095, + -0.011035177, + -0.020226624, + -0.0040552313, + 0.010092319, + -0.030044723, + -0.013429675, + -0.005603789, + 0.009215099, + -0.031675834, + -0.0014063162, + -0.012545035, + 0.0041131917, + -0.0031692835, + -0.010107382, + -0.014980436, + -0.020351997, + -0.015940655, + -0.0036293175, + 0.0036685383, + -0.035957456, + -0.02390573, + -0.013143432, + -0.0049052485, + -0.009756299, + 0.026023434, + -0.005717866, + -0.0032291997, + 0.007943787, + -0.0046229796, + -0.002265639, + -0.027631624, + -0.006620723, + 0.019255504, + 0.001158662, + 0.00060606474, + 0.01447922, + -0.030459227, + -0.0066316877, + -0.00242425, + -0.018182749, + -0.020775743, + -0.009958306, + -0.00075750134, + -0.017893085, + -0.008155988, + -0.025174458, + -0.0045527485, + -0.033589486, + 0.0037103677, + 0.003222247, + -0.017763466, + -0.030229019, + -0.025324319, + -0.009041254, + 0.0032664258, + 0.013577133, + -0.009443868, + -0.013282595, + 0.00263478, + -0.007115732, + 0.0129760215, + -0.009914071, + -0.023702482, + 0.011704928, + 0.00076167705, + -0.010576131, + -0.015318734, + -0.013933879, + 0.00056912017, + -0.0065468457, + 0.008244741, + 3.756347e-05, + -0.0365404, + 0.015421271, + -0.027520455, + -0.0076400004, + -0.029860476, + -0.017379802, + -0.014421043, + -0.0056759934, + -0.003996727, + -0.004827699, + -0.017652845, + 0.014344559, + 0.0059112855, + -0.0047439095, + 0.0028276932, + -0.009983034, + -0.020932259, + -0.03408628, + 0.022612669, + -0.008829943, + 0.0069292504, + -0.0041231685, + -0.0063136835, + -0.03078935, + 0.0044294256, + -0.02599301, + 0.012620765, + 0.008968332, + -0.015595526, + -0.004642536, + -0.009054891, + 0.009745475, + 0.006700693, + -0.008587776, + -0.015785279, + -0.029714694, + -0.014873421, + -0.0031976146, + 0.024271086, + 0.002879519, + -0.0064120973, + -0.02666644, + -0.014602848, + -0.0045707608, + -0.011902666, + -0.018392855, + -0.0015432144, + -0.0058658407, + 0.0069608423, + -0.010805942, + -0.030075645, + -0.035353884, + -0.019791849, + -0.012062337, + 0.0116821, + 0.00042984626, + -0.024905946, + 0.004435632, + -0.017028715, + -0.022459758, + -0.007911278, + -0.017801398, + -0.007540625, + -0.0108678555, + -0.00038309902, + -0.011131781, + -0.004325655, + 0.0018317071, + 0.00111469, + -0.03704591, + -0.03550898, + 0.0035410863, + -0.007285727, + -0.01871916, + 0.010776574, + -0.030095614, + -0.033915997, + -0.010786329, + -0.004484184, + -0.0108540105, + -0.0018740388, + 0.0014746772, + 0.007595978, + -0.015346792, + -0.022972884, + -0.0038938655, + -0.017985525, + -0.005419026, + -0.004105888, + -0.008156364, + -0.027857617, + 0.0004981397, + -0.022037653, + -0.03719944, + 0.010211871, + -0.012533419, + 0.0069041103, + -0.026162164, + -0.020281574, + -0.021319086, + 0.00085365085, + 0.0031096253, + 0.00038819836, + 0.005736733, + -0.02544384, + -0.00073597085, + -0.008857549, + -0.032915115, + 0.013783738, + -0.02629908, + 0.00023900894, + 0.0036119102, + 0.017628346, + -0.028619982, + 0.0013911333, + 0.0012292161, + -0.010317747, + 0.011589161, + -0.0012622994, + -0.010712219, + -0.017235592, + -0.020531774, + -0.017498933, + -0.030594742, + -0.020280704, + -0.018736364, + 0.0042559705, + 0.008295462, + 0.000196, + 0.001148504, + -0.030799089, + 0.011548774, + -0.0038568736, + 0.0029074852, + 0.010620324, + -0.019671297, + -0.03617295, + -0.018160287, + -0.004164036, + -0.027898064, + -0.0027622536, + -0.026045218, + -0.03268361, + -0.026151653, + -0.0089211, + -0.03047785, + 0.008190789, + 0.007004324, + -0.02129949, + 0.013799359, + 0.009892656, + -0.016595464, + -0.025329465, + -0.022130549, + -0.018424038, + 0.0010948991, + 0.0028230334, + -0.023849048, + 0.00995402, + -0.031825848, + -0.030598005, + -0.0070510646, + -0.0105785765, + -0.013471421, + -0.016485183, + -0.0046171695, + -0.031139178, + 0.003047019, + -0.011878041, + 0.011371613, + 0.014465965, + -0.013507, + 0.002063799, + 0.0053794263, + 0.005676924, + -0.023378441, + -0.0019472273, + -0.031404693, + -0.016464904, + -0.020103756, + 0.00050671626, + -0.015620884, + 0.013943704, + 0.0044871564, + -0.001626173, + -0.022033919, + -0.003065535, + -0.01740361, + -0.020359108, + -0.0077197836, + 0.0046280525, + -0.0176651, + -0.0011384944, + -0.0016318753, + -0.012923785, + -0.022496544, + 0.00019416325, + -0.025351001, + -0.01000484, + -0.018782455, + -0.026759155, + 0.009031539, + -0.013157519, + -0.0040060566, + 0.015108425, + -0.017727217, + 0.013388623, + -0.012213097, + -0.012590202, + -0.025944881, + -0.009009247, + -0.0013573737, + -0.0050811195, + -0.022570843, + -0.025565604, + 0.007241251, + -0.009200711, + -0.0065078954, + -0.020379197, + -0.023896476, + -0.02136079, + 0.022814922, + -0.0017192484, + -0.017313497, + -0.022543795, + -0.025160385, + -0.0127756065, + -0.016500048, + -0.011224119, + -0.023312198, + -0.012313175, + -0.034368366, + -0.007540362, + -0.008872051, + -0.0013559395, + 0.01716135, + -0.00023198206, + 0.006830237, + -0.017856633, + -0.013233046, + -0.010741186, + 0.013024767, + 0.009695742, + 0.0035941426, + 0.021600833, + -0.0053309705, + 0.016531203, + 0.0060819057, + -0.020580031, + -0.019712424, + -0.0150252115, + -0.023325508, + -0.0052099903, + -0.022087565, + -0.011175544, + 0.0023203385, + -0.004451139, + -0.013093544, + 0.008134736, + -0.0010805194, + -0.0105152, + -0.0077812267, + -0.016528392, + -0.0076451646, + -0.0073059103, + -0.022558834, + -0.00323882, + -0.014536785, + 0.003915774, + -0.041852478, + -0.0033601641, + -0.009276112, + 0.0003506162, + -0.018358748, + -0.006076087, + 0.0043535144, + -0.008096342, + -0.013277812, + -0.0057412894, + -0.012498778, + -0.020641664, + -0.017054243, + -0.0011144831, + -0.0124300495, + -0.031129422, + 3.6472265e-06, + -0.02299068, + -0.0041504083, + -0.02666953, + -0.0065514157, + -0.005514714, + -0.011549892, + -0.026667498, + -0.011134983, + -0.003993922, + 0.022763193, + -0.0057167406, + -0.027342848, + -0.00604647, + -0.018575069, + -0.020061465, + -0.015664987, + -0.017741628, + -0.0108834775, + 0.009571132, + -0.0019435509, + -0.025129575, + 0.02031875, + -0.0067901835, + -0.022429729, + 0.0023140013, + 0.013084232, + -0.012242745, + -0.02016387, + -0.013609198, + 0.021170946, + 0.010324774, + -0.01836855, + -0.023295311, + 0.022154875, + -0.00047896177, + -0.0071706395, + -0.012053302, + -0.0067312242, + -0.018883051, + 0.0013125306, + -0.0119837895, + 0.011980529, + -0.012038586, + -0.021502363, + -0.011752181, + -0.009706203, + 0.009208091, + -0.031723786, + -0.01269556, + -0.014084109, + -0.022977304, + -0.0074568246, + 0.009377706, + -0.00060635066, + -0.039078217, + 0.0043353946, + -0.00308618, + -0.0020604057, + -0.025487334, + -0.028705887, + -0.017409375, + -0.021651242, + -0.010157422, + -0.01279963, + -0.001567211, + -0.020151095, + -0.014473544, + 0.0028039496, + -0.011161877, + -0.011055852, + -0.0080485055, + -0.007546118, + -0.02289527, + 0.0051535307, + -0.018551465, + -0.04042745, + -0.005521333, + -0.011715498, + -0.044670608, + -0.0028212052, + -0.0067494875, + -0.0080253165, + -0.022774642, + -0.0045709107, + 0.0049420097, + -0.019528551, + -0.010575024, + 0.003099074, + -0.004354313, + 0.009126136, + -0.026319467, + -0.0070351423, + -0.01894315, + -0.006928531, + -0.027523698, + -0.01522319, + -0.008642272, + -0.000111276866, + -0.0013737739, + -0.0038675084, + -0.031801295, + 0.0054326258, + -0.00648875, + -0.030791797, + 0.0016455661, + -0.007439342, + -0.0010944974, + -0.0071992353, + -0.0068922364, + -0.020275991, + 0.0024007605, + -0.023766441, + -0.010086521, + -0.010738871, + -0.006186372, + -0.0132663855, + -0.0072143953, + 0.017507961, + -0.024322195, + -0.015202437, + -0.014008884, + -0.019778693, + -0.014490432, + -0.014982831, + -0.020635117, + 0.015795387, + -0.0073781945, + -0.002617947, + 0.00015430506, + -0.0181311, + -0.02178801, + -0.008067545, + -0.00013361708, + -0.011984334, + -0.010005125, + -0.0345089, + -0.013344588, + -0.0010763824, + -0.0071555837, + -0.010440345, + -0.026582828, + -0.01672201, + -0.026218975, + -0.026688322, + -0.014021729, + -0.0069004544, + -0.002348273, + -0.020338446, + -0.03439199, + -0.02302366, + 0.0026348794, + -0.036308642, + -0.016437296, + 0.0020478324, + -0.0043455963, + -0.0033061267, + -0.009679706, + -0.013949809, + 0.0026406883, + -0.0044708806, + -0.0010664306, + 0.00056841294, + -0.028241111, + -0.007892627, + 0.011308533, + -0.029781446, + 0.0017276224, + 0.003692578, + 0.009931468, + -0.0005322951, + -0.015946079, + -0.031085694, + -0.013337383, + 0.020219522, + -0.009422453, + 0.0045910343, + -0.017224766, + -0.012946824, + 0.006110639, + 0.012770514, + -0.031459674, + -0.0004046814, + -0.017105687, + -0.017726732, + -0.01840829, + -0.008188875, + -0.009960373, + 0.0058360463, + -0.024991237, + 0.0071255877, + -0.01373102, + -0.02328606, + -0.003323088, + -0.022603624, + -0.008987258, + -0.034484714, + -0.0029229394, + -0.011530722, + -0.0008370884, + -0.023964686, + -0.012403186, + -0.024233613, + -0.0143188145, + -0.029983912, + -0.012868993, + -0.022157032, + -0.021619776, + -0.025984254, + -0.009638778, + -0.014617047, + -0.01738635, + 0.019691762, + -0.018310359, + -0.008603384, + 0.0102841435, + -0.00754951, + -0.02052266, + -0.012223623, + -0.013281845, + -0.0042739655, + -0.016978635, + -0.010595384, + -0.0018606542, + -0.00968871, + 0.020029724, + -0.013634571, + -0.01478855, + 0.0026164602, + -0.033719584, + -0.016818391, + -0.012349633, + -0.014297097, + 0.00826136, + -0.014321295, + 0.0025238316, + -0.016545478, + 0.0022516751, + -0.014220443, + -0.015128479, + -0.008841045, + -0.01987601, + -0.005927469, + 0.01898536, + -0.013961512, + -0.008245669, + 0.0052504446, + 0.0025628032, + 0.0067489585, + -0.015160668, + -0.018347003, + -0.015204519, + 0.0054610837, + -0.02462107, + -0.012484008, + 0.0018078092, + -0.004547111, + -0.027668059, + -0.009446601, + 0.012368698, + -0.006909953, + 0.0021059662, + 0.0057827346, + -0.019331027, + -0.016672455, + 0.011162298, + -0.0017475223, + -0.00017471157, + 0.0068869414, + -0.013402199, + 0.0048754136, + -0.022269432, + -0.027002804, + -0.010859032, + -8.1326965e-05, + 0.0043365927, + -0.015491632, + -0.028851258, + -0.010625486, + -0.0073841074, + -0.010781889, + -0.011344036, + 0.0022422792, + -0.032402117, + -0.013713472, + -0.004524815, + -0.00785932, + -0.003571815, + -0.00071989605, + -0.013631882, + -0.010528007, + -0.0028509856, + -0.027907075, + 0.022420835, + -0.005844505, + -0.0032186152, + -0.013465942, + -0.02912193, + 0.005211368, + -0.0075259013, + -0.035431016, + -0.030621856, + -0.049360324, + -0.007310959, + -0.003992731, + 0.008265972, + -0.015382325, + -0.00068701664, + -0.020697113, + 0.0025231086, + -0.029889673, + 0.0105127655, + -0.003828582, + -0.00401352, + -0.0085978545, + -0.0034237634, + -0.019670038, + 0.00029999306, + -0.009002731, + -0.021147512, + -0.022531904, + -0.006304288, + -0.002110899, + 0.030366112, + -0.020000745, + -0.007599231, + -0.0019948673, + -0.004668516, + -0.01636549, + 0.00665606, + -0.006966582, + -0.015633075, + 0.02638795, + -0.03334925, + -0.0052784896, + -0.016480938, + -0.018780518, + 0.0021853372, + -0.007640543, + -0.013379488, + -0.008286392, + 0.00073604146, + 0.018141795, + 0.007909847, + -0.00928397, + -0.007887807, + -0.0029270684, + -0.023382047, + -0.013771754, + -0.0021531696, + -0.030442303, + -9.049562e-05, + -0.021312198, + -0.019389754, + -0.035374157, + 0.0073570698, + -0.027722735, + -0.033259433, + -0.020294243, + -0.018183578, + 0.004559522, + -0.012526433, + -0.0019444943, + -0.012787705, + -0.0021171593, + -0.0070469044, + -0.0016786574, + 0.022567706, + -0.0033777999, + -0.0033444671, + -0.004796391, + -0.018661365, + -0.026066175, + -0.0054123425, + -0.014319925, + 0.0006658536, + -0.018587176, + -0.0033208195, + 0.008587633, + -0.011592328, + 0.0021482664, + 0.020925278, + -0.001607703, + -0.028970443, + -0.005149484, + -0.019027635, + -0.010609708, + -0.020244807, + 0.0064820983, + 0.005357823, + -0.011928112, + -0.0052871946, + -0.011074313, + -0.022461316, + -0.003929271, + -0.0029133088, + -0.01487499, + 0.00032722787, + 0.0048059137, + -0.019799827, + -0.015653048, + 0.0041083815, + -0.0097388355, + 0.008402821, + -0.005089366, + -0.021240441, + 0.004325349, + -0.014017502, + -0.002583018, + 0.00902842, + -0.011170516, + -0.039049797, + -0.01846907, + 0.0138947, + 0.0037538991, + -0.0075324024, + -0.014481763, + 0.016092164, + 0.007155984, + -0.0073431623, + -0.004475502, + -0.012280115, + -0.011798116, + -0.0024815183, + -0.0037723174, + -0.009488976, + 0.013710148, + 0.0075494717, + 0.0055285525, + 0.016340148, + 0.010229122, + -0.015954465, + -0.03295612, + -0.031883392, + 0.0025389106, + -0.013259215, + 0.035816994, + -0.021094456, + -0.0023393594, + -0.016429694 ], "paletteEmbedding": [ - 0.007238371, 0.010857557, 0.010352554, 0.007406705, 0.003955854, - 0.00075750396, 0.00058916974, 0.00016833421, 0.0, 0.0, 0.013214235, - 0.023987625, 0.024492627, 0.023145953, 0.016075917, 0.008332543, - 0.00319835, 0.0015150079, 0.00016833421, 8.4167106e-5, 0.01481341, - 0.02937432, 0.044524398, 0.052436106, 0.046039406, 0.03518185, - 0.018516762, 0.007911708, 0.002440846, 0.0008416711, 0.009510883, - 0.029290153, 0.057149462, 0.08214709, 0.09376215, 0.09275215, - 0.065902844, 0.03400351, 0.015234246, 0.0045450237, 0.004040021, - 0.016075917, 0.04275689, 0.08484044, 0.13104819, 0.1471241, 0.1343307, - 0.08559795, 0.045450237, 0.018685097, 0.0011783395, 0.0069858697, - 0.023061786, 0.056644462, 0.11000641, 0.16277918, 0.1865143, 0.15907583, - 0.099822186, 0.053361945, 0.00042083554, 0.0016833422, 0.008585045, - 0.025418466, 0.063630335, 0.11572977, 0.15924416, 0.17708759, - 0.17010172, 0.12633483, 8.4167106e-5, 0.00042083554, 0.0011783395, - 0.007911708, 0.022640951, 0.056223627, 0.09830718, 0.15251079, - 0.19812937, 0.21412112, 0.0, 0.0, 0.0005050026, 0.0011783395, - 0.005555029, 0.020873442, 0.04014771, 0.089469634, 0.19964437, - 0.27690977, 0.0, 0.0, 0.0, 0.0002525013, 0.0011783395, 0.004040021, - 0.014392575, 0.04612357, 0.12094813, 0.19425768, 0.005639196, - 0.008164209, 0.008585045, 0.0059758644, 0.0025250132, 0.0012625066, - 0.00058916974, 8.4167106e-5, 0.0, 0.0, 0.011194225, 0.018769264, - 0.023903457, 0.02003177, 0.015907584, 0.0068175355, 0.00319835, - 0.00092583813, 0.0002525013, 0.0, 0.011783395, 0.027943479, 0.042083554, - 0.050079428, 0.044945233, 0.031478498, 0.015234246, 0.0060600317, - 0.0021883447, 0.00058916974, 0.010436721, 0.026091803, 0.04881692, - 0.07389872, 0.08071625, 0.078612074, 0.049574424, 0.023145953, - 0.008585045, 0.0033666843, 0.0042925226, 0.015907584, 0.040484376, - 0.06741785, 0.10966974, 0.113288924, 0.0959505, 0.063546166, - 0.031225996, 0.01220423, 0.0010100052, 0.0059758644, 0.017338423, - 0.049574424, 0.08298877, 0.123220645, 0.127934, 0.1087439, 0.06792285, - 0.030805161, 0.00033666843, 0.0017675092, 0.0069017024, 0.021883447, - 0.044692732, 0.08105292, 0.11051141, 0.1205273, 0.1092489, 0.07760207, - 8.4167106e-5, 0.00058916974, 0.0016833422, 0.0059758644, 0.018432597, - 0.03728603, 0.06901702, 0.09401466, 0.11783395, 0.12759733, 0.0, 0.0, - 0.00042083554, 0.0017675092, 0.004713358, 0.012035896, 0.027775144, - 0.05874864, 0.1151406, 0.14847077, 0.0, 0.0, 0.0, 0.00042083554, - 0.0013466737, 0.0033666843, 0.00900588, 0.029795155, 0.06977453, - 0.10554555, 0.0022725118, 0.005134193, 0.0054708617, 0.0037875196, - 0.0015150079, 0.0008416711, 0.00016833421, 8.4167106e-5, 0.0, 0.0, - 0.004797525, 0.010100053, 0.014055907, 0.010857557, 0.00900588, - 0.00319835, 0.0013466737, 0.0008416711, 0.0, 0.0, 0.0065650344, - 0.013887572, 0.022135949, 0.025165964, 0.023061786, 0.014224241, - 0.006480867, 0.0029458487, 0.00042083554, 0.0002525013, 0.0045450237, - 0.013045901, 0.026007636, 0.036528524, 0.039137702, 0.029710988, - 0.019358434, 0.009847552, 0.0035350183, 0.0008416711, 0.0033666843, - 0.007827541, 0.021462612, 0.03518185, 0.051594436, 0.049490258, - 0.036528524, 0.02381929, 0.0114467265, 0.004040021, 0.00075750396, - 0.0041241883, 0.011278392, 0.019695103, 0.038632702, 0.049911093, - 0.04974276, 0.03947437, 0.02121011, 0.009258381, 0.00033666843, - 0.0010100052, 0.004460857, 0.009258381, 0.020873442, 0.032236002, - 0.041746885, 0.041073546, 0.032825172, 0.021294277, 0.00016833421, - 0.0002525013, 0.0011783395, 0.0037033525, 0.0076592066, 0.016160084, - 0.025334299, 0.032404337, 0.03779103, 0.03391934, 0.0, 8.4167106e-5, - 0.00033666843, 0.0008416711, 0.0017675092, 0.00580753, 0.010015885, - 0.01834843, 0.033582676, 0.04157855, 0.0, 0.0, 0.0002525013, 0.0, - 0.00016833421, 0.0011783395, 0.0037875196, 0.009258381, 0.019358434, - 0.028448481, 0.0005050026, 0.001599175, 0.0014308408, 0.0010941724, - 0.00058916974, 0.0002525013, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0018516763, - 0.0038716868, 0.0061441986, 0.004040021, 0.002440846, 0.0011783395, - 0.00033666843, 0.0, 0.0, 0.0, 0.002356679, 0.0050500263, 0.008753379, - 0.009342548, 0.0068175355, 0.004797525, 0.0020200105, 0.0010941724, 0.0, - 0.0, 0.0015150079, 0.0060600317, 0.010689222, 0.013130069, 0.010352554, - 0.010015885, 0.0053025275, 0.0021041776, 0.0002525013, 8.4167106e-5, - 0.0005050026, 0.0027775145, 0.0066492013, 0.011110058, 0.013214235, - 0.013298403, 0.0074908724, 0.0042925226, 0.0026091803, 0.00042083554, - 0.0002525013, 0.0014308408, 0.0029458487, 0.0061441986, 0.01077339, - 0.011530893, 0.012035896, 0.006312533, 0.0042925226, 0.0018516763, 0.0, - 0.00042083554, 0.0017675092, 0.0026933474, 0.004797525, 0.008585045, - 0.010100053, 0.00841671, 0.005639196, 0.004208355, 0.0002525013, - 0.0005050026, 0.0014308408, 0.0016833422, 0.0037875196, 0.004208355, - 0.0046291905, 0.0061441986, 0.006312533, 0.0054708617, 8.4167106e-5, - 0.00016833421, 0.00033666843, 0.00033666843, 0.0008416711, 0.001599175, - 0.0032825172, 0.0042925226, 0.0059758644, 0.0054708617, 0.0, - 8.4167106e-5, 0.00016833421, 0.0002525013, 0.00016833421, 0.0005050026, - 0.00075750396, 0.0015150079, 0.0033666843, 0.0046291905, 8.4167106e-5, - 0.00042083554, 0.0005050026, 8.4167106e-5, 8.4167106e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0005050026, 0.0010941724, 0.0011783395, 0.0011783395, - 0.0010100052, 0.00033666843, 8.4167106e-5, 0.0, 0.0, 0.0, 0.00092583813, - 0.0012625066, 0.0028616816, 0.0037033525, 0.0019358434, 0.0011783395, - 0.0002525013, 0.0002525013, 0.0, 0.0, 0.00075750396, 0.0014308408, - 0.0029458487, 0.0026091803, 0.0022725118, 0.0022725118, 0.0010941724, - 0.00016833421, 8.4167106e-5, 8.4167106e-5, 8.4167106e-5, 0.0005050026, - 0.0020200105, 0.0025250132, 0.0030300159, 0.002356679, 0.0014308408, - 0.00092583813, 0.00016833421, 0.0, 8.4167106e-5, 0.0005050026, - 0.00075750396, 0.0015150079, 0.0018516763, 0.0019358434, 0.0018516763, - 0.0014308408, 0.00016833421, 0.0002525013, 0.00033666843, 0.00067333685, - 0.0010941724, 0.0015150079, 0.0013466737, 0.0021883447, 0.0019358434, - 0.00092583813, 0.0005050026, 0.00042083554, 0.0, 0.0005050026, - 0.0008416711, 0.00075750396, 0.00058916974, 0.0013466737, 0.0016833422, - 0.0010941724, 0.00033666843, 0.00075750396, 0.00016833421, - 0.00033666843, 0.00058916974, 0.00033666843, 0.00058916974, - 0.00058916974, 0.00075750396, 0.00058916974, 0.00067333685, - 0.00042083554, 0.0002525013, 8.4167106e-5, 0.0, 0.0002525013, 0.0, - 0.00067333685, 0.0005050026, 0.0, 8.4167106e-5, 0.00033666843, - 0.00016833421, 0.0002525013, 0.00016833421, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.00033666843, 0.0005050026, 0.00033666843, 0.0, 0.0, - 8.4167106e-5, 8.4167106e-5, 0.0, 0.0, 0.00016833421, 0.00042083554, - 0.0005050026, 0.00016833421, 0.00033666843, 8.4167106e-5, 0.00016833421, - 0.0, 0.0, 0.0, 0.00016833421, 0.00033666843, 0.00058916974, - 0.00042083554, 0.0002525013, 0.0002525013, 8.4167106e-5, 0.0, - 8.4167106e-5, 0.0, 0.0, 0.00033666843, 0.00058916974, 0.0005050026, - 0.00058916974, 0.00092583813, 0.00058916974, 8.4167106e-5, 0.0, 0.0, - 0.00033666843, 0.0, 0.0005050026, 0.00033666843, 0.00058916974, - 0.00042083554, 0.00033666843, 0.0, 8.4167106e-5, 0.0, 0.00092583813, - 0.00092583813, 0.0008416711, 0.00067333685, 0.00058916974, - 0.00016833421, 0.0002525013, 0.00016833421, 0.0, 0.0, 0.0005050026, - 0.0005050026, 0.0008416711, 0.00075750396, 0.00042083554, 0.00016833421, - 0.00016833421, 0.0002525013, 0.00033666843, 0.0, 0.00016833421, - 0.00067333685, 0.00067333685, 0.0002525013, 0.00033666843, 8.4167106e-5, - 8.4167106e-5, 0.00016833421, 0.0, 0.0, 0.0, 8.4167106e-5, 0.0002525013, - 8.4167106e-5, 8.4167106e-5, 0.0, 0.0, 0.00016833421, 0.0, 0.0, 0.0, - 8.4167106e-5, 0.0, 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 8.4167106e-5, 0.00016833421, 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00016833421, 8.4167106e-5, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 8.4167106e-5, 0.0002525013, 0.00016833421, 0.0, 8.4167106e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.00016833421, 0.0, 8.4167106e-5, 0.0002525013, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0002525013, 0.00067333685, 8.4167106e-5, - 0.00016833421, 0.00016833421, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, - 0.00033666843, 0.0010100052, 0.00067333685, 0.00016833421, 0.0002525013, - 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.00042083554, 0.00075750396, - 0.0005050026, 0.0002525013, 0.00016833421, 0.00016833421, 0.0002525013, - 0.0, 0.0, 0.0, 0.00033666843, 0.00058916974, 8.4167106e-5, - 0.00016833421, 0.00016833421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00016833421, 0.0002525013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0002525013, - 0.00016833421, 0.0002525013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 8.4167106e-5, 0.0005050026, 0.00042083554, 0.00016833421, 8.4167106e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.00058916974, 0.00067333685, 0.00016833421, - 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0002525013, - 8.4167106e-5, 8.4167106e-5, 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 8.4167106e-5, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00033666843, - 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00016833421, - 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00016833421, - 0.00033666843, 0.00016833421, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00016833421, 0.0002525013, 8.4167106e-5, 8.4167106e-5, 8.4167106e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 8.4167106e-5, 0.00016833421, 8.4167106e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.4167106e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.4167106e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 + 0.007238371, + 0.010857557, + 0.010352554, + 0.007406705, + 0.003955854, + 0.00075750396, + 0.00058916974, + 0.00016833421, + 0.0, + 0.0, + 0.013214235, + 0.023987625, + 0.024492627, + 0.023145953, + 0.016075917, + 0.008332543, + 0.00319835, + 0.0015150079, + 0.00016833421, + 8.4167106e-05, + 0.01481341, + 0.02937432, + 0.044524398, + 0.052436106, + 0.046039406, + 0.03518185, + 0.018516762, + 0.007911708, + 0.002440846, + 0.0008416711, + 0.009510883, + 0.029290153, + 0.057149462, + 0.08214709, + 0.09376215, + 0.09275215, + 0.065902844, + 0.03400351, + 0.015234246, + 0.0045450237, + 0.004040021, + 0.016075917, + 0.04275689, + 0.08484044, + 0.13104819, + 0.1471241, + 0.1343307, + 0.08559795, + 0.045450237, + 0.018685097, + 0.0011783395, + 0.0069858697, + 0.023061786, + 0.056644462, + 0.11000641, + 0.16277918, + 0.1865143, + 0.15907583, + 0.099822186, + 0.053361945, + 0.00042083554, + 0.0016833422, + 0.008585045, + 0.025418466, + 0.063630335, + 0.11572977, + 0.15924416, + 0.17708759, + 0.17010172, + 0.12633483, + 8.4167106e-05, + 0.00042083554, + 0.0011783395, + 0.007911708, + 0.022640951, + 0.056223627, + 0.09830718, + 0.15251079, + 0.19812937, + 0.21412112, + 0.0, + 0.0, + 0.0005050026, + 0.0011783395, + 0.005555029, + 0.020873442, + 0.04014771, + 0.089469634, + 0.19964437, + 0.27690977, + 0.0, + 0.0, + 0.0, + 0.0002525013, + 0.0011783395, + 0.004040021, + 0.014392575, + 0.04612357, + 0.12094813, + 0.19425768, + 0.005639196, + 0.008164209, + 0.008585045, + 0.0059758644, + 0.0025250132, + 0.0012625066, + 0.00058916974, + 8.4167106e-05, + 0.0, + 0.0, + 0.011194225, + 0.018769264, + 0.023903457, + 0.02003177, + 0.015907584, + 0.0068175355, + 0.00319835, + 0.00092583813, + 0.0002525013, + 0.0, + 0.011783395, + 0.027943479, + 0.042083554, + 0.050079428, + 0.044945233, + 0.031478498, + 0.015234246, + 0.0060600317, + 0.0021883447, + 0.00058916974, + 0.010436721, + 0.026091803, + 0.04881692, + 0.07389872, + 0.08071625, + 0.078612074, + 0.049574424, + 0.023145953, + 0.008585045, + 0.0033666843, + 0.0042925226, + 0.015907584, + 0.040484376, + 0.06741785, + 0.10966974, + 0.113288924, + 0.0959505, + 0.063546166, + 0.031225996, + 0.01220423, + 0.0010100052, + 0.0059758644, + 0.017338423, + 0.049574424, + 0.08298877, + 0.123220645, + 0.127934, + 0.1087439, + 0.06792285, + 0.030805161, + 0.00033666843, + 0.0017675092, + 0.0069017024, + 0.021883447, + 0.044692732, + 0.08105292, + 0.11051141, + 0.1205273, + 0.1092489, + 0.07760207, + 8.4167106e-05, + 0.00058916974, + 0.0016833422, + 0.0059758644, + 0.018432597, + 0.03728603, + 0.06901702, + 0.09401466, + 0.11783395, + 0.12759733, + 0.0, + 0.0, + 0.00042083554, + 0.0017675092, + 0.004713358, + 0.012035896, + 0.027775144, + 0.05874864, + 0.1151406, + 0.14847077, + 0.0, + 0.0, + 0.0, + 0.00042083554, + 0.0013466737, + 0.0033666843, + 0.00900588, + 0.029795155, + 0.06977453, + 0.10554555, + 0.0022725118, + 0.005134193, + 0.0054708617, + 0.0037875196, + 0.0015150079, + 0.0008416711, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.004797525, + 0.010100053, + 0.014055907, + 0.010857557, + 0.00900588, + 0.00319835, + 0.0013466737, + 0.0008416711, + 0.0, + 0.0, + 0.0065650344, + 0.013887572, + 0.022135949, + 0.025165964, + 0.023061786, + 0.014224241, + 0.006480867, + 0.0029458487, + 0.00042083554, + 0.0002525013, + 0.0045450237, + 0.013045901, + 0.026007636, + 0.036528524, + 0.039137702, + 0.029710988, + 0.019358434, + 0.009847552, + 0.0035350183, + 0.0008416711, + 0.0033666843, + 0.007827541, + 0.021462612, + 0.03518185, + 0.051594436, + 0.049490258, + 0.036528524, + 0.02381929, + 0.0114467265, + 0.004040021, + 0.00075750396, + 0.0041241883, + 0.011278392, + 0.019695103, + 0.038632702, + 0.049911093, + 0.04974276, + 0.03947437, + 0.02121011, + 0.009258381, + 0.00033666843, + 0.0010100052, + 0.004460857, + 0.009258381, + 0.020873442, + 0.032236002, + 0.041746885, + 0.041073546, + 0.032825172, + 0.021294277, + 0.00016833421, + 0.0002525013, + 0.0011783395, + 0.0037033525, + 0.0076592066, + 0.016160084, + 0.025334299, + 0.032404337, + 0.03779103, + 0.03391934, + 0.0, + 8.4167106e-05, + 0.00033666843, + 0.0008416711, + 0.0017675092, + 0.00580753, + 0.010015885, + 0.01834843, + 0.033582676, + 0.04157855, + 0.0, + 0.0, + 0.0002525013, + 0.0, + 0.00016833421, + 0.0011783395, + 0.0037875196, + 0.009258381, + 0.019358434, + 0.028448481, + 0.0005050026, + 0.001599175, + 0.0014308408, + 0.0010941724, + 0.00058916974, + 0.0002525013, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0018516763, + 0.0038716868, + 0.0061441986, + 0.004040021, + 0.002440846, + 0.0011783395, + 0.00033666843, + 0.0, + 0.0, + 0.0, + 0.002356679, + 0.0050500263, + 0.008753379, + 0.009342548, + 0.0068175355, + 0.004797525, + 0.0020200105, + 0.0010941724, + 0.0, + 0.0, + 0.0015150079, + 0.0060600317, + 0.010689222, + 0.013130069, + 0.010352554, + 0.010015885, + 0.0053025275, + 0.0021041776, + 0.0002525013, + 8.4167106e-05, + 0.0005050026, + 0.0027775145, + 0.0066492013, + 0.011110058, + 0.013214235, + 0.013298403, + 0.0074908724, + 0.0042925226, + 0.0026091803, + 0.00042083554, + 0.0002525013, + 0.0014308408, + 0.0029458487, + 0.0061441986, + 0.01077339, + 0.011530893, + 0.012035896, + 0.006312533, + 0.0042925226, + 0.0018516763, + 0.0, + 0.00042083554, + 0.0017675092, + 0.0026933474, + 0.004797525, + 0.008585045, + 0.010100053, + 0.00841671, + 0.005639196, + 0.004208355, + 0.0002525013, + 0.0005050026, + 0.0014308408, + 0.0016833422, + 0.0037875196, + 0.004208355, + 0.0046291905, + 0.0061441986, + 0.006312533, + 0.0054708617, + 8.4167106e-05, + 0.00016833421, + 0.00033666843, + 0.00033666843, + 0.0008416711, + 0.001599175, + 0.0032825172, + 0.0042925226, + 0.0059758644, + 0.0054708617, + 0.0, + 8.4167106e-05, + 0.00016833421, + 0.0002525013, + 0.00016833421, + 0.0005050026, + 0.00075750396, + 0.0015150079, + 0.0033666843, + 0.0046291905, + 8.4167106e-05, + 0.00042083554, + 0.0005050026, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0005050026, + 0.0010941724, + 0.0011783395, + 0.0011783395, + 0.0010100052, + 0.00033666843, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.00092583813, + 0.0012625066, + 0.0028616816, + 0.0037033525, + 0.0019358434, + 0.0011783395, + 0.0002525013, + 0.0002525013, + 0.0, + 0.0, + 0.00075750396, + 0.0014308408, + 0.0029458487, + 0.0026091803, + 0.0022725118, + 0.0022725118, + 0.0010941724, + 0.00016833421, + 8.4167106e-05, + 8.4167106e-05, + 8.4167106e-05, + 0.0005050026, + 0.0020200105, + 0.0025250132, + 0.0030300159, + 0.002356679, + 0.0014308408, + 0.00092583813, + 0.00016833421, + 0.0, + 8.4167106e-05, + 0.0005050026, + 0.00075750396, + 0.0015150079, + 0.0018516763, + 0.0019358434, + 0.0018516763, + 0.0014308408, + 0.00016833421, + 0.0002525013, + 0.00033666843, + 0.00067333685, + 0.0010941724, + 0.0015150079, + 0.0013466737, + 0.0021883447, + 0.0019358434, + 0.00092583813, + 0.0005050026, + 0.00042083554, + 0.0, + 0.0005050026, + 0.0008416711, + 0.00075750396, + 0.00058916974, + 0.0013466737, + 0.0016833422, + 0.0010941724, + 0.00033666843, + 0.00075750396, + 0.00016833421, + 0.00033666843, + 0.00058916974, + 0.00033666843, + 0.00058916974, + 0.00058916974, + 0.00075750396, + 0.00058916974, + 0.00067333685, + 0.00042083554, + 0.0002525013, + 8.4167106e-05, + 0.0, + 0.0002525013, + 0.0, + 0.00067333685, + 0.0005050026, + 0.0, + 8.4167106e-05, + 0.00033666843, + 0.00016833421, + 0.0002525013, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00033666843, + 0.0005050026, + 0.00033666843, + 0.0, + 0.0, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.00016833421, + 0.00042083554, + 0.0005050026, + 0.00016833421, + 0.00033666843, + 8.4167106e-05, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 0.00033666843, + 0.00058916974, + 0.00042083554, + 0.0002525013, + 0.0002525013, + 8.4167106e-05, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.00033666843, + 0.00058916974, + 0.0005050026, + 0.00058916974, + 0.00092583813, + 0.00058916974, + 8.4167106e-05, + 0.0, + 0.0, + 0.00033666843, + 0.0, + 0.0005050026, + 0.00033666843, + 0.00058916974, + 0.00042083554, + 0.00033666843, + 0.0, + 8.4167106e-05, + 0.0, + 0.00092583813, + 0.00092583813, + 0.0008416711, + 0.00067333685, + 0.00058916974, + 0.00016833421, + 0.0002525013, + 0.00016833421, + 0.0, + 0.0, + 0.0005050026, + 0.0005050026, + 0.0008416711, + 0.00075750396, + 0.00042083554, + 0.00016833421, + 0.00016833421, + 0.0002525013, + 0.00033666843, + 0.0, + 0.00016833421, + 0.00067333685, + 0.00067333685, + 0.0002525013, + 0.00033666843, + 8.4167106e-05, + 8.4167106e-05, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0002525013, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.00016833421, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0002525013, + 0.00016833421, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 0.0, + 8.4167106e-05, + 0.0002525013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0002525013, + 0.00067333685, + 8.4167106e-05, + 0.00016833421, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00033666843, + 0.0010100052, + 0.00067333685, + 0.00016833421, + 0.0002525013, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.00042083554, + 0.00075750396, + 0.0005050026, + 0.0002525013, + 0.00016833421, + 0.00016833421, + 0.0002525013, + 0.0, + 0.0, + 0.0, + 0.00033666843, + 0.00058916974, + 8.4167106e-05, + 0.00016833421, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 0.0002525013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0002525013, + 0.00016833421, + 0.0002525013, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0005050026, + 0.00042083554, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00058916974, + 0.00067333685, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0002525013, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00033666843, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 0.00033666843, + 0.00016833421, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016833421, + 0.0002525013, + 8.4167106e-05, + 8.4167106e-05, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.00016833421, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 8.4167106e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-blue-foot.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-blue-foot.json index 06bae0752..a40797ee8 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-blue-foot.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-blue-foot.json @@ -125,14 +125,27 @@ "alternativeTitles": [], "contributors.agent.label": [], "description": "

'It depicts a man performing a yogic posture (āsana) outdoors on a mat of antelope skin. … The form of the posture matches the description of an unnamed āsana (no. 51) in the prone (nyubja) section of an 18th-century yoga text called the Haṭhābhyāsapaddhati. The description of this āsana is as follows: \"Haṭhābhyāsapaddhati 51. hastadvayena pādadvayāgre gṛhītvā ekaikaṃ pādāṅguṣṭhaṃ karṇayoḥ spṛśet (51). (Grasping the toes of the feet with both hands, [the yogin] should touch the big toes, one at a time, on the ears.)\" Although the Haṭhābhyāsapaddhati doesn't provide a name for this āsana, the artists of the Mysore Palace, who skilfully illustrated the chapter on āsana in the Śrītattvanidhi (19th century), borrowed the description from the Haṭhābhyāsapaddhati … and named it the bow pose (dhanurāsana).'—Hargreaves and Birch, op. cit. The same authors also provide evidence that the dhanurāsana had more than one meaning.

\n

Previously known as Dhanurasana (Śrītattvanidhi manuscript, 19th century), this pose is identified in modern yoga as Ākarna Dhanurāsana (Archer pose or Shooting Bow pose). The modern name was introduced by B. K. S. Iyengar in Light on Yoga, 1966. ‘Karna means the ear. The prefix ā expresses the sense of near to, towards. Dhanu means a bow. In this posture, the left foot is pulled up till the heel touches the ear as an archer the bow-string, while the other hand holds the right big toe, this leg lying straight on the floor. In the second movement the raised leg is straightened up until it is almost perpendicular, the big toe being held throughout by the hand like an extended bow.’ B. K. S. Iyengar, op. cit.

", - "genres.concepts.label": ["Gouaches", "Paintings"], + "genres.concepts.label": [ + "Gouaches", + "Paintings" + ], "id": "tyee4x8e", "sourceIdentifier.value": "b15748881", - "identifiers.value": ["b15748881", "1574888", "574888i", "V0045699"], + "identifiers.value": [ + "b15748881", + "1574888", + "574888i", + "V0045699" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["y5sydpwp"], - "items.identifiers.value": ["i14996716", "1499671"], + "items.id": [ + "y5sydpwp" + ], + "items.identifiers.value": [ + "i14996716", + "1499671" + ], "languages.label": [], "lettering": "Appu [?] Sahib Patumkar [?] performing jogh, awaiting inspiration preparatory to turning devotee.\n\nThe lettering describes the subject as a man performing this act to please the gods and waiting for his wish to be granted, which in this case is to gain inspiration to turn into a devotee", "notes.contents": [ @@ -143,9 +156,14 @@ ], "partOf.title": [], "physicalDescription": "1 painting : gouache ; image 15 x 24 cm", - "production.label": ["[India],", "[between 1800 and 1899?]"], + "production.label": [ + "[India],", + "[between 1800 and 1899?]" + ], "referenceNumber": "574888i", - "subjects.concepts.label": ["Yoga"], + "subjects.concepts.label": [ + "Yoga" + ], "title": "An Indian person of high rank in a yogic posture (the bow pose, or dhanurāsana). Gouache painting by an Indian painter." } }, @@ -163,1112 +181,5124 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], + "locations.license.id": [ + "pdm" + ], "source.contributors.agent.label": [], - "source.genres.label": ["Gouaches", "Paintings"], - "source.genres.concepts.id": ["rs4dpxyv", "q9b2ep5v"], - "source.subjects.label": ["Yoga"], - "source.production.dates.range.from": [-5364662400000] - }, - "vectorValues": { - "features1": [ - 0.7260032, -2.433496, -2.8710635, 0.32525426, -0.53781945, -2.1566749, - -0.06988849, 0.23236471, -1.786985, 0.50003856, 0.2584497, 0.39195368, - -1.1043476, -0.23318633, -1.3927146, -2.033952, -4.6163006, -0.16182624, - -1.1484573, -1.0428675, -1.0251613, -1.9604646, -1.6532329, 0.6952307, - -1.4781564, 0.8198854, -0.28923842, 0.9452171, 1.2016947, -0.69914156, - 0.35829872, -1.1656638, -1.2944535, -0.7436334, 0.81798804, -0.7702374, - -0.77024525, 0.930022, -1.2579709, -1.917038, 0.4481368, -0.8129545, - -2.900086, 0.3987813, -1.078418, 0.29809603, 1.1101818, 1.1677414, - 1.4656848, -2.7108731, 0.6268174, 0.33043373, -0.4202845, -2.355566, - -0.8981109, 0.65975994, -1.5109947, -1.1544738, -0.1830827, -1.5454544, - -0.044215795, -0.4990873, -2.7976372, -0.0044994242, -0.89153224, - -0.4743142, -3.6255257, -0.6663732, -2.8422556, -0.7231985, -2.3593528, - -1.7811377, -0.36499822, -1.0603002, 0.534358, 1.2940611, -3.552278, - -1.4404358, -1.0290147, 1.2238649, -0.9443233, -2.0247362, 2.3212333, - -1.6970222, 0.68705535, -0.6165643, -1.8961068, 1.9816728, 0.43100315, - 1.1619995, -2.9937572, -0.12335099, -2.6728187, -0.99080557, 0.5698269, - -2.4426806, -0.65645605, -1.5925704, -0.28449088, -1.6615046, - -2.0103042, 1.0429355, -1.0045589, -1.0295764, 2.2245765, 0.32290974, - -0.5413211, -2.5561485, -1.281955, -1.9439194, -0.9257186, -0.75134546, - -2.247953, -3.564008, -2.548408, -1.180049, -0.36349514, -3.726732, - -1.340404, -2.3431525, -1.44538, -1.7855535, -1.0551904, -0.31083703, - -0.47003275, -0.2779055, -0.6773345, -1.0622946, -1.607773, 1.3029685, - -2.5554965, -0.30617285, -2.493975, -2.1653686, -1.3338237, -2.6050186, - 0.7351747, -0.47621197, -1.6353427, -0.65360326, -1.5544372, - -0.20184836, -1.5633613, -0.9619859, -0.6852137, -0.74289227, - -1.2436806, 2.403242, -2.5641594, -0.9034514, -1.0259038, -0.7501619, - -0.4487393, 0.3743949, -2.2783067, 1.1261164, -0.86031675, 0.093615785, - -0.07234286, -2.5383894, -1.2073463, -1.5804257, -1.6033276, - -0.087993585, -1.3035724, 1.1181605, -0.41316214, -0.29074138, - -0.73602134, 0.35311183, -2.8146875, 0.015265629, -0.8403617, -1.302493, - -1.3416604, 0.43564638, 1.8457433, -1.0892789, -1.7332276, -1.5076752, - 0.22727852, 0.5130118, -3.3550074, 2.1248887, -1.8726733, -0.7947086, - -1.3070465, 2.2825608, -1.26294, -3.4367504, -0.38197812, -1.4023992, - 0.055921108, -0.76076514, -0.89371085, 1.9001013, 0.71399975, 0.3376299, - -0.5037018, -0.38585773, -2.3082702, -1.726461, 2.115492, 0.23810163, - -2.2115936, -1.0599872, 0.36067623, 1.4627751, -0.7445133, -1.0436746, - -0.67707765, -0.8420418, -2.2682636, -0.35140648, -1.9488777, -1.211439, - -0.004884947, -1.4727042, -0.32103404, -0.6472511, -0.49349317, - 1.1717317, 0.5794341, 0.8483721, -1.549363, 0.5551177, -1.2088518, - 0.30095848, 0.9180027, -1.0114998, -0.27960142, -1.4610744, -1.1870646, - -3.0798748, -1.576025, -0.6737479, -0.92038447, -2.0457783, -0.6766953, - -0.81252897, 2.2418199, 0.40524513, -0.5123549, -0.8333476, 0.63989353, - -0.20609877, 1.6515312, -1.150544, -0.32910374, 0.667369, -1.3314512, - -1.9473222, -0.93602735, -1.3933644, -0.40348265, 1.1055346, 0.2941415, - -0.39441797, -1.1494352, -2.090923, -1.2076428, -0.91475815, -2.1901796, - -0.5284806, -1.3377049, 0.92163396, -2.968896, 0.37148163, 1.2860544, - 0.29984227, -1.5921885, 0.016802363, 0.016896304, -1.8809867, 1.0281148, - 1.7952179, 0.58870745, -0.88435, -1.0007772, -1.252826, -0.61672956, - 1.2520294, 1.4359006, -2.9450436, 1.5105709, -0.78708434, -3.2208662, - -1.5427139, -3.3556304, -0.8257854, -2.9399326, -0.8180075, 0.29144534, - -2.31843, -1.8737924, 0.9644197, 0.6239563, -0.96012926, -1.7443866, - -0.8814996, -2.0723727, -2.2185526, -1.4167378, -0.71904856, -3.06562, - 0.9299482, -0.04891254, 0.4419292, -1.6555655, -0.7796622, 1.3990629, - -3.840784, 1.0855302, 0.017295107, 1.2513324, 0.07016443, 0.5038351, - -1.0282841, -1.503488, -0.6788522, -1.5707903, -2.2220984, -0.06880569, - -1.2107862, -3.1660419, -2.530101, -0.37094784, -0.026035272, - -2.8547282, -1.5176429, -1.3039061, -1.1983113, -2.5765452, -3.4538023, - 0.28325528, -0.8225766, 0.81636435, -1.2261035, -2.3806071, 0.022661038, - -0.07543666, -2.266542, -2.0667782, -3.2321894, -1.3228062, -1.3631619, - -0.73077947, -1.1042081, -0.54946953, -1.0974579, -1.241013, 0.37209597, - 0.9676554, -1.419035, -1.105016, -2.2893283, -1.1106335, -0.49119872, - -1.6984178, -1.1456833, -0.87657917, -0.9757649, -1.325997, -0.7875164, - -3.3150578, -0.55912775, -1.8007426, -1.4165077, -1.1234398, -1.1967224, - 0.88427967, 1.3623799, -3.7307231, -0.9019839, -0.6697315, -0.9647223, - -1.4795253, 0.34735486, -2.23596, -2.2792234, 0.23013622, -0.0063687526, - 1.7041924, -2.3670602, 0.7330205, 0.14962545, -1.9232714, -1.0494834, - 2.097672, -0.73684317, -1.6317561, 0.034296084, 0.028459124, -1.6227565, - -3.506164, -1.315378, -1.0590895, 2.3640773, -0.712475, -2.145973, - -1.9996076, 1.2677135, -0.1554361, -0.20654076, -1.5076414, 0.42546058, - 0.2998072, -0.7493951, -0.7224217, -0.8395649, 3.1651268, 0.36675835, - -2.4329972, 0.5820321, -1.9183092, -2.8417993, -0.2857298, -4.124003, - 0.34856105, -2.3057456, -1.4550152, 0.39924556, -1.7982306, - -0.053629905, -2.4612749, -0.90561146, 0.36531228, -1.1688613, - -0.03993614, -0.15696697, 0.04127029, -2.4129286, 0.21574083, - -0.9193459, 1.9640713, -2.4869153, -2.5907476, -2.5070155, -1.2866049, - -0.70497257, -1.600165, -0.9001317, 1.3581568, 1.4226495, -1.6095679, - 3.0420685, 0.9181524, -1.5977235, -2.5842557, 0.113816194, -0.40021095, - -2.1835592, 0.49211147, -1.6898342, -1.9197992, -0.74340403, -0.5449937, - -2.300769, 0.47759485, -0.298048, -1.8902761, -0.042171024, -1.2225491, - -1.1315583, -1.5444698, -0.03335693, -2.0014427, -2.6179075, - -0.52229065, 0.20302074, -2.7882593, -0.6700147, -2.8323827, -1.5426347, - 0.69722325, -1.6061699, -0.39482495, -1.1718128, -2.9683561, - -0.91983426, -1.5715004, -1.4590712, -1.5013981, 0.035032462, - 0.107709005, -2.1354432, 1.3906626, 0.49926326, 2.8193974, -1.4512714, - -1.320151, -1.4109851, -1.6571844, -1.789533, -2.2576752, -0.01876904, - -0.10620851, -0.33293515, 0.24049479, -1.0485398, -0.07111162, - 0.89683044, -0.61120456, -1.6274159, 0.07426723, -0.9746124, - 0.035876032, -4.3743134, -3.6056108, -1.1127557, -2.023724, 1.8908147, - -0.06440166, -0.049852375, -1.3022279, -1.0369374, -0.5872518, - -1.2394259, -0.21306255, -2.6550872, 0.43368086, -0.16609302, - 0.53351843, -2.1167362, -2.207886, 0.06758338, 0.46808153, 1.1125865, - -0.9305068, -0.8908509, 0.13654622, -2.9707785, -0.98143584, -2.1974485, - -1.7301284, -1.9953753, -0.0035510845, -1.2848753, -0.8639974, - -3.0782998, -1.7355225, 1.7175158, 0.64135885, -3.4904375, -0.5411111, - -2.4320927, 0.23859364, 1.7103577, -1.8799046, 0.9594155, -0.07200784, - 0.6030209, -1.0726222, -1.3066312, -1.7547742, 0.08855011, -1.1541071, - -2.4454155, -0.57050365, -3.2174702, -0.75314885, -2.7304654, -4.084047, - -0.70471156, -1.6950264, -2.8731585, -0.14451422, 0.7226192, -0.6099334, - -1.2348228, -1.6492585, -1.4904798, -1.5798568, -0.16701669, -1.4213911, - -2.6327987, -0.6632403, 2.684833, 2.9608123, -1.8941181, -2.5829654, - -1.9089708, 0.16670649, -1.4112178, -3.7555857, -2.9340518, -0.8865805, - -2.804819, 0.70158446, 0.85739475, 0.4159853, -1.581198, -0.8592873, - 0.56353694, -1.479514, 2.1631253, -2.48481, 0.9039513, -2.0685637, - -2.417117, -2.331159, -0.52642775, -0.06771245, -3.3087173, 1.4816732, - -1.7805507, -2.8353963, 0.37547174, 1.0850476, -0.21780711, -1.4652585, - -1.4247949, 0.2519409, -1.4341072, -0.75448334, -2.5599504, 0.036910616, - 0.7105886, -1.302229, 0.45964453, -3.2336457, 0.98887056, -1.6636467, - -1.6383512, -2.7335103, -0.50665027, 2.1992483, 0.3024796, -0.77081597, - -1.1368229, -1.6627854, -0.13646007, -0.6596486, -0.5872105, -2.1842523, - -0.17108427, 2.2366974, -0.8731509, 1.2084248, -1.0296547, 0.16047221, - 0.5243459, -2.5567577, -1.7607336, -1.7327236, 3.9851227, -3.3706582, - 0.42269796, 0.090700015, 1.2989953, -1.2873743, -0.24383867, -2.9248254, - -3.1790848, -1.4137367, 0.2838302, 0.2936924, -0.2464513, -2.8404202, - -1.6774597, 0.20312172, -4.279898, -1.1339645, -0.6736804, -2.3604589, - -1.2299609, -0.250881, -0.39589024, 2.6679595, -0.5494024, -0.35362735, - -0.94203275, -2.3587673, 0.4709981, -4.1048603, -0.95432174, -2.20836, - 1.1496117, -0.43956944, -0.68355197, 0.7557924, -0.25481856, 1.1308007, - -3.1419895, 0.45967543, -2.3825817, -0.8845306, -1.3684671, -2.0280905, - -2.8765907, -1.0367725, 1.4026477, -2.4505806, 2.3990977, 0.097002715, - -0.9093792, 1.0070324, -0.6144573, -0.04094173, -0.9315463, -1.3374568, - -0.22480649, -0.16562912, -0.02365384, 1.9407732, -0.29773366, - 0.10685544, 0.44150028, -2.3060243, 1.2169253, -1.6712935, -0.6574051, - -0.8786361, -1.0948513, -0.7568536, 0.34836107, 0.46184823, -2.105194, - -2.3186877, -1.0146168, 1.3598924, 0.50996536, -0.44120005, 1.6848145, - -1.1413748, -0.9466952, -0.31806964, 0.66375536, -2.494327, 0.031273298, - -1.5732017, -0.16696751, -2.2973309, -1.9068211, 0.040602684, - -1.9442842, -2.2595947, -3.007993, 2.5576155, -3.5358348, -1.541495, - 1.6033828, -1.3779728, -0.37301037, -0.09021464, 0.4832114, -3.2303462, - -2.1429787, -0.59390116, -1.6070966, 0.14939438, -1.9882377, 0.09041649, - 2.389371, -0.5699733, -2.9570804, -2.8136308, 1.1827425, 0.1810494, - 0.65273154, 0.20061913, -1.4445856, 0.038847424, 1.6984229, -0.58791155, - -1.189312, 1.3737612, -0.10556908, 1.3043869, 1.3196744, -1.1337891, - -1.1837362, -0.61921084, 0.32620072, -0.6159029, -2.1439905, - -0.13319501, -2.7357345, -1.715453, 1.1437134, -3.150779, 0.58080864, - -0.4149227, -0.6488447, 0.35938078, -1.4350121, -2.4002728, -0.50610405, - 1.8012064, -1.3992968, -1.1231427, 0.83884376, -1.5393156, -2.1126246, - 0.22763556, -0.8620121, 0.74984276, -1.3341229, -2.0208044, -1.0887092, - -0.43067083, 1.4183142, -2.5299783, 1.1915948, -1.6178108, 0.91299397, - -3.6202357, -2.767075, -1.2184361, -3.02815, 0.6227557, -2.0375512, - -2.358712, -3.2641964, -2.2087493, -1.3459033, -3.6294048, -1.5667762, - 1.8800805, -0.050072663, 0.25242063, -1.0659482, -0.85181487, - -0.48951486, -2.7412581, -1.1062543, -0.8855608, -0.3823865, - -0.55339056, 1.0648485, -2.688831, -1.6419975, -1.8546562, -1.1251397, - 0.29222044, 0.5767309, -0.12746762, -0.07640007, 1.1838161, -2.4914527, - -1.3231362, -2.3685145, -0.018149659, -1.5563035, 2.1277454, 0.16786127, - -1.1418447, -0.85830927, -1.7833743, -0.6126792, 1.1984655, -1.1178606, - 1.4920262, 0.4534505, -0.7628767, -1.180181, 0.259861, -2.4793756, - 0.112138495, -0.5227965, -0.03672975, -2.052402, -0.14345032, - -0.17224452, -0.16284409, 1.7250628, -0.41813207, 0.6208577, -3.425564, - 1.2818975, -1.5613768, -0.99701047, -0.39356965, -1.7545271, - -0.55910224, -2.3009152, 0.5664358, -2.1052063, -0.8013786, -1.9954587, - -0.46897143, -0.75783116, 1.529618, -0.5616465, -0.83684725, -2.213577, - -2.0440588, 0.051155362, 0.49120945, -3.4380026, -1.2841237, -0.8732012, - 2.096067, 0.16346028, -1.4229666, 1.7970227, 0.2102482, -3.343449, - -1.5141295, -2.5514143, -2.3165555, -1.0496501, 2.283183, -0.7890248, - -2.3200748, -0.2097093, 0.76668876, -4.061874, 0.7058225, -1.5880024, - -3.5489962, -0.81355846, -1.5153887, -1.9185157, -2.380652, 0.57445025, - -1.2607002, -3.0679867, -1.4578438, 0.34060758, -2.192228, -2.591675, - -1.9730451, -4.2017565, -1.1483086, -1.5309055, -1.3739533, -1.2681806, - -2.0894625, 1.617657, -0.79732555, -1.5153623, -1.865147, 0.20924535, - 0.9983737, -1.0339522, 0.53190494, -1.8583714, -1.4896711, -0.65987194, - -2.1729636, -0.554093, -0.34705406, 1.0826783, -2.0673666, -0.40663534, - -0.13852543, -2.575334, 0.26142916, -2.3650017, -0.06160787, - -0.13505912, -2.6664193, -1.3309437, -0.16776738, 0.6067997, 1.3654165, - 0.27277765, 0.012994777, -3.1060405, 1.2339147, -1.4976279, 1.2366604, - -0.7993381, -2.0292563, 0.9105717, -1.924089, -0.10080006, -0.30668244, - 1.6373769, -3.8158863, -4.1806307, -2.118793, 0.3027048, -1.7450211, - 0.34149784, 0.285998, -1.7485211, 0.92098224, -1.4706758, -0.2900434, - -2.2021317, 2.237476, -2.4480362, -2.3722517, -1.9758291, 0.45652613, - 0.6330183, -2.187672, -0.6601016, -1.6384796, 0.06844361, -2.0654066, - -1.679015, -1.3542496, -0.3750598, -0.6466929, -0.69368446, -2.3384023, - -3.0525825, -2.5757396, -1.1830783, -2.1624882, -1.1198096, 0.9693511, - -1.1890676, -0.3219351, -1.357503, -0.20578021, 0.24730954, 1.5609984, - -1.8178529, -1.816645, 1.6317937, 0.62246966, -0.8952268, 0.8477616, - -0.81378895, 0.10654776, -3.4121137, -1.189973, 0.32039848, -1.4796135, - 0.38458368, -1.6720352, -1.155329, -3.764414, -0.9428399, -2.6088667, - 0.54391426, 0.38656104, -0.26973182, -0.41101664, 1.1368387, -2.5335407, - 0.2914526, -1.7763823, -1.2544452, -1.1360682, -3.714119, -2.9936552, - -2.0423942, -0.13613689, -3.186089, -1.4913795, -0.42288417, -0.9148116, - -0.07516151, -0.16169935, -0.8610098, -0.021144249, -1.8012285, - -1.945381, 0.73884505, -0.36168593, -1.1383238, 0.04595395, -1.8444198, - 0.10157932, 0.086188056, -0.12048302, -3.286916, -1.3508036, -3.3129964, - -1.3371409, 1.2595321, 0.8283409, -3.2235727, -2.0263646, -0.8456486, - -3.2094746, 1.0224355, -1.7457612, -2.0541515, -2.4694228, -2.2403452, - 1.1557707, 0.14296606, -2.2367098, -1.0175687, 0.7111032, -1.9391994, - -2.85521, -1.2644873, -1.4931386, 1.0464115, -0.25797838, 0.615214, - -1.0810485, -0.1350241, 0.3769506, -1.7024925, -0.9730389, -2.1926663, - -1.7234817, 1.1562014, -1.897902, -1.2131376, -1.7745582, 1.3329314, - -2.020688, -1.9155122, 0.5317291, -0.8511688, -1.279104, -2.272428, - -0.31148157, -1.6142368, -1.3336926, -1.495971, -3.0229526, -1.7003012, - 1.1245792, 1.6534493, 1.9193499, -0.35235932, -0.1955441, -0.60400987, - -2.3172002, -0.52782935, 0.52037305, -1.4600512, 0.4398927, 1.8108633, - 1.067215, -1.350422, -1.0273952, 1.1436425, 1.3630646, -1.1506425, - -0.5123696, -0.80599713, -0.8627037, -2.3383536, -2.2371707, 1.1009444, - 0.16794837, -1.3053993, -0.6814765, -2.2764435, -0.7113342, -0.4731722, - 0.20179099, -0.26730877, -2.2024834, -0.9834821, 0.25185227, -2.5326586, - -2.1175785, -1.2924803, -0.59007585, -1.2303647, -0.33333293, 0.6119815, - -1.4211543, -3.0896301, -1.8439288, -0.52028656, -1.7482898, -1.2497345, - -1.796633, -1.7680866, -0.35520232, 0.47028288, -1.6324731, -1.9518867, - -0.28323174, -0.872616, 0.046717633, -1.0890092, 2.4130177, -2.503986, - -0.9360584, 1.4819405, 0.11544652, -4.59298, 0.76697725, 0.66716045, - -4.3312216, -0.8244512, 0.12118125, -0.6585038, -0.14482522, 0.48287904, - 1.0951443, -1.0820732, -0.94858533, -0.15314771, -0.40034398, - -2.4313893, 1.6320678, -2.929684, 0.080775484, -1.8253634, -1.5805047, - 0.5868149, -4.4381685, -1.9086615, -2.951532, -1.9184954, -3.3267963, - -1.8328794, -2.2705371, 2.3743138, 0.13770348, 1.7661141, 0.06518094, - 0.0951563, -3.2205784, -0.56638265, -1.2586029, 1.2457743, -2.1861625, - -1.5019559, -0.7415755, 0.84427947, 1.7989666, -0.6308986, -2.5245883, - -1.4824767, -0.91395164, -0.4783952, 0.31379157, 1.931385, -0.4006886, - -0.57519466, -0.47198468, -2.543756, -1.5287665, 0.45109132, -2.2191415, - -1.2871255, 1.0121675, -1.3670653, -1.1363047, 1.1747015, -1.6129094, - 0.92729443, 2.1690128, 1.9261076, -1.0205666, 0.61382985, -3.1164682, - -3.4328563, -2.7071269, 1.281255, -1.4922669, -1.3186902, 1.0917948, - 0.83111995, -0.07991899, -2.473667, 0.36052173, 2.1999116, 2.5769515, - -0.4454362, -2.3730316, 0.5817266, 0.99887353, 1.1947197, -2.4310217, - -0.73605305, 0.25204268, -1.1281904, -1.1887184, 0.2724045, -0.65533423, - -2.463764, -2.189893, -2.6593897, -0.6463876, 0.73436093, 0.27099472, - 1.957824, 0.002103649, -0.82415265, -1.1485517, 1.0303366, -1.0660596, - 1.1114477, 0.7085111, -1.1455733, -1.6559616, -2.8373284, -1.4877955, - -2.326181, -3.8753023, -0.7084896, 0.042851213, -2.0408123, -0.72793174, - 0.05436009, 2.0916312, 0.9509017, -1.7921757, -1.5259169, 0.7686968, - -2.224441, -2.0865467, 1.9431916, -0.51866245, 0.32099748, 1.4487019, - -0.8571037, 0.39568946, -0.93989, 0.17553088, -0.2278596, 0.16945188, - -0.6504514, -0.7721955, -1.4069827, -0.4436098, 0.6839175, -0.11693914, - -0.059181303, -3.0699792, -1.9254485, 0.032118168, -1.2224613, - -0.26038316, 0.46575674, -2.6144345, -0.12700257, -0.55495304, - -1.5287281, -0.8238913, -0.18737927, 0.5043595, -0.92470163, 0.4033465, - 0.30501845, -0.4807154, -0.90605503, -0.3441955, -1.1148547, 0.26853818, - -2.8025854, -0.5506663, -1.743228, -1.383493, -0.19794476, -2.8301802, - -1.1183044, -1.0353767, -0.25071535, 0.23481925, -4.196324, -0.0363795, - -0.41321653, -2.1194184, -1.4655432, -3.4569716, 1.5550528, -0.9846825, - -0.79725945, -0.8098811, -1.8080204, -2.3708413, -0.92116475, - -0.8783685, -1.7202897, -0.27066052, -1.420926, 1.5283828, -0.6033486, - -1.0097342, -3.4333212, 0.21889576, 2.278575, -3.9221056, 1.3083158, - -1.8515716, 0.56271106, -0.42538044, -1.1233143, 2.1368337, -0.07151009, - -0.3985109, 0.46773928, 0.41817424, -3.5336702, 0.018622901, -0.6694974, - 1.2718179, -0.5841643, -0.9091777, -0.7794518, -2.6454496, 0.29116675, - -0.14082074, -1.301081, -0.19969232, -0.3656495, -2.593483, -2.2269626, - 0.24619158, 0.36377412, -2.9096284, 0.79165787, 0.04673773, -1.5473518, - -2.0579023, -0.07290481, 0.24067292, -1.2868415, -2.5921547, -1.7823274, - -0.03914836, -1.4064822, 0.9014819, -0.7422287, 0.21003406, -1.9861038, - -0.1371071, -0.039796695, -1.3515654, -1.155195, 1.1148483, 0.45483145, - -0.33568287, -0.31756195, -2.0601237, -0.43770784, -2.143317, - -0.06578471, -2.98882, -2.4223585, -1.1816229, -1.1775835, -2.0196965, - -1.7696112, -0.7226727, 0.36210606, 0.30520195, -0.8235027, -1.4657618, - -0.71450096, -0.16507459, -1.9596597, -2.940547, -2.3486376, -0.7097944, - -0.46066716, 1.1450548, -0.38626575, -3.050848, -3.1945732, -0.5711672, - -2.6767528, -3.3830562, -0.4826898, 1.6416066, -0.3962117, -1.1643842, - 0.17643544, -0.39505553, -1.9449031, -1.3142946, -0.67456853, - -0.6919734, -0.8306026, -1.5654867, -2.879257, -0.80235136, 0.59767854, - 1.8931444, -3.1243553, 0.3421163, -2.1407914, -1.7603984, -1.3570998, - 0.4287176, 0.8582168, -1.3044648, -3.0868835, -0.25989988, -1.8655435, - -1.8112369, -1.9828664, -2.304596, -0.57653505, -0.6457947, -1.138649, - 0.09589471, 2.34435, -2.0568302, 1.0656149, -1.408376, 0.13764897, - -0.99741036, 0.38989162, -2.8573546, -2.4153814, -0.4998694, 0.9014383, - 1.3129675, 1.5146444, -1.4768299, -2.1009843, 1.4541502, -0.17499182, - -2.8675797, 1.2688715, 2.125714, -3.3822536, -2.35232, -0.50530493, - -1.347494, -1.3877213, 0.8911039, 1.0169172, -1.5463665, -2.468058, - -2.5306473, -0.5241612, -0.4866201, 0.68654114, 0.61271465, -2.0917566, - -1.5662792, -0.6868144, 0.6906937, -1.2309906, -0.77665776, -0.4235853, - 2.30539, 0.28416055, -0.97507375, -1.9404392, -2.1257129, -1.3889889, - -0.7713358, -1.3380702, 1.1342968, -0.9536247, 0.74534315, 2.4494164, - -1.037766, 0.29569998, -1.5386384, -2.5561326, -2.7901628, -0.14898449, - 0.88204944, -0.64011234, -1.86838, -0.7738529, -2.7615962, 1.3931776, - -0.44963348, 0.05944595, 1.4484218, -2.4316154, -0.1629191, -2.7494514, - -0.04177865, 0.06337594, 0.1619379, -2.2456937, -1.1250098, -1.2533281, - -0.9403066, -1.735308, -0.29986, -0.6830365, -0.26502144, -1.1954314, - 0.8015323, 1.6186398, 1.1722996, -1.9376566, 0.6164557, -0.68465316, - -2.1522768, -1.9902301, 1.3400964, -1.5165057, -1.4514266, 0.123893104, - -0.7134642, 1.0192537, -0.13116516, -4.6409807, -2.7118363, -3.1705852, - -1.0913998, -2.9127398, 0.7283266, 1.1522704, -0.17747366, -1.0178666, - -1.7500966, -0.4217476, -2.3410962, 0.8666519, -0.65447897, 1.1791891, - 1.0680681, -0.35684732, -3.4134324, -1.0453924, -3.529839, -0.84262556, - -0.20345207, -2.9479775, 0.29871097, -1.9609092, 1.0151198, 2.2937474, - -2.3094373, -1.7535585, -0.19509694, 1.3751428, -1.1805278, -1.7641833, - -0.45652756, -0.9428759, -0.1677854, 0.6914195, -0.7136571, -0.6262077, - -1.5016166, -1.6503597, -0.07742073, -2.6231413, 0.018426422, - -1.7537333, -1.5201734, -0.032368734, -1.615495, -0.39926127, - 0.54920435, 0.8190044, -1.9057356, -1.5475955, -0.35371518, -1.1441219, - -1.3232808, 0.6361524, 0.068730325, -2.1165907, 3.5609865, 0.95188504, - 1.2182074, -1.5549252, -1.9148993, 1.8789225, -3.2513566, 1.1321566, - -1.0473588, -0.5383179, 0.20069884, 1.5900203, -1.7041895, -2.213234, - -1.8431785, -0.5239829, -0.69421685, -2.8003557, -1.3742131, - 0.014976241, 0.5089292, 1.2873043, -0.09413058, -2.0774984, -0.91057, - -1.0714414, -1.8520684, 0.33143517, 2.5643415, -2.0736203, -0.07764172, - -1.9524851, -1.8323852, -0.68902355, -0.5990298, -0.13546416, - -0.7667297, -1.2617534, -2.8067887, 2.8168118, -3.5105362, -2.3561387, - 0.72175294, -0.065649934, -1.1037208, -0.9827771, 0.37708953, - -2.7590253, -0.31437168, -1.6030263, 0.42797276, 1.3485407, -2.9687657, - -0.7373145, -0.48773354, 1.3725393, -2.7144437, -0.06668713, -3.691497, - 1.6856668, -1.7294216, -1.1452934, -3.2062633, -0.39189544, -0.65581566, - -1.2876264, -0.5258344, -1.8563437, -1.3979135, 1.728908, -1.4164941, - -0.12735164, 0.049082875, -1.1576997, -0.042836674, 0.8144059, - -2.574859, -1.5321019, 2.4398243, -1.0447745, -2.039495, -2.6294498, - -1.292905, -0.81026584, 0.6226144, 0.37010258, -1.1909546, -1.3385128, - -1.9914707, -0.25647488, 1.2463208, -1.1320838, -1.2973456, 1.2016168, - 2.4810286, -0.5624464, -2.2067912, -1.229018, 0.13953353, -1.2590499, - 0.480934, -2.041409, -2.8911738, -2.6417649, -0.70470697, 0.4274123, - -1.4453948, -2.4897137, 0.054209806, -2.1951652, -1.0810829, -1.2769797, - -0.44266063, -1.6556797, -1.6768955, -0.4218385, -0.11508578, - -2.1168597, -1.6250994, 1.6819909, 1.099025, -1.5419888, -3.0557241, - -1.23674, -0.35571688, -2.6961882, -0.4732515, 0.5065248, -0.70724815, - -0.4276373, -2.6957793, -0.54119647, -0.7825655, 0.82424456, 1.1992434, - -0.6167667, -1.5162854, -2.8004615, -1.9028834, -1.778532, -0.62235457, - -1.3998911, -1.6062932, -0.9891023, -1.1789123, -3.618016, -2.106916, - -0.066836774, 0.51065403, -0.79964936, 0.08616666, -0.7864664, - -1.2636771, 0.6927125, 2.0235531, -3.1501024, -0.21276593, -0.4961497, - -1.5948049, -3.5888178, -2.8368042, -0.76596457, -1.9514327, 1.494405, - -1.9666805, -0.6103266, -1.7612702, 0.023732755, -1.3446088, 0.9000562, - 1.9058536, -3.3077047, -1.2438864, 0.9183008, 1.016188, 0.6737397, - -0.45372465, -0.4654318, -0.38768744, -0.309726, 0.09490216, -1.4497033, - -0.6152865, -1.240763, -1.035463, -1.526999, -0.0660153, 1.2722869, - 0.009817686, -0.5739829, -0.5771235, 0.9421711, -0.08318926, 1.044442, - -0.95241326, -1.6718081, -0.07453434, -0.2416239, 2.1152003, - -0.0071880706, -0.3787976, -0.17193124, 0.014210343, -2.4370244, - -1.4162809, -0.88066477, -1.290726, -0.8844736, -2.605462, 0.40406644, - -2.4327242, -1.4485751, 0.76904345, 2.2434916, -0.99260336, -1.5403191, - -1.0954579, 0.9269424, -2.3444138, -3.5965786, -1.6127975, -3.4208608, - -2.4152389, -0.8948611, -1.270517, -0.27664125, -1.7675365, -2.507615, - -2.242265, -0.6885414, -3.8650677, -0.6074123, -2.9662669, 1.0071887, - 1.081573, -0.08141762, -1.4963498, -0.9916781, -1.4332361, 0.23885493, - -2.8228245, 0.9184966, -1.228016, -1.6168923, 0.6044389, 0.3053334, - -2.1752586, -4.918822, -1.3012769, 0.097979, -0.5931207, 2.9242637, - -1.4905515, -1.9828594, -0.5887172, -0.4270589, 2.6113083, 0.70327663, - -2.236731, 2.514672, 1.7282013, 0.010998622, -1.3294102, -0.38398227, - 2.7343898, 0.25046402, -0.18316707, -2.2863083, -3.5025582, -2.295381, - -1.3493656, -2.3750074, -1.0123087, 0.9322703, -0.83039945, -0.15130827, - 0.04978788, -4.6413445, -0.7207904, -2.5423648, -0.9672206, -1.5781817, - -1.7368127, -0.30392188, -0.9875271, 0.23718107, 0.4959281, -1.235345, - -1.4046204, -0.09046352, -0.66729033, -1.0602815, -1.344908, -0.8757019, - -1.6891749, -2.8310654, 0.54066116, -2.717282, -1.3154328, -1.6766534, - 0.01279898, -1.4346445, -0.014680933, -1.9632702, -1.9182565, - 0.16883962, 0.18244138, -1.7811623, 0.21248966, -2.6516676, -0.4905563, - -1.563444, -2.0442412, 1.0656276, -0.07897262, 0.26392466, 0.4222666, - -2.1647565, 0.17272171, -2.608565, -2.722964, -0.4284817, -0.017380431, - -0.45788512, -1.7822647, -2.5717895, -0.6077669, -3.111287, 0.6985313, - -1.0223272, -2.3747492, 0.43538457, -0.07703043, -1.9339602, 0.30156863, - -1.4920864, -1.4498512, -2.3552408, 0.092184804, -0.5862259, -0.8184731, - -1.1817254, -2.7097738, -1.6807095, -0.6615681, -1.0933611, -2.3544366, - -0.5334659, 2.4021122, -3.378868, 1.9429994, -0.6353074, -1.8622503, - -0.6974488, -1.9593157, -1.6952577, -1.3376818, -0.014841635, - -1.1975893, 0.23227108, -3.3720257, 0.820391, 0.059551835, -1.6423827, - -0.39263508, -2.8165102, 0.48860052, -0.5317129, -1.1038382, 2.4033728, - -1.9950465, -2.1600308, -0.50667316, 1.061826, -1.301341, 0.6849574, - 1.7036632, 0.3046233, -3.1805525, -0.23578727, -1.2779839, -0.60456717, - -0.2582986, -1.1343083, -1.517717, -1.0284297, -1.6307836, -1.2363858, - -2.299955, -1.0719846, -1.0298318, -2.5522158, -1.876245, 1.0737348, - 2.1667087, 0.31895825, -0.8435483, 0.091362424, 2.4733317, 1.9438945, - 2.2307992, -0.80960494, -1.1945603, -0.806232, -2.7697377, -1.9639311 + "source.genres.label": [ + "Gouaches", + "Paintings" ], - "features2": [ - 0.50131965, 1.9239324, -0.18112075, 2.1164165, 0.43297678, 2.75787, - 0.67005014, -0.39859015, 0.6039015, -1.0651455, -1.4540327, -0.50429136, - -0.59954554, 0.06445113, -0.16301051, -1.7560418, -0.31656802, - 1.0241807, -0.08136834, -0.5936827, -2.226132, -2.5423174, -1.7524661, - -1.5450017, -1.2001576, 1.091301, 0.7218467, -0.88290364, -1.3569734, - -0.6517304, -0.9205523, 0.98200774, -3.0357242, -0.3312399, -2.0905378, - 1.80854, -1.0860516, -1.4913836, -1.1809961, 0.059078783, -2.305951, - -1.6269277, -0.12960365, 0.06588919, -0.34092018, -0.7347177, - -1.7713889, 0.2039707, -3.0007827, -1.0889102, -0.79792464, -2.1968176, - -1.7019552, 0.19035542, 0.716957, -1.144905, -3.7181065, -1.7752576, - 1.7979288, 0.01190738, 0.2635157, -3.1860664, 1.9116764, -0.8351992, - -1.6035467, 0.87928843, -0.7708781, 0.9671967, 1.6543149, -0.705744, - -2.1637359, 1.4665147, -0.13325928, -1.5023959, 1.3530823, 0.24916789, - -2.9233932, 0.9761926, -2.510655, -2.7187812, -1.1003437, 0.41606593, - -0.69278157, -0.32667106, 0.19276746, -0.06967858, 0.8499392, - -2.1641083, -2.5046206, -1.4178107, -1.4494736, 0.0025124997, - -0.24208482, -1.4716972, 0.6514553, -2.097799, -0.0095316805, - -1.1061196, -1.8517767, -2.3254511, -2.4324222, 1.5858778, 0.5257752, - -4.731678, -2.2103462, -2.0948682, -0.7860699, -1.0060242, 0.11241941, - -1.3018271, -1.856019, -0.2665034, -1.7298679, 0.019088428, -0.45211557, - -0.7894868, -0.7435529, -2.3504589, 0.54296565, -0.6515874, 0.67664576, - -0.80389774, -0.42775905, -1.9261535, -3.5828512, 1.0107441, 1.6444708, - 1.6668767, -3.490559, -0.79967695, -0.5268755, -2.9296956, -0.44472474, - -0.11784183, 1.0173062, -0.6942021, -1.6591609, -3.6071012, -2.292901, - -3.6312666, -1.3162823, 2.8540504, -0.2597747, -2.916775, -1.4810164, - -2.1026945, -1.7545059, -0.09564588, -0.3287009, -1.3921914, -0.8426554, - -1.250779, 1.8514962, -2.6219893, 1.2694054, -1.2122384, -0.9062985, - -0.36091518, -2.2425885, -2.3776577, 0.4255527, -2.129956, -1.932145, - 0.3139568, -1.0902818, 1.2222378, -0.7435383, 1.4247322, -0.08111377, - 0.8092637, -1.0145094, -1.491778, -1.5428674, -3.5135338, -0.045320436, - -0.13655385, -2.4733841, -1.1897415, 0.04271291, -0.6185645, 1.1485066, - 1.5834868, -3.0044317, -1.8555521, 1.3466142, 1.2524064, -2.0265064, - 0.8450572, 0.19033888, -1.4207546, -0.56967306, 1.8042532, -1.1976064, - -0.45166302, -0.09135775, 1.1940597, 1.7756797, -2.555674, -1.3026123, - -2.7001786, -2.1582072, 1.4613781, -1.960064, 0.6677788, 0.1991987, - -3.646029, 0.64940923, -2.827518, 1.529647, 0.81839687, -0.800136, - -0.9264187, -1.2344544, -0.30799368, -2.719117, -1.8316106, 0.91782504, - -2.842664, 0.2645698, 1.9528849, 0.37410405, 2.152725, 3.0849428, - -0.35839418, 0.21535727, 1.0449027, 0.1938729, -0.87358135, 0.6122474, - -1.3465695, -1.6284939, -0.39474207, -0.8058366, -0.3476485, 1.1760906, - 3.1481414, -3.1482577, -0.61361283, -1.0646808, -1.742887, -0.20980638, - -1.2445868, -2.6599581, 1.2514626, -0.74182093, -2.3203146, -1.0629058, - -1.1455957, 1.4819021, 0.11186066, -1.0842566, -1.9895823, -0.63813734, - -0.9732356, -1.1456382, -1.4937072, 0.62621474, -0.4365285, -0.39562112, - -0.5365255, 1.1703922, 1.2008425, -2.2035844, -0.5556623, -2.1981337, - -0.70980453, -2.1245544, -1.532301, 0.43061325, 0.47692072, -1.075668, - -2.6416738, -1.2916471, 3.862049, -2.9979925, -0.1266938, -3.488326, - -0.93701667, 0.4335823, -0.5237583, 0.57206225, 0.03803619, 1.2077484, - -1.5455378, -1.8360994, -1.2630391, -0.09059004, -2.0322902, -1.2076408, - -0.3859558, 0.67550206, -3.3652315, 1.1109368, -3.9240985, -1.8694922, - -1.8723996, 0.26067585, -3.0552452, -0.69786185, -0.8647344, -0.5428108, - -1.2540404, -0.30035147, -0.48742208, -1.1580217, -1.0339544, - -2.5698526, -0.6824705, 0.77548474, 1.2482026, -1.0748552, -3.5629544, - 0.047805224, -1.812792, -0.72090846, 1.3341302, -0.28440002, -0.5128413, - -3.028994, -3.1967554, -0.034765653, -1.1669313, 0.23421833, -1.807278, - -0.70708716, -0.8621944, -0.7358851, -2.4722881, -1.1739402, -2.0232291, - 1.8083303, -0.84778345, 0.35652852, 0.2862781, -1.6724597, 0.73158085, - 0.07671481, -1.8487693, -0.9523542, -1.8597026, 1.3660601, 0.023611829, - 0.15063705, 1.8483258, -2.1126854, 0.8319794, -4.2092767, -0.514816, - -3.5125768, 0.7571311, 0.34235406, -0.48664358, 0.04487647, -0.24161363, - 0.04306241, -1.2004355, -1.8916072, -0.6406268, -1.3143415, -2.585551, - -2.021493, 0.38955426, -1.9094137, -2.2329414, -1.5356109, -0.9791197, - -0.74799633, -3.9451337, -1.117731, -2.0170436, 0.8877732, -0.25091305, - -1.5443397, -1.4586328, 0.13286147, 1.1658326, -3.1723294, 2.230884, - 0.7613926, -0.34309688, 0.57093525, 0.34693855, -2.1133564, -2.0418122, - -0.26271516, -2.0932088, 0.009486998, -1.7396799, -2.8348427, 2.394059, - 1.682744, 0.27821222, -2.969802, -1.1052598, -0.9129527, -1.0745672, - -1.9040468, 0.2009219, 0.67904043, 1.4774003, 2.2876227, -0.9949241, - -2.4597318, 0.7069339, -1.3252326, -1.222401, -2.6013513, -1.8704149, - -1.3994895, -0.35754383, -0.8833759, -0.070384674, -1.981882, -4.877027, - -2.2170858, -1.8129133, -3.1644056, -2.3152852, -1.7327683, -3.5321124, - -2.0605564, 0.32009748, -0.2948045, -0.015821226, 1.1922867, 1.3658966, - 0.6007327, -2.25063, -1.7351459, -1.7450821, -1.3334169, 1.0487918, - -2.9552488, -2.1913488, -1.4044771, -0.9905663, -1.5710133, 2.6542773, - 1.2749704, -3.329388, -1.1650246, 1.3573673, -1.2553685, -0.9872717, - 0.5464763, -2.9713147, -1.0077618, 0.7114025, 0.83859825, -0.99152195, - -1.749912, 2.2426643, 1.4642736, -2.2576683, -0.9243489, -0.72535294, - -0.5004944, -1.6582175, -1.6696632, -1.229687, -1.6165193, -2.605054, - 1.0740064, -1.3131498, 1.2003412, -4.2721767, 0.87468433, 1.10324, - -1.9256918, -0.008747432, -1.7219588, -0.30978096, -0.32030767, - 0.34544662, -0.8007704, -0.7021916, -0.31170955, -2.7286007, - -0.43538707, -0.80999273, 0.80526054, 0.5574765, -4.4373364, -2.5094087, - -1.1511525, -0.12427601, -1.2716825, -1.7498262, -0.5296589, - -0.84552795, -0.4315787, -0.63209075, -0.6098882, -1.0051228, 0.9338989, - -2.2056744, 0.98310673, -0.7108722, 0.16531834, -2.2365768, -0.5671752, - 0.08190334, 0.233296, -1.938203, 1.1231863, -1.887428, -2.8432412, - 1.0555418, -1.6662037, -0.5162205, -1.2933458, -0.42300183, -1.4715639, - -0.46051663, -1.2080344, 0.17572983, 1.3679554, -1.9940193, 2.3790035, - -1.5693763, -3.8062592, -1.3378019, 0.1920797, -0.7551384, -1.9592315, - 1.8270823, -1.4305513, 0.24710706, -1.0425396, -1.3233024, 0.11681084, - -0.35575885, -3.3666344, 1.9178895, 1.2782189, -1.7632513, 0.9114001, - -3.0111732, -1.2574086, 1.2585893, -2.0509443, -1.1709232, 0.88033575, - -2.2202985, -0.83625215, 0.20640528, -1.972432, 2.2826815, -1.9958035, - -1.5937598, -0.1917138, 1.0166215, 0.37107474, -2.7570605, -4.058815, - -1.7064445, -1.7840827, -1.9469845, -1.6808386, -3.051427, 0.9404965, - -0.98281634, 0.3622724, -0.6618592, -2.2611964, -0.11865195, -2.472564, - -3.9609337, -1.294545, 1.8017852, 0.28001577, 1.6774509, 0.47724485, - -0.86286294, -0.55578905, -1.8421088, -0.16333853, -1.5296443, - 0.76684654, -2.324303, 0.95298576, -2.351533, -1.9947816, 1.9680502, - 0.17075478, -0.08447637, -0.817846, 1.7115251, -0.09445085, -3.2912793, - -1.9119794, 1.4718082, 0.057665404, -2.141076, -3.5077584, 0.43066594, - -1.0335348, -3.080026, 1.3702013, 0.80195874, -3.0835526, -2.1648026, - -2.1204329, -0.5457261, 0.9080594, -4.2017574, -2.803576, -0.85264313, - -2.1687694, -2.355984, -1.6412534, -2.5784366, -2.3953502, -0.97940856, - -0.32542652, -2.5725088, -1.21576, -0.439698, -3.46485, -0.8455328, - 0.033642083, -1.4894024, -1.9356476, -2.333709, -1.335322, 1.1510141, - -2.1580462, -0.6360669, 0.7601119, -2.8052318, 0.20405468, -2.1264696, - -0.87478375, -1.6945955, -1.4966842, -2.2780924, -0.1072155, 1.3225998, - -1.3293335, -0.89346224, 1.1573933, 0.3358081, -2.228754, -0.20181268, - -1.5143404, -0.39437145, -0.5440966, -0.8234014, -1.996695, -2.1087773, - -0.23198396, -0.846143, 1.2856071, -1.7809767, -1.3545159, -2.893653, - 0.4834541, -0.5759335, -1.1862534, -1.5432761, 0.51951104, -0.76753736, - -1.0004128, -0.5111347, -0.07682963, -3.3874168, 0.395931, -0.20113139, - -0.4226942, 0.2815246, -2.8272376, -1.2756364, -0.4689995, -0.6080322, - 0.008541282, -1.6163287, 0.45831466, -1.7707396, 0.025201635, - 0.44565794, -1.1396829, -1.5056566, -2.192079, -2.1580417, -0.5586385, - 0.31685594, -1.945005, 0.8718115, -1.1842443, 1.0682242, -0.62866795, - -0.82881874, -0.71922225, -1.3856177, -1.4518168, 2.1151183, -1.3826058, - -1.3043921, -2.2889233, -0.76888883, -0.053302966, -2.966463, - -2.4746125, -3.0024977, -0.14276853, -0.5423212, -1.6761771, - -0.83908606, -0.5237558, 1.472515, 1.4974604, -2.1294544, -2.4821029, - -1.9195759, -1.1366018, -1.8611399, 0.052767575, -2.0025744, -1.9869385, - -0.13038595, 0.37555426, -2.2020135, 1.5303227, -0.26536322, - -0.23062606, -0.83654475, 0.88333184, -2.0721855, -2.925148, -1.6860324, - -2.5053248, -0.43301293, -0.022066392, -0.94859177, -0.727786, - -0.9259502, -2.7167277, -0.70545775, -0.26956323, -1.3473145, - 0.21333516, -1.9463313, -1.8438908, -3.6500359, -4.9110084, 1.0228794, - 0.4276787, 0.2720352, -4.1017056, 0.66407406, -0.27836448, -1.8836488, - 0.24313244, -0.5021929, -0.097307175, -1.3215309, 0.32632792, - -1.4375261, -0.90227336, -0.8356286, 0.4677045, 0.07585398, -1.0624268, - -1.6160108, 2.7169342, -0.30198324, 0.18815432, 0.5125921, -0.06783308, - -1.0075498, -0.18887162, -1.7777286, -1.9546928, -2.1289504, -1.4273624, - -3.5281832, 0.33142716, -0.47722423, 0.6419341, -1.9075426, 0.93064964, - -1.7891462, -2.7260008, 0.82338023, -0.17692497, -2.9134212, 0.46639472, - -0.9821618, 1.4888817, -1.0215836, -2.2085629, -1.6209468, -1.3719722, - 0.14596662, -1.5438137, 0.95099807, -0.68624115, 2.1168964, -2.224596, - -0.74889606, 0.85315466, -1.0160536, -1.4442853, -0.24105331, 1.7570387, - -0.46564168, -3.3230197, -0.98674446, -0.38298896, -2.0613978, - -1.0145204, -1.4274821, 1.2425054, 1.7322879, -1.2329991, -1.185233, - -1.1707007, -2.1155725, -0.8948053, -0.30141148, -2.041564, -1.0028248, - -1.4366775, -1.2251298, 0.6044313, -0.5543463, -1.9335996, -0.5802417, - -2.86535, -0.7447058, -1.1349531, -0.12915705, -0.7806535, -0.52155226, - 1.9010756, -1.9987212, -0.019579384, -0.028163139, -1.9820112, - -1.414892, -0.39802372, -0.03399578, -0.22091134, -1.3168654, - -2.0790806, 2.6200218, -3.0443752, -0.6019946, -0.13957487, 2.1940541, - -0.15303683, -1.0007318, -0.1266591, -0.07672292, 1.1256899, -1.8425677, - 0.39066702, -1.502185, -1.2489856, 1.7175825, -0.49464816, 0.7010023, - -1.6043562, -2.4902875, 0.88419527, -1.3307925, 0.024505602, 0.49904126, - -0.4872017, -1.3791106, -1.4624804, 0.68347025, -0.6173865, -0.9979191, - -0.26968428, -0.41130576, -1.9358683, -1.5763426, -0.60077965, - -2.4611902, -1.87917, -0.7616742, -2.904607, -2.0544128, -1.373286, - -1.6579013, -0.18337472, 0.73322254, 0.26876828, -0.016894672, - -2.3887029, 0.81563616, 1.6082116, -0.57690006, -1.4374547, -1.1868428, - 0.09570899, -1.7290401, 0.19799723, 0.9699215, -0.5585692, -1.8259054, - -0.052300632, 0.14177231, 0.4207323, -0.4666352, -2.341176, 0.65212685, - -1.7801753, -1.1878152, -0.85976744, -0.18456602, -1.5488162, 0.6998126, - 2.6431167, -2.4619744, 1.5586843, -0.024041124, -0.7720999, -1.4346867, - -1.8186339, 1.4648358, 0.70984083, -0.8139027, -1.4010514, 0.20766388, - -1.2822932, -0.49791855, 0.6201603, -0.7713902, -0.14913286, 0.8467665, - -0.6970974, -2.5393913, -0.5268003, -0.8615524, -2.5538964, 0.0395822, - -2.134427, -1.182054, -0.60666883, -1.1889294, -0.42095774, 2.1252823, - 0.038723513, -2.9107528, -2.902469, -2.7091172, 0.593076, -1.6534672, - -1.9372978, -0.87701476, -0.41241318, -0.4912956, 2.5128088, 0.63241494, - -2.1876423, -0.10105548, -2.5362217, -1.9353359, -2.6281512, - -0.23545238, -1.9576906, -2.783448, 1.7696816, -1.3592703, 1.7891444, - -2.0710428, -0.51336056, 1.2367743, -0.2872211, 2.7830763, 2.4090648, - -0.090610586, -0.16738757, -2.3178716, -0.29695633, -4.7874684, - -0.79377365, -0.7206104, -3.0159352, -0.45596448, -0.12363785, - -0.36268967, 0.27414477, -1.204963, -3.0458643, 1.6174009, -1.7267102, - 0.70637536, -0.69616795, 0.09895464, -0.91467315, 0.051890217, -2.3619, - -1.862709, -1.1498502, -0.049181297, -1.2222887, -1.0460788, -1.115515, - -1.8077663, 0.07165682, -2.2356448, -1.3992531, -1.0153916, -1.1756728, - 0.018720325, -0.8070885, -1.1996514, -1.1428386, 2.1666508, -1.5661695, - -0.2275171, -0.7920596, -1.04792, -2.189509, -0.89108825, -0.017530844, - -0.7406558, -2.1883883, 1.0719824, -0.8145977, -1.2627709, 1.6816226, - 0.08872668, 0.6666705, -0.90028584, -0.3763228, 1.0033605, -1.3817477, - 1.105531, -2.6933765, 0.87005484, -0.045012016, -3.2470014, -0.76190054, - -0.83061564, -0.2590999, 0.29563487, -1.9731815, -0.6234999, -2.6627152, - -0.45735133, 0.028895263, 1.414909, -1.9839869, -2.0014193, -1.3160105, - -2.0428135, -2.1480932, -1.2851901, 2.690393, -1.303031, 0.6905937, - -0.79086745, 0.31361052, -2.6746025, -0.68352073, -2.171198, 1.4132202, - -1.0836129, -0.17211865, -1.3140557, -0.539091, -1.6908484, -0.31028134, - 1.450799, -1.4624729, 0.5132118, -0.84601337, -0.03804545, -2.8982651, - 0.47791955, 0.6423055, 0.34767538, -1.9874728, -1.6719254, -1.258052, - -0.20137385, 1.3133827, -0.9512933, -1.8892068, -1.3072096, -1.3708571, - 0.17270958, -0.21230093, -1.6652564, -2.8873334, -0.53154695, - 0.20266566, -1.621105, -1.3607825, -0.2807009, -0.009540096, 0.85398465, - -1.3707521, 0.29104227, -1.0031116, -0.1393923, 0.065046124, - -0.78418636, -0.77749735, -1.6583552, -0.91584176, -2.8273017, - -2.016318, -0.09272406, 1.7025023, 0.0021083504, 0.9220742, 0.05783173, - 0.72565365, 0.59573925, -0.053906932, 2.3275547, -0.48844922, - -0.8010278, 0.33710748, -2.3730464, 0.951474, -0.20743303, -3.8215537, - 0.09793004, -1.7174612, -1.2730644, -2.4456394, -2.8654087, -2.1766772, - -2.1018386, -0.2259417, 1.5089484, 1.6598313, 0.67042583, -1.9030265, - -2.887712, 0.317271, 0.34301215, -0.7939985, -2.6284697, -1.5692166, - -1.5269611, 1.169506, 0.08090617, -1.4290298, -2.9114304, 0.8292242, - -0.13000897, -2.4035492, 0.8579754, -0.92300427, -0.3302297, - -0.57359195, -2.456746, -0.163707, -2.6960766, -1.8022528, 0.9120934, - -1.6515617, 1.649579, -2.5771265, -2.441423, -0.50834197, -1.6432872, - -0.6819474, 1.3170658, -0.81917465, -1.9256226, -1.2213585, -0.7072528, - -4.218249, 0.65705055, -0.19087702, -0.25975037, -1.6941957, -2.1163113, - -2.2248898, -1.3030604, -1.8391389, -0.9194658, -0.46885395, -1.7337483, - -1.8476559, -1.1636846, 0.22362942, 0.98985606, 0.76426077, -2.43814, - 0.25927103, -0.31356904, -2.6059256, -1.2146969, -0.19005392, - -1.1011927, -1.3257444, -3.988457, -0.7119022, -0.4238917, -2.6300638, - -3.4938633, -2.4191947, -0.56482756, -1.6088269, -2.2301788, 0.03916544, - -0.96901906, -0.1936428, -0.70618176, -1.2480392, 1.1700002, 0.548386, - 0.58272874, -1.5391735, -0.018094622, -0.60853744, -1.584369, - -0.90752053, -3.2816103, 1.566045, -1.0503778, -1.7643027, -2.037836, - 0.91678584, -3.1196454, 0.4697911, 1.4105413, -0.6112108, -0.17072445, - -2.5596242, -2.43036, 0.111212924, 0.49156195, -2.7029214, -0.59299487, - -1.0305092, 0.5008824, -1.9758435, -0.28549507, 0.6138981, 0.70419127, - -1.1340964, -1.0633281, -2.7231126, -1.6107469, -0.77684474, -2.1563067, - -0.6539032, -2.2709763, -1.4021474, 1.9086225, -1.2563456, 1.3955921, - 1.0293773, 0.416973, -0.32404765, -1.574823, -1.3921697, -2.6940918, - 0.99105525, 1.1619576, 0.82942355, -3.162023, -2.6414404, -0.042966668, - 0.0097201355, -2.1699827, 1.6852919, -0.91761744, 1.4449981, 0.47659373, - 2.4554641, -2.6481373, -1.2820079, -0.23854382, -0.3511659, -1.6416694, - -1.4863919, 0.67647636, 1.1385801, -1.4300847, -0.049846712, -4.732878, - -3.3600755, 0.2912495, 0.12122196, -2.1383793, 1.3143872, -2.1543775, - -2.7805133, 0.7819353, -0.8725589, 0.38861972, -0.57232785, -0.5567508, - -0.018418163, -3.506124, -0.6579939, -1.2731175, -4.3197627, - -0.097960845, -1.1552681, -1.6410875, -2.5160038, -1.2791072, - 0.42889374, 1.8348258, -0.5001852, -2.9582944, -2.1016853, -2.159974, - -2.375033, 1.931323, -1.457386, -0.916294, -0.060594235, -1.7837772, - 0.7385968, -2.401936, -0.23999514, -2.0619133, -3.5517387, -0.7162789, - -1.3257579, -1.0247405, -2.5690548, 0.23499697, 1.5245245, -0.9519685, - -0.46083874, -0.023525521, -0.07044549, -1.9034197, -1.3456032, - -0.3687117, 0.3151089, 1.2316383, 1.33948, -0.11267485, -1.5978211, - -1.8672447, -1.0518343, 0.5472734, -1.9883937, -1.3279653, -0.20314756, - -0.4428017, -2.6741967, -1.63766, -3.0909631, 0.67839146, 0.4002579, - -0.545866, -0.10067543, -2.013307, -1.4984189, -0.6493855, -0.50372994, - -2.205184, -1.3948853, -1.9933186, -1.7534314, -0.58857065, -0.17803796, - 1.0002993, -1.4042344, -1.3987925, -3.2969775, -1.7713213, -2.0492873, - -0.8815189, -2.3331907, -1.8932686, -2.3065343, -1.6134067, -1.0067163, - -1.7944865, -1.9619733, -1.005286, -1.3033593, -2.1062486, -0.17726003, - 0.18262652, -2.059549, 0.22762954, -2.8726091, -0.41640308, -1.449043, - -1.5647533, -2.5177298, -0.8771288, -0.016047366, -1.6079673, - -2.3765955, -1.0684742, 3.435924, -2.1409948, -0.57654154, -0.95168567, - -3.2144501, -1.3465947, 0.7440712, -0.96583194, -0.13581124, 0.62830603, - 1.2293857, -0.2673698, -1.4894623, -0.98086697, 1.3933648, -1.385753, - -1.8627216, -1.2726064, -2.7087455, -0.5799471, 0.61948794, -3.5382788, - 0.57889855, -1.8123418, -1.9711803, -0.58121586, -2.3942382, -0.4759486, - -0.4685912, -2.0048084, 1.6159602, 0.015962984, -0.3800398, -1.7002686, - 0.31728554, -1.3531079, -0.03574618, -0.8722434, 0.68210304, -0.9514357, - -0.37821013, -1.6935909, -1.5612679, -0.035580635, -0.51905125, - 0.03028277, -0.6657004, -1.6064234, -1.5314287, -0.74990267, -1.3329463, - -1.8731364, 0.07094575, -1.725556, -0.051924363, -1.0463798, -3.067971, - -2.4195786, 0.192323, -1.7344776, -2.5089257, 0.5383106, 1.0472085, - 0.8312465, 0.7848455, 0.45779303, -1.931175, -0.9144162, -1.0917693, - -1.6300441, -0.47677904, 0.09944107, -2.7124505, -1.2818279, -2.3530235, - -0.10639198, -0.51470727, -2.1028843, -0.37978956, -1.5907726, -2.16575, - -1.3437469, 0.26080427, -2.2054534, -1.3862572, 1.3015268, -0.87119895, - 0.7646276, -2.857801, 1.0582258, -1.8391906, -1.2519562, -2.2781296, - 0.7012913, -2.3696375, -2.337951, -3.0551672, -1.4695942, -0.56075805, - 0.59409237, -0.25585347, 0.047703292, -1.3434178, -1.4347131, - -2.6012332, 1.3035663, -2.7437522, -3.630841, -1.8143682, -1.6075295, - -1.9695466, -3.0784965, -2.0440533, -0.77097297, -0.57994175, - 0.48514736, -1.2126855, -2.9004924, 2.0109653, -0.2466897, -1.4850386, - 0.027688116, -1.7220796, 0.08103478, -2.0058753, 0.044388894, - -1.7084991, -0.7774507, -0.14328094, -1.7308849, -0.26658264, 0.4291811, - 1.2564926, -0.23584147, -0.30577296, -0.24157661, 1.1603217, -2.4522717, - 0.7056253, 0.5982621, 2.2376583, -2.1152503, -1.144127, -0.83260196, - 0.5676783, 2.3114712, 0.4422794, 0.5982239, 1.6010151, 0.1669184, - 0.1582772, -3.1014225, -2.082085, -0.4435655, -1.3635589, -1.5221201, - -0.6960196, 0.77459186, 2.4685934, -1.1915144, -0.035937667, -0.482803, - 0.5107883, -1.6843162, -0.9947344, 2.0073383, -0.7836894, -0.38355505, - -3.2043588, -2.6590877, -1.1658276, -3.4281566, 0.12511861, -0.75621337, - -3.0923533, 0.0889865, -0.618203, -0.7263398, -1.6260805, -0.9565927, - -2.0395396, -1.5151302, -1.7932857, -1.0751526, -0.37788963, 0.09467721, - -1.4480174, -1.8113284, -0.3407678, -2.8361294, -1.9916939, -2.3917205, - 2.4809334, -1.318184, 1.9253267, -2.2356224, 0.33978257, 2.527728, - -3.518754, 1.0305897, -1.885847, 1.1579596, 0.6228006, 0.28777593, - 2.7614648, 0.38700783, 0.6025944, -0.644771, -0.85351175, -2.2090561, - -0.27416477, -0.6807242, -0.19690505, -2.4608967, -0.0070602326, - -1.6242596, -0.33807808, -2.0582082, 0.0118566565, -0.269689, - -1.3009973, -2.5437572, -2.5489974, -0.092199944, -0.28913975, - -0.08999503, 0.057469536, 0.13630031, 0.18615803, -0.46272528, - -0.26561573, -0.08421792, -0.23652884, -1.8269238, -1.2106743, - -1.153746, 0.4851471, -1.6931823, -2.705544, -0.41689223, 0.24658124, - -0.9294539, -4.2585516, -1.0493503, -1.2120368, -1.7638153, -0.958827, - -0.15981323, -3.4940186, -3.1897416, -0.09911193, 1.6103755, -2.7236917, - -0.092325546, -3.1357293, -1.0077544, 0.19548304, -3.64999, -1.254182, - 0.44327623, -0.1585733, -0.27859956, -1.1966838, -0.07711216, - -1.9501103, 0.3296364, -0.93762237, -1.9417647, 0.27841043, -1.698363, - -1.5745363, -1.858453, -1.6621612, -2.2147906, -1.421243, -0.9502305, - 1.190407, -0.984307, -1.0215055, -0.29341635, 1.0584459, 0.39654708, - 0.68601537, 0.12921521, -0.77542305, 0.55226475, 2.0122879, -0.9810485, - 1.8553815, -1.591284, -2.4461436, -1.4910907, -0.62108076, -0.5563403, - 0.094925486, -1.0477631, -2.25774, -1.7829118, -1.8492423, -3.8815231, - -2.0584333, 0.17854132, -1.2458754, 0.13124663, -1.45531, -1.3175101, - -1.8761694, 0.571703, 1.6606884, -3.0013628, -0.35831755, -1.2499228, - 0.53436327, -1.7655497, -0.58841217, -1.5196072, -0.4977322, -1.8811244, - -0.15432465, 0.07217358, -2.0565226, -2.9261985, -1.9899541, - -0.36751017, -3.2965548, -3.4346392, -3.3594217, -1.1442641, -2.1874242, - -1.8252612, -0.95452654, -0.5703858, -0.42458713, 0.18443736, - -2.2076347, 0.056434996, 2.8538523, -1.0650213, -0.53472847, -1.3514358, - 0.041267857, -0.24523963, -2.5736985, -1.3424162, 0.19750811, - -2.3969765, -2.7807286, -1.3973393, -0.9879976, -1.6296538, -1.5864096, - -0.6789162, 0.12182245, 1.766111, -0.37002122, -2.3234265, -2.5155938, - 1.3607284, -1.4791654, -0.5187281, -0.2847841, 1.5340717, 1.2035341, - 0.64116746, 0.21796906, -1.0113988, -2.0616727, -0.7023357, -0.5666649, - -1.4280326, -0.9423918, 2.2148068, -1.2628496, 0.63521105, -2.2473981, - -1.8911284, 1.0172075, -0.36742473, -1.8617337, -1.8361942, -2.3950455, - -1.347279, -1.3477846, -0.5387552, -0.8694387, -2.1049812, -0.87753516, - -1.1089215, -1.5377622, -0.4392246, -0.6470683, -1.0395826, -2.2919629, - 0.1110972, -1.6471735, -1.0753237, -1.311491, 0.2801061, 1.5873756, - 1.0484163, -0.82942164, -0.55268425, 0.5263605, -0.7029504, 1.3407545, - -0.08173008, -1.3893751, -0.07013741, -0.61958796, -2.274227, - -0.47053283, 0.9168365, -3.060864, -2.9697378, -1.0364453, -0.73036855, - -0.80146307, -0.5505533, -0.6619939, -3.5199783, 1.6574188, -2.0918772, - 0.11890082, -2.0295591, 1.3452944, -0.7430386, -2.2019346, -0.4834511, - -3.6713352, -0.27576202, 0.15584747, -3.976727, -0.43831488, -0.7674802, - -0.39614892, -1.51322, -0.68741465, -2.9117608, 1.9251738, 1.0404533, - -3.3251643, 0.9042559, -1.6999842, 2.9594767, -1.2398072, -3.200208, - -0.5860531, -3.4763136, -0.1293771, 0.86846703, -1.4678502, 0.15289941, - 0.80135804, -0.83875984, 0.089009196, -1.2582794, -3.3365474, 2.626638, - -3.1157157, -1.7249106, -1.5695788, -1.6309729, -0.67639714, -0.6637995, - -0.2526147, -0.17558037, -1.2322332, -1.8349934, 0.55457956, - -0.40200377, -2.0376074, -0.34991542, -0.8482378, 0.77341676, - -1.3861531, -2.8150558, 0.26535404, -0.8373086, -0.2112925, -0.56573254, - -1.5246226, -0.6604257, 0.31465262, -1.1915027, -0.858544, 1.4561297, - 0.09033468, 1.6008703, -0.20940335, 0.055081747, -1.2102387, -1.1596531, - -1.4567963, -4.382966, 1.0896412, 0.4325207, -0.089728236, -2.4839077, - 0.74524313, -1.5313182, -1.1159691, 0.40980032, -2.5881445, 0.16088475, - 0.088472344, -1.6988513, -0.24707337, 0.41100132, -0.39324772, - -0.8875781, -2.9674199, 1.8081982, -1.2266726, -3.1637723, -2.6320567, - 0.16788006, -0.49898568, -0.055406842, -2.6156, 1.9500412, -2.1532853, - 1.4274137, -1.6173615, -1.3259983, -2.0691495, 1.1141641, -1.9291003, - -0.7550576, -3.23556, -0.61626786, -2.0302494, 0.046123166, -1.2231692, - 0.084720194, -1.5290654, 2.0356498, -0.43090594, 1.5999656, -1.1180393, - -2.674206, 2.195512, 3.0201201, -1.2636404, -1.0930293, -0.54201657, - -0.9543907, -0.5814497, -3.1797888, 1.5258036, -1.3124872, -1.2755736, - -1.1138839, -2.4590905, -0.22161618, 0.9350509, -2.1120706, 0.11774433, - -0.43959045, -0.50161576, -0.851825, -2.0976565, -2.7045984, -1.3195401, - 1.2461727, -3.381013, -1.3452557, -0.63690627, -0.9258764, -1.0074102, - -0.29250687, -2.088337, -2.7772238, -4.03999, -2.0817018, -0.81510746, - -1.6889477, 1.3807102, -1.7921511, -1.2913555, -4.064037, -0.5206435, - -2.7035532, -0.9823896, 0.59048927, -0.5142044, -2.4480686, -1.0157357, - -0.6044905, -1.1500398, -2.6499171, -0.61953306, -0.6973722, -2.8965135, - -2.2298386, 0.6116181, 1.1216697, 0.21485485, -1.6483363, 0.006972842, - -0.935347, -1.4222404, 1.2401302, -0.49629, 0.84587, -2.4086268, - -1.0311649, -2.478267, -2.2821996, -0.44301495, 1.1630967, -3.4821277, - -2.1647305, -1.8866118, -0.61901534, -0.32693866, 0.27368245, -2.324319, - 1.502262, -1.1757984, -0.9056926, -2.157617, -0.24458197, 0.31591496, - 0.44210178, -1.9847639, -0.18849878, 0.12089786, 1.2459905, -1.4335366, - -2.5946634, -1.1424543, -2.9883828, 0.9530662, -3.132012, 1.3446174, - 1.1661445, -0.38543, 0.7315196, -0.38921416, -2.1204948, -0.7896522, - -0.70433056, 0.002930306, 0.45416433, -1.2862242, 0.14711636, - -0.9564912, -2.0129364, -0.64980173, -2.0491068, -0.24296694, - -1.6133409, 0.90712273, -1.4413762 + "source.genres.concepts.id": [ + "rs4dpxyv", + "q9b2ep5v" + ], + "source.subjects.label": [ + "Yoga" ], - "reducedFeatures": [ - 0.014247161, -0.047755174, -0.056342043, 0.006382823, -0.010554224, - -0.042322807, -0.0013714988, 0.004559949, -0.03506798, 0.009812808, - 0.0050718435, 0.007691739, -0.02167183, -0.0045760726, -0.027330775, - -0.03991448, -0.09059075, -0.0031756947, -0.022537444, -0.020465339, - -0.02011787, -0.03847236, -0.032443214, 0.013643279, -0.029007494, - 0.016089514, -0.0056760446, 0.018549036, 0.023582181, -0.013720025, - 0.007031291, -0.022875106, -0.025402488, -0.014593137, 0.016052281, - -0.015115217, -0.015115372, 0.018250847, -0.02468655, -0.03762015, - 0.008794283, -0.015953502, -0.056911584, 0.007825725, -0.021162985, - 0.005849867, 0.021786321, 0.022915877, 0.028762748, -0.053198453, - 0.012300729, 0.006484465, -0.008247706, -0.04622587, -0.01762462, - 0.012947197, -0.029651914, -0.022655511, -0.0035928336, -0.030328155, - -0.00086769526, -0.00979414, -0.05490112, -8.8297165e-5, -0.01749552, - -0.009307991, -0.07114769, -0.013076976, -0.055776715, -0.014192121, - -0.04630018, -0.03495323, -0.0071627623, -0.02080744, 0.010486296, - 0.025394786, -0.06971027, -0.028267259, -0.02019349, 0.02401725, - -0.018531498, -0.03973363, 0.04555212, -0.033302538, 0.013482844, - -0.01209952, -0.037209395, 0.038888548, 0.00845805, 0.022803197, - -0.0587498, -0.0024206524, -0.052451666, -0.01944367, 0.011182342, - -0.047935415, -0.012882361, -0.031252764, -0.0055828784, -0.032605536, - -0.039450414, 0.020466672, -0.019713568, -0.020204512, 0.043655317, - 0.006336814, -0.010622941, -0.05016212, -0.025157217, -0.038147673, - -0.018166397, -0.01474448, -0.044114057, -0.069940455, -0.05001022, - -0.023157401, -0.007133266, -0.073133774, -0.026304226, -0.045982264, - -0.028364284, -0.035039883, -0.020707166, -0.006099898, -0.009223971, - -0.0054536457, -0.013292082, -0.020846577, -0.0315511, 0.025569588, - -0.050149325, -0.0060083675, -0.04894202, -0.042493414, -0.026175093, - -0.051121153, 0.014427144, -0.0093452325, -0.03209213, -0.0128263775, - -0.030504433, -0.003961093, -0.030679561, -0.01887811, -0.013446704, - -0.014578594, -0.024406115, 0.04716147, -0.050319325, -0.017729422, - -0.020132441, -0.014721254, -0.008806106, 0.0073471637, -0.044709723, - 0.022099024, -0.016882945, 0.0018371257, -0.0014196637, -0.049813613, - -0.023693088, -0.031014437, -0.031463865, -0.0017267951, -0.025581438, - 0.021942897, -0.008107936, -0.0057055387, -0.014443758, 0.006929503, - -0.055235717, 0.00029957425, -0.016491344, -0.025560256, -0.02632888, - 0.00854917, 0.036221057, -0.021376122, -0.034013037, -0.029586772, - 0.004460137, 0.010067397, -0.06583901, 0.041699033, -0.03674953, - -0.015595444, -0.025649615, 0.044793207, -0.024784066, -0.06744314, - -0.007495978, -0.027520826, 0.0010974015, -0.014929333, -0.017538274, - 0.037287783, 0.014011604, 0.006625684, -0.0098846955, -0.0075721117, - -0.04529773, -0.03388025, 0.041514635, 0.0046725306, -0.04340054, - -0.020801296, 0.0070779473, 0.02870565, -0.014610405, -0.020481177, - -0.013287041, -0.016524315, -0.044512637, -0.0068960367, -0.038244974, - -0.023773404, -9.58627e-5, -0.028900497, -0.006300005, -0.012701723, - -0.009684361, 0.022994183, 0.011370874, 0.01664854, -0.030404858, - 0.010893687, -0.023722632, 0.0059060403, 0.018014979, -0.019849775, - -0.005486927, -0.028672272, -0.023295078, -0.060439777, -0.030928075, - -0.013221698, -0.01806172, -0.040146563, -0.013279538, -0.015945151, - 0.043993704, 0.007952572, -0.010054505, -0.016353698, 0.012557336, - -0.0040445034, 0.032409817, -0.022578394, -0.0064583654, 0.013096518, - -0.026128534, -0.038214453, -0.018368697, -0.027343526, -0.007917984, - 0.021695124, 0.005772263, -0.0077400985, -0.022556633, -0.04103249, - -0.023698905, -0.017951308, -0.04298031, -0.010370958, -0.026251258, - 0.01808624, -0.058261916, 0.0072899936, 0.025237663, 0.0058841356, - -0.031245269, 0.0003297313, 0.0003315748, -0.036912676, 0.02017583, - 0.035229538, 0.011552855, -0.017354576, -0.019639356, -0.024585586, - -0.012102764, 0.024569953, 0.02817826, -0.057793837, 0.029643597, - -0.015445824, -0.063206606, -0.030274374, -0.065851234, -0.016205298, - -0.057693537, -0.016052663, 0.0057193534, -0.04549711, -0.036771495, - 0.018925872, 0.012244583, -0.018841675, -0.03423202, -0.017298639, - -0.040668454, -0.043537103, -0.027802208, -0.0141106825, -0.06016004, - 0.018249398, -0.0009598647, 0.008672464, -0.032488987, -0.0153001705, - 0.027455352, -0.07537194, 0.021302555, 0.00033940095, 0.024556275, - 0.0013769139, 0.009887312, -0.020179152, -0.0295046, -0.013321865, - -0.03082535, -0.043606687, -0.0013502499, -0.023760593, -0.06213073, - -0.049650963, -0.0072795185, -0.00051091885, -0.056021478, -0.029782379, - -0.025587987, -0.023515785, -0.05056239, -0.06777777, 0.0055586305, - -0.016142327, 0.016020417, -0.02406118, -0.04671728, 0.0004447025, - -0.0014803767, -0.044478852, -0.040558666, -0.06342882, -0.025958885, - -0.02675083, -0.0143408915, -0.021669094, -0.010782846, -0.021536626, - -0.024353767, 0.0073020495, 0.01898937, -0.027847288, -0.021684946, - -0.044926014, -0.021795185, -0.009639334, -0.033329923, -0.022483006, - -0.01720208, -0.01914851, -0.026021501, -0.015454303, -0.065055035, - -0.010972381, -0.03533796, -0.027797693, -0.022046497, -0.023484603, - 0.017353196, 0.026735483, -0.073212095, -0.017700626, -0.013142879, - -0.018931808, -0.029034358, 0.0068165273, -0.043878708, -0.044727713, - 0.0045162165, -0.00012498106, 0.033443246, -0.04645143, 0.0143848695, - 0.0029362652, -0.037742477, -0.02059517, 0.04116493, -0.014459886, - -0.03202175, 0.00067302986, 0.00055848475, -0.03184514, -0.06880532, - -0.025813112, -0.020783681, 0.046392895, -0.013981682, -0.042112794, - -0.0392405, 0.02487774, -0.003050294, -0.0040531773, -0.02958611, - 0.008349282, 0.005883447, -0.014706206, -0.014176877, -0.016475707, - 0.06211277, 0.007197303, -0.047745388, 0.011421857, -0.037645098, - -0.05576776, -0.005607191, -0.08092985, 0.006840198, -0.045248188, - -0.028553367, 0.007834836, -0.03528866, -0.0010524387, -0.04830031, - -0.017771812, 0.0071689254, -0.022937853, -0.0007837109, -0.003080336, - 0.0008098924, -0.047351558, 0.0042337202, -0.018041339, 0.038543135, - -0.048803482, -0.050841097, -0.049197927, -0.025248466, -0.013834454, - -0.0314018, -0.017664276, 0.026652608, 0.02791822, -0.031586327, - 0.059697863, 0.018017916, -0.03135389, -0.0507137, 0.0022335406, - -0.007853781, -0.04285039, 0.009657246, -0.03316148, -0.037674338, - -0.014588637, -0.010695012, -0.04515053, 0.00937237, -0.005848924, - -0.037094973, -0.00082756847, -0.023991428, -0.022205817, -0.030308833, - -0.0006545998, -0.039276514, -0.051374085, -0.010249485, 0.0039840997, - -0.054717086, -0.013148436, -0.055582967, -0.030272821, 0.01368238, - -0.031519644, -0.007748085, -0.022995774, -0.058251325, -0.018050922, - -0.030839285, -0.028632961, -0.02946359, 0.0006874806, 0.0021136925, - -0.041906156, 0.027290504, 0.009797594, 0.055328146, -0.028479898, - -0.025906777, -0.027689317, -0.032520756, -0.03511798, -0.044304848, - -0.00036832556, -0.0020842466, -0.0065335534, 0.0047194944, - -0.020576652, -0.0013955017, 0.017599493, -0.011994341, -0.031936575, - 0.0014574277, -0.019125894, 0.00070403493, -0.085841976, -0.070756875, - -0.02183683, -0.03971377, 0.03710554, -0.0012638248, -0.0009783081, - -0.025555054, -0.020348964, -0.011524289, -0.024322622, -0.0041811615, - -0.052103702, 0.008510598, -0.0032594264, 0.01046982, -0.041539047, - -0.043327782, 0.0013262632, 0.00918568, 0.021833511, -0.018260362, - -0.017482148, 0.0026795971, -0.05829886, -0.019259797, -0.043122955, - -0.033952218, -0.03915745, -6.9686845e-5, -0.025214523, -0.016955173, - -0.06040887, -0.03405807, 0.033704706, 0.012586092, -0.068496704, - -0.01061882, -0.047727637, 0.004682186, 0.033564232, -0.03689144, - 0.018827667, -0.0014130892, 0.011833744, -0.021049248, -0.025641466, - -0.03443587, 0.0017377165, -0.022648316, -0.047989085, -0.011195622, - -0.06313997, -0.01477987, -0.053582933, -0.080145754, -0.013829332, - -0.03326337, -0.056383155, -0.0028359618, 0.014180752, -0.011969395, - -0.024232289, -0.032365218, -0.02924933, -0.03100327, -0.0032775525, - -0.027893525, -0.051666312, -0.013015496, 0.05268744, 0.058103286, - -0.037170365, -0.05068838, -0.03746184, 0.0032714652, -0.027693883, - -0.073699996, -0.05757813, -0.017398346, -0.05504206, 0.013767965, - 0.016825603, 0.008163338, -0.031029591, -0.016862743, 0.011058907, - -0.029034134, 0.042449392, -0.04876217, 0.017739233, -0.040593706, - -0.047433753, -0.045746904, -0.010330672, -0.001328796, -0.0649306, - 0.029076507, -0.03494171, -0.055642106, 0.007368296, 0.021293085, - -0.004274269, -0.028754383, -0.027960321, 0.004944114, -0.028143067, - -0.014806058, -0.050236728, 0.0007243377, 0.013944663, -0.025555076, - 0.0090201115, -0.06345739, 0.019405697, -0.032647572, -0.03215117, - -0.053642686, -0.009942557, 0.043158274, 0.0059358906, -0.015126572, - -0.02230913, -0.03263067, -0.0026779063, -0.012945011, -0.011523479, - -0.04286399, -0.0033573753, 0.04389318, -0.017134802, 0.023714252, - -0.020206051, 0.0031491232, 0.010289817, -0.050174076, -0.034552816, - -0.034003146, 0.07820445, -0.06614614, 0.0082950685, 0.0017799065, - 0.025491616, -0.025263565, -0.004785115, -0.057397075, -0.062386684, - -0.027743313, 0.005569913, 0.0057634497, -0.0048363856, -0.0557407, - -0.03291864, 0.0039860816, -0.08398916, -0.022253036, -0.013220374, - -0.046321888, -0.024136879, -0.0049233143, -0.0077689905, 0.05235631, - -0.010781529, -0.0069396193, -0.018486546, -0.04628869, 0.009242916, - -0.0805542, -0.018727707, -0.04333708, 0.022560097, -0.008626156, - -0.013414094, 0.014831747, -0.0050005857, 0.022190949, -0.06165872, - 0.009020718, -0.04675603, -0.017358119, -0.026854938, -0.039799456, - -0.056450512, -0.020345729, 0.027525702, -0.048090443, 0.047080137, - 0.0019035912, -0.01784575, 0.019762106, -0.012058173, -0.0008034447, - -0.01828076, -0.02624639, -0.0044116257, -0.0032503228, -0.0004641854, - 0.038085934, -0.005842756, 0.0020969422, 0.008664046, -0.045253657, - 0.023881067, -0.032797635, -0.012900985, -0.017242445, -0.021485474, - -0.014852572, 0.0068362732, 0.009063357, -0.041312546, -0.045502163, - -0.019910945, 0.026686667, 0.010007612, -0.008658155, 0.033062972, - -0.022398457, -0.018578043, -0.006241831, 0.013025603, -0.04894893, - 0.0006137104, -0.030872671, -0.0032765875, -0.045083057, -0.037419654, - 0.0007967912, -0.038154833, -0.044342518, -0.059029162, 0.05019091, - -0.069387585, -0.030250454, 0.03146495, -0.02704148, -0.007319994, - -0.0017703814, 0.00948259, -0.06339265, -0.042054035, -0.011654777, - -0.031537827, 0.0029317306, -0.03901738, 0.0017743425, 0.04688926, - -0.011185214, -0.058030047, -0.05521498, 0.02321026, 0.003552932, - 0.012809271, 0.0039369706, -0.028348695, 0.00076234585, 0.033330023, - -0.011537236, -0.02333918, 0.02695883, -0.0020716984, 0.025597421, - 0.025897425, -0.022249592, -0.023229761, -0.012151457, 0.0064013964, - -0.012086541, -0.04207389, -0.0026138325, -0.053686332, -0.033664227, - 0.022444349, -0.06183121, 0.011397848, -0.008142486, -0.012732996, - 0.0070525254, -0.028160825, -0.0471032, -0.009931838, 0.03534706, - -0.027459944, -0.022040667, 0.016461557, -0.030207686, -0.04145836, - 0.0044671437, -0.016916214, 0.014714991, -0.026180964, -0.03965647, - -0.021364942, -0.008451529, 0.027833143, -0.049648553, 0.023383979, - -0.031748086, 0.017916687, -0.07104388, -0.054301366, -0.023910716, - -0.05942473, 0.012221022, -0.039985113, -0.046287604, -0.064056925, - -0.04334472, -0.026412144, -0.07122381, -0.030746575, 0.03689489, - -0.0009826311, 0.0049535283, -0.020918278, -0.016716102, -0.00960629, - -0.05379473, -0.021709248, -0.017378336, -0.007503992, -0.010859793, - 0.020896697, -0.0527659, -0.032222725, -0.036395963, -0.022079857, - 0.005734564, 0.011317827, -0.0025014377, -0.0014992828, 0.023231328, - -0.048892524, -0.02596536, -0.04647997, -0.00035617076, -0.030541059, - 0.041755095, 0.0032941268, -0.022407679, -0.01684355, -0.03499712, - -0.012023279, 0.023518808, -0.02193701, 0.029279675, 0.008898559, - -0.01497077, -0.023159994, 0.0050995387, -0.04865552, 0.0022006172, - -0.010259412, -0.0007207884, -0.040276546, -0.0028150838, -0.003380144, - -0.003195669, 0.03385281, -0.008205467, 0.012183775, -0.06722362, - 0.025156088, -0.030640619, -0.019565435, -0.007723451, -0.034431018, - -0.01097188, -0.045153398, 0.011115794, -0.041312784, -0.015726335, - -0.039159086, -0.009203143, -0.014871757, 0.030017382, -0.011021809, - -0.016422376, -0.043439463, -0.04011282, 0.0010038781, 0.009639544, - -0.06746771, -0.025199775, -0.01713579, 0.041133434, 0.0032077613, - -0.027924443, 0.035264958, 0.004125932, -0.06561219, -0.029713433, - -0.050069213, -0.04546032, -0.020598441, 0.04480542, -0.015483903, - -0.045529384, -0.0041153566, 0.015045579, -0.07971063, 0.013851133, - -0.031163123, -0.06964587, -0.015965354, -0.029738143, -0.037649147, - -0.046718158, 0.01127307, -0.024740111, -0.060206484, -0.028608875, - 0.006684118, -0.04302051, -0.050859295, -0.03871924, -0.0824557, - -0.022534527, -0.030042646, -0.0269626, -0.024886906, -0.041003827, - 0.031745065, -0.015646799, -0.029737623, -0.036601834, 0.0041062525, - 0.019592188, -0.020290384, 0.010438157, -0.03646887, -0.02923346, - -0.012949394, -0.04264246, -0.010873578, -0.0068106246, 0.02124659, - -0.040570214, -0.007979854, -0.0027184372, -0.050538618, 0.0051303124, - -0.046411034, -0.0012089992, -0.002650414, -0.052326083, -0.026118575, - -0.0032922842, 0.0119079, 0.026795074, 0.0053530163, 0.00025501085, - -0.060953256, 0.024214469, -0.029389603, 0.02426835, -0.015686292, - -0.039822333, 0.017869152, -0.037758518, -0.0019781108, -0.0060183676, - 0.032132052, -0.07488334, -0.08204112, -0.04157941, 0.00594031, - -0.034244474, 0.0067015886, 0.005612454, -0.034313157, 0.01807345, - -0.028860694, -0.0056918417, -0.043214858, 0.043908462, -0.048040513, - -0.04655331, -0.038773872, 0.008958915, 0.012422416, -0.0429311, - -0.012953902, -0.032153692, 0.0013431445, -0.04053175, -0.032949165, - -0.026575932, -0.007360212, -0.012690767, -0.013612935, -0.045889046, - -0.05990419, -0.05054658, -0.02321685, -0.04243689, -0.021975258, - 0.019022645, -0.023334384, -0.006317687, -0.026639778, -0.004038252, - 0.0048532276, 0.030633193, -0.03567373, -0.03565003, 0.032022487, - 0.0122154085, -0.017568022, 0.01663656, -0.015969878, 0.0020909042, - -0.06695967, -0.023352152, 0.0062875324, -0.029036088, 0.0075471094 + "source.production.dates.range.from": [ + -5364662400000 + ] + }, + "vectorValues": { + "features": [ + 0.0065656113, + -0.020970158, + -0.0257828, + 0.0029982924, + -0.0050979382, + -0.01944075, + -0.0036142413, + 0.003389786, + -0.021093853, + 0.0030929358, + 0.0021491188, + 0.002162394, + -0.010546473, + -0.0023124272, + -0.0134881195, + -0.020779425, + -0.046656094, + -0.0011627525, + -0.009289273, + -0.01131145, + -0.008399259, + -0.019004058, + -0.01414678, + 0.0068846145, + -0.015363518, + 0.008581226, + -0.004122692, + 0.0067356857, + 0.013459253, + -0.0061069434, + 0.0032008481, + -0.011909527, + -0.01096783, + -0.005154915, + 0.006922754, + -0.0038656604, + -0.008710796, + 0.009632021, + -0.007881048, + -0.01978802, + 0.0059298463, + -0.008175483, + -0.027827501, + 0.0032064603, + -0.009325708, + 0.0019001799, + 0.010618758, + 0.009215274, + 0.014116882, + -0.026564525, + 0.006866089, + 0.0046944357, + -0.0025893932, + -0.023398915, + -0.014783841, + 0.0045231413, + -0.017324088, + -0.0115429675, + -0.0015941794, + -0.0145082, + -0.001927404, + -0.0035710416, + -0.026003992, + -0.00081364845, + -0.00624562, + -0.0049721, + -0.03425468, + -0.008097337, + -0.029319415, + -0.005891646, + -0.025230838, + -0.014434392, + -0.003824589, + -0.012331803, + 0.006733211, + 0.011522404, + -0.03645707, + -0.015769593, + -0.008671333, + 0.011379503, + -0.012036747, + -0.020531476, + 0.025471501, + -0.01742208, + 0.007062031, + -0.0039561763, + -0.021169776, + 0.021221159, + 0.0038532026, + 0.013011634, + -0.028716909, + -0.0013736793, + -0.027633822, + -0.0087128775, + 0.0035310094, + -0.023988677, + -0.008180251, + -0.014644147, + -0.0030671495, + -0.016263152, + -0.023164041, + 0.009720871, + -0.012604436, + -0.008272296, + 0.022040905, + 0.0021529794, + -0.003888542, + -0.02411674, + -0.012215575, + -0.020889105, + -0.00975616, + -0.009127814, + -0.019756885, + -0.036661938, + -0.026321527, + -0.013499174, + -0.003207876, + -0.03542509, + -0.012202071, + -0.0256418, + -0.015117983, + -0.017810546, + -0.014894727, + -0.001822142, + -0.0052063535, + -0.0019400382, + -0.0075079845, + -0.0131805325, + -0.0121328, + 0.013910552, + -0.024768313, + -0.0015860891, + -0.026023138, + -0.019824475, + -0.010145397, + -0.024882507, + 0.0066840244, + -0.0025407101, + -0.011131593, + -0.010058179, + -0.013408544, + 6.778416e-05, + -0.016690768, + -0.0105912015, + -0.0023601805, + -0.005814968, + -0.013243672, + 0.022026012, + -0.025129087, + -0.009769153, + -0.012291997, + -0.006403413, + -0.001219997, + 0.004852196, + -0.021064136, + 0.0088352775, + -0.008522777, + 0.001061717, + 0.0036532276, + -0.025597783, + -0.011751956, + -0.013798861, + -0.018619651, + -0.0010686807, + -0.011773869, + 0.0084940065, + -0.0054504904, + -0.005125329, + -0.010024503, + 0.00085653074, + -0.029086972, + -0.00079340674, + -0.0063792784, + -0.012460936, + -0.010999287, + 0.00445392, + 0.018873375, + -0.008614756, + -0.016132398, + -0.01126703, + 0.0039779763, + 0.0027845902, + -0.03188097, + 0.018537905, + -0.016929945, + -0.0050229654, + -0.017478282, + 0.022902664, + -0.013151185, + -0.032513667, + -0.0066120983, + -0.012613537, + 9.747359e-05, + -0.0064361673, + -0.009609735, + 0.016696112, + 0.004858896, + 0.0050388295, + -0.005914822, + -0.0035351065, + -0.020737765, + -0.01635368, + 0.02133667, + 0.0002083434, + -0.018927079, + -0.012177291, + 0.0068633454, + 0.015605916, + -0.006097495, + -0.011250786, + -0.005776987, + -0.006261756, + -0.019111913, + -0.0036284965, + -0.018336838, + -0.0125000905, + 0.0012679067, + -0.0135243805, + -0.0046415892, + -0.0077975825, + -0.0015222551, + 0.007749604, + 0.0045410832, + 0.012720452, + -0.016247386, + 0.007080369, + -0.011430646, + 0.0018727288, + 0.011182751, + -0.0058670705, + -0.005486229, + -0.012658762, + -0.012315445, + -0.02779057, + -0.0154108675, + -0.006442886, + -0.010904468, + -0.021407401, + -0.0046303477, + -0.008511696, + 0.020032166, + 0.0034147003, + -0.003705293, + -0.008256508, + 0.006386941, + -0.0031018078, + 0.016473165, + -0.010244509, + -0.0025159875, + 0.00523064, + -0.013726807, + -0.019811453, + -0.009901951, + -0.0122091565, + 0.0016465822, + 0.012533496, + 0.003642645, + -0.006221411, + -0.008225968, + -0.019744985, + -0.0098728845, + -0.008166404, + -0.020290697, + -0.0021277484, + -0.013263024, + 0.007086843, + -0.030048598, + 0.0046711788, + 0.011714324, + 0.0043693157, + -0.014913702, + 0.0025783707, + 0.0011458992, + -0.020070095, + 0.010414315, + 0.016409159, + 0.004055175, + -0.006710149, + -0.008910316, + -0.011846792, + -0.008078974, + 0.013996592, + 0.01626623, + -0.027371489, + 0.020292748, + -0.008382117, + -0.031863324, + -0.016536655, + -0.030779513, + -0.009893588, + -0.027907368, + -0.009631672, + 0.00022490363, + -0.023239918, + -0.016339332, + 0.008519636, + 0.007848878, + -0.012300989, + -0.016147405, + -0.007833005, + -0.020828139, + -0.02156463, + -0.013701438, + -0.0039693974, + -0.027799934, + 0.009942723, + 0.00022307284, + 0.00445838, + -0.01592241, + -0.007214333, + 0.015457193, + -0.036932357, + 0.011109985, + -0.0022413002, + 0.012288043, + 0.0015511604, + 0.007842308, + -0.009104805, + -0.018719763, + -0.005623466, + -0.016160944, + -0.021692207, + 7.2711555e-05, + -0.013253992, + -0.030989846, + -0.0226986, + -0.0034190472, + -0.0001460876, + -0.03259492, + -0.014309559, + -0.013442247, + -0.012302149, + -0.026640112, + -0.033618093, + 0.003725864, + -0.008914734, + 0.011815862, + -0.013870252, + -0.025999527, + 0.0008025819, + -0.00055557577, + -0.018178297, + -0.020844106, + -0.030651724, + -0.015034469, + -0.011138449, + -0.008161605, + -0.013301027, + -0.0060854335, + -0.0074862516, + -0.012434117, + 0.0021168143, + 0.006513406, + -0.011703524, + -0.010107494, + -0.023308588, + -0.009019204, + -0.0049111038, + -0.013778347, + -0.010478724, + -0.0074113933, + -0.007446563, + -0.013306218, + -0.005549768, + -0.030011935, + -0.0066245184, + -0.016178424, + -0.012979661, + -0.01194153, + -0.010536124, + 0.007956417, + 0.012063294, + -0.037567515, + -0.007028672, + -0.0073917583, + -0.009185735, + -0.014426483, + 0.005824948, + -0.019712647, + -0.024131497, + 0.0053369105, + 0.0015537151, + 0.018916965, + -0.021646831, + 0.0068899365, + 0.00081302813, + -0.01518256, + -0.0076794387, + 0.023632584, + -0.00607237, + -0.016043114, + 0.0033634703, + 0.0023434998, + -0.014930897, + -0.034473762, + -0.014616726, + -0.010689927, + 0.024796821, + -0.0083649075, + -0.019753017, + -0.019351956, + 0.01052712, + -3.6109755e-05, + -0.0038371962, + -0.017073253, + 0.006198359, + 0.0059827548, + -0.008175829, + -0.005114749, + -0.005621176, + 0.028292565, + 0.004246355, + -0.026662536, + 0.007054512, + -0.021296345, + -0.02565844, + -0.0014464878, + -0.036195926, + 0.001967009, + -0.023786075, + -0.013998887, + 0.00225747, + -0.022358596, + 0.0010088886, + -0.02446192, + -0.00961817, + 0.0039121527, + -0.011670519, + -0.0014979851, + -0.0011644011, + 9.420615e-05, + -0.021132778, + 0.0012613423, + -0.008927693, + 0.019013576, + -0.022966912, + -0.023034727, + -0.02639851, + -0.009735113, + -0.005534486, + -0.014622559, + -0.009516186, + 0.0150386505, + 0.01762854, + -0.014744919, + 0.027854796, + 0.00837397, + -0.01378143, + -0.027587324, + 0.005043973, + -0.0062984084, + -0.020409154, + 0.00615007, + -0.015992593, + -0.016870622, + -0.005143824, + -0.005401183, + -0.024035558, + 0.005616732, + -0.0025767125, + -0.017956518, + -0.0005505243, + -0.011905947, + -0.01249928, + -0.020148844, + -0.003117529, + -0.016436335, + -0.022911547, + -0.006931059, + 0.0011259163, + -0.02924279, + -0.005180599, + -0.028093858, + -0.018063297, + 0.0065567438, + -0.012864202, + -0.0030098222, + -0.010931095, + -0.027651902, + -0.0077780196, + -0.018233884, + -0.018478503, + -0.014409509, + 0.0006128066, + 0.001088816, + -0.022043372, + 0.017122464, + 0.00243899, + 0.028395908, + -0.011536095, + -0.011684847, + -0.012834976, + -0.014838687, + -0.018635983, + -0.021969615, + -0.0005443214, + -0.0014368034, + -0.006503685, + 0.0031523907, + -0.009407317, + 0.0013482703, + 0.01131275, + -0.008227315, + -0.01771281, + 0.0030489229, + -0.0054591717, + -0.0011332287, + -0.040055968, + -0.03679926, + -0.007651681, + -0.019516554, + 0.017936178, + 0.0033140527, + 0.0028033569, + -0.01092611, + -0.011394524, + -0.0044671753, + -0.013234803, + -0.0008625862, + -0.023789162, + 0.003298881, + -0.0031786123, + 0.007112222, + -0.019686226, + -0.023657812, + -0.0025203817, + 0.0043840623, + 0.0164619, + -0.009008572, + -0.0094972495, + 0.005109014, + -0.028241128, + -0.009897643, + -0.020842293, + -0.022556137, + -0.021602836, + 0.0018731118, + -0.014441516, + -0.00814602, + -0.033185143, + -0.015629023, + 0.016675325, + 0.0067072045, + -0.0343277, + -0.003474324, + -0.024006173, + 0.0057814014, + 0.018534651, + -0.01950501, + 0.010452517, + -0.0022651926, + 0.005025946, + -0.01336751, + -0.013085772, + -0.015307762, + 0.001700745, + -0.010399155, + -0.024884775, + -0.006081907, + -0.030648062, + -0.0071061575, + -0.026402196, + -0.04034323, + -0.006878419, + -0.01654697, + -0.026032485, + -0.005308548, + 0.008000811, + -0.006489919, + -0.00926926, + -0.014326576, + -0.015405547, + -0.012563268, + 0.0004651965, + -0.014279535, + -0.025456632, + -0.010313208, + 0.027493645, + 0.031092966, + -0.021001538, + -0.022771807, + -0.02024373, + 0.0003535095, + -0.017189099, + -0.03171851, + -0.03084773, + -0.007808831, + -0.02513433, + 0.007745032, + 0.009491372, + 0.0018640384, + -0.016207557, + -0.010733335, + 0.008733529, + -0.013559262, + 0.022147842, + -0.026885644, + 0.009720692, + -0.022313895, + -0.023734288, + -0.023576993, + -0.006499922, + -0.002373868, + -0.031454686, + 0.015245028, + -0.018729351, + -0.02992427, + 0.00059476454, + 0.01006149, + -0.0010146231, + -0.010706427, + -0.012199784, + 0.0050251754, + -0.012550304, + -0.006358761, + -0.023236379, + -0.00015194033, + 0.0042758994, + -0.010906957, + 0.008447724, + -0.03099697, + 0.010414482, + -0.014622924, + -0.015986998, + -0.026814558, + -0.007124739, + 0.021242995, + 0.005550095, + -0.007975785, + -0.010851606, + -0.018028352, + -0.0005183544, + -0.006880546, + -0.006535409, + -0.018501516, + -0.003956009, + 0.025574705, + -0.009256804, + 0.013018232, + -0.008367287, + 0.0028676563, + 0.0057294294, + -0.023783669, + -0.014865523, + -0.020467995, + 0.039677676, + -0.03550969, + 0.0048209415, + -0.0003226383, + 0.013122427, + -0.0111597525, + 0.0017089387, + -0.02877956, + -0.03075254, + -0.014404188, + 0.003964633, + 0.0033667372, + -0.0033174807, + -0.02621985, + -0.016723255, + 0.0028473139, + -0.040688585, + -0.007876489, + -0.008726351, + -0.023205452, + -0.014252051, + 0.00048519118, + -0.0019109668, + 0.027859388, + -0.008674138, + -0.004708354, + -0.0101744775, + -0.021027917, + 0.0052150236, + -0.038812302, + -0.011273349, + -0.02054152, + 0.012490748, + -0.0059477845, + -0.004665001, + 0.008287548, + -0.002420671, + 0.011605754, + -0.029912705, + 0.004976558, + -0.023156267, + -0.0088505605, + -0.013316327, + -0.017266233, + -0.02559537, + -0.00991934, + 0.013944732, + -0.023422753, + 0.027378269, + 0.0028719644, + -0.011578158, + 0.009057026, + -0.0059891385, + -0.0031906513, + -0.007815495, + -0.009841558, + -0.003153774, + -0.0037356238, + -0.0003242646, + 0.019672507, + -0.0056747473, + 0.0014856932, + 0.0045894934, + -0.026177872, + 0.016345056, + -0.017800253, + -0.008216036, + -0.0086952085, + -0.009035566, + -0.007661587, + 0.0027058844, + 0.005442039, + -0.024773292, + -0.020490453, + -0.008283141, + 0.009251741, + 0.0035823567, + -0.005953598, + 0.016334025, + -0.015782826, + -0.008604745, + -0.0075121406, + 0.0040621627, + -0.021714767, + -0.0031433236, + -0.016949728, + -0.0015095397, + -0.022886666, + -0.0166248, + -0.00084098836, + -0.023080116, + -0.023171848, + -0.026124416, + 0.025585217, + -0.034065876, + -0.016675614, + 0.018617228, + -0.010666837, + -0.004672064, + 0.0008748794, + 0.0057545067, + -0.029983358, + -0.020622175, + -0.0012090515, + -0.016924122, + -0.00024248642, + -0.016776383, + 0.0011686807, + 0.025911726, + -0.0061370702, + -0.030407503, + -0.02410472, + 0.010098921, + 0.0016680111, + 0.0078060394, + 0.0016892761, + -0.012368741, + -0.00030278598, + 0.015166071, + -0.003800753, + -0.010855355, + 0.016034888, + -0.00073747855, + 0.014653081, + 0.011432818, + -0.012420409, + -0.008007781, + -0.005242345, + 0.0022947562, + -0.004172587, + -0.022465253, + 0.0034871597, + -0.028550863, + -0.016673291, + 0.009300113, + -0.03447394, + 0.008718471, + -0.005593283, + -0.0051802974, + 0.0071368148, + -0.012750335, + -0.02160301, + -0.008333873, + 0.019091899, + -0.012194144, + -0.008865848, + 0.011940957, + -0.0153598115, + -0.019282121, + 0.003296862, + -0.0070325434, + 0.005713103, + -0.0098206205, + -0.019301178, + -0.0077588563, + -0.0038274138, + 0.014410436, + -0.021144342, + 0.013698246, + -0.013311742, + 0.007913381, + -0.036903977, + -0.028495885, + -0.011596853, + -0.02988958, + 0.0076125544, + -0.019685443, + -0.020446196, + -0.031574786, + -0.019010343, + -0.011433859, + -0.034777403, + -0.014483779, + 0.02116005, + 0.001880205, + 0.0048986454, + -0.010463939, + -0.0071628764, + -0.0022835208, + -0.027274149, + -0.009309439, + -0.012268942, + -0.005750755, + -0.0011526877, + 0.0085294405, + -0.026827369, + -0.012874687, + -0.016065571, + -0.009690048, + -0.0017145227, + 0.007664396, + 0.00236972, + -0.002913517, + 0.013889607, + -0.023133274, + -0.01479871, + -0.022475922, + -0.0032450086, + -0.016564092, + 0.017745525, + 0.0031896345, + -0.009517715, + -0.0049435445, + -0.020208037, + -0.005165401, + 0.013888133, + -0.008565451, + 0.01565396, + 0.007489077, + -0.0054632905, + -0.010640119, + 0.0044613373, + -0.027057419, + -0.0003237239, + -0.002251936, + -0.0024769667, + -0.019619998, + 0.0011458254, + -0.00570031, + -0.0057108123, + 0.016895736, + 0.0011784805, + 0.0134205185, + -0.03315465, + 0.011576801, + -0.017025504, + -0.01107466, + -0.0072345496, + -0.021479579, + -0.0063068387, + -0.020943608, + 0.0073189703, + -0.020199282, + -0.010727377, + -0.020719595, + -0.00949806, + -0.0064143096, + 0.014119129, + -0.0071059116, + -0.006843497, + -0.019931868, + -0.021948487, + -0.0017707369, + 0.0029639457, + -0.03124588, + -0.014703985, + -0.00900276, + 0.019420482, + 0.003056158, + -0.014671344, + 0.015181056, + 0.007966011, + -0.032086838, + -0.01118219, + -0.026731709, + -0.024072312, + -0.0065778946, + 0.020157246, + -0.0043414165, + -0.021765625, + -0.0020453923, + 0.009400935, + -0.03978167, + 0.009011995, + -0.014340588, + -0.037994504, + -0.00645078, + -0.013608773, + -0.018198175, + -0.02345707, + 0.00570717, + -0.011722747, + -0.028262937, + -0.014539165, + 0.003616893, + -0.023972794, + -0.029101782, + -0.02126603, + -0.041965835, + -0.011171177, + -0.012808014, + -0.014789006, + -0.012121232, + -0.018943956, + 0.017763967, + -0.008426871, + -0.016601324, + -0.019289048, + 0.0016219174, + 0.0068092467, + -0.012774486, + 0.007133371, + -0.019424977, + -0.014390599, + -0.008301637, + -0.024260322, + -0.003187474, + 0.001109059, + 0.011400358, + -0.022293247, + -0.003448618, + 0.0021449095, + -0.026602097, + 0.004031029, + -0.020675585, + -0.0028547707, + 0.0023598352, + -0.027673643, + -0.010270167, + 0.0032408787, + 0.009411289, + 0.013733159, + 0.005709049, + 0.0024654039, + -0.030381296, + 0.012318587, + -0.015971815, + 0.0109820515, + -0.0058754887, + -0.016757313, + 0.012272044, + -0.02060599, + -0.00013963667, + -0.002132711, + 0.019239744, + -0.03827004, + -0.042022165, + -0.01901698, + 0.0025924647, + -0.015081031, + 0.004724616, + 0.0041360124, + -0.017132951, + 0.010838825, + -0.014496875, + -0.0027810617, + -0.017148416, + 0.02823021, + -0.022872519, + -0.023400832, + -0.017307054, + 0.0041790935, + 0.0074730096, + -0.019550277, + -0.004530223, + -0.013929061, + 0.0044348654, + -0.017667437, + -0.014231207, + -0.01515049, + -0.004850168, + -0.0071053975, + -0.007372069, + -0.022995114, + -0.030116418, + -0.025175476, + -0.014326618, + -0.02233463, + -0.011990158, + 0.011722352, + -0.011597953, + -0.00035529837, + -0.013456187, + -0.0028669229, + -0.0010010746, + 0.017974652, + -0.0187611, + -0.016247036, + 0.0155486865, + 0.0047019506, + -0.007938793, + 0.008185121, + -0.010698597, + 0.00021117818, + -0.033154782, + -0.0094377855, + 0.005551566, + -0.014003729, + 0.0023143643, + -0.016475264, + -0.008072834, + -0.03978036, + -0.0055238544, + -0.025001023, + 0.006402695, + 0.0046250243, + -0.0037720238, + -0.006243121, + 0.009003319, + -0.024584409, + 0.002983453, + -0.021208407, + -0.012175499, + -0.012282908, + -0.034216147, + -0.03286325, + -0.019735342, + -0.0017210244, + -0.03131451, + -0.0148404315, + -0.0024820147, + -0.010692495, + -0.0022620766, + 0.0031393426, + -0.0052302917, + 0.0007827255, + -0.0149587495, + -0.01805888, + 0.011401889, + -0.0061578793, + -0.010470088, + 0.000824695, + -0.017298996, + 0.0010917591, + -0.00027252306, + -0.0005842649, + -0.03143655, + -0.011292917, + -0.033172816, + -0.012514584, + 0.011838956, + 0.004282691, + -0.032905087, + -0.021382552, + -0.010675974, + -0.0314835, + 0.014432366, + -0.014179597, + -0.017847154, + -0.025665084, + -0.023439819, + 0.011245585, + 0.001986431, + -0.02014058, + -0.008634176, + 0.0058242423, + -0.022239836, + -0.027781874, + -0.009850534, + -0.014012089, + 0.011651732, + -0.002072022, + 0.0016036032, + -0.009028135, + -0.0024335086, + 0.0077740573, + -0.017322058, + -0.009763143, + -0.022754494, + -0.018136062, + 0.011612807, + -0.015763659, + -0.010011056, + -0.01903206, + 0.014127732, + -0.020790858, + -0.01892076, + 0.0062094615, + -0.005215964, + -0.008623981, + -0.024562998, + -0.0020090358, + -0.01534712, + -0.009390309, + -0.017052196, + -0.028966015, + -0.016496377, + 0.010987031, + 0.019261934, + 0.021883443, + -0.0018159891, + -0.000655916, + -0.010820455, + -0.023734158, + -0.006609698, + 0.004423954, + -0.012452861, + 0.0045098695, + 0.017788969, + 0.009590771, + -0.0125812655, + -0.008374987, + 0.010343249, + 0.015499711, + -0.00933137, + -0.0056030396, + -0.009654753, + -0.009447735, + -0.02505301, + -0.018126372, + 0.011431107, + 0.0044071195, + -0.0132255815, + -0.0044147414, + -0.016774382, + -0.0065545565, + -0.004849663, + 1.08833465e-05, + -0.0018635507, + -0.024765866, + -0.0073121437, + 0.002543396, + -0.022630963, + -0.022365555, + -0.018208906, + -0.005534936, + -0.011350907, + -0.0014934157, + 0.007907702, + -0.0127988625, + -0.033606183, + -0.018816952, + -0.004091556, + -0.01700066, + -0.013177262, + -0.018232334, + -0.013339372, + 0.0002398536, + 0.006923213, + -0.018877959, + -0.020903876, + -0.0014773142, + -0.008596325, + 0.0043362738, + -0.007730866, + 0.025778025, + -0.023114061, + -0.006473332, + 0.011586508, + 0.003932185, + -0.041873116, + 0.009932408, + 0.004423265, + -0.03964542, + -0.008886196, + 0.00075167295, + -0.0054445174, + 0.00030726707, + 0.0031887523, + 0.008349402, + -0.008330944, + -0.010466704, + 0.00033234837, + 0.0007281406, + -0.021447908, + 0.0146805355, + -0.03053402, + -0.00053675217, + -0.01943216, + -0.014748263, + 0.0014334744, + -0.042007554, + -0.019101234, + -0.02892908, + -0.020742705, + -0.029183177, + -0.019993305, + -0.025352778, + 0.02891422, + 0.0031175052, + 0.016561536, + -0.0004944808, + 0.0042543937, + -0.03149691, + -0.0051530744, + -0.014165114, + 0.015425189, + -0.021309998, + -0.017875569, + -0.010238845, + 0.010106644, + 0.017626692, + -0.0037428513, + -0.028947897, + -0.0134161385, + -0.010014438, + -0.0013852011, + 0.0046536736, + 0.019489463, + 0.0012341023, + -0.0068216897, + -0.0034736565, + -0.026214978, + -0.016724527, + 0.006572603, + -0.021587567, + -0.01007703, + 0.008305861, + -0.0107389735, + -0.010379045, + 0.01195443, + -0.013236936, + 0.010196233, + 0.023066314, + 0.014061018, + -0.009594562, + 0.006173557, + -0.03077669, + -0.0334576, + -0.028848222, + 0.013383914, + -0.014750199, + -0.01430256, + 0.014252496, + 0.0069278926, + 0.0017712822, + -0.024316031, + 0.00472709, + 0.018988244, + 0.026692405, + -0.0045292685, + -0.025494916, + 0.0045221257, + 0.012558315, + 0.011798739, + -0.026251333, + -0.006093631, + -0.0010055574, + -0.012789279, + -0.012422212, + 0.0029996282, + -0.005869726, + -0.02613573, + -0.022401335, + -0.027109787, + -0.0014151661, + 0.006648383, + 0.0008960893, + 0.021669284, + -0.002556057, + -0.0077713374, + -0.0097332895, + 0.01358453, + -0.010798079, + 0.008156883, + 0.007695116, + -0.011406347, + -0.013367378, + -0.02591273, + -0.014644357, + -0.020913122, + -0.036918376, + -0.0066205426, + -0.0029247664, + -0.021834843, + -0.009536396, + 0.00031297855, + 0.024607114, + 0.0074924584, + -0.016002906, + -0.016464666, + 0.011770583, + -0.023309495, + -0.022221949, + 0.024683824, + -0.0047160876, + 0.0017344969, + 0.0144854095, + -0.0057690907, + 0.003547546, + -0.008389511, + 0.002378615, + -0.00036662642, + 0.0009103616, + -0.00461883, + -0.006133766, + -0.016716199, + -0.003875669, + 0.009317075, + -0.0018639348, + -0.0011643611, + -0.029974679, + -0.019580554, + -0.00013863442, + -0.008374666, + -0.004257608, + -0.00083493703, + -0.025462443, + -0.002906691, + -0.006479951, + -0.01167401, + -0.0048080203, + -9.2463066e-05, + 0.0055349306, + -0.00916913, + 0.007555554, + 0.005705104, + -0.0001447803, + -0.006648257, + -0.0044341316, + -0.011362498, + 0.0027525183, + -0.028780762, + -0.005778753, + -0.014911083, + -0.009868496, + 0.0003082342, + -0.028077051, + -0.00669917, + -0.008497265, + -0.002730961, + 0.0049877767, + -0.04215726, + 0.0022681947, + -0.0033217166, + -0.01911247, + -0.015578863, + -0.03275244, + 0.014852689, + -0.0073823845, + -0.008744427, + -0.0068324194, + -0.015110805, + -0.023879379, + -0.005725978, + -0.009554786, + -0.014713118, + -0.0013051204, + -0.013520192, + 0.012862201, + -0.0053007435, + -0.007483157, + -0.032617263, + 0.0018682525, + 0.024226263, + -0.0397647, + 0.017269593, + -0.016234985, + 0.008297202, + -0.006389783, + -0.009000403, + 0.023172747, + -0.0005604681, + -0.0046975045, + 0.0057859616, + 0.0059961034, + -0.033460926, + -0.000701211, + -0.008443897, + 0.012936779, + -0.0049105054, + -0.010843144, + -0.008699436, + -0.02457975, + 0.0016554539, + 0.00032842427, + -0.012598157, + -0.00042304312, + -4.061217e-05, + -0.019601893, + -0.019756585, + 0.0019211431, + 0.0056417496, + -0.030563606, + 0.010736787, + 0.0010060457, + -0.01637459, + -0.020547917, + 0.0010064611, + 0.008360593, + -0.014431812, + -0.02379234, + -0.016560411, + 0.00032865317, + -0.007709804, + 0.012354593, + -0.004001838, + 0.0024248017, + -0.020109411, + -0.0034030767, + 0.0011057146, + -0.010086208, + -0.011930777, + 0.008271555, + 0.0045124106, + -0.005213672, + -0.0013886834, + -0.023052158, + -0.0014734137, + -0.022755606, + -0.0006764485, + -0.02936469, + -0.020185549, + -0.007564599, + -0.010777075, + -0.021083815, + -0.017236471, + -0.008109933, + 0.005013571, + 0.00246616, + -0.00953485, + -0.012724584, + -0.006939328, + -0.0030701386, + -0.016490432, + -0.025673917, + -0.024081841, + -0.008394063, + -0.0027615374, + 0.01053628, + 0.0009856594, + -0.03148122, + -0.032769825, + -0.005829022, + -0.02733065, + -0.033124357, + -0.004690779, + 0.01972084, + 0.0010646149, + -0.00825546, + -0.0011145815, + 0.002034958, + -0.018315982, + -0.014968046, + -0.005845915, + -0.0060821776, + -0.01243088, + -0.016051134, + -0.028467763, + -0.006855716, + 0.0012165532, + 0.017519973, + -0.028511275, + 0.004413267, + -0.021613443, + -0.018197091, + -0.011897005, + 0.0043283706, + 0.009549477, + -0.012961269, + -0.029685596, + -0.0050538452, + -0.019031182, + -0.01907943, + -0.017811885, + -0.02510841, + -0.0018852854, + -0.0069448883, + -0.010234469, + -0.0011889136, + 0.02012745, + -0.019616866, + 0.013446374, + -0.0130625125, + 0.002891699, + -0.010871654, + 0.005411476, + -0.025653154, + -0.022152828, + -0.0058665304, + 0.007513388, + 0.01161119, + 0.015185625, + -0.014854374, + -0.020608036, + 0.013901465, + -0.002746659, + -0.032273497, + 0.014375678, + 0.023469005, + -0.032440405, + -0.023405623, + -0.0031301053, + -0.015578951, + -0.012077383, + 0.011212019, + 0.011135876, + -0.012900853, + -0.025531815, + -0.025846846, + -0.008105638, + -0.003848325, + 0.007399389, + 0.0072139734, + -0.017315295, + -0.014592254, + -0.006197418, + 0.011707659, + -0.012752525, + -0.0055180285, + -0.0047545424, + 0.02329863, + 0.002917683, + -0.009773659, + -0.01574796, + -0.020271627, + -0.014203077, + -0.009343605, + -0.013808848, + 0.011889013, + -0.009294936, + 0.010008124, + 0.025128935, + -0.012312444, + 0.0042479793, + -0.012703856, + -0.023739772, + -0.024082756, + -0.0012406673, + 0.010144593, + -0.0062691728, + -0.018508442, + -0.009378559, + -0.027245345, + 0.01422129, + -0.0041571544, + 0.00017283893, + 0.015885176, + -0.027144618, + -0.0019842235, + -0.028833024, + 0.0010278495, + -0.0050130566, + 0.0026157687, + -0.023840927, + -0.012542758, + -0.009197117, + -0.0091873305, + -0.015938358, + 0.0004940268, + -0.009515782, + -0.002611238, + -0.017435573, + 0.004900186, + 0.013589432, + 0.0073050433, + -0.016345745, + 0.0026966159, + -0.005882151, + -0.020202255, + -0.018367812, + 0.012956503, + -0.01503289, + -0.012851165, + 0.00023974387, + -0.004931752, + 0.013964943, + -0.0028266641, + -0.04352141, + -0.027122041, + -0.03107602, + -0.009211834, + -0.02600286, + 0.0060108737, + 0.0089273825, + -0.002215314, + -0.011400936, + -0.018001176, + -0.0064456766, + -0.021934753, + 0.0102186715, + -0.007672813, + 0.014422898, + 0.012387403, + -0.003367, + -0.033071086, + -0.008812525, + -0.03506676, + -0.009239302, + -0.0049346075, + -0.0279869, + 0.005630982, + -0.021388942, + 0.011814353, + 0.020520616, + -0.020923214, + -0.016481517, + 0.0030969481, + 0.011051977, + -0.012104548, + -0.018059002, + 9.344724e-05, + -0.012632706, + -0.0051575513, + 0.0075964024, + -0.007480689, + -0.00313977, + -0.016596876, + -0.014121521, + 0.0023611356, + -0.026260257, + 0.004163828, + -0.017328294, + -0.014844895, + -0.00067541125, + -0.013981243, + -0.0038093985, + 0.011073761, + 0.0057276003, + -0.017717691, + -0.017652683, + -0.007868551, + -0.009570326, + -0.0154814925, + 0.0040327106, + 0.0017035414, + -0.021810448, + 0.034781624, + 0.01075233, + 0.009636775, + -0.017777743, + -0.019848444, + 0.013838942, + -0.030942943, + 0.011283321, + -0.011727213, + -0.004071526, + 0.00227665, + 0.016962836, + -0.019826932, + -0.026210513, + -0.02049655, + 0.00046194874, + -0.007162768, + -0.023716712, + -0.012297583, + 0.00037569457, + 0.003186203, + 0.015815696, + -0.00075694575, + -0.018767646, + -0.010329898, + -0.010947885, + -0.02180068, + 0.0016955165, + 0.02561039, + -0.021403005, + -0.0037345225, + -0.017942246, + -0.018219, + -0.0048024263, + -0.0034197073, + -0.0014820673, + -0.0060483837, + -0.014588215, + -0.025517926, + 0.029600244, + -0.034754608, + -0.022380687, + 0.007911661, + 0.0010731125, + -0.01165578, + -0.0078089014, + 0.0008787709, + -0.026324965, + -0.0016490422, + -0.014178375, + 0.003206222, + 0.015675288, + -0.028714234, + -0.00539706, + -0.0083809495, + 0.011789379, + -0.024204867, + -0.00020911843, + -0.035609845, + 0.01985167, + -0.013473487, + -0.010620257, + -0.030756615, + -0.00050108385, + -0.010237322, + -0.015613667, + -0.0057365336, + -0.019054923, + -0.016874792, + 0.014228824, + -0.010236291, + -0.0005168581, + -0.0028263878, + -0.009878691, + 0.0027360832, + 0.0071432726, + -0.023769645, + -0.012566946, + 0.024595756, + -0.00783273, + -0.017228395, + -0.026684528, + -0.013873925, + -0.009465282, + 0.0089156665, + 0.0038150642, + -0.015156845, + -0.009278151, + -0.018875834, + -0.002253688, + 0.011539897, + -0.011552773, + -0.012010084, + 0.0075999023, + 0.027633239, + -0.008218807, + -0.020072011, + -0.011512318, + 0.0061938586, + -0.011233382, + 0.004853786, + -0.023641422, + -0.024901763, + -0.024538314, + -0.008703894, + 0.0048421016, + -0.014782387, + -0.02317248, + 0.00049180613, + -0.024286754, + -0.013005828, + -0.009689207, + -0.0022992631, + -0.0151396375, + -0.015201559, + -0.0046289605, + -0.002751428, + -0.017659035, + -0.015314016, + 0.0174677, + 0.013279007, + -0.011889433, + -0.03031434, + -0.01083624, + -0.0009171429, + -0.026601443, + -0.004189582, + 0.006357738, + -0.00503628, + -0.0035674465, + -0.03010554, + -0.004458503, + -0.0057490566, + 0.008788511, + 0.00992102, + -0.0054179644, + -0.013610579, + -0.028722694, + -0.017107202, + -0.01965238, + -0.0031598336, + -0.0118856765, + -0.013943699, + -0.010754425, + -0.012063647, + -0.036368866, + -0.019449, + 0.00035050337, + 0.0051112245, + -0.008240691, + 0.0023972353, + -0.008498597, + -0.012591836, + 0.00591803, + 0.02116893, + -0.030886654, + -0.002599607, + -0.0025062023, + -0.015350224, + -0.0341348, + -0.029343298, + -0.010835744, + -0.020541769, + 0.014565421, + -0.020419754, + -0.005149137, + -0.017003542, + -0.0004542138, + -0.015357363, + 0.009685693, + 0.02207482, + -0.031136272, + -0.010674183, + 0.0077490495, + 0.0077613145, + 0.006739732, + -0.0008086204, + -0.0072912103, + -0.008334728, + -0.0020734374, + 0.0017402334, + -0.015229902, + -0.00838243, + -0.014423767, + -0.010128032, + -0.015860688, + -0.00092608854, + 0.017512916, + -0.002146206, + -0.004238537, + -0.0075964043, + 0.012710606, + 0.00025789056, + 0.010876616, + -0.011472929, + -0.016960965, + 0.0013353174, + 0.00089920865, + 0.024375418, + 0.0059448145, + -0.0036869985, + -0.0027755601, + 0.00018828649, + -0.02593266, + -0.013512081, + -0.00667181, + -0.018045474, + -0.009248641, + -0.02428699, + 0.003502068, + -0.019266069, + -0.012230824, + 0.009519747, + 0.02131531, + -0.007649291, + -0.013798788, + -0.009814083, + 0.008924271, + -0.026663281, + -0.037316613, + -0.014381774, + -0.035023164, + -0.023108117, + -0.007796449, + -0.012516525, + -0.0022523818, + -0.014999894, + -0.023864048, + -0.018919114, + -0.005965418, + -0.041508004, + -0.0038884997, + -0.0294016, + 0.009748148, + 0.01396136, + -0.0013404172, + -0.012112138, + -0.008830687, + -0.012859691, + 0.0017004315, + -0.02744379, + 0.009469871, + -0.011336268, + -0.015282003, + 0.007042944, + 0.0025959485, + -0.021939794, + -0.048350256, + -0.0120847365, + -0.0015062744, + -0.003315206, + 0.029805174, + -0.013401877, + -0.017459024, + -0.004757214, + -0.006081168, + 0.027588286, + 0.006288003, + -0.019947672, + 0.02441322, + 0.015914343, + -0.00065006496, + -0.011934575, + -0.0016981288, + 0.025289532, + 0.00024374884, + -0.00030861387, + -0.02484422, + -0.03334785, + -0.022272475, + -0.01572566, + -0.021974279, + -0.0096651735, + 0.00856221, + -0.007386235, + -0.0018438, + 0.0012048335, + -0.04380853, + -0.00362696, + -0.028226105, + -0.0129755745, + -0.01495671, + -0.016288836, + -0.0033794276, + -0.011154392, + 0.002728754, + 0.0051816064, + -0.01026805, + -0.015334553, + -0.0022390604, + -0.006458626, + -0.010210774, + -0.01222354, + -0.010040596, + -0.01661974, + -0.026250007, + 0.009791127, + -0.027683662, + -0.013273489, + -0.02060099, + 0.0004857973, + -0.013210413, + 0.0027728037, + -0.020091577, + -0.017609395, + 0.0041442825, + 0.0017884253, + -0.019422853, + 0.003474731, + -0.026226558, + -0.0021395308, + -0.016615974, + -0.019327452, + 0.013915683, + -4.0967476e-05, + 0.0048638526, + 0.0034032154, + -0.021187881, + 0.0050411853, + -0.022422446, + -0.025112906, + -0.005772942, + -0.000912913, + -0.0059603825, + -0.015630495, + -0.02199963, + -0.00624423, + -0.03193243, + 0.0062368745, + -0.009615008, + -0.020397907, + 0.007707152, + 7.175992e-06, + -0.020210575, + 0.0009949493, + -0.014329224, + -0.01493127, + -0.019861432, + 0.0037747116, + -0.005838026, + -0.009112504, + -0.009341306, + -0.025643308, + -0.015410345, + -0.005273632, + -0.009063437, + -0.02226578, + -0.0052021933, + 0.025590608, + -0.034204975, + 0.019802112, + -0.009479369, + -0.013812352, + -0.0099947555, + -0.019612955, + -0.018476421, + -0.01217447, + 0.0005618574, + -0.0117362, + 0.0034361626, + -0.034826785, + 0.008685121, + 0.00036087306, + -0.015982883, + -0.006350588, + -0.027643261, + 0.004721101, + -0.0068176696, + -0.0120878, + 0.021048084, + -0.022418426, + -0.020577827, + -0.0036716752, + 0.010339767, + -0.014030179, + 0.009138108, + 0.016752884, + 0.004835887, + -0.030652888, + -0.0012081634, + -0.013348257, + -0.0045221765, + -0.0027561786, + -0.012499048, + -0.013830328, + -0.012756992, + -0.015342849, + -0.009149438, + -0.024956679, + -0.010568159, + -0.010616369, + -0.023039753, + -0.020714102, + 0.0072147963, + 0.022434168, + 0.0035207793, + -0.008370711, + -0.0030186549, + 0.027138894, + 0.019834632, + 0.027533846, + -0.009101419, + -0.012632117, + -0.009027807, + -0.02472468, + -0.019869944, + 0.0036365986, + 0.017081786, + 0.0018407045, + 0.019643214, + 0.00431078, + 0.025655335, + 0.0068344013, + -0.0019865832, + 0.0052944194, + -0.011626001, + -0.01469077, + -0.0027281125, + -0.0055559, + 0.0029317033, + 0.00013867687, + -0.01523777, + -0.0027593991, + 0.009219184, + -0.0010955684, + -0.007190063, + -0.023536444, + -0.024909422, + -0.015090566, + -0.0152720455, + -0.008377684, + 0.014731608, + 0.0073493095, + -0.0065544043, + -0.014499242, + -0.008089758, + -0.010776462, + 0.009020649, + -0.030311888, + -0.0014929683, + -0.02051294, + 0.018579599, + -0.008408804, + -0.014060821, + -0.012962585, + 0.0006202084, + -0.022559691, + -0.015679628, + 0.0016222228, + -0.0006836036, + -0.0010656228, + -0.006146876, + -0.013833511, + -0.0006823075, + -0.030773234, + -0.008475158, + -0.009639084, + -0.022076847, + -0.017933967, + 0.004504934, + 0.007460152, + -0.010490128, + -0.03646421, + -0.017556852, + 0.020817561, + 0.00024886173, + 0.006937833, + -0.030739011, + 0.020753093, + -0.010633478, + -0.014175094, + 0.00969817, + -0.008434229, + 0.009629924, + 0.017266478, + -0.0074024573, + -0.019250697, + 0.014707183, + -0.0009239771, + -0.015718207, + 0.012474418, + 0.0077272034, + -0.026709633, + 0.009281009, + -0.024424724, + -0.030476082, + -0.00862382, + -0.0033379737, + -0.008947101, + -0.00037937568, + 0.0035838361, + 0.0007192571, + 0.0065832795, + -0.019231502, + -0.025517747, + -0.013710193, + -0.012137091, + -0.0011241294, + -0.0025034177, + -0.0145499995, + 0.0067808195, + -0.021200951, + 0.0045256093, + -0.010023894, + -0.022468816, + -0.021177126, + -0.019265454, + 0.0151865035, + 0.008550835, + -0.04464887, + -0.019777404, + -0.021183727, + -0.008397913, + -0.0053488156, + -0.00064630446, + -0.011069211, + -0.017443469, + -0.0032397334, + -0.01376066, + 0.0029245354, + -0.0027788554, + -0.011246398, + -0.008605025, + -0.024507545, + 0.003045599, + -0.0025176816, + 0.008812288, + -0.010917281, + -0.004555166, + -0.017584449, + -0.03470526, + 0.012789258, + 0.013892268, + 0.014635276, + -0.034131564, + -0.009136518, + -0.0073561524, + -0.029988034, + -0.0041535385, + -0.003118761, + 0.00915981, + -0.00518426, + -0.013963183, + -0.033829, + -0.016933132, + -0.035534848, + -0.01636536, + 0.028848233, + -0.0012430837, + -0.026796656, + -0.015886273, + -0.018842164, + -0.018878145, + 0.0017659722, + -0.0033745985, + -0.012756219, + -0.0080245575, + -0.011122622, + 0.02032782, + -0.024823166, + 0.013068232, + -0.012461346, + -0.008307281, + 0.00014773278, + -0.02398619, + -0.023765007, + 0.004175676, + -0.019744989, + -0.019072723, + 0.0064914376, + -0.009839467, + 0.009760285, + -0.0086918315, + 0.010356395, + -0.0002592762, + 0.005861475, + -0.0077706366, + -0.015287166, + -0.013420721, + -0.036974866, + -0.0015237696, + 0.0012635249, + -0.024361614, + -0.009875205, + -0.0001795791, + -0.004150295, + 0.011326404, + 0.01458329, + -0.02977737, + -0.019014059, + 0.014045297, + 0.009683675, + -0.021933217, + 0.0057233386, + 0.003659529, + -0.014018273, + -0.0040502204, + 0.016160078, + -0.014486786, + -0.0027840177, + -0.0005996913, + 0.0112431925, + 0.016321503, + -0.025665391, + -0.009563569, + -0.025862366, + -0.02308104, + 0.015915763, + -0.018993923, + 0.0060932836, + 0.0060482384, + -0.03563837, + 0.0054787747, + -0.026329195, + 0.013452671, + 0.0072831432, + -0.007044977, + -0.011113168, + -0.014233027, + -0.0024253007, + -0.027513478, + -0.017149542, + 0.012388925, + -0.026653687, + 0.0033851522, + 0.018278982, + 0.0015578213, + 0.023860818, + 0.03456581, + -0.00274961, + 0.0039136666, + 0.010381423, + -0.00093398744, + -0.009384609, + 0.009499637, + -0.014393156, + -0.012121044, + -0.0049117953, + -0.009084608, + -0.0008414603, + 0.013433644, + 0.02977472, + -0.030880403, + -0.007459016, + -0.008907722, + -0.01919486, + -0.0007546927, + -0.008984132, + -0.027555104, + 0.011274506, + -0.009599054, + -0.022327956, + -0.0075407433, + -0.010697068, + 0.015403358, + 0.0014910796, + -0.011551095, + -0.017025989, + -0.0071050525, + -0.013734613, + -0.012621903, + -0.016733278, + 0.010321195, + -0.003884448, + -0.005328146, + -0.005331414, + 0.01101158, + 0.013397412, + -0.021860197, + -5.120078e-05, + -0.023474988, + -0.005199832, + -0.022589898, + -0.011835195, + 0.004859366, + 0.0044560037, + -0.01113427, + -0.024607176, + -0.011946286, + 0.036279, + -0.030905567, + -0.0029906111, + -0.035044767, + -0.008968658, + 0.0038671868, + -0.0035098188, + 0.0090714395, + -0.0005972738, + 0.010503593, + -0.013890863, + -0.016779574, + -0.0090361275, + 0.00038270067, + -0.019889455, + -0.012694304, + -0.008174747, + 0.0058303643, + -0.03432375, + 0.011742633, + -0.03942239, + -0.018194955, + -0.01436015, + 0.0023482433, + -0.029485695, + -0.0078820465, + -0.0045432355, + -0.0055578398, + -0.012733738, + -0.0029948545, + 0.0013518424, + -0.012654846, + -0.010148618, + -0.026980968, + -0.0064744046, + 0.008934438, + 0.012937128, + -0.012611283, + -0.031791918, + 0.002990056, + -0.0156240165, + -0.006746213, + 0.013762029, + 0.00012287113, + -0.002772685, + -0.030668978, + -0.028503982, + 0.0006432971, + -0.009561489, + 0.006428154, + -0.017897867, + -0.0068922727, + -0.0099222055, + -0.005590213, + -0.025408098, + -0.016073897, + -0.019290432, + 0.015845975, + -0.0052551916, + 0.0023387703, + 0.003304673, + -0.011233604, + 0.011021524, + -0.0024533663, + -0.01743468, + -0.011566803, + -0.019737165, + 0.01625355, + 0.004520296, + 0.0026195347, + 0.019298676, + -0.017738473, + 0.008958174, + -0.041136704, + -0.0057971505, + -0.033062108, + 0.0064145424, + 0.007108328, + -0.00653958, + 0.0015502832, + -0.0033380904, + -0.003304553, + -0.010997695, + -0.017518496, + -0.0073105493, + -0.01376118, + -0.024617817, + -0.02005673, + 0.004134114, + -0.017950783, + -0.019477034, + -0.015368192, + -0.009567869, + -0.0066384594, + -0.039684415, + -0.0047746752, + -0.017271616, + 0.006839814, + 0.0014219398, + -0.013047392, + -0.013090571, + 0.0049391915, + 0.012072363, + -0.030723967, + 0.024085943, + 0.009151588, + -0.0055605085, + 0.0049518677, + 0.0042415615, + -0.02038342, + -0.016714845, + -0.0036998321, + -0.016410677, + -0.0004217781, + -0.018536113, + -0.02874985, + 0.023474125, + 0.017174594, + 0.0007519013, + -0.028294219, + -0.009444311, + -0.008729367, + -0.009141656, + -0.018694313, + 0.003215305, + 0.004856323, + 0.014466609, + 0.026160253, + -0.009435163, + -0.024077462, + 0.008858785, + -0.011459979, + -0.012036764, + -0.023599878, + -0.019133838, + -0.012103156, + -0.007116356, + -0.009173568, + -0.0005505258, + -0.01765883, + -0.049238387, + -0.020429278, + -0.017513715, + -0.03181832, + -0.020020505, + -0.018659735, + -0.03538958, + -0.02244814, + 0.0045227627, + -0.005378869, + 0.0003444629, + 0.011830629, + 0.015322981, + 0.006644532, + -0.020037191, + -0.014522962, + -0.01614131, + -0.012258283, + 0.008296448, + -0.030131014, + -0.01741972, + -0.008196139, + -0.010696742, + -0.012801583, + 0.027822709, + 0.012196573, + -0.032175846, + -0.015316216, + 0.013218658, + -0.011110362, + -0.011304782, + 0.006041519, + -0.027746132, + -0.008956075, + 0.008135036, + 0.008459263, + -0.008301577, + -0.018376334, + 0.019165155, + 0.016612321, + -0.024551358, + -0.008849905, + -0.0070993397, + -0.0062139607, + -0.017585767, + -0.017492577, + -0.009734712, + -0.018547114, + -0.02910366, + 0.010756186, + -0.011968792, + 0.011356535, + -0.04019968, + 0.010238504, + 0.010828665, + -0.018904658, + -0.0009763314, + -0.019703634, + -0.0035376546, + -0.004690641, + 0.0010983975, + -0.008054245, + -0.004119876, + -0.00020933672, + -0.025169516, + -0.0040106433, + -0.0073836185, + 0.0033731528, + 0.008133124, + -0.0419346, + -0.027838947, + -0.011149196, + -0.0012827126, + -0.014550456, + -0.018032344, + -3.9279246e-05, + -0.010007686, + -0.0016348351, + -0.002868928, + -0.0021761989, + -0.009270421, + 0.011110174, + -0.021858115, + 0.009387461, + -0.008241148, + 0.003447786, + -0.020047512, + -0.007776856, + -0.00048883, + 0.000744118, + -0.017050726, + 0.013320325, + -0.018187454, + -0.025401447, + 0.014873215, + -0.017230857, + -0.0044131447, + -0.013686703, + -0.0022471587, + -0.013263562, + -0.0031760354, + -0.015514584, + 0.0038435345, + 0.0153455185, + -0.020928778, + 0.021677425, + -0.015414601, + -0.036871266, + -0.010187009, + 0.0019117501, + -0.007856024, + -0.02258529, + 0.020479633, + -0.013471879, + 0.0044630873, + -0.010377166, + -0.014523335, + -0.0014702915, + -0.004163588, + -0.028577304, + 0.022112608, + 0.014938262, + -0.01812758, + 0.0074387053, + -0.028485818, + -0.012693675, + 0.011007987, + -0.017944371, + -0.015656002, + 0.009329452, + -0.023894116, + -0.008453173, + 0.0005494434, + -0.021088246, + 0.018601486, + -0.01669861, + -0.015327822, + -0.0013540736, + 0.00997287, + 0.0032225256, + -0.028062165, + -0.04031977, + -0.017843993, + -0.019733423, + -0.019157141, + -0.016578885, + -0.02969954, + 0.013710883, + -0.010017206, + 0.0026752101, + -0.004622446, + -0.019503817, + 7.751791e-05, + -0.0263604, + -0.037848383, + -0.012028787, + 0.019542616, + 0.005331844, + 0.01353737, + 0.0015120375, + -0.0069793314, + -0.0050979583, + -0.021337386, + 0.00046686636, + -0.013932927, + 0.009192157, + -0.022976415, + 0.009114258, + -0.021708246, + -0.021831658, + 0.02069157, + 0.0032714566, + 0.0024122212, + -0.009083195, + 0.017118866, + 0.00057062315, + -0.031512313, + -0.015880704, + 0.013735383, + -0.0021436028, + -0.020807547, + -0.033092268, + 0.003225768, + -0.008148825, + -0.030014003, + 0.012087578, + 0.009545007, + -0.034351107, + -0.020451965, + -0.019889329, + -0.007677621, + 0.010045903, + -0.04327654, + -0.027806764, + -0.005486466, + -0.02165157, + -0.02269811, + -0.017366853, + -0.026353234, + -0.023813162, + -0.009416586, + -0.002702227, + -0.022646314, + -0.016608728, + -0.0023795487, + -0.035686072, + -0.009056008, + -0.003157315, + -0.011874652, + -0.021549765, + -0.024620038, + -0.011983398, + 0.007083975, + -0.018888466, + -0.007885348, + 0.008946501, + -0.027899899, + 0.0030207762, + -0.023125324, + -0.0059997924, + -0.015931658, + -0.0149240885, + -0.020815806, + -0.0047312905, + 0.013671511, + -0.011834925, + -0.0090914965, + 0.013267564, + 0.0067164097, + -0.01912516, + -0.0031684374, + -0.015653275, + -0.0043726354, + -0.0015791096, + -0.009898911, + -0.020165829, + -0.01748026, + 0.0018018081, + -0.0065845544, + 0.010415564, + -0.017839612, + -0.013319677, + -0.026234308, + 0.0039776065, + -0.007196095, + -0.011892137, + -0.015412375, + 0.006044831, + -0.005211699, + -0.010571935, + -0.007899458, + -0.00026954565, + -0.032617353, + 0.0034613637, + -0.00091392605, + -0.008438573, + 0.003598395, + -0.025623858, + -0.011134746, + -0.0046780254, + -0.0054753255, + 0.00043131903, + -0.017685674, + 0.0061630593, + -0.016051127, + 0.00041457507, + 0.002917586, + -0.009618789, + -0.012869862, + -0.021486957, + -0.022584828, + -0.0063733356, + 0.004867826, + -0.019019157, + 0.008689693, + -0.0113205165, + 0.011847141, + -0.00896796, + -0.007236002, + -0.008450208, + -0.012574924, + -0.009031326, + 0.02000222, + -0.017736813, + -0.015242911, + -0.024080653, + -0.007481181, + 0.0011928709, + -0.027221873, + -0.025027446, + -0.027858699, + -0.0036847559, + -0.0057757925, + -0.015441844, + -0.006358425, + -0.00654379, + 0.017243303, + 0.012922598, + -0.017207488, + -0.024756748, + -0.018796392, + -0.012080943, + -0.017914675, + -1.0195802e-05, + -0.020296548, + -0.020276537, + -0.0015082407, + 0.0020951934, + -0.022498095, + 0.015688576, + -0.0008538708, + -0.0018657757, + -0.005874123, + 0.008094274, + -0.022489985, + -0.030059276, + -0.01788537, + -0.028420685, + -0.00081898586, + -0.0009302209, + -0.008829034, + -0.0050374884, + -0.007975908, + -0.027133545, + -0.009293295, + 0.00047962306, + -0.014218095, + 0.0034718371, + -0.016156795, + -0.015852991, + -0.037375465, + -0.04738768, + 0.008425878, + 0.0016146359, + 0.0030764113, + -0.04019055, + 0.00574607, + -0.004254815, + -0.017286452, + 0.0015047907, + -0.005537401, + -0.0034492975, + -0.014979319, + 0.0028242744, + -0.0124155395, + -0.009479184, + -0.0081759505, + 0.004590902, + 0.0014893552, + -0.010744746, + -0.017963668, + 0.02654881, + -0.0010643171, + 0.0051228446, + 0.008930508, + 0.0033882174, + -0.0076568583, + -0.0005786317, + -0.013977379, + -0.016442832, + -0.021379158, + -0.014578995, + -0.036576156, + 0.0040272134, + -0.0044852393, + 0.011027972, + -0.015957264, + 0.012745334, + -0.018005153, + -0.025762245, + 0.0046653138, + -0.00015746654, + -0.03047116, + 0.003474328, + -0.005762304, + 0.013923696, + -0.010307225, + -0.020115322, + -0.017082898, + -0.012515797, + 0.0009140677, + -0.01490659, + 0.009530027, + -0.0059747994, + 0.018070951, + -0.019917455, + -0.004918645, + 0.0074685896, + -0.012575993, + -0.011555967, + -0.0009156204, + 0.013606045, + -0.0064183176, + -0.03427869, + -0.0093591735, + -0.0033244644, + -0.020950997, + -0.007624604, + -0.013543931, + 0.010733252, + 0.019393245, + -0.01181534, + -0.008715401, + -0.012709358, + -0.01916266, + -0.005233346, + -0.0003749733, + -0.019906772, + -0.009565196, + -0.011520463, + -0.0076823276, + 0.0035581023, + -0.0028334684, + -0.018089531, + -0.0023001817, + -0.0266005, + -0.010042641, + -0.010981578, + -0.00025688094, + -0.0048483345, + -0.005962945, + 0.020217216, + -0.01811689, + -0.0019182293, + 0.002216952, + -0.02015701, + -0.016832728, + -0.005118538, + -0.0029582393, + -0.0045138556, + -0.0121007385, + -0.021637224, + 0.02694837, + -0.030518573, + -0.0067699193, + -0.002054868, + 0.02140926, + -8.1538135e-05, + -0.008751233, + -0.0019249894, + -0.001246651, + 0.015459452, + -0.018777894, + 0.00073035056, + -0.01353628, + -0.018979983, + 0.012935726, + -0.0059317197, + 0.006674545, + -0.016096307, + -0.023602407, + 0.0076723406, + -0.012106956, + 0.0006747273, + 0.008119162, + -0.0034507504, + -0.012105768, + -0.016763156, + 0.009368518, + -0.003292383, + -0.007334772, + -0.0036608488, + -0.0020729194, + -0.020404605, + -0.017388027, + -0.0047150706, + -0.022726158, + -0.020098004, + -0.0057250718, + -0.030496126, + -0.018912097, + -0.013560808, + -0.012809677, + -0.00070283865, + 0.008970666, + 0.0024434382, + -0.0032629913, + -0.02243886, + 0.007986773, + 0.016736107, + -0.008470839, + -0.013952449, + -0.0073060873, + 0.00014800625, + -0.015329692, + 0.0017760185, + 0.011370528, + -0.0046352595, + -0.017702486, + 0.00059912767, + 0.0010191867, + 0.0008974699, + -0.008488868, + -0.021435976, + 0.0032556118, + -0.0173616, + -0.011087643, + -0.0075915847, + -0.00311702, + -0.014214601, + 0.008182205, + 0.02640507, + -0.024468467, + 0.014552675, + 0.0058557102, + -0.005782458, + -0.015642963, + -0.017952355, + 0.01385236, + 0.008825778, + -0.0069257445, + -0.013125679, + 0.005551432, + -0.015207007, + -0.0046389494, + 0.0064491048, + -0.006528052, + -0.0029691674, + 0.006460229, + -0.008145911, + -0.02563772, + -0.0056465473, + -0.009259416, + -0.023040641, + 0.00047222042, + -0.016906423, + -0.009952867, + -0.002154466, + -0.014508633, + -0.007684512, + 0.02255854, + -0.00051724183, + -0.028061116, + -0.027009295, + -0.022078203, + 0.005463249, + -0.012071498, + -0.019101446, + -0.006089838, + -0.0062094084, + -0.0039380384, + 0.026013905, + 0.009201784, + -0.021580845, + -0.002003013, + -0.02597793, + -0.015526968, + -0.02395965, + -0.0024752247, + -0.019197034, + -0.02629302, + 0.01657796, + -0.010714519, + 0.018677892, + -0.019215226, + -0.0066339127, + 0.013675839, + -0.0035175944, + 0.030491188, + 0.019419799, + -0.002613142, + 0.0005654043, + -0.021092935, + 0.0011298022, + -0.048959292, + -0.008169196, + -0.010603391, + -0.029092113, + -0.0039924546, + -0.0011148336, + -0.00658893, + 0.0033030726, + -0.01377736, + -0.029145157, + 0.014435645, + -0.018302344, + 0.006666163, + -0.003940804, + 0.0015783691, + -0.010663819, + -0.0021583342, + -0.024530796, + -0.015824633, + -0.01038986, + -0.00092994416, + -0.012161493, + -0.011259045, + -0.0125316, + -0.015968416, + -0.0018909924, + -0.024188641, + -0.012262086, + -0.0061900197, + -0.011149308, + 0.00090436597, + -0.0060015107, + -0.0106153805, + -0.0094229495, + 0.022626676, + -0.01702799, + 0.0015724096, + -0.006566485, + -0.009268666, + -0.025530979, + -0.0073280483, + -0.00070953765, + -0.003604958, + -0.020628612, + 0.012777681, + -0.009464807, + -0.013455279, + 0.015329501, + 0.0026898861, + 0.0045934115, + -0.005608994, + -0.005779228, + 0.009605776, + -0.011982922, + 0.011259749, + -0.025137998, + 0.011028883, + 0.004186456, + -0.03437826, + -0.0048912507, + -0.0081529785, + 2.3737344e-05, + 0.0036877978, + -0.01797976, + -0.0072538396, + -0.025522476, + -0.0042372597, + 0.0002395462, + 0.014247493, + -0.020767063, + -0.020662913, + -0.0098957755, + -0.018489163, + -0.017459875, + -0.014732743, + 0.029015584, + -0.010979468, + 0.008671681, + -0.005415903, + 0.0035157236, + -0.02518686, + -0.0032790261, + -0.021173209, + 0.017266614, + -0.013082454, + -0.0011113452, + -0.010107121, + -0.004668591, + -0.0171369, + -0.00012237132, + 0.011351257, + -0.013944122, + 0.0041622636, + -0.007944805, + 0.0008278008, + -0.026247885, + 0.003328438, + 0.0053977496, + 0.004925762, + -0.022545941, + -0.017039228, + -0.014543557, + 0.0013326441, + 0.0106007615, + -0.00937857, + -0.014968089, + -0.010986893, + -0.0144042205, + 0.0075050727, + -0.006302183, + -0.016979624, + -0.028899169, + -0.005943359, + 0.00215264, + -0.016249705, + -0.01627021, + -0.0002667945, + 0.0023999605, + 0.009074184, + -0.011003014, + 0.0036548863, + -0.008715664, + 0.0021301121, + 0.0005059294, + -0.0033228768, + -0.0057369443, + -0.01418286, + -0.009582355, + -0.027428403, + -0.018225877, + -0.0034430095, + 0.020557022, + -0.00017803223, + 0.013881364, + 0.0028599256, + 0.009004507, + 0.007950081, + 0.0031253377, + 0.02051477, + -0.0027579947, + -0.008777849, + 0.003895105, + -0.021221368, + 0.009117778, + -0.0002442424, + -0.037547257, + 0.002731523, + -0.015686369, + -0.013049931, + -0.023108678, + -0.030931048, + -0.020540118, + -0.02239431, + 0.0014998056, + 0.014461221, + 0.0134067265, + 0.009656506, + -0.017831787, + -0.030041253, + 0.0032369227, + 0.0057675084, + -0.009982237, + -0.027276892, + -0.016242487, + -0.012251712, + 0.015104884, + 0.00061413366, + -0.016461307, + -0.02977597, + 0.0079198675, + -0.00033314503, + -0.021037672, + 0.0054226313, + -0.009708072, + -0.0037135303, + -0.0065983874, + -0.021645183, + -0.004643286, + -0.027035337, + -0.01625497, + 0.011041607, + -0.01747266, + 0.0136702815, + -0.024897028, + -0.025175026, + -0.004349746, + -0.016911417, + -0.0052962867, + 0.014869109, + -0.003977622, + -0.015363901, + -0.011425203, + -0.007029541, + -0.043379124, + 0.0044369986, + -0.0014496896, + 0.00053987134, + -0.01670067, + -0.022403296, + -0.021649268, + -0.010303386, + -0.0167313, + -0.009852158, + -0.0071330057, + -0.014967095, + -0.021366816, + -0.012076264, + 0.003783056, + 0.010557755, + 0.0059225825, + -0.021309758, + -0.00091219874, + -0.0030128853, + -0.024749575, + -0.012539057, + -0.0016709632, + -0.007564202, + -0.011130487, + -0.03908555, + -0.003159626, + -0.005063346, + -0.028306976, + -0.029911874, + -0.02189826, + -0.0027023044, + -0.01580551, + -0.020230077, + 0.0024970844, + -0.008373803, + -0.0059186053, + -0.0066805957, + -0.013117602, + 0.012400553, + 0.0055082664, + 0.007340017, + -0.014954869, + 0.00077801355, + -0.0063476865, + -0.015510647, + -0.008953289, + -0.032810632, + 0.015561215, + -0.008737756, + -0.01588606, + -0.020792797, + 0.009817996, + -0.029079711, + 0.004231433, + 0.013514459, + -0.007731462, + -0.0020306548, + -0.025815463, + -0.022527488, + 0.00066728663, + 0.0051242467, + -0.027387567, + -0.006558941, + -0.008182732, + 0.0051219915, + -0.017313138, + -0.0008621245, + 0.005931785, + 0.0057759183, + -0.008762277, + -0.009171804, + -0.027476251, + -0.016576534, + -0.008194689, + -0.020181682, + -0.005091445, + -0.019647025, + -0.014457619, + 0.01895444, + -0.011399759, + 0.013509812, + 0.009280642, + 0.0045632184, + -0.00031836, + -0.014981238, + -0.016150339, + -0.02702361, + 0.009782944, + 0.0072064013, + 0.006786304, + -0.027286857, + -0.026595144, + -0.0014501248, + -0.001045479, + -0.020017037, + 0.015121979, + -0.009007035, + 0.014498728, + 0.00393569, + 0.023349918, + -0.023986455, + -0.01232518, + -0.0033749277, + -0.0020288702, + -0.015548536, + -0.014616277, + 0.00965725, + 0.015294788, + -0.0167624, + -3.7367715e-06, + -0.045031436, + -0.033264637, + 0.005067176, + 0.0011314134, + -0.02409845, + 0.013739515, + -0.01929127, + -0.027031912, + 0.007302942, + -0.010332415, + 0.004031555, + -0.006566956, + -0.005752679, + 0.0004006731, + -0.031404994, + -0.0027957684, + -0.009197279, + -0.041227486, + 0.0018666198, + -0.009471546, + -0.017234016, + -0.022052342, + -0.011247444, + 0.0052778963, + 0.019425433, + -0.0028411346, + -0.025262471, + -0.020072008, + -0.01870017, + -0.02510892, + 0.018019356, + -0.013953182, + -0.006018165, + -0.002282065, + -0.014757831, + 0.0114306705, + -0.023725355, + 0.000321942, + -0.017915554, + -0.032450806, + -0.00627052, + -0.011940226, + -0.006067656, + -0.02462003, + 0.0025742538, + 0.018904844, + -0.0051035825, + -0.0028762615, + -6.4800035e-05, + 0.00044348196, + -0.019262474, + -0.011748514, + -0.0016549381, + 0.0011478092, + 0.009027703, + 0.012055775, + -0.0038933733, + -0.018755453, + -0.018192716, + -0.010112793, + 0.005608044, + -0.021492936, + -0.014388393, + 0.002186486, + -0.004966076, + -0.027858665, + -0.015522325, + -0.025780385, + 0.0067639328, + 0.0006146456, + -0.004313842, + 0.00035241497, + -0.018485311, + -0.01694646, + -0.0065477253, + -0.0045295386, + -0.020223085, + -0.013658739, + -0.018427538, + -0.01455407, + -0.0046264906, + -0.0013183652, + 0.010177019, + -0.0109938495, + -0.009632324, + -0.03238763, + -0.014646039, + -0.020125644, + -0.009619156, + -0.021366885, + -0.018957717, + -0.021751627, + -0.014836792, + -0.009582646, + -0.018543707, + -0.01582967, + -0.011819567, + -0.012661942, + -0.01814434, + -0.0021291533, + 4.7334797e-05, + -0.021029077, + 0.0038689033, + -0.02936322, + -0.004421905, + -0.01142918, + -0.0149066625, + -0.023904774, + -0.0077713337, + 0.0044031655, + -0.01315939, + -0.02306879, + -0.010427401, + 0.03487415, + -0.019815046, + -0.0054764226, + -0.012141933, + -0.031636767, + -0.0082306685, + 0.008067462, + -0.008093735, + -0.0014551965, + 0.0070655486, + 0.012351549, + -0.0046775267, + -0.013284219, + -0.0088556325, + 0.013440459, + -0.013058166, + -0.01842761, + -0.01240449, + -0.028597115, + -0.0031295402, + 0.0070339194, + -0.034842864, + 0.006891877, + -0.016896574, + -0.019422831, + -0.0070097307, + -0.024650792, + -0.0018686029, + -0.0026186486, + -0.020380031, + 0.017803483, + 0.000840006, + -0.0039890334, + -0.015669266, + 0.0019077256, + -0.012942033, + 0.0015437258, + -0.009505638, + 0.007431616, + -0.0073809377, + -0.004098257, + -0.018121352, + -0.01799828, + 0.0018380232, + -0.004879548, + -0.0009824027, + -0.006262417, + -0.014375236, + -0.012003568, + -0.0060666017, + -0.016154163, + -0.017712979, + 0.0010738211, + -0.0154409325, + -8.0206555e-05, + -0.011197767, + -0.031724103, + -0.023423357, + 0.0026588454, + -0.016091501, + -0.025286058, + 0.005820542, + 0.010574956, + 0.005858835, + 0.007094561, + 0.0025668028, + -0.017130952, + -0.011279341, + -0.010659051, + -0.016563525, + -0.0025098897, + 0.0035823577, + -0.027108468, + -0.011018789, + -0.021017395, + 0.0011372832, + -0.0016759244, + -0.020419987, + -0.0025682035, + -0.016017875, + -0.017187094, + -0.009940182, + -0.00024205321, + -0.017591784, + -0.0126572875, + 0.009421313, + -0.011941443, + 0.010720191, + -0.024211267, + 0.016499216, + -0.018184053, + -0.009972205, + -0.021512281, + 0.0069658733, + -0.025242962, + -0.020541789, + -0.030733999, + -0.012237141, + -0.006200101, + 0.004273857, + 0.0017052371, + 0.00024957574, + -0.008819362, + -0.010444412, + -0.023646526, + 0.00931411, + -0.027385127, + -0.032852713, + -0.015479884, + -0.016687596, + -0.02063063, + -0.027570222, + -0.019897312, + -0.009522225, + -0.0017349777, + 0.002504259, + -0.008568683, + -0.02923246, + 0.020370789, + -0.0006167997, + -0.014237281, + 0.002200294, + -0.017979035, + 0.0030961276, + -0.020031363, + 0.00070085714, + -0.014524987, + -0.009079252, + -0.0023348322, + -0.014052831, + -0.0013369947, + 0.004753338, + 0.009019607, + -0.0008357369, + -0.00245573, + -0.0033786981, + 0.013990253, + -0.025508747, + 0.007268867, + 0.0063737356, + 0.020543098, + -0.019144887, + -0.010581623, + -0.011658415, + 0.0030510726, + 0.025147596, + 0.000811031, + 0.0021886262, + 0.016603714, + -0.0013907491, + -0.001398906, + -0.03127866, + -0.020764234, + -0.0059552556, + -0.016836341, + -0.015040919, + -0.005641285, + 0.007039153, + 0.02075065, + -0.00552957, + 0.00011567399, + -0.0046676737, + 0.004684269, + -0.014086768, + -0.008549525, + 0.018734748, + -0.0063556973, + -0.0034680439, + -0.03045286, + -0.026994472, + -0.009364241, + -0.03462104, + 0.0011433741, + -0.009423919, + -0.02782709, + 0.0042202105, + -0.005193872, + -0.0066583212, + -0.016344799, + -0.008110627, + -0.017688107, + -0.0125421835, + -0.018335218, + -0.008870677, + -0.0023024462, + -0.0012312717, + -0.014278049, + -0.01754705, + 0.002556431, + -0.02916398, + -0.018409662, + -0.019634683, + 0.023761999, + -0.016386932, + 0.016748454, + -0.021008024, + 0.0034844147, + 0.027418578, + -0.03323938, + 0.009671024, + -0.018020658, + 0.009753942, + 0.008565283, + 0.0019189322, + 0.029670414, + 0.0067380555, + 0.0036608714, + -0.0051551536, + -0.009350588, + -0.020783018, + -0.0005625157, + -0.0023486847, + -0.0022126338, + -0.022046909, + -0.00020137425, + -0.017086647, + -0.0011886639, + -0.021427497, + -0.0011581965, + -0.004500069, + -0.013686048, + -0.02562418, + -0.026070006, + -0.00017156932, + -0.0042037736, + -0.0012433367, + 0.0011903362, + 8.5819906e-05, + 0.003408054, + -0.0065497034, + -0.0038467625, + -0.00040760823, + -0.0018996685, + -0.016826918, + -0.009102849, + -0.009941451, + 0.007873083, + -0.016289214, + -0.028557722, + -0.0055799037, + 0.0038997757, + -0.008671265, + -0.0425981, + -0.00964298, + -0.010354304, + -0.0143208, + -0.008763952, + 0.00024450477, + -0.031962626, + -0.031785622, + 0.0012819335, + 0.014275889, + -0.02315501, + 0.0006506279, + -0.03013644, + -0.00980676, + 0.0018597494, + -0.03718757, + -0.0074284617, + 0.0049921395, + -0.0006180714, + 0.00030477124, + -0.0115723, + -0.001923024, + -0.02172848, + 0.0025685967, + -0.009638841, + -0.01632215, + 0.0038447706, + -0.015314156, + -0.016773444, + -0.016778117, + -0.016648602, + -0.020688238, + -0.010889025, + -0.008087491, + 0.014242024, + -0.0070267697, + -0.012542466, + -0.0029274663, + 0.013334022, + 0.0024121345, + 0.0060569453, + -0.0030212705, + -0.004765591, + 0.007193836, + 0.021128718, + -0.00806715, + 0.016028393, + -0.014270107, + -0.024584651, + -0.0118148895, + -0.006492834, + -0.004154804, + -0.0020078148, + -0.010165221, + -0.018201493, + -0.017010655, + -0.019581174, + -0.036219284, + -0.018511802, + 0.0031713985, + -0.014303971, + 0.0030087563, + -0.009316018, + -0.011695122, + -0.01652674, + 0.0068930606, + 0.014267208, + -0.030489765, + -0.0036446317, + -0.01606535, + 0.006490374, + -0.0164301, + -0.0103808185, + -0.012240651, + -0.0040021646, + -0.019987198, + -0.002323516, + -0.0016014337, + -0.021168629, + -0.028040113, + -0.021578152, + -0.0018109257, + -0.03218685, + -0.037376817, + -0.030117586, + -0.012197565, + -0.020817002, + -0.01737417, + -0.0066606277, + -0.008458517, + -0.005274734, + 0.0030149184, + -0.021803517, + 0.0010398597, + 0.025778813, + -0.013754944, + -0.006680791, + -0.013562604, + -0.002674041, + -0.0033412103, + -0.026032299, + -0.015155491, + 0.006194505, + -0.02343296, + -0.027549341, + -0.009844936, + -0.010045712, + -0.016446037, + -0.013716319, + -0.0074110837, + 0.00030402938, + 0.017479327, + -0.004058536, + -0.02349545, + -0.02538768, + 0.013499676, + -0.017404735, + -0.0040074964, + -0.0011427067, + 0.012139487, + 0.013765938, + 0.0059381374, + 0.00053619256, + -0.009817985, + -0.016139042, + -0.005764251, + -0.00408447, + -0.01068249, + -0.009532441, + 0.022008752, + -0.011160634, + 0.0064219055, + -0.020575382, + -0.016409243, + 0.010075157, + -0.0032782268, + -0.018188966, + -0.017671712, + -0.021673353, + -0.013395482, + -0.013767581, + -0.004892175, + -0.0072866017, + -0.020006433, + -0.008268668, + -0.00713823, + -0.016416313, + -0.0071472307, + -0.006680787, + -0.011226081, + -0.021724846, + 0.0013698606, + -0.014377009, + -0.009413432, + -0.013070327, + 0.0056349677, + 0.015178432, + 0.008887238, + -0.0068680635, + -0.005737835, + 0.005234511, + -0.008215441, + 0.010274291, + 0.0007842304, + -0.01322006, + -0.0026471845, + -0.010163929, + -0.023480566, + -0.001517767, + 0.009575527, + -0.031350676, + -0.027031371, + -0.012655318, + -0.008315508, + -0.0071529862, + -0.0040352303, + -0.006680473, + -0.031189447, + 0.016106393, + -0.017394306, + 0.0027347305, + -0.022961503, + 0.013533327, + -0.002973246, + -0.022468, + -0.00693558, + -0.035347946, + -0.0028085713, + -0.0010675443, + -0.039007038, + -0.002389011, + -0.0053738966, + -0.0023764789, + -0.015456503, + -0.002139445, + -0.030171545, + 0.014932867, + 0.009606912, + -0.033770822, + 0.010214342, + -0.019231131, + 0.031765558, + -0.012479318, + -0.031291235, + -0.0049951565, + -0.03211804, + 0.0011937899, + 0.008192636, + -0.013395585, + 0.0014844646, + 0.008106101, + -0.005380416, + 0.0030168572, + -0.012227139, + -0.032824114, + 0.023411177, + -0.02972973, + -0.018190447, + -0.0153622, + -0.016956033, + -0.0056861145, + -0.007273586, + -0.00036122403, + -0.0017383667, + -0.013885426, + -0.015988104, + 0.0079718605, + -0.0023128954, + -0.020256095, + -0.0027192398, + -0.005148807, + 0.0056987605, + -0.01726759, + -0.02456063, + 0.0015233593, + -0.0069535202, + -0.002155939, + -0.006819945, + -0.013226461, + -0.0067289225, + 0.0037996515, + -0.010269392, + -0.0049512107, + 0.0149701405, + 0.0040250258, + 0.015756737, + 0.00049237255, + -0.0016270152, + -0.016154882, + -0.009170749, + -0.012292898, + -0.04230017, + 0.01366103, + 0.006415021, + -0.001552827, + -0.019501934, + 0.0055747936, + -0.017460376, + -0.011424425, + 0.0041417372, + -0.025493503, + -0.0009897796, + -0.003036726, + -0.014198671, + -0.0012699764, + 0.0030993987, + -0.0032828592, + -0.00972185, + -0.024440376, + 0.018435536, + -0.014834883, + -0.032239206, + -0.02523749, + -0.00043825316, + -0.007653218, + -0.0013324285, + -0.025710564, + 0.019599782, + -0.018339667, + 0.014473862, + -0.01705871, + -0.0138125345, + -0.016737547, + 0.0080882525, + -0.01739395, + -0.008629518, + -0.03056117, + -0.0047726715, + -0.016172513, + 0.00075619254, + -0.008318772, + 0.0025857678, + -0.014428612, + 0.021676999, + -0.0036860113, + 0.013782853, + -0.010845849, + -0.026530258, + 0.019977745, + 0.035490237, + -0.012727083, + -0.011871184, + -0.007091132, + -0.0067442097, + -0.002891162, + -0.029446527, + 0.01935299, + -0.0132821845, + -0.0143772485, + -0.0119240265, + -0.023213632, + -0.00054073206, + 0.010309709, + -0.019576693, + -0.00053650205, + -0.004383917, + -0.0069908593, + -0.009750843, + -0.018981893, + -0.028090686, + -0.008949296, + 0.01536037, + -0.031506483, + -0.012646639, + -0.0041304287, + -0.008638428, + -0.0065440843, + -0.0022348235, + -0.017407347, + -0.026669813, + -0.040863845, + -0.02177175, + -0.008780786, + -0.017962418, + 0.014095656, + -0.016539713, + -0.013118679, + -0.04101213, + -0.008171387, + -0.028423911, + -0.010435673, + 0.008276524, + -0.003206305, + -0.025324617, + -0.008073858, + -0.004048311, + -0.012506045, + -0.026352882, + -0.005644475, + -0.009657108, + -0.028926432, + -0.022912653, + 0.006015445, + 0.011187475, + 0.003238249, + -0.014360097, + 0.0033488465, + -0.006868725, + -0.010782858, + 0.014293598, + -0.0052129556, + 0.010714324, + -0.024587616, + -0.009547822, + -0.024637397, + -0.022419568, + -0.0017848193, + 0.011512534, + -0.032106, + -0.017753249, + -0.018953852, + -0.006678274, + -0.003833369, + 0.0015287331, + -0.019031066, + 0.0119293975, + -0.013411126, + -0.008358111, + -0.02208033, + -0.0028243752, + 0.0041216286, + 0.0046498924, + -0.018806515, + -0.0016895098, + 0.0039975974, + 0.009860905, + -0.014124686, + -0.026439099, + -0.011568528, + -0.029758962, + 0.009311097, + -0.030869907, + 0.011815763, + 0.01248574, + 0.00048696683, + 0.006720038, + -0.0014586479, + -0.021526909, + -0.008771804, + -0.0073860367, + 0.0014951036, + 0.0016549972, + -0.018075496, + 0.00096268434, + -0.009184593, + -0.021329375, + -0.0027202216, + -0.017867457, + -0.0049872845, + -0.016106721, + 0.0069697676, + -0.014436875 ], "paletteEmbedding": [ - 0.02673815, 0.035916917, 0.025939997, 0.011892491, 0.0035118763, - 0.00039907687, 0.00015963074, 7.981537e-5, 7.981537e-5, 0.0, - 0.031527072, 0.049964424, 0.04741033, 0.028334457, 0.009976922, - 0.0030329842, 0.0015963075, 0.00031926148, 7.981537e-5, 0.0, 0.02657852, - 0.04645255, 0.056668915, 0.03727378, 0.018676797, 0.009019137, - 0.0051081837, 0.0015963075, 0.00039907687, 7.981537e-5, 0.013568614, - 0.030090395, 0.041184735, 0.03519858, 0.022268489, 0.015803443, - 0.013568614, 0.005826522, 0.0015164921, 0.00015963074, 0.0033522458, - 0.012930091, 0.01915569, 0.022348305, 0.02035292, 0.02019329, - 0.018836427, 0.010775075, 0.0033522458, 0.00063852296, 0.0009577845, - 0.003192615, 0.008300799, 0.009019137, 0.013089721, 0.017798828, - 0.015803443, 0.009897106, 0.003910953, 0.00063852296, 0.00023944612, - 0.00063852296, 0.0012770459, 0.002953169, 0.0051081837, 0.006864122, - 0.009737476, 0.0054274453, 0.0017559382, 7.981537e-5, 0.0, 7.981537e-5, - 0.0, 0.00047889224, 0.0010375999, 0.001915569, 0.0027935382, - 0.0017559382, 0.00055870763, 0.00023944612, 0.0, 0.0, 0.0, 7.981537e-5, - 0.00015963074, 0.00039907687, 0.00039907687, 0.00039907687, - 0.00023944612, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.981537e-5, 0.00015963074, - 7.981537e-5, 0.0, 0.0, 0.026817966, 0.03416098, 0.025221659, - 0.011812676, 0.003831138, 0.0008779691, 7.981537e-5, 0.0, 7.981537e-5, - 0.0, 0.03487932, 0.051800177, 0.049086455, 0.028414274, 0.011653044, - 0.0037513226, 0.0016761229, 0.00079815375, 0.00015963074, 0.0, - 0.030329842, 0.05156073, 0.06664584, 0.053077225, 0.028414274, - 0.013648429, 0.0075026453, 0.003831138, 0.0013568613, 0.00023944612, - 0.015164921, 0.042860854, 0.057945963, 0.0586643, 0.043579195, - 0.029212426, 0.021629967, 0.012131937, 0.0042302147, 0.00055870763, - 0.0051879995, 0.018437352, 0.032644488, 0.04365901, 0.04557458, - 0.0451755, 0.042381965, 0.02689778, 0.009897106, 0.0020751997, - 0.0015164921, 0.004868738, 0.014526398, 0.021310706, 0.03176652, - 0.043419562, 0.04764978, 0.034959134, 0.013728244, 0.0023944613, - 0.00023944612, 0.0013568613, 0.0042302147, 0.009577845, 0.0138080595, - 0.023226274, 0.031606887, 0.023705166, 0.009418214, 0.0022348305, - 7.981537e-5, 0.00023944612, 0.00047889224, 0.0011972307, 0.0042302147, - 0.0105356295, 0.012211752, 0.008859507, 0.00534763, 0.00047889224, 0.0, - 0.0, 0.00015963074, 0.00015963074, 0.00063852296, 0.0017559382, - 0.0010375999, 0.0023146458, 0.00071833836, 0.00015963074, 0.0, 0.0, 0.0, - 7.981537e-5, 0.00031926148, 0.0, 0.00015963074, 0.00015963074, - 0.00015963074, 0.0, 0.017000675, 0.021151073, 0.015963074, 0.0071833837, - 0.0030329842, 0.00039907687, 7.981537e-5, 7.981537e-5, 0.0, 0.0, - 0.024343688, 0.034959134, 0.032644488, 0.026179442, 0.009737476, - 0.0033522458, 0.0011972307, 0.00047889224, 7.981537e-5, 0.0, - 0.023066644, 0.043579195, 0.05834504, 0.045814026, 0.029292243, - 0.016282337, 0.0084604295, 0.0043898458, 0.00079815375, 0.00023944612, - 0.013329168, 0.03815175, 0.056668915, 0.06496971, 0.0524387, 0.04006732, - 0.028174827, 0.021470336, 0.007263199, 0.0012770459, 0.008540245, - 0.022188675, 0.047889225, 0.06089913, 0.063772485, 0.06951919, - 0.065448605, 0.048687376, 0.017559383, 0.003831138, 0.0023146458, - 0.009019137, 0.022907013, 0.040626027, 0.055312052, 0.08141168, - 0.09410232, 0.07223291, 0.031846333, 0.005986153, 0.00047889224, - 0.0023146458, 0.00862006, 0.016681412, 0.029930765, 0.050124053, - 0.0758246, 0.063612856, 0.027376672, 0.0067044916, 0.0, 0.00047889224, - 0.0022348305, 0.0041503995, 0.009817291, 0.022188675, 0.03448024, - 0.031527072, 0.014207137, 0.0043898458, 0.0, 0.00015963074, - 0.00023944612, 0.0008779691, 0.0024742766, 0.0037513226, 0.0069439374, - 0.0087796915, 0.0051879995, 0.0011972307, 0.0, 0.0, 0.0, 7.981537e-5, - 7.981537e-5, 0.00071833836, 0.0014366767, 0.0011174153, 0.0009577845, - 7.981537e-5, 0.008300799, 0.0073430142, 0.007981537, 0.0046292916, - 0.0013568613, 0.00055870763, 0.0, 7.981537e-5, 7.981537e-5, 0.0, - 0.01277046, 0.02035292, 0.021470336, 0.01604289, 0.006864122, - 0.0026339074, 0.0010375999, 0.00047889224, 0.00015963074, 0.0, - 0.014047505, 0.027296858, 0.042142518, 0.037433412, 0.022188675, - 0.014127322, 0.007263199, 0.003910953, 0.0011174153, 0.00023944612, - 0.011174153, 0.028015196, 0.054114822, 0.06321377, 0.05507261, - 0.039588425, 0.031207811, 0.018996058, 0.008220984, 0.0015164921, - 0.0060659684, 0.02258775, 0.050124053, 0.07263199, 0.08492356, - 0.089951925, 0.08300799, 0.06137802, 0.026019812, 0.0075824605, - 0.0027137226, 0.010934706, 0.029771134, 0.057866145, 0.080453895, - 0.11102319, 0.13560632, 0.11501396, 0.05195981, 0.012211752, - 0.0009577845, 0.003910953, 0.011493414, 0.028972981, 0.04956535, - 0.085163005, 0.12531014, 0.11269931, 0.057387255, 0.015484182, - 0.00023944612, 0.0009577845, 0.0033522458, 0.009098953, 0.021470336, - 0.04054621, 0.06624676, 0.05986153, 0.031207811, 0.010056737, 0.0, - 7.981537e-5, 0.00047889224, 0.0015963075, 0.0043898458, 0.009498029, - 0.017719014, 0.018357536, 0.008699875, 0.0022348305, 0.0, 0.0, 0.0, - 7.981537e-5, 0.0008779691, 0.0017559382, 0.0022348305, 0.0039907685, - 0.0016761229, 0.00079815375, 0.002953169, 0.0050283684, 0.0033522458, - 0.0017559382, 0.0011174153, 7.981537e-5, 0.0, 0.0, 0.0, 0.0, - 0.006624676, 0.012531013, 0.01173286, 0.009418214, 0.0046292916, - 0.0017559382, 0.00055870763, 0.00023944612, 7.981537e-5, 0.0, - 0.008859507, 0.020432735, 0.02570055, 0.025620734, 0.018517166, - 0.008939322, 0.0051879995, 0.0023146458, 0.0015164921, 0.00015963074, - 0.008939322, 0.021789597, 0.045654394, 0.054434083, 0.049086455, - 0.035438027, 0.02538129, 0.012930091, 0.0065448605, 0.0011174153, - 0.0063054147, 0.019874029, 0.046532363, 0.071833834, 0.08013464, - 0.08651987, 0.07470719, 0.058025777, 0.023784982, 0.0065448605, - 0.001915569, 0.010775075, 0.035837103, 0.06089913, 0.09418214, - 0.11669008, 0.13839985, 0.11988269, 0.05674873, 0.01484566, - 0.00079815375, 0.0050283684, 0.016681412, 0.035118766, 0.06919993, - 0.10703242, 0.14837678, 0.13233389, 0.06848159, 0.01604289, - 0.00039907687, 0.00055870763, 0.0061457837, 0.013169536, 0.025939997, - 0.054912977, 0.08324744, 0.078937404, 0.043898456, 0.012451198, 0.0, - 0.00015963074, 0.00039907687, 0.002953169, 0.007263199, 0.013488798, - 0.027296858, 0.029451873, 0.017479567, 0.0051879995, 0.0, 0.0, - 0.00015963074, 0.00047889224, 0.00079815375, 0.0028733534, 0.0046292916, - 0.007263199, 0.0033522458, 0.0020751997, 0.0019953842, 0.003192615, - 0.002953169, 0.0012770459, 0.00047889224, 0.0, 7.981537e-5, 0.0, 0.0, - 0.0, 0.005906338, 0.0096576605, 0.009098953, 0.005906338, 0.0022348305, - 0.00071833836, 0.00023944612, 0.00015963074, 0.0, 0.0, 0.009178768, - 0.016362151, 0.02035292, 0.017000675, 0.010854891, 0.00638523, - 0.0025540919, 0.0013568613, 0.00015963074, 0.00015963074, 0.00742283, - 0.019075874, 0.03312338, 0.040147133, 0.03831138, 0.025062026, - 0.014366767, 0.009178768, 0.0031127995, 0.0008779691, 0.0037513226, - 0.016122706, 0.039827872, 0.06353304, 0.0680027, 0.061697286, - 0.051161654, 0.033522457, 0.014207137, 0.0047889226, 0.002155015, - 0.011493414, 0.033203196, 0.059781715, 0.08524282, 0.09426196, - 0.09673623, 0.0856419, 0.043020487, 0.012291567, 0.0011174153, - 0.0052678147, 0.018038275, 0.04038658, 0.06496971, 0.09106934, - 0.120840475, 0.110464476, 0.06137802, 0.017559383, 0.00023944612, - 0.0017559382, 0.0047889226, 0.016441967, 0.032245412, 0.05004424, - 0.08236947, 0.08628042, 0.05587076, 0.018916244, 0.0, 7.981537e-5, - 0.0016761229, 0.0032724303, 0.008220984, 0.018038275, 0.032005966, - 0.039907686, 0.027695935, 0.009897106, 0.0, 0.0, 0.00039907687, - 0.00039907687, 0.0011972307, 0.0030329842, 0.008220984, 0.012610829, - 0.010296184, 0.0033522458, 0.0023146458, 0.0033522458, 0.002155015, - 0.00047889224, 0.00039907687, 0.0, 0.0, 0.0, 0.0, 0.0, 0.004948553, - 0.009019137, 0.007263199, 0.0037513226, 0.0014366767, 0.0008779691, - 0.00039907687, 0.00015963074, 0.0, 0.0, 0.0075026453, 0.0138080595, - 0.013249352, 0.009976922, 0.006864122, 0.003192615, 0.0019953842, - 0.00047889224, 0.00015963074, 0.0, 0.005746707, 0.015484182, 0.02035292, - 0.027057411, 0.023864796, 0.013887875, 0.006624676, 0.0042302147, - 0.0012770459, 0.00047889224, 0.003831138, 0.012690645, 0.028414274, - 0.047809407, 0.052757964, 0.03950861, 0.025620734, 0.018038275, - 0.0060659684, 0.0026339074, 0.0022348305, 0.009976922, 0.03072892, - 0.05259833, 0.07199347, 0.069279745, 0.058265224, 0.043339748, - 0.025221659, 0.007901722, 0.00039907687, 0.0051879995, 0.01588326, - 0.037193965, 0.063772485, 0.07135494, 0.080453895, 0.08492356, - 0.051720362, 0.019075874, 0.00015963074, 0.0018357536, 0.0070237527, - 0.01724012, 0.03208578, 0.047330517, 0.080453895, 0.09490048, - 0.06608713, 0.026019812, 0.00023944612, 0.00023944612, 0.0014366767, - 0.0051879995, 0.009577845, 0.023066644, 0.04860756, 0.07199347, - 0.054035008, 0.024662951, 0.0, 0.0, 0.00023944612, 0.00055870763, - 0.002155015, 0.0055870763, 0.017639197, 0.02777575, 0.023306089, - 0.012211752, 0.0015963075, 0.0027137226, 0.0017559382, 0.0010375999, - 7.981537e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0051879995, 0.005986153, - 0.0055072606, 0.0018357536, 0.00063852296, 7.981537e-5, 0.0, 0.0, 0.0, - 0.0, 0.00638523, 0.010934706, 0.009498029, 0.0052678147, 0.0033522458, - 0.0014366767, 0.00055870763, 7.981537e-5, 0.0, 0.0, 0.0045494763, - 0.012211752, 0.011253968, 0.01484566, 0.013887875, 0.007821906, - 0.0037513226, 0.0008779691, 0.0008779691, 0.00015963074, 0.0035118763, - 0.007901722, 0.017479567, 0.028733535, 0.033841718, 0.024662951, - 0.016122706, 0.007662276, 0.0039907685, 0.0017559382, 0.0010375999, - 0.00638523, 0.020432735, 0.04397827, 0.0576267, 0.0431003, 0.03607655, - 0.030968364, 0.019474952, 0.0070237527, 0.00055870763, 0.0036715071, - 0.016761228, 0.03487932, 0.051161654, 0.059781715, 0.070077896, - 0.070955865, 0.054434083, 0.022188675, 0.00031926148, 0.00079815375, - 0.004868738, 0.019953843, 0.031926148, 0.045414947, 0.07813925, - 0.116131365, 0.09418214, 0.041823257, 0.0, 0.00023944612, 0.0015963075, - 0.0054274453, 0.010775075, 0.029930765, 0.06353304, 0.108788356, - 0.09194731, 0.042860854, 0.0, 0.0, 0.00015963074, 0.00063852296, - 0.0027137226, 0.010615445, 0.03280412, 0.057706516, 0.05156073, - 0.024343688, 0.0009577845, 0.00071833836, 0.0008779691, 0.00015963074, - 0.0, 0.0, 0.0, 7.981537e-5, 0.0, 0.0, 0.0024742766, 0.0035118763, - 0.0015164921, 0.001915569, 0.00039907687, 0.0, 7.981537e-5, 0.0, 0.0, - 0.0, 0.00431003, 0.0051081837, 0.003910953, 0.0026339074, 0.0013568613, - 0.0008779691, 0.00039907687, 0.0, 0.0, 0.0, 0.0028733534, 0.004868738, - 0.005986153, 0.0060659684, 0.0060659684, 0.003831138, 0.0012770459, - 0.00031926148, 0.00031926148, 7.981537e-5, 0.0018357536, 0.0039907685, - 0.009098953, 0.015484182, 0.01708049, 0.013329168, 0.007901722, - 0.0035916918, 0.001915569, 0.00047889224, 0.00079815375, 0.002953169, - 0.010455814, 0.025461104, 0.035837103, 0.033522457, 0.022029042, - 0.018517166, 0.012291567, 0.0051879995, 0.00031926148, 0.0023146458, - 0.009178768, 0.024423504, 0.04158381, 0.04278104, 0.048687376, - 0.0607395, 0.048926823, 0.020432735, 0.00015963074, 0.00063852296, - 0.00534763, 0.01484566, 0.026099628, 0.03950861, 0.0752659, 0.10775075, - 0.09737475, 0.04645255, 7.981537e-5, 7.981537e-5, 0.0016761229, - 0.0041503995, 0.011653044, 0.027456488, 0.06896048, 0.116291, - 0.10559574, 0.054912977, 0.0, 0.0, 0.00023944612, 0.0008779691, - 0.0022348305, 0.011573229, 0.03727378, 0.06975864, 0.06145784, - 0.03240504, 0.00031926148, 0.00031926148, 7.981537e-5, 0.00023944612, - 0.0, 7.981537e-5, 0.0, 0.0, 0.0, 0.0, 0.00071833836, 0.00047889224, - 0.00039907687, 0.00023944612, 0.00015963074, 7.981537e-5, 0.0, 0.0, 0.0, - 0.0, 0.0008779691, 0.001915569, 0.0010375999, 0.0010375999, - 0.00023944612, 7.981537e-5, 0.00015963074, 0.0, 0.0, 0.0, 0.00055870763, - 0.0013568613, 0.0016761229, 0.0018357536, 0.0015963075, 0.0016761229, - 0.00063852296, 0.00023944612, 7.981537e-5, 0.0, 0.00023944612, - 0.0012770459, 0.0033522458, 0.004948553, 0.0075026453, 0.0055072606, - 0.002953169, 0.0014366767, 0.0010375999, 0.00055870763, 0.00023944612, - 0.00055870763, 0.003910953, 0.010934706, 0.018517166, 0.013887875, - 0.0105356295, 0.008540245, 0.0075026453, 0.0022348305, 0.0, - 0.0011174153, 0.004469661, 0.012451198, 0.020751998, 0.02258775, - 0.02809501, 0.03280412, 0.027217042, 0.013089721, 0.0, 0.00063852296, - 0.0023146458, 0.0071035684, 0.012690645, 0.021789597, 0.04126455, - 0.0597019, 0.059622083, 0.026019812, 0.0, 7.981537e-5, 0.00063852296, - 0.0027137226, 0.0051081837, 0.0150052905, 0.041184735, 0.07103568, - 0.06640639, 0.03368209, 0.0, 0.0, 7.981537e-5, 0.00039907687, - 0.0023944613, 0.007821906, 0.020273104, 0.042541593, 0.04158381, + 0.02673815, + 0.035916917, + 0.025939997, + 0.011892491, + 0.0035118763, + 0.00039907687, + 0.00015963074, + 7.981537e-05, + 7.981537e-05, + 0.0, + 0.031527072, + 0.049964424, + 0.04741033, + 0.028334457, + 0.009976922, + 0.0030329842, + 0.0015963075, + 0.00031926148, + 7.981537e-05, + 0.0, + 0.02657852, + 0.04645255, + 0.056668915, + 0.03727378, + 0.018676797, + 0.009019137, + 0.0051081837, + 0.0015963075, + 0.00039907687, + 7.981537e-05, + 0.013568614, + 0.030090395, + 0.041184735, + 0.03519858, + 0.022268489, + 0.015803443, + 0.013568614, + 0.005826522, + 0.0015164921, + 0.00015963074, + 0.0033522458, + 0.012930091, + 0.01915569, + 0.022348305, + 0.02035292, + 0.02019329, + 0.018836427, + 0.010775075, + 0.0033522458, + 0.00063852296, + 0.0009577845, + 0.003192615, + 0.008300799, + 0.009019137, + 0.013089721, + 0.017798828, + 0.015803443, + 0.009897106, + 0.003910953, + 0.00063852296, + 0.00023944612, + 0.00063852296, + 0.0012770459, + 0.002953169, + 0.0051081837, + 0.006864122, + 0.009737476, + 0.0054274453, + 0.0017559382, + 7.981537e-05, + 0.0, + 7.981537e-05, + 0.0, + 0.00047889224, + 0.0010375999, + 0.001915569, + 0.0027935382, + 0.0017559382, + 0.00055870763, + 0.00023944612, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 0.00015963074, + 0.00039907687, + 0.00039907687, + 0.00039907687, + 0.00023944612, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 0.00015963074, + 7.981537e-05, + 0.0, + 0.0, + 0.026817966, + 0.03416098, + 0.025221659, + 0.011812676, + 0.003831138, + 0.0008779691, + 7.981537e-05, + 0.0, + 7.981537e-05, + 0.0, + 0.03487932, + 0.051800177, + 0.049086455, + 0.028414274, + 0.011653044, + 0.0037513226, + 0.0016761229, + 0.00079815375, + 0.00015963074, + 0.0, + 0.030329842, + 0.05156073, + 0.06664584, + 0.053077225, + 0.028414274, + 0.013648429, + 0.0075026453, + 0.003831138, + 0.0013568613, + 0.00023944612, + 0.015164921, + 0.042860854, + 0.057945963, + 0.0586643, + 0.043579195, + 0.029212426, + 0.021629967, + 0.012131937, + 0.0042302147, + 0.00055870763, + 0.0051879995, + 0.018437352, + 0.032644488, + 0.04365901, + 0.04557458, + 0.0451755, + 0.042381965, + 0.02689778, + 0.009897106, + 0.0020751997, + 0.0015164921, + 0.004868738, + 0.014526398, + 0.021310706, + 0.03176652, + 0.043419562, + 0.04764978, + 0.034959134, + 0.013728244, + 0.0023944613, + 0.00023944612, + 0.0013568613, + 0.0042302147, + 0.009577845, + 0.0138080595, + 0.023226274, + 0.031606887, + 0.023705166, + 0.009418214, + 0.0022348305, + 7.981537e-05, + 0.00023944612, + 0.00047889224, + 0.0011972307, + 0.0042302147, + 0.0105356295, + 0.012211752, + 0.008859507, + 0.00534763, + 0.00047889224, + 0.0, + 0.0, + 0.00015963074, + 0.00015963074, + 0.00063852296, + 0.0017559382, + 0.0010375999, + 0.0023146458, + 0.00071833836, + 0.00015963074, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 0.00031926148, + 0.0, + 0.00015963074, + 0.00015963074, + 0.00015963074, + 0.0, + 0.017000675, + 0.021151073, + 0.015963074, + 0.0071833837, + 0.0030329842, + 0.00039907687, + 7.981537e-05, + 7.981537e-05, + 0.0, + 0.0, + 0.024343688, + 0.034959134, + 0.032644488, + 0.026179442, + 0.009737476, + 0.0033522458, + 0.0011972307, + 0.00047889224, + 7.981537e-05, + 0.0, + 0.023066644, + 0.043579195, + 0.05834504, + 0.045814026, + 0.029292243, + 0.016282337, + 0.0084604295, + 0.0043898458, + 0.00079815375, + 0.00023944612, + 0.013329168, + 0.03815175, + 0.056668915, + 0.06496971, + 0.0524387, + 0.04006732, + 0.028174827, + 0.021470336, + 0.007263199, + 0.0012770459, + 0.008540245, + 0.022188675, + 0.047889225, + 0.06089913, + 0.063772485, + 0.06951919, + 0.065448605, + 0.048687376, + 0.017559383, + 0.003831138, + 0.0023146458, + 0.009019137, + 0.022907013, + 0.040626027, + 0.055312052, + 0.08141168, + 0.09410232, + 0.07223291, + 0.031846333, + 0.005986153, + 0.00047889224, + 0.0023146458, + 0.00862006, + 0.016681412, + 0.029930765, + 0.050124053, + 0.0758246, + 0.063612856, + 0.027376672, + 0.0067044916, + 0.0, + 0.00047889224, + 0.0022348305, + 0.0041503995, + 0.009817291, + 0.022188675, + 0.03448024, + 0.031527072, + 0.014207137, + 0.0043898458, + 0.0, + 0.00015963074, + 0.00023944612, + 0.0008779691, + 0.0024742766, + 0.0037513226, + 0.0069439374, + 0.0087796915, + 0.0051879995, + 0.0011972307, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 7.981537e-05, + 0.00071833836, + 0.0014366767, + 0.0011174153, + 0.0009577845, + 7.981537e-05, + 0.008300799, + 0.0073430142, + 0.007981537, + 0.0046292916, + 0.0013568613, + 0.00055870763, + 0.0, + 7.981537e-05, + 7.981537e-05, + 0.0, + 0.01277046, + 0.02035292, + 0.021470336, + 0.01604289, + 0.006864122, + 0.0026339074, + 0.0010375999, + 0.00047889224, + 0.00015963074, + 0.0, + 0.014047505, + 0.027296858, + 0.042142518, + 0.037433412, + 0.022188675, + 0.014127322, + 0.007263199, + 0.003910953, + 0.0011174153, + 0.00023944612, + 0.011174153, + 0.028015196, + 0.054114822, + 0.06321377, + 0.05507261, + 0.039588425, + 0.031207811, + 0.018996058, + 0.008220984, + 0.0015164921, + 0.0060659684, + 0.02258775, + 0.050124053, + 0.07263199, + 0.08492356, + 0.089951925, + 0.08300799, + 0.06137802, + 0.026019812, + 0.0075824605, + 0.0027137226, + 0.010934706, + 0.029771134, + 0.057866145, + 0.080453895, + 0.11102319, + 0.13560632, + 0.11501396, + 0.05195981, + 0.012211752, + 0.0009577845, + 0.003910953, + 0.011493414, + 0.028972981, + 0.04956535, + 0.085163005, + 0.12531014, + 0.11269931, + 0.057387255, + 0.015484182, + 0.00023944612, + 0.0009577845, + 0.0033522458, + 0.009098953, + 0.021470336, + 0.04054621, + 0.06624676, + 0.05986153, + 0.031207811, + 0.010056737, + 0.0, + 7.981537e-05, + 0.00047889224, + 0.0015963075, + 0.0043898458, + 0.009498029, + 0.017719014, + 0.018357536, + 0.008699875, + 0.0022348305, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 0.0008779691, + 0.0017559382, + 0.0022348305, + 0.0039907685, + 0.0016761229, + 0.00079815375, + 0.002953169, + 0.0050283684, + 0.0033522458, + 0.0017559382, + 0.0011174153, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006624676, + 0.012531013, + 0.01173286, + 0.009418214, + 0.0046292916, + 0.0017559382, + 0.00055870763, + 0.00023944612, + 7.981537e-05, + 0.0, + 0.008859507, + 0.020432735, + 0.02570055, + 0.025620734, + 0.018517166, + 0.008939322, + 0.0051879995, + 0.0023146458, + 0.0015164921, + 0.00015963074, + 0.008939322, + 0.021789597, + 0.045654394, + 0.054434083, + 0.049086455, + 0.035438027, + 0.02538129, + 0.012930091, + 0.0065448605, + 0.0011174153, + 0.0063054147, + 0.019874029, + 0.046532363, + 0.071833834, + 0.08013464, + 0.08651987, + 0.07470719, + 0.058025777, + 0.023784982, + 0.0065448605, + 0.001915569, + 0.010775075, + 0.035837103, + 0.06089913, + 0.09418214, + 0.11669008, + 0.13839985, + 0.11988269, + 0.05674873, + 0.01484566, + 0.00079815375, + 0.0050283684, + 0.016681412, + 0.035118766, + 0.06919993, + 0.10703242, + 0.14837678, + 0.13233389, + 0.06848159, + 0.01604289, + 0.00039907687, + 0.00055870763, + 0.0061457837, + 0.013169536, + 0.025939997, + 0.054912977, + 0.08324744, + 0.078937404, + 0.043898456, + 0.012451198, + 0.0, + 0.00015963074, + 0.00039907687, + 0.002953169, + 0.007263199, + 0.013488798, + 0.027296858, + 0.029451873, + 0.017479567, + 0.0051879995, + 0.0, + 0.0, + 0.00015963074, + 0.00047889224, + 0.00079815375, + 0.0028733534, + 0.0046292916, + 0.007263199, + 0.0033522458, + 0.0020751997, + 0.0019953842, + 0.003192615, + 0.002953169, + 0.0012770459, + 0.00047889224, + 0.0, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.005906338, + 0.0096576605, + 0.009098953, + 0.005906338, + 0.0022348305, + 0.00071833836, + 0.00023944612, + 0.00015963074, + 0.0, + 0.0, + 0.009178768, + 0.016362151, + 0.02035292, + 0.017000675, + 0.010854891, + 0.00638523, + 0.0025540919, + 0.0013568613, + 0.00015963074, + 0.00015963074, + 0.00742283, + 0.019075874, + 0.03312338, + 0.040147133, + 0.03831138, + 0.025062026, + 0.014366767, + 0.009178768, + 0.0031127995, + 0.0008779691, + 0.0037513226, + 0.016122706, + 0.039827872, + 0.06353304, + 0.0680027, + 0.061697286, + 0.051161654, + 0.033522457, + 0.014207137, + 0.0047889226, + 0.002155015, + 0.011493414, + 0.033203196, + 0.059781715, + 0.08524282, + 0.09426196, + 0.09673623, + 0.0856419, + 0.043020487, + 0.012291567, + 0.0011174153, + 0.0052678147, + 0.018038275, + 0.04038658, + 0.06496971, + 0.09106934, + 0.120840475, + 0.110464476, + 0.06137802, + 0.017559383, + 0.00023944612, + 0.0017559382, + 0.0047889226, + 0.016441967, + 0.032245412, + 0.05004424, + 0.08236947, + 0.08628042, + 0.05587076, + 0.018916244, + 0.0, + 7.981537e-05, + 0.0016761229, + 0.0032724303, + 0.008220984, + 0.018038275, + 0.032005966, + 0.039907686, + 0.027695935, + 0.009897106, + 0.0, + 0.0, + 0.00039907687, + 0.00039907687, + 0.0011972307, + 0.0030329842, + 0.008220984, + 0.012610829, + 0.010296184, + 0.0033522458, + 0.0023146458, + 0.0033522458, + 0.002155015, + 0.00047889224, + 0.00039907687, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004948553, + 0.009019137, + 0.007263199, + 0.0037513226, + 0.0014366767, + 0.0008779691, + 0.00039907687, + 0.00015963074, + 0.0, + 0.0, + 0.0075026453, + 0.0138080595, + 0.013249352, + 0.009976922, + 0.006864122, + 0.003192615, + 0.0019953842, + 0.00047889224, + 0.00015963074, + 0.0, + 0.005746707, + 0.015484182, + 0.02035292, + 0.027057411, + 0.023864796, + 0.013887875, + 0.006624676, + 0.0042302147, + 0.0012770459, + 0.00047889224, + 0.003831138, + 0.012690645, + 0.028414274, + 0.047809407, + 0.052757964, + 0.03950861, + 0.025620734, + 0.018038275, + 0.0060659684, + 0.0026339074, + 0.0022348305, + 0.009976922, + 0.03072892, + 0.05259833, + 0.07199347, + 0.069279745, + 0.058265224, + 0.043339748, + 0.025221659, + 0.007901722, + 0.00039907687, + 0.0051879995, + 0.01588326, + 0.037193965, + 0.063772485, + 0.07135494, + 0.080453895, + 0.08492356, + 0.051720362, + 0.019075874, + 0.00015963074, + 0.0018357536, + 0.0070237527, + 0.01724012, + 0.03208578, + 0.047330517, + 0.080453895, + 0.09490048, + 0.06608713, + 0.026019812, + 0.00023944612, + 0.00023944612, + 0.0014366767, + 0.0051879995, + 0.009577845, + 0.023066644, + 0.04860756, + 0.07199347, + 0.054035008, + 0.024662951, + 0.0, + 0.0, + 0.00023944612, + 0.00055870763, + 0.002155015, + 0.0055870763, + 0.017639197, + 0.02777575, + 0.023306089, + 0.012211752, + 0.0015963075, + 0.0027137226, + 0.0017559382, + 0.0010375999, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0051879995, + 0.005986153, + 0.0055072606, + 0.0018357536, + 0.00063852296, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00638523, + 0.010934706, + 0.009498029, + 0.0052678147, + 0.0033522458, + 0.0014366767, + 0.00055870763, + 7.981537e-05, + 0.0, + 0.0, + 0.0045494763, + 0.012211752, + 0.011253968, + 0.01484566, + 0.013887875, + 0.007821906, + 0.0037513226, + 0.0008779691, + 0.0008779691, + 0.00015963074, + 0.0035118763, + 0.007901722, + 0.017479567, + 0.028733535, + 0.033841718, + 0.024662951, + 0.016122706, + 0.007662276, + 0.0039907685, + 0.0017559382, + 0.0010375999, + 0.00638523, + 0.020432735, + 0.04397827, + 0.0576267, + 0.0431003, + 0.03607655, + 0.030968364, + 0.019474952, + 0.0070237527, + 0.00055870763, + 0.0036715071, + 0.016761228, + 0.03487932, + 0.051161654, + 0.059781715, + 0.070077896, + 0.070955865, + 0.054434083, + 0.022188675, + 0.00031926148, + 0.00079815375, + 0.004868738, + 0.019953843, + 0.031926148, + 0.045414947, + 0.07813925, + 0.116131365, + 0.09418214, + 0.041823257, + 0.0, + 0.00023944612, + 0.0015963075, + 0.0054274453, + 0.010775075, + 0.029930765, + 0.06353304, + 0.108788356, + 0.09194731, + 0.042860854, + 0.0, + 0.0, + 0.00015963074, + 0.00063852296, + 0.0027137226, + 0.010615445, + 0.03280412, + 0.057706516, + 0.05156073, + 0.024343688, + 0.0009577845, + 0.00071833836, + 0.0008779691, + 0.00015963074, + 0.0, + 0.0, + 0.0, + 7.981537e-05, + 0.0, + 0.0, + 0.0024742766, + 0.0035118763, + 0.0015164921, + 0.001915569, + 0.00039907687, + 0.0, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.00431003, + 0.0051081837, + 0.003910953, + 0.0026339074, + 0.0013568613, + 0.0008779691, + 0.00039907687, + 0.0, + 0.0, + 0.0, + 0.0028733534, + 0.004868738, + 0.005986153, + 0.0060659684, + 0.0060659684, + 0.003831138, + 0.0012770459, + 0.00031926148, + 0.00031926148, + 7.981537e-05, + 0.0018357536, + 0.0039907685, + 0.009098953, + 0.015484182, + 0.01708049, + 0.013329168, + 0.007901722, + 0.0035916918, + 0.001915569, + 0.00047889224, + 0.00079815375, + 0.002953169, + 0.010455814, + 0.025461104, + 0.035837103, + 0.033522457, + 0.022029042, + 0.018517166, + 0.012291567, + 0.0051879995, + 0.00031926148, + 0.0023146458, + 0.009178768, + 0.024423504, + 0.04158381, + 0.04278104, + 0.048687376, + 0.0607395, + 0.048926823, + 0.020432735, + 0.00015963074, + 0.00063852296, + 0.00534763, + 0.01484566, + 0.026099628, + 0.03950861, + 0.0752659, + 0.10775075, + 0.09737475, + 0.04645255, + 7.981537e-05, + 7.981537e-05, + 0.0016761229, + 0.0041503995, + 0.011653044, + 0.027456488, + 0.06896048, + 0.116291, + 0.10559574, + 0.054912977, + 0.0, + 0.0, + 0.00023944612, + 0.0008779691, + 0.0022348305, + 0.011573229, + 0.03727378, + 0.06975864, + 0.06145784, + 0.03240504, + 0.00031926148, + 0.00031926148, + 7.981537e-05, + 0.00023944612, + 0.0, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00071833836, + 0.00047889224, + 0.00039907687, + 0.00023944612, + 0.00015963074, + 7.981537e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0008779691, + 0.001915569, + 0.0010375999, + 0.0010375999, + 0.00023944612, + 7.981537e-05, + 0.00015963074, + 0.0, + 0.0, + 0.0, + 0.00055870763, + 0.0013568613, + 0.0016761229, + 0.0018357536, + 0.0015963075, + 0.0016761229, + 0.00063852296, + 0.00023944612, + 7.981537e-05, + 0.0, + 0.00023944612, + 0.0012770459, + 0.0033522458, + 0.004948553, + 0.0075026453, + 0.0055072606, + 0.002953169, + 0.0014366767, + 0.0010375999, + 0.00055870763, + 0.00023944612, + 0.00055870763, + 0.003910953, + 0.010934706, + 0.018517166, + 0.013887875, + 0.0105356295, + 0.008540245, + 0.0075026453, + 0.0022348305, + 0.0, + 0.0011174153, + 0.004469661, + 0.012451198, + 0.020751998, + 0.02258775, + 0.02809501, + 0.03280412, + 0.027217042, + 0.013089721, + 0.0, + 0.00063852296, + 0.0023146458, + 0.0071035684, + 0.012690645, + 0.021789597, + 0.04126455, + 0.0597019, + 0.059622083, + 0.026019812, + 0.0, + 7.981537e-05, + 0.00063852296, + 0.0027137226, + 0.0051081837, + 0.0150052905, + 0.041184735, + 0.07103568, + 0.06640639, + 0.03368209, + 0.0, + 0.0, + 7.981537e-05, + 0.00039907687, + 0.0023944613, + 0.007821906, + 0.020273104, + 0.042541593, + 0.04158381, 0.02035292 ] }, diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-red.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-red.json index ef93f3e78..b8154ef19 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-red.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.even-less-red.json @@ -190,21 +190,38 @@ "id": "aseqb4qe", "source": { "alternativeTitles": [], - "contributors.agent.label": ["Mead Johnson International"], + "contributors.agent.label": [ + "Mead Johnson International" + ], "description": "

Two-sided advertising insert for Mead Johnson International's Olac powdered baby food rich in proteins with Dextro-Malto.

", - "genres.concepts.label": ["Ephemera"], + "genres.concepts.label": [ + "Ephemera" + ], "id": "bxq7yamk", "sourceIdentifier.value": "b28887505", - "identifiers.value": ["b28887505", "2888750", "digephemera"], + "identifiers.value": [ + "b28887505", + "2888750", + "digephemera" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["r6acd7yw"], - "items.identifiers.value": ["i15820257", "1582025"], - "languages.label": ["Spanish"], + "items.id": [ + "r6acd7yw" + ], + "items.identifiers.value": [ + "i15820257", + "1582025" + ], + "languages.label": [ + "Spanish" + ], "notes.contents": [], "partOf.title": [], "physicalDescription": "1 sheet : colour ; 27 x 18 cm", - "production.label": ["[1957?]"], + "production.label": [ + "[1957?]" + ], "subjects.concepts.label": [ "Infant Formula", "Bottle Feeding", @@ -230,1105 +247,5128 @@ ] }, "filterableValues": { - "locations.license.id": ["inc", "inc"], - "source.contributors.agent.label": ["Mead Johnson International"], - "source.genres.label": ["Ephemera"], - "source.genres.concepts.id": ["ucmbnwkq"], - "source.subjects.label": ["Infant Formula", "Bottle Feeding", "Mexico"], - "source.production.dates.range.from": [-410227200000] - }, - "vectorValues": { - "features1": [ - -0.29201847, -0.73207504, -0.68421793, 0.60516226, 1.1415561, - -1.2224683, -0.53627616, 0.35134506, 1.02271, 0.8817997, -0.62254095, - 1.3360912, -0.60999787, -1.2354033, -0.3080395, 1.2605518, -1.468609, - -0.6087073, -1.0646695, 0.241473, -1.7037838, -2.1664073, -1.3430058, - 0.10780058, -0.8223007, -0.49144197, -0.2928957, 1.5861336, -0.3975152, - 0.30104184, -0.85239834, 1.0013019, -0.4554894, -1.5935498, 1.2539853, - -1.4201667, 1.9414386, 0.686978, -1.7613623, -0.68146795, -0.56430876, - -1.3701333, -0.10700449, -0.19570775, -0.13015428, -0.61207396, - 0.75445956, 1.5428009, -0.31191742, -0.019557677, 1.431485, 0.95474976, - -0.78365827, 0.76140916, 0.5202621, -0.68548054, 1.8700721, -1.2549685, - 0.10934951, -1.2272764, 0.708904, -0.24449357, -1.12868, 0.4610805, - 1.2921194, -1.1822385, -2.4777586, 0.78581244, -2.4506779, 0.062897205, - -0.14760324, -1.2909048, -0.8488919, 1.1086603, 1.9815565, -0.352817, - -0.8142595, -1.5038813, -1.3504798, -1.2232869, 0.9358054, 0.075832054, - 0.13730356, 0.25254205, 0.9374982, -0.24815436, -1.3159847, -0.945568, - 2.5760293, -0.1494609, -0.9051889, 0.35713592, -0.09269101, 1.3657333, - -0.43317422, -0.9776121, -0.5865247, -0.4606977, -0.7916032, - 0.121193744, -0.44743517, 0.6629993, 0.44779694, 0.06195738, 0.5840555, - 0.76707256, -0.6869116, -1.5239445, -0.50696516, -1.1717554, 0.28572482, - 0.5840991, 0.47704586, -0.3718072, -0.901188, 0.6976678, -0.37688494, - -3.438989, 0.090039164, -1.0362201, 0.42756125, 0.06125901, 0.5772751, - -0.41003308, -0.58571047, -0.5114175, -0.94245386, -0.018995546, - -1.7924517, 0.31121105, -0.1970897, -0.39747918, 0.3073439, 2.0667145, - -0.18076813, 0.53017616, 0.23518866, -0.5026335, -2.1005375, -0.6637077, - -0.9784229, 0.6304138, -0.29624256, 0.74522424, -0.8204155, -1.3195297, - -1.5346631, 2.3128114, -1.5633782, 0.48109785, 0.023595884, 0.2845118, - -0.77009296, -0.7419117, 0.03915175, 1.6794268, 0.79654133, 1.3097081, - -0.7162446, -1.2045206, -0.088168256, 0.019844156, -0.2895292, - 0.19994074, 0.051475435, -0.8142615, 0.9678299, -0.5261242, 0.1510717, - 0.9045042, -1.283138, -1.6195194, -0.059571467, 0.22084895, -3.0470476, - 0.69157654, -1.4377574, -0.28105804, -1.1543728, -1.5350947, 0.562404, - -0.64188707, -1.0634762, 2.0937579, 0.37616593, -1.9960722, - -0.025071975, 1.396211, -0.7287444, -1.5537133, 1.7281225, -0.49363226, - 0.21174906, -0.6877612, -0.1886749, 0.56006575, 0.24700423, 1.7711964, - -0.4815282, -0.33148262, -0.37079388, -0.073938794, 0.032067016, - -0.47257507, -1.2365243, 0.9547822, -0.14403075, -0.22653452, 0.7674074, - -0.1793373, -0.45562956, -0.043313924, -1.2772226, -0.10877851, - -1.0028176, 1.201492, 0.59460056, 0.34731627, -0.32932624, 0.31945175, - -1.9818268, -0.17960122, -0.7356939, -1.2884731, -0.20873027, - -0.47643676, 1.0166969, 0.8884073, -0.080066726, -2.0803175, 1.1223716, - 1.0245041, -1.2684146, -1.4505159, -1.4545311, -1.0002482, -2.0262103, - -0.39190117, -0.07800731, 0.21357197, 1.7383614, -0.78314286, - -0.6813102, -1.5151417, -0.029808627, -0.12639746, 1.761415, -1.2758056, - 0.5523484, -0.31181768, -1.4245334, 0.20747489, -0.4326936, 0.12656215, - -1.0578401, 0.70357746, 0.79044574, -0.19162612, -1.099574, -1.3434627, - -0.884004, -0.21028957, -2.4501472, 0.8170453, -1.238663, 0.42881155, - -1.2315288, -1.2205954, -0.7435675, -0.47149327, 1.046567, -1.9469697, - 0.26375607, -1.6033086, 0.853576, 1.2627635, -1.5929927, -1.5763619, - -1.0870389, -0.45224795, 0.040865816, -0.89231, -1.0895705, -1.9347992, - -0.645747, -0.9488452, 0.26216996, 0.5764541, -1.5276208, -0.3701966, - -1.5111694, 0.84381187, 1.282954, -1.2984614, -0.7123406, 0.16357873, - -0.9026355, 0.5316608, -0.19957565, -0.3818219, 0.52882135, -0.10022759, - 0.45165056, -0.8552201, -1.4104171, -1.6527867, 1.2638757, 0.5026941, - -0.16118924, 1.1697009, 0.5441526, 0.023527473, -0.8520855, 0.68329835, - 0.10993563, -0.5967789, -1.206178, -0.9916072, 1.5011764, -0.09766227, - 0.016568072, 1.1101135, 0.0919568, 1.4601338, -0.46133888, -1.0421358, - -0.06779387, -0.6688845, -0.29382882, -1.761319, 0.028336987, - -0.4342063, -0.3298101, -0.5217601, -0.7813832, 0.37764743, 0.2147732, - -1.0682213, 0.1351718, -1.3386879, 0.3042312, -1.5007293, -1.32783, - 0.16635439, -1.3352093, -1.6816667, -0.48985875, -0.51930463, 1.1362722, - -1.2797211, -0.77749145, 2.1982121, 0.33572283, -2.1786196, 0.473387, - -1.9210346, -0.4678054, -0.46595412, -1.846734, -0.06288838, -0.4102936, - 0.4259565, -0.07740649, -0.99228626, -2.1674397, -0.5143984, - -0.49538338, -0.32459986, -0.9136347, -0.29556197, 0.8166546, 2.019433, - -1.5000414, -0.24731478, -0.5548027, -1.4801598, -0.56172794, - -0.9720091, -1.5227431, -0.20961958, -1.1504451, -0.7329062, 0.7681865, - 0.076508746, -0.12362895, -1.0683041, -0.56202245, 0.28915882, - 1.1887457, -0.70405096, -0.5170087, 0.50871545, -0.60936296, -1.1094084, - -1.4985418, -1.9037583, -0.035716206, -0.9090244, -0.33730736, - -1.0024151, -0.35290056, -0.814956, -0.78711736, 0.8312797, 0.81582713, - -1.744032, -0.3380939, -1.7588847, -1.1269794, 0.215655, -0.1440773, - 0.09710562, -0.14028242, 0.04727655, -0.12337634, -1.4683232, - -0.120571226, -1.8984689, 0.8132777, 0.16102003, -0.41236126, -1.49673, - 0.4398453, -0.44635627, -1.0015671, -0.50892675, -1.1547172, - -0.046271443, -0.56583804, 0.61626107, 0.8453868, 0.09614934, - 0.16879916, -0.6193219, 0.63698626, 0.25886405, -0.4222566, -0.28707528, - -1.7563653, 0.5552158, -1.878563, 0.32536107, -1.0431043, -0.15042932, - -0.3101396, 1.3056422, -0.015833445, -0.74131393, 0.99069375, - -0.2648462, -0.99717563, -0.59829515, -0.52778476, -2.0728016, - -1.6350896, -1.6564233, 0.88212484, -0.7865118, -0.6089802, -0.13344048, - -1.1076363, -1.4347749, -0.20616868, 0.13507098, 0.8932099, 0.995857, - -2.0534413, -0.6192365, -0.15277787, -0.40332577, -1.9911408, - -0.99413097, -0.6388123, -0.4475701, 1.0847392, -0.8864273, -0.32250547, - 0.2192339, -1.9023958, 0.86630803, -1.0564057, -0.79305124, 0.31236243, - 1.6854578, -0.13019209, -0.02591329, -0.06321387, 0.7607323, -0.5834035, - 0.30020696, -0.8564973, -0.07231556, -0.7220438, -0.63580406, - -0.5421073, 0.7319728, 1.3687714, 0.2768492, -0.7412691, 0.22766271, - 1.8289235, -0.23268792, 0.39188346, 0.15481606, 0.69751567, -1.1688813, - 0.60206854, -0.35322282, -1.5936924, 0.7369355, -2.2089295, -0.4867334, - 0.14145453, 0.15004677, -0.8034358, -1.0693035, -0.34815747, - -0.86384636, 0.33635473, -2.089765, 1.288682, 0.1148904, 0.6118587, - -1.3408097, -1.0183902, 0.81363875, 1.3366735, -0.716214, 0.8793845, - -0.89137596, -0.19536842, -0.3955193, -1.3098128, 0.08259397, 1.9326501, - -0.5360061, -1.7313539, -0.3573004, -0.90531015, -1.076958, -0.8178866, - 0.02891554, -0.44296578, -1.1232675, -0.82362735, -0.011797626, - -0.105463356, 0.3074528, -0.11247659, 0.37545922, -0.7743899, 0.6120558, - 0.55463, -0.006184675, 0.10244587, -1.5583413, -0.083445944, -1.1964186, - -0.78438693, -1.8852787, -1.5732366, -0.8826102, -0.8550664, - -0.07930071, -0.16626899, -0.9751521, 1.040775, 0.19654056, -2.1862075, - -1.1295154, -0.22817452, -0.27553433, -1.2926726, -1.0559558, - -1.3758322, -2.340435, 0.9061789, 1.0474721, 2.5304942, -0.066149816, - -1.0065143, -0.38042948, 0.22651125, -0.32325104, -3.2190278, - -0.56073004, 0.17149371, -1.9786935, 0.68639857, 1.3107238, -0.63790584, - -0.65524024, -0.40682152, -1.3049724, -1.4555349, 0.37669453, - -0.24560446, 1.5514387, -1.0224799, -0.28481945, -0.5719186, 0.18042861, - -0.44234014, -1.203731, 1.5962439, -0.059104398, -1.5403452, -1.3634986, - 0.23523846, -0.49812457, -0.3280497, -0.085388444, 1.2446178, -0.610636, - -0.8393289, -0.0057791434, 0.7784578, 0.22742163, 0.14611474, - -0.5097071, -1.979082, -0.045211248, -0.82472926, 0.26936957, - -0.48693627, -0.36096624, 0.5932769, 0.3062527, -0.658395, 1.0336752, - 0.20123081, 0.91415024, -0.40822658, 0.20493737, -0.3094318, -0.7499215, - 0.4059527, -0.41362616, -0.41414133, -0.36864594, -2.635665, -0.2749859, - -1.342865, -0.8519218, 0.31534883, 1.13819, -1.1117984, 0.45296782, - -0.19162568, 0.5579477, -0.14369495, -0.33735582, -0.53815705, - -0.03271942, -0.5074342, 0.4473995, -1.6383275, -0.5443487, -0.2973098, - -0.18399361, -0.631948, -1.8280714, -0.7562458, 0.16886905, -0.9700416, - -0.36327407, -0.42178202, -0.19539578, 1.5790658, 0.97173095, 0.9897016, - 0.93049216, -1.5026472, 1.4064547, -1.971756, -0.21129882, -1.7598493, - 1.1021942, -2.439806, -0.51300246, -0.9039051, -0.15951785, 0.24538329, - -1.3605088, 0.29756588, 0.8564681, 0.33133382, 0.45916465, -1.1919888, - -1.5800526, -0.5503489, 1.0626615, -0.5220958, -1.3767475, -1.7742294, - 1.8210155, 0.98974836, -0.71770465, 2.7257733, 0.46118024, -1.56914, - 0.8734026, 0.12491959, 0.13167489, 1.4504526, -0.072336316, -0.6128701, - 0.36920965, -0.10687957, 0.102784246, 0.03703423, 1.9679732, - -0.46955436, -0.24236803, -1.2031381, -0.34404173, -0.5322056, - -0.40159607, -1.303603, -0.9601348, -0.27872705, -0.96331275, - 0.23018846, 1.2179514, 1.2219191, -0.49250847, -1.8978732, -0.8980471, - -1.2465916, 0.21958983, 0.502834, 0.27236223, 0.043762248, -0.75302553, - 1.0854511, 0.07843922, 0.2899227, -0.11125626, 1.8453406, -1.7559028, - -1.5307335, 0.51696306, 0.032555748, 0.08946569, -0.60091436, - -1.4042139, -1.417094, -0.94038796, -0.89842725, -0.79569507, 3.291016, - -1.1110717, 0.4120392, 1.108168, 1.1926743, -0.50812197, -1.183166, - 1.4260585, 1.0090691, 0.20081684, 0.6184239, -1.5471336, -1.127602, - 1.5866508, -0.43804547, 0.45848098, 1.0753407, -0.11718635, -0.03599278, - 0.11556096, 0.07035855, -0.29007453, 0.322202, -1.7599663, -1.9806542, - -0.3659561, -0.64024377, -0.12429017, -1.3630977, 2.5371263, -0.4276892, - -0.01198506, 1.7784251, 0.15936571, -0.7894002, -0.6001211, -1.3855908, - 1.1431109, -0.16785319, -0.43096298, -0.6697596, 1.1135252, 0.06406461, - -2.668084, 0.015306456, -1.2749236, -0.8710353, -1.1716717, 0.012297984, - -2.2414215, 2.3874683, -0.92339927, 0.13451123, -0.54903847, - -0.83054256, 0.38401002, -0.90864956, -1.0067569, 0.27793348, - 0.11487109, 0.19019291, 0.9635454, -1.3685488, -0.8979416, -0.5732271, - -0.35701856, -1.2002481, 1.2925897, -0.8930817, 0.25894323, 0.74181205, - 0.2224227, 0.7242496, -1.3187081, -1.4590466, 0.11234125, -0.92414707, - -0.58583295, -0.20910709, -1.1049459, -0.9528187, -1.6618241, - -2.4645894, 0.73208153, 1.0038748, 0.35449383, -0.038621303, 0.5287817, - -0.10065137, -1.1483164, -1.9833621, -0.80198985, 1.4388243, - -0.075003825, 0.4665004, -0.89731103, 0.048897363, -1.9641854, - -0.43619424, -1.0604546, -0.38506484, 0.25326186, -0.032401517, - -1.2206544, -0.8830272, 0.5764023, -0.8748706, -0.8754905, 0.03712144, - -0.5062586, -0.8365791, -1.3535987, -2.79637, 1.0897446, 0.42827508, - 1.2944252, -0.8421393, -1.9156096, -2.006718, 0.009037517, -1.2806617, - 0.43871957, -0.5587625, -1.939119, -0.020069614, -2.5467677, -0.6854032, - -1.2979081, -1.9089183, 0.10766242, -0.94813347, -0.7428859, 1.0087138, - -1.3762552, 0.14334351, -1.1040151, -0.8343329, 2.47286, 0.8856385, - -1.0353683, -0.36152574, -0.91062695, -0.33377278, -0.4921278, - 0.35543093, 1.2331046, -0.511659, 0.98662406, -1.3159914, -0.9605531, - 0.031411313, -1.1556076, 0.34319988, -1.3231713, -0.25156504, - -0.20782416, -0.17287058, -1.2151196, 1.0366888, -0.9875008, - -0.30101913, 0.23126693, -1.2675443, 0.54292244, -0.744871, 0.06036852, - -0.84039164, -0.33797196, 0.92716205, -0.49924397, 0.5738491, 1.532579, - 0.08906503, -0.85392284, -0.23575558, -0.36567798, -0.13994643, - -0.65291387, -1.5937048, 1.197542, -0.46861842, -0.89802897, -0.5101865, - 1.2888464, 0.38729537, 1.5086489, -0.25346175, -0.9615252, -1.2300148, - 1.809736, -0.22862777, -0.41483858, -0.56868356, 0.5535639, -2.1116645, - -0.012244858, -0.12821051, 0.94370747, -0.98992723, -0.66845727, - -1.620595, -0.8577794, -1.5933633, -0.845752, -1.7084054, 0.22833386, - 0.85534316, 0.5715902, -0.963394, -1.8183542, -0.6380395, -0.90100294, - 0.71583223, -1.0299186, -0.097381085, -1.0691143, -1.4310275, 1.6590203, - 1.3706095, 0.20837331, 0.35930246, -1.5046098, -0.4077806, -0.1419276, - -1.9123051, 0.3194933, -0.97263366, 0.22812386, -0.9250991, -0.4998721, - 0.056732982, -1.138314, 1.8834733, -1.0250798, -1.284239, 0.1543794, - -0.076519, -0.67813843, -0.68854004, -0.7325962, -0.46408844, - -1.3209873, -1.4822309, -1.9178056, 1.6591612, 1.0556419, 1.050736, - 1.4306482, -0.99719054, 0.043536186, -1.5798626, 0.039995305, 0.2701657, - -0.5739526, 0.39476636, -0.052666556, -0.28409576, -1.7875166, - -1.5555626, 0.16946653, 0.051548243, -1.2332308, 0.34562925, -2.2656288, - -0.69002146, 0.40577814, 1.0103756, 0.5810884, 1.4237342, -0.81939876, - -0.87567574, 0.018582948, -1.2537487, 0.68914694, -0.2858028, - -1.8969375, -0.48287892, -0.8533544, 0.04405122, 1.8158556, 0.8623428, - -0.65724903, -0.31746733, -0.22465664, -0.90232587, -1.0811653, - -0.38062868, -1.0544724, 0.1421671, -0.99912107, 0.058209427, - -0.92739487, -1.376472, -1.0620372, -0.91970783, -0.1410233, - -0.39310667, -0.5440476, -0.6658257, -0.6818127, 0.0105835125, - -1.6304474, -1.8933958, 0.35286838, -0.17451034, 0.029008392, - -0.8618724, -1.2040827, -1.1358272, 1.0647324, -0.1427454, -0.98972523, - -0.5585347, -2.2733023, -0.40465993, -0.11622117, 0.061231494, 0.628143, - -1.7134342, -0.4643656, -0.60782313, -0.7296051, -1.1076428, 0.25357032, - -0.9068484, -1.5582744, -0.15502867, -0.84666675, -0.46100467, - 0.117298365, -1.2013558, -1.2740675, 0.02466651, -0.6627418, 0.09149103, - 0.015989423, -2.4919956, -0.004291132, 0.019000199, -0.6806408, - -0.9375193, 1.0935782, 0.19546519, -0.50594205, 0.50262374, -0.26665834, - -1.1362739, -1.1771728, -0.23928343, 1.591936, -0.35120273, 0.495211, - -0.35883495, -0.1384746, -1.0155507, -1.0721962, -1.469804, -1.7599647, - -0.74213064, -0.19511127, 0.6734335, -0.8032921, 1.0950766, -1.1667907, - 0.6190308, -0.26721275, -1.0608866, 0.9753646, -0.7384669, -0.6350225, - 1.0059249, -0.503741, 0.43814117, -0.8546616, 1.1984098, 0.19310388, - -0.049277708, 0.85841155, 0.5450452, -0.30134973, -0.086035594, - 0.6087979, -0.46196228, -0.5898839, -1.1885496, 0.978003, -0.40673596, - -0.15869442, -0.7685712, -0.25448486, 1.2146547, -0.84572667, 1.8731701, - -0.27635708, -1.1846002, -1.4294538, 0.92426115, -0.74825937, - -0.80095804, 0.8691228, -0.07764101, -0.61174715, -1.1610113, - -1.3233875, -1.1644917, -0.38803792, 0.44437918, -0.76872617, -1.368126, - -0.23147869, -0.569672, -2.5425255, -1.1557602, 0.09041391, -1.7494744, - -0.1488455, 0.45781898, -1.6638834, -1.8893054, -0.32314602, 1.1819515, - 1.1639575, -2.4787052, 2.78599, -0.7346531, -1.7578732, -0.6087149, - 0.19446337, -0.48303735, -1.5974619, 1.0820029, 0.023884714, -1.7291002, - -1.5099853, 0.057952203, 0.27454978, -0.61622393, -0.27682585, - 0.24646233, -1.0301131, 0.45837831, 0.29139948, 0.09390473, -0.68467456, - -2.3886487, -2.342945, -2.5722213, -1.1541605, -1.4876456, -1.9013848, - -0.6985309, -1.0566515, -0.55072784, -0.26118338, -0.8420895, - -0.7091296, 0.6367148, -0.28536242, -0.4684157, -0.046343125, - -0.5645456, 0.36143678, -1.0195199, 1.0564407, 2.011157, -0.3231484, - 1.5205376, -0.2599404, -1.6635479, -0.32557526, 0.13179725, -0.6915314, - 0.7535047, 0.38442516, -0.6756153, -0.44454792, 0.0089873895, - 0.27071998, -1.431948, -0.18958211, -1.194598, -1.7188883, -0.643963, - -0.9839452, -1.4145335, -1.9724617, 0.271115, -0.4560078, 0.3298892, - 1.3393188, -0.30783296, 0.48375005, -0.43441123, -1.6469729, -0.1091021, - 1.4084435, -0.73976314, -0.21280351, -1.1576293, 0.6133345, 0.40403306, - -1.1761152, 0.45992506, 1.7931198, -0.13471082, -0.7751474, 0.5631535, - -0.47050828, -0.020049118, 0.5355498, -0.58170563, -1.637643, - -0.14059201, 0.8751909, 0.4290702, -1.3853427, 0.73894566, -0.5564674, - -0.872048, -0.27579972, -0.29595587, -1.0524523, -0.78179264, - 0.16397083, -0.7530725, 0.39606863, -0.06698427, 1.2191993, -0.75522804, - -0.05263364, -0.15464196, -1.4636817, -1.5203644, -1.344301, - -0.20636192, 0.08775033, -1.9481103, -0.99937916, 1.8684275, - -0.033254154, 1.7091349, 2.2341454, -0.43628097, -0.44419754, - -1.1358817, 0.80783594, 0.31094885, -0.89486295, 0.22316578, -1.144137, - 0.15955375, -0.2686693, 1.7072928, -0.9628997, -0.84895706, -0.6369834, - -0.376578, 0.39552033, 0.3878944, 1.4277431, -0.21421558, -0.032910727, - -0.3639649, -0.6231834, 0.94699574, -0.5587957, -0.35102224, -0.5664706, - 0.93108404, -0.34929156, 0.56663895, -0.6668445, -0.8309252, - -0.65665007, 0.8415673, -0.7870019, -0.7054226, 0.3308346, -0.14093396, - 0.85045046, 0.6153557, -0.89662004, -0.24623543, -1.6652325, 1.0839044, - -1.2904282, -0.10398944, -2.0355637, 1.0778736, -0.5630392, -1.6662073, - -1.3113502, -0.51775455, -1.3531599, 0.90104693, 2.3962712, -1.2438248, - 0.014568891, -0.55947495, -0.37745506, -0.5461659, -0.9381863, - -2.8010855, 0.3902498, -0.031317025, -1.355813, 1.0084933, -2.6711135, - 0.4175274, 0.16999903, 1.7841308, -0.68345547, -0.16711669, - -0.013667844, 1.9342554, 0.60208124, -0.4333924, -1.5129513, - -0.37168983, -0.0681093, -1.1765027, 0.4474343, -1.3015938, -2.0837874, - 0.64066166, -1.77009, 1.0253016, 0.20170635, 1.4972818, 0.24247521, - 0.54097766, -0.5451522, 0.58224434, -0.26019984, 0.7869496, -1.5521088, - -0.39142963, -2.849933, -0.7293452, 0.76481205, -0.84703434, -1.33511, - -0.39946714, -0.7360558, -1.6328012, -1.1034567, -0.4257778, 0.19414282, - -0.08371015, -1.2762098, -0.5153599, -0.5769012, -0.21365935, - -0.24776624, -0.996503, -0.5782423, -1.1727507, -1.7678819, 1.314321, - -1.3367678, -1.2634897, -0.40762198, -0.017696826, -1.5021778, 1.63004, - -0.97054464, 0.113247454, -0.7414424, -0.35971045, -0.5503743, 0.391545, - -0.92310476, -0.90577066, -2.0256584, -0.46009597, 0.41280508, - 0.3170291, -2.3217218, -1.3139993, -0.6190389, -1.6150491, -1.4465216, - -0.6794151, -0.5391424, -0.4025809, -1.4178138, -0.04450936, 0.5155962, - -0.52942824, -0.07169517, -2.2712326, -2.0474362, -0.5297751, - 0.08404964, -0.14571346, 0.19212468, 0.36378804, -1.8201939, - -0.27313173, -1.8515234, -0.2877946, 0.312819, -0.7508621, -1.4711564, - 0.021246303, -1.0341468, -0.45086384, -0.11975908, -1.0053667, - -0.15830824, 0.18551646, 0.1974321, -0.92058194, -1.274423, 0.12078458, - 0.18283188, 1.2760053, -0.69092876, -0.09676768, -1.0455962, 0.3244058, - -0.33881834, -0.31654117, 0.9300005, -1.8832264, -0.51984656, - -0.26991254, 0.010269169, -0.12740323, -2.758167, -2.3250222, - 0.17734331, -0.4651485, 0.79589146, 0.020917308, -0.10498783, - -1.9388018, -1.2010388, -0.50244063, -0.05829951, -0.12920558, - -1.6775115, -1.1427639, 0.726626, -0.6339646, 1.3608407, 1.7260927, - 0.7447522, -0.6022322, -0.76344866, 1.6435187, 0.10490303, -0.08286603, - 1.0806328, -0.25083137, -0.08677034, -0.25980797, -0.33560407, - -0.26466578, 0.4609957, -0.95260054, -1.1586167, -1.923963, -2.144181, - -0.8743417, -0.8854301, -0.35406807, 0.14211515, 0.09492086, -1.405929, - -1.1010389, 1.67059, -0.90992594, -0.48912108, -1.5530384, -1.2184341, - 0.9978294, -0.26842737, -0.54233944, -2.137203, -0.52653384, 0.7622854, - 0.9808589, -0.48932657, 1.4013838, 0.07540822, -0.702046, 0.95709616, - 0.18873468, -0.5591854, -0.9831825, -1.1907083, -0.9551234, -0.91598105, - -0.29986265, -0.4274022, 0.2907705, 1.4109784, 0.07994674, -0.2615438, - 0.33467838, 1.5167803, 0.7822534, -1.2475878, -0.050941102, 0.31480166, - 0.7758246, -0.7976585, -1.1259648, -1.1874937, 0.39299595, -0.68570185, - 0.6132101, 1.5300967, -1.8158848, 2.1368778, -0.18804069, -0.51088536, - -0.26646662, 1.820949, 0.70172435, -0.054079693, 0.7048959, -0.67487466, - -0.12217436, -1.7228467, 0.5855354, 0.53228605, -1.3743885, -0.8350058, - 0.22087371, -0.70820606, 0.9496004, -1.1970674, -0.4421927, -0.59496784, - -1.92917, -0.6775358, -0.77723134, 1.1329184, 0.5551676, -0.6704336, - -0.15543538, 0.23524718, -0.60802734, 0.41258132, -0.13456406, - -0.03970351, 1.0814649, -0.29143664, -0.9090529, -1.7264286, - -0.49504885, 1.0263411, 1.3242631, -1.742853, 0.1824142, 0.7603074, - -0.6803754, 2.3305373, -0.83673537, -0.66357833, -1.449683, 1.2604336, - 0.44516277, 0.13445409, -1.6051316, 0.1393049, 0.23717602, 0.29545563, - -0.1847798, 0.74027985, 0.40992904, -1.4006757, -1.5565656, 0.031768505, - -0.43088502, -0.8222739, -1.8624724, 0.19017443, -0.8233191, 1.4116012, - -0.47700572, 0.89617115, 0.37152588, 0.11167109, 0.77354455, -0.8866417, - 0.63286364, -0.09436649, -0.9439547, -2.3938415, 2.329763, -0.36170787, - 0.929276, -0.5083574, -0.20164225, 1.1651216, -1.0039359, 0.08248994, - -0.91613704, 0.76094675, 1.0316498, 1.986703, 0.55964404, 0.84983987, - 1.383287, -0.7108604, 0.12365916, -1.6442001, -0.9454762, 0.5359567, - 1.3656415, 0.5499544, 0.040290378, -1.2921325, -0.7801691, -1.2901038, - -0.54473233, 0.3761531, 0.5187309, -1.0947933, 0.8316769, -1.8796315, - -1.5079896, 0.20571367, 0.86022186, -0.17117742, -1.356548, 0.037048638, - -0.38372865, 0.31205523, 0.1276398, -0.48563778, 0.8949223, 0.41402417, - 0.8976591, -0.6002716, 0.9261649, -1.1193321, -2.0943763, -1.4674704, - 1.626963, 0.52606463, 0.5632065, -0.43158895, 0.3644288, 0.69520396, - -1.7607126, -0.89673364, 0.76601964, -0.4813335, 0.2473197, 0.30237144, - -1.2080313, -0.68844795, 1.4677371, 0.23184243, -0.17000198, -0.8408945, - -1.0702169, -0.14683942, -0.30446982, -1.2589694, 0.92191136, - -1.6725295, 1.1181778, 1.0255117, -2.1805212, -0.6751357, 0.01880318, - -0.99439937, -0.32033807, -1.2701194, -0.02640881, -0.0326159, - -0.27609754, -0.60776675, -0.010347746, -1.4536744, -1.0624956, - -1.4379328, 0.4129254, 0.33477592, -1.3859544, 0.5256318, 0.9681678, - 0.006038137, -1.5817868, 1.5309378, -0.32823086, -0.010337099, - -0.15313557, -0.16290012, 0.14954826, -1.5363656, -0.35493267, - -1.4561021, -0.924986, -1.0910923, -0.08391921, 0.5021086, 0.48201254, - 0.32539248, 0.49041915, -0.3624255, -0.1984706, 0.9645873, -1.1464704, - -1.0999315, -0.85281235, 2.7959352, 1.9750868, -0.09370974, -1.3032304, - -0.44101912, -0.4502953, -1.8782065, 0.12745592, 0.94670343, -0.7612766, - -0.8746541, -1.5362552, -1.6086385, -0.8264464, -0.080451705, 0.5565656, - -0.17743547, -0.64017874, -1.2597421, -1.9925514, 0.40483978, - -1.1204046, -0.686303, -0.31477684, -0.9647991, -0.13925844, -1.8397093, - -0.52420115, -0.22988223, 1.1971439, 0.10913639, -0.23236097, 1.3361835, - -0.8971852, -1.2738907, 0.14395101, -1.4854059, -0.67841136, 0.27546483, - -1.1831124, -0.8888566, -0.34258157, -2.4054077, 0.08760577, - -0.016714051, -0.22144102, -1.1722647, -1.4054182, -0.41381356, - -0.29692313, 0.84894925, -0.9278154, -1.4624753, -0.38273796, 0.9490022, - -0.8200763, -0.11568168, -1.5869157, 0.7430561, 0.3674683, -2.3761222, - -1.2884828, -1.0466279, -0.7803619, 0.12141874, -0.95886385, -0.6738659, - -0.8974335, 0.34221995, 0.75158995, -0.3910433, 1.5617746, -0.81850654, - -1.4625326, -1.1347263, -0.07869029, 0.13516583, -0.1219058, 0.09963132, - -0.14564265, -1.5599136, -0.80623037, -1.1039125, 0.3079579, - -0.10155271, -0.30626845, -0.5522963, 0.852123, 0.7674938, -0.4117798, - 1.1220837, -1.310103, 0.9980952, -0.9179112, 1.1247749, -1.9886457, - -0.055004884, -0.82845575, -1.0599228, -1.2084233, -0.56170535, - -0.5087495, -0.8545406, -2.789712, -2.3097737, -0.89862937, -0.19132677, - 0.82266414, 0.22371677, 1.1300462, -0.1924204, -1.2986766, -0.39070132, - -0.7384213, 1.1173327, 0.35852808, 0.67998105, -0.075325966, -2.0104923, - -0.45223185, 0.67780185, -0.96067905, -0.102647565, -0.7941189, - -0.51345384, 0.2721332, 0.3987221, -1.4240046, -2.2542002, -1.5116425, - -0.30185837, -1.463785, -0.5275311, -1.4813297, -0.33249462, -1.4679046, - 0.42565992, 0.27118906, -0.5914905, -0.6872128, 0.41675675, 0.15978974, - 0.2028849, -0.116844766, -0.6622404, -0.5949906, 1.4561584, -0.9906278, - 0.34099048, -2.8744237, -2.4164903, -0.4416957, -0.31313628, 0.74261516, - 1.607656, -1.111868, -1.9751194, -0.9771042, -1.29188, 0.21799168, - -0.8480728, -2.2252066, -0.74273056, -0.7188696, 0.27849528, - -0.68693966, -0.33463785, 0.48148426, -1.8920594, 0.3228364, -0.5089772, - -0.40945333, 0.92199194, 1.676203, -0.082242936, -1.6261867, -1.0562795, - -1.0625682, -1.2071333, -0.74217963, -0.8528415, -0.9002844, -2.1967783, - 0.080626674, 0.41974324, -0.6928844, -1.530166, 0.49476254, 0.9652482, - -1.8034623, 0.9369136, -2.1844752, -2.1511638, 0.51769286, -0.3261079, - -0.16656151, -1.5283685, -0.19970177, 0.12188173, -0.72359085, - -1.8131638, -1.4728655, -0.60725844, 0.5222159, 0.38749558, -0.15890142, - 0.17374933, 0.20321575, -1.3903162, 0.4400065, -1.9519238, -2.1452076, - -1.7091093, 0.72410214, -1.342596, 0.14360097, 0.30493423, -1.2978251, - -1.0864208, -0.9348636, -0.48530608, 1.0200063, -2.019285, -0.8900113, - 0.7814069, -0.42255318, -0.05716438, -0.39579162, 6.22198e-5, 1.7733343, - -0.43783066, 0.6460315, -0.09557141, -1.0036008, -0.5385568, - -0.82762307, 1.4296802, -0.841308, 0.5256528, -0.12629041, 0.38779005, - 0.803205, -0.3097648, 1.714107, 0.08095665, 0.35201392, -1.2757283, - 0.6082575, -0.4783348, -0.903243, 1.4575315, 1.1773922, -0.9026291, - 0.53393704, 0.012334488, -0.36698687, 0.5951657, 0.3454393, 0.24214904, - -1.3711654, -0.5754104, 0.37436724, 0.06551565, -0.15395114, - -0.020005174, 0.46615553, -0.12133105, -0.8978709, -1.3624445, - -0.41518715, -0.18285127, 1.1092173, -2.4636188, -1.2336478, -1.106531, - -1.0292263, 0.3818084, -1.2683496, 1.6783621, -0.9426681, 0.063078605, - 0.499696, -0.28714252, -1.2767102, 0.20254761, -0.5555933, -0.11105874 + "locations.license.id": [ + "inc", + "inc" ], - "features2": [ - -0.0012051445, 2.1251245, -0.5424462, 1.5991198, 0.9148225, -1.0234118, - -0.5890585, -0.5794361, -0.32736105, 0.74479806, -0.24172163, - 0.47234237, -1.1859994, 0.30111763, 0.6420708, -0.34714317, 0.4422514, - 1.1183544, -1.261048, -0.19126658, -0.2691617, 0.45665076, -1.4018326, - 1.0350596, -0.89683545, -1.2938876, -0.48549303, 1.4946476, -1.8421537, - -0.98798656, 0.80779, 0.6089808, 0.20501393, 0.55029017, 0.12286098, - 0.331645, 0.6227469, -1.6069537, 0.4723516, 2.4547498, -0.9804426, - -0.6377337, 0.2783098, 0.9328251, 0.40125126, 0.6697156, -1.0690476, - 0.44589287, -0.49950808, 0.36606115, 0.945703, -0.1314914, -0.57849795, - -0.62784064, 0.31966656, -0.82357633, -0.9806628, -0.0022474825, - -1.2011187, -0.28345385, -0.108127594, 0.1437892, -0.8006041, - 0.95742875, -0.17395324, 0.10121451, 0.06779106, 0.69201785, 0.2810588, - 0.25733602, 0.40341336, -0.718369, -0.64438725, -0.19697547, 1.55972, - -1.0689408, -1.6725744, 0.21167089, -0.72601086, 0.12614661, -1.273699, - 0.3806834, 0.22749487, -0.5226105, -1.0130177, -1.6711675, -0.4380199, - 0.034385618, -0.5919439, 0.74611235, -0.9700788, -0.66271996, - -1.9694327, -0.24707694, 1.5800587, 0.15038592, 0.19081442, -0.40711713, - -0.005731117, -1.373025, -1.6406058, 0.28228137, 0.814207, -1.7621905, - -1.3273205, -0.9007602, -0.30263826, 0.58318377, -0.37370607, - 0.42757577, -0.85546196, -0.17018014, -1.8468857, -2.084453, - -0.29937533, 0.6037052, -0.60807407, 0.56248826, 0.8875634, -1.9450439, - 0.37793687, 1.6356534, 0.08653326, -1.776304, 0.030534737, -1.294074, - 0.11101757, 1.3203143, 0.0020266697, 0.4588825, 0.28871745, -0.45451707, - -0.694701, -1.469285, 0.073670745, 0.35014483, -1.9860294, -0.40034264, - -0.0780225, -0.6170274, 0.31804478, 1.0857342, -0.83825517, -0.88756007, - 0.8046974, -1.5298011, -1.0967091, 0.027321566, 1.0186031, -0.50519234, - 0.5937166, -1.7210475, 0.2478342, -1.1665007, -0.83061063, -0.12492655, - -0.64987856, 0.46595883, 0.8557016, -1.5491521, 0.26129198, 0.9314789, - -0.7842055, -0.57488316, -0.84383893, 0.0762804, 0.86467063, 1.7290188, - -0.6501796, -0.39990377, -1.0907369, -0.8210262, -0.35756844, - -0.25211123, -0.61305237, 0.82197976, -0.2722732, -1.1925815, 0.6901317, - 0.21141472, -0.05158139, 0.6738022, -0.63993144, -0.75923014, - -0.21448553, 1.2449449, 0.66450673, -0.049213003, -1.6203369, - -0.09250144, -0.12255475, 1.4701793, -0.46890303, -1.3005035, - 0.31604552, -0.14020847, 0.4532674, -0.96329045, -0.7542705, -1.058573, - 0.25404614, 0.5538351, -0.2871539, 1.2127618, -1.0972921, -1.4173917, - 0.50487125, -1.196057, 0.22544616, -0.3980427, -0.62000865, 0.33094555, - -0.9915754, -0.14849025, -1.052175, -0.7183093, -0.8639783, -1.1917871, - -0.30950555, 1.2336856, 0.80609244, 1.2613356, -0.39037615, -1.8298993, - 0.54149806, -0.4009215, -0.7446077, -1.2220019, -0.38040784, 0.42929158, - -1.5184348, -1.1462809, -1.250621, -1.4703726, 0.61003625, 0.7573332, - -0.7981471, -0.42773724, -1.7432028, 0.43651062, 0.86672777, 0.19891024, - -0.46934783, 2.3946724, 0.3128815, 0.63822174, -2.1870492, -0.8016026, - -0.10124222, 0.052038256, -0.56369567, -0.71622103, -1.0026605, - 1.389952, -1.4004967, 0.27758995, -1.1767832, -0.6034465, 0.22881058, - -0.2902321, 0.5057926, -1.6411554, -1.6816838, -1.0851198, -1.108849, - -1.4627687, -0.59370637, -1.895606, -1.1231911, 0.37936383, 1.1868603, - -1.5009621, -1.767328, 1.0305899, -0.7509362, -0.85923785, -0.09089842, - -0.4871322, 0.3642556, -1.1358148, 0.043039594, -0.7713702, 2.079514, - -0.6511061, -2.3394942, -0.17476319, 0.9556291, -1.5162354, 0.6772478, - 0.7215513, -0.61372626, -0.52001166, -1.1367012, -0.9967837, - -0.47521552, -0.43559438, 0.12708527, 0.4035679, -0.821063, 0.36035848, - -0.3160735, 0.34224147, 1.140764, -0.7106904, -1.3549106, -0.6246969, - -1.2484069, -0.15395619, 0.16689748, 0.3724461, -0.5281211, -3.726384, - 0.4204741, -2.0441568, -0.55273604, 1.4859595, -0.54642045, -1.7376866, - -1.3998362, -0.51009715, -1.2307657, -1.2060922, 0.13732567, -1.2809852, - -1.1000059, -1.0817058, 0.086293206, -0.83381945, 0.36871544, - -1.6417102, 0.3735019, -0.48433405, -0.03988467, -0.3152535, -2.4994621, - -0.025298629, 0.034414537, -0.4468923, 0.5098697, -0.95575607, - -1.1839005, -0.42414933, 0.9247087, 0.026909538, -3.3903768, -0.5466723, - -0.9946819, -0.3434622, -2.2335322, 1.8934402, -0.51317924, -0.9846641, - 0.033469293, -0.78537357, 0.4761237, -0.64215857, -0.57519126, - -0.026353762, 0.55766207, -1.3819451, -0.96635824, 1.2342757, - -0.24222195, -0.39512944, -0.66819847, -0.21218315, -0.161533, - -0.91112417, 0.091688514, -0.08353578, -0.198381, -1.1723996, - -0.9742861, -0.46720734, -0.6915325, -0.63599586, -1.7746062, - -0.12589224, -0.7811622, -0.21847592, 1.1065555, -0.17483, -0.15034412, - -1.45071, -0.8963123, -1.1006808, 0.023913339, 0.85758185, -1.9609702, - -0.17194512, -0.88080776, -0.5102565, 0.36920747, -1.6267005, - -0.37970218, -0.70044553, -0.8609718, 0.78022456, -0.06787461, - 1.2800597, -0.82926035, 0.3199715, 0.411853, -2.465147, -0.64873457, - 1.4077992, 0.6793349, 0.3095123, -0.34264213, 1.3648194, 2.5977936, - -0.16484895, -0.9120436, -1.1939225, -0.671204, 0.09519928, - -0.035289686, -0.5346204, -0.46992457, -1.2587497, 0.019800514, - 1.6284821, 0.9785574, 0.04369245, 0.8844956, -1.1394938, -0.08428648, - -0.75266975, -1.871954, -0.4923335, -2.2798457, 2.6473567, -2.1553018, - -1.501858, -0.591566, -0.12133116, -2.9256117, 0.97588795, 0.8405098, - -0.9796939, -0.76071453, -0.49117166, -0.2327461, 1.0345184, - 0.0063045956, -0.6928432, -0.41570604, 0.99979097, -0.13816826, - 0.47910818, -0.47160316, 3.3878472, 0.9997781, 0.056864202, 0.95962816, - -0.83732766, 0.27317068, -0.5759052, 0.9030602, -1.2060298, -1.3756388, - -0.6389245, -0.63937014, -1.5716374, -0.99937886, -1.4823669, - -0.9931996, -0.04833992, 0.28076357, -1.39026, -0.025534246, - -0.37759918, 0.027319852, -0.016512454, -0.73737663, 0.92815804, - -1.3267268, -1.7778206, 1.0800081, -0.6961131, 0.6201613, 0.054866616, - -2.4083347, 0.012874614, 0.5167708, 0.050462484, -0.05833862, - -0.6077151, -1.1205044, -0.8611825, -0.75378776, -1.2553226, -1.1767632, - -2.0082197, -0.66007674, -0.056979947, 0.08916022, 1.0515138, 0.9227691, - -1.2187982, -1.8476188, -0.5441845, -0.7289348, -0.67657965, - -0.63059837, 0.7657805, -1.0162748, 0.25546157, -2.7877972, -0.5246, - 0.5266397, -0.575355, -0.9057285, -1.2431333, 1.354042, -0.481413, - 0.017788135, 0.03770196, 2.204603, 1.2019188, -1.1997526, 0.56876004, - 0.0917192, -0.78018194, 0.10987559, 0.949469, -0.1273007, -2.0025258, - 1.1046243, 1.3875959, 0.71352124, 1.6429875, -2.3928132, 1.0704446, - -0.7675737, -1.0012953, -0.015354179, -1.1089796, 0.028263196, - 1.1526555, -2.8471673, 1.0617527, 0.13493904, 0.46187052, -0.55725217, - 0.42222494, -0.8357194, 1.2201834, -0.6569345, -0.6786241, -0.102249846, - 0.926009, -0.27075827, -1.1782709, -0.08035507, -1.6311852, -0.5635017, - 0.13004203, -0.21959081, -0.040023588, -0.78254074, 0.11268284, - -1.3267852, -0.9913315, -2.2687824, -1.0375645, 0.6403501, -1.4756485, - -1.5651308, 0.8679762, 0.6462456, 1.5614334, -0.6163547, -2.1709917, - -0.41708523, 0.17426859, 0.5544818, 0.092432804, 0.47748953, -0.2752621, - -0.6997361, -1.5801469, -0.9096763, 0.46060085, -1.4840696, -0.83193946, - 0.1998393, 0.95142657, -1.1321371, -0.09165749, -1.026609, 0.34569615, - 1.1288474, -0.42222378, -2.8281732, -0.448266, -0.68768054, -1.499772, - -0.06855926, -1.0694231, 0.3922901, -1.0327402, 0.9100292, -0.4656775, - -1.0927775, -2.0295746, -0.25448266, 0.11281029, -1.5142773, - 0.066826165, -0.048839852, -0.5047699, -0.15946749, -0.37015322, - 0.16270435, -0.3842917, 0.3268144, 0.11635575, -1.2997271, 1.3896254, - 0.27965936, -1.0405439, -0.12789625, 0.44626617, -2.567757, 0.98643565, - -0.26785725, 0.08203839, -0.30371812, -1.0102202, -0.81764734, - -0.24974166, -0.8015659, -0.23707186, -1.350759, -1.5004097, 1.490497, - -0.32546836, -1.0687405, 0.50254434, 0.77206016, -0.508852, -1.4257183, - -0.39233592, 0.54724205, -0.6844858, -1.261774, -1.297818, -1.4418333, - -2.741114, 0.22755298, -0.33036548, 1.1450263, -0.111380935, 0.24681786, - -0.65627646, -0.35038662, -0.36327055, -0.36917472, -0.46027663, - -0.39244354, -0.9303541, 0.35521197, -0.4822296, -0.17555526, - -0.46203497, -0.094551444, -0.5251757, -0.038464986, -0.72299594, - -0.33367756, -0.16828242, 0.3706432, 0.16741674, -0.8782056, 0.95560724, - 0.03383048, -0.24952275, -0.006217938, -1.0393503, -0.49752292, - -0.62562466, 0.8905618, -0.40568924, 0.19051272, -0.7706481, 0.59938866, - -0.93363327, -0.9164646, 0.02375153, 0.04517323, -0.65078086, 1.3746245, - -0.58445716, -1.1414198, 1.1699531, -0.24346256, 0.9922994, -0.39469576, - -1.2731872, 1.424645, -0.6623437, -0.49003282, -1.6196197, -0.14575604, - -0.43828273, -1.4899303, -1.2241391, 0.3137308, 0.8401832, -0.25903842, - 0.23518471, 1.1507787, -0.41412893, 0.7041615, -0.65512675, 0.5404459, - 1.2028812, -0.16154991, -0.65262526, 0.64321774, -0.3724894, 1.2466162, - 1.0449573, -0.97926897, -0.9510826, 0.27615556, -0.058867496, - -0.6832193, -0.8667054, -0.24277551, -0.82477474, 0.24538806, - -0.34704113, 0.6044501, -0.9743157, 0.75377846, 0.14867227, -2.109782, - 0.10472333, 0.48250943, -0.5430087, 0.07009768, -1.113851, -2.9232461, - -1.5991352, 0.042050816, 0.21653171, -1.0784667, 0.9999143, 0.22890043, - -1.1371034, -0.21136001, -0.15438941, 0.91135037, -0.6977956, - 0.56280327, -1.4212742, 0.54066855, -0.036346585, -0.5592687, - -1.0786998, 0.695856, 0.65786844, 1.0940964, -0.5229218, -1.4069884, - -0.75248784, -0.47356158, -0.9192364, -0.98629105, -1.1714591, - -1.4820275, -2.2212873, -0.8490681, -0.3074393, -1.2908169, 0.3911182, - -0.71110815, -0.79705894, -0.5441686, -0.4519706, -1.0146098, 0.9839318, - -0.8315567, 0.55696666, 0.6289008, -2.0446513, 0.42461315, 0.25589335, - -1.0359482, -1.0474429, -0.8356541, -0.27431396, -0.94061923, - 0.16378856, -0.9059023, 1.6877059, -2.048402, -0.5963826, -1.0478859, - 0.6653014, -0.13119791, -0.16459349, 0.8036826, -1.2487926, -1.5195842, - 1.2221453, 1.1865335, -1.1592817, -0.78826165, -0.8547053, -0.1810735, - -0.116522655, -1.5600591, -0.004721187, -1.4816291, -1.6820687, - 0.7603433, -0.4445138, -0.04964044, -0.016063733, -1.1980695, - -0.47080532, 0.28114918, -0.84854484, 0.28530517, -0.48836505, - -1.1995027, 1.1767017, -0.4786192, -1.2679126, -0.40136942, -0.05729963, - 0.18192294, -1.1255001, 0.38803914, -1.2568225, -0.36852407, -0.8649714, - 1.2072858, 0.26941928, 0.35859329, 0.9853676, -0.66401166, 0.10671553, - -1.1096874, -0.39198297, -0.84527516, -0.44472864, -0.26709774, - -1.3421066, 0.03245196, 1.1784766, -1.8452696, 0.95556986, 1.4308084, - -0.105979934, 0.02100369, 0.4521227, -1.4565376, -0.9782521, 0.5813086, - -0.98544604, -0.25940198, -0.9438251, 0.8650871, -0.370177, 1.0364215, - -0.73620313, 0.67310774, 0.076987326, -1.3677487, -2.7528718, - 0.29455885, -0.20228764, -0.8518267, -1.199147, 1.0807822, -0.2917134, - -0.31528834, -0.13807222, -1.2513499, -0.45585456, -2.3024244, - -2.2231886, -1.7010007, -0.58546907, -0.6167987, 1.5544845, -1.3338591, - 1.315516, -0.2574858, -0.986733, -0.6422234, -2.3013122, 1.2437575, - -0.65694386, -0.32844597, 0.0048532, -1.0967393, -1.1181169, -1.4436629, - -1.8683548, 1.8256173, 1.771512, -0.1379692, 0.9474643, -2.1289697, - -0.58557093, 1.2864562, 0.6027276, -0.67695904, 1.1513796, 2.483026, - -1.1849443, -0.46842107, 0.5197074, -0.32570642, -0.28992534, - -1.0240781, 1.2514092, -0.76555103, 0.24553882, -0.75493073, -1.3685825, - 1.0843407, -0.87087005, 0.6763927, -0.6460445, -0.58196825, 1.2186315, - 0.010774601, -1.2689905, -1.1670525, 0.13664207, -1.4325237, 0.18110174, - -0.067070484, 0.0774806, -0.16411856, 0.4459506, 0.8388379, 1.1835504, - 1.2194539, -1.3345933, -0.016923754, -1.0702735, 0.90311015, -1.725084, - -0.94489413, -2.1257293, -0.093677744, -0.19827229, 0.64290243, - 0.8383281, -0.666494, 0.31499156, -1.8165832, -0.73770857, -1.2447203, - 0.2657717, -1.3774426, 0.059024107, 0.8178609, 0.5735629, 1.8311481, - 0.56870276, 0.6477847, -1.1997409, -0.50969017, -0.6293297, 0.30042762, - 0.22045216, -1.6121953, 0.17905074, 0.45178977, -1.2839522, 1.1765809, - 0.5694362, 0.3155386, 1.0130665, -1.4898974, 0.034773387, 0.46431684, - 1.2196076, -0.8760759, 1.1169753, -1.5106845, 0.23696181, -1.170763, - 0.8524435, -0.45099747, 0.5450372, -0.26955503, -0.10894391, -0.7662226, - -1.3227044, 1.4773214, -0.37034553, 0.28160822, 0.083630785, 0.37070894, - -0.8910215, -1.366258, -0.9492055, -0.1891842, -0.039877318, 0.17179918, - -0.4881801, -0.33445495, 0.8860828, -1.7684252, -0.9121703, -0.9912296, - 0.0069070384, -0.6599206, -1.0415528, 1.5837631, -0.96349686, - -0.8180025, 0.4676712, -1.8867733, -1.7712306, 0.53671664, 0.7209268, - -0.6232946, -0.147884, 1.8888844, -0.6036258, -0.89858335, -0.7825253, - -1.4212834, -0.77565074, -2.2449663, -0.9871047, -1.2765551, -1.3033525, - 1.1796873, -0.2810853, -2.4225717, -0.11933799, -0.8448845, -0.54731715, - -0.1254908, 1.1119365, 0.8294266, -1.7789423, -0.2825812, -0.4465359, - -1.7371995, 0.37425542, 1.7435031, -0.03848231, -0.49592593, - -0.10071544, 0.7476729, -0.6236105, -0.71412724, -0.71249956, - -0.3179437, -1.1578951, -0.32017583, -1.6978142, -1.4685848, - -0.30890265, -0.6212067, 0.8378635, -2.390815, 2.006786, -0.78539276, - 1.1629125, -1.3780916, 0.6171356, -0.44534966, 1.5880129, -0.18416384, - 0.34308198, -0.44035655, -0.07352869, 1.2527063, -2.0784867, -1.0499623, - -0.26937908, 0.10426414, -0.76304084, -0.46223885, -0.9123343, - -1.0005335, -0.743284, -0.46269384, -0.031370178, -0.9607543, - -0.9887864, -0.56379575, -0.66807574, -1.586006, -0.5823605, -1.6805367, - -0.9279965, 0.5220357, -0.4804977, -0.89692885, -0.8199125, 1.217478, - -2.735932, -1.6648227, 1.3438094, -0.20851573, -1.7970694, -1.6263454, - -0.6010835, 0.67592776, -0.73905003, -0.62229466, 1.3477817, -1.908753, - -0.8995437, -0.114595376, -2.1331017, 0.979471, -1.95499, -2.031283, - -0.8700146, -2.2717853, 0.19909117, -1.4458852, 0.41649112, -1.5682069, - -0.45510086, 0.047831938, -1.1678901, 0.083845176, -1.8354821, - -2.3696854, 0.48186472, -1.168147, -0.9337227, -0.5101168, 0.59909064, - -0.60422665, -1.104279, -0.1343407, -1.0949152, -0.6155814, -0.5792637, - -0.24412578, -1.2166978, -1.7173593, 0.41015503, -0.5024946, 0.3900382, - -0.9055276, -1.3294866, 0.9471124, -0.0987477, 0.31557295, -1.5933316, - -1.7757272, 1.6564912, -0.49373627, -0.14854291, -2.1995142, 0.37665784, - -0.62963647, 0.6122052, -1.623332, -1.0118277, -0.8499193, -0.22722653, - -2.1156073, 1.1708201, -0.6169368, -0.46007907, -0.25785804, -1.4164078, - -2.2894468, -1.1731354, -2.1963863, 0.08321636, -1.3337301, -0.8155502, - -1.1097665, 0.44524935, -0.1853235, -0.64030206, 1.2005534, -0.4790373, - 0.6191912, -0.31366554, 0.66034985, -0.77318966, 1.9666774, -0.65684605, - -1.9828063, -2.3869643, -0.11579142, -0.026223049, 1.6216447, - -0.5796555, -2.9448383, -0.59844303, -0.8956695, -0.18454495, - -0.9591542, -0.45149323, 1.1142519, -0.70284414, 0.049976718, 1.4792, - -0.69043136, 1.4894222, -1.0116389, -0.29869387, 0.037161887, - -2.3086314, -1.1099566, -1.0284103, 1.2750671, -1.2347031, -1.8348565, - -0.47663084, -0.9244555, 0.65173906, 0.5303127, -0.6463305, -0.59061104, - -0.120151535, -0.31785297, 0.4531545, 0.27627683, 0.68282586, - -1.0465678, 0.2764771, -0.25877082, 0.7001171, -0.5545924, -0.35645384, - -1.9082114, -0.6206148, -0.36325246, -1.3102194, 0.9890183, 0.2255421, - -0.9195039, 0.58346534, -0.016706564, -0.76036984, 1.5778389, 1.1795058, - -0.73700106, 0.91745156, -0.76927906, -1.005931, -0.6361792, -0.708056, - -1.2976121, -0.19162938, -0.050205737, 0.04470545, -0.48370993, - -0.35825485, -0.519778, 0.49415243, -0.8978137, -0.34987763, 0.2278393, - -0.7355287, 0.52639556, 0.25399488, 0.67905146, -0.8978163, -1.0028263, - 0.2595028, 0.28744373, -0.7667579, 0.6062834, -0.5969999, -0.13658327, - -0.49138236, 0.91223377, -2.4940941, -0.8678488, -0.22831488, - 0.010171963, -0.037279997, 0.3192805, -1.3151809, -0.3794535, 2.0467906, - 0.1546996, 0.9755676, 0.6391384, -0.37078518, 0.9847892, -1.7640073, - -0.9382794, -0.18063366, -1.4180076, 1.3858529, -0.72882605, 0.4589882, - -0.37908646, -0.53197783, 0.7271267, 1.4450208, -1.3100697, -2.3576016, - -0.5004011, -0.7940707, -1.6438198, -0.49218187, 0.28124717, -1.45232, - 1.0303867, -1.2547274, -1.4488044, 1.5022172, 0.22233751, -1.1575567, - -0.25266886, 0.12701733, -0.5781782, 0.28695717, 0.26011285, -0.6515684, - 1.4443148, -2.1877813, 0.4909793, 0.3440004, 0.8896139, -0.0012472607, - -0.84197015, -0.267564, 1.8221025, 0.42485422, 1.4982712, 1.13286, - -1.287443, -1.6690414, -1.4357295, -0.3284195, -0.73843825, - -0.061126545, 1.1601462, 0.74394614, -1.3438209, 1.5332665, -1.532825, - 2.2020628, -0.62590104, 0.5615846, -0.25224385, -0.2373954, -0.18413293, - 0.35027137, -0.6440834, -0.6745124, -1.8421019, -1.0798986, -0.3944797, - 0.8444471, 0.18226904, 0.6621906, -1.2708046, 0.104139104, -1.0290666, - -0.46905354, -0.30778027, 0.45646697, -0.07247731, -1.3927569, - -1.6039712, -1.3494301, -0.4482259, -1.3811232, -1.2161183, 1.0666336, - -0.6546816, -1.7696238, 0.30395356, 0.350887, 0.3133232, -0.1931895, - 0.33748573, -0.374276, -1.7393613, -1.1041496, -0.9228481, -1.7675241, - -1.2978419, -0.68431115, 0.0047394335, -0.58034503, 1.2487037, - -1.1774353, 0.66794884, -0.528621, -0.23769024, -1.7527765, 1.8316196, - 0.7209639, -0.9182659, 0.61079806, -0.052908733, 0.18145637, 0.31039456, - -0.3109307, 0.37516975, 1.3177179, 0.26731628, -1.3936228, -1.8720613, - -1.8837713, 1.2018105, -0.97457194, 1.2710905, -1.7055684, -0.49280992, - 0.8556638, -0.4770545, -1.0496113, -0.33936936, -2.0572205, -0.26820445, - 0.19370595, -0.41142744, -1.7205921, 0.43694782, -1.3881145, - -0.36693817, -0.15948212, 0.39767838, -1.9490033, 0.32468322, - 0.09885035, -0.3838679, 0.40966395, -0.81466955, -0.29406062, - -0.16780421, -1.6235149, -0.73291135, -0.4333136, 0.114826694, - -1.7638581, 0.34469602, -1.4516745, -0.4598429, 0.60640794, 0.19178689, - -1.7713466, 0.070071265, -0.884192, -0.7495587, 1.0884554, 2.0844212, - 0.37096068, 2.0253673, 0.6892171, -2.3092048, -0.04878601, -0.86714727, - -0.41221827, -2.713461, -0.62157816, -1.2189877, 0.13749635, -1.4495865, - 0.17317744, -1.0876197, -0.6226695, -0.38498616, -1.5068456, -0.3974435, - -1.4091485, 0.8463607, -0.8658031, 0.48516786, -0.13095894, -0.57909924, - -1.3396149, -0.94784486, -0.5798801, -0.39742374, -1.1484121, 0.503955, - -1.1609697, 0.13928111, -1.3411492, -0.7868856, -0.5953985, 1.053457, - 1.094279, 2.411089, 0.17640945, -0.44950804, 1.0371546, -1.0092046, - 0.38672894, -2.0123222, -0.48472467, -1.0266759, -1.1870762, - -0.61424994, -2.0647938, -0.8259867, 1.2213938, -1.4081151, -0.6327985, - -2.3675554, -0.27990326, -0.20121318, -0.29878798, -1.5292743, 0.770005, - -0.75319016, -1.3562405, -0.22246079, 0.24155195, -0.4480126, - -0.7032961, 0.76116216, -0.8415208, -1.1911179, 1.4766868, 0.55701846, - -0.111452416, -1.7312348, 0.47552592, -0.78449553, -0.36606234, - -0.50655067, -0.31593168, 2.2174084, -1.0289423, -0.08654833, - -1.1859808, 1.2281213, 1.3510442, -0.95764256, 0.88192934, 1.1077926, - 0.45838612, -0.19926864, -0.25900114, -1.3906487, -0.3745073, - -0.08473474, -1.3384823, 0.72817516, 0.34803218, 1.6130029, -2.3141534, - -0.61302626, 0.23878875, 0.6006585, -1.0562239, 0.3924023, 2.7366552, - -0.42704165, -0.061378665, -0.86132103, 0.013842326, 0.5449682, - 0.10469649, 0.12716481, -0.10996471, -1.3431393, 0.5883231, 0.1984519, - -0.39910126, -1.3226622, -0.27099448, -1.4962476, 0.10168105, - -1.9530464, -0.76013505, -0.8605432, -0.080381185, -0.75165284, - 0.16761681, -1.8263336, 0.19830744, -0.4138591, -1.8935492, 2.0410655, - -0.12817681, 2.6092565, -1.3935655, 1.1193216, -1.1069057, -2.25312, - 1.5392753, -0.6100187, 0.7482543, 0.42307952, -0.11812767, 0.2778048, - 0.092568845, -0.27473608, -0.37205008, -0.4863646, 0.17136073, - -1.0977156, 0.030216109, -1.5061928, -0.55264497, 0.07622372, 1.0137303, - -0.6167585, -1.7539921, -0.036020134, 1.001806, -0.94211745, - -0.94276106, -0.17457795, -0.56146705, -0.46181494, -0.95671487, - 0.4074864, -0.81722367, -0.19115481, -0.1101387, 0.1723572, -0.14655991, - 0.452432, -0.2575861, -0.43262187, -2.2942579, 0.72804934, 0.08110079, - -0.2574896, -0.08232191, 1.0440563, -1.1470156, -1.0286195, 0.61560047, - -0.8934455, -1.5778155, 0.9806398, -0.075483836, 0.73599523, -1.5159516, - -1.2575961, -0.005159721, -2.1768284, 0.6928517, -1.231388, -0.28286433, - 1.2632667, 0.50917554, -2.122105, 0.39670178, 2.4404683, -0.9927269, - 0.21164753, 1.0695636, 0.058641743, -0.749235, -1.5409969, 0.31138164, - -0.68820816, -2.9853182, 0.9545071, -0.93208313, 1.6098636, -2.2398038, - -0.9455028, 0.8659097, -1.7145603, 1.0700538, -0.46272886, -0.134418, - -1.2729816, 0.2795148, -0.31562656, 0.8791488, -1.3160188, 0.74825215, - -0.34291694, -1.7019902, 0.56799227, -1.7383723, -0.7683326, -0.4015726, - -0.3910461, -0.12390971, 1.6699626, -0.17885536, -1.8736644, -0.7822133, - 0.675117, -0.92305154, -0.2001302, -0.25736484, -1.5076034, -1.4686352, - -0.82277906, -0.98802334, -1.437129, -0.72983, 0.69219255, -1.1292765, - -0.33161616, -0.76672417, -0.21058077, -0.8464321, -0.6022114, - -0.3244064, -1.0578139, 1.0504736, -0.09636513, -0.17303467, - -0.18104514, 0.37351382, -0.18578649, -0.15179941, 0.135401, -1.4344985, - -1.2010012, 0.08001062, -0.2696844, -1.6415138, 0.15399772, 2.0410697, - -0.57032603, 1.0245981, 0.9892828, -0.8935639, 0.8829151, -0.06311857, - 0.25488582, -0.12275034, 0.36288458, 1.8534802, 0.0122959465, - 0.76603514, -1.9499558, -0.8752363, -1.4581281, -1.3963679, -1.1636543, - -1.7187647, -0.4970315, 1.6946884, -0.7298417, 1.3864017, -0.4649838, - -0.6794325, -2.0041096, 1.0888569, -0.4858456, -1.4709886, -0.8842169, - -0.06730521, 0.9650866, 0.10188711, -0.54444486, -0.59779525, - -0.19136392, -0.21441399, -0.12965922, -0.48958313, 0.89517325, - -1.1360977, 0.6556834, -0.111177854, -0.99782526, -1.1499734, 1.8987253, - -0.66029257, -1.7207807, -1.0196272, -1.0079643, 0.0095804045, - 0.45248792, 0.9403724, -0.21683289, -0.85335225, -0.4521198, - -0.33103478, -0.71642375, -0.46529627, -1.2320035, -0.35375932, - -0.80834204, -0.34201613, -0.18045367, -0.42662367, -1.7840437, - -0.25776124, 0.29612947, 0.27053544, -0.28990227, -1.3708595, - -0.9553814, -0.81974566, 0.7073374, 0.2184947, -0.07115802, 1.0273979, - -0.73150426, -0.54064995, -0.82315874, 0.59582233, 0.4857359, -1.009624, - 0.22354043, 1.1165487, -1.3747109, -0.7057355, -1.2669564, -1.3265531, - -0.5604937, -0.77762914, -1.3647466, -0.49236843, 0.25612772, - 0.19798319, -2.3816948, -0.44835833, -0.9138175, 1.4772227, -0.12176694, - -1.0759907, -0.2999517, -0.69975585, 0.3485018, -1.2705616, -1.2149978, - -0.4009227, 1.7049551, 0.98048854, -0.5939619, 0.12097056, 0.22853671, - -0.17606908, -0.4356709, -0.043120887, -0.22884285, -0.069454856, - -0.89159185, 1.493401, -0.24000704, 0.17470768, -1.0166689, -1.963681, - -1.3133786, 0.044952113, -1.0303206, -0.8032864, -1.0638261, - -0.116826855, -0.84114605, -0.12242228, -0.5668435, -1.3525085, - 0.45125142, -0.10758199, -0.4343583, 0.7357338, 0.019451063, - -0.31327325, -0.75426877, -0.72531646, 0.4318999, 0.29094067, - -0.8794927, -1.4490781, -0.9843408, -2.288177, -0.31797922, 1.0091105, - -0.115401424, -0.41029376, 0.4278158, -1.631319, -0.607221, -1.3122758, - -1.9041314, 0.31261697, -0.2601161, -0.3220113, 1.1710448, -0.69818044, - 0.12604585, -0.16041203, 1.3229462, -0.88431305, 0.02490265, -1.9123242, - -1.0824419, -0.2472485, -0.08926642, -1.3016112, -0.42586598, - 0.06626897, 0.19209936, -0.6663908, -0.06252855, 0.9757607, - -0.042290747, -0.36803082, -1.4264678, -0.09549792, 0.1556078, - -0.3263818, -1.8447182, -1.6120797, -0.54016864, 0.7518446, -1.4771678, - 1.8110183, -0.63925916, 1.9778926, -0.18369606, 0.5438913, -2.0669918, - 1.4369007, -1.8190867, 2.331779, -1.2905062, 0.22112855, -1.4945427, - -0.011323001, -1.9051108, -0.28631592, -0.970308, 0.43191308, - -0.1865166, 0.03900742, -0.22906937, -0.6865224, 0.55917406, 0.54046625, - -1.1912318, -0.22375986, -0.16727327, 0.39376858, -0.66954017, - -1.4830726, -0.9131434, -1.0932361, 1.0323415, -0.47406211, -1.2974049, - 0.35949454, 0.0017269775, -0.014510773, 1.0223716, -0.34118626, - 1.1966988, -0.053264342, -0.07223203, -1.0134661, -0.66094756, - -1.5362396, -0.7691442, 0.8005676, 0.193654, -0.39221683, -1.6239151, - -0.3207848, -0.84945124, -1.2538171, -1.7370652, -1.3693657, 0.8590945, - -0.18509744, -0.33312458, -0.7989695, 1.6284438, -0.84915286, - -0.22737312, -0.65996784, 0.116074905, 0.8353599, -0.36435646, - -2.2601721, -0.24330845, 1.09571, -0.6852856, -0.2092294, 0.1002337, - 0.12539315, -0.927408, 0.024079353, 0.32436198, 1.1465672, 0.4931336, - -1.9959817, -0.94584745, 0.4600323, 0.6806667, -1.7270054, -0.53475165, - -1.0450791, -0.36954585, 0.5124525, -1.2442269, -0.9969315, -0.879551, - 2.28136, -1.4727615, -0.690774, -0.89836043, -0.27592474, 0.5869401, - 0.29607755, -0.6616597, 0.8349668, 0.39703688, 0.23832227, -1.4042579, - -0.5763632, -0.03199944, 0.19554201, 0.4320044, -0.046663836, - -1.0495235, 0.33286372, -0.6177984, -0.2411338, 0.9622682, -0.53330225, - 0.7324043, -0.3202153, 0.36744922, 0.18528563, 0.5299104, 1.5940766, - -0.8714274, -1.3699276, 0.91427124, -1.0707246, 0.099196054, 0.97107327, - 1.0634327, -0.44560376, -0.114685625, -0.35993806, -1.9873512, - -1.9669342, 0.27802587, -0.7298193, -0.77755475, 1.1062276 + "source.contributors.agent.label": [ + "Mead Johnson International" + ], + "source.genres.label": [ + "Ephemera" ], - "reducedFeatures": [ - -0.009008976, -0.02258503, -0.021108607, 0.018669683, 0.035217814, - -0.03771401, -0.016544499, 0.010839243, 0.031551324, 0.027204143, - -0.019205827, 0.041219354, -0.018818865, -0.038113065, -0.009503235, - 0.038888913, -0.045307625, -0.01877905, -0.032845806, 0.0074496125, - -0.05256293, -0.066835195, -0.041432675, 0.003325724, -0.025368556, - -0.015161332, -0.009036039, 0.048933342, -0.012263625, 0.009287354, - -0.02629709, 0.030890869, -0.014052169, -0.04916214, 0.03868633, - -0.043813147, 0.059894748, 0.021193756, -0.05433927, -0.021023767, - -0.017409323, -0.04226958, -0.0033011641, -0.0060377223, -0.0040153516, - -0.018882914, 0.02327561, 0.047596496, -0.009622873, -0.00060336816, - 0.044162326, 0.029454704, -0.024176411, 0.02349001, 0.016050454, - -0.021147558, 0.057693046, -0.038716666, 0.0033735095, -0.037862346, - 0.02187019, -0.007542799, -0.034820575, 0.014224659, 0.039862797, - -0.03647289, -0.0764406, 0.024242869, -0.07560514, 0.0019404232, - -0.004553664, -0.039825324, -0.026188914, 0.034202956, 0.061132416, - -0.010884654, -0.025120482, -0.0463958, -0.041663256, -0.037739262, - 0.028870257, 0.0023394723, 0.0042359116, 0.0077911005, 0.028922481, - -0.007655737, -0.04059906, -0.02917144, 0.07947232, -0.0046109743, - -0.027925717, 0.011017895, -0.0028595831, 0.042133834, -0.01336373, - -0.030160023, -0.018094702, -0.01421285, -0.024421517, 0.0037389125, - -0.013803691, 0.020453995, 0.013814852, 0.001911429, 0.018018523, - 0.02366473, -0.021191707, -0.04701476, -0.015640233, -0.036149483, - 0.008814813, 0.01801987, 0.014717202, -0.011470514, -0.027802287, - 0.021523543, -0.0116271665, -0.10609523, 0.0027777718, -0.03196812, - 0.013190567, 0.0018898837, 0.017809344, -0.01264981, -0.018069582, - -0.015777592, -0.029075367, -0.000586026, -0.055298403, 0.009601081, - -0.0060803564, -0.012262513, 0.0094817765, 0.0637596, -0.0055768243, - 0.016356308, 0.0072557363, -0.015506598, -0.064803064, -0.02047585, - -0.030185036, 0.01944871, -0.009139292, 0.022990694, -0.025310397, - -0.040708423, -0.04734544, 0.07135186, -0.048231322, 0.0148422085, - 0.00072794966, 0.00877739, -0.023757912, -0.0228885, 0.0012078591, - 0.0518115, 0.024573863, 0.04040542, -0.02209665, -0.03716031, - -0.0027200528, 0.00061220623, -0.008932181, 0.006168313, 0.0015880535, - -0.025120541, 0.029858235, -0.016231302, 0.0046606683, 0.027904592, - -0.039585713, -0.049963314, -0.0018378218, 0.006813346, -0.09400357, - 0.021335624, -0.04435583, -0.008670839, -0.035613216, -0.047358755, - 0.01735056, -0.019802669, -0.032808993, 0.06459391, 0.011604984, - -0.061580237, -0.00077348814, 0.043074094, -0.022482278, -0.047933154, - 0.0533138, -0.015228904, 0.006532608, -0.021217918, -0.0058207535, - 0.017278424, 0.0076202545, 0.05464266, -0.0148554845, -0.010226472, - -0.011439253, -0.002281064, 0.0009892901, -0.014579275, -0.038147647, - 0.029455705, -0.0044434504, -0.00698875, 0.02367506, -0.005532682, - -0.0140564935, -0.0013362651, -0.03940322, -0.0033558938, -0.030937633, - 0.037066873, 0.018343847, 0.010714952, -0.010159947, 0.009855312, - -0.061140753, -0.0055408245, -0.022696676, -0.039750304, -0.006439476, - -0.01469841, 0.03136582, 0.027407993, -0.002470115, -0.064179264, - 0.034625955, 0.031606674, -0.039131485, -0.04474944, -0.04487331, - -0.030858362, -0.06251002, -0.012090428, -0.0024065806, 0.006588846, - 0.053629674, -0.02416051, -0.0210189, -0.04674319, -0.0009196172, - -0.0038994509, 0.054340895, -0.039359502, 0.017040337, -0.009619796, - -0.04394786, 0.0064007468, -0.013348903, 0.0039045317, -0.032635115, - 0.02170586, 0.02438581, -0.005911801, -0.03392263, -0.04144677, - -0.027272148, -0.0064875814, -0.07558877, 0.025206422, -0.038213626, - 0.013229139, -0.03799353, -0.03765623, -0.022939583, -0.0145459, - 0.03228733, -0.060065392, 0.008137061, -0.0494632, 0.026333421, - 0.038957145, -0.04914495, -0.048631877, -0.033535916, -0.013952169, - 0.0012607393, -0.027528394, -0.03361402, -0.05968992, -0.019921752, - -0.029272545, 0.008088129, 0.017784016, -0.04712818, -0.011420826, - -0.046620645, 0.026032193, 0.039580036, -0.040058453, -0.02197621, - 0.0050465195, -0.027846944, 0.01640211, -0.0061570494, -0.011779475, - 0.016314512, -0.0030920918, 0.013933739, -0.026384143, -0.043512363, - -0.050989635, 0.03899146, 0.015508466, -0.004972802, 0.036086097, - 0.016787492, 0.00072583917, -0.026287438, 0.021080237, 0.0033915916, - -0.018411051, -0.03721144, -0.030591782, 0.04631235, -0.00301295, - 0.0005111367, 0.034247786, 0.0028369322, 0.045046158, -0.01423263, - -0.032150626, -0.0020914888, -0.02063556, -0.009064826, -0.054337934, - 0.000874216, -0.013395571, -0.010174875, -0.016096668, -0.024106223, - 0.01165069, 0.0066259047, -0.032955382, 0.0041701454, -0.041299466, - 0.009385747, -0.04629856, -0.04096449, 0.0051321504, -0.041192148, - -0.051880606, -0.015112488, -0.016020915, 0.0350548, -0.0394803, - -0.02398616, 0.0678164, 0.010357287, -0.067211956, 0.014604324, - -0.05926527, -0.014432127, -0.014375013, -0.056973048, -0.0019401507, - -0.012657847, 0.013141058, -0.0023880447, -0.030612731, -0.066867046, - -0.015869554, -0.015282927, -0.010014134, -0.028186277, -0.009118295, - 0.025194371, 0.062300935, -0.046277333, -0.0076298355, -0.017116055, - -0.04566397, -0.017329704, -0.029987168, -0.0469777, -0.006466912, - -0.035492044, -0.022610674, 0.023699095, 0.0023603488, -0.0038140405, - -0.032957934, -0.01733879, 0.008920753, 0.036673646, -0.021720469, - -0.015950084, 0.01569423, -0.018799277, -0.03422603, -0.046231072, - -0.058732286, -0.0011018702, -0.028044045, -0.01040617, -0.030925212, - -0.010887232, -0.025141967, -0.024283126, 0.025645565, 0.025168844, - -0.053804617, -0.010430436, -0.05426283, -0.03476811, 0.006653109, - -0.0044448865, 0.002995777, -0.0043278118, 0.001458515, -0.0038062471, - -0.045298807, -0.0037197075, -0.058569103, 0.025090192, 0.0049675815, - -0.012721636, -0.046175174, 0.013569538, -0.013770406, -0.030899053, - -0.01570075, -0.03562384, -0.0014275067, -0.017456504, 0.019012088, - 0.02608078, 0.002966275, 0.005207573, -0.019106517, 0.019651476, - 0.007986139, -0.013026914, -0.008856475, -0.054185107, 0.0171288, - -0.057954997, 0.010037619, -0.032180503, -0.0046408507, -0.009568025, - 0.040279984, -0.0004884729, -0.022870058, 0.030563602, -0.008170692, - -0.030763572, -0.018457828, -0.016282532, -0.063947394, -0.050443668, - -0.05110183, 0.027214173, -0.024264444, -0.018787468, -0.004116733, - -0.03417136, -0.044263817, -0.0063604494, 0.004167035, 0.027556155, - 0.030722892, -0.06335011, -0.019103885, -0.004713305, -0.012442885, - -0.0614281, -0.030669643, -0.01970781, -0.013807853, 0.033464972, - -0.027346907, -0.009949521, 0.0067635207, -0.058690254, 0.026726214, - -0.03259086, -0.02446619, 0.009636601, 0.051997565, -0.0040165177, - -0.0007994433, -0.0019501925, 0.023469128, -0.01799841, 0.009261597, - -0.026423546, -0.002230986, -0.022275561, -0.019615004, -0.016724393, - 0.022581877, 0.042227566, 0.008540994, -0.022868676, 0.007023555, - 0.05642358, -0.0071785864, 0.012089881, 0.004776185, 0.02151885, - -0.036060814, 0.01857424, -0.010897174, -0.049166538, 0.022734981, - -0.06814703, -0.015016069, 0.004363972, 0.0046290485, -0.024786562, - -0.032988768, -0.010740903, -0.02665027, 0.010376781, -0.06447073, - 0.03975675, 0.0035444498, 0.018876273, -0.041364927, -0.031418055, - 0.02510133, 0.04123732, -0.022095708, 0.027129633, -0.027499577, - -0.006027254, -0.012202049, -0.04040865, 0.0025480823, 0.059623618, - -0.016536167, -0.053413488, -0.011022969, -0.027929457, -0.033224914, - -0.025232378, 0.0008920648, -0.0136658065, -0.034653597, -0.025409484, - -0.00036396508, -0.003253619, 0.009485136, -0.0034699822, 0.011583182, - -0.023890475, 0.018882353, 0.017110726, -0.00019080158, 0.0031605274, - -0.04807593, -0.0025743663, -0.03691036, -0.02419889, -0.05816218, - -0.04853546, -0.027229147, -0.026379403, -0.002446483, -0.0051295157, - -0.03008413, 0.032108642, 0.006063415, -0.067446046, -0.034846347, - -0.007039345, -0.008500429, -0.039879862, -0.032576982, -0.042445395, - -0.072204076, 0.027956259, 0.032315254, 0.07806753, -0.0020407685, - -0.031051677, -0.011736518, 0.0069880323, -0.009972523, -0.09930928, - -0.017298918, 0.005290702, -0.06104409, 0.02117588, 0.040436752, - -0.019679844, -0.020214625, -0.012550731, -0.04025932, -0.04490428, - 0.011621292, -0.007577071, 0.047862977, -0.031544227, -0.008786881, - -0.017644092, 0.0055663497, -0.013646506, -0.037135947, 0.04924525, - -0.0018234124, -0.047520738, -0.042064894, 0.0072572725, -0.015367495, - -0.010120564, -0.0026342939, 0.03839734, -0.01883855, -0.02589389, - -0.00017829065, 0.024015972, 0.0070161177, 0.004507743, -0.015724823, - -0.061056077, -0.0013947989, -0.02544348, 0.008310242, -0.015022327, - -0.011136063, 0.018303012, 0.009448112, -0.02031195, 0.03188961, - 0.0062081125, 0.02820218, -0.012594078, 0.0063224626, -0.00954619, - -0.023135608, 0.012523927, -0.012760659, -0.012776552, -0.011372987, - -0.08131212, -0.0084835095, -0.04142833, -0.026282389, 0.009728734, - 0.035113964, -0.034299765, 0.013974377, -0.0059117875, 0.01721308, - -0.004433091, -0.010407665, -0.016602525, -0.0010094171, -0.015654704, - 0.01380259, -0.050543558, -0.016793542, -0.009172217, -0.005676333, - -0.019496042, -0.056397293, -0.023330716, 0.0052097295, -0.029926468, - -0.011207261, -0.013012273, -0.0060280976, 0.048715293, 0.029978586, - 0.030532993, 0.02870634, -0.046357725, 0.04339012, -0.060830064, - -0.006518718, -0.054292593, 0.03400347, -0.07526974, -0.015826488, - -0.02788611, -0.0049212384, 0.0075702476, -0.041972656, 0.009180117, - 0.026422644, 0.010221882, 0.014165553, -0.036773697, -0.048745736, - -0.016978651, 0.03278386, -0.016107025, -0.042473633, -0.05473623, - 0.056179613, 0.030534435, -0.022141695, 0.08409203, 0.014227736, - -0.048409075, 0.026945086, 0.0038538575, 0.0040622633, 0.044747487, - -0.0022316263, -0.018907474, 0.011390378, -0.00329731, 0.0031709666, - 0.0011425321, 0.060713362, -0.014486084, -0.007477225, -0.03711766, - -0.01061393, -0.016418917, -0.012389522, -0.040217075, -0.029620836, - -0.0085989265, -0.029718878, 0.007101476, 0.03757466, 0.037697066, - -0.0151942335, -0.058550727, -0.027705386, -0.038458228, 0.0067745014, - 0.015512784, 0.008402567, 0.0013500962, -0.023231369, 0.033486933, - 0.0024199053, 0.0089443205, -0.003432334, 0.05693006, -0.05417084, - -0.04722421, 0.015948676, 0.0010043678, 0.0027600797, -0.018538631, - -0.04332099, -0.04371835, -0.029011633, -0.027717115, -0.024547754, - 0.10153017, -0.034277346, 0.0127117, 0.034187764, 0.036794845, - -0.015675921, -0.03650151, 0.04399491, 0.031130493, 0.0061953412, - 0.019078813, -0.047730163, -0.034787316, 0.048949298, -0.013514012, - 0.014144462, 0.03317502, -0.0036152818, -0.0011104026, 0.003565137, - 0.002170611, -0.008949004, 0.009940159, -0.0542962, -0.06110458, - -0.011290004, -0.019751972, -0.0038344394, -0.042052526, 0.078272134, - -0.0131945135, -0.00036974755, 0.05486567, 0.0049165445, -0.024353554, - -0.018514158, -0.042746454, 0.035265777, -0.0051783896, -0.013295512, - -0.020662555, 0.034353036, 0.0019764383, -0.08231227, 0.00047221498, - -0.039332293, -0.026872054, -0.0361469, 0.0003794015, -0.069149435, - 0.073655084, -0.028487518, 0.0041497666, -0.016938224, -0.025622824, - 0.01184698, -0.02803248, -0.03105916, 0.008574444, 0.0035438542, - 0.0058675855, 0.029726055, -0.042220693, -0.027702132, -0.017684462, - -0.011014274, -0.037028503, 0.039877303, -0.027552202, 0.007988581, - 0.022885425, 0.006861897, 0.022343611, -0.040683076, -0.045012616, - 0.0034658068, -0.02851059, -0.01807336, -0.006451101, -0.034088362, - -0.02939513, -0.051268447, -0.07603432, 0.022585232, 0.030970246, - 0.010936385, -0.0011914944, 0.016313288, -0.0031051657, -0.03542637, - -0.06118812, -0.024741953, 0.044388745, -0.002313921, 0.0143918665, - -0.027682679, 0.0015085181, -0.060596503, -0.013456901, -0.03271577, - -0.011879522, 0.007813307, -0.0009996097, -0.037658047, -0.027242012, - 0.017782418, -0.026990375, -0.0270095, 0.0011452227, -0.015618435, - -0.025809055, -0.041759476, -0.08626999, 0.03361939, 0.013212589, - 0.03993393, -0.025980592, -0.05909791, -0.061908662, 0.00027881376, - -0.03950932, 0.0135348085, -0.017238216, -0.05982319, -0.00061916176, - -0.07856958, -0.021145172, -0.04004138, -0.058891475, 0.0033214616, - -0.029250586, -0.022918554, 0.031119535, -0.04245844, 0.0044222483, - -0.034059644, -0.02573976, 0.07628948, 0.027322572, -0.031941842, - -0.0111533245, -0.028093483, -0.010297126, -0.01518249, 0.010965295, - 0.038042147, -0.015785042, 0.030438049, -0.040599264, -0.029633742, - 0.00096906116, -0.03565131, 0.010587959, -0.040820766, -0.007760959, - -0.0064115217, -0.005333179, -0.0374873, 0.031982582, -0.030465096, - -0.009286652, 0.007134748, -0.039104637, 0.01674954, -0.022979796, - 0.0018624114, -0.025926676, -0.010426673, 0.028603604, -0.015402029, - 0.017703649, 0.047281142, 0.002747719, -0.026344122, -0.007273226, - -0.011281424, -0.004317446, -0.020142853, -0.049166918, 0.036945015, - -0.014457209, -0.027704827, -0.015739614, 0.03976182, 0.011948335, - 0.046542883, -0.007819474, -0.02966373, -0.037946824, 0.055831634, - -0.007053328, -0.012798063, -0.01754429, 0.017077837, -0.06514634, - -0.0003777625, -0.0039553847, 0.029114041, -0.030539954, -0.020622378, - -0.0499965, -0.026463099, -0.049156383, -0.026092047, -0.05270551, - 0.007044261, 0.026387941, 0.017633962, -0.029721385, -0.05609751, - -0.01968397, -0.027796576, 0.022083929, -0.031773712, -0.0030042753, - -0.03298293, -0.04414821, 0.051181946, 0.042284273, 0.006428464, - 0.011084734, -0.046418276, -0.012580319, -0.0043785665, -0.058995962, - 0.009856594, -0.030006435, 0.007037782, -0.02853996, -0.015421406, - 0.0017502526, -0.03511779, 0.05810648, -0.031624436, -0.03961968, - 0.0047627133, -0.002360665, -0.02092105, -0.021241946, -0.02260111, - -0.014317456, -0.04075339, -0.045727868, -0.059165657, 0.051186293, - 0.032567296, 0.032415945, 0.044136506, -0.030764032, 0.0013431221, - -0.048739877, 0.0012338834, 0.008334802, -0.017706843, 0.012178821, - -0.0016248004, -0.008764555, -0.05514615, -0.047990203, 0.005228162, - 0.0015902997, -0.03804604, 0.010662906, -0.06989625, -0.021287648, - 0.012518542, 0.0311708, 0.017926987, 0.043923203, -0.02527903, - -0.027015215, 0.00057329703, -0.03867903, 0.02126067 + "source.genres.concepts.id": [ + "ucmbnwkq" + ], + "source.subjects.label": [ + "Infant Formula", + "Bottle Feeding", + "Mexico" + ], + "source.production.dates.range.from": [ + -410227200000 + ] + }, + "vectorValues": { + "features": [ + -0.0061309896, + -0.01270164, + -0.0069698696, + 0.010985709, + 0.019584626, + -0.020330833, + -0.011421537, + 0.005360844, + 0.013763921, + 0.012827001, + -0.009728879, + 0.019019585, + -0.008742109, + -0.018797794, + -0.004620462, + 0.018761566, + -0.023634523, + -0.009564523, + -0.014166848, + 0.0018548722, + -0.023847664, + -0.03389272, + -0.019893086, + 0.0009723296, + -0.012383326, + -0.009304814, + -0.005734599, + 0.025236266, + -0.0059457417, + 0.0035533037, + -0.014646797, + 0.015670508, + -0.008559809, + -0.023471732, + 0.021182673, + -0.02146739, + 0.025899349, + 0.010819521, + -0.02492408, + -0.010788752, + -0.0076131527, + -0.022325063, + -0.0030482404, + -0.0055192504, + -0.0029486094, + -0.010712523, + 0.010643415, + 0.022418112, + -0.0022756986, + 0.0014947093, + 0.020346226, + 0.014136367, + -0.012715156, + 0.0132301925, + 0.0061793486, + -0.014165455, + 0.030142477, + -0.017785352, + 0.0035345843, + -0.019977126, + 0.009735014, + -0.0039858995, + -0.016850812, + 0.0061384514, + 0.02100664, + -0.016529083, + -0.039345004, + 0.0104638375, + -0.036173895, + 0.00043371675, + -0.0029692499, + -0.015912743, + -0.014542071, + 0.014214498, + 0.030216299, + -0.0046823495, + -0.012050138, + -0.024437891, + -0.02115947, + -0.020022165, + 0.015998507, + 0.0010431012, + 0.0016676312, + 0.004990322, + 0.0128734, + -0.0019510778, + -0.021831071, + -0.016336348, + 0.037646137, + -0.0013750093, + -0.013395466, + 0.0058938973, + -0.0005272393, + 0.024695525, + -0.01294356, + -0.015750466, + -0.00930247, + -0.009383133, + -0.01010373, + 0.0011128837, + -0.0045675724, + 0.009553616, + 0.00664245, + 0.0036517957, + 0.007827956, + 0.012311906, + -0.010122678, + -0.020960169, + -0.007940043, + -0.01731287, + 0.005272611, + 0.005018888, + 0.0064821946, + -0.006699673, + -0.015636586, + 0.010264164, + -0.0049519963, + -0.0532448, + 0.0011208776, + -0.018942228, + 0.0065644295, + -0.00017071447, + 0.0077061146, + -0.0070948415, + -0.00871054, + -0.008162878, + -0.015801797, + 0.0003025086, + -0.028214099, + 0.0044196784, + -0.001176907, + -0.007193275, + 0.0038916504, + 0.03146336, + -0.0028080689, + 0.006143744, + 0.0029218167, + -0.010281871, + -0.03127078, + -0.012842114, + -0.015963167, + 0.007681884, + -0.007480756, + 0.012260687, + -0.011574773, + -0.019820275, + -0.024586914, + 0.03570848, + -0.023725336, + 0.0049873576, + -0.0049038376, + 0.0025383537, + -0.0141537655, + -0.00967055, + 0.0011183819, + 0.027844165, + 0.012779967, + 0.021025794, + -0.0113607505, + -0.019270167, + -0.0025874018, + 0.0030046124, + -0.005082491, + 0.005753826, + -0.00013746475, + -0.012527164, + 0.015320928, + -0.009211753, + 0.0015513403, + 0.014187293, + -0.021027079, + -0.02633991, + 0.001733595, + 0.0042094053, + -0.04600267, + 0.011593857, + -0.023758564, + -0.0045957332, + -0.016701028, + -0.023870867, + 0.011023056, + -0.014137654, + -0.015194237, + 0.028870666, + 0.003465207, + -0.03179436, + -0.0035402812, + 0.017849742, + -0.012211281, + -0.026345782, + 0.026802707, + -0.006849954, + 0.0005663427, + -0.011508427, + -0.0057557737, + 0.00634853, + 0.0022624044, + 0.025356898, + -0.010399948, + -0.004813301, + -0.004200654, + -0.0020297905, + 0.0018126994, + -0.008514913, + -0.016564002, + 0.016175427, + -0.002815265, + -0.0011665815, + 0.0129392445, + -0.0048510996, + -0.0085987905, + 0.000786691, + -0.01924522, + -0.001146411, + -0.013862023, + 0.020800624, + 0.009816502, + 0.005741314, + -0.008214035, + 0.0045322, + -0.027553968, + -0.0028425741, + -0.012037951, + -0.018123824, + -0.0026486688, + -0.008252928, + 0.013643543, + 0.012490231, + -0.00057213934, + -0.032739088, + 0.015646655, + 0.016846988, + -0.019867951, + -0.022946946, + -0.023676634, + -0.013548918, + -0.033295386, + -0.0061794193, + -0.001530891, + 0.002680546, + 0.024567597, + -0.012771911, + -0.01049944, + -0.024538418, + -0.00046047213, + -0.0002513831, + 0.02995273, + -0.02044697, + 0.009462507, + -0.004833614, + -0.0201791, + 0.0046054283, + -0.0054124375, + 0.00081969955, + -0.012992131, + 0.010332054, + 0.015115008, + -0.001510811, + -0.016109051, + -0.019785753, + -0.010450802, + -0.003669134, + -0.038278148, + 0.012089834, + -0.019003969, + 0.0071288324, + -0.018303867, + -0.01751405, + -0.012116649, + -0.0068238704, + 0.01575526, + -0.03170538, + 0.0066021774, + -0.025707385, + 0.015796827, + 0.01915845, + -0.026385538, + -0.02376327, + -0.014719596, + -0.0071704257, + 4.961039e-06, + -0.013690402, + -0.015433394, + -0.02773077, + -0.007918128, + -0.014767926, + 0.0022240141, + 0.010950551, + -0.025491854, + -0.0056653577, + -0.025589213, + 0.01081014, + 0.01983089, + -0.022895144, + -0.011319709, + 0.0021595084, + -0.013519701, + 0.0066811754, + -0.0026511522, + -0.005786745, + 0.009115596, + -0.0011686757, + 0.0051415805, + -0.009530663, + -0.022681577, + -0.025830783, + 0.019402647, + 0.009303492, + -0.0021780182, + 0.018104902, + 0.008892484, + -0.00027968647, + -0.014350222, + 0.008886669, + 0.0019062221, + -0.009740033, + -0.018747203, + -0.016767796, + 0.022641733, + -0.0019692804, + 0.0010629944, + 0.016730746, + -0.0002270137, + 0.021532128, + -0.0067453035, + -0.015198597, + 0.0014964902, + -0.012275184, + -0.0049782246, + -0.027133984, + -0.0031183288, + -0.0075755552, + -0.0060934797, + -0.00792877, + -0.009746024, + 0.00782762, + 0.003225921, + -0.0183212, + 0.0022916347, + -0.019263227, + 0.006297139, + -0.022382418, + -0.020692166, + 0.0042411424, + -0.022560809, + -0.02625669, + -0.005288132, + -0.0075904224, + 0.019783229, + -0.01888733, + -0.011316347, + 0.031146077, + 0.0045319754, + -0.032678023, + 0.009696848, + -0.028184526, + -0.0068945396, + -0.007793228, + -0.026859669, + -0.0029610249, + -0.0047661555, + 0.0050293608, + -0.00076664553, + -0.016912233, + -0.031507533, + -0.008937245, + -0.0074227015, + -0.0070183473, + -0.015501028, + -0.003136244, + 0.010810193, + 0.0263064, + -0.023197528, + -0.0047712354, + -0.009376754, + -0.023398373, + -0.008595423, + -0.016574016, + -0.024510846, + -0.0014935493, + -0.017702881, + -0.0074588386, + 0.010640538, + -0.0019222947, + -0.0037819631, + -0.016619274, + -0.008169714, + 0.0035078817, + 0.019494798, + -0.010609969, + -0.01055025, + 0.008237647, + -0.012620179, + -0.017557291, + -0.022140628, + -0.029085506, + 0.0020457243, + -0.011966653, + -0.0077318293, + -0.016091248, + -0.005632581, + -0.011159527, + -0.01082942, + 0.01171936, + 0.012551443, + -0.024971051, + -0.0066119595, + -0.026869526, + -0.018074315, + 0.007161477, + -0.0037713891, + -0.00095123163, + -0.004437082, + 0.0016402226, + -0.0036189083, + -0.023982327, + -0.00364079, + -0.02734003, + 0.01220249, + 0.002543142, + -0.006441634, + -0.02401811, + 0.005355087, + -0.00838902, + -0.014833776, + -0.006502013, + -0.020085618, + 0.00051495066, + -0.011468087, + 0.008434563, + 0.0131288795, + 0.0013581482, + 0.002308064, + -0.007527107, + 0.010961185, + 0.0033083484, + -0.0049566617, + -0.007821733, + -0.027199011, + 0.009974408, + -0.027031034, + 0.0045074206, + -0.016004905, + -0.00043587963, + -0.0060499003, + 0.019000573, + -0.0049946117, + -0.010834746, + 0.013685784, + -0.0033917604, + -0.01821029, + -0.010606618, + -0.00803715, + -0.031403717, + -0.02435789, + -0.025481494, + 0.013832734, + -0.009726396, + -0.009051308, + -0.0042173145, + -0.019727876, + -0.019928185, + -0.005702103, + 0.0016586704, + 0.012447626, + 0.014311689, + -0.031539477, + -0.010192092, + 0.00024651355, + -0.004598249, + -0.029526168, + -0.014877812, + -0.00850185, + -0.0044123833, + 0.01640191, + -0.013042384, + -0.008304577, + 0.0024618632, + -0.03257297, + 0.0137708625, + -0.014234145, + -0.018641206, + 0.005895225, + 0.026548661, + -0.0016347833, + -0.0006213455, + 0.00036964245, + 0.012151052, + -0.009733332, + 0.0068718866, + -0.011990754, + 0.0018173873, + -0.010182826, + -0.00826226, + -0.011320919, + 0.012533514, + 0.020232424, + 0.0035516128, + -0.009373711, + 0.0036183298, + 0.028377453, + -0.0043848907, + 0.005185733, + -0.0020497607, + 0.013740471, + -0.01937071, + 0.008019444, + -0.0048764367, + -0.026637647, + 0.013593974, + -0.03646822, + -0.007782681, + 0.0031968255, + 0.0031811737, + -0.014036106, + -0.0163323, + -0.007639927, + -0.014788628, + 0.005705329, + -0.033271488, + 0.020287992, + -0.0015441396, + 0.008482245, + -0.018664902, + -0.015305244, + 0.008169593, + 0.022056052, + -0.011874279, + 0.013492132, + -0.016958116, + -0.0015495716, + -0.0045798365, + -0.018533716, + 0.00040826027, + 0.028921578, + -0.007626012, + -0.028448679, + -0.007984731, + -0.014162047, + -0.016318707, + -0.010667693, + 0.0013236931, + -0.009531352, + -0.015404528, + -0.013035314, + -0.00029178854, + -0.0012821296, + 0.005481774, + -0.002039975, + 0.007851496, + -0.010291756, + 0.008998991, + 0.009116741, + -0.0020021147, + 0.0034248915, + -0.024142427, + -0.0020526126, + -0.018599853, + -0.011363968, + -0.030575309, + -0.025223654, + -0.012775979, + -0.012997616, + -0.0011018355, + -0.0015162, + -0.014516974, + 0.014440858, + 0.0038370949, + -0.03663345, + -0.017808015, + -0.0036245212, + -0.0061250897, + -0.017813066, + -0.0139185935, + -0.021490972, + -0.03452914, + 0.011732624, + 0.01584532, + 0.04082882, + -0.0011259685, + -0.012763662, + -0.0085961465, + 0.0010447059, + -0.004040017, + -0.05057134, + -0.010435362, + 0.00057470746, + -0.03178255, + 0.010780104, + 0.02243543, + -0.011348085, + -0.011727235, + -0.007254572, + -0.018612158, + -0.022724185, + 0.00739419, + -0.0038283586, + 0.02401075, + -0.016633507, + -0.004947271, + -0.010319478, + 0.00040653427, + -0.0011048666, + -0.016209817, + 0.022641959, + -0.0025342219, + -0.025380244, + -0.02132365, + 0.0029041925, + -0.0067981244, + -0.004355165, + -0.00031383292, + 0.019844554, + -0.010417079, + -0.012637221, + 0.0023977004, + 0.012603986, + 0.0027767373, + 0.0014079718, + -0.008608446, + -0.03369083, + -0.0019238436, + -0.012250211, + 0.004695952, + -0.007748475, + -0.0047914605, + 0.007991203, + 0.0051746527, + -0.010081281, + 0.01585049, + 0.002734343, + 0.015945269, + -0.0060014366, + 0.0014504911, + -0.0035292725, + -0.011406254, + 0.005525943, + -0.008190014, + -0.0069375276, + -0.004859082, + -0.04092338, + -0.0067385347, + -0.02008636, + -0.013629149, + 0.0048229997, + 0.019810302, + -0.017650649, + 0.008287917, + -0.0061975857, + 0.009266025, + -0.0016437019, + -0.0052599534, + -0.013557477, + -0.001054901, + -0.009212293, + 0.0060853846, + -0.025174595, + -0.008514322, + -0.005340436, + -0.0014404466, + -0.01050272, + -0.027764196, + -0.01267346, + 0.0073404415, + -0.016751757, + -0.008755455, + -0.006006069, + -0.006404314, + 0.023600861, + 0.017031271, + 0.016781839, + 0.015880192, + -0.021824673, + 0.02350618, + -0.030613465, + -0.0029044573, + -0.027440177, + 0.01675511, + -0.040650286, + -0.0070174835, + -0.0118238935, + -0.0029870758, + 0.0025529158, + -0.019668993, + 0.004671214, + 0.013257602, + 0.006412939, + 0.008656379, + -0.016060406, + -0.024224686, + -0.007918607, + 0.016723901, + -0.008514032, + -0.021579169, + -0.02892974, + 0.02367583, + 0.014562312, + -0.013970153, + 0.042474065, + 0.008652115, + -0.024502402, + 0.014693564, + 0.0036104089, + 0.0017147484, + 0.023736253, + -0.0048202174, + -0.009319305, + 0.0055344016, + 0.000110433735, + 0.0039047075, + 0.00015747032, + 0.030674715, + -0.008298746, + -0.0029435055, + -0.017426543, + -0.007246786, + -0.010215946, + -0.007728919, + -0.017738739, + -0.016539946, + -0.0053232736, + -0.016611634, + 0.0032340188, + 0.017173821, + 0.017029122, + -0.008258878, + -0.035204012, + -0.015509277, + -0.01723896, + 0.002495578, + 0.006238556, + 0.0034843464, + -0.0029279608, + -0.011684106, + 0.014389272, + 0.0015455445, + 0.0040249377, + -0.000100323334, + 0.025903985, + -0.025694896, + -0.022231225, + 0.006120479, + 0.0025981541, + 0.0024982968, + -0.006679005, + -0.02275151, + -0.021529261, + -0.013187722, + -0.011478656, + -0.013357913, + 0.04962141, + -0.01666115, + 0.0064741187, + 0.017609479, + 0.01871619, + -0.006926909, + -0.017316923, + 0.022389023, + 0.015461884, + 0.000525282, + 0.008841872, + -0.025591217, + -0.016891178, + 0.025507454, + -0.0066, + 0.008441033, + 0.020305872, + -0.0015013014, + -0.0015329196, + 0.00037826676, + -0.00026480187, + -0.0023759727, + 0.0061296816, + -0.027022444, + -0.034823094, + -0.0028415532, + -0.009346112, + 0.00095979165, + -0.023069175, + 0.037066486, + -0.0066081476, + -0.0008027639, + 0.024613552, + 0.004847216, + -0.01195502, + -0.007439516, + -0.019519148, + 0.017955955, + -0.0023682148, + -0.0050703003, + -0.010225237, + 0.020238195, + 0.004155457, + -0.043279864, + 0.0017938926, + -0.021828964, + -0.015116859, + -0.013933887, + 0.0012137492, + -0.03478517, + 0.03653242, + -0.013712307, + 0.005180496, + -0.0100541385, + -0.010436658, + 0.0051084105, + -0.015076185, + -0.017135842, + 0.0037286298, + 0.0029292644, + 0.002347304, + 0.012778922, + -0.02307075, + -0.011247926, + -0.006414078, + -0.0076227174, + -0.016613118, + 0.022051448, + -0.008966346, + 0.004729395, + 0.012750094, + 0.00379288, + 0.010390619, + -0.021147562, + -0.02185805, + -0.00014250963, + -0.016566286, + -0.009053698, + -0.0037375032, + -0.016563643, + -0.016240714, + -0.026020322, + -0.038689464, + 0.011820846, + 0.015006526, + 0.004371243, + -0.0001544529, + 0.009002365, + -0.0028598495, + -0.015405998, + -0.033348285, + -0.0131469285, + 0.021834116, + -0.0023716236, + 0.0065578967, + -0.016011693, + -0.0004907687, + -0.028332386, + -0.005423189, + -0.017892068, + -0.0066188327, + 0.0048583103, + 0.0011328296, + -0.019364253, + -0.014926679, + 0.010224735, + -0.014552696, + -0.014153199, + 0.0010787989, + -0.0076265917, + -0.0118249105, + -0.022015795, + -0.044102687, + 0.020100147, + 0.0072064116, + 0.020882782, + -0.011209489, + -0.02859482, + -0.02998317, + 4.0414518e-05, + -0.01970148, + 0.0013471057, + -0.0075911814, + -0.033557408, + -0.005041419, + -0.038119648, + -0.008434478, + -0.021497918, + -0.036054388, + 0.001589588, + -0.01410158, + -0.012119081, + 0.019833827, + -0.020279612, + 0.0038025249, + -0.016305676, + -0.012040256, + 0.037316166, + 0.014014678, + -0.016713683, + -0.006943301, + -0.014966502, + -0.005124582, + -0.007903112, + 0.007237907, + 0.018936476, + -0.0051848856, + 0.018292267, + -0.021108406, + -0.01473745, + 0.00064853503, + -0.019168312, + 0.0033938996, + -0.020166066, + -0.0046244147, + -0.0031791825, + -0.0018038437, + -0.018633641, + 0.01680886, + -0.013946029, + -0.00415355, + 0.0015281406, + -0.021067554, + 0.010925903, + -0.011251973, + 0.00017970035, + -0.01288452, + -0.0037159328, + 0.013848929, + -0.004269597, + 0.008281164, + 0.023988605, + 0.0030738842, + -0.016049517, + -0.003018522, + -0.0041767, + -0.004730241, + -0.011396054, + -0.024265006, + 0.019800702, + -0.007743811, + -0.015076922, + -0.008540642, + 0.019501576, + 0.0041439757, + 0.022567563, + -0.0060832733, + -0.015212469, + -0.021573342, + 0.027424617, + -0.0040850327, + -0.007161199, + -0.007843736, + 0.008319693, + -0.031062381, + -0.0021923205, + -0.0010953266, + 0.017549878, + -0.013815338, + -0.013058739, + -0.026447285, + -0.013944016, + -0.027574537, + -0.012212854, + -0.02505193, + 0.0040664203, + 0.011481491, + 0.008972965, + -0.012748398, + -0.030105427, + -0.00932573, + -0.013074943, + 0.009774086, + -0.012008812, + -0.0005800564, + -0.015819063, + -0.02314968, + 0.026571427, + 0.018862644, + 0.0019018927, + 0.0064723953, + -0.024020273, + -0.007866291, + -0.000800107, + -0.030668108, + 0.0046827723, + -0.013991716, + 0.004149795, + -0.01468486, + -0.008447839, + 0.0012384538, + -0.017596025, + 0.029216934, + -0.013069616, + -0.021442661, + 0.0033593243, + 0.0019733177, + -0.012077775, + -0.008915677, + -0.012957312, + -0.006605884, + -0.020937264, + -0.024549529, + -0.03145252, + 0.02678505, + 0.015274092, + 0.01726352, + 0.019858371, + -0.017737508, + 0.001127068, + -0.023993313, + 0.00019556312, + 0.001723797, + -0.007989439, + 0.006036556, + 0.00035240335, + -0.0060041854, + -0.028382724, + -0.02510283, + 0.00070585747, + 0.0022663567, + -0.01985213, + 0.0039346707, + -0.0374947, + -0.011451144, + 0.010986993, + 0.017120153, + 0.008195627, + 0.022951633, + -0.010184471, + -0.01445596, + 0.0010119142, + -0.018701656, + 0.0103832185, + -0.0041101654, + -0.028881984, + -0.010625133, + -0.010350683, + 0.00015183348, + 0.027685435, + 0.014290901, + -0.011457914, + -0.0050523323, + -0.0065608015, + -0.013712891, + -0.01703598, + -0.0051478995, + -0.013361674, + -0.002213945, + -0.015486916, + 0.0007807103, + -0.014220275, + -0.02004623, + -0.017190315, + -0.016221872, + 0.0004057259, + -0.0061682137, + -0.008816764, + -0.010577197, + -0.009377262, + -0.00052010315, + -0.023312826, + -0.025534675, + 0.0069904434, + -0.00418069, + 0.0018464725, + -0.013269686, + -0.019208191, + -0.01723243, + 0.016559651, + -0.003910064, + -0.017881172, + -0.0089312345, + -0.039032258, + -0.004854777, + 0.0008352928, + 0.0020772812, + 0.00944302, + -0.027914664, + -0.0057734344, + -0.006345953, + -0.010633238, + -0.01704102, + 0.004866225, + -0.014562694, + -0.024460183, + -0.0030385833, + -0.011437926, + -0.008660867, + 0.0020914061, + -0.01936021, + -0.021857867, + 0.001721158, + -0.008175758, + 0.00010761271, + 0.000100579906, + -0.039727025, + -0.0033736692, + 0.0005867467, + -0.010309591, + -0.015082911, + 0.0195654, + 0.005956148, + -0.006516939, + 0.008983105, + -0.0036185659, + -0.017480226, + -0.017647816, + -0.002798789, + 0.024148377, + -0.0065390505, + 0.009401761, + -0.0053193145, + -0.0023110523, + -0.0128700165, + -0.017595017, + -0.021789072, + -0.025269086, + -0.0131739965, + -0.006200954, + 0.010220498, + -0.015219151, + 0.015562943, + -0.017304784, + 0.009188385, + -0.0035001643, + -0.019191215, + 0.01390678, + -0.012016581, + -0.010261281, + 0.015831277, + -0.006138852, + 0.0068957335, + -0.011637619, + 0.01947204, + 0.0037357856, + -1.1567145e-06, + 0.015669005, + 0.0061656386, + -0.0038101908, + -0.0026479643, + 0.008390061, + -0.008851184, + -0.011020069, + -0.016843745, + 0.013963144, + -0.004238431, + -0.0014420482, + -0.009965823, + -0.0022859734, + 0.01895518, + -0.013075053, + 0.02893942, + -0.003561144, + -0.021699743, + -0.020085974, + 0.016514422, + -0.009006672, + -0.011759889, + 0.014321534, + -0.0022358876, + -0.008574422, + -0.017347867, + -0.020576939, + -0.016670536, + -0.0071017877, + 0.006483244, + -0.010413819, + -0.021364236, + -0.004370703, + -0.008413311, + -0.03914011, + -0.016698726, + 0.0027208887, + -0.027804285, + -0.0019507325, + 0.009036121, + -0.025942089, + -0.029492807, + -0.0028972384, + 0.018856235, + 0.021072874, + -0.035673417, + 0.04424512, + -0.0074538365, + -0.025208363, + -0.007998146, + 0.0045911735, + -0.011201712, + -0.024703125, + 0.016403936, + 0.00048528617, + -0.02776857, + -0.023584168, + 0.0006191723, + 0.0046403618, + -0.0095266765, + -0.0035467208, + 0.0036865962, + -0.013668587, + 0.007931979, + 0.0024621454, + 0.0002963486, + -0.010192696, + -0.038852714, + -0.040446755, + -0.040223613, + -0.017091475, + -0.021453774, + -0.028975269, + -0.01180456, + -0.015075989, + -0.0074099484, + -0.00059333065, + -0.010602957, + -0.009754298, + 0.009655178, + -0.0040770196, + -0.004667612, + -0.00051471096, + -0.010154068, + 0.006162699, + -0.015332734, + 0.01627069, + 0.032360904, + -0.0018264729, + 0.02442809, + -0.0023222119, + -0.02614316, + -0.004004706, + -0.0007559919, + -0.008722238, + 0.010411229, + 0.0071967337, + -0.011927602, + -0.0071396986, + -0.000419264, + 0.003577727, + -0.020994402, + -0.0041196365, + -0.016977958, + -0.02570852, + -0.011177723, + -0.015477791, + -0.022527672, + -0.031491593, + 0.0067691617, + -0.00838654, + 0.0068129217, + 0.018548511, + -0.0043613007, + 0.007846515, + -0.0065463833, + -0.025858192, + -0.003030216, + 0.024455039, + -0.011884524, + -0.005287776, + -0.015649518, + 0.009597402, + 0.00942478, + -0.018050132, + 0.007633049, + 0.027877577, + -0.0010805696, + -0.011770911, + 0.009207445, + -0.011330834, + -8.036992e-05, + 0.005811028, + -0.010727097, + -0.023825567, + -0.0025297035, + 0.013768165, + 0.00585478, + -0.020364637, + 0.013374082, + -0.011054669, + -0.013427942, + -0.0037121912, + -0.0043852525, + -0.015655115, + -0.014369607, + 0.0021271785, + -0.014196077, + 0.0057382206, + -0.0020010164, + 0.020558797, + -0.013084515, + -0.0010180622, + -0.0018907012, + -0.021898692, + -0.023667462, + -0.021468014, + -0.0010151988, + 0.0038051386, + -0.028942829, + -0.015931834, + 0.027842257, + -0.0018538372, + 0.026941093, + 0.035572764, + -0.007613006, + -0.010600599, + -0.02066995, + 0.01097035, + 0.0062288675, + -0.016620873, + 0.0035637086, + -0.015858969, + 0.004388421, + -0.0019963759, + 0.027144803, + -0.015134502, + -0.015971044, + -0.0117285345, + -0.0048260866, + 0.0073390366, + 0.0054435567, + 0.022385545, + -0.0014577004, + -0.00014629468, + -0.0041950033, + -0.006671693, + 0.013899678, + -0.010031334, + -0.0064566717, + -0.0066990945, + 0.014460417, + -0.005265372, + 0.0069893864, + -0.0111242505, + -0.011337187, + -0.012032188, + 0.012047504, + -0.011522673, + -0.010038424, + 0.0060381754, + -0.0013488386, + 0.013818143, + 0.00889591, + -0.016773202, + -0.0033207021, + -0.024214841, + 0.015992481, + -0.02146853, + -0.0027239989, + -0.033051584, + 0.019198572, + -0.0052982117, + -0.023643896, + -0.01863898, + -0.011223631, + -0.019045055, + 0.014570812, + 0.0363288, + -0.017909603, + 0.0016516341, + -0.008019213, + -0.008072998, + -0.010756816, + -0.016320027, + -0.04366276, + 0.004788614, + -0.0014054292, + -0.021030096, + 0.01756514, + -0.0433751, + 0.009337958, + 0.0038197783, + 0.027799526, + -0.010814261, + -0.003123068, + -0.0014581088, + 0.027814459, + 0.009126566, + -0.006488342, + -0.024963407, + -0.005124294, + -0.0017231327, + -0.01728636, + 0.0068867286, + -0.019064274, + -0.033255156, + 0.009826238, + -0.028579287, + 0.016794913, + 0.002626243, + 0.024788832, + 0.00566921, + 0.007045072, + -0.009042944, + 0.007037374, + -0.0054490017, + 0.014168322, + -0.02397354, + -0.008271395, + -0.04480469, + -0.0097993305, + 0.012397113, + -0.012082932, + -0.019996336, + -0.0066779642, + -0.012902831, + -0.02372645, + -0.016795486, + -0.00642362, + 0.002714234, + -0.00092592946, + -0.01798376, + -0.008104912, + -0.009686243, + -0.00451939, + -0.002252911, + -0.016236119, + -0.010630308, + -0.01586409, + -0.026852792, + 0.02272781, + -0.018070666, + -0.020406587, + -0.0049469885, + -0.0005059069, + -0.022488132, + 0.021663994, + -0.014175625, + 0.003902386, + -0.0134707205, + -0.005556211, + -0.010090426, + 0.00501707, + -0.015036495, + -0.015680233, + -0.029357431, + -0.0063588736, + 0.0063439757, + 0.003579319, + -0.037850033, + -0.017849954, + -0.010564405, + -0.02732588, + -0.020551095, + -0.01071937, + -0.007676575, + -0.007706026, + -0.020970771, + 0.0013221161, + 0.008403895, + -0.0075334143, + -0.0010226456, + -0.03552039, + -0.029930355, + -0.009379707, + 0.0002451557, + -0.0039377743, + 0.0068033477, + 0.0059977258, + -0.029867394, + -0.005646314, + -0.030119918, + -0.007838027, + 0.0048910473, + -0.010844528, + -0.022945913, + 0.0011457885, + -0.015292549, + -0.0077840015, + -0.0033109253, + -0.017494481, + -0.0014774433, + 0.00063987274, + -0.00024910315, + -0.01655971, + -0.017748501, + 0.0019787997, + 0.00075457554, + 0.01782516, + -0.010284289, + 0.0019275335, + -0.017403558, + 0.007904948, + -0.0040012975, + -0.0045372164, + 0.013390927, + -0.03227629, + -0.009390032, + -0.005352683, + 0.002763675, + -0.0017696529, + -0.0429919, + -0.039309856, + 0.0035285482, + -0.0070474455, + 0.013102068, + -4.5777477e-05, + -0.004273215, + -0.029673109, + -0.018268459, + -0.0050177258, + -0.0017522619, + -0.0010872629, + -0.025935356, + -0.019123705, + 0.0139063, + -0.00812305, + 0.020753, + 0.027486626, + 0.011751113, + -0.009216506, + -0.0087650735, + 0.023719562, + 0.00083488564, + -0.003822497, + 0.017988425, + -0.003676203, + -0.001090321, + -0.0025665194, + -0.0036312714, + -0.004660581, + 0.006190674, + -0.01333253, + -0.019072069, + -0.026357112, + -0.033329595, + -0.016336482, + -0.013432092, + -0.007254307, + 0.0025324975, + 0.0027843532, + -0.020823058, + -0.016936151, + 0.025067711, + -0.014004097, + -0.00854383, + -0.023156043, + -0.019135933, + 0.014677177, + -0.0038710313, + -0.008438191, + -0.036423046, + -0.00838106, + 0.011418041, + 0.014931736, + -0.0058736345, + 0.023702903, + -0.0038498472, + -0.009619884, + 0.015329773, + 0.0017335077, + -0.006680765, + -0.015678653, + -0.01790262, + -0.013836487, + -0.013799749, + -0.0048742737, + -0.0076909577, + 0.0045260456, + 0.018427955, + -0.0015213733, + -0.0045231124, + 0.006344972, + 0.024456799, + 0.010620752, + -0.02028232, + 0.000940863, + 0.0059420005, + 0.012508409, + -0.011499379, + -0.016024379, + -0.02032427, + 0.0031071363, + -0.008401532, + 0.00818591, + 0.023758726, + -0.025902322, + 0.036273625, + -0.0031031368, + -0.007736384, + -0.0069693415, + 0.030017443, + 0.009942343, + -0.0009707233, + 0.008249515, + -0.009796649, + -0.002142949, + -0.024888868, + 0.008514515, + 0.0064602178, + -0.020633927, + -0.014771137, + 0.004353882, + -0.011972046, + 0.01588294, + -0.016719421, + -0.005929705, + -0.0085602, + -0.030117158, + -0.010072109, + -0.015047277, + 0.015297833, + 0.0057311915, + -0.009872076, + -0.0032310449, + 0.0048444564, + -0.008740454, + 0.004776549, + -0.004176466, + -0.0020922297, + 0.017009849, + -0.0044405786, + -0.0137280105, + -0.02486429, + -0.00338465, + 0.0149019975, + 0.019852085, + -0.027113808, + 0.001245444, + 0.012986334, + -0.008882206, + 0.03573287, + -0.014582597, + -0.009199147, + -0.017768044, + 0.01743275, + 0.007131604, + 0.00042297714, + -0.026261834, + -0.0007310968, + 0.002143825, + 0.0054683792, + -0.0017475836, + 0.012748793, + 0.0072978125, + -0.019568877, + -0.022068378, + -0.0003074254, + -0.0044899206, + -0.012809217, + -0.026648665, + 0.0028807728, + -0.013650466, + 0.019249842, + -0.0048217876, + 0.013458334, + 0.006943826, + -0.0014046418, + 0.01251576, + -0.013182192, + 0.007556315, + -0.004274364, + -0.015242932, + -0.03416229, + 0.034919344, + -0.0046459534, + 0.012938087, + -0.008015357, + -0.0008956911, + 0.013698733, + -0.013428112, + -0.0011774076, + -0.014429198, + 0.009911603, + 0.016123708, + 0.031375114, + 0.0065597347, + 0.012091927, + 0.018851696, + -0.011752311, + 0.0016978248, + -0.026080804, + -0.016079182, + 0.0077609466, + 0.022717565, + 0.009822068, + 0.0013964402, + -0.017945936, + -0.011662681, + -0.020308817, + -0.009970922, + 0.005960766, + 0.0074281627, + -0.017212922, + 0.01158851, + -0.03168726, + -0.023710944, + 0.004662629, + 0.013134036, + -0.0016077419, + -0.021810679, + 0.0014209966, + -0.0068211504, + 0.0069776704, + 0.0021211, + -0.0064508016, + 0.012105944, + 0.0051893736, + 0.01469766, + -0.00569076, + 0.011939849, + -0.018746285, + -0.033476826, + -0.022376306, + 0.02753038, + 0.0070010675, + 0.008344264, + -0.008029019, + 0.0028760661, + 0.010266011, + -0.028025445, + -0.014063154, + 0.015400778, + -0.005403176, + 0.004513898, + 0.0050710486, + -0.017879438, + -0.0070368145, + 0.022300547, + 0.002754331, + -0.002664302, + -0.013049462, + -0.01842395, + -0.0024415788, + -0.003196664, + -0.021453543, + 0.012981729, + -0.026992947, + 0.019150896, + 0.013937605, + -0.033669952, + -0.006498369, + -0.002068027, + -0.015924966, + -0.0024360514, + -0.019045768, + -0.00022757759, + -0.0029031564, + -0.0037624412, + -0.009577951, + -0.0024750018, + -0.022128703, + -0.013329555, + -0.023393793, + 0.005416438, + 0.004745051, + -0.018359711, + 0.007013859, + 0.0151244495, + -0.002184451, + -0.024358807, + 0.020116657, + -0.0029603099, + -0.00016171699, + -0.0026135994, + -0.007047366, + 0.0009787907, + -0.019750316, + -0.003517806, + -0.02430545, + -0.017664725, + -0.018162621, + 7.581635e-05, + 0.008381747, + 0.007776642, + 0.0023349319, + 0.008076552, + -0.0037628172, + -0.00040932142, + 0.014591293, + -0.01942719, + -0.015728926, + -0.014767906, + 0.041146647, + 0.031054543, + -0.0003078523, + -0.019212611, + -0.0076178126, + -0.008940967, + -0.026650276, + 0.00078427023, + 0.015687658, + -0.013271564, + -0.0124299405, + -0.024908468, + -0.025422545, + -0.011643995, + -0.000945494, + 0.0073007145, + -0.0032205184, + -0.00926988, + -0.020864096, + -0.028942084, + 0.00805273, + -0.017716268, + -0.010290842, + -0.0043022684, + -0.016153466, + -0.0018365415, + -0.028034974, + -0.007695428, + -0.0038354513, + 0.02148199, + 0.0011245222, + -0.0028086377, + 0.020159977, + -0.016231047, + -0.019964827, + 0.0015902189, + -0.02312927, + -0.00851557, + 0.0061005265, + -0.017368857, + -0.0123224, + -0.0045293192, + -0.035974927, + 0.0038731303, + 0.00080432044, + -0.003975607, + -0.017374784, + -0.02257581, + -0.005564155, + -0.0040103896, + 0.011851826, + -0.013479822, + -0.021689748, + -0.0056518186, + 0.01770875, + -0.011522977, + -0.0035006625, + -0.022446966, + 0.010630586, + 0.0036440664, + -0.038390804, + -0.01938151, + -0.017042903, + -0.010336647, + 0.0011215173, + -0.016512299, + -0.012079514, + -0.013783418, + 0.005871736, + 0.0103825815, + -0.004577433, + 0.023857586, + -0.015418111, + -0.025209775, + -0.016815754, + -0.000884021, + 0.00235268, + -0.0044410564, + 0.0017338966, + -0.00065652054, + -0.022417396, + -0.01024235, + -0.016518114, + 0.006730278, + -0.0016814942, + -0.0040775477, + -0.0071265935, + 0.013493922, + 0.013593626, + -0.0072559607, + 0.017712388, + -0.01727285, + 0.016184745, + -0.012335094, + 0.015463178, + -0.032140657, + -0.0013355616, + -0.012028417, + -0.015982982, + -0.019514138, + -0.008971704, + -0.009905829, + -0.014192599, + -0.043562155, + -0.032989047, + -0.015081699, + -0.0027978157, + 0.015792286, + 0.004510044, + 0.018950526, + -0.0027747692, + -0.022326514, + -0.0035182121, + -0.010348338, + 0.01736723, + 0.0068040397, + 0.012715835, + -0.0020160761, + -0.029142588, + -0.0075462125, + 0.007830862, + -0.015246932, + -0.00117645, + -0.013092155, + -0.0091736745, + 0.006495556, + 0.0039039913, + -0.019967724, + -0.034844037, + -0.023572749, + -0.006799917, + -0.024309244, + -0.008083041, + -0.02395028, + -0.0049557034, + -0.023769924, + 0.006996608, + 0.0041610487, + -0.010179944, + -0.010220226, + 0.0033757528, + 0.0051649865, + 0.0025751423, + -0.0026523499, + -0.01199358, + -0.008712745, + 0.023056159, + -0.016516104, + 0.0034666485, + -0.044232246, + -0.038390037, + -0.0039936965, + -0.0027902862, + 0.0136721805, + 0.026153203, + -0.01647772, + -0.032430816, + -0.01494037, + -0.018391073, + 0.0026488057, + -0.015082901, + -0.03351784, + -0.010266379, + -0.011120021, + 0.0047265957, + -0.0108107515, + -0.003812306, + 0.007090412, + -0.031534642, + 0.0069666924, + -0.011151166, + -0.007407409, + 0.016338276, + 0.027147567, + -0.0019652112, + -0.022799684, + -0.014939101, + -0.01322209, + -0.019710908, + -0.011630422, + -0.016284699, + -0.01300914, + -0.033513222, + 0.003318308, + 0.005378735, + -0.008346673, + -0.02203782, + 0.0061593256, + 0.014544166, + -0.02755079, + 0.015174367, + -0.0333696, + -0.033287913, + 0.0075763445, + -0.0027287262, + -0.0048708627, + -0.020282168, + -0.0033323579, + 0.0035256506, + -0.008704772, + -0.02795186, + -0.023668097, + -0.00908897, + 0.007782499, + 0.0062568323, + -0.0025974703, + 0.0023659025, + 0.0034720693, + -0.0202258, + 0.009540137, + -0.03015127, + -0.0318434, + -0.022779765, + 0.01051959, + -0.018990105, + 0.002824907, + 0.006964984, + -0.021822333, + -0.014916171, + -0.0142444875, + -0.007752122, + 0.015156603, + -0.030882085, + -0.013073829, + 0.013957683, + -0.0054906, + -0.0028260008, + -0.005222632, + 0.00095657556, + 0.028132591, + -0.005251253, + 0.01061547, + -0.0028506138, + -0.0160644, + -0.009616477, + -0.013932586, + 0.02189553, + -0.010916017, + 0.007880667, + -0.0029383106, + 0.0032384226, + 0.01258839, + -0.004434372, + 0.028092293, + -0.0014052364, + 0.002658929, + -0.01927245, + 0.008776332, + -0.006940515, + -0.013923882, + 0.024190376, + 0.018716946, + -0.014938959, + 0.008272214, + -0.0032172925, + -0.008596529, + 0.009927028, + 0.0058594737, + 0.0066861766, + -0.020917434, + -0.007488825, + 0.0059993197, + 0.002460247, + -0.0025263643, + 0.0017666697, + 0.005611142, + -0.0019573602, + -0.013653124, + -0.017031146, + -0.008117066, + -0.0026449119, + 0.018708957, + -0.037054583, + -0.01890219, + -0.012753379, + -0.015747495, + 0.005829585, + -0.019689877, + 0.023916299, + -0.014140547, + 0.00087913254, + 0.008412332, + -0.004802831, + -0.021729885, + 0.0039058332, + -0.00990529, + -0.004529849, + 0.00075905496, + 0.03423199, + -0.010653353, + 0.024085043, + 0.016285498, + -0.015747136, + -0.008152782, + -0.010686459, + -0.0068653906, + 0.010128181, + -0.004009647, + 0.008779884, + -0.017113995, + 0.0018720714, + 0.010049366, + -0.002397175, + 0.007762356, + 0.01637446, + -0.019495543, + -0.0016275173, + -0.0034298457, + 0.006468321, + -0.01990946, + 0.0149863055, + -0.011505367, + -0.020601973, + -0.008491741, + 0.0236368, + -0.029575467, + -0.014315574, + 0.014629944, + 0.012172386, + 0.0043340567, + 0.009453751, + 0.0033183151, + 0.0036163966, + 0.010201435, + -0.025525438, + 0.004772666, + 0.03871898, + -0.014170075, + -0.009787038, + 0.0060719037, + 0.0139082335, + 0.007440579, + 0.013335279, + -0.013327906, + 0.0052568447, + -0.00926156, + 0.005488984, + 0.014721058, + -0.0028046179, + -0.0073419716, + -0.010688305, + 0.0058167186, + -0.013644582, + -0.013336538, + 0.0035107844, + -0.017299112, + -0.00583211, + -0.00021588885, + 0.0054045483, + -0.014243117, + 0.013169692, + -0.0046522263, + 0.0023610718, + 0.0018154978, + 0.012195183, + 0.0066135013, + 0.0053385836, + 0.008103161, + -0.009129439, + -0.009961075, + -0.003782773, + 0.024593415, + -0.015436598, + -0.025888996, + 0.0044604857, + -0.009918503, + 0.0035212047, + -0.018462772, + 0.005830416, + 0.003704794, + -0.0083205085, + -0.012399342, + -0.02736034, + -0.0064656883, + 0.00046265032, + -0.009739358, + 0.011563356, + -0.013106038, + -0.014516899, + -0.031113284, + 0.0004893772, + 0.022024158, + 0.00030644995, + 0.0021460722, + -0.0066420543, + -0.0018096786, + -0.018681461, + -0.025619958, + 0.003924716, + 0.013360997, + -0.028108856, + -0.020061927, + -0.015007847, + -0.0049868817, + 0.011148496, + -0.0016938685, + 0.007137388, + -0.010803834, + -0.0040935734, + -0.026083447, + -0.03187718, + -0.0038272562, + 0.008527512, + -0.0100262435, + 0.010537728, + 0.015178565, + -0.0285055, + 0.008614318, + 0.025380353, + 0.00057484896, + -0.027145043, + 0.001453686, + -0.017163502, + 0.00022427287, + 0.019332118, + -0.0013319482, + 0.008350892, + 0.0045889392, + -0.0061391927, + -0.0113292625, + -0.02187639, + 7.548987e-05, + 0.006435542, + -0.031407285, + -0.0052067926, + 0.00035291616, + -0.0054892423, + 0.0072716055, + 0.016331559, + -0.011074189, + -0.011138067, + 0.011698977, + -0.025085822, + -0.015495768, + -0.0015782245, + 0.016822208, + -0.00902421, + 0.0100985, + -0.027006557, + 0.0031299174, + -0.016677102, + -0.0101080425, + -0.00256902, + -0.008190096, + 0.007188614, + 0.011392969, + -0.022992663, + 0.0029457784, + 0.013978843, + -0.013973384, + -0.010820912, + -0.010392852, + 0.0019097998, + 0.01485075, + 0.021534385, + -0.010940747, + -0.007528582, + -0.016327832, + -0.014661425, + -0.004317617, + -0.0031379203, + -0.010483531, + 0.015501895, + -0.0075234063, + -0.015620905, + 0.011135296, + 0.0028448678, + -0.0032712603, + 0.009984039, + -0.008226955, + -0.012782267, + -0.005988382, + 0.02103353, + 0.009140222, + -0.0038065517, + -0.027208159, + -0.0002588372, + 0.0005433987, + 0.02049692, + -0.006256776, + -0.019736785, + 0.004957676, + -0.002194855, + 0.006575824, + -0.016652051, + -0.009560588, + -0.016859112, + 0.003855769, + 0.008142705, + -0.003805527, + 0.019233946, + -0.018223701, + -0.024081122, + 0.0073094787, + -0.018453194, + 0.0017213395, + -0.0055875685, + -0.012192, + 0.0019889278, + -0.016788913, + -0.0010614526, + -0.01801691, + -0.011492958, + -0.011108621, + -0.017240625, + -0.0067543997, + 0.020687992, + 0.010970572, + 0.018015053, + -0.0049843974, + -0.03086399, + 0.007917788, + -0.008480999, + -0.01089089, + -0.0198376, + -0.0057411874, + 0.0069234925, + -0.022105975, + -0.018939737, + -0.018426342, + -0.021048402, + 0.01098362, + 0.011704786, + -0.011189647, + -0.006771258, + -0.027822684, + 0.0038268105, + 0.016691424, + 0.0037122022, + -0.008272694, + 0.036247037, + 0.0040763277, + 0.009018466, + -0.03805769, + -0.010002943, + -0.0030381184, + -0.0017126967, + -0.009569055, + -0.009768144, + -0.01679003, + 0.018554322, + -0.019609353, + 0.0025593478, + -0.018761935, + -0.010046688, + 0.0022551406, + -0.005848041, + 0.007247594, + -0.02640002, + -0.027929738, + -0.014898332, + -0.018354233, + -0.02445109, + -0.00943241, + -0.02714263, + -0.01607339, + 0.0060906727, + 0.016550837, + -0.02359947, + -0.028320689, + 0.016739815, + -0.012185505, + -0.012920262, + -0.004571436, + -0.0071016406, + 0.0062130354, + -0.016269425, + 0.0011216379, + -0.012553623, + 0.032444876, + -0.0094211055, + -0.03580713, + -0.005030256, + 0.013692648, + -0.024932476, + 0.013786321, + 0.01296906, + -0.009279094, + -0.0068356153, + -0.017790496, + -0.016700687, + -0.009320542, + -0.006051469, + 0.0042276103, + 0.006801967, + -0.013323459, + 0.0063260347, + -0.0057062027, + 0.0061932304, + 0.01411275, + -0.009330984, + -0.02133306, + -0.009391608, + -0.022120431, + -0.00045381213, + 0.003303417, + 0.0055357195, + -0.008639618, + -0.057297654, + 0.0059089866, + -0.031397793, + -0.009839552, + 0.022798387, + -0.00856345, + -0.028773667, + -0.023230763, + -0.00436793, + -0.019582832, + -0.019099696, + 0.0027051836, + -0.024568992, + -0.01349427, + -0.016033197, + 0.004548071, + -0.013632439, + 0.00612237, + -0.02792237, + 0.0046182508, + -0.005512215, + 0.0008052884, + -0.0048075737, + -0.039137438, + 0.0027973535, + -0.001258665, + -0.007144867, + 0.007670588, + -0.016815357, + -0.01460334, + -0.0084542865, + 0.014322751, + 0.0022910605, + -0.04936406, + -0.009276195, + -0.016258245, + -0.005440991, + -0.035529036, + 0.029267289, + -0.007389359, + -0.017052539, + 0.0016867939, + -0.0149217965, + 0.007601227, + -0.010978754, + -0.0102379015, + -0.0013545847, + 0.005295399, + -0.02199236, + -0.014662302, + 0.019681606, + -0.0041650515, + -0.0045335894, + -0.009141693, + -0.002464799, + -0.0011823314, + -0.014094767, + 0.0013741497, + -0.002604078, + -0.0033732832, + -0.017335907, + -0.014883297, + -0.0072830543, + -0.009320287, + -0.010085745, + -0.026562784, + -0.00054828764, + -0.009385398, + -0.0031000609, + 0.018163558, + -0.002697518, + 0.0011533456, + -0.020740328, + -0.0127317505, + -0.014762151, + 0.0002922619, + 0.010832745, + -0.030404668, + -0.004968595, + -0.014154183, + -0.010914747, + 0.007849512, + -0.022704946, + -0.008304119, + -0.008710227, + -0.013597902, + 0.013088655, + -0.0014191665, + 0.022659885, + -0.011936877, + 0.0029677483, + 0.00294248, + -0.03974096, + -0.010404519, + 0.01849406, + 0.01145294, + 0.005463716, + -0.005849341, + 0.017441344, + 0.039526142, + -0.0030196, + -0.012727267, + -0.015802043, + -0.011774477, + 0.0020065554, + -0.00012546012, + -0.0069877193, + -0.00936452, + -0.021486754, + -0.00012985062, + 0.025973475, + 0.016331319, + 0.00046706334, + 0.01328174, + -0.012490533, + -0.0032384382, + -0.011039115, + -0.028513428, + -0.008199611, + -0.035488587, + 0.039811835, + -0.035966523, + -0.023281693, + -0.008327094, + -0.0020502466, + -0.046779383, + 0.01607658, + 0.012667225, + -0.014409807, + -0.014658014, + -0.009375854, + -0.0023358797, + 0.0134154735, + 0.00085162296, + -0.00956662, + -0.0069799493, + 0.017617816, + -0.0056741172, + 0.006334945, + -0.0063844123, + 0.050042614, + 0.017079413, + 0.00043202445, + 0.015917849, + -0.013115707, + 0.0017845851, + -0.007678131, + 0.013547157, + -0.018095303, + -0.01942761, + -0.011311434, + -0.007851631, + -0.025098026, + -0.01880554, + -0.024845498, + -0.017111806, + -0.0013713571, + 0.0033079463, + -0.02223925, + -0.003170173, + -0.005615319, + -0.0029089628, + 0.0033344387, + -0.009104414, + 0.016341688, + -0.01972577, + -0.028810546, + 0.01799114, + -0.012590445, + 0.007658884, + 0.000124955, + -0.03658431, + -0.0018248687, + 0.009515552, + 0.0017132364, + -0.0015887257, + -0.0106662875, + -0.014465326, + -0.015084466, + -0.01024749, + -0.016527506, + -0.016558426, + -0.03205705, + -0.008642033, + -0.0023937465, + 0.0047734273, + 0.016014112, + 0.0145919155, + -0.020144131, + -0.02861873, + -0.008531873, + -0.0119728185, + -0.011931343, + -0.010907496, + 0.015453987, + -0.014624039, + 0.0051885014, + -0.0434842, + -0.008691497, + 0.009689179, + -0.010019466, + -0.014487007, + -0.01905032, + 0.020413257, + -0.00817892, + -0.00034363396, + -0.0015127212, + 0.036455702, + 0.020802561, + -0.014830034, + 0.0061306073, + 0.001544333, + -0.012451884, + 0.002284308, + 0.014835662, + -0.0010418218, + -0.029947378, + 0.017415324, + 0.025868002, + 0.011337215, + 0.023796463, + -0.037157267, + 0.015714195, + -0.012015748, + -0.013952072, + -0.0004396189, + -0.016694417, + 0.0009143354, + 0.014594477, + -0.04417325, + 0.016880209, + -0.0018631163, + 0.005309925, + -0.0071094623, + 0.0070240055, + -0.0142549295, + 0.01754143, + -0.0071771163, + -0.009718996, + -0.0035033503, + 0.01484275, + -0.0019894266, + -0.017401831, + 0.0017409237, + -0.024060829, + -0.008304384, + 0.0024049876, + -0.00774913, + -0.0028569198, + -0.011010543, + 0.003161433, + -0.021622896, + -0.01577274, + -0.035142872, + -0.016517159, + 0.008977994, + -0.02346325, + -0.024772633, + 0.014800263, + 0.012718515, + 0.019448502, + -0.011521529, + -0.033083335, + -0.0066707814, + 0.0024447201, + 0.010954727, + 0.0043758745, + 0.00575587, + -0.004641191, + -0.012133181, + -0.026651295, + -0.014002722, + 0.0053812717, + -0.022444103, + -0.015263364, + 0.002876716, + 0.012389901, + -0.020538606, + -0.0013890315, + -0.015200292, + 0.0047759353, + 0.017713137, + -0.00662661, + -0.042312514, + -0.007126097, + -0.0081846425, + -0.02411475, + -0.00092096213, + -0.015530446, + 0.0030871308, + -0.015873615, + 0.014720227, + -0.0077262437, + -0.015773118, + -0.03088245, + -0.0025085085, + -0.00073087006, + -0.026487524, + 0.0012495387, + -0.0008693305, + -0.0075759096, + -0.0031969042, + -0.005769108, + 0.0011503804, + -0.004166365, + 0.0040538767, + 0.0013757178, + -0.01907903, + 0.018051516, + 0.0049556876, + -0.016902851, + -0.0044950047, + 0.006168269, + -0.040340025, + 0.016466456, + -0.0048529743, + 0.000112211026, + -0.0031036844, + -0.015079314, + -0.010832046, + -0.0034981207, + -0.011109189, + -0.0034668467, + -0.021328157, + -0.022657555, + 0.024397591, + -0.0065755276, + -0.01757277, + 0.008318918, + 0.014119365, + -0.009169785, + -0.020193364, + -0.005800532, + 0.0080289375, + -0.012183302, + -0.019145831, + -0.023432065, + -0.02379663, + -0.04089264, + 0.004326194, + -0.0013439349, + 0.016545665, + -0.0001554603, + 0.0050163544, + -0.00879512, + -0.008159077, + -0.008641732, + -0.005311459, + -0.007857951, + -0.006773855, + -0.013740571, + 0.0023424025, + -0.012071149, + -0.003101826, + -0.0066351485, + -0.0026215366, + -0.0074340333, + -0.0006883305, + -0.011802817, + -0.0016812006, + -0.0033503545, + 0.0036903536, + 0.003745488, + -0.012264861, + 0.015635107, + 0.0002950511, + -0.0035646027, + 0.00013118108, + -0.015810277, + -0.0051707425, + -0.009217484, + 0.013860184, + -0.009030421, + 0.0010941629, + -0.009384905, + 0.0076683518, + -0.014360136, + -0.014422679, + 0.0007387286, + 0.0014501729, + -0.010678631, + 0.016509647, + -0.009707466, + -0.017031847, + 0.018564241, + -0.0022335318, + 0.015971374, + -0.0054247193, + -0.020210918, + 0.021453092, + -0.0109655075, + -0.006458591, + -0.022321848, + -0.002969391, + -0.010456026, + -0.019725809, + -0.018791925, + 0.0032159286, + 0.011391549, + -0.0026078208, + 0.003563041, + 0.017927283, + -0.008081373, + 0.0136599755, + -0.01227924, + 0.0089757005, + 0.019154897, + -0.003383623, + -0.009856384, + 0.0077277278, + -0.007529013, + 0.01759512, + 0.016642038, + -0.01690934, + -0.013498244, + 0.0018214012, + 0.00073556125, + -0.0110096475, + -0.012660598, + -0.0030959542, + -0.013103104, + 0.0005837156, + -0.0059629926, + 0.0088058235, + -0.017803991, + 0.011788895, + 0.0015456771, + -0.030764597, + 0.00044091215, + 0.005995925, + -0.008358383, + 0.0027030138, + -0.018404553, + -0.04176923, + -0.02541466, + 0.00013983487, + 0.0044496227, + -0.018520411, + 0.0151785035, + 0.0056972234, + -0.01859345, + -0.0024128258, + -0.004756739, + 0.014803692, + -0.008505507, + 0.01141459, + -0.019982703, + 0.007485796, + -0.0016491758, + -0.006289901, + -0.017774811, + 0.0077805533, + 0.009130778, + 0.016530113, + -0.007672646, + -0.023649253, + -0.010018291, + -0.005656302, + -0.013387846, + -0.01846103, + -0.015803268, + -0.021137688, + -0.036878735, + -0.013227151, + -0.005701609, + -0.020160606, + 0.0027564962, + -0.011485018, + -0.013385575, + -0.007165391, + -0.005098107, + -0.016061146, + 0.012938731, + -0.013126108, + 0.009392224, + 0.011237537, + -0.028931675, + 0.007109179, + 0.0027042944, + -0.01721032, + -0.018647155, + -0.012785564, + -0.0026177221, + -0.015445254, + 0.0034038383, + -0.015018707, + 0.024842603, + -0.029746778, + -0.009091212, + -0.018750409, + 0.009906848, + -0.0026548975, + -0.0059125707, + 0.011449035, + -0.021681003, + -0.023166884, + 0.022138206, + 0.019868845, + -0.019159697, + -0.015373227, + -0.013766149, + -0.0037060666, + 0.0014421892, + -0.025075544, + 0.0003117801, + -0.02350136, + -0.02665543, + 0.014363953, + -0.006889777, + -0.001302021, + 0.0005750364, + -0.018326987, + -0.006304074, + 0.0028184282, + -0.013767778, + 0.0069751698, + -0.0059258486, + -0.018812483, + 0.017667165, + -0.006915083, + -0.021341935, + -0.008680547, + -0.0018141811, + 0.0053108125, + -0.018994683, + 0.0058033443, + -0.019010542, + -0.008640154, + -0.01481591, + 0.020191588, + 0.0052657314, + 0.00452261, + 0.014596986, + -0.011173107, + 0.002302333, + -0.019538118, + -0.009448089, + -0.012741997, + -0.0062809465, + -0.0027445199, + -0.021679893, + -0.0020878776, + 0.021145841, + -0.029639306, + 0.015080609, + 0.023902148, + -0.002558281, + -0.002891325, + 0.006195276, + -0.02387239, + -0.015350756, + 0.010038079, + -0.014872853, + -0.0025359641, + -0.016047036, + 0.013866655, + -0.005767892, + 0.016612513, + -0.012412079, + 0.0075966152, + 2.4838411e-05, + -0.019401316, + -0.039731264, + 0.006418645, + -0.0037628482, + -0.013233448, + -0.018830795, + 0.017450219, + -0.00550823, + -0.0065742326, + -0.0016152121, + -0.02163306, + -0.007283142, + -0.037309855, + -0.034490615, + -0.027342541, + -0.0069312467, + -0.011139833, + 0.02198631, + -0.018502748, + 0.018040385, + -0.0049309987, + -0.01892793, + -0.009473363, + -0.036772862, + 0.019115604, + -0.009019965, + -0.0034049326, + 0.00026389197, + -0.015882915, + -0.019804982, + -0.022333337, + -0.030615173, + 0.02883824, + 0.026548667, + -0.0024950854, + 0.010308702, + -0.035446562, + -0.009116848, + 0.018389257, + 0.007300179, + -0.012298049, + 0.016856935, + 0.040201083, + -0.017448995, + -0.0016789924, + 0.008049231, + -0.0020726605, + -0.0018748124, + -0.016294299, + 0.017788803, + -0.0092853615, + 0.0035769672, + -0.011000245, + -0.021073623, + 0.015082196, + -0.0135876695, + 0.0094577875, + -0.011003889, + -0.009017976, + 0.01770329, + 0.0016356669, + -0.02053123, + -0.017607268, + 0.003373136, + -0.018588308, + 0.0027875996, + 0.0013986893, + 0.0023576857, + -0.0019733498, + 0.008434086, + 0.012581441, + 0.019508274, + 0.017257782, + -0.017702881, + 0.0019659686, + -0.017463785, + 0.01499149, + -0.025669344, + -0.01333568, + -0.031191306, + -0.0021068924, + -0.004232003, + 0.008989748, + 0.016125267, + -0.012661896, + 0.0054616155, + -0.032238983, + -0.009521261, + -0.017459948, + 0.008628133, + -0.021355713, + 0.0023878429, + 0.011196135, + 0.010803818, + 0.029078795, + 0.01098652, + 0.01100193, + -0.017197, + -0.009330576, + -0.009671669, + 0.0030492207, + 0.0032145984, + -0.021741193, + 0.0017394122, + 0.0077260216, + -0.022212135, + 0.01695423, + 0.0072987843, + 0.0056530484, + 0.016186869, + -0.022935424, + 7.537828e-05, + 0.0092063565, + 0.01771807, + -0.0132965455, + 0.015755689, + -0.021394707, + 0.0029291953, + -0.019311083, + 0.014830577, + -0.012733294, + 0.009176264, + -0.004922702, + -0.0012967595, + -0.009385028, + -0.021847546, + 0.021945952, + -0.0058195377, + 0.0044795875, + 0.0033870607, + 0.0031893994, + -0.011237451, + -0.02390466, + -0.013387103, + -0.0018783864, + -0.00066323485, + 0.0027686153, + -0.008970496, + -0.006408011, + 0.012112415, + -0.027700843, + -0.014666403, + -0.016510736, + -0.000104920306, + -0.0114264125, + -0.017265223, + 0.022004541, + -0.016617082, + -0.012972374, + 0.009163068, + -0.028932964, + -0.025757449, + 0.009833702, + 0.011652321, + -0.010233954, + 0.0023766435, + 0.027676677, + -0.009992735, + -0.01364134, + -0.014527479, + -0.024432456, + -0.012006574, + -0.033650476, + -0.015415103, + -0.019898774, + -0.022908151, + 0.018312233, + -0.0066363965, + -0.03750753, + -0.0029207563, + -0.01522654, + -0.00547786, + -0.002883209, + 0.01774849, + 0.015029017, + -0.026037354, + -0.0033622344, + -0.0064369477, + -0.027519405, + 0.0060869968, + 0.029097226, + 0.0012448732, + -0.007402302, + 0.0012883046, + 0.011357254, + -0.010413423, + -0.007752559, + -0.013667428, + -0.0015535908, + -0.020540174, + -0.0054289512, + -0.024821848, + -0.021831783, + -0.0028519607, + -0.0087091485, + 0.0124250045, + -0.037912633, + 0.03031521, + -0.011262166, + 0.020678379, + -0.02095746, + 0.0084943455, + -0.0091776885, + 0.02303735, + -0.0020389878, + 0.008518852, + -0.005643993, + -0.0004961016, + 0.01833841, + -0.034737784, + -0.017615603, + -0.0034668408, + 0.0037208141, + -0.009487305, + -0.009832349, + -0.012416419, + -0.01716549, + -0.012749732, + -0.007465908, + 0.0013470582, + -0.015939003, + -0.013931571, + -0.005493473, + -0.011607405, + -0.02314479, + -0.009703094, + -0.024949891, + -0.010684106, + 0.0071100136, + -0.007163377, + -0.012452735, + -0.010843333, + 0.020363105, + -0.04403411, + -0.022439668, + 0.022089863, + -0.0031692204, + -0.029553972, + -0.022429567, + -0.0073911427, + 0.011792151, + -0.011278812, + -0.0109645445, + 0.022808813, + -0.0293348, + -0.011299658, + -0.0006898108, + -0.034015592, + 0.0117675075, + -0.029431768, + -0.027919441, + -0.0123139415, + -0.03345647, + 0.0043070964, + -0.022171242, + 0.005530919, + -0.022106834, + -0.006024749, + 0.0016405907, + -0.018363673, + -0.00023574558, + -0.028732926, + -0.03756689, + 0.007561131, + -0.0182007, + -0.014056145, + -0.006621592, + 0.008276839, + -0.011716506, + -0.017162444, + -0.004580682, + -0.015654428, + -0.010476269, + -0.0057621854, + -0.0052039474, + -0.017650116, + -0.027594207, + 0.0063466826, + -0.010828098, + 0.0054163095, + -0.01601124, + -0.018247392, + 0.016567301, + -0.00075217534, + 0.0061962553, + -0.026185688, + -0.028969884, + 0.02539304, + -0.0070067756, + -0.0018190576, + -0.031209664, + 0.006013129, + -0.009739084, + 0.010249249, + -0.023922887, + -0.014256344, + -0.011163838, + -0.0028578422, + -0.033336386, + 0.017364744, + -0.011415607, + -0.008631994, + -0.007211142, + -0.023948878, + -0.034782384, + -0.017586557, + -0.033787493, + 0.0014197621, + -0.016866269, + -0.015450134, + -0.018590042, + 0.006154535, + -0.0022622978, + -0.009522395, + 0.016115937, + -0.0067548202, + 0.0066521685, + -0.004788673, + 0.009855371, + -0.01680785, + 0.028138964, + -0.008437373, + -0.03168626, + -0.039388683, + -0.0011802487, + -0.0016544628, + 0.027008437, + -0.009616368, + -0.046286795, + -0.007848642, + -0.0123609165, + -0.0032456857, + -0.01687615, + -0.009337184, + 0.015615714, + -0.011858711, + -0.0012536827, + 0.023973228, + -0.011218118, + 0.023955518, + -0.014913223, + -0.0049484624, + 0.0011500772, + -0.037639342, + -0.020423071, + -0.014986642, + 0.018752791, + -0.018474085, + -0.029216144, + -0.008777102, + -0.016262162, + 0.007804559, + 0.008812364, + -0.011195793, + -0.012200841, + -0.00093360955, + -0.0042672525, + 0.009375537, + 0.0037447156, + 0.010684968, + -0.014655201, + 0.0024608353, + -0.0026936184, + 0.012944672, + -0.007463818, + -0.0032610404, + -0.02799588, + -0.009488596, + -0.006182054, + -0.021267317, + 0.015253139, + 0.004462984, + -0.01667589, + 0.010278932, + 0.00016175031, + -0.008385434, + 0.023271391, + 0.015351616, + -0.011823012, + 0.016373578, + -0.01446401, + -0.014753101, + -0.010735043, + -0.006900781, + -0.019074392, + -0.0035438656, + -0.0007510468, + -0.001253977, + -0.009127753, + -0.00521319, + -0.008311088, + 0.0059650815, + -0.016626982, + -0.0068659405, + 0.0011618802, + -0.010427461, + 0.008132251, + 0.003274819, + 0.010860144, + -0.013668124, + -0.01482281, + 0.004817479, + 0.005470802, + -0.012241861, + 0.009123072, + -0.005776382, + -0.0012568812, + -0.006020704, + 0.015408985, + -0.035786074, + -0.012564784, + 0.00035637533, + 0.00043929584, + -0.0027379894, + 0.0043721003, + -0.020811675, + -0.005142725, + 0.03208882, + 0.0015152115, + 0.0133884745, + 0.011061753, + -0.007115652, + 0.014714954, + -0.024315387, + -0.014233836, + -0.0012246263, + -0.019843236, + 0.023122566, + -0.010829562, + 0.0060485685, + -0.0010313815, + -0.0068488065, + 0.009965687, + 0.023261698, + -0.022112748, + -0.034408174, + -0.006801864, + -0.013688084, + -0.024069471, + -0.010303617, + 0.0060139582, + -0.02386973, + 0.016180161, + -0.022577783, + -0.022660887, + 0.021863963, + 0.0037050885, + -0.018111331, + -0.006233566, + 0.003491256, + -0.008313409, + 0.005440776, + 0.0048068506, + -0.009776282, + 0.024237411, + -0.036972143, + 0.0072492855, + 0.0052580074, + 0.013733764, + -0.00010856953, + -0.012763026, + -0.0005540276, + 0.027519744, + 0.0065243803, + 0.023180837, + 0.016061066, + -0.020126801, + -0.025643237, + -0.023231464, + -0.0051146587, + -0.010979986, + 0.00013318744, + 0.020370958, + 0.0114779575, + -0.020883717, + 0.024153734, + -0.020030936, + 0.03526256, + -0.013562714, + 0.010822252, + -0.0044527557, + -0.0053019593, + -0.00023887597, + 0.0047567287, + -0.01060669, + -0.010247335, + -0.029871562, + -0.016425626, + -0.005826173, + 0.01487126, + 0.0036641364, + 0.011093246, + -0.018314563, + 0.0014864708, + -0.015330077, + -0.006630241, + -0.004501259, + 0.009385188, + -0.0025505496, + -0.024394667, + -0.026919978, + -0.018568514, + -0.0051231375, + -0.020298237, + -0.01583021, + 0.013369909, + -0.011593852, + -0.026961148, + 0.0057842745, + 0.0030814416, + 0.0037297923, + -0.0038959575, + 0.0056292154, + -0.0056509506, + -0.026014782, + -0.018960053, + -0.016374717, + -0.028076906, + -0.020966263, + -0.008049007, + -0.0017124243, + -0.0055646156, + 0.020366356, + -0.01996716, + 0.012485084, + -0.009328202, + -0.003489942, + -0.028157288, + 0.030999534, + 0.010692347, + -0.0125448955, + 0.0071725445, + -0.00298097, + 0.002662047, + 0.0051971604, + -0.0032547147, + 0.0022622715, + 0.023746619, + 0.0027753706, + -0.021281855, + -0.02846874, + -0.026552064, + 0.020581545, + -0.015142764, + 0.019528855, + -0.026991142, + -0.0067510363, + 0.009294864, + -0.006880877, + -0.013568253, + -0.0072808657, + -0.03343158, + -0.0032495058, + 0.00039639932, + -0.005155662, + -0.02684769, + 0.005128044, + -0.021991747, + -0.004072635, + -0.0035219453, + 0.006768655, + -0.028437192, + 0.0035914686, + 0.000495783, + -0.008928099, + 0.005808061, + -0.013057975, + -0.0069727846, + -0.004080119, + -0.025455479, + -0.009860637, + -0.007205912, + 0.0016577935, + -0.027934788, + 0.007073615, + -0.020772923, + -0.006569707, + 0.011460337, + 0.0013581718, + -0.026605682, + 0.0001588431, + -0.012927591, + -0.010572267, + 0.015261775, + 0.03231221, + 0.0057154736, + 0.032167133, + 0.013019153, + -0.03478947, + -0.0014512601, + -0.013808394, + -0.0063652536, + -0.042556293, + -0.009905519, + -0.019568687, + 0.004455133, + -0.02234134, + 0.0023641377, + -0.015874388, + -0.010309067, + -0.0047864877, + -0.02237514, + -0.0041476428, + -0.02366914, + 0.010288177, + -0.012715559, + 0.008632128, + -0.0048744814, + -0.009881179, + -0.020907374, + -0.01615647, + -0.009177503, + -0.005927291, + -0.018675549, + 0.009641478, + -0.017890932, + -5.566483e-05, + -0.022632891, + -0.011146955, + -0.008159986, + 0.01565817, + 0.01874691, + 0.038024798, + 0.0037535522, + -0.004830438, + 0.016810935, + -0.016282406, + 0.001831122, + -0.033268534, + -0.007718734, + -0.015899455, + -0.01854716, + -0.009070602, + -0.032057256, + -0.013479489, + 0.017131718, + -0.02211234, + -0.011879924, + -0.03688218, + -0.005940305, + -0.0027299752, + -0.0039082654, + -0.024468843, + 0.012945935, + -0.011363698, + -0.019775573, + -0.0030264112, + 0.003710721, + -0.005356884, + -0.013781525, + 0.01004475, + -0.01443729, + -0.019253187, + 0.025073733, + 0.0074086078, + -0.0007397229, + -0.026727527, + 0.0061243554, + -0.011625135, + -0.008135854, + -0.0093563795, + -0.0052652443, + 0.030319318, + -0.017880095, + -0.0011664071, + -0.018576989, + 0.016207987, + 0.019846413, + -0.01998052, + 0.0137251485, + 0.017238513, + 0.004948805, + -0.0031277973, + -0.0039722817, + -0.02175342, + -0.00344828, + -0.005104441, + -0.019706026, + 0.011265324, + 0.00956373, + 0.023541972, + -0.03448597, + -0.009299339, + 0.005065721, + 0.008756243, + -0.013232597, + 0.0077832835, + 0.040070347, + -0.007717589, + -0.0023906974, + -0.011993208, + -0.0011968163, + 0.008802677, + 0.0023109545, + 0.00081054296, + -0.003571338, + -0.020158853, + 0.009545969, + 0.0012102308, + -0.0044336035, + -0.021120653, + -0.0011002995, + -0.022460017, + 0.00318119, + -0.032091647, + -0.010128986, + -0.014173012, + -0.002823065, + -0.009887324, + 0.004607061, + -0.02843705, + 0.0038778784, + -0.00647253, + -0.029023198, + 0.032746993, + -0.0049883816, + 0.042409852, + -0.023379343, + 0.017645923, + -0.016178371, + -0.035399668, + 0.022222744, + -0.007957002, + 0.009106, + 0.0064527923, + -0.0022627509, + 0.0021457213, + 0.0011549782, + -0.0036964717, + -0.0075552985, + -0.0086793015, + 0.006366071, + -0.016623763, + 0.004103043, + -0.02491692, + -0.007435715, + 0.0012876537, + 0.01505873, + -0.009371868, + -0.02971604, + -0.00087719964, + 0.014455266, + -0.015239983, + -0.015735064, + -0.0036379274, + -0.0065945676, + -0.009624922, + -0.015260599, + 0.006022126, + -0.0141827855, + -0.0011211004, + -0.0011093386, + 0.0008067252, + -0.0033919564, + 0.0056148237, + -0.0013965776, + -0.0056386595, + -0.037150256, + 0.013746751, + 0.0018686727, + -0.0069099474, + -0.0027520515, + 0.016465407, + -0.020467252, + -0.016594071, + 0.011323425, + -0.01595865, + -0.020545043, + 0.012166524, + -0.0032936942, + 0.012640484, + -0.024195103, + -0.019681519, + -0.0017976137, + -0.03137543, + 0.013007247, + -0.01865154, + -0.004648479, + 0.020865481, + 0.008074188, + -0.03334414, + 0.0049652257, + 0.036809497, + -0.01647656, + 0.0029230707, + 0.015990958, + -0.001900906, + -0.0129666105, + -0.023278221, + 0.004983401, + -0.011951393, + -0.047971502, + 0.01726914, + -0.013470808, + 0.023704384, + -0.035700515, + -0.0147551475, + 0.011570159, + -0.02712339, + 0.016985638, + -0.008046762, + -0.0019023783, + -0.018055372, + 0.0053898874, + -0.0073795635, + 0.011765949, + -0.020595072, + 0.01084513, + -0.005448324, + -0.026892025, + 0.0104384525, + -0.028117592, + -0.010153794, + -0.0030684653, + -0.0072210245, + -0.0033467135, + 0.02667239, + -0.003393451, + -0.02696571, + -0.010923669, + 0.008844997, + -0.014852086, + -0.0027794396, + -0.0052632983, + -0.022848338, + -0.024166996, + -0.013206928, + -0.016469695, + -0.02364044, + -0.011470569, + 0.010381546, + -0.017783461, + -0.0080825295, + -0.012042812, + -0.002783822, + -0.010574473, + -0.0102723455, + -0.004537827, + -0.013592486, + 0.017898405, + -0.0007815781, + -8.9488494e-05, + -0.002584648, + 0.0061907484, + -0.0032389697, + -0.0015767361, + 0.00070987537, + -0.024032123, + -0.01885004, + 0.00051622273, + -0.005653089, + -0.028229129, + 0.0024516887, + 0.033255987, + -0.010723217, + 0.016991597, + 0.015590626, + -0.01576347, + 0.0126354415, + -0.0021203863, + 0.0073118582, + -0.005537732, + 0.004480672, + 0.030759066, + -0.00057902373, + 0.012567264, + -0.027750721, + -0.012967432, + -0.019411135, + -0.021003546, + -0.017403057, + -0.025350634, + -0.007771199, + 0.027558941, + -0.010533419, + 0.021108897, + -0.007353686, + -0.006690411, + -0.03124316, + 0.014701634, + -0.006700799, + -0.022649825, + -0.011049187, + -0.005129499, + 0.017027412, + -0.00047804383, + -0.011093898, + -0.010389825, + -0.0017391706, + -0.0014256525, + -0.002111098, + -0.009200095, + 0.013704186, + -0.01800834, + 0.0122136455, + -0.0013262967, + -0.015370493, + -0.015294951, + 0.030456955, + -0.009374384, + -0.029191175, + -0.018461281, + -0.013266194, + -0.0002315178, + 0.005984294, + 0.011732352, + -0.0021082596, + -0.014462687, + -0.008284703, + -0.0055666794, + -0.009584451, + -0.007125373, + -0.01788244, + -0.0041878494, + -0.012444584, + -0.004750706, + -0.002960544, + -0.006093338, + -0.026009541, + -0.005742009, + 0.0048980066, + 0.0053106914, + -0.0061547253, + -0.019346535, + -0.016028108, + -0.013507489, + 0.013296013, + 0.00029771874, + -0.0010571802, + 0.014589333, + -0.01414766, + -0.006342821, + -0.01322707, + 0.010202983, + 0.005819454, + -0.012944216, + 0.0027371808, + 0.01424784, + -0.025440069, + -0.011288316, + -0.021803409, + -0.020024512, + -0.007239724, + -0.010523289, + -0.023433361, + -0.009773952, + 0.0029253159, + 0.006192747, + -0.037322506, + -0.00738931, + -0.013055886, + 0.02274721, + 0.0003658334, + -0.01668763, + -0.0056291823, + -0.011354918, + 0.007763249, + -0.019095508, + -0.018528672, + -0.005298285, + 0.023201285, + 0.016220663, + -0.008425295, + 0.002356664, + 0.0027734737, + -0.00076569506, + -0.006253887, + -0.00042010506, + -0.000737033, + -0.0018626753, + -0.013105959, + 0.023647074, + -0.0030445233, + 0.0025404664, + -0.017464783, + -0.032066133, + -0.019589841, + -0.0004432758, + -0.018185811, + -0.0112708695, + -0.016734662, + -0.0007923959, + -0.01622757, + -0.00095181284, + -0.0064312574, + -0.024361985, + 0.0066523035, + -0.0018912507, + -0.0072000604, + 0.015646346, + -0.00041940584, + -0.006495341, + -0.011842261, + -0.01077825, + 0.0074282098, + 0.0048905504, + -0.015048304, + -0.0211298, + -0.015365819, + -0.034420148, + -0.006262282, + 0.014995643, + -0.0018271162, + -0.006313341, + 0.0047964524, + -0.025446989, + -0.008558576, + -0.019661797, + -0.03159997, + 0.0034477178, + -0.0032222308, + -0.006149134, + 0.01609465, + -0.012122549, + 0.0014696395, + -0.0010806626, + 0.019135673, + -0.013785495, + -0.0012793058, + -0.028931124, + -0.014525793, + -0.0040184315, + -0.0015195813, + -0.019091971, + -0.0066488106, + 0.0020592767, + 0.0020585735, + -0.010855645, + 0.0015607249, + 0.014763871, + -0.0009933691, + -0.005916272, + -0.022354964, + -0.00046087496, + 0.0027679713, + -0.0041483818, + -0.027756048, + -0.029433709, + -0.008923146, + 0.011510692, + -0.021644173, + 0.027625192, + -0.009477078, + 0.030672785, + -0.0015457722, + 0.0071232244, + -0.03227179, + 0.022351189, + -0.029105647, + 0.035032734, + -0.020609304, + 0.0051682624, + -0.021700123, + -0.0011965644, + -0.031790473, + -0.0011407454, + -0.017543983, + 0.0066817496, + -0.004954477, + -9.6811695e-05, + -0.003941778, + -0.009145727, + 0.008005539, + 0.00880387, + -0.019164061, + -0.0017820317, + -0.0046801255, + 0.007159723, + -0.0099348165, + -0.020448493, + -0.014257866, + -0.016834771, + 0.01725973, + -0.0064568156, + -0.017513733, + 0.0048314244, + 0.00029594335, + 0.0013305895, + 0.013036783, + -0.0054066037, + 0.01544919, + -0.0007558201, + 0.00039978075, + -0.016243918, + -0.009654091, + -0.025165759, + -0.011367146, + 0.013123079, + 0.0067480267, + -0.0076866797, + -0.02323805, + -0.003156941, + -0.0139197055, + -0.01732119, + -0.0278024, + -0.02356724, + 0.0133315995, + -0.00039536107, + -0.006847322, + -0.011725899, + 0.024003562, + -0.012481664, + -0.008159499, + -0.010399576, + 0.00042466001, + 0.01142364, + -0.004261674, + -0.035041235, + -0.001946176, + 0.01739013, + -0.011961034, + -0.002082449, + 8.124031e-05, + 0.0010457358, + -0.015028941, + 0.00087936566, + 0.004937931, + 0.016055727, + 0.008404242, + -0.030176273, + -0.017004644, + 0.008019172, + 0.010794999, + -0.02820304, + -0.0076320902, + -0.017924031, + -0.00441171, + 0.009169108, + -0.01876358, + -0.01654052, + -0.012493625, + 0.032200433, + -0.02192834, + -0.011032835, + -0.0135175865, + -0.006311576, + 0.0068097077, + 0.0048605264, + -0.0095840935, + 0.0103225, + 0.0061625885, + 0.005820207, + -0.020380154, + -0.008916101, + -0.0016513644, + 0.003859767, + 0.006909672, + -0.0017045958, + -0.01503503, + 0.0049929703, + -0.012141712, + -0.0015291804, + 0.01307416, + -0.006985121, + 0.012621604, + -0.003857721, + 0.008785084, + 0.0007792945, + 0.005987979, + 0.024007967, + -0.014245006, + -0.020906402, + 0.011865793, + -0.015082848, + 0.00070574565, + 0.01712343, + 0.01641399, + -0.006692721, + 0.00016200342, + -0.006575421, + -0.030157419, + -0.027888242, + 0.001106461, + -0.013020263, + -0.014047242, + 0.016991511 ], "paletteEmbedding": [ - 0.05103824, 0.030327998, 0.011990139, 0.0030135643, 0.0005770655, - 0.00012823679, 0.0, 0.0, 0.0, 0.0, 0.03109742, 0.023018502, 0.011797784, - 0.004231814, 0.00083353906, 0.00019235518, 0.0, 0.0, 0.0, 0.0, - 0.011477192, 0.011220719, 0.0077583254, 0.003911222, 0.0005770655, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0035265116, 0.004424169, - 0.0030776828, 0.0016029598, 0.00032059196, 6.4118394e-5, 0.0, 0.0, 0.0, - 0.0, 0.00038471035, 0.0006411839, 0.0010258943, 0.00044882874, - 0.00012823679, 0.00012823679, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00012823679, - 0.00019235518, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.030520353, - 0.022120845, 0.011348955, 0.0050653527, 0.0006411839, 6.4118394e-5, 0.0, - 0.0, 0.0, 0.0, 0.02353145, 0.025262646, 0.01474723, 0.00756597, - 0.001795315, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.013849572, 0.018401979, - 0.016029598, 0.005898892, 0.0016670781, 0.00019235518, 0.0, 0.0, 0.0, - 0.0, 0.004616524, 0.008143036, 0.006283602, 0.004937116, 0.00051294715, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0010258943, 0.001795315, - 0.001795315, 0.001474723, 0.00038471035, 0.00012823679, 0.0, 0.0, 0.0, - 0.0, 0.00019235518, 0.00019235518, 0.00051294715, 0.0, 0.00012823679, - 6.4118394e-5, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.00012823679, 0.0, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.01352898, - 0.01352898, 0.0076300884, 0.003782985, 0.00051294715, 6.4118394e-5, 0.0, - 0.0, 0.0, 0.0, 0.01513194, 0.018017268, 0.017247846, 0.008014799, - 0.0019235518, 0.00025647358, 0.0, 0.0, 0.0, 0.0, 0.009874232, - 0.017247846, 0.014939585, 0.008655983, 0.0027570908, 0.00044882874, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0057706553, 0.009040693, 0.007694207, - 0.0040394585, 0.001474723, 0.0007053023, 0.00012823679, 0.0, 0.0, 0.0, - 0.0010258943, 0.002308262, 0.002628854, 0.0016670781, 0.0010258943, - 0.0009617759, 6.4118394e-5, 0.00012823679, 0.0, 0.0, 6.4118394e-5, - 0.00044882874, 0.00051294715, 0.00051294715, 0.00044882874, - 0.00025647358, 6.4118394e-5, 0.0, 6.4118394e-5, 0.0, 0.0, 0.0, - 0.00012823679, 0.00019235518, 0.0, 0.00032059196, 0.00012823679, 0.0, - 0.0, 0.0, 0.0, 0.0, 6.4118394e-5, 0.0, 6.4118394e-5, 6.4118394e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 6.4118394e-5, 0.0, 0.0, 6.4118394e-5, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00397534, - 0.0054500634, 0.0032059196, 0.002308262, 0.00038471035, 0.00012823679, - 0.0, 0.0, 0.0, 0.0, 0.006283602, 0.011413073, 0.00878422, 0.0048729978, - 0.0012182494, 0.00038471035, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0056424183, - 0.010900127, 0.009040693, 0.0057065366, 0.0022441437, 0.0009617759, - 0.00012823679, 0.0, 0.0, 0.0, 0.0027570908, 0.004552406, 0.0050653527, - 0.0037188667, 0.002949446, 0.0010900126, 0.00025647358, 0.0, 0.0, 0.0, - 0.0010258943, 0.001795315, 0.0022441437, 0.0035265116, 0.002628854, - 0.0025647357, 0.00044882874, 0.00012823679, 6.4118394e-5, 0.0, - 6.4118394e-5, 0.00038471035, 0.0007694207, 0.00198767, 0.0016029598, - 0.0016029598, 0.0010258943, 0.00032059196, 6.4118394e-5, 0.0, 0.0, - 0.00012823679, 0.00051294715, 0.00025647358, 0.0010900126, 0.0010258943, - 0.0007053023, 0.00019235518, 0.00019235518, 0.0, 0.0, 0.0, 0.0, - 0.00025647358, 0.00032059196, 6.4118394e-5, 0.00032059196, - 0.00032059196, 0.0, 0.00012823679, 0.0, 0.0, 0.0, 0.0, 0.00012823679, - 0.00012823679, 6.4118394e-5, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 6.4118394e-5, 6.4118394e-5, 6.4118394e-5, 0.0018594334, - 0.0026929723, 0.0021800252, 0.0006411839, 0.00012823679, 0.0, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0027570908, 0.0048088795, 0.0035265116, - 0.0017311965, 0.0008976575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.003141801, - 0.0040394585, 0.0050012344, 0.002949446, 0.0017311965, 0.00038471035, - 6.4118394e-5, 0.0, 0.0, 0.0, 0.0012823679, 0.0019235518, 0.003462393, - 0.0038471036, 0.0033982748, 0.0020517886, 0.0008976575, 0.00032059196, - 0.00012823679, 0.0, 0.00044882874, 0.001474723, 0.00198767, 0.003270038, - 0.004616524, 0.0035265116, 0.002115907, 0.0010900126, 6.4118394e-5, 0.0, - 6.4118394e-5, 0.00025647358, 0.0017311965, 0.002628854, 0.0044882875, - 0.004424169, 0.0026929723, 0.0017311965, 0.00038471035, 0.00025647358, - 6.4118394e-5, 0.0, 0.00038471035, 0.001154131, 0.003270038, - 0.0035265116, 0.0030776828, 0.002628854, 0.001154131, 0.00025647358, - 0.0, 0.0, 0.00012823679, 6.4118394e-5, 0.0012182494, 0.0017311965, - 0.0025006172, 0.0024364989, 0.0018594334, 0.00032059196, 0.0, 0.0, 0.0, - 0.00019235518, 0.00038471035, 0.0010258943, 0.0016029598, 0.002308262, - 0.0008976575, 0.00038471035, 0.0, 0.0, 0.0, 0.0, 6.4118394e-5, - 0.00019235518, 0.0007694207, 0.0009617759, 0.0009617759, 0.00038471035, - 0.004424169, 0.0054500634, 0.0025647357, 0.0008976575, 6.4118394e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.008078917, 0.009104812, 0.0054500634, - 0.002628854, 0.00083353906, 0.0, 0.00012823679, 0.0, 0.0, 0.0, - 0.008078917, 0.008655983, 0.0057065366, 0.0027570908, 0.0012823679, - 0.00051294715, 0.00012823679, 0.00012823679, 6.4118394e-5, 0.0, - 0.004424169, 0.0051294714, 0.0046806424, 0.0036547482, 0.0021800252, - 0.0022441437, 0.0012823679, 0.00044882874, 0.00032059196, 0.0, - 0.0012182494, 0.0015388414, 0.0022441437, 0.0038471036, 0.0058347736, - 0.005898892, 0.003141801, 0.0014106046, 0.00044882874, 0.00012823679, - 0.00025647358, 0.0007053023, 0.001154131, 0.003141801, 0.006860668, - 0.008912456, 0.008399509, 0.0048729978, 0.001154131, 0.00038471035, 0.0, - 0.0, 0.0009617759, 0.002949446, 0.0053859446, 0.00916893, 0.013400744, - 0.011733665, 0.005898892, 0.0025647357, 6.4118394e-5, 0.0, - 0.00051294715, 0.00038471035, 0.0030776828, 0.009361285, 0.013657217, - 0.015580769, 0.0116054285, 0.00397534, 0.0, 0.0, 0.00012823679, - 0.00044882874, 0.0015388414, 0.004295932, 0.011669547, 0.015516651, - 0.011861903, 0.0044882875, 0.0, 0.0, 0.0, 6.4118394e-5, 0.0005770655, - 0.0018594334, 0.0057065366, 0.007501852, 0.0067324312, 0.0025647357, - 0.014426638, 0.015837243, 0.008399509, 0.003462393, 0.00044882874, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.024942053, 0.032187432, 0.020389648, 0.006604194, - 0.0017311965, 6.4118394e-5, 6.4118394e-5, 0.0, 0.0, 0.0, 0.029237986, - 0.036098655, 0.0223132, 0.010194824, 0.002308262, 0.0007053023, - 0.00044882874, 6.4118394e-5, 0.0, 0.0, 0.017632557, 0.022826146, - 0.01436252, 0.007373615, 0.0037188667, 0.0025006172, 0.0010900126, - 0.00032059196, 0.0, 0.0, 0.004744761, 0.006924786, 0.006604194, - 0.0066683125, 0.0057065366, 0.006540076, 0.0048088795, 0.003141801, - 0.00083353906, 0.00032059196, 0.0009617759, 0.0014106046, 0.0025006172, - 0.004295932, 0.0076300884, 0.01275956, 0.01590136, 0.012951915, - 0.0063477205, 0.0026929723, 0.0, 6.4118394e-5, 0.0007053023, - 0.0025647357, 0.009233048, 0.02147966, 0.03308509, 0.034688048, - 0.0223132, 0.0097459955, 0.00012823679, 6.4118394e-5, 0.00019235518, - 0.0018594334, 0.00795068, 0.02109495, 0.05174354, 0.061681893, - 0.050332937, 0.023723805, 0.0, 0.0, 6.4118394e-5, 0.00038471035, - 0.003270038, 0.016670782, 0.044882875, 0.0630925, 0.058732446, - 0.02827621, 0.0, 0.0, 6.4118394e-5, 0.00025647358, 0.001474723, - 0.008078917, 0.022377318, 0.041612837, 0.035585705, 0.018979045, - 0.029750934, 0.034688048, 0.026096186, 0.0060271285, 0.0010258943, - 0.00012823679, 0.0, 0.0, 0.0, 0.0, 0.064310744, 0.08341803, 0.051551186, - 0.01590136, 0.0028212091, 0.00044882874, 0.00012823679, 0.0, 0.0, 0.0, - 0.08066094, 0.09835761, 0.06027129, 0.023659686, 0.004552406, - 0.0007694207, 0.00012823679, 6.4118394e-5, 0.0, 0.0, 0.042510495, - 0.055077698, 0.03827868, 0.017632557, 0.0055783, 0.0025006172, - 0.0012182494, 0.0007053023, 0.00025647358, 0.0, 0.0131442705, - 0.020133175, 0.014490756, 0.009425404, 0.008527746, 0.006283602, - 0.0057706553, 0.004616524, 0.0022441437, 0.00038471035, 0.0022441437, - 0.0028212091, 0.004552406, 0.0060912473, 0.008591864, 0.016414309, - 0.02314674, 0.021800254, 0.012631323, 0.0048088795, 0.00019235518, - 0.00051294715, 0.001154131, 0.0033982748, 0.011284837, 0.032572143, - 0.062002484, 0.07572382, 0.057642434, 0.02269791, 0.0, 6.4118394e-5, - 0.00025647358, 0.0021800252, 0.013016033, 0.039240453, 0.10618006, - 0.15510239, 0.13381508, 0.0613613, 0.0, 6.4118394e-5, 0.00012823679, - 0.0010258943, 0.007245378, 0.03577806, 0.10650065, 0.17331201, - 0.1687596, 0.08373862, 0.0, 0.0, 6.4118394e-5, 0.00032059196, - 0.0028853277, 0.02026141, 0.06257955, 0.11195071, 0.10624418, - 0.056873012, 0.041292243, 0.047639966, 0.03026388, 0.00955364, - 0.002628854, 6.4118394e-5, 0.0, 0.0, 0.0, 0.0, 0.09322814, 0.114579566, - 0.074056745, 0.024942053, 0.0041676955, 0.0006411839, 6.4118394e-5, 0.0, - 0.0, 0.0, 0.108937144, 0.1341998, 0.09265108, 0.03154625, 0.0066683125, - 0.0010900126, 6.4118394e-5, 0.0, 0.0, 0.0, 0.06661901, 0.08546981, - 0.05937363, 0.025134409, 0.0076300884, 0.00198767, 0.0007053023, - 0.00025647358, 0.00019235518, 6.4118394e-5, 0.020646121, 0.026993843, - 0.023018502, 0.011861903, 0.00718126, 0.005257708, 0.0043600504, - 0.004103577, 0.0024364989, 0.0008976575, 0.0036547482, 0.0051935897, - 0.0057706553, 0.0061553656, 0.008720101, 0.013593099, 0.018081386, - 0.024877936, 0.017696677, 0.0074377335, 0.00038471035, 0.0007053023, - 0.0014106046, 0.0030776828, 0.009297167, 0.02904563, 0.061938364, - 0.0906634, 0.07585206, 0.03706043, 0.0, 6.4118394e-5, 0.00044882874, - 0.0025647357, 0.010515416, 0.045780532, 0.13003209, 0.19915172, - 0.18376331, 0.09476698, 0.0, 0.0, 6.4118394e-5, 0.0007694207, - 0.008399509, 0.04263873, 0.14061163, 0.2582689, 0.24743287, 0.1262491, - 0.0, 0.0, 0.0, 0.00044882874, 0.003911222, 0.025775593, 0.087136894, - 0.16516897, 0.16478427, 0.0899581, 0.03391863, 0.04103577, 0.024493225, - 0.009489522, 0.0010258943, 0.00019235518, 0.0, 0.0, 0.0, 0.0, - 0.078224435, 0.09835761, 0.0613613, 0.018594334, 0.0028853277, - 0.00032059196, 6.4118394e-5, 0.0, 0.0, 0.0, 0.087072775, 0.113874264, - 0.073479675, 0.025711475, 0.0055141817, 0.0012182494, 0.00012823679, - 0.0, 0.0, 0.0, 0.05385945, 0.07194083, 0.05110236, 0.018658452, - 0.0055141817, 0.00083353906, 0.00032059196, 0.00019235518, 0.0, - 6.4118394e-5, 0.018466096, 0.026480895, 0.017055493, 0.009681877, - 0.0043600504, 0.0030776828, 0.0017311965, 0.0019235518, 0.0013464862, - 0.00032059196, 0.002628854, 0.004937116, 0.004937116, 0.0044882875, - 0.0043600504, 0.0064759576, 0.010643653, 0.017311966, 0.010836008, - 0.0059630102, 0.00032059196, 0.00032059196, 0.0007694207, 0.00198767, - 0.005257708, 0.015709005, 0.03988164, 0.061233062, 0.05860421, - 0.028404446, 6.4118394e-5, 0.0, 0.00019235518, 0.001154131, - 0.0053218263, 0.02949446, 0.08361038, 0.15112704, 0.14311224, - 0.07271025, 0.0, 0.0, 6.4118394e-5, 0.00025647358, 0.004552406, - 0.03141801, 0.1035512, 0.19145751, 0.19581756, 0.09983233, 0.0, 0.0, - 0.0, 0.00025647358, 0.0028853277, 0.019812582, 0.064374864, 0.12605676, - 0.13041681, 0.0732232 + 0.05103824, + 0.030327998, + 0.011990139, + 0.0030135643, + 0.0005770655, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03109742, + 0.023018502, + 0.011797784, + 0.004231814, + 0.00083353906, + 0.00019235518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011477192, + 0.011220719, + 0.0077583254, + 0.003911222, + 0.0005770655, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0035265116, + 0.004424169, + 0.0030776828, + 0.0016029598, + 0.00032059196, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00038471035, + 0.0006411839, + 0.0010258943, + 0.00044882874, + 0.00012823679, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012823679, + 0.00019235518, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.030520353, + 0.022120845, + 0.011348955, + 0.0050653527, + 0.0006411839, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02353145, + 0.025262646, + 0.01474723, + 0.00756597, + 0.001795315, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013849572, + 0.018401979, + 0.016029598, + 0.005898892, + 0.0016670781, + 0.00019235518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004616524, + 0.008143036, + 0.006283602, + 0.004937116, + 0.00051294715, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0010258943, + 0.001795315, + 0.001795315, + 0.001474723, + 0.00038471035, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00019235518, + 0.00019235518, + 0.00051294715, + 0.0, + 0.00012823679, + 6.4118394e-05, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012823679, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01352898, + 0.01352898, + 0.0076300884, + 0.003782985, + 0.00051294715, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01513194, + 0.018017268, + 0.017247846, + 0.008014799, + 0.0019235518, + 0.00025647358, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009874232, + 0.017247846, + 0.014939585, + 0.008655983, + 0.0027570908, + 0.00044882874, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0057706553, + 0.009040693, + 0.007694207, + 0.0040394585, + 0.001474723, + 0.0007053023, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0010258943, + 0.002308262, + 0.002628854, + 0.0016670781, + 0.0010258943, + 0.0009617759, + 6.4118394e-05, + 0.00012823679, + 0.0, + 0.0, + 6.4118394e-05, + 0.00044882874, + 0.00051294715, + 0.00051294715, + 0.00044882874, + 0.00025647358, + 6.4118394e-05, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.00012823679, + 0.00019235518, + 0.0, + 0.00032059196, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 0.0, + 6.4118394e-05, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00397534, + 0.0054500634, + 0.0032059196, + 0.002308262, + 0.00038471035, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006283602, + 0.011413073, + 0.00878422, + 0.0048729978, + 0.0012182494, + 0.00038471035, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0056424183, + 0.010900127, + 0.009040693, + 0.0057065366, + 0.0022441437, + 0.0009617759, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0027570908, + 0.004552406, + 0.0050653527, + 0.0037188667, + 0.002949446, + 0.0010900126, + 0.00025647358, + 0.0, + 0.0, + 0.0, + 0.0010258943, + 0.001795315, + 0.0022441437, + 0.0035265116, + 0.002628854, + 0.0025647357, + 0.00044882874, + 0.00012823679, + 6.4118394e-05, + 0.0, + 6.4118394e-05, + 0.00038471035, + 0.0007694207, + 0.00198767, + 0.0016029598, + 0.0016029598, + 0.0010258943, + 0.00032059196, + 6.4118394e-05, + 0.0, + 0.0, + 0.00012823679, + 0.00051294715, + 0.00025647358, + 0.0010900126, + 0.0010258943, + 0.0007053023, + 0.00019235518, + 0.00019235518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00025647358, + 0.00032059196, + 6.4118394e-05, + 0.00032059196, + 0.00032059196, + 0.0, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012823679, + 0.00012823679, + 6.4118394e-05, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 6.4118394e-05, + 6.4118394e-05, + 0.0018594334, + 0.0026929723, + 0.0021800252, + 0.0006411839, + 0.00012823679, + 0.0, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0027570908, + 0.0048088795, + 0.0035265116, + 0.0017311965, + 0.0008976575, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003141801, + 0.0040394585, + 0.0050012344, + 0.002949446, + 0.0017311965, + 0.00038471035, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0012823679, + 0.0019235518, + 0.003462393, + 0.0038471036, + 0.0033982748, + 0.0020517886, + 0.0008976575, + 0.00032059196, + 0.00012823679, + 0.0, + 0.00044882874, + 0.001474723, + 0.00198767, + 0.003270038, + 0.004616524, + 0.0035265116, + 0.002115907, + 0.0010900126, + 6.4118394e-05, + 0.0, + 6.4118394e-05, + 0.00025647358, + 0.0017311965, + 0.002628854, + 0.0044882875, + 0.004424169, + 0.0026929723, + 0.0017311965, + 0.00038471035, + 0.00025647358, + 6.4118394e-05, + 0.0, + 0.00038471035, + 0.001154131, + 0.003270038, + 0.0035265116, + 0.0030776828, + 0.002628854, + 0.001154131, + 0.00025647358, + 0.0, + 0.0, + 0.00012823679, + 6.4118394e-05, + 0.0012182494, + 0.0017311965, + 0.0025006172, + 0.0024364989, + 0.0018594334, + 0.00032059196, + 0.0, + 0.0, + 0.0, + 0.00019235518, + 0.00038471035, + 0.0010258943, + 0.0016029598, + 0.002308262, + 0.0008976575, + 0.00038471035, + 0.0, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 0.00019235518, + 0.0007694207, + 0.0009617759, + 0.0009617759, + 0.00038471035, + 0.004424169, + 0.0054500634, + 0.0025647357, + 0.0008976575, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008078917, + 0.009104812, + 0.0054500634, + 0.002628854, + 0.00083353906, + 0.0, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.008078917, + 0.008655983, + 0.0057065366, + 0.0027570908, + 0.0012823679, + 0.00051294715, + 0.00012823679, + 0.00012823679, + 6.4118394e-05, + 0.0, + 0.004424169, + 0.0051294714, + 0.0046806424, + 0.0036547482, + 0.0021800252, + 0.0022441437, + 0.0012823679, + 0.00044882874, + 0.00032059196, + 0.0, + 0.0012182494, + 0.0015388414, + 0.0022441437, + 0.0038471036, + 0.0058347736, + 0.005898892, + 0.003141801, + 0.0014106046, + 0.00044882874, + 0.00012823679, + 0.00025647358, + 0.0007053023, + 0.001154131, + 0.003141801, + 0.006860668, + 0.008912456, + 0.008399509, + 0.0048729978, + 0.001154131, + 0.00038471035, + 0.0, + 0.0, + 0.0009617759, + 0.002949446, + 0.0053859446, + 0.00916893, + 0.013400744, + 0.011733665, + 0.005898892, + 0.0025647357, + 6.4118394e-05, + 0.0, + 0.00051294715, + 0.00038471035, + 0.0030776828, + 0.009361285, + 0.013657217, + 0.015580769, + 0.0116054285, + 0.00397534, + 0.0, + 0.0, + 0.00012823679, + 0.00044882874, + 0.0015388414, + 0.004295932, + 0.011669547, + 0.015516651, + 0.011861903, + 0.0044882875, + 0.0, + 0.0, + 0.0, + 6.4118394e-05, + 0.0005770655, + 0.0018594334, + 0.0057065366, + 0.007501852, + 0.0067324312, + 0.0025647357, + 0.014426638, + 0.015837243, + 0.008399509, + 0.003462393, + 0.00044882874, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.024942053, + 0.032187432, + 0.020389648, + 0.006604194, + 0.0017311965, + 6.4118394e-05, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.029237986, + 0.036098655, + 0.0223132, + 0.010194824, + 0.002308262, + 0.0007053023, + 0.00044882874, + 6.4118394e-05, + 0.0, + 0.0, + 0.017632557, + 0.022826146, + 0.01436252, + 0.007373615, + 0.0037188667, + 0.0025006172, + 0.0010900126, + 0.00032059196, + 0.0, + 0.0, + 0.004744761, + 0.006924786, + 0.006604194, + 0.0066683125, + 0.0057065366, + 0.006540076, + 0.0048088795, + 0.003141801, + 0.00083353906, + 0.00032059196, + 0.0009617759, + 0.0014106046, + 0.0025006172, + 0.004295932, + 0.0076300884, + 0.01275956, + 0.01590136, + 0.012951915, + 0.0063477205, + 0.0026929723, + 0.0, + 6.4118394e-05, + 0.0007053023, + 0.0025647357, + 0.009233048, + 0.02147966, + 0.03308509, + 0.034688048, + 0.0223132, + 0.0097459955, + 0.00012823679, + 6.4118394e-05, + 0.00019235518, + 0.0018594334, + 0.00795068, + 0.02109495, + 0.05174354, + 0.061681893, + 0.050332937, + 0.023723805, + 0.0, + 0.0, + 6.4118394e-05, + 0.00038471035, + 0.003270038, + 0.016670782, + 0.044882875, + 0.0630925, + 0.058732446, + 0.02827621, + 0.0, + 0.0, + 6.4118394e-05, + 0.00025647358, + 0.001474723, + 0.008078917, + 0.022377318, + 0.041612837, + 0.035585705, + 0.018979045, + 0.029750934, + 0.034688048, + 0.026096186, + 0.0060271285, + 0.0010258943, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.0, + 0.064310744, + 0.08341803, + 0.051551186, + 0.01590136, + 0.0028212091, + 0.00044882874, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.08066094, + 0.09835761, + 0.06027129, + 0.023659686, + 0.004552406, + 0.0007694207, + 0.00012823679, + 6.4118394e-05, + 0.0, + 0.0, + 0.042510495, + 0.055077698, + 0.03827868, + 0.017632557, + 0.0055783, + 0.0025006172, + 0.0012182494, + 0.0007053023, + 0.00025647358, + 0.0, + 0.0131442705, + 0.020133175, + 0.014490756, + 0.009425404, + 0.008527746, + 0.006283602, + 0.0057706553, + 0.004616524, + 0.0022441437, + 0.00038471035, + 0.0022441437, + 0.0028212091, + 0.004552406, + 0.0060912473, + 0.008591864, + 0.016414309, + 0.02314674, + 0.021800254, + 0.012631323, + 0.0048088795, + 0.00019235518, + 0.00051294715, + 0.001154131, + 0.0033982748, + 0.011284837, + 0.032572143, + 0.062002484, + 0.07572382, + 0.057642434, + 0.02269791, + 0.0, + 6.4118394e-05, + 0.00025647358, + 0.0021800252, + 0.013016033, + 0.039240453, + 0.10618006, + 0.15510239, + 0.13381508, + 0.0613613, + 0.0, + 6.4118394e-05, + 0.00012823679, + 0.0010258943, + 0.007245378, + 0.03577806, + 0.10650065, + 0.17331201, + 0.1687596, + 0.08373862, + 0.0, + 0.0, + 6.4118394e-05, + 0.00032059196, + 0.0028853277, + 0.02026141, + 0.06257955, + 0.11195071, + 0.10624418, + 0.056873012, + 0.041292243, + 0.047639966, + 0.03026388, + 0.00955364, + 0.002628854, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09322814, + 0.114579566, + 0.074056745, + 0.024942053, + 0.0041676955, + 0.0006411839, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.108937144, + 0.1341998, + 0.09265108, + 0.03154625, + 0.0066683125, + 0.0010900126, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.06661901, + 0.08546981, + 0.05937363, + 0.025134409, + 0.0076300884, + 0.00198767, + 0.0007053023, + 0.00025647358, + 0.00019235518, + 6.4118394e-05, + 0.020646121, + 0.026993843, + 0.023018502, + 0.011861903, + 0.00718126, + 0.005257708, + 0.0043600504, + 0.004103577, + 0.0024364989, + 0.0008976575, + 0.0036547482, + 0.0051935897, + 0.0057706553, + 0.0061553656, + 0.008720101, + 0.013593099, + 0.018081386, + 0.024877936, + 0.017696677, + 0.0074377335, + 0.00038471035, + 0.0007053023, + 0.0014106046, + 0.0030776828, + 0.009297167, + 0.02904563, + 0.061938364, + 0.0906634, + 0.07585206, + 0.03706043, + 0.0, + 6.4118394e-05, + 0.00044882874, + 0.0025647357, + 0.010515416, + 0.045780532, + 0.13003209, + 0.19915172, + 0.18376331, + 0.09476698, + 0.0, + 0.0, + 6.4118394e-05, + 0.0007694207, + 0.008399509, + 0.04263873, + 0.14061163, + 0.2582689, + 0.24743287, + 0.1262491, + 0.0, + 0.0, + 0.0, + 0.00044882874, + 0.003911222, + 0.025775593, + 0.087136894, + 0.16516897, + 0.16478427, + 0.0899581, + 0.03391863, + 0.04103577, + 0.024493225, + 0.009489522, + 0.0010258943, + 0.00019235518, + 0.0, + 0.0, + 0.0, + 0.0, + 0.078224435, + 0.09835761, + 0.0613613, + 0.018594334, + 0.0028853277, + 0.00032059196, + 6.4118394e-05, + 0.0, + 0.0, + 0.0, + 0.087072775, + 0.113874264, + 0.073479675, + 0.025711475, + 0.0055141817, + 0.0012182494, + 0.00012823679, + 0.0, + 0.0, + 0.0, + 0.05385945, + 0.07194083, + 0.05110236, + 0.018658452, + 0.0055141817, + 0.00083353906, + 0.00032059196, + 0.00019235518, + 0.0, + 6.4118394e-05, + 0.018466096, + 0.026480895, + 0.017055493, + 0.009681877, + 0.0043600504, + 0.0030776828, + 0.0017311965, + 0.0019235518, + 0.0013464862, + 0.00032059196, + 0.002628854, + 0.004937116, + 0.004937116, + 0.0044882875, + 0.0043600504, + 0.0064759576, + 0.010643653, + 0.017311966, + 0.010836008, + 0.0059630102, + 0.00032059196, + 0.00032059196, + 0.0007694207, + 0.00198767, + 0.005257708, + 0.015709005, + 0.03988164, + 0.061233062, + 0.05860421, + 0.028404446, + 6.4118394e-05, + 0.0, + 0.00019235518, + 0.001154131, + 0.0053218263, + 0.02949446, + 0.08361038, + 0.15112704, + 0.14311224, + 0.07271025, + 0.0, + 0.0, + 6.4118394e-05, + 0.00025647358, + 0.004552406, + 0.03141801, + 0.1035512, + 0.19145751, + 0.19581756, + 0.09983233, + 0.0, + 0.0, + 0.0, + 0.00025647358, + 0.0028853277, + 0.019812582, + 0.064374864, + 0.12605676, + 0.13041681, + 0.0732232 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.orange-foot.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.orange-foot.json index da1a21c0d..936ce9f7c 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.orange-foot.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.orange-foot.json @@ -192,28 +192,50 @@ "id": "f54tysqm", "source": { "alternativeTitles": [], - "contributors.agent.label": ["C. & J. Clark Ltd"], - "genres.concepts.label": ["Ephemera", "Posters"], + "contributors.agent.label": [ + "C. & J. Clark Ltd" + ], + "genres.concepts.label": [ + "Ephemera", + "Posters" + ], "id": "g4fgdpsj", "sourceIdentifier.value": "b20166473", - "identifiers.value": ["b20166473", "2016647", "digephemera"], + "identifiers.value": [ + "b20166473", + "2016647", + "digephemera" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["kqgqv5w3", "c84rg4v6"], + "items.id": [ + "kqgqv5w3", + "c84rg4v6" + ], "items.identifiers.value": [ "i16656696", "1665669", "i18448446", "1844844" ], - "languages.label": ["English"], + "languages.label": [ + "English" + ], "notes.contents": [ "\"Prepared and published by Clarks Ltd., Street, Somerset, in the interest of foot-care.\"" ], "partOf.title": [], "physicalDescription": "1 poster : color illustrations ; 68 cm", - "production.label": ["Street, Somerset", "Clarks", "[1973?]"], - "subjects.concepts.label": ["Shoes", "Foot", "Child Development"], + "production.label": [ + "Street, Somerset", + "Clarks", + "[1973?]" + ], + "subjects.concepts.label": [ + "Shoes", + "Foot", + "Child Development" + ], "title": "Your child's first shoes : no hard seams, support and protection, real leather uppers, fully adjustable, light and flexible anti-slip soles, room for chubby feet / Clarks Ltd." } }, @@ -235,1095 +257,5130 @@ ] }, "filterableValues": { - "locations.license.id": ["inc", "inc"], - "source.contributors.agent.label": ["C. & J. Clark Ltd"], - "source.genres.label": ["Ephemera", "Posters"], - "source.genres.concepts.id": ["ucmbnwkq", "whcsuusy"], - "source.subjects.label": ["Shoes", "Foot", "Child Development"], - "source.production.dates.range.from": [94694400000] - }, - "vectorValues": { - "features1": [ - 3.3302662, -1.602483, -1.9871953, 0.05068008, -2.099102, -1.0756757, - -3.6700525, 1.2230127, -1.865311, -0.17395645, -1.5744778, -0.43260738, - -1.2271687, -1.5815129, -2.5592086, -0.97632045, -1.052918, -0.9318287, - -2.196578, 1.8702707, -3.1653514, -2.3352592, -2.1876478, 1.2368377, - -2.8518484, -0.1985038, -0.16773878, 3.222667, -0.14119223, -0.45515227, - -2.043674, 1.3201365, 0.30939648, -2.1228282, 0.3369492, -3.3263865, - 0.111893825, -1.5402696, -0.39531818, -0.22104532, 0.051993676, - 1.0493821, -2.3844452, -0.43496656, -3.2105813, 0.7032338, 2.0444846, - 1.4560367, 0.09306593, -1.6454464, 0.74139625, -3.0099354, -3.0060444, - -4.300681, -0.45521003, 0.4439606, -0.1482943, -2.2656438, -2.1058671, - -0.6748226, 0.68302697, 0.3436061, -5.514814, 0.1437947, 0.5514749, - 0.76835734, -1.281866, 1.7837411, -3.7378082, -2.3976252, -1.6579658, - -4.0432186, -1.4125936, 0.33391303, 0.913826, 0.19183831, -2.8479867, - -1.6603502, -1.3582253, 0.41352487, -1.9524635, -2.9807155, 0.502777, - -2.7600734, -1.626527, -2.32466, -1.9911085, 0.49904227, 0.07942071, - 1.9263775, -1.6222583, 0.17299911, -1.101214, -0.25156906, 0.19252579, - -0.053567212, -1.695179, -1.2219393, 1.1451824, -0.82847935, - -0.30044883, -0.14800918, 0.9922062, -1.8939563, 1.4413191, 2.8442168, - -2.364811, -4.2096977, -3.389207, -1.911491, -0.35483393, -0.91215545, - 0.8548504, -2.6143367, -1.120863, -0.060016558, -2.7269366, -4.6542835, - -2.5333002, -2.860486, -2.2338114, -2.7668724, 0.04386206, -0.65662116, - 0.712056, -0.68168426, -1.2277571, -0.76930636, -1.7878889, 0.9384861, - -1.6530613, -3.4168086, -2.7862859, 0.79796267, 0.014262233, 0.15002395, - -1.9196488, 1.1132574, -4.063306, -0.7549587, -1.0908358, -0.7671132, - -2.4821625, 0.6725202, -2.2697406, -3.036286, -0.73647726, 1.3007165, - -3.2976313, -0.23942176, 1.2932296, 0.3555518, -0.53945476, -1.7129645, - -4.8268924, 1.8578403, 0.16490617, -2.4995656, -0.68432343, -0.3775376, - 0.20827729, -3.2416584, -0.8545439, -3.6541793, -2.5083067, -2.0655575, - 0.411975, -2.3035727, -1.5679777, 1.1803585, -1.2382076, -0.8777864, - -1.1775957, -0.62299156, -3.7431724, 1.0476394, -0.34394586, 0.3178109, - -0.533795, -3.6456668, -2.665735, -0.42020604, -3.234262, 4.9268293, - -1.3130306, 0.33531418, -0.5771972, 2.3740873, -0.32429907, -1.6057737, - -0.34250456, -0.4316629, -0.9554089, 0.86001974, -0.83495003, - 0.23143812, -0.051248398, -2.2169569, -0.19987592, -0.3586559, - -0.8786259, -1.8312082, -0.6291867, 0.59121233, -2.0176342, -2.6428545, - -1.6188306, -1.6186186, -2.1288493, -0.25533223, -3.360201, 2.434321, - -2.7759044, 1.7709221, -2.3478363, -0.21368517, -1.5671043, 1.8457474, - 2.629139, 0.2828774, -0.020468589, -1.3546181, 0.9048844, 0.8324524, - -2.365713, -0.70637083, -1.550584, 1.671426, 0.062413566, -4.0375338, - 3.3690832, -0.7740486, -2.2321877, -4.0609813, 0.18118885, -3.1374707, - -0.700401, 1.4612224, -1.4520361, -0.26892734, 2.9239328, -1.5459082, - -0.50694096, 0.6993611, 0.22736236, 0.42406553, 2.1455617, -4.557371, - -1.7365668, 0.4681678, -2.0013433, -1.5245116, 0.67040044, -0.2541731, - -4.5247493, -1.82414, -0.9458778, -3.7103724, -3.2532365, -3.4760642, - -3.2763836, -0.35268557, -2.8660586, -0.03668836, -0.6278903, - -0.124698654, -3.1667173, 0.05183364, -2.6034446, -2.2914658, -0.863125, - -2.5820193, -2.0549257, -2.5831966, 1.0896901, 2.545777, -0.7423539, - -2.9644318, -2.6630664, -1.7380537, -0.59696347, -0.28539783, - -1.4858012, -2.1759596, -2.6087804, -0.54573506, -0.7796743, - -0.43439308, -2.1194205, 0.31033745, -4.0180006, -2.0956662, 2.30991, - 0.10099621, -2.382481, 2.0848763, -3.0077367, -2.3536286, -1.1186692, - -1.3056635, -3.4064817, -1.1502634, 1.1920531, -3.1826007, -3.2923858, - -5.4542475, -0.72871184, 0.03514614, -1.362458, -0.93558615, 1.2600591, - -1.2832502, -0.5777039, -1.5374488, -1.8397279, -0.36806166, -1.6839961, - -0.37329495, -0.666606, -1.5316942, -0.11024528, -0.41779512, 1.0033616, - -0.28065428, -3.3938468, -2.1392295, 0.93342847, -1.6292154, - -0.74462956, -0.3401526, -2.3472354, -1.33197, -2.1577196, -0.709085, - -3.2867138, 1.5731231, -2.3788202, -3.5108197, -3.304784, -2.017662, - -0.3236515, -2.109499, -2.8663545, -0.55666023, 0.23129892, -0.6133998, - -3.2762222, -0.11893536, -0.2191217, -2.018673, 0.94456863, 1.0600663, - 0.8380097, -0.6187617, -1.2721242, -1.0129014, -2.201909, -4.381504, - -1.2131362, -1.7754664, -0.8393165, -1.201605, -0.9913234, -2.9828663, - -2.79017, -1.5925955, 1.6834757, -1.2371664, -0.72830814, -2.9295428, - 3.2294385, 0.8119441, -1.7032318, -1.8803598, -1.1038574, -2.705342, - -0.072161615, -0.29169878, -0.50534236, -4.689312, 0.048573464, - -0.20696096, 0.16943872, -0.613325, -1.0812044, -3.606833, -1.1079438, - 0.9716432, -1.0208524, -1.7165109, -1.97474, -0.35459292, -0.9760464, - -0.98488384, -2.0693185, -0.8334174, -1.2253253, 1.1582259, -1.9572657, - -1.1609594, -1.7118078, 0.41408637, -3.3889546, 0.4239649, -0.54401463, - -0.5247479, 1.0492105, -5.2953334, -1.7654777, -1.3719139, -0.1388224, - -2.5026298, -1.0170115, -0.43480253, 0.36369634, -2.9984083, -0.6085598, - -3.1543229, 0.11230133, 1.3442093, -1.1014725, -2.2691238, 0.6427439, - 2.9059205, -2.7406876, -1.2960705, -1.0360854, -0.5138312, 0.09716435, - 0.9752807, 3.0010343, 0.30223992, -0.6632074, -2.5728457, 2.2124994, - -2.4566422, -3.370084, -2.6976304, -0.48021844, -0.41236973, -2.6716454, - 0.92142475, -1.5628991, -1.4835004, 0.85769886, 0.6961225, 1.9064864, - -2.8634012, -0.078608006, -1.0359013, 2.0048563, -2.8477273, -1.1889052, - -3.075522, -1.0248891, 0.048080973, -0.32671973, -2.4225242, -2.2561185, - -1.690014, -0.8011747, 0.8170209, -1.8212684, -0.10236287, 0.23091444, - -0.70576257, -2.2891536, -3.8138144, -0.2173992, -0.8101607, -2.180275, - -1.8605852, -3.0190892, -1.0679704, 1.8817731, 0.0063040107, -1.029393, - -2.3360846, -4.5297565, -0.25902778, -2.7277467, -0.9993156, -3.0839722, - 3.8636854, 1.2326883, -0.7166536, -0.75607777, 0.4348696, -1.3864853, - -2.7965896, -1.2442368, -1.0323368, -3.7458868, -0.061482035, - -0.88778794, -0.24349943, -2.1004953, -1.0514245, -1.3819473, - -4.1472754, 1.4363103, -0.08208111, -0.6117808, 0.49317086, -1.5085953, - -1.5922798, -3.7900205, -3.921724, -2.254192, -0.85244465, -1.0605351, - -2.0699787, -1.1984131, -1.3513309, -3.669403, -2.019687, -1.4545096, - -2.213405, 0.3794971, -3.406353, 1.8959455, -1.031244, 2.288056, - -3.3906198, -4.6651206, 0.39492285, 1.044491, 1.1570041, 0.21671295, - 0.28152528, 0.044597954, -3.6831555, -1.2961496, -0.8564986, 3.805946, - 0.5874274, -1.3098099, -2.038332, -0.9828092, -3.2776048, -1.1996261, - 0.42194378, 1.4978098, -3.6776242, -0.43372774, -0.4290653, -0.55055827, - 0.6242166, -4.250524, -0.27923992, -2.1272223, -1.5897205, 1.7502253, - 0.47655183, -1.3336905, -1.2395972, 0.94995373, -1.7102377, -0.2957148, - -3.91986, -0.7976037, -1.481408, -1.709165, -1.0682515, -2.549967, - -3.0020757, 0.01933667, 1.886515, -0.15936472, -3.230186, -1.4512768, - -2.7029, -1.6589859, -3.0477245, -3.1533775, -3.3061426, -0.9801432, - -0.010319151, 1.1272582, -2.754417, -4.1069074, 0.8426565, -1.6085, - -2.1755116, -1.1508301, -1.9456464, -1.2034414, -2.330547, 0.93240565, - 1.9531417, 0.69376534, 0.6030195, -3.206891, -2.1555614, -2.7644444, - 3.2550526, -0.668753, 1.167009, -1.8328097, -2.6034865, -2.242145, - 3.6095743, -3.1509838, -3.246739, 0.58861166, 0.8164947, -3.0334444, - 2.2810721, 0.9145837, -0.0208503, -1.1728648, -2.2854657, -0.39132327, - -2.0313034, 0.861559, -3.3173313, 2.256339, 1.2782183, 0.2547778, - 1.8550272, -3.5749648, 1.1068618, -3.9005632, -2.7546027, -1.4318208, - -0.6483588, -0.60310894, -0.31448135, -0.19983295, -0.20735252, - -3.0458734, 0.68797135, -0.96415794, 2.0106208, -3.3710496, 0.6528216, - -0.011875667, 0.010341756, 2.7715046, 0.016238447, 1.2884924, - -1.4645753, -2.767658, 0.61279726, -0.9700499, 0.97508985, -2.070832, - -0.10062839, -0.93862355, 0.8747464, -0.85880923, -1.471502, -1.6157392, - -2.0571465, -1.168738, -1.1980766, -2.0526667, -2.8366048, -4.138063, - -2.23277, -1.9822029, -2.5284016, -2.4782073, 1.4121115, -2.0589585, - -1.9047457, -1.5176386, -1.1043139, 0.9934779, -1.4591746, -2.2431526, - -0.60033953, -3.0785978, -2.3404534, -3.6938176, -0.21252608, 0.9711104, - 2.2749622, -0.10410631, -1.3484184, -0.94053274, -0.6999612, 0.3460501, - -5.6188807, 1.503921, -2.3306336, -1.4790636, 1.4778725, -0.67348, - -3.430085, 0.043028362, 0.63537174, -1.8965613, 0.13210553, -1.6980785, - 2.115185, -0.90938175, -0.33565038, -0.29351366, 0.038206995, - -0.39613348, -2.4799786, -0.96423286, 0.071134776, 3.5348957, - 0.57550496, -1.1445613, 0.6180142, -3.522207, 0.5627282, -3.8905299, - 0.6996334, -1.7265905, -1.0916946, -4.404404, -1.3329976, -0.24585775, - 1.2239939, -3.5715673, -2.1425102, -0.8152506, -0.94256556, -1.5898099, - 2.9580202, -1.0167989, -1.2317288, -1.6730288, -0.8039009, -4.9948, - -0.7054233, -1.0434842, -1.3991165, -1.9622055, -3.2413964, -0.44364613, - -1.4603148, -2.2062166, -2.0638304, 0.2537331, -1.4986815, -1.9347388, - 0.3546251, -2.145183, 0.49978858, -2.7947936, -0.4931701, -3.5040195, - -1.7983471, -5.332494, 0.9637115, 1.6363784, -2.7953482, -1.9028363, - 1.4874061, -0.16494474, 0.8986276, -3.5385156, 1.0273709, 1.1142693, - -0.5682675, 1.1138861, -1.0677361, -1.05926, 2.6408455, -0.74501336, - -1.1375622, -0.7487358, -1.3897773, -2.037934, 0.2483256, -2.4106755, - -2.050801, -1.6546218, -2.117464, -0.80311406, -2.9310722, 0.8667766, - -0.36803773, -3.0820782, 1.2678804, -0.12321667, -0.13402246, 2.0520809, - -1.9463643, -1.7401731, -1.1543355, -2.555549, -0.1105202, 0.25673583, - -1.2701089, -0.7463916, 0.15607744, -1.971123, -3.9272165, 0.5176342, - 1.4357113, 0.6877825, -1.8651603, -0.1672789, -2.1890674, -1.4873396, - -2.6896608, -1.0427856, 0.9656109, -1.3291885, -1.758645, -0.8662246, - -1.2460757, -3.0792243, -0.9177443, -0.45754513, 2.009487, -3.243806, - -2.5746193, -3.6849737, -2.8224335, -6.1334586, -0.52875024, -1.7303779, - -0.7107811, -1.3557153, -1.64785, -1.0800989, -3.9940665, -3.121174, - -1.3046997, -0.75939566, -0.44187814, -0.87785995, 0.59301996, - -3.1275058, -3.2269845, -2.2178552, -3.8568785, -1.3041548, -1.6316911, - -1.4250176, -1.0049264, 1.8423911, -4.5424414, -3.851923, -1.2963256, - -0.86266303, -3.4167428, 1.8082385, 0.32457712, -1.0723808, -1.7964627, - -0.90936005, 1.2736208, 0.039873198, -1.0262877, -0.95798945, - -1.0141761, -0.31155768, 0.18112205, -1.8525712, -3.4099686, 0.8551073, - -3.7830427, -4.926641, -4.369222, -3.2439473, -0.58402604, -0.83270174, - -0.47567046, -2.0554397, -0.6375874, -2.0813992, 3.2005785, -1.2148147, - 1.5388799, -2.001498, -2.352933, -0.50581884, -3.977742, -0.8940221, - -2.134313, -0.6751389, -1.449369, -0.71267015, -1.1279881, 0.9850884, - -2.5788553, 0.93956995, -2.6396835, -2.5467079, 0.80966777, 2.3579178, - -2.9853747, -1.8824991, 1.5933995, -3.4792402, 0.91841686, 1.8527557, - -0.25933248, -3.7149863, -3.1754775, -3.3012252, -3.6150002, -2.6916199, - 0.112790644, 0.86979854, -0.17604415, -1.6636251, -0.23090751, - -1.398077, -1.3449321, 2.3453796, -1.8054718, -3.52818, -0.01790382, - 3.099081, -1.1324813, -4.635602, -1.1594068, -0.7635287, -0.26051724, - 3.3950846, -2.615334, 0.13081177, -0.4775352, -3.107549, -2.2916944, - -1.4872555, -0.33440173, -2.0522032, 0.4346441, -0.13809142, - -0.64741707, -0.9599438, -0.87839055, 0.19202143, 0.7421955, -1.5552431, - -0.7748678, -1.0622791, -0.7027844, -3.2944756, 2.342327, -1.0833373, - 0.5450104, -0.84723717, -1.1937758, -3.9763615, -0.64150476, -1.0363485, - -3.359952, -0.92306775, -1.3232534, -2.8812392, -0.23164192, -1.1690774, - -3.7838848, -1.2177488, -0.87714237, -1.0096059, 0.30918756, -2.9092796, - -1.2896956, -0.16513072, -1.2943349, 1.1526684, -0.5692269, -2.3616438, - -2.3374531, -2.6087282, -0.9216639, -1.379934, 0.8671201, -2.6929874, - -4.044192, -0.75420266, 0.46871597, -3.3284714, -2.49418, -0.58319026, - -2.521354, -1.7071892, -1.2721256, -0.013287618, -3.4956257, -0.609138, - -0.78041464, -1.0029609, -1.868398, 0.9107586, -1.7321182, -1.4086535, - -1.287773, -2.385219, -0.13546519, -4.08016, -4.3212724, 1.4089087, - 2.4660497, -2.853592, 0.5299168, -0.2776928, -4.309783, -1.5369471, - -1.1658417, -1.2043343, -0.93067795, 4.288806, -1.0584385, -1.2359256, - -1.3062063, 0.12097812, 0.18424164, -0.06229139, -1.4588889, - -0.91627145, -1.7889081, -0.43324775, -0.682295, 0.81741065, - -0.54547906, -0.62632364, -3.0032294, -2.256513, -1.3080459, 0.7518882, - -0.104508966, -0.20736302, -1.3323227, -1.7910849, -1.5288734, - -1.2208387, 1.4347937, -2.0158906, -0.20597643, -2.601496, -1.5056367, - -1.8602397, -1.7342625, -1.0604184, -2.2864265, -1.24564, -6.052652, - -0.75481576, -2.044118, 0.6403991, -2.6219327, 0.88388026, -1.7417935, - -1.5374185, -2.1190193, -0.096044764, -0.25674766, 1.5368936, -3.735918, - -4.7422867, -1.3293561, -0.09699333, -2.3638058, -2.2819555, -3.016304, - -4.647702, -1.4014403, 1.5635632, -2.230942, -0.639536, -3.7290351, - -4.0206933, -0.05804635, -0.5355093, -1.2612965, -3.3587327, -0.8271378, - -2.1207097, 2.8508303, -3.1615276, 0.09557932, -1.7388132, -3.4314048, - -1.7675327, -0.22232103, 0.8204917, -2.1971605, 1.2226485, -1.0835216, - -0.053232506, -3.1406476, -1.227677, -0.80651534, -0.4708472, 1.8127265, - -0.4998914, 2.750119, -2.506438, 0.2657545, -1.3056059, -1.258548, - -0.86200243, 3.6730404, -2.6398032, -2.466402, -1.450306, 2.08667, - -1.0576012, -3.6664302, -1.9655713, -0.5484765, -3.207242, -3.1572933, - -0.62008077, -2.287975, -1.2596502, -2.9799962, -0.9531529, -1.2140659, - 0.59388304, 0.29303342, -0.9494684, -1.1551393, -2.3583856, 2.782566, - -2.3988264, -1.1355014, 2.3086975, -0.30624226, -2.675657, -0.24103731, - 0.24324743, -1.1200697, -1.464034, 0.10931705, -1.9507626, -1.9634138, - -1.4611887, -0.47388092, -0.34410933, -1.0779178, -3.2883468, 0.7799251, - -0.7035466, -1.2706679, -2.4981115, -1.3959203, 0.5170515, -1.5730535, - -0.41728294, -0.18302412, -1.5619693, -2.4680798, 1.805403, 0.63533366, - -2.7710617, 0.43476254, 0.29913, -0.22221138, -2.292904, -0.64254105, - -3.2648869, -1.6644453, -0.8125887, -2.4058716, -1.9888228, -0.5241145, - -3.3330789, -1.4512371, -1.9630224, 2.5942752, -2.679598, -0.98347795, - -0.22197121, -2.8608148, -2.2844064, -1.6766813, 1.9451612, 0.046778284, - -1.6955707, 3.3073308, -2.9464998, -2.7033782, 0.70949435, -2.2344084, - -3.8916092, -0.31612158, -0.74904394, -0.87667614, 0.4644295, - -1.1513139, 0.69636905, 0.21149601, -1.0641736, -0.87511045, 0.34186575, - -2.4279547, -0.15394783, 0.03646091, -1.9119338, -1.1329149, -4.6727753, - -2.0403183, -5.411145, -4.1312656, -4.462833, -3.542027, -2.2888148, - -1.6632446, -3.3697011, -1.0438678, -1.5009787, 0.9687673, -2.433952, - -1.0474806, -4.4877844, -2.3588824, 1.0515037, -1.4660666, -2.4902194, - -0.7895454, 0.6460987, -0.8934824, 0.22152464, -1.1477463, -3.0372353, - -1.7766199, -0.05497919, -1.8209114, -1.9804944, -3.1350875, -2.1688766, - -0.39130744, -2.2197227, -0.63526475, -2.3665485, -1.3429621, -1.259998, - -2.3188138, -1.7309756, -1.8084098, 1.3097311, 1.2127649, -1.8688732, - -0.46035776, 0.6191303, 1.6316242, 0.7310829, 0.2807533, -0.9625937, - -2.4135988, -1.7699829, -3.3509028, 0.58207977, -1.94016, -1.2957594, - 1.0917956, 0.4592166, -4.823174, 0.27053094, 0.93134195, 0.7486798, - -0.4126154, -3.8337855, 0.4111321, 0.24786945, 0.33587894, -2.1370099, - -1.1568699, -2.5216541, -1.5081017, -0.0338504, -2.0004566, -1.6996694, - -3.8495328, -1.9707507, -3.5787845, -2.810955, 0.58678496, -0.15418077, - 0.7753878, 1.5020775, -0.20485222, -2.6202657, -0.29217204, 0.15941803, - 1.1505059, 0.04366085, -2.024896, -2.0457203, -2.7405365, -4.5610566, - -1.7409744, -4.3509307, -1.4123721, 1.6809338, 0.76795256, 1.1646973, - -2.8305705, 2.0704658, 0.4447379, -2.0748093, -4.5786486, -0.7299071, - -1.3967319, 0.00022085384, -0.70398253, -2.4846184, -0.3129632, - 4.5106997, -3.6009276, -0.058683984, -1.3929816, -0.85402936, 3.6511862, - 0.37327507, 0.27294767, -2.0270483, -0.7981794, -2.0193422, -3.5870879, - -2.071864, -0.7700364, -1.9649168, -4.038003, -0.3588874, -0.9997127, - -0.041128255, -3.5717964, -1.6124059, -1.3533657, 2.782943, -1.7033728, - -1.8792201, -1.716568, 0.3224785, -0.13097072, -3.3799357, -0.18637905, - 1.2557192, -0.22183901, 1.3209646, -0.9586838, 0.111610755, -2.1832926, - 1.3141973, -2.356925, -2.8395133, -0.60406107, -1.7919929, -0.03148125, - 0.38401678, -0.32386723, -1.6826464, -3.1625166, 0.16759774, 0.58719134, - -0.40321273, -2.8508785, -3.474129, -0.30497915, -3.0719, 0.94039315, - -1.2160928, -2.554387, -1.8849717, -2.111862, 1.9117509, -1.0327976, - -0.9818471, -1.1448609, 1.500586, 0.75986433, 2.041223, -2.8254504, - -1.8316958, -0.4042881, -1.7968102, 1.88728, -2.7324495, -2.1709268, - 1.491521, -1.4913799, 0.16348404, -1.5500124, 1.2481412, -0.44620508, - 0.040406924, -2.3127034, -1.357021, 0.95392054, 0.5604346, -0.24022855, - -1.6932571, -1.9579356, -3.4074643, -0.16154335, -0.84393156, - -2.7307193, -0.22182107, 1.1257929, -3.5539517, -4.071372, -2.0656123, - 0.64488006, -2.7989266, -3.9164145, -1.5629127, 0.23825891, -1.8796233, - -0.6111634, -2.440085, -1.811936, -4.5309124, -2.866074, 1.3701515, - -3.1908114, 0.2285164, -2.7440512, 0.2346517, -2.512609, 0.06542281, - -0.84846574, -0.38906914, -1.5566542, 2.1525435, 1.3671793, -1.1915765, - -1.5856231, 0.10401837, 0.03380738, -2.7137904, 0.905732, 1.6078409, - -2.1033266, -2.6707766, -3.9728506, -1.0964774, -1.2623631, 0.059044033, - -3.1217086, -2.9935305, -0.76439637, -0.853952, -0.72732896, -0.6703794, - -1.5418135, -3.8477306, -5.470828, -2.4402776, -0.06739188, -0.62552416, - -2.0374665, -2.3889804, -2.3760917, 1.3421506, -5.0082345, -3.2202148, - -0.87650824, 0.41176113, -1.8874128, 0.051514897, -2.0904167, - -1.2117943, -0.55666506, -3.3210099, -0.2321245, -0.73507327, - 0.26034772, -1.8970869, -4.1017075, 0.71122503, -0.7183375, 1.0800443, - -1.999327, -2.4741774, -3.6497633, 0.7980787, 0.80523425, -1.1072758, - 0.6677826, 0.3295478, -1.2576748, -0.5767143, -1.7188153, -1.8164135, - -2.6292367, -1.1863034, -2.3055565, -0.8863213, -1.1282002, -4.1942105, - -0.675102, -2.2186105, -0.8666253, -1.3104411, -0.58147043, -1.0231658, - -0.8431971, -2.202481, -2.8038545, 0.40097764, 0.59713286, -0.40234637, - -2.4160087, -0.38836908, -1.8139597, 1.1606498, -1.328759, -0.05698738, - 2.591726, 2.1671686, -3.4413908, -1.4883465, -0.7450706, -3.5940976, - -2.5257535, -1.0598826, 1.1952443, -0.66641974, -5.4224415, -0.22196057, - -0.6873359, 1.7889946, 1.9493957, -1.8243111, -1.3549435, -1.084744, - -1.1865736, -2.2136059, -1.8630922, -0.9103926, 1.2225969, 0.5398572, - 0.88815767, -4.612734, -0.8272634, -0.47491947, -0.07370408, - -0.55871093, -2.88616, 0.67406034, 0.3243077, -1.0293963, -0.4396734, - -1.0002859, -0.6000067, -1.325022, -0.4734947, -2.9772549, -2.0548983, - 1.2205942, -0.46901363, -3.4738467, -2.2373793, -1.3081043, -2.4558275, - -0.8173293, 0.51109034, 1.791945, -4.0506096, -5.04057, -2.8587327, - -1.1058208, -1.2037283, 0.74882513, -2.3025088, -0.3220307, -0.33012387, - -2.1311092, 1.2184911, -3.6518974, 1.3314077, -0.7246223, -3.8557794, - 3.0194561, 0.71528226, -0.5611009, -4.0771646, 0.24587727, -0.12584151, - -1.6831939, -1.3387276, -1.8601859, -3.099042, -2.1369913, -0.7941633, - -1.9418746, 0.6496573, 1.2609137, -6.2071753, -3.3107386, -0.17596617, - -1.6202631, -2.2289813, 0.7933001, 1.645178, -1.6137174, -0.8572109, - -2.9304333, 1.4433556, -2.2507563, -0.53508717, -1.8046385, 0.63346815, - 0.7561529, -0.3876584, -2.755627, -1.2360808, -3.087471, -1.1276817, - 2.389269, -1.3226522, 0.997641, -0.85444117, -2.336523, 0.69877875, - -1.4936655, -1.8721402, -1.1674871, 0.448553, -3.6175652, -0.945956, - -1.482505, -0.45929974, 2.452713, -2.566205, -0.20897081, 0.23300414, - -1.1618718, -1.7536347, -2.0207443, -1.6302512, 0.45807514, -2.687295, - -1.2707161, -0.07764065, -1.1452668, 1.6517584, -1.956035, 1.3006635, - -1.7787505, 0.8952284, 0.92112327, -1.7815244, -1.9627849, -0.6138261, - 1.510666, -2.9890049, 2.295837, -1.6908938, -1.2405273, -1.9829193, - 1.2602946, 2.043389, -4.539325, 0.64929765, -2.5221314, -0.2739867, - 2.9516597, 2.693456, -0.37778622, -1.0271368, -0.94135016, -3.3115299, - -0.22121061, -2.0024457, -0.48932347, -0.369611, 0.35274264, 1.398297, - -0.07509748, -1.6587181, -0.4092191, -2.5570183, -2.2398124, 1.5139345, - -0.83820987, -2.477671, 0.029919825, -0.8576899, -0.65925723, - -1.5041798, -0.21386813, -1.1704355, -1.020703, -2.4561248, -1.0152388, - -1.3754572, -2.939902, -3.0953302, 0.6071673, -2.0653615, -0.84682906, - -2.8535583, -1.1721802, -4.8293943, -0.43306163, -2.5630763, -0.4606277, - 1.063068, -3.5580642, -2.2782226, 2.605622, 3.9901383, -2.9063857, - -2.862725, -1.4667904, 1.4357721, -2.4155822, 1.0504816, -3.315228, - -2.886905, 1.703437, -0.2254022, -0.9748527, 2.002445, -2.281805, - -0.19332324, -1.8432394, 1.4743178, 0.51342726, -1.0217298, 0.92916065, - 0.20192134, -2.7821074, -3.5028806, 1.5881503, 1.0538752, -3.0673473, - -3.035708, -1.2455407, -0.5593466, -1.4656318, 0.674483, -1.4648182, - -0.83418494, -1.8620082, -1.042867, -0.23640549, -2.057865, -3.9797902, - 2.8796916, -0.098960735, 0.21537724, -4.5212026, -0.6032489, -1.8023022, - -0.6915037, 1.7594633, -1.1168818, -2.1457088, -1.5714911, -0.65345967, - -1.1549014, -3.6511133, -0.894075, 1.6070579, -1.4312577, 0.4651796, - -0.8598195, -3.067521, -1.8306888, -1.7554787, 0.4886345, -0.71319586, - -2.368945, -1.3563006, 2.1861227, 2.0257502, -1.33708, -4.0085425, - -4.869942, -2.8662112, -4.0781293, -1.6977545, 0.73221767, -0.9872343, - -1.5377886, -0.12690681, -4.4823713, -2.7236667, -1.3357074, 2.0969388, - 0.6996451, -3.2862644, -1.4401343, -5.0546494, -3.5367866, -2.9846344, - -1.8947186, 0.7493304, -1.2834282, 0.3628658, -1.1770747, -0.26280487, - -0.4171915, -0.40933943, -0.5270395, -0.44618547, 0.7499612, - -0.80521595, -1.4904461, -0.25890946, -1.892623, -2.9529462, - -0.84990525, -2.3211455, -4.007888, 0.7847775, -1.2452421, -0.57562584, - -0.17498922, 0.078831956, -1.6765722, -1.3549117, 0.027483128, - 0.059322476, 1.0139662, -1.578093, -3.3176184, -1.8062941, -1.201551, - -0.47649, 0.26640633, -2.486522, 3.9427383, -1.0365314, -1.926866, - -2.3965375, -0.33246154, 1.6124766, -0.9869269, -0.48384297, -1.0268496, - -0.9359422, 1.1505117, -0.28083006, -3.7976606, -0.25593078, 2.1549132, - -2.5141158, -1.1153181, -2.2386606, -1.705383, -1.8136649, -1.2157989, - -1.3345033, -2.1588182, -1.1313219, -1.2188646, -0.9098468, -2.2623484, - -2.447515, -1.2493001, 1.9710373, -1.8358971, -1.2499529, 0.51436836, - -2.7837873, -0.19798054, 1.1742935, 2.814726, -1.9028335, -1.2838608, - -2.2880306, 0.819868, -1.5352464, -3.0866058, -1.7847068, -1.1670228, - -3.834999, -4.0781956, -2.358385, -0.48842287, -0.6481843, -1.8627996, - 0.033927493, -0.18043381, -0.15752937, -0.8283115, -0.9099176, - -0.16476545, -1.3993393, -0.26430792, -2.2548425, -1.2792583, -2.562599, - 1.4113703, -1.6906929, 1.372041, -2.352265, -1.7775561, -0.76790386, - 4.1117854, -0.18453705, -4.8808513, -1.4899054, -0.021530896, - 0.35063317, -0.8208507, -0.9585201, -3.0717068, 0.21146445, -0.6049663, - -2.411294, -0.24325816, -1.974449, -0.41131824, -1.9557624, -1.0670044, - -3.1588929, 1.5383115, 0.049277026, -1.0724833, -2.6321812, -3.6550283, - -4.636293, -2.6135523, -1.0875419, -2.6100087, 0.32756174, 0.7505887, - -3.463297, -0.6176885, -2.3352017, -4.3963614, -2.105301, 0.8364464, - -0.518301, -2.245641, -1.3465219, 1.5806689, -2.5266402, -0.16291538, - -0.25705025, -2.4641864, -2.1112792, 0.07791272, 0.4362414, 0.15854086, - -0.703902, 1.3832121, -5.105429, -1.3104143, 0.7988715, -4.0267835, - -1.3811278, -3.41118, -1.8670768, -5.2586527, -0.51007587, -0.3802759, - -2.9407601, -3.397929, -0.53046244, -3.0580664, -0.8935151, -0.6023848, - -2.0069118, -1.258481, -2.4308681, -1.5079155, 1.2745367, -3.136706, - -2.2137282, -3.0769672, -1.4042648, -3.6318047, -3.8153238, -0.24065888, - 0.58834845, -1.0218768, -0.6177875, -0.59744143, -3.5317698, 0.24365595, - 2.8753786, 1.8855267, -5.1172233, -4.8930364, 1.5333791, -1.3591974, - -1.5779661, 0.4250305, -0.9562609, -0.8553229, -1.8051085, -1.6259587, - -1.9578122, -3.459591, -1.8349667, -3.3868103, -1.055719, -2.134702, - -2.1385088, -1.3079405, 0.61070275, -4.131597, -0.8859795, -0.5310676, - -1.7627186, -2.6352365, -2.717042, -0.51730084, -2.9434755, -1.1343963, - 1.0952828, 1.6073257, -1.2054247, -3.8050025, 2.3472338, -4.6456885, - 0.192348, -1.1228153, -1.2368007, -1.9879569, -0.58045936, 1.4838066, - 1.059082, -1.4248813, -0.14653601, 1.0310092, 0.55302346, -1.054449, - 3.8647277, 0.22378206, -2.7254198, -1.1295805, 0.1018841, -2.5310688, - -0.21132477, -0.092923865, -0.22786134, -2.3024402, -2.4869714, - -2.2168093, -0.8534825, -2.0664155, -0.9098169, -4.0040545, -0.5537137, - -3.214851, -1.5017595, -4.3726273, -1.0280674, 2.1802218, 1.141029, - -0.20953378, -0.6397473, 0.31269658, -3.129844, -0.72153103, -1.5302302, - -0.06931046 + "locations.license.id": [ + "inc", + "inc" ], - "features2": [ - -0.2241062, 1.339118, 0.93448335, -0.48607093, -0.6837342, -3.3743696, - -1.4112251, 1.6740366, -0.8047196, 1.5717341, -3.1235373, 1.4311361, - -1.1801151, -0.54857326, -1.3530135, -1.4029952, -1.6899823, 1.325717, - -1.2171327, -0.5782398, -2.7068887, -1.9276211, -2.6032114, 0.344195, - -3.4682949, -1.5122248, -0.74662185, -0.9554108, -3.641436, -1.9532484, - -3.5270426, -0.48169562, -0.9410375, 2.5046124, -0.21519576, 0.56189877, - -2.1605523, -3.127976, 0.6810464, 0.31247583, -2.0091429, -1.2308171, - -1.4009665, -0.61390615, -0.6818618, 1.4072758, -5.0522566, 1.5319693, - -0.14721207, 0.090475924, 0.11951822, -0.9701415, -1.7616413, - -1.2153584, 0.043586202, -2.537018, -3.451815, -0.8863187, -1.2355583, - -2.126453, 1.4584603, -1.8619225, 0.040107746, 2.563735, 1.0925413, - -0.57896256, -2.0914066, 0.39611363, -0.99581337, -3.7011414, - 0.030004375, -0.3269245, 0.78054726, -2.3988264, -0.1860385, -2.3322976, - -0.24704583, -0.95055604, -1.5632123, -4.3797355, -2.2400508, 1.2245847, - -0.95590335, -0.7933605, -3.0894668, -2.658739, -0.5594205, -2.455657, - -1.4012743, -0.5288001, 0.9010818, -0.45100293, -2.1015396, -1.4309896, - -0.60286176, -2.9954138, -1.7017589, -1.0077759, -1.1104196, -2.0814514, - -2.3830216, 2.272594, -0.927157, -4.3497972, -4.353862, -2.2587655, - -3.2711198, -2.2639496, 1.479433, -2.9538603, -0.973704, -2.920209, - -2.9948566, -1.3364199, 2.0191092, -0.3907123, -0.37435097, -2.2795043, - -2.19125, -3.2699635, 0.25346798, 0.043334357, 0.6808133, -2.2556071, - -4.492315, -0.29386097, 0.5943346, -0.034001715, -2.9395828, -1.8524514, - -2.1887121, -2.9900613, -0.4872386, -2.0667055, 0.9347654, -1.3351486, - -1.2885821, -4.128173, -1.632245, -2.086907, -2.328989, -1.3738879, - -1.3188499, -2.8130076, 0.09636542, -1.0565829, -2.21298, -1.8276722, - -1.0702431, -2.138968, 0.42190215, -0.8827995, -1.7166933, -5.1834636, - 0.73100233, -1.0932775, -3.0157456, 0.4903612, -1.2333558, -1.7844075, - -1.700178, -1.0484856, -0.8176468, 1.2352068, -3.006611, 0.16762054, - 0.6389489, 3.2192032, -2.1186893, -1.3165432, -1.7639279, 1.7464347, - -2.454514, 0.7264757, -1.4927155, -2.6912286, -0.8756908, -2.0452394, - -0.17300457, -0.2444947, -0.30398142, 0.424155, -5.303167, -1.6688442, - 2.8980434, 2.5174599, 1.4126312, 0.4386175, -0.33024848, -0.1130664, - -2.450479, 2.9231813, 1.5108722, -1.6280451, -0.6021594, -0.705064, - -0.22695039, -3.6650743, -2.9614317, -0.01816484, 0.0999088, 2.8415043, - -1.1437131, -0.5605225, 0.88550293, 1.68435, -0.20420144, -3.2314196, - 2.1161518, 0.7188067, -0.943454, 0.16453244, -0.24420074, 1.0565462, - 0.46052074, -3.6094134, 0.01591099, -2.3528445, 0.16528937, 3.5626936, - -0.7210076, 3.0149295, 0.74562216, -1.447736, -0.479875, -1.0889999, - -2.175026, -1.815007, -1.02541, -0.3679632, -3.6779883, 1.0661612, - -1.3911864, -2.9206407, 0.6324513, -1.39134, -2.5611448, 1.8411666, - -1.4635258, -2.4676871, -1.8226224, 0.37612256, -3.0222356, 0.8558942, - -0.7232382, -0.7649526, -0.77697706, -3.3878777, 1.9828508, 0.10461715, - -0.9945195, -0.32709134, 1.6027298, 2.1448352, 0.49616396, -0.24158436, - -0.018343765, 1.6935996, -0.98456967, -4.3965273, 1.0365764, -1.8095478, - -2.6286607, -0.77234375, -3.1028254, -3.8984656, -1.1203349, -5.117258, - -0.59563994, 0.39138636, 1.3255763, -3.0218923, -3.9352374, -0.2869259, - -3.358898, 0.5151381, -2.5619338, -3.4016645, 0.09184812, -0.97111243, - -1.895298, -2.0384822, 2.392037, -1.531334, -0.7606374, -0.34813008, - -0.92428005, 0.36832273, -2.006015, -0.7825059, -1.0526645, -3.5006256, - -2.5908418, -1.2426258, -0.62042904, 0.29382816, -4.394416, -0.2022494, - -1.3222239, 1.9881825, -1.1649442, -3.2799735, 0.88704216, 1.1256502, - -0.048326895, -1.5207433, -0.7404972, -1.2125063, 1.2076436, -1.017115, - 0.13597098, -4.8860164, 1.818174, -1.5643477, 0.13064742, 0.055583417, - -1.3894486, -1.991324, -4.591401, -2.6882958, 1.2023097, 0.014300395, - -0.5209085, -1.0226014, -2.2059624, -1.03926, -1.3422807, -4.291622, - -0.5328757, -1.8895841, 1.6901202, -0.27468014, -1.530194, -0.47452736, - -1.9807068, -2.0930672, -4.084741, -2.0696554, -1.715166, 3.866043, - -2.4157436, 0.29990834, 1.1312295, -0.04219251, -5.171859, 1.5314671, - -1.544641, -1.5041392, -2.2241993, 0.28569567, 1.0115391, -1.4104677, - 1.5925282, -1.1350801, -0.14826632, -0.92316353, -1.5623926, 0.45283523, - -1.0461376, -1.8012769, -1.767304, 0.25376785, 0.15513301, -2.7161584, - -0.95043665, -0.7861749, -1.3496063, -3.046695, -2.6266956, -1.7375702, - -1.9223365, -1.6292273, -1.7178133, -2.3510854, 0.1986204, -0.038822107, - -2.572968, -0.08028059, -0.7585817, -3.2397208, -0.8850358, -0.2403083, - -2.2680075, -2.5629737, -1.3425432, -1.374009, 0.14527695, 2.1010728, - -1.6686499, -0.99148965, -0.1300786, -0.4337705, -2.1426635, -0.9121357, - -3.4742692, -0.10799836, -0.84412843, 3.435468, 2.270173, 0.12956588, - 0.7170687, 1.0780672, -1.5842586, -1.1208996, -2.3654315, -1.0682316, - 0.55179054, -2.686068, 0.90522134, 2.1213932, 4.032656, -0.64208114, - -3.0318174, -5.071287, -1.6972708, -3.056934, -0.7765199, -1.4274471, - -2.3688169, -1.2978814, -0.5336548, 1.9931219, 0.5975907, 0.36349642, - -1.586104, -1.7397038, 0.39391068, -3.9568574, -2.0724366, -2.0997498, - -2.2612164, 1.8014297, -1.5589105, -0.71296924, -1.9035858, -2.183425, - -2.2007723, 1.3799661, -0.016035497, -3.12179, -2.2293172, -0.017164072, - -1.0900052, -0.49256095, 0.13296576, -4.246929, -0.49996376, 0.35456184, - 2.1165621, 1.3781291, -2.4410257, 0.7884503, 0.71562964, -2.4565902, - -1.5878592, -1.0723513, -0.9183825, -1.0551406, -1.5570811, -2.3015149, - -4.0872464, -2.8309212, -2.3816812, -0.56555176, 0.7645934, -2.776375, - 0.28131983, 1.336942, 0.47143096, 2.219646, 0.41188756, -1.5359789, - -2.5162756, -0.8205039, -0.36654833, 1.4264368, 0.596212, -1.4399047, - -0.9042857, -0.014028795, -0.39978582, -0.7556484, -4.333169, - 0.12053071, 0.14898479, -1.189224, 0.45503986, -5.5992317, -3.5725439, - -2.3758008, -1.3982055, -2.0329041, -0.6056142, -2.6163054, -2.1827781, - -0.56304216, -1.459297, -1.1204892, -0.6889632, -1.5567944, 0.38053873, - 1.7786343, 0.279524, -1.600395, -0.0010933653, -1.8754097, -4.877888, - -1.4223266, -1.2632184, -2.2478032, -2.4907334, -1.4775469, -0.16042192, - -1.6648321, -0.19932373, 1.5558805, -1.124103, -3.83066, -0.92399937, - -0.9617502, -3.3306267, 0.3034474, 0.456729, -0.888636, -2.6633005, - 0.3233006, -0.31882188, -1.5589719, -1.4925513, -2.2596734, 4.2026863, - 3.1855872, -3.0966835, 2.4124014, 2.8159802, -1.7439771, -0.61313355, - -3.3103633, 0.3407379, 2.7468343, -4.6535954, 1.270826, 1.2093232, - -2.2887018, -1.7145159, -1.1117603, -0.56334656, 1.5529429, -2.7498317, - -2.6715739, -0.21088608, 0.66463697, -1.5539889, -0.94399524, -1.036868, - -0.41311306, -3.539681, 0.8144366, 1.7689202, -0.7530233, -0.6946867, - -1.4507713, -0.4946027, -1.277206, -4.197198, -1.0353303, -0.17626274, - -1.9803289, -0.55522364, 3.0092244, -0.4514125, 1.8373188, 1.573881, - -0.6542668, -0.5683185, -0.730246, -0.5676912, -2.2854548, -0.10563693, - -3.3298688, -0.7180884, -4.0392876, -2.9389112, 2.60579, 0.58034885, - -1.2778785, -0.8400947, 0.059427157, -2.2255344, 0.8871989, -2.378437, - 0.45952997, -1.1340843, -3.0542228, -5.534723, -0.8751731, -2.8792095, - -2.1573944, -0.4868879, 0.19141668, 0.3440994, -2.6833904, -1.931664, - 0.7764859, -4.605091, -3.680001, -1.2584964, -1.0117891, -2.244641, - -1.7206333, -1.8411919, -1.7367198, -2.2507021, -3.0106976, -0.39874542, - -2.6786504, -1.1281216, -1.555361, -2.3737602, 0.8536129, 2.6969886, - -1.2718575, -3.20831, -2.5607717, -1.9958864, -1.8212649, -2.5246253, - -2.995328, -0.7229581, 1.0069902, -0.8425564, -1.2731762, -0.9671443, - -2.57246, -4.3551083, -1.9805555, -1.204671, 0.41776508, 1.216778, - 0.58428, 0.36862785, 0.39730388, -3.5021825, -0.5378885, -1.2652115, - -1.1825331, -3.3915422, 0.5011581, -3.1633236, -4.521375, -0.7749082, - -3.3136108, 1.1291536, -0.33262786, -0.21349765, -2.88597, -0.008406494, - 1.4294062, -0.6280863, -1.6670437, -0.6259923, -3.2920043, -2.4692986, - -0.72981596, -1.7150743, -1.0059453, -0.29925567, -0.9090242, 2.828545, - -2.4883366, -3.2851994, -1.9910923, -0.5544691, -0.5722686, -2.0104342, - -1.1210692, -0.9392766, -0.69895506, -0.07054727, -0.3859681, - 0.026005663, -1.3547571, -1.2619004, -1.4581528, -0.5539777, 1.4865344, - -1.5464889, 0.13252234, -0.7932944, 0.58807266, -0.08389747, -1.735949, - -0.38453367, -1.1498387, -3.2227547, 0.4312881, -3.394062, 1.6139253, - -2.4875677, -1.2624301, 1.0699822, 0.14036062, -2.1292152, -1.8295164, - -2.4202895, -0.15666474, -0.076214105, -2.7383375, -1.41218, -0.7873399, - -0.1228916, 0.3291102, -2.4018102, -1.0980749, -2.326807, -2.3306525, - 0.21094264, 0.6421629, -0.11231136, -1.6669941, -0.77831423, -1.0684425, - 0.310373, 0.38119003, -0.8637116, -0.89117956, 0.84625906, -0.7573204, - -1.9113218, -3.5359893, -2.994425, -0.047033902, -0.7413772, - -0.98362565, 0.7025397, -1.6992275, -1.7395207, 1.2695336, 0.6765309, - -0.030808084, 0.9203346, 0.57291865, -1.3595208, -3.1561725, -5.777089, - -3.056095, -0.93192136, -1.7766926, -1.0180063, 0.69515663, -0.35056916, - -0.13331242, -1.9338839, 2.6715207, 2.291644, -3.1605878, -1.2896087, - -2.6976187, -0.6088431, 1.7553455, 1.2113029, 1.4619877, -1.2221544, - -1.0573854, 0.06082928, -2.1296697, -2.7629306, 0.28492868, -2.9041185, - -0.33101892, -0.57864726, -2.3328373, -3.3315246, -0.4177555, 2.358383, - -3.9361727, -1.2648236, 0.0560698, -1.1122909, -2.3284626, -2.3488865, - -1.0984948, -3.360721, 0.49417698, -0.20831999, 1.5431249, 2.422516, - -1.380173, -1.1366615, -2.575553, -2.0800595, -0.46587196, -0.14900135, - -2.1648555, -1.7840718, 1.598697, -1.6310861, 0.94445705, -1.9171312, - -0.9865326, 0.5439621, -1.1354016, 1.332526, -0.82795775, 0.42487478, - 0.06476241, 0.8308168, 0.8017041, 1.2260365, -3.1659446, 0.98216563, - -3.5839343, 0.13489734, -0.26521313, 0.96725345, 1.079274, 0.50746673, - -1.3336958, 1.1711679, -0.027492184, -3.0289092, -3.3281028, - -0.98777115, -2.58195, 2.3187852, 0.18504393, -2.1392357, -0.2195494, - -3.5710318, 2.5107927, -1.7920771, 1.629098, -0.42462304, -0.3014828, - 0.31977925, -1.2365805, 0.8566861, -3.6165702, -1.8401343, -2.1993124, - 0.20854029, -0.9621999, 1.652932, -0.50134367, 0.47413227, 0.05443821, - -0.5036021, 0.54979724, -0.9314124, -0.7117856, 0.4866687, -4.6516623, - -2.3012655, -0.32113963, -3.0058138, -0.48240417, 1.1404552, -0.9453051, - -0.48933122, 0.08330612, -2.1097045, 0.17818227, -0.2583215, 0.27685153, - 0.1029622, -1.5238396, 0.17929213, 0.7347694, 2.5360796, -2.7824676, - 0.039058987, -1.1069329, -0.94197536, -0.5390593, 1.9590921, -1.9864697, - -2.6463122, -3.0783246, -0.9005398, -1.3950821, 0.8985374, -1.4587, - -3.1884375, -1.751611, -2.5358534, -1.769149, -1.2559122, -2.0029306, - -1.2770138, -1.0565983, -2.8214657, 0.4612692, -1.6910015, 0.38390908, - -3.004383, -0.33669958, 0.7229992, -0.41074044, 1.6562392, 0.7832451, - -0.22982685, -2.9244316, -0.14123163, -0.63384074, 0.8805302, - -0.5769519, -2.503973, -1.7256993, 0.8879502, -2.6454647, -2.8165226, - 0.3731148, -2.6349888, 0.73177356, 2.6569965, -3.2335706, -0.036780346, - -2.5902023, -3.1805663, -1.874717, -2.6808374, 1.2146964, 0.19448015, - 1.0046209, -2.3505032, -2.2343063, -0.2439807, -1.394252, 0.28210393, - -0.5760447, -1.6942072, -0.9645415, -0.41006473, -2.46713, -0.8577808, - -0.21362388, -4.5827093, -0.13714823, -2.1558962, -0.38773134, - -1.2384646, -0.62978566, -0.63904464, 3.784737, 0.8700485, -1.995199, - 1.3163546, -4.8878164, -1.8101839, -0.72317946, -1.6357936, -2.4393141, - -0.5671944, -0.87799686, 0.66786945, -3.352117, -2.7026882, 0.31131697, - -1.8257061, -2.8479092, -1.6249388, -1.6803374, 0.2929499, -1.0898618, - 0.022830598, -1.9817393, 1.5155199, 0.6144253, -0.9777288, -0.71320754, - -2.9015477, 1.4260468, -1.3078402, 0.7653172, -1.5454779, -1.0957739, - -1.7469527, -2.9510639, -1.007319, -1.7315248, 0.20747194, -1.9814138, - -0.27330706, 2.5665638, 0.93538785, -2.0417297, -0.8378371, 1.0631597, - -0.8525354, -1.1610433, -2.380972, -0.8852681, 0.10965274, 3.0687988, - 0.6947828, -2.0162861, 0.78286946, -1.7730582, 1.0414604, 0.49206075, - -2.2671766, -4.2081623, 0.3362636, -3.032112, -3.0329187, 0.38344672, - -1.5948826, 0.09457038, 0.01392483, 1.351029, -2.5867085, 2.4261706, - 0.32803938, -2.7588363, -1.3263918, -1.5704294, -2.5009255, 0.100268565, - -0.9724301, -2.4488308, -1.2055404, 1.184345, -3.5994358, -1.231658, - -0.55951923, -1.9134743, 0.34088045, -0.7409528, -0.40036762, 1.4816028, - -2.3447506, -2.4228451, -2.187569, -2.5874965, -1.1657668, -3.394491, - -2.0145056, 1.7733675, 0.23030414, 0.11648296, -3.2375746, -0.5027841, - -0.6885162, -3.4564536, -0.32625848, 2.539974, -0.8871201, -2.4900002, - -1.0481184, -4.049818, -1.6249437, -1.6521788, 1.9065856, -3.1231108, - -2.790395, -1.8484786, 1.8550074, -2.5625286, 0.5990648, -1.3784862, - 1.8357877, -2.9953806, 1.4016945, -3.24797, -1.4329354, -0.3289231, - -1.8545903, -0.048318967, -2.4490354, 3.8843515, -3.788871, -1.5499884, - -2.0038188, -1.427043, 1.5405493, -2.1817265, -1.8486413, -4.1128917, - -2.4762902, 0.74502814, -0.18019886, -1.11325, 0.06310831, -2.4901183, - -1.7651517, -0.46505868, -1.7707675, -3.2331276, -3.2959964, -1.3621919, - 1.170028, 0.33559772, -0.7044492, -0.015015129, 0.8413464, 0.7852632, - -0.52730435, -1.8990135, -2.5388162, -1.1818223, -0.67807496, - -1.7748892, 0.4255354, -1.8283072, -1.5025395, -3.8141663, -3.9788685, - -1.4448123, -2.0706077, 0.39543045, -2.250552, 0.019310672, -0.5847204, - -0.09134686, -2.1643302, 0.20133302, -2.8550668, -0.73754966, - -2.0154018, -3.7780836, -1.5109588, -3.6053216, -3.5086474, 0.89758503, - -4.003708, -0.61761934, -2.7233052, -1.4195712, -3.0143316, -3.2606096, - -2.2957616, -2.8247185, -0.5307546, -2.2737901, 1.3776935, -0.40446076, - -2.2287035, -2.5033295, -0.9621366, -1.206856, -0.47459057, -3.0694087, - 0.5400847, -2.0702398, -1.408193, -2.783867, 1.2884681, -2.0880463, - -5.0927424, -1.3785051, -2.212116, -0.06854159, -1.1511469, -4.7271247, - 0.28160867, -0.8513769, -0.9515669, -0.6126405, 2.781402, -0.84738696, - -3.3952193, -1.3970041, 1.8253454, -1.8508315, -1.004317, -1.725277, - -5.345101, -1.9145652, -0.7700785, -2.9325387, -2.4432325, 0.958066, - -0.4780343, -0.34810656, 0.40413165, -0.5524772, -1.4816978, -4.0043573, - -0.21907899, -0.5505199, -3.1555743, -1.1288424, -1.2551347, -2.7924652, - -2.2341454, 0.10183438, 1.5807408, -2.6621888, -0.9350197, -0.5544683, - -1.1727002, -2.7562163, 0.26446217, -2.296976, -1.3211427, -3.758419, - -3.56937, -1.5191911, -0.29239908, -1.4536979, -3.504544, -0.8003625, - -2.4815905, -0.8374359, -0.4325287, 0.7350427, 0.12369535, -0.7098645, - -1.2258984, -0.52484894, -0.2729866, -0.28896397, 1.9803865, - -0.78388214, -2.338722, -2.401094, 1.6412311, -2.614708, -0.050278578, - -1.3671848, -0.8693139, -4.1632347, 0.22755443, -3.020093, 2.8651962, - -0.4884075, 2.2304733, -0.5325623, -2.0061383, 0.14703569, 0.92006457, - 1.2591174, -3.6456165, 2.276625, 1.2738943, -1.8423094, -1.9057388, - -2.4454558, -0.1221681, -0.40467617, -1.9546229, -0.79324454, -1.687751, - 0.941046, -1.1617491, -2.286588, -2.3199186, -2.8681889, 2.3345075, - 0.96999127, -0.448715, 0.22235258, -2.4149373, -0.6536623, -1.2929255, - -0.3921901, -3.7370641, 0.8250434, 0.5096911, 1.71755, 0.97193515, - -0.5584781, -3.9444618, -1.3078454, 0.33204886, -2.2812517, 2.2546856, - -0.3350217, -2.9447854, 0.6684682, 1.3992869, -3.4138362, -4.9013453, - -2.8233588, 0.3295302, -0.9152192, 1.0978371, -1.0130038, 0.34697688, - -1.0373242, 0.70293355, -6.110106, -1.9174224, -0.2056061, 0.08112534, - -2.2904418, 1.4790962, -2.5558496, -0.9327418, 1.5509702, -0.2131567, - 0.15209588, -1.1480751, 0.40387553, 0.52745074, -4.1188397, -1.0476418, - -0.72741634, -5.621409, 0.89902854, -0.99615145, -3.9409893, -3.4112263, - -0.82417727, -0.42605323, -0.3293836, -0.683091, -1.8606194, -2.6493204, - -0.022538356, -4.5697846, 1.2103864, -1.383281, -0.7960938, 0.322621, - 0.23204798, -1.4293216, -1.3509598, -1.6984519, -1.6905701, -3.782181, - -3.6768532, -1.3256611, 0.647282, -1.4705892, -1.4394668, 0.35355088, - -1.353539, 2.9946299, -0.1442295, -0.34475967, 0.53512925, -1.6144418, - -4.65783, 2.2566385, -0.78676015, 0.5140147, -1.9155983, -2.0746095, - -2.5863433, -1.2190601, -0.104746275, 1.591375, -1.6057367, 0.48290524, - -1.0976021, -2.7465289, -1.1697415, -1.4155688, -1.5159571, 1.6734774, - -0.8389704, 0.44284695, -1.3894247, -5.5935636, -0.8023049, -0.88241374, - -3.0669174, -2.0381153, -2.366418, -0.61099017, -0.8359346, 0.78081155, - -2.4426491, -2.9891005, -1.8548934, -2.519794, -4.1625175, -2.7645836, - -0.9925816, -2.4368, -0.9540943, -4.6780324, -0.25099584, -1.8186182, - -1.2212787, -1.666799, 1.8620304, 0.11844407, -2.3216796, 1.3564848, - 0.6714725, 0.059776828, -0.8588204, 0.97812814, -1.3891256, -2.4191072, - -0.28787306, -2.1725798, 1.2393117, -3.2093754, -3.0586154, -2.1573374, - -1.0783324, 1.2991694, -3.475341, -1.9196858, -0.6268007, -3.755709, - -1.407043, -0.5098132, 0.8216203, -3.5265348, 1.7983869, 0.37151766, - 0.1498832, -1.0808673, -0.3504483, -0.64287066, 0.57677644, -1.0340588, - -3.196312, 0.76068866, -0.67366576, 0.46794844, -0.69886696, - -0.06563628, -2.0384955, -0.79817367, 1.1078469, -1.954183, -5.283242, - -3.6410935, 0.014825068, 2.5235772, 1.0316994, -0.871212, -2.7243605, - -1.2130109, -2.0497992, -0.39487827, -4.106941, -0.796271, -3.4243095, - 2.3172793, -1.0412138, -2.4787621, 1.5521301, 0.6111666, -1.1420126, - 0.27296898, -3.2339826, -1.5914329, -1.13322, 0.6771777, -3.0914426, - 0.5897533, -1.571544, -3.0584526, 0.27196229, -1.6116091, -3.3335347, - 0.7574978, -0.5351153, 0.088889934, 0.18445086, 2.9048564, -0.611485, - 1.2918125, 0.61760956, -5.676395, 1.7883499, 0.33273304, -0.78875667, - -3.2286549, 1.5282878, 0.21114868, -4.1759834, -3.1830497, 0.9526793, - -1.1163658, -1.1852181, -0.18929279, -2.688833, -1.262044, -1.5703198, - 3.4218268, -3.0849912, -1.7471969, 1.2905322, -3.022437, -1.122938, - -0.3862884, 0.21695833, -2.4064736, -3.7125134, -1.2844146, -0.9626119, - -0.92311037, -3.8929815, -2.7369978, -3.659488, 1.3027517, 0.87102026, - -2.1722598, -0.3259548, -0.92425364, 0.65707755, -1.3867934, - -0.22386967, -3.6260676, -1.7582982, -1.4246793, 0.38030702, -0.0936847, - -2.7384596, -2.2800128, 3.168663, -0.2635163, -0.7991443, -2.7724965, - -3.1908896, -2.5643988, -1.1983672, -0.9102351, -1.9940488, -0.9651741, - -3.6689782, -3.965891, -0.028316041, -0.29895616, -0.15797381, - 0.17484923, 0.43795305, -0.5673613, -1.0692788, -0.3901757, -1.1236548, - 0.75404966, 0.19009817, 0.32847732, -1.3853247, 1.0242633, 3.4094615, - 1.8220512, -5.6709323, -0.19470812, 1.0334244, -2.2938075, 0.99573016, - -0.7360018, 0.08229468, 1.0229349, 0.6538665, 1.839247, -3.645134, - -1.1763874, -0.4924419, 0.99247205, -4.615191, -1.7454528, -2.6671915, - 2.6509604, -2.3914776, -0.6915934, 0.32238907, -1.4200468, -0.76392305, - -0.40092766, 1.436201, -1.5489292, 0.57747346, -0.5957018, 0.6977953, - -0.020005569, -2.9858968, 1.7204597, -3.112526, -2.1255474, -1.6917541, - -1.4081211, -2.960104, 0.034852292, -4.4846764, -3.3547735, -2.186115, - -1.6919467, -0.8328021, -1.7457432, -0.7291898, -1.3248265, -3.3371396, - -1.3090233, -2.1285136, -2.9870865, -1.5152725, -0.50784516, -1.2242252, - 0.3736866, -3.9317303, -2.4576967, 0.77006656, -2.4651155, -1.593897, - -0.9549505, 1.6129174, -0.7397313, -0.009746186, -0.98839736, - -0.7835998, -0.08707898, -2.916802, -3.4291656, -1.1765869, -3.0385044, - -3.0174804, -0.6809289, -3.8737822, 0.050708488, -1.1053522, -4.163973, - -2.9002755, -0.8275073, 0.055851355, -0.097567484, -3.6756043, - -0.19457057, 2.5697017, -1.5222499, -0.088758156, 0.07189871, - -0.76363575, -1.6402347, -1.6912817, -0.7791839, -0.49484167, - 0.10291393, -0.8848254, -2.7462623, -2.2549534, -0.17120793, -2.6502433, - -0.5721534, -1.5638857, -0.26528692, -1.7400969, -2.9192026, - -0.84627354, -1.0990837, -3.9011178, 1.8537462, -0.73399603, -2.4477541, - 1.6256835, -2.9774332, -0.86036223, -5.288593, -2.7803292, -3.1155787, - -2.199441, 0.87141716, -1.7699695, -1.6142466, -2.936145, -0.5549886, - -1.8200327, 0.019451186, -1.653465, -1.4189366, -0.5595371, -1.7665477, - -0.6153984, 0.12838268, -4.6366663, -1.6150364, -3.8800576, 1.219038, - -0.9293412, 1.4215982, -0.20397165, -2.520427, -0.3092623, 1.4600896, - -0.41151252, -0.48820782, -0.7430929, 0.7830191, -2.6207218, -1.3707275, - 0.01332603, -0.95043397, -2.4217906, 0.89404106, -1.2996184, -3.8379352, - -1.5374622, -1.7567433, -2.6398938, -0.7597193, -0.64856315, -3.7355385, - -2.698656, -1.0336258, -2.9459813, -0.5968715, -0.55116993, -4.1758857, - -2.051895, -1.3280672, -4.8037977, -1.5173208, -2.5296195, 3.074761, - -2.4146395, -1.2510443, 0.5285374, -0.041698046, -4.083524, 2.1873546, - -0.7989718, -4.7653837, -0.2310626, -1.4946096, -2.402412, -0.27418372, - 0.5803547, -2.5091658, -0.5233735, -2.3310568, -2.1402926, -4.2025094, - -4.2025633, -1.9388542, -0.72617626, -1.1718893, -0.86029327, - 0.98287016, -0.30799943, -1.6221542, 1.8544884, -2.6207702, 0.24532422, - -2.1270661, -1.3422902, 0.1424966, 0.31704095, -1.9094384, 2.1317642, - -3.5661845, -1.2471099, -3.6455789, 0.28341106, -0.09886064, -3.4576602, - -4.170101, -2.8935537, -0.7258023, 2.0073416, 1.1254151, -1.0354023, - -3.4913936, 1.0854311, 0.5926667, -0.7599493, 1.613846, 0.44319737, - -0.63032776, 1.038247, -0.048523672, -2.2426918, -2.589514, -2.3601081, - -1.0051113, -2.6983461, 1.311196, -2.3314602, 0.5073998, -0.06496304, - -0.58888906, -3.8771598, -0.71248204, -2.900572, -3.2854135, 1.2811378, - -1.4295067, -0.6243941, 0.9882589, 0.08543185, -0.31771147, -1.6552032, - -2.874506, -2.3924255, -2.9814904, -0.5708454, -3.5522418, -0.841145, - -3.2268186, 0.076582655, -0.50368, -2.082194, -3.6474166, -1.0396973, - 0.4493266, -1.1379737, 0.6123502, -1.5600231, -2.509249, 0.8102299, - 0.06523921, 1.1984149, 2.3136125, 2.563994, 0.8152848, -2.2349517, - -0.7187035, 0.2769271, 0.008810826, -3.011001, -1.2404029, 0.30162206, - -0.9043489, -1.2786044, -2.6861284, -3.4811344, 1.2168713, -1.4368299, - -2.3019257, -0.57588017, -1.8112231, -1.1487626, -1.825502, -1.3529576, - -3.0825117, 1.3528562, 0.7277676, -4.991745, -0.995355, -1.2838719, - -0.32853925, -1.543993, -1.1404874, -0.44081306, 3.577665, 4.9901357, - -0.76727843, -0.11241838, -0.661733, 0.67607635, 0.00066944584, - 1.3297284, -0.95679796, -1.3222147, -0.8182606, 1.1249146, -3.393282, - 0.22732368, -0.3657803, -0.9008142, -1.9573764, -1.0746295, -1.4499124, - -0.7356284, -2.3048348, -1.8883592, -1.279774, -2.979354, -1.8767961, - -2.0324547, -1.3695917, -1.9184864, -1.1063437, -1.3996434, -0.9002923, - -2.3290694, 0.091245025, -2.453411, -0.35045302, 1.3065937, 1.3499011, - -2.1740847, -2.5170586, -1.2749296, -3.0748484, 0.22031161, -0.4977117, - 1.5069685, -0.40989026, -2.9172082, -0.5148785, -0.16271254, -3.7837198, - 0.024911806, -1.8069807, -2.2103431, 0.23328993, -0.54287475, - -3.2489295, -3.129158, -1.7014166, -1.3518697, -0.67631036, -1.1934897, - -0.3258874, 0.29078758, -1.2898865, -1.4131279, -2.4545312, -1.0307019, - -1.3322873, -0.2991236, -2.3563874, -0.5236499, 0.30992508, 0.64652807, - -3.7800841, -1.1355034, 1.223268, -3.548265, -4.8705935, -0.6234578, - -0.3299745, -1.1082016, -2.4553373, 2.9793868, -3.0916023, 1.520329, - -1.2963449, -0.4913568, -2.6453397, -0.66996396, -1.4520922, 0.8644244, - -3.1404243, -0.64191335, -4.060869, -1.3604462, -0.8403807, 1.2246957, - -1.1307166, 0.8277579, -1.8519262, -1.5676233, -1.9360843, -2.2456524, - 1.2211748, 1.3444785, -2.8900292, -0.114312045, -0.6003393, -3.9172866, - -0.9255891, -2.8484013, 1.6742293, -1.308257, -0.13773292, -0.9149643, - -0.93488365, 0.8525565, -1.7830846, -1.4932351, -0.85528505, -0.8954235, - 0.91570836, 2.8764768, -1.8367949, -3.4056153, -1.1799558, 1.8996881, - -3.1509216, -1.9953116, -3.1079347, 0.7332202, -2.2541242, -1.3430245, - -2.6744418, -3.8147078, -3.760632, 0.95174813, 1.5371097, -2.1288126, - -1.6022645, -2.2120068, -0.8783965, -4.413141, 0.53465027, -3.3766336, - 0.76350844, -0.19005471, -0.9817536, -1.3055799, -2.0878356, 0.17241581, - -2.466954, 0.48340634, -0.7594888, -1.0380332, -0.024139628, -1.264187, - 1.626619, -1.6217382, 1.0254393, -3.522043, 0.0017102137, -2.0866082, - 0.8416158, -0.8497259, -1.5783893, 0.70255136, -0.68534845, -0.6066803, - -3.1884892, -1.4752284, -2.648203, 0.8209644, -3.0151672, -2.9510288, - -1.7665322, -2.941694, -0.899106, -0.30866677, -2.5828295, -0.47931793, - -0.021721069, -0.29525453, -4.1468, -0.4604465, 0.042545132, 0.28159294, - 0.10965494, 0.18311213, -1.0533707, -1.3287269, 1.4831853, -2.706172, - 0.79755616, -2.5415606, 0.93402517, -2.1103823, -4.4428773, 0.5599992, - -0.6673193, -0.40820616, 0.8271259, -2.7013597, -0.27328756, -2.7595417, - 1.2075485, 1.3168536, 0.8637973, -2.4327774, 0.12086317, 0.13375342, - -1.6308773, -3.2350059, 0.29756805, -1.6399628, 0.7750858, -1.508276 + "source.contributors.agent.label": [ + "C. & J. Clark Ltd" + ], + "source.genres.label": [ + "Ephemera", + "Posters" ], - "reducedFeatures": [ - 0.052640177, -0.025329804, -0.031410795, 0.00080107956, -0.03317966, - -0.017002773, -0.05801104, 0.019331668, -0.02948422, -0.0027496596, - -0.024887135, -0.0068380507, -0.019397361, -0.024998337, -0.04045238, - -0.015432304, -0.01664305, -0.014729041, -0.034720425, 0.029562615, - -0.050033435, -0.0369125, -0.034579266, 0.019550195, -0.045078017, - -0.0031376698, -0.0026513792, 0.050939396, -0.0022317686, -0.0071944087, - -0.03230353, 0.020866865, 0.004890505, -0.03355469, 0.00532602, - -0.052578848, 0.0017686606, -0.02434642, -0.0062486352, -0.0034939742, - 0.00082184304, 0.01658716, -0.037689965, -0.0068753413, -0.050748363, - 0.011115733, 0.032316346, 0.023014985, 0.0014710557, -0.026008908, - 0.011718951, -0.047576834, -0.047515333, -0.067979135, -0.0071953214, - 0.0070175063, -0.0023440283, -0.035812117, -0.033286594, -0.010666649, - 0.010796332, 0.005431243, -0.08717044, 0.0022729049, 0.008716942, - 0.012145115, -0.020261938, 0.028194876, -0.059082028, -0.037898295, - -0.026206797, -0.06390952, -0.022328299, 0.0052780285, 0.014444479, - 0.0030323109, -0.045016978, -0.026244486, -0.02146892, 0.006536421, - -0.030861804, -0.04711497, 0.007947193, -0.043627366, -0.025709856, - -0.036744963, -0.03147265, 0.00788816, 0.0012553711, 0.030449472, - -0.025642384, 0.0027345272, -0.017406447, -0.003976451, 0.0030431775, - -0.00084671535, -0.026795011, -0.019314703, 0.018101435, -0.013095439, - -0.0047490736, -0.0023395214, 0.015683403, -0.029937005, 0.02278235, - 0.04495739, -0.037379615, -0.066540994, -0.053571828, -0.030214168, - -0.005608717, -0.014418074, 0.013512276, -0.041323766, -0.01771703, - -0.0009486575, -0.043103587, -0.07356838, -0.040042855, -0.04521455, - -0.035308957, -0.043734837, 0.0006933099, -0.010378946, 0.011255181, - -0.010775108, -0.019406661, -0.012160116, -0.02826044, 0.014834272, - -0.026129274, -0.054008115, -0.044041697, 0.012613074, 0.00022543737, - 0.0023713682, -0.030343113, 0.017596811, -0.06422704, -0.011933328, - -0.017242402, -0.012125449, -0.03923454, 0.010630256, -0.035876874, - -0.04799335, -0.011641199, 0.020559901, -0.05212433, -0.0037844433, - 0.020441558, 0.005620064, -0.008526944, -0.02707614, -0.07629674, - 0.029366132, 0.0026066054, -0.039509624, -0.010816825, -0.005967585, - 0.003292155, -0.051239587, -0.013507431, -0.057760138, -0.039647795, - -0.032649435, 0.0065119225, -0.036411643, -0.024784392, 0.018657451, - -0.019571848, -0.013874816, -0.018613782, -0.0098473765, -0.05916682, - 0.016559614, -0.0054366137, 0.005023509, -0.008437483, -0.057625584, - -0.0421362, -0.0066420273, -0.051122677, 0.077876404, -0.020754546, - 0.0053001763, -0.009123524, 0.037526242, -0.0051260646, -0.025381817, - -0.0054138317, -0.006823121, -0.0151017625, 0.013593986, -0.013197718, - 0.003658249, -0.00081006275, -0.035042543, -0.0031593582, -0.005669129, - -0.013888086, -0.02894517, -0.0099453, 0.009345055, -0.03189193, - -0.041774534, -0.025588201, -0.025584852, -0.03364986, -0.004035934, - -0.05311334, 0.03847833, -0.0438776, 0.02799225, -0.0371113, - -0.0033776353, -0.024770586, 0.029174984, 0.04155774, 0.0044713286, - -0.00032353873, -0.021411901, 0.014303143, 0.013158239, -0.037393868, - -0.011165319, -0.024509456, 0.026419558, 0.000986546, -0.06381967, - 0.05325374, -0.012235074, -0.035283294, -0.06419029, 0.0028639792, - -0.049592733, -0.0110709565, 0.023096954, -0.02295175, -0.004250826, - 0.046217427, -0.024435548, -0.008013011, 0.011054519, 0.0035938253, - 0.006703033, 0.03391403, -0.07203653, -0.027449211, 0.0074001397, - -0.031634428, -0.02409734, 0.010596749, -0.0040176115, -0.07152089, - -0.028833445, -0.014951109, -0.058648363, -0.0514226, -0.054944746, - -0.051788475, -0.0055747586, -0.045302633, -0.00057991815, - -0.0099248085, -0.0019710613, -0.050055023, 0.00081931346, -0.041151598, - -0.036220275, -0.013643069, -0.04081294, -0.032481384, -0.040831547, - 0.017224291, 0.04024007, -0.011734089, -0.046857577, -0.04209402, - -0.027472714, -0.009435961, -0.004511168, -0.023485461, -0.034394518, - -0.04123594, -0.008626214, -0.012323997, -0.0068662763, -0.033500824, - 0.004905379, -0.06351092, -0.033125352, 0.036511816, 0.0015964065, - -0.03765892, 0.0329548, -0.04754208, -0.037202857, -0.017682353, - -0.020638095, -0.053844884, -0.01818175, 0.018842302, -0.050306085, - -0.052041415, -0.08621309, -0.011518454, 0.00055554084, -0.021535825, - -0.014788433, 0.019917246, -0.020283818, -0.009131532, -0.024301833, - -0.029079838, -0.005817802, -0.026618248, -0.0059005227, -0.010536772, - -0.024210872, -0.0017426027, -0.006603919, 0.015859732, -0.0044361893, - -0.053645167, -0.03381394, 0.014754327, -0.02575235, -0.011770059, - -0.0053766547, -0.037101805, -0.021053912, -0.034106202, -0.01120822, - -0.051951762, 0.024865722, -0.03760105, -0.05549411, -0.052237388, - -0.03189237, -0.0051158285, -0.033344, -0.04530731, -0.008798904, - 0.0036560488, -0.009695764, -0.051785924, -0.0018799633, -0.0034635684, - -0.03190835, 0.014930416, 0.016756041, 0.013246082, -0.009780517, - -0.020107955, -0.016010525, -0.03480469, -0.06925667, -0.019175556, - -0.028064081, -0.013266738, -0.018993285, -0.01566945, -0.047148965, - -0.044103093, -0.025173515, 0.026610022, -0.01955539, -0.011512073, - -0.046306103, 0.051046435, 0.012834073, -0.026922299, -0.029722089, - -0.01744823, -0.04276225, -0.0011406295, -0.0046107653, -0.007987743, - -0.074122064, 0.00076778117, -0.0032713485, 0.0026782495, -0.009694581, - -0.017090162, -0.057011753, -0.01751282, 0.015358373, -0.016136203, - -0.027132196, -0.031213919, -0.0056049074, -0.015427971, -0.015567662, - -0.032708883, -0.013173494, -0.019368224, 0.01830761, -0.03093771, - -0.018350817, -0.027057856, 0.0065452964, -0.05356784, 0.006701442, - -0.00859902, -0.008294479, 0.016584449, -0.0837012, -0.027906194, - -0.02168529, -0.0021943098, -0.03955806, -0.016075492, -0.0068727485, - 0.0057488014, -0.047394633, -0.009619259, -0.04985911, 0.0017751018, - 0.021247374, -0.017410532, -0.035867125, 0.010159593, 0.045932714, - -0.043320943, -0.020486463, -0.016376983, -0.008121923, 0.0015358377, - 0.015415869, 0.04743614, 0.0047773845, -0.010483053, -0.040667936, - 0.034972087, -0.038831152, -0.05326956, -0.042640354, -0.0075906194, - -0.006518162, -0.042229623, 0.01456459, -0.024704115, -0.023449091, - 0.0135573, 0.0110033285, 0.030135062, -0.045260627, -0.0012425251, - -0.016374074, 0.031689957, -0.045012876, -0.018792545, -0.048613537, - -0.01620001, 0.0007599966, -0.005164327, -0.038291864, -0.035661556, - -0.02671337, -0.012663846, 0.0129143195, -0.028788056, -0.0016180086, - 0.0036499714, -0.011155704, -0.036183726, -0.060283426, -0.0034363414, - -0.012805884, -0.034462728, -0.02940952, -0.047721528, -0.016880978, - 0.02974443, 9.964496e-5, -0.0162712, -0.036925547, -0.071600035, - -0.004094348, -0.043116394, -0.015795778, -0.048747107, 0.061071716, - 0.019484608, -0.011327854, -0.011951016, 0.0068738083, -0.021915615, - -0.044204563, -0.01966715, -0.016317733, -0.059209723, -0.0009718217, - -0.014032906, -0.0038488973, -0.033201683, -0.016619444, -0.021843884, - -0.06555431, 0.022703178, -0.001297423, -0.009670173, 0.007795353, - -0.023845758, -0.025168525, -0.059907325, -0.06198911, -0.035631105, - -0.013474249, -0.01676345, -0.032719318, -0.018942833, -0.021359943, - -0.058000777, -0.031924378, -0.022990847, -0.0349864, 0.005998558, - -0.05384285, 0.029968446, -0.016300458, 0.036166377, -0.05359416, - -0.07373968, 0.0062423865, 0.01650985, 0.018288298, 0.0034254943, - 0.0044499566, 0.00070494186, -0.058218155, -0.020487715, -0.013538328, - 0.060159057, 0.009285227, -0.020703638, -0.032219093, -0.015534868, - -0.05180778, -0.018962005, 0.0066694953, 0.023675276, -0.058130722, - -0.00685576, -0.006782062, -0.008702452, 0.009866741, -0.06718632, - -0.004413833, -0.033624146, -0.02512807, 0.027665107, 0.0075326627, - -0.021081109, -0.019593813, 0.015015536, -0.027033038, -0.0046742447, - -0.061959647, -0.0126074, -0.02341602, -0.02701608, -0.01688542, - -0.0403063, -0.0474526, 0.00030564694, 0.029819382, -0.0025190138, - -0.051058248, -0.022939747, -0.04272365, -0.02622292, -0.048174154, - -0.049844168, -0.052258864, -0.015492728, -0.00016311066, 0.017818116, - -0.04353796, -0.06491623, 0.013319531, -0.02542491, -0.034387436, - -0.018190708, -0.030754048, -0.019022312, -0.036838017, 0.01473816, - 0.030872524, 0.010966069, 0.009531686, -0.050690033, -0.03407209, - -0.043696456, 0.051451303, -0.01057071, 0.01844644, -0.028970484, - -0.04115226, -0.035440683, 0.057055086, -0.04980633, -0.051319893, - 0.009303947, 0.012906003, -0.04794843, 0.03605599, 0.014456456, - -0.0003295723, -0.018539, -0.036125436, -0.0061854892, -0.032107994, - 0.013618316, -0.05243572, 0.035665043, 0.020204281, 0.0040271697, - 0.029321667, -0.056508027, 0.017495718, -0.06165463, -0.043540895, - -0.022632213, -0.010248346, -0.0095331, -0.0049708798, -0.0031586788, - -0.0032775376, -0.04814489, 0.010874486, -0.0152400555, 0.031781074, - -0.053284824, 0.010318887, -0.00018771387, 0.00016346796, 0.043808058, - 0.0002566746, 0.02036668, -0.02314995, -0.043747254, 0.009686239, - -0.015333188, 0.015412852, -0.032732807, -0.0015905924, -0.014836444, - 0.013826763, -0.013574852, -0.023259439, -0.025539339, -0.032516487, - -0.01847377, -0.018937513, -0.032445673, -0.04483707, -0.06540869, - -0.035292495, -0.031331882, -0.039965425, -0.039172024, 0.022320678, - -0.032545127, -0.030107547, -0.023988701, -0.017455444, 0.015703505, - -0.023064585, -0.03545661, -0.009489325, -0.048662156, -0.036994603, - -0.058386687, -0.003359314, 0.015349951, 0.03595941, -0.0016455664, - -0.021313906, -0.014866622, -0.011064004, 0.0054698745, -0.08881538, - 0.023771873, -0.036839385, -0.023378963, 0.023360135, -0.010645427, - -0.054217968, 0.00068013195, 0.010043065, -0.029978178, 0.0020881388, - -0.026840843, 0.033433877, -0.014374231, -0.0053054905, -0.004639452, - 0.0006039226, -0.0062615224, -0.039200023, -0.01524124, 0.0011243988, - 0.05587467, 0.009096775, -0.018091619, 0.009768701, -0.055674106, - 0.008894818, -0.061496038, 0.011058823, -0.02729152, -0.017255977, - -0.06961864, -0.021070154, -0.0038861742, 0.019347178, -0.056454323, - -0.033865795, -0.012886337, -0.014898754, -0.025129484, 0.046756234, - -0.01607213, -0.01946944, -0.026444891, -0.012706937, -0.07895079, - -0.0111503415, -0.016493935, -0.022115272, -0.031015791, -0.051235445, - -0.0070125354, -0.023082606, -0.034872778, -0.032622136, 0.004010657, - -0.023689056, -0.030581636, 0.005605416, -0.033908043, 0.007899957, - -0.044176176, -0.0077953413, -0.055386625, -0.028425748, -0.08428858, - 0.015232999, 0.025865573, -0.04418494, -0.030077366, 0.023510829, - -0.002607215, 0.014204244, -0.05593189, 0.016239239, 0.017612806, - -0.008982375, 0.017606748, -0.016877275, -0.016743297, 0.04174278, - -0.011776126, -0.017980987, -0.011834965, -0.02196765, -0.0322128, - 0.003925183, -0.038104575, -0.032416184, -0.02615394, -0.0334699, - -0.0126945, -0.046330277, 0.013700788, -0.005817424, -0.048717167, - 0.020040875, -0.0019476361, -0.002118439, 0.032436416, -0.030765396, - -0.027506215, -0.018246116, -0.04039453, -0.0017469482, 0.00405812, - -0.0200761, -0.0117979115, 0.0024670532, -0.031156747, -0.062075928, - 0.008182036, 0.022693709, 0.010871501, -0.029481838, -0.0026441102, - -0.034601707, -0.023509778, -0.042514384, -0.016482892, 0.015263023, - -0.021009946, -0.027798193, -0.013692063, -0.019696217, -0.048672058, - -0.014506414, -0.0072322316, 0.03176315, -0.051273532, -0.04069597, - -0.058246896, -0.044613067, -0.09694911, -0.008357742, -0.027351387, - -0.01123503, -0.021429244, -0.026046902, -0.017072687, -0.0631326, - -0.04933514, -0.02062286, -0.012003461, -0.0069845896, -0.013875978, - 0.009373628, -0.049435224, -0.051007643, -0.035056744, -0.060964122, - -0.020614248, -0.025791483, -0.02252468, -0.015884466, 0.029121934, - -0.07180054, -0.060885794, -0.020490495, -0.013635767, -0.054007076, - 0.028582098, 0.0051304596, -0.016950691, -0.02839596, -0.014373887, - 0.02013161, 0.0006302596, -0.016222116, -0.0151425535, -0.016030673, - -0.0049246666, 0.0028629233, -0.029282847, -0.0539, 0.013516337, - -0.05979703, -0.07787343, -0.06906253, -0.051275767, -0.009231464, - -0.013162181, -0.007518731, -0.03248951, -0.010078087, -0.032899838, - 0.050590254, -0.019202085, 0.024324454, -0.03163687, -0.037191864, - -0.007995275, -0.06287456, -0.014131447, -0.033736225, -0.010671648, - -0.022909591, -0.0112648895, -0.017829653, 0.015570896, -0.040762927, - 0.014851403, -0.041724414, -0.040254783, 0.012798092, 0.037270658, - -0.047188614, -0.029755905, 0.025186224, -0.05499495, 0.014517045, - 0.029285762, -0.004099164, -0.058721293, -0.050193492, -0.052181136, - -0.057140853, -0.04254535, 0.0017828363, 0.0137485545, -0.002782659, - -0.026296252, -0.003649862, -0.02209884, -0.0212588, 0.03707247, - -0.028538365, -0.055768516, -0.00028299846, 0.048985925, -0.017900676, - -0.07327309, -0.018326275, -0.01206879, -0.004117891, 0.053664733, - -0.04133953, 0.0020676889, -0.007548206, -0.049119774, -0.03622389, - -0.023508448, -0.0052857534, -0.03243835, 0.006870244, -0.0021827554, - -0.010233461, -0.0151734445, -0.013884366, 0.0030352054, 0.011731585, - -0.024583101, -0.0122480225, -0.016791018, -0.01110863, -0.052074447, - 0.037024222, -0.017123876, 0.00861476, -0.013391936, -0.018869532, - -0.06285274, -0.010140007, -0.016381143, -0.053109407, -0.0145905595, - -0.020916132, -0.045542587, -0.0036614705, -0.018479135, -0.05981034, - -0.019248463, -0.0138646355, -0.015958434, 0.004887203, -0.04598581, - -0.0203857, -0.0026101547, -0.02045903, 0.018219763, -0.008997541, - -0.03732955, -0.03694718, -0.041235115, -0.01456837, -0.021812059, - 0.0137062175, -0.042566966, -0.06392491, -0.011921378, 0.0074088043, - -0.052611805, -0.039424498, -0.009218253, -0.039854027, -0.026984852, - -0.020107977, -0.00021003201, -0.055253945, -0.009628399, -0.0123357, - -0.0158534, -0.029533014, 0.014395994, -0.027378894, -0.022266017, - -0.020355308, -0.037702195, -0.0021412435, -0.06449345, -0.06830461, - 0.022270052, 0.038979854, -0.045105577, 0.008376182, -0.0043893782, - -0.068123005, -0.024293903, -0.01842799, -0.019036425, -0.014710851, - 0.067791425, -0.01673031, -0.019535776, -0.020646676, 0.0019122523, - 0.0029122334, -0.000984615, -0.023060068, -0.014483133, -0.02827655, - -0.0068481723, -0.010784762, 0.01292048, -0.008622168, -0.009900046, - -0.047470838, -0.035667792, -0.020675754, 0.011884794, -0.0016519311 + "source.genres.concepts.id": [ + "ucmbnwkq", + "whcsuusy" + ], + "source.subjects.label": [ + "Shoes", + "Foot", + "Child Development" + ], + "source.production.dates.range.from": [ + 94694400000 + ] + }, + "vectorValues": { + "features": [ + 0.027675191, + -0.012475736, + -0.014866057, + -0.0014026342, + -0.016211154, + -0.008092758, + -0.030993931, + 0.0094040325, + -0.017397132, + -0.002752648, + -0.010571571, + -0.0064507686, + -0.00955531, + -0.011503112, + -0.018955039, + -0.009290307, + -0.009135917, + -0.006866444, + -0.01834061, + 0.01278321, + -0.02536465, + -0.020292962, + -0.016107408, + 0.010189749, + -0.022431202, + -0.0031755716, + -0.0033256365, + 0.02410575, + 0.0022333155, + -0.0030235937, + -0.016423484, + 0.010337553, + 0.0033119805, + -0.016541531, + 0.0053272946, + -0.026448809, + 7.4721993e-06, + -0.012410782, + -0.0010404491, + -0.00165868, + 0.0033623886, + 0.0076313773, + -0.020731231, + -0.004191045, + -0.026395699, + 0.0031479585, + 0.013495407, + 0.010786933, + 0.0015225407, + -0.0111791035, + 0.0039224396, + -0.024366336, + -0.025646389, + -0.035867777, + -0.0039382353, + 0.0026370455, + 0.00032831056, + -0.01600582, + -0.015569914, + -0.006328038, + 0.0036797628, + 0.0011063856, + -0.043941185, + 0.0022559527, + 0.0026186057, + 0.0068511073, + -0.006624595, + 0.014349814, + -0.029050805, + -0.020919606, + -0.01427864, + -0.027276466, + -0.011789802, + -3.069698e-05, + 0.0033764984, + 0.00048274378, + -0.021774024, + -0.013143307, + -0.011780091, + 0.0038669058, + -0.018438615, + -0.02379505, + 0.0034793187, + -0.021469546, + -0.016558856, + -0.018123046, + -0.015444306, + 0.004436947, + 2.6068185e-05, + 0.014177173, + -0.01410541, + 0.00092595356, + -0.0075553437, + -0.00034415768, + -0.0017802259, + -0.00036356764, + -0.011448131, + -0.010334516, + 0.012757832, + -0.008220575, + -0.0016392787, + -0.0021195402, + 0.005808101, + -0.012602035, + 0.0085387975, + 0.021297922, + -0.017989373, + -0.032087307, + -0.027570834, + -0.01241807, + -0.002170761, + -0.006410959, + 0.0067852084, + -0.021144656, + -0.010619885, + -0.002127476, + -0.021422742, + -0.0356061, + -0.018109672, + -0.023558702, + -0.01714188, + -0.02386277, + -0.0010342398, + -0.0047802054, + 0.0059989244, + -0.004093537, + -0.011653728, + -0.005519483, + -0.015766155, + 0.0059942766, + -0.013259454, + -0.027235145, + -0.02134842, + 0.004798427, + -0.0005177328, + -0.0012046238, + -0.018501459, + 0.006811328, + -0.033143245, + -0.0046741497, + -0.005231938, + -0.0076794177, + -0.021929355, + 0.0049036196, + -0.01852004, + -0.023159117, + -0.006210736, + 0.011971408, + -0.023498591, + -0.0030502027, + 0.008520796, + -5.940511e-05, + -0.005619889, + -0.014076721, + -0.040203217, + 0.015530674, + 0.0019205987, + -0.019529823, + -0.0030611139, + -0.00168488, + 0.0018100906, + -0.024087116, + -0.006921513, + -0.028236525, + -0.020315217, + -0.016797299, + 0.0039029776, + -0.01887355, + -0.013930292, + 0.009043419, + -0.008811122, + -0.006364407, + -0.005858722, + -0.005306523, + -0.026622253, + 0.007146307, + -0.0037763868, + 0.004190696, + -0.003220626, + -0.02813351, + -0.020959327, + -0.0057534776, + -0.025853524, + 0.040321987, + -0.011166792, + 0.0035595258, + -0.0063031735, + 0.016515749, + -0.0035399368, + -0.012766631, + -0.0035908644, + -0.0024136347, + -0.007140106, + 0.0058217775, + -0.007967713, + 0.0006263136, + -0.002273434, + -0.02002694, + -0.00095770526, + -0.0030389184, + -0.007464721, + -0.018170737, + -0.004653565, + 0.004359756, + -0.016681083, + -0.021681102, + -0.013100268, + -0.011603637, + -0.016835537, + -0.004810313, + -0.025775958, + 0.020590587, + -0.020338008, + 0.013078507, + -0.01938714, + 0.0001538433, + -0.011729897, + 0.01326917, + 0.02014882, + 0.0015333152, + 0.0019473269, + -0.009962249, + 0.009520036, + 0.009788964, + -0.017858997, + -0.0052648294, + -0.0138375405, + 0.011517381, + -0.00041309855, + -0.030929385, + 0.023131467, + -0.0064892694, + -0.020209553, + -0.033287916, + 0.0008188368, + -0.025951765, + -0.0040150764, + 0.010746504, + -0.011430799, + -0.0024667666, + 0.0201464, + -0.016213197, + -0.002771471, + 0.0073117274, + 0.0018269846, + 0.0035133802, + 0.01465437, + -0.036400944, + -0.013838665, + 0.002692816, + -0.017038908, + -0.011175898, + 0.0043713776, + -0.0046964916, + -0.03417917, + -0.013792775, + -0.007993806, + -0.030170243, + -0.025747012, + -0.028539952, + -0.025235565, + -0.0031844142, + -0.021347417, + 7.0619186e-05, + -0.0056860377, + -0.0013384015, + -0.025088094, + 0.0009750592, + -0.018746281, + -0.019318096, + -0.0097267125, + -0.019581724, + -0.016705655, + -0.018630294, + 0.008829096, + 0.020920044, + -0.0045115226, + -0.02152071, + -0.01964733, + -0.011584454, + -0.003924662, + -0.0034183445, + -0.012756044, + -0.013565533, + -0.019696763, + -0.0048192246, + -0.0073727868, + -0.0036274295, + -0.018376632, + 0.0054296823, + -0.03241691, + -0.018239073, + 0.017186074, + -0.0007053373, + -0.019284686, + 0.017334078, + -0.02614921, + -0.02012933, + -0.007817551, + -0.009968566, + -0.027336301, + -0.007273062, + 0.009079697, + -0.023361787, + -0.023629764, + -0.04426901, + -0.008768537, + -0.00079991505, + -0.012011492, + -0.010377179, + 0.010598135, + -0.011346058, + -0.005970277, + -0.013567143, + -0.014349176, + -0.0033170728, + -0.011418155, + -0.0057532378, + -0.0058533377, + -0.012043146, + -0.0010014765, + -0.0035222066, + 0.0034337414, + -0.003476776, + -0.026176566, + -0.015280006, + 0.009570205, + -0.011585389, + -0.0050917203, + -0.002627312, + -0.02190367, + -0.012890047, + -0.017156215, + -0.008085241, + -0.026907532, + 0.011637224, + -0.021503784, + -0.030976567, + -0.025762627, + -0.014670074, + -0.0018983393, + -0.016177684, + -0.022176404, + -0.0053457664, + 0.0026594962, + -0.0052966704, + -0.027209913, + 0.00017795007, + -0.0029399616, + -0.015646754, + 0.007026331, + 0.006104822, + 0.0062396056, + -0.006297358, + -0.010411297, + -0.0066628014, + -0.016247813, + -0.036194336, + -0.007033381, + -0.017616533, + -0.0035647193, + -0.013490614, + -0.00841543, + -0.023659665, + -0.02164364, + -0.013248302, + 0.013640001, + -0.010870725, + -0.004859062, + -0.024175651, + 0.022392998, + 0.005009864, + -0.015281947, + -0.017432613, + -0.011098949, + -0.022547266, + -0.0011287339, + -0.0047500236, + -0.004747178, + -0.03611347, + 0.00035002726, + 0.0016941152, + -0.0013973465, + -0.0046613854, + -0.010118438, + -0.029506635, + -0.0077388515, + 0.0064588217, + -0.010826729, + -0.011993197, + -0.016145008, + -0.004189251, + -0.0063869767, + -0.006929584, + -0.015949251, + -0.006858924, + -0.010553161, + 0.010815865, + -0.017920202, + -0.0073971935, + -0.013823882, + 0.004007509, + -0.028090177, + 0.00066793174, + -0.0033070662, + -0.002049581, + 0.008115662, + -0.041890923, + -0.015628062, + -0.010966224, + -0.0022515373, + -0.020421026, + -0.009776151, + -0.0036051075, + -9.1000176e-05, + -0.022310236, + -0.00771947, + -0.023694001, + 0.001288397, + 0.009693569, + -0.008438503, + -0.017264802, + 0.0037504525, + 0.02157726, + -0.022858433, + -0.0094501395, + -0.008972373, + -0.0028581335, + 0.0016926979, + 0.0065108817, + 0.021602556, + -0.00016932278, + -0.005160647, + -0.020448498, + 0.017882802, + -0.021161191, + -0.026339492, + -0.02364067, + -0.0029824646, + -0.0016490826, + -0.021060036, + 0.005819726, + -0.012084144, + -0.011853864, + 0.0057951966, + 0.003335993, + 0.013532938, + -0.019592013, + -0.0002866985, + -0.008729617, + 0.017414814, + -0.022261875, + -0.008561809, + -0.023853287, + -0.0065286434, + -0.00026946736, + -0.0022855366, + -0.01968049, + -0.01941932, + -0.01656461, + -0.0065770107, + 0.006988024, + -0.015438902, + -0.0011341427, + 0.0013728581, + -0.0077676387, + -0.016130337, + -0.02851192, + -0.0005994125, + -0.0063519706, + -0.014249532, + -0.012385855, + -0.021018483, + -0.008443231, + 0.015048164, + -0.0002488963, + -0.012252423, + -0.020696998, + -0.03664911, + -0.0018830026, + -0.018789098, + -0.012061878, + -0.024916824, + 0.03072694, + 0.008574964, + -0.005658103, + -0.0056441934, + 0.0025851605, + -0.009934972, + -0.019454291, + -0.008211896, + -0.0057480694, + -0.02876507, + -0.0003554245, + -0.01147385, + -0.0039397217, + -0.019447783, + -0.0073211314, + -0.011380928, + -0.035885125, + 0.009464848, + -0.0026355188, + -0.006742477, + 0.0007918365, + -0.012302307, + -0.013290483, + -0.03175919, + -0.031584077, + -0.017911091, + -0.005493808, + -0.0040444904, + -0.016854683, + -0.0078069516, + -0.0096286675, + -0.02877601, + -0.016964274, + -0.014179415, + -0.017202873, + 0.0031979377, + -0.026167756, + 0.012976724, + -0.007950573, + 0.018986613, + -0.027721226, + -0.037035882, + 0.0008023189, + 0.008466715, + 0.008914024, + 0.0032346318, + 0.0012959379, + 0.0005068264, + -0.02857445, + -0.008482367, + -0.008299131, + 0.027047448, + 0.008730881, + -0.010125883, + -0.015444472, + -0.009101171, + -0.023306469, + -0.0075232387, + 0.003986359, + 0.00940504, + -0.028644007, + -0.0019237829, + -0.0026726401, + -0.004045671, + 0.0051726443, + -0.034665637, + -0.0033500881, + -0.017773803, + -0.011309017, + 0.014545709, + -0.00014211079, + -0.012568921, + -0.007941107, + 0.007498827, + -0.013604087, + -0.0030668355, + -0.03157244, + -0.006960928, + -0.012511864, + -0.012113735, + -0.010083588, + -0.02223578, + -0.02160065, + 0.0021880274, + 0.015323915, + -0.0019298326, + -0.024183294, + -0.012567626, + -0.021595944, + -0.013763083, + -0.02343773, + -0.025662223, + -0.024819648, + -0.008929056, + -0.001418803, + 0.010400787, + -0.022905089, + -0.030510891, + 0.0026679498, + -0.013129169, + -0.02035595, + -0.006925251, + -0.015143286, + -0.00773653, + -0.019154651, + 0.007098202, + 0.015479517, + 0.0062678745, + 0.0032466534, + -0.028296677, + -0.018127093, + -0.022664543, + 0.027418014, + -0.0050980244, + 0.007955454, + -0.015688332, + -0.01963918, + -0.018172922, + 0.024969297, + -0.023155825, + -0.025799625, + 0.0016759107, + 0.0069108536, + -0.024401518, + 0.02105855, + 0.004370943, + 0.0006772064, + -0.007873481, + -0.017992092, + -0.0018830061, + -0.014609088, + 0.004774016, + -0.028491367, + 0.01787815, + 0.00788333, + 0.00036583142, + 0.012375774, + -0.0281679, + 0.007384565, + -0.031604383, + -0.022406673, + -0.012833462, + -0.004631727, + -0.006228747, + -0.003974685, + -0.0017131546, + -0.002312031, + -0.02508559, + 0.0063402588, + -0.007702004, + 0.018122543, + -0.026254406, + 0.003204969, + 0.00091484736, + 0.0010149925, + 0.024044381, + 0.0015212029, + 0.009165808, + -0.014297043, + -0.020496475, + 0.007883526, + -0.009682788, + 0.0065604537, + -0.014134692, + 8.819933e-06, + -0.010462344, + 0.007877922, + -0.0090992935, + -0.012382847, + -0.014529262, + -0.0124889035, + -0.010481578, + -0.010732114, + -0.016030155, + -0.02345505, + -0.03408425, + -0.0179248, + -0.016756952, + -0.019654281, + -0.018986512, + 0.015175887, + -0.015510463, + -0.015209979, + -0.015222067, + -0.01160285, + 0.008509787, + -0.0118202185, + -0.018867575, + -0.0057165725, + -0.022683566, + -0.019516421, + -0.028509103, + -0.003854586, + 0.0065713474, + 0.015266775, + -0.0028634008, + -0.011628675, + -0.004715741, + -0.0049481825, + 0.0021377155, + -0.04489647, + 0.01475376, + -0.021491325, + -0.011875928, + 0.013317639, + -0.0035822308, + -0.028764637, + -0.00025283825, + 0.0044637634, + -0.014490125, + 0.002958838, + -0.013078111, + 0.014713368, + -0.008285331, + -0.004610464, + -0.0071065244, + 0.0001861084, + -0.0011914774, + -0.020789409, + -0.008699634, + 0.00076315994, + 0.026554156, + 0.0018857355, + -0.008555409, + 0.005177327, + -0.028163914, + 0.002387495, + -0.029065978, + 0.006740697, + -0.015475433, + -0.009063463, + -0.033567797, + -0.013418467, + -0.0017058175, + 0.008462584, + -0.028185913, + -0.017169947, + -0.0076222857, + -0.008126288, + -0.01379181, + 0.022574501, + -0.0094193015, + -0.010233832, + -0.015858557, + -0.0076172636, + -0.04191751, + -0.0046728402, + -0.008478106, + -0.011527636, + -0.01676981, + -0.025084298, + -0.0077637956, + -0.012122024, + -0.018449493, + -0.017005138, + -0.00021783511, + -0.011109887, + -0.014521006, + 0.00032340895, + -0.016444635, + 0.0035497956, + -0.018829117, + -0.004166164, + -0.028722337, + -0.013694374, + -0.04138994, + 0.00822972, + 0.010414289, + -0.022214351, + -0.01488188, + 0.011041572, + -0.0019255236, + 0.00879065, + -0.025777195, + 0.006222352, + 0.008314375, + -0.004657658, + 0.010477455, + -0.007980765, + -0.010368072, + 0.020898087, + -0.0068051238, + -0.008338532, + -0.005838602, + -0.010397736, + -0.016553646, + 0.00083569845, + -0.020939486, + -0.016013443, + -0.014879601, + -0.018751502, + -0.0066574533, + -0.022243729, + 0.006654856, + -0.0018609092, + -0.021541718, + 0.007780347, + -0.0017566208, + -0.0007161173, + 0.014126736, + -0.016760362, + -0.013163107, + -0.00961292, + -0.019167982, + -0.0008241003, + 0.0021317543, + -0.010779437, + -0.007210775, + 0.0020672802, + -0.015805775, + -0.03133699, + 0.0054635345, + 0.011241365, + 0.0035023764, + -0.013003173, + -0.000974127, + -0.017046778, + -0.013238642, + -0.019423028, + -0.009440274, + 0.008063389, + -0.01191108, + -0.0148257, + -0.008241103, + -0.010563913, + -0.02608435, + -0.0056174025, + -0.00321049, + 0.013969746, + -0.026800083, + -0.019084664, + -0.029186562, + -0.021766929, + -0.05058406, + -0.00570479, + -0.012461693, + -0.0049000834, + -0.010412591, + -0.013384558, + -0.009921899, + -0.030344138, + -0.021431455, + -0.013217556, + -0.0059083668, + -0.0052135764, + -0.007170825, + 0.005491672, + -0.025193267, + -0.023247551, + -0.016420007, + -0.0324409, + -0.010644145, + -0.014856725, + -0.012252216, + -0.0071908664, + 0.016054327, + -0.034880765, + -0.028537078, + -0.011028355, + -0.008376032, + -0.02678859, + 0.013874839, + 0.0029689362, + -0.008771697, + -0.012946394, + -0.006345703, + 0.008602932, + -0.00041065537, + -0.0082903905, + -0.0077298875, + -0.008264124, + -0.0019283732, + 0.0015516662, + -0.014372374, + -0.024286514, + 0.010091428, + -0.029151715, + -0.03836172, + -0.035684474, + -0.02491249, + -0.0076955836, + -0.010659136, + -0.004935463, + -0.013772987, + -0.0055166553, + -0.014715111, + 0.02446179, + -0.006771253, + 0.0077384454, + -0.015489353, + -0.018601133, + -0.0062389993, + -0.030535769, + -0.0074421074, + -0.019575372, + -0.007567958, + -0.01191912, + -0.006462345, + -0.008940064, + 0.008086647, + -0.018403005, + 0.007685129, + -0.020701677, + -0.018896721, + 0.002602727, + 0.018387003, + -0.024324514, + -0.016201219, + 0.015362143, + -0.026628247, + 0.007913898, + 0.016112039, + -0.0037135403, + -0.031227138, + -0.025837343, + -0.025381193, + -0.02833152, + -0.022603042, + 0.0002521946, + 0.0049372856, + 0.00025680813, + -0.013258993, + -0.001782195, + -0.013878927, + -0.010192475, + 0.017261885, + -0.012797109, + -0.02820125, + -0.0019557434, + 0.02339822, + -0.008692274, + -0.03608068, + -0.009990731, + -0.0072829034, + -0.001146677, + 0.027858268, + -0.020842304, + 0.000502842, + -0.0038808794, + -0.024000376, + -0.018495338, + -0.011311795, + -0.004256447, + -0.018032538, + 0.0036119705, + 0.00033148297, + -0.006669445, + -0.009049685, + -0.008519342, + 0.0013004042, + 0.0016808942, + -0.012576921, + -0.009534378, + -0.010707131, + -0.003024357, + -0.02604556, + 0.016797416, + -0.007605799, + 0.00407582, + -0.0073255966, + -0.009619553, + -0.029607309, + -0.005690685, + -0.007947618, + -0.025823584, + -0.00880955, + -0.009837035, + -0.023227578, + 0.00019070727, + -0.006358027, + -0.02720161, + -0.007720076, + -0.005772181, + -0.009315222, + -0.00027923903, + -0.02107012, + -0.008902385, + -0.0004936998, + -0.008525152, + 0.0072568543, + -0.0013160186, + -0.018301977, + -0.019605216, + -0.020676209, + -0.008495504, + -0.01139084, + 0.005270073, + -0.02012516, + -0.030699281, + -0.006041793, + 0.0037851813, + -0.02466597, + -0.019570276, + -0.0038166582, + -0.019946896, + -0.014321467, + -0.012221724, + -2.678358e-05, + -0.025887392, + -0.005433356, + -0.0062744473, + -0.0062379525, + -0.015126454, + 0.01190806, + -0.013643455, + -0.012313643, + -0.011302309, + -0.020898635, + 0.0015478177, + -0.033207044, + -0.032809664, + 0.0131595535, + 0.017940145, + -0.023126557, + 0.0034235741, + -0.004228987, + -0.036287393, + -0.0117616635, + -0.0107483715, + -0.007700873, + -0.0072346576, + 0.032320235, + -0.008502379, + -0.0101443445, + -0.008857918, + 0.0019144214, + -0.0010303262, + -0.0016233536, + -0.009569384, + -0.009315587, + -0.014515813, + -0.0047713765, + -0.006606442, + 0.0064594764, + -0.007814781, + -0.0064232317, + -0.025347315, + -0.018961458, + -0.009617224, + 0.007326795, + -0.001803706, + -0.0028223412, + -0.008972859, + -0.014471438, + -0.009345501, + -0.00788937, + 0.011827325, + -0.016616125, + -0.0023368988, + -0.020184414, + -0.017418303, + -0.013200396, + -0.017586974, + -0.008801525, + -0.017121272, + -0.011743556, + -0.047334608, + -0.005888243, + -0.015040314, + 0.006017589, + -0.022766588, + 0.00525836, + -0.015064097, + -0.011873872, + -0.018347299, + 0.0019683396, + -0.00049067306, + 0.0102634495, + -0.025729379, + -0.036243312, + -0.011374756, + -0.0034493569, + -0.019017769, + -0.01612059, + -0.023799658, + -0.03554396, + -0.012278159, + 0.010761764, + -0.016229, + -0.005326806, + -0.030144487, + -0.031323962, + 0.001228284, + -0.005310054, + -0.0117131155, + -0.026277369, + -0.00661342, + -0.017002594, + 0.0248981, + -0.02450153, + -0.00037036758, + -0.012248286, + -0.027840013, + -0.014355359, + 0.0007922938, + 0.0070760986, + -0.018542862, + 0.010227637, + -0.008128741, + 0.0015239131, + -0.024232235, + -0.011277712, + -0.0063868654, + -0.000987092, + 0.013143102, + -0.0048856046, + 0.02478019, + -0.019540973, + -5.376001e-05, + -0.00950037, + -0.010186862, + -0.008890014, + 0.029800583, + -0.01913235, + -0.018399516, + -0.008564241, + 0.015914489, + -0.008520186, + -0.029184192, + -0.016992452, + -0.0038336364, + -0.021019042, + -0.025025751, + -0.0056617204, + -0.01970036, + -0.009513148, + -0.024463436, + -0.007836253, + -0.00946698, + 0.0010693785, + 0.0025811677, + -0.009132343, + -0.008844795, + -0.020897288, + 0.020466205, + -0.020184895, + -0.009792633, + 0.015509736, + -0.0019501981, + -0.02269452, + -0.00011751738, + 0.00029001693, + -0.008725198, + -0.011936784, + 0.0023306818, + -0.017138131, + -0.014394026, + -0.011857607, + -0.004352405, + -0.0013333771, + -0.008331364, + -0.023164893, + 0.0052713514, + -0.0051069576, + -0.009508492, + -0.018791415, + -0.009679001, + 0.0027081973, + -0.011638839, + -0.0015003214, + -0.0016631945, + -0.013387946, + -0.017085336, + 0.015903842, + 0.006430545, + -0.021917505, + 0.0035835083, + 0.0035988523, + -0.0022202006, + -0.017211333, + -0.004566104, + -0.024533583, + -0.012712612, + -0.0070422664, + -0.019966273, + -0.015238062, + -0.003939796, + -0.028674366, + -0.012162224, + -0.013902626, + 0.020564184, + -0.021748766, + -0.008234847, + -0.00203741, + -0.023708124, + -0.018715998, + -0.013221542, + 0.016331585, + 0.0015252419, + -0.008901002, + 0.025836239, + -0.022628257, + -0.021362357, + 0.004079583, + -0.017283222, + -0.032393314, + -0.0027318834, + -0.006273423, + -0.008985055, + 0.0012719932, + -0.008372297, + 0.006189943, + -0.0005805637, + -0.0117185265, + -0.008624157, + 0.0033409721, + -0.017537909, + -0.0015518037, + -0.0013057248, + -0.016039846, + -0.0071006473, + -0.038464323, + -0.017161192, + -0.041158505, + -0.031266928, + -0.0331392, + -0.030023038, + -0.01990719, + -0.012614854, + -0.027065732, + -0.0058031282, + -0.010293137, + 0.0077517782, + -0.019704413, + -0.008358848, + -0.037047323, + -0.016986042, + 0.010808992, + -0.013722473, + -0.018236408, + -0.0060011693, + 0.0055290563, + -0.0036689544, + -2.3703959e-05, + -0.009366567, + -0.023855051, + -0.013157174, + -0.0023347915, + -0.011971262, + -0.01470193, + -0.026513657, + -0.018689979, + -0.0029182716, + -0.01663297, + -0.0035690148, + -0.01619781, + -0.01227198, + -0.010685394, + -0.018936547, + -0.011737401, + -0.014362595, + 0.012513206, + 0.012537102, + -0.011126142, + -0.0068010893, + 0.0034629249, + 0.011840494, + 0.0066272486, + 0.002370027, + -0.007371915, + -0.021462066, + -0.015306812, + -0.027186504, + 0.0039214073, + -0.015494041, + -0.00910322, + 0.0086550005, + 0.0028967531, + -0.039390497, + 0.002479293, + 0.007273199, + 0.0058902204, + -0.0032115013, + -0.033715945, + 0.0030233364, + -5.7049e-05, + 0.00073864404, + -0.017164007, + -0.007558886, + -0.02088523, + -0.010779641, + -0.0031353603, + -0.01681194, + -0.013299246, + -0.032965045, + -0.017131494, + -0.028171247, + -0.022175506, + 0.007658181, + -0.00026201628, + 0.0059841797, + 0.010795368, + -0.0033906915, + -0.022729076, + -0.0024454468, + 0.00012988175, + 0.007847676, + 0.0012953306, + -0.015834292, + -0.016051568, + -0.020113496, + -0.03582606, + -0.013280191, + -0.03173039, + -0.011849094, + 0.010785707, + 0.0021685313, + 0.011293547, + -0.021438487, + 0.017203024, + 0.0022738297, + -0.01675143, + -0.03797633, + -0.0039472096, + -0.01399077, + -0.0014775251, + -0.004769176, + -0.019188749, + -0.0033843725, + 0.03317579, + -0.028177539, + -0.0018742175, + -0.012602594, + -0.008196621, + 0.03069825, + 0.000937127, + -0.0011957983, + -0.017750943, + -0.006854647, + -0.018049965, + -0.028444363, + -0.016708577, + -0.0063032852, + -0.015604028, + -0.030970901, + -0.0008634972, + -0.008279281, + -0.0020849016, + -0.027512591, + -0.009684655, + -0.0119310785, + 0.019590955, + -0.012081695, + -0.013521183, + -0.011241639, + 0.0032803903, + -0.00010259783, + -0.025453698, + -0.0030516025, + 0.0072797816, + 0.0029464262, + 0.010555656, + -0.009003513, + 0.0023019388, + -0.018273007, + 0.012326382, + -0.018780444, + -0.018769583, + -0.0016751991, + -0.016001096, + 0.00050791696, + 0.0032891782, + -0.0031116013, + -0.014268933, + -0.02764762, + 0.002100941, + 0.0046515814, + -0.00334899, + -0.024499722, + -0.024819557, + -0.0017058486, + -0.024763875, + 0.006691946, + -0.008976728, + -0.01889481, + -0.014038984, + -0.016046386, + 0.012381926, + -0.009662292, + -0.010172208, + -0.007166382, + 0.010369552, + 0.005055176, + 0.014119205, + -0.023555195, + -0.016088147, + -0.0030297963, + -0.015202171, + 0.012383774, + -0.018713024, + -0.014989472, + 0.01299256, + -0.011441576, + 0.002951235, + -0.014201129, + 0.008486086, + -0.0017047086, + -0.00111042, + -0.020191796, + -0.011982456, + 0.009200679, + 0.0044570453, + -0.0022957928, + -0.012982153, + -0.01400383, + -0.024604518, + -0.0018658899, + -0.0062369476, + -0.02132872, + -0.001564045, + 0.009343816, + -0.027231082, + -0.034079827, + -0.016989533, + 0.0048588365, + -0.023259802, + -0.029051173, + -0.012592478, + -0.001230325, + -0.015760377, + -0.0040927324, + -0.021248186, + -0.016913189, + -0.037450243, + -0.021108843, + 0.012261651, + -0.022863528, + 0.0020783804, + -0.021581782, + 0.0019133997, + -0.020072836, + -0.0014840408, + -0.00585974, + -0.0020951407, + -0.0135977445, + 0.018151468, + 0.012267578, + -0.008619151, + -0.011994497, + 0.0038797038, + 0.002430186, + -0.022408303, + 0.0073678507, + 0.011021193, + -0.016844712, + -0.018196644, + -0.03447517, + -0.008532999, + -0.009082823, + 0.000368289, + -0.022313895, + -0.02814575, + -0.006629157, + -0.005607467, + -0.0063596442, + -0.0070724012, + -0.012608054, + -0.026677556, + -0.044259436, + -0.021403197, + -0.00041872816, + -0.0069420757, + -0.01592034, + -0.018235281, + -0.017977398, + 0.009639264, + -0.040729295, + -0.029083142, + -0.0061429245, + 0.0048881345, + -0.013981991, + 0.0012772221, + -0.01688512, + -0.010318367, + -0.0048645576, + -0.025834378, + -0.0036674645, + -0.0059742215, + 0.0022700408, + -0.015067379, + -0.031844087, + 0.0055334237, + -0.007262017, + 0.0059216996, + -0.015058048, + -0.016912825, + -0.029288432, + 0.007330376, + 0.0073383925, + -0.010809747, + 0.0019108127, + 0.0007033991, + -0.0104031, + -0.0057811695, + -0.012123835, + -0.013200768, + -0.021454668, + -0.009302726, + -0.020398133, + -0.0074545657, + -0.011386965, + -0.035511717, + -0.006819772, + -0.01586172, + -0.004688768, + -0.008322204, + -0.005562639, + -0.006827018, + -0.0066034487, + -0.018749354, + -0.021484355, + 0.002874895, + 0.0021353064, + -0.0030548163, + -0.02118532, + 8.54012e-05, + -0.011288954, + 0.0069021154, + -0.0132627655, + -0.0038219157, + 0.020077288, + 0.013765163, + -0.025445495, + -0.012098959, + -0.0021448326, + -0.027300278, + -0.019549191, + -0.008508599, + 0.008039449, + -0.00054575404, + -0.040110487, + -0.0009827255, + -0.005227672, + 0.015358542, + 0.014812574, + -0.012629895, + -0.009172205, + -0.007142664, + -0.010842271, + -0.015558783, + -0.013157206, + -0.0047520716, + 0.010931499, + 0.0028551258, + 0.0061703026, + -0.037067305, + -0.005444061, + -0.00482006, + -0.0005983896, + -0.0044096545, + -0.0221423, + 0.002837254, + -0.00034805876, + -0.006493036, + -0.004927054, + -0.010198508, + -0.006229391, + -0.009427529, + -0.00647715, + -0.019822964, + -0.016434021, + 0.009133576, + -0.0033481661, + -0.028372917, + -0.020019945, + -0.012732852, + -0.019148597, + -0.00615769, + 0.0035720724, + 0.013384142, + -0.032080337, + -0.040496316, + -0.021671567, + -0.008793218, + -0.007601411, + 0.0074161086, + -0.017125307, + -0.0052875257, + -0.0013413753, + -0.018740643, + 0.00846444, + -0.028008275, + 0.009373796, + -0.0065636, + -0.03023305, + 0.021476924, + 0.005381757, + -0.0061233058, + -0.033001978, + 0.00089431374, + -0.0009174003, + -0.015754338, + -0.009303599, + -0.016294729, + -0.02596309, + -0.01386599, + -0.0058743525, + -0.01371911, + 0.0028741662, + 0.009139211, + -0.050678857, + -0.026791533, + -0.0021769789, + -0.014101303, + -0.016821222, + 0.0069160205, + 0.009587267, + -0.013145878, + -0.005395211, + -0.022264628, + 0.010742672, + -0.018092014, + -0.0073449416, + -0.013553502, + 0.0026723638, + 0.005691552, + -0.0032719846, + -0.0229321, + -0.007488184, + -0.023912676, + -0.009483745, + 0.01820407, + -0.0085326005, + 0.0076004835, + -0.0083303265, + -0.01569843, + 0.0054249736, + -0.012239536, + -0.014330317, + -0.007979429, + 0.00036477228, + -0.027772853, + -0.0074458825, + -0.011800951, + -0.0050750873, + 0.01840402, + -0.023483612, + -0.0018081764, + 0.001168613, + -0.009499524, + -0.013207077, + -0.014709714, + -0.014064339, + 0.0035823262, + -0.021331497, + -0.011594708, + -0.000726998, + -0.008513019, + 0.011969943, + -0.015804231, + 0.010785074, + -0.015516391, + 0.008697171, + 0.007900093, + -0.015166551, + -0.016405014, + -0.009029617, + 0.011931898, + -0.021579674, + 0.015239411, + -0.01461062, + -0.013151691, + -0.018454794, + 0.012191695, + 0.014690185, + -0.036412623, + 0.00332171, + -0.019338014, + -0.0037763105, + 0.021943023, + 0.021947939, + -0.0067519927, + -0.009459075, + -0.008305776, + -0.027070027, + -0.0026413586, + -0.014717524, + -0.0047542984, + -0.0029092184, + 0.0004384254, + 0.012342485, + -0.001358273, + -0.014288286, + -0.0012573826, + -0.020483254, + -0.019434722, + 0.012218788, + -0.003599145, + -0.02031824, + -0.0014174953, + -0.00795193, + -0.004801539, + -0.012863308, + -0.0025188446, + -0.012051703, + -0.008067069, + -0.017892776, + -0.0073965713, + -0.011805839, + -0.020625597, + -0.025402633, + 0.00043395915, + -0.016146965, + -0.0053236387, + -0.020353267, + -0.011460388, + -0.039276917, + -0.0017107007, + -0.02158116, + -0.002775136, + 0.0066497303, + -0.026608728, + -0.017817754, + 0.019713283, + 0.03017995, + -0.02370958, + -0.020905886, + -0.010505773, + 0.010965455, + -0.019003585, + 0.008113014, + -0.029579485, + -0.023276782, + 0.009939422, + -0.0005639524, + -0.008567227, + 0.017770771, + -0.019962182, + -0.0009771022, + -0.013713001, + 0.011735449, + 0.0009927392, + -0.004337316, + 0.007395124, + -0.0022021658, + -0.0211785, + -0.02722885, + 0.010848834, + 0.0067689037, + -0.021559956, + -0.022278521, + -0.01100337, + -0.0059967358, + -0.012777151, + 0.0055496506, + -0.011949396, + -0.0073759584, + -0.014829532, + -0.00933555, + -0.0036024323, + -0.01792535, + -0.032190066, + 0.021483997, + 0.002268484, + 0.00033435546, + -0.03339923, + -0.0066867764, + -0.012915765, + -0.0068310504, + 0.014208538, + -0.009599586, + -0.016810222, + -0.012539941, + -0.0019944776, + -0.009853269, + -0.0314843, + -0.009074374, + 0.013229934, + -0.008766467, + 0.0024091771, + -0.005464234, + -0.024332471, + -0.015287996, + -0.012501963, + 0.0060379314, + -0.0038691033, + -0.018293988, + -0.012213178, + 0.015224912, + 0.013477527, + -0.012568274, + -0.03127552, + -0.041233953, + -0.026149282, + -0.03249359, + -0.012206726, + 0.0031108528, + -0.006946081, + -0.01231437, + -0.0016269798, + -0.034802143, + -0.021297598, + -0.010396578, + 0.015118148, + 0.0045164856, + -0.02629642, + -0.011521723, + -0.039828602, + -0.0296346, + -0.026676724, + -0.015069687, + 0.00534964, + -0.009087599, + 0.0015072874, + -0.006800289, + -0.0019467227, + -0.0041581444, + -0.0030993628, + -0.003467863, + -0.0035299133, + 0.005895659, + -0.007841998, + -0.012684613, + -0.0036968335, + -0.014181054, + -0.023802055, + -0.0068021147, + -0.015731363, + -0.032404866, + 0.0041575753, + -0.00899792, + -0.0068784887, + -0.0009974444, + -0.0012030222, + -0.012087298, + -0.009872143, + -0.00026710733, + 6.1411397e-06, + 0.007687562, + -0.011181279, + -0.024136743, + -0.01442551, + -0.008297638, + -0.0018750168, + 0.0007565123, + -0.019707948, + 0.03103098, + -0.008078266, + -0.01675637, + -0.02023689, + -0.002638452, + 0.0140201, + -0.008241556, + -0.0030407328, + -0.008741609, + -0.007803701, + 0.009053548, + -0.0025888025, + -0.02841965, + -0.0036080997, + 0.017347867, + -0.020602481, + -0.009379016, + -0.014190004, + -0.012485839, + -0.016288452, + -0.009679102, + -0.010401575, + -0.015891245, + -0.007418556, + -0.00892608, + -0.0071835504, + -0.017375212, + -0.019603394, + -0.008619288, + 0.012792266, + -0.014854651, + -0.010913203, + 0.0042609363, + -0.022508057, + -0.0013938166, + 0.010403359, + 0.02056236, + -0.0129392035, + -0.010406593, + -0.019550078, + 0.007073449, + -0.010523481, + -0.027507816, + -0.013159828, + -0.0074139065, + -0.02965662, + -0.029628126, + -0.018358067, + -0.003707203, + -0.0054379716, + -0.014641933, + -0.0013899788, + -0.0019212428, + -0.000110468914, + -0.006973734, + -0.0056624156, + -0.0020775644, + -0.010551318, + -0.0030125817, + -0.017583266, + -0.007084479, + -0.020493606, + 0.008274411, + -0.01405193, + 0.009695761, + -0.01779093, + -0.014970646, + -0.0057566897, + 0.03180241, + -0.0005821979, + -0.03884169, + -0.012420766, + -0.0028729541, + 0.0021471512, + -0.0076116207, + -0.0067065842, + -0.022754261, + 0.0006571812, + -0.004787572, + -0.018289313, + -0.0012615301, + -0.014663331, + -0.0037657619, + -0.014549897, + -0.009227309, + -0.026737826, + 0.011758188, + 0.00092471484, + -0.010498605, + -0.020734793, + -0.029279461, + -0.03741436, + -0.022088077, + -0.01017375, + -0.019523764, + 0.0011350159, + 0.0063157477, + -0.028551443, + -0.0038280964, + -0.020737603, + -0.035515495, + -0.01713339, + 0.0068995347, + -0.003885621, + -0.018522955, + -0.009378596, + 0.011728727, + -0.02033804, + -5.8576003e-05, + -0.0024122437, + -0.019724736, + -0.015110475, + -0.0011490481, + 0.0036996596, + 0.0032423418, + -0.007660272, + 0.008859766, + -0.038602896, + -0.007959617, + 0.011105845, + -0.03405695, + -0.011417715, + -0.027408378, + -0.014616206, + -0.040461957, + -0.0032685928, + -0.0067253807, + -0.022841204, + -0.026945679, + -0.0034104781, + -0.026484048, + -0.008683453, + -0.006322971, + -0.016020458, + -0.011002489, + -0.019256135, + -0.010875019, + 0.01074106, + -0.02393025, + -0.017261999, + -0.022991743, + -0.0104977945, + -0.027945768, + -0.029881353, + -0.0008602979, + 0.004540853, + -0.008793765, + -0.00527648, + -0.0058270316, + -0.03022602, + 0.0026146865, + 0.02453324, + 0.016082093, + -0.03899509, + -0.036066234, + 0.009447944, + -0.0088222455, + -0.0120132, + 0.002541615, + -0.006608166, + -0.005934138, + -0.015659327, + -0.013703456, + -0.018552996, + -0.024854274, + -0.013563065, + -0.028048094, + -0.010325661, + -0.016784796, + -0.02023338, + -0.0077899517, + 0.0062518273, + -0.035235047, + -0.008213017, + -0.007300975, + -0.009951604, + -0.022855578, + -0.021533147, + -0.005230764, + -0.023914667, + -0.010526579, + 0.007052524, + 0.01203534, + -0.01294832, + -0.030041758, + 0.01511459, + -0.03723284, + 9.103091e-05, + -0.008697297, + -0.010842035, + -0.016039127, + -0.00616351, + 0.011929205, + 0.004841433, + -0.01127571, + -0.0028233337, + 0.0094792135, + 0.0038339247, + -0.0062297056, + 0.03278597, + 0.000892711, + -0.021246905, + -0.0075227446, + -0.0012870766, + -0.019299792, + -0.0017462529, + -0.0009986205, + -0.0010551119, + -0.017794749, + -0.019325001, + -0.014637506, + -0.009744649, + -0.01623623, + -0.010788462, + -0.030793387, + -0.0051397025, + -0.022168022, + -0.010839068, + -0.03377659, + -0.007345778, + 0.0145459, + 0.008073255, + -0.001951652, + -0.0064677624, + 0.002182866, + -0.026003579, + -0.00373401, + -0.012636717, + -0.006001966, + -0.0017299441, + 0.00837144, + 0.005124186, + -0.0054656267, + -0.005859036, + -0.027054183, + -0.011303045, + 0.013440293, + -0.008195423, + 0.011217512, + -0.025941249, + 0.011084109, + -0.009919825, + -0.0051726373, + -0.009210938, + -0.011315728, + -0.01565947, + 0.009468043, + -0.007937632, + -0.0034883746, + -0.021520166, + -0.013950745, + -0.01750336, + 0.0020199548, + -0.026309906, + -0.012113625, + -0.0071494603, + -0.008969328, + -0.02986444, + -0.014691402, + -0.02937478, + -0.0005975912, + -0.0066227457, + 0.018817293, + -0.00089147815, + 0.0025589915, + -0.016626284, + -0.025436118, + 0.003235339, + -0.00018068815, + -0.013158343, + -0.011239049, + -0.011949838, + -0.006692959, + -0.006546796, + 0.009186346, + -0.03893841, + 0.010987345, + 0.00021108784, + 0.0005371125, + 0.0006257345, + -0.0075298906, + -0.013659603, + -0.012266846, + 0.00060523854, + -0.018824818, + -0.028740097, + -0.00747008, + -0.008964644, + -0.016996844, + 0.0143067865, + -0.013097603, + -0.0007792062, + 0.022698116, + 0.008054664, + -0.0046315403, + -0.01447092, + 0.002750278, + -0.0076931487, + -0.031896163, + 0.0026822109, + -0.0037090923, + 0.0039209477, + -0.0216576, + -0.0016789227, + -0.019170871, + -0.0023788237, + -0.007651104, + -0.012847365, + -0.03407458, + -0.017618425, + 0.009051373, + -0.009473941, + -0.0058659995, + -0.02225431, + -0.023872167, + -0.0034769988, + -0.019666536, + -0.013395836, + -0.003901071, + 0.01056103, + -0.00565753, + -0.017903069, + -0.01075493, + -0.0061462284, + -0.024999546, + -0.01302467, + -0.009012837, + -0.011297527, + -0.013309559, + -0.019495932, + 0.018247275, + -0.008124148, + -0.033263408, + -0.035185058, + -0.01823234, + -0.026305992, + -0.018272549, + 0.013688084, + -0.024009177, + -0.005893765, + -0.022830153, + -0.021779628, + -0.008165332, + 0.012717227, + -0.0053491252, + -0.005066207, + -0.01678542, + -0.01921228, + -0.024855003, + 0.001727021, + -0.0032797453, + 0.0059018405, + -0.018366426, + -0.03663008, + -0.0012531803, + 0.0033426478, + -0.00022077608, + -0.02194221, + -0.01259845, + -0.017578391, + -0.023206627, + -0.0037449684, + -0.015772346, + 0.005163702, + -0.01007232, + -0.008215636, + -0.031857785, + -0.012128289, + -0.013290433, + -0.017310437, + -0.01136019, + -0.011253666, + -0.02065568, + -0.0018362518, + -0.007997382, + -0.016523557, + -0.01618968, + -0.00886016, + -0.016030828, + 0.0020759772, + -0.0070469743, + -0.014750693, + -0.04233208, + 0.008414927, + -0.007945853, + -0.023913462, + 0.0016267765, + -0.011272437, + -0.013566078, + -0.013188818, + -0.007104118, + -0.006333709, + 0.009084026, + -0.025145147, + 0.0014990522, + 0.005863805, + 0.021571804, + -0.019395065, + -0.010241242, + -0.014087949, + 0.014354168, + -0.017194295, + 0.0051387283, + -0.009029313, + -0.02071616, + -0.007935634, + -0.016701138, + -0.0014561684, + -0.0040276865, + -0.0043690926, + 0.0038135475, + -0.04065749, + -0.012751531, + 0.021753434, + 0.019138327, + 0.0067046937, + 0.0020154624, + -0.00015220277, + -0.0004404141, + -0.017504787, + 0.021198774, + 0.012769759, + -0.008543802, + -0.006074369, + -0.0047208318, + -0.0031499956, + -0.03193589, + -0.022443522, + 0.0010267515, + -0.0003750145, + 0.023935843, + -0.008183297, + -0.006462042, + 0.0058943657, + 0.013256078, + -0.003456982, + -0.026069565, + 0.014010152, + 0.0046478077, + -0.008681848, + -0.001407766, + -0.0017442813, + 0.008900463, + 0.0053513614, + -0.028112257, + 0.0028074342, + -0.018194199, + -0.0010226641, + 0.02981245, + -0.008557976, + 0.021964915, + 0.005480307, + -0.013923225, + -0.0052557634, + -0.010473196, + -0.018646782, + -0.011415106, + -0.0062836194, + -0.001251602, + -0.028401501, + 0.008312326, + -0.010204282, + -0.022602813, + 0.004682432, + -0.012715107, + -0.020609392, + 0.01730396, + -0.011390762, + -0.021442747, + -0.014694149, + 0.003240109, + -0.023379048, + 0.008194198, + -0.007151762, + -0.006987535, + -0.00947316, + -0.026412651, + 0.016545312, + -0.00024393322, + -0.0088075185, + 0.00015742765, + 0.012007621, + 0.0134493755, + 0.0048777154, + -0.0021294206, + -0.0003708719, + 0.013669601, + -0.009397838, + -0.03464684, + 0.010585616, + -0.013867083, + -0.021708377, + -0.0038005891, + -0.023070807, + -0.031120308, + -0.011097091, + -0.03812236, + -0.0041902093, + 0.003262896, + 0.00799208, + -0.023027044, + -0.032114785, + -0.0028895366, + -0.028403403, + 0.0074933814, + -0.019414328, + -0.028499562, + 0.00014518079, + -0.007554607, + -0.014757066, + -0.01656943, + 0.015274345, + -0.013297458, + -0.007023844, + -0.0044251517, + -0.0087835975, + 0.0046916846, + -0.01597639, + -0.0048459843, + -0.007460579, + -0.025674859, + -0.022613691, + -0.012872957, + -0.00451019, + 0.002687505, + -0.036440365, + -0.00050658954, + -0.010356921, + 0.015716694, + -0.009803526, + -0.02669464, + 0.005855006, + 0.010240745, + 0.0009747997, + -0.009863512, + -0.0062550935, + -0.008235712, + 0.009034261, + -0.00710751, + -0.0015457191, + -0.03651197, + 0.016099222, + -0.01026741, + 0.001056875, + -0.0021013399, + -0.011223346, + -0.017966894, + -0.035593707, + -0.020686084, + 0.013113029, + 0.0022384007, + -0.005861766, + -0.01255521, + -0.014576827, + -0.009086638, + -0.00816266, + -0.03350376, + -0.0048724976, + -0.014460302, + 0.012796144, + -0.0016424207, + -0.013000664, + -0.00407946, + -0.0174846, + -0.018216405, + -0.034174476, + -0.017219627, + -0.013348383, + 0.031959113, + -0.016426237, + 0.0020945086, + 0.00635113, + 0.00012705922, + -0.03819795, + 0.013836891, + -0.01235164, + -0.013051959, + -0.018413052, + 0.0011970695, + 0.008294162, + -0.011195097, + 0.011590439, + -0.008766521, + -0.0011222123, + -0.009065284, + -0.0128226895, + 0.0038406996, + -0.00888694, + -0.014856651, + -0.016385335, + 0.0025568206, + 0.0006910965, + -0.018265389, + -0.0048082015, + -0.005780997, + -0.01079472, + -0.02363895, + -0.01914612, + -0.014708361, + -0.014766581, + -0.012556861, + -0.009906549, + -0.0195542, + 0.0025410163, + -0.0007777877, + -0.019744245, + -0.002809811, + -0.0048067486, + -0.02594009, + -0.0048670326, + -0.004346952, + -0.015737465, + -0.018822335, + -0.010431127, + -0.01235967, + 0.0009962829, + 0.015031474, + -0.010919987, + -0.008772886, + 0.00066149706, + -0.004059168, + -0.014447632, + -0.00798771, + -0.030256163, + 0.0010803582, + -0.0060212486, + 0.027931046, + 0.017129345, + 0.00032571194, + 0.005799853, + 0.009520374, + -0.012571006, + -0.0077511487, + -0.02045728, + -0.009699292, + 0.004226654, + -0.020930378, + 0.006549255, + 0.013923466, + 0.032138776, + -0.005119245, + -0.022373155, + -0.039960038, + -0.014783052, + -0.023255803, + -0.005160108, + -0.013029758, + -0.020639196, + -0.01077609, + -0.005035465, + 0.015675398, + 0.0032573626, + 0.0018413335, + -0.013629375, + -0.009589721, + 0.0035069971, + -0.03103453, + -0.013916465, + -0.017928215, + -0.015059823, + 0.014570291, + -0.012599918, + -0.003657035, + -0.013739856, + -0.019716803, + -0.017842313, + 0.011043781, + 0.00066595734, + -0.023086412, + -0.018870741, + -0.0025342994, + -0.00843923, + -0.005935051, + 0.001140059, + -0.03343706, + -0.001016017, + 0.0035550003, + 0.016172346, + 0.010014487, + -0.01986822, + 0.0051347027, + 0.0065960437, + -0.019534545, + -0.013967825, + -0.007790702, + -0.007869726, + -0.008976072, + -0.012347046, + -0.017147496, + -0.030269232, + -0.02296551, + -0.017479172, + -0.0047502355, + 0.0062799943, + -0.022755783, + 0.00075116113, + 0.010971663, + 0.00069664104, + 0.018604169, + 0.0029858442, + -0.012513492, + -0.021069096, + -0.006919213, + -0.0032872017, + 0.011491875, + 0.005918917, + -0.011791461, + -0.0066411225, + 0.00011316713, + -0.0034564836, + -0.0069042495, + -0.030998169, + -0.0029943066, + -2.8123623e-05, + -0.008662819, + 0.0042395093, + -0.04449826, + -0.027436279, + -0.01761792, + -0.009641294, + -0.014171184, + -0.0035745443, + -0.020156797, + -0.016777039, + -0.0046713254, + -0.010517042, + -0.009517397, + -0.0059302337, + -0.013111802, + 0.0039140284, + 0.015053724, + 0.0020910406, + -0.011409989, + -0.0008203217, + -0.012499064, + -0.038255166, + -0.010443402, + -0.008315545, + -0.015618121, + -0.021081414, + -0.010275594, + -0.00016399976, + -0.013529368, + -0.003006372, + 0.013242468, + -0.0082052825, + -0.033115793, + -0.006635342, + -0.0071518477, + -0.024485083, + 0.0007569437, + 0.0036627252, + -0.008572069, + -0.023068225, + 0.00245221, + 0.00062103075, + -0.010160079, + -0.011576598, + -0.019403543, + 0.034178562, + 0.02385352, + -0.024566783, + 0.018697126, + 0.024405751, + -0.014480723, + -0.005753789, + -0.028374147, + 0.0032972144, + 0.020436155, + -0.036643513, + 0.008984038, + 0.008263869, + -0.018781161, + -0.013091481, + -0.007304674, + -0.003740745, + 0.011546024, + -0.018547809, + -0.02071903, + -0.0036736308, + 0.004536621, + -0.010900192, + -0.005213636, + -0.007965282, + -0.0009165554, + -0.0267825, + 0.006374035, + 0.012031843, + -0.0072993236, + -0.0041408762, + -0.011827426, + -0.0016562614, + -0.008822476, + -0.030268764, + -0.0075403186, + -0.0042348346, + -0.015317569, + -0.0033964613, + 0.024260331, + -0.0019862044, + 0.009462989, + 0.011465818, + -0.00468127, + -0.004629788, + -0.0075377417, + -0.003298545, + -0.016754486, + -0.0029841724, + -0.026157767, + -0.007227841, + -0.03248625, + -0.022280531, + 0.019585488, + 0.006718816, + -0.008662014, + -0.0072151157, + -0.0035508652, + -0.017055469, + 0.0059055355, + -0.018217316, + 0.003248994, + -0.012428529, + -0.024838533, + -0.0450301, + -0.008814534, + -0.020427544, + -0.016773568, + -0.0038667303, + 0.0026269478, + 0.0035109026, + -0.02062011, + -0.015294026, + 0.005026346, + -0.03824896, + -0.029371241, + -0.010772922, + -0.009647874, + -0.019231768, + -0.014199425, + -0.014399408, + -0.012703525, + -0.017009623, + -0.024392502, + -0.002100517, + -0.021986118, + -0.0097542675, + -0.01373354, + -0.018962182, + 0.0044660987, + 0.024106272, + -0.008800957, + -0.027160289, + -0.020156968, + -0.016236765, + -0.015438455, + -0.02093188, + -0.025064074, + -0.005440469, + 0.008908124, + -0.0070190113, + -0.0097550005, + -0.00707683, + -0.020863893, + -0.031968597, + -0.017243782, + -0.011493537, + 0.0028409357, + 0.008971055, + 0.0050182724, + 0.0030780677, + 0.0043059667, + -0.025740677, + -0.0052088248, + -0.010609574, + -0.008700922, + -0.027869763, + 0.0021878458, + -0.02396963, + -0.03582212, + -0.00577879, + -0.026660753, + 0.006509821, + -0.001378564, + -0.000639417, + -0.0227737, + 0.0004344187, + 0.011339937, + -0.006196993, + -0.013117635, + -0.0066219773, + -0.024814676, + -0.021359563, + -0.0063788206, + -0.015508193, + -0.008039453, + -0.0034747787, + -0.007777389, + 0.02265895, + -0.021670818, + -0.025001222, + -0.014977781, + -0.0040190993, + -0.0050100307, + -0.015226215, + -0.008129193, + -0.0087036425, + -0.005384859, + -0.00067130505, + -0.003940403, + 0.0017325256, + -0.011240256, + -0.009957402, + -0.012342939, + -0.0060589053, + 0.012630077, + -0.014039617, + 0.0005762328, + -0.0042939563, + 0.0033181277, + -0.0009477287, + -0.015677337, + -0.006396937, + -0.010692313, + -0.028171765, + 0.0034233995, + -0.026471317, + 0.010166753, + -0.019795727, + -0.007407537, + 0.007135782, + 0.00212297, + -0.01658386, + -0.013199102, + -0.018382538, + -0.0018595051, + 0.0032383301, + -0.022380846, + -0.010341438, + -0.008019394, + 0.0013775069, + 0.0044786446, + -0.019760957, + -0.010980589, + -0.016707748, + -0.02081275, + 0.00095569156, + 0.0048921984, + 0.00024331466, + -0.014278432, + -0.0069970665, + -0.008832778, + 0.0032166806, + 0.0038828084, + -0.0069818157, + -0.0058332854, + 0.0057557537, + -0.0068850596, + -0.01730214, + -0.028134625, + -0.024852442, + -0.0015488553, + -0.0068682116, + -0.0076969266, + 0.0042642853, + -0.016877256, + -0.012811074, + 0.012077953, + 0.008977501, + -0.0021562213, + 0.005027944, + 0.00485874, + -0.010304345, + -0.025446506, + -0.043120213, + -0.02229299, + -0.009415394, + -0.01457002, + -0.010110959, + 0.0032911836, + -0.0034760735, + 0.0005124518, + -0.014142882, + 0.02254354, + 0.01822707, + -0.024131183, + -0.01180422, + -0.021881122, + -0.0032443507, + 0.013778831, + 0.010117855, + 0.011688293, + -0.009611866, + -0.009074987, + -0.003087427, + -0.016417868, + -0.02267311, + -0.00045983953, + -0.021491345, + -0.0008784855, + -0.0046271323, + -0.014615968, + -0.02388361, + -0.0030262861, + 0.019962441, + -0.031310227, + -0.009846183, + -0.0008374825, + -0.00922225, + -0.020015594, + -0.016012559, + -0.0080905575, + -0.025806198, + 0.0014584297, + -0.0016731905, + 0.0107665295, + 0.019963123, + -0.007134012, + -0.009954466, + -0.02102233, + -0.01768562, + -0.0051013706, + -0.001536536, + -0.016544024, + -0.015011646, + 0.011179865, + -0.014528994, + 0.004602519, + -0.015424417, + -0.0060166055, + 0.0023000166, + -0.0110927615, + 0.009023262, + -0.0074626915, + 0.002731796, + -0.0008004513, + 0.005985309, + 0.0069562206, + 0.00997019, + -0.023819214, + 0.005320308, + -0.02896667, + 0.00047580298, + 0.0010631495, + 0.008389925, + 0.008805579, + 0.0063720657, + -0.007878309, + 0.009693798, + 0.0014016766, + -0.023986, + -0.02555851, + -0.007623276, + -0.021292048, + 0.017019447, + 0.0033821731, + -0.015763992, + 0.0001586558, + -0.028220445, + 0.017317563, + -0.014492914, + 0.013548327, + -0.005262206, + -0.0012879564, + 0.0017770029, + -0.008791019, + 0.008053042, + -0.029735852, + -0.016419506, + -0.017972225, + 0.0027749327, + -0.0073092463, + 0.010945514, + -0.004306894, + 0.004149473, + 0.0015794958, + -0.005605733, + 0.003371402, + -0.007269567, + -0.007229885, + 0.0048040836, + -0.03931905, + -0.020453637, + -0.0024938472, + -0.025988167, + -0.0035278837, + 0.0086914515, + -0.009414782, + -0.006005875, + -0.00044480787, + -0.0155737, + 0.002530017, + -0.0020180505, + 0.0015841536, + 0.0010830788, + -0.013837513, + 0.001692942, + 0.0061226403, + 0.019820878, + -0.023629311, + 9.5816904e-05, + -0.008725759, + -0.009235351, + -0.0053034723, + 0.015768604, + -0.015582414, + -0.01895357, + -0.02360921, + -0.008125989, + -0.01328349, + 0.0042295866, + -0.011031814, + -0.025556179, + -0.01567639, + -0.022783952, + -0.012730723, + -0.011079734, + -0.013989429, + -0.011139316, + -0.011965602, + -0.022282565, + 0.0029839685, + -0.0132824, + 0.002290232, + -0.026453394, + -0.0017434256, + 0.003586947, + -0.0036807589, + 0.014157129, + 0.0049606455, + 0.00062271015, + -0.02254675, + -0.0025497717, + -0.0030265984, + 0.0052537303, + -0.005757521, + -0.020591361, + -0.016583765, + 0.009094498, + -0.022115385, + -0.024648378, + 0.0013162629, + -0.023268562, + 0.0029054012, + 0.01751962, + -0.024651835, + 0.0022472676, + -0.019839859, + -0.022640102, + -0.016304135, + -0.021333465, + 0.005553873, + 0.004504838, + 0.008099448, + -0.017930668, + -0.018321743, + -0.0034507087, + -0.010353891, + 0.00094199606, + -0.0033225236, + -0.011306042, + -0.007625564, + -0.00347493, + -0.019965729, + -0.0070988447, + -0.0043427413, + -0.03454937, + -0.0012422316, + -0.01856481, + -0.0035031976, + -0.007814118, + -0.004439282, + -0.0041666273, + 0.02947914, + 0.005944046, + -0.010798002, + 0.011619849, + -0.03841405, + -0.016513174, + -0.0034385913, + -0.012462159, + -0.01784726, + -0.0039882935, + -0.009200907, + 0.0048320093, + -0.024132466, + -0.022826836, + 0.0033226945, + -0.014974447, + -0.022123046, + -0.011616381, + -0.013393358, + 0.0044470364, + -0.006883954, + 0.001289507, + -0.01576564, + 0.014551565, + 0.005050138, + -0.0069149267, + -0.0037969013, + -0.019679613, + 0.010620557, + -0.013839653, + 0.0058433586, + -0.010762592, + -0.0074764844, + -0.013925315, + -0.023383498, + -0.008901249, + -0.014750821, + 0.00094898633, + -0.014541245, + -0.00082674733, + 0.022549767, + 0.010323844, + -0.01702031, + -0.005231943, + 0.0061535924, + -0.0063153957, + -0.0104323765, + -0.01832626, + -0.008094207, + -0.0028792624, + 0.025401874, + 0.0043604425, + -0.01615165, + 0.0073150336, + -0.013331146, + 0.0060620205, + 0.004381646, + -0.017924013, + -0.032825798, + 2.1335425e-05, + -0.021858208, + -0.025491962, + 0.0056934888, + -0.013394732, + -0.0038028467, + -0.0010330781, + 0.008020619, + -0.020162566, + 0.019877987, + -8.361396e-05, + -0.02305886, + -0.013197603, + -0.01052634, + -0.019824674, + 0.00031673143, + -0.008402616, + -0.020123102, + -0.011541877, + 0.010944793, + -0.025554607, + -0.010745312, + -0.005396403, + -0.01503525, + 0.00047998212, + -0.0045643197, + -0.006545165, + 0.010463855, + -0.018604387, + -0.019698983, + -0.01882063, + -0.016648533, + -0.008220625, + -0.028986286, + -0.016896663, + 0.01321966, + 0.0018335889, + 0.0008117745, + -0.02350772, + -0.0041983104, + -0.0085193105, + -0.025600938, + -0.0029938768, + 0.017874755, + -0.007805249, + -0.021649681, + -0.008130648, + -0.029766599, + -0.0132709285, + -0.013076501, + 0.012262621, + -0.026313448, + -0.021614715, + -0.0129284775, + 0.014418304, + -0.021115346, + 0.0031074095, + -0.012272193, + 0.019523412, + -0.025035188, + 0.0106559135, + -0.026220856, + -0.010059406, + -0.003024745, + -0.015863976, + -0.001237169, + -0.020506458, + 0.02968995, + -0.029970808, + -0.013474823, + -0.017947322, + -0.0121991, + 0.010811204, + -0.019923832, + -0.012787531, + -0.031315595, + -0.018175315, + 0.005047875, + -0.0043490552, + -0.007521787, + -0.00024374184, + -0.019577408, + -0.012421361, + -0.003999655, + -0.014916098, + -0.025331477, + -0.027193837, + -0.010196562, + 0.0070178965, + 0.0025699637, + -0.007213435, + 0.0012241242, + 0.0060129887, + 0.006087066, + -0.002185295, + -0.01654045, + -0.016137293, + -0.007136455, + -0.006295244, + -0.016600963, + 0.003240759, + -0.01595278, + -0.012135268, + -0.029652808, + -0.02643629, + -0.011171712, + -0.015403505, + 0.0014493439, + -0.016989406, + 0.0006089083, + -0.0036170084, + -0.0020729254, + -0.01932989, + -0.0013258107, + -0.021354672, + -0.0072786896, + -0.016637297, + -0.028388364, + -0.014338665, + -0.030622635, + -0.024608921, + 0.0093048755, + -0.032180898, + -0.001405539, + -0.022034455, + -0.010187223, + -0.022371372, + -0.024233937, + -0.018855644, + -0.022845086, + -0.0064058523, + -0.016454693, + 0.011938993, + -0.0035264487, + -0.01741817, + -0.020492604, + -0.008003204, + -0.008945543, + -0.0039713024, + -0.02397899, + 0.0072483057, + -0.014939817, + -0.011153026, + -0.020376286, + 0.010071187, + -0.014878541, + -0.041239727, + -0.011199471, + -0.021035077, + 0.0003959601, + -0.01114269, + -0.03553992, + 0.0017579683, + -0.0047227424, + -0.0063770777, + -0.0039566574, + 0.02434285, + -0.00806, + -0.026978815, + -0.011055222, + 0.019253638, + -0.016140759, + -0.0059189373, + -0.014163389, + -0.041471634, + -0.013337733, + -0.005662226, + -0.024519112, + -0.02002693, + 0.005536377, + -0.0043712794, + -0.005717594, + 0.0029882703, + -0.005048172, + -0.012999703, + -0.032341994, + -0.0014621158, + -0.003956858, + -0.025090104, + -0.009853701, + -0.0072810655, + -0.019771252, + -0.016117059, + 0.0010341405, + 0.010863682, + -0.021873288, + -0.0076502855, + -0.0042455285, + -0.010340453, + -0.022941558, + 0.0004018534, + -0.017427031, + -0.009051269, + -0.029518297, + -0.02811659, + -0.01382376, + -0.003944711, + -0.010322355, + -0.026050568, + -0.0062936554, + -0.02036132, + -0.0077537973, + -0.005521927, + 0.0056806905, + 0.0016746257, + -0.0047406615, + -0.012266507, + -0.003082482, + -0.00015305835, + -0.0039542653, + 0.012476356, + -0.0072251726, + -0.01966847, + -0.018212885, + 0.008515566, + -0.020034052, + -0.0018459039, + -0.0100755, + -0.007125109, + -0.032835703, + 0.0012764133, + -0.026035737, + 0.02341692, + -0.0039085425, + 0.018418673, + -0.005018238, + -0.014110731, + 0.00245471, + 0.0061133094, + 0.008428402, + -0.026031082, + 0.016885981, + 0.011870734, + -0.015258191, + -0.0150609845, + -0.020481778, + 0.0005320597, + -0.0022792744, + -0.015404484, + -0.0043348297, + -0.014716542, + 0.006982035, + -0.010114352, + -0.019665016, + -0.017917799, + -0.022396633, + 0.016144995, + 0.0052347723, + -0.0032736354, + 0.0036670899, + -0.017957594, + -0.0031232403, + -0.010786669, + -0.0025121, + -0.030668518, + 0.007275537, + 0.0065264697, + 0.013603435, + 0.007413381, + -0.0041819355, + -0.029051548, + -0.011269803, + 0.0032804, + -0.018407572, + 0.01787345, + -0.0030538887, + -0.024040423, + 0.0048932633, + 0.012804504, + -0.028018001, + -0.039306846, + -0.023919864, + 0.0004950492, + -0.008114053, + 0.008747148, + -0.005129191, + 0.0034873018, + -0.009417731, + 0.007418298, + -0.04827756, + -0.017109795, + 0.0005944637, + 0.00070826436, + -0.018133558, + 0.010312607, + -0.019073498, + -0.006309479, + 0.011402011, + -0.0020443373, + -0.0016555045, + -0.007876194, + 0.0019633304, + 0.0019668902, + -0.031595845, + -0.008268619, + -0.0053951573, + -0.042428568, + 0.0058189253, + -0.009821609, + -0.030990314, + -0.025547914, + -0.00922979, + -0.0008555122, + -0.0007831285, + -0.0076138657, + -0.0132868085, + -0.020506883, + 0.00038804775, + -0.037423912, + 0.009150984, + -0.008191823, + -0.0064322962, + 0.00089683797, + 0.0018002964, + -0.011463841, + -0.012299345, + -0.012296957, + -0.013437919, + -0.030898288, + -0.031211518, + -0.00873001, + 0.004349443, + -0.011752076, + -0.011940841, + 0.0028651, + -0.009496716, + 0.023750179, + -0.00069162075, + -0.0032774832, + 0.0029879427, + -0.013276947, + -0.035970688, + 0.0166434, + -0.007021484, + 0.0056356536, + -0.017255675, + -0.014611456, + -0.01995012, + -0.009288423, + -0.00065465964, + 0.014291738, + -0.014091205, + 0.0035099292, + -0.0095753325, + -0.022316433, + -0.010047573, + -0.010786442, + -0.014126215, + 0.01204381, + -0.0061581, + 0.003042007, + -0.011199604, + -0.044808984, + -0.007352526, + -0.007890511, + -0.027210591, + -0.015183947, + -0.018999185, + -0.0044570775, + -0.0051382906, + 0.005137627, + -0.018942136, + -0.02236477, + -0.016632399, + -0.0169218, + -0.03466247, + -0.022002786, + -0.008500659, + -0.020699572, + -0.008895429, + -0.037365425, + 0.00022106664, + -0.011737253, + -0.008925902, + -0.012208824, + 0.0151818, + 0.0008267145, + -0.018490966, + 0.013914049, + 0.0035390742, + -0.00024018703, + -0.007946934, + 0.00971586, + -0.011561669, + -0.018397668, + -0.0037423973, + -0.017272362, + 0.011805865, + -0.027520413, + -0.022247564, + -0.018939247, + -0.005549235, + 0.009052555, + -0.02732165, + -0.01559786, + -0.0057404647, + -0.02899046, + -0.009900588, + -0.0057584173, + 0.00500477, + -0.02802213, + 0.012917834, + 0.0027706819, + -0.00024515082, + -0.00729836, + -0.0012261556, + -0.0063318205, + 0.0077696447, + -0.007928331, + -0.024222186, + 0.0065301554, + -0.0057070116, + 0.0035029713, + -0.006946358, + 0.00070036907, + -0.015081481, + -0.0057827025, + 0.006566071, + -0.01704318, + -0.041650865, + -0.02946319, + -0.0004650289, + 0.021396743, + 0.0054007987, + -0.0076030935, + -0.022551857, + -0.011293885, + -0.015183645, + -0.0021568164, + -0.032366652, + -0.004487888, + -0.024388691, + 0.018711224, + -0.00897212, + -0.021399455, + 0.011422818, + 0.0043857177, + -0.011349882, + -0.00061694527, + -0.022096235, + -0.011291843, + -0.010587798, + 0.0036694708, + -0.025787659, + 0.0048703584, + -0.013955349, + -0.025269534, + 0.0020973517, + -0.016356012, + -0.025262298, + 0.003997294, + -0.0032580085, + -0.0008205584, + 0.0010052194, + 0.020782199, + -0.0077432673, + 0.010134969, + 0.006389932, + -0.044835217, + 0.01404436, + 0.002350779, + -0.0069987234, + -0.029790847, + 0.011456665, + -0.0005927898, + -0.03224064, + -0.026167613, + 0.0069192564, + -0.009619371, + -0.0106008, + 0.002612446, + -0.020132957, + -0.008533135, + -0.010977186, + 0.026941571, + -0.024082473, + -0.015691303, + 0.009859984, + -0.023115017, + -0.009663942, + -0.004582489, + 0.0022732052, + -0.019431438, + -0.028955739, + -0.009747293, + -0.0072041643, + -0.009955652, + -0.030183768, + -0.021408282, + -0.028247597, + 0.009195004, + 0.008939119, + -0.017835252, + -0.0028767006, + -0.004617852, + 0.0055762134, + -0.009161133, + -0.00602494, + -0.028181344, + -0.012970908, + -0.010212683, + 0.0032247587, + -0.00035984526, + -0.020352798, + -0.01749636, + 0.02292309, + -0.002178233, + -0.008349086, + -0.02219283, + -0.022954427, + -0.019445363, + -0.009787673, + -0.008314257, + -0.015370929, + -0.006290695, + -0.028550524, + -0.032027416, + 0.00010360523, + -0.00027329806, + -0.0014194379, + 0.0006220186, + 0.002301321, + -0.0047424524, + -0.008856947, + -0.006062635, + -0.009185344, + 0.0068423655, + 0.00049949833, + 0.0037118, + -0.011323112, + 0.008796132, + 0.025536453, + 0.010960849, + -0.0430555, + -0.001503822, + 0.008278025, + -0.018971603, + 0.0078478055, + -0.009876265, + 0.0012723627, + 0.00801391, + 0.005936866, + 0.016028719, + -0.029007308, + -0.009003244, + -0.0026673486, + 0.0056881052, + -0.036057465, + -0.014122051, + -0.020566327, + 0.020860843, + -0.01542267, + -0.007327242, + 0.0036263845, + -0.014213712, + -0.0057634483, + -0.0016456114, + 0.009433357, + -0.011915089, + 0.0018222263, + -0.0046502873, + 0.005767594, + 0.000350115, + -0.02366052, + 0.012423305, + -0.025831703, + -0.016701331, + -0.014369957, + -0.013640896, + -0.020920005, + 0.0011975307, + -0.03541032, + -0.024924606, + -0.017239336, + -0.014648662, + -0.0072193416, + -0.013931239, + -0.0061140484, + -0.008047275, + -0.027325334, + -0.010822202, + -0.016270235, + -0.02384087, + -0.009581977, + -0.007279439, + -0.013221065, + 0.0029677902, + -0.029031001, + -0.019796915, + 0.0071693724, + -0.016450487, + -0.016154835, + -0.0053997263, + 0.00923361, + -0.0076874644, + -0.0002832302, + -0.0058460995, + -0.006896133, + -0.0019604606, + -0.02188237, + -0.027063977, + -0.008969301, + -0.023186957, + -0.023182029, + -0.006809656, + -0.032421105, + 0.00037058385, + -0.008726344, + -0.03438482, + -0.023798134, + -0.0071307076, + -0.0032631871, + -0.0010768491, + -0.028012533, + -0.0020608332, + 0.022520645, + -0.015188671, + -0.00096768024, + 0.0018338477, + -0.008172528, + -0.009493072, + -0.013571439, + -0.00858528, + -0.004302212, + -0.00014967764, + -0.006320974, + -0.021171857, + -0.016717445, + -0.0017334747, + -0.022537904, + -0.0048042918, + -0.015039898, + -0.003121746, + -0.012576696, + -0.019903824, + -0.00801631, + -0.010552651, + -0.03018274, + 0.0137954485, + -0.0060497727, + -0.019656504, + 0.013243469, + -0.022764655, + -0.00802507, + -0.0404452, + -0.024353154, + -0.025364315, + -0.014731145, + 0.008270997, + -0.014409821, + -0.012215053, + -0.023449205, + -0.007082949, + -0.014013742, + -0.0002423515, + -0.017445324, + -0.013857925, + -0.0044210106, + -0.014512385, + -0.0062822867, + 0.000515148, + -0.035069525, + -0.012718555, + -0.03015828, + 0.0064956103, + -0.007220882, + 0.012241045, + -0.0021364684, + -0.018562179, + -0.0026158832, + 0.010753734, + -0.0031790037, + -0.0025236818, + -0.0048378003, + 0.0055654882, + -0.024735013, + -0.010178332, + -0.00017384833, + -0.007393558, + -0.018604577, + 0.008238804, + -0.008616843, + -0.02839157, + -0.009507306, + -0.014672196, + -0.02007954, + -0.006198626, + -0.005470042, + -0.028380958, + -0.020842984, + -0.008571216, + -0.024235452, + -0.0029856833, + -0.005753789, + -0.034270376, + -0.0167351, + -0.0114773, + -0.03572835, + -0.011028586, + -0.020426324, + 0.02469706, + -0.019597147, + -0.01071099, + 0.008797886, + 0.0028238597, + -0.031426758, + 0.015791684, + -0.0038509916, + -0.037634622, + 0.0009767172, + -0.012370505, + -0.019611144, + -0.0028686568, + 0.0045287875, + -0.021829396, + -0.003945911, + -0.020103516, + -0.017098267, + -0.03558311, + -0.03450934, + -0.014094115, + -0.0064462777, + -0.007419365, + -0.008560563, + 0.007910205, + -0.0027743718, + -0.014177824, + 0.014166045, + -0.022925315, + 0.00010349377, + -0.016874693, + -0.010632265, + -0.0003042036, + 0.0029284123, + -0.012388664, + 0.014321792, + -0.026366819, + -0.009046799, + -0.027689997, + 0.0036075783, + 5.9002323e-05, + -0.027496088, + -0.032238435, + -0.024488915, + -0.006532029, + 0.015239393, + 0.0084056435, + -0.005163614, + -0.02780226, + 0.005737329, + 0.004895428, + -0.0073004006, + 0.014019043, + 0.0008674845, + -0.0051395027, + 0.0077467305, + -0.00075804966, + -0.019573156, + -0.019078897, + -0.01796079, + -0.008220819, + -0.025146533, + 0.0108495485, + -0.016519355, + 0.0069818203, + 0.0011693637, + -0.003086208, + -0.030419555, + -0.00530329, + -0.02373716, + -0.02738081, + 0.008901588, + -0.009788311, + -0.004831445, + 0.006403902, + -0.0007766331, + -0.0016797824, + -0.01586771, + -0.020688731, + -0.01960577, + -0.022835115, + -0.005173679, + -0.029732259, + -0.008327111, + -0.024647182, + 0.0015730455, + -0.0049839607, + -0.015910972, + -0.027544942, + -0.009973204, + 0.006152932, + -0.008527478, + 0.006846906, + -0.010639551, + -0.021389399, + 0.007530631, + 0.0006447525, + 0.006749243, + 0.018108796, + 0.01897072, + 0.004665312, + -0.018258847, + -0.0061027985, + 0.0011887676, + -0.0016138051, + -0.02214835, + -0.009816804, + 0.0033131104, + -0.009535499, + -0.010246716, + -0.022926616, + -0.02736257, + 0.0096790735, + -0.010372317, + -0.01817372, + -0.0059332284, + -0.015558663, + -0.007992346, + -0.014847942, + -0.012804537, + -0.02491299, + 0.010266008, + 0.006952445, + -0.040887684, + -0.008298724, + -0.007864411, + -0.0028026672, + -0.011142517, + -0.006745656, + -0.0043813046, + 0.024124688, + 0.037048288, + -0.0054742144, + -0.0011217034, + -0.0060548657, + 0.008790038, + -0.0010847357, + 0.010595748, + -0.007209964, + -0.009436229, + -0.005519045, + 0.008696302, + -0.026215792, + 0.0020787884, + -0.0027734123, + -0.008745901, + -0.015945517, + -0.008662705, + -0.011551366, + -0.0045493753, + -0.01783518, + -0.014551059, + -0.011029815, + -0.022660425, + -0.015391715, + -0.017935798, + -0.0127163865, + -0.0146088125, + -0.010365861, + -0.009212106, + -0.007789085, + -0.02094181, + -0.00060130644, + -0.019001456, + -0.003066564, + 0.0076306625, + 0.009295228, + -0.01595578, + -0.018682111, + -0.008247429, + -0.024157293, + -0.0006922068, + -0.0053241113, + 0.010335701, + -0.0063275397, + -0.020497898, + -0.004774144, + 5.9236245e-05, + -0.030453688, + -0.0047735265, + -0.013472411, + -0.019970674, + 0.0010901506, + -0.003588242, + -0.024787698, + -0.026006903, + -0.0146994, + -0.008539513, + -0.00675553, + -0.007924722, + -0.0032794862, + 0.002334016, + -0.012134161, + -0.012717323, + -0.0206488, + -0.0076283067, + -0.010657166, + -0.0011272306, + -0.017159957, + -0.005959509, + 0.0035208128, + 0.0056012883, + -0.02878313, + -0.010652133, + 0.009824189, + -0.030650487, + -0.035060145, + -0.0056484058, + -0.002250389, + -0.00997145, + -0.019930081, + 0.020879008, + -0.024006166, + 0.012758436, + -0.009186825, + -0.0039172424, + -0.02065013, + -0.007222383, + -0.011459942, + 0.0031710286, + -0.026411848, + -0.0048818537, + -0.030579157, + -0.011356663, + -0.007157102, + 0.008972885, + -0.0090778675, + 0.006268122, + -0.016734246, + -0.013376928, + -0.017448982, + -0.015810007, + 0.010082009, + 0.009850961, + -0.023310784, + -0.0019771613, + -0.008609441, + -0.029769437, + -0.0066931206, + -0.022985253, + 0.0141232135, + -0.011319635, + -0.0012387398, + -0.0059319343, + -0.006563392, + 0.003937325, + -0.014010521, + -0.014309122, + -0.00919904, + -0.007094824, + 0.0059757526, + 0.023943497, + -0.014214581, + -0.027948493, + -0.009722942, + 0.014012333, + -0.023300236, + -0.018898176, + -0.024332194, + 0.006537806, + -0.016613988, + -0.012879547, + -0.02380543, + -0.028639363, + -0.029089052, + 0.008310773, + 0.014486769, + -0.016922113, + -0.011794773, + -0.019515535, + -0.0066743568, + -0.034254786, + 0.0013431205, + -0.02846481, + 0.00567332, + -0.0045080096, + -0.0052280338, + -0.008012502, + -0.015086309, + 0.0028101634, + -0.019863585, + 0.003718386, + -0.0060990104, + -0.007820334, + -0.0018840169, + -0.00944792, + 0.012839386, + -0.013773215, + 0.010286557, + -0.025996512, + 0.00056797033, + -0.017846439, + 0.008192418, + -0.005950309, + -0.0134335, + 0.0067644543, + -0.00030599046, + -0.004158694, + -0.022259401, + -0.012484337, + -0.019434413, + 0.00471017, + -0.023742877, + -0.025206989, + -0.013679736, + -0.026219612, + -0.0063220607, + -0.0022576018, + -0.022130499, + -0.0060471953, + -0.0009118644, + -0.0016302025, + -0.03021128, + -0.0028862248, + 0.00042840323, + 0.001994294, + -0.00028511015, + 0.0017706222, + -0.0077145426, + -0.01414993, + 0.012888054, + -0.019800706, + 0.0029621418, + -0.022244431, + 0.00658795, + -0.014585606, + -0.032606967, + 0.0030688362, + -0.008707623, + -0.0055655236, + 0.0035558431, + -0.02449501, + -0.0038734812, + -0.021816181, + 0.009103026, + 0.009018361, + 0.0079736635, + -0.019439956, + 0.0021327166, + 0.00045716905, + -0.011458951, + -0.021119159, + 0.0009956554, + -0.011751872, + 0.0043688538, + -0.011668807 ], "paletteEmbedding": [ - 0.042931534, 0.04713213, 0.03509991, 0.015307263, 0.014452904, - 0.017158374, 0.013456152, 0.005838119, 0.0015663246, 0.00021358972, - 0.037093416, 0.04506743, 0.035669483, 0.02990256, 0.048556063, - 0.062368196, 0.053255036, 0.024135638, 0.006478888, 0.0007119657, - 0.01701598, 0.027125893, 0.02598675, 0.036239054, 0.0788146, - 0.113060154, 0.09668495, 0.04506743, 0.011605041, 0.0007831623, - 0.0054821363, 0.00726205, 0.011177862, 0.025274783, 0.07126777, - 0.10786281, 0.09946161, 0.043714695, 0.011035468, 0.001495128, - 0.00064076914, 0.0012103417, 0.0032038458, 0.011106665, 0.03032974, - 0.056387685, 0.051119138, 0.024847604, 0.006478888, 0.0014239314, - 7.119657e-5, 0.00021358972, 0.00064076914, 0.0025630766, 0.008472392, - 0.013669742, 0.012886579, 0.0074044433, 0.0020647005, 0.00021358972, - 0.0, 0.0, 0.0, 0.00028478628, 0.0010679485, 0.002135897, 0.0025630766, - 0.0009967521, 0.00014239314, 0.0, 0.0, 0.0, 7.119657e-5, 0.00014239314, - 0.0, 0.00028478628, 0.00014239314, 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.03488632, 0.041009225, 0.028407432, 0.01950786, - 0.023138886, 0.03011615, 0.022782903, 0.00975393, 0.0025630766, - 0.00014239314, 0.037449397, 0.044569053, 0.037307005, 0.040653244, - 0.070698194, 0.1080052, 0.089066915, 0.038374953, 0.007831623, - 0.0009255554, 0.01950786, 0.026698714, 0.029119398, 0.05218709, - 0.12131896, 0.2034798, 0.17784904, 0.08073691, 0.019863844, - 0.0024206834, 0.0055533326, 0.009469144, 0.0148800835, 0.043572303, - 0.112917766, 0.19223075, 0.17621152, 0.08707341, 0.02242692, - 0.002990256, 0.00049837603, 0.0015663246, 0.005695726, 0.019223075, - 0.051190335, 0.09810887, 0.090277255, 0.05005119, 0.012530597, - 0.00249188, 7.119657e-5, 0.00028478628, 0.0011391451, 0.0037022217, - 0.014595297, 0.027909055, 0.026413929, 0.015520853, 0.0032750424, - 0.0007831623, 0.0, 0.0, 0.00014239314, 0.00035598286, 0.0023494868, - 0.004485384, 0.0046277773, 0.003346239, 0.0007119657, 7.119657e-5, 0.0, - 0.0, 0.0, 0.0, 7.119657e-5, 0.00049837603, 0.00014239314, 0.00035598286, - 0.00021358972, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.017585553, - 0.020647006, 0.017727947, 0.014239314, 0.018795894, 0.02328128, - 0.019792646, 0.0075468365, 0.0025630766, 0.00042717945, 0.01744316, - 0.025701962, 0.027481876, 0.032465637, 0.06058828, 0.08999246, - 0.073688455, 0.036239054, 0.010109914, 0.0009255554, 0.013028973, - 0.02100299, 0.02534598, 0.04428427, 0.110354684, 0.17820501, 0.1599787, - 0.07767546, 0.020006238, 0.002847863, 0.0061229053, 0.010323503, - 0.015520853, 0.03965649, 0.09469144, 0.18219203, 0.16482006, 0.08750059, - 0.022355724, 0.004129401, 0.0012815383, 0.0034174356, 0.006478888, - 0.018012732, 0.049339224, 0.099532805, 0.09825127, 0.055177342, - 0.016019229, 0.003346239, 0.00014239314, 0.0010679485, 0.0017799143, - 0.0042005978, 0.017158374, 0.03011615, 0.032536834, 0.021857347, - 0.006336495, 0.0011391451, 0.0, 0.00014239314, 0.00021358972, - 0.0007831623, 0.00249188, 0.0059093153, 0.0075468365, 0.0047701704, - 0.0016375212, 0.00064076914, 0.0, 0.0, 0.0, 0.00021358972, - 0.00028478628, 0.0009255554, 0.0009255554, 0.0008543589, 0.00049837603, - 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, 0.0, 0.0067636743, - 0.010750682, 0.010750682, 0.007190854, 0.008899571, 0.011106665, - 0.008685982, 0.0039870082, 0.0009255554, 7.119657e-5, 0.012957776, - 0.021714954, 0.022142135, 0.018012732, 0.026627518, 0.040582046, - 0.037947774, 0.017727947, 0.0046277773, 0.0009967521, 0.013242562, - 0.022782903, 0.025417177, 0.026698714, 0.054038197, 0.084510334, - 0.078672215, 0.041080423, 0.0124594, 0.0014239314, 0.008187606, - 0.016517604, 0.019650254, 0.025701962, 0.05254307, 0.089066915, - 0.093338706, 0.052471872, 0.015734442, 0.0017799143, 0.0029190595, - 0.008187606, 0.009825127, 0.0148800835, 0.02926179, 0.054322984, - 0.065999225, 0.042219568, 0.012815383, 0.0023494868, 0.0009255554, - 0.0023494868, 0.003488632, 0.005054957, 0.010679486, 0.023922049, - 0.02990256, 0.020362219, 0.00726205, 0.0017799143, 0.00014239314, - 0.00049837603, 0.0012815383, 0.0009967521, 0.0044141873, 0.008187606, - 0.0092555545, 0.006621281, 0.002990256, 0.00028478628, 0.0, 0.0, 0.0, - 0.00014239314, 0.0011391451, 0.0022782902, 0.0020647005, 0.0026342731, - 0.0009967521, 0.00014239314, 0.0, 0.0, 0.0, 0.0, 0.00014239314, - 0.00021358972, 0.00056957256, 0.00049837603, 0.00028478628, 7.119657e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, 0.0, 0.0, 0.00014239314, 0.0, - 0.009041965, 0.013456152, 0.012815383, 0.0049125636, 0.0022070936, - 0.0026342731, 0.002990256, 0.0011391451, 0.00035598286, 7.119657e-5, - 0.018582305, 0.0290482, 0.025274783, 0.012744186, 0.0092555545, - 0.010964273, 0.009113161, 0.004841367, 0.0022782902, 0.00014239314, - 0.022996493, 0.03865974, 0.038517345, 0.022284526, 0.01787034, - 0.023993244, 0.024634015, 0.013527349, 0.0047701704, 0.00064076914, - 0.015022477, 0.029546577, 0.030756919, 0.02057581, 0.02328128, - 0.029475382, 0.033391193, 0.020718202, 0.0079740165, 0.0013527349, - 0.006692478, 0.014310511, 0.016731195, 0.0145241, 0.016873587, - 0.027054697, 0.03154008, 0.025701962, 0.010109914, 0.0012815383, - 0.0020647005, 0.004342991, 0.006550085, 0.0077604265, 0.010821879, - 0.01808393, 0.023922049, 0.018938288, 0.008757179, 0.0023494868, - 0.00014239314, 0.0007831623, 0.0016375212, 0.0031326492, 0.0047701704, - 0.0084011955, 0.013812135, 0.012815383, 0.006621281, 0.0020647005, 0.0, - 7.119657e-5, 0.00042717945, 0.00042717945, 0.0022070936, 0.0029190595, - 0.005766922, 0.0037734183, 0.003488632, 0.0008543589, 0.0, 0.0, 0.0, - 0.00014239314, 0.00021358972, 0.0009255554, 0.0012103417, 0.0015663246, - 0.0011391451, 0.0011391451, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, - 7.119657e-5, 0.00028478628, 0.00056957256, 0.00042717945, 0.00035598286, - 0.012103417, 0.017371964, 0.011889827, 0.0067636743, 0.0010679485, - 0.00042717945, 0.0009255554, 0.0, 0.0, 0.0, 0.020006238, 0.036025465, - 0.029190594, 0.013740938, 0.0047701704, 0.0026342731, 0.0010679485, - 0.00042717945, 0.00021358972, 7.119657e-5, 0.0249188, 0.045992985, - 0.04385709, 0.021999741, 0.0079740165, 0.0039870082, 0.0046989736, - 0.00249188, 0.0007119657, 0.00014239314, 0.017300768, 0.033177603, - 0.03509991, 0.022569314, 0.010821879, 0.009397947, 0.010038717, - 0.0061229053, 0.002135897, 0.0009967521, 0.006621281, 0.01516487, - 0.018795894, 0.015236067, 0.013456152, 0.013242562, 0.0145241, - 0.011676238, 0.00498376, 0.0014239314, 0.00249188, 0.00519735, - 0.0075468365, 0.008116409, 0.011533844, 0.016090425, 0.020291023, - 0.017300768, 0.008685982, 0.00249188, 0.00064076914, 0.0011391451, - 0.002135897, 0.0037022217, 0.006621281, 0.012815383, 0.018439911, - 0.017087176, 0.009611538, 0.0049125636, 0.0, 0.00014239314, - 0.00049837603, 0.0010679485, 0.003631025, 0.005980512, 0.0124594, - 0.013669742, 0.010821879, 0.004841367, 0.0, 0.0, 7.119657e-5, - 0.00014239314, 0.00056957256, 0.00249188, 0.0059093153, 0.0069060675, - 0.009825127, 0.0054821363, 0.0, 0.0, 0.0, 7.119657e-5, 0.00014239314, - 0.00021358972, 0.0016375212, 0.003346239, 0.0047701704, 0.0039870082, - 0.006478888, 0.009397947, 0.009184358, 0.0038446148, 0.0009255554, - 0.00021358972, 0.0, 0.0, 0.0, 0.0, 0.012957776, 0.024420423, - 0.021216579, 0.010181109, 0.0027054697, 0.00049837603, 0.00021358972, - 7.119657e-5, 7.119657e-5, 0.0, 0.017371964, 0.032750424, 0.033391193, - 0.01516487, 0.004841367, 0.0017087178, 0.0007119657, 0.0007119657, - 0.00014239314, 7.119657e-5, 0.010750682, 0.023637261, 0.025488373, - 0.014168118, 0.007119657, 0.0037734183, 0.003488632, 0.0017799143, - 0.0007831623, 0.00021358972, 0.0049125636, 0.012601793, 0.013384956, - 0.011249058, 0.008116409, 0.007831623, 0.008970768, 0.0064076916, - 0.0039158114, 0.0010679485, 0.0010679485, 0.0044141873, 0.0052685463, - 0.007333247, 0.0074044433, 0.011747435, 0.015378459, 0.014381708, - 0.010323503, 0.0037022217, 0.00035598286, 0.0009967521, 0.0019223074, - 0.0027054697, 0.006621281, 0.014595297, 0.019080682, 0.020362219, - 0.015948033, 0.009184358, 0.0, 0.00021358972, 0.00035598286, - 0.0012103417, 0.0035598285, 0.011249058, 0.01765675, 0.032252047, - 0.03467273, 0.02100299, 0.0, 7.119657e-5, 0.0, 0.00028478628, - 0.0012103417, 0.00498376, 0.0124594, 0.030472133, 0.03638145, - 0.03196726, 0.0, 0.0, 7.119657e-5, 7.119657e-5, 0.00035598286, - 0.00249188, 0.007333247, 0.018582305, 0.028193843, 0.023352476, - 0.0024206834, 0.003488632, 0.0025630766, 0.0013527349, 0.00035598286, - 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0046277773, 0.008472392, 0.006977264, - 0.0030614526, 0.0014239314, 0.00021358972, 0.0, 0.0, 0.0, 0.0, - 0.006621281, 0.011676238, 0.0103947, 0.005624529, 0.0019223074, - 0.00049837603, 0.00014239314, 0.00014239314, 0.0, 0.0, 0.003488632, - 0.009469144, 0.010181109, 0.0067636743, 0.0022782902, 0.0012103417, - 0.0011391451, 0.0008543589, 0.00042717945, 7.119657e-5, 0.0016375212, - 0.0039158114, 0.005624529, 0.0044141873, 0.0035598285, 0.0037734183, - 0.0047701704, 0.0032750424, 0.0014239314, 0.0011391451, 0.00049837603, - 0.0015663246, 0.0019223074, 0.0026342731, 0.004342991, 0.008614785, - 0.010252306, 0.010964273, 0.00747564, 0.00498376, 0.0, 0.00028478628, - 0.00064076914, 0.0009255554, 0.003488632, 0.010109914, 0.019365467, - 0.031112902, 0.034387946, 0.023566065, 7.119657e-5, 0.0, 0.00035598286, - 0.0012103417, 0.002847863, 0.010038717, 0.028478628, 0.056886062, - 0.076749906, 0.059021957, 0.0, 0.0, 0.0, 0.00042717945, 0.0009967521, - 0.0074044433, 0.026769912, 0.076465115, 0.11277537, 0.08999246, 0.0, - 0.0, 0.0, 0.00021358972, 0.00028478628, 0.0038446148, 0.018368715, - 0.054465376, 0.09006366, 0.07532597, 0.00028478628, 0.0007119657, - 0.0009255554, 0.00035598286, 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0012815383, 0.0022070936, 0.0018511108, 0.0011391451, 0.00014239314, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0011391451, 0.0022070936, 0.0023494868, - 0.0014239314, 0.00021358972, 7.119657e-5, 0.0, 0.0, 0.0, 0.0, - 0.0009255554, 0.0017087178, 0.0017087178, 0.0007119657, 0.0009967521, - 0.00042717945, 0.00035598286, 0.00021358972, 7.119657e-5, 7.119657e-5, - 0.00021358972, 0.00049837603, 0.0017799143, 0.0013527349, 0.0010679485, - 0.0009255554, 0.0014239314, 0.0013527349, 0.0009255554, 0.0008543589, - 0.00014239314, 0.0007831623, 0.0007119657, 0.00064076914, 0.0017087178, - 0.0034174356, 0.0067636743, 0.0069060675, 0.0092555545, 0.00519735, 0.0, - 0.00014239314, 7.119657e-5, 0.00056957256, 0.0018511108, 0.005695726, - 0.0131713655, 0.03154008, 0.03780538, 0.026129141, 0.0, 7.119657e-5, - 7.119657e-5, 0.00035598286, 0.0015663246, 0.008116409, 0.028905809, - 0.07582435, 0.11612161, 0.094976224, 0.0, 0.0, 7.119657e-5, 0.0, - 0.0007831623, 0.007831623, 0.0373782, 0.11227699, 0.18240562, - 0.14979759, 0.0, 0.0, 0.0, 7.119657e-5, 0.00049837603, 0.0047701704, - 0.026698714, 0.08849734, 0.15342861, 0.12559076, 0.0, 7.119657e-5, - 0.00021358972, 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 7.119657e-5, 0.00028478628, 0.00014239314, 7.119657e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 7.119657e-5, 0.00028478628, 0.00014239314, 0.00035598286, - 7.119657e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 7.119657e-5, 0.00014239314, - 0.00021358972, 0.00028478628, 0.0, 7.119657e-5, 0.0, 0.0, 7.119657e-5, - 0.0, 7.119657e-5, 0.00021358972, 0.00021358972, 0.00014239314, - 0.00064076914, 0.00042717945, 0.00021358972, 0.00049837603, - 0.00021358972, 0.00014239314, 0.0, 0.0, 7.119657e-5, 0.00028478628, - 0.00014239314, 0.00064076914, 0.0019935041, 0.0046989736, 0.005624529, - 0.0046989736, 0.0, 7.119657e-5, 7.119657e-5, 0.00014239314, - 0.0007831623, 0.0023494868, 0.009184358, 0.021074185, 0.030187346, - 0.02349487, 0.0, 0.0, 7.119657e-5, 0.00014239314, 0.00064076914, - 0.0046277773, 0.020219827, 0.058879565, 0.09191477, 0.0810217, 0.0, 0.0, - 7.119657e-5, 7.119657e-5, 0.00056957256, 0.0052685463, 0.029404184, - 0.09077563, 0.15755801, 0.13669741, 0.0, 0.0, 0.0, 0.0, 0.00056957256, - 0.0039870082, 0.022355724, 0.08244563, 0.13456152, 0.112917766 + 0.042931534, + 0.04713213, + 0.03509991, + 0.015307263, + 0.014452904, + 0.017158374, + 0.013456152, + 0.005838119, + 0.0015663246, + 0.00021358972, + 0.037093416, + 0.04506743, + 0.035669483, + 0.02990256, + 0.048556063, + 0.062368196, + 0.053255036, + 0.024135638, + 0.006478888, + 0.0007119657, + 0.01701598, + 0.027125893, + 0.02598675, + 0.036239054, + 0.0788146, + 0.113060154, + 0.09668495, + 0.04506743, + 0.011605041, + 0.0007831623, + 0.0054821363, + 0.00726205, + 0.011177862, + 0.025274783, + 0.07126777, + 0.10786281, + 0.09946161, + 0.043714695, + 0.011035468, + 0.001495128, + 0.00064076914, + 0.0012103417, + 0.0032038458, + 0.011106665, + 0.03032974, + 0.056387685, + 0.051119138, + 0.024847604, + 0.006478888, + 0.0014239314, + 7.119657e-05, + 0.00021358972, + 0.00064076914, + 0.0025630766, + 0.008472392, + 0.013669742, + 0.012886579, + 0.0074044433, + 0.0020647005, + 0.00021358972, + 0.0, + 0.0, + 0.0, + 0.00028478628, + 0.0010679485, + 0.002135897, + 0.0025630766, + 0.0009967521, + 0.00014239314, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00014239314, + 0.0, + 0.00028478628, + 0.00014239314, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03488632, + 0.041009225, + 0.028407432, + 0.01950786, + 0.023138886, + 0.03011615, + 0.022782903, + 0.00975393, + 0.0025630766, + 0.00014239314, + 0.037449397, + 0.044569053, + 0.037307005, + 0.040653244, + 0.070698194, + 0.1080052, + 0.089066915, + 0.038374953, + 0.007831623, + 0.0009255554, + 0.01950786, + 0.026698714, + 0.029119398, + 0.05218709, + 0.12131896, + 0.2034798, + 0.17784904, + 0.08073691, + 0.019863844, + 0.0024206834, + 0.0055533326, + 0.009469144, + 0.0148800835, + 0.043572303, + 0.112917766, + 0.19223075, + 0.17621152, + 0.08707341, + 0.02242692, + 0.002990256, + 0.00049837603, + 0.0015663246, + 0.005695726, + 0.019223075, + 0.051190335, + 0.09810887, + 0.090277255, + 0.05005119, + 0.012530597, + 0.00249188, + 7.119657e-05, + 0.00028478628, + 0.0011391451, + 0.0037022217, + 0.014595297, + 0.027909055, + 0.026413929, + 0.015520853, + 0.0032750424, + 0.0007831623, + 0.0, + 0.0, + 0.00014239314, + 0.00035598286, + 0.0023494868, + 0.004485384, + 0.0046277773, + 0.003346239, + 0.0007119657, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00049837603, + 0.00014239314, + 0.00035598286, + 0.00021358972, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.017585553, + 0.020647006, + 0.017727947, + 0.014239314, + 0.018795894, + 0.02328128, + 0.019792646, + 0.0075468365, + 0.0025630766, + 0.00042717945, + 0.01744316, + 0.025701962, + 0.027481876, + 0.032465637, + 0.06058828, + 0.08999246, + 0.073688455, + 0.036239054, + 0.010109914, + 0.0009255554, + 0.013028973, + 0.02100299, + 0.02534598, + 0.04428427, + 0.110354684, + 0.17820501, + 0.1599787, + 0.07767546, + 0.020006238, + 0.002847863, + 0.0061229053, + 0.010323503, + 0.015520853, + 0.03965649, + 0.09469144, + 0.18219203, + 0.16482006, + 0.08750059, + 0.022355724, + 0.004129401, + 0.0012815383, + 0.0034174356, + 0.006478888, + 0.018012732, + 0.049339224, + 0.099532805, + 0.09825127, + 0.055177342, + 0.016019229, + 0.003346239, + 0.00014239314, + 0.0010679485, + 0.0017799143, + 0.0042005978, + 0.017158374, + 0.03011615, + 0.032536834, + 0.021857347, + 0.006336495, + 0.0011391451, + 0.0, + 0.00014239314, + 0.00021358972, + 0.0007831623, + 0.00249188, + 0.0059093153, + 0.0075468365, + 0.0047701704, + 0.0016375212, + 0.00064076914, + 0.0, + 0.0, + 0.0, + 0.00021358972, + 0.00028478628, + 0.0009255554, + 0.0009255554, + 0.0008543589, + 0.00049837603, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 0.0067636743, + 0.010750682, + 0.010750682, + 0.007190854, + 0.008899571, + 0.011106665, + 0.008685982, + 0.0039870082, + 0.0009255554, + 7.119657e-05, + 0.012957776, + 0.021714954, + 0.022142135, + 0.018012732, + 0.026627518, + 0.040582046, + 0.037947774, + 0.017727947, + 0.0046277773, + 0.0009967521, + 0.013242562, + 0.022782903, + 0.025417177, + 0.026698714, + 0.054038197, + 0.084510334, + 0.078672215, + 0.041080423, + 0.0124594, + 0.0014239314, + 0.008187606, + 0.016517604, + 0.019650254, + 0.025701962, + 0.05254307, + 0.089066915, + 0.093338706, + 0.052471872, + 0.015734442, + 0.0017799143, + 0.0029190595, + 0.008187606, + 0.009825127, + 0.0148800835, + 0.02926179, + 0.054322984, + 0.065999225, + 0.042219568, + 0.012815383, + 0.0023494868, + 0.0009255554, + 0.0023494868, + 0.003488632, + 0.005054957, + 0.010679486, + 0.023922049, + 0.02990256, + 0.020362219, + 0.00726205, + 0.0017799143, + 0.00014239314, + 0.00049837603, + 0.0012815383, + 0.0009967521, + 0.0044141873, + 0.008187606, + 0.0092555545, + 0.006621281, + 0.002990256, + 0.00028478628, + 0.0, + 0.0, + 0.0, + 0.00014239314, + 0.0011391451, + 0.0022782902, + 0.0020647005, + 0.0026342731, + 0.0009967521, + 0.00014239314, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00014239314, + 0.00021358972, + 0.00056957256, + 0.00049837603, + 0.00028478628, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 0.0, + 0.00014239314, + 0.0, + 0.009041965, + 0.013456152, + 0.012815383, + 0.0049125636, + 0.0022070936, + 0.0026342731, + 0.002990256, + 0.0011391451, + 0.00035598286, + 7.119657e-05, + 0.018582305, + 0.0290482, + 0.025274783, + 0.012744186, + 0.0092555545, + 0.010964273, + 0.009113161, + 0.004841367, + 0.0022782902, + 0.00014239314, + 0.022996493, + 0.03865974, + 0.038517345, + 0.022284526, + 0.01787034, + 0.023993244, + 0.024634015, + 0.013527349, + 0.0047701704, + 0.00064076914, + 0.015022477, + 0.029546577, + 0.030756919, + 0.02057581, + 0.02328128, + 0.029475382, + 0.033391193, + 0.020718202, + 0.0079740165, + 0.0013527349, + 0.006692478, + 0.014310511, + 0.016731195, + 0.0145241, + 0.016873587, + 0.027054697, + 0.03154008, + 0.025701962, + 0.010109914, + 0.0012815383, + 0.0020647005, + 0.004342991, + 0.006550085, + 0.0077604265, + 0.010821879, + 0.01808393, + 0.023922049, + 0.018938288, + 0.008757179, + 0.0023494868, + 0.00014239314, + 0.0007831623, + 0.0016375212, + 0.0031326492, + 0.0047701704, + 0.0084011955, + 0.013812135, + 0.012815383, + 0.006621281, + 0.0020647005, + 0.0, + 7.119657e-05, + 0.00042717945, + 0.00042717945, + 0.0022070936, + 0.0029190595, + 0.005766922, + 0.0037734183, + 0.003488632, + 0.0008543589, + 0.0, + 0.0, + 0.0, + 0.00014239314, + 0.00021358972, + 0.0009255554, + 0.0012103417, + 0.0015663246, + 0.0011391451, + 0.0011391451, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 7.119657e-05, + 0.00028478628, + 0.00056957256, + 0.00042717945, + 0.00035598286, + 0.012103417, + 0.017371964, + 0.011889827, + 0.0067636743, + 0.0010679485, + 0.00042717945, + 0.0009255554, + 0.0, + 0.0, + 0.0, + 0.020006238, + 0.036025465, + 0.029190594, + 0.013740938, + 0.0047701704, + 0.0026342731, + 0.0010679485, + 0.00042717945, + 0.00021358972, + 7.119657e-05, + 0.0249188, + 0.045992985, + 0.04385709, + 0.021999741, + 0.0079740165, + 0.0039870082, + 0.0046989736, + 0.00249188, + 0.0007119657, + 0.00014239314, + 0.017300768, + 0.033177603, + 0.03509991, + 0.022569314, + 0.010821879, + 0.009397947, + 0.010038717, + 0.0061229053, + 0.002135897, + 0.0009967521, + 0.006621281, + 0.01516487, + 0.018795894, + 0.015236067, + 0.013456152, + 0.013242562, + 0.0145241, + 0.011676238, + 0.00498376, + 0.0014239314, + 0.00249188, + 0.00519735, + 0.0075468365, + 0.008116409, + 0.011533844, + 0.016090425, + 0.020291023, + 0.017300768, + 0.008685982, + 0.00249188, + 0.00064076914, + 0.0011391451, + 0.002135897, + 0.0037022217, + 0.006621281, + 0.012815383, + 0.018439911, + 0.017087176, + 0.009611538, + 0.0049125636, + 0.0, + 0.00014239314, + 0.00049837603, + 0.0010679485, + 0.003631025, + 0.005980512, + 0.0124594, + 0.013669742, + 0.010821879, + 0.004841367, + 0.0, + 0.0, + 7.119657e-05, + 0.00014239314, + 0.00056957256, + 0.00249188, + 0.0059093153, + 0.0069060675, + 0.009825127, + 0.0054821363, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00014239314, + 0.00021358972, + 0.0016375212, + 0.003346239, + 0.0047701704, + 0.0039870082, + 0.006478888, + 0.009397947, + 0.009184358, + 0.0038446148, + 0.0009255554, + 0.00021358972, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012957776, + 0.024420423, + 0.021216579, + 0.010181109, + 0.0027054697, + 0.00049837603, + 0.00021358972, + 7.119657e-05, + 7.119657e-05, + 0.0, + 0.017371964, + 0.032750424, + 0.033391193, + 0.01516487, + 0.004841367, + 0.0017087178, + 0.0007119657, + 0.0007119657, + 0.00014239314, + 7.119657e-05, + 0.010750682, + 0.023637261, + 0.025488373, + 0.014168118, + 0.007119657, + 0.0037734183, + 0.003488632, + 0.0017799143, + 0.0007831623, + 0.00021358972, + 0.0049125636, + 0.012601793, + 0.013384956, + 0.011249058, + 0.008116409, + 0.007831623, + 0.008970768, + 0.0064076916, + 0.0039158114, + 0.0010679485, + 0.0010679485, + 0.0044141873, + 0.0052685463, + 0.007333247, + 0.0074044433, + 0.011747435, + 0.015378459, + 0.014381708, + 0.010323503, + 0.0037022217, + 0.00035598286, + 0.0009967521, + 0.0019223074, + 0.0027054697, + 0.006621281, + 0.014595297, + 0.019080682, + 0.020362219, + 0.015948033, + 0.009184358, + 0.0, + 0.00021358972, + 0.00035598286, + 0.0012103417, + 0.0035598285, + 0.011249058, + 0.01765675, + 0.032252047, + 0.03467273, + 0.02100299, + 0.0, + 7.119657e-05, + 0.0, + 0.00028478628, + 0.0012103417, + 0.00498376, + 0.0124594, + 0.030472133, + 0.03638145, + 0.03196726, + 0.0, + 0.0, + 7.119657e-05, + 7.119657e-05, + 0.00035598286, + 0.00249188, + 0.007333247, + 0.018582305, + 0.028193843, + 0.023352476, + 0.0024206834, + 0.003488632, + 0.0025630766, + 0.0013527349, + 0.00035598286, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0046277773, + 0.008472392, + 0.006977264, + 0.0030614526, + 0.0014239314, + 0.00021358972, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006621281, + 0.011676238, + 0.0103947, + 0.005624529, + 0.0019223074, + 0.00049837603, + 0.00014239314, + 0.00014239314, + 0.0, + 0.0, + 0.003488632, + 0.009469144, + 0.010181109, + 0.0067636743, + 0.0022782902, + 0.0012103417, + 0.0011391451, + 0.0008543589, + 0.00042717945, + 7.119657e-05, + 0.0016375212, + 0.0039158114, + 0.005624529, + 0.0044141873, + 0.0035598285, + 0.0037734183, + 0.0047701704, + 0.0032750424, + 0.0014239314, + 0.0011391451, + 0.00049837603, + 0.0015663246, + 0.0019223074, + 0.0026342731, + 0.004342991, + 0.008614785, + 0.010252306, + 0.010964273, + 0.00747564, + 0.00498376, + 0.0, + 0.00028478628, + 0.00064076914, + 0.0009255554, + 0.003488632, + 0.010109914, + 0.019365467, + 0.031112902, + 0.034387946, + 0.023566065, + 7.119657e-05, + 0.0, + 0.00035598286, + 0.0012103417, + 0.002847863, + 0.010038717, + 0.028478628, + 0.056886062, + 0.076749906, + 0.059021957, + 0.0, + 0.0, + 0.0, + 0.00042717945, + 0.0009967521, + 0.0074044433, + 0.026769912, + 0.076465115, + 0.11277537, + 0.08999246, + 0.0, + 0.0, + 0.0, + 0.00021358972, + 0.00028478628, + 0.0038446148, + 0.018368715, + 0.054465376, + 0.09006366, + 0.07532597, + 0.00028478628, + 0.0007119657, + 0.0009255554, + 0.00035598286, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012815383, + 0.0022070936, + 0.0018511108, + 0.0011391451, + 0.00014239314, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0011391451, + 0.0022070936, + 0.0023494868, + 0.0014239314, + 0.00021358972, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0009255554, + 0.0017087178, + 0.0017087178, + 0.0007119657, + 0.0009967521, + 0.00042717945, + 0.00035598286, + 0.00021358972, + 7.119657e-05, + 7.119657e-05, + 0.00021358972, + 0.00049837603, + 0.0017799143, + 0.0013527349, + 0.0010679485, + 0.0009255554, + 0.0014239314, + 0.0013527349, + 0.0009255554, + 0.0008543589, + 0.00014239314, + 0.0007831623, + 0.0007119657, + 0.00064076914, + 0.0017087178, + 0.0034174356, + 0.0067636743, + 0.0069060675, + 0.0092555545, + 0.00519735, + 0.0, + 0.00014239314, + 7.119657e-05, + 0.00056957256, + 0.0018511108, + 0.005695726, + 0.0131713655, + 0.03154008, + 0.03780538, + 0.026129141, + 0.0, + 7.119657e-05, + 7.119657e-05, + 0.00035598286, + 0.0015663246, + 0.008116409, + 0.028905809, + 0.07582435, + 0.11612161, + 0.094976224, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 0.0007831623, + 0.007831623, + 0.0373782, + 0.11227699, + 0.18240562, + 0.14979759, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00049837603, + 0.0047701704, + 0.026698714, + 0.08849734, + 0.15342861, + 0.12559076, + 0.0, + 7.119657e-05, + 0.00021358972, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00028478628, + 0.00014239314, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00028478628, + 0.00014239314, + 0.00035598286, + 7.119657e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 7.119657e-05, + 0.00014239314, + 0.00021358972, + 0.00028478628, + 0.0, + 7.119657e-05, + 0.0, + 0.0, + 7.119657e-05, + 0.0, + 7.119657e-05, + 0.00021358972, + 0.00021358972, + 0.00014239314, + 0.00064076914, + 0.00042717945, + 0.00021358972, + 0.00049837603, + 0.00021358972, + 0.00014239314, + 0.0, + 0.0, + 7.119657e-05, + 0.00028478628, + 0.00014239314, + 0.00064076914, + 0.0019935041, + 0.0046989736, + 0.005624529, + 0.0046989736, + 0.0, + 7.119657e-05, + 7.119657e-05, + 0.00014239314, + 0.0007831623, + 0.0023494868, + 0.009184358, + 0.021074185, + 0.030187346, + 0.02349487, + 0.0, + 0.0, + 7.119657e-05, + 0.00014239314, + 0.00064076914, + 0.0046277773, + 0.020219827, + 0.058879565, + 0.09191477, + 0.0810217, + 0.0, + 0.0, + 7.119657e-05, + 7.119657e-05, + 0.00056957256, + 0.0052685463, + 0.029404184, + 0.09077563, + 0.15755801, + 0.13669741, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00056957256, + 0.0039870082, + 0.022355724, + 0.08244563, + 0.13456152, + 0.112917766 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.red.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.red.json index df0affddd..e41ea0a25 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.red.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.red.json @@ -214,7 +214,9 @@ "genres.concepts.label": [], "id": "fuc864rh", "sourceIdentifier.value": "B0008774", - "identifiers.value": ["B0008774"], + "identifiers.value": [ + "B0008774" + ], "images.id": [], "images.identifiers.value": [], "items.id": [], @@ -258,7 +260,9 @@ ] }, "filterableValues": { - "locations.license.id": ["cc-by"], + "locations.license.id": [ + "cc-by" + ], "source.contributors.agent.label": [ "Dr. Caroline Pope and William Parish, University of Bristol" ], @@ -278,1054 +282,5104 @@ "source.production.dates.range.from": [] }, "vectorValues": { - "features1": [ - -1.8456485, -2.228665, -0.48660833, -0.119767584, -0.24184561, - -1.9019227, -1.4380355, 0.3643936, -1.4040205, -0.40670422, 0.104245305, - -2.048909, -0.63785803, -0.90624464, 1.2861844, -1.5294143, -1.4627932, - -1.2167677, -0.8976744, 0.9528959, -0.6496759, -1.3150685, -0.8510154, - 0.3398299, 1.6377555, -0.73086214, -1.6358213, -0.0843119, -1.695989, - -0.36876312, -1.2185965, -2.5584388, -0.15092035, -0.35246864, - 0.38349912, -2.461673, -0.47677448, 1.0575212, 1.4904363, -0.41649595, - -1.4666846, -1.3857591, -1.8777469, -0.014812246, -1.2601136, - -1.8931285, 1.0742342, 1.2264094, -0.5412234, -1.7672623, -0.6547764, - -0.3233595, 2.010783, -1.956337, -1.7493823, -1.3824947, -0.5442848, - -0.81884545, -2.3863552, -0.8624943, -1.8276174, -0.27910945, - -0.9075712, 0.111040324, -1.290528, -1.3718964, -0.90760535, -2.0234208, - -1.5271534, -1.0928171, -0.43684497, 0.32499677, -0.32705972, - -0.98094565, 0.20620537, 0.72010887, -1.2121959, -1.2345159, 0.7590461, - -1.3948736, -0.7749731, -1.522112, -1.1001539, 1.547185, -2.5530725, - -1.6368992, 0.12197593, 2.94618, -0.76481843, -1.8885906, -1.8429217, - 0.08252221, -0.4720154, 0.2009597, -1.0790712, -0.03285778, -0.42715812, - -0.63153803, -0.4273461, -0.0815644, -1.2331591, 0.75404793, - -0.14869085, -0.8832555, -0.0039635263, -0.5149975, -0.3043869, - -0.037158005, 0.8623413, -1.6847659, -0.20190625, -1.309784, 0.786449, - 0.42387855, -2.104608, -1.9018887, -0.6733893, -2.4651034, -1.625148, - -1.9525319, 1.020319, -0.43012995, -1.9151388, 0.42452094, -2.5442262, - -0.3655829, -1.1096412, -2.0587182, -0.534716, 0.04282125, -0.7313634, - -0.5599335, -0.98995835, -1.0255188, -0.32840106, -0.08289629, - 1.0975707, -2.3179376, -1.6618742, -0.9980151, -1.0493524, -1.8884827, - -0.6980567, -0.4235385, -1.738652, -0.9260236, -1.2553229, -1.603571, - -0.4764787, 0.3369055, 0.23897918, 0.40187496, -0.29462308, 0.7491167, - 0.16991526, -1.158118, 0.06933748, -0.5994946, 0.38227153, -1.6662714, - -1.2104795, 0.17974278, -0.07015867, 0.3897432, -1.4636934, -1.297881, - -2.5128603, 0.0066554025, -1.0328873, -1.098076, -2.0276294, 0.31404054, - 0.72643846, -1.6442258, -1.0443631, -0.42750698, -0.6569777, -0.7038585, - 2.1661224, -1.7790164, -0.30195484, -0.18308312, -1.480837, -1.0457911, - -0.07810377, 0.70018905, -2.0823684, -2.1415684, -2.136779, -1.0560186, - 0.35773757, -0.30532616, 0.19435443, 0.4784546, -0.21304883, 0.5450632, - 1.3285923, 3.046993, 1.0129498, -0.21603984, -1.9116718, -0.34103274, - -0.9447046, -1.261517, -0.85862845, 0.054067723, -0.82138175, 1.0417892, - -1.0282738, -1.5071414, 0.4821356, -3.533526, -2.9202824, 0.27482575, - 0.3140753, -1.9348652, -0.8289044, 0.9815281, -0.20687538, 0.24384832, - -1.517238, 0.00844194, -0.57216936, -2.2622797, 0.9846261, -1.4393914, - -0.05490826, 0.9029313, -1.6255109, -2.511984, -1.1359432, -1.6987363, - -1.2808744, -1.2364001, -0.5752054, -0.72393656, -0.18537499, - 0.008390196, 0.03178889, -0.12685207, -0.029014044, -2.6809874, - 0.19722694, 0.5554108, -0.005578684, -1.7701975, -0.6512022, 0.46064058, - -2.3567188, -1.1884552, 1.1515081, 0.77643925, -0.113649406, -1.1515539, - -2.0637748, -0.42433122, 0.8462996, -1.2797775, -0.29208356, - 0.032180853, -2.5766504, -1.1792943, -0.45039248, 1.676958, -1.0588541, - -1.9938326, -0.94605654, -2.1740143, -0.0041112415, -0.16065665, - -0.59750015, -1.1862949, 0.9496081, -2.4652035, -1.0965174, -3.449947, - -2.4204838, -1.9689033, -1.2338023, -1.5291972, -0.9850715, -0.9482913, - -1.139042, -1.8174958, -0.04741031, -1.0656362, -0.37753457, - -0.61160696, -2.8475578, -0.047136035, -0.63703245, -1.5074751, - -0.07785013, 0.7813093, -2.514581, 0.07871033, -1.3493822, -0.6254506, - -0.01668181, -0.97840285, -2.1133504, -0.9421083, -1.6011463, 0.8869489, - -1.267532, -1.8973793, -0.049026646, 0.34034258, -0.80813897, - -0.062025025, 1.6326814, -1.4136721, 0.71782124, -0.9496636, 0.3408116, - -1.3152022, -0.036812488, -1.4703176, -1.6868868, 0.8601366, 0.43413365, - -0.5546512, -0.31226406, 1.0522802, -0.95546347, -3.51288, 1.2668735, - 0.27082002, 0.30713862, -0.7003652, 0.109413415, -1.3039434, 0.86276484, - -0.6162603, -0.15694419, 0.34765878, -0.38384104, -0.99599415, - -0.6459053, -2.199226, -1.5996408, -0.04603851, -1.7907441, -0.66747123, - -1.2097497, -0.07053652, -0.08357383, -1.1241281, -0.16842988, - -1.3146763, -2.6199355, 0.70215833, 1.4845306, 0.4732419, 1.4644266, - -1.2984965, -0.8317675, -0.9904004, -1.2113303, -1.1962874, -1.183289, - 0.25628847, -0.8514933, -2.5762057, 0.088319026, 0.7126059, 0.41658962, - 0.8063036, -2.9370267, 0.83922744, -0.37486383, 0.106003895, -0.2678447, - 0.11454995, 1.2346226, -2.4239297, 0.16548043, -1.5693825, -1.1046512, - -1.6255221, -0.4785269, 1.8098037, 1.1885569, -1.1221975, 0.7706897, - 0.32497767, -0.9331767, 0.96242297, -0.8877538, 0.45594433, 1.4436839, - -1.5720762, -0.15581971, -0.7794214, 0.23116991, -0.4575661, 0.17811385, - 2.7616873, -1.5960363, -0.60230744, 0.17884836, -0.902985, -0.90799266, - 0.101356626, -1.3247029, 1.0903939, -0.40050086, -2.5132096, -0.5374605, - -0.84090805, 0.59143746, -1.6582022, -1.3865914, 0.5934326, 0.37919793, - 0.0557663, 0.20881553, -1.6484187, -1.1784272, 0.5351513, -0.9519993, - -1.4417087, -0.7699874, -0.5175336, -0.27994725, 0.1741485, -1.4608445, - -0.08855415, 0.048034225, -0.116962284, 0.97515404, 0.6924126, - -1.8890498, 0.22301888, 2.139649, -0.17322204, -1.3957174, -2.1678367, - -0.13744661, 1.1665344, 1.2211586, -2.7044141, -1.0717902, -0.15297574, - -1.1096569, -1.0537435, 0.54318416, 0.8792119, 0.283518, -0.32360882, - -0.06619838, -0.881015, -1.1145633, -0.2510672, 0.10324289, -0.68505096, - 1.3206135, -1.2968651, -1.8787174, -1.4888294, -0.86316717, 1.2009645, - -1.095598, -0.6239112, -0.42117542, 0.3826908, -0.4527908, -2.0548768, - -2.7842681, 1.3364924, -0.66750443, -0.87105876, 1.5818313, -0.39301264, - -1.0607907, -1.0965399, -0.22038473, 0.6422988, -0.5253426, -0.7181734, - -1.5580218, -1.2180195, -0.64400655, 2.0699365, 1.0779548, -2.0536077, - -0.3742332, 1.873821e-5, 0.33449465, 0.051719975, -0.11379546, - 0.34006876, -2.1337523, -1.9572308, -0.5575734, -1.4035208, -0.425717, - -0.13559677, -0.5282743, -1.2576547, -0.631691, 0.47675738, -1.5299852, - -1.1452358, 0.6779173, -1.9682618, -0.8387055, 0.7290721, -0.67395175, - 0.6362977, -0.7620092, -1.784415, -0.58272016, -0.90133107, -1.0434617, - -1.7865855, -1.4033166, -1.5779235, -0.72672343, 0.45100114, -1.266355, - 0.40683022, 0.28739262, -1.2973124, -0.12401409, 0.042406887, - -0.64303714, 0.71516305, -0.4203833, -1.5554245, -1.2811033, -2.891317, - -2.12653, -0.9796621, -1.7942077, -0.27052718, -0.8498187, 0.4310319, - -1.5964079, -0.44173044, -0.3155262, 0.41818982, 1.0823771, -1.1600527, - 0.73835677, 1.3451424, 0.580462, 0.70917547, -0.83149666, -0.7090564, - -0.48291978, -0.8666159, 0.9050527, 0.91727364, -0.8990242, -0.6345425, - -0.6137431, 1.503261, 1.5758513, -0.87021315, 0.5785997, -0.99102974, - 0.7784476, -0.36676848, -0.27507585, 2.7459207, -1.4486604, -0.97999316, - -1.0483247, -1.0154884, -0.1261987, 0.2357414, -0.0059454255, - -0.2583097, -2.1084394, -0.8303363, -1.003425, -0.97102845, -1.1549991, - 0.07968499, 1.8854718, -1.4638319, 0.49665707, -1.1970176, -1.4191107, - -0.52050644, 0.37986374, 1.5301585, 0.3588249, 0.29533866, 0.08785565, - -0.47053254, -1.2397794, -0.10763265, -1.5437136, 0.5242265, -0.7335237, - -0.3279024, -0.2207461, 0.93505794, -3.010323, 0.5815089, -0.0021003745, - -1.903917, 0.8604127, -0.3842993, -2.0069559, -0.3591551, 0.75366634, - -0.036456324, 0.949127, -0.46525437, -0.75082815, -1.6454813, - 0.60603994, -0.73803645, -0.2211436, -0.6995208, -0.28438497, 2.549824, - -1.5950541, -0.4977723, -1.2998372, 0.57925683, -0.44794744, -1.236255, - -2.0095618, -2.3089936, 1.0413258, -0.24542132, -0.903695, -0.3524283, - -1.7331221, -0.2994157, -1.7511281, -0.13908868, -0.40812194, - -0.7714353, 0.7395822, -0.6370866, -1.2834475, -0.18639813, -0.82566565, - -1.9440851, 0.4812773, 0.8780264, -0.77261895, 1.025407, -0.3458876, - -0.5917453, 1.4695984, -0.85996497, -2.1356814, -0.1708618, 0.2951567, - 0.93293524, -0.4036795, -2.0687904, -0.4027232, 0.41922835, -1.7265114, - -0.70749366, -2.4114475, 1.1528114, -0.56679237, -1.3285435, 2.1436586, - -1.3311195, -0.94420195, 1.1326388, -0.82495695, 0.31243652, 0.17543812, - -0.44647723, -0.15492848, -0.18833476, -1.5128002, -2.7157226, - -2.9189754, 2.057689, -0.52086204, -0.85513985, 0.049420245, -0.8483544, - 1.3821758, -0.8270574, -2.0090406, -0.24052536, -1.3194605, -1.0148356, - -0.30492213, 0.79839474, -2.1720665, -1.3378892, -2.8553236, 1.0169394, - -0.013690621, -0.16855933, 0.08035828, -1.009346, -1.9954652, - -2.2380953, 0.9841543, 0.09598213, 0.76878935, -0.53824127, 0.15471005, - 0.2147603, -0.62790424, 0.27013743, 0.112642825, 0.090664685, - -0.69146293, -1.0572898, -0.69459826, -0.76981544, -0.64039767, - -0.51311797, -0.29617444, 0.1574939, 1.1172097, -0.048336398, - -1.5964326, -0.6151808, -1.1326864, -0.72179985, -2.1835327, -0.187202, - -2.5541406, -0.93470955, -0.4451717, -0.6304771, 0.0034201331, - -0.7305825, -0.6947189, -2.6699023, -0.06211118, -1.4985439, 0.1806962, - -1.52622, -1.4296238, 1.183979, -0.96880627, -0.72639793, -0.009481013, - -1.2397739, -1.5649375, -1.2965007, -1.1298813, -0.07254455, 2.2251205, - -0.78451556, -1.799829, -1.6409705, -0.8566922, 1.0634626, -1.4083426, - -0.6790837, -1.3162274, -1.4981799, -2.2689853, -1.8031609, 0.22037987, - -0.31812295, -0.9492681, -1.2658921, 0.41894358, 0.58605105, 0.11583888, - 0.6298832, -0.5130426, -1.319225, -0.59402543, -0.28133115, -1.451501, - -0.7546623, -2.5089595, -1.2570906, -0.9871897, -1.2978183, -0.6587137, - 2.1435032, 0.32654893, -1.2736293, -1.7413001, -1.5967996, -1.5247402, - -0.41710743, 1.3256693, 0.12806012, 1.4281899, 0.1567818, -1.1720325, - -1.3406028, 0.003133824, -1.6520557, -1.4453652, -0.43380392, - -1.5238537, 0.06956145, -1.1664414, -1.2521349, -1.1519924, -2.2251277, - 0.81563336, 3.2015266, -0.8580526, 0.850702, 0.06461029, -0.67289454, - 1.0603565, -1.3816053, -0.14023945, 0.03987913, 1.191151, 0.68641937, - -2.6746044, 0.4006375, -1.0772759, 0.2656581, 1.3288969, -0.9146696, - -0.2685887, -0.79994226, -0.54525375, -0.4505102, -0.8247546, - -0.60662997, -1.0343896, -2.7109327, -1.0203196, -0.981544, -1.2210716, - -1.1121676, 2.4483924, -1.4023362, -1.1834399, -0.1508124, -0.18796302, - -0.054339193, 0.8848155, -0.6265955, -1.1427922, -1.440833, -1.0128214, - -0.40339696, -1.2275039, -1.1191517, -0.09065888, -0.30588996, - -0.07008897, -1.855745, 1.5169711, -0.38185257, -2.221092, 0.6510843, - 0.11818316, -0.30911842, -0.44646326, -0.10482976, -1.5558252, - -0.11349934, -1.9067156, 0.38782933, -0.4023082, 0.75806355, - -0.0039906874, -1.2299122, -1.1073302, -1.1738628, -0.5028531, - 0.57326823, -1.7770854, -1.6580412, -3.463199, -0.91634464, -0.03286525, - -1.576849, -2.326628, 0.3274814, 0.09343758, -1.1045882, -0.44819197, - -0.9915517, -1.4232087, -1.4433709, -0.66117066, 0.9684922, -0.4152817, - 0.83074087, 0.25509882, 0.12377058, -1.4823843, -1.100101, -1.882885, - -0.5823112, -1.7388155, -0.43351543, 0.65943575, -0.6095456, -1.0168582, - -0.91914344, -0.19392234, -1.7076749, -1.01186, -0.21801946, - -0.64597106, -0.24808697, -0.088160336, 0.26602727, -1.8173488, - 2.0775094, -0.7962764, -0.80819476, -0.52707773, -0.64753735, - -0.6270575, 0.60132957, 0.7114562, 1.4863527, -0.7047556, 0.08413252, - -0.7155691, -0.3815671, -1.791203, -1.757483, -0.9854019, -0.4660777, - -1.6533974, 0.5315706, -1.3908387, -0.7758524, 1.8449011, 0.084673926, - -2.1330316, -0.3102517, -2.2783484, 0.6021359, -0.83913815, -0.8747232, - -1.1968713, -1.2937399, -0.42021215, -0.58226115, -2.7059662, 0.636151, - 2.5707657, -1.5621293, -2.0833955, 0.71643436, -0.45027843, -2.7098753, - -2.5924177, -1.7853873, -1.447574, -0.64320344, -0.01803742, 0.3149962, - -0.84701777, 0.18767399, -1.2196517, -1.9243568, 0.5652488, 0.9362994, - -0.74440885, 1.6092466, -2.7433193, 1.1752359, 0.5680798, -1.5334508, - -1.7781669, -2.037412, -1.3498616, 1.6107819, -0.34340274, -1.2043097, - 0.39704418, 0.24314223, 0.017222889, -0.08409784, 0.1002436, 0.57631606, - -0.79156667, -1.1654358, 1.1845901, -1.1348308, 0.7324229, -0.97375387, - -0.62226844, 0.5322096, -1.2298976, -0.23261286, -0.9356785, -2.1817594, - 0.53463036, -0.70017534, -0.4847998, 0.26107526, 0.5213511, -0.32973206, - 0.4051901, -1.8680549, 0.52975726, -1.2652915, 0.066414654, 0.99305695, - -2.232302, -2.4631011, -2.415475, -0.044030186, -0.35239425, -1.0505542, - -2.2342002, -1.196129, -0.82391185, -0.9666728, -2.281259, -1.0147367, - 0.15398979, -1.2622277, -1.2374617, 0.36960882, 0.56140554, 0.47665268, - -0.8481891, 1.4498423, -1.5854324, -1.6909676, -0.53627867, -1.6203525, - -0.26147145, 0.0655311, 0.48314315, 2.4727166, 0.46320304, -0.59848213, - -2.2502828, -1.4756887, 0.28073108, -1.6086152, -0.37777632, 0.6292344, - -0.5604886, -0.55934477, 0.30551827, -0.49393523, 0.6588449, 0.79400885, - -1.7394038, 0.52265304, -0.612329, -1.2597647, -1.800978, 0.20644724, - 0.5485543, -0.7160049, -1.5123314, 0.42125234, 1.3775142, 0.40008608, - 0.46048868, -1.4264653, 0.1936121, -1.3175281, -1.4400847, 0.9972955, - -0.29809698, -1.1943004, 0.1609977, 0.042070393, -1.7762076, - -0.48991483, -0.7592744, -0.52363, -1.4458513, 0.2790608, -0.8495106, - 2.017316, -0.57897276, 2.5246673, 0.37606362, -2.2989547, -0.45007375, - -1.8361111, -0.8269908, 0.11199092, -1.6214215, -0.2187787, - -0.030144144, 0.22744226, -2.11359, 0.14221707, -2.6441715, -1.2796261, - -1.3573523, 0.2689703, -1.9501415, -1.7450442, -1.753876, -0.13663611, - -0.129217, 0.258618, -0.38185638, -1.9024945, 2.0506608, -1.7696159, - -0.83803207, 0.20070958, 0.81646276, -2.3689122, -0.840852, 0.15384912, - -0.934372, -2.089331, -1.206581, -0.85524994, 0.29549274, 0.27610916, - 0.2015756, 0.76879877, -0.8062282, 1.8716244, 0.31915265, -0.25397727, - 0.019606903, -0.27597567, -0.22467631, -0.8840004, -1.5233092, - -0.4640694, -0.19399737, -2.015829, -0.3939775, -0.63181114, - -0.93103707, 2.2213867, -0.016248528, -1.9137802, -0.102270395, - -2.7297964, -1.470989, -0.05057328, 1.7523837, -0.26033872, -1.2780186, - 0.42380184, 0.12484211, -0.74604535, -0.9658866, -1.4359784, - -0.56508654, -1.1696148, -1.615861, -2.0555198, 0.2149963, 0.6667588, - -2.051408, -1.0594721, -2.4927056, -1.7934355, -0.7677651, -1.2935112, - 0.23049188, -1.0745153, -0.6619833, 1.6511599, -0.13921994, -0.9857218, - 0.4396415, -1.9055257, -0.3957749, 0.8632706, -1.3443449, -2.064506, - -0.9199563, -1.9830006, -1.9450477, -3.1563773, -2.3331149, -1.9900589, - 1.1510177, -1.6622756, -2.4654691, -1.8069575, 0.017693643, 0.436449, - -0.046631366, 0.8121915, 1.0912775, 0.19956368, -1.1350683, 0.19216874, - -0.28942645, 1.5534037, 0.018224284, -1.6805298, -2.0292335, -2.5777605, - -2.2853954, -1.3759336, 0.7579458, 0.6369463, -3.0414858, 1.5328729, - -0.04192813, -1.0726213, 0.33736843, -0.93132645, -2.1232378, 0.6761284, - -1.7008686, -0.42177823, -0.20066787, -0.94449866, 0.30336648, - 0.55153185, 0.46927527, -0.48548123, -1.0937607, -0.41630957, - -0.82376844, -1.351369, 0.25306082, 0.33717096, 0.62109375, -1.1543052, - -0.7640396, 2.7228174, -0.40297115, 0.80279946, -0.84421057, -1.6200958, - -1.6898817, -1.7313663, -0.0400304, -1.3518895, -1.116139, 0.87302446, - 0.09211926, -1.7786396, -1.3430419, 0.2480258, -2.293453, -2.4070861, - -0.085910425, 0.9085152, 0.66252315, 0.23279469, 0.1381576, -1.9386268, - -0.13809338, 0.73954916, 0.35222173, 0.13752832, -0.59391975, 0.4209735, - -2.371336, -0.6330803, -0.463296, 1.0796674, -0.362156, -0.13256188, - -1.0847687, -1.8194094, -0.20990127, -0.9357861, -0.63539547, - -0.45049626, 0.08965038, 0.4852258, 0.76949555, -1.8594626, -2.1969924, - -0.7790625, 0.104097866, -1.3412406, -1.8879881, -0.85834265, 1.3878818, - -0.91208905, -0.062482424, 0.019188069, 0.39672512, -1.7395879, - 1.1407441, -2.39576, -1.132348, -0.6515321, -0.03480554, -1.0085949, - 1.2388586, -0.86603516, 1.5083948, -0.28051028, -0.6186652, -0.31435117, - 0.2876891, -1.2611274, -0.40005898, 0.23007667, -0.59748536, - -0.72524786, -1.2014025, 0.7495365, -0.5829792, 1.709832, -0.30414054, - 0.43808043, -0.2628331, -2.0369675, -0.26227784, 0.13217932, -1.8505447, - -1.190887, -1.6070743, -0.6176497, 0.5966516, -0.068589464, -0.7997773, - -2.1494217, -1.7253973, -1.1533129, -1.5333946, -0.0951416, 0.35838586, - 0.5751941, 1.117522, 0.48065037, -1.27679, -0.028399974, -1.3821831, - 1.1371526, -0.4481411, -1.8866831, -0.9961902, -1.16809, -0.69542325, - -0.33568728, -0.77555823, -2.072172, -1.1105264, -0.07312553, - -1.0723803, -0.16398391, -1.7323052, 0.085516006, -0.9664287, - -2.0126214, -0.6887458, -0.21817173, -0.7933538, -1.0652016, -1.8708072, - 1.3438754, -1.7991303, -0.8715774, -0.21319285, -1.7798502, -0.64139545, - -1.3536853, 0.10539365, -1.4260381, -0.356032, 0.50022966, 0.28913197, - 0.0918721, -0.161558, -0.81428456, -0.3716512, 0.13950096, 0.79774994, - 1.0098133, 0.064150825, 1.083054, -0.36621818, 0.3300959, 0.90144354, - -1.8694893, 0.44066262, 0.35264313, 0.18443346, -1.5357327, 0.24157101, - -0.8188627, 2.0751421, -0.43043342, -1.0034069, -1.5031222, -1.1035482, - 1.1727718, -0.63316345, -1.401504, -0.40208253, -1.003122, 1.7568804, - -1.0334955, -2.0841846, -0.22479722, 0.11037034, -0.24170148, - -1.0831654, 0.03301356, -1.3876368, 1.8826311, 0.49322933, -0.07281537, - -0.75069004, -0.23004432, 0.32208285, -0.95656765, -1.048643, - -1.9188801, 0.101280294, -0.30610782, -1.7364426, 1.3702974, 0.3044415, - 0.030188449, -0.17005278, 0.63659185, -0.11291081, 0.19193503, - -2.8763895, -2.5025315, -2.3107872, 0.8226317, -1.0542902, -1.1644582, - -2.8878527, -0.47945362, -0.8069589, -1.0195647, -1.2887731, 0.2876351, - -0.30086052, 1.6441472, 0.738026, 0.18896388, -1.6694437, 0.2334961, - -0.9464483, -0.32740122, 0.73662025, -0.084561184, -1.6626414, - -0.8026294, 1.2604342, -1.4919494, -0.6478907, -1.7845377, -0.39876246, - 0.08671091, -0.71049255, 0.6990412, 1.7806948, -1.2695721, -1.8009362, - -1.0586355, -1.5824121, -0.36069238, -0.13641721, -1.3088129, - 0.031147752, -1.6211574, -0.3289163, -0.5691013, -0.18820667, - -1.5950894, -0.4081279, -0.45258698, 0.23608725, 1.2402064, -0.13540512, - -1.445907, -0.95999914, -1.7831241, -0.009976003, -1.0196326, - 0.43631226, 0.92961323, -0.14892617, -1.137203, -0.17214386, 1.3551724, - 0.53472924, -2.28893, -0.6883359, -2.062944, -0.65263915, -0.113756955, - -0.21493739, -1.55037, -1.6150489, -2.464854, 0.099773414, -1.7328893, - -1.6972017, 0.016538858, 0.41972965, -1.6370803, 0.93649036, -1.5682118, - 0.4039619, -0.40341595, 0.6223588, 0.39397365, -1.066791, -0.40258285, - -0.1343647, -1.8680089, -0.08180915, -0.38751754, 2.0491674, -1.9473162, - -1.630737, 1.538465, -2.2523422, -2.0344164, -0.22227675, -1.0581983, - 0.66328526, -1.5870365, -0.9708243, -0.9420517, 0.9260016, 0.06882484, - -1.472576, 0.6241503, -0.2306999, -0.38164052, -1.4346828, -1.1564206, - -0.29801318, -0.8178521, -0.9151463, -0.51305324, -1.1055835, - -0.9466187, 0.2731867, -0.31508556, -0.6855543, 0.81708103, -0.853836, - -3.0095923, -1.64581, -0.69478005, -1.0645925, -0.59443516, 0.6131204, - -0.6384362, -1.4301803, -1.4550525, 0.15438634, -0.62896, -0.9870525, - -0.46557397, -0.13087621, -0.5126075, -1.3328062, 0.3198089, -1.7583528, - -1.2115268, -1.5207565, -0.6126359, -0.45344722, 0.73034817, -0.9155845, - -0.21836601, -1.0763485, -0.94501805, -0.7551166, -2.959869, -1.0391744, - -1.3694367, -2.0719721, -1.9543121, -0.680517, -0.518247, -1.9215935, - 0.8859847, -0.84907997, -1.2686657, -0.12709115, -0.5745202, -1.5461156, - -1.2958901, -2.0533264, 0.27418128, -1.9468856, 0.6146875, -3.2392292, - -0.51297146, -0.15777564, 0.576141, -0.5489036, 0.21598126, -3.0945518, - -0.8317842, 0.16897245, -0.2448979, -0.9057677, -0.0021028072, - -0.018088423, -0.7399128, -0.20478468, -1.1604112, -0.17174932, - -0.38081223, -1.5574267, -1.6786332, -1.858651, -0.29646537, -0.9108309, - -0.5407551, 0.5083163, -1.4921933, -0.66699034, -1.4908849, - -0.025549624, -0.6924253, -0.15717342, -1.7675543, -1.2019376, - 0.08324344, -2.0593443, -0.15581632, -1.1578729, 0.34962282, -1.1510131, - 0.08811735, -0.2767585, 0.24131085, -1.0431272, -0.26091284, - -0.53126764, 0.89715886, 1.3944782, -1.1798782, -1.1292909, -0.6768872, - -0.80160177, -3.1491249, 0.004156582, 2.1931121, -0.21962987, - -0.23686875, -0.9889341, 1.3486052, -1.4194458, 0.40580803, 0.29237542, - -1.4258534, -0.38647953, -1.9302505, 0.6226082, 0.10156759, -0.34090045, - -2.7980072, -0.48151016, -0.9299399, -0.2639396, 0.21080007, - -0.12346943, -0.14635544, -0.67104095, 1.4631573, -0.6383736, - -1.5948421, 0.07926622, -0.77871907, -1.9015923, -1.6200683, - -0.14239162, -1.767568, 0.23483399, -1.090821, 1.3122771, 0.27035463, - -0.0689151, -1.7337525, -1.2919419, -1.0577942, 1.9440616, -1.0670549, - 0.8417538, -2.8856595, -0.93283445, -1.4180949, -2.3214202, - -0.044834066, 0.62564576, -0.054409496, 0.9870818, 0.675737, -2.1918662, - -0.809948, 1.4573369, -0.9658355, 0.5223169, -1.7272218, -0.025925301, - 0.859191, 0.34478283, -0.07751262, -1.2967068, -3.7087626, -1.0550085, - -1.0525929, -1.1691102, -0.47549227, -2.567158, 0.3910557, 0.42593792, - -0.25535753, -0.10322158, -0.91724753, -0.35376522, -0.7860852, - 0.06295957, -0.43221608, -0.033862695, -1.5991988, -0.9197423, - -2.188626, -2.2582343, 1.170548, 1.6617414, -0.52031827, -0.019013263, - -1.8676395, -0.27681154, -1.1923519, 1.0380287, 0.2910102, -0.13667734, - 0.18501581, -0.7634988, -1.7349808, -1.1693784, -1.4021732, -0.5407798, - 0.31141254, 1.070724, -1.5709323, -1.2866995, -2.3409274, 0.4892183, - -0.75576234, -0.26753744, -0.81285393, 0.7963708, -0.5554024, - 0.58093107, 1.4177554, -0.4186043, 1.4054067, -0.33552423, -0.47784528, - -0.54190075, -0.17064199, -0.96331435, 0.03868584, -0.108320706, - -1.1448622, -0.11799604, -2.402934, -0.38809344, -1.2378503, - -0.88973707, -0.22804691, -2.5947216, 0.16573559, -0.4343392, - -1.7564745, 1.365092, -0.52401453, -1.3197118, -1.2952223, 0.38528773, - 0.21213049, -0.3503066, 0.36483285, 0.4121575, -0.46279097, -0.9054249, - 0.86623716, -0.2842698, -1.5392343, -0.8199219, -0.21651171, 0.64134455, - -0.06169303, -0.46133843, 0.26400244, -1.2953109, -0.065142706, - 0.64060843, -0.7214656, -1.3473876, -1.2589778, -0.15272814, 0.06061986, - -0.88634175, -0.19040786, 0.034016427, -1.5102097, -1.1856656, - -0.41888565, 0.5234717, 0.75512344, -0.97920763, 0.9648754, -1.207639, - -1.627872, 0.45626333, 1.4446325, -1.3456907, -0.8656003, -0.62086105, - 0.8194181, -0.22576219, -0.38814282, -2.0717173, 0.31001538, -1.407906, - 0.58169216, -0.066669345, -1.657922, -0.6617801, -2.778334, -1.1841418, - -2.117822, 2.0934486, 0.93929595, -1.3379837, -1.2803735, -0.9933632, - -0.74191946, -1.573224, -1.2574917, 0.015370797, -1.5749747, 1.0533893, - -0.6579784, 1.371275, -0.67352515, -0.68271935, 0.49104655, -0.4611692, - -0.038638063, -1.1081948, 0.104830906, -1.2577727, -0.37588692, - -0.538193, 0.549932, -2.531916, -0.40853125, -0.17002438, -0.5744007, - -1.4102165, -1.4158049, 0.4603226, -1.6635102, -0.8001043, -0.5828321, - -0.21117525, 0.07476926, 1.9398836, -0.6033504, -0.8315759, -0.8524928, - -1.3333423, -1.5150675, -0.32330963, -0.02143773, -1.4423773, -0.394382, - -2.448166, -1.812187, -1.5982429, -0.19614764, 0.023785993, 0.6084233, - -0.17480667, 0.56830186, -0.43039814, 0.82283527, -1.0341431, -2.941986, - -1.1089405, -1.5709777, -0.5983659, -0.97845894, 2.15892, 0.39378583, - -0.41231233, -1.2245516, 0.68486583, -0.39842963, -0.3213606, 1.0636315, - 1.0594718, -0.108050674, -0.59241605, -0.2273266, -1.4751912, - -0.5200544, -0.469924, 0.06027414, 0.5135758, -0.47178632, -0.7374568, - 0.81304616, -0.7485378, -0.5035919, -1.6719836, -0.4906483, 0.662445, - -1.1049159, -0.31450444, 0.013727553, -0.4165488, -2.5033016, - -0.33102718, 0.4763228, -0.9961161, -0.9933849, 0.21867009, -1.4180858, - -0.12533733, -0.75411063, 0.3109027, -0.72611934, -0.09838633, - -1.9221632, -1.5778557, -2.3300428, 1.0255836, -1.1301073, -0.12946992, - -2.1082222, 1.0993161, -0.80413395, 0.09665485, -1.7676023, -1.2878447, - -0.11726405, -1.8626326, -1.3888758, -1.6689556, -0.5275501, -1.1305522, - -1.0773008, -1.5211049, -0.14731684, -1.0809238, -0.40519652, - 0.116500355, -0.57939065, -1.4847254, -1.5844703, -2.510292, 0.49261183, - 0.7091911, 0.008880172, -0.7016094, 1.0039462, 0.16685413, -1.107673, - 0.16595857, -1.6132629, -0.83013874, -1.3994488, -1.062064, - -0.006141003, -1.2975945, -2.2382672, -0.0049453005, 1.1276226, - -1.119669, -1.7328582, 0.10523203, -2.5645864, -2.2121987, -1.654204, - -0.81898993, 1.599444, -1.8863415, 0.5841317, 1.1050628, -1.4683172, - -1.0984206, -1.3846779, -1.0845577, -0.62035435, -0.47101152, - -0.7603936, -1.5607673, -0.47036925, 0.42984998, -0.90170795, - -0.67570585, -1.2183566, -1.6985271, -0.7388947, -0.09493734, - -0.45084077, -1.1043172, -2.3167272, -0.24840109, 0.40393215, - -0.43075833, 1.1608394, -0.77361053, -0.9188734, 0.24874523, -0.3030992, - -0.07816316, -1.4132255, 2.1287694, -2.135272, -1.859331, -1.7731024, - -0.30880135, -1.971171, -1.208759, -0.19375098, -0.19995032, - 0.014570521, 0.35992354, 0.47737876, -1.2130319, -2.1104949, - -0.86798424, -1.2426682, -1.4056311, -1.2358669, 0.107184805, - 0.108106665, -0.8793906, -1.070935, -1.1750903, 0.19772956, -2.0706856, - 0.6737182, 0.6179192, -0.17342454 - ], - "features2": [ - -0.6001202, -0.10311509, -0.89183384, -0.90751916, 0.7686363, - -1.2982161, -1.2031666, 0.14403994, -1.2951903, -0.4150765, 0.24956311, - -0.15442352, -2.4316497, -0.36881787, -1.7893823, -0.65845364, - -2.2338328, -0.7550401, -0.020110313, -1.7300078, -0.60905695, - -2.610848, -0.86816, -0.4952885, 0.10302191, -0.19086376, 0.85630494, - -0.03176766, -0.50296944, -0.5730728, 0.49763337, -0.24669814, 1.18542, - -1.6118096, -0.4398294, -0.83732426, -0.6926944, -1.8152565, -0.7662672, - -0.58618706, -0.31405896, 0.47220904, -0.7122065, -1.0202243, - -1.8933498, -0.40653557, -2.705328, 0.57599175, -0.6041929, -0.45589513, - -0.62973, -0.1863912, -0.680365, 0.45468053, -1.2991521, 0.4380808, - -1.7857962, -0.22287099, -2.0422132, -1.3021473, 1.478047, -1.4171708, - -0.06594966, -1.5348302, -0.8725478, 0.6009196, 2.013364, 0.14469638, - -0.9355141, 0.23191808, -2.4518898, -1.936674, -1.8778756, 0.6487836, - -1.9797736, -0.9050804, 0.5453786, -0.43361115, -1.7906922, 0.5878897, - -1.34011, 0.04226903, -1.2158034, -0.20597555, -2.6033576, -0.6982616, - -3.4014091, -0.6357272, -0.74378115, -1.8465495, -1.8180445, -0.9022064, - -0.5027971, -0.034805827, -1.0204253, 0.24916233, 0.5458934, - -0.69820833, 0.402149, 0.27750418, -0.46448296, -1.1224844, -0.45790657, - 2.199227, 0.39669195, -0.007681176, -0.9547793, -0.73133135, 1.3577749, - 0.07916364, -2.984038, 0.2945906, -0.7115393, 0.6462112, -0.6597256, - 2.425117, -1.1010411, 1.6002771, -0.6256671, -0.49177998, -0.9987761, - 0.3775023, -1.3672422, -1.5901293, -0.011345156, 0.8668751, -0.76353204, - 0.5310911, -1.0905966, 1.6019922, -0.681022, 0.1843028, 0.62824583, - 0.19252434, -0.84322125, 1.3351822, -0.7234292, -1.0671966, -0.9776052, - -0.12258831, 0.5635723, -0.03638074, -0.18370801, 0.63853276, - -0.9816904, -1.3518164, -1.8896031, -1.1921939, 0.11386026, -0.7273229, - -1.1626508, 0.47157633, -0.7067945, 0.13789703, -1.0568243, 0.5021192, - -2.1817274, -2.099843, 1.1016244, 1.2571062, -0.368689, -0.74319303, - -1.79665, -1.1029468, -1.1611037, -0.8142682, -0.32139271, -0.39797202, - 1.9320126, 0.68303275, -0.6203109, 0.30172718, 1.7114431, 1.557839, - -0.9241645, -0.37329185, -1.7530396, -1.3420534, -0.73626494, - -1.0714803, -0.62052476, 0.20803605, 1.1089817, 0.166192, 0.29969507, - 0.38380733, 0.82047564, -2.388635, -0.6569378, -1.2418581, -0.17526613, - -0.38693735, -0.6775479, -0.80715233, -0.19768701, -1.0780846, - -1.0224746, -0.73606867, -1.2325711, 0.60293293, -1.4868902, 0.59873086, - 0.13175218, -1.1930962, -0.3090725, -2.506659, -0.587396, -3.3786356, - -0.44433248, 0.27668953, 0.11618984, -1.1843376, -1.6596948, 0.13270277, - -1.086562, -0.85158974, -0.18988435, -1.5912039, -0.47751132, - -0.39349923, 0.6778677, 1.0949554, 0.33909684, -1.245801, -2.5497575, - 0.5614765, 0.46753114, -0.61480314, -1.2455533, -0.20098132, - -0.73221713, -0.66927904, 1.1249375, -0.17726423, 0.20762905, - -0.21586165, -0.8996932, -1.597736, -1.7292755, 0.61659765, -0.5320198, - 1.6154059, -1.0776298, 0.05514195, -1.6861839, -0.2534115, -0.5035944, - -0.29862, -0.40482596, -0.34522793, 0.8236846, 0.23685043, -3.2718935, - -0.729283, -1.1813475, -0.4261861, -0.68213695, -1.3844359, 0.65890396, - -1.9264078, -2.0158043, 0.027154908, 0.9382569, -1.8168155, -1.4886249, - 0.84178495, -2.1453602, -0.43989038, -0.919966, 0.29000655, 1.462232, - -1.0620716, -1.6355191, 1.2372471, -0.9610899, -0.6287349, -1.4548409, - 2.4563673, 0.015306106, -0.16983335, -0.3915857, -1.2833258, 0.55008614, - 0.3537713, -0.08767903, -1.8349935, -0.73269933, -1.5653514, -1.5126157, - -3.1597757, -0.6512555, -1.2016722, -2.3131056, 2.0858917, -2.443913, - -1.1650733, -0.24315308, 0.738408, -1.7506802, 1.508869, -0.24128222, - -0.22965886, -0.24938625, -1.0241742, 0.44060487, -1.3534834, - -1.3917623, -0.8966337, 1.9463006, -1.4738549, -1.1143608, 0.42257774, - 1.1851984, 0.15707618, -0.8659159, -1.5812413, -0.22237846, -1.077234, - -0.13009235, 0.32909983, -0.65961355, 0.47071847, -0.09096823, - -0.84773165, -1.340472, -0.8786677, -2.2356033, 0.15109903, -0.2756487, - -1.463653, 0.041372538, 0.79350054, -1.575573, -0.48446435, -1.0111215, - -0.22478151, -1.2660342, 0.10361165, 1.0360044, -1.6002492, 1.1164806, - -1.397503, -1.8489969, -1.6349965, -1.5107859, 0.17971912, -1.122856, - -0.7668635, -0.8928737, -2.1348083, 0.9948462, -0.28028062, 0.14112836, - -0.23161829, -0.12818775, 0.29462743, -0.8429036, -0.023614362, - 1.0510899, -1.0985825, -0.96095985, 0.18608327, 1.5871385, -0.67820734, - -1.5635861, -0.44827116, -0.90734935, 0.11673391, -1.0836207, - -3.0543656, -0.25165161, -2.0444431, -1.9182594, -2.1043398, -0.8157603, - -0.8654496, -2.5590863, -0.20106146, -1.1671944, -2.6285772, -2.225893, - 0.18933688, 0.3573732, 1.5393103, -0.11174777, -0.7657792, 0.11168735, - -2.1289291, 0.25361913, -1.4775528, -1.0696776, -1.3389274, 0.42562377, - 1.3351834, -1.2176795, -0.6543987, -0.16476013, -0.86155725, -1.0898384, - -0.61717147, 1.3155012, 0.14749545, -2.7761471, -2.4049058, 0.9994659, - -1.3184782, 0.18820313, 0.81271636, 0.24929222, -2.0738552, -1.5412271, - -0.23214051, -0.33796602, -1.8766946, -0.4918662, -0.21621087, - -0.32906067, 0.187543, -1.85192, -1.9400879, -0.64334697, -1.1591406, - 0.1298005, 1.1376551, -0.48728222, -1.4874902, -0.5610713, -0.9090431, - 0.2025058, -1.0168025, -0.6191953, -1.2985412, -0.23023368, -2.6676075, - -0.9932616, 2.8280325, 0.5034054, -0.13676813, -1.4513625, -0.9746065, - -1.0490477, -0.8615501, 0.66394496, -0.595239, -1.1869298, -0.3965902, - -0.6007501, 0.80860776, -1.1447312, 1.5099802, -0.5698482, -1.0833368, - -0.25926456, -2.5848138, -0.1982437, -1.0787808, -0.050867148, - -1.3140818, -1.7903289, -0.4491319, -2.6386209, -1.0876844, 0.2091363, - -2.8326104, -1.4968213, -2.2502072, -0.6597286, 0.74576735, -1.6627567, - -1.6427145, 0.19690455, -1.1100076, 0.17974344, 0.5378342, 0.17793128, - -1.0412344, -0.49305317, -1.563443, -1.2121792, -2.3361447, -1.0401561, - 0.40925345, -0.49659073, -1.5565641, 0.28510574, -0.08122681, 1.5943649, - -0.45317295, -2.4424605, 0.30971542, 0.48534647, -0.3365456, -0.545173, - -1.4115407, 1.1774328, -1.3845392, 0.048500344, -0.09449682, 2.7497733, - -1.4458523, -0.11081211, 1.3039753, -1.0425456, -0.22960836, 1.2912307, - -1.0084968, 0.82910776, 1.2714926, -0.57614774, -0.33309364, -0.3435862, - 0.3549086, -0.44204828, -3.0715709, -1.0206443, -0.90863866, 1.1477686, - 0.22509176, -0.27922773, 0.80646616, -1.4020959, -0.6940107, -0.1083407, - -0.8951473, -2.5123398, -1.032059, -0.4749422, -1.6289458, 1.5241193, - -0.24728554, -2.008141, -0.39653507, 0.23705539, 1.0099332, -0.6792592, - 0.7593557, -0.0382121, 0.44043493, -2.32576, -0.31079197, -3.1083112, - 0.4552389, -0.50342596, -0.50152034, 0.17073238, -0.5245146, 0.84117395, - -1.9268419, 1.8345636, -2.1211178, -0.92620015, 0.4303291, -1.9366567, - -2.1228364, 0.061373316, -0.7525169, -1.0313494, -0.8126109, 0.6237883, - 0.4403103, 0.055212848, -0.5442705, -0.71096814, -1.1504328, -1.3767138, - -0.7317991, 0.60865635, -0.0789772, -0.89977854, -0.9381669, 1.1967026, - -1.039663, -1.497589, 0.35045892, -0.2910759, 1.074588, -0.15867016, - -0.1976649, -1.3180223, 0.31048444, -0.51324475, -0.13445598, 0.2608964, - 0.44944906, -1.41555, -0.24957696, -1.5714978, -0.12145308, -0.42779368, - -1.0381858, -1.3182781, -0.926581, -0.24232224, -1.910147, -1.1554163, - -1.9742069, -0.06904624, -0.56934124, -2.273264, -1.2445782, -2.0934122, - -0.5922386, -0.5075183, -0.50737244, -1.9746277, -0.87368184, - -0.3319961, -0.41375798, -0.42518282, -0.9066711, -1.8903306, - -0.21981755, -2.0774126, -0.19179714, -0.5639103, -0.53698987, - -0.8278568, 0.23056489, -1.1748527, -1.8436061, -2.3252785, 1.9891082, - -0.3060948, 1.5008091, -0.14255813, 0.68192214, 0.94653386, -3.1235785, - -0.40251064, -1.4666623, -1.5498585, 0.8997384, 0.47233865, -0.23977844, - -0.7154114, -1.9777601, -0.48750278, 0.47248662, -0.86257553, - -1.7728629, -0.7876705, -1.8897538, -0.68183434, -0.8242489, - -0.038273223, -0.8002508, 1.1471186, -2.0042515, -1.2960031, -2.7123299, - -1.0152301, -0.221505, 0.8452927, 0.55763394, -1.664423, -1.3304825, - -1.9604164, -1.062848, -0.12722313, -2.302179, 0.53847545, -0.7424285, - -0.77996427, -0.83422863, -2.4855886, 0.3938131, -0.07115655, - -1.4555535, -1.917111, 0.14674872, -2.2620342, 0.67677087, -0.7403807, - 0.17742428, -0.2782446, -1.5803195, 0.013366966, -1.1346741, - -0.08523616, -1.6188176, -0.30250034, -0.55159557, -0.06861087, - -1.7638232, -0.70314187, -2.7858014, -1.5801682, -0.7645605, -1.5215766, - 0.2109302, -1.467728, -0.8876031, -1.0898377, -0.9367926, -0.16947138, - -0.82700396, -1.34034, -0.5629065, -3.279853, 1.2482402, 0.5809555, - -0.9080604, -0.06536965, -0.7165564, -0.61372787, 0.3693655, 0.46985844, - -0.707548, -1.2270572, -0.9851366, 3.035878, 1.0171227, -0.8934996, - -1.5899057, 1.7719992, 0.5778557, -1.1164683, 0.901296, -0.7822156, - 0.41739643, -1.756026, -1.9264809, -0.14819238, -0.20450723, - -0.59483993, -0.20185207, -0.7311203, -1.9090592, -1.1950033, - -1.1706265, -0.64055276, -2.3176675, -0.88537914, -0.021268744, - 0.06720199, -0.7625763, -0.27910608, -1.0699083, -1.6497769, - -0.36267576, -0.3861682, 0.32153258, 0.2648629, -0.6401441, -0.25296897, - -0.9434607, -0.9494992, -1.6030458, -0.22237581, -0.19403929, - -1.2408102, -1.5950314, 0.092154786, -0.8233198, 0.38936388, - 0.025383031, -1.629733, 0.37606514, -1.7671332, 0.6533556, -1.8923496, - 0.07167028, -1.3593376, -1.7090471, 0.96146286, -1.5238253, -2.265552, - 0.3651875, -1.1201452, 0.2781841, 0.7564225, -0.9994315, -1.8621148, - -0.75283504, -1.4031299, -2.8859918, -1.4423918, -1.7366545, -2.6275337, - -1.1574408, 0.40769324, -0.75928676, 0.9884764, 1.9658177, 0.18009445, - -1.4312174, -0.936928, -1.3949742, -0.03903581, -0.03440095, 1.1888298, - -0.6458513, -2.2503204, -0.68081343, -1.6857013, -0.02592574, - -1.6301188, -0.16492657, -1.5472364, 0.69431776, -0.5063195, -1.2721721, - 0.08615881, -0.41723517, -1.8243908, 1.6742157, 2.1723802, 1.5575264, - 0.7309378, -0.88979083, 0.19136472, -0.34996966, -1.067803, -0.3767319, - -0.64514923, -1.5298647, -0.18903577, -0.7357847, -1.3937377, -0.591905, - -1.6708354, -0.53474116, 0.82843566, -0.27332336, 0.4018384, -0.8730445, - -2.0469177, -0.0070290267, -3.2533014, -0.5117587, 0.3742788, - -1.1383352, 0.39501548, -0.44159198, 0.1002624, -1.1077121, 0.33569542, - -1.1393924, -3.5530934, -1.6347793, -1.4456915, 0.65186965, 0.64805466, - 0.23916155, -0.04065229, 0.0006687045, -0.92594343, 0.8180332, - -1.9794395, -0.40538624, -0.37751883, -1.6978205, 0.4198234, 0.7761796, - -0.39349487, -1.4134655, -0.73001707, 0.0029477216, -0.53142935, - 0.1996741, -0.8327348, 1.3027785, -0.13502553, -0.5692879, -1.556913, - -1.5157574, -0.60628337, -0.4248432, 0.89113754, 1.7280703, -2.4321616, - 0.027935289, -0.81581444, -3.0988135, -0.09259037, 0.16405073, - -0.5830571, 0.69686574, -0.0020015575, -0.40263405, 1.2476082, - -2.3122177, -0.23569754, -3.1840355, -1.0671003, 0.7228974, 0.33346272, - -0.8440458, -0.94266707, 1.8799719, -3.0611703, -1.4229503, -0.5999098, - -0.94400185, -2.0151048, -0.13791022, 0.5901589, -1.9747481, -0.328517, - -0.20568767, -1.0875245, -2.3779726, -0.296731, -1.6581273, -0.51479024, - -0.45419386, -0.21652561, 0.49459597, -0.36605668, 1.439807, 0.8907896, - -1.9092869, -2.287014, -0.7610879, -0.015104335, -0.81804353, -1.039908, - -0.3030175, -2.5852902, 1.3678707, -2.30637, -0.07978902, -0.94709116, - -0.80148333, 0.1409602, 0.05562556, -1.7597345, -2.3582468, -1.3537186, - 0.2876961, -0.28245592, -0.30478823, -0.36891994, -2.2154431, - -0.7194566, -1.1997828, -2.2689, 0.2453131, -1.9331439, -0.21880978, - -1.2084229, -0.6323458, -1.2414435, -0.26184148, -1.4876205, 0.34702492, - 1.9668744, -0.79493845, -0.0909949, -2.3720877, 0.33297905, -3.5197136, - 0.45376223, -0.42002717, -0.3327436, -1.1407313, -0.7153866, 0.3900102, - -1.1005137, 0.6727504, 1.6146424, -0.48428193, -0.05870987, 0.98875886, - -0.6659892, 0.9663283, 1.0625367, -0.5290665, -1.161977, 1.2054694, - -0.6502191, -0.73951566, -0.4218129, -1.6853818, -0.39951518, - -2.0745883, 0.51875305, -0.24881877, -1.0727401, -1.2965956, 0.8250982, - 1.265095, -1.0444093, -0.004370153, 0.20782748, -1.1026274, -0.15018676, - -1.7897933, -0.46900487, -1.3070294, 0.31043133, -0.5986345, -1.1779379, - 0.42007557, 0.34155086, -0.48962802, -1.0766225, -0.89200157, - -2.0530033, -1.2156795, 1.469905, -0.76610327, -0.54724735, 0.58952403, - -0.65676415, -1.2393506, -1.1946696, -0.62716395, -0.76141703, - -0.6557886, -0.84483296, -2.3238926, -0.22616541, -0.022748783, - -1.7942133, 0.06667191, -1.5826147, -0.13251638, -0.079602495, - 0.39958325, -1.0859183, -0.8160662, -0.3253371, -0.60187423, -1.5544677, - -2.540334, -0.6675367, 0.27120495, -0.03519204, -1.2729118, -0.6867266, - -0.9735204, 1.436467, -1.9800704, -1.8557496, -3.746582, -1.7347182, - -1.3154377, 0.8802367, 0.29645532, -0.079292595, 0.23767512, - -0.86255693, -0.4795735, 0.236469, 0.44917515, -1.7830805, -0.78088796, - -0.0688211, -0.91417944, -2.0855482, 0.5903744, 0.89106596, 0.19297911, - 1.6195335, -0.15863591, 0.5609466, -1.1008997, 0.37122038, -0.6379781, - -0.94263583, -2.2636828, 0.18579353, 0.21532476, 1.0166271, -2.2802415, - -0.8378039, -0.7508407, -0.8009612, 0.11546856, 0.36577505, 1.2967594, - -1.3194765, -1.36835, 0.022850133, -0.15212263, -0.74662185, -2.7285297, - -2.469967, -1.1103777, -0.5373796, -1.6246156, -0.53769135, -0.8583931, - 0.40290725, -1.3181357, -1.4660301, -0.7162989, -1.7221843, -0.9078296, - -0.09884295, 1.3297704, -0.15925002, -0.7719444, -1.4298861, 0.808351, - -1.5391072, -1.077969, -0.70396936, -1.358862, 1.1781207, 0.035973545, - -1.2232008, 2.1035347, -0.90821904, -0.20898172, -0.6500512, -1.409592, - -1.0126702, -0.22519307, -0.1905232, 1.5918202, -2.0833592, -0.3325398, - -1.9658885, -0.8083631, -1.942686, -2.2508626, -1.3355557, -1.8784182, - 0.6891552, -0.5231737, -2.5091243, -1.7939887, -1.688302, -0.13993451, - -2.004333, 0.28376603, -0.03571035, -0.19787368, -2.4074569, 0.6765793, - -1.3470302, -3.7553558, -2.2411842, -0.6939893, 1.1597064, -0.082318425, - -0.7725613, 0.32158726, -3.4940867, -0.7406972, -0.9760687, -2.235326, - 0.028884158, -1.0530329, 1.0232495, -2.7341015, -0.6589169, -2.3400903, - -1.7552335, -1.4748672, -0.4120389, -0.8356821, -2.1419103, - -0.036063913, 0.7265225, -0.19315585, -2.104572, 0.02113584, -1.6935872, - -2.4327726, -0.1554365, 1.328788, 1.316301, -0.8427492, -1.4181484, - -0.8530043, -1.5481249, 0.18709537, 0.6511876, -1.1150599, -0.041294016, - -1.5248502, -1.0865203, 0.2799167, -1.5898805, -1.3191472, -0.61600494, - -0.30343744, -0.82032734, -1.1869338, -0.6112088, -0.4981827, - -1.3550824, -0.104039565, -0.6820041, -1.5542345, -0.17871597, - -0.32165116, -1.1045285, 0.015061215, -1.1390074, -2.0469677, 0.7435912, - -2.9264114, -1.2388498, 0.9149823, -0.73494816, -0.35715953, 0.99896526, - -2.4277916, -0.6356147, 0.21016057, -0.36876297, 1.1660923, -1.2079871, - -0.45885485, -0.09393165, -0.13017578, -1.810446, -1.9922986, 1.9907339, - -0.053263105, -0.016225679, -1.2005442, -0.33898127, -0.1234203, - -0.95320547, -0.7855212, 0.52759, 0.46616682, -0.9459268, 0.24209273, - -1.2687314, -1.931882, -2.2183735, 1.0632381, 0.7419898, -0.38024235, - -0.25523445, 0.07814935, -1.22107, 0.4452774, 0.0045946315, 0.7322721, - -1.8867176, -1.384349, -1.2623199, -0.4559832, 0.24790032, -0.74668765, - -1.5705962, -1.7578914, -2.1612525, -0.03826008, -1.0660607, -1.6741966, - 0.50492543, 0.284377, -0.9770243, -1.6466432, -2.0920992, -0.4171252, - 1.127363, -0.2519316, -1.7803762, -1.1778412, -1.3653883, -1.5621475, - 0.71741396, -0.21021606, -0.22841924, -2.0063112, -0.671389, -1.8190114, - 0.85556036, -1.7030892, -0.31419367, 0.2126749, -0.09642227, -2.5391154, - -1.5644594, 0.40034902, 1.0725485, 1.1677084, -0.78551805, -1.1425775, - -1.3732603, -0.25650528, 0.5319303, -0.28278196, -0.18064684, 0.3811369, - -0.07145989, 0.09172954, -0.11346659, -0.717025, -1.481465, -1.9903882, - -1.4260345, -0.6512775, 1.5135269, -1.9752656, -0.18959096, -0.75406796, - -1.3754276, -1.9727011, 1.1560929, -0.27341563, 0.3468597, -2.0259678, - -0.36862957, 0.19381998, 0.1280789, 0.91268617, 0.28126302, 0.9627987, - 0.4396181, -0.76457506, -1.0013164, -0.7961749, -1.2437372, -1.2005473, - -2.6135097, -0.0031619743, -3.8279386, -0.95053625, -1.0726746, - -1.8671759, -1.7724198, 0.89641756, 0.939559, -0.8986534, -1.63604, - -0.9456363, -0.30184442, -0.68957645, -0.6789032, -1.6452857, - -1.1399511, 0.61090827, -1.2761809, -1.4458346, 0.84676147, 0.10773381, - -1.3446268, 0.512102, -1.4421012, -0.8655912, -0.092274874, -0.8660753, - -0.68512475, -0.7743126, 0.25655547, 0.2750125, -1.1789821, 0.31194916, - -1.7694302, 0.2667042, -1.3130916, -2.255537, -0.17248856, -0.5297257, - -0.5524547, -2.1752105, -0.588847, -1.3894231, -0.699838, -2.041983, - 0.8509908, -0.7544095, 0.9392333, -0.73278314, 0.09931966, -0.32079524, - -0.4283793, -1.4243425, -0.4444407, -0.15425634, -1.334762, 0.7905437, - -0.9855017, 1.9571078, -1.6616652, -1.8517168, -2.2317069, -0.57895994, - -0.054658167, -1.9467906, 0.14450216, -0.2222062, -1.2619799, - -0.07118222, -1.6662891, -1.5663269, -2.119365, -0.08926315, -1.9856881, - 0.39868435, -1.2704695, -0.006191495, -0.80555135, 0.32369897, - 0.7761239, -1.3932141, -1.5861611, 0.7562716, 0.2597384, -1.6315203, - -0.4307576, 1.2850437, -1.1979408, -0.67422557, -2.3677065, -1.92435, - 1.5085318, 0.64280653, -3.182627, -0.9039738, -1.1814712, -3.3009803, - -0.7568036, 0.59572965, 0.9211216, -0.3846005, -2.2479267, -1.5253224, - -0.038909893, -1.1915977, -0.37132153, -1.821927, -0.70898265, - 1.3961345, -0.8582742, -0.3454737, -0.13394913, -0.7478174, -0.5901542, - -0.8323366, -0.42571247, -0.82914805, 0.99437976, -1.557983, -1.8668982, - -0.08000827, -2.4359217, 0.9322464, -0.0041062348, -0.26424196, - 1.4119712, -1.3665799, -2.592741, -1.7468879, -0.723821, -0.8237448, - -1.1835853, 1.2247492, -1.9479249, -0.20256847, -0.3786601, -0.4652435, - -1.180409, 0.23516122, -0.5147084, 1.8249568, 0.65562105, -0.82655466, - -1.0968789, -0.8932065, -0.9032448, -0.95419544, 0.08223428, -0.9601403, - 0.06022225, 2.3804672, -0.12843043, -1.0004656, -1.2115494, 0.3277462, - -2.2586725, 0.6815459, 0.04399363, -0.4968009, 1.073421, -0.3123653, - 0.3733661, -0.19675668, -3.1407943, 0.85159934, -0.9295191, 0.005949773, - -0.61319184, -2.053068, -2.2963305, -0.5231886, 0.01303421, -1.5746613, - 0.84691775, 1.8047632, -1.226065, -0.59633625, 2.5179791, 0.6660608, - -1.5842878, 0.31051338, -2.370573, -0.06776859, -1.1741402, -0.40077126, - -1.8336617, -2.7374246, 0.20165706, -0.7409646, 0.30635858, -2.6132255, - 0.4299466, -1.6377156, -1.6928338, -1.4203501, -1.9763715, -2.7833354, - 0.2429266, -1.5484318, -1.1194662, 1.8610325, 0.1287898, -0.3248276, - -1.416725, 0.1166045, -0.22527905, -0.8809298, 0.67458713, -0.692892, - -1.2297994, -0.6425594, -0.39261547, -0.007676296, -1.6502433, - 0.60827875, -1.369951, -0.4586697, -1.3779739, -0.5727364, 1.2780371, - -1.2754277, -0.5518302, -3.0750296, -0.22780423, 1.3013998, -0.97384477, - -2.6879306, -0.43689954, -1.3917814, -1.7962824, -0.58751816, - -1.9077489, -1.6265508, -1.4209955, 0.6057984, 0.41476625, -0.43479523, - 1.4473957, -0.4466, -0.24228844, -1.6603625, 0.16381589, 0.19834949, - -0.25804198, 0.100996174, -1.1937208, 1.0963312, -2.7569816, -1.6135781, - -0.71620417, -1.3502519, -0.28349715, 0.07931578, -1.1856717, - -0.8520706, 1.0327464, -1.6349692, 1.3918065, -0.22130443, - -0.0074330196, 0.1606774, -2.1977112, -2.7958724, -2.0386684, - -1.6815196, -0.22401744, -0.62174386, -1.341772, -0.8433194, - -0.44440845, -0.42114547, -0.62056535, 0.07977828, -1.8806943, - -0.11429146, -1.9913726, -1.761083, -1.9571795, -2.8447046, -0.8945876, - 0.33795312, -2.2333908, -1.0952637, -0.32317746, -0.3911681, 0.24332857, - 0.5752277, -0.6090301, -0.63379467, -2.058549, -0.86383307, -2.0166943, - -2.0775874, 0.06646244, -2.474174, -0.48337728, -1.3370718, -0.34649917, - -0.14485995, -0.1316688, -1.7725154, -1.7197564, -0.5528652, -1.4238933, - 0.3545307, -0.2780671, -2.2705667, 0.17822275, -0.8424816, -1.4077433, - 1.2849027, -0.77411276, -0.7022713, -0.43326995, -1.020045, -1.2248453, - 0.30218792, 0.37637228, 1.0691146, -2.418016, 0.22080663, -1.2730392, - -1.8725944, 0.96287256, 1.5859215, 0.61010844, -1.1579386, 1.5938156, - -0.07778856, -1.7217063, -0.70593005, -0.71477926, 0.6083064, - -0.23001409, -2.365989, 0.29751897, -0.99619377, -0.8866987, -1.2954544, - 0.027572766, 0.14331219, 0.15825343, -0.43564084, -0.6504054, - -1.7797798, 1.0239259, -1.8371174, -0.53141797, -2.666699, 0.12696804, - -3.018628, 0.6917054, -1.5136284, -0.46409616, -1.4682418, -0.8864579, - -1.2810451, -0.5091359, -0.2294537, 2.2249374, 1.3635107, -1.2678146, - -1.2594203, 0.27419555, -0.68785775, -0.55904007, -0.59310156, - 0.071973436, -1.3450096, -1.846889, 0.32631275, -2.8489413, -1.9333212, - -0.12159095, -0.30932167, -0.6145347, -0.8754182, 0.54612005, -0.480836, - -0.938305, -0.9441585, 1.5400773, 0.065492004, -0.7121691, -1.5385693, - -0.14057517, -0.5788859, 1.0958694, -1.5557382, -0.6130242, -1.1962031, - 0.17404523, -0.60363984, -1.1342108, -0.7669653, -0.20149875, - 0.29960123, -1.8083812, -0.2459516, -0.31956235, -0.8630946, -1.0859066, - -0.8965794, 0.333502, -1.8249098, -2.63142, -0.7338408, -0.7643383, - 0.22340392, -0.7662785, 0.2447424, -1.6808711, -1.2016855, 0.025081627, - -0.5385545, -0.012197152, 0.06920745, -0.1293914, -1.6811497, - -0.74110615, -1.238774, 1.1686991, 0.3192793, -1.6162722, -0.20722547, - -1.8075237, 0.7809652, -1.0827522, 1.0363696, -1.1242398, -1.2592528, - -0.55352765, -0.12190068, -1.4205819, -0.7795594, -0.76068044, 1.509577, - -1.7241609, -1.3162748, 0.29676425, -0.5482614, -0.22563311, -0.5275774, - -0.50401396, -1.7109934, -1.1283416, 0.28367925, 1.3964487, -0.454736, - -0.06065149, 1.3034167, 0.09588674, -0.104064606, 0.7215679, -1.3724558, - -0.7298929, -0.6502911, 0.056059144, -1.9239781, 0.115330115, - 0.09146508, -0.10663287, 0.19564626, 1.1235654, -0.93426234, -1.8748118, - 0.13793014, -0.026808202, -2.4657607, -0.8788822, -1.1568482, - -0.91576546, -0.029238943, -0.9904548, -0.24485935, -0.39356452, - 0.95108414, -0.7053614, -0.51618284, 1.6021076, 0.026580945, -0.3029273, - -1.76431, -1.2805977, -1.0728062, 0.5629592, 1.1921622, 0.5285855, - 0.6152047, -2.205462, -1.1200255, -1.377309, -1.7575591, 0.039943557, - -2.6550806, -0.7200304, 0.022715054, -0.6428732, -2.567482, - -0.024794944, -0.4671051, -0.9612431, 0.85912365, -0.909261, - -0.06570785, -1.1192927, -1.4607394, 0.25803798, 1.0477848, -0.6723959, - 0.4407327, -1.35582, -0.30588752, -0.27743387, -0.9039545, 0.63026357, - 0.48298177, 0.3218112, 1.6511186, 0.013566978, -2.0764258, -0.83410066, - -1.393151, -1.1630539, -0.78721094, 0.5567426, -2.9238267, -1.4157355, - -1.3841844, -0.4430053, 0.28554344, -1.367269, -0.036726255, -0.5953421, - -2.135244, -0.3106829, -1.4843808, -2.3033414, 0.37119895, -2.454162, - -0.08777256, -3.134776, 0.018812247, -0.5388042, -1.5431057, -1.781073, - -0.8907177, -1.8600436, -0.10887646, -0.1474655, -2.660828, 0.5295615, - 0.89477336, 0.82741463, 1.1162703, 0.17222945, -1.0354973, 0.1432144, - -1.356111, 0.4241951, 1.0977767, -1.0478443, -1.171211, -0.65678144, - -1.6107147, -1.9399163, -1.3374708, -0.76954234, 0.8809363, -1.8811206, - -1.444693, -0.9174509, -1.19163, -0.08279837, 0.6639149, 0.6341447, - 0.9008908, -0.5263641, -0.032470968, -0.25487453, -0.62741137, - 0.57657635, -0.5352684, -2.7499337, -0.86892116, -0.9982699, - -0.92439204, -0.13592565, -1.0428863, 0.24198505, -0.6895563, -1.61229, - 0.6713933, -1.2174345, -1.958993, -0.91201943, -0.28033674, -1.290315, - 0.19824034, -0.21727178, 2.1433525, -1.7157774, -1.3825014, 0.20173948, - -1.242331, -2.312296, 0.49730116, -0.7485323, 0.99871504, -0.24020077, - -0.9731941, 0.5397536, -1.1113324, -0.0013464317, -0.45303378, - -1.6708686, -0.1221461, -1.5749313, -1.9400481, -1.9715946, 0.6612344, - -0.26695418, 1.3610624, -0.29111618, 1.9283735, -1.8396602, -1.0724616, - 0.34494293, -0.45838365, -0.014106818, -1.0522726, -1.4440191, - -1.6242554, 2.5710495, -1.3294249, 0.015845425, -0.4230637, -0.09302255, - -1.8366885, -0.76302797, -0.27416813, -0.6747497, -2.473626, -1.1167762, - 1.412396, -1.8266046, -0.40774998, -2.536819, -0.954129, -1.7949667, - -0.2041429, 0.06684531, -0.71178544, 0.78977996, -2.1311774, -1.7016981, - -2.656107, -0.8584897, -1.5939945, -2.1870284, -1.2222359, -0.73984796, - 0.8898624, -0.3471082, -0.356808, -0.4381028, -2.314144, 0.3158604, - -1.527402, -1.3390315, 0.42707258, -1.4062772, 1.244336, 0.028041828, - 1.0857981, -1.5312058, -1.8884193, -0.20502907, 0.75831145, 0.4266287, - -1.1808987, -1.9729911, -1.1918614, 0.83122516, -0.28153476, -1.4757733, - -1.945488, -0.31308314, -0.19838034, -1.2768514, -1.1327015, - -0.68320155, -0.56719106, -0.35369784, -0.6914262, -1.7970078, - -0.54639965, 0.06364082, -1.9094641, -2.647038, -0.7563297, -0.22037782, - 0.19487955, -1.0875584, 0.2547086, 0.625709, 1.2883765, -0.081799336, - -0.3422265, 0.032321103, -0.99520504, 0.22270261, -1.6220349, - -0.2376022, -0.72606, -0.44324595, -0.51493186, -1.7629279, -1.288167, - 0.03742239, -0.8692785, -1.140099, 0.11297029, -0.093351796, -1.1185871, - -0.5630617, -0.71911436, -1.7315254, 0.443278, 2.173229, -0.4500529, - 0.0081359185, -0.42938548 - ], - "reducedFeatures": [ - -0.047936033, -0.05788392, -0.012638416, -0.0031106588, -0.0062813256, - -0.049397614, -0.03734932, 0.009464199, -0.03646587, -0.01056311, - 0.0027075072, -0.05321521, -0.016566742, -0.023537403, 0.033405375, - -0.039722655, -0.03799234, -0.03160245, -0.023314813, 0.024749052, - -0.016873682, -0.034155566, -0.022102965, 0.008826219, 0.04253654, - -0.01898229, -0.042486306, -0.0021897876, -0.04404901, -0.009577686, - -0.03164995, -0.06644895, -0.003919773, -0.009154478, 0.009960416, - -0.063935705, -0.0123830065, 0.02746643, 0.0387103, -0.010817425, - -0.038093407, -0.035991576, -0.04876971, -0.0003847105, -0.03272825, - -0.04916921, 0.027900508, 0.03185287, -0.014056904, -0.04590015, - -0.017006155, -0.008398442, 0.052224983, -0.050810885, -0.045435764, - -0.035906788, -0.014136417, -0.021267433, -0.061979517, -0.0224011, - -0.047467723, -0.0072491593, -0.023571858, 0.0028839905, -0.03351819, - -0.035631526, -0.023572745, -0.052553218, -0.039663933, -0.028383149, - -0.011345939, 0.008440966, -0.008494546, -0.025477573, 0.005355661, - 0.018703, -0.03148371, -0.032063417, 0.019714294, -0.036228303, - -0.02012796, -0.039532997, -0.028573705, 0.0401842, -0.06630958, - -0.0425143, 0.003168015, 0.07651955, -0.019864216, -0.049051344, - -0.047865212, 0.002143305, -0.012259402, 0.005219418, -0.028026134, - -0.0008533974, -0.011094348, -0.016402597, -0.0110992305, -0.0021184282, - -0.032028176, 0.01958448, -0.0038618674, -0.022940319, -0.00010294253, - -0.013375753, -0.007905677, -0.0009650848, 0.022397125, -0.043757517, - -0.005244002, -0.034018315, 0.020426016, 0.011009169, -0.05466185, - -0.04939673, -0.017489579, -0.064024806, -0.042209096, -0.05071206, - 0.026500195, -0.011171534, -0.04974087, 0.011025853, -0.06607982, - -0.009495088, -0.028820112, -0.05346998, -0.013887891, 0.0011121733, - -0.018995307, -0.014542851, -0.025711656, -0.026635246, -0.008529384, - -0.0021530208, 0.02850661, -0.060202546, -0.043162964, -0.025920909, - -0.027254265, -0.049048543, -0.01813025, -0.011000337, -0.04515707, - -0.024051113, -0.032603826, -0.041648686, -0.012375325, 0.008750265, - 0.0062068775, 0.010437682, -0.0076520867, 0.019456405, 0.0044131177, - -0.030079175, 0.001800865, -0.01557035, 0.009928533, -0.04327717, - -0.031439133, 0.0046683624, -0.0018221933, 0.010122591, -0.03801572, - -0.033709165, -0.065265164, 0.00017285718, -0.026826626, -0.028519737, - -0.052662525, 0.008156406, 0.018867394, -0.042704593, -0.02712468, - -0.011103408, -0.017063329, -0.018280938, 0.05625953, -0.046205435, - -0.00784251, -0.0047551193, -0.03846098, -0.02716177, -0.0020285472, - 0.018185632, -0.05408423, -0.055621803, -0.05549741, -0.027427401, - 0.009291325, -0.007930072, 0.005047863, 0.012426644, -0.0055334023, - 0.014156633, 0.034506813, 0.07913791, 0.026308801, -0.0056110863, - -0.04965082, -0.00885746, -0.024536304, -0.032764703, -0.022300694, - 0.0014042718, -0.021333305, 0.027057828, -0.026706802, -0.03914417, - 0.012522248, -0.09177437, -0.07584692, 0.007137901, 0.008157308, - -0.050253212, -0.021528687, 0.0254927, -0.005373063, 0.0063333414, - -0.039406408, 0.00021925796, -0.014860647, -0.058756974, 0.025573164, - -0.037384536, -0.0014261027, 0.023451347, -0.04221852, -0.06524241, - -0.02950324, -0.044120364, -0.03326746, -0.032112356, -0.0149395, - -0.018802414, -0.004814645, 0.00021791403, 0.0008256357, -0.0032946605, - -0.0007535661, -0.06963184, 0.0051224693, 0.014425386, -0.00014489215, - -0.045976385, -0.016913325, 0.01196397, -0.061209787, -0.030867107, - 0.029907499, 0.020166038, -0.0029517547, -0.029908689, -0.053601313, - -0.011020926, 0.021980483, -0.033238973, -0.007586129, 0.00083581597, - -0.06692195, -0.030629177, -0.011697802, 0.043554727, -0.027501047, - -0.05178474, -0.024571417, -0.056464504, -0.000106779065, -0.0041726483, - -0.01551855, -0.030810999, 0.024663659, -0.06402741, -0.028479258, - -0.08960362, -0.06286592, -0.051137265, -0.032044884, -0.039717015, - -0.025584731, -0.024629459, -0.029583724, -0.04720484, -0.0012313625, - -0.027677193, -0.009805502, -0.015884938, -0.073958084, -0.0012242389, - -0.016545301, -0.03915284, -0.0020219595, 0.020292526, -0.06530986, - 0.002044301, -0.035046775, -0.016244492, -0.00043326768, -0.02541153, - -0.05488891, -0.02446887, -0.04158571, 0.023036245, -0.032920927, - -0.04927961, -0.0012733426, 0.008839535, -0.020989358, -0.0016109425, - 0.042404752, -0.036716543, 0.018643584, -0.0246651, 0.008851716, - -0.03415904, -0.00095611095, -0.03818777, -0.043812603, 0.022339866, - 0.01127552, -0.014405657, -0.008110266, 0.027330307, -0.024815738, - -0.09123814, 0.032903824, 0.0070338626, 0.007977146, -0.018190207, - 0.0028417357, -0.033866618, 0.022408126, -0.016005797, -0.0040762266, - 0.009029554, -0.009969297, -0.02586842, -0.016775751, -0.05711931, - -0.04154661, -0.0011957334, -0.04651003, -0.017335871, -0.03142018, - -0.001832007, -0.0021706182, -0.029196374, -0.0043745385, -0.034145378, - -0.068046175, 0.01823678, 0.03855691, 0.012291257, 0.038034763, - -0.03372515, -0.02160305, -0.025723135, -0.031461228, -0.031070529, - -0.03073293, 0.0066564423, -0.022115378, -0.0669104, 0.0022938624, - 0.018508129, 0.010819858, 0.02094169, -0.076281816, 0.021796802, - -0.0097361365, 0.002753182, -0.006956586, 0.0029751442, 0.03206619, - -0.06295542, 0.004297934, -0.040760726, -0.028690511, -0.04221881, - -0.012428521, 0.047005057, 0.030869748, -0.029146232, 0.02001671, - 0.00844047, -0.024236895, 0.024996493, -0.023057152, 0.011841997, - 0.037496023, -0.040830687, -0.0040470213, -0.020243492, 0.0060040513, - -0.011884118, 0.0046260552, 0.07172782, -0.041452993, -0.015643407, - 0.004645132, -0.023452742, -0.023582805, 0.002632481, -0.034405794, - 0.028320214, -0.010401993, -0.06527424, -0.013959172, -0.021840451, - 0.015361086, -0.043067593, -0.036013193, 0.015412905, 0.009848704, - 0.0014483881, 0.005423453, -0.04281349, -0.030606655, 0.013899197, - -0.024725765, -0.037444722, -0.019998468, -0.013441621, -0.007270919, - 0.0045230654, -0.037941728, -0.0022999693, 0.001247567, -0.0030377985, - 0.02532715, 0.01798366, -0.049063273, 0.0057923496, 0.055571947, - -0.004499003, -0.036250215, -0.056304052, -0.0035698267, 0.030297771, - 0.031716496, -0.07024029, -0.02783703, -0.003973156, -0.028820522, - -0.027368313, 0.01410783, 0.022835298, 0.00736366, -0.008404917, - -0.0017193349, -0.022882128, -0.028947953, -0.006520833, 0.0026814719, - -0.01779246, 0.034299582, -0.03368278, -0.048794914, -0.03866856, - -0.022418575, 0.031192003, -0.028455377, -0.01620451, -0.010938962, - 0.009939422, -0.011760091, -0.053370208, -0.0723143, 0.034711998, - -0.017336734, -0.02262354, 0.041084055, -0.010207506, -0.027551344, - -0.028479839, -0.005723934, 0.01668208, -0.01364444, -0.01865273, - -0.04046566, -0.031634964, -0.016726436, 0.053761344, 0.027997138, - -0.053337246, -0.009719757, 4.8667744e-7, 0.008687649, 0.0013432951, - -0.0029555482, 0.008832423, -0.0554188, -0.0508341, -0.014481553, - -0.03645289, -0.011056919, -0.0035217819, -0.013720584, -0.03266439, - -0.01640657, 0.012382562, -0.03973748, -0.029744592, 0.01760718, - -0.051120605, -0.021783246, 0.018935796, -0.017504185, 0.016526217, - -0.019791255, -0.04634565, -0.015134677, -0.023409786, -0.027101269, - -0.046402022, -0.03644759, -0.04098256, -0.018874796, 0.01171361, - -0.032890357, 0.010566382, 0.0074642934, -0.033694394, -0.0032209512, - 0.0011014112, -0.016701257, 0.018574545, -0.010918389, -0.040398203, - -0.033273406, -0.07509462, -0.055231217, -0.025444236, -0.04659999, - -0.007026257, -0.022071883, 0.011194959, -0.04146264, -0.011472827, - -0.008194991, 0.010861419, 0.028111996, -0.030129423, 0.019176943, - 0.03493666, 0.015076026, 0.018419033, -0.021596014, -0.018415939, - -0.012542616, -0.022508148, 0.023506448, 0.023823854, -0.023349872, - -0.01648063, -0.01594042, 0.03904339, 0.040928736, -0.022601577, - 0.015027658, -0.025739482, 0.020218201, -0.00952588, -0.007144397, - 0.07131832, -0.037625276, -0.025452835, -0.027227573, -0.026374733, - -0.0032776906, 0.0061227847, -0.00015441733, -0.0067089386, -0.05476136, - -0.021565877, -0.026061418, -0.02522, -0.02999817, 0.0020696153, - 0.048970345, -0.038019318, 0.012899406, -0.031089492, -0.036857795, - -0.013518834, 0.009865996, 0.03974198, 0.009319566, 0.007670672, - 0.0022818276, -0.012220888, -0.03220012, -0.0027954848, -0.04009404, - 0.013615452, -0.019051416, -0.008516433, -0.0057333196, 0.024285756, - -0.0781855, 0.015103217, -5.4551896e-5, -0.04944941, 0.022347037, - -0.009981199, -0.052125584, -0.009328142, 0.01957457, -0.00094686047, - 0.024651164, -0.012083801, -0.019500855, -0.0427372, 0.015740348, - -0.019168623, -0.0057436437, -0.018168278, -0.0073861773, 0.06622521, - -0.041427482, -0.012928372, -0.033759974, 0.0150447255, -0.011634298, - -0.032108586, -0.052193265, -0.059970245, 0.027045794, -0.0063741957, - -0.023471182, -0.00915343, -0.045013446, -0.007776563, -0.045481108, - -0.0036124752, -0.010599932, -0.020036073, 0.01920877, -0.016546706, - -0.033334292, -0.0048412182, -0.021444568, -0.050492674, 0.0124999555, - 0.022804508, -0.020066816, 0.026632342, -0.008983552, -0.015369083, - 0.03816909, -0.022335406, -0.055468902, -0.0044377013, 0.0076659457, - 0.024230624, -0.01048455, -0.05373158, -0.010459713, 0.010888392, - -0.044841748, -0.018375352, -0.06263123, 0.02994135, -0.014720993, - -0.034505546, 0.05567609, -0.034572452, -0.024523249, 0.029417418, - -0.021426162, 0.008114746, 0.00455656, -0.0115961125, -0.0040238737, - -0.0048915176, -0.039291143, -0.070534, -0.07581297, 0.053443246, - -0.0135280695, -0.022210088, 0.0012835654, -0.022033852, 0.035898507, - -0.021480717, -0.052179728, -0.0062470357, -0.03426964, -0.026357777, - -0.007919578, 0.020736277, -0.05641391, -0.034748275, -0.07415978, - 0.02641242, -0.0003555791, -0.0043779006, 0.0020871023, -0.0262152, - -0.05182714, -0.058128845, 0.02556091, 0.002492892, 0.019967351, - -0.013979451, 0.004018201, 0.005577854, -0.016308218, 0.007016134, - 0.0029256113, 0.002354785, -0.017958995, -0.027460419, -0.018040426, - -0.019994002, -0.016632704, -0.013326936, -0.007692379, 0.0040905043, - 0.029016685, -0.0012554153, -0.041463282, -0.015977759, -0.029418653, - -0.018746918, -0.05671172, -0.004862097, -0.06633732, -0.024276707, - -0.011562205, -0.01637504, 8.882928e-5, -0.018975025, -0.018043559, - -0.06934393, -0.0016131803, -0.038920872, 0.0046931254, -0.03963969, - -0.03713085, 0.03075085, -0.025162283, -0.018866342, -0.00024624524, - -0.03219998, -0.04064528, -0.033673313, -0.029345797, -0.0018841606, - 0.05779186, -0.0203758, -0.04674599, -0.04262004, -0.022250405, - 0.027620742, -0.036578123, -0.017637474, -0.034185667, -0.03891142, - -0.05893113, -0.046832528, 0.005723808, -0.008262436, -0.02465483, - -0.032878336, 0.0108809965, 0.015221188, 0.0030086208, 0.016359618, - -0.01332498, -0.034263518, -0.015428303, -0.0073068626, -0.037699055, - -0.019600436, -0.06516385, -0.032649737, -0.025639746, -0.033707537, - -0.017108416, 0.055672053, 0.00848128, -0.03307929, -0.04522585, - -0.041472815, -0.039601255, -0.010833306, 0.034430895, 0.0033260365, - 0.037093606, 0.004072009, -0.030440569, -0.034818754, 8.1393126e-5, - -0.042907953, -0.03753969, -0.011266955, -0.03957823, 0.0018066821, - -0.030295355, -0.032521024, -0.029920079, -0.05779204, 0.021184007, - 0.08315153, -0.022285739, 0.022094825, 0.0016780882, -0.017476728, - 0.027540067, -0.03588369, -0.0036423637, 0.0010357591, 0.030937124, - 0.017828, -0.06946606, 0.010405542, -0.027979506, 0.006899795, - 0.03451472, -0.023756221, -0.006975909, -0.02077647, -0.014161582, - -0.011700859, -0.021420907, -0.015755674, -0.026865644, -0.070409596, - -0.02650021, -0.025493113, -0.031714235, -0.02888573, 0.06359078, - -0.036422122, -0.030736845, -0.003916969, -0.0048818626, -0.0014113226, - 0.022980837, -0.016274227, -0.029681128, -0.03742198, -0.026305465, - -0.010477212, -0.0318813, -0.029067125, -0.0023546342, -0.007944715, - -0.001820383, -0.048198264, 0.039399475, -0.009917651, -0.057687227, - 0.016910262, 0.0030695074, -0.008028566, -0.011595749, -0.0027226869, - -0.04040861, -0.0029478574, -0.0495221, 0.010072882, -0.0104489345, - 0.019688776, -0.00010364797, -0.031943846, -0.02876009, -0.030488107, - -0.013060332, 0.014889187, -0.04615528, -0.043063413, -0.0899478, - -0.023799725, -0.0008535914, -0.04095465, -0.060428254, 0.008505498, - 0.002426804, -0.028688872, -0.011640648, -0.025753038, -0.036964234, - -0.037487894, -0.017172229, 0.025154127, -0.010785888, 0.021576386, - 0.0066255443, 0.0032146266, -0.03850117, -0.02857233, -0.048903156, - -0.015124056, -0.045161318, -0.011259463, 0.01712717, -0.0158314, - -0.026410311, -0.023872418, -0.0050366404, -0.04435252, -0.026280494, - -0.005662502, -0.016777458, -0.0064434293, -0.0022897408, 0.006909383, - -0.047201023, 0.053958032, -0.020681258, -0.020990808, -0.013689506, - -0.01681814, -0.016286226, 0.015618009, 0.018478269, 0.038604237, - -0.018304238, 0.0021851286, -0.01858509, -0.009910236, -0.04652195, - -0.04564616, -0.025593314, -0.012105185, -0.0429428, 0.013806197, - -0.036123507, -0.020150796, 0.04791662, 0.0021991902, -0.05540008, - -0.008058, -0.059174318, 0.015638951, -0.021794483, -0.022718715, - -0.031085692, -0.033601608, -0.010913944, -0.015122755, -0.070280604, - 0.016522408, 0.066769116, -0.04057234, -0.054110907, 0.018607564, - -0.011694839, -0.07038213, -0.06733147, -0.0463709, -0.03759706, - -0.016705576, -0.00046847618, 0.008181227, -0.021999136, 0.004874355, - -0.031677358, -0.049980283, 0.0146809025, 0.024318, -0.01933413, - 0.041796096, -0.07125075, 0.030523768, 0.014754431, -0.039827492, - -0.04618337, -0.0529166, -0.03505923, 0.04183597, -0.008919015, - -0.031278886, 0.0103122145, 0.006315002, 0.0004473208, -0.0021842278, - 0.002603573, 0.014968347, -0.020558935, -0.030269235, 0.03076672, - -0.02947435, 0.019022824, -0.025290785, -0.016161842, 0.013822793, - -0.031943467, -0.0060415287, -0.024301874, -0.05666566, 0.013885667, - -0.018185277, -0.012591444, 0.006780767, 0.013540771, -0.008563953, - 0.010523785, -0.048517983, 0.0137591, -0.032862734, 0.001724952, - 0.025792133, -0.057978377, -0.0639728, -0.062735826, -0.0011435723, - -0.0091525465, -0.027285477, -0.05802768, -0.031066414, -0.02139902, - -0.025106872, -0.05924991, -0.026355209, 0.003999494, -0.032783158, - -0.032139927, 0.009599651, 0.014581083, 0.012379844 + "features": [ + -0.023888119, + -0.028562825, + -0.007158381, + -0.0016466696, + -0.002563877, + -0.025979042, + -0.020162944, + 0.0039215204, + -0.019177476, + -0.007119916, + 0.0022017919, + -0.028001377, + -0.0070935534, + -0.011915948, + 0.017045194, + -0.019488558, + -0.02007277, + -0.016396016, + -0.012017169, + 0.012491547, + -0.0069295764, + -0.0159116, + -0.011227841, + 0.0044485163, + 0.022887353, + -0.009459408, + -0.021299621, + -0.002103534, + -0.022617871, + -0.006774074, + -0.016155332, + -0.03353819, + -0.0024671552, + -0.004778394, + 0.0044564363, + -0.030298725, + -0.0064755054, + 0.01570111, + 0.019365681, + -0.0051696734, + -0.020105572, + -0.01897031, + -0.025312804, + -0.00076163147, + -0.016688867, + -0.025622325, + 0.013403363, + 0.016278163, + -0.0071089813, + -0.02382284, + -0.0095495945, + -0.00527553, + 0.026803045, + -0.027266568, + -0.023147972, + -0.020488394, + -0.007527879, + -0.00988759, + -0.030434987, + -0.012772812, + -0.023400497, + -0.0038757971, + -0.012079384, + 0.0035716556, + -0.017275944, + -0.017238967, + -0.011531416, + -0.02764574, + -0.019644797, + -0.013874168, + -0.005035106, + 0.0030512242, + -0.006047885, + -0.013006646, + 0.0030995873, + 0.010007663, + -0.018100442, + -0.015586672, + 0.009684096, + -0.01729484, + -0.008558502, + -0.020749018, + -0.013623359, + 0.020505168, + -0.03337125, + -0.02073781, + 0.0017390625, + 0.03776187, + -0.010356437, + -0.023549043, + -0.025024567, + 0.00065811176, + -0.0072470135, + 0.0037909409, + -0.01470574, + -0.000782453, + -0.0041727787, + -0.007970566, + -0.0046601696, + -0.0019022368, + -0.014779482, + 0.010952928, + 0.00018207986, + -0.007965596, + -0.0010851272, + -0.009761391, + -0.0048271515, + -0.00030046832, + 0.01046145, + -0.02175509, + -0.0023736653, + -0.01691623, + 0.010272001, + 0.004675567, + -0.026213406, + -0.024252009, + -0.008984372, + -0.031399205, + -0.01916257, + -0.026269678, + 0.01401956, + -0.007165333, + -0.024877438, + 0.00662541, + -0.03187675, + -0.0045352858, + -0.013577541, + -0.027770033, + -0.007904611, + 0.0018618717, + -0.010644441, + -0.0067008776, + -0.01255937, + -0.012250774, + -0.0034727969, + -0.0020429853, + 0.014192013, + -0.032546453, + -0.021359427, + -0.013519272, + -0.01211666, + -0.025190791, + -0.010384227, + -0.0048902794, + -0.023061654, + -0.012846003, + -0.018735612, + -0.019366268, + -0.0064087906, + 0.005358493, + 0.0033657034, + 0.003967598, + -0.0036955355, + 0.0099062985, + 0.0030039537, + -0.015618775, + -9.9418314e-05, + -0.0067996774, + 0.0031557814, + -0.021728951, + -0.015255394, + 0.003035884, + -0.0010261254, + 0.005054305, + -0.01916928, + -0.017548677, + -0.03325367, + -2.8042678e-05, + -0.013370776, + -0.015104446, + -0.025756901, + 0.003846072, + 0.009900889, + -0.021402638, + -0.013418784, + -0.0050451388, + -0.008730201, + -0.0088237645, + 0.028436039, + -0.02224128, + -0.003478311, + -0.0022337553, + -0.020231217, + -0.015538502, + -0.0013770722, + 0.009135682, + -0.027423734, + -0.02722507, + -0.029143538, + -0.012440737, + 0.0052751875, + -0.0036352433, + 0.0022686045, + 0.005008392, + -0.0019054052, + 0.00510283, + 0.016873365, + 0.04058667, + 0.0135076735, + -0.0029595643, + -0.02354261, + -0.0066109435, + -0.011875144, + -0.017399581, + -0.011366856, + -0.00032897314, + -0.011043299, + 0.014950012, + -0.0129616065, + -0.018122753, + 0.0058776867, + -0.045135345, + -0.039347924, + 0.0031405285, + 0.004607627, + -0.02493806, + -0.01193962, + 0.012732484, + -0.0032074107, + 0.0028765684, + -0.018709637, + 0.0007393778, + -0.006268335, + -0.02906549, + 0.013543366, + -0.019001933, + -0.002082095, + 0.0111824805, + -0.020521358, + -0.033125117, + -0.014549626, + -0.021877788, + -0.016277667, + -0.017274754, + -0.006608396, + -0.011807978, + -0.0036645783, + 0.00025849766, + 0.00031313073, + -0.0020449169, + -0.0019116263, + -0.035828095, + 0.0037252088, + 0.0067700516, + -0.00019001358, + -0.024460645, + -0.009434242, + 0.006932598, + -0.03114246, + -0.014332041, + 0.014981211, + 0.009060309, + -0.001609347, + -0.015705818, + -0.026464922, + -0.007115049, + 0.011598873, + -0.014793982, + -0.002329794, + -0.00048029688, + -0.033423077, + -0.015627695, + -0.005510481, + 0.020426774, + -0.014619913, + -0.02538613, + -0.011924911, + -0.028741287, + 0.00019106122, + -0.003913319, + -0.008592133, + -0.016012399, + 0.012883544, + -0.030659836, + -0.015133586, + -0.045244973, + -0.032019258, + -0.026963789, + -0.018739946, + -0.020603623, + -0.013063709, + -0.012922915, + -0.015299009, + -0.02059587, + -0.0030085307, + -0.012731506, + -0.0068074, + -0.0067111803, + -0.037907876, + -0.0012509133, + -0.010302886, + -0.020033017, + 0.00049508386, + 0.008918314, + -0.033369496, + 0.0016971953, + -0.016566426, + -0.007890876, + -0.0010618987, + -0.012041212, + -0.027085943, + -0.01226831, + -0.019486329, + 0.010598123, + -0.01845503, + -0.025073228, + 0.00037554433, + 0.0042909775, + -0.008896764, + -0.0021565093, + 0.020020898, + -0.01872704, + 0.008776449, + -0.011490048, + 0.0070172125, + -0.017781084, + -0.002604601, + -0.018567188, + -0.02123685, + 0.010588183, + 0.006635645, + -0.0087856455, + -0.004102616, + 0.012007677, + -0.011906664, + -0.046759736, + 0.01537049, + 0.003047625, + 0.0034029174, + -0.008702434, + 0.0013130868, + -0.016138254, + 0.011543393, + -0.008929641, + -0.0005805368, + 0.0056583853, + -0.007090679, + -0.01237735, + -0.008872778, + -0.027228339, + -0.02173254, + -0.0008773012, + -0.021957615, + -0.009746666, + -0.0145532545, + -0.00078443944, + 0.001427429, + -0.015447245, + -5.363495e-05, + -0.017801002, + -0.035125535, + 0.007623155, + 0.021770198, + 0.005856556, + 0.019999342, + -0.017500171, + -0.011400373, + -0.012993713, + -0.015990984, + -0.01733908, + -0.015655594, + 0.0027542873, + -0.011869963, + -0.032739528, + 0.0014890219, + 0.010220126, + 0.0055184374, + 0.0075906757, + -0.038079627, + 0.010522383, + -0.004219856, + 0.0010694796, + -0.004273893, + 0.000784006, + 0.01648684, + -0.03296872, + 0.0044137486, + -0.018863669, + -0.014272956, + -0.02207606, + -0.0078323195, + 0.023194741, + 0.013928223, + -0.01601617, + 0.009235702, + 0.004288114, + -0.014282997, + 0.013499631, + -0.010084417, + 0.0045009744, + 0.018770479, + -0.021133123, + -0.0026563462, + -0.010263403, + 0.003342146, + -0.006425924, + 0.002991564, + 0.0364116, + -0.020701334, + -0.007992729, + 0.0019423838, + -0.01120146, + -0.009714562, + 0.00194715, + -0.015626006, + 0.012318802, + -0.0048911716, + -0.031030495, + -0.005841921, + -0.012265953, + 0.008915117, + -0.022243282, + -0.01687603, + 0.0070616184, + 0.0042828987, + -0.00011261677, + 0.0021406217, + -0.021880992, + -0.015434963, + 0.008211672, + -0.012134003, + -0.018823935, + -0.011537473, + -0.0061550695, + -0.0033856533, + 0.0014743453, + -0.01881694, + 0.0011998822, + 0.0012366113, + -0.0027048895, + 0.012952041, + 0.008808151, + -0.024522275, + 0.0017582619, + 0.028368177, + -0.0018852223, + -0.017338563, + -0.028429817, + 3.2921642e-05, + 0.0147281, + 0.015104802, + -0.035495505, + -0.012958316, + -0.0003664899, + -0.015205918, + -0.0136132175, + 0.0080020595, + 0.010578769, + 0.0033404483, + -0.002949817, + -0.0006998234, + -0.012940634, + -0.014859275, + -0.0024494333, + 0.0005010722, + -0.009162505, + 0.016304672, + -0.015009067, + -0.026076632, + -0.018964028, + -0.010592483, + 0.018050672, + -0.014194461, + -0.007043604, + -0.006486479, + 0.0055395854, + -0.006938323, + -0.02647731, + -0.036442917, + 0.017605279, + -0.009113688, + -0.011491171, + 0.022124674, + -0.005628544, + -0.014223114, + -0.0140916305, + -0.00277065, + 0.0077081635, + -0.006955159, + -0.009253346, + -0.021920415, + -0.015733648, + -0.007965905, + 0.026459787, + 0.016073981, + -0.02675079, + -0.0051026815, + -0.00055567914, + 0.005685975, + 0.00055258995, + -0.0012888769, + 0.0036531358, + -0.027890371, + -0.024283925, + -0.006910773, + -0.0198659, + -0.004959412, + -0.00019293441, + -0.005738867, + -0.016194891, + -0.00795826, + 0.0047448636, + -0.018667605, + -0.01443083, + 0.008750549, + -0.025668092, + -0.012216708, + 0.009083848, + -0.008196973, + 0.0069248136, + -0.010378277, + -0.022511825, + -0.0074078925, + -0.013933549, + -0.0139294835, + -0.022750493, + -0.01908268, + -0.020685166, + -0.009972628, + 0.005768771, + -0.01600038, + 0.0064101075, + 0.0029456518, + -0.01704003, + -0.0023315914, + -0.00060488406, + -0.008319029, + 0.0095520625, + -0.0049206275, + -0.020706471, + -0.017359788, + -0.037135653, + -0.02664643, + -0.013750439, + -0.022780687, + -0.003897462, + -0.010808531, + 0.0068733995, + -0.021837423, + -0.005392744, + -0.0063863276, + 0.005719425, + 0.015235708, + -0.01724219, + 0.009129568, + 0.017584074, + 0.007622048, + 0.010753285, + -0.011975241, + -0.008190994, + -0.005551764, + -0.011807849, + 0.011429797, + 0.010249046, + -0.012225949, + -0.009433576, + -0.008735636, + 0.019430134, + 0.018441344, + -0.012690047, + 0.0064265067, + -0.0115216235, + 0.009148032, + -0.0055602393, + -0.0028321608, + 0.03543924, + -0.019248262, + -0.012331025, + -0.013349461, + -0.013456843, + -0.0024420023, + 0.0046136673, + 0.00035340522, + -0.0018469462, + -0.028191023, + -0.0109140845, + -0.012506898, + -0.012383584, + -0.016165264, + 0.0022917222, + 0.025143066, + -0.017901322, + 0.0050284187, + -0.014251102, + -0.019375712, + -0.006389235, + 0.007164513, + 0.020960769, + 0.0047311154, + 0.0028825472, + 0.00024882806, + -0.005735276, + -0.016817624, + -0.0017834781, + -0.018916614, + 0.00815126, + -0.010639418, + -0.0046849833, + -0.0021315652, + 0.01235729, + -0.039565314, + 0.0055318167, + -0.00080695236, + -0.025537446, + 0.009856265, + -0.004428624, + -0.023371015, + -0.0019943235, + 0.0091303745, + -0.0006260254, + 0.011632415, + -0.005254589, + -0.011726606, + -0.022266366, + 0.009514733, + -0.009078458, + -0.0019087495, + -0.007828763, + -0.0053461, + 0.033707473, + -0.019881357, + -0.0073495936, + -0.017372746, + 0.0085072005, + -0.0064358474, + -0.017649258, + -0.026499461, + -0.03222068, + 0.014521852, + -0.0037439321, + -0.012111545, + -0.0021899545, + -0.023702513, + -0.0044292226, + -0.02268524, + -0.0019048533, + -0.0048076925, + -0.008981545, + 0.010365235, + -0.0074025323, + -0.016876781, + -0.0022196083, + -0.009835862, + -0.025526874, + 0.007657838, + 0.0124405455, + -0.011228869, + 0.012970525, + -0.0024868492, + -0.006721585, + 0.01993221, + -0.010062194, + -0.027880039, + -0.0031925156, + 0.0035769916, + 0.010791555, + -0.004480068, + -0.028127553, + -0.0060050506, + 0.0055219326, + -0.024189908, + -0.008835126, + -0.032364093, + 0.015846575, + -0.008623024, + -0.017670184, + 0.028663585, + -0.017566314, + -0.013954844, + 0.013076685, + -0.010321507, + 0.0048400974, + 0.0038723347, + -0.0062474166, + -0.0022529315, + -0.0020746174, + -0.020318002, + -0.035218757, + -0.037631497, + 0.027395383, + -0.0057605095, + -0.011045203, + 0.0014792344, + -0.010826546, + 0.01700724, + -0.012438459, + -0.02576497, + -0.002952537, + -0.015622621, + -0.011883349, + -0.0016247005, + 0.010228434, + -0.026992107, + -0.016434157, + -0.037077703, + 0.012214908, + -0.00046405566, + -0.0015639028, + 0.0012401668, + -0.013115291, + -0.024926538, + -0.02860314, + 0.011523564, + 0.001104833, + 0.009523378, + -0.006371193, + 0.0029978494, + 0.0027441182, + -0.007328199, + 0.0037157398, + 0.0013619676, + -0.0006709341, + -0.008122478, + -0.011847905, + -0.008069577, + -0.010937014, + -0.007818203, + -0.006347325, + -0.0031274902, + 0.0020634283, + 0.015179863, + -0.0019354655, + -0.020787757, + -0.008096414, + -0.0148661975, + -0.009876738, + -0.029670335, + -0.0018673697, + -0.0333902, + -0.013123959, + -0.0063870335, + -0.007929978, + -0.000985882, + -0.010292945, + -0.009198961, + -0.0354781, + -0.0029099365, + -0.019295067, + 0.0014553585, + -0.020380804, + -0.018379726, + 0.014378272, + -0.014542259, + -0.007661074, + 0.00034547827, + -0.018245973, + -0.018690512, + -0.01842236, + -0.014893717, + -0.00036786226, + 0.029909695, + -0.010637368, + -0.022142619, + -0.021699542, + -0.010472844, + 0.014305375, + -0.018423762, + -0.008690758, + -0.016806476, + -0.018055392, + -0.028210731, + -0.022394199, + 0.0031018984, + -0.0011137745, + -0.01245276, + -0.016580462, + 0.0052716136, + 0.008577144, + 0.0012442623, + 0.00807712, + -0.00717317, + -0.017082091, + -0.006981188, + -0.0041658985, + -0.018185766, + -0.009274448, + -0.032715242, + -0.016250383, + -0.013183998, + -0.017728314, + -0.00891085, + 0.02613622, + 0.0027487946, + -0.016857293, + -0.021227557, + -0.02071585, + -0.019692551, + -0.0071574138, + 0.016805377, + 0.002844514, + 0.018251931, + 0.0021700575, + -0.014911894, + -0.01857448, + 0.0005449586, + -0.022035027, + -0.01823843, + -0.005958272, + -0.018498331, + 0.0012839885, + -0.014513852, + -0.015835622, + -0.014953368, + -0.027917705, + 0.009679721, + 0.042985547, + -0.010687122, + 0.01147996, + 0.00026881916, + -0.008594879, + 0.015116011, + -0.019227417, + -0.0033752946, + -0.0016123811, + 0.014121204, + 0.0077406946, + -0.036524676, + 0.0037074932, + -0.012685364, + 0.0024799223, + 0.018315716, + -0.013456733, + -0.0020907144, + -0.009496142, + -0.007850047, + -0.0045964904, + -0.012042959, + -0.007836148, + -0.015111634, + -0.034974676, + -0.013457274, + -0.011360976, + -0.014948259, + -0.015573095, + 0.030500013, + -0.01735289, + -0.016644249, + -0.0020337556, + -0.0029978054, + -6.0847462e-05, + 0.0121894, + -0.008663342, + -0.016783495, + -0.018856265, + -0.013363392, + -0.0032216199, + -0.017449709, + -0.015837537, + -0.0009600482, + -0.0028134198, + -0.000801228, + -0.025610344, + 0.020534582, + -0.005139185, + -0.029899139, + 0.008807721, + 0.0019229417, + -0.0034478432, + -0.007124234, + -0.0022115826, + -0.020693433, + -0.00051026954, + -0.02461688, + 0.0063117105, + -0.0045516943, + 0.010427951, + -0.0012566892, + -0.014827044, + -0.013540306, + -0.017498124, + -0.0071516503, + 0.0059750103, + -0.024535533, + -0.020657219, + -0.047834743, + -0.011423819, + 0.00040754408, + -0.019918356, + -0.028619379, + 0.0027131252, + 0.0018891817, + -0.015150735, + -0.004727924, + -0.013538704, + -0.018415004, + -0.020163981, + -0.008485755, + 0.014167093, + -0.004470516, + 0.010467599, + 0.0035698565, + 0.0013616842, + -0.018865544, + -0.012802382, + -0.024579333, + -0.007015614, + -0.020625684, + -0.0070342477, + 0.006901247, + -0.00742114, + -0.012798092, + -0.012593511, + -0.002173157, + -0.021138256, + -0.013899908, + -0.0029422373, + -0.0076179476, + -0.0028849002, + -0.0017963926, + 0.0030867904, + -0.02599381, + 0.026741132, + -0.009273853, + -0.01025821, + -0.007294473, + -0.009346643, + -0.00792693, + 0.007921, + 0.009827239, + 0.018967692, + -0.0100596575, + 0.0012030627, + -0.009282791, + -0.0059839645, + -0.022723367, + -0.021845305, + -0.011660033, + -0.005270844, + -0.021751506, + 0.0066446923, + -0.018724695, + -0.011124381, + 0.024876295, + -0.00042396443, + -0.029000785, + -0.003736455, + -0.028102998, + 0.008449984, + -0.011538915, + -0.013410925, + -0.013555061, + -0.015188935, + -0.006195661, + -0.007971962, + -0.037697997, + 0.007443418, + 0.0331884, + -0.019495878, + -0.027931545, + 0.009725248, + -0.0070411265, + -0.036365815, + -0.03480602, + -0.023245858, + -0.019121574, + -0.008635545, + -0.00051450887, + 0.004819137, + -0.012022973, + 0.0021471432, + -0.015887525, + -0.025608988, + 0.006668563, + 0.011506632, + -0.008199855, + 0.018849537, + -0.035091355, + 0.014894367, + 0.006548058, + -0.020576175, + -0.022944449, + -0.028545342, + -0.015701478, + 0.02058162, + -0.0047331722, + -0.016166283, + 0.0045354646, + 0.0020878795, + 0.0011922581, + 5.5353852e-05, + 0.0015709382, + 0.0065983236, + -0.008886084, + -0.015535115, + 0.014131853, + -0.015128584, + 0.009056322, + -0.015311979, + -0.010555022, + 0.00842849, + -0.017808259, + -0.0025157353, + -0.0141229965, + -0.026857056, + 0.007816073, + -0.009310566, + -0.006833054, + 0.002888639, + 0.0058011413, + -0.0035165767, + 0.0030032557, + -0.025690883, + 0.0064409142, + -0.016836142, + 0.0010068003, + 0.0148319565, + -0.028427301, + -0.03254972, + -0.033026468, + -0.0011691897, + -0.0044676387, + -0.013438607, + -0.029892467, + -0.017997118, + -0.010945155, + -0.013925111, + -0.02918644, + -0.012561062, + 0.00253647, + -0.015700065, + -0.016607601, + 0.005393906, + 0.0070481617, + 0.004678372, + -0.011832519, + 0.020806907, + -0.021230644, + -0.021098493, + -0.007330802, + -0.022220632, + -0.0020098158, + -0.0009734268, + 0.0058883466, + 0.03005122, + 0.005560842, + -0.0072702654, + -0.029897308, + -0.01751967, + 0.003082693, + -0.020085704, + -0.004715526, + 0.007463395, + -0.0084888665, + -0.0069338223, + 0.0031703103, + -0.0069719506, + 0.009032128, + 0.010581422, + -0.023057122, + 0.008314278, + -0.007051217, + -0.015874261, + -0.023574984, + 0.0016429549, + 0.0060635195, + -0.008826745, + -0.019628279, + 0.0032834518, + 0.017967833, + 0.005240633, + 0.00618155, + -0.017093124, + 0.0046228017, + -0.017316425, + -0.019925024, + 0.011282491, + -0.005132743, + -0.018199775, + 0.0028928716, + 0.0004341654, + -0.023196584, + -0.0046835532, + -0.010138868, + -0.009088735, + -0.020348562, + 0.0037993642, + -0.011340551, + 0.026004927, + -0.007905961, + 0.032157425, + 0.003986403, + -0.030065997, + -0.0056694676, + -0.023411427, + -0.011778486, + 0.001799439, + -0.018725155, + -0.0019893849, + -0.002068716, + 0.0035479781, + -0.027495796, + -0.0004499433, + -0.03682858, + -0.01683574, + -0.018766815, + 0.003827607, + -0.02299712, + -0.02412925, + -0.023047427, + -0.004057627, + -0.0012767967, + 0.0006121198, + -0.00500687, + -0.02427538, + 0.025914129, + -0.022721248, + -0.010005215, + 0.0031592932, + 0.010729092, + -0.03161002, + -0.012144856, + 0.002713043, + -0.0119004315, + -0.027207026, + -0.01590436, + -0.012266997, + 0.0026630186, + 0.0037550975, + 0.001388914, + 0.009059062, + -0.0095635615, + 0.023862887, + 0.004172451, + -0.0024264527, + 0.00026784703, + -0.0035182561, + -0.0020141187, + -0.010198412, + -0.021689026, + -0.0066981297, + -0.0015877722, + -0.026020242, + -0.0070746983, + -0.008527801, + -0.012082449, + 0.02859621, + 6.4533684e-05, + -0.02256417, + -0.0010358831, + -0.03581733, + -0.018172259, + -0.0023702385, + 0.023642717, + -0.0031016264, + -0.017903442, + 0.0046747904, + 0.0013753205, + -0.010834963, + -0.013182677, + -0.017873067, + -0.0071747876, + -0.016093781, + -0.021199267, + -0.028018733, + 0.004092746, + 0.009727152, + -0.02574073, + -0.013444142, + -0.033374716, + -0.025478827, + -0.010085115, + -0.016292045, + 0.0019590827, + -0.014711201, + -0.007614431, + 0.02024879, + -0.002617068, + -0.013003635, + 0.0066725747, + -0.023729008, + -0.0042836037, + 0.009670323, + -0.016556635, + -0.026818728, + -0.01192516, + -0.02816993, + -0.026521552, + -0.04151131, + -0.031072788, + -0.025431978, + 0.014479966, + -0.019415066, + -0.0322219, + -0.023457346, + 0.0022237608, + 0.005561659, + 0.001513736, + 0.009198196, + 0.013009655, + 0.0023205958, + -0.013557799, + 0.00077152747, + -0.0030302326, + 0.020717563, + 0.0008394145, + -0.021619223, + -0.026264364, + -0.03358136, + -0.029864246, + -0.01856766, + 0.00936972, + 0.012062072, + -0.04193946, + 0.020010248, + -0.0005447218, + -0.014036691, + 0.003577455, + -0.01048705, + -0.025698664, + 0.010217543, + -0.023044039, + -0.006139352, + -0.0032624695, + -0.012624191, + 0.0041880184, + 0.00926525, + 0.0072127087, + -0.0082281595, + -0.013586463, + -0.0059478404, + -0.008869545, + -0.017332321, + 0.0024993306, + 0.0030681556, + 0.0076857884, + -0.013488881, + -0.009255012, + 0.035506465, + -0.0049995603, + 0.0103451125, + -0.009670433, + -0.022284318, + -0.021882206, + -0.024051564, + 0.0012863461, + -0.0189948, + -0.015505804, + 0.009906589, + -0.00032013986, + -0.022776857, + -0.01732874, + 0.0031041715, + -0.028514097, + -0.032875843, + -0.0018591391, + 0.010881002, + 0.008170463, + 0.0016573133, + 0.0015944752, + -0.024078598, + -0.0017207398, + 0.0097090695, + 0.0046830927, + 0.0016372018, + -0.007753588, + 0.0053268126, + -0.029985094, + -0.006788484, + -0.0048596477, + 0.013265312, + -0.0045570172, + -0.00094605633, + -0.015363746, + -0.02228732, + -0.0007091435, + -0.0135119995, + -0.008233607, + -0.00838106, + 0.0013263696, + 0.0063835033, + 0.009417557, + -0.023127561, + -0.028246835, + -0.011320461, + 0.001414867, + -0.01565986, + -0.025807979, + -0.011701215, + 0.018550567, + -0.014161136, + -0.0015586023, + -0.00037618863, + 0.0030145445, + -0.023168154, + 0.01596995, + -0.030958027, + -0.015010545, + -0.007824636, + -0.0004984472, + -0.01351799, + 0.014778522, + -0.011081987, + 0.01942531, + -0.004659893, + -0.008508824, + -0.0049837097, + 0.002852927, + -0.017126098, + -0.005905673, + 0.0025815885, + -0.008638884, + -0.007843636, + -0.014934512, + 0.009103021, + -0.008076325, + 0.022429101, + -0.0023110493, + 0.0057170214, + -0.0029554754, + -0.026275955, + -0.0029936484, + 0.0025012144, + -0.023446847, + -0.013879165, + -0.020997036, + -0.008393761, + 0.008407229, + -0.0013010108, + -0.010172918, + -0.027579501, + -0.022139622, + -0.01496587, + -0.020411385, + -0.00056273537, + 0.0046757953, + 0.006388644, + 0.013407703, + 0.006127502, + -0.017276747, + 0.00055224914, + -0.017140122, + 0.01602623, + -0.006461211, + -0.025663877, + -0.014639291, + -0.0153702125, + -0.010154511, + -0.0038092171, + -0.00869573, + -0.026133684, + -0.01465066, + -0.0021451449, + -0.015129253, + -0.0012421741, + -0.022091841, + 0.0009645665, + -0.0103876805, + -0.026432393, + -0.008697865, + -0.002945991, + -0.011707945, + -0.013341648, + -0.026063457, + 0.01853522, + -0.022568565, + -0.012160385, + -0.0039113704, + -0.022895195, + -0.009332502, + -0.014621626, + 0.00075503107, + -0.018512685, + -0.0050197314, + 0.007220169, + 0.0036318516, + 0.001491878, + -0.0027106924, + -0.010633494, + -0.0060495036, + 0.0018922468, + 0.009110787, + 0.01363343, + 0.0019229633, + 0.016420975, + -0.006397999, + 0.0031915847, + 0.011236665, + -0.02479808, + 0.006387276, + 0.005789293, + 0.0033754662, + -0.019704826, + 0.0041082096, + -0.010266631, + 0.026736833, + -0.0062937466, + -0.014120311, + -0.019122176, + -0.013949161, + 0.014376302, + -0.006775641, + -0.018062402, + -0.006292615, + -0.014123149, + 0.023970736, + -0.011164022, + -0.02687311, + -0.004046441, + 0.002228162, + -0.0028119166, + -0.01456618, + 0.00052988686, + -0.01783486, + 0.023923047, + 0.008114404, + -0.0016970758, + -0.0075646304, + -0.0020571803, + 0.0037986534, + -0.013551017, + -0.01143439, + -0.026859967, + 0.0012008925, + -0.0054677785, + -0.023622205, + 0.017966898, + 0.0038435136, + -0.00090522046, + -0.0034109934, + 0.009296691, + -0.0016067909, + 0.0030926936, + -0.037683643, + -0.032012746, + -0.030051215, + 0.011234567, + -0.014972094, + -0.016563283, + -0.036665663, + -0.0056890445, + -0.009912268, + -0.013979322, + -0.018320678, + 0.0016574983, + -0.0026688555, + 0.021319615, + 0.011159946, + 0.002504406, + -0.021298843, + 0.000757909, + -0.01309538, + -0.0041181166, + 0.008395895, + -0.0014936579, + -0.020177655, + -0.009881935, + 0.017348476, + -0.019309456, + -0.009961222, + -0.022093797, + -0.006525617, + 0.0005047897, + -0.009062097, + 0.0087825, + 0.022184337, + -0.01629791, + -0.022895973, + -0.011180425, + -0.020526698, + -0.004186639, + -0.0008499926, + -0.01692383, + 0.0018571907, + -0.020026853, + -0.0033712906, + -0.0059138467, + -0.0010775388, + -0.020707456, + -0.0049658716, + -0.0064291656, + 0.003796146, + 0.015862435, + -0.0012237023, + -0.01887141, + -0.011044632, + -0.024347976, + -0.0017148973, + -0.012528557, + 0.005219502, + 0.011586951, + -0.0024771837, + -0.01303627, + -0.0022459682, + 0.016502157, + 0.0067156376, + -0.031074498, + -0.008210855, + -0.026696624, + -0.0095193405, + -0.0007788394, + -0.0018842538, + -0.019364577, + -0.021328572, + -0.031760573, + 0.0007215099, + -0.02227267, + -0.02149441, + 0.00050928735, + 0.003498352, + -0.020967368, + 0.0125659, + -0.019749774, + 0.0045677354, + -0.0059772055, + 0.009860358, + 0.0035016595, + -0.013886463, + -0.0047462047, + -0.0028266911, + -0.025013246, + -0.00025399332, + -0.0039812415, + 0.027951783, + -0.026581986, + -0.022373913, + 0.019876841, + -0.031200018, + -0.02739428, + -0.0035180368, + -0.014008146, + 0.007454917, + -0.02028934, + -0.009856863, + -0.01437188, + 0.012254993, + 0.00087504584, + -0.018238256, + 0.008113398, + -0.0038249374, + -0.0058846315, + -0.018224044, + -0.0152059365, + -0.004779683, + -0.009989443, + -0.010964596, + -0.005943008, + -0.014307865, + -0.01333129, + 0.001825619, + -0.004500016, + -0.00820639, + 0.011090597, + -0.011481267, + -0.03941113, + -0.022890475, + -0.01057919, + -0.014199354, + -0.009174287, + 0.0072404863, + -0.008148706, + -0.020623023, + -0.018392272, + 0.0011606226, + -0.008260853, + -0.01168148, + -0.006883426, + -0.00038069836, + -0.00616832, + -0.016093243, + 0.0027982628, + -0.023853492, + -0.015390756, + -0.020510627, + -0.0075093256, + -0.004494187, + 0.009197934, + -0.011838745, + -0.0038569733, + -0.013365157, + -0.010369092, + -0.010306567, + -0.039375745, + -0.014188991, + -0.017794698, + -0.026526408, + -0.02517269, + -0.0075128633, + -0.007415556, + -0.024931876, + 0.012234207, + -0.011993165, + -0.016514426, + -0.0020632811, + -0.008934711, + -0.02101093, + -0.017180147, + -0.026874974, + 0.0040426487, + -0.023955425, + 0.009443641, + -0.04288237, + -0.0053950604, + -0.0018325408, + 0.007887056, + -0.0073982812, + 0.0038565765, + -0.042256713, + -0.010127973, + 0.000955445, + -0.0031450298, + -0.012447634, + -0.0001099342, + -0.0013266122, + -0.009707669, + -0.004765303, + -0.015736412, + -0.00088785146, + -0.004060955, + -0.020012705, + -0.022673715, + -0.023854375, + -0.0039693546, + -0.011339279, + -0.0061932644, + 0.0076055205, + -0.020175003, + -0.008238739, + -0.019949583, + -0.0012482376, + -0.00881483, + -0.0016340594, + -0.022764582, + -0.015801879, + 0.0019644166, + -0.026176982, + -0.0014635045, + -0.016286103, + 0.004486904, + -0.013713127, + 0.0010797586, + -0.004504103, + 0.003269195, + -0.014785033, + -0.0045545087, + -0.00862103, + 0.011735693, + 0.019397574, + -0.018238349, + -0.015537776, + -0.009488851, + -0.010671174, + -0.040253438, + 0.0009778317, + 0.028790453, + -0.0025584947, + -0.0026430842, + -0.012706397, + 0.017688284, + -0.018904593, + 0.0062306626, + 0.005108181, + -0.019950284, + -0.0053935554, + -0.025390739, + 0.008705314, + 0.0020725196, + -0.006064184, + -0.036470983, + -0.006682765, + -0.013842336, + -0.0042458535, + 0.0024168459, + -0.00037822122, + -0.00092949683, + -0.00815554, + 0.017336786, + -0.008487528, + -0.02193193, + -0.0006064116, + -0.010283366, + -0.024380656, + -0.021061193, + -0.0014101955, + -0.022237303, + 0.002565777, + -0.013649416, + 0.017389433, + 0.0024174424, + -0.0019001069, + -0.02343982, + -0.019333303, + -0.012644624, + 0.02414293, + -0.01255599, + 0.0121875545, + -0.037732966, + -0.012205369, + -0.018357662, + -0.03172636, + -0.0011366047, + 0.010318831, + 0.001385787, + 0.013136226, + 0.009176984, + -0.029353585, + -0.010567977, + 0.018412093, + -0.010489498, + 0.0056457142, + -0.024507387, + -0.0010812512, + 0.010999247, + 0.0052232817, + -0.0015675334, + -0.0158776, + -0.048364513, + -0.01416252, + -0.015474209, + -0.012235031, + -0.008486566, + -0.03352762, + 0.0029129959, + 0.006550493, + -0.004210903, + -0.002126832, + -0.010768953, + -0.0039844075, + -0.011595072, + 0.0004191409, + -0.0070631513, + -0.0018349658, + -0.019695178, + -0.01106951, + -0.028183164, + -0.029103711, + 0.014549831, + 0.020906497, + -0.006821927, + -0.0012393238, + -0.024468327, + -0.0038551998, + -0.017669799, + 0.014510262, + 0.004032998, + -0.00051699573, + 0.0026734283, + -0.010406201, + -0.022145085, + -0.013189138, + -0.018799795, + -0.0069484566, + 0.0052606463, + 0.013500939, + -0.021902127, + -0.017563654, + -0.029588072, + 0.007083841, + -0.009429745, + -0.002986707, + -0.008789021, + 0.0100343535, + -0.007686764, + 0.0060381396, + 0.016008273, + -0.0036295168, + 0.018283196, + -0.0049683284, + -0.00638892, + -0.007602132, + -0.0040778886, + -0.012373136, + -0.0004257782, + -0.0021001494, + -0.015039122, + -0.00024813515, + -0.03164473, + -0.0047816676, + -0.01635006, + -0.011729446, + -0.0030003046, + -0.03548683, + 0.0021400705, + -0.0048457854, + -0.021214293, + 0.018199926, + -0.0057596923, + -0.01738302, + -0.017863603, + 0.004851321, + 0.0011598067, + -0.006253495, + 0.0035871486, + 0.0059404066, + -0.00682478, + -0.012814591, + 0.011245589, + -0.006428102, + -0.021899886, + -0.009546989, + -0.002554174, + 0.009036185, + -0.0008810093, + -0.006063479, + 0.003082632, + -0.015764663, + 0.00047003847, + 0.0069724573, + -0.007518172, + -0.01817988, + -0.01390555, + -0.0017305734, + 0.0012097626, + -0.012016601, + -0.0035588664, + 0.002262477, + -0.019427968, + -0.015805019, + -0.006105309, + 0.0050448948, + 0.0092419265, + -0.012851132, + 0.013426276, + -0.01603573, + -0.02155454, + 0.0064039663, + 0.018844852, + -0.018260375, + -0.011544341, + -0.007908383, + 0.010832808, + -0.0051589673, + -0.0058400724, + -0.025191208, + 0.0057317303, + -0.01903371, + 0.0074426862, + -0.0018168399, + -0.022370333, + -0.0073978337, + -0.03593585, + -0.016317943, + -0.027633315, + 0.028015016, + 0.01091526, + -0.017082937, + -0.016415935, + -0.012417459, + -0.008751823, + -0.022161191, + -0.014334232, + 0.00011974266, + -0.021223638, + 0.014167148, + -0.009018372, + 0.018428616, + -0.009602171, + -0.007433642, + 0.0057247668, + -0.008171148, + -0.0008844919, + -0.01533645, + 0.0017104142, + -0.018274352, + -0.004828681, + -0.005526747, + 0.0088799335, + -0.031632636, + -0.006498736, + -0.0018724941, + -0.0077874986, + -0.019213457, + -0.01930488, + 0.003725097, + -0.022443853, + -0.010145273, + -0.008266922, + -0.002960789, + 0.0010621911, + 0.024582177, + -0.0072401995, + -0.010958307, + -0.0107083935, + -0.01890625, + -0.019949194, + -0.002799201, + -0.0025370042, + -0.020106988, + -0.0041036294, + -0.032409538, + -0.02252251, + -0.020838536, + -0.0026447647, + 0.00017683211, + 0.0058399923, + -0.0051781586, + 0.006544667, + -0.0052264943, + 0.011454573, + -0.013638667, + -0.03822095, + -0.015145074, + -0.021512741, + -0.008264595, + -0.011906838, + 0.029676415, + 0.006320111, + -0.0031035542, + -0.015141687, + 0.009779632, + -0.0054531, + -0.0026928282, + 0.013048767, + 0.014683979, + -0.00056368735, + -0.0059893616, + -0.0041012485, + -0.020033749, + -0.007745632, + -0.0058590434, + 0.0017522662, + 0.006870557, + -0.00734333, + -0.0095461635, + 0.00960408, + -0.009526583, + -0.005906677, + -0.022814902, + -0.004101647, + 0.0077846297, + -0.0148284435, + -0.005416539, + 0.0009559647, + -0.004461784, + -0.031067956, + -0.00451688, + 0.0058570416, + -0.011688071, + -0.012853649, + 0.0016552691, + -0.018887483, + 0.00019989753, + -0.0092290575, + 0.0022489391, + -0.013271296, + 0.00036280006, + -0.023128366, + -0.020853993, + -0.028550413, + 0.013106764, + -0.016378395, + -0.0017309996, + -0.026194127, + 0.014492818, + -0.010122814, + -0.00048219206, + -0.0215743, + -0.017942313, + -0.004617673, + -0.024890445, + -0.018015778, + -0.02109768, + -0.00882454, + -0.012833501, + -0.01556507, + -0.019518202, + 0.00055614905, + -0.015022534, + -0.0068886694, + 0.0019404273, + -0.007649542, + -0.017955376, + -0.021299526, + -0.032246105, + 0.0076690908, + 0.008878693, + -0.0010546927, + -0.009596989, + 0.0114483815, + 0.002382774, + -0.014512394, + 0.0013577252, + -0.02041057, + -0.011575363, + -0.018633902, + -0.0132325245, + -0.00062610296, + -0.016479854, + -0.030233035, + 0.0008261352, + 0.01588829, + -0.015665324, + -0.022088693, + -0.0008611116, + -0.03365222, + -0.029223783, + -0.02210423, + -0.009144693, + 0.01931693, + -0.023455901, + 0.00731701, + 0.010909867, + -0.019422492, + -0.014545107, + -0.015205516, + -0.015258598, + -0.008384309, + -0.0072530652, + -0.009856869, + -0.019532166, + -0.008390617, + 0.005058261, + -0.013031253, + -0.009300654, + -0.014804218, + -0.022434684, + -0.0104397675, + -0.0020186661, + -0.004472581, + -0.015376299, + -0.029502712, + -0.0030075565, + 0.0054119, + -0.005789492, + 0.01693772, + -0.009795963, + -0.013727265, + 0.0017227934, + -0.005209859, + -0.0008253248, + -0.019015389, + 0.025734683, + -0.028226012, + -0.02358455, + -0.02292504, + -0.0040041315, + -0.02654816, + -0.016850583, + -0.0010291653, + -0.0022322324, + -0.0004671709, + 0.0034611253, + 0.0064708916, + -0.015464488, + -0.027286757, + -0.011604807, + -0.015538966, + -0.01876923, + -0.01834755, + 0.0014637845, + 0.0012850465, + -0.010308554, + -0.01475939, + -0.013730507, + 0.00306973, + -0.02664112, + 0.008277369, + 0.007780709, + -0.0023448272, + -0.0056286072, + -0.0026705423, + -0.012295761, + -0.011578546, + 0.009459013, + -0.01604266, + -0.016541718, + 0.0022516933, + -0.017895862, + -0.0053098393, + 0.0016267397, + -0.0033496295, + -0.031885646, + -0.0042046406, + -0.023511792, + -0.009471206, + -0.030623266, + -0.009212799, + -0.0008460326, + -0.0234966, + -0.008275272, + -0.035620306, + -0.011061256, + -0.007460061, + 0.0020704563, + -0.0024143944, + 0.012566942, + -0.00070350437, + -0.0070892205, + -0.006282993, + 0.006820444, + -0.0041021127, + 0.014525322, + -0.018830093, + -0.007367632, + -0.01236228, + -0.008978936, + -0.023743935, + -0.010019054, + -0.007807584, + -0.0052439845, + 0.007491239, + -0.008845278, + -0.0133093055, + -0.024481399, + -0.004907348, + -0.035091028, + 0.0069132163, + -0.009127765, + -0.007270039, + -0.00749776, + -0.0015521199, + -0.0073884404, + 0.006507267, + -0.016845476, + 0.0042151688, + -0.02387531, + -0.0031355675, + -0.025990775, + -0.017091965, + 0.018015208, + -0.020657256, + -0.0036172513, + -0.020412963, + -0.011867695, + 0.007640841, + 0.024993103, + 0.0038309724, + -0.012362341, + 0.0023068371, + -0.031497546, + -0.025182037, + -0.024877487, + 0.007042909, + -0.026107777, + -0.010390477, + 0.0062487787, + -0.0044444115, + -0.024341542, + 0.008629883, + -0.018042149, + 8.725437e-05, + -0.015056939, + -0.0028573095, + -0.033383485, + -0.010111868, + -0.043770276, + -0.010047491, + -0.009543415, + -0.025034394, + -0.02272074, + -0.012271055, + -0.007666142, + -0.00023456449, + -0.012818809, + 0.0038079796, + 0.0067773736, + -0.007539006, + 0.005025786, + 0.0034678846, + -0.0057654586, + -0.015525921, + -0.0079209665, + 0.027553543, + 0.0043001254, + -0.0010695462, + -0.014220893, + -0.011689253, + 0.019513164, + 0.00067903346, + -0.03820222, + 0.0054441593, + -0.008184195, + 0.011533449, + -0.009860527, + 0.031574484, + -0.015181827, + 0.01885299, + -0.008860642, + -0.006331826, + -0.012104218, + 0.003657627, + -0.016137375, + -0.020887371, + -0.00037901427, + 0.011031862, + -0.008899075, + 0.0052950727, + -0.0154191265, + 0.021406, + -0.0085664615, + 0.0019758984, + 0.007682216, + 0.0026159554, + -0.009788155, + 0.017451923, + -0.010687672, + -0.013216421, + -0.013897591, + -0.003104785, + 0.007371339, + -0.00017856255, + -0.0028333098, + 0.0099974815, + -0.012448693, + -0.01828023, + -0.023879925, + -0.018694803, + 0.00065581803, + -0.010138319, + -0.014209091, + 0.007480609, + -0.008312827, + 0.003583329, + -0.012302121, + 0.003987225, + -0.029312385, + -0.027754014, + 0.012787907, + 0.016389944, + -0.0044343574, + -0.010373982, + -0.02283791, + -0.016360503, + -0.013272695, + -0.00976817, + -0.0053491066, + -0.0059520532, + 0.024499403, + 0.010152172, + -0.007763623, + 0.003295187, + 0.023716742, + 0.019983232, + -0.01259877, + -0.002542254, + -0.024660354, + -0.017378991, + -0.010277153, + -0.011423446, + -0.008799453, + 0.0030456025, + 0.013711144, + -0.0010941646, + 0.004414366, + 0.004902308, + 0.010344592, + -0.029898915, + -0.008106909, + -0.01734264, + -0.001760027, + -0.0053870687, + -0.008487043, + -0.009302543, + -0.000541483, + -0.014842402, + -0.01419476, + -0.008907084, + -0.015403339, + 0.0073113223, + -0.01886343, + 0.006457385, + 0.0027757068, + -0.0125775775, + -0.0047425446, + -0.03352314, + -0.009795431, + -0.042584237, + -0.003958733, + 0.0037185075, + 0.0014796542, + -0.0155561175, + -0.019500945, + 0.002162752, + -0.014305314, + -0.011328413, + -0.0039430046, + -0.020139458, + -0.005097851, + -0.004551309, + 0.007280223, + 0.015598558, + 0.0034730353, + -0.017808221, + -0.033141706, + 0.0054864013, + 0.005932507, + -0.0077315625, + -0.013676106, + -0.0045808777, + -0.011761241, + -0.008294426, + 0.015907673, + -0.002596728, + 0.0010807395, + -0.0027678197, + -0.012110014, + -0.020066848, + -0.021788593, + 0.007009926, + -0.0055028712, + 0.019857328, + -0.014252258, + 0.0006644887, + -0.021072913, + -0.003475818, + -0.007421309, + -0.0025795402, + -0.0054212925, + -0.005306245, + 0.011473205, + 0.003457223, + -0.044892408, + -0.009456436, + -0.013639383, + -0.0070406455, + -0.0076870434, + -0.018698022, + 0.009326901, + -0.025395641, + -0.0254335, + 0.0007135301, + 0.012127761, + -0.023519317, + -0.018532082, + 0.010895072, + -0.028157916, + -0.0058843973, + -0.012027705, + 0.0037210672, + 0.019172024, + -0.015001431, + -0.020808429, + 0.017179392, + -0.013127106, + -0.009090093, + -0.019930638, + 0.031698756, + 0.0010931309, + -0.002655632, + -0.006416036, + -0.01707921, + 0.0067134053, + 0.0056354264, + 5.7249526e-05, + -0.023392482, + -0.011255843, + -0.02063504, + -0.018762287, + -0.04080432, + -0.008059596, + -0.015987044, + -0.029414205, + 0.026904218, + -0.03172495, + -0.015870927, + -0.0025077702, + 0.0076385387, + -0.021660017, + 0.01936243, + -0.004133568, + -0.003574846, + -0.0027683533, + -0.013204847, + 0.0064788437, + -0.017254671, + -0.019225026, + -0.010881234, + 0.02462986, + -0.021370776, + -0.014079301, + 0.0053971843, + 0.016146885, + 0.0038198335, + -0.011530747, + -0.020741971, + -0.003979725, + -0.012965857, + -0.0034658206, + 0.0044124555, + -0.009475523, + 0.0035080663, + -0.0013788071, + -0.0087212995, + -0.016940327, + -0.012021273, + -0.029207103, + 0.0027494908, + -0.0032213177, + -0.018688913, + 0.0012751425, + 0.009633395, + -0.02098706, + -0.006566491, + -0.01400486, + -0.001681275, + -0.01666462, + 0.00061399204, + 0.011513572, + -0.020769162, + 0.017567175, + -0.018017009, + -0.025186475, + -0.021237595, + -0.01776628, + 0.0014527952, + -0.013989829, + -0.010170721, + -0.013185957, + -0.028994387, + 0.0129676815, + -0.0044581573, + 0.0010631953, + -0.0023332536, + -0.0011804914, + 0.0050252196, + -0.011483586, + -0.00170716, + 0.01285564, + -0.015975615, + -0.0130962245, + 0.0039599235, + 0.020006217, + -0.0067141596, + -0.019554071, + -0.006185303, + -0.012278884, + 0.0011510161, + -0.0150457965, + -0.03865597, + -0.002804489, + -0.026891189, + -0.024075206, + -0.028630858, + -0.01160955, + -0.010758792, + -0.032556716, + -0.003247971, + -0.015790366, + -0.03530473, + -0.029946677, + 0.003195484, + 0.004260233, + 0.020129263, + -0.0035704738, + -0.011394658, + 0.001243599, + -0.027668925, + 0.004566147, + -0.019766266, + -0.012639571, + -0.017288081, + 0.0055017862, + 0.01751738, + -0.016781151, + -0.008764025, + -0.0033694743, + -0.011970061, + -0.013595986, + -0.009225298, + 0.015431991, + -0.0002420597, + -0.03727737, + -0.031572785, + 0.011441293, + -0.016639674, + 0.0023717203, + 0.011763191, + 0.0028607566, + -0.026376158, + -0.021332234, + -0.0028613696, + -0.004362758, + -0.025044054, + -0.0071885823, + -0.003506149, + -0.0029927236, + 0.0021576541, + -0.023459103, + -0.025921319, + -0.010388574, + -0.014350466, + 0.0016886985, + 0.01500815, + -0.0037346645, + -0.01795895, + -0.007548544, + -0.01203755, + 0.0023694283, + -0.012750498, + -0.007632834, + -0.014732163, + -0.0038206384, + -0.0350895, + -0.013947434, + 0.03673024, + 0.008063095, + -0.0036634812, + -0.020341069, + -0.012779393, + -0.013463508, + -0.009047736, + 0.009749158, + -0.007384777, + -0.015490096, + -0.005837298, + -0.008765221, + 0.010863717, + -0.015556565, + 0.020336894, + -0.00621612, + -0.013899102, + -0.0023689962, + -0.034872826, + -0.0010829386, + -0.015066254, + 0.00032734338, + -0.017078824, + -0.02335553, + -0.0060632303, + -0.035988506, + -0.014434746, + 0.0021039688, + -0.03724475, + -0.018662045, + -0.029564766, + -0.0062152077, + 0.010280277, + -0.021787444, + -0.02142502, + 0.0032937871, + -0.014315022, + 0.0021176934, + 0.007325252, + -0.00055455003, + -0.01431443, + -0.006149171, + -0.019786665, + -0.015031399, + -0.0303349, + -0.014558763, + 0.0037087838, + -0.007735861, + -0.020168858, + 0.0038218438, + -2.1213139e-06, + 0.020740885, + -0.00542871, + -0.03307719, + 0.0037547045, + 0.0056023174, + -0.0030865888, + -0.009604238, + -0.018687723, + 0.014934507, + -0.01899058, + 0.0019842514, + -0.0012795376, + 0.03688874, + -0.018276408, + -0.00043041975, + 0.016348615, + -0.014483924, + -0.0027288813, + 0.01674318, + -0.010914331, + 0.011988772, + 0.016501501, + -0.006323078, + -0.00475752, + -0.006306407, + 0.0026097707, + -0.0065413252, + -0.0400184, + -0.013167099, + -0.009540648, + 0.01503351, + 0.0012189307, + -0.0022703481, + 0.011177622, + -0.018359652, + -0.009440662, + -0.0015852904, + -0.010764241, + -0.032636266, + -0.011945548, + -0.0054289266, + -0.021174034, + 0.021124285, + -0.0017387954, + -0.027152387, + -0.004451696, + 0.0015338516, + 0.012315576, + -0.010076656, + 0.010964424, + -0.0014535045, + 0.005649923, + -0.031338774, + -0.0033804146, + -0.040367965, + 0.007859236, + -0.0065016174, + -0.0073208855, + 0.0030619253, + -0.0073921666, + 0.010256898, + -0.024942089, + 0.026062928, + -0.029544104, + -0.011329797, + 0.004710289, + -0.024911134, + -0.02685221, + -7.6484175e-05, + -0.010669664, + -0.01579838, + -0.010425559, + 0.009272949, + 0.0063855816, + 0.00047513892, + -0.0065818555, + -0.009812852, + -0.015914034, + -0.018296828, + -0.009026818, + 0.0068135923, + -0.0018517912, + -0.010235145, + -0.012958333, + 0.013885219, + -0.013060232, + -0.020527191, + 0.004668971, + -0.0038283502, + 0.013452668, + -0.0029451393, + -0.0017204939, + -0.017877983, + 0.0033134115, + -0.0066282395, + -0.002837742, + 0.004283695, + 0.0051946193, + -0.017543139, + -0.003991642, + -0.020548305, + -0.0015474762, + -0.0034422127, + -0.014788486, + -0.0176719, + -0.012643316, + -0.0033426976, + -0.027303085, + -0.015591851, + -0.027169066, + -0.0001911892, + -0.007783067, + -0.030110417, + -0.018019477, + -0.028701, + -0.008907603, + -0.0069405856, + -0.006043472, + -0.024514718, + -0.012612547, + -0.0032750226, + -0.006140058, + -0.0057917717, + -0.011589545, + -0.025186507, + -0.00213882, + -0.02764237, + -0.0026523492, + -0.0067934957, + -0.0072995103, + -0.012177467, + 0.0020728842, + -0.013978665, + -0.024133416, + -0.031109894, + 0.02486976, + -0.005111075, + 0.01779345, + -0.0032627461, + 0.0074675777, + 0.013078479, + -0.039849192, + -0.0049428665, + -0.018541023, + -0.019428432, + 0.012290044, + 0.0065814913, + -0.0020914753, + -0.006376668, + -0.025279379, + -0.00687464, + 0.007830165, + -0.009940777, + -0.024253545, + -0.011283407, + -0.022862392, + -0.008642032, + -0.010229612, + -0.0043137204, + -0.011201885, + 0.014587659, + -0.026508419, + -0.017434085, + -0.035366848, + -0.014266105, + -0.003220079, + 0.012889566, + 0.008918874, + -0.020578612, + -0.016481321, + -0.024509855, + -0.013464101, + -0.0021015455, + -0.029655278, + 0.008763479, + -0.009840134, + -0.0096559655, + -0.011952565, + -0.032096025, + 0.004802181, + -0.0010959888, + -0.017248778, + -0.024745261, + 0.0025310828, + -0.030592429, + 0.009628596, + -0.010220492, + 0.0023396157, + -0.0027574971, + -0.022166232, + -5.3230695e-05, + -0.015272196, + -0.0010915307, + -0.02221592, + -0.004596722, + -0.0073627196, + -0.0019098232, + -0.02386493, + -0.010002228, + -0.036783643, + -0.02079014, + -0.009540639, + -0.020277973, + 0.0015506468, + -0.019104434, + -0.013440896, + -0.014773529, + -0.01119216, + -0.0029578428, + -0.008796966, + -0.01671557, + -0.006833375, + -0.043872762, + 0.016681133, + 0.0077361213, + -0.011059036, + -0.0020571947, + -0.009617996, + -0.008399701, + 0.0040935595, + 0.004961891, + -0.009138361, + -0.015126764, + -0.013249265, + 0.040188484, + 0.012441057, + -0.012103346, + -0.021763189, + 0.024415063, + 0.0083482275, + -0.0140858665, + 0.009321308, + -0.010186908, + 0.0058608106, + -0.024424827, + -0.025227815, + -0.00407977, + -0.0027924406, + -0.0073610046, + -0.0040275077, + -0.009770943, + -0.024094494, + -0.015425579, + -0.017164016, + -0.008291768, + -0.029189749, + -0.0124161, + 0.0011932346, + -0.00064772915, + -0.011726594, + -0.0022364557, + -0.014072706, + -0.021615738, + -0.004546993, + -0.004473327, + 0.004384331, + 0.0042236624, + -0.007843785, + -0.0024218706, + -0.011528015, + -0.011207366, + -0.02048219, + -0.0025944693, + -0.0026496113, + -0.0154284565, + -0.020884514, + 0.0012441016, + -0.011474988, + 0.0045415135, + -0.00059845, + -0.019842397, + 0.005842057, + -0.021921763, + 0.008380143, + -0.025796117, + 0.0034708113, + -0.01787975, + -0.023726774, + 0.013502332, + -0.02027358, + -0.03092478, + 0.0044436995, + -0.014276752, + 0.0038237849, + 0.008395319, + -0.012079631, + -0.024011131, + -0.011190872, + -0.018019352, + -0.03794745, + -0.01800261, + -0.022297308, + -0.03284223, + -0.0150940195, + 0.0066525703, + -0.011451365, + 0.0120952595, + 0.025121218, + 0.00087360665, + -0.019366814, + -0.012267558, + -0.017699977, + -0.0004349104, + -0.00087407144, + 0.016177228, + -0.010774709, + -0.027166756, + -0.009433345, + -0.022515904, + -0.0012578864, + -0.022238746, + -0.00249512, + -0.018707927, + 0.01000453, + -0.007840316, + -0.016391708, + 0.00052961166, + -0.0058367746, + -0.024510331, + 0.023001056, + 0.026509995, + 0.020814588, + 0.0072061634, + -0.01273386, + 0.0034756484, + -0.0045192176, + -0.016112197, + -0.0050588995, + -0.009251237, + -0.020252993, + -0.0031822878, + -0.0092243515, + -0.018736225, + -0.008488817, + -0.022599889, + -0.006253418, + 0.010875928, + -0.0024408526, + 0.00584382, + -0.011780388, + -0.027813286, + -0.00075779436, + -0.043026086, + -0.008332232, + 0.0069852625, + -0.015429881, + 0.004629785, + -0.006328911, + -0.0006663538, + -0.015182042, + 0.0045983363, + -0.014811268, + -0.0467681, + -0.021814194, + -0.018895326, + 0.009507898, + 0.009683208, + 0.0034898059, + -0.00060344837, + 0.0014031806, + -0.01092582, + 0.0105305, + -0.02425214, + -0.005118911, + -0.0045065265, + -0.02267361, + 0.007017513, + 0.010574062, + -0.004897286, + -0.01870741, + -0.008621651, + 0.001385734, + -0.006991752, + 0.0035394223, + -0.012555584, + 0.017157182, + -0.004523661, + -0.007998738, + -0.021268593, + -0.020734774, + -0.0077246805, + -0.005083254, + 0.012014213, + 0.023229014, + -0.032372244, + 0.00042974003, + -0.011963119, + -0.040090047, + -0.0010907626, + 0.0012809896, + -0.0063530193, + 0.00859952, + -0.0006272918, + -0.0043658186, + 0.015062415, + -0.03218394, + -0.0032080726, + -0.041247893, + -0.0141529385, + 0.0094695175, + 0.0030250049, + -0.009730264, + -0.0130629195, + 0.021482864, + -0.040408123, + -0.017910682, + -0.008033255, + -0.012698106, + -0.026013445, + -0.00064863404, + 0.006371955, + -0.027290741, + -0.00400761, + -0.004234114, + -0.014669657, + -0.031408727, + -0.003575063, + -0.022043094, + -0.007801044, + -0.004373603, + -0.0038716118, + 0.0057252315, + -0.0039906213, + 0.021102725, + 0.010107041, + -0.025018493, + -0.031333666, + -0.008508301, + -0.0005851044, + -0.0117988335, + -0.0132763665, + -0.005049678, + -0.03443089, + 0.019129029, + -0.029411843, + -0.002074114, + -0.012007535, + -0.011224738, + 0.0015339673, + 0.0021180555, + -0.023311503, + -0.030034333, + -0.017959919, + 0.0044518225, + -0.00445045, + -0.004318105, + -0.004541889, + -0.02799975, + -0.009308226, + -0.014490961, + -0.030781055, + 0.0033126865, + -0.02534389, + -0.0023678986, + -0.016568063, + -0.0068275114, + -0.016875613, + -0.003901776, + -0.021299623, + 0.0052142073, + 0.026754906, + -0.01146926, + -0.00028684456, + -0.029465018, + 0.0049862, + -0.04458145, + 0.0054129316, + -0.0053845835, + -0.0037246924, + -0.013918653, + -0.008512444, + 0.005384014, + -0.013363304, + 0.008229768, + 0.021017715, + -0.005841247, + 0.0005685329, + 0.013245501, + -0.009856294, + 0.011630322, + 0.012761271, + -0.007865909, + -0.015632223, + 0.015276161, + -0.008514547, + -0.0112064835, + -0.0056451485, + -0.022934027, + -0.0058386037, + -0.026642565, + 0.007330389, + -0.003938972, + -0.013167279, + -0.016768698, + 0.010368981, + 0.01565426, + -0.013031476, + 0.0009610638, + 0.003792613, + -0.0147433495, + -0.002804109, + -0.023011623, + -0.005686657, + -0.017375719, + 0.004765267, + -0.0073545766, + -0.015431204, + 0.0043875193, + 0.0036123188, + -0.0057374537, + -0.014040206, + -0.011696391, + -0.027402248, + -0.01480902, + 0.017305253, + -0.011122912, + -0.007530216, + 0.0077225924, + -0.009199816, + -0.015278918, + -0.015813934, + -0.008001473, + -0.008035842, + -0.008541266, + -0.013483319, + -0.03003641, + -0.0022505152, + 0.00046945908, + -0.024317002, + -0.00088896125, + -0.020473003, + -0.0018340463, + -0.001297668, + 0.0042406237, + -0.01285921, + -0.0119003905, + -0.004669373, + -0.009293289, + -0.022729192, + -0.03408829, + -0.008179809, + 0.0040219296, + -5.7851415e-05, + -0.017007653, + -0.0089529, + -0.011254692, + 0.019981364, + -0.024562895, + -0.02420405, + -0.047226153, + -0.023627995, + -0.017295798, + 0.011944603, + 0.002176729, + -0.0008329911, + 0.0036696761, + -0.011590729, + -0.00535228, + 0.0026739908, + 0.006499685, + -0.02487156, + -0.010236506, + -4.0341005e-05, + -0.013511479, + -0.026953565, + 0.0055340636, + 0.012187441, + 0.0029738236, + 0.020332547, + -0.0024424386, + 0.006774696, + -0.013973818, + 0.003438419, + -0.008285157, + -0.012655482, + -0.028925467, + 0.004043112, + 0.0011412252, + 0.011873178, + -0.03057359, + -0.01174727, + -0.010572404, + -0.010193618, + 0.0024823258, + 0.0039863563, + 0.014595159, + -0.0176202, + -0.018234203, + 0.00084414677, + -0.0027739939, + -0.01159303, + -0.0336673, + -0.03133329, + -0.013769103, + -0.009393349, + -0.019302284, + -0.0073583946, + -0.010788976, + 0.005273923, + -0.01661192, + -0.018883906, + -0.010105152, + -0.022867352, + -0.011779215, + -0.00055044884, + 0.017473206, + -0.0028581955, + -0.010944932, + -0.01990292, + 0.00963677, + -0.018947622, + -0.012707938, + -0.00909111, + -0.017527523, + 0.014172655, + -0.00084584433, + -0.01673947, + 0.026830252, + -0.013783602, + -0.0037192532, + -0.008344714, + -0.018057818, + -0.012691975, + -0.0024615056, + -0.0038871996, + 0.020854255, + -0.025218656, + -0.0051548383, + -0.026027579, + -0.0110171465, + -0.025532601, + -0.029639455, + -0.016725305, + -0.024490759, + 0.009847653, + -0.0050067035, + -0.03210592, + -0.022652086, + -0.022515364, + -0.0021405779, + -0.024992965, + 0.005226363, + -0.00042258436, + -0.0028181993, + -0.031326517, + 0.006958864, + -0.017561568, + -0.04793085, + -0.029184747, + -0.0083751725, + 0.0140179135, + -0.0016573034, + -0.0095819095, + 0.0018438853, + -0.045925178, + -0.011682978, + -0.013139818, + -0.03138118, + -0.0010876684, + -0.013121328, + 0.013992288, + -0.033677265, + -0.009217562, + -0.031157246, + -0.023611745, + -0.016840383, + -0.007734448, + -0.00939397, + -0.027030814, + -8.8198714e-05, + 0.0074767414, + -0.0027895402, + -0.027340295, + 0.0007491792, + -0.019945716, + -0.031333875, + -0.0019206277, + 0.01774201, + 0.017374102, + -0.0102518, + -0.017356046, + -0.011474739, + -0.021684397, + 0.003596024, + 0.008639032, + -0.013560635, + -0.002213847, + -0.021124747, + -0.014026068, + 0.0051907306, + -0.017958624, + -0.018086761, + -0.0082936995, + -0.004145082, + -0.0113453735, + -0.015137344, + -0.008366395, + -0.004568522, + -0.016860161, + -0.0005206806, + -0.009816661, + -0.022068067, + -0.0014781813, + -0.0039980668, + -0.013626982, + -0.0011984465, + -0.016010752, + -0.02565288, + 0.007528211, + -0.03898809, + -0.016765127, + 0.011840514, + -0.009407573, + -0.006729925, + 0.013680055, + -0.033039536, + -0.009160869, + 0.002482386, + -0.0059671835, + 0.015885489, + -0.017209446, + -0.005281128, + -0.002841322, + 0.00065593823, + -0.022429738, + -0.026232542, + 0.025977619, + -0.0003012843, + 0.0012705018, + -0.016796099, + -0.004463179, + -0.002854994, + -0.010618252, + -0.0115345875, + 0.0067326995, + 0.0052204616, + -0.012347468, + 0.0043315752, + -0.01687502, + -0.025635388, + -0.03045021, + 0.015236987, + 0.00937696, + -0.006573152, + -0.0028601205, + 0.0017614826, + -0.016022079, + 0.007881737, + -0.001367214, + 0.0083548995, + -0.023352178, + -0.017676389, + -0.016635124, + -0.0065832636, + 0.0022486467, + -0.008197278, + -0.020466985, + -0.020742347, + -0.028008938, + -0.0012340603, + -0.012159124, + -0.02417342, + 0.006996065, + 0.004468418, + -0.013514341, + -0.02061213, + -0.026279498, + -0.0043915818, + 0.014682967, + -0.0039653955, + -0.024395762, + -0.013623458, + -0.016614465, + -0.019818673, + 0.009377092, + -0.0027451029, + -0.0024647987, + -0.025527677, + -0.008323221, + -0.02142928, + 0.011992196, + -0.022300089, + -0.0039149667, + 0.0023703289, + 6.7631765e-05, + -0.032542054, + -0.022362225, + 0.005737484, + 0.011954856, + 0.014287548, + -0.009593025, + -0.014238642, + -0.018565351, + -0.0035415038, + 0.007411307, + -0.002076427, + -0.0009182437, + 0.0029083132, + -0.0007675347, + 0.00066900154, + -0.000764507, + -0.00975766, + -0.018948652, + -0.026421865, + -0.018586902, + -0.008346465, + 0.020032063, + -0.025102707, + -0.002680431, + -0.011435567, + -0.017374685, + -0.025171084, + 0.013419962, + -0.0026952103, + 0.00397342, + -0.026063785, + -0.003945094, + 0.0015383889, + 0.0004529594, + 0.010595172, + 0.0039397776, + 0.014035787, + 0.0071793585, + -0.011946719, + -0.012959468, + -0.010935965, + -0.018333966, + -0.016863279, + -0.034179606, + -0.0004325902, + -0.04960181, + -0.0135018695, + -0.014362114, + -0.024585003, + -0.022127794, + 0.011818043, + 0.012958657, + -0.011091745, + -0.02239513, + -0.01266437, + -0.0037981386, + -0.008948716, + -0.009255459, + -0.021235127, + -0.014563936, + 0.008143718, + -0.015076544, + -0.020516556, + 0.009550327, + 0.0024955734, + -0.017823031, + 0.0066617224, + -0.018471519, + -0.010052708, + -0.0003423682, + -0.0115719335, + -0.009271951, + -0.009441377, + 0.005710345, + 0.005154139, + -0.014758623, + 0.0015775093, + -0.024069719, + 0.001847414, + -0.016531488, + -0.029567143, + -0.0020086272, + -0.0076767537, + -0.0057134028, + -0.02986191, + -0.008986432, + -0.019886585, + -0.009634938, + -0.027872816, + 0.010253211, + -0.011657516, + 0.011866717, + -0.009311404, + 0.0030564957, + -0.004344665, + -0.0057241344, + -0.020147944, + -0.006503607, + -0.0014431847, + -0.017305113, + 0.010768777, + -0.012828929, + 0.024506375, + -0.019893855, + -0.024517072, + -0.031139947, + -0.0072693657, + -0.0014044399, + -0.02271214, + 0.0030465794, + -0.002498369, + -0.016365293, + 0.00071920676, + -0.02212197, + -0.02059767, + -0.02896675, + -0.0015771351, + -0.025901847, + 0.0045364415, + -0.01732108, + -0.00012556267, + -0.010395868, + 0.004846083, + 0.010095102, + -0.019154146, + -0.019872671, + 0.010385072, + 0.0018963303, + -0.022642704, + -0.0066222, + 0.018253412, + -0.014560695, + -0.009141975, + -0.030381287, + -0.025980737, + 0.01778687, + 0.009439448, + -0.040953476, + -0.011797148, + -0.016431324, + -0.04392373, + -0.009515933, + 0.006577469, + 0.011835929, + -0.005475952, + -0.031174688, + -0.020945739, + -0.0001861517, + -0.017498003, + -0.005200034, + -0.021853216, + -0.008162331, + 0.019060275, + -0.010463464, + -0.0033782057, + -0.0018681776, + -0.009268515, + -0.008547457, + -0.0123225795, + -0.004299745, + -0.011675974, + 0.011937199, + -0.021271864, + -0.024217239, + -0.00083688047, + -0.032241587, + 0.01306741, + 0.00027683296, + -0.004455316, + 0.020933794, + -0.01818058, + -0.03430909, + -0.024118848, + -0.0080862455, + -0.010277854, + -0.014565118, + 0.018388383, + -0.024355242, + -0.0027352672, + -0.0060688322, + -0.00866795, + -0.015096522, + 0.0021769563, + -0.007360288, + 0.024000963, + 0.009262951, + -0.009879977, + -0.014129873, + -0.01154275, + -0.011404349, + -0.01275656, + -0.00035705304, + -0.01243464, + 0.002411357, + 0.03339738, + -0.0029885436, + -0.012801443, + -0.015265928, + 0.0037740625, + -0.030513737, + 0.010822185, + 0.00026082824, + -0.0075133415, + 0.014797952, + -0.002493721, + 0.005827922, + -0.0012519184, + -0.04052955, + 0.010928935, + -0.013080077, + 0.0008768642, + -0.008923113, + -0.02736836, + -0.03144956, + -0.0068358886, + -0.00153229, + -0.021891883, + 0.010578172, + 0.021545967, + -0.016261898, + -0.0068418127, + 0.031991787, + 0.009668949, + -0.020805702, + 0.004431794, + -0.03161983, + 0.00042468746, + -0.016029308, + -0.0041764616, + -0.022481197, + -0.035857916, + 0.0022550712, + -0.007221446, + 0.0049643395, + -0.032900076, + 0.006491528, + -0.019582532, + -0.02291739, + -0.01880586, + -0.024640812, + -0.036950544, + 0.0046495935, + -0.020601863, + -0.015373445, + 0.023327801, + 9.763511e-05, + -0.0028750608, + -0.017950376, + 0.0012269943, + -0.001430585, + -0.012083365, + 0.00874998, + -0.00916255, + -0.014984038, + -0.006873893, + -0.0035751492, + 0.0010956002, + -0.021494247, + 0.0075555863, + -0.017612308, + -0.007092652, + -0.017675506, + -0.0076345312, + 0.014092189, + -0.017085118, + -0.0077385386, + -0.039362755, + -0.0016314129, + 0.017307112, + -0.0132773435, + -0.034611333, + -0.0050795907, + -0.019058574, + -0.024623938, + -0.007853064, + -0.02421705, + -0.02097583, + -0.018527562, + 0.0074732904, + 0.003621333, + -0.0060142665, + 0.019219534, + -0.0050563994, + -0.003896561, + -0.02377818, + -0.0002677298, + 0.0027266014, + -0.0028397716, + 0.0015069664, + -0.01658753, + 0.013737035, + -0.035751086, + -0.021507125, + -0.007759711, + -0.017198436, + -0.0022825138, + 0.0006082852, + -0.015761178, + -0.010834258, + 0.01220265, + -0.02015609, + 0.019197717, + -0.0052975626, + 0.00042158106, + 0.002203251, + -0.028257921, + -0.037007857, + -0.026490178, + -0.01979553, + -0.0034248307, + -0.008532241, + -0.018753624, + -0.010047131, + -0.0070763966, + -0.0070741246, + -0.00814757, + -0.00026153162, + -0.024811594, + -0.0031894243, + -0.025545059, + -0.023256356, + -0.024716645, + -0.03550018, + -0.011463035, + 0.004755896, + -0.029924538, + -0.014513503, + -0.004297682, + -0.005140671, + 0.002670456, + 0.007173414, + -0.009579481, + -0.008987536, + -0.027347289, + -0.011940533, + -0.027632976, + -0.02639386, + 0.0007984256, + -0.033485767, + -0.008206545, + -0.017475048, + -0.0042728004, + -0.0033711032, + -0.001095887, + -0.025218884, + -0.02271147, + -0.005154822, + -0.019090783, + 0.002649495, + -0.0028158412, + -0.029573414, + 0.0027211935, + -0.011193748, + -0.018414022, + 0.016942611, + -0.010352408, + -0.009045317, + -0.006704838, + -0.013773385, + -0.016160619, + 0.0031141185, + 0.004502997, + 0.013375143, + -0.030398823, + 0.0025486404, + -0.016270135, + -0.024443965, + 0.012318608, + 0.020379644, + 0.006620581, + -0.013922761, + 0.019086275, + -0.0012297728, + -0.021962987, + -0.009619136, + -0.008831917, + 0.008549898, + -0.0041628354, + -0.031021597, + 0.003779704, + -0.014495906, + -0.009983265, + -0.016751437, + 0.0016843629, + 0.0015257167, + 0.00029304496, + -0.005156273, + -0.0098525025, + -0.022626217, + 0.012618488, + -0.023256011, + -0.007946069, + -0.03234143, + 0.0011694091, + -0.04050158, + 0.009904064, + -0.01800155, + -0.0057626986, + -0.018725313, + -0.01017491, + -0.017380318, + -0.0076311165, + -0.0028954374, + 0.029904814, + 0.017537259, + -0.015941411, + -0.017838389, + 0.0051498376, + -0.012077862, + -0.0071281735, + -0.00823129, + 0.00078834797, + -0.01754748, + -0.023815477, + 0.0029646743, + -0.037041657, + -0.02574204, + 0.00035877852, + -0.004806937, + -0.008012021, + -0.011104908, + 0.0075471615, + -0.006872547, + -0.013900891, + -0.01208867, + 0.0184786, + 0.0011696415, + -0.009283524, + -0.019880291, + -0.0023251423, + -0.0066709295, + 0.013892817, + -0.019238587, + -0.0062678712, + -0.015648842, + 0.003142172, + -0.007865123, + -0.01579282, + -0.008862254, + -0.0039694696, + 0.003598191, + -0.023783246, + -0.0015364102, + -0.0027117205, + -0.012118617, + -0.014873177, + -0.013153366, + 0.0061536874, + -0.025408652, + -0.035055444, + -0.0095073925, + -0.009300831, + 0.0025890546, + -0.011586546, + 0.0016291536, + -0.022151899, + -0.015386863, + -6.6760345e-05, + -0.0063450416, + 0.00039584312, + 0.0011209454, + -0.0016427425, + -0.021948086, + -0.008919105, + -0.017803192, + 0.015500891, + 0.0051993015, + -0.021172404, + -0.0017615759, + -0.023547448, + 0.009072596, + -0.010817806, + 0.01335687, + -0.015037397, + -0.018034147, + -0.008796971, + -0.002066944, + -0.018193929, + -0.009100121, + -0.009090284, + 0.015679324, + -0.023260966, + -0.016191592, + 0.004930509, + -0.0066165566, + -0.0045538284, + -0.0075327377, + -0.0070685446, + -0.023837507, + -0.014502046, + 0.0043795924, + 0.018315494, + -0.0054850993, + -0.000965228, + 0.017084109, + 0.0021386633, + -0.0014657766, + 0.008580648, + -0.017593427, + -0.009362274, + -0.007008814, + 0.0010569253, + -0.025614748, + 0.0029410084, + 0.0008273362, + -0.0027380632, + 0.0027547248, + 0.015240422, + -0.01278708, + -0.021835005, + 0.00032850355, + 0.00029119218, + -0.0316643, + -0.010647608, + -0.01456288, + -0.013458468, + 9.911828e-05, + -0.012859801, + -0.0046525085, + -0.0049020443, + 0.012539668, + -0.00878938, + -0.005626576, + 0.02064232, + 0.0007782021, + -0.004073561, + -0.022377899, + -0.017291158, + -0.015443978, + 0.008373093, + 0.015044259, + 0.007743164, + 0.008650319, + -0.028883379, + -0.014840944, + -0.018536799, + -0.022177614, + 0.0008706668, + -0.03489393, + -0.009054283, + 6.9860755e-05, + -0.008846553, + -0.034463763, + 0.00043676907, + -0.00521377, + -0.015035898, + 0.009177727, + -0.009752746, + 0.0013402939, + -0.015622804, + -0.019059656, + 0.0028985308, + 0.01327473, + -0.0071972134, + 0.0053756903, + -0.017773105, + -0.0058966232, + -0.005565354, + -0.010450825, + 0.008066029, + 0.006301335, + 0.0048341583, + 0.021500152, + 0.0017963537, + -0.027265126, + -0.011852494, + -0.018385172, + -0.015915576, + -0.009885286, + 0.007018831, + -0.039237354, + -0.019149771, + -0.01701485, + -0.0049380683, + 0.003688283, + -0.017066333, + -0.0014943058, + -0.0077872435, + -0.02834415, + -0.004554745, + -0.018976232, + -0.029964413, + 0.005834595, + -0.03180767, + -0.002081058, + -0.039043102, + -0.00016627344, + -0.008624128, + -0.019890077, + -0.02364237, + -0.010961011, + -0.02376394, + -0.0032449814, + -0.0022889841, + -0.034753937, + 0.006480746, + 0.009329141, + 0.009622541, + 0.013276352, + 0.0020244652, + -0.01294935, + 0.0018137867, + -0.017438935, + 0.0041167294, + 0.014007511, + -0.013155965, + -0.016150521, + -0.0077829054, + -0.020681117, + -0.025115103, + -0.018807715, + -0.009289667, + 0.011350642, + -0.023897696, + -0.019622648, + -0.01298214, + -0.016374664, + 0.00014797991, + 0.0076173674, + 0.0076509705, + 0.009637984, + -0.0063410853, + -0.001883624, + -0.0025855328, + -0.008133573, + 0.0089250235, + -0.007533326, + -0.0355851, + -0.011948726, + -0.01413952, + -0.012324985, + -0.0034113883, + -0.014498894, + 0.0030739934, + -0.0091963615, + -0.020953085, + 0.0071224477, + -0.015519743, + -0.025661161, + -0.010316959, + -0.004001714, + -0.017237833, + 0.0027995273, + -0.004301168, + 0.027834333, + -0.022080496, + -0.018376833, + 0.0023539267, + -0.01589336, + -0.029791977, + 0.0073100184, + -0.010083016, + 0.012871159, + -0.0059448015, + -0.012525449, + 0.007086202, + -0.012701305, + 0.00024996712, + -0.0051648216, + -0.021996962, + -0.0015791599, + -0.021309178, + -0.02489284, + -0.026569033, + 0.008342198, + -0.0034872629, + 0.01855832, + -0.0045908107, + 0.025840068, + -0.023992421, + -0.01469214, + 0.0050540515, + -0.0038438817, + 5.001942e-05, + -0.01511392, + -0.018843088, + -0.020514484, + 0.035419665, + -0.017643085, + 0.00055560103, + -0.004919627, + -0.0011052327, + -0.022667812, + -0.0103515405, + -0.0030584277, + -0.008820864, + -0.032486524, + -0.015351714, + 0.016122792, + -0.022537032, + -0.0044685593, + -0.03458622, + -0.013109292, + -0.023643207, + -0.003267057, + 0.0011130016, + -0.008950968, + 0.010169616, + -0.02775617, + -0.021752242, + -0.034592576, + -0.011582226, + -0.019945268, + -0.027209213, + -0.01631986, + -0.008255174, + 0.01180105, + -0.0043611485, + -0.0056334953, + -0.006168755, + -0.030495364, + 0.0044777705, + -0.019819804, + -0.019612778, + 0.005615538, + -0.019678405, + 0.016215133, + 5.2928e-05, + 0.013244557, + -0.020104054, + -0.023607947, + -0.001442463, + 0.010705241, + 0.0069928323, + -0.014733929, + -0.02752882, + -0.015168954, + 0.010164547, + -0.0041484083, + -0.018879533, + -0.025427708, + -0.003929909, + -0.004249419, + -0.016056716, + -0.014354939, + -0.008827814, + -0.0060227644, + -0.003360965, + -0.010298939, + -0.023218323, + -0.0070038955, + -0.000478604, + -0.025016801, + -0.03432498, + -0.010581765, + -0.003094891, + 0.0024840725, + -0.012207338, + 0.0069555333, + 0.0066564893, + 0.017519355, + -0.0012830419, + -0.0057556513, + -0.0005114724, + -0.013743593, + 0.0038654897, + -0.02006184, + -0.004294536, + -0.010843424, + -0.004496914, + -0.0066514593, + -0.022386426, + -0.017229153, + 0.002339385, + -0.0102487225, + -0.013500771, + 0.0021832704, + -0.0012709871, + -0.016222006, + -0.0072404374, + -0.009300599, + -0.022007238, + 0.005076579, + 0.028788934, + -0.0062851845, + 0.0012142311, + -0.004694552 ], "paletteEmbedding": [ - 0.007300888, 0.003968939, 0.0010779835, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0044589317, 0.0023029647, 0.0006859895, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0014209782, 0.0006859895, 0.00014699774, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 9.79985e-5, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008672867, 0.0052919188, - 0.0024989618, 0.0004899925, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.006026908, 0.0034789466, 0.00088198646, 0.000195997, 4.899925e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0016659745, 0.0009309857, 0.00034299475, - 4.899925e-5, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0002939955, - 0.00024499625, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.899925e-5, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.012543808, 0.009505854, 0.004507931, - 0.0007349887, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008868864, - 0.005977908, 0.002743958, 0.00053899176, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0034299474, 0.002155967, 0.0007349887, 9.79985e-5, 0.0, 4.899925e-5, - 0.0, 0.0, 0.0, 0.0, 0.000391994, 0.00034299475, 9.79985e-5, 4.899925e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.020089692, - 0.015238767, 0.007937878, 0.0017149737, 0.000195997, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.012837803, 0.011122829, 0.005683913, 0.0015189768, 9.79985e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0056349137, 0.0042629344, 0.001567976, - 0.00088198646, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00088198646, - 0.0006859895, 0.0004899925, 4.899925e-5, 4.899925e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 4.899925e-5, 4.899925e-5, 4.899925e-5, 4.899925e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02675359, - 0.026900588, 0.013817788, 0.0034789466, 0.00024499625, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.020677684, 0.019893695, 0.010191844, 0.0028909557, - 0.00034299475, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.008378872, - 0.008231874, 0.0034299474, 0.00088198646, 0.00014699774, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0015189768, 0.0020579684, 0.0009309857, 0.00014699774, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0002939955, 0.000195997, 0.00014699774, - 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.899925e-5, 0.0, - 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.039395396, 0.044785313, 0.02939955, - 0.0069578933, 0.0011269827, 0.0, 0.0, 0.0, 0.0, 0.0, 0.036259443, - 0.04106137, 0.02415663, 0.0069578933, 0.001371979, 0.00014699774, 0.0, - 0.0, 0.0, 0.0, 0.018031724, 0.021314673, 0.010828834, 0.0028909557, - 0.0006859895, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0058799097, 0.005683913, - 0.0032829496, 0.001371979, 0.00014699774, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0006859895, 0.00083298725, 0.0007349887, 9.79985e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.00014699774, 0.00014699774, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.899925e-5, - 0.0, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 4.899925e-5, 0.0, 0.0, 0.0, 4.899925e-5, 0.08437671, 0.09976247, - 0.060367074, 0.018766712, 0.0030379535, 0.000391994, 0.0, 0.0, 0.0, 0.0, - 0.09265758, 0.10951332, 0.068696946, 0.020383688, 0.0032829496, - 0.00024499625, 0.0, 0.0, 0.0, 0.0, 0.05737812, 0.06933394, 0.04106137, - 0.0122498125, 0.0020579684, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.018178722, - 0.022441655, 0.0130827995, 0.0038709408, 0.00024499625, 4.899925e-5, - 0.0, 0.0, 0.0, 0.0, 0.003331949, 0.004213935, 0.002155967, - 0.00083298725, 0.0, 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0007349887, - 0.000587991, 0.000391994, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0004899925, 0.000195997, 9.79985e-5, 0.00014699774, 4.899925e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.000391994, 0.000195997, 0.000195997, 4.899925e-5, - 4.899925e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 4.899925e-5, 9.79985e-5, - 4.899925e-5, 4.899925e-5, 4.899925e-5, 0.0, 0.00014699774, - 0.00014699774, 4.899925e-5, 9.79985e-5, 4.899925e-5, 9.79985e-5, 0.0, - 0.0, 0.0, 4.899925e-5, 9.79985e-5, 9.79985e-5, 9.79985e-5, 0.0, - 0.16674444, 0.19217506, 0.12176313, 0.038807403, 0.006320903, - 0.0002939955, 0.0, 0.0, 0.0, 0.0, 0.2094228, 0.24837719, 0.14827172, - 0.045422304, 0.008721867, 0.00044099323, 0.0, 0.0, 0.0, 0.0, 0.1437148, - 0.15983555, 0.09701851, 0.03135952, 0.0035279458, 0.0006859895, - 4.899925e-5, 0.0, 0.0, 0.0, 0.051841207, 0.05463416, 0.030330535, - 0.010093845, 0.001371979, 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.011759819, - 0.011710821, 0.005928909, 0.002155967, 0.00053899176, 4.899925e-5, 0.0, - 0.0, 0.0, 0.0, 0.0035279458, 0.0026459594, 0.0020089692, 0.000195997, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0019109707, 0.0013229797, 0.00063699024, - 0.00034299475, 0.000195997, 4.899925e-5, 4.899925e-5, 0.0, 0.0, 0.0, - 0.0016169752, 0.000979985, 0.00083298725, 0.00044099323, 0.00044099323, - 0.000391994, 0.000195997, 0.00024499625, 0.000195997, 0.00014699774, - 0.0009309857, 0.0006859895, 0.000587991, 0.00063699024, 0.0004899925, - 0.00034299475, 0.00044099323, 0.00053899176, 0.00034299475, 0.000195997, - 0.0002939955, 0.000195997, 0.000195997, 0.0006859895, 0.00088198646, - 0.00063699024, 0.0009309857, 0.0006859895, 0.0007349887, 0.0002939955, - 0.19839796, 0.23906733, 0.13999085, 0.045520302, 0.008280873, - 0.0002939955, 4.899925e-5, 0.0, 0.0, 0.0, 0.26827088, 0.30933225, - 0.18129723, 0.057966113, 0.009505854, 0.000587991, 4.899925e-5, 0.0, - 0.0, 0.0, 0.19055808, 0.22044761, 0.12538908, 0.037778422, 0.005095922, - 0.0006859895, 0.00014699774, 0.0, 0.0, 0.0, 0.07937878, 0.0846707, - 0.044981312, 0.013327796, 0.0021069676, 0.00024499625, 0.0, 0.0, 0.0, - 0.0, 0.026214598, 0.024303628, 0.009995847, 0.0030869527, 0.00088198646, - 9.79985e-5, 0.0, 0.0, 0.0, 0.0, 0.010093845, 0.00783988, 0.0038709408, - 0.000979985, 0.000195997, 4.899925e-5, 0.00014699774, 0.0, 0.0, 0.0, - 0.006320903, 0.0049979235, 0.0027929572, 0.001175982, 0.000587991, - 0.00034299475, 0.000391994, 0.0002939955, 0.00014699774, 0.0, - 0.0055369153, 0.00455693, 0.002743958, 0.0017639729, 0.0014209782, - 0.0009309857, 0.0014699774, 0.000587991, 0.0004899925, 0.00024499625, - 0.0036259445, 0.0017149737, 0.0027929572, 0.0022539655, 0.0024989618, - 0.002547961, 0.0022539655, 0.0023029647, 0.00083298725, 0.000783988, - 0.000979985, 0.0013229797, 0.0013229797, 0.002155967, 0.0022539655, - 0.0032829496, 0.0032339504, 0.0022539655, 0.0026459594, 0.0013229797, - 0.13362095, 0.15390664, 0.09535254, 0.029742545, 0.0048509254, - 0.0004899925, 0.0, 0.0, 0.0, 0.0, 0.18516816, 0.2089818, 0.123429105, - 0.040277384, 0.0057819113, 0.000391994, 4.899925e-5, 0.0, 0.0, 0.0, - 0.14126484, 0.1564056, 0.08785565, 0.027194584, 0.0035279458, - 0.00034299475, 0.0, 0.0, 0.0, 0.0, 0.06727597, 0.06894194, 0.034348473, - 0.010975832, 0.0010289842, 0.000195997, 0.0, 0.0, 0.0, 0.0, 0.027047586, - 0.02283365, 0.00979985, 0.002400963, 0.00014699774, 4.899925e-5, - 4.899925e-5, 0.0, 0.0, 0.0, 0.015189767, 0.011514824, 0.00455693, - 0.0013229797, 0.0002939955, 0.00014699774, 9.79985e-5, 0.0, 0.0, - 4.899925e-5, 0.011171829, 0.008280873, 0.0048509254, 0.00195997, - 0.0009309857, 0.0004899925, 0.00034299475, 4.899925e-5, 0.00024499625, - 0.00014699774, 0.0089178635, 0.007300888, 0.005144921, 0.0028419564, - 0.002743958, 0.0021069676, 0.0017639729, 0.0015189768, 0.0009309857, - 0.00063699024, 0.004899925, 0.0052429195, 0.005389917, 0.004801926, - 0.0050469227, 0.0044589317, 0.004115937, 0.004311934, 0.003331949, - 0.0010779835, 0.0013229797, 0.0018129722, 0.0025969602, 0.003331949, - 0.005095922, 0.005487916, 0.0061739055, 0.0049489243, 0.0048509254, + 0.007300888, + 0.003968939, + 0.0010779835, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0044589317, + 0.0023029647, + 0.0006859895, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0014209782, + 0.0006859895, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 9.79985e-05, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008672867, + 0.0052919188, + 0.0024989618, + 0.0004899925, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.006026908, + 0.0034789466, + 0.00088198646, + 0.000195997, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0016659745, + 0.0009309857, + 0.00034299475, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0002939955, + 0.00024499625, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012543808, + 0.009505854, + 0.004507931, + 0.0007349887, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008868864, + 0.005977908, + 0.002743958, + 0.00053899176, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0034299474, + 0.002155967, + 0.0007349887, + 9.79985e-05, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000391994, + 0.00034299475, + 9.79985e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020089692, + 0.015238767, + 0.007937878, + 0.0017149737, + 0.000195997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.012837803, + 0.011122829, + 0.005683913, + 0.0015189768, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0056349137, + 0.0042629344, + 0.001567976, + 0.00088198646, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00088198646, + 0.0006859895, + 0.0004899925, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 4.899925e-05, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02675359, + 0.026900588, + 0.013817788, + 0.0034789466, + 0.00024499625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020677684, + 0.019893695, + 0.010191844, + 0.0028909557, + 0.00034299475, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008378872, + 0.008231874, + 0.0034299474, + 0.00088198646, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0015189768, + 0.0020579684, + 0.0009309857, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0002939955, + 0.000195997, + 0.00014699774, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.039395396, + 0.044785313, + 0.02939955, + 0.0069578933, + 0.0011269827, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.036259443, + 0.04106137, + 0.02415663, + 0.0069578933, + 0.001371979, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018031724, + 0.021314673, + 0.010828834, + 0.0028909557, + 0.0006859895, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0058799097, + 0.005683913, + 0.0032829496, + 0.001371979, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0006859895, + 0.00083298725, + 0.0007349887, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00014699774, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 0.08437671, + 0.09976247, + 0.060367074, + 0.018766712, + 0.0030379535, + 0.000391994, + 0.0, + 0.0, + 0.0, + 0.0, + 0.09265758, + 0.10951332, + 0.068696946, + 0.020383688, + 0.0032829496, + 0.00024499625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.05737812, + 0.06933394, + 0.04106137, + 0.0122498125, + 0.0020579684, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.018178722, + 0.022441655, + 0.0130827995, + 0.0038709408, + 0.00024499625, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.003331949, + 0.004213935, + 0.002155967, + 0.00083298725, + 0.0, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0007349887, + 0.000587991, + 0.000391994, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0004899925, + 0.000195997, + 9.79985e-05, + 0.00014699774, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.000391994, + 0.000195997, + 0.000195997, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 9.79985e-05, + 4.899925e-05, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.00014699774, + 0.00014699774, + 4.899925e-05, + 9.79985e-05, + 4.899925e-05, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 4.899925e-05, + 9.79985e-05, + 9.79985e-05, + 9.79985e-05, + 0.0, + 0.16674444, + 0.19217506, + 0.12176313, + 0.038807403, + 0.006320903, + 0.0002939955, + 0.0, + 0.0, + 0.0, + 0.0, + 0.2094228, + 0.24837719, + 0.14827172, + 0.045422304, + 0.008721867, + 0.00044099323, + 0.0, + 0.0, + 0.0, + 0.0, + 0.1437148, + 0.15983555, + 0.09701851, + 0.03135952, + 0.0035279458, + 0.0006859895, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.051841207, + 0.05463416, + 0.030330535, + 0.010093845, + 0.001371979, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011759819, + 0.011710821, + 0.005928909, + 0.002155967, + 0.00053899176, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0035279458, + 0.0026459594, + 0.0020089692, + 0.000195997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0019109707, + 0.0013229797, + 0.00063699024, + 0.00034299475, + 0.000195997, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.0016169752, + 0.000979985, + 0.00083298725, + 0.00044099323, + 0.00044099323, + 0.000391994, + 0.000195997, + 0.00024499625, + 0.000195997, + 0.00014699774, + 0.0009309857, + 0.0006859895, + 0.000587991, + 0.00063699024, + 0.0004899925, + 0.00034299475, + 0.00044099323, + 0.00053899176, + 0.00034299475, + 0.000195997, + 0.0002939955, + 0.000195997, + 0.000195997, + 0.0006859895, + 0.00088198646, + 0.00063699024, + 0.0009309857, + 0.0006859895, + 0.0007349887, + 0.0002939955, + 0.19839796, + 0.23906733, + 0.13999085, + 0.045520302, + 0.008280873, + 0.0002939955, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.26827088, + 0.30933225, + 0.18129723, + 0.057966113, + 0.009505854, + 0.000587991, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.19055808, + 0.22044761, + 0.12538908, + 0.037778422, + 0.005095922, + 0.0006859895, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.07937878, + 0.0846707, + 0.044981312, + 0.013327796, + 0.0021069676, + 0.00024499625, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026214598, + 0.024303628, + 0.009995847, + 0.0030869527, + 0.00088198646, + 9.79985e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010093845, + 0.00783988, + 0.0038709408, + 0.000979985, + 0.000195997, + 4.899925e-05, + 0.00014699774, + 0.0, + 0.0, + 0.0, + 0.006320903, + 0.0049979235, + 0.0027929572, + 0.001175982, + 0.000587991, + 0.00034299475, + 0.000391994, + 0.0002939955, + 0.00014699774, + 0.0, + 0.0055369153, + 0.00455693, + 0.002743958, + 0.0017639729, + 0.0014209782, + 0.0009309857, + 0.0014699774, + 0.000587991, + 0.0004899925, + 0.00024499625, + 0.0036259445, + 0.0017149737, + 0.0027929572, + 0.0022539655, + 0.0024989618, + 0.002547961, + 0.0022539655, + 0.0023029647, + 0.00083298725, + 0.000783988, + 0.000979985, + 0.0013229797, + 0.0013229797, + 0.002155967, + 0.0022539655, + 0.0032829496, + 0.0032339504, + 0.0022539655, + 0.0026459594, + 0.0013229797, + 0.13362095, + 0.15390664, + 0.09535254, + 0.029742545, + 0.0048509254, + 0.0004899925, + 0.0, + 0.0, + 0.0, + 0.0, + 0.18516816, + 0.2089818, + 0.123429105, + 0.040277384, + 0.0057819113, + 0.000391994, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.14126484, + 0.1564056, + 0.08785565, + 0.027194584, + 0.0035279458, + 0.00034299475, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06727597, + 0.06894194, + 0.034348473, + 0.010975832, + 0.0010289842, + 0.000195997, + 0.0, + 0.0, + 0.0, + 0.0, + 0.027047586, + 0.02283365, + 0.00979985, + 0.002400963, + 0.00014699774, + 4.899925e-05, + 4.899925e-05, + 0.0, + 0.0, + 0.0, + 0.015189767, + 0.011514824, + 0.00455693, + 0.0013229797, + 0.0002939955, + 0.00014699774, + 9.79985e-05, + 0.0, + 0.0, + 4.899925e-05, + 0.011171829, + 0.008280873, + 0.0048509254, + 0.00195997, + 0.0009309857, + 0.0004899925, + 0.00034299475, + 4.899925e-05, + 0.00024499625, + 0.00014699774, + 0.0089178635, + 0.007300888, + 0.005144921, + 0.0028419564, + 0.002743958, + 0.0021069676, + 0.0017639729, + 0.0015189768, + 0.0009309857, + 0.00063699024, + 0.004899925, + 0.0052429195, + 0.005389917, + 0.004801926, + 0.0050469227, + 0.0044589317, + 0.004115937, + 0.004311934, + 0.003331949, + 0.0010779835, + 0.0013229797, + 0.0018129722, + 0.0025969602, + 0.003331949, + 0.005095922, + 0.005487916, + 0.0061739055, + 0.0049489243, + 0.0048509254, 0.00195997 ] }, diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-blue-foot.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-blue-foot.json index b2395939c..2022b40e6 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-blue-foot.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-blue-foot.json @@ -183,15 +183,30 @@ "alternativeTitles": [], "contributors.agent.label": [], "description": "

Tips include: 'never cut corns', 'dry feet well', 'check under your feet regularly', 'avoid high shoes', 'avoid wearing tight socks', and 'wear comfortable' shoes

", - "genres.concepts.label": ["Posters", "Lithographs"], + "genres.concepts.label": [ + "Posters", + "Lithographs" + ], "id": "vqxr2mea", "sourceIdentifier.value": "b1755486x", - "identifiers.value": ["b1755486x", "1755486", "digicon", "755486i"], + "identifiers.value": [ + "b1755486x", + "1755486", + "digicon", + "755486i" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["twq2pckz"], - "items.identifiers.value": ["i16919440", "1691944"], - "languages.label": ["English"], + "items.id": [ + "twq2pckz" + ], + "items.identifiers.value": [ + "i16919440", + "1691944" + ], + "languages.label": [ + "English" + ], "lettering": "Foot care. The most common complications of Diabetes is infection of the foot ...\n\nBears logo: Kenya Diabetes Management and Information Centre\n\nBears logo: World Diabetes Foundation", "notes.contents": [ "Wellcome Collection 755486i", @@ -199,9 +214,17 @@ ], "partOf.title": [], "physicalDescription": "1 print : lithograph, printed in colours ; sheet 59.7 x 42.2 cm", - "production.label": ["Kenya", "Ministry of Health", "[2000?]"], + "production.label": [ + "Kenya", + "Ministry of Health", + "[2000?]" + ], "referenceNumber": "755486i", - "subjects.concepts.label": ["Diabetes", "Mycetoma", "Kenya"], + "subjects.concepts.label": [ + "Diabetes", + "Mycetoma", + "Kenya" + ], "title": "Foot complications related to diabetes in Kenya. Colour lithograph by Ministry of Health, ca. 2000." } }, @@ -221,1098 +244,5128 @@ ] }, "filterableValues": { - "locations.license.id": ["inc", "inc"], + "locations.license.id": [ + "inc", + "inc" + ], "source.contributors.agent.label": [], - "source.genres.label": ["Posters", "Lithographs"], - "source.genres.concepts.id": ["whcsuusy", "fmydsuw2"], - "source.subjects.label": ["Diabetes", "Mycetoma", "Kenya"], - "source.production.dates.range.from": [946684800000] - }, - "vectorValues": { - "features1": [ - 2.6467905, -3.6212916, -3.5803294, -0.70062906, -0.38014767, -3.4161775, - -3.782568, 2.4981627, -0.36297733, 2.1281323, -1.9005587, -1.1454748, - -2.4458127, 0.3475941, -1.252957, -1.6851834, -3.8590508, -0.4752634, - -2.6421304, 2.2234192, -3.3478212, -3.965302, -1.2231758, 0.5492196, - -1.3789879, -0.3557922, -1.4435216, 0.7698951, -1.3646879, -0.977913, - -0.7227915, -0.15138972, -2.5555456, -2.1488624, 2.2086415, -3.239154, - 0.36315414, -1.0234256, -1.3943022, -2.2854, 0.49104708, -0.16077492, - -4.187559, -1.006353, -3.2590888, 0.1257101, 2.6882374, 2.8002815, - 0.91233927, -4.302043, 1.773578, -0.54491776, -3.2152007, -1.9586263, - 2.2361817, -1.0300051, -0.1172631, -3.784132, -1.2824199, -2.0903616, - -1.4727474, -1.5473729, -5.279474, 0.67412347, -3.303356, -2.036457, - -3.589131, 1.7582818, -6.2814455, -4.3359423, -0.66611093, -5.3658094, - 0.26335803, -0.13095032, 2.4186165, 0.45916462, -1.8815163, -3.1278453, - -1.8008933, -2.3516862, -2.0454893, -1.2848628, 1.5395125, -1.0576261, - -0.5078345, -0.78780466, -4.159375, -0.6677612, -1.2386612, 1.1820256, - -2.7101674, -0.09134978, -2.4529605, -0.7323276, 1.2853346, -2.1166189, - -0.34430307, -0.028017484, 0.14759934, 0.90838534, -0.17586897, - -1.0883775, -0.27982557, -1.6433984, 2.1793976, 2.776035, -1.6432265, - -3.6520157, -3.756022, -2.4210954, -0.39095467, -0.6444062, -0.4634494, - -2.0106256, -2.088386, -0.046743624, -1.0075132, -7.2231793, - -0.048629567, -2.565643, -1.35361, -3.7041373, 0.16958134, -1.4733955, - 0.5059064, -0.99525195, -2.5018375, -3.144742, -4.781577, 0.7098742, - -0.5528486, -2.221355, -1.2619593, 3.3602958, -0.6413, -0.009576879, - -1.1166109, -0.48712087, -3.2464602, 0.36455962, -1.339865, 1.4832802, - -2.141942, 1.2712296, -3.3446991, -3.6322007, -0.28551877, 4.674246, - -4.141251, -2.124944, 1.1602372, 0.02041905, -0.5118704, -0.57852244, - -3.2516382, 1.417564, 0.37558296, -1.8202883, -0.28838053, -2.1146657, - -0.9257367, -0.2829038, -0.16719428, -1.5289892, -1.4447951, -2.6609116, - 0.54184127, -3.8093915, 1.5125331, 0.57464993, -3.7119713, -1.5017684, - 0.93111145, 0.4012252, -3.7579782, -0.8251133, 0.020998113, 1.4237653, - -2.344164, -4.74837, -2.266815, -1.2903656, -6.2625456, 0.6795913, - -1.277759, -1.7028697, -0.95073843, 3.9262123, -2.3634813, -0.10397138, - 3.2299037, -1.0900995, 0.19968152, -2.9723458, -0.27858153, 1.7653632, - -1.7311194, 0.5211583, 0.3587467, -0.58718497, -1.7806556, -0.69506925, - -0.7394294, -1.3398653, -0.6721842, -1.0483994, -1.3743905, -1.2889055, - -2.4353812, -0.015304346, -3.6498368, -1.1759896, -2.9129908, 0.6980964, - -2.9748347, -0.13785426, -0.7915986, 0.3245754, -0.19811311, 0.45306277, - -2.992644, -0.26352578, -1.2815797, -1.0904083, -1.6551113, 1.2679963, - -0.33009607, 1.4920627, -2.0358834, -3.0915442, 1.4345965, -0.1878406, - 0.9429364, -5.0541906, -0.3991517, -1.2004743, -2.0343826, -1.2619742, - -1.9456377, -2.3063989, 2.1902413, -1.8325615, -0.027081944, -2.1428845, - 0.42956924, 0.120861135, 0.87444603, -4.277866, -2.6436198, -3.0026224, - -4.2071977, -0.57304215, 1.4932755, -0.10328765, -1.8758184, -2.306156, - -0.2377851, -3.179383, -5.6571608, -2.2127159, -4.976629, -1.4598408, - -4.4663777, -0.79332703, -3.7486694, 0.20096175, -3.7875376, -1.9593338, - 1.2564315, -3.300001, -1.3581289, -2.8238478, -5.6124983, -1.4358479, - 0.5253423, 0.15987994, -1.4446948, -3.6478455, -2.976345, -1.78041, - -2.023974, -1.3794233, -1.2638956, -2.3519979, 0.82284224, -0.55306035, - -2.4841092, 1.5681546, -5.00647, -2.3821213, -3.0879877, -3.0570598, - 2.1307971, -1.4170763, -2.9655302, 0.16043387, -4.886737, -1.3311857, - -0.7905963, -1.5921088, -0.6259525, -3.224419, -1.328497, -2.9403825, - -2.3366237, -5.060215, 1.0250177, -0.28596413, -2.0203836, -0.4671232, - 0.3253138, -3.724665, -1.3144757, -1.5872822, -3.6623492, 0.09102915, - -1.525863, -3.0644286, -0.4382727, -2.1461937, -0.6680117, -0.7448026, - 0.56304634, -0.19377425, -2.2384894, -1.4424049, 0.8179591, -1.5560387, - -2.1513836, -2.229081, -0.8205775, -1.7230657, -1.0259482, -2.9923863, - -5.0675464, 3.4559877, -0.21263334, -4.426035, -3.354738, -1.183932, - 0.1584492, -1.6314718, -2.652257, -2.444777, 0.48788092, -1.4925025, - -3.7835865, -0.23864977, -0.5104717, -4.8433003, 0.8811538, 2.556324, - -0.75323373, -1.4812117, -1.6409138, -3.3083189, -1.3886784, -4.669027, - -4.2240024, -1.1338539, -2.5225153, -2.0495145, -0.030588727, - -3.8807342, -3.470115, -0.8123754, -2.139656, -0.8929064, -0.289178, - -3.165932, 1.8769324, -0.10270809, -5.20063, -0.6321749, -2.7404072, - -4.75039, -3.411176, -0.8776697, -0.7079945, -3.9755943, -0.77484316, - 1.0397168, -0.3623327, -1.5489433, 0.15675089, -2.9951599, -0.88122135, - -1.559196, -1.7800937, -1.037916, -1.2391975, -0.84507614, -0.20918077, - -2.8757744, -4.4592867, -2.164888, -2.5569153, 0.5861355, -2.755369, - -3.3337626, -0.21003154, -1.6946566, -3.0762699, -1.4961429, 0.5046393, - -2.162376, 0.9382988, -2.9837961, -1.0997758, -1.1150209, 2.1145458, - -2.2912486, -1.8952746, 0.20270154, -1.7935095, -2.8227944, 0.10174072, - -5.2399297, 2.7346494, 0.37539467, -2.1108136, -3.2411134, 3.6076841, - 0.4418442, -1.1827922, -0.243642, -2.1152358, -1.5204241, 1.5380781, - -0.09783216, 3.1987102, 0.30403328, -2.74594, -3.313314, 0.3147083, - -4.2686343, -3.2742512, -4.79855, -1.3094383, -1.6007069, -3.0036035, - -2.19885, -0.9437282, -2.4431958, 0.67101485, 1.908635, -0.19789977, - -1.5562191, -1.0262105, -0.4554069, -1.0937814, -1.8429908, -0.49679857, - -4.710735, -2.8541627, -4.2997727, 1.1879727, -2.241828, -2.2154248, - -0.7264451, -2.7024896, 0.25460908, -2.2138875, -1.0191604, -0.87845826, - 0.35983837, -2.9574883, -3.1172996, 0.32906228, -1.6427909, -3.8764188, - -4.090148, -3.126364, -2.2050023, 3.76098, -1.35418, -2.6514397, - -2.2438827, -5.0112042, -1.8854167, -3.2175362, 1.1185211, -2.2226582, - 3.3941603, -1.4523929, -0.32525095, -0.74151087, 0.90195215, - -0.85584295, -1.6311575, -1.6198075, -0.046321463, -4.47975, -2.884339, - -2.537799, -0.94435275, -0.32818058, 2.0387878, -3.5425575, -4.757997, - 0.70790666, -0.61116123, 2.3144019, 1.0113548, -2.744797, -3.417395, - -2.357813, -4.559716, -2.1627991, -2.3452682, -1.6470087, -2.3203921, - -0.5847274, -0.5287083, -1.780288, -3.6108243, -1.1012375, -1.7562658, - -2.0807197, -2.335371, 1.4112397, -0.9308602, 0.9603406, -4.441858, - -4.479765, -0.4723292, 2.228439, 0.14837074, 0.60113966, 0.09437582, - 0.11501251, -3.8526611, -3.1468875, 1.7105105, 1.6566037, -1.1896825, - -0.81120265, -1.2138157, -3.0727503, -4.8023705, -0.81579536, 0.6867034, - -0.1301478, -5.8716946, -0.818707, -0.021523375, 0.7938555, 2.5311525, - -3.7341132, -1.0250125, -3.2142339, -0.92632383, 3.071546, 0.3801857, - -1.7621461, -2.011429, 0.033823602, -1.0224003, -2.586511, -4.216613, - -2.6516163, -2.0303879, -0.40905535, -0.90630305, -2.9904313, - -2.3807578, -0.9077277, 0.64486533, -0.419708, -2.871907, -1.7191316, - -3.8517988, -4.546234, -0.6665737, -3.4953208, -6.379974, -0.10047015, - -1.4198767, 3.3537223, -1.8394015, -5.442609, 0.7643209, -2.0100837, - -3.5590374, -3.5921946, 1.2260718, 0.26927015, -4.433854, 1.274119, - 0.5692359, -3.0282254, -1.2528194, -1.4743856, -1.377735, -4.3518386, - 1.2548481, -1.4206945, 1.7271789, -1.8817096, -3.7639065, -3.9873424, - 2.1459038, -2.323922, -3.3542562, 0.8316471, -0.18946022, -3.2328916, - -1.0279882, 1.4607317, -1.7324034, 0.11671532, -0.29393017, -0.46987832, - -4.165216, 1.3857408, -2.8031857, -0.7485267, -1.0090538, 0.84884834, - -0.03116969, -4.2691827, 1.8078508, -3.8492277, -2.2402904, -2.2579877, - -1.9089991, 0.30545896, -1.236836, -3.4305234, -1.4418724, -0.019564454, - 0.046650935, -2.2119496, -2.144737, -2.6472228, 0.78046674, 0.50999236, - 0.4187575, 0.60233676, -0.65849715, -3.0413606, -2.4979663, -3.397979, - 1.7668113, 1.1666878, 0.034502, -0.87295616, -0.036418747, -1.7440064, - 0.068151385, -0.14089483, -0.962041, -2.3688693, -3.5816624, -2.135924, - 0.5991635, -2.364821, -2.8044055, -3.0634055, -3.6910324, -1.1685678, - -3.241527, -1.8944488, -1.0283902, -1.908297, -1.9037406, -3.2231839, - -1.7735126, 1.266326, 2.0435572, -1.7824249, -1.3585348, -5.36083, - -0.84535974, -4.2454896, -2.019083, -1.449219, 2.2318828, 1.513467, - -2.643816, -3.1277869, -1.0257103, 0.25317112, -6.270351, 0.054274283, - -3.3848681, -1.7327831, -1.5559272, -1.290401, -4.2405, -2.7754855, - 0.97274053, -1.7322958, -0.90323657, -1.7380487, 0.97268635, -0.6206862, - 0.091759324, 2.3171005, 0.13484147, -3.5299523, -2.3888702, -2.1209629, - 0.34768638, 1.0439401, 0.44227952, -2.6545362, 0.8985895, -1.491689, - -2.2426538, -3.7508152, 2.4062598, -1.0429336, -2.3920434, -4.722957, - -1.3342366, -2.673076, -2.720815, -3.318356, -0.31248784, -1.1019782, - -0.46133444, -1.598011, -0.36148703, -1.6871307, -0.90975267, - -0.26103207, -1.3416568, -4.989815, -0.2848427, -1.2170672, -2.0677419, - -0.4970694, -4.891326, -0.7224484, -1.3609699, -2.0077188, -0.25080326, - 2.4800067, -3.4329114, -2.9270582, -1.1518118, -3.45207, -2.9469588, - -0.22089276, -3.2141063, -3.579657, -2.3115425, -4.9234905, -3.0682893, - -1.5260248, -0.21034089, -1.355397, 0.19784401, 1.9575977, -3.0547335, - -1.2517543, 0.5791747, 0.8165319, -0.7280406, 3.5575473, -2.066933, - -1.4317943, 3.6014786, -3.436644, -1.9107522, -1.0416207, -2.631499, - -1.3100998, 2.0827231, -1.0640293, -3.639125, -0.35760567, -3.8898787, - -1.6646624, -3.416522, 0.9464266, -0.4582022, -2.2733364, 0.64558, - -0.50185615, -1.458555, 1.5143462, -0.7606995, -2.0606198, -3.9744422, - -4.318, -1.2799035, 1.0979477, -2.0190973, -3.3484106, 1.5541735, - -1.3327367, -2.7421458, -0.8643394, 0.7885555, -0.68457055, -3.4336467, - -0.58688194, -2.2153893, 0.62181455, -2.7001252, -3.9494202, 0.5415163, - -2.2966788, -1.6183279, -2.4134636, -2.5706713, -3.8243659, -0.49365947, - -0.6086108, 0.50868726, -3.093378, -3.271547, -1.8711678, -4.0257387, - -5.0930786, 1.1633751, 0.9056708, 0.5625637, 0.90397125, -0.69960517, - -0.099037535, -2.711461, -3.5102055, 1.0561943, -0.33555788, -1.7820659, - -2.5397642, -1.6935153, -2.5889735, -2.7961745, -3.4892302, -1.9320624, - 0.86176497, -1.1836838, 0.7793671, -1.830758, 1.4551836, -3.992141, - -5.27496, -2.7185557, -0.93214655, -4.0248494, 1.215981, 0.19505118, - -3.2952986, -4.068544, -2.3128712, -0.6639353, -0.025569737, - -0.32139695, -1.3375798, 0.020648327, -1.3082494, -2.4187443, - -2.4041872, -3.847307, -0.48938897, -4.6191745, -2.641885, -3.4637415, - -5.828577, -0.9359848, -0.07324854, 3.3690948, -5.196585, -3.30049, - -2.5483184, 1.8228699, -2.9055696, -0.1475772, -2.5085776, -1.4541954, - -0.8336075, -4.137807, -1.538023, -4.542521, 0.3594436, -3.8646774, - 1.0227447, -1.7433977, 0.6977063, -4.2870026, -0.8102005, -1.7122768, - -4.5881124, 0.95973825, 1.1365803, -2.987138, -4.8852296, 1.5982543, - -3.6367483, -1.0384198, -1.6054871, 0.28980422, -4.3830166, -1.0780047, - -3.0741165, -4.1145916, -2.6300747, -1.3890092, -0.88759685, -0.8359969, - -2.0387177, -0.29672235, -1.5533646, -2.0966578, 1.5849944, -2.0151355, - -2.7959778, -0.29953772, -0.5444964, -0.24238361, -4.0048137, - -2.5920715, -3.2287836, -1.5859482, 1.3178239, -4.0031505, -1.9096171, - -1.7520239, -0.7295171, -3.0487518, -1.4987643, -3.7650464, -0.93541956, - -1.9037144, -1.3035185, 0.45654795, -0.49034116, -0.3783883, 1.1984155, - -0.49310094, 0.27285165, 1.5678943, -2.1661468, -2.3266878, -2.0171242, - -0.39824662, -2.3984182, -1.5047323, -2.2462502, 0.0997794, -4.212119, - 0.8741638, -0.4340454, -2.228883, -2.3194318, -3.0738883, -2.5437725, - -0.60504115, -1.7507714, -1.9395698, -0.7928142, -1.6834097, 1.1335679, - 2.9206762, -4.373709, -3.3861907, 0.8860319, -2.8260698, 1.2155426, - -1.9426346, -2.7243547, -0.751453, -3.0872803, -1.5126693, 0.22796519, - -0.13094847, -3.5229785, -3.5818403, -1.6915525, 0.103299625, - -4.7971277, -1.1743891, -1.5540137, -1.876987, -2.003516, -2.6658251, - 0.013189833, -1.4820346, -1.208292, -2.1308951, 0.8473494, -1.8609481, - -0.2159273, -3.0402784, -3.0281956, -3.5457208, -1.6738793, -1.5146269, - -3.656294, -3.0224462, 4.528023, -1.3529822, -2.5412488, 0.21706843, - -2.1850042, -2.8957582, -0.5402229, -1.1621681, 0.39446172, -2.2779043, - 1.2576267, 1.9831262, -1.1036961, -1.5920743, -1.9256841, 2.362229, - -1.7054234, -3.2457795, -0.11514267, -1.8250554, -1.7256258, -0.9111773, - -0.7749532, -1.0823302, 1.8844686, -5.114634, -1.5498987, -0.72170097, - 1.5555738, 0.4046193, -3.4363835, -3.7940829, -1.235536, -5.9502945, - -1.2864788, 0.06056755, -0.11979301, -1.8049154, -2.0799274, - -0.044066668, -1.4191562, -2.3092847, -2.6128085, -3.8460407, - -1.9855753, -6.1256275, -0.85499513, -1.8309067, -1.0806788, -4.0198865, - -0.2456146, -1.788077, -0.51275295, -0.39744768, -2.1653912, -0.2724976, - -0.5843461, -2.990007, -4.9835157, -0.33549073, -0.83332455, -3.1790414, - 0.8423384, -5.455914, -3.8449368, 1.1566548, 1.6410805, -3.368424, - -1.5536458, -4.436987, -0.54788905, -1.7573158, -2.5898829, -3.4027164, - -4.2075143, -1.1573983, -4.7129946, 1.240478, -3.0135896, -0.158505, - -1.4560152, -4.844663, -2.540669, -0.4780848, 0.97500813, -1.4208156, - 0.50102824, -2.3820522, 0.33067912, -2.728196, -2.656703, -2.7666225, - -1.2354301, 0.43707895, -0.674154, -0.596631, -2.7445276, 0.581481, - -1.7425765, -0.8636807, -1.6955206, -1.2938209, -1.579438, -4.0970798, - -2.085582, 2.603238, -1.3166729, -3.2280724, -4.7549596, -1.3710997, - -2.4517744, -2.8281505, -1.2352207, -2.8678238, -0.19942257, -4.1923537, - -2.3210046, -3.411883, 2.5668, -0.29554206, -0.420767, -0.690778, - -4.840544, 0.63828015, -4.856752, -0.5294564, 0.09610202, 0.02679748, - -3.01095, 2.1051455, 1.6519264, -3.81723, -0.5640719, -1.1885091, - -0.044259712, -2.739619, -1.6335406, -1.9597318, -2.4606678, -1.8549035, - -2.2247162, 1.7154049, 0.66745496, -1.1467495, -3.4804661, -4.1489754, - -0.29299432, -3.5665734, -1.244769, -0.4704149, -2.1759963, -3.3220174, - -1.3325105, -2.435014, -2.2093742, -0.18390284, -0.4221116, -1.8172338, - -1.767174, -1.9350797, -1.6451007, -2.2040503, 0.14583334, -3.4140515, - -0.6117851, -2.3829644, -3.9994888, -5.9112988, -0.19756806, - -0.42731023, -3.1418777, -0.787944, 1.5981926, -4.2879615, -2.9205592, - -4.4317737, 1.5421766, -0.7303908, -5.1598854, 3.2958467, -1.2786872, - -4.4392266, -2.2980769, -2.5687776, -3.2588427, -1.5602286, 1.1533371, - -1.5882053, -2.8410738, -0.49260068, 0.08826686, -0.7188629, -2.5439212, - -0.16779971, -0.116514474, -1.6140885, -2.0234075, -0.76266164, - 0.32664764, -2.8210387, -2.303638, -0.38993353, -7.3741884, -3.5071929, - -4.2359166, -4.8980484, -2.7363205, -1.1695459, -3.8912284, 0.2228507, - -2.8721788, -0.5014188, -2.2112439, -0.8456982, -5.783661, -2.9353745, - -1.4944191, -0.77432495, -2.877949, 0.5887506, -0.275306, -2.328271, - -0.27932134, -2.5938542, -2.1705472, -0.43065718, -0.41434032, - -2.150872, -2.1100338, -1.4852022, -3.8583274, -1.7155863, -1.8021563, - -0.53099716, -5.3881755, -2.7239578, -2.912923, -1.2992896, -1.0000803, - -3.0280616, -0.07684444, 0.600713, -0.07140708, -1.4165916, -1.1839439, - -1.4503422, -0.20127057, 0.647965, -0.7117529, -4.3689637, -0.14303137, - -2.0497422, 1.3705065, -0.56181014, -2.5712574, 0.6716979, 0.32678708, - -4.789133, 0.9254427, 1.2551922, -1.1484774, -2.925673, -5.1804414, - 1.3337733, 1.3354152, 0.25437886, -2.4235005, -2.1097867, -1.7606193, - -1.7955929, -0.63720226, -2.8599856, -0.4992836, -4.324029, -4.496824, - -4.5415363, -3.2455685, -0.84101063, -2.6894717, 0.11509315, - -0.36948586, -3.1969807, -3.5831301, -0.5311811, -1.291771, -0.3769086, - -0.3670175, -2.3831782, -0.8928635, -2.5293949, -2.0708718, -2.289403, - -7.2092485, -0.0143714715, 2.7372863, -0.43405747, -1.0925896, - -1.2939667, -0.80624104, 1.2752509, -3.4650445, -2.5839415, -2.361341, - -2.8933923, -0.53023, -0.95392245, -3.2321558, -2.5597293, 1.2675174, - -2.162564, 0.24977905, -1.0125257, -0.8152646, 2.2287242, -0.43000722, - -0.94775677, -2.0031893, -3.0696402, -4.172141, -3.1137757, -1.111284, - -1.418725, -5.328566, -4.445285, -0.011261497, 0.105296165, 0.7047054, - -2.8886597, -2.6317306, -1.1409001, 1.6231905, -3.232786, -0.47855198, - -0.97972167, -3.3236527, -1.0832305, -2.3338733, -1.0289121, 1.1038784, - -2.1788268, 1.7267976, -2.6469824, 0.12502487, -3.2642107, 0.47096282, - -3.8442662, -5.904388, -0.6135002, -2.3713026, -2.8945954, 1.3273029, - 2.5020425, -2.4794378, -2.2483792, 0.095496416, -0.34007382, -1.3258594, - -3.9137986, -7.7561507, -0.026840787, -3.3113687, -3.0875926, - 0.82888126, -3.5652401, 0.20068765, -1.6636113, 1.8900826, -2.1935043, - -1.606549, -2.4604406, 0.8181839, 1.4290453, 0.054084554, -2.3410127, - -2.0266948, -1.7958869, -3.0757456, -1.3495599, -3.6052637, -1.7674497, - 0.96134776, -2.6555142, 0.90708596, -1.2050862, -1.6839073, -1.17256, - 0.885913, -2.896012, -0.8816496, -0.5284605, -0.49399003, -3.9781742, - -1.5562944, -6.181146, -3.1336536, 0.44843912, -3.6600971, -2.5546503, - -0.002075594, -1.5731132, -4.3904557, -3.7829309, -4.3468814, - -0.7927209, -1.3842791, -3.7576823, -3.5819523, -1.8318603, -2.9217472, - -0.11534844, -2.1808662, -2.17353, -4.3852882, -2.5996404, 4.027411, - -2.867988, -1.2820868, -3.5807137, 0.27124634, -1.90809, 1.6451507, - -0.96023446, -2.3672378, -3.20361, 0.39487734, 1.2383316, -2.1706095, - -1.925921, -2.4851723, -2.0243235, -2.0813258, 0.17956084, -1.7624654, - -3.889761, -4.029707, -3.0440729, -1.5658054, -6.2563896, -2.449985, - -2.8017654, -2.791397, -0.2016398, -2.094462, -0.86943454, -2.6816237, - -3.8243077, -4.663072, -5.1072025, -1.6664242, -1.6294377, -0.046894092, - -0.63301486, -1.3604422, -4.099608, -0.17318395, -5.045397, -5.0331225, - -1.3914434, -0.9376517, -2.2718809, -0.76060593, -2.848762, -1.8981158, - -1.7933741, -3.2727263, -1.3340106, -2.1739528, -1.9022903, -1.1865431, - -4.0751715, 1.061724, -2.1614208, 0.44696468, -4.1593947, 0.015680794, - -3.4471593, 3.3447034, 0.013142917, -2.8426163, -1.3014066, -0.63280433, - -3.0143862, 0.39860594, -0.20183231, -2.5261345, -4.0810156, -3.2644653, - 0.03828671, -1.7229451, 1.0759983, -2.1523209, 0.473306, -2.409909, - -1.0988487, -3.0211484, -2.4826705, -0.9857425, -1.8290248, -1.0326926, - -3.370142, -1.6796026, -1.6378413, 0.12953322, -0.67574984, -1.3999686, - -3.478588, -0.6452642, -2.0504951, 1.3869759, 3.2578578, 1.0508943, - -2.531999, -3.38687, -0.015692703, -1.9669324, -0.47752273, -0.16966626, - 0.095122635, -4.2681246, -5.367726, -2.7081344, -1.0621117, -0.30370617, - -0.10010745, -2.5778992, -2.665674, -1.8571852, -0.7740046, -3.1730206, - -0.7252079, -1.9466588, -0.24604896, -2.2525318, -0.4779376, -3.2493107, - 0.5863761, -3.2671885, -1.5287586, 1.8253782, -2.8328888, 0.94587505, - -0.4999351, -2.4257514, -0.7390304, -1.1930529, -1.1247704, 0.67405015, - -2.2934487, -1.5405692, -1.9798307, 2.168025, -0.36952958, -2.925043, - 0.6596477, -1.8407371, 0.115985766, 0.46765354, 1.5001465, 0.1838943, - -4.032198, -6.3664207, -2.652208, -1.1709312, 0.9314758, -2.824896, - -2.9309876, -1.5907294, -2.4559278, -2.1075616, 0.27205172, -4.1069117, - 1.3195537, -1.4044274, -3.8053377, -0.1281098, 1.2743701, -0.47842228, - -4.606455, -1.9525179, -1.2875555, -3.9389653, -4.1691813, -1.410647, - -0.97213614, -2.0696096, -1.0147381, -2.6990073, -1.0487125, 0.40549743, - -9.039673, -4.442402, -1.8558118, -4.2456264, -4.64228, 0.0072891153, - 1.4281074, 0.5707527, -1.0115958, -1.5335478, 0.44589502, -1.546715, - -1.9985433, -0.19124518, 0.14106378, 1.991449, -0.31243634, -4.1824584, - -2.1117516, -1.452071, 1.773359, 0.39111996, -4.6034403, 1.995182, - -3.3935738, -0.032403328, 1.038041, -1.8897558, -4.204071, -2.1827135, - 0.29895273, -1.5793723, -2.0890703, -3.5377588, -1.5234429, -1.104241, - -3.136346, -2.2088437, 0.3034395, -1.0291967, -2.1114135, -1.4981011, - 0.97140896, -2.2661226, -1.9127129, -3.3727627, 0.1140405, -2.4323266, - 2.5457106, -1.4504646, -0.14458577, -2.132875, -1.2141991, 1.9808292, - -2.3396177, -3.8537486, -0.8668991, 0.3638206, -3.160423, 3.0113635, - -0.82897353, -2.23796, -3.9350936, -0.91437894, 4.806436, -3.9450474, - 1.4155282, -1.120575, 2.1135554, 0.32162234, 1.7146003, -0.20453513, - 0.63112015, 0.9197086, -2.4083192, -1.0603895, -3.7398186, -0.57405573, - 0.30290464, 1.1117897, 0.5335001, -1.8237871, -1.6830398, 0.72627026, - -2.3168437, -0.96856505, -0.57381946, -1.1298903, -3.1832278, - -2.1388927, -2.944106, -0.46031567, -2.0942376, -0.31305528, -1.6012084, - -1.3720534, -1.7280498, -4.281775, 0.40274695, -2.8379047, -2.110299, - -1.0218638, 0.5387013, -1.8273877, -3.9041862, 0.8113224, -4.69884, - -0.05096639, -2.5369375, -2.7231362, -0.31510657, -1.9785678, - -1.4548202, 0.78103745, 1.4884889, -6.253765, -3.0483556, -1.7086974, - 1.2397202, -1.2526019, -0.4575936, -4.5423284, -4.61147, 1.3804756, - -0.5734913, -2.033755, -1.0543584, -1.6726347, -1.1660492, -1.4433419, - -0.552912, -0.58352494, -0.4996386, -1.6568344, -1.4299009, -3.897008, - -2.1543894, 1.4938586, -1.7729292, -3.0963156, -2.6588194, -1.0980686, - 0.04692375, -2.7842438, -0.08124052, 0.23687032, -2.660761, -2.4602582, - -0.85406375, -0.7134509, -1.1070241, -5.295191, 3.2116036, -0.18098217, - 1.0644124, -3.7800462, -1.2106736, -1.6692902, -1.1769837, -0.11650233, - -0.7829645, -3.5086672, -3.1552231, -1.2296709, 1.2923653, -3.1191761, - -3.4711215, 1.1601365, -0.7295885, 2.9332874, -0.009361414, -1.6942983, - -1.7092829, -0.7826155, 2.6535964, -3.5600681, -2.4199617, -1.0484562, - 1.8741162, 1.0060272, -1.3368118, -4.5959225, -3.0303864, -0.46171463, - -5.4234276, -1.414574, -0.01433048, -2.3359756, -1.4769493, -3.4754732, - -6.5461626, -4.2709045, -1.0714998, 0.639542, -0.4848215, -2.6938155, - -1.6754125, -3.8983226, -3.9929805, -3.7770758, -2.467829, -1.7740488, - -1.8282034, 1.8199865, -1.1751437, -1.1395174, -0.67290485, 1.5903121, - -1.4284695, 0.712355, 1.6104875, -0.8448311, -1.5499597, -0.9993612, - -4.3616567, -2.101345, 2.2670035, -2.667876, -2.0931807, -2.1164315, - -1.3062826, -2.0039837, -2.8432548, -0.49282664, -0.3163922, -3.0150924, - -0.66347176, -2.464896, 1.659117, -0.8248053, -4.707784, -0.5590521, - 0.07486877, -0.7300125, 1.2548916, -2.5932014, 3.3224733, -0.15153828, - -0.4967122, -2.8520322, -4.0060616, -2.7305748, -0.9236407, -0.8802252, - -1.1959565, -1.130099, -0.5462295, 0.21178296, -2.282573, 0.97730875, - 0.69620174, -3.6598394, -2.0606396, -1.0701473, -2.5830717, -1.3687981, - -2.2678444, -1.5558721, -3.2429128, -3.388229, -2.5943904, -2.1452641, - -0.3653176, -1.4698967, -1.6678854, 0.5635084, -1.8196502, -2.3675072, - 1.467165, -3.1113915, 1.5424056, -3.420596, 3.966386, -4.672486, - 0.46644494, -4.7285986, -0.3046267, -0.54509056, -4.358144, -2.8616338, - -1.5635266, -3.702441, -4.7151875, -2.8375783, -0.56473976, -0.08508743, - -1.529228, -1.5695257, -0.10622478, -2.319404, -1.9003441, -2.1589499, - 2.063015, 1.87592, 0.73610985, -2.1498284, -4.747182, -0.67126256, - 0.75093454, -2.2271287, -1.1802269, -1.1188691, -2.8796787, -2.583987, - 4.179626, -2.0401013, -8.10993, -1.7059792, -2.4196007, -1.5060579, - -1.7766118, -2.8511505, -1.4862189, -1.695349, 0.17371914, 0.20225847, - -0.59471226, -1.7768095, -1.3276343, -2.6519284, 2.3032124, -3.0680645, - -2.2510576, -0.80979186, -2.2461226, -2.029242, -1.5615399, -6.418201, - -4.550291, -1.2885946, -2.4372191, -1.0118486, 0.68823653, -0.9644267, - -0.71018434, -2.456144, -6.0902443, -2.3157034, -0.95048034, -3.167913, - -5.4973207, -1.7168913, -0.57192266, -2.1650896, 0.33827728, 0.21746603, - -0.75376844, -0.41758347, -0.13641997, -1.7491935, 0.6967153, -2.359258, - -0.5110854, -4.7569203, -0.34696057, -2.429239, -3.2313209, -2.7989125, - -3.5665982, -0.3001385, -5.396039, 0.1374821, -1.762401, -4.2313633, - -2.8027961, -0.8690235, -3.2140174, -2.6139224, -0.26936206, -2.8447254, - -5.446087, -2.635653, -3.61622, 0.70533746, -3.6392007, -1.5785364, - -1.425886, -3.4664066, -1.5459238, -4.943947, -1.617512, 0.028865317, - -3.5564904, 0.7312863, -2.2015054, 0.18750028, -0.87467796, 0.23470445, - -2.7549224, -3.3765616, -5.6794567, 2.5034862, -0.15552993, -3.2229378, - -0.34349692, -1.0545967, -2.9495814, -1.2733982, -0.8653082, - -0.37891254, -4.3822956, -4.4345922, -1.9255708, -3.121101, -2.6710129, - -2.6178026, -2.4101038, 2.0995517, -5.5754585, 1.6751003, -2.8977108, - -1.8385626, 0.070516616, -4.0545974, -0.30579484, -1.7440553, - -0.32621017, -1.5246911, 1.4433196, 0.32431105, -1.9817486, 1.6413785, - -5.374054, 1.3006914, -1.4409705, -2.2028432, -1.9161711, -2.0504978, - 2.4157395, -0.86028606, -0.2728426, -0.038434207, 1.2213362, -0.5280583, - -1.2508312, 2.6104546, 0.1595428, -3.2779582, -2.4155905, -2.281985, - -2.3619494, -0.32991385, 0.13192464, -1.5077771, -1.0173116, -2.6976426, - -2.9929605, -1.3798023, -0.0049335547, 0.4828886, -5.8231177, - -4.6101246, -2.0103817, -0.059557036, -3.1113808, -2.13629, 2.9895613, - -1.8212944, 0.24535999, 1.3715854, 1.0351161, -1.2100768, -2.1184127, - -2.961877, -0.8811045 + "source.genres.label": [ + "Posters", + "Lithographs" + ], + "source.genres.concepts.id": [ + "whcsuusy", + "fmydsuw2" ], - "features2": [ - -0.588839, 3.302588, -0.22442049, 0.77516526, -1.7735376, -3.274624, - -0.20915087, -0.16601604, -0.70142967, 0.9411546, -1.8654141, 1.2970353, - -2.6664767, -1.3228457, -1.2927858, -2.071459, -1.1956341, 1.4976039, - -2.549496, -0.3264246, -1.4009794, -2.4027653, -4.300406, -0.41800568, - -4.016909, -3.3656237, -0.76614654, -0.48398647, -4.1429806, -3.7249248, - -0.28891963, 1.3282821, -3.599814, 1.725924, -1.3619028, 0.944256, - -2.0530934, -0.94232357, -0.9857955, 2.155141, -2.290899, -1.0469584, - -1.4666142, -0.69922394, -1.0867182, 0.77008873, -4.219656, 3.194822, - -0.5930162, -2.5863335, -1.8311836, -2.454578, -1.9318044, -0.07049824, - 0.71416163, 0.23928502, -3.0864768, -2.3224607, -4.7452254, -2.0011892, - 0.23439811, -2.0938563, -1.6317898, 2.608797, -0.16828361, -0.25091162, - -0.27117234, 1.8327869, -2.2011197, -1.5464892, -0.9852434, -2.0171726, - 0.2073687, -4.343543, -0.7073996, -1.5288815, -1.2014899, -0.94749725, - -0.13470894, -3.113932, -4.7764554, 2.322611, -1.6696274, -0.42638052, - -2.7047896, -3.8568153, -3.942982, -4.6522994, -3.6209002, -1.1233017, - -0.046728726, 1.123468, -3.1527033, -2.430582, 0.07199129, -1.9015065, - 0.9578544, 0.51990503, -3.143528, -3.701026, -2.5595813, 0.62318456, - -2.5039644, -5.6522417, -4.4580855, 0.61732644, -3.066637, -2.4905808, - -0.13979004, -2.9821236, -2.693033, -3.5546155, -6.1393385, -2.5927114, - 0.35601193, -1.2118022, 0.55933946, -1.800435, -0.9137249, -6.0053353, - -0.6815139, 0.70375633, -0.15760417, -4.386357, -3.8362362, -0.23388146, - 0.75657535, 3.2043514, -4.5891676, -1.9378535, -0.47692108, -3.1245387, - -2.7998528, -0.93041724, -0.35127297, -0.8773355, -1.5071214, - -5.5863867, -1.4865881, -2.659447, 0.28400728, -0.12551342, -0.31708038, - -1.128678, -0.9814489, 0.28702503, -2.0319817, 0.5627575, -0.8385759, - -4.638856, -2.1113658, -2.702016, -1.2494459, -3.7707338, 1.8130211, - -2.1115253, -3.4747398, -0.3350469, -1.2698066, -2.7460196, -2.0445566, - -1.8529483, -1.9777709, 0.972458, -4.4699945, 0.7288451, 0.04196675, - 1.7418284, -2.822834, -0.36705914, -1.6030129, -0.76230526, -2.711578, - -0.772097, -3.8760195, -0.44622242, -1.1253293, -2.1688282, 2.7194166, - 0.9153311, -1.2282845, 3.5822108, -3.9975605, -2.9831061, 0.88496244, - 0.031144593, 4.0608783, -1.7071503, -1.3197321, -1.5110233, -1.1846495, - 2.2915084, 0.41253805, -2.207328, 0.53387904, -0.93809485, 2.4291556, - -4.140948, -4.4631195, -3.4169934, 2.1728148, 1.2298036, -0.6208546, - 2.2046003, -1.9755243, -1.0544941, 0.12784505, -1.0912228, -1.0657626, - -0.20244849, -0.7826551, 3.056604, -1.8610479, 3.1905303, -1.3446088, - -3.6715093, -3.108569, -2.6160233, -0.709116, 2.8079574, -0.52346164, - 0.78049964, 0.7279115, -3.2068114, -2.1322722, -0.61001825, -3.5924864, - -3.0070662, -3.5859272, -0.69990844, -3.6395755, -1.3140475, -2.0033805, - -1.3949103, 0.31345454, -0.8924308, -2.6249516, -1.4633708, -2.2474136, - 0.5473382, -0.8011055, 0.97226727, -2.1652393, 1.735059, -1.6084486, - -3.1354392, -0.68600357, -3.659083, 1.7898227, 0.26327914, -1.9177006, - -2.8860302, -0.48919183, 1.6283454, -2.2774796, -1.3733786, -0.21329379, - -1.1697031, -0.82280624, -2.7916584, -1.4911139, -2.4698076, -2.3051863, - -2.20546, -5.2925153, -2.7696104, -0.23219636, -3.8665278, -2.0400636, - 0.7450401, 0.5548472, -3.7041254, -3.9389849, 1.6245536, -4.3127675, - -1.0493587, -3.257735, -2.1263292, 1.0430067, 0.14222053, -0.8062061, - -1.502013, 3.827096, -3.2861516, -4.205691, -1.0364677, 1.1734316, - -3.2062669, -1.6628954, -1.8526156, -3.4627383, -1.3252738, -4.2849827, - -1.7480972, -2.3969414, -0.87729764, -0.7326435, -1.4389049, -0.7138834, - -0.500913, 0.809163, -3.558984, 0.12142517, 0.6132424, -0.65862286, - -3.5827658, -1.7485384, -1.071022, 1.5437787, -2.0860057, -1.7287794, - -4.927301, 0.7872538, -2.2318263, -0.20166852, -0.93264836, -1.9400251, - -4.232706, -4.423131, -3.284197, -1.192071, -2.638307, -2.653182, - -1.3008703, -3.361552, -1.1557333, -2.3578348, -3.6698675, -0.88545144, - -1.5262619, 1.2399644, -0.17300671, -0.013772383, 0.36118454, - -4.0509553, -1.2031722, -3.2359304, -3.1435196, -2.9086084, 0.9677756, - -4.631749, -1.8773476, 0.13651505, -1.3973042, -5.8260927, 1.1478289, - -1.8227879, -4.279883, -5.964447, 0.7068457, -0.35879248, -3.3151777, - 1.1851737, -2.7005067, 0.4882439, 1.0927416, -3.3190565, 0.83462983, - -0.4045186, -3.8630118, -3.1301074, -0.2755012, -2.5538158, -1.7132833, - -0.3796991, -1.4036918, -0.0043346956, -5.0197716, -1.9708036, - -3.769081, -0.2638998, -1.9781556, -2.4310405, -2.4890883, -1.965321, - -4.998382, -4.1749573, -1.3200661, -2.5194569, -1.705772, -1.2550067, - -0.11982994, -2.5327878, -3.763429, -4.1781282, -1.9781893, 0.24529167, - -1.003952, -4.3722243, 1.5181098, 0.09977472, 1.806031, -2.342155, - -3.4486053, -2.4443445, -0.74047685, -5.1860456, 2.3483055, 1.9794625, - 0.3940919, -0.5636963, -0.96878487, -1.02815, -3.2055671, -3.0401223, - -1.7319237, -0.1835014, -2.9398568, 1.9364439, 2.2113526, 5.787073, - -0.2753143, -3.37449, -6.2973666, -1.8566401, -4.3708787, -1.2537032, - -3.483031, -1.5407114, -0.81858957, -1.2620683, 0.9479544, 0.6138815, - 1.3085177, -1.1209663, -0.31129774, 1.6307902, -1.065747, -2.9753318, - -0.53009474, -4.615345, 4.0944147, -3.8389835, -2.9292324, -2.9344854, - 0.11758979, -3.1726127, 0.11908443, -0.20891693, -2.6584246, -2.3648121, - -1.4800427, -0.38411152, -0.70400983, 2.2668233, -3.2021205, - -0.35296285, 3.2847085, 4.238606, -0.04446727, -4.2436094, 0.9195596, - 2.532144, -2.0785258, -2.8122525, -1.0364394, 0.06419467, -3.552965, - 1.2117637, -2.2269008, -4.6110606, -2.1474962, 0.97875565, -1.4551321, - -1.7791066, -1.7040741, 0.67293817, 0.16413185, -1.6262364, -2.2276635, - 0.31453684, -1.816364, -1.207494, -0.8108813, -1.6441594, 0.6638041, - -0.17639863, -1.3079933, -3.0032785, 2.5197082, 0.50794595, 0.40913352, - -5.730369, -0.11719564, 0.061025858, 1.6779652, 0.059086256, -4.174365, - -2.7796726, -6.2878017, -0.19311367, -0.61446553, -2.714356, -5.8598022, - -3.789076, -0.26559687, -1.2093003, 1.0506188, 0.1195045, -3.1862726, - -0.44257346, -0.071090534, -0.45514712, -1.5879402, 1.7377731, - -0.41779473, -3.530522, -1.886881, -2.4221206, -1.2896318, -0.8656654, - -1.5521084, -1.5852331, -3.3801746, -1.3529804, -1.8403091, 1.3819174, - -2.877298, 1.3758957, -3.1680274, -1.9422421, 0.59658206, 0.123290055, - -3.3299065, -1.6418067, 0.8236798, -1.0632299, -3.2737324, -1.6181203, - -3.3222833, 2.2871509, 1.4907843, -4.0684295, 0.9274921, 1.7232206, - -2.8114743, -2.564414, -1.833467, -1.7107973, 0.8691365, -5.7650404, - 1.1250479, 0.7509764, -1.9515376, -0.46701527, 1.8027298, -2.3275468, - 4.1795883, -0.5641404, -4.015885, 0.66966283, 2.4017754, -2.3206146, - -1.366689, -1.7598717, -2.9819906, -2.963498, 1.3687651, 1.9845755, - -2.8706734, -0.9950255, 0.42709482, -1.7631058, -0.89941764, -7.6438766, - -3.7046397, -0.5188597, -3.4874678, -2.281308, 2.749427, -0.5158734, - 2.0429642, -2.7564433, -1.7836089, -0.62123567, -0.02978479, 1.3091195, - -2.0736892, -2.2263498, -2.9272053, -0.56632566, -0.9936276, -3.7362854, - 2.1604762, -0.12443413, -3.028751, -2.1774683, -0.4244823, -2.9595885, - -0.15034351, -1.7036471, 0.896383, 0.06307213, -1.3179604, -7.4900894, - 1.5939362, -3.7701993, -3.8294075, -1.9017256, 0.70772713, -0.82457, - -2.7290556, -0.8205118, -1.2201483, -2.5283463, -4.931398, -2.3303957, - -2.0812407, -4.0027723, -2.1335692, -0.49219546, 0.8305737, -1.571168, - -1.463716, 1.7267406, -4.2246194, 0.83620596, -2.290809, -3.295959, - 1.0473813, -0.34505862, -4.4051237, -3.3065472, -1.5572287, -5.343988, - 0.39422417, -2.0592442, -4.865431, -2.7550097, -2.7258117, -1.5271962, - -1.465871, -1.9411389, -1.617348, -4.920211, -4.1093884, 0.63873756, - 0.5994795, -1.8502663, -1.1139197, -0.4525523, 0.18075988, -2.8365993, - -2.677411, -0.55857784, -3.2961068, -4.938364, -1.7878453, -2.3919318, - -4.5348926, -0.25972864, -2.7503986, 1.5830562, 0.21038291, 0.5535874, - -4.8223624, -0.14402291, 3.8449094, -1.183448, -1.9734048, 0.05505986, - -0.5155131, -2.7453308, 1.6537733, -1.9396133, -2.1104782, -0.87959844, - -1.7973392, -0.20908877, -2.2453332, -2.6905127, -1.4080929, 1.0142571, - -0.9270748, -1.9096526, -1.412968, 0.6172076, -0.3861785, 0.021493448, - -1.6825942, -3.1289067, -1.2645135, -2.6252124, -3.7997715, -3.946463, - -0.33122617, -0.8987136, -1.976878, -2.5003679, -0.96033394, 1.471687, - -1.1206789, -0.9376567, -3.142319, -4.805841, 1.706283, -2.6113474, - 0.18803328, -3.9836552, -1.7096097, 3.3926947, -2.901924, -2.406391, - -2.9814434, -2.9285972, -1.7872766, -2.5491261, -3.053897, -1.8404049, - 2.2169478, -0.101674356, -2.671362, -2.70514, -4.6373057, -2.6692462, - -1.3021729, -0.85039574, -0.08933842, -0.2581534, -2.6454492, - -1.2508862, -2.6205602, 1.0360432, -0.64204794, -1.7348222, -1.9297312, - -0.6249075, 0.13311522, 1.0039631, -5.6955624, -2.5130723, -1.5756354, - -0.5954201, -2.3742719, 2.5419862, -3.5429013, -1.3447175, -1.5242183, - -3.504512, -1.1350291, 0.03876715, -1.850802, -2.7045994, -2.975016, - -8.143688, -0.84772456, -2.5486906, -0.5157036, -1.8830014, 0.3550041, - -1.3041856, -3.3284278, -1.8963538, -0.25206298, 3.4789839, -1.0658553, - -3.713963, -4.4146013, -0.22264826, 1.7324382, -0.44516435, 0.537882, - -1.5873272, -2.3659122, 0.5719718, -3.6763558, -3.0521665, -1.8599757, - -2.280704, -1.4535533, -0.9258639, -2.5977025, -2.1742918, -3.0380478, - -0.7610727, -3.9297957, -2.508629, -2.2778873, -2.1309037, -2.2847345, - -2.1419616, -2.3725247, -3.9959524, 1.0405877, -1.6894307, -1.6049769, - 1.4109194, -3.5708003, 1.9175724, -2.5512679, -2.0006225, -2.2118683, - -3.0094595, -0.12519419, -5.92359, -2.2706208, -0.73260957, 1.070835, - -3.3751817, -0.5715137, 0.79680383, -0.07659799, 1.654507, 1.2503715, - 0.59068274, -2.9243736, 0.47147316, 0.7854575, -0.62534976, -1.598194, - -0.7049769, -2.1231077, -0.649828, -1.0855997, 1.4265717, -0.32165384, - -2.3408432, -1.4225937, 2.3120856, 0.49064085, -2.4341395, -1.8087585, - -0.53333414, -4.003105, 1.5755196, -1.134954, -0.03876192, -3.1486716, - -3.507584, 2.4507425, -2.9853213, 0.62393934, -2.1012235, -0.4956529, - 1.8080287, -2.1892915, 0.13452788, -3.982989, -1.0594223, -0.4077446, - 0.58713996, 2.0596962, 3.4793484, 2.3477411, 0.8378313, 1.4522619, - -1.9074981, 0.38080278, -0.9018351, -2.7236695, 0.09390672, -3.5214672, - -0.55307114, 0.14170441, -0.23111716, -1.2052441, 3.486485, -2.587937, - 0.263425, 2.232791, -2.8301501, -1.6429532, -1.697451, -0.6019888, - -1.4088467, -1.1285787, -0.09664392, -0.50752395, 0.49570817, - -1.5689049, 0.19561547, -0.35619777, -2.9683301, -3.4871716, 1.2455972, - -1.4406309, -4.120073, -1.6095364, 0.14372297, -0.9666676, 2.304516, - -1.3816513, -3.375757, -1.7413645, -5.4956837, -0.3557391, -1.6152828, - -2.9762619, -1.2701349, -0.7299196, -2.849817, 0.18230148, -1.2201135, - 2.0260594, -2.86066, -2.9040947, -0.3226465, -1.0917532, -0.77303463, - 0.139544, 1.2762855, -3.5000925, -0.22222683, 1.979573, -0.16035748, - 1.7195749, -0.7292442, -1.4333968, -1.6308552, -3.7867863, -0.71267915, - -0.11632081, -3.2232184, 1.0518286, 3.4278877, -2.4804485, -1.3826864, - -2.3056943, -4.340902, 1.0527371, -3.9110618, 1.563511, 0.86145073, - 0.12739024, -2.699831, -3.526194, -1.8867948, -0.9457514, -0.34345704, - -0.25939298, -0.3725257, -0.33659467, -0.78304356, -4.0985436, - -1.5964469, -2.491217, -5.7823725, 0.063831605, -1.0398724, -1.3194214, - -0.9912534, -0.9137452, 0.38674793, 2.1642883, -0.0013877526, - -0.089808576, -0.20446567, -4.510279, -0.59079134, -2.6822073, - -1.2156329, -5.5542064, -0.5032278, -0.9834377, -0.034406926, -2.021103, - -5.2872806, 0.96232885, -2.0788398, -3.232746, -2.840805, -1.6578927, - -0.88441116, -0.3578421, -2.6627736, -2.4546928, 0.9203421, 0.4527892, - 0.227913, -1.3213844, -3.300309, -1.6055374, -1.7746124, 1.9199197, - -2.0276468, -1.5727199, -3.7763522, -3.8426342, 1.4996789, -1.960986, - 0.67909, -0.17045695, -0.509021, 0.101136975, 0.4276306, -1.5973377, - -4.103666, 1.9694579, -0.97028, -0.93646723, -2.1499164, 0.11963711, - -0.8980405, 1.9067359, -1.8994443, -4.158277, -0.16358605, 0.4268958, - -1.5575008, -0.018168319, -1.517566, -2.3651752, -1.0793769, -1.305601, - -1.199587, -2.1182942, -0.77872807, -1.9736735, -1.7806673, -0.5956177, - -3.7441268, 1.6070374, -1.3092889, -1.9976702, -2.0320675, 0.5731766, - -2.1550577, -2.256705, 2.5339692, -2.6152303, -2.4623523, 2.0713382, - -3.1069071, -4.115256, -0.10676025, 0.016173959, 1.1953359, -0.9806832, - 0.0787804, 0.35404998, -2.6284528, -2.5661497, -2.1423507, -2.9998164, - -4.3287425, -4.922958, -1.1458179, 0.6956712, 0.92158514, -0.7017267, - -1.4235071, -1.1587213, -1.9349074, -4.9716663, -0.2059346, 1.7248327, - -1.8267341, -5.7310786, -0.35004008, -4.7905726, -4.0607285, -1.0141054, - 1.1001365, -2.4603188, -2.335861, -0.6693346, 1.7649127, -4.3944235, - -3.0004022, -3.5548375, -2.3743412, -2.825973, 0.44105494, -4.8995414, - -5.2214017, 0.18217492, -0.080895, 0.33706376, -4.7796607, 4.2031164, - -3.9634695, 0.48042792, -2.9739208, -0.5909171, 0.83695734, -0.16697039, - -2.3903346, -3.2597537, -4.458022, -1.4899771, 1.6153351, -1.3262478, - -2.2463765, -1.3436909, -2.437171, -1.7460107, -2.8081408, -2.6934383, - -3.6230073, -2.0913577, 1.310864, -1.2452191, -1.7595484, -1.372903, - -0.7887602, -1.5528071, -2.1646612, -0.9978436, -2.2019427, -1.8996778, - 1.928315, -1.8927678, -4.1896305, -0.52268195, 0.073335774, -4.210969, - -1.4410616, -0.2906734, -1.1441269, -1.7787665, -3.62904, 0.25187615, - -0.82456815, 0.72451925, -1.8615336, -2.7635748, -3.0415878, -2.3969743, - -0.73560643, -3.4661496, -1.5400068, -4.7268467, -2.3363414, -2.1440785, - -3.1760037, -1.635518, -4.681578, -0.8236378, -4.4164104, -1.562193, - -0.34985203, -1.5508429, -1.7781808, -3.9387903, -2.2508059, -1.5340815, - -3.5842059, 0.018226363, -2.1928735, 0.1967686, -2.5264528, -4.126922, - -1.091395, -0.5721282, -4.717461, -2.8758588, -0.7310636, -4.5181317, - -3.3643537, -3.403369, -1.7148613, -0.24549979, -0.4033293, -3.9745562, - -1.0497178, 0.19580057, -3.319325, -2.3653824, -2.1701791, 0.007755976, - -4.672614, -1.4173665, -0.9838328, -0.39833647, -0.37889117, - -0.007631935, -4.707061, -3.4343255, 0.13114974, -4.0558047, -5.528404, - -0.33375293, -2.6061819, -0.9937432, -3.540345, 1.4903831, -3.0379572, - -3.6371896, -4.620718, -0.114588656, -3.5819209, -3.2193806, -1.6322122, - -1.0648084, -0.5856518, 0.36202475, 0.7618942, -2.583304, -2.000216, - -0.63694537, -1.4848833, -3.4282246, -0.55870515, -2.056935, -2.7841134, - -3.930928, -2.5066547, -1.8881228, 1.2848107, -2.7569294, -4.86324, - -1.5855454, -1.4021935, -1.028831, -2.0525074, 0.21676259, 2.677544, - -2.49548, -1.2107785, -0.7054385, -0.17177162, -0.7554277, -1.9594934, - -1.5210376, -1.0131255, -4.4375467, 0.008505315, -0.86633813, - -0.8452275, -1.6726944, -3.1019797, -5.8969436, -2.420752, -1.6253557, - 0.8634138, -0.9395605, 1.4733771, -0.07933685, -3.829925, -1.1390858, - -0.22705728, -0.0864377, -2.8905518, -1.8958409, -0.1560514, 0.192903, - -2.1553905, -3.509806, -2.0673218, -3.2694495, -3.3615463, -3.3613591, - -1.9257092, 0.29061556, -3.3701172, -1.7260168, -0.6628101, -4.454974, - 3.031723, 0.69132453, -1.2306036, 0.17911834, -2.120626, -1.5152843, - -1.0609549, -0.9862262, -5.0833397, 0.6912053, -0.48248577, -0.24468398, - -1.9900346, -1.3768743, -4.210631, -2.443937, -2.2527943, -0.6345021, - 2.9673057, -0.42229566, -2.8966355, 0.653206, 1.9261101, -4.0411186, - -4.4033055, -1.9310971, -0.43070996, -0.6461037, 1.9974808, 1.7723379, - 1.420002, 0.07098187, 0.9106696, -5.9079, -3.253414, 0.73927474, - 0.0983571, -3.4802446, 1.4499086, -2.139831, -1.1713487, 2.826917, - 0.22789416, -0.11374468, -1.8127091, -1.2852141, -0.7569799, -4.2587247, - -0.86120564, -0.26270035, -4.7099886, -0.6165113, -2.8661695, - -1.7245847, -4.921533, -1.547464, -0.90148485, 0.48462474, -2.1784432, - -4.3256865, -3.1401389, -2.3918898, -2.9873013, 0.31237727, -0.61026186, - 1.4435002, -1.8051815, -0.3556415, -0.5526267, -1.4400882, -2.8783891, - -1.3921977, -2.621828, -2.603198, -2.111648, -1.431969, -1.2466824, - -1.46865, 0.924334, -2.2593083, 0.97856945, -0.027131125, -0.29643497, - -0.8127018, -0.55146176, -3.6192524, 3.9403877, -0.6097436, 1.333257, - -0.40001017, -2.8990474, -3.4639547, -2.8176928, -1.8485749, 0.31034517, - -2.2369864, 0.5330003, 1.143041, -2.6144152, -0.8442492, -4.63628, - -1.3036203, 0.47954935, -0.18591379, 0.14444087, -1.3455297, -4.910586, - 0.54630864, -0.7253083, -2.9987288, -3.333628, -4.0825915, -1.2287103, - -2.2973683, 0.1264013, -1.8724673, -2.343212, -3.951225, -3.0793428, - -5.5258913, -3.4028258, -0.65611744, -3.9251552, -3.1007, -5.6800046, - -1.6459653, 0.6978699, -1.4784529, -4.427781, 0.783355, -1.6856757, - -0.8944571, 0.29884562, 0.9097885, -1.5012875, -1.1237723, -1.5265341, - -1.1051084, -5.0721135, -1.2020212, -2.3739562, -1.963559, -3.4884987, - -2.6985095, -2.8071752, -2.3935475, 3.3396432, -3.8777764, 0.3876971, - -1.1438006, -3.5892632, -3.381462, 1.4564817, 0.26706526, -2.0693178, - 0.030025702, 0.68533254, -0.71825194, -0.7563759, -0.832967, - -0.46770796, -0.98682123, -3.4501452, -1.475683, -3.0470119, -2.5718641, - -0.37820613, -3.6704953, 1.9913517, -2.964065, -2.0249085, 1.2887832, - -0.58808744, -3.704334, -2.1186788, -2.2364793, 0.4822161, -0.69583344, - 0.69436306, -4.0634937, -1.1552767, -2.5108287, -0.11971293, -2.5845032, - 0.14631736, -2.565846, 1.3758291, 0.47588524, -2.9196632, 1.5108092, - -1.5057114, -2.432119, -1.0272241, -4.1910458, -1.8275468, -1.7660885, - 0.6382747, -2.6438048, -0.4632289, -3.3081229, -1.4334205, -1.7724056, - -2.126292, -4.7704144, -1.5952495, -2.4924057, 0.31470925, 2.0964396, - 2.21157, 0.80979204, 2.2108302, -1.9203963, -5.659223, -1.974467, - -1.0023398, -2.0679736, -2.5565012, -0.433196, -1.6915765, -3.9577243, - -5.1676106, 0.83362085, -3.436328, -1.9362512, 2.2471256, -4.12352, - -2.1625566, -2.0271769, 0.037409477, -1.6118754, -3.0944636, 3.2158742, - -1.599565, -0.16038275, -2.9340448, 1.803936, -3.6964452, -2.9738986, - -0.6567101, 0.34141183, -0.6283006, -4.7848577, -0.15093488, -4.704644, - 2.321801, 1.5522196, -0.81596935, 0.12019724, 0.289816, 0.36363113, - -3.9153461, -2.1425664, -4.5336766, -1.597344, -2.3595796, -1.097826, - 0.15635799, -3.5208404, -0.25988328, 0.9684919, -2.120223, -3.1962073, - -5.2414513, -3.1714263, -0.6112476, -0.84328353, -1.1045151, 0.77899575, - -3.6328883, -3.8785353, -2.09507, 0.09172684, -2.0236905, 0.6348245, - 0.6995636, -0.0051764846, -2.537376, 2.0640633, 2.0772762, -0.15137726, - -3.318616, 0.29056436, 0.78558916, -1.7138216, 0.89608043, 2.0378778, - 3.3844626, -4.2681594, -1.0384314, -0.4177746, -2.3440595, 0.6805688, - 0.46977666, -0.7940251, 1.0858821, 0.62123346, -1.2109486, -3.8311622, - -1.1766777, -0.17388968, 0.19498119, -3.358199, -0.74163544, -3.721605, - 2.469732, -6.0530324, -0.32448164, 0.5450882, -2.7871838, -2.2936077, - -1.8970714, -0.4685017, -1.9761597, -0.7872172, -1.7087473, -0.2493239, - 0.5194237, -4.1987596, 1.7259855, -1.4410063, -3.333211, 0.48510116, - 0.743838, -2.3629668, 0.3158615, -4.638043, -3.122711, -2.5863032, - -2.4440882, -1.303449, -2.0393665, -1.3633868, -3.287043, -3.3457534, - -1.0987567, -1.0776638, -2.131667, -2.603477, 1.0262293, -0.9059954, - 3.5481997, -5.088409, 0.8907716, -1.6294335, -4.3028007, -1.9478784, - -2.4524302, 0.9433962, -3.245856, 0.5750709, -1.5878778, -0.8301817, - 0.5400109, -0.021008871, -0.33320427, -1.137952, -5.1462016, -2.589491, - 1.2376999, -3.3583655, 0.049887165, -0.48793548, -4.5475044, -2.8754818, - -1.3734158, -1.7153764, -2.7566, -3.8235588, 0.046790026, -1.0508149, - -1.969478, -1.7025602, 0.66276073, -2.076901, -1.6908925, -3.5703247, - -1.2944032, -0.7115817, 0.6765265, -2.0293105, -2.024151, -4.486556, - -0.22604814, -4.4673505, -1.2299947, -2.0862463, 1.1504511, -1.9728502, - -2.4615526, -0.6188575, -3.6356428, -2.7112255, 0.89126647, 0.71885365, - -2.0653222, -0.29272056, -2.5067189, -1.2265625, -4.6381073, -2.3326473, - -4.939145, -3.162509, -0.49046665, -1.721986, -2.5452998, -1.9545367, - 1.0652372, -2.103481, -1.7355343, -1.4484307, -2.4725866, -0.9664729, - -4.6163783, -0.28913498, -3.1016128, -5.3401933, -0.13158755, -4.717723, - 1.385596, -2.92854, 0.5025809, -1.3206385, -1.4064206, 0.41752562, - 2.6030343, -0.48439878, -1.9239922, -0.80089253, 1.353259, -1.5824924, - -0.9015233, 0.67506224, -1.6147022, -3.640868, -1.2312021, -2.1976645, - -1.9278467, -1.6784447, -3.2745993, -3.2377331, 0.99184567, -2.679306, - -3.701537, -4.012869, -0.8222205, -5.350055, -1.7971172, 0.15850814, - -5.307646, -2.912361, -1.4095225, -3.0439408, -3.6537821, -3.1308777, - 1.0213428, -1.2745473, 0.32860526, -2.1557183, 0.8131867, -2.9975297, - -0.62386113, -1.144462, -3.950369, -1.4726753, -0.86348873, 1.7118421, - 0.014607757, -0.8551513, -3.0248542, -1.33504, -2.7690384, -3.29198, - -4.134242, -2.3519685, -3.6958208, -2.5522776, -1.4238608, 0.2923282, - -0.79727036, -0.9463543, -0.82088375, -1.3738424, 0.01724141, 1.3695024, - -2.1617022, -1.8781594, -1.0348984, 0.24369346, -1.8304716, 1.4609562, - -3.2917929, -3.3651457, -2.9432406, -2.030432, -1.75317, -4.9600644, - -2.2658684, -1.6234931, -1.8686533, 1.1318332, 0.37869406, -3.6332278, - -2.4353952, 1.1381406, -3.5781689, -3.3500938, -0.9924115, 0.26102534, - -0.96333915, 1.530634, 2.1913958, -0.7214713, -2.2666519, -2.131619, - 0.60816133, -3.6240747, -0.63335955, -0.71388745, -2.576758, - -0.09739303, -1.8175734, -0.72208, 0.1875087, -2.0747168, -2.6774042, - -2.9950347, -3.5597906, -0.79992884, 0.4539209, 0.556581, 0.44728127, - -1.800296, -4.052585, -3.4028127, -3.235004, -1.8715541, -4.276323, - -0.29120028, -3.6416676, -1.9873205, -1.2067649, -0.39847684, - -3.3970296, -0.996662, -0.55310184, 1.45234, 1.7025936, -1.5916743, - -0.76386905, 0.36375406, 1.1959172, 0.0371093, -2.591147, 1.8455652, - 0.929932, -0.7228854, -4.3258605, 0.79364234, 0.15153962, -4.8317633, - 1.091805, -0.57408005, -0.95812654, -1.6457102, -4.054259, -3.5515804, - -0.43802482, -0.60994685, -2.9602783, 0.20238927, -2.0012136, - -1.7978708, -2.6091948, -2.9475229, -3.8044207, 2.5089502, 0.38551247, - -6.5614104, -2.5885737, -1.2623751, -1.4988855, -3.0248673, -2.3446207, - -0.813568, 1.2680538, 2.7294376, -4.3744984, -1.1073802, -0.6271219, - 1.5742941, -2.045453, 0.14541318, 0.679951, -1.134793, -2.38026, - 1.6891696, -2.5965378, 0.1349458, -0.4792965, -1.903471, -2.9374075, - -1.1245136, -1.5094931, -0.813135, -4.1757107, -1.6320637, 0.57946193, - -3.8882651, -3.818708, -2.3282824, -0.9707904, 0.26544186, -1.2200974, - -3.7174854, -1.1405693, -0.8356051, 0.6618953, -2.8652883, -0.54942626, - 1.4447699, -1.3487943, -3.790702, -2.0396936, -3.0171137, -1.3446083, - -2.0535507, -0.21090513, -0.36358362, -2.4953594, -2.889622, -3.017095, - -3.7788231, -1.8689429, -0.505216, -1.3033398, -3.7516487, 0.43649828, - -1.619883, -1.9728885, -3.7946377, -0.19359356, -2.5149653, 0.1330311, - -1.964576, -0.22685309, -2.6675518, -3.2571585, -0.7687344, -1.6052706, - -3.2183256, -1.8788956, -4.0073886, -1.3492639, -1.2493097, 0.3140552, - -0.32880476, -3.7182703, -0.0018167831, 1.6831887, -3.6505969, - -3.7987516, -4.5628505, 0.61124, -0.52914536, -3.3806489, 1.5072542, - -1.2661035, 0.24615136, -2.288774, -0.6157856, -2.8043556, 1.0330541, - -3.2625053, 1.2323192, -4.0961695, -0.7945915, -1.945577, -0.8105015, - -1.2630489, -0.36873186, -1.3772165, 1.2554678, -0.29388845, -2.1255093, - -1.2151135, -2.7742944, 1.464614, 2.8394682, -2.1601954, -1.2011344, - 3.5284274, -3.8597128, -3.7241414, -3.5895083, 1.8994234, -4.8545465, - -0.6993449, -2.8897882, -2.6655016, -0.92798495, -1.7919191, -1.8742491, - -0.7172444, -2.5559084, 1.7946929, 0.6751207, -2.30995, -3.0519857, - -2.1083918, -0.21570742, -2.6633413, -0.25852197, -3.2049756, - 0.22966087, -4.4629016, -1.1271076, -6.2612243, -5.4668174, -4.7487674, - -1.9233463, -0.38096967, -0.07729246, -1.9093031, -2.5004292, - -0.32909214, -3.547546, -2.3951619, -2.8009694, -0.97472316, 0.62808675, - -1.5962961, -1.1791093, 0.29662454, 2.0813608, -2.2880425, -2.808856, - -0.96867263, 0.15155539, -2.6358457, -3.6775248, 0.49782822, -0.9495015, - -1.0759909, -5.735391, -0.55432063, -1.3157943, -1.1739358, -0.959571, - -3.1082811, -3.2619872, -2.175849, -1.3832242, -2.2058105, -3.1832442, - -1.6438403, 2.7878456, -4.255965, -1.9532199, -1.9511049, -2.1081128, - -3.366344, 0.41476092, -3.7498682, 1.0371895, -0.4180559, 0.022157248, - -3.0081189, -0.21641508, 0.39594796, 0.086931966, -3.2031639, - -1.5625677, -1.8856484, -2.3934572, -0.67939967, -2.1899512, 0.7047077, - -3.4643679, 0.9679502, -3.846308, -2.3338008, 2.2199235, -1.4064202, - 1.4284385, -1.0604863, -3.5579867, -2.5548387, 1.5955123, 0.21613306, - 0.21685223, 0.29431215, -0.767059, -1.44128, -1.8142815, -3.4499164, - -5.304982, -0.73445565, -1.7041808, -0.8527514, 1.122318 + "source.subjects.label": [ + "Diabetes", + "Mycetoma", + "Kenya" ], - "reducedFeatures": [ - 0.035519335, -0.048596922, -0.04804722, -0.009402285, -0.0051014964, - -0.04584434, -0.050761215, 0.033524785, -0.0048710746, 0.028559059, - -0.025505072, -0.015372016, -0.03282226, 0.0046646353, -0.016814401, - -0.022614785, -0.051787596, -0.0063779284, -0.0354568, 0.029837787, - -0.044927012, -0.053213466, -0.016414745, 0.007370404, -0.01850571, - -0.0047746515, -0.019371737, 0.01033182, -0.018313807, -0.0131233735, - -0.0096997, -0.0020316162, -0.03429485, -0.028837252, 0.029639475, - -0.04346872, 0.004873447, -0.013734142, -0.018711224, -0.030669555, - 0.006589742, -0.0021575633, -0.056196105, -0.013505032, -0.04373624, - 0.0016870014, 0.036075544, 0.037579153, 0.012243389, -0.05773245, - 0.02380102, -0.0073126745, -0.043147273, -0.026284326, 0.030009057, - -0.013822438, -0.0015736446, -0.050782204, -0.017209789, -0.028052185, - -0.019763941, -0.020765398, -0.07084936, 0.009046586, -0.044330295, - -0.027328799, -0.048165336, 0.023595748, -0.08429559, -0.058187373, - -0.008939059, -0.07200796, 0.0035342057, -0.001757324, 0.032457292, - 0.0061618863, -0.025249528, -0.041974984, -0.024167584, -0.031559102, - -0.027450008, -0.017242571, 0.020659912, -0.0141931055, -0.006815025, - -0.010572162, -0.055817883, -0.008961206, -0.016622556, 0.015862519, - -0.03636984, -0.0012258936, -0.03291818, -0.0098276725, 0.017248902, - -0.02840455, -0.00462047, -0.00037598837, 0.0019807501, 0.012190328, - -0.0023601223, -0.014605782, -0.0037551965, -0.022054039, 0.029247027, - 0.03725377, -0.022051731, -0.049009234, -0.050404973, -0.03249056, - -0.0052465242, -0.008647787, -0.006219387, -0.026982145, -0.028025674, - -0.00062728894, -0.013520601, -0.09693345, -0.0006525979, -0.034430355, - -0.018165143, -0.049708694, 0.0022757435, -0.019772638, 0.0067891506, - -0.013356058, -0.0335741, -0.042201735, -0.06416769, 0.009526353, - -0.007419104, -0.029810086, -0.01693521, 0.045094416, -0.008606102, - -0.00012851958, -0.014984668, -0.006537053, -0.04356677, 0.0048923083, - -0.017980687, 0.019905288, -0.028744383, 0.017059617, -0.044885114, - -0.04874332, -0.003831598, 0.06272733, -0.055574663, -0.028516272, - 0.015570124, 0.00027401908, -0.006869186, -0.007763642, -0.043636255, - 0.019023392, 0.005040239, -0.024427861, -0.0038700022, -0.028378341, - -0.01242318, -0.0037965055, -0.0022437098, -0.020518692, -0.019388827, - -0.035708837, 0.0072713885, -0.051121183, 0.020297855, 0.0077116736, - -0.049813822, -0.020153396, 0.012495307, 0.0053843525, -0.050431225, - -0.011072836, 0.00028178998, 0.019106612, -0.031458154, -0.06372207, - -0.030420149, -0.017316418, -0.08404196, 0.009119963, -0.01714724, - -0.02285213, -0.012758696, 0.05268889, -0.03171739, -0.0013952726, - 0.043344583, -0.014628891, 0.0026796814, -0.039888214, -0.0037385018, - 0.023690779, -0.023231234, 0.0069938274, 0.0048143007, -0.0078798905, - -0.023896, -0.009327673, -0.009922978, -0.017980693, -0.009020562, - -0.014069286, -0.018444013, -0.017296823, -0.03268227, -0.00020538089, - -0.048979994, -0.015781518, -0.039091684, 0.009368298, -0.039921615, - -0.0018499733, -0.010623076, 0.004355729, -0.0026586335, 0.006080001, - -0.040160615, -0.003536457, -0.017198512, -0.014633035, -0.022211224, - 0.017016226, -0.0044298153, 0.020023147, -0.0273211, -0.04148783, - 0.019251965, -0.0025207787, 0.012653995, -0.06782611, -0.0053565265, - -0.016110096, -0.02730096, -0.016935412, -0.026110023, -0.030951357, - 0.029392548, -0.024592565, -0.00036343362, -0.02875703, 0.0057647233, - 0.0016219293, 0.01173487, -0.057408, -0.035476785, -0.04029452, - -0.05645965, -0.007690097, 0.020039422, -0.0013860972, -0.025173062, - -0.030948097, -0.003191023, -0.04266661, -0.07591783, -0.029694151, - -0.066785246, -0.019590735, -0.05993779, -0.0106462715, -0.050306305, - 0.0026968617, -0.050827906, -0.02629382, 0.016861029, -0.044285275, - -0.018225785, -0.037895404, -0.07531847, -0.019268757, 0.007049976, - 0.002145553, -0.01938748, -0.04895327, -0.039941885, -0.023892704, - -0.027161278, -0.01851155, -0.016961196, -0.031563286, 0.011042358, - -0.007421946, -0.03333619, 0.021044284, -0.06718571, -0.031967536, - -0.041440103, -0.041025057, 0.02859482, -0.019016847, -0.03979675, - 0.0021529866, -0.065578915, -0.017864214, -0.010609626, -0.021365745, - -0.008400142, -0.043270983, -0.017828133, -0.039459273, -0.031356968, - -0.06790695, 0.013755509, -0.0038375745, -0.027113095, -0.006268689, - 0.0043656384, -0.04998417, -0.017639969, -0.021300972, -0.049147908, - 0.0012215908, -0.02047674, -0.041123945, -0.005881522, -0.02880144, - -0.008964567, -0.009995084, 0.0075559556, -0.002600407, -0.030040026, - -0.01935675, 0.010976828, -0.020881692, -0.028871087, -0.029913766, - -0.0110119665, -0.023123156, -0.013767995, -0.040157154, -0.06800534, - 0.046378583, -0.0028534918, -0.059396397, -0.04501983, -0.015888102, - 0.0021263529, -0.021893986, -0.035592694, -0.03280836, 0.0065472526, - -0.02002905, -0.050774883, -0.0032026265, -0.006850416, -0.064996004, - 0.011824887, 0.034305297, -0.010108228, -0.019877529, -0.022020696, - -0.0443969, -0.018635754, -0.0626573, -0.056685165, -0.015216066, - -0.03385159, -0.027504027, -0.00041049387, -0.052078582, -0.046568166, - -0.010901896, -0.028713705, -0.011982604, -0.0038807043, -0.042486098, - 0.025188012, -0.0013783196, -0.069791295, -0.0084836455, -0.036775652, - -0.06374917, -0.045777217, -0.011778131, -0.0095011275, -0.053351585, - -0.010398222, 0.0139527675, -0.0048624235, -0.020786472, 0.0021035618, - -0.040194374, -0.011825793, -0.020924062, -0.02388846, -0.0139286, - -0.016629754, -0.011340733, -0.0028071592, -0.03859225, -0.059842627, - -0.029052312, -0.03431323, 0.007865807, -0.036976434, -0.04473835, - -0.0028185763, -0.022741912, -0.04128285, -0.020077903, 0.0067721466, - -0.029018601, 0.01259176, -0.040041875, -0.014758745, -0.014963331, - 0.028376732, -0.030748043, -0.02543416, 0.0027202093, -0.024068495, - -0.03788127, 0.0013653376, -0.070318684, 0.036698382, 0.0050377124, - -0.028326645, -0.043495018, 0.048414312, 0.00592945, -0.015872806, - -0.0032696212, -0.028385991, -0.020403752, 0.020640664, -0.0013128857, - 0.042925976, 0.0040800585, -0.0368499, -0.044463933, 0.004223315, - -0.057284117, -0.043939717, -0.064395465, -0.01757237, -0.021481128, - -0.040307686, -0.029508073, -0.012664622, -0.03278714, 0.009004869, - 0.025613455, -0.0026557706, -0.020884112, -0.013771515, -0.006111459, - -0.014678301, -0.024732523, -0.0066669257, -0.06321701, -0.038302224, - -0.057701986, 0.015942328, -0.03008483, -0.029730504, -0.00974873, - -0.036266804, 0.003416797, -0.029709874, -0.013676904, -0.011788713, - 0.0048289504, -0.03968883, -0.04183346, 0.0044159424, -0.022045886, - -0.052020673, -0.05488887, -0.041955106, -0.029590636, 0.050471507, - -0.018172791, -0.035581727, -0.030112403, -0.06724924, -0.02530187, - -0.043178614, 0.015010303, -0.029827574, 0.04554887, -0.019490788, - -0.004364795, -0.00995091, 0.012103996, -0.011485221, -0.021889769, - -0.021737454, -0.00062162365, -0.060117245, -0.038707186, -0.034056693, - -0.012673003, -0.00440411, 0.027360076, -0.04754033, -0.06385125, - 0.0094999485, -0.008201647, 0.031058755, 0.0135721555, -0.03683456, - -0.045860678, -0.03164132, -0.06119037, -0.02902428, -0.031472974, - -0.022102488, -0.031139143, -0.0078469105, -0.007095147, -0.023891065, - -0.048456453, -0.014778361, -0.023568694, -0.027922792, -0.031340156, - 0.01893852, -0.012491936, 0.012887556, -0.05960874, -0.060117442, - -0.006338552, 0.029905153, 0.0019911022, 0.00806716, 0.0012665023, - 0.0015434421, -0.05170185, -0.042230528, 0.022954667, 0.022231251, - -0.015965272, -0.010886158, -0.016289135, -0.041235622, -0.06444674, - -0.010947791, 0.009215405, -0.0017465543, -0.07879683, -0.010986865, - -0.00028883887, 0.010653363, 0.0339675, -0.050110962, -0.013755438, - -0.0431343, -0.012431058, 0.04121946, 0.0051020067, -0.023647606, - -0.026992928, 0.00045390517, -0.013720383, -0.034710396, -0.056586, - -0.035584096, -0.02724735, -0.0054894313, -0.012162384, -0.040130917, - -0.031949237, -0.012181503, 0.008653948, -0.0056323875, -0.03854035, - -0.023070361, -0.051690277, -0.061009444, -0.0089452695, -0.046906423, - -0.08561782, -0.0013482869, -0.019054428, 0.045006204, -0.024684357, - -0.07303859, 0.010257016, -0.026974874, -0.047761485, -0.04820645, - 0.016453609, 0.003613545, -0.059501328, 0.017098391, 0.007639019, - -0.040638108, -0.016812555, -0.019785926, -0.018488895, -0.058400698, - 0.016839782, -0.019065402, 0.023178354, -0.02525212, -0.050510783, - -0.053509243, 0.028797548, -0.031186512, -0.045013368, 0.011160518, - -0.0025425137, -0.043384682, -0.013795371, 0.019602694, -0.023248466, - 0.0015662934, -0.003944477, -0.006305662, -0.055896267, 0.01859633, - -0.037618123, -0.010045061, -0.013541277, 0.011391355, -0.00041829026, - -0.057291474, 0.024260953, -0.051655773, -0.030064195, -0.03030169, - -0.02561834, 0.0040991907, -0.01659806, -0.046036854, -0.019349605, - -0.00026255057, 0.0006260451, -0.029683867, -0.02878189, -0.035525136, - 0.010473689, 0.006843983, 0.005619632, 0.008083224, -0.008836884, - -0.040814377, -0.033522148, -0.045600116, 0.023710212, 0.01565669, - 0.0004630091, -0.011714877, -0.0004887314, -0.023404175, 0.00091457635, - -0.001890777, -0.012910375, -0.031789694, -0.048065107, -0.028663624, - 0.00804064, -0.031735368, -0.037634492, -0.041110218, -0.049532827, - -0.015681919, -0.04350057, -0.025423078, -0.013800765, -0.025608918, - -0.025547773, -0.043254405, -0.023800142, 0.016993811, 0.02742408, - -0.023919743, -0.018231234, -0.07194114, -0.011344538, -0.05697352, - -0.027095642, -0.019448195, 0.029951368, 0.020310387, -0.03547942, - -0.041974198, -0.013764803, 0.0033974997, -0.08414671, 0.00072834874, - -0.045424175, -0.02325356, -0.020880194, -0.017316893, -0.05690656, - -0.037246395, 0.01305396, -0.02324702, -0.012121232, -0.023324223, - 0.013053233, -0.00832947, 0.0012313896, 0.03109497, 0.0018095424, - -0.047371168, -0.032058105, -0.028462846, 0.0046658735, 0.014009442, - 0.005935292, -0.035623282, 0.01205887, -0.020018132, -0.030095913, - -0.050335098, 0.03229147, -0.013995935, -0.032100685, -0.06338102, - -0.017905157, -0.03587208, -0.03651273, -0.044531595, -0.004193517, - -0.014788301, -0.006191005, -0.02144495, -0.004851075, -0.022640916, - -0.012208677, -0.003502992, -0.018004734, -0.066962205, -0.0038225253, - -0.01633277, -0.027748633, -0.0066705598, -0.0656405, -0.009695096, - -0.018263912, -0.026943136, -0.0033657236, 0.033281136, -0.046068903, - -0.039280467, -0.015457057, -0.046326008, -0.039547525, -0.0029643313, - -0.04313259, -0.048038196, -0.031020382, -0.06607214, -0.041175757, - -0.020478912, -0.0028227277, -0.018189125, 0.0026550223, 0.026270524, - -0.04099384, -0.016798262, 0.007772395, 0.010957675, -0.009770142, - 0.047741488, -0.027737778, -0.019214358, 0.048331037, -0.046118993, - -0.025641866, -0.013978317, -0.035314128, -0.017581247, 0.027949678, - -0.014279036, -0.048836242, -0.004798988, -0.0522013, -0.022339396, - -0.045848962, 0.012700832, -0.006148971, -0.030507665, 0.008663539, - -0.0067347973, -0.019573482, 0.020322187, -0.010208417, -0.027653057, - -0.053336125, -0.057946593, -0.017176019, 0.014734212, -0.027095834, - -0.04493492, 0.02085666, -0.01788503, -0.036798984, -0.011599242, - 0.010582238, -0.009186784, -0.04607877, -0.007875824, -0.029730028, - 0.008344612, -0.036235075, -0.053000335, 0.0072670276, -0.030820915, - -0.021717597, -0.03238814, -0.034497835, -0.051322132, -0.0066247997, - -0.0081674205, 0.006826469, -0.04151244, -0.04390343, -0.025110653, - -0.054024514, -0.068347976, 0.015612234, 0.012153899, 0.007549479, - 0.012131092, -0.009388545, -0.0013290616, -0.0363872, -0.047106173, - 0.014173891, -0.004503112, -0.023914926, -0.034083065, -0.022726595, - -0.034743447, -0.037524037, -0.046824686, -0.025927845, 0.0115646925, - -0.01588477, 0.010458932, -0.024568362, 0.019528238, -0.05357364, - -0.070788786, -0.03648241, -0.012509198, -0.054012578, 0.016318193, - 0.002617543, -0.04422217, -0.05459895, -0.031038214, -0.008909863, - -0.00034314016, -0.004313075, -0.017950023, 0.0002770959, -0.017556414, - -0.032459006, -0.032263655, -0.051629998, -0.0065674903, -0.061988287, - -0.035453506, -0.046482638, -0.0782182, -0.012560707, -0.0009829791, - 0.0452125, -0.06973701, -0.044291835, -0.034197863, 0.024462506, - -0.038992092, -0.001980453, -0.03366455, -0.019514976, -0.011186826, - -0.055528443, -0.020639924, -0.060959615, 0.0048236526, -0.051863104, - 0.013725004, -0.023396008, 0.009363062, -0.057530615, -0.01087271, - -0.022978371, -0.06157144, 0.012879472, 0.0152526535, -0.040086724, - -0.06555869, 0.021448215, -0.048804346, -0.013935362, -0.021545278, - 0.0038891078, -0.0588191, -0.014466582, -0.041253954, -0.055216897, - -0.035295013, -0.018640192, -0.011911351, -0.0112188915, -0.027359135, - -0.0039819474, -0.020845806, -0.028136678, 0.02127027, -0.027042668, - -0.037521396, -0.0040197293, -0.00730702, -0.0032527337, -0.0537437, - -0.03478502, -0.04332955, -0.02128307, 0.017684901, -0.053721383, - -0.025626633, -0.02351177, -0.009789956, -0.040913567, -0.02011308, - -0.05052608, -0.012553121, -0.02554742, -0.017492928, 0.006126771, - -0.0065802685, -0.005077886, 0.016082468, -0.0066173044, 0.003661608, - 0.021040792, -0.029069204, -0.031223629, -0.027069354, -0.0053443806, - -0.032186236, -0.02019317, -0.030144174, 0.0013390172, -0.056525696, - 0.011731083, -0.005824792, -0.029911112, -0.031126255, -0.041250892, - -0.034136858, -0.008119517, -0.02349496, -0.026028592, -0.010639389, - -0.022590982, 0.015212228, 0.039194822, -0.0586942, -0.04544192, - 0.01189035, -0.037925225, 0.016312309, -0.026069721, -0.03656023, - -0.010084331, -0.04143061, -0.020299684, 0.003059242, -0.0017572992, - -0.047277585, -0.048067495, -0.022700256, 0.0013862578, -0.06437638, - -0.01576004, -0.020854516, -0.025188746, -0.026886735, -0.035774775, - 0.00017700461, -0.019888572, -0.016215008, -0.028596135, 0.011371239, - -0.024973506, -0.002897696, -0.040799856, -0.040637705, -0.04758278, - -0.022463085, -0.020325953, -0.049066648, -0.04056055, 0.06076505, - -0.018156718, -0.03410299, 0.0029130098, -0.029322268, -0.038860425, - -0.00724967, -0.015596036, 0.005293588, -0.030568965, 0.016877068, - 0.026613109, -0.014811355, -0.021365281, -0.02584225, 0.031700585, - -0.0228864, -0.043557633, -0.001545189, -0.024491834, -0.02315751, - -0.012227795, -0.010399698, -0.014524629, 0.025289146, -0.068637244, - -0.020799294, -0.009685066, 0.020875452, 0.0054299007 + "source.production.dates.range.from": [ + 946684800000 + ] + }, + "vectorValues": { + "features": [ + 0.015275892, + -0.02408271, + -0.025064815, + -0.005403791, + -0.0016297377, + -0.024225032, + -0.024883907, + 0.016067944, + -0.0026074436, + 0.015765956, + -0.012116322, + -0.010950969, + -0.017685017, + 0.003921963, + -0.009441606, + -0.012111051, + -0.025170414, + -0.0010724596, + -0.018672204, + 0.015073251, + -0.023063568, + -0.027742062, + -0.0071258526, + 0.0037752506, + -0.007054245, + -0.0013507669, + -0.008376227, + 0.003997234, + -0.005603313, + -0.0067308582, + -0.0044165594, + -0.002616533, + -0.017018743, + -0.013669601, + 0.014291528, + -0.021014955, + 0.0017766152, + -0.00865286, + -0.008869855, + -0.014357416, + 0.004236244, + -0.0018097033, + -0.029655201, + -0.008499085, + -0.02251672, + -0.0001504404, + 0.017714247, + 0.019389162, + 0.0051651904, + -0.02784029, + 0.012339488, + -0.0046714386, + -0.021131648, + -0.010251858, + 0.016843015, + -0.008884698, + -0.0011039147, + -0.02517762, + -0.0067152167, + -0.012961638, + -0.009890166, + -0.009912726, + -0.03494234, + 0.0053061335, + -0.021496441, + -0.012982951, + -0.024444647, + 0.011765428, + -0.042558327, + -0.028562462, + -0.005882373, + -0.035795297, + 0.0021130694, + -4.4690205e-05, + 0.01417328, + 0.0022519135, + -0.0122931255, + -0.020433849, + -0.011964724, + -0.0143756345, + -0.012664416, + -0.010557418, + 0.010685858, + -0.009399154, + -0.0054118875, + -0.0048512793, + -0.02923706, + -0.0055436185, + -0.010293186, + 0.007649602, + -0.01912995, + -0.0005087467, + -0.016598813, + -0.0034664765, + 0.008384768, + -0.016364163, + -0.00090112066, + -0.0013114699, + 0.0020044872, + 0.005625862, + 0.0012087855, + -0.0059133805, + -0.0019427348, + -0.010073864, + 0.013214769, + 0.01571773, + -0.011484635, + -0.024411889, + -0.022726892, + -0.014518066, + -0.002753581, + -0.003032875, + -0.0020179965, + -0.011867659, + -0.015347196, + -0.0014220808, + -0.0050482717, + -0.047934983, + -0.00028557947, + -0.017958473, + -0.008502686, + -0.024634149, + -0.00063739717, + -0.008735047, + 0.0033860041, + -0.007415108, + -0.016673988, + -0.019938508, + -0.03208765, + 0.005093471, + -0.001146961, + -0.0141638825, + -0.0063763848, + 0.024010563, + -0.006052419, + 0.000358541, + -0.010729241, + -0.0032531312, + -0.021088578, + 0.0029893192, + -0.0077131395, + 0.007135885, + -0.013245207, + 0.007890728, + -0.023547087, + -0.024305316, + -0.0011070191, + 0.030971486, + -0.02587519, + -0.012952566, + 0.0059047574, + 0.00039516477, + -0.0054564667, + -0.004446569, + -0.020261623, + 0.010443852, + 0.0018397354, + -0.013029685, + -0.00047373594, + -0.01422819, + -0.007017826, + -0.000541877, + -0.002299411, + -0.009257246, + -0.008727742, + -0.016085437, + 0.0054662754, + -0.023463234, + 0.0082346, + 0.0054713897, + -0.02575151, + -0.01199689, + 0.0064192736, + 0.0018531181, + -0.023831487, + -0.006001632, + 0.00039397096, + 0.0096146045, + -0.0144882025, + -0.031345543, + -0.016483055, + -0.00818615, + -0.038906816, + 0.0028439437, + -0.0067663607, + -0.012576995, + -0.005636911, + 0.027170926, + -0.016166642, + -0.00035826766, + 0.02055294, + -0.008052649, + 0.0022795289, + -0.019850953, + -0.00381864, + 0.012992812, + -0.010101688, + 0.0032788657, + 0.0037610864, + -0.0038798414, + -0.012976098, + -0.0027012224, + -0.007852643, + -0.008948059, + -0.004178341, + -0.0052487166, + -0.00822701, + -0.0071494603, + -0.01868969, + 0.0007786338, + -0.022815675, + -0.007705536, + -0.017302452, + 0.0030364334, + -0.021147834, + 0.0029519424, + -0.0049471417, + 0.0017031184, + 0.00037033597, + 0.004159903, + -0.018311603, + -0.00014304226, + -0.009389538, + -0.006997341, + -0.011011014, + 0.011126844, + -0.0006212242, + 0.008888924, + -0.016119264, + -0.018692723, + 0.008120922, + -0.0029808998, + 0.006800014, + -0.033106714, + -0.0014021454, + -0.008911901, + -0.014520901, + -0.006011217, + -0.01360537, + -0.015259086, + 0.013365802, + -0.012731138, + -0.00011132243, + -0.015393221, + 0.0027358448, + 0.0015153211, + 0.005033292, + -0.026876222, + -0.016742997, + -0.018268982, + -0.02795349, + -0.007039492, + 0.011075537, + -0.0005708754, + -0.009650381, + -0.013823255, + -0.0007793758, + -0.021426298, + -0.03710829, + -0.012550386, + -0.034255628, + -0.010361585, + -0.029984651, + -0.004835787, + -0.025191324, + 0.003693381, + -0.027492112, + -0.012787255, + 0.010177368, + -0.020154586, + -0.008436456, + -0.01941661, + -0.0354771, + -0.0077895834, + 0.004676253, + 0.0010392913, + -0.0095604835, + -0.026069917, + -0.0192727, + -0.010016859, + -0.010631684, + -0.009814661, + -0.0055373283, + -0.015071238, + 0.0036332917, + -0.0025537463, + -0.017137961, + 0.008389963, + -0.035523586, + -0.0142347785, + -0.020821646, + -0.017578151, + 0.013806964, + -0.010565636, + -0.018459652, + 0.0011290408, + -0.03279653, + -0.005697265, + -0.005109953, + -0.01061263, + -0.0041899206, + -0.02191522, + -0.008918102, + -0.016176743, + -0.01603982, + -0.032790236, + 0.007895526, + -0.0016751499, + -0.014073983, + -0.0025887887, + 0.00039312083, + -0.02327182, + -0.00926663, + -0.01046426, + -0.022589082, + 0.000707724, + -0.008583971, + -0.020725619, + -0.00026658515, + -0.013033795, + -0.0037708536, + -0.003435423, + 0.002198708, + -0.00081169984, + -0.01437195, + -0.009570239, + 0.006719569, + -0.012193099, + -0.011919157, + -0.014047508, + -0.0049591134, + -0.01280343, + -0.004512919, + -0.018501613, + -0.03300675, + 0.022800645, + -0.0027562748, + -0.02940778, + -0.020210518, + -0.0060885274, + 0.0024973652, + -0.0120961545, + -0.01643269, + -0.012774907, + 0.0026042762, + -0.009961886, + -0.026114643, + -0.0024371634, + -0.0050200885, + -0.03237863, + 0.0058802688, + 0.014794659, + -0.003775872, + -0.008021839, + -0.010519962, + -0.02187862, + -0.008464003, + -0.030669728, + -0.026183948, + -0.009262151, + -0.014926677, + -0.012919016, + 0.0011045008, + -0.026332635, + -0.024311516, + -0.0073829778, + -0.015351611, + -0.006729724, + -0.0026430935, + -0.021219427, + 0.010980253, + -0.0012468781, + -0.03708714, + -0.0050162547, + -0.018778998, + -0.031392436, + -0.02191006, + -0.006355655, + -0.0059587737, + -0.02618222, + -0.0057501798, + 0.007081433, + -0.003504676, + -0.00862268, + 0.00021238597, + -0.020933732, + -0.0034225849, + -0.011209542, + -0.011760732, + -0.004703949, + -0.008075629, + -0.005055969, + -0.0032637545, + -0.019334912, + -0.029927118, + -0.016699834, + -0.01954449, + 0.006999611, + -0.018320201, + -0.020898206, + -0.001665105, + -0.012257981, + -0.019833896, + -0.010469771, + 0.0051181978, + -0.014936879, + 0.0050386307, + -0.019513737, + -0.008413856, + -0.0064188996, + 0.0158436, + -0.014497723, + -0.013065096, + 0.0010476842, + -0.012932314, + -0.0201621, + -0.0012818101, + -0.035485398, + 0.018351065, + 3.0416302e-06, + -0.014269838, + -0.020884883, + 0.024706777, + 0.00017260946, + -0.005241741, + -0.0015474464, + -0.013571887, + -0.009920791, + 0.00918393, + -0.00087461725, + 0.018795414, + 0.0015312049, + -0.017694334, + -0.021593262, + 0.0007418241, + -0.029323712, + -0.019452156, + -0.029743489, + -0.008827313, + -0.011741513, + -0.021128444, + -0.014066185, + -0.0063698483, + -0.014579195, + 0.0021016053, + 0.010781657, + -0.0041896272, + -0.008550295, + -0.0042897975, + -0.0046219015, + -0.005785539, + -0.012106445, + -0.0034627004, + -0.03110125, + -0.017143568, + -0.02825479, + 0.0073921764, + -0.014110487, + -0.014795448, + -0.0052712015, + -0.019557705, + 0.0035967994, + -0.012370009, + -0.0058950665, + -0.0055685868, + 0.0037358704, + -0.018506192, + -0.021373294, + 0.0019241754, + -0.010888312, + -0.024126261, + -0.02841252, + -0.01914436, + -0.014951819, + 0.02524371, + -0.00809385, + -0.015858907, + -0.014394652, + -0.034232743, + -0.012404754, + -0.019182254, + 0.0059449733, + -0.015223775, + 0.02074428, + -0.01112009, + -0.0022071714, + -0.004180379, + 0.006078913, + -0.006820579, + -0.008474292, + -0.010529949, + 0.00082393363, + -0.028458988, + -0.018578338, + -0.016681995, + -0.007948795, + -0.0034559213, + 0.014263038, + -0.023184443, + -0.03167283, + 0.005446976, + -0.0035683368, + 0.017898174, + 0.008054252, + -0.018065445, + -0.020913012, + -0.015189457, + -0.028894607, + -0.013153404, + -0.014517799, + -0.010640958, + -0.01552025, + -0.0044038435, + -0.0034228852, + -0.011702115, + -0.020373162, + -0.008845385, + -0.010314998, + -0.0134637095, + -0.01554911, + 0.0105647575, + -0.0053226976, + 0.007564363, + -0.030067366, + -0.027016407, + -0.0034005386, + 0.015996147, + -0.0012598882, + 0.0049351356, + 0.0012470701, + 0.00112131, + -0.02357107, + -0.02026864, + 0.010916483, + 0.00949822, + -0.006088966, + -0.0064926404, + -0.007660644, + -0.019627206, + -0.030857297, + -0.003817233, + 0.004026253, + -0.00032743457, + -0.038041353, + -0.0055801254, + 0.0018584314, + 0.0068660993, + 0.015228099, + -0.025125185, + -0.0075699794, + -0.019425973, + -0.0052980455, + 0.018806478, + 0.002608009, + -0.014596144, + -0.009037696, + -0.0007278473, + -0.006846536, + -0.01871284, + -0.026682228, + -0.018038064, + -0.014176326, + -0.002447717, + -0.0059655914, + -0.021478703, + -0.014699406, + -0.004989735, + 0.0049532596, + -0.0031001596, + -0.016132932, + -0.010481091, + -0.025299773, + -0.030109202, + -0.0038493332, + -0.023686288, + -0.040405992, + -0.0006502646, + -0.0077127195, + 0.021537269, + -0.009312729, + -0.03470335, + 0.0033372622, + -0.014171737, + -0.023840362, + -0.02313715, + 0.006975926, + 0.0028389145, + -0.03002131, + 0.009509196, + 0.00484731, + -0.01978562, + -0.010267591, + -0.009460353, + -0.01128913, + -0.029334294, + 0.007927567, + -0.007389656, + 0.010963044, + -0.011135648, + -0.025722714, + -0.026381923, + 0.013223947, + -0.012502731, + -0.022069551, + 0.0053437497, + -0.0028878266, + -0.022848682, + -0.0068810936, + 0.009109984, + -0.011200309, + 0.0013876711, + -0.0018901721, + -0.0030948524, + -0.027138056, + 0.008938008, + -0.017078117, + -0.0037109347, + -0.0057907286, + 0.006272783, + -0.0013537491, + -0.027710713, + 0.01274814, + -0.02422453, + -0.014018524, + -0.0129774, + -0.012378161, + 0.0024719965, + -0.009020639, + -0.022836803, + -0.009510595, + 0.001451176, + 0.0012205781, + -0.012171582, + -0.010859256, + -0.016872326, + 0.003297039, + 0.0048724893, + 0.0054600844, + 0.00220356, + -0.0036194394, + -0.021404404, + -0.016504796, + -0.020123847, + 0.009932256, + 0.008725915, + 0.0010741308, + -0.0057157823, + 0.000646786, + -0.012193383, + 0.0010359696, + -0.00086535985, + -0.0061465125, + -0.01630629, + -0.023154724, + -0.016002906, + 0.004980829, + -0.017746665, + -0.01823714, + -0.018393565, + -0.024437306, + -0.007776343, + -0.020289192, + -0.012993306, + -0.007080115, + -0.011420084, + -0.012066551, + -0.0210514, + -0.011429113, + 0.006469216, + 0.014611826, + -0.009662274, + -0.008274379, + -0.035124723, + -0.006801106, + -0.028383145, + -0.015547408, + -0.013381564, + 0.015973138, + 0.008775958, + -0.016305603, + -0.02047859, + -0.0053946413, + 0.0012779895, + -0.039418034, + -0.0019614864, + -0.01993427, + -0.009688461, + -0.011259669, + -0.00853774, + -0.02732367, + -0.016806481, + 0.005866984, + -0.011683944, + -0.0077240006, + -0.012265869, + 0.006235938, + -0.0048143608, + -0.0018119554, + 0.015831225, + -0.0011377779, + -0.023244845, + -0.015284067, + -0.015548229, + 0.0024442251, + 0.006025648, + 0.0039024777, + -0.017495027, + 0.005858955, + -0.008197025, + -0.016155217, + -0.02229732, + 0.017149076, + -0.008844154, + -0.017310841, + -0.030711401, + -0.009443842, + -0.017706368, + -0.017982736, + -0.019522825, + 0.00024411107, + -0.006174662, + -0.0019462273, + -0.010046633, + -0.002967633, + -0.011045366, + -0.0070810835, + -0.0027614688, + -0.0079351, + -0.0338917, + -0.0012349669, + -0.008283429, + -0.014712475, + -0.0028151618, + -0.030606227, + -0.0059159333, + -0.0084435865, + -0.011855108, + -0.00082005514, + 0.018107317, + -0.020842, + -0.018546283, + -0.00896333, + -0.02167712, + -0.017907519, + 0.0018855393, + -0.023033956, + -0.024408571, + -0.017080398, + -0.03126526, + -0.019363418, + -0.009994098, + -0.002135602, + -0.0071711857, + 0.001530104, + 0.015301759, + -0.018556254, + -0.0101865, + 0.0033910314, + 0.0045730937, + -0.0061639682, + 0.022987776, + -0.013771043, + -0.0069706957, + 0.02402467, + -0.021879703, + -0.010448867, + -0.0074207694, + -0.017238498, + -0.007055746, + 0.012461719, + -0.007547505, + -0.024717849, + -0.0010703085, + -0.025473757, + -0.009562432, + -0.021526136, + 0.0075057056, + -0.0022356075, + -0.015792362, + 0.0058259005, + -0.00345913, + -0.011374567, + 0.008093584, + -0.0058403066, + -0.013572631, + -0.02746943, + -0.028852584, + -0.0074366755, + 0.006503763, + -0.013351812, + -0.02301105, + 0.010017972, + -0.009234311, + -0.018442886, + -0.0057041743, + 0.0063793235, + -0.0055297865, + -0.021990314, + -0.0017680064, + -0.01577156, + 0.0035936155, + -0.019491503, + -0.026304645, + 0.00310946, + -0.017620428, + -0.010830052, + -0.01779765, + -0.01859749, + -0.023595262, + -0.0035584066, + -0.0030865767, + 0.0018778229, + -0.020142771, + -0.020206593, + -0.011241124, + -0.02599474, + -0.03370117, + 0.01078559, + 0.0074326764, + 0.0048584244, + 0.0074676643, + -0.0046565803, + 0.003086979, + -0.017904287, + -0.023044005, + 0.0064544394, + -0.0023420884, + -0.011758927, + -0.016542472, + -0.011750975, + -0.017584043, + -0.018377004, + -0.022947086, + -0.014753025, + 0.0066510695, + -0.009023933, + 0.007607921, + -0.012262942, + 0.008508464, + -0.0259269, + -0.03603572, + -0.018458283, + -0.0044814153, + -0.025150018, + 0.009150433, + 0.0018917159, + -0.021039002, + -0.027355231, + -0.013947233, + -0.0054093185, + -0.00094105845, + -0.002635069, + -0.0077179307, + 0.0010300473, + -0.010641728, + -0.014912172, + -0.0122869145, + -0.023639532, + -0.0009078941, + -0.03062569, + -0.015409818, + -0.02358177, + -0.036988623, + -0.005857895, + -7.1248455e-06, + 0.020491349, + -0.033803385, + -0.020889623, + -0.01690256, + 0.012301322, + -0.019529859, + -0.004545871, + -0.015875695, + -0.0094305, + -0.0050761984, + -0.027265456, + -0.009893251, + -0.031349104, + 0.0017728971, + -0.025840348, + 0.006887927, + -0.011324152, + 0.0063893343, + -0.026662948, + -0.0056281877, + -0.008179726, + -0.031517223, + 0.0054005426, + 0.0070934943, + -0.018853167, + -0.03186105, + 0.011646706, + -0.02346258, + -0.005989513, + -0.009825952, + 0.001291256, + -0.029746328, + -0.0054958425, + -0.021393929, + -0.02626704, + -0.017766371, + -0.00900134, + -0.0072007235, + -0.0048327544, + -0.012381519, + -0.0020195735, + -0.00944578, + -0.014847455, + 0.010678141, + -0.011662318, + -0.017369134, + -0.001574512, + -0.005161304, + -0.002608712, + -0.025091723, + -0.017735207, + -0.020051444, + -0.009922028, + 0.008526533, + -0.026841309, + -0.012498198, + -0.011817052, + -0.0064629363, + -0.020978216, + -0.008720794, + -0.025516765, + -0.005872414, + -0.01341685, + -0.010991114, + 0.001803065, + -0.0057572606, + -0.0029278991, + 0.0072805416, + -0.0021895485, + 0.0015806044, + 0.010784816, + -0.014339941, + -0.015045694, + -0.014703571, + -0.0028286758, + -0.0175471, + -0.010166356, + -0.01496835, + 0.00019563362, + -0.027012058, + 0.005990019, + -0.0056784977, + -0.012638856, + -0.016013632, + -0.020204144, + -0.016720392, + -0.0010689656, + -0.010249045, + -0.012140517, + -0.005660402, + -0.011718852, + 0.0076456694, + 0.01929831, + -0.029918049, + -0.027060641, + 0.0066598286, + -0.018920826, + 0.00948111, + -0.011216579, + -0.018149817, + -0.005864345, + -0.021109024, + -0.010161972, + 0.003558436, + -0.002099465, + -0.021561349, + -0.02290576, + -0.011219291, + 1.6786718e-05, + -0.03180824, + -0.006752474, + -0.009729531, + -0.011844591, + -0.015330435, + -0.017887244, + 0.0007187301, + -0.009500381, + -0.0075433156, + -0.0151665555, + 0.0067160055, + -0.013835598, + 0.00013011547, + -0.021013863, + -0.021867784, + -0.022727564, + -0.012518743, + -0.008945626, + -0.023085352, + -0.01922828, + 0.03259209, + -0.01110533, + -0.015553376, + 0.0022748595, + -0.014228273, + -0.018918905, + -0.002604298, + -0.007334648, + 0.002525327, + -0.015225169, + 0.0051853913, + 0.015821379, + -0.0062709926, + -0.008750299, + -0.012804996, + 0.016060418, + -0.0102479765, + -0.020436514, + 0.0001328681, + -0.010674675, + -0.011726421, + -0.0088737905, + -0.0059862365, + -0.007366973, + 0.012340175, + -0.035003733, + -0.012905232, + -0.0058801402, + 0.010436808, + 0.0038316757, + -0.022637483, + -0.024517167, + -0.008028071, + -0.039364163, + -0.0059181647, + 0.0020191353, + 0.00022632057, + -0.0096117435, + -0.012754073, + -0.002480632, + -0.008842549, + -0.014816713, + -0.017918462, + -0.025237573, + -0.014324226, + -0.039712865, + -0.0077246404, + -0.014280463, + -0.0080612, + -0.028013917, + -0.0023173834, + -0.013507913, + -0.0025891634, + -0.0030076224, + -0.014629973, + -0.0010204513, + -0.0067523224, + -0.01930664, + -0.033405393, + -0.0010431688, + -0.008120785, + -0.019651433, + 0.0054208753, + -0.03598066, + -0.025656495, + 0.006804131, + 0.010346031, + -0.021629805, + -0.011453333, + -0.02823196, + -0.005867435, + -0.009646581, + -0.015376557, + -0.022162966, + -0.026912993, + -0.0057963654, + -0.03134095, + 0.0072482415, + -0.020937782, + -0.0006139106, + -0.010225677, + -0.03142679, + -0.014848395, + -0.0024818648, + 0.0052365838, + -0.009365826, + 0.0014174219, + -0.016687635, + 0.002644449, + -0.01840743, + -0.02051736, + -0.015456909, + -0.0082817655, + 0.0038882503, + -0.0064547136, + -0.0056046243, + -0.01770974, + 0.0028067536, + -0.0114178, + -0.0054661515, + -0.011657652, + -0.010901762, + -0.010406362, + -0.026470387, + -0.013198207, + 0.018285882, + -0.007901581, + -0.020092627, + -0.030159263, + -0.009613085, + -0.01680273, + -0.019044606, + -0.0075719045, + -0.019387959, + 0.00046515441, + -0.028587911, + -0.015151041, + -0.022340056, + 0.01755763, + -0.00067933457, + -0.0036196841, + -0.0035804533, + -0.0331389, + 0.0013190698, + -0.03321773, + -0.0023658883, + -0.00027052802, + 0.0015373589, + -0.02045328, + 0.01464282, + 0.01054575, + -0.027185326, + -0.0004843157, + -0.008246874, + -0.00037612204, + -0.017674558, + -0.010452245, + -0.015352316, + -0.015796749, + -0.0114302775, + -0.014394851, + 0.0106354, + 0.00531931, + -0.0072293268, + -0.02113723, + -0.02713226, + -0.004952011, + -0.024429712, + -0.007915666, + -0.0032143933, + -0.014169841, + -0.020198843, + -0.010240152, + -0.01755539, + -0.015016717, + 0.001972099, + -0.004405228, + -0.012205011, + -0.013272127, + -0.012357516, + -0.0072481222, + -0.015822275, + -8.157693e-05, + -0.019951046, + -0.0029358338, + -0.01525684, + -0.027533434, + -0.038929116, + -0.0003176896, + -0.002503862, + -0.020640166, + -0.005494276, + 0.011713669, + -0.028028892, + -0.018371703, + -0.029380005, + 0.0128164375, + -0.004914342, + -0.032421425, + 0.021525946, + -0.0055162865, + -0.028174797, + -0.0133848945, + -0.015277468, + -0.021575246, + -0.0090133855, + 0.007414181, + -0.0104025155, + -0.018389642, + -0.002217602, + -0.0002860981, + -0.0042599775, + -0.016747005, + 6.991762e-05, + -0.0027058418, + -0.010898913, + -0.0142420065, + -0.004657997, + 0.004257911, + -0.018299239, + -0.014430103, + -0.002436367, + -0.050811082, + -0.024169913, + -0.027097534, + -0.032657433, + -0.022027297, + -0.0072748987, + -0.025747104, + 0.0014529285, + -0.018772047, + -0.0013397685, + -0.015530308, + -0.00539229, + -0.036423307, + -0.019568201, + -0.007924901, + -0.005152629, + -0.019110925, + 0.0032789886, + -0.00034138752, + -0.015109524, + -0.0026103612, + -0.018222818, + -0.014191409, + -0.0035577132, + -0.004012303, + -0.012420175, + -0.01394407, + -0.008807434, + -0.02538306, + -0.012374263, + -0.012286812, + -0.0030607956, + -0.03574298, + -0.017437397, + -0.022938007, + -0.009510608, + -0.0051141465, + -0.018111043, + -0.0007062907, + 0.004261127, + 0.0016120151, + -0.008611248, + -0.0073232567, + -0.010742899, + 0.001020984, + 0.0042846706, + -0.003929472, + -0.029115139, + 0.0007576276, + -0.013720127, + 0.0086717615, + -0.0037642885, + -0.01608247, + 0.0055555557, + 0.0024720358, + -0.0333087, + 0.0060221395, + 0.009579025, + -0.0074595828, + -0.017246595, + -0.03448152, + 0.008245435, + 0.006892062, + -0.0014360411, + -0.015876012, + -0.014520829, + -0.012580153, + -0.013327496, + -0.004479488, + -0.018243821, + -0.0025064955, + -0.028986303, + -0.02862154, + -0.029549498, + -0.022638513, + -0.006057388, + -0.01763496, + -0.0008609709, + -0.0042410623, + -0.021518169, + -0.025360417, + -0.0055490434, + -0.009685933, + -0.0029959762, + -0.0036611948, + -0.018770024, + -0.0039923103, + -0.017487163, + -0.014676821, + -0.012777556, + -0.04618693, + -0.00027621933, + 0.017992992, + -0.0064443634, + -0.0083902655, + -0.009393329, + -0.0049510486, + 0.007650591, + -0.022205137, + -0.016598018, + -0.014129338, + -0.019831207, + -0.0034880969, + -0.005737554, + -0.021156304, + -0.015994333, + 0.00748445, + -0.013039584, + 0.00061271415, + -0.008326679, + -0.007282829, + 0.013262041, + -0.0033312277, + -0.0074320454, + -0.01268306, + -0.01924244, + -0.02714331, + -0.021112539, + -0.007281818, + -0.008961267, + -0.034932345, + -0.02900604, + 0.00017487493, + 7.659126e-05, + 0.003343449, + -0.018018024, + -0.017989976, + -0.0061024963, + 0.009745805, + -0.02070591, + -0.0007782392, + -0.0071463515, + -0.021957424, + -0.007302858, + -0.016687209, + -0.006620714, + 0.0063228942, + -0.014212941, + 0.0118005015, + -0.01751434, + 0.0005600729, + -0.021669568, + 0.0046573067, + -0.02438973, + -0.040027473, + -0.0023846948, + -0.01606218, + -0.018318554, + 0.0077461964, + 0.018326243, + -0.01656229, + -0.013022067, + 0.00046289392, + -0.0017631758, + -0.009302452, + -0.025778815, + -0.050658192, + -0.0008195355, + -0.021754298, + -0.020891104, + 0.007138893, + -0.021806575, + 4.173523e-05, + -0.009534301, + 0.011133524, + -0.016268149, + -0.011394985, + -0.018981596, + 0.0055996925, + 0.009652603, + 0.0015129604, + -0.015879689, + -0.014952095, + -0.011139852, + -0.018856939, + -0.008929086, + -0.022094872, + -0.0119254915, + 0.004839623, + -0.016923578, + 0.0048593874, + -0.008968277, + -0.01375569, + -0.006775716, + 0.006095803, + -0.01722265, + -0.007280257, + -0.0027276597, + -0.0022232935, + -0.02776619, + -0.008435144, + -0.041445695, + -0.020779144, + 0.0016393482, + -0.023704387, + -0.016428925, + -0.0010474289, + -0.009212792, + -0.028987974, + -0.02468931, + -0.027244404, + -0.0042965864, + -0.010690327, + -0.024618573, + -0.025615947, + -0.013818113, + -0.019343385, + -0.00045225667, + -0.013324342, + -0.016209433, + -0.026790842, + -0.017273193, + 0.027438367, + -0.017803399, + -0.010044697, + -0.0230705, + 0.0018711862, + -0.011678095, + 0.011230029, + -0.0069670845, + -0.015803687, + -0.021021286, + 0.005478583, + 0.007548129, + -0.014834357, + -0.013410367, + -0.016636802, + -0.014704163, + -0.013464902, + 0.0017608633, + -0.010307886, + -0.026497891, + -0.027637033, + -0.018384632, + -0.009710227, + -0.041791916, + -0.018835591, + -0.017526804, + -0.018150242, + -0.002463773, + -0.013730312, + -0.0056046834, + -0.02002308, + -0.026190208, + -0.030744264, + -0.03326764, + -0.011869143, + -0.010076193, + -0.00061652437, + -0.005401601, + -0.010413042, + -0.028055409, + -6.6853616e-05, + -0.033745576, + -0.033398505, + -0.008734106, + -0.0056079705, + -0.01601748, + -0.0054109953, + -0.016402995, + -0.014400572, + -0.01225749, + -0.020028202, + -0.0077602444, + -0.013741643, + -0.0137611935, + -0.0055942903, + -0.02604266, + 0.0052047716, + -0.015942689, + 0.0023318331, + -0.028439384, + 0.001926574, + -0.022703122, + 0.024499515, + 0.0005031257, + -0.018485831, + -0.010515702, + -0.004987532, + -0.019326773, + 0.00096031616, + -0.0019488786, + -0.016891822, + -0.026008632, + -0.02161936, + -0.00083339546, + -0.010981435, + 0.008505968, + -0.01407207, + 0.0046033966, + -0.016920492, + -0.0065793796, + -0.020160405, + -0.016013106, + -0.005264615, + -0.013076889, + -0.008235399, + -0.021277076, + -0.008635601, + -0.012312927, + 0.001041273, + -0.0064536645, + -0.008474312, + -0.021174587, + -0.005465884, + -0.014722051, + 0.009107834, + 0.020845713, + 0.0071874955, + -0.013604722, + -0.022015927, + 0.0005161722, + -0.010382413, + -0.0028665066, + -0.0012803929, + -0.0025998976, + -0.028350443, + -0.037892226, + -0.0179185, + -0.006778948, + -0.0014590662, + 0.00086672127, + -0.01857442, + -0.016327834, + -0.012856076, + -0.0067726243, + -0.022799822, + -0.0048861937, + -0.011766313, + 0.00033976822, + -0.01712549, + -0.003575644, + -0.02208609, + 0.0039789462, + -0.023285365, + -0.009258343, + 0.012647967, + -0.018572865, + 0.00731654, + -0.0052272896, + -0.016099343, + -0.004190644, + -0.007937878, + -0.009530252, + 0.0074630184, + -0.015039407, + -0.00776235, + -0.011326235, + 0.014174805, + -0.002241315, + -0.014712557, + 0.0035484538, + -0.011587904, + 0.0007800958, + 0.005035615, + 0.009526364, + 0.0015016602, + -0.027339151, + -0.04166218, + -0.015300465, + -0.007986243, + 0.005325545, + -0.020036364, + -0.020829912, + -0.01100463, + -0.015984092, + -0.015191717, + 0.0011966049, + -0.02776839, + 0.009979549, + -0.009606129, + -0.024546508, + -0.002595608, + 0.01093449, + -0.0061223204, + -0.02902784, + -0.012908337, + -0.008326891, + -0.025251811, + -0.026856579, + -0.008058061, + -0.0025757414, + -0.012500018, + -0.00679422, + -0.017514942, + -0.008172723, + 0.001644702, + -0.05915372, + -0.028794399, + -0.012160645, + -0.028081527, + -0.030435562, + -0.0018282896, + 0.009354999, + 0.0063778334, + -0.008094977, + -0.008963588, + 0.0004367003, + -0.009319585, + -0.01165213, + 0.0004959458, + 0.0025450145, + 0.014155632, + -0.00215292, + -0.02671798, + -0.01372249, + -0.008064841, + 0.01199388, + 0.0016909603, + -0.030672094, + 0.014096975, + -0.020883441, + 0.0015519966, + 0.007814994, + -0.0126735, + -0.028883861, + -0.01445465, + 0.0018192604, + -0.010336735, + -0.014127622, + -0.02388824, + -0.008813205, + -0.008665945, + -0.021496765, + -0.013689246, + 0.000543307, + -0.0070215687, + -0.013870548, + -0.00820438, + 0.0065665375, + -0.013941612, + -0.011211928, + -0.02252033, + 0.00081008003, + -0.017629715, + 0.015699212, + -0.0077409646, + -0.0004394908, + -0.012624982, + -0.00996652, + 0.012817973, + -0.016360654, + -0.025822155, + -0.007885694, + 0.0016846152, + -0.020336587, + 0.02053644, + -0.006899632, + -0.016018769, + -0.026071995, + -0.008917732, + 0.031611074, + -0.024166966, + 0.00960213, + -0.0056688106, + 0.011417342, + 0.0023128737, + 0.00892934, + -0.002127683, + 0.0055149356, + 0.007273049, + -0.01710669, + -0.009235956, + -0.025456483, + -0.004912992, + 0.0025970046, + 0.007032733, + 0.0051294826, + -0.014028181, + -0.01044887, + 0.006895983, + -0.014015105, + -0.0069805006, + -0.0049737627, + -0.006918117, + -0.021829097, + -0.014100302, + -0.020081067, + -0.0038337403, + -0.012663418, + -0.0014112709, + -0.010149681, + -0.009509195, + -0.01234445, + -0.02857348, + 0.002916855, + -0.017179929, + -0.013829159, + -0.008079174, + 0.0071702283, + -0.009224436, + -0.025880149, + 0.0068105543, + -0.030737763, + -0.0013258802, + -0.016967727, + -0.017761491, + -0.0020329144, + -0.010691594, + -0.00988499, + 0.004297995, + 0.009715465, + -0.04025808, + -0.020848759, + -0.009973443, + 0.008040285, + -0.008258996, + -0.004069343, + -0.028965868, + -0.030104417, + 0.009020435, + -0.005138548, + -0.014523179, + -0.009913619, + -0.008287062, + -0.008170158, + -0.010302634, + -0.0057654814, + -0.004562367, + -0.0019199695, + -0.009311424, + -0.011447945, + -0.023727924, + -0.01643847, + 0.008594777, + -0.012214862, + -0.020375682, + -0.016609399, + -0.007139321, + -0.0024134899, + -0.019507742, + 0.00017101824, + 0.0035546396, + -0.019540757, + -0.016154295, + -0.006112932, + -0.007312468, + -0.0053500286, + -0.031186812, + 0.020098886, + -0.0013872394, + 0.0056624245, + -0.023733001, + -0.007869524, + -0.0110838115, + -0.0070940712, + 0.0011621427, + -0.007819422, + -0.022193369, + -0.020385506, + -0.007442917, + 0.008878972, + -0.020769805, + -0.02279448, + 0.007909086, + -0.0033700175, + 0.019396335, + -0.00019034736, + -0.011613937, + -0.010696557, + -0.0031040674, + 0.018923154, + -0.023711039, + -0.014802998, + -0.008393977, + 0.012100253, + 0.006679771, + -0.006197336, + -0.028869327, + -0.018485116, + -0.004327755, + -0.03451687, + -0.0082748765, + 0.0019749526, + -0.01738759, + -0.008665578, + -0.02466107, + -0.042725414, + -0.025308328, + -0.0049622017, + 0.0022260991, + 6.806126e-05, + -0.017477427, + -0.0121785905, + -0.024089303, + -0.025035275, + -0.027481029, + -0.018100513, + -0.010467324, + -0.012616114, + 0.012176895, + -0.0048832623, + -0.009252191, + -0.004272076, + 0.012998812, + -0.008404751, + 0.0047515, + 0.011191262, + -0.007089555, + -0.011396107, + -0.007206142, + -0.027377434, + -0.010564742, + 0.014452314, + -0.01703575, + -0.014378177, + -0.012912992, + -0.007023505, + -0.014677135, + -0.02110472, + -0.0036772455, + 0.0013554621, + -0.02132188, + -0.0031790847, + -0.015034175, + 0.008687474, + -0.0041426197, + -0.03016006, + -0.0040537394, + -0.0012076227, + -0.0044886204, + 0.00708098, + -0.017176874, + 0.022711176, + 0.0007161821, + -0.004980205, + -0.019584646, + -0.025173025, + -0.018140875, + -0.0058714743, + -0.005110313, + -0.0092857415, + -0.009122953, + -0.0025819403, + 0.0023240664, + -0.014576794, + 0.0084908325, + 0.0033942577, + -0.024505364, + -0.014081585, + -0.005899839, + -0.017308807, + -0.008161928, + -0.015425462, + -0.010956469, + -0.02067846, + -0.020013118, + -0.015701503, + -0.013778479, + -0.0015277581, + -0.009565178, + -0.009408065, + 0.0034362108, + -0.01121661, + -0.014990401, + 0.010984281, + -0.01962287, + 0.011007748, + -0.021175873, + 0.025767403, + -0.029584553, + 0.0049686586, + -0.03234045, + -0.001776672, + -0.0019085301, + -0.028948812, + -0.017785776, + -0.0067419126, + -0.024844302, + -0.03257438, + -0.020937998, + -0.003711495, + -0.0021809945, + -0.0091846995, + -0.012631522, + -0.0010698454, + -0.015657227, + -0.010579881, + -0.013811223, + 0.014375809, + 0.011363582, + 0.0022111468, + -0.015575966, + -0.030038126, + -0.006397058, + 0.0019870028, + -0.016017418, + -0.0094608255, + -0.009715818, + -0.017626151, + -0.016029717, + 0.027049376, + -0.013422591, + -0.051822603, + -0.010049027, + -0.01800333, + -0.012365089, + -0.011711403, + -0.01962409, + -0.009647714, + -0.01198497, + 0.0017913161, + 0.0025594113, + -0.0042658006, + -0.012177777, + -0.008187355, + -0.016039526, + 0.01512396, + -0.021046294, + -0.015140622, + -0.004672301, + -0.014821309, + -0.013750265, + -0.0090545835, + -0.04366044, + -0.031497724, + -0.009452696, + -0.016774341, + -0.005375833, + 0.006399108, + -0.0055055786, + -0.006616003, + -0.017422618, + -0.04194981, + -0.015338535, + -0.007686521, + -0.021056363, + -0.035028536, + -0.010477434, + -0.0053785536, + -0.01524075, + 0.003510782, + 0.0029210916, + -0.007950119, + -0.0017869021, + 0.0029777912, + -0.010643949, + 0.0052032596, + -0.014183546, + -0.004160105, + -0.03209762, + -0.0008365346, + -0.014791834, + -0.020330375, + -0.017349122, + -0.022117672, + -0.0022814819, + -0.037647393, + 0.00052519375, + -0.012006479, + -0.025967324, + -0.019650964, + -0.0064842356, + -0.019716965, + -0.017200852, + -0.0013464143, + -0.017339196, + -0.035333533, + -0.015028185, + -0.023110144, + 0.005610825, + -0.02236004, + -0.01073314, + -0.0067659644, + -0.021274175, + -0.010225086, + -0.0334692, + -0.009353219, + 0.000119522396, + -0.022329552, + 0.0047856057, + -0.017181309, + -0.00092237757, + -0.0049497075, + 0.002423411, + -0.016695494, + -0.021463145, + -0.037466016, + 0.018068502, + -0.0006624293, + -0.021218365, + -0.0009136006, + -0.006611526, + -0.020014307, + -0.008607669, + -0.004865825, + -0.0017097786, + -0.0305224, + -0.030054638, + -0.009877423, + -0.020529114, + -0.015706161, + -0.017106807, + -0.014694085, + 0.011673278, + -0.036125526, + 0.010141838, + -0.019577125, + -0.00875944, + 0.0023809364, + -0.025522035, + -0.0027103652, + -0.009873664, + -0.00255915, + -0.010312424, + 0.0074256025, + 0.0024574338, + -0.013132026, + 0.010675637, + -0.034036838, + 0.00778533, + -0.007504337, + -0.017721368, + -0.012627378, + -0.014208665, + 0.015652478, + -0.004476352, + -0.00142446, + -0.0008701842, + 0.0069397977, + -0.0036275226, + -0.0069466173, + 0.01740725, + 0.0014827504, + -0.022642454, + -0.01685364, + -0.0151033895, + -0.016031982, + -0.002082353, + 0.0003330965, + -0.010288653, + -0.005487493, + -0.01852114, + -0.01917344, + -0.010728527, + 0.00040086187, + 0.0033087214, + -0.03808033, + -0.028734477, + -0.012403817, + -0.00021156187, + -0.02112285, + -0.013642567, + 0.018562434, + -0.012522859, + 0.0006104314, + 0.009341774, + 0.006007384, + -0.005991301, + -0.0116460975, + -0.020492066, + -0.008997531, + -0.0040080906, + 0.020891825, + -0.001188477, + 0.0041848077, + -0.011528157, + -0.01881779, + -0.0039162263, + -0.0012329718, + -0.0048011136, + 0.0049012774, + -0.0127005745, + 0.009291646, + -0.015170266, + -0.011322761, + -0.008390338, + -0.014432383, + -0.008015916, + 0.00919144, + -0.017033236, + -0.0009254547, + -0.009073674, + -0.013922194, + -0.02687704, + -0.0037544707, + -0.027544597, + -0.022908228, + -0.005423445, + -0.00014226767, + -0.02670744, + -0.024263937, + -0.0002178427, + 0.008702742, + -0.023320578, + 0.011384602, + -0.010028829, + 0.0058009895, + -0.012858849, + -0.007050655, + -0.008187036, + 0.014533544, + -0.015428405, + -0.009651332, + -0.010258155, + -0.007266355, + -0.008500568, + 0.004238372, + -0.025780872, + 0.018959709, + -0.0039397273, + -0.01638741, + -0.012720413, + -0.0151396785, + -0.012428854, + 0.0001315244, + 0.0045464328, + 0.00060557126, + -0.020522114, + -0.01575586, + -0.031640504, + -0.012208538, + 0.001959144, + -0.015189483, + -0.010373753, + 0.018900713, + 0.00049606146, + -0.0023937186, + -0.0015185652, + 0.011732548, + -0.0147794075, + -0.011375471, + -0.005959379, + -0.016217927, + 0.0005883871, + -0.02969762, + -0.004763122, + -0.008924011, + -0.0073789284, + -0.004146034, + -1.3600537e-05, + -0.01975976, + -0.03435052, + 0.01555437, + -0.011792758, + -0.0044265427, + -0.017688535, + -0.024724014, + -0.025993964, + -0.032383777, + -0.023547333, + -0.008318748, + 0.00040241927, + 0.005855022, + -0.022544637, + -0.015670478, + -0.0008654735, + -0.012352351, + 0.009327638, + 0.00534932, + -0.021755487, + -0.022135235, + -0.017081663, + 0.0026155335, + -0.016843107, + -0.037651896, + -0.027571585, + 0.005607178, + -0.019924976, + -0.015980082, + -0.0015656414, + -0.01956562, + -0.016284829, + -0.02503315, + -0.03869788, + -0.018466847, + 0.00016650964, + -0.009190088, + 0.0038393403, + -0.012875452, + -0.0050481874, + -0.04040527, + -0.0037494118, + 0.006128196, + -0.0012743382, + -0.031930245, + -0.024364343, + -0.0008162456, + 0.0057520196, + 0.022630524, + -0.028485876, + -0.012124268, + -0.002307663, + -0.01883945, + -0.01780651, + -0.0055529494, + -0.0035670828, + -0.0073669967, + -0.009542356, + -0.03734994, + -0.009117967, + -0.017182127, + 0.002866343, + -0.0031979897, + -0.0015182041, + -0.00696232, + -0.005685577, + 0.0011896467, + -0.01416304, + 0.0040428382, + -0.0062917704, + -0.029343665, + -0.0122666685, + -0.018836347, + -0.00893044, + -0.023593795, + 0.015254442, + -0.0142112095, + -0.02045678, + -0.0011737905, + -0.008653468, + -0.016723623, + -0.014342594, + -0.011767042, + -0.012376302, + 0.0058874027, + -0.028370095, + 0.007283258, + -0.00018006087, + 0.009470954, + -0.021384455, + -0.0019499802, + -0.010790945, + -0.006809008, + -0.015900694, + -0.005498777, + -0.024434317, + 1.5565785e-05, + -0.0059165913, + -0.014920412, + 0.018324632, + 0.0051097292, + -0.008370569, + 0.022967376, + -0.02628724, + -0.021568947, + 0.0061603035, + 0.0014207929, + 0.027836937, + -0.013443917, + -0.008364994, + -0.009709926, + -0.006222305, + 0.014523472, + 0.0017433041, + -0.013879331, + 0.0059154625, + -0.0052561564, + 0.017095404, + -0.029058516, + -0.028088028, + -0.024915569, + 0.015451079, + 0.00932437, + -0.003869145, + 0.017144073, + -0.015553233, + -0.0062020365, + 0.0012406543, + -0.0070149456, + -0.007473507, + -0.0034057072, + -0.007109701, + 0.0197419, + -0.013003249, + 0.022394592, + -0.008453309, + -0.023175413, + -0.020056855, + -0.01816465, + -0.0035747804, + 0.017987767, + -0.0025722005, + 0.0041762516, + 0.004870104, + -0.021948466, + -0.01394506, + -0.00739325, + -0.023456905, + -0.019332578, + -0.022685025, + -0.0055684587, + -0.02175836, + -0.007960703, + -0.01087477, + -0.009295547, + 0.0017801123, + -0.0059546893, + -0.015611498, + -0.009038524, + -0.015444584, + 0.0016951596, + -0.005389721, + 0.00559694, + -0.012978325, + 0.012836235, + -0.009142017, + -0.020688979, + -0.00530093, + -0.020289188, + 0.0117202345, + 0.0036723104, + -0.012327571, + -0.018422823, + -0.0035828098, + 0.0065287575, + -0.016328286, + -0.007236483, + -0.0013592904, + -0.0060367803, + -0.005358251, + -0.017623415, + -0.008971335, + -0.015045331, + -0.015039663, + -0.01342618, + -0.034280434, + -0.01665021, + 0.0003270689, + -0.026420511, + -0.01382598, + 0.004700805, + 0.0017079711, + -0.025149401, + -0.02439595, + 0.012774912, + -0.030274795, + -0.005844012, + -0.02136714, + -0.013497005, + 0.006802429, + 0.0009875756, + -0.0030507187, + -0.009306405, + 0.023482995, + -0.022423297, + -0.031250402, + -0.005675459, + 0.010319224, + -0.023744017, + -0.010348653, + -0.009558097, + -0.021654714, + -0.008203327, + -0.029352533, + -0.013455751, + -0.015456336, + -0.003961064, + -0.006491912, + -0.008464077, + -0.0073354207, + -0.0049833106, + 0.004923066, + -0.022425847, + -0.00054383284, + 0.0027736933, + -0.005171164, + -0.023975, + -0.010159682, + -0.0077857072, + 0.011323273, + -0.013851789, + -0.01062146, + -0.030318044, + 0.0044961693, + -0.013527287, + -0.002930902, + -0.00564346, + -0.013962771, + -0.02657321, + -0.029225484, + -0.021720186, + -0.005981261, + -0.016792368, + -0.018780345, + -0.008355151, + -0.020908039, + -0.009597351, + -0.017159918, + -0.022817222, + -0.006494656, + -0.010574382, + 0.008099241, + 5.300138e-06, + 0.0014030195, + 0.004279336, + -0.027002389, + -0.0073586656, + -0.021051848, + -0.01993288, + -0.01882851, + 0.006602879, + -0.02864565, + -0.013708922, + -0.0013674567, + -0.009809584, + -0.03741182, + 0.007261898, + -0.011846746, + -0.02973652, + -0.04023173, + 0.0026106758, + -0.0038475355, + -0.022531647, + 0.0075009377, + -0.017519807, + 0.0049228496, + 0.0068578743, + -0.019186852, + 0.005893548, + -0.0016823289, + -0.024669865, + -0.022277676, + -0.0010614577, + -0.015026456, + -0.011441368, + 0.00066133647, + -0.008898081, + -0.00042402014, + -0.035199337, + -0.013206791, + -0.023832116, + 5.0417428e-05, + -0.012013931, + -0.014591264, + -0.017148998, + -0.012410055, + -0.03372891, + -0.02725206, + -0.0089544235, + -0.015779594, + -0.009704095, + -0.0065594637, + -0.00093743665, + -0.017399436, + -0.023300003, + -0.026684603, + -0.014426968, + 0.0016805504, + -0.009501155, + -0.029443428, + 0.009880566, + 0.00034469465, + 0.012557624, + -0.016134465, + -0.023670722, + -0.013975183, + -0.0034722155, + -0.03550113, + 0.015584031, + 0.013028027, + 0.0022417742, + -0.0057665803, + -0.0073120766, + -0.006247471, + -0.019165114, + -0.022367073, + -0.011309906, + 0.00044778097, + -0.016866667, + 0.013653875, + 0.014921363, + 0.039702095, + -0.0020630462, + -0.022583606, + -0.041498087, + -0.011145413, + -0.029490177, + -0.007431239, + -0.02221799, + -0.0090080965, + -0.0049085845, + -0.0066053984, + 0.007258312, + 0.0034860016, + 0.0069136503, + -0.0073411055, + 0.0008677444, + 0.011609555, + -0.007633328, + -0.01994412, + -0.0026823804, + -0.031025698, + 0.026472313, + -0.022452148, + -0.01904447, + -0.018144863, + 0.00033657116, + -0.01983642, + 0.0005747841, + -0.0009857308, + -0.01625865, + -0.015679155, + -0.010124698, + -0.0030172516, + -0.0043916306, + 0.014515402, + -0.020823196, + -0.0010642075, + 0.02252115, + 0.029224318, + 0.0001669672, + -0.028173124, + 0.0062845545, + 0.016423529, + -0.012450426, + -0.018883351, + -0.007292454, + 1.367738e-05, + -0.02492924, + 0.010053582, + -0.014566859, + -0.030287813, + -0.014287622, + 0.007013513, + -0.010641184, + -0.01138678, + -0.009779476, + 0.0029468003, + -0.00011074673, + -0.013283523, + -0.01709558, + 0.0023143447, + -0.011512723, + -0.008737952, + -0.0058459346, + -0.012152848, + 0.0032643005, + 0.00020739571, + -0.009279431, + -0.020768227, + 0.016864913, + 0.0024172857, + 0.0039712437, + -0.035166383, + -0.0013572513, + 0.0016541214, + 0.013917211, + 0.0022530043, + -0.025075354, + -0.018269718, + -0.038620617, + -0.003243772, + -0.0034105119, + -0.015812038, + -0.03750622, + -0.024301333, + -0.0022870558, + -0.00747514, + 0.009123549, + 0.0012861885, + -0.020071384, + -0.0026074552, + -0.0007382829, + -0.0038233371, + -0.008658138, + 0.009740711, + -0.0037470032, + -0.02212054, + -0.012753408, + -0.016335396, + -0.0077296435, + -0.0057389354, + -0.010592484, + -0.00975612, + -0.021006573, + -0.007500766, + -0.01338643, + 0.007923894, + -0.017549999, + 0.0107970005, + -0.02394233, + -0.013602671, + 0.0029901033, + 0.00058691035, + -0.021292249, + -0.011069866, + 0.006370806, + -0.006530785, + -0.020219935, + -0.010477072, + -0.019654801, + 0.013030879, + 0.00929976, + -0.025226299, + 0.0033469403, + 0.011100509, + -0.01782487, + -0.016309127, + -0.013913424, + -0.009686116, + 0.0060597677, + -0.037522167, + 0.0062237605, + 0.005205629, + -0.011444281, + -0.0037940976, + 0.012408535, + -0.014498903, + 0.028689574, + -0.0046364013, + -0.027685443, + 0.0042265076, + 0.017222501, + -0.014868905, + -0.0069872383, + -0.010558521, + -0.018786151, + -0.017445376, + 0.0089459345, + 0.011921755, + -0.016735548, + -0.006073825, + 0.0032579564, + -0.009818467, + -0.004815759, + -0.050143454, + -0.024761388, + -0.0043922584, + -0.021349493, + -0.014845712, + 0.019581892, + -0.0022845154, + 0.014840569, + -0.018308312, + -0.012264803, + -0.0041807154, + 0.000315578, + 0.009077013, + -0.01570406, + -0.014465518, + -0.01911948, + -0.006757037, + -0.0061633806, + -0.025783671, + 0.014654556, + -0.0011815708, + -0.017399527, + -0.016070131, + -0.0046191486, + -0.018896816, + 0.00017552414, + -0.009529298, + 0.0046194773, + -0.0016900267, + -0.008414845, + -0.048376054, + 0.009421045, + -0.023433814, + -0.02430586, + -0.014002066, + 0.0037348988, + -0.006297128, + -0.016272929, + -0.0043468694, + -0.008699556, + -0.016273733, + -0.03276014, + -0.014237472, + -0.016307734, + -0.027474323, + -0.016232695, + -0.0047953897, + 0.004626349, + -0.0065808967, + -0.008945307, + 0.011933085, + -0.026739892, + 0.0053507644, + -0.014971466, + -0.022151427, + 0.00688862, + -0.003118124, + -0.029669521, + -0.023350675, + -0.012201399, + -0.03452815, + 0.0025140946, + -0.013272925, + -0.03370981, + -0.01702062, + -0.020118998, + -0.009068356, + -0.008727034, + -0.012028183, + -0.010812549, + -0.03157194, + -0.0281894, + 0.00489511, + 0.004613553, + -0.012074591, + -0.008589792, + -0.0050151288, + 0.0030383922, + -0.017353531, + -0.019294806, + -0.0044325464, + -0.021127963, + -0.032971743, + -0.012646709, + -0.016049922, + -0.028539259, + -0.0015647486, + -0.016623735, + 0.010225704, + 0.002598231, + 0.0048678713, + -0.03229078, + -0.00035407438, + 0.026872521, + -0.007949818, + -0.01257513, + -0.00011189977, + -0.0025450946, + -0.019492174, + 0.012227354, + -0.013402681, + -0.015664423, + -0.0056769857, + -0.01001739, + -0.0010433441, + -0.012651006, + -0.015983386, + -0.0077809626, + 0.007646492, + -0.007153718, + -0.013744633, + -0.006924155, + 0.0049686143, + -0.0005803989, + 9.35959e-05, + -0.012494148, + -0.01995248, + -0.008876066, + -0.017180387, + -0.023553299, + -0.02686181, + -0.003054414, + -0.0062008495, + -0.012376471, + -0.015830306, + -0.0076879105, + 0.012507551, + -0.007502194, + -0.007376771, + -0.022358561, + -0.032755513, + 0.0106649455, + -0.017511997, + -0.00015923765, + -0.025580926, + -0.0127095, + 0.02110825, + -0.019453311, + -0.012727725, + -0.01986737, + -0.01973782, + -0.010571268, + -0.0152492905, + -0.017950477, + -0.015486693, + 0.013461158, + -0.0027721, + -0.019404488, + -0.018630248, + -0.030204538, + -0.016290873, + -0.010719682, + -0.005314445, + -0.0014349676, + -0.0005780435, + -0.018037885, + -0.0068173176, + -0.016352033, + 0.009178833, + -0.0049963826, + -0.011171091, + -0.012259283, + -0.0051720883, + -0.00054932066, + 0.0068199867, + -0.03763684, + -0.018425634, + -0.011532753, + -0.0044064843, + -0.017085597, + 0.016524196, + -0.024619581, + -0.008864493, + -0.009821575, + -0.024972213, + -0.007266071, + -0.0020939487, + -0.011547362, + -0.016755754, + -0.017093135, + -0.053128045, + -0.0051552365, + -0.016406031, + -0.0023079896, + -0.01138505, + 0.0022450257, + -0.008709904, + -0.02234338, + -0.012875456, + -0.001970535, + 0.023126608, + -0.0046830266, + -0.024708504, + -0.027415508, + 0.0002635665, + 0.011357835, + -0.0016944871, + 0.0044878353, + -0.010970097, + -0.016223595, + 0.0034417156, + -0.024148377, + -0.02047147, + -0.011461724, + -0.015221558, + -0.009528854, + -0.0052091377, + -0.017182868, + -0.013775381, + -0.019313527, + -0.0045199273, + -0.025100838, + -0.016462335, + -0.014570628, + -0.014437047, + -0.016636673, + -0.0138190705, + -0.013363161, + -0.028587965, + 0.0041335695, + -0.011768724, + -0.013135119, + 0.009881481, + -0.022075025, + 0.013355261, + -0.018618394, + -0.015120588, + -0.015300168, + -0.021993898, + -0.0005665456, + -0.03689509, + -0.013650323, + -0.002642915, + 0.0061723087, + -0.020530326, + -0.0035921866, + 0.00518876, + -0.0017700337, + 0.013752395, + 0.0074216533, + 0.002859093, + -0.020200064, + 0.0020141827, + 0.003836614, + -0.0048092273, + -0.010655099, + -0.005071671, + -0.0117434375, + -0.003999134, + -0.00654721, + 0.007990447, + -0.003389817, + -0.016703809, + -0.010376486, + 0.014763413, + 0.0021705881, + -0.015244284, + -0.012329237, + -0.00043945602, + -0.026499067, + 0.010463516, + -0.009155698, + 0.0010464618, + -0.021928191, + -0.022978002, + 0.015115433, + -0.019441664, + 0.002749241, + -0.014777575, + -0.0026416597, + 0.011277261, + -0.012761205, + 0.0016115258, + -0.024082014, + -0.0068724332, + -0.0025059567, + 0.002676805, + 0.016147207, + 0.020946909, + 0.014725624, + 0.0026808665, + 0.007362727, + -0.014638485, + 0.0020235565, + -0.004986003, + -0.020955589, + -0.0003988987, + -0.02453906, + -0.0041162893, + 0.0012399327, + -0.0013890377, + -0.006460026, + 0.023490135, + -0.018900435, + 0.0024501404, + 0.015927015, + -0.019595692, + -0.0101138735, + -0.010717163, + -0.0047163665, + -0.009794734, + -0.0068202666, + -0.0016837722, + -0.0025516846, + 0.004439766, + -0.010184368, + -6.0035272e-05, + -0.0026133738, + -0.018944427, + -0.02456968, + 0.009800176, + -0.008919086, + -0.0257107, + -0.009773695, + 0.0028879105, + -0.0067204386, + 0.015812038, + -0.008909432, + -0.018674932, + -0.011235096, + -0.036150664, + -0.004080961, + -0.012243119, + -0.02012654, + -0.007864812, + -0.006797317, + -0.018058984, + -6.307488e-05, + -0.009574201, + 0.012082677, + -0.01845299, + -0.017777551, + -0.0020687624, + -0.006640804, + -0.0039384724, + -0.000153826, + 0.007794247, + -0.022890493, + -0.00097460893, + 0.013183597, + -0.0012354675, + 0.012479554, + -0.005323511, + -0.011114107, + -0.010247122, + -0.023422988, + -0.00559165, + -0.0012208318, + -0.021482324, + 0.007639603, + 0.022493519, + -0.01495802, + -0.008769559, + -0.015838541, + -0.027239056, + 0.009430104, + -0.02648665, + 0.008638832, + 0.005386912, + -0.00055206363, + -0.017355544, + -0.023492742, + -0.013509972, + -0.005629443, + -0.00083682186, + 0.0007321988, + -0.0012766501, + -0.0005651949, + -0.0060753264, + -0.027927564, + -0.00875939, + -0.015206671, + -0.036470916, + 0.00047632086, + -0.0071530906, + -0.00922897, + -0.005519076, + -0.0069646765, + 0.0020615517, + 0.01477285, + -0.00033824204, + 0.004732047, + -0.0023410094, + -0.028997874, + -0.0052000526, + -0.01595278, + -0.008099397, + -0.037209332, + -0.0027716164, + -0.006786168, + -0.00053373317, + -0.014213425, + -0.036493722, + 0.0058450503, + -0.015544375, + -0.020600501, + -0.018803902, + -0.011166622, + -0.0052850666, + -0.0011330349, + -0.019523205, + -0.015806265, + 0.0056380727, + 0.00018543236, + 0.0014365221, + -0.005886647, + -0.02157997, + -0.011834729, + -0.010995615, + 0.013142656, + -0.013450418, + -0.006973073, + -0.025482845, + -0.023709789, + 0.009933409, + -0.013629502, + 0.00585859, + -0.0018075114, + -0.0035816103, + -0.00088561315, + 0.0018776694, + -0.0100729, + -0.027518319, + 0.009680841, + -0.0029498572, + -0.0071231476, + -0.013896763, + 0.00037882078, + -0.007405708, + 0.012666544, + -0.013474029, + -0.024849001, + -0.0006588537, + 0.0031980511, + -0.008943034, + 0.0002457729, + -0.008896414, + -0.012109574, + -0.009965503, + -0.0071897907, + -0.007998358, + -0.014354768, + -0.007469608, + -0.014586738, + -0.011468607, + -0.0062084384, + -0.024234567, + 0.010139493, + -0.009220582, + -0.012635975, + -0.015408692, + 0.0045385305, + -0.01173008, + -0.015900861, + 0.018807873, + -0.018456483, + -0.016371757, + 0.014360885, + -0.02014237, + -0.027705288, + -0.00044708117, + 0.001883101, + 0.008758998, + -0.003130653, + 0.0009922636, + 0.00023012144, + -0.014156873, + -0.017767295, + -0.015551421, + -0.015630107, + -0.027649563, + -0.032333504, + -0.0064890087, + 0.003533381, + 0.008499371, + -0.005391911, + -0.0083341235, + -0.0070313737, + -0.01383214, + -0.03276317, + -0.0014075339, + 0.012183672, + -0.010678678, + -0.03975164, + -0.0019500975, + -0.030411545, + -0.027216917, + -0.0058782254, + 0.008207545, + -0.016825335, + -0.015699169, + -0.0057958765, + 0.011754197, + -0.029732766, + -0.019702047, + -0.021667318, + -0.0132636465, + -0.018151484, + 0.0038274229, + -0.031938534, + -0.031993076, + 0.0029562905, + 0.0015044058, + 0.006537262, + -0.031942304, + 0.027435277, + -0.024259418, + 0.0059678853, + -0.021580527, + -0.0052246614, + 0.0039436603, + -0.0009791221, + -0.01634061, + -0.02238099, + -0.029106636, + -0.010944344, + 0.011573483, + -0.009895343, + -0.016264087, + -0.00781696, + -0.016283926, + -0.011401032, + -0.021418968, + -0.016249174, + -0.024920158, + -0.01611121, + 0.0072198547, + -0.01058923, + -0.010956774, + -0.009395949, + -0.0037110155, + -0.010066524, + -0.012922208, + -0.007021407, + -0.012972753, + -0.009317642, + 0.015242518, + -0.011572872, + -0.02897831, + -0.004708155, + 0.00041419215, + -0.02745271, + -0.008967687, + 0.002764507, + -0.0058736936, + -0.011507276, + -0.025712809, + 0.0006935538, + -0.003864604, + 0.0040486567, + -0.014050667, + -0.017189698, + -0.01976045, + -0.014280591, + -0.0052780993, + -0.021891542, + -0.01031217, + -0.031745598, + -0.015920002, + -0.013085536, + -0.0210556, + -0.01066512, + -0.03407201, + -0.006096516, + -0.028886272, + -0.012160084, + -0.003707081, + -0.012026167, + -0.01093494, + -0.026483146, + -0.014522378, + -0.0098207705, + -0.024634501, + 0.0009302509, + -0.012833538, + 0.0020729022, + -0.016967462, + -0.025925593, + -0.007650208, + -0.0030593148, + -0.030276172, + -0.015610025, + -0.0060729845, + -0.031191733, + -0.022219494, + -0.021580815, + -0.013769222, + -0.00084634783, + -0.0051928577, + -0.024143906, + -0.0054518855, + 0.0013700628, + -0.020003961, + -0.016571555, + -0.0149377985, + -0.0016440672, + -0.030408194, + -0.0091361655, + -0.0059438283, + -0.0018986491, + -0.0049961465, + 0.0013081933, + -0.029252408, + -0.023068363, + 0.0016437956, + -0.025961276, + -0.036334164, + -0.001525677, + -0.014956746, + -0.0069023054, + -0.023931706, + 0.010142082, + -0.019112835, + -0.026356738, + -0.031784236, + -0.0007831694, + -0.025420604, + -0.021814687, + -0.0097545395, + -0.0068167453, + -0.0031275772, + 0.0021105523, + 0.006335909, + -0.013679195, + -0.013002649, + -0.004219831, + -0.0120316185, + -0.023283327, + -0.0041733147, + -0.011919417, + -0.015766941, + -0.026345696, + -0.0132254455, + -0.013123568, + 0.00825486, + -0.018640332, + -0.032501373, + -0.008629718, + -0.009225176, + -0.005339976, + -0.013133841, + 0.0013338081, + 0.017706916, + -0.013308081, + -0.007176115, + -0.0052060415, + -0.00093351555, + -0.0032616812, + -0.015500506, + -0.01110563, + -0.007755178, + -0.027310828, + -0.0013088142, + -0.005195403, + -0.0054099564, + -0.011567839, + -0.02025542, + -0.040675797, + -0.01526988, + -0.011311199, + 0.0054342444, + -0.0071024154, + 0.010605387, + 0.002522889, + -0.025336314, + -0.008248648, + -0.0013276879, + -0.0001979641, + -0.017691378, + -0.013529115, + -0.0010956358, + 0.0005777463, + -0.013799175, + -0.02339266, + -0.01331814, + -0.021595608, + -0.022264497, + -0.021050476, + -0.011876496, + 0.002714338, + -0.02305236, + -0.011517471, + -0.003694517, + -0.029986102, + 0.020769283, + 0.0038472582, + -0.010020117, + 0.002460145, + -0.013491715, + -0.0080996305, + -0.008726104, + -0.007555675, + -0.034736715, + 0.004372913, + -0.0005396854, + -0.0023012934, + -0.013309347, + -0.008922953, + -0.027342452, + -0.016255498, + -0.016130289, + -0.0047563035, + 0.020957446, + -0.0029385898, + -0.01822124, + 0.0039239195, + 0.014203828, + -0.026758216, + -0.028840983, + -0.012545025, + -0.0031433105, + -0.0045834407, + 0.011900314, + 0.015894935, + 0.009939141, + -0.00011508435, + 0.0034437454, + -0.037741877, + -0.022321288, + 0.0056670997, + 0.00075549365, + -0.022929544, + 0.009485101, + -0.014200756, + -0.0059796055, + 0.020275906, + 0.001433886, + -0.001208137, + -0.011427832, + -0.0107517885, + -0.005964469, + -0.029295795, + -0.006275749, + -0.0011151528, + -0.03127443, + -0.0058606304, + -0.018791173, + -0.011199255, + -0.031105882, + -0.010776816, + -0.005030205, + 0.0024027857, + -0.015145399, + -0.028192908, + -0.021916984, + -0.015429617, + -0.01872927, + 0.0026340897, + -0.0021200764, + 0.009723887, + -0.011928485, + -0.0043030563, + -0.0038590366, + -0.009215697, + -0.018959709, + -0.010186115, + -0.016914755, + -0.01443688, + -0.014766458, + -0.010939248, + -0.009978854, + -0.009729638, + 0.005567948, + -0.014088042, + 0.00547588, + 0.0011733169, + -0.0028993129, + -0.0055039544, + -0.0021950067, + -0.025600774, + 0.024649898, + -0.004995292, + 0.010207654, + -0.0016519572, + -0.016188135, + -0.021369262, + -0.016619228, + -0.0092315925, + 0.0016547537, + -0.014063819, + 0.0029836437, + 0.006905757, + -0.015494356, + -0.005070535, + -0.028738707, + -0.007121629, + 0.0030327442, + -0.0007012985, + -7.046199e-05, + -0.008497122, + -0.031552095, + 0.002975031, + -0.0051619485, + -0.02086847, + -0.02109204, + -0.026072267, + -0.008321065, + -0.013879305, + 0.0012276949, + -0.009960028, + -0.015648197, + -0.02449444, + -0.021054888, + -0.035613168, + -0.021669636, + -0.0025186224, + -0.025893133, + -0.021740938, + -0.036176164, + -0.0098661985, + 0.008203177, + -0.010010889, + -0.029282466, + 0.0044599543, + -0.010196283, + -0.004749367, + 0.0046016695, + 0.004558372, + -0.010046321, + -0.0071837576, + -0.009185472, + -0.008121109, + -0.03485957, + -0.009333918, + -0.01438658, + -0.015235229, + -0.022138342, + -0.0168907, + -0.01835976, + -0.013801299, + 0.021740103, + -0.027072005, + 0.0015918335, + -0.0061692935, + -0.024731498, + -0.020447016, + 0.010255891, + 0.0016841176, + -0.012504703, + -4.725217e-05, + 0.0029189552, + -0.004023984, + -0.0043343473, + -0.0072164317, + -0.0024095266, + -0.0061858213, + -0.023117227, + -0.009483249, + -0.021326182, + -0.016824802, + -0.002855871, + -0.024946596, + 0.012278035, + -0.020298049, + -0.014755412, + 0.008742375, + -0.0030837564, + -0.025320677, + -0.012881548, + -0.015246433, + -0.0017242852, + -0.0014061625, + 0.0060543288, + -0.02702226, + -0.007774996, + -0.015772788, + 0.0009128239, + -0.015294427, + 0.0019448008, + -0.01727023, + 0.009030251, + 0.0029023911, + -0.020184774, + 0.011771538, + -0.009326738, + -0.016564839, + -0.0069558336, + -0.027242536, + -0.012746867, + -0.01205998, + 0.0045232465, + -0.015212565, + -0.0012234969, + -0.021709938, + -0.007936003, + -0.013476885, + -0.016400468, + -0.032060035, + -0.010422582, + -0.015938124, + 0.001591897, + 0.014984155, + 0.015528016, + 0.006296152, + 0.01596646, + -0.012668225, + -0.035271943, + -0.013727565, + -0.005659823, + -0.01410009, + -0.017018193, + -0.0026250428, + -0.010476916, + -0.02604944, + -0.034273673, + 0.005011244, + -0.021305557, + -0.013563527, + 0.015160544, + -0.02708171, + -0.01590062, + -0.013414874, + -0.003147459, + -0.0076585286, + -0.020447941, + 0.020486167, + -0.011126133, + -0.0036111767, + -0.019877573, + 0.01389151, + -0.02347838, + -0.018847512, + -0.0036361862, + 0.0043413052, + -0.0024716153, + -0.034450974, + -0.0009969433, + -0.030390933, + 0.014244951, + 0.010419748, + -0.0052325116, + 0.0009679328, + 0.0028222862, + 0.0038812063, + -0.023911186, + -0.013229832, + -0.029063763, + -0.009633085, + -0.016025767, + -0.008328805, + -0.0006679023, + -0.020991825, + -0.0022542074, + 0.0056716343, + -0.013628134, + -0.021696191, + -0.034062613, + -0.019197034, + -0.0013877415, + -0.005680725, + -0.007623694, + 0.0039836527, + -0.023672374, + -0.02645412, + -0.013689593, + 0.00074411544, + -0.012901284, + 0.0033766015, + 0.004075574, + -0.0021265093, + -0.0169123, + 0.014893857, + 0.01350488, + 0.002194121, + -0.021877661, + 0.003247119, + 0.004454356, + -0.010407963, + 0.005586406, + 0.014967661, + 0.020982957, + -0.026884785, + -0.005833133, + -0.0037522435, + -0.015593172, + 0.006005078, + 0.0028656356, + -0.0041308235, + 0.006772533, + 0.0038748435, + -0.0067409817, + -0.024363494, + -0.0065629357, + -0.0021935895, + 3.6353224e-05, + -0.01941767, + -0.006612314, + -0.02568021, + 0.015530425, + -0.038757227, + -0.0025049173, + 0.0027232987, + -0.019361924, + -0.017019415, + -0.010904797, + -0.0014031495, + -0.013409714, + -0.006168132, + -0.0103413, + -0.0015614232, + 0.0051027653, + -0.02700635, + 0.009253013, + -0.008719032, + -0.023858933, + 0.003225961, + 0.0035271095, + -0.014796563, + 0.00018475569, + -0.029901609, + -0.021477586, + -0.01673952, + -0.015788758, + -0.007860021, + -0.012945801, + -0.008773006, + -0.020935705, + -0.020895345, + -0.005802728, + -0.0058001704, + -0.013367265, + -0.016480684, + 0.009098468, + -0.0059179263, + 0.028015608, + -0.03420947, + 0.008566794, + -0.008967589, + -0.028023742, + -0.010578015, + -0.016841622, + 0.004508328, + -0.021260094, + 0.0029693544, + -0.011677638, + -0.006624239, + 0.00251026, + 0.00013202504, + -0.0034000431, + -0.006150521, + -0.033878002, + -0.015889542, + 0.0063971905, + -0.022499938, + 8.922326e-05, + -0.0047455477, + -0.031124197, + -0.019388504, + -0.007995491, + -0.012875521, + -0.020477511, + -0.025992977, + 0.0022607343, + -0.008596249, + -0.012794028, + -0.010388501, + 0.0064124204, + -0.01370374, + -0.010207815, + -0.022315903, + -0.0077148178, + -0.0063381507, + 0.0032227952, + -0.01221594, + -0.012974202, + -0.02768909, + -0.0015828556, + -0.028776703, + -0.007966044, + -0.014015354, + 0.008333823, + -0.014373098, + -0.016481496, + -0.0038380849, + -0.02506966, + -0.016397009, + 0.0065006483, + 0.0044223457, + -0.012658436, + -0.0002894325, + -0.017585564, + -0.009690384, + -0.030161936, + -0.01570442, + -0.03167449, + -0.019432683, + -0.0021442748, + -0.0091565335, + -0.01721808, + -0.011670728, + 0.008221009, + -0.011896511, + -0.013057171, + -0.009923746, + -0.017735222, + -0.008628041, + -0.030386308, + -0.0021229987, + -0.018700683, + -0.034299213, + -4.2437642e-07, + -0.03002315, + 0.010873215, + -0.019598411, + 0.0042817015, + -0.0079296855, + -0.010038282, + 0.0018638918, + 0.017993104, + -0.0030764225, + -0.012033838, + -0.0051574917, + 0.011659255, + -0.012015538, + -0.003430971, + 0.0070058606, + -0.009105828, + -0.024340525, + -0.006637964, + -0.0145055335, + -0.0108288145, + -0.010028668, + -0.02271294, + -0.02024313, + 0.0057414565, + -0.0188738, + -0.021769775, + -0.027559083, + -0.0046616276, + -0.03600863, + -0.011010006, + 0.002546007, + -0.034981865, + -0.020336362, + -0.0067966464, + -0.021331746, + -0.024953116, + -0.020168047, + 0.0063097277, + -0.008002958, + 0.0024301617, + -0.015579007, + 0.0020897824, + -0.018753292, + -0.0040169815, + -0.005370659, + -0.025402624, + -0.008488258, + -0.0042634048, + 0.009364866, + 0.0018063785, + -0.0061079953, + -0.020372445, + -0.007583548, + -0.017925924, + -0.025957834, + -0.026678367, + -0.01681909, + -0.024054507, + -0.01692923, + -0.007888722, + 0.0022649346, + -0.006964147, + -0.008111884, + -0.0041768253, + -0.010090947, + 0.0018341782, + 0.010533156, + -0.014381525, + -0.0112981135, + -0.008100188, + 0.0012252599, + -0.010744529, + 0.009484629, + -0.02085201, + -0.018793156, + -0.019437263, + -0.0132386545, + -0.011590735, + -0.032983717, + -0.013231808, + -0.0090206945, + -0.013082597, + 0.007959164, + -0.0004569696, + -0.02435396, + -0.013826626, + 0.006361195, + -0.023141272, + -0.021690499, + -0.007286966, + 0.00090293173, + -0.005552776, + 0.011326715, + 0.015796928, + -0.0048945323, + -0.013080359, + -0.012893482, + 0.0030458777, + -0.023131264, + -0.0038510398, + -0.004349888, + -0.01567998, + 0.001245894, + -0.012047968, + -0.0053187846, + 0.0028390307, + -0.012062908, + -0.015746228, + -0.019973598, + -0.02519227, + -0.005628017, + 0.0016986161, + 0.0028502315, + 0.0032946113, + -0.01360844, + -0.02663868, + -0.023805162, + -0.020618854, + -0.011830815, + -0.029578656, + -0.0040007443, + -0.023764454, + -0.016707009, + -0.008001582, + -0.0011085221, + -0.020646283, + -0.0066187805, + -0.0041780197, + 0.012803449, + 0.013744911, + -0.011780204, + -0.0069720596, + 0.0009368186, + 0.0035504338, + 0.000576931, + -0.017685914, + 0.012822962, + 0.004910167, + -0.0066783326, + -0.030019429, + 0.004899896, + 0.0005763832, + -0.031796195, + 0.008421359, + -0.004985545, + -0.007730646, + -0.010211935, + -0.02808595, + -0.021653388, + -0.0022656177, + -0.0053080255, + -0.017954556, + -0.00028630442, + -0.01372668, + -0.011819471, + -0.019363465, + -0.019094244, + -0.02641441, + 0.015270596, + 0.0036366035, + -0.043286055, + -0.017261297, + -0.005707383, + -0.010167318, + -0.021402303, + -0.016824862, + -0.002647942, + 0.0044480725, + 0.017526433, + -0.02705884, + -0.0062746704, + -0.0034020024, + 0.009494379, + -0.014037709, + 0.0017518953, + 0.0048110345, + -0.008427155, + -0.0150882285, + 0.008942222, + -0.017338954, + 0.0006776793, + -0.0018681614, + -0.013930882, + -0.018392304, + -0.0067017945, + -0.008697747, + -0.005789186, + -0.02751307, + -0.006732946, + 0.0031529206, + -0.025230933, + -0.025935236, + -0.016072933, + -0.0052102013, + 0.0010569263, + -0.009917413, + -0.022205675, + -0.0073072524, + -0.0043720743, + 0.0052901455, + -0.019601064, + -0.0051408787, + 0.008222526, + -0.0094403345, + -0.02653779, + -0.011151553, + -0.020732915, + -0.0065849735, + -0.012845914, + -0.003906817, + -0.0020662006, + -0.01809311, + -0.016307363, + -0.019776184, + -0.025658244, + -0.014255756, + -0.0049406798, + -0.00947563, + -0.024686133, + 0.0032060542, + -0.009130299, + -0.012994921, + -0.027670247, + -0.002398226, + -0.016505277, + 0.0010606525, + -0.013830774, + -0.0040756622, + -0.019275868, + -0.019891234, + -0.0048044636, + -0.011552407, + -0.021483654, + -0.013060103, + -0.024754256, + -0.00976466, + -0.00794403, + 0.0009848202, + -0.0004997551, + -0.026056217, + -0.00012884109, + 0.011756883, + -0.02370649, + -0.023606509, + -0.030966336, + 0.004134275, + -0.0044811536, + -0.024004059, + 0.010385972, + -0.0077379495, + -0.0003941715, + -0.012872005, + -0.0035367876, + -0.017421396, + 0.0044142394, + -0.02245707, + 0.009079404, + -0.027292805, + -0.0064672404, + -0.010703011, + -0.0036663648, + -0.007877767, + -0.0015121225, + -0.010089074, + 0.009428093, + -0.0009850683, + -0.012063629, + -0.0067175045, + -0.016305743, + 0.011163448, + 0.0178791, + -0.013678281, + -0.007884578, + 0.021938574, + -0.02208232, + -0.026280714, + -0.023054883, + 0.01159337, + -0.030391153, + -0.0046431925, + -0.019002173, + -0.016523862, + -0.0061213784, + -0.012221062, + -0.013244999, + -0.003775538, + -0.017922958, + 0.013131725, + 0.0054009706, + -0.0154679455, + -0.018332025, + -0.014148007, + -0.0003688161, + -0.018651057, + -0.003603915, + -0.020291079, + 0.002428938, + -0.028828997, + -0.008089095, + -0.041150127, + -0.033463307, + -0.032075252, + -0.01265561, + 0.0012286518, + 0.00088578433, + -0.012242869, + -0.017901378, + -0.00021843705, + -0.022150198, + -0.018157285, + -0.017238177, + -0.0069253654, + 0.0015062839, + -0.007427822, + -0.00778033, + 0.00094164204, + 0.014861918, + -0.0139448745, + -0.020674296, + -0.0063918624, + 0.0011009582, + -0.018984973, + -0.026712323, + 0.0021154329, + -0.007059805, + -0.0068393205, + -0.03693187, + -0.0044851145, + -0.0069862925, + -0.008734322, + -0.008033709, + -0.02223442, + -0.023135051, + -0.011794609, + -0.008177584, + -0.011918805, + -0.019240636, + -0.011470059, + 0.016910207, + -0.029062726, + -0.014557851, + -0.011634022, + -0.015812369, + -0.024770817, + 0.004710036, + -0.023707708, + 0.005943217, + -0.0031621878, + 0.0007206907, + -0.0189382, + -0.0019534999, + 0.001760494, + 0.00012897661, + -0.022181442, + -0.01160037, + -0.013355581, + -0.015546919, + -0.005012792, + -0.012671746, + 0.0045766192, + -0.021825828, + 0.0074600466, + -0.024181776, + -0.0150922015, + 0.017140802, + -0.011002898, + 0.011417341, + -0.010177209, + -0.021724476, + -0.01732433, + 0.008941225, + 0.001651396, + -0.001086132, + 0.0005619125, + -0.0034278578, + -0.008985005, + -0.011656918, + -0.024002567, + -0.033694267, + -0.005092446, + -0.010783031, + -0.006198444, + 0.008760656 ], "paletteEmbedding": [ - 0.01998394, 0.030380988, 0.02308955, 0.012017368, 0.008034084, - 0.0057386314, 0.0029705856, 0.0010126996, 6.7513305e-5, 0.0, - 0.029030722, 0.038482584, 0.034634326, 0.022144364, 0.019376319, - 0.016810814, 0.009654403, 0.002835559, 0.00027005322, 6.7513305e-5, - 0.020456532, 0.030988608, 0.028018022, 0.025452517, 0.029165749, - 0.02552003, 0.016135681, 0.004388365, 0.00040507983, 6.7513305e-5, - 0.007426464, 0.00978943, 0.014312821, 0.0149204405, 0.021941826, - 0.022414418, 0.012152395, 0.0034431787, 0.0006751331, 0.0, 0.0013502662, - 0.0029030722, 0.0042533386, 0.0067513306, 0.009586889, 0.010059482, - 0.0064812773, 0.0022954524, 0.0010126996, 0.00020253992, 6.7513305e-5, - 0.00054010644, 0.0011477262, 0.0012827528, 0.001755346, 0.002835559, - 0.0022279392, 0.0016878326, 0.0016878326, 0.00081015966, 0.0, 0.0, 0.0, - 0.00020253992, 0.00020253992, 0.0009451863, 0.0014177795, 0.0030380988, - 0.002633019, 0.0011477262, 0.0, 0.0, 0.0, 6.7513305e-5, 0.0, - 0.00027005322, 0.0012827528, 0.002633019, 0.0020929126, 0.00047259315, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.00013502661, 0.00033756654, 0.0006751331, - 0.00054010644, 0.00040507983, 0.0, 0.0, 0.0, 0.0, 0.0, 6.7513305e-5, - 0.0, 0.00013502661, 0.00020253992, 0.0, 0.027410403, 0.038280044, - 0.029840881, 0.014515361, 0.0054010646, 0.0039832853, 0.0016878326, - 0.00047259315, 6.7513305e-5, 0.0, 0.038752638, 0.051310115, 0.044558782, - 0.029503316, 0.016068168, 0.010262023, 0.006346251, 0.0018903726, - 0.00020253992, 0.0, 0.025385004, 0.043546084, 0.04266841, 0.033149034, - 0.022414418, 0.01795854, 0.008506677, 0.0029030722, 0.00047259315, - 6.7513305e-5, 0.010734616, 0.022144364, 0.024372304, 0.02207685, - 0.020659072, 0.014785415, 0.00816911, 0.0020929126, 0.0007426464, - 0.00020253992, 0.0029705856, 0.006953871, 0.010329536, 0.010599589, - 0.00938435, 0.007629004, 0.0047259317, 0.0030380988, 0.0018228593, - 0.0010802129, 0.0006751331, 0.000877673, 0.003308152, 0.0037807452, - 0.0025655057, 0.0031731254, 0.0041183117, 0.006008684, 0.005063498, - 0.0023629658, 0.0, 0.0, 0.0006751331, 0.00060761976, 0.0010802129, - 0.0014852928, 0.0038482586, 0.00837165, 0.008304137, 0.0031731254, 0.0, - 0.0, 0.0, 6.7513305e-5, 6.7513305e-5, 0.0006751331, 0.0027680455, - 0.0058736578, 0.0058061443, 0.003510692, 0.0, 0.0, 0.0, 0.0, - 0.00033756654, 0.00013502661, 0.0011477262, 0.002430479, 0.0018903726, - 0.0016878326, 0.0, 0.0, 0.0, 6.7513305e-5, 6.7513305e-5, 0.00013502661, - 0.00047259315, 0.00060761976, 0.00054010644, 0.00033756654, 0.0197814, - 0.025790084, 0.022414418, 0.011477263, 0.0030380988, 0.0015528061, - 0.00033756654, 0.00027005322, 0.0, 0.0, 0.028153049, 0.043411057, - 0.040913064, 0.024169764, 0.011409749, 0.004590905, 0.0014177795, - 0.00047259315, 0.0, 0.0, 0.022751985, 0.040575497, 0.043141004, - 0.036052108, 0.017823514, 0.009586889, 0.0039832853, 0.0014177795, - 0.00013502661, 6.7513305e-5, 0.012219909, 0.025047436, 0.03936026, - 0.03490438, 0.0207941, 0.010802129, 0.0039832853, 0.0018903726, - 0.00081015966, 0.00047259315, 0.004590905, 0.012557475, 0.017823514, - 0.020253992, 0.016405733, 0.00897927, 0.005671118, 0.0041183117, - 0.0029030722, 0.000877673, 0.0011477262, 0.002430479, 0.0070888973, - 0.0093168365, 0.009586889, 0.0057386314, 0.0072239237, 0.009249323, - 0.007291437, 0.0040507982, 6.7513305e-5, 0.00060761976, 0.0010802129, - 0.0021604258, 0.0023629658, 0.0042533386, 0.007966571, 0.012895042, - 0.012017368, 0.0071564107, 0.0, 0.0, 0.0, 0.00047259315, 0.0007426464, - 0.0022954524, 0.0060761976, 0.011274722, 0.010802129, 0.005536091, 0.0, - 0.0, 0.0, 6.7513305e-5, 0.00027005322, 0.0007426464, 0.0018903726, - 0.004995985, 0.004590905, 0.0029705856, 0.0, 6.7513305e-5, 0.0, 0.0, - 0.0, 0.00013502661, 0.00047259315, 0.000877673, 0.0012152395, - 0.0011477262, 0.0064812773, 0.010599589, 0.011409749, 0.004860958, - 0.0022279392, 0.0007426464, 0.00013502661, 6.7513305e-5, 6.7513305e-5, - 0.0, 0.013840228, 0.021874312, 0.02450733, 0.017080868, 0.00816911, - 0.002430479, 0.00040507983, 0.00013502661, 0.0, 0.0, 0.013097581, - 0.028153049, 0.040980577, 0.033216547, 0.018836213, 0.0062787374, - 0.0020929126, 0.00054010644, 0.00027005322, 0.0, 0.0093168365, - 0.023427118, 0.042195816, 0.037604913, 0.026802784, 0.013975254, - 0.0032406386, 0.0014852928, 0.00027005322, 0.00027005322, 0.0047259317, - 0.014650388, 0.024642358, 0.03125866, 0.022751985, 0.014380335, - 0.0062787374, 0.0034431787, 0.003510692, 0.0012827528, 0.0011477262, - 0.0047259317, 0.009856943, 0.014380335, 0.013772715, 0.010262023, - 0.008034084, 0.00816911, 0.007426464, 0.0030380988, 0.00013502661, - 0.0010126996, 0.0032406386, 0.004995985, 0.0056036045, 0.006008684, - 0.00837165, 0.014380335, 0.014852928, 0.0076965173, 0.0, 0.00013502661, - 0.00060761976, 0.0012152395, 0.001755346, 0.0029030722, 0.0062112245, - 0.0149204405, 0.015595574, 0.008034084, 0.0, 6.7513305e-5, - 0.00020253992, 0.00013502661, 0.00060761976, 0.0012827528, 0.0027680455, - 0.007493977, 0.009249323, 0.0060761976, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.7513305e-5, 0.0010802129, 0.0018903726, 0.0029030722, 0.0013502662, - 0.0016203193, 0.0031056122, 0.003713232, 0.002835559, 0.0011477262, - 0.00047259315, 0.0, 0.0, 0.0, 0.0, 0.004185825, 0.010126996, - 0.013232608, 0.010329536, 0.005671118, 0.0014177795, 0.00047259315, 0.0, - 0.0, 0.0, 0.0072239237, 0.016810814, 0.02572257, 0.022751985, - 0.014717901, 0.0051310114, 0.0012152395, 0.00033756654, 6.7513305e-5, - 6.7513305e-5, 0.0072239237, 0.020253992, 0.035782054, 0.03692978, - 0.026667757, 0.011814829, 0.003713232, 0.0011477262, 0.00040507983, - 0.00020253992, 0.0054010646, 0.014785415, 0.027882995, 0.03139369, - 0.028490616, 0.018836213, 0.008439164, 0.0034431787, 0.001755346, - 0.0009451863, 0.0021604258, 0.005941171, 0.016405733, 0.023967223, - 0.022887012, 0.018903727, 0.013030068, 0.010126996, 0.006818844, - 0.0030380988, 0.00047259315, 0.0018903726, 0.006008684, 0.009654403, - 0.015460547, 0.014245308, 0.013637688, 0.014312821, 0.012219909, - 0.0058061443, 0.0, 0.0007426464, 0.0018903726, 0.0033756653, - 0.005468578, 0.007291437, 0.010194509, 0.014650388, 0.013502661, - 0.00918181, 6.7513305e-5, 0.00013502661, 0.00033756654, 0.0006751331, - 0.0012152395, 0.0020253991, 0.0043208515, 0.009586889, 0.00877673, - 0.0071564107, 0.0, 0.0, 6.7513305e-5, 6.7513305e-5, 0.00020253992, - 0.00081015966, 0.0016203193, 0.002835559, 0.0041183117, 0.0016203193, - 0.00027005322, 0.0011477262, 0.000877673, 0.0007426464, 0.00040507983, - 0.00013502661, 0.0, 0.0, 0.0, 0.0, 0.0014852928, 0.004590905, - 0.006008684, 0.0038482586, 0.002430479, 0.0009451863, 0.00013502661, - 0.0, 0.0, 0.0, 0.0029705856, 0.010059482, 0.015460547, 0.012489961, - 0.0072239237, 0.0040507982, 0.0006751331, 0.00013502661, 6.7513305e-5, - 0.0, 0.0044558784, 0.014245308, 0.026060136, 0.027005322, 0.021604259, - 0.009654403, 0.0047259317, 0.0016878326, 0.00027005322, 0.0, - 0.0037807452, 0.012557475, 0.026195163, 0.034094222, 0.030043421, - 0.018093565, 0.010802129, 0.004995985, 0.0022954524, 0.0007426464, - 0.0014177795, 0.0062787374, 0.018431133, 0.026060136, 0.03078607, - 0.029705856, 0.0207941, 0.0111396955, 0.006143711, 0.002430479, - 0.0006751331, 0.0031056122, 0.008236623, 0.016473247, 0.024169764, - 0.026667757, 0.026060136, 0.018498646, 0.011342236, 0.0068863574, 0.0, - 0.0010802129, 0.0034431787, 0.0071564107, 0.012017368, 0.014717901, - 0.022346905, 0.022954525, 0.021266691, 0.01039705, 0.0, 0.00020253992, - 0.0010126996, 0.0015528061, 0.0029030722, 0.006008684, 0.010262023, - 0.016270706, 0.016473247, 0.012557475, 0.0, 0.0, 0.00020253992, - 0.00054010644, 0.0009451863, 0.0018903726, 0.0042533386, 0.008034084, - 0.009114296, 0.005941171, 0.00013502661, 0.00013502661, 0.00054010644, - 0.0006751331, 0.00027005322, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00047259315, - 0.0016878326, 0.001755346, 0.002835559, 0.00081015966, 0.00047259315, - 0.00020253992, 0.0, 0.0, 0.0, 0.0012152395, 0.0037807452, 0.007021384, - 0.0064812773, 0.0043208515, 0.001957886, 0.0010126996, 0.00013502661, - 6.7513305e-5, 0.0, 0.0025655057, 0.006818844, 0.015258008, 0.019038754, - 0.013300122, 0.008304137, 0.0037807452, 0.0014852928, 0.00033756654, - 0.0, 0.001957886, 0.0081015965, 0.020929126, 0.025047436, 0.023022037, - 0.018431133, 0.011477263, 0.005671118, 0.0031056122, 0.0006751331, - 0.0010126996, 0.0070888973, 0.016810814, 0.027815484, 0.031731255, - 0.030718556, 0.028625643, 0.019848913, 0.011004669, 0.003510692, - 0.0009451863, 0.0032406386, 0.011409749, 0.018701186, 0.029975908, - 0.036862265, 0.044018675, 0.04165571, 0.02714035, 0.013502661, - 0.00020253992, 0.0009451863, 0.004388365, 0.008304137, 0.017080868, - 0.029975908, 0.047866937, 0.05799393, 0.051310115, 0.033216547, 0.0, - 0.00047259315, 0.0010126996, 0.0027680455, 0.0064812773, 0.014245308, - 0.029840881, 0.054753292, 0.059411712, 0.045368943, 6.7513305e-5, 0.0, - 0.00020253992, 0.00040507983, 0.0014177795, 0.0045233914, 0.0149204405, - 0.034364272, 0.040710524, 0.035647027, 0.0, 0.00013502661, 6.7513305e-5, - 6.7513305e-5, 6.7513305e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00013502661, - 0.00020253992, 0.00060761976, 0.0006751331, 0.00013502661, 6.7513305e-5, - 0.00013502661, 0.0, 0.0, 0.0, 0.00040507983, 0.0015528061, 0.0021604258, - 0.0027680455, 0.001755346, 0.00060761976, 0.00027005322, 0.00020253992, - 6.7513305e-5, 0.0, 0.000877673, 0.0032406386, 0.0051310114, 0.007899057, - 0.0072239237, 0.0042533386, 0.0020253991, 0.0012152395, 0.00020253992, - 0.00013502661, 0.0012152395, 0.004388365, 0.008506677, 0.014110281, - 0.017283406, 0.011612289, 0.00877673, 0.0064137643, 0.0024979925, - 0.0010802129, 0.0012152395, 0.0042533386, 0.012219909, 0.018836213, - 0.023967223, 0.028490616, 0.024574844, 0.021199178, 0.015325521, - 0.006616304, 0.0011477262, 0.002430479, 0.0087092165, 0.018026054, - 0.02430479, 0.035782054, 0.054550752, 0.059074145, 0.055158373, - 0.030921094, 6.7513305e-5, 0.0016203193, 0.0039832853, 0.00918181, - 0.018161079, 0.038280044, 0.0730494, 0.11281474, 0.12955804, 0.08540434, - 6.7513305e-5, 0.00027005322, 0.0015528061, 0.002835559, 0.0072239237, - 0.025249977, 0.066838175, 0.13381137, 0.17668232, 0.13732207, 0.0, - 6.7513305e-5, 0.00013502661, 0.00081015966, 0.0013502662, 0.010059482, - 0.0344993, 0.09512625, 0.14501858, 0.119363524, 0.0, 0.0, 0.0, - 6.7513305e-5, 6.7513305e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00013502661, - 0.0, 6.7513305e-5, 0.00013502661, 6.7513305e-5, 0.0, 0.0, 0.0, 0.0, - 6.7513305e-5, 0.00033756654, 0.0012827528, 0.0009451863, 0.00033756654, - 0.00027005322, 0.00020253992, 0.0, 0.0, 0.0, 0.00040507983, - 0.0011477262, 0.0020929126, 0.0027680455, 0.0024979925, 0.0010802129, - 0.00054010644, 0.00020253992, 0.00020253992, 0.0, 0.00047259315, - 0.0020253991, 0.004590905, 0.006616304, 0.006953871, 0.0062112245, - 0.0047934446, 0.0043208515, 0.0014177795, 0.000877673, 0.0007426464, - 0.0020929126, 0.006008684, 0.009856943, 0.013975254, 0.014785415, - 0.018431133, 0.017215893, 0.013300122, 0.007493977, 0.00047259315, - 0.0022279392, 0.0057386314, 0.00938435, 0.015122981, 0.027950509, - 0.040170416, 0.06305743, 0.064542726, 0.04165571, 6.7513305e-5, - 0.00047259315, 0.0020929126, 0.0070888973, 0.012152395, 0.032338873, - 0.07115903, 0.12780268, 0.18201588, 0.13732207, 0.0, 0.00027005322, - 0.0006751331, 0.0016878326, 0.007021384, 0.024574844, 0.078653, - 0.18849716, 0.28126043, 0.23460874, 0.0, 0.0, 0.00040507983, - 0.00060761976, 0.0030380988, 0.013772715, 0.053740595, 0.1491369, - 0.2476388, 0.21219432, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 6.7513305e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.7513305e-5, 0.00013502661, 0.00027005322, 0.0, 6.7513305e-5, 0.0, 0.0, - 0.0, 0.0, 0.00013502661, 0.00027005322, 0.00060761976, 0.0010126996, - 0.00054010644, 6.7513305e-5, 0.00013502661, 0.0, 0.00020253992, 0.0, - 6.7513305e-5, 0.0006751331, 0.0016878326, 0.0020253991, 0.0020929126, - 0.0023629658, 0.0011477262, 0.0014177795, 0.0010802129, 0.0007426464, - 0.00013502661, 0.0010802129, 0.0020929126, 0.004185825, 0.0047934446, - 0.005468578, 0.0073589506, 0.009586889, 0.00938435, 0.0062787374, - 6.7513305e-5, 0.00081015966, 0.0023629658, 0.0058061443, 0.0072239237, - 0.011814829, 0.020389019, 0.03996788, 0.04449127, 0.034229245, - 6.7513305e-5, 0.00054010644, 0.000877673, 0.0034431787, 0.0071564107, - 0.01694584, 0.044558782, 0.10005472, 0.14670642, 0.12300925, 0.0, - 0.00020253992, 0.00040507983, 0.0012827528, 0.0039832853, 0.014177795, - 0.053538054, 0.15190494, 0.24142759, 0.21185675, 0.0, 0.0, 0.0, - 0.00040507983, 0.0015528061, 0.008236623, 0.042195816, 0.1288829, - 0.21138416, 0.1943033 + 0.01998394, + 0.030380988, + 0.02308955, + 0.012017368, + 0.008034084, + 0.0057386314, + 0.0029705856, + 0.0010126996, + 6.7513305e-05, + 0.0, + 0.029030722, + 0.038482584, + 0.034634326, + 0.022144364, + 0.019376319, + 0.016810814, + 0.009654403, + 0.002835559, + 0.00027005322, + 6.7513305e-05, + 0.020456532, + 0.030988608, + 0.028018022, + 0.025452517, + 0.029165749, + 0.02552003, + 0.016135681, + 0.004388365, + 0.00040507983, + 6.7513305e-05, + 0.007426464, + 0.00978943, + 0.014312821, + 0.0149204405, + 0.021941826, + 0.022414418, + 0.012152395, + 0.0034431787, + 0.0006751331, + 0.0, + 0.0013502662, + 0.0029030722, + 0.0042533386, + 0.0067513306, + 0.009586889, + 0.010059482, + 0.0064812773, + 0.0022954524, + 0.0010126996, + 0.00020253992, + 6.7513305e-05, + 0.00054010644, + 0.0011477262, + 0.0012827528, + 0.001755346, + 0.002835559, + 0.0022279392, + 0.0016878326, + 0.0016878326, + 0.00081015966, + 0.0, + 0.0, + 0.0, + 0.00020253992, + 0.00020253992, + 0.0009451863, + 0.0014177795, + 0.0030380988, + 0.002633019, + 0.0011477262, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.0, + 0.00027005322, + 0.0012827528, + 0.002633019, + 0.0020929126, + 0.00047259315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00013502661, + 0.00033756654, + 0.0006751331, + 0.00054010644, + 0.00040507983, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.0, + 0.00013502661, + 0.00020253992, + 0.0, + 0.027410403, + 0.038280044, + 0.029840881, + 0.014515361, + 0.0054010646, + 0.0039832853, + 0.0016878326, + 0.00047259315, + 6.7513305e-05, + 0.0, + 0.038752638, + 0.051310115, + 0.044558782, + 0.029503316, + 0.016068168, + 0.010262023, + 0.006346251, + 0.0018903726, + 0.00020253992, + 0.0, + 0.025385004, + 0.043546084, + 0.04266841, + 0.033149034, + 0.022414418, + 0.01795854, + 0.008506677, + 0.0029030722, + 0.00047259315, + 6.7513305e-05, + 0.010734616, + 0.022144364, + 0.024372304, + 0.02207685, + 0.020659072, + 0.014785415, + 0.00816911, + 0.0020929126, + 0.0007426464, + 0.00020253992, + 0.0029705856, + 0.006953871, + 0.010329536, + 0.010599589, + 0.00938435, + 0.007629004, + 0.0047259317, + 0.0030380988, + 0.0018228593, + 0.0010802129, + 0.0006751331, + 0.000877673, + 0.003308152, + 0.0037807452, + 0.0025655057, + 0.0031731254, + 0.0041183117, + 0.006008684, + 0.005063498, + 0.0023629658, + 0.0, + 0.0, + 0.0006751331, + 0.00060761976, + 0.0010802129, + 0.0014852928, + 0.0038482586, + 0.00837165, + 0.008304137, + 0.0031731254, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 6.7513305e-05, + 0.0006751331, + 0.0027680455, + 0.0058736578, + 0.0058061443, + 0.003510692, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00033756654, + 0.00013502661, + 0.0011477262, + 0.002430479, + 0.0018903726, + 0.0016878326, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 6.7513305e-05, + 0.00013502661, + 0.00047259315, + 0.00060761976, + 0.00054010644, + 0.00033756654, + 0.0197814, + 0.025790084, + 0.022414418, + 0.011477263, + 0.0030380988, + 0.0015528061, + 0.00033756654, + 0.00027005322, + 0.0, + 0.0, + 0.028153049, + 0.043411057, + 0.040913064, + 0.024169764, + 0.011409749, + 0.004590905, + 0.0014177795, + 0.00047259315, + 0.0, + 0.0, + 0.022751985, + 0.040575497, + 0.043141004, + 0.036052108, + 0.017823514, + 0.009586889, + 0.0039832853, + 0.0014177795, + 0.00013502661, + 6.7513305e-05, + 0.012219909, + 0.025047436, + 0.03936026, + 0.03490438, + 0.0207941, + 0.010802129, + 0.0039832853, + 0.0018903726, + 0.00081015966, + 0.00047259315, + 0.004590905, + 0.012557475, + 0.017823514, + 0.020253992, + 0.016405733, + 0.00897927, + 0.005671118, + 0.0041183117, + 0.0029030722, + 0.000877673, + 0.0011477262, + 0.002430479, + 0.0070888973, + 0.0093168365, + 0.009586889, + 0.0057386314, + 0.0072239237, + 0.009249323, + 0.007291437, + 0.0040507982, + 6.7513305e-05, + 0.00060761976, + 0.0010802129, + 0.0021604258, + 0.0023629658, + 0.0042533386, + 0.007966571, + 0.012895042, + 0.012017368, + 0.0071564107, + 0.0, + 0.0, + 0.0, + 0.00047259315, + 0.0007426464, + 0.0022954524, + 0.0060761976, + 0.011274722, + 0.010802129, + 0.005536091, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.00027005322, + 0.0007426464, + 0.0018903726, + 0.004995985, + 0.004590905, + 0.0029705856, + 0.0, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.00013502661, + 0.00047259315, + 0.000877673, + 0.0012152395, + 0.0011477262, + 0.0064812773, + 0.010599589, + 0.011409749, + 0.004860958, + 0.0022279392, + 0.0007426464, + 0.00013502661, + 6.7513305e-05, + 6.7513305e-05, + 0.0, + 0.013840228, + 0.021874312, + 0.02450733, + 0.017080868, + 0.00816911, + 0.002430479, + 0.00040507983, + 0.00013502661, + 0.0, + 0.0, + 0.013097581, + 0.028153049, + 0.040980577, + 0.033216547, + 0.018836213, + 0.0062787374, + 0.0020929126, + 0.00054010644, + 0.00027005322, + 0.0, + 0.0093168365, + 0.023427118, + 0.042195816, + 0.037604913, + 0.026802784, + 0.013975254, + 0.0032406386, + 0.0014852928, + 0.00027005322, + 0.00027005322, + 0.0047259317, + 0.014650388, + 0.024642358, + 0.03125866, + 0.022751985, + 0.014380335, + 0.0062787374, + 0.0034431787, + 0.003510692, + 0.0012827528, + 0.0011477262, + 0.0047259317, + 0.009856943, + 0.014380335, + 0.013772715, + 0.010262023, + 0.008034084, + 0.00816911, + 0.007426464, + 0.0030380988, + 0.00013502661, + 0.0010126996, + 0.0032406386, + 0.004995985, + 0.0056036045, + 0.006008684, + 0.00837165, + 0.014380335, + 0.014852928, + 0.0076965173, + 0.0, + 0.00013502661, + 0.00060761976, + 0.0012152395, + 0.001755346, + 0.0029030722, + 0.0062112245, + 0.0149204405, + 0.015595574, + 0.008034084, + 0.0, + 6.7513305e-05, + 0.00020253992, + 0.00013502661, + 0.00060761976, + 0.0012827528, + 0.0027680455, + 0.007493977, + 0.009249323, + 0.0060761976, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.0010802129, + 0.0018903726, + 0.0029030722, + 0.0013502662, + 0.0016203193, + 0.0031056122, + 0.003713232, + 0.002835559, + 0.0011477262, + 0.00047259315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004185825, + 0.010126996, + 0.013232608, + 0.010329536, + 0.005671118, + 0.0014177795, + 0.00047259315, + 0.0, + 0.0, + 0.0, + 0.0072239237, + 0.016810814, + 0.02572257, + 0.022751985, + 0.014717901, + 0.0051310114, + 0.0012152395, + 0.00033756654, + 6.7513305e-05, + 6.7513305e-05, + 0.0072239237, + 0.020253992, + 0.035782054, + 0.03692978, + 0.026667757, + 0.011814829, + 0.003713232, + 0.0011477262, + 0.00040507983, + 0.00020253992, + 0.0054010646, + 0.014785415, + 0.027882995, + 0.03139369, + 0.028490616, + 0.018836213, + 0.008439164, + 0.0034431787, + 0.001755346, + 0.0009451863, + 0.0021604258, + 0.005941171, + 0.016405733, + 0.023967223, + 0.022887012, + 0.018903727, + 0.013030068, + 0.010126996, + 0.006818844, + 0.0030380988, + 0.00047259315, + 0.0018903726, + 0.006008684, + 0.009654403, + 0.015460547, + 0.014245308, + 0.013637688, + 0.014312821, + 0.012219909, + 0.0058061443, + 0.0, + 0.0007426464, + 0.0018903726, + 0.0033756653, + 0.005468578, + 0.007291437, + 0.010194509, + 0.014650388, + 0.013502661, + 0.00918181, + 6.7513305e-05, + 0.00013502661, + 0.00033756654, + 0.0006751331, + 0.0012152395, + 0.0020253991, + 0.0043208515, + 0.009586889, + 0.00877673, + 0.0071564107, + 0.0, + 0.0, + 6.7513305e-05, + 6.7513305e-05, + 0.00020253992, + 0.00081015966, + 0.0016203193, + 0.002835559, + 0.0041183117, + 0.0016203193, + 0.00027005322, + 0.0011477262, + 0.000877673, + 0.0007426464, + 0.00040507983, + 0.00013502661, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0014852928, + 0.004590905, + 0.006008684, + 0.0038482586, + 0.002430479, + 0.0009451863, + 0.00013502661, + 0.0, + 0.0, + 0.0, + 0.0029705856, + 0.010059482, + 0.015460547, + 0.012489961, + 0.0072239237, + 0.0040507982, + 0.0006751331, + 0.00013502661, + 6.7513305e-05, + 0.0, + 0.0044558784, + 0.014245308, + 0.026060136, + 0.027005322, + 0.021604259, + 0.009654403, + 0.0047259317, + 0.0016878326, + 0.00027005322, + 0.0, + 0.0037807452, + 0.012557475, + 0.026195163, + 0.034094222, + 0.030043421, + 0.018093565, + 0.010802129, + 0.004995985, + 0.0022954524, + 0.0007426464, + 0.0014177795, + 0.0062787374, + 0.018431133, + 0.026060136, + 0.03078607, + 0.029705856, + 0.0207941, + 0.0111396955, + 0.006143711, + 0.002430479, + 0.0006751331, + 0.0031056122, + 0.008236623, + 0.016473247, + 0.024169764, + 0.026667757, + 0.026060136, + 0.018498646, + 0.011342236, + 0.0068863574, + 0.0, + 0.0010802129, + 0.0034431787, + 0.0071564107, + 0.012017368, + 0.014717901, + 0.022346905, + 0.022954525, + 0.021266691, + 0.01039705, + 0.0, + 0.00020253992, + 0.0010126996, + 0.0015528061, + 0.0029030722, + 0.006008684, + 0.010262023, + 0.016270706, + 0.016473247, + 0.012557475, + 0.0, + 0.0, + 0.00020253992, + 0.00054010644, + 0.0009451863, + 0.0018903726, + 0.0042533386, + 0.008034084, + 0.009114296, + 0.005941171, + 0.00013502661, + 0.00013502661, + 0.00054010644, + 0.0006751331, + 0.00027005322, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00047259315, + 0.0016878326, + 0.001755346, + 0.002835559, + 0.00081015966, + 0.00047259315, + 0.00020253992, + 0.0, + 0.0, + 0.0, + 0.0012152395, + 0.0037807452, + 0.007021384, + 0.0064812773, + 0.0043208515, + 0.001957886, + 0.0010126996, + 0.00013502661, + 6.7513305e-05, + 0.0, + 0.0025655057, + 0.006818844, + 0.015258008, + 0.019038754, + 0.013300122, + 0.008304137, + 0.0037807452, + 0.0014852928, + 0.00033756654, + 0.0, + 0.001957886, + 0.0081015965, + 0.020929126, + 0.025047436, + 0.023022037, + 0.018431133, + 0.011477263, + 0.005671118, + 0.0031056122, + 0.0006751331, + 0.0010126996, + 0.0070888973, + 0.016810814, + 0.027815484, + 0.031731255, + 0.030718556, + 0.028625643, + 0.019848913, + 0.011004669, + 0.003510692, + 0.0009451863, + 0.0032406386, + 0.011409749, + 0.018701186, + 0.029975908, + 0.036862265, + 0.044018675, + 0.04165571, + 0.02714035, + 0.013502661, + 0.00020253992, + 0.0009451863, + 0.004388365, + 0.008304137, + 0.017080868, + 0.029975908, + 0.047866937, + 0.05799393, + 0.051310115, + 0.033216547, + 0.0, + 0.00047259315, + 0.0010126996, + 0.0027680455, + 0.0064812773, + 0.014245308, + 0.029840881, + 0.054753292, + 0.059411712, + 0.045368943, + 6.7513305e-05, + 0.0, + 0.00020253992, + 0.00040507983, + 0.0014177795, + 0.0045233914, + 0.0149204405, + 0.034364272, + 0.040710524, + 0.035647027, + 0.0, + 0.00013502661, + 6.7513305e-05, + 6.7513305e-05, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00013502661, + 0.00020253992, + 0.00060761976, + 0.0006751331, + 0.00013502661, + 6.7513305e-05, + 0.00013502661, + 0.0, + 0.0, + 0.0, + 0.00040507983, + 0.0015528061, + 0.0021604258, + 0.0027680455, + 0.001755346, + 0.00060761976, + 0.00027005322, + 0.00020253992, + 6.7513305e-05, + 0.0, + 0.000877673, + 0.0032406386, + 0.0051310114, + 0.007899057, + 0.0072239237, + 0.0042533386, + 0.0020253991, + 0.0012152395, + 0.00020253992, + 0.00013502661, + 0.0012152395, + 0.004388365, + 0.008506677, + 0.014110281, + 0.017283406, + 0.011612289, + 0.00877673, + 0.0064137643, + 0.0024979925, + 0.0010802129, + 0.0012152395, + 0.0042533386, + 0.012219909, + 0.018836213, + 0.023967223, + 0.028490616, + 0.024574844, + 0.021199178, + 0.015325521, + 0.006616304, + 0.0011477262, + 0.002430479, + 0.0087092165, + 0.018026054, + 0.02430479, + 0.035782054, + 0.054550752, + 0.059074145, + 0.055158373, + 0.030921094, + 6.7513305e-05, + 0.0016203193, + 0.0039832853, + 0.00918181, + 0.018161079, + 0.038280044, + 0.0730494, + 0.11281474, + 0.12955804, + 0.08540434, + 6.7513305e-05, + 0.00027005322, + 0.0015528061, + 0.002835559, + 0.0072239237, + 0.025249977, + 0.066838175, + 0.13381137, + 0.17668232, + 0.13732207, + 0.0, + 6.7513305e-05, + 0.00013502661, + 0.00081015966, + 0.0013502662, + 0.010059482, + 0.0344993, + 0.09512625, + 0.14501858, + 0.119363524, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00013502661, + 0.0, + 6.7513305e-05, + 0.00013502661, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.00033756654, + 0.0012827528, + 0.0009451863, + 0.00033756654, + 0.00027005322, + 0.00020253992, + 0.0, + 0.0, + 0.0, + 0.00040507983, + 0.0011477262, + 0.0020929126, + 0.0027680455, + 0.0024979925, + 0.0010802129, + 0.00054010644, + 0.00020253992, + 0.00020253992, + 0.0, + 0.00047259315, + 0.0020253991, + 0.004590905, + 0.006616304, + 0.006953871, + 0.0062112245, + 0.0047934446, + 0.0043208515, + 0.0014177795, + 0.000877673, + 0.0007426464, + 0.0020929126, + 0.006008684, + 0.009856943, + 0.013975254, + 0.014785415, + 0.018431133, + 0.017215893, + 0.013300122, + 0.007493977, + 0.00047259315, + 0.0022279392, + 0.0057386314, + 0.00938435, + 0.015122981, + 0.027950509, + 0.040170416, + 0.06305743, + 0.064542726, + 0.04165571, + 6.7513305e-05, + 0.00047259315, + 0.0020929126, + 0.0070888973, + 0.012152395, + 0.032338873, + 0.07115903, + 0.12780268, + 0.18201588, + 0.13732207, + 0.0, + 0.00027005322, + 0.0006751331, + 0.0016878326, + 0.007021384, + 0.024574844, + 0.078653, + 0.18849716, + 0.28126043, + 0.23460874, + 0.0, + 0.0, + 0.00040507983, + 0.00060761976, + 0.0030380988, + 0.013772715, + 0.053740595, + 0.1491369, + 0.2476388, + 0.21219432, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.7513305e-05, + 0.00013502661, + 0.00027005322, + 0.0, + 6.7513305e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00013502661, + 0.00027005322, + 0.00060761976, + 0.0010126996, + 0.00054010644, + 6.7513305e-05, + 0.00013502661, + 0.0, + 0.00020253992, + 0.0, + 6.7513305e-05, + 0.0006751331, + 0.0016878326, + 0.0020253991, + 0.0020929126, + 0.0023629658, + 0.0011477262, + 0.0014177795, + 0.0010802129, + 0.0007426464, + 0.00013502661, + 0.0010802129, + 0.0020929126, + 0.004185825, + 0.0047934446, + 0.005468578, + 0.0073589506, + 0.009586889, + 0.00938435, + 0.0062787374, + 6.7513305e-05, + 0.00081015966, + 0.0023629658, + 0.0058061443, + 0.0072239237, + 0.011814829, + 0.020389019, + 0.03996788, + 0.04449127, + 0.034229245, + 6.7513305e-05, + 0.00054010644, + 0.000877673, + 0.0034431787, + 0.0071564107, + 0.01694584, + 0.044558782, + 0.10005472, + 0.14670642, + 0.12300925, + 0.0, + 0.00020253992, + 0.00040507983, + 0.0012827528, + 0.0039832853, + 0.014177795, + 0.053538054, + 0.15190494, + 0.24142759, + 0.21185675, + 0.0, + 0.0, + 0.0, + 0.00040507983, + 0.0015528061, + 0.008236623, + 0.042195816, + 0.1288829, + 0.21138416, + 0.1943033 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-red.json b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-red.json index a0dfc0d79..841d73a4f 100644 --- a/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-red.json +++ b/common/search/src/test/resources/test_documents/images.examples.color-filter-tests.slightly-less-red.json @@ -293,19 +293,35 @@ "contributors.agent.label": [ "North Warwickshire NHS Trust. Health Promotion Service" ], - "genres.concepts.label": ["Ephemera", "Leaflets"], + "genres.concepts.label": [ + "Ephemera", + "Leaflets" + ], "id": "bac9xh3t", "sourceIdentifier.value": "b28669563", - "identifiers.value": ["b28669563", "2866956", "digephemera"], + "identifiers.value": [ + "b28669563", + "2866956", + "digephemera" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["m5ffcnqy"], - "items.identifiers.value": ["i15100856", "1510085"], - "languages.label": ["English"], + "items.id": [ + "m5ffcnqy" + ], + "items.identifiers.value": [ + "i15100856", + "1510085" + ], + "languages.label": [ + "English" + ], "notes.contents": [], "partOf.title": [], "physicalDescription": "1 folded sheet (6 unnumbered pages) : monochrome, map ; 21 x 30 cm folded to 21 x 10 cm", - "production.label": ["[1998?]"], + "production.label": [ + "[1998?]" + ], "subjects.concepts.label": [ "HIV", "HIV Seropositivity", @@ -347,12 +363,21 @@ ] }, "filterableValues": { - "locations.license.id": ["inc", "inc"], + "locations.license.id": [ + "inc", + "inc" + ], "source.contributors.agent.label": [ "North Warwickshire NHS Trust. Health Promotion Service" ], - "source.genres.label": ["Ephemera", "Leaflets"], - "source.genres.concepts.id": ["ucmbnwkq", "h7ke4a5n"], + "source.genres.label": [ + "Ephemera", + "Leaflets" + ], + "source.genres.concepts.id": [ + "ucmbnwkq", + "h7ke4a5n" + ], "source.subjects.label": [ "HIV", "HIV Seropositivity - transmission", @@ -365,1056 +390,5110 @@ "Bedworth (England)", "Warwickshire (England)" ], - "source.production.dates.range.from": [883612800000] + "source.production.dates.range.from": [ + 883612800000 + ] }, "vectorValues": { - "features1": [ - -0.48856908, -1.6890776, -1.9842324, -0.8511352, -0.40949214, -1.430493, - -1.3390155, 0.36679935, 0.36317658, 0.7276662, -1.2477988, -0.18672925, - -1.2738702, -1.5908818, -1.4737388, 0.9731256, -1.4471406, -1.4148146, - -0.1677977, 0.908762, -1.3194411, -1.0394561, -0.98279536, -0.05850859, - -0.76902556, -0.9726472, -0.77775604, 0.45347208, -0.4592137, - -0.8032813, -0.8474828, -0.36831707, -1.8926882, -1.4194956, 0.99198806, - -1.3863431, 2.3412411, -0.2106981, -2.6823776, -0.2634952, -1.2264005, - -1.785308, 0.51645344, 1.046549, -1.5249578, 0.6766145, 0.43592772, - 1.400393, -0.7797678, -0.5869774, 0.08403427, 0.03981512, -1.1093638, - -0.5051856, 0.18067586, -1.5436915, -0.19512862, -2.0965643, - 0.020921648, -1.1471885, 0.27297732, -1.4063387, -2.580033, -1.4154652, - -0.11533307, -1.2158802, -1.8961034, 0.38105687, -2.2335515, -1.7878025, - 0.6548996, -2.657633, -1.1028858, 1.2019606, 2.5251245, -1.1957438, - -1.3780212, -0.263399, -1.2164112, -1.701239, 1.64819, 0.33663943, - -0.78860617, 0.37670603, 0.7517869, -0.8237971, -1.5718689, -0.7028932, - 0.15633199, -0.3032378, -1.3969693, 0.18537614, -1.0923005, 1.3944644, - -0.457928, -1.1544368, -1.8108122, -0.4490143, -1.8344134, 0.35313466, - -0.8895567, 0.63097674, 1.0087967, 0.1823394, 0.55119276, 0.63432896, - -0.8758002, -1.6173964, 0.3213097, -1.4141896, 0.57587475, 0.80718035, - -0.16828439, -0.34361562, 0.21163902, 0.6208752, -1.628858, -3.752667, - 0.99420315, 0.14225629, -0.14517494, -0.39529458, -0.15221, 0.089613065, - -0.45386744, 0.021296931, -0.5086811, -0.8257462, -1.4049942, - -0.34814712, -0.4134951, -0.97777116, -0.560568, 2.37125, 2.1643252, - 2.068921, -0.6637258, 0.47316346, -0.19287708, 0.29667386, -0.80537355, - 0.371517, -1.141907, 0.9238448, -0.5095906, -0.91458946, -0.6529403, - 0.20686346, -0.8693264, -0.9427162, -0.30260724, 0.5992073, -1.5706693, - -1.0592941, -0.3884056, -0.33508685, -0.39708254, 0.25706127, - -0.8828986, -0.89967203, -0.4013152, -0.41481712, 0.09969751, - -1.5015446, -0.2830825, -1.0824947, 0.6609206, -1.5004573, -0.23131733, - 0.65871364, -1.1381246, -1.7976968, -0.029089272, -0.48306003, - -3.3674212, 0.012355167, -1.1508155, -0.37895057, -1.498285, -1.7796941, - -0.15583551, 0.12641433, -1.0801067, 0.2781747, -0.14846492, -1.7904781, - -0.84344494, 0.5504212, -1.6701336, -0.6782671, 0.72588426, -0.11780025, - -1.0738753, -0.9477811, -0.9131982, -0.95081353, 0.17227882, 0.37719053, - -1.0765688, -0.286711, 0.450621, -0.15682137, -0.6090763, -0.085997075, - -1.630557, -0.88567424, -0.16254784, -0.6308956, -0.9336617, 0.1257474, - -0.5564116, -0.37165147, -0.97223127, -0.49948522, -1.8368528, - -0.1739256, 0.6421005, 1.8658348, -0.6365104, -0.58726573, -3.1854658, - -0.89934546, -0.576647, -2.0814774, 0.11667751, -0.19629502, -0.7285602, - 0.83238244, -0.32813284, -1.4459176, 0.36782324, 0.591747, -0.309953, - -1.0773485, -0.15119535, -1.1850396, -0.9349456, 0.45113853, - -0.73797894, 0.1495498, 0.49467155, 0.042430036, -0.14458928, - -1.5156049, 0.17619844, 0.45906013, 1.18137, -1.4483688, -1.3319398, - -0.56390357, -2.3143475, -0.4653456, -0.31415325, 0.17657712, - -1.4001607, -2.3004189, -0.47587496, -0.8693947, -1.8633729, -1.4115889, - -1.5315374, 0.112510234, -2.1900494, -0.06196944, -0.63962466, - 0.09417096, -0.916727, -0.8326255, -1.2473692, -0.4490864, 0.46825522, - -1.0645155, -0.090457305, -1.6971076, -1.8503634, 1.2152162, -1.718004, - -2.4124296, -1.9168546, -0.48808298, 0.16749427, -1.2154841, -1.2725308, - -3.131067, -0.5793238, -0.97932357, -0.7394046, -0.72751683, 0.4112783, - -0.23633257, -0.66341, -0.26666054, 0.7522452, -1.9993336, -0.9207295, - -0.1352517, -2.0248454, 0.569098, -0.40327337, -0.2684546, 0.20802405, - -0.8857675, 0.25429076, -1.6588302, -1.8409193, -1.7181144, 0.46488497, - -0.80465674, 0.43570918, 1.0848978, 1.6251061, -0.4214071, -0.47202614, - 0.21426672, -0.9603239, -0.9798558, -1.4495319, -0.57485765, 1.0552874, - -1.5478793, 0.66735727, -0.78308386, -1.6075189, 1.2013378, -0.7856889, - -0.61734, -0.3512197, -0.90515375, 0.023552038, -1.3543054, 0.49797747, - -0.9715639, -0.047017958, 0.11540161, -1.7926326, 0.23483415, - -1.2837877, -1.3038708, -0.6703909, -2.0964859, -0.8417531, -1.6171173, - -0.3650707, 0.1977226, 0.0055518523, -1.9166341, -1.2222242, - -0.25908747, -0.8616018, -1.8259697, 0.11878038, 1.2056597, 0.70302796, - -0.53135026, -0.8715883, -1.4846525, -0.6614825, -0.7561301, -1.1983073, - -1.6312687, -1.31113, 0.8551246, -0.2216334, -1.5350217, -1.6908525, - -0.22232708, -1.3161958, -2.2281508, -1.3032951, -0.7011222, 0.720136, - 0.82461303, -2.7685792, -0.29433027, -0.58810943, -0.43731686, - -0.22396146, -0.20110291, -0.6483641, -1.2805148, -1.0120568, - -1.0226612, 0.817915, 0.73514974, 0.2752793, -2.97329, -0.72613454, - -0.52949095, 0.697013, -1.3718691, 0.90620923, -0.014132924, - -0.85232013, -1.225364, -0.74081063, -0.67518604, -1.8032898, - -1.3030148, -1.0393082, -0.9370862, -1.5768366, -1.642491, -1.1486505, - -0.14769137, -1.301926, -1.7209009, 0.20217705, -2.2508261, -1.5345047, - -0.5487443, -0.64119667, -0.9092371, 0.9878178, -0.47286093, - -0.42866522, -1.1791095, -0.49871087, -1.2631103, 0.82541084, - 0.67453015, -0.35685998, -0.89819604, -0.065400735, -0.7408805, - -0.22577778, -1.25472, -0.66683185, -0.16011363, -0.6817952, -1.5309473, - 0.72263116, 0.20484678, -0.9360387, -1.9113946, 0.213447, -0.40107244, - -0.11338505, -1.1176354, -0.67132205, -0.34650093, -2.4481826, - -0.2766476, -1.2807063, -1.5798638, -1.1286399, 1.2597566, 0.94165725, - -1.512547, 0.6517054, -1.2713896, -0.37772223, -1.9233987, -0.6719376, - -2.102121, -1.5804002, -1.4157811, -0.6641214, -0.23493443, -0.6174686, - 0.7451204, -1.0404379, -1.3134981, -0.7810175, -1.6905935, -0.077054106, - 1.0270237, -0.86611044, -0.8846763, -1.8586686, -0.54325545, -2.158368, - -1.3946189, -0.94317484, -1.2951763, 0.73807293, -1.2746092, -0.3162117, - 0.20605056, -1.3530047, 0.32200712, -2.969559, -0.4942594, 1.0595999, - 1.9814757, 0.23038408, -1.8538404, -1.0587417, 1.5138613, 0.08813935, - -0.9917434, -0.62844956, -2.0356088, -2.5290475, -0.30877018, - -1.2790439, -0.42390007, -0.7271199, -1.0825458, -1.6154437, -0.553832, - 0.63022244, -0.5645708, 0.72729844, 0.3669644, -0.58091694, -1.841406, - 1.1214073, -0.33894017, -1.3204408, 0.43620166, 0.06145482, 0.12329145, - 0.19356537, -0.96160334, -1.1675823, -0.9677013, 0.7689519, -1.0388712, - -0.6959778, -1.0876741, 1.3377713, -0.5260189, 1.3003875, -1.3887893, - -0.076873474, 0.7789126, 0.26869333, -0.40034026, 0.99682945, - -0.27755827, -0.64776397, -0.022815507, -1.0019053, 0.82946944, - 1.7395326, -1.2897844, -1.7569711, -0.7856476, -0.83686304, -2.155351, - -1.6278062, -0.039594226, 0.10647337, -1.3235142, -0.886407, 0.3032484, - 0.074422546, -0.013547249, -1.6326622, -0.33248994, -0.5526407, - -0.6483297, 1.03485, -0.085499704, 0.79341453, -0.95178586, 0.7041108, - -1.9823476, -0.27137768, -2.2419071, -0.7774533, -0.21132535, - 0.55382466, 0.16837505, -0.22614808, -1.415543, -0.354275, 0.65706223, - -0.6092307, -0.82768506, -0.44371748, -0.91441077, -1.6033971, - -1.8174875, -1.9523641, -3.8914251, 0.68994486, 1.0492473, 0.9642098, - 0.16525756, -0.8864359, 1.1681527, -0.061306894, -1.7830533, -1.585436, - -0.28002313, 0.6140094, -0.51858175, 0.17105761, 0.47013026, - -0.94659615, 0.3392603, -0.3577463, -1.6126275, -0.686768, -0.30585822, - -0.728064, -0.2742462, -1.5121561, 0.20186408, -1.5944891, 1.361064, - -2.2361104, -2.075067, 0.2253614, 0.71918505, -2.132842, -1.9064903, - -0.06761299, -1.7258389, -1.568406, 0.3736929, 0.52540255, -2.1799927, - 0.21942517, 0.036553387, 1.4179038, 0.34850103, -1.4896271, -0.966754, - -1.6711096, -0.97564745, -0.18775299, -1.029412, -0.14987274, - -1.4648324, -0.089457236, 0.078167394, -0.9588624, 1.2428403, - 0.08449562, -0.9172699, -0.48288095, -0.78703636, -0.74071383, - -1.2998925, -0.10314828, 0.5341535, 0.2310868, 0.05810487, -2.5019414, - -0.20979917, -1.0492074, -0.11041213, 0.5621181, -0.268844, -1.362466, - -1.0677497, -1.7315972, -0.40133217, 0.6375258, -0.68572605, 1.0669502, - -0.868712, -1.7611829, -0.17984916, -0.68012494, -2.1722846, -1.6584901, - -2.4720945, 0.029180538, -0.9312534, -0.8762754, 0.13653903, -1.4866314, - -0.76147276, -1.6512653, 0.12114924, -0.016082592, 0.5744685, - -1.4088243, 0.16619487, -2.7266088, -0.199962, -1.7785442, 0.07554046, - -1.3750123, 1.0910697, -1.2852314, -0.8301888, -2.0790496, -0.10192478, - 1.0874346, -1.646124, -0.05124622, 0.22033134, -2.0036027, 0.53416735, - -1.5952243, -0.28099623, -0.3314644, 0.5514891, 1.178056, -1.7099336, - -1.6480827, 1.9854492, -0.27950442, -0.7967413, 2.1501586, -0.18767217, - -1.1862689, 0.30050772, -0.90098786, 0.23924322, -0.7839454, 0.3605892, - -1.9234675, 0.34327403, -0.8553532, -0.93144804, -1.0161881, 1.9729344, - -0.48795033, -0.27636898, -1.0140089, 1.1238841, -2.1423075, - 0.116344556, -1.8699627, 0.43836445, -1.7575542, 0.22175808, -0.6057006, - 0.61879367, 1.2336357, -0.32778263, -1.1969444, -0.12751132, -2.2875438, - -0.3233434, 0.5578002, 0.026873808, 0.9532275, -0.7534016, 1.1007614, - -1.2778369, 0.8253406, 0.26308, 1.3369194, -2.2809844, -2.105947, - 0.504135, -0.51389253, -0.8843088, -1.233766, 0.045682874, -0.5043591, - -0.7630247, -2.5504909, -1.755889, 0.6039526, 0.36083248, -0.24064407, - -0.47171032, -0.36598712, 0.52447563, -1.3025087, -0.28211445, - 0.6128651, -0.8150128, -0.041318156, -1.239485, -0.783578, 0.8725445, - -0.23797053, -1.3244512, 0.72223604, -0.4124791, -0.71754646, - 0.26455766, -0.751067, -0.48687735, 0.230741, -1.8871467, -1.8706106, - -0.55843663, 0.98495495, -0.94990885, -1.6081076, 1.8156929, -0.3160478, - -0.522553, 0.9829607, -1.0178396, -1.119758, -1.8237098, -2.8719516, - -0.09205392, -1.3308207, -2.4206405, -0.7480697, -0.24321416, - -1.7685632, -1.2941979, -1.4315672, -0.123584196, -1.0617365, - -2.2444499, -0.3536083, -2.3532376, 1.3146055, -1.2617292, -0.56814796, - 0.20913234, -0.8501721, -0.693909, -1.1728653, -0.7398029, -0.6757688, - 0.20643258, 0.15709707, 0.08205977, -2.507569, -2.231929, -0.97599006, - -1.0233456, -0.7508065, -0.5979541, -2.1147087, -1.1570339, 1.1679975, - -0.51799875, 0.0718449, -3.6227393, -1.9646757, -0.18115243, 0.9482688, - -0.86921924, -0.17298032, -0.9502488, -0.50892663, -2.945907, -2.816141, - -0.01323903, 0.988762, 0.12714466, -0.9059951, -0.8547498, 0.36252388, - -1.8414425, -2.0722706, -0.020091355, 0.06729066, -1.8157277, - -1.2373472, -0.3719034, -1.0188338, -2.1284966, 0.13652743, -0.70260984, - -0.027074665, 0.6301935, -2.1756794, -0.87141097, 0.05869067, 0.6841249, - -0.17656386, -1.8317592, -0.96003795, -1.088586, -1.4978129, -2.2292602, - -2.0848749, -1.249999, 0.16183616, -0.7589432, -3.0470638, -2.3308117, - -2.034057, 0.15150857, -0.58189, 1.5676119, -1.0601017, -1.1189027, - 1.8637313, -2.4032025, -1.4104811, -1.3597189, -1.0368221, 0.013813145, - -0.5915165, -1.1259354, -0.3284786, -2.4685872, 0.033852547, -1.3410923, - -2.14293, 1.6712215, -0.10796501, -1.6381005, -0.45488724, -2.311942, - -2.4766343, -0.62667596, -0.4221224, 0.26031387, -1.5810589, 0.36540943, - -0.32779804, -1.7888981, 0.22546768, -1.4784325, 0.3061144, -0.7408768, - 0.06231159, -0.33808827, -0.6896483, -0.21776114, 0.46174037, - -1.9271538, -0.3425191, 0.7312534, -1.7887958, 0.5527205, -0.9203636, - 0.45434967, -0.35547417, -1.4840341, 0.5257198, -1.7071376, 0.4688266, - 1.6732697, -0.27237743, -1.3579944, -0.68774843, -0.5383673, 0.48368564, - -0.35219708, -0.79853606, 0.1658867, -0.30557367, -0.8419429, 0.2781816, - -0.106184915, -1.5520531, 0.28347528, -0.21706456, -1.7296308, - -0.41798708, -0.17825893, 0.46142346, -0.33016762, -0.99155986, - 0.2651242, -1.8922397, -0.1765998, -1.2764988, -1.9402908, -0.8782629, - 0.044732597, -1.5770081, -0.5342374, -0.42754883, -1.1189601, - -0.99388427, 0.055246357, -0.49858087, 0.59388304, -1.1453432, - -2.1228955, -0.028653339, -1.8282075, 0.9343441, -1.0558838, -0.8092452, - -1.2237309, -0.14448136, -0.19899917, 0.3591967, 0.27518126, - -0.110402584, -1.9896852, -0.7468087, -0.8900063, -2.9050677, - -0.71437925, -1.4457976, -1.1839228, -1.4506251, -1.4359261, - 0.009689436, -1.4781011, 0.10894938, -0.7985276, -1.455298, 0.13150552, - -0.8586559, -0.5740312, -0.8848735, -0.3482316, 0.705517, -1.5484358, - -2.4168355, -1.8461422, -0.07385336, 0.5197134, -0.73854476, 0.15076, - -0.6203593, 0.69970316, -0.4456789, -1.5057545, -0.43237108, -0.6780353, - 1.3523866, -0.32206333, 0.04937346, -0.33477914, -0.9239745, 0.5887222, - -1.8396726, -0.9160918, 1.0984781, -2.1481946, -0.16638067, -0.9210578, - -0.57401246, -0.08931943, -0.19695798, -0.7179599, -1.5088956, - -0.24380744, -1.6132748, 0.481267, -1.0608678, -1.2694199, -0.93945724, - -1.7311375, -0.76492923, 0.17221767, -0.25418776, -0.39711148, - -0.7813394, 0.14200848, -0.49082798, -1.0876274, 0.7208028, -1.6794834, - -0.13096514, -1.2757658, 0.35241902, -0.53907716, -1.2216663, - 0.37158853, -0.63212335, -0.4831831, -0.49189088, -0.13684955, - -1.6150371, -1.1517775, -0.5479362, -3.2215486, -3.4975977, -1.2389207, - 0.70581496, -0.86209214, -1.0695199, -1.4352795, -2.2511294, -0.6449115, - 0.7087794, -0.93822104, 0.4047248, -0.38687295, -0.3595165, -1.3951259, - -2.7581813, 0.4961723, -1.3411521, -1.0895878, -2.526411, -2.1134856, - -0.5037883, 0.24698035, -0.96203375, -2.1051714, -1.2370611, -2.9911575, - -1.7104981, -1.0764997, -1.2371049, -1.485095, -1.6303674, 0.2856078, - -0.5644984, -1.4086636, -1.755335, -1.1101029, -1.2176062, -0.69133747, - -1.0432819, -0.66620433, -1.1552589, -0.959271, -1.3842707, -0.77939284, - -1.3907301, -1.3971106, 0.0061609615, 0.6826245, -0.7221618, -1.0254555, - -1.488363, -1.9054799, -2.1068516, -1.1568168, -1.4934027, -1.4766331, - -2.1900551, -0.5125304, -0.23807281, -0.98629534, 2.2770903, - -0.50011694, 0.18478778, 0.22428495, -0.8167415, -0.43241972, - -1.9223207, -1.3437216, 0.39051697, -0.5864934, -0.1604313, -1.2179675, - 0.6127762, -0.54678816, -0.27830797, -0.3807966, -0.0003251955, - -1.5251399, 0.2453513, -1.5381582, -0.43147135, -0.75557494, -1.6506561, - -0.2411321, -0.82178426, 0.5593993, -0.5854972, -1.2651694, -0.4815235, - -0.77105415, 0.2550046, -0.3450668, -1.308653, -2.6812274, -0.38623735, - -0.58902115, -0.5774936, -0.4263702, 0.14038707, -1.0447253, -1.7493021, - -1.0155694, -1.8214917, -1.0007544, -0.23704576, -1.1982533, -0.6085212, - -0.29318324, -1.3710587, -1.3235128, -1.2208319, -1.4218974, - -0.47527492, -0.68496954, -0.50999504, -2.4234834, -2.2831695, - -1.1409261, -0.828314, -0.047080725, -3.888105, 1.6724519, -1.4284672, - -1.3584348, -0.22771817, -0.8809255, -0.07717674, -1.4115973, - -0.26879376, 0.43028232, -0.92537266, -1.2151667, 0.114036344, - -0.7472625, -1.012684, 0.06740059, 0.12307082, -0.41062322, -0.7082329, - -0.12206565, -0.94671655, -2.0871365, -1.7746491, -1.828514, -2.2799845, - -0.6496552, -0.833232, -1.5134485, -0.39611635, -0.5429639, -1.8680422, - -1.4358587, -1.2502817, -1.1556185, -0.41614226, 0.66105205, -2.0810232, - -2.0230923, -0.8595258, -0.4890096, -1.8672231, -0.85471904, 1.2842244, - -1.5194073, 0.9045265, 1.2034438, -2.4613607, -0.46150038, 0.016319089, - -2.085702, -0.21210109, -0.39649248, -0.7519866, -0.4268534, -1.1264709, - 1.0173012, -1.3546404, -0.46017638, -1.0491384, -0.73382354, -1.8484973, - -1.1381994, -0.3180452, -2.2163508, -0.17268068, -1.3035494, -1.197034, - 0.44319224, -0.6674035, 0.3763268, 0.09017119, -2.3579695, 0.91022253, - -0.08718623, -1.8894327, 0.024099492, -2.4614, 0.21175765, -0.743324, - -0.9445878, 0.6106082, 1.8071789, -0.78678083, -1.9848458, -1.7258787, - 0.53462124, -1.0412902, 0.3721836, -1.2799754, -1.9929173, 0.68456423, - -0.45264965, -0.7606014, -1.848957, -0.6669058, 0.4679315, -0.9160339, - -1.8312738, -0.2863922, -0.2439682, -1.5909889, -0.87375987, - -0.30518454, 0.5622912, -0.5309319, 0.59062266, -0.704043, -0.36373135, - 0.4020703, -2.1925075, -1.9715163, -0.8685547, -2.2770388, -0.85302293, - -2.335272, -1.8842468, 1.857232, -0.934916, -0.80243224, -0.53268594, - -1.0110717, -1.03786, 0.36942297, -0.15680075, -0.33424664, -0.24818036, - 0.41736123, -2.4181983, -1.342507, -0.72947717, -0.08491568, -2.1358955, - 0.6170323, -1.2669121, -0.012727924, -0.9318731, 0.5888111, -1.554272, - -0.6954652, -1.5804579, -1.4768016, -2.4398263, -0.23145404, - -0.22363557, -1.7286116, -0.739702, -0.30464816, -0.23794675, - -0.3264953, 0.2919463, -0.5442208, -1.3581613, 1.3054851, -0.6344486, - -1.1526347, -1.0935291, -1.3452797, 0.034739733, -1.0852838, - -0.29518414, -0.06605858, -1.9842036, 0.4082824, -2.3811593, - 0.00093453005, -0.93274534, -0.015413266, -2.4508526, -1.5948472, - 0.00090356916, -0.9467675, -2.6374514, -0.11652084, 1.7772735, - -1.1398116, -0.84344786, -0.6038919, 0.12013918, -0.3485396, -1.666447, - -3.01769, 0.4849844, -1.353586, -1.6013634, -0.69893956, -2.9905148, - -0.3739231, 0.30404213, 1.082642, -0.5611531, 0.37466347, -0.2665578, - 2.29401, 0.7270541, -0.22059706, -0.52723634, 0.11961553, -1.5798998, - -1.6776716, -0.5695957, -1.9633847, -2.4253595, 0.3140304, -2.0249984, - -1.2864157, -0.5816595, 0.9467184, -1.0041882, 1.025739, -0.84628344, - 1.000178, 0.49428716, -0.83079195, -1.5631212, 1.2996213, -3.2861814, - -1.1401595, -0.9414624, -1.4251032, -1.8006128, -0.08749601, - -0.67387784, -1.3352212, -1.0218453, -0.58444583, 0.8178298, - -0.25019953, -0.82651645, -0.69030136, -0.86437243, -0.6684636, - -1.5504919, -3.1215882, -0.67529297, -2.0317342, -1.0209165, 0.14274889, - -1.5451746, -2.04451, -0.9231548, 0.07357468, -2.6397967, 0.13224913, - -1.4172587, 0.36687937, -1.4293166, -0.6132706, -0.1475241, 0.5215126, - -0.77515423, -0.8133663, -1.8225061, -0.17227331, -0.359549, 0.5929707, - -2.4001126, -2.9059227, -0.10062221, -0.42393774, -2.463578, - -0.84002745, -2.0126743, -2.216885, -1.1622114, -1.303332, - -0.00034601614, -0.91615206, -0.47552836, -2.9931746, -1.6332635, - -1.2765503, 0.3847081, -1.039442, 0.29421753, -0.9968196, -1.8421502, - 0.40436313, -0.8883687, -0.37502927, 0.5315796, -2.1054344, -1.6037654, - -0.9162179, -1.780151, -0.49817276, -1.081144, -1.0497168, -1.6495886, - -0.1559201, 0.94017535, -0.08201344, -1.4075677, -0.61069506, - -0.16675135, 0.34233755, -0.75580746, -1.4387968, -0.6977463, - -0.6722093, -0.24757186, -2.1905563, 0.19969301, -0.43484473, - -0.35451034, -0.9231001, -0.11670099, -0.859317, -1.5282813, -1.1710193, - -0.30624512, -1.2540274, -0.4032609, 0.12792322, 0.38811135, -2.5739295, - -0.42832932, -1.0931023, -0.18734136, -1.0304276, -0.9885026, - -0.9401571, -1.1311407, -1.5907753, 0.17517045, -0.36487785, 0.2687471, - -1.4906206, -1.9298409, 0.5760725, -0.6445172, 1.637943, 0.37561193, - 0.5836712, -1.2631816, -0.18179747, -1.6512188, -0.38886097, -2.1892214, - -1.3863506, -1.098913, -3.0205178, -2.2068036, -0.79824144, - -0.072894536, -0.29208222, -0.8826771, -0.5502058, -0.49029982, - -1.1660022, 0.6183274, -1.6315911, -1.4288044, -1.4814404, 0.49228436, - -1.3059247, -0.70828915, -2.3060694, -1.7070928, -0.4452856, 0.50475836, - 0.5074944, -1.4453926, 0.18093003, -1.2180302, -0.8803631, 0.63286924, - 0.3346543, 0.1413742, -0.16034731, 0.33133984, -1.399187, -1.1457152, - 0.4023269, -0.8690445, -0.48337087, 2.0656362, -0.3961809, -0.97206086, - 1.1509677, 0.5005689, -1.1617666, -0.45652837, -1.3970957, -0.7086336, - 0.14019224, -1.0807661, -0.7199221, -1.7953085, 0.6139958, -0.9149893, - -1.0120509, 0.8610523, -2.945145, 0.9451442, -0.31604028, -0.0714013, - 0.20291428, 0.92600715, -0.7741055, -0.7016119, -0.41610187, -0.6382414, - 1.6884063, -1.7048382, -1.610576, -0.024666045, -2.7724462, -0.42806765, - -2.1060328, 0.24881163, -0.18266322, -1.6872766, -0.58893764, - -0.5316367, -1.1503779, -2.4155302, -1.821299, -0.27904657, 0.24257284, - -1.5387448, -0.20482737, -0.84768564, 0.38804045, 0.3522802, -0.7555784, - -0.15029083, 0.37039343, -0.38951823, -0.53253376, -1.5045472, - -0.7860686, 0.55964404, 0.8042481, -2.4917047, 0.2638561, -0.560846, - -0.86135465, 1.8147944, -1.7960565, -0.778744, -1.97612, -0.88841766, - 0.10314511, -0.007671483, -0.3730869, -1.0947278, 0.3098693, 0.14454126, - -0.90370667, -1.2058403, -0.9511231, -1.0433065, -1.3535638, - -0.05522774, -0.7487679, 0.0035098726, -1.2175567, 0.088235594, - -0.7053871, 1.920724, -1.2312396, -1.7556894, -1.0996923, -1.6173223, - -1.2156935, 0.27550095, -1.6313828, -0.4513271, -1.9459975, -1.2043148, - 0.978997, -1.1878433, 0.44213215, -2.205357, -0.2735852, 0.8306378, - -0.6045326, -0.5275969, -2.145541, -0.033382475, 1.8156527, 0.91555, - -1.2872825, 1.0924845, 0.7452849, -1.1133118, -0.05553496, -1.7964475, - 0.984941, 1.1891155, -0.15886398, 0.051045716, -0.97132295, -1.9876544, - -1.7230405, 0.45987275, -0.6580538, -0.14720008, 0.8614449, -2.4727113, - -0.8099801, -0.36772704, -1.8236457, 0.011930484, -0.25886202, - -0.8058317, -1.8876414, -1.508264, -0.9886883, -2.3654995, -0.49798003, - 0.03562574, -1.1815615, 0.4074042, -0.28127342, -1.186699, 0.6062285, - -1.3877939, -2.2387068, -1.3737526, -1.0156732, 1.1031901, -0.74886394, - -0.77642554, 0.31925404, 0.9771195, -3.8113139, -2.9393952, -0.945027, - -1.1121598, -0.47569227, -0.7930447, -1.6880983, -3.3868372, 2.354306, - -1.1682025, -0.7875309, -1.1691103, -0.72948676, -0.57346165, - -0.31972444, -1.1494831, 2.3742247, -1.5378172, -0.45099747, 0.8760997, - -1.3630886, -2.4061925, -1.0113838, -0.018768352, -0.7305054, - -2.6696978, 0.80595, -0.593669, -1.1931406, -1.1089784, -0.8794754, - -1.4123194, -2.0321186, -1.4029328, -0.2644002, -0.6641332, -1.5354267, - -0.83643, -0.8831962, 0.76637083, -2.5374527, 1.1898474, -0.9321273, - 0.025863048, -0.34206825, -0.54007995, -0.693723, -1.8341867, - -1.9088016, -1.3423524, -0.58840746, -0.9581376, -0.5582934, -0.6359086, - -0.4078325, 1.2277595, -1.8120589, -1.5770241, -0.08319345, -1.1597505, - -0.8389323, -1.1329235, -1.483293, 0.33981764, 1.6958683, 0.7812777, - -0.13836338, -0.9479183, -0.93831944, -2.6397738, -0.7627606, 0.5716873, - -0.66636014, -0.93014616, 1.2142547, -2.8521805, -1.4028134, - -0.86879104, -0.267258, -0.1187281, -1.6405085, -1.2730384, -3.315017, - -1.0794556, -1.5870386, -0.9961769, -0.9984552, -0.26589924, - -0.11248436, -1.6247108, -0.5318889, -1.2903183, -0.64742893, - -0.14912823, -0.4496808, -0.2598318, -1.0013329, -1.5201243, -1.3178298, - -1.2304277, -1.278032, -1.2464614, -1.87394, 0.45039442, -0.48317152, - -3.157383, -0.6249523, -0.0012496784, -0.19993956, -3.2055895, - -0.99936235, -0.2285669, -1.5608432, 1.3442847, -2.905579, -1.3268435, - 0.034487534, -1.662799, -1.1943444, 0.78026, -1.4301667, -0.60464925, - -0.055729352, -1.9259417, -0.7706692, -1.4944956, -1.6744665, - -0.26957592, -1.647755, 0.05183781, -0.81654286, -0.9421855, -1.2487099, - -1.6917981, 0.76128954, 0.36834347, 0.75717205, -0.53709775, -0.817657, - -0.9257776, -0.8100778, -1.0373744, -2.4917166, -1.7097028, -1.355539, - -1.6275886, -1.1957829, 0.13438989, -0.6033066, -1.1554481, 0.62810653, - 0.6777785, 0.20397833, 0.691542, -1.3207089, 0.343971, -2.169716, - 0.69784266, -2.5046527, -0.28551823, -1.1819189, -1.0542473, 0.38308302, - -1.1944212, -1.14401, -1.0987703, -2.5086248, -2.775886, 0.16020885, - -0.2797399, -0.98184586, -1.5841523, -0.34602737, -0.2588889, - -0.75221336, -0.6035568, -0.97248733, -0.012400165, -0.19235513, - -0.8601466, 0.48468852, -1.6879867, -0.82187825, 0.45179152, -0.2784068, - 0.21664101, 0.16388083, -1.3612642, -0.2726878, -0.37055236, -0.4051771, - -2.1141028, -1.7581074, 0.0048126653, -2.4316096, -1.184938, -0.893321, - 0.44212347, -1.07287, 0.54014516, -0.9375843, -1.4202471, -2.2256482, - -0.21451196, -0.66901344, -0.06705664, 0.6151575, -1.1523904, - -1.3101604, -0.11506216, -1.0176983, 1.0006207, -2.3602571, -1.7323573, - -0.5433207, -1.3046595, -1.1140426, 1.0932852, -1.1508621, -1.435092, - -1.9073126, -2.2437434, 1.3804952, -0.41763118, -2.402191, -1.1145455, - -0.008833906, -0.71501064, -1.52094, -0.6585179, 0.5462407, -0.9791812, - -0.35910287, -0.2516554, 0.036557585, -0.69679254, -0.03059464, - 0.23047502, -2.315976, -1.6473973, -2.125823, -3.2465765, -0.20394231, - -2.2100267, -0.36055115, -2.5214229, -1.749335, -0.564851, -2.4815185, - -2.1254468, -1.1520838, -0.34007317, -2.479327, 0.36538738, -1.1667554, - -2.2944603, 1.3898926, -1.3657169, -1.5046041, -2.666682, -0.28935313, - -1.1358818, -1.2439556, -1.2666928, -2.632564, -0.43151957, 0.6457417, - -0.53569067, 0.517436, 0.09699845, -1.7528497, -0.32045, -1.4622514, - -3.4234781, -2.3289402, -2.2563996, -0.22303483, -0.14686203, - -1.4813943, 0.23897874, -0.26271528, -2.0711956, -1.5313871, -2.0859487, - -1.2205652, -1.9646039, -2.076536, -0.73056763, -1.3247112, -1.2603437, - -0.04731858, -1.427296, -1.1848434, -1.4167169, -0.60885745, -1.0093912, - -0.95434016, -1.4822996, -1.9015127, 0.98070645, -1.7027142, -1.3602574, - -0.66905457, 0.7105195, -1.2341824, -2.3976977, -0.34854883, - -0.75366765, 0.7154771, -2.1096926, -0.6950371, -1.1129082, - -0.041772574, 0.38096935, 0.015363384, 0.041395828, -0.53621095, - -1.5425322, -0.18707699, 0.23624176, 0.11481877, 0.120965466, - -1.2012079, -0.28411424, 0.17879677, -1.0574214, -0.29225618, 1.0870781, - 0.69649196, 0.10230415, -2.287664, -0.8073476, -1.5422319, -0.759199, - 0.6246907, -3.6127577, 0.9052533, -3.070149, -0.6084353, -1.2949157, - -0.48717773, 0.5567434, -0.19272117, -0.2426568, -0.86509895, - -1.2680129, -1.5712366, -0.8931115, -1.3045832, 0.4093538 - ], - "features2": [ - -0.8428984, 0.67307186, 0.045809932, -0.1905398, -0.20816036, - -1.3823193, 1.5088295, -1.6950922, -0.6608228, 0.29117122, -0.6243884, - 0.5323938, -1.4774201, 0.80881697, -0.62446487, -0.6374493, -0.14581063, - 1.6263665, -2.286549, -1.2814192, -1.3382126, -0.29865268, -2.8418393, - 0.617673, -0.051384293, -1.7732408, -0.41744614, 0.77002645, -2.6981366, - -0.87979174, -0.82472116, -1.0314496, -0.08071341, 0.09830515, - 0.45766652, 1.486325, 0.21577382, -0.63502306, -0.043058693, 0.58121574, - -0.80561507, -0.55799955, 0.32982907, -0.6772265, -0.7329338, - -0.17216636, -0.82802826, 1.2116084, -0.23742773, -0.7699083, - 0.60091186, 0.12901327, -1.7517235, -0.10377295, -1.4896806, 0.06229359, - -0.49442437, -1.3290193, -1.7781312, -1.6380715, -0.34721524, - -0.048426557, -0.9477888, 0.691543, 0.51607335, -1.1970271, 0.62259007, - 0.7707426, -2.0295694, -1.0102009, 0.34941483, 0.407686, -1.1101367, - -0.083000615, 0.2562728, -1.3739933, -0.6496836, -1.4099998, -1.066886, - -0.5216338, -1.9314907, 0.7579045, 0.51974416, -1.2800496, -3.1313775, - -1.089321, -0.19892108, -0.6814861, 0.1996943, -0.12110598, -1.4120616, - -1.1772594, -1.9312311, -0.021657908, 2.1730158, -0.08936913, - -0.87493885, 0.4037, 0.24413829, -1.7877215, -1.1402684, -0.7273815, - 0.79046667, -0.83608645, -2.3919106, -0.7601523, -1.7543093, -1.1798087, - -1.7158914, -0.3824715, -1.3578603, -1.8778741, -3.040066, -1.2785211, - -0.33031636, 0.638033, -1.0311127, -1.6595933, -0.7095875, -1.9780132, - -0.5980971, 1.2897362, -1.6061175, -1.6187085, -0.75829566, -2.165037, - -0.600333, 0.9998472, -1.2855679, -1.1350598, -1.0683645, -1.433499, - -1.8134166, -1.4606435, 0.30890068, -1.0159799, -2.1963732, -1.8208853, - -0.6266289, -1.8056865, 0.5990367, -0.8215087, -1.7622168, -0.54328364, - 0.8465034, -1.8117611, -0.865571, 1.8880227, 0.85871, -1.1683221, - 0.022483274, -0.6352075, -1.2457762, -0.7925011, -1.2035428, - -0.98644954, -0.8870114, 0.5694829, -0.10192226, -0.9788059, - -0.07140655, -0.2295132, -0.7289405, -1.325057, -1.1858718, -0.13490397, - -0.4529379, 1.2172525, -1.3157337, -1.2041868, -0.6252776, -0.96478975, - -0.6809563, -0.16432989, -2.0399554, -1.2185111, -1.1342568, -0.6677899, - -0.37920713, 0.4777072, -0.28879243, -1.4865973, -1.507966, -1.3307793, - -0.97853315, 1.1841177, 2.4796388, 1.1936424, -1.8058152, -1.0233618, - -1.4840931, -0.39976877, -0.31507424, -1.8848487, -0.59566647, - -1.1108123, -0.382903, -2.1586845, -1.9012607, -0.83458805, -0.24189748, - -0.14002803, -0.073676296, 1.0982608, -1.9043874, -0.30848372, - 0.06990531, 0.36245453, -0.5838881, -0.06343262, 0.6735799, -0.21095967, - -2.037403, -1.5017943, -0.085920475, -0.18990016, -1.9086341, - -1.1303685, -1.050027, 0.5023394, 0.410866, 1.0625913, -2.1608624, - -1.3435007, 0.9672506, 0.09585323, -1.6030681, -1.7868087, -1.3932582, - -0.66757876, -1.246847, -0.95595056, -1.8941768, -1.9319762, -1.4559137, - -0.48249215, -1.3087234, -1.6434841, -0.9862547, -0.3018831, -0.783776, - 2.7541575, -0.75189734, -0.49778652, 0.4042571, 0.63692904, -1.1169989, - -1.4063553, -0.73571014, 0.90833354, 0.48810256, -1.1825519, -0.72737, - 0.9799236, -0.7276424, 0.050400656, -1.1110678, 0.14964995, 1.4542735, - -1.652421, -0.58044636, -1.5964885, -1.2794205, -2.4039235, -1.0741726, - -1.6085913, -0.38218275, -2.2990115, -1.5818986, 0.36571258, 1.1776323, - -2.5340595, -0.905484, 0.6285434, -1.0007118, -1.0221077, -0.0020593032, - -0.26811707, 0.047822654, -0.004440654, -0.13535294, -0.9459538, - 1.6768217, -0.9185113, -1.8825364, 0.12107596, 1.1552314, -0.7044356, - -0.04786665, -1.7729605, -0.50609267, 0.1127499, -1.1113375, -0.9022058, - 0.61478525, -0.122992575, -1.3952954, -0.1867854, -1.1265998, 0.8257107, - -0.8621206, -0.69726247, 0.6531784, -0.5762234, -0.82026577, -1.3501122, - -0.24713872, 0.49631003, -0.0880181, 0.2454974, -0.29243276, -2.6749015, - 0.49574578, -1.2009451, -1.2329761, 0.35334122, -1.7504151, -0.30495778, - -2.451717, -1.8073436, -2.1762817, -1.669273, -1.268022, 0.6116197, - -2.285857, -1.2005069, -1.9466175, -1.1101402, 0.85435843, -2.0982184, - -0.2159481, -0.039796412, -0.78604615, -1.1361809, -1.5289298, - -0.694703, -1.3017782, -0.72406614, -0.13389002, -1.6961834, -1.6797489, - -2.2186272, 1.1694553, -1.3281623, -4.4721184, -0.5408826, -1.9114348, - -0.8869342, -1.6195633, 0.8015497, -0.6263225, -0.8709432, -1.903031, - -1.4668791, 0.16251746, -0.95945877, -1.4956132, 0.3594813, -0.14673913, - -0.2049008, -0.91616875, -0.89930224, -0.68728983, -0.3855466, - -1.6208603, -0.5736494, 0.28114614, -0.9630556, -0.5141063, -0.58742654, - 1.0886314, -1.1823246, -1.4051793, 0.14588079, -1.8265488, -0.78241307, - -3.2627175, 0.46930814, -1.9115303, -0.6892551, -0.4373693, 0.15511827, - -1.3535578, -1.7179672, -1.5754594, -0.5503527, 0.25646687, 0.29995862, - -1.6747671, -1.2081883, -0.54870033, -0.8974462, -0.30962077, - -4.1862593, -0.5579555, -0.9209291, -0.9620327, 0.21141768, -0.27075672, - -0.14361739, -1.5704832, -1.0267898, -1.3842909, -2.9189909, -1.412231, - -0.0561383, -0.15774742, 1.3084422, -0.94378185, 0.55872357, 1.5983524, - 0.023608299, -1.8266633, -0.3599683, 0.31201684, -0.8905094, -0.884514, - -1.4912127, -0.60709643, -1.0490484, -0.3389148, 1.6473969, -1.8657212, - -0.22399548, -1.2649055, -3.5678408, -0.2095334, -1.4042906, -2.2236412, - -0.65044844, -2.1730936, 1.7677076, -0.52600574, -1.3110662, - -0.77799153, 0.4331761, -1.1307018, 0.5704124, -1.51246, -0.31952077, - 0.23276857, -0.6429914, -0.9160663, 1.7310425, -0.9443814, -1.849865, - 0.48094857, -0.40370488, -0.552765, 0.9987786, -1.1530185, 2.1586068, - 0.72143704, 0.26200277, -0.4122924, -1.3849037, -0.4502121, -1.5072678, - -0.54740405, -0.66396534, -2.9805198, -1.4116734, -1.0005533, - -0.8146621, -2.3091965, -0.33039197, -0.3842061, -0.57694906, - 0.32932553, -2.5501363, 0.31297302, -1.7171223, -0.21872115, -1.0614389, - -1.5457954, 0.15019988, -2.67091, -0.29015946, -0.85147303, 0.10563017, - -0.503232, 0.32174817, -2.826497, -0.31702787, -0.07902372, -0.4951504, - 0.3243501, -1.4669596, -2.1087162, -0.8273304, -1.7867291, -2.0143309, - -2.3385065, -1.471586, -1.9744532, 0.7645021, -1.476713, 0.43033397, - 0.9356722, -1.9042375, -1.2140765, -1.176927, 0.087380245, 0.9010108, - -0.38212746, 0.0912056, -1.3440014, -1.0615354, -2.3960896, -1.3319229, - -0.5620489, -1.047453, -0.37575614, -1.0705808, 0.27062708, 0.122644484, - -0.69274276, -0.45771644, -0.10341445, -0.77640337, -1.8747562, - 0.3363057, 0.05272967, -1.535822, -0.52029544, -0.087556764, -1.0760449, - -2.9706254, 1.6997116, -0.016072296, -0.5352634, 0.220458, -1.9006752, - -0.51259273, -0.41615075, -1.5707244, -0.28600746, 0.41346437, - -0.5789197, 0.72081983, -2.4694915, 0.8130449, -0.07121252, -0.7125023, - -0.8347311, 1.3145667, -0.44590154, 0.35510868, -1.0621843, -2.1189837, - -0.38090703, 0.56008, -1.1067629, -1.4212233, -1.1082623, -1.2405615, - -0.92589056, 0.6737022, 0.46467343, 0.59475493, -1.8692274, 0.04107842, - -1.5060899, -1.2378066, -1.9156234, -0.08768902, 0.6030615, -2.134501, - -1.6142058, 0.807728, -1.1574786, 1.4501321, -0.74847716, -1.4610407, - -0.40732756, 0.21595107, -0.81247365, -0.98436296, 0.41774586, - -0.71451634, -0.11278047, -1.3207812, -1.200057, 1.6795583, -1.7998892, - -1.2552619, -0.2162654, 0.17268266, -1.7565764, -0.0063395053, - -1.1381819, -2.5621495, 0.47336033, 1.2571545, -3.4249823, -0.5510558, - -2.1648486, -1.1556462, -1.120228, -0.4800557, -0.38932374, -2.389746, - -0.9837345, -0.7466872, -0.72339636, -1.1806746, -1.1514426, 1.076605, - -2.330534, 0.18602559, -0.13435616, -0.3988537, -0.7163864, -1.1899828, - 0.88421607, -0.1727638, -0.23855531, -0.6393732, -1.3186868, 3.4042988, - -1.7211837, -1.5591589, -0.20905912, 0.7145998, -2.7355695, -0.10753915, - -1.0856189, -0.57590556, -0.41991997, -1.6589416, -1.321456, 0.48797822, - -0.29636493, 0.2865708, -2.7096865, -0.36861706, 0.861422, -0.29487395, - -0.34384692, -0.49783748, -0.94229615, -1.3104287, -1.8250122, - 0.46358165, -0.5585479, -1.2597114, -3.9193707, -0.11693079, -1.3814175, - -1.8762878, -1.2094889, -2.2954156, 0.35140607, -0.5368811, 0.7794401, - -1.1841319, -0.2566598, -0.6114963, -0.28544763, -0.16851634, - -0.95715404, -1.8663167, 0.77351403, -0.6143315, -0.4087426, 0.5439482, - 0.19079001, -1.64924, 0.040839426, 0.5294855, -0.97804224, -0.8122506, - 0.878095, -1.2613655, -1.4907136, 0.28209928, -0.35414812, -0.20751673, - -0.15068647, -2.016487, -1.2762395, -1.3214784, -1.5339062, -1.0380226, - -0.39221627, -0.6857211, 0.06559773, -0.32434642, -1.9462174, - -0.42637563, -0.51091605, -0.16873515, 1.8173658, -0.16460086, - -1.1796126, 0.16401008, -0.9013868, 0.808615, -2.229267, -0.6911212, - -0.07888929, -0.02792865, 0.57526976, -1.3634057, -1.1999792, - 0.35730267, -1.8485229, -1.7244548, -0.6884818, 0.62016654, 0.21708417, - -1.4763612, -0.00041270256, 1.1404372, -0.930499, -0.69118, 1.4696137, - 0.8006731, -0.029319435, -1.8686879, 0.9033614, -0.3639262, 0.34271494, - -1.5878435, -1.1706691, -0.4946056, -0.019741097, 1.0409003, - -0.40590888, -1.0481536, -0.50555503, -1.7603632, -0.24931133, - 0.15204889, 0.46996823, -1.270295, 0.6522678, -0.5728823, -2.1479793, - 0.21889511, 0.39947796, 0.13726959, 0.05161669, -1.2689408, -1.9484662, - -1.3065202, 1.5902252, -1.126147, 0.8774938, 0.044694554, 0.54473424, - -1.3898778, -1.8759105, -0.06739539, 1.235569, -1.2978649, -1.5119094, - -2.358134, 0.8051088, 0.22743075, -1.5737611, 0.032884322, -0.5456256, - -0.5558209, 1.6795923, -1.2327358, -1.7120614, -0.6624953, 0.123930514, - -1.4965277, -1.3701906, -1.6091833, -2.1238222, -1.8852487, -1.3850439, - -0.8386098, -1.221765, 1.2390844, -1.2697384, -1.3378716, -1.6044668, - -0.9268042, -3.1623135, -0.43477732, -0.91424865, -0.15235697, - -0.78368145, -2.4266865, -1.4467974, 1.1811017, -0.6492515, -0.88208777, - -1.1474137, -1.662633, -1.4958253, -0.46367174, -1.2190894, 0.37805068, - -2.1576052, 0.18099396, -0.75289476, -0.62468064, 0.58354855, - -1.3270448, 0.74036396, -1.160385, -0.6619574, 1.2588949, -0.104855865, - 0.25764257, 1.6790241, -2.1865501, -1.5053756, -2.157911, -0.85409147, - -0.9744665, -1.6715236, -2.6327355, -0.44357485, -0.7829494, - -0.64780414, -1.3628477, -1.7005483, -1.4881451, 0.71215904, - -0.62243754, -0.08585801, -1.5495728, -1.922419, 0.5416427, -0.68730134, - -0.42996058, -2.5755932, -0.77152574, 0.32829577, -0.9102496, - -0.55532736, -3.1135736, -0.55993307, -0.96790457, -0.0767876, - -0.7765048, 0.7126494, -0.21938804, 0.6826113, -0.47019005, 0.91433555, - 0.38574046, -1.9493992, -1.5690923, -0.46768567, -1.534463, 0.028685063, - -0.098686785, 0.089761324, 0.7234514, 0.24773723, -0.6817114, 0.5640336, - 0.7023999, -2.0501003, -1.4225442, -0.60146433, 1.5250516, -1.5214535, - 0.78538364, 0.24430126, 0.13507536, 0.6886476, -0.9313424, 0.62480044, - 0.16354278, -0.8592883, -3.9757977, -0.51737046, -0.57553655, - -0.96074456, -1.1893709, -0.70059085, 0.5010173, -0.48050183, - -0.86858016, -1.2343167, -0.9768738, -2.3302739, -1.1970855, - -0.44075048, -1.4565145, -0.6565274, 0.18517895, -2.3257766, - -0.04303129, -1.3061416, -0.95851094, -3.03822, -1.5322509, -0.2782377, - -0.6966728, -1.2647207, 0.195189, -0.9520122, -0.44144174, -0.87098813, - -2.1988528, 1.3902036, -0.5891386, -1.0891112, -1.056062, -0.9610713, - -0.37740988, 0.42128596, 0.33475482, -1.6426632, 0.9367007, 1.2029526, - -0.23654304, -0.7696487, 0.6437401, -1.8920895, -1.05857, -0.35110804, - 0.5741724, -2.3064885, 0.2554678, 0.06227099, -1.5782874, 1.6491811, - -0.72884816, -0.37707627, -0.78111327, -1.306852, 0.65193564, - 0.34002122, -0.13987947, -0.73648626, -0.12566236, -2.1750536, - 0.12293265, -1.1514455, 0.23455608, -0.8322226, -0.08172716, 0.8996856, - 0.42105794, 1.038223, -0.9943631, -1.311559, -1.6154296, -0.03994473, - -1.5936172, -0.33147806, -2.9214442, -0.92687255, -1.0200136, 0.3132178, - -0.8163881, -1.331141, 0.7733635, -0.62449855, -1.5901449, -1.5992715, - -0.330171, -0.4775612, -0.45385686, 0.7627851, 0.25683004, -0.29532117, - 0.39569294, -1.0541416, -1.4691803, -2.1110656, -1.1875963, -0.96200913, - -0.46307957, -1.5548707, -1.0878282, -0.76373386, -1.0891917, 1.0805304, - -0.7970607, 0.042098865, -0.67065924, -1.094398, -1.4785242, - -0.44227552, 1.6837399, -0.95724005, 1.2161433, -1.08745, -0.5906168, - -1.1848562, -0.37002602, 0.08593365, -0.60436356, -0.84149075, - -0.226322, -0.1276515, -1.2786508, 2.046833, -0.7596717, -0.6729739, - -0.67716634, 0.707932, -1.9306302, 0.5415866, -0.66854334, -0.8423192, - -0.39631274, 0.31051695, 1.3775518, -1.4634073, 1.0369906, -1.270183, - -0.33257785, -0.8045029, 0.69143367, -0.394495, 0.9786244, 0.32154024, - -0.27150986, -1.1954458, -1.3667815, -2.0885472, -1.345011, -0.8076459, - 0.17085063, -0.90141803, -2.3586252, 1.6091638, -1.8085269, -2.3825471, - -1.4132732, -1.7786182, -1.451682, -2.1175234, -1.2862221, -0.9518212, - -0.38279244, -0.282439, -0.94265485, -1.6302748, -1.3885214, - -0.92947835, -2.5443096, -0.26898476, -0.68101054, -0.5038531, - -2.406844, -0.40263113, -1.8604295, -2.0916412, 0.096771866, 1.6707383, - -1.0517281, -1.4199418, -0.22938645, 0.3751431, -0.4122476, -1.1700108, - -0.6335121, -2.050559, -1.4566246, -0.30646527, -0.9920389, -2.3096526, - -0.8772192, -1.5567101, 1.6280648, -2.2839823, 1.458331, -1.1048232, - -0.30200905, -0.6059558, 0.7117331, 0.16266449, 0.45777804, -1.7832925, - -1.9554373, -0.98453826, 0.06561533, 1.8084686, -0.23067386, - -0.35910624, 0.5374433, -0.86264527, -0.25998938, -0.86555785, - -1.7222905, -0.71564937, -1.1339674, 0.79438853, -0.016881473, -2.4138, - -1.9475291, -1.4205923, -0.79632974, -0.9663204, -1.2782433, -2.5083945, - -0.6574126, 0.38976356, -0.718928, -1.377996, 0.09032698, 0.29220882, - -2.287285, -3.1168592, -0.3044217, 0.0738139, -2.1903493, -1.7446141, - -0.3251957, -0.55464923, -1.4581637, -1.8528273, -0.92450976, -2.17629, - -1.5763474, -0.28858823, -1.0632346, -1.0109458, -1.4612921, -2.2732487, - -0.3530465, -2.5564263, -1.6491697, -1.2753121, -0.106445685, - -0.8440239, -0.2975565, 0.15110019, -1.0754075, -1.0130153, -2.0151448, - -1.2833465, 0.54595226, -1.3087492, -1.0163584, -1.0125933, -0.54296523, - -1.1318005, -1.0741982, 0.018782109, -0.53812534, -1.9066969, - -0.8529184, -1.3901856, -2.2971663, -2.2514873, -1.1332016, 0.32101354, - -0.22407922, 0.10877143, -1.1563351, -0.41023922, -0.85049623, - -1.4992666, -1.8605447, -1.9968854, 1.0145468, -1.3103045, -0.8063183, - -2.4338648, -1.4960214, -2.055976, -1.6076539, -2.2882762, -1.4524035, - -0.6532015, -1.345168, -0.30720362, 1.0980957, 0.3594262, -0.9295198, - -0.57176685, 0.3798536, -2.0542114, -1.542667, -1.5134714, 1.6656916, - -2.0677192, 0.21497607, -2.1973317, -0.28586832, -0.22420081, - -0.99236983, 1.2399919, 0.039149933, -0.7318344, -0.44188896, - 0.20648812, -0.029777028, 1.3142452, -0.59409916, -1.3080921, - -0.5666676, 0.2422581, 0.046110004, -0.04168823, 0.07279761, -3.0471764, - -1.3076088, -1.6178925, -0.58680564, -0.07379991, 0.9316962, 0.93621695, - -1.053066, -1.4985385, 0.96080166, -1.0256621, 0.29631004, -0.49166682, - -1.2730283, 0.68107325, -2.2507722, -1.1317165, -1.1327889, 1.8380272, - -1.2132236, -2.0035698, -1.014564, 1.0244083, 0.5429855, -0.26509905, - 0.3421049, 0.8462571, 0.8894245, -1.1309346, -0.7371053, 0.46812376, - 0.21639033, -1.6937314, 0.8748058, -1.8219146, -1.7397944, -0.94219625, - -1.9312316, -1.7125947, -0.7461274, -0.010488763, -1.0181823, - -0.5022705, -0.2985657, -1.0290297, -0.89711493, -0.5495821, -0.654279, - 1.5498455, 0.27577755, -0.1584101, -0.94914967, -1.5562428, -2.2353313, - -1.8861141, -0.6459496, -1.5791328, 0.8956393, 0.65221244, -0.37257344, - -0.5381569, -0.20415218, -0.17856462, 0.92883706, -0.7416575, - -0.65878785, -0.18857513, -1.7611527, -0.026442628, 0.12595528, - 0.92205256, -1.7430456, -2.1872354, -1.061551, -0.3935424, -1.0322777, - 0.9800511, -1.4549279, -0.59438026, -0.1832321, 0.30364037, -2.014991, - -0.9784199, -0.78154415, -0.13196084, 0.75297445, -0.8205266, - -1.3699085, -1.3236123, 1.6662327, 0.63939124, -0.030283041, 0.4928827, - -0.6302535, -0.71939653, -1.7100267, -1.1759616, -0.44101474, - -1.8761735, -0.44324982, 1.3084606, -0.3776234, -1.9315569, -1.493952, - 0.56717426, 1.0297518, -0.9329934, -2.3057806, -1.1011031, 0.021551214, - -1.6949838, -0.13388997, 0.19362752, -0.68658155, 0.38919553, - -1.2352899, -1.0715463, 0.89946055, -0.45096564, -0.32338566, 0.5064926, - 1.4151952, 0.43188712, -1.1365263, -0.998197, -0.7908461, -1.0558891, - -1.6148785, 0.6890734, 0.049921118, 0.55998933, 0.84725964, 0.7693426, - -2.2754114, 0.7833458, -1.0773071, 1.0622288, 0.75231206, -1.001863, - -2.1627152, -0.26594865, -0.116448365, -0.6016893, -1.3089442, - 0.25729683, 0.2775722, -1.4395756, 1.3385757, -0.8452938, 0.327868, - 0.27275342, 0.20892492, 0.30700576, -1.1054226, -0.8481516, -0.3256428, - -0.7365758, -0.7851361, -1.239705, -0.14466235, -1.0391421, -0.72596073, - -0.045769557, -0.32040685, -3.6416411, -0.92548424, -1.2604055, - -1.8237069, -1.0538065, -0.33302584, -1.2085466, -1.6736032, 0.25847718, - -1.7413445, -1.1766882, -2.1475348, -1.7214221, 0.6179117, -1.82484, - -1.7291573, -0.8305713, 0.13419947, -0.88058025, -1.254336, 1.1508899, - -1.0268831, -1.4516145, -1.558751, -1.6122193, -1.560047, -0.27617437, - -0.42611274, -0.42545158, -1.8585123, -0.20058668, -2.028811, 0.431655, - -0.8268149, -2.2627957, -1.0441114, -0.46439204, 0.025541335, - -1.2913761, 1.874716, -0.7038316, 0.053696617, 0.42869538, -0.48593685, - -0.57203966, -0.110911176, 1.0543838, 0.029967155, -1.5531553, - -1.6733078, 0.42289132, -1.2823094, 0.5769938, -0.76940477, -0.36190698, - -0.9067943, 0.59183604, -2.6852667, -2.7108037, -0.8519002, -0.87080425, - 1.5959114, -1.1894011, -2.4655213, 0.13670774, -1.2110773, -0.6468139, - -0.59513223, -1.2727897, -2.5126424, 0.92188907, -0.6545431, -1.5179242, - 0.14628673, -0.6823269, 0.3779878, 0.9542321, -1.6040274, -2.2328868, - -1.1791062, 0.61410064, -2.2683349, -1.426302, -1.6310569, -0.3797504, - -0.046559498, 0.2724264, -1.7171818, -1.065133, -1.5519778, -0.870053, - 0.5190945, 1.9664856, -0.25287294, 1.8260044, -1.3780558, -2.2349288, - -1.0641186, -1.2150584, -0.4047354, -1.3501134, -1.2666162, -0.42432576, - -0.64044267, -0.4183781, -1.4423795, -1.4231958, -0.42075396, - -0.94543386, -1.7497286, -1.577578, -0.118139446, 0.4861861, -2.1509905, - -0.36996523, -0.75388277, -0.99180347, -1.0715262, -0.57646745, - -0.6113822, -0.9871025, -1.985287, 0.2652577, -1.0249453, 0.6783057, - -0.4930993, -1.1588538, -1.2984327, 1.2531197, -0.3046323, 1.8120424, - 0.26341665, -1.3634509, 1.2152499, -0.8208499, -0.5113717, -2.6732929, - -0.72249895, -2.809579, -1.826657, -0.39544633, -2.0065823, -0.922949, - 1.516673, -1.5419112, -0.44610626, -1.967149, -0.10707767, -0.28657338, - -0.62184393, -0.44095647, 1.055849, -1.2817059, -2.831472, -1.5140188, - 0.28157687, 0.09839237, -1.2986048, -0.14418116, 0.80666846, -1.1139759, - -0.2812572, 1.0166969, -1.0179843, -2.859148, 0.0033905655, -1.3762959, - -0.08548762, 0.17868203, -1.0447127, 0.838609, -2.0727885, 0.9580328, - -1.3803332, -0.68828326, 0.68327, -0.6326271, -0.79429746, 0.78689367, - -0.21129811, -0.7207441, -0.5143187, -1.2080373, -0.33851796, - 0.18880405, -1.9945275, -1.0996729, -1.6031679, 0.116856016, -2.9759638, - -0.6778321, 0.23187894, -0.19672698, -2.2721508, -0.9071706, 1.4853472, - -0.7885148, -0.5587213, -1.2730932, 0.8290687, 0.3779789, -0.9753644, - 0.78310627, -1.2512407, -1.5281523, -1.3238373, 0.44927567, -0.94487274, - -1.6095477, -1.2877852, -1.9070795, -0.8007098, -0.6047789, 0.14362518, - -1.2871249, -0.806234, -0.8470012, -0.9388885, -1.9883574, -1.068124, - 0.05347491, -1.6642557, 0.12585106, 0.78621405, 0.8111736, -1.4868852, - 1.2411377, -1.8488338, -2.3709772, -0.07956662, -1.6215054, 0.12340617, - -2.3457694, -1.2122645, -0.12986916, -0.7343416, 1.2973968, -0.7141652, - -1.3625963, -0.5037054, -1.153092, -1.1426972, -0.9628915, -0.46686152, - 0.0077257687, 1.315774, -1.9561348, -0.2764935, -0.40244794, 0.62399995, - -0.7664576, -1.6830282, 0.79588956, -1.0921423, -0.71427476, -0.437725, - -0.7308604, -0.23921493, -1.6848716, -1.3391447, 0.27297944, - -0.26690552, -0.22635639, -0.8861285, -1.8137985, -2.147967, - -0.17822227, -1.0488974, 0.7360071, -1.7763201, -0.11298157, -1.557012, - -2.021796, -0.20956054, -0.17752138, -0.8431581, -0.082206175, - -1.1442796, -0.070109054, -0.06542857, -1.7527041, -1.5869119, - -2.0112312, -0.41310814, -1.2043993, -1.6050643, 0.14300668, -0.8842505, - -0.7494272, -0.20097002, 0.38931474, -0.50099975, 1.7434374, - -0.12978032, 0.6069807, -0.43074238, -1.7406199, 0.54232776, -1.5194951, - -2.8479156, -0.4618977, -2.1734593, 0.7886593, -2.6913028, -0.38889343, - -1.316186, -2.4300964, 0.48876518, 0.6481851, -0.20161489, -1.8240105, - -0.08468621, -0.42801222, 0.2751273, -0.41899878, -0.3302803, - -0.2634715, -1.965623, -0.72594935, -1.5168222, -1.9707047, -1.3101311, - -0.56142575, -1.2081692, 0.78753644, -1.0787784, -0.9629994, -1.6799709, - -0.3881226, -0.8895637, -1.3078737, 0.58571327, -1.7831881, -0.9003482, - -1.0130659, -1.5693933, -2.1393225, -1.4973686, -0.14214496, -1.7667162, - -1.3265568, -1.0858127, -1.214808, -1.8006631, -0.3890887, -0.10613838, - -1.5237055, 0.24408211, -1.0441401, -0.88033104, -1.2137711, 0.8625774, - 0.3119614, -0.7808941, -0.3337528, -0.8002983, -1.5420169, -1.4471786, - -1.2693198, -1.6591201, -0.31137455, 0.20417504, -1.137014, 0.27895534, - 0.64124626, -0.73909795, 1.1099443, 0.08210734, -0.39351833, - -0.78463614, 1.641701, -0.5460566, -0.113870524, 1.0455912, -2.0154183, - -1.2424542, -2.2054796, -0.84277844, -1.3599594, -0.63718706, -0.188219, - -0.5575079, -1.0379121, 2.208994, 0.25779232, -0.17360575, -1.4115113, - 0.20831947, -1.617467, -2.4346788, -0.81108356, -0.6918844, -0.13765408, - -0.30609936, -0.66952103, -1.041745, -0.89058113, -1.5247989, - -0.19057257, -0.24367237, 0.1847297, -1.8797491, 0.56253517, -1.6792158, - -1.723417, -0.8932999, -0.2662142, -1.1583065, -2.7057598, 0.0014923252, - -1.0518693, -0.14076759, -0.41079184, 0.16104023, -0.12498558, - -1.7343913, -1.2174891, 0.16264457, -0.7504311, -1.0645416, -1.226178, - -1.4639944, -0.08152014, -0.67094946, -0.94123745, -1.6210713, - -2.337566, -1.2269379, 0.299437, -0.91330695, -0.45416924, -2.686623, - -0.15805613, -0.026001219, -0.5094234, 1.3743932, -1.2266489, 1.0192757, - 0.39603528, -1.123549, -1.3821276, 0.013479732, 1.7054936, -0.93146515, - 1.6332717, 1.2934306, -0.6618247, -1.3963594, -1.1932431, -0.51667446, - -0.7153799, -1.5092095, -1.9338771, -1.0968698, 0.31397247, 0.106602564, - -1.8221304, -1.3655549, -1.3297901, -0.5227439, -0.7239305, -1.204526, - -0.798218, -0.47124085, 0.017081216, -1.4893801, -1.853051, 0.1664771, - -0.15223311, -0.11420314, -2.3712533, -0.056265727, 0.30340105, - -1.7038773, 0.5954561, -0.9899198, -0.82981235, -0.046547122, -1.27896, - 1.1027457, -1.3152908, -0.006912853, -0.58348364, -1.7072761, - -1.7624346, -0.9855998, -0.13887244, -1.5254955, -0.17201781, - -0.93568826, -1.4719602, -0.68812937, -1.8986617, -2.6647801, - -0.7172537, -0.31920344, -0.3818447, -0.24961433, -1.7258306, - 0.68638355, 0.1318168, -0.32481623, -0.8373929, 0.8390187, -0.83255786, - -1.7234124, -1.5136306, -1.7030288, -1.0368083, -0.82252884, - -0.51934344, -0.56327266, -0.7227502, -3.3336737, -1.7423038, - -0.43245125, -1.9291143, -0.42872545, 0.7361987, -1.5468985, 0.17433009, - -0.6127757, -1.2322941, -0.13244393, 0.6995215, -2.390514, 0.2229638, - -1.5674324, -1.9887439, -0.5919128, -0.5325029, -1.3073435, -0.69871056, - -0.5410317, -0.66239125, -1.2499853, -0.01878066, -0.10585729, - 0.54126906, -0.19599134, -2.5910296, -1.7924848, 0.81477374, - -0.20985992, -2.6732616, -1.7672609, -0.41798645, -1.4195323, - -1.6002395, 1.9008864, -0.667484, -0.123441935, 0.12274317, -0.6062977, - -1.5220326, 0.49365982, -0.9276258, 1.8946677, -2.6892047, -1.7631742, - -2.0880976, 0.06778463, -1.2230283, -1.8753493, 1.0569352, -0.008712607, - -0.17040603, -0.30936092, 0.30766967, -1.0362172, -0.51675874, - 0.33972743, -1.4425493, -1.4426308, 0.109500915, -1.9221666, - -0.33044812, -0.03390094, -1.7248827, -1.346586, 0.6926322, 0.3287721, - -2.2525318, 0.3333636, 0.005329676, -0.4263467, 0.29902703, -0.9699627, - 1.55275, -0.8496522, -0.024731532, -1.144245, -2.2881777, -1.0028459, - -1.5849614, 0.75567526, -1.2971605, 0.30547842, -1.586871, -0.5436671, - -1.8426154, -2.2828991, -1.1531097, -1.2930512, 1.1780825, 0.32336667, - 1.2960615, -1.6189705, -0.5608055, -0.6262348, 1.2611918, -0.11631915, - 0.29195848, 0.15560043, -1.6279563, -1.9077178, -0.49722016, -0.5966121, - 0.032742985, -0.34984347, -0.7729468, -0.09708679, -1.2802606, - -0.9766448, 0.42033103, 1.1129037, -0.4947265, -1.5003618, -0.10832053, - 1.9942658, -0.65137917, -2.768499, -1.9168894, -1.7285511, -0.8837632, - 0.50306284, -1.658136, -0.9872698, -1.191228, 2.1280591, -0.7298431, - -1.869781, -1.256057, -0.31048405, -1.1137424, 0.66129416, 0.11278662, - 0.6090692, 0.3492403, -1.0326043, -1.6816605, -0.3208346, -0.42114496, - 0.06687, -0.9704144, -0.65135586, -1.2960314, -0.74024224, -0.5456175, - -1.6529739, 1.210387, -1.6874387, -0.349652, -1.5784508, -2.0618598, - 0.5137286, 0.91564345, 0.116269775, -0.5287564, -1.502588, -0.047892466, - 0.16083023, -0.5813388, 0.23668914, 0.03811066, 0.04613586, -0.3758244, - 1.2380714, -2.4093044, -1.6915013, -0.13044383, -1.347681, -0.570282, - -0.81598455 - ], - "reducedFeatures": [ - -0.013339053, -0.04611568, -0.054174084, -0.023237938, -0.011180072, - -0.03905573, -0.036558185, 0.010014461, 0.009915551, 0.01986695, - -0.03406776, -0.0050981357, -0.03477957, -0.043434713, -0.04023644, - 0.026568554, -0.039510246, -0.038627673, -0.004581261, 0.02481128, - -0.03602376, -0.02837953, -0.02683256, -0.0015974183, -0.020996157, - -0.026555493, -0.021234518, 0.012380824, -0.012537585, -0.021931417, - -0.02313822, -0.010055899, -0.051674716, -0.038755476, 0.027083542, - -0.03785034, 0.063921236, -0.0057525397, -0.07323504, -0.0071940217, - -0.03348354, -0.04874299, 0.01410036, 0.02857318, -0.041634835, - 0.018473124, 0.011901824, 0.038233932, -0.021289444, -0.016025826, - 0.0022943278, 0.0010870438, -0.03028817, -0.0137927225, 0.004932864, - -0.04214631, -0.0053274576, -0.057241, 0.00057120883, -0.03132087, - 0.007452905, -0.03839626, -0.07044081, -0.03864544, -0.0031488566, - -0.033196308, -0.05176796, 0.010403724, -0.060981065, -0.048811097, - 0.017880257, -0.07255946, -0.030111305, 0.032816272, 0.068941675, - -0.03264654, -0.03762313, -0.0071913954, -0.03321081, -0.046447717, - 0.044999357, 0.009191026, -0.021530751, 0.010284936, 0.020525502, - -0.022491544, -0.042915616, -0.01919059, 0.0042682206, -0.008279085, - -0.038140457, 0.0050611924, -0.029822303, 0.03807207, -0.012502482, - -0.031518765, -0.049439315, -0.012259117, -0.050083682, 0.009641384, - -0.024286933, 0.017227108, 0.027542457, 0.004978283, 0.015048823, - 0.01731863, -0.023911348, -0.04415862, 0.00877249, -0.03861061, - 0.015722698, 0.02203787, -0.0045945486, -0.009381493, 0.0057782293, - 0.016951311, -0.044471547, -0.10245639, 0.02714402, 0.003883922, - -0.003963608, -0.010792446, -0.004155681, 0.0024466417, -0.012391619, - 0.00058145495, -0.013888158, -0.022544758, -0.038359556, -0.009505212, - -0.011289362, -0.02669539, -0.015304788, 0.064740546, 0.059091028, - 0.05648628, -0.018121231, 0.012918444, -0.0052659856, 0.008099875, - -0.021988539, 0.010143264, -0.031176671, 0.025223076, -0.01391299, - -0.024970384, -0.017826762, 0.0056478456, -0.0237346, -0.025738308, - -0.00826187, 0.01635973, -0.042882863, -0.028921152, -0.010604361, - -0.009148638, -0.010841262, 0.007018361, -0.024105152, -0.024563104, - -0.010956823, -0.011325456, 0.00272197, -0.0409956, -0.0077287992, - -0.029554581, 0.018044645, -0.040965915, -0.006315492, 0.017984388, - -0.031073404, -0.049081236, -0.00079420366, -0.013188643, -0.0919383, - 0.00033732434, -0.031419896, -0.010346217, -0.040906608, -0.048589718, - -0.0042546657, 0.0034514002, -0.029489383, 0.007594805, -0.0040534316, - -0.048884146, -0.023027975, 0.015027757, -0.045598466, -0.018518243, - 0.0198183, -0.0032162163, -0.029319251, -0.025876591, -0.0249324, - -0.025959384, 0.004703606, 0.010298164, -0.029392792, -0.007827866, - 0.0123029845, -0.004281582, -0.016629176, -0.0023479168, -0.044517934, - -0.024180932, -0.0044379276, -0.017224893, -0.0254911, 0.0034331915, - -0.01519131, -0.0101469355, -0.026544137, -0.013637089, -0.050150283, - -0.0047485665, 0.017530812, 0.050941557, -0.017378189, -0.016033698, - -0.0869705, -0.024554187, -0.01574378, -0.056829095, 0.0031855628, - -0.005359303, -0.01989136, 0.022725943, -0.0089587765, -0.039476857, - 0.010042416, 0.016156046, -0.008462426, -0.029414076, -0.004127979, - -0.03235429, -0.025526153, 0.012317114, -0.020148512, 0.0040830513, - 0.013505665, 0.001158437, -0.003947618, -0.041379478, 0.00481062, - 0.012533392, 0.032254104, -0.03954378, -0.036365002, -0.015395857, - -0.06318698, -0.012704999, -0.008577102, 0.004820959, -0.038227588, - -0.062806696, -0.012992474, -0.023736464, -0.05087434, -0.038539607, - -0.041814473, 0.0030717866, -0.059793357, -0.0016919074, -0.017463217, - 0.0025710824, -0.025028743, -0.02273258, -0.03405603, -0.012261086, - 0.012784438, -0.029063707, -0.0024696912, -0.04633492, -0.050519153, - 0.03317818, -0.04690544, -0.065864846, -0.052334514, -0.013325782, - 0.0045729764, -0.033185497, -0.034743, -0.08548529, -0.015816865, - -0.026737774, -0.020187438, -0.019862873, 0.011228838, -0.0064524193, - -0.018112611, -0.0072804424, 0.020538013, -0.05458638, -0.025138022, - -0.0036926807, -0.05528291, 0.015537676, -0.0110102855, -0.007329425, - 0.0056795324, -0.024183478, 0.006942719, -0.045289855, -0.050261308, - -0.046908453, 0.012692423, -0.02196897, 0.011895857, 0.02962019, - 0.044369113, -0.0115053775, -0.012887393, 0.0058499714, -0.02621904, - -0.026752304, -0.039575536, -0.01569493, 0.028811758, -0.042260647, - 0.01822038, -0.02137998, -0.04388894, 0.03279927, -0.021451103, - -0.016854795, -0.009589101, -0.024712767, 0.0006430245, -0.036975633, - 0.013595924, -0.026525917, -0.0012836978, 0.0031507278, -0.04894297, - 0.006411509, -0.03505034, -0.035598654, -0.018303204, -0.05723886, - -0.022981785, -0.044151, -0.009967265, 0.005398279, 0.00015157826, - -0.052328493, -0.033369515, -0.0070736804, -0.0235237, -0.04985315, - 0.003242976, 0.03291727, 0.019194271, -0.014507077, -0.023796353, - -0.04053441, -0.018059986, -0.020644082, -0.032716528, -0.044537365, - -0.035796847, 0.023346856, -0.006051099, -0.0419096, -0.04616414, - -0.006070038, -0.035935156, -0.060833614, -0.035582937, -0.01914224, - 0.01966136, 0.022513822, -0.07558855, -0.00803589, -0.016056733, - -0.01193975, -0.00611466, -0.0054905694, -0.017701823, -0.034960985, - -0.027631465, -0.02792099, 0.022330951, 0.02007127, 0.007515755, - -0.081177615, -0.019825134, -0.014456314, 0.01903005, -0.037455164, - 0.024741584, -0.00038586115, -0.023270288, -0.033455238, -0.020225825, - -0.018434122, -0.049233936, -0.03557528, -0.02837549, -0.025584597, - -0.043051247, -0.04484376, -0.031360786, -0.004032312, -0.035545558, - -0.04698453, 0.005519896, -0.0614527, -0.041895486, -0.014981975, - -0.017506136, -0.024824252, 0.026969686, -0.012910184, -0.011703541, - -0.032192383, -0.013615947, -0.0344858, 0.022535603, 0.018416215, - -0.0097430935, -0.024522806, -0.0017855896, -0.020227732, -0.0061642495, - -0.034256727, -0.018206034, -0.0043714684, -0.018614568, -0.041798364, - 0.019729484, 0.005592786, -0.025555996, -0.052185442, 0.0058275913, - -0.010950195, -0.0030956713, -0.030514002, -0.018328628, -0.009460268, - -0.066840984, -0.007553112, -0.03496621, -0.043133896, -0.030814452, - 0.034394234, 0.025709396, -0.041295994, 0.017793048, -0.034711845, - -0.010312681, -0.052513186, -0.018345432, -0.057392713, -0.04314854, - -0.038654063, -0.018132033, -0.006414247, -0.016858304, 0.020343492, - -0.028406335, -0.035861503, -0.021323564, -0.04615707, -0.0021037534, - 0.028040094, -0.023646796, -0.024153685, -0.0507459, -0.014832116, - -0.058928385, -0.038076285, -0.02575083, -0.035361275, 0.020151079, - -0.034799747, -0.0086333025, 0.0056256517, -0.036940124, 0.0087915305, - -0.08107575, -0.0134944115, 0.0289295, 0.05409882, 0.0062900125, - -0.05061408, -0.02890607, 0.041331876, 0.0024064058, -0.027076863, - -0.01715811, -0.055576775, -0.06904878, -0.008430132, -0.034920823, - -0.011573441, -0.019852037, -0.029555975, -0.044105306, -0.01512088, - 0.017206514, -0.015414073, 0.019856911, 0.010018967, -0.01586036, - -0.050274596, 0.030616984, -0.009253842, -0.036051054, 0.011909303, - 0.0016778571, 0.0033661386, 0.0052847774, -0.02625397, -0.031877667, - -0.02642046, 0.020994145, -0.02836356, -0.019001786, -0.029695991, - 0.036524218, -0.014361519, 0.03550355, -0.037917122, -0.0020988216, - 0.021266095, 0.0073359422, -0.010930205, 0.027215723, -0.0075779753, - -0.017685438, -0.0006229155, -0.027354307, 0.022646412, 0.04749322, - -0.035214063, -0.04796933, -0.021449976, -0.022848275, -0.058846008, - -0.044442832, -0.0010810129, 0.0029069665, -0.036134966, -0.024200939, - 0.008279375, 0.0020319058, -0.0003698709, -0.04457541, -0.009077735, - -0.015088354, -0.017700883, 0.028253771, -0.0023343374, 0.02166203, - -0.02598593, 0.019223835, -0.054122623, -0.0074092313, -0.06120919, - -0.021226253, -0.0057696654, 0.0151206795, 0.0045970236, -0.00617436, - -0.03864756, -0.009672517, 0.017939301, -0.016633391, -0.022597695, - -0.012114502, -0.024965506, -0.043776408, -0.049621563, -0.053304005, - -0.1062448, 0.018837072, 0.02864685, 0.026325133, 0.004511909, - -0.024201728, 0.03189324, -0.0016738184, -0.04868143, -0.04328603, - -0.0076452717, 0.01676386, -0.014158468, 0.004670264, 0.012835631, - -0.025844239, 0.009262582, -0.009767292, -0.04402842, -0.018750336, - -0.008350629, -0.019877812, -0.007487548, -0.04128532, 0.005511351, - -0.0435332, 0.03716016, -0.06105093, -0.056654077, 0.006152882, - 0.019635396, -0.058231466, -0.052051544, -0.0018459893, -0.04711935, - -0.042821072, 0.0102026705, 0.014344691, -0.059518784, 0.005990809, - 0.0009979911, 0.038712017, 0.009514875, -0.040670227, -0.026394596, - -0.045625113, -0.026637407, -0.005126086, -0.028105302, -0.0040918686, - -0.039993275, -0.0024423872, 0.0021341487, -0.026179137, 0.03393238, - 0.0023069237, -0.025043566, -0.013183754, -0.021487892, -0.020223182, - -0.03549004, -0.002816184, 0.014583613, 0.006309198, 0.0015863958, - -0.068308726, -0.005727997, -0.028645763, -0.0030145035, 0.01534711, - -0.0073400564, -0.037198436, -0.02915201, -0.047276564, -0.010957286, - 0.017405912, -0.01872189, 0.029130181, -0.023717824, -0.048084322, - -0.0049102935, -0.018568967, -0.05930834, -0.045280572, -0.06749383, - 0.0007966954, -0.025425347, -0.023924323, 0.0037278277, -0.04058844, - -0.020789947, -0.045083318, 0.0033076513, -0.00043909156, 0.015684303, - -0.038464125, 0.0045375, -0.074442655, -0.00545942, -0.048558325, - 0.0020624273, -0.03754098, 0.029788697, -0.035089754, -0.022666054, - -0.056762807, -0.0027827795, 0.029689454, -0.04494295, -0.001399139, - 0.0060155494, -0.054702938, 0.01458399, -0.04355327, -0.0076718396, - -0.009049736, 0.015056914, 0.032163624, -0.0466851, -0.04499643, - 0.054207303, -0.00763111, -0.02175286, 0.05870425, -0.0051238793, - -0.032387856, 0.008204548, -0.024599029, 0.006531887, -0.021403503, - 0.00984491, -0.052515063, 0.009372166, -0.023353098, -0.025430663, - -0.02774426, 0.05386562, -0.01332216, -0.007545505, -0.027684761, - 0.030684605, -0.058489896, 0.0031764724, -0.051054258, 0.011968352, - -0.04798525, 0.006054503, -0.016537013, 0.016894482, 0.033681076, - -0.0089492155, -0.03267932, -0.0034813506, -0.062455177, -0.008828014, - 0.0152292205, 0.0007337164, 0.026025292, -0.020569585, 0.030053305, - -0.03488787, 0.022533687, 0.0071826857, 0.036500957, -0.06227609, - -0.05749717, 0.013764039, -0.014030442, -0.024143653, -0.033684634, - 0.0012472469, -0.0137701575, -0.020832319, -0.06963424, -0.04793979, - 0.016489286, 0.009851552, -0.0065701334, -0.012878771, -0.009992286, - 0.0143193845, -0.035561465, -0.0077023697, 0.016732618, -0.022251714, - -0.0011280802, -0.033840775, -0.02139347, 0.02382246, -0.0064971396, - -0.036160547, 0.019718695, -0.011261622, -0.019590659, 0.007223029, - -0.020505846, -0.013292865, 0.006299757, -0.05152342, -0.051071946, - -0.015246597, 0.026891522, -0.025934683, -0.043905016, 0.04957257, - -0.0086288275, -0.014266892, 0.026837075, -0.027789347, -0.030571954, - -0.049791448, -0.07841085, -0.0025132825, -0.036334448, -0.06608902, - -0.020424014, -0.006640303, -0.04828582, -0.03533456, -0.039085057, - -0.0033741312, -0.028987834, -0.061278615, -0.009654315, -0.06424877, - 0.035891734, -0.034448095, -0.015511738, 0.005709791, -0.023211643, - -0.018945303, -0.032021903, -0.020198312, -0.018450033, 0.0056360816, - 0.0042891093, 0.0022404194, -0.06846237, -0.060936768, -0.026646761, - -0.027939675, -0.020498734, -0.016325515, -0.057736382, -0.031589672, - 0.031889003, -0.0141425505, 0.00196153, -0.098909065, -0.05364014, - -0.0049458756, 0.025889905, -0.023731673, -0.004722758, -0.025943965, - -0.013894861, -0.08043, -0.076887086, -0.00036145578, 0.026995465, - 0.00347134, -0.024735738, -0.023336625, 0.009897731, -0.05027559, - -0.056577727, -0.0005485399, 0.001837189, -0.04957352, -0.03378241, - -0.010153813, -0.027816491, -0.058112826, 0.0037275113, -0.019182855, - -0.0007392003, 0.017205723, -0.059401024, -0.023791512, 0.0016023895, - 0.018678173, -0.0048205974, -0.050011214, -0.026211232, -0.029720886, - -0.040893715, -0.0608639, -0.05692185, -0.03412783, 0.0044184974, - -0.020720884, -0.08319181, -0.06363649, -0.055534404, 0.00413653, - -0.015886927, 0.04279939, -0.028943202, -0.030548602, 0.050884124, - -0.06561293, -0.038509358, -0.037123434, -0.028307615, 0.00037713046, - -0.016149754, -0.030740613, -0.008968217, -0.06739807, 0.000924252, - -0.036614887, -0.05850689, 0.045628168, -0.0029476916, -0.04472389, - -0.012419462, -0.063121304, -0.06761778, -0.017109687, -0.011524906, - 0.007107164, -0.043166522, 0.009976513, -0.0089496365, -0.04884101, - 0.0061557833, -0.04036459, 0.008357624, -0.020227632, 0.0017012489, - -0.009230583, -0.018828975, -0.005945377, 0.012606569, -0.052615706, - -0.009351555, 0.01996489, -0.048838217, 0.0150905335, -0.025128031, - 0.012404785, -0.009705258, -0.040517524, 0.0143533535, -0.04660876, - 0.012800038, 0.04568409, -0.007436527, -0.037076354, -0.018777106, - -0.014698658, 0.013205724, -0.009615785, -0.021801861, 0.0045290864, - -0.00834286, -0.022986967, 0.0075949943, -0.002899091, -0.0423746, - 0.0077395234, -0.005926359, -0.04722288, -0.011412003, -0.004866876, - 0.012597916, -0.009014331, -0.027071852, 0.007238497, -0.05166247, - -0.0048215785, -0.034851335, -0.052974377, -0.023978585, 0.0012213022, - -0.04305593, -0.014585902, -0.011673061, -0.03055017, -0.027135313, - 0.0015083519, -0.013612398, 0.016214365, -0.03127049, -0.057959903, - -0.00078230165, -0.049914245, 0.025509732, -0.028828042, -0.022094246, - -0.033410653, -0.0039446717, -0.0054331324, 0.009806891, 0.007513078, - -0.003014243, -0.054322954, -0.020389585, -0.024299208, -0.07931499, - -0.019504188, -0.03947358, -0.0323238, -0.039605383, -0.039204065, - 0.00026454378, -0.04035554, 0.0029745672, -0.02180163, -0.039732963, - 0.0035904015, -0.02344327, -0.015672363, -0.02415907, -0.009507519, - 0.019262228, -0.04227584, -0.065985136, -0.050403904, -0.0020163655, - 0.014189364, -0.02016396, 0.004116093, -0.016937228, 0.019103497, - -0.012168053, -0.04111054, -0.011804719, -0.018511916, 0.03692325, - -0.008793065, 0.0013480084, -0.009140236, -0.025226617, 0.016073463, - -0.05022727, -0.025011402, 0.029990964, -0.058650624, -0.004542573, - -0.025146985, -0.015671853, -0.0024386246, -0.005377403, -0.019601947, - -0.0411963, -0.0066565005, -0.044046093, 0.01313969 + "features": [ + -0.0045875977, + -0.022141887, + -0.023229208, + -0.011249465, + -0.0053183376, + -0.018349975, + -0.01979642, + 0.0028587733, + 0.00023199803, + 0.009954701, + -0.016459798, + -0.0047347313, + -0.01596542, + -0.02167405, + -0.018661287, + 0.010964322, + -0.02062093, + -0.017000774, + -0.006559274, + 0.011230473, + -0.0131207025, + -0.012844365, + -0.013915784, + 4.878058e-05, + -0.0124194715, + -0.011587164, + -0.01256797, + 0.0053847455, + -0.004043926, + -0.009305444, + -0.009340577, + -0.0052009565, + -0.024203848, + -0.01897567, + 0.0161475, + -0.015297871, + 0.030142039, + -0.0038485453, + -0.03434207, + -0.004874382, + -0.016103141, + -0.021082437, + 0.0011658521, + 0.010118772, + -0.019500494, + 0.0071240007, + 0.008947601, + 0.015421547, + -0.007947015, + -0.009168547, + 0.00015011276, + -0.0015007522, + -0.01606947, + -0.0064746253, + 0.004655315, + -0.020630572, + -0.002900416, + -0.024527011, + 0.00017590848, + -0.015298043, + 0.004722246, + -0.018208887, + -0.032740425, + -0.018342068, + -0.0016516052, + -0.0117863715, + -0.024620721, + 0.0064569963, + -0.03259715, + -0.024331735, + 0.008797159, + -0.032419194, + -0.013871403, + 0.019191215, + 0.033541087, + -0.015873704, + -0.017926514, + -0.0017380241, + -0.017949004, + -0.022018356, + 0.019972127, + 0.0048159193, + -0.0115068555, + 0.0048639784, + 0.012416601, + -0.011741664, + -0.02580281, + -0.0068900613, + 1.5352767e-05, + -0.0068121036, + -0.019133085, + 0.0022233382, + -0.012269661, + 0.017391546, + -0.010461685, + -0.017245555, + -0.021020012, + -0.008342584, + -0.025394922, + 0.0050603026, + -0.00822595, + 0.0042875092, + 0.01031653, + 0.0034863064, + 0.006764483, + 0.006940363, + -0.009824529, + -0.019793268, + 0.0032900816, + -0.017207623, + 0.00897223, + 0.012109688, + -0.0019966057, + -0.0050961263, + -0.0009612278, + 0.0069182455, + -0.019649025, + -0.046871573, + 0.014423126, + -0.0015008794, + -0.002123354, + -0.006777102, + -0.0035884273, + 0.0028870758, + -0.004969933, + -0.00051171804, + -0.005520269, + -0.011901534, + -0.017094977, + -0.009519063, + -0.0053754277, + -0.012051792, + -0.0055572614, + 0.03054259, + 0.026965497, + 0.025021596, + -0.007851873, + 0.0044282926, + -0.0048965514, + 0.005442635, + -0.0106813535, + 0.0051402478, + -0.017413951, + 0.0138062285, + -0.009718316, + -0.013522216, + -0.008036382, + 0.0007896654, + -0.012126061, + -0.012805615, + -0.005165269, + 0.007525992, + -0.021679064, + -0.011266085, + -0.005618841, + -0.0035510631, + -0.007108381, + 0.0013590176, + -0.010125269, + -0.011842951, + -0.004216142, + -0.005048249, + 0.0043450124, + -0.019469818, + -0.0038359147, + -0.0106246695, + 0.008623882, + -0.017112471, + -0.0064358376, + 0.009093329, + -0.016452946, + -0.02561013, + -0.0004094972, + -0.0028440568, + -0.044110063, + 0.0029460767, + -0.015381207, + -0.0032920411, + -0.022203224, + -0.021289831, + -0.0035567782, + -0.0025398992, + -0.012865058, + -0.00087795244, + -0.0017878653, + -0.021333955, + -0.011504577, + 0.011434109, + -0.023617847, + -0.0104694655, + 0.010794217, + -0.0015346074, + -0.011589211, + -0.015163865, + -0.013516227, + -0.008953202, + 0.00053952297, + 0.002760347, + -0.015450823, + -0.0038463266, + 0.0057750214, + -0.002109166, + -0.00680104, + -0.004198518, + -0.024022132, + -0.009726936, + 0.0019669116, + -0.008908396, + -0.011426335, + 0.0038069303, + -0.0070593907, + -0.005332877, + -0.012306241, + -0.0059117293, + -0.025249757, + -0.0009367164, + 0.010853005, + 0.022008864, + -0.007768032, + -0.0075692716, + -0.03965387, + -0.013106514, + -0.007893732, + -0.022853905, + 0.00021355874, + -0.0012784232, + -0.008076649, + 0.008970014, + -0.005558427, + -0.017766537, + 0.0039407606, + 0.011211416, + -0.0005206586, + -0.016318163, + -0.00028346098, + -0.014695906, + -0.010480499, + 0.0031114586, + -0.0074194, + 0.00029050797, + 0.006921945, + 0.00041522615, + -0.0008949093, + -0.02185308, + 0.0022120473, + 0.008598493, + 0.016113652, + -0.022011466, + -0.017282208, + -0.0048578717, + -0.030405274, + -0.0077120974, + -0.0010666637, + 0.003336605, + -0.01375092, + -0.028740719, + -0.0077721463, + -0.012819139, + -0.025004439, + -0.016380636, + -0.02207133, + 0.0012744097, + -0.029266927, + -0.0004983888, + -0.007932798, + 0.0042572618, + -0.011520403, + -0.008359434, + -0.014754608, + -0.008435876, + 0.0071900073, + -0.01464748, + 0.00028034212, + -0.025301153, + -0.02567682, + 0.016612431, + -0.02030005, + -0.029909804, + -0.024387786, + -0.0054242327, + 0.002587678, + -0.01733882, + -0.014797672, + -0.043174826, + -0.0074738045, + -0.014524899, + -0.009905738, + -0.005422616, + 0.003878995, + -0.001373986, + -0.009916904, + -0.0072061345, + 0.01026225, + -0.02561486, + -0.011432098, + -0.0010765272, + -0.025912588, + 0.008776832, + -0.0065576206, + -0.0032710184, + 0.0018820418, + -0.015102279, + 0.005237041, + -0.020707943, + -0.023798324, + -0.024789643, + 0.0066761086, + -0.009103553, + 0.0041434933, + 0.010663358, + 0.022433668, + -0.0060202708, + -0.00649377, + 0.0018460487, + -0.015276855, + -0.013359602, + -0.016355824, + -0.0073604127, + 0.01530693, + -0.023009313, + 0.0064926944, + -0.00989638, + -0.021236954, + 0.015277911, + -0.01316112, + -0.0077950456, + -0.0041504204, + -0.012955389, + -0.0019736593, + -0.01853198, + 0.00438322, + -0.01214661, + -0.00039833004, + 0.0023371622, + -0.02215965, + 0.0022960776, + -0.019846285, + -0.020822195, + -0.0062483493, + -0.025657382, + -0.011509668, + -0.022507232, + -0.004425961, + 0.004506573, + 0.002010038, + -0.02399537, + -0.014884454, + -0.0019698134, + -0.012219775, + -0.0230521, + 0.0021180043, + 0.013745329, + 0.0069453553, + -0.004949872, + -0.012148328, + -0.022289619, + -0.008217758, + -0.011301767, + -0.014977622, + -0.021294184, + -0.011936833, + 0.013085922, + -0.0037259734, + -0.021111824, + -0.021511089, + -0.00265814, + -0.017797725, + -0.031113354, + -0.017868817, + -0.008879021, + 0.007078894, + 0.009225184, + -0.036220655, + -0.0052428534, + -0.009222013, + -0.005462113, + -0.0012404182, + -0.005440519, + -0.0076761846, + -0.0145790735, + -0.016466925, + -0.014198539, + 0.009801268, + 0.011289723, + 0.0023991992, + -0.040873025, + -0.009690479, + -0.011043502, + 0.009724167, + -0.01613079, + 0.012463448, + -0.0002915984, + -0.01159949, + -0.015279975, + -0.010003691, + -0.01137377, + -0.021589205, + -0.016556902, + -0.015445238, + -0.013830553, + -0.018427895, + -0.02281924, + -0.017930672, + -0.0046155676, + -0.013652232, + -0.018328581, + -0.0008704369, + -0.028959194, + -0.02136295, + -0.00547651, + -0.00672433, + -0.012891172, + 0.013237194, + -0.006370094, + -0.0070926924, + -0.017583845, + -0.007669395, + -0.018451333, + 0.0119425515, + 0.008565421, + -0.0063896477, + -0.0136269005, + -0.0022522346, + -0.011767897, + -0.0026661633, + -0.016557017, + -0.0089520635, + -0.00083775603, + -0.0077462946, + -0.023310909, + 0.008565172, + 0.0018030272, + -0.014321621, + -0.024010614, + 0.0002706392, + -0.006074403, + -0.0024755269, + -0.015657306, + -0.00657497, + -0.0017661726, + -0.030717196, + -0.0050607966, + -0.015613354, + -0.02174305, + -0.014324107, + 0.016051931, + 0.010132423, + -0.019467173, + 0.007606122, + -0.018786673, + -0.0051421747, + -0.023194702, + -0.009677179, + -0.027778212, + -0.018948734, + -0.017638188, + -0.00719903, + -0.003397642, + -0.0076283854, + 0.010078584, + -0.013546819, + -0.016926816, + -0.010496944, + -0.022576004, + -0.0011829594, + 0.0123978695, + -0.01074446, + -0.012721023, + -0.026569927, + -0.006745478, + -0.025838787, + -0.016922208, + -0.012050298, + -0.01916046, + 0.011286372, + -0.016492527, + -0.0076274746, + 0.0006150857, + -0.019270763, + 0.0018516028, + -0.038206078, + -0.012416964, + 0.016066251, + 0.023372492, + 0.001321609, + -0.024410725, + -0.013928132, + 0.019355046, + -5.885417e-05, + -0.009538314, + -0.006753172, + -0.026616883, + -0.030865569, + -0.0050065676, + -0.01644267, + -0.005174509, + -0.010541466, + -0.014989686, + -0.023064623, + -0.003420237, + 0.0087814275, + -0.008461787, + 0.008568795, + 0.0043347953, + -0.008812764, + -0.022854386, + 0.013989527, + -0.0053040604, + -0.01575776, + 0.0040989197, + 0.0006689041, + 0.0028978088, + 0.0039105443, + -0.009769171, + -0.01643658, + -0.011101819, + 0.0076970565, + -0.012569313, + -0.005907536, + -0.012998641, + 0.017874105, + -0.0077472413, + 0.015418899, + -0.016091045, + -0.0018181747, + 0.0065948, + 0.0051056542, + -0.0022468285, + 0.011977399, + -0.0061256364, + -0.008216982, + -0.001521326, + -0.010878756, + 0.011038881, + 0.02431638, + -0.016180558, + -0.021938745, + -0.009120104, + -0.009053899, + -0.023669658, + -0.02091756, + -0.0035531211, + 0.001159161, + -0.017661378, + -0.014200461, + 0.0030928494, + -2.5164686e-06, + 0.0007282169, + -0.0243114, + -0.0035176682, + -0.0061307875, + -0.0066410406, + 0.015885897, + -0.00026220398, + 0.011909063, + -0.010830556, + 0.009833813, + -0.024509136, + -0.005239692, + -0.0267779, + -0.010516156, + -0.003339653, + 0.0066088117, + 0.0009652361, + -0.004723881, + -0.018940413, + -0.0032826164, + 0.0083628055, + -0.004065364, + -0.0073203826, + -0.007112848, + -0.010457764, + -0.01980646, + -0.022736184, + -0.02589047, + -0.048523635, + 0.00879287, + 0.014500757, + 0.012796718, + 0.0022364126, + -0.011875833, + 0.011364679, + 0.001623014, + -0.024285484, + -0.016016668, + -0.005919786, + 0.006302891, + -0.011800103, + 0.0031418095, + 0.0056031574, + -0.014308752, + 0.0044235988, + -0.0055426457, + -0.025247615, + -0.00820056, + -0.00410539, + -0.009148241, + -0.0031261032, + -0.022488764, + 0.00030515617, + -0.018535027, + 0.015078605, + -0.026450338, + -0.02594617, + 0.00048754798, + 0.01176788, + -0.026548332, + -0.02441623, + -0.0015769551, + -0.023411872, + -0.020360272, + 0.0033062436, + 0.006919279, + -0.028934306, + 0.0014634241, + 0.00027413413, + 0.018324947, + 0.0070853187, + -0.018419601, + -0.0112339975, + -0.023872305, + -0.009810457, + -0.0017269658, + -0.013667615, + -0.0010813549, + -0.017135419, + -0.002862146, + 0.0012694442, + -0.011888341, + 0.01663585, + 0.0036407178, + -0.011606654, + -0.005362021, + -0.009248188, + -0.009305569, + -0.015709314, + 0.0029041183, + 0.004462505, + 0.00034417576, + 0.00014997594, + -0.032547913, + -0.00094728556, + -0.010841994, + 0.0013547613, + 0.00818695, + -0.0078409, + -0.019210273, + -0.01347908, + -0.018334262, + -0.0032804648, + 0.007873035, + -0.006257547, + 0.014539917, + -0.012627189, + -0.022959737, + -0.005974909, + -0.011508293, + -0.030564373, + -0.020398473, + -0.03254504, + 0.0009936858, + -0.012168284, + -0.012704107, + 0.0005802202, + -0.017318469, + -0.011269411, + -0.02259647, + 0.0014009948, + 0.0016552067, + 0.008720409, + -0.018034598, + 0.00047817177, + -0.034658484, + -0.003989583, + -0.027732812, + 0.0008983554, + -0.018213293, + 0.015468737, + -0.017418116, + -0.010003145, + -0.026446607, + -0.0014610797, + 0.012982018, + -0.017698392, + -1.583045e-05, + 0.0016342287, + -0.025122307, + 0.0036490667, + -0.021210765, + -0.0060853316, + -0.0022123281, + 0.0061031864, + 0.012113927, + -0.022797508, + -0.019776389, + 0.028438456, + -0.004344545, + -0.0113345655, + 0.027809467, + -0.0037984436, + -0.016621849, + 0.0018499686, + -0.011544719, + 0.003089708, + -0.008787182, + 0.0030940888, + -0.024756627, + 0.0045169177, + -0.010252866, + -0.009044671, + -0.012428672, + 0.023191841, + -0.0046023703, + -0.004410942, + -0.014949787, + 0.012615265, + -0.031216905, + -0.0040982035, + -0.022803338, + 0.0070274523, + -0.022530138, + 0.0011324609, + -0.0073772697, + 0.0069937063, + 0.01579728, + -0.0052312925, + -0.019526944, + -0.001175913, + -0.0269024, + -0.0048864502, + 0.006887589, + -0.00057558063, + 0.006626906, + -0.010105037, + 0.010472805, + -0.016571397, + 0.011579704, + 0.0018422782, + 0.016804347, + -0.02621499, + -0.0278372, + 0.005135515, + -0.007040744, + -0.007425752, + -0.01354737, + -0.0017331966, + -0.0076102335, + -0.009794669, + -0.03427616, + -0.022490399, + 0.0058098487, + 0.0041836803, + -0.0021508858, + -0.0034638382, + -0.005263781, + 0.0052789743, + -0.017486988, + -0.0032996882, + 0.007895111, + -0.013434303, + 0.0034668136, + -0.016958792, + -0.011418587, + 0.011983623, + -0.0030527886, + -0.01701806, + 0.012764199, + -0.0026848295, + -0.01016085, + 0.0032578094, + -0.010354548, + -0.0044013998, + 0.004209259, + -0.023282599, + -0.022796517, + -0.008167873, + 0.015194214, + -0.014184226, + -0.021174664, + 0.02409869, + -0.001664555, + -0.010327042, + 0.012654917, + -0.011009326, + -0.013966577, + -0.02484941, + -0.037453346, + -0.00293182, + -0.01795721, + -0.031666808, + -0.011224141, + -0.003525361, + -0.019506136, + -0.017257454, + -0.01750206, + 0.0004583521, + -0.0120000625, + -0.02668392, + -0.0019610473, + -0.03511786, + 0.012978797, + -0.015729431, + -0.00870793, + 0.0031678888, + -0.01371776, + -0.009482135, + -0.015066945, + -0.010260142, + -0.0070628305, + 0.003720244, + 0.0019090943, + 0.002833935, + -0.031593215, + -0.027796093, + -0.0135922115, + -0.014760509, + -0.011009607, + -0.004651458, + -0.026172342, + -0.013910922, + 0.01707339, + -0.0071726004, + 0.0017754516, + -0.046404846, + -0.025422664, + -0.0044888724, + 0.012534442, + -0.012501561, + 0.00018686792, + -0.01127657, + -0.004565899, + -0.038454663, + -0.036799535, + 0.00080233155, + 0.013673144, + 0.0006354271, + -0.012410631, + -0.010267632, + 0.0039377864, + -0.020668546, + -0.026506288, + -0.0020320767, + 0.005121188, + -0.020904532, + -0.01468564, + -0.0025949369, + -0.014943831, + -0.02451087, + 0.004773606, + -0.0055026854, + -0.0008607325, + 0.010086645, + -0.029337134, + -0.012416482, + -0.0015934081, + 0.007998251, + -0.003908805, + -0.019976582, + -0.01083942, + -0.01081378, + -0.018990515, + -0.029907528, + -0.026820004, + -0.017284399, + 0.0037801398, + -0.008112077, + -0.040285327, + -0.026662631, + -0.028091682, + 0.0071890573, + -0.009484496, + 0.018522779, + -0.014885192, + -0.018409455, + 0.02373451, + -0.031402946, + -0.019306367, + -0.018753769, + -0.015190797, + -0.0019474732, + -0.0073533207, + -0.013044566, + -0.005871496, + -0.03099876, + -2.5840081e-05, + -0.0155276675, + -0.02885734, + 0.021019224, + -0.0012698657, + -0.022472216, + -0.005663606, + -0.028942836, + -0.028432405, + -0.007997347, + -0.005679262, + 0.0025196746, + -0.017827531, + 0.005304649, + -0.0065957615, + -0.024218474, + 0.004899971, + -0.018230004, + 0.0037437887, + -0.0099136, + -4.914942e-05, + -0.0043044575, + -0.009354853, + -0.0006185153, + 0.0062812143, + -0.023693068, + -0.0014474712, + 0.008715024, + -0.023437234, + 0.0062345373, + -0.010115125, + 0.00027910402, + -0.0037210975, + -0.0151484115, + 0.008323156, + -0.022434318, + 0.0058154794, + 0.02018176, + -0.004612001, + -0.019337023, + -0.011510725, + -0.0048349975, + 0.0044508236, + -0.0060583665, + -0.009231384, + 0.0021611105, + -0.004191815, + -0.010535314, + 0.0023544668, + -0.001534324, + -0.019809918, + 0.008593845, + -0.0008111733, + -0.0214766, + -0.0059825503, + -0.0038438097, + 0.00419746, + -0.0037878356, + -0.0139015755, + 0.0035353035, + -0.022020264, + -0.0012949194, + -0.018460926, + -0.023829753, + -0.008499928, + -0.0017398968, + -0.021855822, + -0.0070905616, + -0.0049712155, + -0.017386189, + -0.007422839, + 0.0015442994, + -0.0058720927, + 0.010787167, + -0.014955439, + -0.027038442, + 0.0012215233, + -0.02285647, + 0.010586626, + -0.014625908, + -0.0103823645, + -0.016025648, + -0.005630822, + -0.0017727987, + 0.005628584, + 0.005501413, + -0.0016053783, + -0.02273825, + -0.00870333, + -0.010024028, + -0.037447497, + -0.009376368, + -0.013716597, + -0.016143294, + -0.023478057, + -0.018675847, + -0.00017887706, + -0.017728128, + 0.0006659614, + -0.010895168, + -0.016944012, + 0.0004883458, + -0.009469233, + -0.0074308785, + -0.014180486, + -0.0059094857, + 0.0065618283, + -0.015930297, + -0.034057867, + -0.024330476, + 0.0023513243, + 0.006969874, + -0.01125274, + 0.0031845826, + -0.0072562997, + 0.008584428, + -0.006374023, + -0.018873204, + -0.005265702, + -0.011405885, + 0.015266639, + -0.00013438976, + 0.0048854137, + -0.0032305587, + -0.012090025, + 0.0046482985, + -0.024452813, + -0.013096839, + 0.013168641, + -0.028721062, + -0.0034632569, + -0.012701127, + -0.006725381, + -0.0017100514, + -0.003191861, + -0.009819786, + -0.021399185, + -0.0048923995, + -0.018828163, + 0.0073967422, + -0.014199331, + -0.019305162, + -0.011861189, + -0.02275859, + -0.009033205, + 0.0053112763, + -0.005534771, + -0.0069488394, + -0.010795134, + -0.002564544, + -0.0056163473, + -0.013678336, + 0.008396669, + -0.020369304, + -0.002990613, + -0.015550576, + 0.0032069315, + -0.0057405317, + -0.016078189, + 0.003269603, + -0.0034811585, + -0.007084468, + -0.0078115356, + -0.0007724319, + -0.019961657, + -0.0132680405, + -0.0072029657, + -0.0382532, + -0.045836817, + -0.014391006, + 0.0054329177, + -0.012898618, + -0.015011523, + -0.01785192, + -0.029775228, + -0.009892656, + 0.00840518, + -0.01083603, + 0.0054554543, + -0.0045576375, + -0.004277279, + -0.015752213, + -0.035792753, + 0.0036816096, + -0.016636087, + -0.013682189, + -0.032345675, + -0.02741557, + -0.0109187085, + 0.0012606687, + -0.010891353, + -0.029690988, + -0.017027425, + -0.038982365, + -0.02240986, + -0.013736558, + -0.017073693, + -0.019225245, + -0.0187834, + 0.0060561635, + -0.0066742213, + -0.015863698, + -0.020999966, + -0.0131286215, + -0.017096242, + -0.00660341, + -0.015677495, + -0.007376266, + -0.014541626, + -0.011228607, + -0.019037109, + -0.012586331, + -0.018487327, + -0.017771415, + 0.0033949907, + 0.009323094, + -0.006208735, + -0.011634867, + -0.019512702, + -0.024620371, + -0.024279408, + -0.015547777, + -0.016939884, + -0.02150359, + -0.028320221, + -0.0083123045, + -0.001431519, + -0.013903092, + 0.028853675, + -0.003922347, + 0.0012983197, + 0.0019855895, + -0.0114306575, + -0.0052075824, + -0.02651093, + -0.022823285, + 0.0071173734, + -0.008241583, + -0.0021251056, + -0.01702718, + 0.007440521, + -0.008403734, + -0.004447171, + -0.004124387, + 0.0018272968, + -0.021756116, + 0.004351815, + -0.020030923, + -0.0038827346, + -0.009013633, + -0.020728275, + -0.0005799759, + -0.010523729, + 0.007822036, + -0.0068528694, + -0.015475597, + -0.0070271064, + -0.00995089, + -0.00026164998, + -0.004235769, + -0.015011169, + -0.03319593, + -0.008539535, + -0.007023329, + -0.008161205, + -0.0068548163, + 0.0016033393, + -0.011191832, + -0.02243424, + -0.009964702, + -0.02139996, + -0.014344509, + -0.0019888787, + -0.015083508, + -0.0071047554, + -0.00293655, + -0.01795584, + -0.014636887, + -0.013716407, + -0.013710428, + -0.007493824, + -0.009555136, + -0.004315771, + -0.031255294, + -0.028025798, + -0.015529854, + -0.0074538337, + -0.0016303839, + -0.04962594, + 0.021716788, + -0.015003548, + -0.02046178, + -0.0029562511, + -0.011583054, + 0.0018062416, + -0.018177968, + -0.0057260576, + 0.0040624817, + -0.011425223, + -0.015691295, + 0.00066848076, + -0.0112892855, + -0.0136015555, + 0.0011185188, + 0.0027495727, + -0.006735752, + -0.008762719, + -0.0019170237, + -0.011367217, + -0.026667621, + -0.026715675, + -0.026673816, + -0.030157428, + -0.008311819, + -0.009746035, + -0.020906901, + -0.005537905, + -0.007062554, + -0.025966633, + -0.018212756, + -0.017228296, + -0.014311941, + -0.008328565, + 0.005317455, + -0.025696702, + -0.026995078, + -0.010422446, + -0.004910417, + -0.027681023, + -0.01065577, + 0.019499619, + -0.015664602, + 0.008198148, + 0.017467165, + -0.035734568, + -0.0072392784, + -0.0010888211, + -0.025747502, + -0.00223761, + -0.002341017, + -0.009066499, + -0.004474561, + -0.014505339, + 0.013843472, + -0.01818152, + -0.008463453, + -0.012726141, + -0.009054836, + -0.023981957, + -0.014100742, + -0.0016849933, + -0.029895943, + 0.001274612, + -0.018826263, + -0.0119223315, + 0.006045741, + -0.009053285, + 0.0050936444, + 0.0028459285, + -0.031057034, + 0.014114693, + -0.00051341404, + -0.025159586, + -0.0015027991, + -0.030068751, + 0.004499628, + -0.010300938, + -0.014629503, + 0.008035763, + 0.024392432, + -0.0075832675, + -0.023590626, + -0.022455452, + 0.005441238, + -0.016039947, + 0.0036890362, + -0.017523475, + -0.027117334, + 0.0089017, + -0.0053687277, + -0.013473969, + -0.021502541, + -0.006659275, + 0.010507447, + -0.014578087, + -0.02444904, + -0.006515848, + -0.0035395194, + -0.019771792, + -0.011262692, + -0.0065622297, + 0.0075302916, + -0.0067853, + 0.009943025, + -0.011629623, + -0.0034353465, + 0.008178296, + -0.0319837, + -0.025789823, + -0.011363908, + -0.030756952, + -0.010548423, + -0.029899817, + -0.024822881, + 0.022033526, + -0.01248967, + -0.0101176575, + -0.0055777514, + -0.0114866495, + -0.011667652, + 0.006908817, + -0.00077845016, + -0.003784291, + -0.0038535583, + 0.0032943422, + -0.03059627, + -0.015354731, + -0.0061161756, + 0.00016946123, + -0.026296413, + 0.0042503946, + -0.01728814, + -0.0022676722, + -0.013679487, + 0.006493212, + -0.018962838, + -0.010953865, + -0.016787285, + -0.020871544, + -0.031167958, + -0.0031016066, + -0.0008674884, + -0.024127295, + -0.009219669, + -0.0031254715, + 0.0006866779, + -0.0047623874, + 0.0020611684, + -0.010013761, + -0.018540395, + 0.013100254, + -0.010062317, + -0.01628678, + -0.013728547, + -0.018063275, + 0.0004907813, + -0.016081935, + -0.0045795613, + 0.0031211427, + -0.025156138, + 0.0034911174, + -0.030226141, + -0.0009667699, + -0.018126277, + 0.001199605, + -0.030671734, + -0.021151988, + 0.0017924543, + -0.01255884, + -0.032622647, + -0.0004946283, + 0.023348441, + -0.015869962, + -0.009188181, + -0.007391071, + 0.0029538106, + -0.002559857, + -0.02171404, + -0.04097024, + 0.0069765756, + -0.017665643, + -0.020163355, + -0.0064804642, + -0.038238876, + -0.0073437537, + 0.0032207104, + 0.011939042, + -0.008422986, + 0.0075707636, + -0.0012274804, + 0.029950773, + 0.008149051, + -0.0040212707, + -0.0072589484, + 0.00042838222, + -0.019141333, + -0.02233704, + -0.010679207, + -0.025754841, + -0.034208238, + 0.004734944, + -0.025873741, + -0.015229371, + -0.0072791697, + 0.008735413, + -0.009547668, + 0.013581216, + -0.01167318, + 0.0104309525, + 0.0065004257, + -0.0099410815, + -0.019181166, + 0.015244885, + -0.04327972, + -0.013907778, + -0.011671112, + -0.020085044, + -0.022113632, + -0.0027802768, + -0.010069867, + -0.019001752, + -0.013415182, + -0.004255271, + 0.009917972, + -0.004475294, + -0.011198333, + -0.011253938, + -0.012398106, + -0.009203727, + -0.017695582, + -0.041860998, + -0.010600456, + -0.025227224, + -0.013900939, + 0.0050320355, + -0.01778166, + -0.02345885, + -0.01589175, + 0.0010929196, + -0.031763952, + 0.0028029582, + -0.021195566, + 0.0020896574, + -0.019314533, + -0.006558549, + -0.0027885996, + 0.0082411785, + -0.01044021, + -0.010721733, + -0.024468265, + -0.0024937938, + -0.005680891, + 0.0058843303, + -0.028993066, + -0.038605258, + 0.0008018413, + -0.0068772975, + -0.032213446, + -0.009646605, + -0.025946304, + -0.032126315, + -0.013368276, + -0.019322515, + -0.00016556072, + -0.013817742, + -0.0069527156, + -0.036981747, + -0.019455673, + -0.01741481, + 0.004958645, + -0.0130747985, + 0.00563101, + -0.013859092, + -0.02446068, + 0.008422641, + -0.011711331, + -0.00866024, + 0.006066019, + -0.022903824, + -0.022585947, + -0.012023967, + -0.024859577, + -0.0049969773, + -0.016522532, + -0.014650899, + -0.020731563, + -0.0032334782, + 0.013427714, + -0.0035270122, + -0.018376963, + -0.008718969, + -0.0029326028, + 0.004079899, + -0.010186603, + -0.015736153, + -0.007901405, + -0.008031943, + -0.003778621, + -0.027948558, + 0.0018587747, + -0.005504698, + -0.0043039764, + -0.012738656, + -0.0019037495, + -0.013758378, + -0.01858536, + -0.0145509625, + -0.0035414593, + -0.016074644, + -0.0036036982, + 0.0016106593, + 0.007724278, + -0.032986153, + -0.004683349, + -0.012685185, + -0.0020839514, + -0.00957446, + -0.012601385, + -0.015635323, + -0.015664231, + -0.02228646, + 0.002462359, + -0.005827691, + 0.0020319123, + -0.019115424, + -0.02425721, + 0.008194855, + -0.0088879485, + 0.02352411, + 0.0059963395, + 0.0071383854, + -0.011942267, + -0.0027537502, + -0.020513194, + -0.00540869, + -0.030215891, + -0.018258624, + -0.013861493, + -0.037504025, + -0.02917227, + -0.013260206, + -0.004380057, + -0.0033271878, + -0.010898188, + -0.008462776, + -0.0024651173, + -0.014412413, + 0.00558869, + -0.021863561, + -0.01680621, + -0.020783462, + 0.005093031, + -0.018760378, + -0.0090268105, + -0.034246404, + -0.023540847, + -0.005012929, + 0.0067748833, + 0.0074167117, + -0.016796226, + 0.0035556322, + -0.017840736, + -0.011236547, + 0.007925929, + 0.0032707176, + 0.0023011193, + -0.0009089434, + 0.004230938, + -0.01748576, + -0.012422739, + 0.0042516873, + -0.012304406, + -0.0045912345, + 0.024635071, + -0.007796832, + -0.01721408, + 0.019392531, + 0.009829951, + -0.013639993, + -0.00883043, + -0.017507255, + -0.007029492, + -0.00255825, + -0.015604784, + -0.006647281, + -0.024905132, + 0.0052483627, + -0.00974338, + -0.012231036, + 0.01169222, + -0.038153548, + 0.013137552, + -0.006092672, + -0.0027099396, + 0.005937685, + 0.012319781, + -0.011349875, + -0.0075646327, + -0.0034837432, + -0.008754731, + 0.022241531, + -0.020682631, + -0.022145357, + 0.0015853134, + -0.03849498, + -0.0058900756, + -0.03086596, + 0.0031682095, + -0.0045676725, + -0.02106356, + -0.0072695897, + -0.0046640337, + -0.013785651, + -0.032189347, + -0.02338291, + -0.004023784, + 0.0040844087, + -0.021015046, + -0.0047378354, + -0.010114653, + 0.0035576818, + 0.0009814124, + -0.008822263, + -0.0025306232, + 0.005648962, + -0.004919458, + -0.0074737323, + -0.021984177, + -0.008354903, + 0.0074937316, + 0.009769805, + -0.033290207, + 0.0047527426, + -0.0075329146, + -0.011418245, + 0.02379044, + -0.024457391, + -0.0111789545, + -0.023641009, + -0.01121666, + 0.004421589, + -0.001974719, + -0.0012011592, + -0.016237961, + 0.0054396708, + -0.0017927409, + -0.012879102, + -0.013691771, + -0.0116116395, + -0.0119382525, + -0.015670426, + -0.00073450926, + -0.009344841, + 0.0025585948, + -0.014633751, + 0.0009689968, + -0.006909609, + 0.027395485, + -0.017731832, + -0.024214126, + -0.013858132, + -0.022255152, + -0.016720705, + 0.00679929, + -0.020037748, + -0.0072839344, + -0.02587332, + -0.016670352, + 0.01273971, + -0.016227432, + 0.0013069892, + -0.026732523, + -0.005255818, + 0.009233376, + -0.007519528, + -0.0051742475, + -0.027200244, + -0.0015146699, + 0.024424592, + 0.008847579, + -0.01550125, + 0.014970248, + 0.007878725, + -0.011905239, + -0.0025828783, + -0.021637179, + 0.015045504, + 0.014294639, + 0.0004214305, + 0.0036424987, + -0.014203157, + -0.027969278, + -0.020035023, + 0.0069467127, + -0.0072682844, + -0.0028786007, + 0.01203061, + -0.03153934, + -0.011718064, + -0.004610998, + -0.024395268, + -0.00045948816, + -0.005171126, + -0.012521587, + -0.024710687, + -0.0173185, + -0.01320592, + -0.031327628, + -0.0051710503, + 0.0001838239, + -0.01816092, + 0.00553267, + -0.0029948, + -0.0158966, + 0.006587812, + -0.017342506, + -0.029576952, + -0.01663701, + -0.013719844, + 0.012433195, + -0.009279922, + -0.009586652, + 0.00387317, + 0.013993415, + -0.048765853, + -0.035953622, + -0.0107022375, + -0.012236039, + -0.0051022577, + -0.0137678785, + -0.020821907, + -0.039598405, + 0.028383814, + -0.013515315, + -0.01060381, + -0.014457874, + -0.0099427905, + -0.0053856517, + -0.0047310367, + -0.0129094105, + 0.024623344, + -0.018213602, + -0.00570001, + 0.008670397, + -0.01620801, + -0.029305164, + -0.015284258, + -0.0024578804, + -0.008149655, + -0.034510095, + 0.010342494, + -0.009320117, + -0.01610312, + -0.012744017, + -0.0134207485, + -0.018981358, + -0.02954092, + -0.019673005, + -0.005227278, + -0.009528037, + -0.02014164, + -0.009067817, + -0.010640114, + 0.00680599, + -0.032878447, + 0.017340204, + -0.01275121, + -0.00060993223, + -0.0022033944, + -0.010359974, + -0.009080075, + -0.023105586, + -0.02712335, + -0.015564277, + -0.008408549, + -0.01180887, + -0.007769372, + -0.0065603848, + -0.003778448, + 0.013544484, + -0.021978708, + -0.018696731, + 0.0012873921, + -0.013349807, + -0.011714276, + -0.0154044535, + -0.02344764, + 0.0032696237, + 0.0203497, + 0.009910658, + -0.00023691445, + -0.013493296, + -0.014840366, + -0.035178293, + -0.012131896, + 0.008380954, + -0.0072391145, + -0.010916289, + 0.013116679, + -0.037306562, + -0.014991851, + -0.009638881, + -0.006763674, + -0.0004201121, + -0.019636098, + -0.01570751, + -0.041950557, + -0.014927034, + -0.023528522, + -0.013609504, + -0.012347138, + -0.006087859, + -0.004767016, + -0.018782362, + -0.005368316, + -0.015833544, + -0.00842286, + -0.005360444, + -0.0069082375, + -0.00034710788, + -0.01775331, + -0.023308754, + -0.015053309, + -0.016727231, + -0.012702943, + -0.012424097, + -0.025707612, + 0.0050948826, + -0.007448357, + -0.039824825, + -0.0076685254, + -0.0009201872, + -0.004049431, + -0.043820724, + -0.014022525, + -0.0010503014, + -0.018675186, + 0.016934406, + -0.03300011, + -0.01887275, + 0.00042392153, + -0.023369586, + -0.014913082, + 0.010673635, + -0.020442938, + -0.007690148, + 0.0027762796, + -0.025549196, + -0.009469011, + -0.021665124, + -0.02142215, + -0.0024763849, + -0.021562647, + -0.0009742607, + -0.011984344, + -0.006875236, + -0.016406476, + -0.019855717, + 0.010929536, + 0.0061148964, + 0.010214832, + -0.010293886, + -0.00961669, + -0.00951823, + -0.008764308, + -0.012342708, + -0.032477457, + -0.021963162, + -0.019012855, + -0.0210991, + -0.015094802, + 0.003364529, + -0.0069073285, + -0.015318325, + 0.010593521, + 0.007084848, + 0.0011028828, + 0.009136185, + -0.018465549, + 0.0048577497, + -0.028840821, + 0.007315698, + -0.03241278, + -0.006030323, + -0.014198743, + -0.012395544, + 0.0064179786, + -0.013648276, + -0.015984744, + -0.014620991, + -0.035820406, + -0.035836034, + 0.00015236881, + -0.003411814, + -0.011470849, + -0.01893877, + -0.0075149112, + -0.003316693, + -0.010886654, + -0.006821405, + -0.012221775, + -0.0025249256, + -0.0019145563, + -0.010129994, + 0.006738151, + -0.021500496, + -0.012634807, + 0.007800377, + -0.004425682, + 0.0056703957, + 0.0027441485, + -0.018740522, + -0.0016602922, + -0.0041813874, + -0.0057956143, + -0.029416082, + -0.022486983, + -5.6618628e-05, + -0.03294338, + -0.017983278, + -0.012560651, + 0.005847654, + -0.016515175, + 0.0071116555, + -0.011726419, + -0.016259434, + -0.026926171, + -0.0054703834, + -0.009046253, + 0.0012180414, + 0.005702368, + -0.01407842, + -0.013724026, + -0.0037341183, + -0.015411479, + 0.012030417, + -0.030712917, + -0.022031946, + -0.0097392285, + -0.020542601, + -0.012775733, + 0.01437868, + -0.015005579, + -0.02337615, + -0.02327508, + -0.028881622, + 0.015541391, + -0.007886967, + -0.030758815, + -0.019502273, + -0.0003116809, + -0.008990998, + -0.019680828, + -0.0071648993, + 0.010087707, + -0.013987818, + -0.0035706689, + -0.0054361373, + 0.0018238109, + -0.006929772, + 0.00047324257, + 0.0007970652, + -0.030280456, + -0.021011248, + -0.02710844, + -0.04142991, + -0.004933912, + -0.027319806, + -0.0025657285, + -0.035734564, + -0.021994093, + -0.00920177, + -0.03205009, + -0.026325062, + -0.0157481, + -0.0043588188, + -0.03053566, + 0.0069866385, + -0.016284948, + -0.028313601, + 0.017049331, + -0.01726234, + -0.01939664, + -0.03226815, + -0.0054000276, + -0.013948586, + -0.017037284, + -0.019239422, + -0.033792183, + -0.0074647046, + 0.006934355, + -0.0074394876, + 0.005603452, + -0.00019245442, + -0.025041034, + -0.0033941544, + -0.01623998, + -0.03959531, + -0.028696815, + -0.027458645, + -0.004852216, + -0.0059310026, + -0.018033903, + 0.0042277444, + -0.0017437031, + -0.028187055, + -0.017163236, + -0.02688847, + -0.019287415, + -0.022920115, + -0.026353052, + -0.010845214, + -0.01835924, + -0.013836807, + 0.00071530073, + -0.017424956, + -0.015768725, + -0.018187808, + -0.008111239, + -0.01297393, + -0.011248082, + -0.019854339, + -0.021786923, + 0.011212975, + -0.020617701, + -0.019926649, + -0.009375235, + 0.0115068415, + -0.013993976, + -0.03131552, + -0.005467146, + -0.011296936, + 0.005493638, + -0.023881929, + -0.009131562, + -0.0147391325, + 0.00041871853, + 0.0044694915, + -1.26156865e-05, + 0.0030961556, + -0.0070974925, + -0.022028878, + -0.0038018986, + -0.00027078256, + 0.003924381, + 0.0059954864, + -0.018581288, + -0.0036962533, + 0.0024193376, + -0.012681347, + -0.0037355311, + 0.014550063, + 0.009570465, + 0.0033157615, + -0.027913341, + -0.010146766, + -0.020340985, + -0.010773014, + 0.0072159967, + -0.04702967, + 0.009907957, + -0.0404154, + -0.007307831, + -0.018003307, + -0.00868423, + 0.008058286, + -0.0032706396, + -0.0035292006, + -0.0112820435, + -0.01673855, + -0.017710537, + -0.008249304, + -0.019654749, + 0.0037437377, + -0.0094169965, + 0.00811166, + 0.0024230664, + -0.0020149986, + 0.0005807532, + -0.016464898, + 0.019964471, + -0.019646896, + -0.008938057, + 0.006223651, + -0.007850372, + 0.008173193, + -0.018628664, + 0.009925547, + -0.0068729543, + -0.007012975, + -0.0016966978, + 0.020406356, + -0.029028548, + -0.016482446, + -0.01915041, + -0.002472473, + -0.039224714, + 0.0090132365, + 0.00037557163, + -0.020476092, + -0.008317002, + 0.013608561, + -0.035664357, + -0.015651941, + -0.013715314, + -0.0117248325, + -0.005087686, + 0.0035047818, + 0.0069587417, + 0.020204369, + 0.0023674024, + -0.0067599686, + -0.0026793673, + 0.009675706, + -0.012444754, + -0.0069874884, + 0.007272608, + -0.0086421585, + -0.008003539, + -0.0027903651, + -0.007841422, + 0.016084239, + -0.0063672033, + -0.008215067, + 0.008300997, + 0.0031894825, + -0.020645678, + -0.0025529258, + -0.019276233, + 0.0013356068, + -0.0074401675, + -0.015718438, + -0.024110217, + -0.024722753, + -0.0061281654, + -0.0051584276, + -0.010938265, + 0.011691733, + 0.006670728, + -0.018367065, + 0.011394798, + 0.008948963, + -0.027608266, + -0.015203415, + 0.0021688002, + 0.0050566494, + -0.01794351, + 0.00020429234, + 0.004037539, + -0.015682725, + -0.011604536, + -0.01903626, + -0.014533803, + -0.0060574147, + -0.026382256, + 0.007748065, + 0.004324318, + -0.018038008, + -0.039803438, + -0.014441104, + -0.004691596, + -0.009270913, + 0.0005141957, + -0.0032022162, + -0.017209057, + -0.018350163, + -0.021444459, + 8.4631494e-05, + 0.02790904, + -0.0016501695, + -0.0128600765, + 0.007977172, + 0.0013254079, + -0.021898791, + -0.017201032, + -0.009689944, + 0.010373576, + -0.014617111, + -0.03138303, + -0.010443821, + -0.021989405, + -0.014058331, + -0.023159077, + -0.0067876833, + -0.018413331, + -0.024709936, + -0.039028946, + -0.019510511, + -0.004953958, + 0.006389298, + -0.012156295, + -0.022482296, + -0.008817815, + -0.026409008, + -0.0057048155, + 0.018614737, + -0.01744848, + -0.02442236, + -0.008572921, + -0.025664521, + -0.006330686, + 0.01429153, + -0.018018425, + -0.014602467, + -0.01349755, + -0.021076065, + -0.026091216, + -0.02027047, + 0.0067375847, + -0.013254573, + -0.02967074, + -0.02337655, + -0.0074915355, + -0.022956664, + 0.008840578, + -0.011156783, + -0.02191045, + -0.008155889, + 0.010982317, + -0.027146937, + -0.01189376, + 0.024801297, + 0.01129245, + -0.012943295, + -0.0003203863, + -0.007619319, + -0.01315023, + -0.010414659, + -0.014127435, + -0.011292476, + -0.012435761, + 0.008130849, + -0.0028299803, + -0.0112895435, + -0.0008835775, + 0.0018185553, + -0.0104688285, + -0.017408662, + -0.0130576175, + 0.0016429801, + -0.005245461, + 0.012559477, + -0.016547868, + -0.01687802, + -0.0054446384, + -0.008867559, + -0.0068418146, + -0.004820041, + -0.022767525, + -0.014170554, + -0.017619595, + -0.009817582, + -0.0045925463, + 0.0018827646, + -0.00832678, + -0.02028381, + -0.020353995, + -0.019558538, + -0.010681412, + 0.012869284, + 0.03066327, + 0.01608882, + -0.023983225, + -0.012808449, + -0.015620857, + -0.0043502096, + -0.0015065505, + -0.023032563, + -0.005088114, + -0.014014138, + -0.0034745736, + -0.03185206, + -0.02356459, + -0.008581073, + -0.0030472828, + 0.0024257263, + -0.0006905903, + 0.012129661, + -0.02613393, + -0.0038255905, + -0.00068718335, + 0.005863633, + -0.006301112, + -0.0018039194, + 0.011101849, + -0.0067236205, + -0.029543262, + -0.021553116, + 0.00084144284, + -0.0028886627, + -0.02475501, + -0.015778229, + -0.011730755, + 0.007195803, + 0.0073402687, + 0.0141291795, + -0.027455512, + -0.017338466, + 0.012482072, + -0.0017123917, + -0.0230939, + -0.024248306, + -0.014138362, + -0.008004529, + -0.015480748, + -0.00931444, + -0.023724157, + -0.022162192, + -0.018877633, + -0.0062847054, + -0.017040102, + -0.018765006, + -0.013261188, + -0.007986916, + -0.008804701, + 0.035737377, + -0.011607888, + -0.0052110027, + 0.0014939185, + 0.007509627, + -0.015993126, + -0.016463593, + -0.0081958715, + 0.011676814, + 0.008205531, + -0.014844118, + -0.008261037, + 0.01453414, + -0.0079933675, + 0.0027974348, + -0.013049711, + 0.0020338872, + 0.02001733, + -0.021784902, + -0.0051108343, + -0.021617517, + -0.018200763, + -0.031073969, + -0.01595946, + -0.020669987, + -0.0015728275, + -0.030461406, + -0.02377555, + 0.0041955556, + 0.013887447, + -0.034468986, + -0.012874722, + 0.009937845, + -0.013450784, + -0.01737259, + 0.00034210004, + -0.0053801946, + -0.0002465102, + -0.0013186671, + -0.0038262878, + -0.011460076, + 0.023346618, + -0.012174463, + -0.027603924, + 0.0021551137, + 0.013375625, + -0.01207403, + 0.0031141085, + -0.021071749, + -0.002291227, + 0.002017538, + -0.015577128, + -0.01509474, + 0.00794331, + -0.00050337496, + -0.01830576, + -0.0024166473, + -0.011125443, + 0.012514528, + -0.009726273, + -0.006356516, + 0.0060094246, + -0.0034154665, + -0.009518284, + -0.018073665, + -0.0013711901, + 0.008528448, + 0.0013426007, + 0.0041591865, + -0.003527646, + -0.03289193, + 0.008250563, + -0.016193962, + -0.013214503, + 0.003615626, + -0.020869149, + -0.003980059, + -0.033767387, + -0.022222916, + -0.029573442, + -0.01807615, + -0.016191963, + 0.008152854, + -0.02654286, + -0.017719949, + -0.027427461, + -0.014317887, + 0.011418514, + -0.027963057, + -0.0020845265, + 0.0020437946, + -0.012755586, + -0.013628928, + -0.019580025, + -0.009370995, + -0.016455475, + -0.00859129, + -0.005254079, + -0.020510482, + -0.02294938, + -0.0273968, + 0.016317055, + -0.01586403, + -0.057592165, + -0.0058527254, + -0.024197638, + -0.012059435, + -0.023407344, + 0.009593337, + -0.0066251988, + -0.011181269, + -0.02631035, + -0.018763006, + 0.0036373585, + -0.012526484, + -0.017124994, + 0.004629953, + -0.0026331525, + -0.004035577, + -0.013580224, + -0.010753642, + -0.009832924, + -0.0043125423, + -0.021606427, + -0.0061620586, + 0.004468498, + -0.01240053, + -0.002408804, + -0.008101595, + 0.015212651, + -0.01495505, + -0.015443685, + 0.00092240324, + -0.019960647, + -0.0108956015, + -0.044914085, + 0.004666658, + -0.02376075, + -0.006437354, + -0.002483775, + 0.0028756533, + -0.019260278, + -0.023024138, + -0.018816521, + -0.005467435, + 0.0032318486, + 0.0014922373, + -0.025460834, + -0.015070573, + -0.00817504, + -0.012266004, + -0.0057169623, + -0.05576183, + -0.0076223696, + -0.010206867, + -0.013839376, + 0.0014594187, + 0.0004181663, + -0.00030365662, + -0.01572607, + -0.012656111, + -0.021173686, + -0.03720896, + -0.019919615, + -0.0031062425, + -0.0031763637, + 0.019038642, + -0.012753838, + 0.0073281056, + 0.020750454, + -0.00013803579, + -0.021871453, + -0.0064924997, + 0.0028595736, + -0.012349127, + -0.011499738, + -0.019948889, + -0.009189153, + -0.013483969, + -0.005412033, + 0.021206615, + -0.02485257, + -0.003522119, + -0.01570847, + -0.042546757, + -0.0019556687, + -0.017838938, + -0.028596703, + -0.007535142, + -0.02833362, + 0.020935753, + -0.006867985, + -0.014634896, + -0.010289522, + 0.0033272794, + -0.015366522, + 0.0054778703, + -0.01923707, + -0.0032391918, + -0.0019737163, + -0.008072451, + -0.011112282, + 0.025238106, + -0.010711172, + -0.026175104, + 0.005918144, + -0.0070478055, + -0.0049742106, + 0.014219026, + -0.01375145, + 0.02510089, + 0.009853031, + 0.0045269732, + -0.003488038, + -0.019208007, + -0.0068496987, + -0.02019343, + -0.0043930714, + -0.009074595, + -0.036089953, + -0.017058056, + -0.015021768, + -0.009315971, + -0.030513173, + -0.0036803447, + -0.005472704, + -0.009770533, + 0.0047017867, + -0.029991977, + -0.0012264152, + -0.02142222, + -0.004332586, + -0.010516921, + -0.021465423, + 0.0041351793, + -0.033764876, + -0.0013532287, + -0.011112053, + 0.0040334202, + -0.008516813, + 0.004752379, + -0.03532881, + -0.005775901, + -0.0018563546, + -0.007277734, + 0.0045147445, + -0.018403834, + -0.027820848, + -0.014268265, + -0.021924803, + -0.02369472, + -0.03172816, + -0.020788185, + -0.022729754, + 0.011352897, + -0.020653538, + 0.007207591, + 0.012186014, + -0.024823949, + -0.016742144, + -0.013054943, + 0.0018365235, + 0.013259701, + -0.006221431, + 0.0024229123, + -0.019888056, + -0.016717043, + -0.029041339, + -0.014218894, + -0.007567405, + -0.011254519, + -0.0055129016, + -0.011965187, + 0.002214492, + 0.0029657222, + -0.008505392, + -0.003799231, + -0.0033597893, + -0.01211522, + -0.023896512, + 0.00201699, + 0.0005154026, + -0.021142367, + -0.0064635333, + 0.00053516706, + -0.015479085, + -0.042258047, + 0.023001824, + 0.0005996675, + -0.00806537, + 0.0017286415, + -0.02587687, + -0.007528683, + -0.0057680467, + -0.022419598, + -0.005240146, + 0.0039453367, + -0.0077288295, + 0.009247842, + -0.034268823, + 0.011671966, + -0.0021247203, + -0.011498612, + -0.011550898, + 0.019967603, + -0.005992789, + 0.005723684, + -0.01399364, + -0.026343025, + -0.0029847308, + 0.0071410076, + -0.0141547965, + -0.016576707, + -0.018444706, + -0.013495629, + -0.013896832, + 0.0088809505, + 0.003057883, + 0.0070753717, + -0.02406318, + 0.0020787863, + -0.018064398, + -0.016022589, + -0.026828637, + -0.0023586769, + 0.009186033, + -0.026462853, + -0.020736132, + 0.015739314, + -0.01419167, + 0.018005215, + -0.011054517, + -0.021257361, + -0.0054301387, + 0.004373886, + -0.012307417, + -0.010351916, + 0.007340057, + -0.0073273773, + -0.0011527834, + -0.015473785, + -0.01735184, + 0.020558277, + -0.021352807, + -0.015541676, + -0.0030262412, + -0.001359431, + -0.021600895, + 0.0002436548, + -0.012521705, + -0.035316095, + 0.0034921542, + 0.016465062, + -0.04337248, + -0.0036349634, + -0.026190476, + -0.015411673, + -0.019183267, + -0.0024908148, + -0.0036323871, + -0.030173743, + -0.013190409, + -0.010434662, + -0.010855998, + -0.01588049, + -0.01698741, + 0.013791849, + -0.030877044, + 0.004891204, + -0.0020636325, + -0.004306682, + -0.009632672, + -0.0147438785, + 0.011193975, + -0.0037532425, + -0.0018380338, + -0.008708318, + -0.015122766, + 0.041161247, + -0.023460532, + -0.021665966, + -0.004140668, + 0.008278594, + -0.0346502, + -0.00072318176, + -0.015134969, + -0.0112535795, + -0.004319699, + -0.02379038, + -0.017424408, + 0.0045676255, + -0.0003534113, + 0.0017563043, + -0.034922075, + -0.006079812, + 0.011356924, + -0.0055318414, + -0.00056505896, + -0.0044146823, + -0.014761342, + -0.0135517875, + -0.02260272, + 0.0032198722, + -0.007532279, + -0.013860198, + -0.051594153, + -0.0028762806, + -0.018062672, + -0.025079718, + -0.01537611, + -0.02809257, + 0.0068566534, + -0.006914583, + 0.009053019, + -0.016528383, + -0.0032845614, + -0.0096494965, + -0.002925338, + -0.0039385795, + -0.013907038, + -0.02258477, + 0.0088490555, + -0.0119214635, + -0.006359778, + 0.006716201, + 0.0011634472, + -0.019524379, + 0.000764547, + 0.0045306156, + -0.009690862, + -0.0070323134, + 0.0118719265, + -0.016280014, + -0.019332215, + 0.004458176, + -0.004507722, + -0.0028927154, + -0.0017088493, + -0.025900796, + -0.017900713, + -0.016986156, + -0.022853374, + -0.011720069, + -0.007814529, + -0.0043797223, + 0.00043181784, + -0.005205609, + -0.02506771, + -0.007988753, + -0.004761869, + -0.004197569, + 0.022316221, + -0.0023779497, + -0.014795269, + 0.00023695834, + -0.0098178545, + 0.012348682, + -0.027148006, + -0.011155691, + -0.0024492638, + 0.00020057459, + 0.008996133, + -0.020130208, + -0.015916381, + 0.0062485076, + -0.024069084, + -0.021858606, + -0.012256094, + 0.008524581, + 0.0019471439, + -0.015516348, + -0.0018594097, + 0.017756015, + -0.0119077945, + -0.011486698, + 0.019106636, + 0.0099707665, + 0.0012872719, + -0.022940515, + 0.014026686, + -0.0026118278, + 0.003256126, + -0.021594524, + -0.016827028, + -0.0034957759, + -0.0010536051, + 0.012984957, + -0.008264966, + -0.015306299, + -0.006572472, + -0.023647714, + -0.0014525085, + 0.0023060204, + 0.0066733416, + -0.017569559, + 0.007661514, + -0.008198339, + -0.028179614, + 0.0053433822, + 0.0071316706, + 0.0011586888, + 0.0007602014, + -0.016093785, + -0.025790896, + -0.013695292, + 0.022231504, + -0.01736214, + 0.012738015, + 0.0036469395, + 0.0047013033, + -0.018096043, + -0.0232419, + -0.0035465346, + 0.018296955, + -0.014959997, + -0.018202052, + -0.028796328, + 0.009658224, + 0.00038317606, + -0.020705499, + 0.0021921021, + -0.0068674507, + -0.0071659912, + 0.018853327, + -0.013375723, + -0.022640992, + -0.008867083, + 0.001872077, + -0.017252348, + -0.018802889, + -0.021304086, + -0.028370565, + -0.026311632, + -0.013576052, + -0.012053492, + -0.016639002, + 0.015279444, + -0.017480336, + -0.019537805, + -0.020500677, + -0.011268886, + -0.041490093, + -0.006851262, + -0.010177889, + -0.002832703, + -0.007983749, + -0.028640322, + -0.020278735, + 0.014941466, + -0.0053264955, + -0.012431263, + -0.015425581, + -0.02173736, + -0.019232659, + -0.005032665, + -0.014715996, + 0.0016225302, + -0.028063107, + 0.0015948372, + -0.00823342, + -0.0060488395, + 0.007822839, + -0.019613417, + 0.008849634, + -0.017996205, + -0.008108685, + 0.015057869, + -0.0038522605, + 0.002330763, + 0.020990837, + -0.02808578, + -0.017546251, + -0.025162395, + -0.009926191, + -0.010370411, + -0.021455847, + -0.03461108, + -0.0036423702, + -0.01160217, + -0.010811773, + -0.018358119, + -0.019591412, + -0.020347904, + 0.0069887303, + -0.009443952, + -4.760997e-05, + -0.020880338, + -0.02526977, + 0.005417136, + -0.009369751, + -0.0077089313, + -0.03631329, + -0.010251701, + 0.0072750566, + -0.014607982, + -0.0063348617, + -0.04041353, + -0.0065714233, + -0.017730918, + 0.00012825156, + -0.012659774, + 0.006867534, + -0.004126102, + 0.006521588, + -0.0051613296, + 0.01327695, + 0.0057776067, + -0.024088442, + -0.02041297, + -0.0074464255, + -0.022300042, + -0.0036686626, + -0.0021854402, + -0.0007315481, + 0.011150626, + 0.0027432959, + -0.011537069, + 0.008861209, + 0.009259438, + -0.029772874, + -0.018329574, + -0.0057405503, + 0.018534757, + -0.022522267, + 0.012198371, + 0.0032926125, + 0.0011553144, + 0.010223132, + -0.0113604, + 0.008568321, + -0.00049502705, + -0.011698043, + -0.05363143, + -0.0075247562, + -0.00655882, + -0.011287872, + -0.018706521, + -0.008728629, + 0.006967067, + -0.00501284, + -0.0073192483, + -0.015396167, + -0.011330392, + -0.032205496, + -0.014504666, + -0.0060681384, + -0.019485068, + -0.009733881, + -0.0017358621, + -0.028769696, + 0.0016925588, + -0.019104522, + -0.014673083, + -0.041393038, + -0.019660262, + -0.003932347, + -0.009293716, + -0.01494653, + 0.002775432, + -0.011394058, + -0.0067453426, + -0.008322515, + -0.029727109, + 0.020711368, + -0.0064481837, + -0.014589339, + -0.016126996, + -0.013285574, + -0.005558957, + 0.004788678, + 0.004419092, + -0.021271328, + 0.012319176, + 0.01678233, + -0.0040965145, + -0.0092383735, + 0.00915895, + -0.023713527, + -0.016517226, + -0.0060494468, + 0.0067654704, + -0.029595677, + 0.0074457894, + 0.0025487773, + -0.023542957, + 0.022140296, + -0.008872737, + -0.0033683244, + -0.011213961, + -0.014950281, + 0.01017188, + 0.0005198495, + -0.00615686, + -0.008076161, + -0.0009322896, + -0.027714454, + 0.0017216189, + -0.011691834, + 0.0055226726, + -0.010935781, + -6.799198e-05, + 0.0123722125, + 0.009917127, + 0.012883829, + -0.008148951, + -0.017240053, + -0.021750547, + 2.021875e-05, + -0.021232812, + -0.005869995, + -0.033956274, + -0.0142148, + -0.0138288485, + 0.0023388946, + -0.012041493, + -0.018543534, + 0.011741831, + -0.011187303, + -0.020220656, + -0.019706594, + -0.0028404545, + -0.005405333, + -0.007013425, + 0.009175365, + 0.0033567653, + -0.002381571, + 0.007122284, + -0.010679473, + -0.01929313, + -0.02648138, + -0.0114355255, + -0.012036939, + -0.010154191, + -0.019005613, + -0.014117237, + -0.011090993, + -0.014863796, + 0.011668604, + -0.011736035, + -0.0026522053, + -0.008959847, + -0.013992099, + -0.019823616, + -0.0041690143, + 0.02199294, + -0.011787371, + 0.012935587, + -0.010378873, + -0.009538465, + -0.012605067, + -0.0076027093, + -0.0035284401, + -0.009112991, + -0.011917647, + -0.0038701007, + 0.0010872526, + -0.016810117, + 0.022684896, + -0.010643998, + -0.008984847, + -0.0046071084, + 0.0075161974, + -0.024545966, + 0.0046118856, + -0.006450345, + -0.012312603, + -0.002013274, + 0.005282734, + 0.014270556, + -0.01980761, + 0.011547152, + -0.014811029, + -0.0044984994, + -0.013511186, + 0.011776771, + -0.006693773, + 0.010833111, + 0.0032404321, + -0.0021928574, + -0.012757018, + -0.014999911, + -0.029185824, + -0.01639505, + -0.0068283984, + 0.00088508317, + -0.013418421, + -0.0282135, + 0.02050124, + -0.024110403, + -0.029695636, + -0.021550005, + -0.0221368, + -0.018472191, + -0.02443883, + -0.017700225, + -0.01075967, + -0.0053649032, + -0.002449041, + -0.012620954, + -0.02210167, + -0.019833896, + -0.011921905, + -0.035521843, + -0.003328853, + -0.007017545, + -0.005615113, + -0.032515425, + -0.0065377275, + -0.02180729, + -0.02679145, + -0.0003263434, + 0.022725362, + -0.013401788, + -0.019651359, + -0.0032525468, + 0.0045486772, + -0.008426705, + -0.014767687, + -0.00905099, + -0.025017789, + -0.019956676, + -0.002668142, + -0.013698965, + -0.027448937, + -0.010402309, + -0.021119455, + 0.02328892, + -0.032349598, + 0.019900363, + -0.013960818, + -0.003078302, + -0.008481086, + 0.009167915, + 0.00043304206, + 0.004455283, + -0.024650354, + -0.02507898, + -0.013546812, + -0.0029945988, + 0.024879728, + -0.0023038185, + -0.0057601575, + 0.011158188, + -0.012665233, + -0.0050720875, + -0.011179611, + -0.021525973, + -0.008723121, + -0.014830078, + 0.008966641, + 4.1602602e-06, + -0.03386482, + -0.024104554, + -0.018718576, + -0.010578471, + -0.008902255, + -0.017520161, + -0.03025519, + -0.0050667403, + 0.0068298923, + -0.010636065, + -0.02029487, + 0.0021386964, + 0.00024846848, + -0.027621582, + -0.040753886, + -0.003035118, + 0.00346891, + -0.029899824, + -0.024172362, + -0.004366878, + -0.006467168, + -0.017619362, + -0.024804613, + -0.015605317, + -0.027474407, + -0.020600269, + -0.003351157, + -0.01226063, + -0.015684027, + -0.020528002, + -0.029219557, + -0.0032980829, + -0.033204924, + -0.022045609, + -0.017987762, + 9.391284e-05, + -0.011989855, + -0.0045586457, + -0.0012672734, + -0.016508427, + -0.014422985, + -0.02526962, + -0.013474555, + 0.0073939837, + -0.016966222, + -0.0125972, + -0.01385475, + -0.0064699138, + -0.0139519265, + -0.01676764, + 0.004737006, + -0.0064958674, + -0.027463036, + -0.009317065, + -0.016165383, + -0.030465743, + -0.03132299, + -0.0111687705, + 0.0027029477, + -0.0015039515, + 0.0020507053, + -0.012447263, + -0.0028444398, + -0.010339963, + -0.019467507, + -0.023676338, + -0.025270602, + 0.012228976, + -0.018119475, + -0.011802498, + -0.029354641, + -0.01882426, + -0.027867354, + -0.018908663, + -0.029013174, + -0.016360588, + -0.00747964, + -0.01726997, + -0.0054607247, + 0.013482732, + 0.0048931, + -0.01145918, + -0.006593207, + 0.0037281814, + -0.028188255, + -0.021734625, + -0.02110572, + 0.023447957, + -0.02489805, + 0.0050507234, + -0.026694883, + -0.0055004368, + -0.0015772228, + -0.011432419, + 0.013344339, + 0.0017364228, + -0.0074300636, + -0.0058485535, + 0.0013128001, + -0.0023925395, + 0.015117678, + -0.009696691, + -0.013749518, + -0.009445747, + 0.002965401, + 0.0016292151, + -0.0012300825, + 0.0009246382, + -0.038482346, + -0.014211781, + -0.017159337, + -0.007424731, + 0.002169991, + 0.012436966, + 0.012523373, + -0.011514835, + -0.020543413, + 0.013956993, + -0.013694578, + 0.006797004, + -0.0062449817, + -0.018613657, + 0.010829802, + -0.027743015, + -0.017027097, + -0.016835319, + 0.023657482, + -0.015425956, + -0.024284545, + -0.01502655, + 0.012852037, + 0.008648725, + -0.005699592, + 0.0024898786, + 0.010646016, + 0.010762822, + -0.0127962865, + -0.0070753517, + 0.0054522255, + 0.0027977852, + -0.021072457, + 0.006290558, + -0.02484782, + -0.024784131, + -0.01422569, + -0.024505824, + -0.020832978, + -0.0112551395, + -0.001718695, + -0.014558387, + -0.0061803767, + -0.0027753466, + -0.016035168, + -0.01105461, + -0.0068150964, + -0.008891154, + 0.021250112, + 0.002283254, + -0.0055937003, + -0.011488678, + -0.016195234, + -0.028940083, + -0.024608351, + -0.008815314, + -0.021860864, + 0.013121045, + 0.01014626, + -0.008351961, + -0.0078100334, + -0.0030288275, + -0.0022440136, + 0.012764484, + -0.009133985, + -0.010858546, + -0.0058648963, + -0.021879304, + -0.0026950436, + 0.0018892651, + 0.011341137, + -0.021378295, + -0.027234854, + -0.017627213, + -0.005527423, + -0.0097994115, + 0.013031622, + -0.015325391, + -0.008593486, + -0.0011738469, + 0.0056471294, + -0.026556032, + -0.011478438, + -0.008635314, + -0.0018268739, + 0.005630003, + -0.009962291, + -0.018759765, + -0.016614368, + 0.022260312, + 0.008712036, + 0.0012001786, + 0.00629861, + -0.010312077, + -0.010855753, + -0.023520196, + -0.014115011, + -0.0026517042, + -0.023637436, + -0.0050793695, + 0.015399593, + -0.006405905, + -0.022824412, + -0.018105622, + 0.011090123, + 0.0140586635, + -0.01158019, + -0.029227264, + -0.016747067, + 0.0018422916, + -0.024221813, + -0.00063529564, + 0.00465239, + -0.006161269, + 0.004275038, + -0.015620527, + -0.011378413, + 0.013245264, + -0.0075952024, + -0.0043474673, + 0.0028798038, + 0.021310747, + 0.005764357, + -0.012660324, + -0.015044562, + -0.008397747, + -0.01376888, + -0.021592911, + 0.010689399, + 0.0012075801, + 0.008082117, + 0.01192197, + 0.008866555, + -0.027861143, + 0.011181936, + -0.012983936, + 0.0140593015, + 0.008364616, + -0.012904818, + -0.029632559, + -0.0017385941, + 0.00096330186, + -0.009812271, + -0.0134721, + 0.0025595664, + 0.0040190164, + -0.016995003, + 0.015481979, + -0.010096199, + 0.0043464247, + 0.005276843, + 0.0016238865, + 0.0033697048, + -0.013827084, + -0.012510484, + -0.0007665199, + -0.009440057, + -0.011973407, + -0.01681082, + -0.0003099935, + -0.01275988, + -0.009181788, + -0.00022899304, + -0.004430793, + -0.04734649, + -0.010462814, + -0.018847108, + -0.022831645, + -0.015948432, + -0.0025204637, + -0.014751879, + -0.02286544, + 0.0022432206, + -0.020743776, + -0.01381944, + -0.026764456, + -0.024061726, + 0.0064928397, + -0.022992812, + -0.019962288, + -0.008663969, + -0.00029320648, + -0.010313517, + -0.014238438, + 0.015788943, + -0.014812113, + -0.018060997, + -0.01812891, + -0.023969973, + -0.019887235, + -0.002264849, + -0.0055798283, + -0.0085243685, + -0.023512075, + -0.0011384739, + -0.026383514, + 0.008058828, + -0.011653234, + -0.031745743, + -0.01287015, + -0.0070962263, + -0.00092325016, + -0.01710882, + 0.022470823, + -0.011388926, + 0.0011313106, + 0.0066528954, + -0.010512402, + -0.007157995, + -0.0013549234, + 0.012678434, + 0.0010900893, + -0.02205138, + -0.02117276, + 0.00601337, + -0.017414147, + 0.007830623, + -0.009986013, + -0.0072390256, + -0.009543774, + 0.0087671, + -0.035916667, + -0.036519255, + -0.009147609, + -0.013345136, + 0.020108312, + -0.015919449, + -0.036083136, + 0.0036066277, + -0.01808431, + -0.008479916, + -0.0063595795, + -0.014355475, + -0.028986165, + 0.013129131, + -0.0083802575, + -0.018261345, + 0.0025737134, + -0.008547625, + 0.001162734, + 0.01135433, + -0.021249022, + -0.030135816, + -0.01184631, + 0.008569839, + -0.031063844, + -0.01977619, + -0.021142466, + -0.0035536822, + -0.0026061276, + 0.003451913, + -0.023984116, + -0.013928329, + -0.018777918, + -0.011766984, + 0.008251124, + 0.022589149, + -0.0035368442, + 0.019744216, + -0.01820314, + -0.028158974, + -0.014412682, + -0.018025348, + -0.0059136227, + -0.017877333, + -0.01839421, + -0.0026675328, + -0.009550048, + -0.0068598767, + -0.019552734, + -0.018319005, + -0.005993734, + -0.008343555, + -0.024962228, + -0.018407939, + -0.0018074262, + 0.00642502, + -0.029301114, + -0.0071652047, + -0.009932202, + -0.015209029, + -0.012240353, + -0.008399155, + -0.004522635, + -0.014919555, + -0.024865484, + 0.0028508808, + -0.01405844, + 0.012861728, + -0.009300863, + -0.015994051, + -0.016013743, + 0.017177185, + -0.0033739165, + 0.022764258, + 0.0033550241, + -0.017710121, + 0.017867438, + -0.012009167, + -0.010154425, + -0.035457686, + -0.0079594515, + -0.037485324, + -0.021522565, + -0.006253522, + -0.02496434, + -0.012190873, + 0.01688675, + -0.021774873, + -0.009414258, + -0.026447477, + -0.0022271506, + -0.00044037498, + -0.0074685365, + -0.0068661957, + 0.0125901345, + -0.014543389, + -0.039283168, + -0.019131826, + 0.0038532992, + -0.0010803293, + -0.0164003, + -0.00032353372, + 0.009917819, + -0.015739717, + -0.0011545153, + 0.013010929, + -0.014100406, + -0.03268165, + -0.0006692098, + -0.017163552, + 0.0006722599, + 0.0005475015, + -0.0141111575, + 0.0081824185, + -0.027970672, + 0.011800523, + -0.017653504, + -0.0101082325, + 0.0074165063, + -0.013710307, + -0.009808976, + 0.009403001, + -0.0043727695, + -0.0060507245, + -0.009949776, + -0.015108519, + -0.0065247524, + -0.0009867034, + -0.024930714, + -0.014578557, + -0.019610448, + 0.00016512965, + -0.039350193, + -0.009871516, + 0.0029380836, + -0.0022988408, + -0.030778471, + -0.010320323, + 0.016474247, + -0.009927659, + -0.008511186, + -0.016712267, + 0.010617147, + 0.007159003, + -0.013457502, + 0.009988782, + -0.017402085, + -0.02024471, + -0.016088558, + 0.004280482, + -0.0132648405, + -0.021472964, + -0.017020216, + -0.02503784, + -0.012085099, + -0.0025499254, + 0.005447109, + -0.017718993, + -0.0121271275, + -0.010816413, + -0.010923178, + -0.02627751, + -0.014151505, + 0.0038491746, + -0.020555187, + 0.0049940916, + 0.0077839987, + 0.01420313, + -0.020292914, + 0.018017167, + -0.021047138, + -0.031513892, + -0.00031160482, + -0.021552196, + 0.0030346354, + -0.031084972, + -0.016484177, + -0.0056633516, + -0.012537255, + 0.016681634, + -0.010414597, + -0.017974477, + -0.0030688168, + -0.012432018, + -0.01499082, + -0.012456316, + -0.0051541654, + 0.00026358775, + 0.018367356, + -0.024719024, + -0.0049301735, + -0.005596165, + 0.005343139, + -0.01170351, + -0.022856139, + 0.010347586, + -0.015332677, + -0.009386125, + -0.0053935363, + -0.009268846, + -0.0022765885, + -0.020903615, + -0.017682137, + -0.001164599, + -0.00078846386, + -0.0034102926, + -0.011646525, + -0.021219151, + -0.025398057, + -0.0004113543, + -0.015941441, + 0.007023353, + -0.023072453, + 0.0010933245, + -0.01922578, + -0.026812645, + 0.0008877431, + -0.0010141411, + -0.010495509, + -0.001421843, + -0.01495496, + -0.0021269817, + -9.720157e-05, + -0.021997806, + -0.02176912, + -0.02462129, + -0.0060754754, + -0.015826806, + -0.018135348, + 0.0013380958, + -0.010268169, + -0.008446851, + -0.0019743259, + 0.00566306, + -0.004401378, + 0.02066326, + -0.0018789511, + 0.004492808, + -0.0057246666, + -0.022660244, + 0.008832721, + -0.016036373, + -0.03945809, + -0.005352274, + -0.026117895, + 0.010550822, + -0.03586377, + -0.0009645391, + -0.01811802, + -0.030824097, + 0.0061969836, + 0.007934957, + -0.0027916657, + -0.022184478, + -0.0022268915, + -0.006659725, + 0.0037617197, + -0.0012803964, + -0.001247382, + -0.0018940375, + -0.027459571, + -0.011617352, + -0.018926406, + -0.027389308, + -0.01644319, + -0.0067948196, + -0.014103358, + 0.010457362, + -0.016456913, + -0.009273466, + -0.02151963, + -0.002882889, + -0.013048852, + -0.016840348, + 0.007302319, + -0.026586452, + -0.012135018, + -0.010641677, + -0.019473065, + -0.028066559, + -0.020380337, + 0.001020698, + -0.022308754, + -0.018234361, + -0.01637577, + -0.013480451, + -0.023740394, + -0.004531175, + 0.000409914, + -0.019573266, + 0.0035397182, + -0.015292859, + -0.011683084, + -0.01510237, + 0.010727602, + 0.0044077407, + -0.008259662, + -0.007984074, + -0.0120655615, + -0.019214908, + -0.019019382, + -0.017855126, + -0.02223941, + -0.0011264491, + 0.0051520537, + -0.013972369, + 0.0045007546, + 0.010560583, + -0.010801565, + 0.0139826955, + 0.0005815792, + -0.006851856, + -0.00993176, + 0.020294739, + -0.0073172823, + -0.0003400291, + 0.014557984, + -0.02681506, + -0.017716613, + -0.02797687, + -0.009884967, + -0.015550196, + -0.011528365, + -0.0041128886, + -0.0077999905, + -0.014612397, + 0.028625509, + 0.0030618366, + -0.002089289, + -0.015301814, + 0.004087754, + -0.02223413, + -0.029866891, + -0.010292098, + -0.013207504, + -0.00020279113, + -0.0030811278, + -0.01070389, + -0.014167458, + -0.01098224, + -0.02301529, + -0.0012890791, + -0.0047515198, + 0.003980663, + -0.026388882, + 0.010221772, + -0.019192444, + -0.022475883, + -0.012122094, + -0.0012898765, + -0.016670633, + -0.034830865, + -0.00086059474, + -0.010112731, + -0.0017789953, + -0.0041908217, + 0.0008017538, + -0.0015940124, + -0.024153108, + -0.014705438, + 0.0035909058, + -0.010689197, + -0.0141931055, + -0.014902454, + -0.022435606, + -0.0018602563, + -0.010056045, + -0.013528525, + -0.023775455, + -0.02715511, + -0.01663339, + 0.005483404, + -0.013233585, + -0.00506563, + -0.036815464, + -0.0026571911, + 0.0022909124, + -0.008083775, + 0.018517764, + -0.014361782, + 0.0161858, + 0.00475088, + -0.014410069, + -0.01750393, + 0.0016631784, + 0.020273669, + -0.008767976, + 0.0206491, + 0.01569638, + -0.00745712, + -0.016765356, + -0.017626824, + -0.004174811, + -0.007917409, + -0.019454569, + -0.022754982, + -0.01779273, + -0.00019042651, + 0.002088536, + -0.027547281, + -0.018733421, + -0.019389689, + -0.008751553, + -0.008067972, + -0.018801006, + -0.008449843, + -0.00463438, + -0.0029303296, + -0.021267649, + -0.02234904, + 0.001972518, + -0.0039016742, + 8.0674705e-05, + -0.031057501, + -0.0011787423, + 0.0018726682, + -0.021608299, + 0.009447536, + -0.013327003, + -0.011651389, + 0.0014439259, + -0.015896153, + 0.017964935, + -0.0163692, + 6.259294e-05, + -0.0071012415, + -0.02445506, + -0.021940311, + -0.01083466, + -0.0021435367, + -0.017834017, + -0.0075809145, + -0.009626873, + -0.021024015, + -0.009000158, + -0.022702396, + -0.039085206, + -0.0074523436, + -0.005193923, + -0.0058622425, + -0.001745677, + -0.023473665, + 0.009062886, + 0.00396661, + -0.0037313965, + -0.01300055, + 0.008938279, + -0.012306111, + -0.02034432, + -0.018455908, + -0.021981196, + -0.011553967, + -0.011967964, + -0.0065380093, + -0.009196692, + -0.011231696, + -0.042089924, + -0.024269573, + -0.006323578, + -0.026455583, + -0.00646635, + 0.012487114, + -0.020426275, + 0.005869936, + -0.008864181, + -0.017453445, + -0.0038559474, + 0.009645805, + -0.031850055, + 0.002563859, + -0.020092983, + -0.02859084, + -0.010059997, + -0.008022821, + -0.016115751, + -0.00971006, + -0.008125692, + -0.008790373, + -0.016332762, + -0.00068493234, + 0.00036594382, + 0.004714622, + -0.0039492985, + -0.034185, + -0.023553673, + 0.012743744, + -0.0042837374, + -0.034172457, + -0.025175983, + -0.008667384, + -0.018202493, + -0.019444037, + 0.026085494, + -0.010452284, + -7.6017204e-05, + 0.00026005783, + -0.004019764, + -0.018960208, + 0.0042492826, + -0.013466886, + 0.023332957, + -0.034433287, + -0.02131807, + -0.02393654, + 0.0015388409, + -0.01609995, + -0.022580506, + 0.013711213, + 0.00054174854, + -0.00016110708, + -0.0030471073, + 0.006884676, + -0.010607155, + -0.005546051, + 0.0050099995, + -0.016874138, + -0.02030464, + 0.00055926474, + -0.026572743, + -0.0041089565, + 0.0007508867, + -0.022456953, + -0.015322527, + 0.01217243, + 0.0044649066, + -0.02754955, + 0.006081969, + -0.0014477072, + -0.005692345, + 0.004205526, + -0.01182112, + 0.018498057, + -0.010107537, + 0.0005188983, + -0.015569155, + -0.02561004, + -0.011259198, + -0.020605845, + 0.0076018847, + -0.015430905, + 0.005521232, + -0.017336184, + -0.0072463215, + -0.024730723, + -0.030787077, + -0.016290728, + -0.018377988, + 0.015415627, + 0.0049539264, + 0.015679559, + -0.019845953, + -0.0068537225, + -0.008991598, + 0.01725884, + -0.00054124196, + 0.0066652447, + 0.0020825535, + -0.015645383, + -0.024119502, + -0.004805157, + -0.0054567065, + -0.00075905345, + -0.0046507614, + -0.013793323, + -0.0012983923, + -0.013741357, + -0.016132226, + 0.0058312444, + 0.012450478, + -0.005471532, + -0.020371977, + 0.0008127594, + 0.027550409, + -0.008870812, + -0.03661041, + -0.025498621, + -0.021089924, + -0.00944763, + 0.00786543, + -0.018217634, + -0.0124687115, + -0.016773093, + 0.026986388, + -0.0086677745, + -0.027027806, + -0.015315105, + -0.005449855, + -0.016066091, + 0.009859867, + 0.002019363, + 0.008533536, + 0.003176792, + -0.010745704, + -0.022259317, + -0.0069741327, + -0.0055577736, + 0.00078176596, + -0.014179799, + -0.007912529, + -0.01781939, + -0.009708302, + -0.0066413004, + -0.019172572, + 0.016453978, + -0.020783527, + -0.0060896077, + -0.018267423, + -0.02634253, + 0.009317117, + 0.009982736, + 0.0016616895, + -0.008540135, + -0.019562263, + 0.00033257934, + 0.0033264994, + -0.0101075005, + 0.004153635, + 0.0006834004, + 0.0032345345, + -0.0036974296, + 0.014923425, + -0.02999012, + -0.019722203, + -0.0016232139, + -0.01761355, + -0.010729901, + -0.007742197 ], "paletteEmbedding": [ - 0.06764375, 0.03296753, 0.009297245, 0.0017589383, 0.00015076615, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.03392238, 0.018242704, 0.0035681322, 0.0011056184, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.009598778, 0.004623495, 0.0014071506, - 0.00020102152, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0012061292, 0.0008543415, - 0.00035178766, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00020102152, - 0.00010051076, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.03914894, 0.020755474, 0.0066337106, - 0.0007035753, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.020705217, 0.013116655, - 0.0034676213, 0.0005528092, 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.004824517, 0.0040706857, 0.0008543415, 0.00035178766, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.00065331993, 0.0005528092, 0.00020102152, 5.025538e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 5.025538e-5, 0.00020102152, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.014021251, 0.009096224, 0.0020604706, 0.0005528092, - 0.00010051076, 0.0, 0.0, 0.0, 0.0, 0.0, 0.008945458, 0.0075383075, - 0.0021609815, 0.00095485226, 0.00010051076, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0035681322, 0.0022614922, 0.0013066399, 0.0007035753, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0009045969, 0.0006030646, 0.00045229844, 0.00020102152, - 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00015076615, 0.00010051076, - 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0059803906, 0.005276815, 0.0030153228, 0.0011056184, - 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0054275813, 0.0068849875, - 0.004171197, 0.0016584276, 0.00020102152, 0.00010051076, 0.0, 0.0, 0.0, - 0.0, 0.0026132797, 0.0047742613, 0.0028143013, 0.0013568953, - 0.0003015323, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0014574061, 0.0022614922, - 0.0012061292, 0.0007035753, 0.00020102152, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00040204305, 0.0009045969, 0.00035178766, 0.00010051076, - 0.00010051076, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00020102152, 5.025538e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0052265595, 0.008744436, 0.004824517, - 0.0029148122, 0.00020102152, 0.00020102152, 0.0, 0.0, 0.0, 0.0, - 0.009850055, 0.014272529, 0.010704396, 0.004472729, 0.0013066399, - 0.00015076615, 5.025538e-5, 0.0, 0.0, 0.0, 0.007236775, 0.014071506, - 0.011960781, 0.00457324, 0.00095485226, 0.00010051076, 0.0, 0.0, 0.0, - 0.0, 0.004623495, 0.007236775, 0.007086009, 0.0030655782, 0.0005528092, - 0.00015076615, 0.0, 0.0, 0.0, 0.0, 0.0017589383, 0.0013568953, - 0.0023620029, 0.0008040861, 0.00020102152, 0.00015076615, 0.0, 0.0, 0.0, - 0.0, 0.00020102152, 0.0002512769, 0.0002512769, 0.00020102152, - 0.00010051076, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 0.0, 0.0, - 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.010051076, 0.016835554, - 0.013367931, 0.0053773257, 0.0019097045, 0.00040204305, 0.0, 0.0, 0.0, - 0.0, 0.019348321, 0.033872128, 0.030505016, 0.013116655, 0.0031158337, - 0.00020102152, 0.00010051076, 0.0, 0.0, 0.0, 0.023569774, 0.040455583, - 0.032364465, 0.017287852, 0.003417366, 0.0005528092, 5.025538e-5, 0.0, - 0.0, 0.0, 0.014322784, 0.021911347, 0.02120777, 0.010754651, - 0.0022614922, 0.00020102152, 5.025538e-5, 0.0, 0.0, 0.0, 0.004171197, - 0.007689073, 0.0062819226, 0.0037691537, 0.0005025538, 5.025538e-5, 0.0, - 0.0, 0.0, 0.0, 0.00035178766, 0.0017589383, 0.0012061292, 0.0009045969, - 0.00015076615, 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, - 0.00010051076, 0.00020102152, 5.025538e-5, 5.025538e-5, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.022464156, 0.034274172, 0.031208592, - 0.014423295, 0.0035178766, 0.00020102152, 0.0, 0.0, 0.0, 0.0, - 0.050355893, 0.08870075, 0.07573486, 0.034676213, 0.00783984, - 0.001055363, 0.00010051076, 0.0, 0.0, 0.0, 0.057743434, 0.10739575, - 0.094932415, 0.048044145, 0.012312569, 0.0016081722, 0.00010051076, 0.0, - 0.0, 0.0, 0.035681322, 0.06824681, 0.062216163, 0.033269063, - 0.008643926, 0.0006030646, 5.025538e-5, 0.0, 0.0, 0.0, 0.0097998, - 0.022263134, 0.023419008, 0.011056184, 0.0029148122, 0.00035178766, - 0.0002512769, 0.0, 0.0, 0.0, 0.0024122584, 0.00391992, 0.0042717075, - 0.0020102153, 0.0005025538, 0.00015076615, 5.025538e-5, 5.025538e-5, - 0.0, 0.0, 0.00015076615, 0.0005025538, 0.00045229844, 0.00040204305, - 0.00020102152, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.033821873, - 0.062517695, 0.056788582, 0.027137905, 0.006583455, 0.0009045969, - 0.00010051076, 5.025538e-5, 0.0, 0.0, 0.08437879, 0.1610685, 0.1509169, - 0.071764685, 0.017941171, 0.0022112369, 0.00015076615, 0.0, 0.0, 0.0, - 0.11176797, 0.21046954, 0.203082, 0.097897485, 0.026635353, 0.003417366, - 0.00045229844, 0.0, 0.0, 0.0, 0.07573486, 0.14342886, 0.1428258, - 0.07462924, 0.021810835, 0.0021609815, 0.0002512769, 5.025538e-5, 0.0, - 0.0, 0.026585096, 0.05397428, 0.052717894, 0.028444545, 0.008895203, - 0.0011558738, 0.00020102152, 0.0, 0.0, 0.0, 0.005930135, 0.009397756, - 0.011407971, 0.0066337106, 0.001708683, 0.00040204305, 0.0, 0.0, 0.0, - 0.0, 0.00045229844, 0.0012061292, 0.001055363, 0.0007538307, - 5.025538e-5, 0.00010051076, 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 0.0, - 0.00020102152, 5.025538e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.040505838, 0.07563435, 0.07075958, 0.035530556, - 0.009397756, 0.001055363, 0.00010051076, 0.0, 0.0, 0.0, 0.104832724, - 0.1950914, 0.19363399, 0.095485225, 0.026183054, 0.0040706857, - 0.0003015323, 0.0, 0.0, 0.0, 0.14131813, 0.2743944, 0.26585096, - 0.13996124, 0.039450474, 0.0055783475, 0.0003015323, 0.00010051076, 0.0, - 0.0, 0.10292302, 0.20192613, 0.20368506, 0.10850137, 0.028344035, - 0.0047742613, 0.0003015323, 0.0, 0.0, 0.0, 0.04015405, 0.073624134, - 0.07789584, 0.043521162, 0.013870485, 0.0024122584, 0.00020102152, 0.0, - 0.0, 0.0, 0.0073372857, 0.014222273, 0.016835554, 0.009347501, - 0.0026635353, 0.00040204305, 0.00010051076, 0.0, 0.0, 0.0, 0.0005528092, - 0.0014574061, 0.0014071506, 0.0007538307, 0.0002512769, 5.025538e-5, - 0.0, 0.0, 0.0, 0.0, 5.025538e-5, 5.025538e-5, 5.025538e-5, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02904761, - 0.05266764, 0.052969173, 0.025228202, 0.0065331995, 0.00065331993, - 0.00010051076, 0.0, 0.0, 0.0, 0.08091117, 0.1503641, 0.14453448, - 0.075383075, 0.019448834, 0.0027137906, 0.00015076615, 0.0, 0.0, 0.0, - 0.110612094, 0.21323359, 0.21614839, 0.11739657, 0.033771615, - 0.00457324, 0.00045229844, 5.025538e-5, 0.0, 0.0, 0.0817655, 0.16096799, - 0.16740067, 0.090911984, 0.025077436, 0.0040706857, 0.00035178766, 0.0, - 0.0, 0.0, 0.033319317, 0.061211053, 0.067090936, 0.037842304, - 0.011558738, 0.0020102153, 0.00020102152, 0.0, 0.0, 0.0, 0.005477837, - 0.0134684425, 0.013719719, 0.008392649, 0.0029148122, 0.00035178766, - 0.0, 0.0, 0.0, 0.0, 0.00065331993, 0.0013066399, 0.0020604706, - 0.001055363, 0.0003015323, 0.00010051076, 5.025538e-5, 0.0, 0.0, 0.0, - 0.0, 5.025538e-5, 0.00015076615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0 + 0.06764375, + 0.03296753, + 0.009297245, + 0.0017589383, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03392238, + 0.018242704, + 0.0035681322, + 0.0011056184, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009598778, + 0.004623495, + 0.0014071506, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0012061292, + 0.0008543415, + 0.00035178766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00020102152, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.03914894, + 0.020755474, + 0.0066337106, + 0.0007035753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020705217, + 0.013116655, + 0.0034676213, + 0.0005528092, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004824517, + 0.0040706857, + 0.0008543415, + 0.00035178766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00065331993, + 0.0005528092, + 0.00020102152, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 5.025538e-05, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.014021251, + 0.009096224, + 0.0020604706, + 0.0005528092, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008945458, + 0.0075383075, + 0.0021609815, + 0.00095485226, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0035681322, + 0.0022614922, + 0.0013066399, + 0.0007035753, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0009045969, + 0.0006030646, + 0.00045229844, + 0.00020102152, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00015076615, + 0.00010051076, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0059803906, + 0.005276815, + 0.0030153228, + 0.0011056184, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0054275813, + 0.0068849875, + 0.004171197, + 0.0016584276, + 0.00020102152, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0026132797, + 0.0047742613, + 0.0028143013, + 0.0013568953, + 0.0003015323, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0014574061, + 0.0022614922, + 0.0012061292, + 0.0007035753, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00040204305, + 0.0009045969, + 0.00035178766, + 0.00010051076, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00020102152, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0052265595, + 0.008744436, + 0.004824517, + 0.0029148122, + 0.00020102152, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009850055, + 0.014272529, + 0.010704396, + 0.004472729, + 0.0013066399, + 0.00015076615, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.007236775, + 0.014071506, + 0.011960781, + 0.00457324, + 0.00095485226, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.004623495, + 0.007236775, + 0.007086009, + 0.0030655782, + 0.0005528092, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0017589383, + 0.0013568953, + 0.0023620029, + 0.0008040861, + 0.00020102152, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00020102152, + 0.0002512769, + 0.0002512769, + 0.00020102152, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.0, + 0.0, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.010051076, + 0.016835554, + 0.013367931, + 0.0053773257, + 0.0019097045, + 0.00040204305, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019348321, + 0.033872128, + 0.030505016, + 0.013116655, + 0.0031158337, + 0.00020102152, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.023569774, + 0.040455583, + 0.032364465, + 0.017287852, + 0.003417366, + 0.0005528092, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.014322784, + 0.021911347, + 0.02120777, + 0.010754651, + 0.0022614922, + 0.00020102152, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.004171197, + 0.007689073, + 0.0062819226, + 0.0037691537, + 0.0005025538, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00035178766, + 0.0017589383, + 0.0012061292, + 0.0009045969, + 0.00015076615, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.00010051076, + 0.00020102152, + 5.025538e-05, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.022464156, + 0.034274172, + 0.031208592, + 0.014423295, + 0.0035178766, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.050355893, + 0.08870075, + 0.07573486, + 0.034676213, + 0.00783984, + 0.001055363, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.057743434, + 0.10739575, + 0.094932415, + 0.048044145, + 0.012312569, + 0.0016081722, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.035681322, + 0.06824681, + 0.062216163, + 0.033269063, + 0.008643926, + 0.0006030646, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0097998, + 0.022263134, + 0.023419008, + 0.011056184, + 0.0029148122, + 0.00035178766, + 0.0002512769, + 0.0, + 0.0, + 0.0, + 0.0024122584, + 0.00391992, + 0.0042717075, + 0.0020102153, + 0.0005025538, + 0.00015076615, + 5.025538e-05, + 5.025538e-05, + 0.0, + 0.0, + 0.00015076615, + 0.0005025538, + 0.00045229844, + 0.00040204305, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.033821873, + 0.062517695, + 0.056788582, + 0.027137905, + 0.006583455, + 0.0009045969, + 0.00010051076, + 5.025538e-05, + 0.0, + 0.0, + 0.08437879, + 0.1610685, + 0.1509169, + 0.071764685, + 0.017941171, + 0.0022112369, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.11176797, + 0.21046954, + 0.203082, + 0.097897485, + 0.026635353, + 0.003417366, + 0.00045229844, + 0.0, + 0.0, + 0.0, + 0.07573486, + 0.14342886, + 0.1428258, + 0.07462924, + 0.021810835, + 0.0021609815, + 0.0002512769, + 5.025538e-05, + 0.0, + 0.0, + 0.026585096, + 0.05397428, + 0.052717894, + 0.028444545, + 0.008895203, + 0.0011558738, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.005930135, + 0.009397756, + 0.011407971, + 0.0066337106, + 0.001708683, + 0.00040204305, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00045229844, + 0.0012061292, + 0.001055363, + 0.0007538307, + 5.025538e-05, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.0, + 0.00020102152, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.040505838, + 0.07563435, + 0.07075958, + 0.035530556, + 0.009397756, + 0.001055363, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.104832724, + 0.1950914, + 0.19363399, + 0.095485225, + 0.026183054, + 0.0040706857, + 0.0003015323, + 0.0, + 0.0, + 0.0, + 0.14131813, + 0.2743944, + 0.26585096, + 0.13996124, + 0.039450474, + 0.0055783475, + 0.0003015323, + 0.00010051076, + 0.0, + 0.0, + 0.10292302, + 0.20192613, + 0.20368506, + 0.10850137, + 0.028344035, + 0.0047742613, + 0.0003015323, + 0.0, + 0.0, + 0.0, + 0.04015405, + 0.073624134, + 0.07789584, + 0.043521162, + 0.013870485, + 0.0024122584, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.0073372857, + 0.014222273, + 0.016835554, + 0.009347501, + 0.0026635353, + 0.00040204305, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.0005528092, + 0.0014574061, + 0.0014071506, + 0.0007538307, + 0.0002512769, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 5.025538e-05, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02904761, + 0.05266764, + 0.052969173, + 0.025228202, + 0.0065331995, + 0.00065331993, + 0.00010051076, + 0.0, + 0.0, + 0.0, + 0.08091117, + 0.1503641, + 0.14453448, + 0.075383075, + 0.019448834, + 0.0027137906, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.110612094, + 0.21323359, + 0.21614839, + 0.11739657, + 0.033771615, + 0.00457324, + 0.00045229844, + 5.025538e-05, + 0.0, + 0.0, + 0.0817655, + 0.16096799, + 0.16740067, + 0.090911984, + 0.025077436, + 0.0040706857, + 0.00035178766, + 0.0, + 0.0, + 0.0, + 0.033319317, + 0.061211053, + 0.067090936, + 0.037842304, + 0.011558738, + 0.0020102153, + 0.00020102152, + 0.0, + 0.0, + 0.0, + 0.005477837, + 0.0134684425, + 0.013719719, + 0.008392649, + 0.0029148122, + 0.00035178766, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00065331993, + 0.0013066399, + 0.0020604706, + 0.001055363, + 0.0003015323, + 0.00010051076, + 5.025538e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.025538e-05, + 0.00015076615, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json index fea806f12..259f752b4 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json @@ -1,1353 +1,5262 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T14:25:44.010262Z", - "id": "2asytm3k", - "document": { - "modifiedTime": "1984-08-19T17:29:37Z", - "display": { - "id": "2asytm3k", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-14T14:37:56.432335Z", + "id" : "yz1oofkv", + "document" : { + "modifiedTime" : "2048-11-08T23:06:02Z", + "display" : { + "id" : "yz1oofkv", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/hud.jpg/info.json", - "credit": "Credit line: iIOK5wy", - "linkText": "Link text: n3UAM39", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", + "credit" : "Credit line: 6cSt3uoF", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/hud.jpg/info.json", - "credit": "Credit line: iIOK5wy", - "linkText": "Link text: n3UAM39", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", + "credit" : "Credit line: 6cSt3uoF", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#D9B659", - "source": { - "id": "5cegmu8e", - "title": "title-5brloAJVVw", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#6C0D2B", + "source" : { + "id" : "xzva25jt", + "title" : "title-6sEQsGdb5O", + "contributors" : [ { - "agent": { - "label": "Machiavelli, Niccolo", - "type": "Person" + "agent" : { + "label" : "Machiavelli, Niccolo", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "2asytm3k", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Machiavelli, Niccolo"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5cegmu8e", - "sourceIdentifier.value": "8H2HAskKzU", - "identifiers.value": ["8H2HAskKzU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-5brloAJVVw" + "query" : { + "id" : "yz1oofkv", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Machiavelli, Niccolo" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "xzva25jt", + "sourceIdentifier.value" : "KVsY0AgisP", + "identifiers.value" : [ + "KVsY0AgisP" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-6sEQsGdb5O" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"Machiavelli, Niccolo\",\"type\":\"Person\"}" ], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["Machiavelli, Niccolo"], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.007367362, 0.020613778, -0.019962939, 0.013372729, 0.023373587, - -0.0066427556, -0.015318146, -0.018638695, -0.01119108, -7.8015064e-4, - 0.005172396, -0.010616595, -0.008570372, -7.891544e-4, 0.002781336, - 0.0018580256, -0.003300547, 0.017993724, -0.027259225, 0.0412805, - 0.015186843, -0.007231142, -0.012300202, 0.010439855, 0.0024336898, - -0.019552635, 0.0024432796, -0.029590486, 0.006670317, -0.011735774, - 0.014051262, 0.008479688, -0.0012699234, 0.010627753, -0.0124489255, - 0.006498493, -0.009739542, 0.03190826, 0.010094389, -0.019919617, - -0.015033614, 0.017853586, -0.0017111973, 0.010127674, -0.009335237, - 0.013103524, 8.848742e-4, 0.012329658, -0.0062723216, 0.017529668, - -0.006526342, 0.031650893, 0.009727725, -0.034890264, -0.012337997, - 0.010326588, 0.024226187, -0.0037059723, 0.02479167, 0.0054421644, - 0.002895009, 0.015965436, -0.009096262, 0.030925479, -0.004909216, - 0.0023433766, -5.88918e-4, 0.009023307, -0.0034177583, -0.0066189207, - 7.6375983e-4, 0.01856529, 0.019961663, -0.004800951, 0.0015296187, - 0.011233325, 0.0015118361, 0.011203303, 0.0035377047, 0.004411716, - 0.012503042, 0.027714862, -3.2892675e-4, 0.019352274, -0.0021223144, - -0.026143422, 0.023686746, -0.008692763, -0.02587652, 0.0046485295, - -0.008187947, 0.0038896312, -0.011602452, 0.031271867, 0.027042348, - 0.008980492, -3.2506333e-4, 0.005582169, 0.005979981, -0.0073921597, - -0.012067882, -0.005091766, 0.0020487132, 0.013014857, -0.0019727487, - -0.009775251, -0.012780597, -0.01614102, -0.018482089, -0.0069575645, - 0.004421594, 0.01719122, -0.01314358, 0.010638136, -0.0075885626, - 0.0012936329, -0.008411029, -0.01861209, -0.01560608, -0.009525536, - -0.021144696, -2.1174757e-4, -0.007372913, 0.02337812, 0.0016739748, - -0.014701406, 0.004938807, -0.009058459, -0.009941197, 0.0010951139, - -0.007819976, -0.010694848, 8.581933e-4, -0.017450714, -0.0167573, - 0.027040754, 0.014544597, 0.01837817, -0.024576908, -0.0031815737, - 0.007856906, 0.0052108583, 0.01217735, -0.006872984, -0.009866587, - 0.026860435, -0.0030967991, 0.011105783, 0.011374288, 0.029776366, - 0.010248953, 0.023111727, 0.010701621, 0.017950023, 0.014088449, - 0.02794003, -0.020532629, 4.6244534e-4, -0.01074116, 0.01907461, - 0.005085149, 0.007206157, 0.0037958468, 0.005324921, -0.0038719561, - 0.02399079, 0.006589492, -0.018196724, -0.016036253, 0.025988514, - -0.011984567, -0.021115761, -0.022912178, 0.0067606242, -0.021192623, - -0.0023909654, -0.025690498, 0.02688211, 0.023830267, 0.010543107, - -0.006537384, -0.0073100356, -0.01574523, -0.009437175, -0.01910233, - 0.0058016335, 0.02139927, 0.019446086, 0.0017177871, -0.0026130858, - -0.037823137, -0.008286812, 0.014384601, -0.03658374, -0.002352651, - -0.0046108593, 0.013315256, 0.030404728, -0.011721866, -0.009604834, - -0.025450308, 0.015818205, -0.012636204, -0.0030095347, -0.0047579966, - 0.017073076, 0.010107532, -0.0048871567, -0.0016861208, -0.021854673, - -0.0029058007, -0.0054058568, -0.0039314064, 0.009375016, -0.014450757, - 0.0026205508, -0.04181255, 0.0044146148, 0.032903936, 0.00970283, - 0.011048533, -0.00908266, 9.955255e-5, 0.012200349, 0.016211666, - -0.0011198969, 0.02116854, 0.011252544, 0.009814032, 0.01906447, - -0.0015969601, 0.005877152, 0.013787549, 0.027234394, -0.019517919, - 0.011275957, -0.019463047, -0.0043188618, -0.0055849, -0.033326223, - 0.009958016, -0.0026884412, 0.018919658, 0.006501685, 0.00974664, - -0.009288235, 0.014765692, -0.024653545, -0.0075822286, 0.008572474, - -0.014188107, -0.011273488, 0.0019631588, 0.0052359034, 0.015884738, - -0.0015031466, -0.0021962707, 0.006870777, 0.006689115, 0.0068892394, - -0.0048583183, 0.004207969, 0.019550065, 0.0068877987, -0.037185848, - 0.029700702, -0.017286558, 0.013929799, -0.0018605522, -0.016380468, - -0.014849854, -0.0027027575, 0.006736537, 0.006217829, -0.0024766524, - 7.515267e-4, 0.010351674, -0.023855668, -0.01295255, 0.0040865806, - 0.01959043, -0.026390072, 0.0069942656, -0.006800443, -0.009113224, - 0.016177492, -0.009652964, 0.0039558504, -0.014387814, -0.014106483, - 0.0019099046, -0.018673422, -0.028877998, 0.007911379, -0.0029268418, - 0.012898054, -0.016871603, -0.026771368, 0.0021659213, -0.017593624, - 0.0055108997, 0.025980366, 0.010940939, 0.0025426503, 0.011453518, - 0.005809657, 0.0032967974, 0.016020179, 0.021182215, 0.01818122, - -0.018095221, 0.013296534, 0.026216734, 0.007965279, 0.034228485, - -0.014867043, -0.010034659, -0.005316446, -0.004665473, 0.018676726, - -0.010701839, -0.0063900393, -0.014343738, 0.03979111, 0.010410344, - 0.024229977, 0.0040044133, 0.010805656, 0.008596928, -0.015597923, - -0.019798314, -0.0013958961, -0.0023329488, 0.01589002, -0.0065044486, - 0.018742643, -0.010554672, 0.012694871, 0.0044064377, 0.0077260965, - -0.008994995, -0.013609671, 0.035385877, 0.016799279, -0.019139053, - 6.1409525e-4, 0.009077984, 0.0063343057, -0.008994514, 0.004449918, - -0.015552181, 0.014233304, 0.005622526, 0.0018550864, -0.018119201, - 0.020838294, 0.008167785, -0.009416353, -0.016696442, 0.01921, - 0.036886495, -0.018580126, -0.02130912, 0.008967309, 0.013066744, - -0.019282402, 0.013341266, -0.010627509, -0.0017636378, -0.019059753, - 0.023970148, 0.0010163867, -0.00815068, 0.004259967, -0.0126931835, - 0.039331462, 0.009339366, -0.0016406425, 0.0203309, 7.995055e-4, - -0.0029859229, 0.0012650945, -0.01085674, -0.0060347947, -0.019722624, - -0.009328606, -0.0124736745, 0.019510293, 0.0089102015, 0.0031232229, - 0.0028893673, 0.030528093, 0.02038552, -0.013957566, 0.019156927, - -0.0080236085, -0.017416101, -0.015551262, 0.023138648, 0.012890903, - -0.007816348, -0.0021793654, 0.026233064, -0.009305179, -0.0041793617, - -0.013801401, -0.009325629, -0.0037794174, -0.0018456551, 0.0026796043, - 0.017993942, 0.012171691, -0.013816, 0.0036880134, -0.03347922, - 0.012082778, -0.0023831083, -0.0044486416, 0.0018610995, -0.03436525, - 0.025665533, -0.03682426, -0.02199487, 0.0053553395, -0.02083995, - -0.0029778706, -0.0037693244, -0.019602958, 0.022915933, 0.015862245, - -0.011047805, -0.017929237, 0.007304174, -0.007894, -0.011849296, - 0.005765097, 0.009268116, 0.010313848, 0.028257376, 0.017462842, - -0.022858592, 0.015253182, 0.0057605733, -0.0051039862, -0.008822987, - 0.0243411, 0.009805324, 0.020529699, -0.008494055, -0.013489876, - -0.003230368, 0.006549421, 0.006355257, -0.017181622, -6.021246e-4, - 0.0045982436, 0.0013152036, -0.018723179, 0.024068212, -0.022965236, - 0.028096922, -0.033419885, -0.004668379, 0.008347286, -0.010975957, - -0.017263437, 0.003474069, -3.6857778e-4, -0.0055662217, -0.0016076758, - -0.0109425215, -0.011718044, 0.0043768827, -0.020943947, -0.009638661, - -0.008161539, -0.012510392, -0.00232781, -0.0060609938, 0.028615324, - -0.0014673887, -0.007902813, -0.03877547, -0.033738874, -0.009426837, - 0.033920966, 0.004928391, -0.031414922, -0.021025833, -0.018148007, - 0.011084461, -0.0028619985, -0.003324887, -0.006497967, 0.029371507, - 0.029701212, -0.017262615, 0.0056776004, -0.019577764, -0.020921824, - -0.0077946982, -0.01439605, -0.018370027, 0.023524221, -0.010157113, - -8.2311e-4, 0.017201727, -0.006275012, 0.0033440038, -0.001753132, - -0.014679583, -0.007880201, 6.0176523e-4, -0.0023051237, 0.006115749, - 0.009444485, -0.014015057, -0.0108459005, -0.005320282, -0.022331957, - -0.030192187, -0.0019917674, -0.0073556616, -0.0015292736, -0.009325495, - -0.004089197, 0.01935716, 0.015580278, 0.015645852, -0.011428466, - -0.030635167, 0.024845187, -0.0072086337, -0.0034292166, -0.015122597, - -0.009714762, 0.020107057, -0.014983661, -0.006148857, -0.021540146, - 0.02832587, 0.0032019054, 0.03229065, 0.0071810195, -0.0010311101, - -0.005543288, 0.013534946, -0.0055836593, 0.0044757896, -0.0021557324, - -0.0098453425, -0.02103782, 0.009138374, -8.7885914e-4, 0.019878505, - 0.012160361, -0.0076029715, 0.0036821691, 0.01444651, -0.027145604, - 0.034550548, -0.0064447876, -0.0037124157, -0.016073838, -2.0070476e-4, - -0.008369325, -0.002902115, 0.016844295, -0.020688528, -0.014712944, - 0.009302332, 0.0028185423, -0.015340433, 0.0051719425, 0.009660029, - 0.049366, 0.0070428597, 0.0149568245, 0.0046983506, 0.023949167, - 0.025359575, -0.024293426, -0.004681929, -0.02301572, 0.010654336, - 0.01629158, -0.006853752, 0.006900054, -0.0039667976, -0.022436349, - -0.013912764, 1.6197602e-4, 0.012395636, -0.008453492, 0.015597708, - 0.0029689795, 0.009697446, -0.023980204, 0.028484771, 0.010462009, - -0.027920065, 0.022058804, -0.013697107, 0.013405509, 0.017425725, - 4.523231e-4, 0.002130369, -0.016445478, -0.01719594, -0.002755606, - -0.030546395, -0.017463643, -0.0053708716, -0.016663002, 0.0036914432, - -0.036276452, 0.012090499, 0.0025439144, -0.005754573, -0.014545698, - -0.01659291, -0.001974274, -8.6264574e-4, -0.013040833, -0.0030742895, - -0.009731136, 0.012512681, -0.043178484, -0.025420187, -0.020792445, - 0.0023259039, 0.015714617, -0.016320651, -0.017101739, 0.0090250615, - 0.019060438, -0.019247517, 0.0166565, 0.004530539, -2.5454833e-4, - 0.02774693, 2.7770235e-4, -0.017160144, 0.011449051, 0.008769964, - 0.010435347, 5.8455026e-4, 9.571748e-4, 0.008236921, 0.014175354, - -0.009910063, 0.0036417965, -0.008141814, -0.02342537, -0.026047042, - -0.009834351, 0.002239176, -0.01431349, -0.01667972, -0.027411863, - 0.0027952231, 0.009195517, -0.0066137696, -0.0017035851, 0.006406028, - -0.031605322, 0.010116735, -0.0032328956, -0.0172222, -0.027234018, - 0.008591868, -0.0015162443, -0.0011788894, -0.002713495, 0.01008723, - -0.0045958054, 0.011661091, 0.019752111, -0.025312254, -0.019141931, - -0.010505216, -0.028242629, -0.0076756566, 0.018620279, 2.1436281e-4, - 0.008462547, 0.01238171, -0.0114618065, 0.014472776, -0.0027640462, - -0.01929563, 0.011640071, 0.032188464, 0.02675065, -0.009024822, - -0.0017808636, 0.008799473, -0.009184649, 0.010202702, 0.010216951, - 0.00548011, 0.003655041, 0.0273582, 0.0055337483, -0.00494175, - 0.010703392, -0.0031688567, 0.014058633, 0.014616702, 0.0010557681, - 0.006408788, -0.023729116, -0.03005943, -0.024442857, -0.010346473, - 0.027041031, -0.0010984332, 0.0049659847, 0.044638146, 0.017500335, - 0.0031632374, 0.036240388, 0.0048096017, 0.022989163, -0.0013634075, - -0.009590393, 0.012809001, 0.012367619, -0.014073733, -0.0070169643, - -0.0074062212, 0.009884295, 0.029006943, 0.0026821725, 0.0011478065, - 1.073806e-4, 0.031213002, 0.011491131, 0.0011636039, -0.012184088, - 0.008432594, -0.0048505818, -0.002536711, -0.005527482, -0.013473264, - 0.0056748576, 0.011773593, 0.014300457, -0.003623623, 0.006151851, - -0.018771341, 0.0012513327, 0.007693038, 4.6209537e-4, 0.01255681, - -0.046141926, -0.0073805475, 0.009561886, 0.015712313, 0.0059501077, - -0.020481624, -0.008203762, -0.019435335, -0.01736979, 0.011268357, - 0.029536583, 0.0024853235, 2.1956366e-4, 0.0077268463, 0.0014561234, - -0.015904265, -0.0059214015, -0.016450744, 0.0010189784, -0.020440316, - 0.01833083, 0.0059609297, -0.011026729, 0.016157577, -0.019740848, - -0.0068862014, -0.010488383, -0.017645061, 0.0039607366, 0.014179173, - 0.01293387, 0.018407164, 0.012665324, -0.029951109, -0.0020979464, - 9.764736e-4, 0.01849563, -0.021977477, -0.0026592459, -0.009903582, - -0.012818139, 0.0021302225, 0.02559469, -0.027895082, 0.013101006, - 0.001664428, 0.042411488, -0.026704824, -0.024613349, 0.012102617, - 0.008476731, -0.020910202, 0.008869186, 0.009528171, 0.022886302, - -0.013853846, 0.01759364, -0.0026696476, 0.011805062, 0.00450057, - -0.00427063, -0.0236442, -0.007235908, 0.014362101, 0.005382151, - -0.013571147, -0.009296984, 0.026121479, 0.032140974, 0.019354662, - -0.013106806, -0.031139346, 0.0055120704, -0.011179064, -0.0026707111, - -0.026749523, 0.003953528, -0.019507274, -0.022953518, 0.033811443, - 0.018594785, -0.0027925926, 0.00486441, -0.0043638824, -0.0061533786, - 0.015081683, -0.010302586, -0.013168571, 0.01943777, 0.011944344, - 0.01506876, -0.012518629, 0.0012798486, 0.013056527, -0.0028821293, - 0.0027911693, -0.0045592603, 3.100116e-5, -0.0042567505, 2.2412266e-4, - 0.0014805977, -0.014459178, 0.023921018, -0.01092957, -0.024551995, - 0.018091641, -0.030457431, 0.007444051, -0.011210728, 0.0029123032, - -0.008155661, 0.020502955, 0.02046475, 0.024277143, 0.020574132, - -0.008772219, 0.01140079, 0.0011061935, 0.02834236, 0.010644573, - 0.0072202035, -0.0035275219, 0.014628918, -0.017384797, -0.014813369, - -5.4127374e-4, 0.01808822, 0.0076282253, -0.01316887, -0.014972633, - 0.012055809, -0.008723624, -0.007466099, -0.0031536326, -0.0028952742, - -0.029412488, -0.016204681, 0.004117285, 0.0062639536, -0.035595104, - 0.030951833, 0.008470413, -0.0018672755, -0.016267316, 0.006637462, - -0.0055656726, -0.008909208, 0.0034643684, -0.009038817, -0.0030979235, - 0.0023544792, 0.01777543, 0.0018549754, 0.018158955, -0.0046940777, - 0.019063221, -0.009228964, 0.022909615, -0.0060499767, 0.002013597, - -0.017299535, -0.010039918, -0.008932664, -0.008285323, -8.964256e-4, - 0.013631485, 0.003605316, 0.0145924, -0.012819966, -0.0130955875, - -0.0063121947, -0.0147969015, 0.018887244, -0.0023558703, -0.0060651787, - 0.02963341, -0.03761799, 0.006120982, 0.003989535, -0.0023497264, - 0.016112493, 0.01392888, 0.02239865, 0.008614452, -0.0034337554, - -0.015950887, -0.015497338, -0.015263182, -0.00926192, 0.0027890147, - 0.02059565, -0.009357308, -0.012305166, -0.0150229065, 0.0014921633, - -0.0036649024, -0.01020398, 0.015880745, 0.012223373, -0.023363397, - -0.045480788, 0.005484068, 0.010638663, 0.0032449318, 0.0036465225, - 0.011748307, 0.001961121, -0.0010420261, 0.019398231, -0.0045829206, - -0.025189156, 0.0096925665, -0.0024120056, -0.010495645, 0.021225372, - -0.034360122, 0.0020569954, -0.0063269334, -2.5987075e-4, 0.012437244, - -0.028628547, -0.020317575, 0.015136384, -0.008135842, 0.023423145, - -0.030919405, -0.0030505678, 0.0035225505, -0.009021613, -0.008756843, - -0.015903914, 0.005874429, 0.01172825, -0.012974788, -0.019064907, - -0.00721825, -0.017816477, -0.0021829922, -0.0013215941, 0.0109220855, - 0.0019227881, -0.014761869, 0.014450883, -0.015150316, 0.009930946, - 0.024028407, -0.003783874, -0.0010902954, -9.4775605e-5, -0.011241044, - -0.01167335, 0.032044645, 0.015998807, 0.005294075, -0.01682329, - -0.0039786357, -0.021064393, -0.002613168, 0.0087130405, -0.002685447, - -0.025780877, -0.0030936422, -0.011106249, 7.9505594e-4, 0.009230145, - -0.022286242, 0.019571844, 0.0033228672, -0.0024306527, 0.0029305422, - -0.014071032, 0.01321955, -0.0053981487, -0.022789853, -0.0042017256, - -0.01593299, 0.01569247, 0.017194908, 0.017423645, 0.028050655, - -0.0046441182, 0.020861836, 0.0143956365, -0.004658093, -0.009218242, - -0.027092505, 0.025259173, -0.0013222955, -0.02162793, 0.023739746, - 0.016830528, -0.025761623, -0.0024708386, 0.012258302, -0.013037615, - -0.0069666286, 0.020526202, 0.011414764, 0.015538586, -0.023029238, - -0.009682899, -0.01747695, 0.014090795, -0.0050686114, 0.007754412, - 9.716346e-4, -0.0019306153, -0.009312095, 0.028036153, 0.019907048, - -0.004289569, -0.013983719, -0.0048858705, 0.014120654, -0.01467292, - 0.009926161, -0.02039716, 0.003191297, 0.009541482, -0.007425626, - -0.015531231, 0.012504257, -0.014031711, -0.027189065, 0.002678782, - 3.1341537e-4, 0.015266923, -0.024756711, -0.036377963, 0.0097383, - 0.0027108723, -0.0013352252, -0.016995657, 0.0062183626, 0.023738699, - -0.0028225286, -0.009533924, -0.041072946, -0.017194286, 0.03282152, - -0.008279591, -0.023845425, -0.018515332, 0.015470778, 0.028071439, - 0.011327566, -3.188012e-4, 0.017443538, 0.004467105, -0.005284493, - 0.017391445, -0.009694021, -0.017522918, 0.0031559798, 0.006418883, - -0.022110319, 0.02374691, 0.011977236, 0.0067773038, 0.014161869, - -0.0090768775, 0.018551, 0.0021565072, -0.0049978206, 0.009300951, - 0.024377381, -0.026805196, 0.027703915, 0.009058523, 0.018455409, - 0.001247941, 0.008994337, 0.051352065, -0.037127778, 0.0016854501, - 0.0039807586, 0.0035653492, -0.007798099, 0.008420473, -0.03646432, - 0.015217359, -0.009502412, 0.015453743, 0.0042738663, 0.0046599773, - -0.033893775, -0.0022127028, -0.00953952, -0.011157786, -0.010083726, - 0.004256946, -0.0201775, -0.014477362, -0.003527826, 0.0037870198, - 0.0066718, -0.00236665, 0.0037638429, -0.0065061003, -0.015888942, - 0.018715808, 0.004690111, -0.0024787285, -0.0026965505, -0.0039925715, - -6.9548166e-4, -0.02806192, 0.003435272, -0.0066514947, 0.01710039, - -0.016353622, -0.00375599, 1.6261325e-5, 0.012645285, -0.006389179, - -0.013052943, 0.015417662, 0.019688131, 0.005960342, -0.0011651071, - -0.0068038623, 0.013126327, -0.012590296, -0.022273168, 0.017486664, - 0.0027926457, 0.0030890894, 0.006149764, 0.010453907, 0.018111954, - -3.0382813e-4, 0.02442879, -0.025084633, -0.026631992, -0.0037921346, - -0.008875947, -2.7716198e-4, -0.012350366, -5.35889e-4, 0.013522026, - -0.008735293, 4.630841e-4, 0.022732256, -0.010968409, 0.01160599, - 0.008819408, 0.017968882, -0.0040790937, 0.0097809145, -0.001132696, - 0.020748708, -0.006415625, 0.014855318, -0.0115495855, -0.009908713, - 0.025693862, 0.016827075, 0.0013372626, -0.0056849252, 0.016596144, - 0.020276496, 0.017889723, 0.00351516, -0.025840262, 0.012826284, - -0.014579244, -0.00518742, -0.025498386, -0.0063459016, 0.029216675, - 0.0016713215, 0.014628328, -0.014180132, 0.0028784683, 0.031780582, - -0.025093636, 0.04718753, -0.0028163483, -0.0057575474, -0.009807158, - 0.012659961, 0.0195144, 0.013284112, -0.02154348, -0.01783606, - 0.03012877, -0.012891565, 0.013960312, 0.0012933622, 0.019176813, - 2.4350383e-4, -0.0073850467, -0.00516243, -0.023928022, 0.014699301, - 0.0040956084, -0.0037848486, 0.025079876, 0.025749953, -0.0047003757, - 0.007090288, -0.0024859952, 0.044492606, -0.003946826, 0.017522097, - -0.004466552, 0.004792079, -0.009269883, 0.0029946407, 0.0053810976, - -0.014995105, 0.0129037155, 0.0017906324, 0.019214628, -0.010107109, - -0.029504959, -0.01416237, -0.0042029917, -0.0057052732, 0.0034067899, - -0.018481473, -0.014624826, -0.009126139, 0.015081112, -0.006855396, - 0.032392226, 0.0019035308, -0.017790556, -0.03392315, 0.003194314, - -0.0054239873, 0.0021137248, 0.018588064, 0.012302966, -0.01199325, - -0.0068388996, -0.011018958, -0.002858377, 0.039435647, 0.02954746, - 0.006402962, -0.008833688, 0.00492138, -0.0044659786, -0.011022493, - -0.004554952, -0.0010631159, -8.8166696e-4, 0.012508119, 0.007401018, - 0.037960004, 0.03467339, 0.009603584, 0.010718141, -0.016494267, - 0.018733267, 0.01779621, 0.0044907187, 0.027083015, 0.0035084514, - 1.5887318e-4, 6.6435535e-4, 0.014476079, -0.02129638, 0.017301017, - -0.013054382, -0.01791671, 0.0027459331, -0.002901038, 0.007845767, - 0.015756568, 0.03917767, -0.01418839, 0.022648957, 0.0038636592, - -8.510569e-4, -0.014694799, 0.017215366, 0.005366506, -0.012081162, - 8.424737e-4, 0.007933266, 0.018431988, 0.0031275481, -0.018204786, - 0.0033504013, -0.009862691, -0.01574074, 0.029000431, -0.024907976, - 0.02154179, 0.0016266021, -0.011827209, -0.016210107, -0.0030574207, - 0.006261114, -0.0075268457, -0.02690283, 0.003008259, 0.028818134, - -0.0012542838, 0.029449, 0.025512507, 0.008068407, 0.014243364, - -0.01613476, -0.02326656, 0.0049214624, 0.011616646, 0.0103669455, - -0.012438749, 0.0010502881, -0.022629455, -0.04027908, 0.018663242, - 0.026984155, 0.02202397, 0.01599439, 0.04425578, 0.012033122, - -0.0016226823, 0.021431448, -0.019371098, -0.0044918233, 0.005669835, - -0.0066237706, -0.008272629, -0.005014919, 0.0069429544, -0.017635603, - -0.0035279405, 0.005671913, -0.009217016, -0.015020816, -0.024131121, - 0.016217489, -0.010093241, 0.0010628402, 0.0022741132, -0.0026323162, - 0.003814612, -0.008907322, -0.0017063145, 0.0149357645, -0.012703684, - 0.03441585, -0.010331681, 0.011051211, -0.003141979, -0.013013113, - 0.007825829, 0.013385041, 0.0059572696, -0.001728763, 0.013096071, - 0.035424434, 0.018532844, 0.018897554, 0.011029056, 0.0034096355, - -0.0067130798, -0.00721973, -0.002222122, 0.03872354, 0.0210144, - 0.004764008, -0.0021657643, -0.012175656, 0.0043221023, 4.3573545e-4, - -9.8454e-4, -0.0030687866, 0.006067315, -0.0030139794, -0.0058176094, - -0.008884894, -0.021651676, 0.009764901, -0.022612853, 0.0035073108, - -0.0062774126, 0.006074849, 0.0015428753, -0.0048809657, 0.0335091, - 0.022444226, 0.0065543414, 0.0019194257, 0.013983531, -0.043110464, - -0.01578714, 0.016035127, -0.0073128156, 0.010647302, -0.0122515615, - 0.021012716, -0.006222845, 0.010958102, -0.024853064, -0.029971449, - -0.0055207824, -0.0030018587, -0.0066877, -0.017440477, -0.0030726513, - -0.020582106, -0.0061719115, -0.022498576, 0.013449144, 0.0060877884, - 0.0040016547, -0.015902063, 5.732185e-4, 0.0033314747, -6.708184e-4, - -0.0034006503, 0.017746197, -0.0017151776, -0.03260451, -0.030060684, - -6.1079214e-4, -0.005191828, 0.0019787664, -0.044810295, -0.0048149507, - 0.009081763, 0.0043180953, -0.0074465675, 0.005321804, 0.0026019742, - 0.011864168, 0.031580586, 0.0136230355, 0.003099595, -0.009990691, - -0.021160543, 0.0060877553, 0.016424019, -0.0043564807, 0.017220475, - -0.0035415327, -0.011093977, -0.010653438, -1.8407019e-4, -0.026017241, - 0.018090816, 0.031238083, -0.023309514, -0.011534592, -0.014041896, - -0.009859234, -0.023542952, -0.026295833, 0.014992644, 0.011975472, - -0.007982356, 0.0117986, 0.0014086682, -0.019822162, -0.0044664037, - 0.01079557, 4.918674e-4, -0.019933183, 0.0053701196, 0.0262312, - 0.026544921, 0.010208003, 0.00978842, -0.015199174, 0.018109355, - 0.016749939, 0.008785067, -0.0031666383, -0.010430839, -0.007221903, - -0.0070851464, 0.0052164597, 0.018913954, 0.008507787, -0.021404443, - 0.019905563, 0.011528709, 0.01158253, 0.018027809, 0.040513203, - -0.021099947, -0.018729907, -0.013773549, 0.025525002, 0.0045710895, - -0.0019244781, 0.015258957, 0.025066791, -0.0010255339, 0.008897206, - 0.0022656806, 0.023305219, -0.019538684, 6.0835516e-4, -0.014541996, - 0.013903507, 0.0042869244, -0.0010048257, 0.017250141, 0.019715967, - -0.0030632971, -0.00413392, -0.01022458, -0.01792707, 0.041687533, - -0.021137578, 0.00894487, -0.005998515, -0.007842005, 0.017140578, - 0.002654587, -0.017828835, 0.0013322632, 0.013868606, 0.0068621677, - -0.0020517814, -0.019169345, -0.0056174444, -0.027446829, 0.016864326, - -0.014744989, 0.007439929, 0.008668707, 0.022367887, -0.011107679, - 0.010557052, 0.012833845, -0.023669774, 0.03739237, -0.014319766, - -0.020632526, 0.007292818, -0.0033571364, 0.0010493265, -0.008249704, - -0.008335888, -0.010980005, -0.017615292, 0.015900612, 0.021646641, - -0.0072117555, 0.021139262, -0.0062854635, 0.0039814822, 0.014486922, - -0.0024213204, -0.0023544028, 0.00391027, 0.017382968, -0.0011166796, - 0.010740892, 0.018142318, 0.02959913, 0.012752613, 0.0038833392, - 0.031606436, 0.01453984, -0.025638744, -0.01528284, 0.029701933, - -0.0022503878, -0.035392754, 0.0031332874, 0.0060516484, 0.020326741, - 0.00487425, 0.008149277, 0.009303014, -0.02423173, 0.0051412755, - -0.0066039115, 0.024954401, 0.006182746, -0.019661266, -0.012369143, - -0.03502491, -0.005034122, 6.7853933e-4, -0.0065859263, -0.0057329102, - 0.01843232, -0.0075961966, 0.028105041, 0.0088498965, -0.012706465, - -0.023875548, -0.019775927, -0.020750161, 0.021885412, 0.0015474202, - 0.008972629, -0.010287861, -0.03319678, 0.008948986, -0.0044929613, - 0.01918239, -0.016082449, 0.022273561, -0.0061987215, -0.010646576, - -0.032621283, -0.003589268, 0.018101083, 0.01830946, 0.019488357, - -0.010587313, -0.035451796, 0.018008765, -0.011888988, -0.0023162726, - 0.011504334, -0.0102983415, 0.0062222863, 0.032323707, -0.0050098933, - -0.0022170118, 0.018936237, -0.0060269176, -0.006748248, -0.011608513, - 0.014341242, -0.01992822, 0.00420067, -0.009814279, 0.0045050657, - 0.019461548, -0.0052178665, -0.018206254, -0.013974311, 0.008239478, - -0.01019803, -0.004037626, -0.002749066, -0.0035643748, 0.023007683, - 0.006529829, -0.029522339, 0.043241944, 0.003738698, -0.012284315, - 0.0025050289, 0.0057849144, 0.0013377453, -0.00939703, 0.023929622, - -0.023498828, 7.2865706e-4, -0.0051697907, 0.017677762, -0.008989751, - -0.008991192, -0.008713814, -0.01091609, 0.015539238, 0.0068999953, - 0.010450525, -0.0133975465, 0.0130264815, -0.0070046433, -0.033045378, - -0.014236923, -0.02385628, 0.028528277, 0.039197206, -1.346351e-4, - 0.011311462, -0.009482303, -0.035070132, 0.0048698955, -0.010543048, - -0.012000708, -0.004446076, 0.0021825673, 0.0010418806, 0.018075177, - 0.04274359, -0.022786733, 0.0069660787, 0.02415152, 0.027668674, - 0.0021972775, -0.00890632, 0.012475468, 0.014095872, -0.022835873, - -0.014592479, 0.0025013871, 0.004041653, 0.023616908, 0.0019842128, - -0.0138674285, -0.0012266056, 5.8473315e-4, -0.01636425, -0.0067847017, - 0.0059866854, 0.0042333193, 0.011099014, 0.013846835, -0.032220416, - -0.012673581, -0.013215748, 0.020169284, -0.012040631, -0.020422703, - -0.0027960374, 0.0028015273, 0.0020159886, -0.006125886, 0.0115887895, - -0.017730998, -7.9190213e-4, -0.022552747, -0.0056036958, 0.008627522, - -0.015200992, -0.027289355, -0.006888967, 0.014653753, -0.007840741, - 0.0051411134, -0.0143988235, 0.019246982, 0.012850759, -0.015460131, - -0.03660434, -0.009792493, -0.007377931, -0.012037641, -0.009644412, - 0.018317489, -0.019096011, 0.017144928, 0.017410144, 0.007137845, - 0.0049882554, -0.0017298004, 0.008066447, -0.02568901, -0.004533754, - -0.010258002, 0.0039831228, -0.010912109, -0.021997906, -0.0021461113, - -0.019399635, -0.024729177, 0.0024908055, 0.005167685, 0.034285724, - 0.017768646, 0.013980276, 0.0037830207, 0.017039564, 0.0039545796, - 0.01778544, -0.010193302, -0.003124418, -0.020170026, 0.0014406584, - 0.02527799, 0.0042784526, -0.0058128755, -0.019121842, 0.007730581, - -0.0054750745, 0.0058609825, -0.007597327, 0.010275503, -0.04608581, - -0.0032261116, -0.01224531, 0.0055546165, 0.0075416104, 0.021411167, - 0.0027225772, 0.032475777, 0.0078642145, -3.169521e-4, -0.0150397355, - -0.016366616, 0.006548845, 0.016055427, 0.006867455, 0.01367902, - 0.030120885, 0.007286816, -0.015604122, 0.014475911, 0.007904649, - -0.010210052, 4.997261e-4, -0.03102405, 0.012986444, 0.020253208, - 0.02174309, -0.028674526, 0.008206015, 0.010704082, 0.021508187, - -0.010092766, -0.0019223073, 0.025377713, 4.3546167e-4, -0.0099290935, - 0.007727726, 0.006980477, 0.009557552, -0.028292362, -0.023015842, - -0.010567444, 0.002527426, 0.011900992, -0.013835331, -0.0049017696, - 0.0120459655, 0.008325645, 0.02184622, 0.001433608, 0.005915402, - 0.00862277, 0.0051966743, 0.02052465, 0.005013192, -0.020555649, - -0.017393267, -0.013026225, -0.009197384, 0.016247775, -0.007093036, - -0.015836705, 0.011609115, 0.024454625, 4.333191e-4, -0.028018318, - -0.0015261614, 0.016448043, 0.016214639, -2.5752073e-5, -0.010470417, - 0.005700126, 0.014922167, 0.038503323, -0.017379066, 0.0105113, - -0.012183374, 0.01590822, 0.0020079147, -0.016340798, 0.019672582, - 0.017619116, -0.004616019, 0.0051914235, 0.022103015, -0.02198381, - 0.0021316146, 0.007987569, 0.01491339, 0.009859128, 0.010160855, - 0.0036708524, -0.010496604, 0.006473714, -0.011317912, -0.009812714, - -0.01196008, -0.021286732, 0.025732597, 0.0016776699, -0.011733856, - 0.002676994, -0.016801072, -0.009816053, 0.018773787, -0.008636446, - 0.02002187, 0.01856573, 0.028473342, -0.0030658245, -0.0022836644, - -1.5796632e-4, 0.006702938, 0.013392081, 0.0035674707, 0.015675185, - -0.009015861, 0.015049453, -0.002873985, -0.015260802, 0.018048657, - -0.0085368715, -0.010111945, -0.031032613, 0.017915215, 0.002293002, - 0.012001868, 0.0035590695, -0.016060084, 0.009017858, 0.039993104, - -0.012371194, 0.013609679, 0.0037284475, 1.2152622e-4, -5.0916046e-6, - 0.011023744, 0.0022521862, 4.5991696e-5, -0.018210208, -0.024585111, - 0.01533979, 0.0069286376, 0.0038097757, 0.0015517389, -0.007707484, - -0.013494443, 0.020126065, 0.015357702, -0.024303261, 4.8209148e-4, - 0.017170584, 0.020245666, -0.011197303, -0.0031748854, 0.023183657, - -0.0013273973, -0.0049842447, 0.016544135, -0.019094909, 0.013279896, - -0.0044791163, -0.010842484, -0.008041253, -0.011659343, -0.020267712, - 0.0029016987, 0.0065901554, 0.009706882, -0.034605134, 0.007981463, - -0.007625571, 0.016699295, -0.0057892343, 0.008188121, 0.011548329, - -0.009744697, -2.2751393e-4, -0.01806778, 6.0482504e-4, -0.008740188, - -0.027798606, -0.0131774265, 0.005599256, -0.004406097, -0.002146635, - 0.019366458, -0.036190987, -0.011867688, -0.019710302, 0.0042314227, - 0.014193576, -0.038594045, 0.01672371, 0.0077000973, 0.012442801, - 0.018495815, -0.029996788, -0.016538922, -0.002928756, 0.015573328, - -0.016945202, -0.007447159, -0.019134138, -0.0031734284, -0.02324951, - -0.030173171, 0.008668137, 0.0072892644, -0.010899165, 0.002969293, - 0.012016167, -0.02354178, 0.007844918, -0.005494276, 0.0044081793, - -0.03336143, 0.017637657, -0.010636676 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + "Machiavelli, Niccolo" + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.011581482, -0.002406928, 0.011968595, 0.016584825, 0.017720152, - -0.015603703, -0.023573866, 0.0025383257, -0.016461732, 0.012235832, - -0.005853263, 0.018373799, -0.0022398503, 0.006193251, -9.2108105e-4, - -0.011357613, 0.04007019, 0.019183243, 0.0017149907, 0.0059621474, - -0.009212694, 7.63714e-4, -0.0063909385, 0.02100986, 0.015445205, - 0.0056693666, -0.0023831595, -0.0045591453, -0.011485489, -0.011070414, - 0.018993352, 0.01105392, -0.0212688, -0.015840696, -0.0130422, - 0.016458739, 0.014759316, -0.006630598, -0.010240818, -0.01450132, - -0.001347443, 0.0153843695, 0.019471208, -0.015145054, 0.009067265, - -0.014154628, 0.0122673875, 0.010364816, -0.0090179695, -0.0068693203, - -0.010151319, 0.0012875823, 0.005433672, -0.01094204, -0.004225179, - -0.014391959, -0.004125801, 0.0078084725, 0.013634905, 0.0022137496, - -0.022082753, -0.0016073001, 0.01818933, -8.7389525e-4, 0.0059880544, - -0.0045147156, -0.009849523, 0.014714364, 0.019252528, -0.0086842375, - -0.010368606, 0.002720612, -0.020310234, -0.0022670242, -0.022060715, - -0.010263377, 0.0015254017, 0.011314084, -0.0029764757, -0.021710746, - 0.0203127, -0.015424972, -0.026348187, 0.018329596, 0.010478209, - -0.020144768, -0.0057335994, 0.009357717, -0.0076797237, -0.022276854, - -0.005335327, -0.0015072977, 0.03336524, 0.005592278, 0.020822532, - -0.017732998, -0.02808611, -0.028499233, 0.01824055, -0.004858061, - -0.012825588, -0.0054409835, 0.002370117, 0.0052208793, -0.009048293, - -0.002545602, -0.017728604, -0.005231185, -0.017548949, -0.027378216, - -0.017003173, -6.7945634e-4, 0.0020263945, 0.012012401, 0.004464539, - -0.029046128, 0.021409342, -0.019106586, 0.030802593, -0.010772494, - -0.005370494, -0.018284982, 0.010497179, 0.0077431058, 0.011772201, - 5.9561775e-4, -0.00716865, 0.015092872, 0.01110625, -0.0031315512, - 0.0067405244, -0.016361581, 0.016784558, 0.03283639, 0.00519386, - 0.02003812, -0.0071911295, -0.009857806, -0.00798111, 9.0417714e-4, - 0.0029289988, 0.018584648, 0.0013750872, 0.027180845, -0.0052302675, - -0.01309351, 0.0062473807, 0.011568192, -0.018534217, -0.015604357, - -0.030064398, 0.0011613506, -0.010529723, 0.037533794, -0.018766213, - 0.0054306127, 0.008640206, 0.023672452, -0.018602556, -0.01585722, - -0.020970227, 0.01135069, -0.015325694, 0.0045950343, -0.0016816641, - 0.03063945, 0.0034848729, -0.015623168, -0.019747538, -4.600254e-4, - 0.013702238, 0.0053924946, -0.0033971835, -0.010648034, 0.0020267002, - -0.009453728, 0.0026049884, -0.006884544, -0.0023917889, -0.016320726, - 0.005773514, -0.010311889, -0.004648572, -0.004284314, 6.210995e-4, - -0.03456533, 0.00986219, -0.030345287, -0.015467129, -0.013029227, - -0.019812064, 5.107935e-4, -6.4879714e-4, -0.0021979446, 0.037050333, - -0.007362802, -0.008700145, -0.020773264, 0.013276371, 0.0063145384, - 0.0046363226, -0.00586868, 0.018143395, -0.003373242, 0.0081154695, - 0.023996815, 0.0065425867, 0.010085942, 8.625972e-4, 0.009421057, - -0.034451462, -0.010914722, 0.006131996, -0.01566757, -0.0012919174, - 0.014766922, 0.008196534, -0.005390017, -0.0029673504, 0.0064197388, - 6.696071e-4, -0.0010372793, -0.0030907092, 0.007901528, 0.029332276, - 0.012182598, -0.027696405, -0.005005341, 0.0021617652, 0.009384344, - 0.02019337, 0.017139083, -0.0042155827, -0.007993972, 0.0021138617, - -0.015303424, -9.509273e-4, -0.0064412234, -0.0048401845, -0.02253562, - -0.012433691, 0.0054614963, -0.011545688, -3.500148e-4, 0.0040068002, - 0.032753393, -0.008482298, -0.030068599, 0.02698655, 0.008535764, - 0.006170076, -0.032653064, 0.009815533, -0.01586334, -0.0030103796, - -0.014747245, -0.012172013, -0.0076886467, -0.030676426, 0.0118896905, - -0.009013565, 0.013286158, 0.01697028, 0.013279849, 0.019596642, - 0.008087406, 0.026649226, 0.017959015, 0.011532641, -0.0016551531, - 0.0141738, 0.008542152, -0.011683796, 0.014306142, 0.011915049, - 0.0063802633, 0.0016134405, -0.020362264, 0.016047351, 0.026645286, - -0.003280248, -0.03266622, -0.0035999317, -0.009944648, 2.562088e-4, - 0.014318739, -0.014768967, -0.0028181665, 0.0092456015, 0.033559553, - 0.006629321, 0.012443876, 7.8253244e-4, -0.014118441, 0.0059840553, - -0.0075547174, 0.0057808193, -0.009088541, -0.00716327, -0.0024256997, - 0.004331306, 0.0027582706, 0.01097694, 0.0044646757, -0.0016146019, - 0.028928015, -0.008994317, -0.009818528, -1.730359e-4, 0.020516466, - 0.013660124, 0.003119824, -0.0068960525, -0.015945734, 0.024332706, - 0.017931085, 0.011372226, 0.019100985, -4.4914774e-5, 0.005070346, - -0.036118202, 0.0042180233, 0.024110792, -0.0027159958, -0.01808093, - 4.122649e-4, 0.002979901, 0.012005429, 0.00587243, 0.005151634, - -0.0059496067, -8.7700156e-4, 0.0065486967, -0.011179232, 0.0052268077, - -0.0010926374, -0.018112004, 0.008036016, -0.0063164164, -0.040922493, - -0.031213868, -0.0057755467, -0.021792814, 0.010174662, -0.008339293, - 0.023682788, 0.004644062, -0.023222651, 0.007810212, -0.011486764, - -0.021709502, -0.01412009, 0.030308034, -0.008176279, -0.0010573308, - 0.004917336, 0.00991122, 0.0014874062, -0.024774969, -0.0034343274, - -0.028841287, 0.0015110627, -0.017718244, -0.0033128676, -0.03607409, - 0.011750394, 0.021532444, 0.006486965, -0.0035929377, 0.037711475, - 0.0045308806, 0.0019835297, -0.023139363, -0.0067517534, -0.005673262, - -0.0059014135, -0.0060115824, -0.030026477, 0.017187506, 0.0061767185, - -0.0025056754, 0.002341902, 0.02434812, -0.019713396, -0.013452392, - -0.0032966244, -0.017835023, -0.015265897, 0.0050891815, -0.0075965137, - -0.0090004485, -0.0120960325, -0.015283573, 0.0133767985, -0.013561423, - -0.012269421, 0.014776886, -0.0015729318, 0.012761373, 0.011768325, - -0.00839182, 0.012694289, 0.0039903177, -0.03002028, -4.8359023e-5, - 0.002457067, -0.024666684, -0.0140273115, 0.026527768, 0.015535285, - 0.0075239013, 0.0068043997, 0.030849097, 0.008677079, -0.001774815, - 0.0060689705, 0.008604855, -6.733713e-4, -0.0124377385, -0.025662169, - -0.016564798, -0.014178374, -0.0045263027, -0.008361814, 0.005532678, - 0.022096211, 0.001360939, -0.0018712941, 0.012966083, 0.0064320336, - 0.02119849, -0.011165114, -0.024333395, 0.008839499, 0.019440368, - -0.025736146, 0.008769677, 0.0014540221, 0.011596981, -0.009502913, - -0.0021755241, -0.013205452, 0.011643255, 0.030307233, 0.019142492, - 0.0020108628, 0.009309728, 0.020907955, 8.627964e-4, 0.015257384, - 0.018361025, 0.009552543, -0.011310762, -0.040828303, -0.013336585, - 0.001943332, -0.0152134765, -0.033711314, 0.0073674526, -0.017005578, - -0.005109125, -0.02208139, 0.0119900955, -0.004034515, -0.008065475, - 0.019731948, 0.018457362, 0.002671849, -0.0051154033, -0.020708244, - 0.005752045, -0.023350747, 0.0065186066, -0.004139951, -0.00781471, - -0.017025517, -0.014522592, 1.0598607e-6, 0.013091368, 0.0034618122, - -0.011783544, 0.0056720735, -0.0123285195, 0.008031184, 0.009515608, - 0.009470105, -0.013136078, -0.0074865464, 0.018599942, -0.006575566, - -0.0043113437, -0.024259774, -0.0016794275, 0.0042020124, 0.0021392212, - -0.019005463, -0.017226158, -0.013547067, 0.022880666, -0.007659454, - 0.021739192, 0.0059509035, -0.02349384, -0.008335666, 0.005792685, - -0.004970071, -0.008323415, -0.0147945285, -6.063885e-4, 0.001771962, - 0.004853304, -0.006241234, -0.013870529, 0.00773055, -0.0050668907, - 0.0046018995, -0.0034417238, -0.0034838358, -0.0065326705, -0.01541292, - -0.06798184, -0.0057471385, 0.014441699, 0.006274187, 0.010148156, - 0.02312744, 0.016461141, 0.0071535446, -0.009703977, 0.036198586, - -0.008116443, 2.151906e-4, -0.0150143085, 0.030842789, -0.016962552, - 0.015319639, 0.013843659, 0.0012674736, -0.018597227, 0.00221732, - 0.0020802426, -0.024518536, -0.011092911, -0.008288972, 0.037806563, - 0.007906447, -0.009879357, 0.0016668716, -3.8041966e-5, -6.935674e-5, - 0.018928966, -0.0013371181, -0.0017560744, -0.018695824, -0.009261715, - 0.0094975205, -0.0027883574, 0.012049065, -0.013967501, 0.019403763, - -0.027484603, 0.004860491, -0.02329926, -0.0010113382, 0.017097414, - -2.6326912e-4, 0.004457159, -0.0064653717, 0.02680998, -0.020638302, - -0.0010460218, 0.0039554453, 0.015594545, 0.0076610143, 0.03244139, - 0.022545341, 0.00614609, -0.014470069, -0.02573284, 0.0049307724, - 0.013648288, -0.028236402, -0.0027958327, 1.03974635e-4, 0.009040266, - 0.02934186, 0.016120631, -0.036932927, 0.03753649, 0.032101005, - 0.0054121097, 0.021028312, -0.005057456, -0.0053999084, 0.007840064, - -0.02297321, -0.008563104, 0.041829664, 0.0022243897, -0.009351831, - -0.013882816, -0.026688881, -0.011343978, -0.0017783522, -5.349486e-4, - -0.0150478175, -0.0233501, -0.009248173, 0.014430024, 0.019135762, - -0.007844347, 0.0037114948, -0.017240498, -0.013136776, 0.008676506, - 0.007860243, 0.0015017969, -0.025112357, 0.011232639, -0.015663369, - -0.0016393024, -0.03373354, 0.019936437, 0.009796914, 0.0028086093, - -0.018433401, 0.013923123, 0.024756571, 0.018366512, 0.008145012, - -0.0048144376, 0.025275538, 0.019965056, 0.015496293, 0.016301127, - 0.019536939, -0.010901194, -0.0049256883, -0.018963449, -0.011490981, - 0.014337183, -0.011746915, 0.007989974, 0.010758605, 0.041779228, - -0.029418439, -0.012320215, 0.0059181736, -0.0013260591, -0.0042405236, - 0.01365565, 0.01027538, -0.027074449, -0.0067494833, -0.011087643, - -0.0030362485, -0.0115399035, 0.0104764765, -0.0136214215, 0.02002432, - 0.016598668, -0.009423914, -0.0035005824, -0.0019076077, -0.024877239, - 0.0022157107, 0.0074753715, -0.016418308, -0.004184059, 0.002516218, - 0.00933718, -0.027264146, -0.016402323, -0.0077568814, -0.034148984, - -0.0013405528, 0.0067707296, -0.015121418, 0.018948173, -0.017963145, - -0.013947064, 0.0074137356, -9.029672e-4, 0.022303594, -0.006546843, - 0.0040101144, 0.02361752, -1.9168192e-4, -0.0043397387, -0.02436395, - 0.005643203, -0.014821036, 0.011880405, 0.018045316, -0.0014851033, - 0.008315728, -0.02037657, 0.01011006, 0.05415991, -0.003029367, - 0.0071464996, 0.014366287, 0.016592631, 0.0017108151, 0.00803598, - -0.0037448213, 0.012968419, 0.022627864, -0.01068354, -0.0053533656, - -0.0140626775, 0.022894518, 0.023180673, -0.031834435, -0.009558829, - 0.004737513, -0.016505163, 0.01659505, -0.02042533, 8.234033e-4, - -0.0046053748, 0.0112374695, -0.01544174, -0.011995969, -0.021945734, - 0.021213733, -0.0071133985, -0.01882811, -0.0132999495, 0.013083451, - -0.0029057618, -0.014686571, 0.0040011057, -0.029139213, 0.021366848, - -0.03013677, -0.0053289677, -0.015492328, 0.011780136, -0.014403021, - -0.0087662805, -0.0016091719, -0.016635746, -0.003411397, 0.007088989, - -0.007534877, 0.020273706, -0.02168295, -0.024790972, 0.004295606, - 0.015695719, 0.021677708, -0.03147327, -0.002490953, 0.012573999, - 0.010749305, 0.016879642, 0.0012714801, -0.019503038, -0.01584739, - 0.015183775, -0.0033102678, 0.020986436, 0.023485757, 0.0060356404, - 0.021772783, -7.976468e-4, 0.01506221, -8.721843e-4, -0.01857032, - -0.032154154, -0.016198713, -0.011722891, -0.006582479, 0.0035212564, - 0.0016689423, -0.0065519996, -0.023018887, 0.014179143, 0.003578133, - 0.024363406, 0.032990362, -0.01626972, 0.0035981706, -0.0033539291, - 0.021436572, 0.015122673, 0.020991921, 0.028841928, -0.025726745, - -0.003568562, 0.0070628, 0.016402667, -0.044186983, 0.010378803, - -0.03767447, 0.015954785, 6.533015e-5, -0.011904751, 0.008909069, - 0.0140044065, -0.009895165, 0.0065064314, 0.001663858, -0.0017980273, - 2.8463211e-4, -0.009331351, 0.045572713, 0.028371926, -0.0015927069, - 0.012810369, -0.006036, -0.009722031, -0.018550303, 0.004714513, - -0.0034726134, -2.1884915e-4, 0.008339128, 0.0035286946, -0.028883895, - 0.009569658, 0.004442187, 0.021038622, -1.3308632e-4, 0.009736927, - -0.008701851, -0.016580144, 0.022314725, 0.021299586, -0.018772783, - -0.0063612387, -0.0012170103, 0.0087033985, 0.0075973594, -0.021774553, - -0.0012234938, -1.20466844e-4, -0.012145603, -5.579623e-4, 0.016831346, - 0.0012670493, 0.011928817, 0.0061837593, 0.015633507, -0.013128329, - -0.021791615, -0.0075372537, -0.02744066, 0.025490232, -5.339815e-4, - 0.02202792, -0.0016029151, 0.027581204, -0.010632816, -0.0074458695, - -0.022850456, -0.009118975, 0.012681088, 0.008803295, 0.008700111, - 0.013400311, 0.0016029767, 0.021970559, -0.011369983, -0.019291678, - -0.022624101, -0.044807788, -0.007887147, -0.00811299, -0.009069526, - 0.025507394, 0.009620221, 0.0064691217, -0.0030892012, 0.040670056, - 0.0045388183, -0.004011678, -0.03382431, 0.00160985, -0.025820069, - 0.013957073, -0.012172531, 0.022221655, -0.007928783, -0.014386821, - -0.028283544, -0.022369303, -0.01794368, 0.026340082, 0.023322692, - 0.021409467, -0.011529847, 0.0012255291, -0.005424445, -0.017325876, - 0.010480685, -2.0751003e-4, 0.012614479, -0.027207829, -0.011564527, - 7.9775054e-4, 0.003062491, -0.016914759, -0.015877526, 0.008883708, - 0.024819506, -0.0112741785, 0.0022585732, -0.01629293, 0.01965673, - -0.003878213, -0.0077839145, 0.007928302, 0.025760248, 0.005409096, - -0.0048498097, 0.03987596, 0.012631803, -0.010478792, 0.023362063, - -0.0019783701, -0.0048231254, -0.0010907669, 0.010223361, -0.008611298, - -0.022238864, 0.015355233, -0.021634394, 0.0017710677, 0.020705808, - -0.0058363886, -0.015011384, -0.0042434786, -0.015009401, 0.010318994, - 0.0024802273, 0.016658746, -0.005490241, -0.021024127, -0.0109494785, - 0.0030618033, -0.0101267565, -0.004924033, 0.018504618, -0.018089771, - 0.026402762, 0.0316299, -0.01095702, -0.025374688, 0.020231059, - 0.0062344456, -0.005940586, 0.0033513382, 0.028087033, -0.010783828, - 0.0047727074, 0.0014111256, 0.010840274, -0.026567549, -0.003731594, - 0.024548594, -0.00196291, 0.02723029, 0.023106433, 0.017614251, - 0.009190651, 0.0051413523, 0.012716679, -0.0023815958, -6.6099403e-4, - -0.013333983, 0.0148511, -9.71583e-4, -0.02865342, -0.010582874, - -0.01652078, 0.016078133, -0.00466285, 0.0058080815, -0.043188002, - -0.008643752, 0.004092081, -0.013473135, -0.02437973, -0.007221595, - 0.031214803, -0.009666211, -0.020668393, -2.333123e-4, 0.032010987, - -0.0012504677, 0.0032078498, -0.008180474, -0.009404206, 0.0026658883, - -0.004978359, 4.7630313e-4, -0.01199737, 0.020021345, 0.007993127, - -0.024301575, 0.0054436373, -0.0018200853, -0.01679322, 0.043662693, - 0.002422123, 0.016469743, 0.0022458946, -0.03701583, -0.012380339, - 0.0075075827, -0.01677105, 0.013372159, -0.025233341, 0.015067309, - -0.0072778836, 0.0040479423, 0.0012284401, -0.027018122, 0.014983845, - -0.010979069, -0.02222842, 0.023408731, 0.0092186695, -5.353626e-4, - -0.00522917, -0.0064328983, 0.002981109, -0.016090535, -0.024799999, - -0.0070177745, -0.012659711, -0.0045442297, 0.018011114, -0.015683213, - -0.0038126903, 0.019335175, -0.0090672225, 0.0021434461, -0.0023907325, - 0.020055762, 0.025917716, -0.006823389, -0.018313896, 0.01156826, - 0.010230691, -0.014528548, -0.03881585, -0.019463895, -0.009771027, - -0.02670586, 0.023229657, -0.020332363, -0.020856498, 0.018330747, - -0.0018964261, -0.0028046733, -0.029140716, 0.0068935063, 0.008855096, - -5.834586e-4, 0.016020209, -8.494816e-4, -0.016035628, 0.031172274, - -0.009198119, -0.0029843573, -0.013454123, -0.010230911, 0.027109694, - -0.006559998, 0.018454999, 0.017538056, -0.007963827, 0.0034818705, - 0.006218203, -0.0057294597, -0.0072822026, -0.0043520816, 6.8925857e-4, - 0.0038531364, -0.023519497, -0.008518665, -0.015389128, -0.018820511, - 0.018940391, 0.02168919, -0.005764904, 0.041686762, -0.026624247, - -0.0028432093, 0.019835547, 0.01026918, 0.010792775, -0.013182119, - -0.016118146, 0.02257987, 0.008016349, -0.0013877817, -0.0031356004, - 0.012148262, -0.014427118, -0.00787476, 0.0013907969, -0.0027737513, - 0.020182332, -0.0037426252, 0.0037046704, -0.010545631, -0.014916368, - -0.0063733133, 0.003014952, -0.017638996, -0.01883964, 0.0055150567, - -0.024336474, -0.0053461674, -0.015831804, -0.025310878, 0.025464237, - 0.01834892, 0.011944876, -0.0017637865, -0.022258919, 6.0557557e-4, - -0.017310431, 0.012837465, 6.913084e-4, -0.012144615, -0.028013686, - 0.004144908, 0.008150805, 0.0024790694, 0.010976594, -0.022813138, - 0.0034901898, -0.026201691, 0.008280798, 0.017483836, -0.012358803, - -0.006559549, 0.009375679, -0.009841605, -0.012240317, -0.007866663, - 0.010054044, 0.018654468, -0.017974466, -0.013070718, 0.04279355, - -0.0057848287, 0.02326434, 0.008763026, -0.008255332, -0.007414664, - -0.0034874375, 0.0033329953, 0.0038815264, -0.0033823047, -0.015087468, - -0.02388818, 0.007215884, -0.027030637, 0.003425764, -0.016216481, - 0.0066029355, 0.00562423, -0.023332734, -0.013214488, 0.002507462, - 6.63566e-4, -0.004342148, -0.01612688, -0.009454882, 0.015403069, - -0.008096582, -0.025308564, 0.0013355609, 0.030565673, -0.003152121, - 0.018166028, -0.019133138, -0.008189681, 0.015061835, -0.025842706, - -6.1229384e-4, -0.0139990235, -0.0024160515, 1.8463099e-4, 0.0139234, - -0.01525902, 0.0033383644, -0.006678943, -0.0035997771, 0.026827974, - 0.02920097, 0.010568512, 0.026964232, 0.02442992, 0.004976596, - -0.018906735, 0.016823916, -0.005403875, 0.013811156, -0.029680382, - 0.009412738, -0.0064895484, -0.0016760735, -0.026218528, -0.007209548, - -0.013800067, -0.030636877, 0.00965005, 0.009236709, 0.004483197, - -0.017918773, 0.0017413414, -0.013668069, 0.0050174985, 3.8116166e-4, - 0.0032987795, -0.0032424193, 0.0038771855, 0.019466529, -0.0033771556, - -0.0065260665, -0.021089701, 0.0069755856, 0.01809972, 0.009750814, - 0.008911828, 0.010237326, -0.0038540638, -0.01810183, -0.02936031, - 0.01575234, -0.011102878, 0.0066097984, 0.0021330756, 0.020458888, - -0.0069513964, -0.0088090785, 0.0055340775, -0.028784841, -0.0037624047, - -0.006872878, -0.0074456143, -0.018839175, 0.010176827, -0.012519499, - -2.8449312e-4, -0.010853797, 0.0017950406, -0.023604311, -0.020751884, - -0.012121755, -0.0039904793, 0.012281141, 0.023385936, 0.008399826, - 0.002128959, -0.017233524, -0.014190361, 0.010753843, 0.021610996, - 0.019321792, -0.009658092, 0.0028127348, 0.007222329, -0.009380247, - -0.022212168, -0.011145337, -0.006248464, -0.003010219, 0.0059079, - -0.008549582, 0.011025936, -0.017810928, 0.008175934, -0.002788414, - 0.0039041245, 0.007598289, -0.019113535, -0.007365912, -0.017460551, - 0.011298849, -0.020689283, 0.0073902686, -0.0025033415, -4.377458e-4, - 8.2218566e-4, -0.010427725, 0.009235555, 0.0044043977, -0.008993422, - -0.04258726, -0.0110835815, -0.040235605, -0.002662619, -0.024869543, - -0.012391741, -0.005178957, -0.0146787055, -0.023435708, -0.0040714704, - -3.7257434e-4, 0.018459195, -0.02165201, 0.014547542, 0.013823185, - -0.023114888, -0.015236383, -0.015105755, -0.019092688, -0.024689415, - 0.027774286, 0.013111173, -0.00884549, 0.011942699, -0.009339643, - 0.012077559, 0.014974023, -0.0077094994, -0.00766298, -0.0035466538, - 0.013812184, -0.015720602, -0.012707302, -0.016897028, -0.004142939, - -0.0073746727, 0.019486248, -0.004229768, 0.0046265465, 0.0013875748, - -0.005954014, 0.0046537174, 0.00634961, -0.011364723, 0.0048502027, - -0.004407875, 0.002887401, -0.042019982, 0.0012370487, 0.02556695, - -0.004224155, -1.1040762e-4, -0.006486538, -0.006139858, -0.0025420515, - -0.034062173, 0.001677116, 0.013248732, -0.004636624, 0.0014227112, - -0.007230897, -0.017249888, 0.019409128, 0.0085161, -0.030391952, - -0.013310573, 0.02032005, -0.029402154, 0.0011124895, 0.023613691, - -0.0063541005, 0.01430947, 1.8478905e-4, -0.021147326, -0.007712932, - -0.024223097, 0.012136862, -0.0021208108, 0.003928057, 0.007584758, - -0.0031549367, -0.020168796, 2.9365832e-4, 0.0029056312, -0.007390819, - -0.0027138945, -0.005946236, 0.0025904516, 0.0051891506, 0.005588714, - 0.015037589, 0.016937032, -0.017835787, 5.7468796e-4, -0.018950537, - -2.1127827e-4, -0.028345913, -0.019226298, -0.01460331, 0.010842659, - 5.6795536e-5, -0.013519902, -0.01181667, 0.004088171, -0.0025543422, - 0.024055332, -0.035249043, 0.019588303, 0.002658335, -6.957115e-4, - 0.007824988, -0.00636694, 0.02886037, -0.008526463, 0.001900118, - 4.1468167e-5, 0.01666651, 0.021800475, 0.0116129, 0.0112941135, - 0.024300627, 0.008058764, -0.0014491199, 0.015232108, -0.017284507, - -0.019275345, -0.014709321, -0.011381899, 0.0066318815, -0.015398897, - -0.0022854037, -0.0010683623, -0.002405569, 0.013553815, -0.0075212587, - 0.00998433, 0.007804824, -0.020746924, -0.019470077, -0.011940403, - 0.007706452, 0.010700756, -0.02232689, 0.00892319, -0.011657136, - 0.0030912168, 0.012984743, 0.00644898, -0.014555797, 0.0013393691, - -0.0238912, -0.018146375, -0.005778714, -0.029189497, 0.0042922823, - 0.0030666084, -0.0020124342, 0.003707718, -0.010923459, 0.018063666, - 0.016301196, -0.027572842, -0.014165125, -0.0062650326, 0.013530269, - 0.022704523, 0.017005872, -0.017270815, -0.011163765, 0.03103131, - -0.017285364, -0.0024925682, 0.0030580994, -0.0080669075, -0.011782726, - -0.021322945, -0.01031301, -0.012860283, -0.019570207, 0.029326135, - 0.020164745, 0.0066201785, 6.972534e-4, -0.006602309, 0.01978775, - 0.015039961, -0.0010708051, 0.020172773, -0.016735053, -0.005397899, - 0.013177406, -0.0042804056, 0.0062648696, -0.021283442, -0.043142367, - 0.00404814, 0.010161804, 0.026939737, -0.021341715, -0.00851065, - -0.004873148, 0.02608596, 0.0011261338, -0.019912396, -0.01349597, - 0.026995532, 0.014405734, -0.022183187, 0.012609587, -0.0054938723, - 0.003302748, -0.0010857749, 0.018493861, -0.0067802127, 0.015408474, - -0.018360658, 0.012936776, -0.013750333, 0.019435927, 0.0025473284, - 0.002108627, 0.00771378, 0.011664452, 0.005148835, 0.020378835, - 0.023477955, -0.015711522, -6.926994e-4, 0.0021618565, -0.011028864, - 0.019027622, -0.007785956, 0.008352585, 0.020353965, -0.0025609997, - 0.0015339907, 0.003959044, 0.023399739, -0.020739099, 0.0015745434, - 0.007333589, 0.0016919805, -0.010317622, -0.055091936, 0.015020422, - -8.402114e-5, -0.022761183, -0.007522798, 0.007910451, 0.011429653, - 0.01000906, -0.013423763, 0.0028884734, -0.0026828204, 0.041234966, - -0.0020844808, -0.008214198, -0.0019679246, -0.019505119, -0.016907817, - 0.01184624, 0.013260668, -0.011112945, 0.017818876, -0.015960565, - -0.007191327, -0.009181422, 0.0052521084, 0.026201464, -0.0032997548, - -0.022089308, -0.025268551, 0.0064942087, -0.008824389, 0.005767979, - -0.006502065, -0.012878988, -0.010325833, -0.002591097, -0.019719377, - -0.011285483, 0.012009054, 0.004631132, -0.023817686, 0.024481243, - 0.005138011, -0.010654157, 0.019873198, -0.001958201, 0.002917283, - -0.009878105, 0.02407759, 0.002515404, -0.026738068, -0.027647646, - 0.016871896, 0.017692221, 0.0072312057, -0.0032518741, 0.005433196, - -0.017099809, 0.007532285, 0.02686661, -0.030803695, 0.0029681555, - -0.026013045, 0.01079498, -0.009154104, -0.006914881, -0.013029465, - 0.018685523, 0.014378511, -0.022309013, -7.6801283e-4, -0.018765396, - -0.013301537, -0.022424275, -0.0031598497, 0.0053942455, -0.056397457, - 0.010725738, -0.008003198, 0.025496472, -0.017231796, 0.0037505594, - 0.0063896803, 0.024857694, 0.032749664, -0.007973389, -0.008965959, - 0.0140252, -0.015773434, 0.022660414, -0.003963594, -0.0031860117, - 0.012854975, -0.015431232, -0.016555997, -0.0033190611, -0.0073436904, - -0.010945049, 0.011671475, 0.00846097, -0.0090106735, 0.007779472, - 0.0010713087, 0.023289425, -0.019036254, -0.01551658, -0.012433316, - 0.0021301482, 0.004678944, -0.006236608, 0.0021797053, -0.009029435, - 0.010285816, 0.013505259, -0.006495674, -0.0074639935, -0.0300636, - -0.011089575, 0.024123842, 0.0030116735, -0.030876046, -0.006971429, - 0.006617255, -0.014120157, -0.009985904, 0.0129793575, -0.005134697, - 0.013392655, 0.0067784847, -0.0018484931, -0.0022376552, -0.003258571, - 0.017325783, -0.0036949764, -0.002945785, 0.01709701, 0.013928509, - -0.0016052034, 0.0038102644, -1.9495854e-4, -0.0035853735, -0.031149581, - 0.019819178, 0.011864013, 0.019309154, 0.009948581, 0.012232124, - -0.028054718, 0.01860646, -0.022422275, 0.004353161, 5.9283926e-4, - -0.0011904651, -0.009717642, -0.0031972595, 0.016135989, 0.007128143, - 0.013292028, 0.014384492, 0.021003125, -0.007461587, 0.016813884, - 0.0066851787, -0.0044847084, 0.005609219, 0.007585756, -0.00508649, - -0.014472815, -0.011636382, 0.010749476, 0.015953867, 0.0068155816, - 0.02161466, -0.018654164, 0.0098754605, 0.0024939976, 0.00275515, - 0.011032773, -0.01025734, -0.00248171, 0.005074061, 0.00823477, - -0.019220801, -0.03605039, -0.015901597, 0.028727883, -0.0077773496, - 0.004698824, 0.036242004, -5.305327e-4, -0.0017697309, 0.030454768, - -0.029369373, -0.025740592, 0.014641184, -4.634695e-4, 0.0018734473, - -0.030650223, 0.041426606, 0.009826033, 0.0030293134, -0.015315863, - -0.007897321, 0.0060716243, -0.017912503, 0.0034639526, -0.01228351, - 0.02967664, -0.014302275, -0.033109818, 0.024494242, 0.0045253956, - 0.0038303176, 0.024262724, -0.0056486926, 0.015477068, 0.018026197, - 0.013591789, 0.012972287, -0.004038053, 0.012026201, -0.014171941, - 0.012032489, 0.0031834077, -0.0062589804, -0.01830855, 6.5419654e-4, - -0.004036515, 0.024856115, 0.002947168, -0.0076800585, -0.0041711107, - 0.013186289, 0.014679947, 0.006370841, 0.014100653, 0.0034270706, - 0.040418465, 0.018522035, -0.0019641083, 0.0060715103, -0.018253969, - 0.02327089, -3.211029e-4, -0.010735407, -0.019549869, 0.020722244, - 0.014120003, 0.013335162, 0.008935912, -0.02033841, 0.020219741, - 0.0018271226, -0.004646438, -0.019097019, -0.028222468, 1.8500505e-4, - 0.023285216, 0.0090494715, 0.009419651, 0.002275749, 0.01974771, - -0.0084122745, -0.033615574, -0.00837376, -0.010276399, 0.029312424, - -0.006947374, 4.1644368e-4, 0.009632078, -3.1583197e-4, -0.017074497, - -0.003753967, -0.010880132, -0.015313904, -0.00524521, -0.008576141, - 0.0061762487, 0.0132219335, -0.01625015, 0.0015882796, -0.019261213, - -0.022799226, 0.040233728, -0.023826485, 0.0014331825, 0.0189889, - -0.010101799, -0.010774429, -0.009304459, -0.002571979, -0.002373648, - -0.0060531455, 0.022614827, 0.015552592, -0.010676754, -0.0171272, - 0.01924399, -0.0013097287, 0.0047522024, 0.0037562829, -0.0178355, - -0.012739929, -6.2166963e-4, -0.019177241, 0.015947279, -3.5095648e-4, - -0.010882526, 0.006667768, -0.01954034, -0.0021113143, -0.0067042867, - 0.004513001, 0.0021845237, 0.002801075, -0.026618617, -0.010557249, - 0.024048466, 0.010384138, -0.009112411, 0.0053416085, -0.011023604, - 0.0065084384, -0.03276458, -0.016906165, -0.0060068774, 0.017019765, - -0.010147638, 0.0040153875, 1.658727e-4, 0.012075009, -0.017358167, - 0.017043674, -0.013146654, 0.025281364, 0.0013633625, 0.018535906, - -0.013742126, 4.0904683e-4, -0.014494514, 0.0036434026, -0.017311612, - 0.020947801, 0.012245536, -0.023468116, -0.0076005803, 0.01579559, - -0.013174582, 0.0066585043, 0.010777043, 0.01599508, -0.0010677997, - -0.015927963, 0.014108092, -0.00421046, 0.006430297, -0.003489537, - -0.024476359, -0.004226089, 0.0046076314, 0.004951951, 0.031493533, - 0.0021460752, 0.013312862, -0.010225528, 0.011589925, 0.0073715276, - 0.0047218404, 0.014638488, 0.0024524513, 0.0027089694, -0.011070263, - 0.03328412, -0.0026120646, -0.016649459, 0.011924676, -0.0048345984, - 0.013619582, 0.024283089, 0.019937068, 0.020936733, -0.005164102, - 0.005091011, -0.016486583, 7.2835863e-4, 0.03278796, 0.011329444, - -0.006191287, -0.02923665, 0.02922559, 0.020708395, -0.016111659, - -0.023907239, 0.0025159721, -0.007819268, 0.032205023, 0.0012697943, - -0.021221314, 0.0148052275, -0.02352869, -3.0066993e-4, -0.013328854, - 6.3308864e-4, -0.0023722928, -0.016739761, -0.02151709, -0.015972998, - -0.009985078, -0.021944365, -0.0034649454, 0.00781409, -0.0017456454, - -0.036504123, 0.020795073, 0.03195822, -0.0011319207, -0.0025968323, - 0.02204814, 0.021217097, -0.03592142, -0.0011499285, 0.04877081, - 0.013325949, -0.008477, -0.022006335, -0.001501782, 0.0018696977, - 0.011391457, 0.011561349, -0.0029821002, 0.045790292, -0.0027215576, - 0.010700861, -0.004033472, 0.02068022, 0.0055285087, 0.002122848, - -0.009431883, 0.009408654, 0.0036686657, 0.0064171124, 0.009978677, - -0.022097245, -0.038078107, -0.013503659, 0.004361543, -5.4531556e-4, - 1.2357571e-4, 0.0052306503, -0.011841224, -0.016318193, 0.00943883, - 0.041337863, -0.004847541, -0.01206502, 0.010399829, -0.007845823, - 0.028743183, -0.0015617714, -0.0027218387, 0.003022187, -0.022818122, - -0.010497145, -0.021399485, 0.022795819, 0.0074663465, 0.023330308, - -0.011886392, 0.01576681, 0.0032625739, -0.007204037, -0.0029369257, - -0.028951852, 0.01899603, 0.00425092, -0.0075331246, -0.015198996, - 0.02358647, -0.0041365735, -6.7170843e-4, -0.001377595, 0.0018849011, - -0.006919297, -0.010374694, -0.009600742, -0.0144631155, 2.867796e-5, - 0.019863993, -0.011600479, -0.016337954, 0.00200564, -0.005026401, - -0.012799955, -0.0017439154, -0.004952436, 0.011851142, -0.007085805, - 0.005479626, -0.009706802, -0.004074301, 0.0021729986, -0.012307213, - 0.0020676584, 0.0049473676, -0.0025747933, -0.0021639317, 0.002266747, - -4.2144378e-4, 0.0022938575, 0.007591057 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.04326005, -0.017137667, 0.014014259, -0.010491539, -0.014855148, - -0.010329379, -0.023916604, -0.014292617, -0.017364658, 0.031625282, - 0.02669247, -0.004974605, -0.009607396, -0.027446285, -0.02481553, - -0.007953881, 0.024070954, 0.014860898, 0.01679755, -0.01283357, - -0.0099830115, 0.0019158473, -0.0121571515, 0.0075001447, 0.020803083, - 0.006326858, -0.018851014, 0.01447382, 0.008611116, -0.011224392, - 0.027582139, -0.02621018, -0.02794869, 0.011595412, 0.03381716, - -0.031931072, 0.04599029, 0.019594219, -0.03584894, -0.012939149, - 0.020376518, -0.04797879, 2.3219388e-4, 0.07666292, -0.018185863, - -0.00317443, 0.004499987, -0.0019610107, -0.02846342, 0.059669003, - -0.028699206, 0.02227914, -0.016010612, -0.042967662, -0.008293065, - -0.042378537, -0.014475206, -0.006160199, 0.0070417183, -0.0121283205, - -0.022367805, 0.012561972, -0.0044123447, 0.018492825, 0.034438744, - -0.025288621, 0.02625172, -0.011937554, 0.033447187, 0.069769494, - -0.067950055, 0.060330596, -0.041773066, 0.045718927, 0.034600407, - -0.0068395105, -0.03982177, 8.8737457e-4, 0.0351982, 0.06730646, - -0.04569267, 0.003182831, 0.031077811, -0.03020248, 0.0024371082, - 0.044678092, -0.044171773, -0.0018585615, 0.024741147, 0.0055411668, - -0.025838876, -0.031940937, 1.1785136e-4, 0.022820558, -0.053671744, - -0.032619856, -0.01399648, 0.04831606, 0.02618442, -0.022519723, - -0.092961036, -0.023360362, 0.020480929, -0.033920363, -0.033838432, - -0.0064932117, -0.021539303, 0.032338932, 0.0121359, -0.027811537, - -0.0030631984, -8.778306e-4, 0.020229617, 0.014066055, 9.2631025e-4, - 0.044571828, 0.008186707, -0.026846224, -0.026807787, -0.07866939, - 0.01792225, 0.011080063, 0.04781485, -0.062297545, -0.034916766, - 0.05801667, 0.001986742, 0.04059376, -0.031123815, 0.025076985, - -0.019244228, 0.022817424, 0.0065550096, 0.02417504, 0.018433284, - 0.01792185, 0.00849493, -0.038338393, 0.0059404187, 0.0738966, - -0.0074968534, 0.020610815, 0.0022823876, -0.029676402, 0.020624109, - -0.05929805, -0.041013725, -0.04007958, -0.02477619, -0.046629414, - 0.04871352, -0.007194921, 0.049513616, 0.036346003, 0.047119875, - 0.036432117, -0.032262847, 0.004802815, 0.03082774, 0.008972055, - -0.01047884, 0.017032113, -0.016594768, -0.0076416135, 0.031676874, - -0.035114523, 0.021757146, -0.026159633, 0.043421164, 0.050296105, - -0.07203903, 0.0036600947, 0.021112537, 0.014017749, -0.037916917, - 0.035635512, 0.046638675, 0.030972661, -0.09239789, 0.001263997, - -0.084589295, -0.027479457, 0.05578495, -0.027941257, -0.0051342403, - 0.039235044, -7.142241e-4, 9.5382036e-4, -0.014143604, 0.04178085, - 0.045606762, 0.02168705, 0.070080355, -0.017895607, 0.010201552, - 0.009538727, -0.029343845, 0.01626596, -0.034203522, -0.034161728, - 0.01820934, 0.012953845, -0.05058651, -0.08687701, -0.0077542975, - 0.03148972, -0.008955647, -0.0071562272, 0.003970103, 0.012234598, - -0.018596133, -0.043004878, -6.872461e-4, 0.008089206, -0.06259699, - -0.028024202, -0.011727713, -0.017447354, -0.007823674, -0.013557139, - 0.0021625408, 4.2086696e-5, -0.051854476, 0.022148345, -0.0061154063, - 0.02404365, 0.016890535, -0.048551973, -0.006669441, 0.015226724, - -0.055564005, -0.03624513, -0.02184201, -0.0085174795, -0.0034476724, - 0.03110845, 0.013728593, -0.015223088, 0.040560037, 0.03474534, - 0.015788866, -0.07092024, 0.008368519, -0.02795816, 6.1903533e-4, - 0.055847786, 0.030546626, 0.0115565, 0.061244246, -0.026625993, - 0.0032235698, 0.002747435, 0.033747654, 0.023828527, -0.004890122, - 0.009895123, 0.051004186, -0.04264527, 0.029362451, 5.359925e-4, - 0.060484838, 0.0074666687, -0.019836454, -0.010241746, -0.01751037, - 0.015243313, 6.507993e-4, 0.007946835, 0.0075852643, -0.0010911819, - -0.008499107, -0.04306256, 0.06451808, -0.025577342, -0.023634154, - -0.053540103, 0.006950411, -0.005522121, 0.02710733, 0.06949325, - -0.0012157332, -0.02125398, -0.0052548437, 0.0404781, 0.0031599887, - -0.02177624, -0.0051199826, 0.0066898707, -0.0071960683, 0.016135398, - 0.03095122, -0.03117534, 0.032512847, -0.007412803, 0.015104689, - 0.039624568, -0.028112944, 0.013129283, -0.013302358, 0.007133715, - 0.043905895, -0.011379026, 0.01026788, -0.012613273, 0.017984932, - 0.018741697, -0.0038964115, -0.009860574, 0.01831995, -0.015881415, - 0.0116058355, -0.001163108, -0.031802006, -0.013343425, 0.053451277, - 0.023386218, 0.022911428, 0.028342143, 0.08153113, 0.006412111, - -0.009773099, 0.03528526, 0.004617471, 0.014306151, -0.019101486, - 0.05394582, 0.011341988, -2.6878627e-6, -0.05647599, 0.016978815, - 0.025058566, -0.00930104, -0.010564281, -0.009708967, 0.06316089, - 0.003395033, -0.04203723, -0.02476028, -0.041527897, -0.11465318, - -0.010828058, -0.0045645204, -0.029073583, -0.021307105, -0.030969081, - -0.0069793556, 0.03370934, 0.056132637, -0.022069866, 0.009474338, - -0.03395952, 0.019923, -0.009851266, 0.057058208, -0.06897673, - 0.011984394, -0.039051723, 0.0030939619, -0.02775631, 0.0053044343, - -0.042126823, -0.028414393, 0.0053317975, 0.016980838, 0.00620435, - -0.007002578, -0.038530584, -0.014422006, -0.022186508, 0.02634238, - -0.003272262, 0.0051287455, -0.052807312, -0.0040568886, 0.041780803, - -0.041223526, -0.023529788, -0.018313525, -0.039901927, 0.005360373, - 0.033057477, 0.020409672, -0.017544782, 0.039739605, -0.048084807, - 0.018765561, -0.03800954, 0.028066058, 0.059087384, -0.024444293, - 0.0023010597, -0.055262897, -0.017560445, 0.036219765, 0.035808932, - 0.029886346, -0.012268622, 0.004210308, -0.010064339, 0.02902698, - 0.0038765515, 0.021112327, 0.024756953, -0.01595946, 0.011902855, - 0.048535064, -0.0043390007, 0.0082007265, 0.021684777, -0.028979773, - -0.024985708, 0.031805553, -0.024339335, -0.034067772, 0.03852023, - 0.03905668, -0.026417915, 0.0050797877, 0.013557847, 0.017388072, - 0.024847992, -0.0728603, 0.06933966, -0.023832057, -0.010080866, - 0.06439291, -0.012366023, -0.0017089677, 0.0075584184, 0.0034371088, - 0.010502488, 0.009334958, -0.0019416038, 0.0044265003, 0.0030436402, - 0.019319097, -0.023596255, -0.004782764, -0.021898014, -0.027266253, - -0.0067992816, -0.0052762832, -0.012477192, -0.06875178, -0.023089997, - -0.02429494, 0.022416638, -0.052426428, -0.025851196, 0.029867666, - 0.023039293, -0.0114255, 0.002719012, -0.028673092, -0.018808603, - 0.005031611, 0.055543195, 0.011207206, -3.3745173e-4, 0.024202751, - -0.068640046, 0.009151513, -0.010514455, -0.032795, -0.013978154, - 0.059605174, 0.0020587135, 0.008192717, -0.016497605, 0.05256595, - -0.050685972, -0.040350135, -0.017510895, 0.009720093, -0.04237812, - 0.04242918, 0.056950103, -0.019178964, 0.016987585, -0.011679317, - -0.002418928, -0.025558554, 0.0133089665, -0.014083029, 0.027468557, - -0.03690787, -0.018214101, 0.02879158, -0.01739887, 0.017104208, - 0.03362695, 0.06772175, 0.0041449238, -0.027908409, 0.031491883, - -0.005722452, -0.030371295, -0.0016123584, 0.008037333, -0.011376957, - 0.04105624, -0.07352152, 0.031371396, -0.03227963, -0.022828883, - 0.008846544, 0.03545917, -0.009329789, -0.013763371, 0.035919525, - -0.0076452675, 0.017201131, 0.027736822, 0.056674633, 0.0139366705, - 0.031048862, 0.0022597802, 0.013910861, 0.010331565, -0.012002252, - -0.019315643, -0.02667618, 0.027767565, 0.0383961, 0.056599315, - 0.040236775, -0.015871271, -0.035009652, -0.0042566448, 0.036930215, - -0.025466612, 0.02334647, 0.021869777, 0.06788563, 0.005039925, - -0.03300968, -0.004348675, 0.022960886, 0.03431838, 8.02251e-4, - 0.0048377803, -0.0055905175, -0.0067698127, 0.02825148, 0.0023531097, - 0.039044205, 0.0019930033, -0.017367952, 0.01686501, 0.009963242, - -0.02394291, -0.023661679, -0.013488579, 3.401948e-4, -0.013882027, - 0.034701444, -0.029557662, 0.01045476, 0.020627894, 0.005423929, - -0.021501165, -0.024627335, -0.030367497, 6.7800755e-4, -0.019031882, - 0.025480626, 0.02142934, 0.013759016, 0.053897306, 0.009495494, - -4.2996928e-4, -0.041129537, 0.018107457, -0.010294136, 6.2477513e-4, - 0.012684642, 0.03798067, -0.019850373, -0.055602495, -0.0070576943, - -0.0011977664, -0.063739575, 0.04154256, -0.02577029, -0.012088918, - -0.037742566, -0.011927318, 0.0068317926, -0.029329006, 0.049774498, - -0.024463376, -0.037790988, 0.05853529, -0.0029733535, 0.018315112, - 0.024733791, 0.0077909837, -0.04099066, 0.005175766, -0.02909174, - -0.009797868, 0.017862422, -0.0281543, 0.02037591, -0.021431625, - -0.015912896, -0.012913269, 0.050006345, -0.07505693, 0.03735371, - -0.03312811, -0.004614553, -0.050872874, 0.045922287, -0.016039636, - 0.058934025, 0.04384288, -0.03563298, 0.046671234, -0.07765848, - -0.031617988, -0.027438795, 0.03387702, 0.07782658, -0.034034796, - 0.044367347, -0.01582078, -0.017129239, 0.030297147, -0.047853738, - -0.039454702, -0.0074883546, -0.012558024, 0.0068379, -0.037493095, - 0.06187243, 0.062762015, -0.036205657, -0.0016252676, 0.011489916, - -0.015566719, 0.012854408, 0.049749043, -0.0061911517, -0.051889297, - -0.011278351, 0.030566623, -0.027460495, 0.018145619, -9.947466e-4, - -0.031363033, 0.008172521, -0.026841559, -0.03210008, 0.0038895677, - 0.011679249, -0.015638761, -0.06546956, -0.010220429, 0.06361685, - -0.084803656, -0.0011483522, -0.036365237, -0.011884982, -0.0073065455, - -0.0064418428, 0.028210048, -0.032292888, -0.038234808, -0.025521236, - -0.013176797, -0.016551437, 0.019233795, 0.025994388, 0.0055911937, - -0.011595587, -0.019497737, -0.036814936, -0.021286556, -0.014827035, - 0.025879834, 0.007902763, -0.047988743, -0.03884018, -0.054832827, - -0.008836563, 0.0556936, -0.008735882, 0.04663952, -0.022323037, - -0.052637003, 0.02378887, -0.008957486, -0.027906863, 0.0055660335, - -0.011185242, 0.0317498, 0.017958833, 0.0046982, 0.011986149, - 0.0064543593, -0.02146647, 0.029481309, 0.021598209, 0.013475017, - -0.0065605743, -0.051049247, -0.013000367, -0.025265345, -0.0045396737, - 0.015382145, -0.011684253, 0.044110697, -0.043123927, 0.017934674, - 0.022877317, -0.01730753, 0.0288034, 0.030825222, -0.02355222, - -0.010078421, -0.019474547, -0.020631472, -0.01434638, 0.03296235, - -0.008677439, -0.040234853, 0.0020088954, -0.005664511, 0.031536937, - -0.02270388, 0.011348463, -0.03221692, 0.047220405, 0.031226303, - -0.033752773, 0.012813232, -0.0018215629, -0.018549252, -0.03607039, - -0.010649437, 0.013864542, -0.02142195, 8.4046193e-4, 0.03773797, - -0.034678336, 0.02788632, -0.040456995, 0.015466066, -0.01722224, - -0.015465503, -0.023469694, -0.03365135, -0.034668338, 0.006116925, - 0.028603833, -0.017507495, 0.022194253, 0.0054669213, 0.02089785, - -0.08118873, -0.0055093216, -0.041558456, 0.049234416, -0.034561016, - -0.0030923306, 0.01590099, 0.0039183595, -0.024246728, 0.028037481, - -0.010765065, 0.0048565767, 0.0133770555, -0.0070525147, -0.027740225, - -0.020149667, 0.0026807997, 0.025633335, -0.031487286, 0.0012803816, - 0.008596199, -0.03780328, 0.04618419, 0.0031704574, 0.02059068, - 0.011842949, -0.008400022, 0.03784708, -0.065688305, -0.017851751, - 0.054976534, 0.005689933, 0.0065132957, 0.009003242, 0.061637525, - 0.063106105, -0.024584545, -0.04076999, -0.049702447, 0.016213162, - 0.030548, -0.010034368, 0.0027503679, -0.022626474, -0.03429691, - 0.027072221, -0.038029946, -0.08335293, -0.017545646, 0.042202204, - 0.027599167, 0.043061092, 0.04557398, 0.04538201, -0.017779717, - -0.038122162, 0.012951875, 0.0077041383, -0.0016531879, 0.010710854, - 0.07472591, -0.015633905, -0.03704126, 0.016629146, 0.027753226, - 0.0093691, 0.0069866204, -0.0032647187, 0.009746313, -0.006426908, - -0.050669596, -0.0017628069, -0.023906909, 0.03083324, -0.01903537, - -0.026523467, -0.023899803, 5.348931e-4, -0.051670518, 0.006192749, - -0.02859425, 0.025022354, -0.038508464, -0.025760487, -0.038275056, - -0.039567187, 0.0032381779, 0.03437072, -0.021866757, -0.02936044, - 0.023842705, -0.046926066, -0.016495593, 0.013445943, -0.0053243586, - 0.0126209585, 0.057563167, -0.025839366, -0.009956079, -0.06902803, - 0.044307403, 0.041531384, 0.020167869, -0.04095604, 0.037282288, - -0.034165926, 0.055144086, -0.07944604, -0.026787532, -0.022549288, - 0.05298237, 0.01962098, 0.06165325, -0.07495424, 0.014057872, - -0.037303887, -0.022707738, -0.033244763, -0.015680129, 0.0016700624, - -0.019214721, -0.005816236, -0.04373384, -0.0042127976, 0.025324078, - -0.03155008, -0.027531771, -0.032568578, -0.04589516, -0.028646175, - 0.0135519495, -0.013696159, 0.053806596, 0.020883411, -0.035948377, - 0.008501352, -0.05178521, -0.0018699741, 0.0072633326, 0.005741355, - 0.025982892, 0.014504948, 0.05098713, -0.014131641, -0.0029791533, - -0.056269165, 0.0024691317, 0.013504734, 0.058931984, 0.020525772, - 0.012114856, -0.05782387, -0.010918257, -0.010105783, -0.006608219, - -0.11464541, -0.06569794, -0.00511744, 0.025912277, 0.0195599, - 0.0073411944, 0.039865837, 0.011256859, 0.024938617, 0.003652249, - 0.0061830017, -0.010391334, -0.016049841, 0.021967877, 0.0067207655, - 0.05704276, 0.036080692, 0.027838472, -0.017553752, 0.031723745, - 0.023744868, 0.018592102, 0.017691292, -0.046295494, -0.014706337, - -0.024031457, -0.033197235, -0.022811746, -0.010245127, 0.0027881884, - -0.07406918, -0.04045353, -0.010707689, -0.01708757, 0.05228017, - -0.05589705, 0.01920359, -0.02507187, -0.029382266, -0.043255433, - -0.01133697, 0.012380473, 0.0081895, -0.043976318, 0.027087476, - -0.06894891, -0.05372394, 0.08952785, -0.0021963818, 0.020287344, - -0.004218981, -0.011178144, 0.017092649, -0.02114756, -0.00993026, - 0.02377379, 0.0066146483, 0.03507657, -0.009087768, -0.0022303401, - -0.018972155, -0.003977111, -0.03926427, -0.022423023, 0.06688999, - 0.023805005, 0.043156646, 0.033534646, 0.0016123077, -0.01951737, - -0.021731129, -0.010239265, 0.05242357, -0.04615627, -0.0038196512, - -0.02037306, -0.0032391862, -0.0095792, -0.028089875, -0.01646058, - 0.016639175, -0.0076330253, 0.03366964, -0.025643893, -0.038988844, - -0.027504265, -0.008306481, -3.9597246e-4, -0.03290532, 0.019163085, - -0.030888882, -0.028422516, 0.00530471, 0.01726667, -0.0501578, - -0.014023765, -0.016434167, -0.019320805, 0.0049655237, -3.302728e-4, - 0.028270014, 9.765883e-4, -0.011728651, 0.011028471, -0.0075091827, - 0.023712805, -0.017255766, 0.021245575, -0.03723457 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.009975942, + 4.5055928E-4, + -0.0050335284, + 0.012075291, + -0.008754131, + 0.008174791, + 0.016425388, + -0.019335436, + -0.0058396114, + -2.6602525E-4, + 0.015397376, + -6.376834E-4, + 0.0048417016, + -0.035514615, + -0.006164224, + -0.028471256, + -0.009154918, + -0.0073101474, + 6.486131E-4, + -0.0077442275, + -3.7735453E-4, + -0.0062261177, + 0.01579119, + -4.0074208E-4, + 0.029922653, + 0.006667949, + 0.010477823, + -0.009905596, + 8.503508E-4, + 0.0049486556, + -0.012513801, + -0.022953192, + -0.019371869, + 0.014380453, + -0.026421612, + 0.011923318, + -0.002830241, + 4.908193E-4, + 0.029456794, + -0.022825073, + -0.009515178, + -0.010055707, + 0.019029286, + 0.03189694, + 0.02557174, + -0.00211052, + 0.0117824515, + -0.00783121, + 1.6831324E-4, + -2.034561E-4, + -0.009795847, + -0.010401606, + -0.023719314, + -0.00550859, + 0.00846071, + 0.013798067, + -0.007916128, + 2.177866E-4, + -0.0072104083, + -0.013613075, + 0.013150315, + 0.0018839911, + 0.024091031, + -0.01634204, + 0.01582125, + 0.012139104, + -0.004650302, + 0.0013203088, + 0.006276066, + 0.02872958, + -0.0026729393, + -0.016710976, + -0.014075699, + 5.1474496E-4, + -0.0024385625, + 0.025302077, + 0.017239286, + -0.016973386, + -0.0017100628, + -0.016221536, + 0.023263402, + 0.011658817, + -0.008833953, + 1.5355974E-4, + -0.0033112543, + 0.0010869666, + -0.025518823, + -0.013126049, + 0.020467091, + 0.008097654, + 0.014812564, + -0.020687953, + -0.042236622, + -0.01608571, + -0.007066599, + 0.010605014, + 0.0045154206, + -0.0013643176, + -0.01132253, + 0.006621654, + -0.013389437, + 0.0050777346, + -0.0072556892, + 0.0095066335, + -0.004728046, + -0.019498989, + -0.009237296, + 0.002594956, + 0.002024192, + -0.0030782262, + 0.0063888193, + -0.046422347, + -0.013142428, + -0.0015895113, + -0.018541433, + 0.01986768, + -0.00950998, + 0.013904948, + 0.03656802, + -0.019221602, + -0.032223087, + 0.018354611, + 0.0057213735, + 0.0043769944, + 0.026214719, + -0.018218867, + -0.0024332388, + -0.018562151, + -0.04017105, + 0.0058931126, + 0.017130129, + -0.024102949, + -0.0076078367, + 0.0046828035, + 0.014842018, + -0.005789272, + 0.0030082797, + -0.012958872, + 0.00637973, + -0.028240172, + 0.009237795, + 0.0033378394, + 0.019402264, + -0.0049370173, + -0.011589964, + 0.029378394, + -0.010350202, + -0.012391222, + -0.0043070987, + -0.02054123, + -0.0049187327, + -0.0038719608, + -0.0046380158, + 0.012987481, + -0.022529917, + 0.013052899, + 0.006535047, + 3.058789E-4, + -0.016970878, + -0.007847478, + 0.03315089, + -0.014800685, + -8.1196846E-4, + 0.014468062, + -0.007225072, + -0.01132536, + 0.005631232, + 0.012638038, + -0.0015601825, + -0.013753883, + -0.010846704, + -0.018742653, + 0.023836333, + 0.0134622995, + 0.005577732, + 0.010078748, + -1.5620679E-5, + 0.019779164, + 0.0020817444, + -0.0131570995, + 0.008717407, + -0.011252058, + -0.011724362, + 0.01649298, + 0.011269684, + 0.0061998107, + -0.010162751, + 0.011780051, + 0.0055040168, + -0.017145412, + 0.016014919, + 0.011722161, + -0.014537795, + -0.0026914445, + 0.0042157248, + -0.001722475, + -7.4552104E-4, + -0.0234254, + 0.026700433, + 0.018175071, + -0.0018823899, + 0.013507411, + 0.020645337, + 0.007164209, + -0.017799344, + 0.0015645967, + -0.003416669, + 0.005011148, + 0.009056831, + -0.011470384, + -0.008501884, + 6.351909E-4, + -0.015564918, + 0.009873233, + 0.016996587, + 0.007531852, + 0.019173529, + 0.017591214, + 0.006486526, + -0.020892533, + 0.025059735, + -0.026205614, + 0.0075708283, + -0.005368782, + 0.004089276, + 0.029378733, + -0.012561281, + 0.005755397, + -0.0058727134, + -0.013032337, + -0.0061659385, + -0.018023545, + -0.020539321, + 0.008861242, + 0.005222076, + -0.016036458, + 0.018025268, + -0.005509856, + -5.994958E-4, + -0.024974303, + 0.023721498, + -0.007381711, + -0.028100219, + 0.019064182, + -0.023490936, + 0.008595025, + 0.013576556, + 0.012006007, + -0.004061444, + -0.059479073, + 0.022322848, + 0.006517327, + 5.558139E-4, + 0.027456013, + 0.010582291, + -0.05048439, + 0.027561205, + -0.030683009, + 0.015892047, + -0.023791822, + 0.022211144, + -0.021070154, + 0.0045782262, + -0.009000534, + 0.016533714, + 0.02910378, + -0.0028380102, + -0.012399152, + 0.0031643496, + -0.0082658, + 0.025162015, + 5.085422E-4, + 0.019857092, + 0.013088343, + 0.0010780947, + 0.0072858436, + 0.028672548, + 0.005352719, + -0.011171864, + -0.014728599, + 0.004168042, + 0.018213073, + -0.035330173, + -0.016993515, + 0.02128645, + 0.009384109, + -0.015205894, + -0.010466136, + -0.001916357, + -0.009682315, + -0.004244237, + -0.023447543, + -0.007726523, + 0.0029791857, + 0.0055557233, + 0.011499835, + 0.0025175188, + -0.015839493, + 0.0031319477, + 0.013370661, + -0.0074707223, + 0.017997371, + -0.008725654, + -0.027330333, + 0.03976645, + -0.023949787, + -0.010057543, + 0.004016869, + 0.016445145, + -0.010537646, + -0.019172398, + 0.0019803706, + -0.0029769063, + -0.025837088, + -0.009048994, + -0.0132795805, + 0.036945365, + -0.008018622, + 0.03275919, + -6.3672126E-4, + -0.013408742, + -0.014684676, + 0.012902812, + 0.0054216348, + -0.021320708, + 0.0085046105, + 0.0066637513, + 0.022992926, + 0.0042787967, + 0.009490196, + 0.0044792597, + 0.014540506, + 0.0015814663, + -0.014999725, + -0.0035801693, + -0.031304598, + -0.024139093, + 0.024678214, + -0.028637744, + 0.018545847, + 0.029115994, + 0.027537197, + -0.029551124, + -0.008718096, + 0.006893496, + 0.006497716, + 0.007280309, + 0.034971792, + -0.013417681, + -0.0061917948, + 0.008378024, + 0.0018807008, + 0.0051146215, + 0.02167884, + -0.0066544386, + 0.018835247, + 0.01055422, + -0.0021720766, + 0.010843816, + -0.01636678, + 0.032600857, + -0.0123238405, + 1.8203726E-4, + 0.0131626325, + 0.0076385173, + 0.0040056505, + -0.026678253, + -0.009564745, + 0.011375568, + 9.42081E-4, + -0.0071850694, + -0.0067333155, + -0.019130938, + 0.007138614, + 0.012793378, + 0.04968043, + -0.021658741, + 0.013078181, + -0.023832332, + 0.0102421325, + 0.0044422476, + -0.019623112, + -0.021524366, + -0.012193594, + -0.0050310423, + 3.5481964E-4, + -0.0057276376, + 0.025517084, + -0.010954115, + -0.00703845, + -0.005895943, + -0.027496165, + 0.016208742, + -0.024845235, + -0.004421496, + 0.01419683, + -0.021133753, + 0.017675478, + 0.025953759, + -0.009739785, + 0.006861221, + 0.010754853, + -4.818985E-4, + -0.01068327, + 0.012657091, + 0.003377983, + -0.014613428, + 0.016434003, + 0.0037983377, + -0.007879226, + -0.0143676195, + -0.016822143, + 0.019824263, + -0.005908512, + 0.0062726885, + -0.016100768, + -0.001063076, + -0.0098425895, + -0.014649919, + -0.0097447885, + -0.009950086, + -0.007472138, + -0.015283238, + 0.009812184, + -0.014160089, + 8.7784283E-4, + 0.006243887, + -0.013100233, + -3.8357737E-4, + 0.010752456, + 0.036478076, + -0.019647243, + 0.008708377, + -0.0020097047, + -0.00399375, + 0.0023415848, + -0.005522757, + -0.0055844546, + -0.0041508325, + -0.018941494, + 0.027248353, + -0.010495597, + 0.0073057287, + -0.0076161497, + -0.013544095, + -0.029877502, + -0.012279175, + -0.0120725725, + -0.0064816307, + -0.008162736, + -0.015808843, + -0.008770359, + 0.007595817, + -0.0028623554, + 0.011472431, + 0.02139848, + -0.013904642, + 0.019045122, + 0.004023566, + 0.011156884, + -0.012722657, + 0.014669254, + 0.016419932, + -0.0019513908, + -0.012062698, + 0.016208252, + 0.03506999, + 0.026204227, + 0.01339089, + 0.0024839062, + 0.00837667, + -0.031885266, + 0.013846471, + 0.012225755, + 0.003471768, + 0.02695184, + -0.004566421, + -0.007463193, + -0.026649429, + -1.7064072E-4, + -0.00808236, + -0.0063947793, + -0.0067909798, + -0.0025714478, + -0.014513535, + 3.343841E-4, + -0.007750141, + -0.0036254374, + 0.0039237407, + 0.022061523, + -0.020895036, + -0.012597577, + -8.4632647E-4, + -0.006238068, + 0.0082590515, + -0.005159145, + 0.020929696, + 0.011455925, + 0.009384679, + 0.014770559, + -4.3262284E-5, + 0.010171867, + -0.011640857, + -0.011593682, + -0.009506158, + 0.0042960183, + -0.0038062916, + 0.010120179, + 0.007229267, + 0.0036842993, + -0.004474269, + 0.019536434, + 0.012761225, + -0.018487198, + 0.023875862, + 0.0076974, + 4.753579E-4, + 0.001473241, + -0.011593442, + 0.009528968, + -0.002044891, + 0.015946945, + 0.01822514, + -0.017126977, + 0.017266063, + -0.010176693, + 0.01598982, + 0.02536576, + -6.9148716E-4, + 1.4166585E-4, + -0.017930407, + 0.015419822, + -0.016162425, + 0.008414716, + 0.025574723, + -0.011798499, + -0.02358856, + 0.008464735, + -0.013533164, + 9.996356E-4, + 0.013934427, + 0.015854735, + 0.016347578, + -0.0068006907, + 0.0067257374, + 0.008558219, + 0.033104703, + 0.011009155, + 0.0053490624, + 0.026946459, + 0.014918634, + 0.007860405, + -0.037045266, + -0.02870586, + 0.014756451, + 0.02617413, + -0.003974971, + -0.0056715854, + 0.01101768, + 0.017861433, + 0.007083566, + -0.007633536, + 0.007559313, + 0.014687175, + -0.014703706, + 0.0022364887, + 0.005489483, + -0.004420531, + -0.0114700105, + 0.0011265454, + -0.003700843, + -0.004434106, + -1.6100344E-4, + -0.022369303, + 0.0064107925, + -0.0030712963, + -0.012160957, + -0.033132125, + 0.012944864, + -0.019145371, + 0.008601701, + 0.01028987, + 0.029136468, + -0.0044715093, + -0.01630858, + -0.018461563, + 0.0062427134, + -0.012168892, + 0.0054756296, + -0.019006548, + -0.004590129, + 0.013030661, + 0.0140001355, + -0.019818567, + -0.0045643444, + 0.0089152185, + -0.024233071, + -0.013569529, + 0.016475104, + 0.008025892, + 0.028417626, + 0.030475466, + -0.014819614, + -0.012945194, + -0.011796533, + 0.00499916, + 0.004043284, + 0.0133424895, + -0.027689848, + 9.984046E-4, + 0.01661536, + -0.003736525, + -0.004257856, + -0.016952664, + -0.013904744, + -0.00727145, + -1.6868669E-4, + -0.008822478, + 0.010904521, + -0.016159229, + -0.024491845, + 0.004020852, + -0.004023711, + -0.0017218359, + 0.01715908, + 0.0063429344, + 0.011759686, + 0.022358915, + -0.018932505, + -0.027792817, + 0.0014078446, + -0.0072325557, + -0.028709712, + 0.009423375, + -0.009822973, + 0.008747912, + -0.0065534436, + -0.0050220676, + -0.005974909, + 0.010736125, + -0.011469189, + -0.025707094, + 0.0026459636, + 0.02260059, + -0.009252107, + 0.018170893, + -0.0035782063, + -0.0055180145, + 0.0046580276, + 0.0019882822, + 0.0012959051, + 0.014910388, + 0.015057372, + 0.017381076, + -0.015050935, + -0.04171916, + 0.0076914006, + 0.008363807, + 0.005435458, + -0.0067118444, + 0.0034002364, + -0.0013424365, + -0.0049485317, + -0.015829511, + -0.011084029, + 0.004620765, + 0.0060398397, + -0.026880575, + 0.002262472, + 0.003666056, + 0.016060868, + 0.005107173, + -0.0050541135, + -0.0065278974, + 0.0051429747, + 0.025724873, + -0.0121756205, + -0.003784073, + -0.02843983, + 0.003892836, + 0.030286482, + -0.014051818, + -0.008175656, + 0.02564368, + -4.6298892E-4, + 0.0021295622, + -0.029349105, + 0.027520642, + -0.008751809, + -0.016077584, + 0.0040321564, + -0.0075790645, + -0.03314071, + -0.023326637, + 0.011655469, + -0.0334106, + -0.0026197645, + -0.0034634322, + 0.007825286, + -0.005104585, + -0.028044336, + 0.010260337, + -0.0086110225, + 0.006672236, + 9.567398E-4, + -0.011207659, + -0.009247592, + -0.003669934, + 0.0019039727, + 0.014784231, + 0.0076499726, + 0.008704949, + -0.0036385532, + -0.009954409, + -0.008167299, + -0.010801313, + 0.0149717815, + 0.017118514, + -0.009636913, + -0.0068262783, + -0.011049957, + 0.0024044984, + 0.009269898, + 0.0060425666, + 0.012730573, + -0.001907655, + 0.031381134, + 0.0077490546, + 0.019695023, + -0.012368609, + 0.02410873, + 3.6812047E-4, + 0.002667133, + -0.0041471166, + -0.02793678, + -0.02153887, + -0.0052167885, + -0.024730086, + -0.0040958524, + -0.014865478, + 0.0181334, + -0.013211799, + 3.3474294E-4, + -0.013456485, + -0.018343136, + 0.00648299, + 0.013328572, + -0.011195779, + 0.005816993, + 0.024795668, + 0.020655058, + 0.01989104, + -0.0017851667, + -0.0015626511, + -0.023874361, + -0.016139776, + 0.021051321, + 0.010502701, + -0.0037873115, + -0.0016236651, + 0.024502061, + 0.006709781, + -0.019949365, + 0.027771404, + -0.011025068, + -0.003378157, + -0.05059259, + 0.003881941, + 0.0026708066, + 0.013766285, + -0.010681778, + -3.218909E-4, + -0.0073271333, + 0.018863242, + -0.05151276, + -0.027436346, + -0.0043198057, + -0.0026219187, + -0.046966873, + -0.0075217406, + -0.01173937, + -0.025799952, + -0.0017786237, + -0.008515295, + -0.027516343, + 0.024921225, + 0.007599738, + 0.007365289, + -0.0024334344, + -0.022332752, + -0.004160385, + 0.016954886, + -0.019212093, + -0.007882209, + -0.013888482, + -0.0013714893, + -0.023746701, + -0.004129837, + 0.015230099, + -0.015128641, + -0.014015711, + 0.030791229, + -0.019999832, + 0.0020327454, + 0.0040540523, + -0.029173661, + 0.008870942, + -0.03646949, + 0.009051139, + -0.013141196, + 0.002790926, + 0.025142988, + 0.041152995, + 0.019004405, + -0.02053626, + -0.019934876, + -2.4770552E-4, + 0.005039068, + -0.015873553, + 0.0047137355, + -0.004003476, + 0.012048198, + 0.008742089, + 0.009818981, + -0.0016692491, + -9.523923E-4, + -0.006363887, + -0.014452692, + -0.0037920817, + -0.01959079, + 0.005330823, + -0.013477308, + 0.0017472141, + -0.0032837586, + 5.0946494E-4, + 0.011402109, + -0.0063924934, + 0.027191589, + -0.021271117, + 0.009280609, + 1.4703703E-4, + -0.007986185, + -0.0014242268, + -0.014816074, + -0.027286272, + 1.1914769E-4, + 0.01633375, + 0.005689362, + -0.0032684605, + -0.016230322, + -0.010385091, + 0.0035465993, + 0.024117244, + -0.017371329, + -0.003143907, + 0.039330345, + 0.022873065, + -0.017536918, + 0.009152672, + 0.0091322595, + -0.016556418, + -0.007257781, + -0.01392023, + 0.0036198874, + -4.492558E-4, + 0.012310106, + -0.025610765, + 0.014571322, + -0.0019123474, + -0.0057345903, + 0.008452584, + 0.011834777, + 0.011374221, + 0.0057768626, + 0.013819156, + 6.8734627E-4, + 9.5911213E-4, + -0.01861418, + -0.042968463, + -0.024895051, + -0.0033934072, + -0.005064035, + 0.014094967, + 0.0218477, + 0.031761523, + -0.0013751617, + -0.0023955929, + -0.0014692235, + -0.0037548228, + -0.03618684, + -0.005128042, + 0.04293515, + -0.0068691466, + 0.006227935, + -0.015581144, + -0.011189958, + 0.0018324718, + 1.1942122E-4, + 0.019543134, + 0.0012361291, + 0.02349965, + -0.01852032, + 0.046966173, + 0.035194043, + 0.010616811, + 0.005466147, + -0.0330588, + 0.0011216784, + 0.020456633, + -0.020648228, + -0.015992694, + 0.03156269, + 0.032071795, + 0.025139794, + 0.0035324886, + 0.018691171, + -0.0147718005, + -0.02050727, + 0.02072575, + -0.0010936102, + 0.021707729, + 0.0050536483, + -0.026155153, + 0.015982179, + -0.013619488, + 0.001808757, + -0.006958538, + 0.018229984, + -0.019362729, + 0.024811521, + -0.02240304, + -0.0029464255, + 0.006435659, + -0.010334326, + -0.011071557, + -0.035572026, + -0.009741116, + -0.008557358, + 0.030970974, + 0.012957192, + 0.007975188, + 0.0011483129, + 0.0068864846, + 0.022700476, + -0.0018813134, + 0.011532957, + -0.013623964, + -0.006750106, + -0.014922547, + -0.006022592, + 0.01978352, + -0.010180253, + -0.00778151, + -0.0019481204, + -0.024240816, + 0.0039044183, + 0.036619887, + 0.0066915406, + -0.017367406, + 0.020231431, + 0.032335225, + -0.028017776, + 0.015481203, + -0.0069001163, + -0.031809445, + -0.002948262, + -0.008027182, + -0.016808212, + 0.01077132, + 0.0023329994, + 0.033976447, + 0.004519883, + -0.019355394, + -0.01389811, + 0.01169756, + 0.0018190171, + 0.003237898, + 0.02381256, + 0.0069921343, + -0.02583389, + -0.007845273, + 0.0064335307, + 0.04331915, + 3.2539445E-4, + 0.030391535, + 0.0038929845, + -0.014825503, + 0.0013574654, + -0.00681657, + -0.007931528, + -6.231416E-5, + 0.017196719, + -0.020653188, + 0.003205407, + 7.3711143E-4, + 0.022379028, + 0.027873917, + 0.023074336, + 0.016088825, + 0.0038657612, + 0.007852681, + 0.022753572, + -0.006242414, + -0.0034770612, + 0.021255333, + -0.008810448, + 0.007268483, + -0.029468574, + -0.00424065, + 0.00822078, + 0.006248156, + 0.02143582, + -0.0055362703, + 0.0025940163, + 0.005466692, + -0.022914996, + -0.016285393, + -0.010099863, + 0.020332232, + -0.009851339, + -0.011972581, + 0.0031463783, + 0.034066614, + 0.023512011, + 0.009808302, + -0.028921237, + -0.015020115, + -0.00435736, + -0.005242694, + -0.021329448, + -0.0015907943, + -0.0066084173, + -0.012430972, + -0.020437079, + -0.021776328, + -0.009452542, + 0.016412828, + 0.0017871134, + 0.006065037, + -0.0178377, + 0.011320618, + 0.0072727143, + -0.0037031285, + -0.022436244, + 0.011035575, + 0.012219815, + -0.01310173, + -0.012694985, + -0.015301107, + 0.01103943, + 0.0135401385, + 0.003357212, + 0.031368997, + -0.019191435, + 0.024700085, + 5.0868886E-4, + 0.009477414, + -0.021259984, + -0.038163655, + 0.001587433, + 0.0044549713, + -0.0058768014, + 0.0119813075, + 0.008413613, + -0.013081433, + -0.011895281, + -0.005357092, + 0.008130975, + -0.017550357, + 0.006762869, + -8.4768963E-4, + -0.024345674, + 0.018736599, + -0.012664251, + 0.0052629174, + -0.010897087, + -0.029886093, + 0.026872395, + -0.025114916, + 0.007829291, + 0.0046793446, + 0.010237631, + 0.019366978, + -7.1615225E-4, + 0.01727878, + 0.026619755, + -2.521731E-4, + -0.010161722, + -0.0067668664, + 0.009993125, + -0.029012347, + -0.006294707, + 0.0059804977, + 0.022448773, + -0.01848741, + 0.019588325, + 0.014575022, + -0.013293749, + -0.024163768, + 0.012807583, + -0.038043607, + -0.008320222, + 0.007431628, + 0.013238469, + -0.009024455, + -0.011769398, + -0.005656901, + 0.023590056, + -0.010779279, + -0.02537716, + 3.7121057E-4, + -0.0070905164, + -0.011156362, + 0.025101835, + -0.008708548, + -0.054411635, + 0.007018922, + -0.0030249297, + 0.0036059131, + 0.005506759, + -0.0047104955, + 0.0057032704, + -0.0045341486, + -0.007228617, + 0.031006843, + 0.0092421, + -0.025556788, + -0.00886007, + 6.478091E-4, + -0.004099782, + -0.03655772, + 0.011946411, + 0.009630105, + 0.009973472, + -0.011397079, + 0.009325822, + 0.0018492515, + 0.0105111115, + -0.008342623, + 0.007114088, + -0.017310334, + 0.0055740145, + -0.012917092, + -0.007254597, + 4.2813076E-4, + 0.0084359795, + 0.012476906, + -0.0067021386, + -0.004064965, + -0.011787156, + 0.0026698248, + -0.0120072905, + -0.013198045, + -0.015738366, + 0.013467489, + 0.0018758659, + 0.0018104614, + 0.03236422, + -0.016079178, + 0.017330745, + -0.0018358158, + -0.012942906, + -0.012265101, + 0.005988401, + 0.025232011, + 0.0065760734, + -8.901303E-4, + 0.00295944, + 0.0061688274, + 0.016310845, + -6.8237743E-4, + -0.025083225, + -0.0126106255, + 0.010431988, + -0.013051998, + -0.0010993794, + 0.017747791, + -0.015010123, + -0.025604164, + 0.017060285, + -9.926439E-4, + -0.012959571, + -0.023360096, + 0.018775746, + -0.015202931, + -0.003530481, + 0.0010456902, + 0.0069968007, + -0.019460976, + -0.0048533874, + -2.7967623E-4, + -0.004257231, + -0.034667723, + -0.016268374, + -0.035997413, + 0.028000321, + 0.02141355, + 0.0072090225, + 0.004828425, + -0.016106594, + 8.343351E-4, + 0.0017464475, + -1.7795105E-4, + 0.01609442, + 0.0082733985, + 0.013370692, + 0.014965874, + 0.014585041, + -0.0123250075, + -0.007492186, + 0.026091317, + -0.027254183, + -0.019361442, + 0.007809028, + -0.0019150578, + -0.0038605123, + -0.01694804, + -0.020070443, + -0.008071844, + 0.00851521, + 0.012620536, + -5.214974E-5, + -0.02121707, + -0.012164169, + 0.008989232, + -0.024593981, + 5.149676E-4, + 0.004657645, + 0.005464001, + 0.010168905, + -0.0070813284, + -0.013716075, + -0.0018587281, + -0.033523124, + -0.011959087, + -0.022089688, + 0.005935196, + -0.04300475, + 0.007910959, + -0.0090641575, + 0.011928876, + -0.0016290044, + 0.011674561, + -0.007376728, + -0.019236045, + -0.009990871, + -0.030115588, + 0.011931734, + 0.0016448618, + 0.0056817085, + -0.009495892, + 0.025843563, + 0.008310588, + -0.008157906, + -0.013672918, + -0.008183935, + -0.009182839, + 0.014555522, + -0.0069892155, + -0.00469608, + -0.008264355, + 0.010295913, + 0.015343046, + 0.030180769, + -0.01054728, + -0.009241667, + 0.011456867, + 0.01881797, + -0.0018316271, + -0.019814167, + 0.0047091926, + 0.006671501, + 0.02478649, + -0.037613455, + -0.013508907, + 0.029062321, + -0.015121679, + -0.012212562, + -0.029707985, + -9.276953E-4, + 0.01181823, + -0.0013719308, + -0.02359652, + -0.007739397, + 0.011517706, + 0.002606947, + -0.005307579, + -0.0012077787, + 0.0065985774, + -0.0036252048, + 2.0120402E-4, + 0.007976305, + 0.011425253, + 6.04061E-4, + -0.0038012913, + 0.020407634, + 0.007610437, + 0.010999498, + 0.019778995, + -0.010826976, + -0.023538928, + -0.007184232, + 0.009760106, + -0.005892022, + -0.030358158, + 0.013999722, + 0.0056568547, + 0.022002002, + 0.006532799, + 0.008618142, + -0.0050405823, + 0.023685647, + -0.012956413, + 0.007919326, + 0.01698371, + -0.007450788, + 0.0029123148, + 0.026742052, + -0.011623287, + -0.017689269, + -0.026379224, + -0.028941521, + 0.013954354, + -0.030536234, + -0.03703038, + -0.0013194592, + 0.007232304, + 0.003789285, + -0.0155106075, + -0.010650285, + 0.009456816, + -0.014656223, + -0.004147311, + 0.015744282, + 0.02504012, + 0.0063994643, + -0.017644983, + -0.0010184619, + -0.011480944, + 0.01953102, + 0.008338408, + 0.0061147683, + 0.0076986593, + 0.011798183, + 0.0028394079, + -0.0071427827, + -0.02439812, + -0.01851835, + -0.008132332, + -0.025342302, + -0.011044254, + -0.009256493, + 0.0093712695, + -0.0025080524, + 0.016489409, + -0.0035708407, + -0.0025616027, + -0.009280636, + 0.0074592717, + 0.0010536155, + 0.021957919, + 0.012563472, + -0.014171891, + -0.00940399, + 0.0017381763, + 0.022213526, + -0.033273924, + 6.5174163E-4, + -0.010205525, + 0.020389773, + -0.010601357, + 0.013721336, + -0.040174093, + 0.0043458743, + -0.013415248, + -0.0066231303, + 1.4916735E-4, + -4.0793783E-4, + -0.011026781, + -0.01259638, + -0.01972989, + 0.030976217, + 0.007132202, + 0.025521683, + -0.0070214467, + 0.010630951, + 0.0045687556, + 0.017992888, + 0.016331993, + 0.020276757, + 0.022562942, + -0.0023680355, + 0.013376595, + 0.003429723, + -0.0024483902, + 3.9727968E-4, + -0.03441738, + 0.008368662, + -0.011560114, + 0.0056864717, + -0.0018731826, + 0.015235169, + 0.011405189, + -0.0034732288, + 0.031433605, + 5.8280973E-4, + -7.5276085E-4, + 0.0076233987, + 0.008245843, + -0.007910295, + -0.008309197, + 0.023230754, + 0.008244707, + 0.015251716, + 0.019939044, + 0.0061716703, + -0.010491001, + 0.020490022, + -0.0027755827, + -0.0047751693, + 0.024047557, + 0.024305748, + 0.0025591224, + -0.0034308087, + -0.0037805913, + -6.81484E-5, + -0.006649416, + -2.7481045E-4, + 0.003764005, + 0.005415317, + -0.007662763, + -0.022843262, + -0.024177594, + -0.012741941, + -0.0018649293, + -0.010823523, + 0.012286881, + 0.0042453776, + -7.97023E-4, + -0.0335864, + 0.0120585095, + -1.717238E-4, + -5.142637E-4, + 0.0015591949, + 0.0048353523, + -0.006998781, + -0.005283369, + 0.02037059, + 0.0034664858, + -0.013174431, + -0.018516805, + 0.005836544, + -0.022631465, + -0.026976246, + 0.030014686, + -0.0076690344, + -0.020683095, + 0.0030679198, + -0.0052830414, + 0.0021836332, + 0.019636264, + -0.0041914447, + -0.0020199532, + -0.019674454, + -0.031183288, + -0.014784529, + -0.018569402, + -0.0064585856, + 0.004514663, + -0.030244125, + -0.017852813, + -0.025625905, + 0.018104332, + 0.016494656, + -0.007929625, + -0.02067011, + 0.009498822, + 0.026087482, + 0.028982734, + 0.031298637, + -0.014456606, + -0.028070653, + -0.012755109, + -0.0018978781, + -0.026155863, + -0.00978184, + -0.008854116, + -0.0043581785, + -0.010826819, + 0.0130861625, + -0.0056586075, + 0.033254646, + -0.006457818, + 0.0055115917, + -0.0028941878, + 0.0035010888, + 0.001986798, + 0.0027203178, + -0.012856181, + 0.011905324, + -0.003305488, + -0.016315416, + -0.015212871, + 0.002298848, + 0.0147276465, + 0.0046194387, + -0.010246774, + -0.017068883, + -0.0028324516, + 0.007005678, + -0.01366521, + 0.010872503, + 0.00664054, + -0.03249909, + 0.01179568, + -0.017826315, + -0.0020663377, + -0.0039512087, + -0.0016424624, + -0.004185065, + 0.0063440474, + -0.031051645, + 0.010286074, + -0.0054705404, + 0.008361687, + 0.011321633, + -0.0022178574, + 0.012436569, + 0.0039595626, + -0.027719976, + -0.0011518708, + 0.013234093, + 0.005901605, + -0.00714131, + -0.010754786, + -0.0032999162, + -0.004413806, + 0.019995086, + -0.008952514, + -8.335486E-4, + 0.0027101832, + 7.891015E-4, + -0.007825314, + -0.0011310977, + 0.011198181, + 0.0041590203, + -0.00972942, + -0.0014120969, + -0.016639737, + -0.018604103, + -0.017481064, + 0.013336108, + -0.0024080658, + 0.02259716, + 0.01949469, + 0.010510694, + 0.009437382, + -0.008897892, + 0.01484486, + 0.019262617, + -0.041133083, + -0.0070944508, + 0.018007563, + 0.019520761, + -0.002052289, + -0.021622356, + -0.0059393644, + 0.0041584526, + 0.0041826875, + -0.019200498, + 0.004389369, + -0.01055419, + -0.005721393, + -0.022527613, + -0.002692253, + 0.03250823, + 0.00850428, + 0.009524624, + -0.009331382, + -0.003172948, + 0.011128033, + 0.0064208494, + -9.23302E-4, + 0.0049581234, + 0.020473097, + 0.014116247, + 2.942354E-4, + -0.019823069, + -0.0045501213, + -0.012681158, + -0.019037927, + 0.025556773, + 0.013445731, + -0.014623929, + 0.0032972922, + 0.017486744, + -0.010443521, + -0.010151513, + 0.0027365477, + -0.0048195873, + 0.02209274, + 0.013867373, + -0.028408121, + -0.05151968, + 0.016971154, + -0.010604093, + -5.314393E-4, + -0.0074095316, + -0.01783885, + 0.0042859884, + -0.027879188, + 0.017243048, + -0.014326751, + -0.0052809287, + -0.011159324, + -0.024105119, + -0.0028377275, + 0.015191757, + -0.0065088193, + -5.8545166E-4, + 0.0028404014, + -0.0023749215, + 0.014618538, + 0.009545315, + -0.004484096, + 0.008515174, + 0.0067033186, + 0.0036653287, + 0.01681895, + 0.015280191, + -0.02430095, + 0.012004288, + 0.0027702919, + -0.0039903545, + -0.020825848, + -0.0018440143, + -0.031006096, + 0.0068688975, + 0.025362143, + 0.017432999, + 0.0013662616, + -8.216792E-4, + 0.006666945, + 0.0071583106, + 0.017132498, + 0.008909319, + -0.028753152, + -6.75654E-5, + -0.0127546415, + -0.0035218534, + -0.0031293798, + -0.022086112, + 0.015876593, + -0.0018367469, + -0.002353028, + -0.01082874, + 0.0032083418, + -0.01911327, + -0.0011847261, + -0.0044809184, + 0.0057698977, + -0.01453202, + 0.012665404, + 0.021743473, + -0.023529425, + 0.008934886, + 5.4975314E-4, + 0.0022223028, + -0.0014183728, + -0.016161505, + -0.007326931, + 0.023826335, + 0.014689126, + 0.0024503449, + -0.0073627518, + 0.0154749155, + -3.1736318E-4, + 0.00777159, + 0.0336696, + -0.018569743, + 0.007444248, + 0.024091797, + -0.010081088, + 0.0027046045, + 0.011344343, + -0.005389513, + -0.0034908175, + -0.01062013, + -0.016412338, + -0.002511675, + -0.014257277, + -0.01839118, + 3.719551E-4, + -0.015836071, + 0.018664237, + -0.009825113, + 0.023268767, + 0.037250653, + 0.025783183, + -0.026194096, + -0.024296353, + -0.013610368, + -0.0121407565, + -0.006313317, + 0.013811001, + -0.0049536116, + 0.021756712, + 0.019794112, + -0.015747722, + -0.01394328, + 0.013952227, + -0.0018018789, + -0.038503285, + 4.8784926E-4, + 0.020864576, + 0.045579962, + -0.021574011, + 0.01862866, + -0.010073557, + -0.015755542, + 0.014427484, + 0.0023737827, + -0.0026833785, + -0.014175132, + 0.010003793, + -0.012597701, + 0.028389834, + 0.019938296, + 0.007568162, + 0.027615001, + 0.0014045435, + -0.013443148, + -0.0071865907, + 0.01877094, + 0.0026183499, + -0.007499483, + -0.007433481, + 0.005098623, + -0.014750583, + -0.0040698797, + 0.011904372, + -0.0058335373, + 0.012549695, + -0.020282445, + -0.009108485, + 0.018844673, + 0.02162305, + -0.012319386, + -0.019864302, + 0.0069330437, + -0.0035856746, + 0.013173749, + -0.0067657507, + 0.013274602, + 0.010167261, + -0.026697394, + -0.01135088, + -0.019678859, + 7.055229E-4, + -0.011376825, + 0.0150285475, + 0.0074073896, + 0.0064152707, + -0.015340019, + -0.0018601838, + -0.0043416005, + 0.01824673, + -0.0010253489, + -0.025835475, + 0.007493413, + 0.0050574634, + -0.018907579, + 0.023851244, + -0.004286507, + -0.005659992, + 0.016995447, + -0.018634258, + 0.010209672, + 0.00742234, + -0.0021009047, + 7.643082E-5, + 0.023156473, + 0.013742626, + 0.018020019, + -0.012276835, + 0.002482696, + -0.0011529148, + 0.018261852, + 0.016518196, + -0.018694945, + 0.0051455437, + -0.008216489, + -0.025004916, + -0.0055529997, + 0.018865265, + 0.017003682, + 0.0018279254, + 0.0073445304, + -0.011047388, + 0.007150952, + 0.003998849, + 0.010048713, + -0.012891604, + 0.026101358, + -0.034621567, + 0.003098242, + 0.010256569, + -0.009629557, + 0.004657062, + 0.014654795, + -6.2734133E-4, + 0.006198435, + -0.030142458, + 0.0017459681, + -0.028596833, + -0.01315049, + -0.010284291, + 0.008765561, + 0.029053878, + 0.012140604, + 0.014927975, + -0.006925563, + 0.01331637, + 0.021129647, + -5.0884095E-4, + -0.017591234, + -0.015102088, + 0.017284555, + -0.016622718, + -0.013625744, + -0.008560411, + -0.017887242, + 0.003931825, + -0.019851573, + -0.0011907996, + 0.0186863, + -0.0031971328, + -0.024061168, + 0.010624864, + 0.017285682, + -0.026576146, + -0.023749126, + 0.03190364, + 0.0071293092, + -0.0127799995, + -0.016935624, + -0.0024201123, + -0.0010664696, + 0.016705949, + 0.004244917, + 0.0131284585, + -0.0063108657, + -0.01226333, + 0.008983838, + 0.008941539, + -0.017927598, + -0.0152582, + -0.0053594275, + 0.0032512269, + -0.0029473205, + -0.01719408, + 0.0055006365, + -0.017434845, + 0.010366418, + -0.035169438, + 0.005123082, + 0.023076564, + 0.008641201, + -0.022415705, + -0.005272042, + -0.021379706, + -0.014784074, + -0.035378467, + -0.020312045, + -0.015801005, + -0.021106543, + 0.017465785, + -0.034629527, + -0.0024496044, + 0.026355764, + -0.012552268, + -0.015267271, + 0.007843608, + 0.01039237, + -0.0013627332, + 0.020433594, + 0.0044423942, + 0.0049063684, + 0.025800403, + 0.0029703316, + -0.02548222, + 0.030423252, + -0.0012082768, + 0.014280113, + 0.016024034, + -0.001580942, + 0.0025363183, + -0.01662314, + -0.011127192, + 6.6521374E-4, + -0.010035308, + 0.011628095, + 0.0067128357, + 0.005443824, + -0.0047038137, + 0.0043922076, + -0.0125843175, + 0.0019133724, + 0.03775872, + 0.00496917, + -0.0032809807, + -7.937587E-4, + 0.011392849, + 0.016161487, + 0.010413013, + 0.0013732873, + 0.026909474, + 0.020659877, + 0.011270384, + 0.012495115, + 0.0012631802, + 0.010691403, + 0.0048375437, + 0.008546735, + 0.0213386, + -0.022968667, + 0.017119503, + -0.013927066, + -0.010836636, + -0.0055307397, + -0.0047984286, + 0.00787798, + -0.0139005855, + 0.0034335656, + -0.014960501, + 0.0109970765, + 0.007946912, + -0.0067850472, + 0.0058982465, + -0.011356032, + -0.0039354223, + -0.02574026, + -0.012370874, + -2.4976372E-4, + -0.023485031, + 8.8054605E-4, + 0.0046028174, + 0.0075876424, + 0.031626202, + 7.08252E-4, + 0.0035823807, + -0.0065567363, + 0.019315563, + 0.004277772, + -0.012375179, + 1.533683E-5, + 0.024563313, + -0.013962128, + 0.032064606, + -7.0003123E-4, + 0.005996081, + -0.008468955, + 0.01274194, + 0.0010310765, + 0.0023772446, + 0.0063292454, + -0.0010107809, + -0.022761026, + 2.7524124E-4, + 0.0039152903, + 0.0020302837, + -0.012728526, + 0.01522171, + 0.002891999, + 0.012985376, + -0.027881334, + -0.0012988728, + 0.008672793, + -0.0062295115, + 0.009744461, + 0.0027083464, + 0.03824105, + -0.0024405522, + 5.812657E-4, + 0.020879127, + 0.005515643, + 0.004278414, + 0.011709882, + -0.010963472, + -0.014827952, + 0.0076778573, + 0.011182014, + -0.0041087545, + -0.0071118497, + -0.013809701, + -0.0054391795, + 0.0042280084, + -0.001935384, + 0.020120265, + -0.00681439, + -0.043157272, + -0.02329292, + 0.031410098, + 0.0015748637, + 0.024767067, + -9.424179E-4, + 0.008055932, + -0.008873561, + 0.0056003677, + 0.009326597, + -7.0517336E-4, + 0.0044537107, + 0.026596686, + 0.008949255, + 0.015728679, + -0.0144096585, + -0.019542186, + 0.010422474, + 0.012522149, + -0.008331954, + 0.0069520674, + 0.0047761495, + 0.0040665935, + 0.007464433, + 0.031993642, + -0.0044901744, + 0.0076136068, + -0.008628894, + 0.003072022, + -0.0052611004, + 0.0110583445, + 0.024589252, + -0.040491432, + 0.02548207, + -0.008844171, + 0.005502154, + -0.020433294, + 0.016639661, + -0.022445098, + 0.0047483253, + -0.010398699, + 7.8353996E-4, + 0.019439528, + -0.019849371, + -0.0032818485, + -0.0029614049, + 0.019068887, + -0.01435488, + -0.030960847, + -0.010036546, + 0.0049847863, + 0.010081425, + 0.0063061975, + -0.044514347, + 0.029250955, + 0.020344459, + 0.0076080975, + 0.018163942, + -0.0033226057, + -0.014240466, + -0.023071494, + 0.00447327, + -0.011234727, + 0.028066572, + 0.023701482, + -0.017856732, + 0.004373115, + -0.03525895, + 0.011517205, + -4.7468737E-4, + 0.004313873, + 0.007362613, + -0.011709388, + -0.04270463, + -0.016593112, + 0.0014752363, + 0.010269549, + 0.0099437395, + -0.016252091, + 0.014864313, + 0.03146101, + -0.004454069, + 0.0051460625, + -0.013879106, + -0.0022296915, + -0.0036206115, + 0.012714437, + 0.022514226, + 0.009941763, + 0.011426085, + -0.0047953296, + -0.008503101, + -0.0023125468, + 0.0063252975, + 0.0057242066, + 0.001092555, + 0.012258915, + -0.030581215, + -0.012873759, + -0.014273037, + 0.021344043, + 2.9961605E-4, + 0.026823437, + 0.0034738411, + -0.014393951, + -0.015763346, + -0.012241237, + 0.0038285654, + 0.0054975636, + -0.007034164, + -0.03537916, + 0.004913642, + 0.008353087, + -0.027481694, + 0.00905585, + -0.0045810794, + 0.019678308, + 0.019354457, + -0.018291384, + 0.016172076, + 0.011519984, + 0.018230883, + -0.0063770325, + -0.01612384, + 0.021442173, + -0.02620619, + 0.019506322, + -0.0079797115, + -0.023704836, + -0.003669255, + 0.02321077, + 0.033894774, + 0.0062781456, + 0.0020699725, + 0.00664911, + -0.02680983, + -0.0054395967, + 0.017055226, + 0.008690025, + -0.0071716015, + -0.013806872, + -0.026901145, + -0.028732002, + 0.006654075, + -0.0087363245, + 0.002831009, + 0.020570919, + 0.007944046, + 0.0016106947, + 0.009083296, + 0.028615229, + -0.036121096, + 0.0019267246, + -0.0019659146, + -0.0077594686, + -0.01443161, + -0.007394349, + 0.0066044354, + -0.012684881, + -0.01932063, + 0.024518149, + 0.003280162, + 0.0151637755, + -0.002688144, + 0.012321541, + -0.021703549, + -0.025608612, + -0.01315294, + 0.008265249, + 0.036898587, + -0.01532475, + 0.016556613, + 0.002888349, + 0.010950781, + -0.021342972, + 0.009522945, + -0.01189871, + -0.0013574801, + 0.02169651, + -0.012114957, + 0.0062825107, + -0.0033509056, + -0.0032797032, + 0.013297812, + 0.016126668, + 0.047629956, + -0.02036675, + 0.025684495, + 0.0033123067, + -0.0032044419, + 0.009093912, + 0.01299251, + 0.0043286644, + 0.006962201, + 0.010123067, + 0.022538887, + 0.0015255141, + -0.027826382, + -0.011265259, + 0.0063450793, + -0.005172211, + 0.012259065, + -0.0068634176, + -0.0013793855, + -0.016495397, + -7.017716E-4, + -0.0018997798, + 0.004747111, + -0.0073559615, + 0.0029880651, + 0.023007732, + -0.027479544, + -0.018547462, + 0.002848412, + 0.014420048, + -0.018724978, + 0.004100322, + -0.0044442182, + -0.0022732483, + 0.009801399, + 0.0010617025, + -0.009331347, + -0.01845927, + 0.03336, + 0.019949045, + 0.016724452, + -0.020096596, + -0.007889674, + -0.03277937, + 0.0071509765, + 0.030803315, + 0.033521608, + -0.0026263786, + 0.014903113, + -0.011152324, + -0.0016784574, + 0.0149508715, + -0.0016099974, + -0.010405354, + -0.009809671, + -0.0019075978, + -0.030679837, + 0.0072358632, + -0.0040267133, + -0.024450995, + -0.0035552997, + -0.0038848887, + -0.0056843576, + -0.014889204, + 9.858393E-4, + 0.014877614, + 0.00953949, + -0.03981141, + 0.0133045, + -0.004042149, + -0.0030165217, + -0.019078007, + 0.0013767397, + -0.010519133, + 0.0040818653, + 0.016630175, + -0.023724027, + 0.021204554, + 0.0029105453, + 0.014056436, + -0.0046848776, + -0.009336167, + -0.005150187, + -0.019003315, + 0.003294895, + 0.013702647, + -0.032838546, + -0.003256748, + 0.0046603675, + 0.008354015, + -0.0053866897, + 0.004240345, + 0.010908634, + 0.0162292, + 0.011196347, + -0.01083318, + -0.03140488, + -0.04128304, + -0.0050871437, + -0.020068986, + -0.021974871, + -0.016758835, + 0.010746737, + -0.0037078492, + -0.02154193, + 0.020440344, + 0.009061465, + -0.008726266, + 0.008551, + 0.03202296, + -0.0015957353, + -0.0029893022, + 0.011093192, + 0.0025920738, + -0.009014887, + 0.018820949, + -0.017431201, + 0.02611505, + 0.013823465, + 0.015826056, + -5.410662E-4, + -0.0065246583, + -0.005242686, + 0.005831056, + 0.011665018, + -0.015562428, + 0.0018935567, + 0.029463511, + -0.008325274, + 0.01031545, + -0.015142463, + 0.0069716964, + 0.0052400935, + 0.016006498, + -0.03193522, + -0.019818434, + 0.0023589565, + -8.445153E-5, + -0.013515006, + 0.006457409, + -0.001806022, + -0.039162714, + 0.009004083, + 0.02938819, + 0.017510395, + 0.008908234, + 0.021450678, + 0.0080360845, + 0.023269996, + 0.017576922, + -0.015331465, + 0.00685424, + 0.014162354, + -0.02017985, + 0.009487477, + -0.009653783, + -0.03483441, + -0.003770321, + -0.0032929243, + 0.020023659, + 0.008432297, + -0.009644682, + -0.0032698829, + 0.010000864, + -0.01784703, + -0.0065089446, + 0.0060175154, + -0.0045982525, + -0.012144183, + 0.036932666, + -0.0044765994, + 9.740502E-4, + -0.023507312, + 0.018245164, + -0.019005876, + -0.010555554, + 0.016480304, + -0.0036729942, + -0.017898962, + 0.0026130478, + -0.012433166, + -0.0073137367, + -0.005502778, + -0.015789347, + 0.007761763, + 0.010646721, + 0.013466687, + -0.010763498, + 0.011186945, + -0.01500382, + 0.0030287986, + 0.016477725, + 0.0065916623, + -0.030013522, + 0.022714118, + 0.002044156, + -0.013204172, + -0.009399195, + -0.017294312, + -0.02146384, + -7.6828693E-4, + 0.023209339, + 0.014156307, + -0.020199869, + 0.0031250329, + 0.0031584222, + 0.00944859, + -0.008117653, + -0.0021317522, + -0.030507572, + -0.015511789, + 0.0150943585, + -0.017434053, + -0.0050503807, + -0.008275614, + -4.6193108E-4, + -0.021671217, + -0.028297152, + 0.0077410717, + -0.012944112, + 0.0058701164, + -0.023302916, + 0.028647453, + -0.007727708, + -0.020570138, + -0.011741141, + -0.011442757, + 0.0031554098, + -0.008245465, + 9.691849E-4, + -0.009320657, + -0.015399984, + -0.017577734, + 0.020014454, + 0.009562922, + -0.010274173, + 0.013659339, + 0.016067663, + -0.010995502, + 0.009777006, + -0.016564583, + 0.005660304, + 0.0040116454, + 0.0033913632, + 0.0115869045, + -0.02656175, + -0.023556922, + 0.029934697, + -0.031021414, + -0.017964263, + -0.016145555, + 7.8201154E-4, + 0.0036430769, + 0.025338195, + -0.010115404, + -0.014001098, + 0.024055557, + -0.012276237, + 0.008937267, + 0.0060956934, + -0.016066568, + 0.014106634, + 0.0066254525, + -0.011026862, + 0.0021021764, + 0.011933723, + 0.0027299942, + 0.010000334, + -0.020082984, + 0.017423354, + -0.033989184, + -0.0012103514, + -0.0020069182, + 0.007659983, + 0.01200894, + 0.01649326, + 0.026325632, + 0.020085966, + 0.009284734, + 0.0021251817, + 3.5484732E-4, + 0.015805671, + -0.010022197, + 4.9463054E-4, + 9.150619E-4, + -0.012811405, + 0.006444515, + -0.015204552, + -0.012409355, + 0.020794803, + 0.03376807, + 0.0105457, + -0.011362432, + -0.0035575936, + 0.016851781, + 0.02682807, + -0.02479993, + 0.021519719, + 0.0041428944, + -0.013030445, + 0.018850833, + 0.029433029, + -0.0044269203, + -0.008885652, + -0.0017028447, + 0.042412322, + -0.015808823, + -0.014314152, + -0.016990827, + -0.015338647, + -0.0026027425, + -0.0011381353, + -0.009933628, + 0.014260263, + -0.009260123, + -0.014459743, + 0.0060821543, + 0.021635465, + 0.018695517, + -0.02574581, + -0.0061919587, + 0.006163579, + 0.01937818, + 0.0075263954, + -0.055538386, + -0.009787143, + 0.005950979, + -0.010598118, + 0.014287905, + -0.027691739, + 0.019579263, + -0.01795992, + -0.007461443, + 0.012283831, + -0.0017927455, + 0.0035047508, + 0.00598604, + -0.025529988, + -0.01681352, + 0.015771713, + -0.03720591, + -0.009812252, + -0.009950977, + 0.00903001, + -0.008579424, + -0.009028612, + -0.004115033, + -0.011167403, + -0.005374395, + -0.002558012, + -0.0089287525, + -8.524435E-4, + 0.014397893, + -0.0016411421, + 0.021676114, + 0.010215246, + -0.027136583, + 0.007047505, + 0.009596937, + -0.008159155, + -0.024456663, + 0.023959273, + 0.00913428, + -0.006282473, + 0.010109021, + -0.017933013, + -0.004227409, + 0.0018722747, + -0.006965616, + 0.028078532, + -0.036377393, + -0.011645593, + -3.5650717E-4, + 0.0014431651, + 0.019716328, + -0.007666173, + -0.010802707, + -0.0119791655, + -0.022181688, + 0.006532606, + -0.010482383, + 0.011365651, + -0.0019944713, + 0.017078698, + 0.027987577, + 0.015232555, + 0.021517279, + 0.0050678626, + 0.010609168, + 0.016738946, + 7.3601544E-4, + 0.0071407934, + -0.015788797, + 0.007216063, + -0.002467673, + -0.013119424, + -0.014094766, + 9.1411953E-4, + 0.0051589194, + 0.009167251, + -0.010603166, + 0.0073566707, + -0.010556405, + -0.018798886, + 0.012770955, + 0.0070628603, + 0.0021022544, + -0.003366897, + 9.4190193E-4, + -0.005498384, + -0.03637658, + -0.005130787, + -0.018852636, + -0.0017870422, + 0.0056056287, + -0.012838551, + 0.007904524, + 0.0034536298, + 1.0658917E-4, + 3.212535E-4, + -0.021604892, + -0.016196346, + -0.013956066, + 0.029110113, + -0.028517876, + 0.0040270835, + 0.01046792, + 0.015440476, + -0.0024423115, + 0.002293031, + -0.00765193, + 0.0042305025, + 7.9594547E-4, + 3.353561E-4, + -0.0042517553, + 0.008025243, + -0.018157482, + -0.027092502, + -0.0038482898, + -0.01445139, + -0.00689538, + -0.018616064, + -0.019182129, + -0.020767381, + 0.008705758, + -8.1007596E-4, + 0.0038697987, + 0.0066438643, + -0.004139003, + 0.008895022, + -5.5252196E-4, + 0.009545182, + 0.0038412523, + -0.017133804, + -6.970725E-4, + -0.013841191, + -1.7019898E-4, + 0.014219818, + -0.0055839857, + 0.001637946, + -0.002374325, + 0.011195641, + -0.024995875, + -0.006223453, + -0.012461753, + -0.028397236, + -0.017385937, + 0.028294967, + -0.016791686, + 0.025512056, + -0.0022617544, + -0.006504138, + -0.011806584, + 0.01698541, + -4.999449E-4, + 0.008918943, + 0.01751791, + -0.015755894, + 0.0015969536, + 0.016838362, + -0.0143457595, + 0.0024568127, + 0.011725181, + -0.02038846, + -0.0010476902, + -0.015521842, + 0.017738475, + -0.02147067, + 0.0020433348, + 0.025962034, + 0.0021481786, + 0.0033651234, + -0.027979387, + 0.024223773, + 0.017472407, + 0.007318455, + 0.0077823238, + -0.01315802, + -0.027750751, + -0.0017261016, + -0.015247819, + -0.0047320393, + 0.0018892331, + -0.013850781, + -8.7172625E-4, + -0.0013518675, + 0.019831607, + -4.4011665E-4, + -0.012720482, + 0.01291922, + 0.009389707, + -0.025940806, + 0.009738484, + 1.6277886E-4, + -0.004677991, + 9.965753E-4, + -0.0216115, + -0.0029288123, + 0.0075106714, + 0.0055437773, + 0.019342795, + 0.014955396, + 0.016998658, + -0.004765742, + 0.016073335, + 0.043022893, + -0.020427933, + -4.2549692E-4, + -0.011078093, + 0.0030730036, + 0.006476779, + -0.004945352, + -0.01028678, + -0.012665682, + -0.03081197, + 0.016689805, + -0.03057624, + -0.015372858, + 0.014588093, + 0.01014537, + -0.008687903, + -0.026799824, + 0.008498546, + -0.01607117, + -0.022315115, + -0.04301174, + 0.013019667, + -0.013196488, + -0.0063787806, + -6.100307E-4, + 0.023252478, + -0.0012615988, + 0.0033211806, + -0.0243184, + -8.190298E-4, + -0.015250487, + -0.026321677, + 0.016803946, + 0.035694867, + -0.0042701396, + 0.0057054088, + 0.0033647493, + -0.0041185543, + -0.0049598794, + -0.014488461, + 0.025179459, + -0.046311177, + 0.011937669, + -0.0026228172, + 0.008384575, + -0.0025174057, + -0.005587473, + -0.011747166, + -0.0025075052, + 1.13058624E-4, + -0.006845715, + -0.026131153, + 0.014047154, + -0.005704857, + 1.3037512E-4, + -0.032010373, + 0.011477503, + 0.024327518, + -0.009766966, + -0.012693626, + 0.016039995, + 0.0040705497, + -0.020704955, + 0.021413887, + -0.014127306, + 0.01847865, + -0.00822207, + 0.01323184, + -0.0021656083, + 0.0032981776, + 0.0059573594, + 0.016842412, + 0.0054569165, + 9.5062755E-4, + 0.026848841, + -0.011942668, + 0.006207264, + -0.012342749, + 0.001089218, + -0.012505656, + 0.004087337, + 0.021730764, + -3.791465E-4, + 0.03312988, + 0.009149203, + -0.042997506, + -0.007903893, + -0.016988948, + 0.019855808, + -0.016271543, + 0.022383157, + 0.01642354, + 0.0011341831, + -0.020263724, + 0.024293287, + 0.013563392, + 0.021166684, + -0.0013861541, + 0.005245751, + 0.011506608, + -0.020723999, + 0.0022008056, + -0.010589933, + -0.0033333828, + -0.014551262, + 0.010161103, + -9.0284867E-4, + 0.009137237, + 0.021193318, + -0.0054200115, + 0.007669577, + -0.0021499884, + 0.0054245144, + -0.016479485, + 3.429093E-4, + -0.004529537, + 0.0025712606, + 0.0037154262, + -0.0053526834, + -0.016596705, + 5.0394825E-4, + -0.026897844, + 0.0075498647, + 0.005730629, + 0.018192595, + 9.9714E-4, + 0.019857418, + -0.00685768, + 0.017072756, + 0.0046373587, + -0.035858933, + 0.0050917333, + 0.001966538, + -0.008694001, + -0.0034029768, + -0.0032457474, + 0.0242627, + -0.022254603, + -0.011187058, + 0.0051943786, + -0.017684072, + -0.016197005, + -0.021105766, + -0.0147181265, + -0.010750497, + 0.007930683, + -0.007596863, + 0.002029113, + -0.015209025, + -0.018275816, + 0.0011897407, + 0.00485737, + 0.0029465102, + 0.0032949836, + -0.013243077, + -0.007026256, + -0.0027291595, + -0.00231693, + -0.003795226, + -0.019436754, + -0.0014178617, + 0.0019265575, + 3.2326946E-4, + 0.025345355, + 0.010444736, + 0.0020032532, + 0.015735177, + -0.020218909, + 0.0058740117, + -0.010887658, + -0.0027108951, + -0.011855522, + -0.0074007553, + 0.002841443, + -0.017170077, + -0.01286547, + 0.027722852, + -0.020665932, + 0.011293848, + 0.022566646, + -0.016028292, + -0.022559872, + -0.014849223, + 0.019871555, + -0.0015471916, + -0.01282651, + -0.010023318, + 0.0035302308, + -8.7692856E-4, + 0.0036880283, + 0.03380135, + -0.009936481, + -0.025473611, + -0.01900278, + 0.010068947, + 3.9216323E-4, + -0.022426559, + 0.004349109, + -0.023528313, + 0.0048579457, + -0.011223027, + 0.026868576, + 0.011263469, + 0.0052225725, + 0.003780064, + 0.004812235, + 0.01121446, + -0.0023950376, + 9.829288E-4, + 0.0103884665, + -0.0024197246, + 0.030223476, + 0.013107898, + 0.021821521, + 0.00486301, + 0.023836581, + 0.008608231, + -0.0022457473, + -0.0048232134, + 0.0014411777, + 0.028530061, + -0.014576905, + -0.0062929746, + 0.01336089, + -0.028233409, + -0.022766301, + -0.012454912, + -0.008056372, + 0.033574313, + 0.027991522, + 0.0059133843, + -0.02337377, + -0.0056181024, + 0.009099858, + -0.009281146, + -0.0026720343, + -0.0030709151, + -0.013534158, + 0.03175219, + -0.030437991, + -0.0033607353, + 0.008245259, + -6.3257804E-4, + -0.012213128, + -0.0044897282, + -0.02321734, + -0.022646721, + 0.0064734044, + -0.0020091499, + 0.039468046, + 0.012291713, + 0.0132152755, + -0.0015888892, + -7.385831E-4, + 0.0026717803, + 0.013070303, + -0.023903435, + -0.0049990327, + -0.027027884, + -0.001473122, + -0.020398747, + -0.0022208723, + -0.021855745, + 0.022898292, + -0.009031803, + 0.026908671, + -0.014012083, + -6.306596E-4, + 0.015207967, + -0.01822103, + 0.01184141, + 0.010280778, + 0.029151294, + -0.020310909, + 0.018370923, + -0.0139863705, + 0.02348456, + -0.017395651, + -0.0084022265, + 0.018749772, + 0.009724107, + 0.026093611, + -0.012756386, + -6.661156E-4, + 0.026821794, + -0.009956886, + 0.0011340741, + -8.003862E-4, + 0.010032168, + 0.01669986, + 0.01404994, + 0.009773187, + 0.041942712, + -0.030013815, + -0.013047966, + 0.004772021, + -9.3369343E-4, + -0.0032935168, + -0.0055747093, + 0.009226864, + 0.014015591, + 0.0036285005, + -0.008405716, + -0.0139766885, + -0.03652255, + -0.04552351, + 0.004230144, + -0.0040190523, + 0.022776848, + -0.015160409, + 8.9200615E-4, + 0.036465183, + -0.0031613775, + 0.016925646, + -0.012404871, + 0.023476733, + -0.015031806, + -0.019729061, + 0.031199912, + 0.027636403, + 0.0062212823, + 0.010436938, + 0.004241734, + -0.002191245, + -0.0048905066, + -0.015129051, + 0.0052779126, + -0.021850733, + -0.014648112, + -3.5919578E-4, + -0.026656706, + 0.022711057, + -0.029268844, + -1.1385619E-4, + -8.058148E-4, + -0.04107052, + 0.007783281, + -0.0030493932, + 0.0050946926, + 0.016725378, + -0.0067443186, + -0.02038166, + 0.009637914, + 0.003760159, + -0.021391302, + -0.015442364, + 3.6550697E-4, + -0.009094994, + 7.596124E-5, + 0.01871641, + 0.015907422, + -0.0030047449, + -0.009909676, + 0.0027597856, + -0.014858891, + 0.005293046, + 0.020515742, + 0.018317277, + -0.005686322, + 0.0070383223, + 0.00977638, + 0.014904637, + 0.0051456545, + 0.020489853, + -4.9007383E-5, + 0.0156112565, + 0.0022527373, + 0.0014488788, + -0.0010420905, + 0.007769243, + 0.018527828, + 0.0033337125, + 0.021634918, + 5.912167E-4, + 0.021997353, + -0.0121609485, + -0.011104141, + -0.0016920045, + 0.00291766, + -0.009258361, + 0.0026344797, + 0.0033011516, + -0.0040052743, + -0.006771488, + -0.013827333, + -0.009832828, + 0.003701741, + -0.01601443, + -0.02993485, + -0.027228318, + -2.3904197E-4, + 0.0049884976, + 0.018554086, + 0.011911747, + -0.002884095, + 0.0094470065, + -0.0042423513, + 0.0062950472, + -0.0015537557, + 0.0057780175, + 0.016926976, + -0.0039609554, + 0.0027502018, + 0.022566937, + -0.01887134, + -0.011710875, + 0.003966058, + 0.036693756, + -3.7926147E-4, + 0.009585068, + 0.0023100893, + -0.0035668497, + -0.014189652, + -0.0016011412, + 0.009613696, + 7.8318105E-4, + -0.028178606, + 0.022018889, + -0.016796965, + -0.014571565, + -0.027429404, + 0.007972876, + 0.0030013656, + -0.0071998686, + -0.036268752, + -0.025399316, + 0.0058293384, + -0.001885468, + 0.034478247, + -0.0068285475, + -0.021434437, + 0.012773557, + -0.007841647, + -0.010087669, + -0.021670418, + -0.0019413165, + 0.019907758, + -0.0056369794, + 0.006342383, + 0.0032386582, + 0.0022151882, + -0.016080279, + 7.811098E-4, + -0.0067338813, + 0.004343031, + -0.026090415, + -0.016946157, + -0.015393993, + 0.01801782, + -0.010551821, + 9.556883E-5, + 0.005555005, + 0.014526755, + 0.008395404, + 0.00571579, + 0.002055199, + 0.013171159, + -0.0072211, + 1.4785943E-4, + 0.014413649, + 0.0010598338, + -0.019457225, + -3.2573234E-4, + -0.0038588732, + 0.0036123968, + 0.011241592, + -0.02167212, + 0.013440851, + 0.020551141, + -0.0035817507, + -0.015047274, + 0.0054296027, + 0.029146677, + 0.01944683, + -0.015840348, + 0.014316612, + -0.001442548, + 0.012466098, + -0.029806472, + -0.016247228, + 0.01180274, + -0.020429956, + 0.046235934, + -0.019324556, + 0.03796464, + 0.0021601648, + -0.015616567, + 0.007508873, + 0.005124051, + -0.01574163, + -0.020770323, + 0.022193128, + -0.029424857, + -9.3792485E-5, + -0.016514845, + -0.020979963, + -0.021351002, + 0.003289962, + -0.0019575385, + 0.012155172, + -0.014850865, + -8.448071E-4, + 0.0021015378, + -0.003755127, + -0.011169027, + -0.02194016, + -0.0072126654, + -0.0047095567, + -0.008472719, + -0.011402955, + -0.013209235, + -0.015091285, + -0.034840778, + -0.0087312, + -0.022252047, + -0.0021541596, + -0.0073758955, + 0.017415391, + -0.007876096, + 0.016089477, + 0.02147025, + -0.012440017, + 0.0073096524, + 0.014110814, + -0.0021723304, + -0.019720387, + -0.00723748, + 0.0055266316, + 0.009490387, + -0.0054417043, + 0.02949787, + -0.023213759, + -0.0076762913, + -0.01568689, + 0.019850606, + -0.027634539, + -0.006126315, + -0.018640988, + -0.01691278, + -0.030801915, + -0.0034080234, + -0.0033269797, + -0.0036998698, + -0.036592763, + 0.0014227293, + -0.008176548, + 0.005153447, + -0.0024815572, + -0.007377446, + 0.014477004, + -0.040035486, + -0.009787015, + 0.0021855321, + 0.014121151, + -0.010600293, + -0.018143572, + 0.016605407, + -0.020575149, + 0.02102578, + -0.021391269, + -0.006608613, + 0.031798646, + -0.005773853, + -0.015812876, + 0.02628071, + 3.81702E-6, + 0.019120852, + -0.014276757, + -0.008321016, + -0.023598082, + -0.04669189, + -0.007974543, + -0.0020812363, + -0.011780887, + -0.03644261, + 0.0020857018, + -0.017917305, + 0.009903266, + 0.0065390808, + 0.038373873, + 0.0139210895, + -0.0010373906, + -0.011624835, + 0.0101342965, + -8.654893E-4, + 0.0049762274, + -0.008642365, + 1.9277443E-4, + 0.017123392, + 0.0011669829, + 0.02413601, + 0.019870838, + -0.016598118, + 0.018005107, + 0.010526144, + 0.012216464, + -0.006735382, + -0.0010045966, + -0.043368313, + -0.022214854, + 0.009676002, + -0.0071493327, + 0.037411824, + 0.030494032, + 0.011122016, + -0.01930142, + 0.034138367, + -0.005076971, + -0.026004044, + -0.0072693494, + -0.0034754695, + 0.006813606, + 0.017938837, + 0.00558746, + 0.0037328128, + 0.007545285, + -0.005507476, + -0.006796533, + -0.011509589, + 0.0018148207, + 0.008855491, + 0.0038139003, + -0.01110921, + -0.024485296, + -0.004507038, + 0.006660514, + 0.032334417, + 0.022619443, + 0.0029208844, + -0.02813985, + -0.015797662, + -0.01573179, + -0.016406555, + -0.003780324, + 0.0074794996, + -0.0023542414, + 0.0059793126, + -0.01099576, + 0.010420345, + 0.0016660882, + -0.011806708, + -0.016482068, + 0.005530606, + -0.013270625, + -0.007623463, + -0.004644275, + -0.0012441595, + 0.008004143, + -0.019428264, + 0.0041584563, + 0.0026673446, + -0.027220257, + -0.024378126, + -9.630967E-4, + 0.016273227, + -0.018979196, + 0.016622005, + 0.0020738712, + -0.0017814547, + 0.012403827, + -0.0058632153, + -0.0062065204, + -7.699614E-4, + 0.0015525728, + -0.014363149, + 0.013251637, + 0.010924244, + 0.006750381, + 0.014864605, + 0.01769841, + 0.017607503, + 0.017627392, + 0.018847944, + 0.014084337, + 0.03179428, + -0.005487668, + -0.004269351, + -0.018560465, + -0.0078076324, + 0.023935026, + -0.030569345, + 0.010734125, + 0.012379359, + 0.025035523, + -0.006457529, + -0.017820455, + 0.020736016, + -0.030360239, + -0.030718366, + -0.00618227, + 0.01759667, + 0.0064797583, + 0.013244515, + 0.009540032, + -0.009434645, + 0.026583182, + -0.0074609197, + 0.027698342, + -0.0017122073, + 0.0079931505, + -0.015689727, + -0.00981825, + -0.008133586, + -0.002345485, + -9.877923E-4, + 0.0043011843, + 0.021742566, + -0.0029204646, + 0.015760724, + 0.0011033119, + 0.009239412, + -0.023862122, + -0.002034852, + -0.016072797, + -0.010044466, + -0.036414642, + 0.013109603, + -0.0070459284, + 0.011931469, + -0.0070995814, + 0.020726211, + 0.005934621, + 0.008312554, + 0.0068790168, + -0.008782529, + -0.007757011, + -0.0061297794, + -0.001747421, + -0.02044938, + -0.001025228, + 0.0041832626, + -0.0026884985, + 0.014611163, + 0.008983492, + -0.002836429, + -0.0075880717, + -0.0042945803, + 0.013955378, + -0.0012971786, + 0.0073610265, + -0.037300173, + -0.0139695015, + 0.007754254, + -0.0065893247, + -0.0075030625, + -0.014945868, + -0.006231546, + 0.00484085, + -0.007812798, + 0.022558019, + 0.007008425, + 0.031337388, + 0.005626949, + 0.0114237135, + -0.005116905, + 0.009100478, + 9.821863E-4, + 0.0061762724, + 0.023824917, + -0.011146828, + -0.004811645, + -0.010877946, + 0.015929291, + -0.01568658, + 0.0070512835, + -0.008483384, + 0.014039294, + 0.01493011, + -0.008842872, + -0.010010097, + -0.0052485513, + -0.0010922427, + 7.667497E-4, + -0.003885527, + 0.0065045417, + -2.9398187E-4, + -0.02208231, + 0.013447516, + 0.013202657, + -0.004601696, + 2.4976535E-4, + 0.009874082, + -0.013130037, + -9.656034E-4, + 0.010222101, + -0.0103911925, + 0.0052419696, + 3.2678046E-4, + -0.016361447, + -0.0044764024, + 0.014526713, + -0.01835652, + 0.008237996, + 0.0051274747, + 0.03376493, + -0.02546157, + 0.011694247, + 0.017977431, + -0.004844617, + 2.0240649E-4, + -0.008708245, + -0.004171377, + -0.00392949, + 0.008210055, + 0.013949657, + 0.0112013845, + 0.0028138277, + -0.023012852, + -0.003625722, + -0.025588514, + -0.006527119, + 0.011251194, + -0.007974894, + 0.011101924, + 0.0057282764, + 0.005205104, + 0.007036436, + 0.024093024, + 0.0066237105, + -0.006442309, + 0.014814947, + 1.6419063E-4, + 0.0070816875, + 0.009543998, + 6.3514453E-4, + 0.006067032, + -1.0186836E-4, + 0.007839231, + 0.0022670138, + 0.023634927, + 0.010937922, + 0.019974077, + 0.01341755, + 0.013837781, + 0.009716828, + -0.014100126, + -0.012007923, + -0.03729552, + -0.02317366, + 0.01271074, + 0.019025091, + -0.0072653447, + 0.0043000923, + 0.012851906, + -0.012526027, + -0.015590075, + -0.021023292, + -0.0013446541, + -0.0111577725, + 0.027397454, + 0.013259005, + -0.0105559975, + 4.0203967E-4, + -0.004500508, + -0.0039280932, + 0.020887544, + 0.0016277846, + 0.010590998, + 0.017397657, + -0.0077313655, + -0.006706264, + 0.021554084, + 0.0075853444, + 0.01018548, + -0.024329402, + 0.017429315, + -0.022414912, + 0.009376896, + 0.025920955, + 0.009946314, + -0.013960911, + -0.007792465, + 0.018610654, + 0.015853044, + 0.003585141, + 1.0148604E-4, + 0.0066507114, + 0.02563283, + 0.0057541593, + 0.019838305, + -0.0054584253, + -0.006437302, + 0.0021451665, + 0.025093377, + 3.5738488E-4, + 0.014739125, + 6.4948265E-4, + 0.018275302, + 0.0019095859, + -0.006305724, + -0.0057194014, + -0.015344256, + -0.03458066, + -0.010875286, + -0.0036642987, + 0.02013037, + -0.013663498, + 0.014798407, + 0.0069865608, + -8.1120094E-4, + -0.0102081, + -0.024619222, + 0.033035923, + -0.027162468, + 0.035518605, + 0.0077510066, + -0.0018400352, + 0.0061222254, + -0.03808901, + 0.0030614461, + -0.0034457126, + 0.028995384, + -0.011253926, + 0.027938256, + -0.0053737657, + -0.017285557, + -0.017034909, + 0.0012812722, + 0.009686662, + -0.00384402, + -0.0013800178, + 0.04801761, + -0.0020942013, + -0.003484167, + -0.0078104003, + 0.0104680965, + 0.022562537, + -0.006874792, + 0.009632926, + -5.3305906E-4, + 0.014853309, + -0.0052234386, + -0.0011933012, + -0.024107534, + 0.0342733, + 0.015269652, + 0.014759652, + 0.008047303, + -0.021734068, + 0.0040420163, + -0.021204192, + 0.0030170223, + 0.005332516, + 0.016626213, + -0.0022433563, + 0.009089328, + 0.020119876, + -0.0026217273, + -0.011904828, + 0.02580913, + 0.034676947, + 0.013959129, + 0.0024884562, + 0.00547216, + -0.0077606277, + 0.014031586, + -0.018667746, + 0.015679387, + 0.005617585, + -0.02786603, + -5.898485E-4, + -0.014327142, + 0.0033988869, + -0.009817711, + -3.106196E-4, + -0.005726618, + -0.012084778, + -0.03810492, + -9.902861E-5, + 0.00438818, + -9.1763836E-4, + 0.0022573483, + -0.0061546876, + 0.021369662, + 0.0053422046, + -0.024166586, + -0.021430774, + -0.0153494375, + -0.0034896056, + 0.009876413, + -0.023209345, + -0.015736783, + -0.00843073, + 0.01666973, + -0.016958848, + 0.0060655093, + -0.001786376, + -0.0017975647, + -0.0179664, + 0.01028653, + 0.01544159, + 0.014126777, + -0.015870748, + -0.013503539, + -8.997239E-4, + 0.013372834, + 0.0046706675, + 0.04045713, + -0.010802755, + -0.00886032, + 0.008892071, + 0.0042351135, + 7.8078774E-5, + -3.1083015E-5, + 0.026883032, + -0.009764309, + 0.016824223, + -0.0252856, + 0.008132147, + 0.0013773036, + -0.010631642, + 0.011352955, + -0.0028031226, + 0.022592768, + 0.011105881, + 0.019216442, + -0.0145406155, + -0.0046905684, + 0.014024304, + 0.013885542, + -0.012799556, + 0.018585697, + 0.005502324, + 0.030862728, + 0.014343813, + 0.015566419, + 0.02310309, + -0.0033306458, + -0.022568196, + 0.009073431, + 0.020641925, + -0.007873473, + -0.0026263108, + 0.0016583861, + 0.010284515, + -0.009734425, + -0.01910018, + -0.019431055, + -0.00759046, + 0.00161975, + 0.020505793, + -0.015750287, + 0.012792027, + 0.021495728, + -0.010452304, + 0.016883962, + 0.0027175844, + 0.00579984, + 0.0051501254, + -0.016710462, + -0.024216646, + 0.002490151, + -5.5443647E-4, + 0.0015091284, + 0.012231288, + 0.019536138, + 0.018524071, + -0.009207112, + 0.00922632, + 0.0033543014, + -0.029143788, + -0.021630606, + -0.0021348426, + -0.024649795, + 0.014268365, + 0.030830435, + -0.0111201, + 0.016561052, + 0.004022555, + -3.6703932E-4, + -0.034683023, + -0.019220406, + 0.014727927, + -0.022781245, + -0.014944051, + 0.0077261194, + 0.030959295, + -0.014189364, + -0.03216982, + -0.009048354, + -0.0059529576, + 6.3861156E-4, + 0.015244078, + 0.010953186, + 0.011869065, + 0.005985719, + 0.0065203016, + -0.013744336, + -0.014990382, + -0.005514853, + 0.0042617046, + 0.0039610807, + -0.012258957, + -0.0018840389, + -0.005473811, + -6.297716E-4, + -0.014221915, + 0.0142360795, + 0.011341232, + -0.0017960584, + -0.015849687, + -0.033639207, + 0.0113579, + 0.026695047, + 0.017851168, + -5.877281E-4, + -0.0037941288, + -0.012625385, + -0.017948732, + -0.034801435, + 0.017281253, + -0.01354584, + 0.031826787, + 0.021897718, + 0.014984731, + -0.017548371, + 0.00866246, + 0.0069736536, + 0.009079025, + 0.0016644688, + -0.0053615286, + -0.0016426106, + 0.0022388534, + -0.024052804, + -0.009348866, + -0.01957448, + 0.011265586, + 0.011746598, + 0.027292384, + 0.032700095, + -0.014193041, + 0.012802948, + 0.013478757, + -0.02499559, + 0.011193932, + -0.017823568, + 0.004869282, + -0.033072513, + 0.008857498, + -0.023602208, + 0.012957217, + -0.006801136, + -0.014696252, + 3.615886E-4, + 0.015781187, + 0.01482041, + -0.015521667, + -0.01914371, + -0.017510641, + 0.023587067, + 0.0013117696, + -0.02703054, + 0.008890441, + -0.009136646, + -0.014568239, + -0.0021475572, + -0.023195958, + 0.009356256, + -0.005366991, + -0.02270914, + 0.0046729688, + -0.03905683, + -0.011407022, + -0.0024494731, + -0.008994519, + -0.014652044, + 1.7687258E-4, + -0.006326568, + 0.023856634, + 0.0114031825, + 0.026756216, + 0.014052866, + 0.013604924, + -0.030964969, + -0.0011111851, + -0.019708829, + 0.0014108957, + 0.0013723375, + -0.017884856, + 0.025046324, + -0.020965153, + 0.008093632, + 0.008803876, + 0.008110785, + -0.013403567, + -0.024196284, + 0.021947559, + -2.174702E-4, + 0.029101213, + 0.014820228, + -0.012502459, + -0.022128515, + -0.008879566, + 0.010077935, + -0.03879711, + 0.023427345, + 0.019976748, + -0.030961458, + -0.021782242, + 0.0020071932, + -0.011949995, + -4.3220381E-4, + -0.0035007573, + 0.00953216, + -0.0073430724, + 0.02166947, + 0.013892908, + -0.021062879, + -0.008504076, + 2.6779078E-4, + -0.024900155, + -0.018369364, + -0.0014195531, + -0.020969102, + 0.009287243, + 0.0021525603, + 0.021784246, + 0.014041172, + -0.0048372704, + -0.033534527, + 0.018948305, + 0.033501405, + -0.0013747554, + 0.015803315, + 0.006861077, + -0.022489926, + 0.003910058, + -0.012535225, + 0.009181189, + 0.0069757667, + 0.007888078, + -0.004049331, + -0.010270581, + 0.016941017, + 0.0028324819, + 0.010680646, + -0.011214881, + 0.0018904863, + 0.0012585893, + 0.023513429, + -0.002766925, + -0.0022013432, + -0.002674273, + -0.017529348, + 0.009830017, + -0.0075515015, + -0.008605158, + -0.013657689, + 9.045827E-4, + -0.009189545, + -0.0035217083, + -0.01053265, + 0.008142068, + 0.005850888, + -0.007887488, + -0.030537512, + 0.021443348, + -0.0056213443, + -0.03510713, + 0.004649112, + 0.004351405, + 0.0042512105, + 0.023572557, + 0.012852965, + 0.0024724302, + 0.028669229, + 0.017578347, + -0.0099429395, + 0.02148929, + -0.006614608, + 6.839411E-4, + 0.006820567, + -0.0015737959, + 0.028186703, + -0.0044574216, + -0.027214296, + -0.01123439, + -9.55233E-4, + -0.014697589, + -0.007348373, + -0.019053385, + -0.007963279, + -0.00348746, + 0.019242402, + -0.01605979, + -0.010609907, + 0.033020776, + 0.011146022, + -4.565379E-4, + 0.01812442, + 0.0074208477, + 3.596008E-4, + -0.014399343, + -0.026244342, + -0.007849375, + -0.0042494205, + 0.017094692, + -0.006416505, + 0.036671165, + -0.0013882517, + 0.020751411, + 0.008151381, + -0.01091284, + -0.016682856, + 0.017457465, + -0.0063926377, + -0.0010328718, + -0.009596107, + 0.013490862, + 0.026786726, + -3.3511283E-4, + 0.0015901399, + 0.0040165577, + -0.026626255, + -0.015879964, + -0.007866277, + -0.0054270797, + 0.01969244, + 0.0049691875, + 0.00926067, + -0.012975058, + -0.0030751873, + 0.01175677, + 0.0029657728, + 0.01566165, + -0.013171184, + 0.010810679, + -0.0076921335, + -0.019028302, + 0.024175676, + -0.0017309211, + 0.0010139621, + 0.021045068, + 0.012347501, + 0.013289879, + 0.0060247374, + 0.0024205323, + 0.0059744, + -0.029267745, + -6.755171E-4, + -0.007974619, + -0.0038822114, + -0.025807891, + 0.0027798794, + -0.013154575, + -0.00362221, + 0.0025462108, + 0.007853005, + 0.02048418, + -0.0014269039, + -0.00552775, + 0.014902264, + 0.027446264, + -0.013265446, + -0.027181573, + 0.0041963505, + -0.007088221, + -0.011386641, + -0.0012046811, + 0.01660856, + -0.013403098, + -0.008008329, + 0.005480367, + 0.0075936583, + 0.0037774334, + -6.33214E-4, + -0.0016730513, + -0.017118571, + -0.02529036, + 0.013991656, + -0.0034699654, + 0.0069711627, + -0.008954795, + -0.009573607, + -8.431828E-4, + 0.030942123, + 0.020004844, + -0.0060190433, + 0.02196794, + 0.011659784, + 0.01742056, + 0.015929068, + -0.005177538, + 0.022544848, + -0.009693718, + 0.0044719824 ], - "paletteEmbedding": [ - -0.017485281, -0.033152383, 0.007083128, 0.0072073545, -0.022552993, - 0.0045762258, 0.01901444, 0.037029006, 0.05624501, 0.016977312, - -0.03064822, -0.0308371, 0.008863831, -0.021498406, -0.0068704337, - -0.021936499, -0.04082636, -0.038008064, -0.03271792, 0.05853515, - -0.019677734, 0.030402768, 0.075778194, -0.034953635, 0.033582095, - 0.0036966638, -0.047107592, -0.021992907, -0.010612313, -0.0033439419, - 0.007484426, 0.015871847, -0.031181552, 0.021724902, 0.056816477, - 0.003989867, -0.020203913, -0.019534508, 0.0063047097, -0.02179397, - 0.0022821217, -0.026643293, 0.009059992, -0.026279742, -0.008369568, - -0.03369043, -0.058701523, -0.022727344, -0.04111915, 0.03315768, - 0.038981702, -0.029053891, -0.024993123, 1.548481e-5, 0.020882651, - 0.022452734, -0.010704988, -0.01931617, 0.034812227, -0.025859145, - -0.05148526, 0.086644046, 0.03787271, -0.0034250675, -0.019165616, - -0.005690827, 0.020918358, 0.05323546, 0.033818915, 0.026739994, - -0.013163979, -0.030483335, 0.032351904, -0.019422172, -0.0033016996, - -0.0066977222, -0.020288289, 0.034541946, 0.015139073, -0.06587273, - -0.003915468, 0.05714826, 0.00745616, -0.0030008072, 0.0046111583, - 0.052764673, 0.015436499, -0.019936189, 0.05658421, -0.005871807, - 0.0072978614, 0.01073395, -0.076052584, -0.034799974, 0.0024071448, - 0.010623349, -0.053048395, 0.064779796, 0.03597192, -0.041865565, - 0.0360142, 0.010710421, 0.050750297, 0.0043065124, 0.008318024, - 0.024916142, -0.007197362, -0.050156053, -0.005895378, -0.07872276, - 6.680883e-4, -0.005051757, 0.03999219, 0.011185662, 0.050642174, - -0.05342443, 3.6445237e-4, -0.0720886, 0.025946923, 0.022226505, - 0.020289663, -0.08071814, -0.03221779, 0.02022963, -0.038752023, - 0.020464841, 0.0028575289, -0.019324824, -0.007601647, -0.03724045, - 0.018403297, 0.017066773, -0.0043993243, -0.016230531, 0.009505516, - 0.045191232, 0.00594512, 0.029162554, 0.006283335, 0.045724943, - -0.00939185, 0.013588925, -0.00883065, 0.037621897, 0.0050583133, - 0.04817772, -0.037544776, 0.033355065, -0.034327347, -0.022134436, - 0.04306441, -0.025110794, 0.014814374, 0.037701603, -0.055162936, - 0.085634105, 0.035425868, -0.0096393535, 0.018266324, 0.07412708, - -0.021291412, -0.011404453, -0.008186659, -0.0029483554, 0.06407927, - -0.0059728986, -0.07713763, -0.024677306, 0.03819198, -0.024744902, - 0.07141875, -0.03947104, 0.04150932, -0.011433701, 0.0022001849, - 0.010248443, 0.025955675, 0.02095096, 0.023218919, 0.06257347, - -0.0029484464, 0.019456744, -0.041424412, 0.047701843, -0.029964676, - -0.015358202, 0.013555242, -0.021119893, -0.05438824, -0.042495955, - -0.0024569626, -0.014136162, -0.009372937, -0.021869631, 0.006382876, - -0.08412641, 0.041431103, -0.052799586, -0.041970983, -0.014173426, - 0.023884028, 7.06504e-4, 0.002452336, -0.027389921, 0.003400775, - 0.016671548, -0.0077675525, -0.036273073, -0.0067593018, -0.00477693, - 0.04950083, 0.022189613, 0.010084575, 0.034907866, -4.242353e-4, - -0.053459443, -0.025086522, 0.011544205, 0.034138504, -0.008926183, - 0.037513893, 0.007596304, -0.008955697, 0.011810044, -0.016978454, - -0.016965387, 0.036313776, -0.005041787, 0.018159967, -0.0046653524, - -0.014894615, 0.01258552, -0.015278774, -0.0013382926, 0.0056974106, - 0.051148072, 0.032556556, -0.0071538426, -0.022751993, 0.014625867, - -0.0042535285, -0.01631975, 0.042913977, -0.017727735, -0.03108201, - 0.031390622, 0.015549276, 0.0011336678, 0.023405336, 0.036423095, - -0.037765186, 0.008909127, 0.05787896, 0.01472155, -0.005121136, - 0.002602993, -0.021744732, 0.056832664, -0.04196961, -0.046628863, - -0.018242255, 0.045128834, -0.008470239, 0.00386753, 0.013333216, - -0.0059454287, -0.058336407, -0.0019457277, 0.020369694, -0.01522386, - 0.04724351, -0.0012376631, -0.07312089, -0.093143806, 0.005307614, - -0.030549364, 0.015282453, -0.019600429, -0.008559648, -0.027159078, - -0.0560833, -0.046009727, -0.0673316, -0.02181704, 0.021093765, - 0.10584786, -0.05863564, 0.0074641886, 0.026429528, 0.023339313, - -0.025298383, -0.06597001, 0.013311166, -0.03486131, -0.009345133, - 0.006950557, 0.007987178, -0.020300172, 0.0012337746, 0.04027389, - 0.017379222, -0.0045252, -0.044232786, -0.035483576, -0.038695753, - 0.012082925, 0.018995719, -0.0437405, 0.0054149497, 0.03996274, - -0.0152077535, 0.0019847201, -0.034438837, -0.001540942, 0.037145805, - -0.03496339, 0.052217122, 0.0042532063, -0.033863973, 0.002151378, - 0.026109258, -0.04351084, 0.055538703, -7.9273514e-4, 0.041118726, - -0.03469326, 0.021728558, -0.049077608, -0.012737736, -0.032250755, - 0.02178963, 0.028819552, -0.022321722, 0.017239787, -0.0022794595, - 0.04484331, 0.007411713, 0.04405685, -0.024193566, -0.018984845, - 0.0062422515, 0.03565033, -0.0069103143, -0.004761827, -0.0096177375, - -0.03824814, 0.0076390323, -0.04586965, 0.0043991515, 0.0036616942, - -0.029854776, 0.0033760017, -0.03515116, 0.04423123, -0.019191962, - 0.029157799, -0.03713806, 0.015272263, 0.0024947561, -0.038017515, - 0.021564318, 0.05220344, -3.2970804e-4, 0.008324065, 0.020499514, - -0.020204257, -0.04279759, -0.0026210654, -0.008157538, 0.005456188, - -0.046820715, -0.024286354, 0.02683418, 0.08727587, -0.02977834, - -0.020132786, -0.021864634, 0.012916732, 0.056423556, -0.03765662, - 0.0070857685, 0.032766785, 0.0032570052, -8.7342656e-4, 0.03526988, - -0.0654561, 0.010064809, 0.009727336, 0.010785462, -0.0041695, - 0.015529051, 0.02887882, 0.054171726, 0.0330821, -0.03953592, - 0.02558583, 0.02210243, 0.01181548, -0.00682905, 0.029461924, - -0.05109149, -0.006947475, -0.035007145, -0.009165039, 0.013986233, - -0.0059582517, 0.019355405, 0.010997535, -0.03959342, 0.026000105, - 0.014746032, -0.0015592953, 0.025238749, 0.0012696728, 0.00558823, - 0.03430868, 0.004523612, 0.078519575, -0.034035366, -0.018539254, - 0.00415831, 0.033650447, 0.024638169, 0.06147707, 0.027225852, - -0.02888603, 0.018081034, -0.008086866, 0.028553484, 0.014453724, - -0.037177637, 0.008691293, 0.0016615116, -0.054316018, -0.019788504, - 0.004517277, -0.019516401, -0.0341265, -0.05660897, -0.0066118985, - 0.032253552, 0.011135376, -0.0024156026, 0.03596714, -0.030019216, - -0.055886738, 0.007549538, 0.049950436, 0.008018492, -0.0073601464, - -0.011672007, -0.038944356, -0.042951833, -0.061417524, 0.0491206, - 0.01450984, -0.03836055, -0.019144112, 0.015476905, -0.07425737, - -0.030877987, 0.017956356, 0.006334799, 0.007036605, -0.020082777, - -0.015082034, 0.01932342, -0.015848277, 0.0444348, -0.0021583945, - -0.035646237, 0.0054585845, -0.04517754, -0.023346005, -0.012356763, - 0.050321054, -0.013784458, 0.021587828, -0.013963777, 0.0317367, - -0.020693446, 0.022568332, -0.016561985, 0.0034482232, 0.010285275, - 0.020335257, 0.0120588215, 0.034494042, -0.0014899377, -0.06338765, - 0.034840267, 0.01248305, -0.05275488, -0.024366155, -0.00547733, - 0.0023713273, -7.229254e-4, 0.0028316823, 0.009453126, 0.008397841, - 0.0028738903, -0.008522318, 0.0038615298, 0.056301728, 0.0079138735, - 0.01944345, -0.0010137346, -0.0029393062, -0.020145178, 0.062569946, - -0.0072496356, -0.010483591, 0.01570805, -0.005071582, 0.0016576251, - -0.0011142144, -0.0050699566, 2.0474935e-4, -0.06468488, 0.010570761, - 0.015200956, -0.0069306814, -0.039114412, 0.044462442, 0.008109062, - 0.04143237, 0.01861659, -1.6228989e-4, 0.017006183, 0.079409055, - -0.013595467, 0.0014206202, -0.040355474, -0.017680991, 0.035533994, - -0.022257732, -0.035976373, 0.03811446, 0.0031329414, 0.027180426, - -0.034635477, -0.010765238, 0.009627374, -0.0254821, -0.044691835, - -0.005776344, -0.043353487, 0.06453252, -0.03463993, -0.054440875, - 0.00793659, 0.001851818, 0.007289452, 0.0044936696, -0.02078482, - -0.09179191, 0.034615062, 0.046322085, -0.019120628, -0.047359757, - -0.021540806, -0.0060715885, -0.018374352, 0.0061677326, -0.019005472, - 0.016110647, -0.0125972, 0.03345633, -0.043813437, 0.0423575, - 0.036434293, -0.052323304, -0.040754218, -0.01630886, 0.026848188, - -0.019464131, 0.018085081, -0.021594057, 0.014695094, 0.011096579, - 0.042529117, -0.04165196, 0.023994556, -0.023283392, 5.916739e-4, - -0.037383668, 0.0453803, 0.023748452, 0.035881374, -0.0035587891, - 0.055627517, 0.039172895, 0.017484546, -0.019297818, 0.03773685, - 0.016659439, 0.021157267, -0.0070531536, -0.06504766, 0.01517141, - 0.014577142, -0.026709821, -0.03623527, -0.03868232, 0.030137803, - 0.0139768915, 0.0043992624, -0.0042950534, -0.052148845, 0.043629434, - 0.031005578, 0.008325675, 0.040021274, -0.015668457, 0.012233099, - 0.010841976, -0.013738474, 0.0487491, -0.009034503, -0.0023352208, - -0.012010676, 0.009573032, -0.021013267, 0.022546662, -0.062186982, - 0.02337954, -0.03858744, 0.0432105, 0.007854067, 0.041670386, - -0.0049428833, -0.083161965, -0.03384985, -0.0030568272, -0.03587426, - -0.021935148, 0.015015497, -0.012019925, 0.035634708, 0.039095715, - -0.07457421, -0.016875474, -0.015640553, 0.017321488, -0.0029592726, - 0.009238837, 0.06390917, -0.0026218416, -6.835356e-4, -0.016973017, - -0.0015069456, -0.021034691, 0.01972499, -0.009958768, -0.0109581305, - -0.0055141007, -0.05768847, 0.010643744, -0.00648851, -0.061495136, - 0.031583603, 0.012913241, 0.06951283, -0.011561801, -0.007506295, - 0.02899643, 9.4228203e-4, -0.028865583, 0.0346313, -0.01164196, - 0.020751076, 0.004129377, 0.006296927, 0.011572718, -0.021001417, - 0.03709495, -0.036383633, -0.013844115, 0.013332058, -0.009099136, - 0.0037906726, -0.008478411, 0.09126605, -0.005133004, -0.001555624, - 0.0459156, 0.03860487, 0.012521927, -0.020087428, -0.07348189, - -0.019297594, 0.039086033, -0.047054116, -0.019331608, 0.022534085, - -0.05963891, 0.011783239, -0.040572546, -0.031506788, 0.014162736, - 7.4196316e-4, 0.0059828684, -0.023584552, 0.024277363, -0.054236114, - 0.03475151, 0.038327876, 0.031841908, 0.0012194692, 0.008659096, - -0.016675992, 0.001021391, 0.0020167478, 0.002509864, -0.02481399, - -0.02217329, 0.036304325, 0.04963404, 0.046870597, -0.06019991, - 0.01336565, -0.004851661, -0.03489755, 0.04729251, -0.03830622, - -0.024486493, -0.045635723, -0.0042926203, -0.030639146, -0.0018011503, - -0.04533683, -0.0043015727, -0.023936955, -0.004870427, -0.0395666, - -0.033050362, 0.049638752, 0.027853748, 0.02272855, 0.010310456, - 0.0072324523, -0.0030820323, 0.03059429, 0.013578194, -0.04372617, - 0.0041706986, -0.009641636, -0.02138067, -0.026308158, 0.0010173207, - 0.06497425, -0.04069, -0.011652354, -0.01796227, 0.0256529, 0.027139513, - 0.061670527, 0.039550554, -0.0048893667, -0.016710078, -0.0065938695, - -0.03263283, 0.0120111, -0.062358215, -0.010486586, 0.010816658, - 0.00858245, -0.0055227317, -0.0010813999, 0.038359415, 0.08893206, - 0.023278015, 0.01727489, -0.05129605, 0.053022746, 0.02751662, - -0.0108506745, 9.509521e-4, 0.040324476, -0.012980644, 0.015136923, - 0.0418692, -0.009263358, -0.009165134, -0.031235429, -0.042494975, - -0.017850805, 0.019099612, -0.002886953, -0.019901985, 0.060020857, - -0.0370091, -0.0026914445, 0.021523563, -0.031388536, 0.060512118, - -0.021544997, -0.020849898, -0.010600355, -0.017036572, 0.0039085755, - -0.014579429, -0.026811512, -0.009343194, 0.0151298195, 0.0209617, - 0.007182716, -0.0071170703, -0.028705718, -0.019561235, -0.020191353, - 0.021113269, 0.069370955, 0.06869965, -0.007030315, -0.047085803, - 0.04426716, 0.025580524, -0.0046253204, 0.021706121, 0.0045192065, - -0.015099823, -0.0066465465, -0.008056484, -0.078108646, 0.016324617, - 0.0032534192, -0.012245666, 0.009066586, -0.010375931, 0.026287567, - 0.058824465, -0.015863292, 0.0020874788, -0.017291877, -0.0076693003, - 0.07134295, 0.030990928, 0.053648792, 0.0027721312, 0.03953631, - 0.007965673, -0.024358682, -0.05988079, 0.04900883, 0.009736274, - 0.058827497, 0.014260163, 0.036455877, 0.028388603, 0.008166474, - 0.0033600796, -0.024989165, -0.041118234, -0.034778465, 0.02752244, - -0.025757244, 0.010656707, -0.042329375, 0.0075357854, -0.016080309, - -0.015125523, -0.012381454, 0.050282404, 0.004226183, -0.011792229, - 0.0053973333, 0.03334926, 0.0429011, 0.004534426, -0.0377704, - -0.029496282, -0.028989535, -0.010808205, -0.0399425, -0.0021429078, - -0.035839982, 0.002985745, -0.010765111, -0.053333957, 0.07985865, - 0.042379737, -0.0013997183, 0.019088365, 0.026457394, -0.012224132, - 0.01446094, 0.056669176, 0.012276343, -0.045534216, 0.021831876, - -0.02131452, 0.0012879373, -0.045940205, 0.042168822, 0.070491426, - -0.059512936, -0.015604128, -0.02785499, 0.021979172, -0.0053997654, - -0.02650231, -0.017834738, -0.02171323, 0.0015216328, 0.05324188, - -0.01988768, -7.1591476e-4, 0.04722816, -0.01212235, -0.076357715, - -0.029222155, -0.02228662, 0.02361717, -0.029710107, -0.014301417, - 0.0063712234, 0.055394422, -0.01662598, -0.034786444, -0.0032992803, - 0.0072903037, -0.035270244, 0.020155787, 0.016296715, -0.030881133, - 0.038287036, -0.020017365, -0.001285683, 0.027986938, 0.025560297, - 0.041281726, -0.026515784, -0.021560498, 0.04734415, 0.023668265, - -0.043656655, -0.0052940566, -0.010588841, -0.016857892, 0.05028172, - -0.029163426, 0.039180826, 0.03425062, 0.014945011, 0.0056988224, - 0.018570269, 0.0048461757, -0.027045928, -0.0262451, 0.05954507, - 0.048547566, -0.022359654, 0.025599508, -0.04233365, 0.0022226055, - -0.026284473, -0.037359364, 0.04873724, 0.018947246, -0.012075221, - -0.04263442, -0.022677308, -0.04709056, -0.013842235, 0.027629469, - 0.03457055, 0.004469127, -0.021682015, -0.012307364, -0.011939736, - 0.010292643, -0.0100207925, -0.013475466, -0.026759945, -0.030642487, - -0.022151183, -0.0186188, 0.0026640152, 0.053220414, -0.025812231, - -0.036732998, -0.014670292, 0.011214214, -0.033120085, 0.027367417, - -0.022915097, -0.038027313, 0.03850732, 0.028658282, 0.039420985, - -1.3239314e-4, 0.009641998, -0.01844678, 0.041188113, 0.00840331, - -0.001956899, -0.006045229, 0.054148145, 0.048790585 + "paletteEmbedding" : [ + 0.004411244, + 0.008407737, + 0.030684348, + -0.002818464, + -0.030339492, + 0.035855338, + -0.05314198, + -0.025562141, + -0.03355045, + 0.026147213, + -0.018617256, + 0.019553808, + -0.016157566, + -0.0108797755, + -0.0028966612, + 0.02033712, + 0.01607289, + 0.018881781, + -0.027547617, + 0.03300848, + 0.03840192, + 0.037556298, + -0.02386242, + -0.040723644, + -0.053941775, + -0.054588754, + -0.029235967, + 0.0068400335, + -0.032489885, + 0.028879825, + 0.007495602, + 0.025145037, + 0.011183818, + 0.015381246, + 0.028398305, + -0.002793333, + -0.03894164, + 0.0071230764, + -0.052021135, + 0.017176937, + -0.015585121, + 9.1437885E-4, + 0.04139331, + -0.047498092, + 0.026252842, + -0.053980965, + 0.009042788, + -0.014115676, + -0.025027718, + 0.019323613, + 0.012556447, + 1.0306661E-4, + 0.041213516, + -0.048176806, + 0.02289452, + -0.011223817, + -0.008596184, + -0.0040427623, + 0.012127884, + 0.015014383, + -0.025246046, + 0.0037716299, + 0.036591746, + 0.03635673, + -0.0044813044, + -0.028046317, + 0.056656893, + -0.04457883, + -0.039940435, + -0.010385502, + 0.023701748, + 0.014289917, + -0.010157727, + 0.005404411, + -0.039650943, + -0.0067529855, + -0.019385608, + -0.04368489, + 0.015450958, + 0.022080578, + -0.013525489, + 0.015087991, + -0.015681611, + -0.013664383, + -0.023592306, + 0.027395232, + 0.035181127, + 0.011117549, + 8.220418E-4, + 0.030237876, + 0.001617129, + 0.008945068, + -0.011945871, + 0.009977531, + 0.042498346, + 0.007937932, + -0.0162459, + -0.031683065, + 0.06748138, + 0.002374966, + -0.03960646, + 0.021579163, + 0.07531513, + -0.015599989, + -0.05418672, + -0.004468646, + -5.1555736E-4, + -0.024075003, + -0.0019997337, + 0.05682822, + 0.0022660722, + 7.395998E-4, + -0.02167528, + 0.048430342, + 0.018063435, + 0.0043048635, + -0.033221673, + 0.03840524, + 0.057696473, + 0.015188109, + -0.01940775, + 0.020844076, + -0.018856974, + 0.002011377, + 0.020862216, + -0.04863674, + -0.01562532, + -0.047004472, + -0.07666876, + -0.02251294, + 0.009956675, + 0.016830692, + 0.014322876, + 0.020711, + 0.0048420886, + 0.0031526834, + -0.036805727, + 0.025913963, + 0.03069592, + 0.020205196, + 0.026971584, + -0.046980478, + -0.009245361, + 0.04365513, + 0.03435485, + 0.024702076, + 0.010865996, + 0.049749125, + -0.011559739, + -0.021110056, + -0.020135371, + 0.0197034, + -0.05254262, + -0.037455823, + -0.046831448, + -0.09415934, + -0.04497221, + 0.050331414, + 0.017379794, + -0.021692038, + -0.0069329785, + -0.039735902, + 0.064009726, + 0.014990213, + -9.762158E-4, + -0.0019112505, + -0.008387787, + 0.04530536, + 0.032474317, + 0.0022740636, + 0.030693784, + 0.0011337644, + 0.008987554, + 0.026779842, + 0.010604062, + 0.056317538, + 0.024764186, + 6.979035E-4, + -0.016724609, + 0.015665166, + -0.05815576, + 0.013983763, + -0.00719849, + 0.033226505, + -0.02930459, + -0.0016852178, + 0.054671284, + 0.045805607, + -0.001741337, + -0.007936768, + -0.013641384, + -0.010016893, + 0.042944357, + -0.014444394, + -0.041061655, + -0.013831398, + 0.015049599, + 0.019290809, + -0.017810142, + -0.03289345, + -0.052373808, + 0.010251582, + -0.041725732, + -0.03145999, + 0.022817641, + -0.036754988, + 0.0049870526, + -0.011541677, + 0.054103438, + 0.019223789, + 0.008265072, + 0.02759646, + 0.005388751, + 0.007109618, + 0.011027409, + 0.032474898, + 0.084822774, + -0.02684221, + -0.0021831058, + 0.029458195, + -0.013322708, + 0.080853224, + -0.021357162, + -0.07385928, + 0.014235512, + 0.029167563, + 0.006654877, + -0.043246396, + 0.020434398, + -0.025803214, + -0.033506926, + 0.019546967, + 0.044522528, + -0.015749823, + -0.026853874, + -0.0046509737, + -0.027099725, + -2.2638924E-4, + 0.0067455457, + 0.03141581, + 0.03549737, + 0.048465915, + -0.024937488, + -0.016205488, + -0.018195713, + -0.021108806, + -0.016342659, + 0.0190162, + 0.020230299, + -0.06668796, + -0.059286904, + 0.053138673, + 0.06871483, + -0.06891225, + -0.0050632097, + 0.0039663985, + -0.024963552, + -0.0044297646, + -0.006851541, + 0.07446366, + 0.008689693, + -0.014025694, + 0.009579596, + 0.019489525, + -0.002173325, + -0.010902769, + -0.01854365, + 0.04896479, + 0.013513926, + 0.019856814, + 0.041803032, + 0.03150682, + -0.031139145, + -0.04742572, + -9.383674E-4, + -1.9928585E-4, + -0.0071811727, + 0.0064371843, + -0.0127050625, + -0.041280307, + -0.049838252, + 0.018353004, + -2.693388E-5, + -0.05904073, + 0.04485361, + 0.03072398, + 0.018833306, + -0.03533108, + 0.05370084, + -0.035745252, + 0.056454338, + -0.0071193604, + -0.025094954, + 0.02501706, + 0.07997049, + 0.03850337, + -0.049646992, + -0.014520903, + 0.009802542, + -0.00579718, + 0.02059247, + 0.0177214, + 0.013486713, + 7.872442E-4, + -0.008625769, + 0.03204938, + -0.00911922, + -0.089325555, + -0.056437198, + -0.06222729, + -0.061533984, + 0.02129048, + -0.014273462, + -0.00274768, + 0.02204641, + 0.030469857, + -0.023605797, + -0.041535784, + -0.012768174, + 0.07994019, + 0.02698997, + 0.0076049613, + -0.02793874, + 0.0062411195, + -0.019462341, + 0.0018871196, + 0.014381778, + 0.009416104, + 0.036779933, + -0.03082554, + 0.02857515, + 0.041573577, + -0.03517025, + -0.032608338, + -0.033852946, + -0.029082473, + 0.0153254, + -0.059435878, + -0.029871935, + -0.035326004, + -0.007742231, + -0.01740561, + -0.016083136, + -0.07971471, + -0.011681581, + 0.0056333207, + -0.0071687745, + 0.026493689, + -0.025802521, + 0.013925121, + -0.019658566, + -0.058862567, + 0.011715513, + -0.03932007, + -0.007225275, + -0.0023612669, + -0.03945941, + -0.022743767, + -0.026993059, + 0.040647183, + 0.01295718, + 0.043579824, + 0.009610041, + -0.05143098, + -0.0040873163, + 0.012319173, + 0.0700971, + -0.01774649, + 0.008511149, + 0.06488096, + -0.04536687, + -0.039282486, + 0.05266257, + -0.0019017492, + 0.018918637, + -0.037889432, + -0.011822494, + -0.023656074, + 0.021561993, + 0.021677684, + 0.0132640805, + 0.05205447, + -0.0022444203, + -0.026667852, + 0.01832362, + -0.01833871, + 0.04571433, + -0.035258833, + -0.07320231, + 0.03986265, + -0.026343366, + -0.034256287, + -0.002482138, + 0.040989917, + -0.07258539, + 0.013633211, + -0.0041323113, + 0.0066309636, + -0.026654873, + 0.087109156, + 0.031170493, + -0.023714142, + 0.005680659, + -0.014408079, + -0.011546456, + 0.023989974, + -0.0029125453, + 0.020678936, + 0.0025740964, + 0.05004987, + 0.0021910542, + 1.8917794E-4, + 0.042667974, + -0.010161552, + 0.0065068593, + 0.02030935, + 0.017030736, + -0.028510235, + -0.014055675, + 0.04487078, + -0.007177881, + 0.03401936, + 0.030149432, + -0.029280683, + -0.006571021, + -0.04015261, + -0.054975238, + -6.5874547E-4, + -0.046414897, + 0.006602691, + -0.016386189, + -0.02909366, + -0.034004748, + 0.0030095722, + -0.032201227, + 0.013727666, + -0.0052709356, + 0.0073867925, + 0.04951477, + -0.038603883, + -9.6687104E-4, + 8.091545E-5, + -0.00838231, + 0.0076183346, + 0.043235704, + -5.216059E-4, + -0.03649566, + -0.035338957, + 0.022305844, + -0.013369661, + 0.008107425, + 0.04658954, + -0.037236076, + -0.001439275, + -0.02264168, + 0.005512048, + 0.0023357372, + -0.042300288, + 0.011568508, + 0.008566186, + 0.0091394195, + -0.04128312, + 0.007836116, + 0.020951308, + -0.026521748, + -3.8762094E-4, + -0.035752505, + 0.003950625, + -0.039273445, + 0.043634064, + 0.007615927, + 0.00624817, + 0.04126975, + -0.02076726, + 0.0082270615, + 0.013988548, + -0.002261129, + 0.06999636, + 0.020251367, + 0.019852135, + 0.029242834, + -1.3815788E-4, + -0.05330429, + -0.01703977, + 0.032778446, + -0.08349097, + -0.004452215, + 0.022981737, + 0.009896496, + 0.039101012, + 0.015748857, + 0.016253598, + 0.0049501476, + -0.03704907, + -0.0047301273, + 0.002733536, + 0.015294704, + -0.029894145, + 0.035468813, + -0.0015875133, + -0.030963456, + 0.038899723, + -0.057081204, + 0.030580953, + -0.0054124943, + 0.010942173, + 0.006258435, + 0.0072911833, + -0.034454133, + 0.0017904241, + -0.018659865, + 0.047774624, + 0.027315129, + -0.038990293, + 0.0077403667, + 0.047857065, + -0.021912001, + -0.0032834099, + -0.054169886, + 0.016908301, + 0.03285661, + 0.052707862, + 0.017880812, + -0.031105451, + -0.020342639, + 0.03530608, + 0.009749219, + -0.034646213, + -0.0041269907, + 0.06712586, + -0.0096684825, + -0.00916022, + -0.013018347, + 0.0032497845, + -0.0065267533, + -0.017284263, + -0.009703885, + 0.0043312977, + -0.052056387, + 0.0064357705, + 0.056996614, + -0.021805637, + -0.036771383, + -0.027685577, + -0.055725586, + -0.023819465, + 0.024918647, + -0.021147592, + -0.00936937, + 0.0051493654, + -0.031554855, + -0.01562993, + -0.07047728, + 0.010694169, + -0.06946483, + -6.584185E-4, + 0.0027620092, + 0.003144569, + 0.038860355, + 0.011776218, + -0.02636602, + 0.05213026, + 0.024816645, + 0.009171579, + 0.045094043, + 0.023244048, + -0.004721916, + -0.06434678, + 0.0018649342, + 0.004110027, + -0.0023791282, + -0.01030586, + -0.006731832, + -0.009100969, + -0.026261967, + -0.011532465, + -0.052874044, + -0.012309742, + -0.018466445, + 0.018222123, + 0.043729205, + -0.026084745, + 0.026057556, + -0.0024351496, + 0.042765155, + -0.002331525, + -0.07854372, + 0.025553253, + 0.020951519, + -0.0010460628, + -0.04616238, + 0.08519408, + -0.051048197, + -0.030507315, + 0.02661276, + -0.0019974143, + 7.038684E-4, + -8.6063717E-4, + 5.092491E-4, + -0.020757487, + 0.011157779, + 0.013097581, + -0.014743356, + 0.002876481, + -0.007592618, + 0.009476938, + -0.06505837, + -0.014158283, + 0.02635881, + -0.017343944, + 0.017929884, + -0.020062653, + -0.0145159485, + 0.019842375, + 0.013712234, + 0.0038548028, + 0.0073442142, + 0.07201091, + 0.03837792, + -0.07979161, + -0.008212355, + -0.022243856, + -0.014040985, + 0.015945395, + -0.0053832545, + 0.022636168, + -0.010085112, + -0.01861005, + 0.019094618, + -0.009223338, + 0.019866535, + -0.04699874, + -0.00519432, + -0.001039919, + -0.052223142, + 0.032934014, + -0.03087977, + 0.027517477, + 0.033808224, + -0.03457173, + 0.002310325, + -0.016603703, + -0.01626288, + 0.004591438, + 0.0141119035, + 0.0157375, + 0.08148114, + 0.033555757, + -0.039408907, + 0.02669585, + 0.03347711, + -0.001884329, + 0.02138625, + -0.044258516, + -0.016951457, + 0.0015911161, + 0.01056239, + -0.040463798, + -0.026149057, + -0.027886048, + 0.058300164, + 0.012458872, + 0.028719163, + 0.033404842, + 0.01201061, + -0.008167986, + 0.014193185, + -0.0012418095, + 0.012831096, + 0.04600429, + -0.0039972244, + -0.009164601, + -0.018617013, + 0.024188545, + 0.010320304, + 0.0050674826, + -0.009943624, + -0.018747658, + 0.01607597, + -0.007002782, + 0.024489738, + -0.058199495, + -0.03661357, + 0.040597025, + 0.013739324, + -0.020474328, + 0.013414095, + -0.041151263, + -0.004035308, + -0.004932098, + -0.021512998, + 0.03668945, + 8.0232415E-4, + 0.049518988, + -0.02042066, + -0.026016083, + -0.017402133, + 0.029033186, + -0.030124454, + -0.00393207, + -0.013575391, + 0.023750052, + -0.01957717, + -0.0072680595, + -0.015371522, + -0.04928791, + 0.0152076, + -0.02342762, + -0.018376045, + -0.007787091, + 0.03421454, + -0.05163012, + -0.0150021175, + 0.032387655, + 0.019466445, + -0.048164815, + 0.0025223142, + -0.01955276, + -0.018186823, + 0.03776624, + 0.05461382, + 0.029998226, + -0.023242908, + -0.011691248, + 0.011748988, + -0.018835232, + -0.012103721, + 0.027003534, + 0.07396042, + 8.997E-4, + 0.020734577, + -0.052552544, + -0.041514114, + 0.03152566, + -0.020199353, + 0.002773453, + 0.01956778, + 0.058973588, + 0.036932733, + -0.021785557, + -0.024618275, + -0.019891243, + 0.038202252, + -0.0023740192, + -0.11028972, + 0.011326688, + 0.025983488, + -0.06255976, + -0.012791973, + 0.050874174, + -0.045218606, + 0.02491321, + -0.028089939, + -0.029709091, + 0.067003936, + 0.007381936, + 0.008982798, + 0.014299419, + -0.0065309904, + 0.015342435, + -0.014357095, + 0.0443783, + -0.021479983, + 0.014355083, + 3.2000447E-4, + -0.009073088, + 0.0070917453, + 0.02112535, + -0.005646091, + 0.001821816, + 0.039747212, + 0.042560462, + 0.0068966355, + -0.021582624, + 0.019262584, + 0.0010900116, + 0.039410338, + -0.0066934335, + -0.02952713, + 0.0773809, + -0.008848393, + -0.008542407, + -0.010689817, + 0.013449169, + 0.0058783884, + 0.011997828, + -0.012249786, + -0.008858155, + 0.008986034, + 0.0521588, + 0.031699438, + 0.031555656, + 0.017414879, + 0.0618113, + 0.0035653021, + -0.036856193, + -0.029565517, + 7.103697E-4, + -0.058965888, + -0.03690581, + -0.011180424, + -0.010578472, + 0.026224881, + 0.020097662, + 0.012172705, + -0.042221222, + 0.013359713, + 0.022231583, + 0.029061722, + 0.00760932, + 0.021337176, + 0.056366775, + -0.028500305, + 0.045615986, + 0.019026533, + -0.0058875023, + 0.00659144, + 0.035623923, + -0.018759876, + 0.00583805, + 0.0336486, + -0.07471616, + 0.046814244, + 0.009198689, + 0.023180941, + -0.018326716, + 0.03888155, + 0.029157707, + -0.015826495, + -0.03183342, + -0.056319438, + -0.00711709, + 0.016119154, + 0.043046754, + 0.009873383, + -0.009755241, + -0.037302155, + -0.028318614, + 0.009602984, + -0.014301827, + 0.009599729, + 0.010485837, + -0.036767665, + 0.010213852, + 0.041107375, + -0.018404689, + -0.021050317, + -0.038870357, + -0.0025069166, + 0.007571876, + -0.03606759, + -0.035641994, + -0.013097922, + -0.05884597, + -0.0028818666, + -0.03502274, + -0.0497677, + 0.0060109342, + -0.0518943, + 0.0072041494, + -0.04409508, + 0.027137415, + -0.04007553, + 0.018302502, + -0.0854899, + 0.0079851495, + -0.03599704, + -0.037752226, + -0.008122761, + -0.009204732, + -0.031140082, + -0.01326708, + 0.02201309, + -0.021906927, + -0.02780029, + -0.008475691, + 0.00269809, + 0.008926977, + 0.006123198, + 0.019050024, + 0.03385731, + -0.034643132, + -0.040038094, + 0.005650909, + 9.6846017E-4, + -0.09589266, + 0.005732981, + 0.011423261, + 0.008186528, + 0.048594534, + -0.03780403, + -0.06932041, + 0.022931958, + 0.002141947, + -0.014955408, + 0.007051987, + 0.06079555, + 7.0839387E-4, + -0.030020371, + 0.020312538, + -0.007617588, + 0.013419312, + 0.009380523, + -0.025162136, + -0.01171585, + -0.03930586, + -0.015046233, + 0.05615734, + 0.061239883, + -0.056175023, + -0.039099593, + 0.04667849, + 0.0057669827, + 0.014092801, + -0.013070956, + 0.013130918, + 0.012787237, + -0.0060224123, + -0.043190256, + -0.017833948, + 0.023518942, + -0.052840013, + 0.008507188, + -0.027299955, + 0.05236288, + 0.019217763, + -0.042433407, + -0.018560745, + 0.035178997, + 0.00870488, + -0.045353424, + 0.057951387, + 0.016435735, + -0.029746853, + 0.025994757, + -0.0012184138, + 0.008218073, + -0.013413127, + -0.004619034, + -0.05008518, + 0.00469962, + -0.04581056, + 0.0016532481, + -0.058245074, + 0.009533408, + 0.020485332, + 0.054591704, + 0.009284555, + 0.032423586, + -0.008069927, + -0.049801946, + 0.027832156, + 0.025830755, + -0.019181745, + -0.032177605, + 0.010889681, + -0.06617346, + -3.1205526E-4, + 0.03828706, + 0.053759344, + 0.024436394, + 0.009220263, + 0.023311062, + -0.02660579, + -0.01054101, + 0.05325168, + -0.004453759, + -0.02252247, + -0.023143142, + -0.032923352, + 0.07938876, + -0.010298174, + 4.7519716E-4, + -0.02573468, + -0.014824154, + 0.005776982, + -0.031446774, + 0.008415375, + 1.6077165E-4, + 0.029959578, + -0.021638548, + -0.041743103, + -0.067527086, + 0.025957696, + -0.03463079, + 0.002718707, + -0.05712445, + -0.018986458, + -0.07872377, + 0.023764962, + 0.022856304, + 0.052580863, + -0.016897716, + 0.07771423, + 0.023200767, + 0.0023782814, + 0.06492634, + -0.015386249, + 0.060348675, + -0.01759402 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json index 7b109a3d4..f4709eabc 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json @@ -1,1353 +1,5260 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T14:25:44.012299Z", - "id": "9itqtlx6", - "document": { - "modifiedTime": "1967-05-04T01:51:46Z", - "display": { - "id": "9itqtlx6", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-14T14:37:56.433940Z", + "id" : "vcokkolz", + "document" : { + "modifiedTime" : "2040-09-05T22:54:29Z", + "display" : { + "id" : "vcokkolz", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/531.jpg/info.json", - "credit": "Credit line: 4ufJmPopI", - "linkText": "Link text: ErZazhSpDE", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/531.jpg/info.json", - "credit": "Credit line: 4ufJmPopI", - "linkText": "Link text: ErZazhSpDE", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#00A6CA", - "source": { - "id": "3u1l8cpk", - "title": "title-bRK4Jrp07f", - "contributors": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#0FEC62", + "source" : { + "id" : "mpasnruz", + "title" : "title-gjT48tIM66", + "contributors" : [ { - "agent": { - "label": "Edward Said", - "type": "Person" + "agent" : { + "label" : "Edward Said", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "9itqtlx6", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Edward Said"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "3u1l8cpk", - "sourceIdentifier.value": "5bQiKsGoOl", - "identifiers.value": ["5bQiKsGoOl"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-bRK4Jrp07f" + "query" : { + "id" : "vcokkolz", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Edward Said" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mpasnruz", + "sourceIdentifier.value" : "1DWt9lfP25", + "identifiers.value" : [ + "1DWt9lfP25" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-gjT48tIM66" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ "{\"label\":\"Edward Said\",\"type\":\"Person\"}" ], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": ["Edward Said"], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.0010852943, -0.021667315, 0.01690695, 0.014549637, -0.013631038, - -0.016027676, 0.011598962, -0.008317624, 0.008956158, -0.0066472315, - -0.031194773, 0.021507867, 0.023264116, -0.01311601, 0.012157178, - -4.770158e-4, 0.0030903362, -0.017684786, 0.012492457, 0.0108020725, - -0.015514904, 0.010808751, -0.021256825, 0.006726394, 0.0035019447, - -0.019758793, -0.0031710027, 0.005766197, 0.0016181779, -0.01174776, - -0.023495808, 0.0130386045, -0.013467266, 0.013913177, 0.013033477, - 0.0021553386, -0.005046163, -7.0837815e-4, 0.013126193, -0.031485025, - 0.008021786, -0.03515433, 0.015675744, 0.007199163, -0.014951426, - -0.0068297125, 0.0027080548, 0.033773072, -0.0072359703, 0.027379913, - -0.009580155, 0.023218816, -0.011954844, -0.01829186, -0.011817811, - 1.6652595e-4, 1.8725611e-4, -0.015824761, -0.018840386, 0.028193353, - 0.00784056, -0.0016307537, -0.001644262, -0.0013511035, -0.019014282, - -0.0012847319, 4.2790438e-5, 0.0088858465, -0.0050976267, 0.016418276, - 0.006733623, -0.006401579, 0.021856863, 0.026114408, -0.009701703, - 0.007933011, 0.008159526, 0.0067866878, -0.02676106, -0.0031063668, - -0.0036067727, -0.020234719, 0.022636583, -0.028436985, 0.0049020695, - -0.003707783, -0.006613026, -0.007870078, -0.01532755, -0.009123951, - 0.012887459, -0.034223624, 0.012009243, -0.024163602, -0.0057611903, - -2.793275e-4, -0.014687517, 0.01613925, 0.042663325, -0.027397612, - 0.025044395, 0.0015710017, 0.01832087, -0.016689686, 0.012254396, - 0.008994689, -0.0075176074, 0.0022307893, 0.008816201, -0.022273604, - -0.007934689, 0.0027687957, 0.00168754, -0.028586898, -0.00409945, - 0.01139882, -0.023603195, -0.0027365435, 0.03267803, -0.0018131748, - 0.018961787, 0.00259007, 0.017464899, 0.011023242, 0.019690005, - 0.014849653, -0.0063291686, -0.022162613, 0.009142027, 7.2145596e-4, - -0.009278537, -0.013136398, 0.026279964, -0.010258059, 0.0012520399, - 0.019190202, 0.011886252, -0.031293195, -0.0039806254, -0.017455352, - -0.020993484, 0.006621969, -0.0022216982, -0.024278302, -0.014718111, - -0.008226077, -0.010337083, 0.0069485754, 0.009084137, -0.004039391, - -0.013986676, 0.017159317, -0.010419974, 0.014723552, 0.0123374155, - 0.005101417, -0.010118051, 0.03163059, 0.008908744, -0.013559571, - 0.0029524034, 0.013673656, 7.4354594e-4, 0.0251633, 0.008394612, - -0.022866378, 0.023116546, 0.009671211, 0.013597461, 0.014949527, - -0.036781967, 3.0583082e-4, 0.021175506, 0.020992976, -0.02560687, - -0.009123405, 0.017743535, 0.009645393, -0.015455096, 0.018672276, - -0.005531806, -0.018450638, 0.014238285, 0.029403936, -0.03155056, - -0.015581643, -0.03372405, -0.01639022, 0.011302909, -0.012216239, - -0.010504201, 0.014625399, 0.0051606502, -0.003631315, 0.0075827977, - 0.013594751, 0.014060807, -0.024018243, -0.01688671, 0.008491005, - 0.014871009, -3.5879234e-4, -0.011910083, 0.02955578, -0.009104275, - -0.0068696663, -0.012795209, -0.0057338662, 0.013986102, -0.029142579, - 0.018338295, 0.0015387057, -0.00764274, 0.008485173, 0.006802979, - -0.027781334, 0.019894151, 0.01258036, 0.025783328, -0.015313415, - -0.004970512, -0.011006099, -0.0030981905, 0.013790014, 0.038382553, - -0.030143103, 0.042307876, -0.032969326, -0.011391864, 0.0012017009, - -0.021975143, -0.004367703, 0.014615192, -0.0019741685, -0.019607019, - -0.027541734, -0.014848635, -0.011510248, -0.024682108, 0.0072886352, - -0.021650637, -0.03561078, 0.023808913, 0.004351873, -0.011086417, - -0.017714605, 0.020525852, -0.020789597, 0.008460511, 0.029476866, - 0.010113639, 0.0010383782, -1.5843732e-4, -0.0024580245, -0.01525338, - 0.00357589, -0.0011312936, -0.023144597, 0.013080818, 4.7990467e-4, - 0.014104215, -0.030293258, -0.02490638, -0.005410215, -0.0027575355, - -0.0043772976, 0.02034674, 0.01562541, -0.013369435, 7.446662e-4, - -0.0056646774, -0.027578965, -0.040928185, -0.01354171, -0.012247352, - -0.0026937404, -0.008943213, 0.0035474482, -0.027727518, -0.003736364, - -0.005208029, -0.004822431, 0.013807444, -0.004969971, -0.004797066, - -3.022943e-5, -0.0168338, -0.0027519655, 0.008483039, -0.010058758, - 0.022657914, 9.2543045e-4, -0.011699376, -0.0010945069, -0.0026896917, - 0.013860613, 0.02867123, 0.009166338, -0.00864664, 0.007002721, - -0.007819289, -0.007799015, -0.024867008, 0.034701314, 3.3412792e-4, - 0.009521921, -0.028333478, -0.020928055, -0.011727801, -0.009657731, - -0.009733748, 0.0065598674, -0.019051982, -0.014784304, 0.03423683, - -0.01041167, -0.0121122, -0.0061603617, 0.026874376, -0.004140988, - -0.005123499, 0.0022135293, 0.023373514, -0.0019970103, 0.011249798, - -0.0062363124, -0.011852433, 0.001753792, -4.3373942e-4, 0.002851331, - -0.020741481, 0.0029060137, -0.009215714, -0.010921083, 0.0053119347, - 0.020939974, 0.01364565, 0.015968634, 0.02114003, 0.008592283, - -0.010340739, 0.002082343, 0.016773587, 0.0014952645, 0.009689464, - 0.013748226, 0.014455004, 0.00392152, 0.034898814, -0.0038347004, - -0.020298583, 0.012601326, 0.0147843575, 0.0016225762, 0.018504415, - -0.012191984, 0.010321533, 0.018241603, 0.011277701, 0.017929478, - 0.004407171, -0.012080304, 0.013137121, -0.010457575, -0.0030484395, - 0.0094801, -0.016367503, -0.026235009, 0.0028931994, -0.014572609, - 0.015569719, 0.029165076, -0.009445795, -0.034595843, 0.005811745, - 0.004130935, 0.005148779, 0.030489456, 0.0053620785, 0.0057700262, - 0.018111352, 0.036229372, 0.013599846, 0.008688945, -0.004262811, - 0.013300253, -0.010152568, -0.0018339542, -0.0020919228, 0.013416191, - 0.03408347, 0.023313425, 0.01967383, -0.001958372, 0.017820904, - -0.027064366, -0.013207984, -0.015878418, -0.0141726555, 0.016903434, - -0.022068685, 0.019780189, -5.755719e-5, -0.008618686, 0.016285822, - 0.00561087, 0.018305771, -0.0049291435, 0.0028017312, 0.0027244086, - -0.027770972, -0.0054086572, -0.030832782, -0.006056833, 0.014275853, - -0.003739494, -0.013045503, -0.0019806458, 0.0020183544, 0.010365386, - -0.021754092, 0.016781637, 0.01206103, 0.012577014, -0.022319827, - 0.012376961, 0.004435054, -0.0061267596, 0.012607628, 0.018145142, - -0.0067615258, -0.015289337, 0.0063437475, 0.0056364136, -0.019052433, - 0.0267805, -0.011304082, 0.024009923, 0.0068097995, -0.00858662, - 0.014889531, -0.043151896, 0.0026070334, 0.009249035, -3.012468e-4, - -0.013975912, 0.012732998, -0.021097692, 0.017406952, -0.013313354, - 0.0226719, -0.026690092, -0.0023322478, 0.007129346, 0.008118118, - -0.008374302, 0.017505765, 0.015485182, -3.3579415e-4, -0.009073239, - 0.0111227445, -0.026002077, -0.013941283, 0.024323275, 0.011586349, - 0.0069611724, -0.012409191, -0.0036886851, 0.008085953, 0.016391521, - 0.027475446, -0.02315811, -0.018556992, 0.006269402, -0.018237716, - -0.006522493, -0.022419685, 0.026040616, 0.0037345786, 0.024700597, - -0.0034231977, -0.004667978, 0.0035549672, 0.015608368, -0.01941223, - -0.005201541, -0.037338898, -0.021150116, 0.029217787, 0.015391693, - -0.0032808057, 0.024572521, 0.0013702546, -0.0011704621, -0.004587121, - -0.029763702, -0.009291887, 0.010640039, 0.018678945, 0.025709448, - 0.012192937, 0.0020403485, 0.001951846, -0.015432495, -0.0060498775, - -0.009656283, 0.013633839, 0.01546948, -0.0071568293, -0.017693555, - 0.02085159, 0.030760959, 0.01645725, 0.01736221, 0.0069984486, - -0.011053405, -0.024090532, 0.008865165, 0.010587585, 0.0030672771, - 0.0035468603, -0.014937751, 0.0016205561, -0.006201473, -0.014020904, - -0.018462729, 0.0061726603, -0.0054931673, 0.0014415091, 0.012098757, - 0.012439695, -0.0030428225, 0.0073532676, -0.0113105, 4.854561e-4, - -0.022726364, 0.008335965, 0.023461528, -0.0077298465, -0.024787735, - -0.0022048322, 0.01797193, 0.0026797275, -0.010950879, 0.0031787348, - 0.013452691, -0.028011646, 0.010761871, 0.001548599, 0.012036281, - 1.6858934e-4, 0.006965274, 0.002840627, 0.015467284, 0.0080722775, - 0.0048775426, -0.00488138, -0.003488768, -0.025076544, -0.031027926, - 0.03515818, 0.0100580035, -0.0067808996, -0.00460199, -0.012461873, - 0.022942819, -0.016811062, 0.01690177, -0.007835953, -0.0038805793, - 0.01587822, -0.035645038, 0.0029886554, 0.019298049, 0.014837424, - 0.01384648, -0.031528853, -0.009451149, 0.0076533803, -0.021322634, - 0.0029313944, -0.004920505, -0.007430662, 0.018007219, 0.022843176, - -0.010909992, 0.020492585, 0.01454912, 0.003058399, 0.00466495, - 0.020994069, -0.01888786, 0.011234018, 0.063251734, 0.0020551, - 0.031274397, -0.018159062, 6.4868276e-4, 0.007776855, 0.0029031115, - -0.013950458, 0.009687966, -0.0056005567, 0.013941707, 0.0052922843, - 0.03531519, -0.014917593, -0.018547708, 0.01776963, -0.022824015, - -0.005489214, -0.0134452265, 0.0065823887, -0.027089676, -0.008847094, - 0.011402958, -0.032467153, -0.007966203, -0.03717967, -0.009559617, - -0.007145129, -0.0025378172, -0.007792696, 0.0015819465, 0.01586903, - -0.014858869, -0.03933088, -0.0049094805, 0.0041777673, 0.022764597, - -0.0029395968, -0.013091781, -0.0026819261, 0.005104987, 0.008445316, - 0.009801512, -0.03340146, 0.016135426, -0.0081214, -0.039481618, - 0.032941796, -0.0015197839, 0.0126305595, 0.0049737142, -0.008149608, - 0.0014603494, -0.011413667, 0.017145159, -0.0030850791, -2.0699245e-4, - -0.0024072023, -0.007940562, 0.035135508, -0.006148346, -0.0020761974, - 0.020608975, -0.020019611, -0.012975028, 0.024611035, -0.029168617, - 0.042394917, -0.004486191, 0.0068649533, 0.007583304, -0.013142999, - -0.013161141, -0.0211364, 0.005226967, -0.009100579, -0.03134611, - 0.011376692, -0.034613777, -0.022476507, -0.004007529, -3.7323803e-4, - -0.024519924, 0.012051517, 0.026909906, -0.01314252, -0.012156764, - -0.013814355, 0.00134209, 0.00801568, -0.008247487, -0.0021312044, - 5.1873166e-4, -0.008108202, 0.0085311895, -0.006793028, -0.0010898068, - -0.013367994, 0.0015531717, -0.014505516, 0.018058795, -0.028462037, - 0.009083762, 0.009485624, -0.021444881, -0.025436675, -0.010492887, - 0.007872588, 0.015699027, 0.002257, -0.002215944, 0.012185327, - -0.006379191, -0.011546585, -0.012993383, -0.035627756, 0.010743369, - -0.0021652754, 0.038109895, 0.0223509, 0.0175008, -0.0030744001, - -0.0018723134, -0.016469914, 0.014833694, -0.006423185, 0.0027539157, - -0.014632523, -0.008263399, 0.020978281, 5.5531383e-4, -0.020980235, - -0.0140843615, 0.0063929856, -0.014494172, 0.010426976, 0.0123938965, - 0.005046973, 0.004813227, 0.002519079, -7.843472e-5, 6.652222e-4, - 0.008934615, 0.02443548, 0.012288831, -1.8161333e-4, -0.003236175, - 0.00964437, -0.018910456, -0.011433669, -0.023175748, 0.016606031, - -0.0017377265, 0.00393, 0.015217142, -0.034256633, 0.0052590454, - -0.017843705, -0.015875619, -0.01585472, -0.010362997, 0.02721215, - 0.0069977827, -0.024486866, -0.01634138, 0.013887214, 0.031557705, - -0.035502773, 0.0066519803, -0.018000664, 0.01930357, 0.007762687, - 0.0060081254, 0.046025004, -0.009374885, -0.0026125608, 0.007187376, - 0.018701013, 0.0013675475, 0.0040389127, -0.016495546, -0.005245164, - 0.0072923405, -0.012379481, 0.003005614, 6.86191e-4, 0.014030321, - -0.009644108, 0.0031830447, -0.009312261, -0.0022994112, -0.038815312, - 0.029858945, 0.008263232, -0.01859568, -0.00877986, -0.005226935, - 0.0015646516, 0.014918596, -0.013110491, 0.016696174, 8.148376e-5, - -0.021319544, -0.024527363, 0.010954572, 0.022397447, 0.029333435, - 0.0043327515, -0.010533917, 0.030984093, 0.016582444, 0.00889193, - -0.0012120587, -0.015456919, -0.0028907915, -0.013791237, 0.012980096, - -0.004927235, -0.01923017, 0.006291992, 0.009816488, 0.009396803, - -0.0035888127, -0.013261023, 0.028449059, 0.003279688, 0.013308988, - 0.0018925869, -0.005607398, -0.03613319, 0.025513925, -0.005255307, - 0.011835024, 0.002394922, 0.003148208, -0.006627198, -0.036412526, - -0.0052400148, 0.009025962, -0.024054421, 5.981994e-5, 0.017484557, - -0.019367673, -0.0030897178, 0.036491785, -0.024163347, 0.005940775, - 0.011805282, 0.026384471, -0.0021719087, 0.010425548, -0.009731434, - 0.0017279246, -0.018135345, 0.026807887, 0.020036772, -9.562749e-4, - -0.0038396972, -0.0024953128, -0.00635653, -0.017710224, 3.3976193e-4, - -0.0045474335, -0.028552542, 0.02782742, -0.028844666, -0.0047156783, - 0.006768357, -0.00123005, -2.643724e-4, 0.0054038526, 0.017499449, - -0.004634357, -0.006456008, -0.018994793, 0.0017443801, 0.0033234053, - 0.0022171298, 0.017599791, 0.0068013393, 7.2502805e-4, -0.017311407, - 0.018482396, -0.021396276, -0.0072868443, -0.011504982, -0.0134145105, - -0.021294633, 0.009017494, -0.03210616, -0.006954843, -0.002655635, - -0.032032102, 0.005217705, 0.008610807, -0.02174256, -0.0068286466, - 0.00879215, -0.004377538, 0.009170763, 0.0062490557, -0.0027933293, - 0.022252496, -3.6280983e-4, 0.017848527, 0.01162075, 0.0013027332, - 0.023245374, 0.001132152, -0.007927433, 0.010455468, 0.02510188, - 0.008629108, -0.013954837, 0.011681282, 6.476951e-4, 0.0051564192, - 0.016232202, -0.032606296, 0.0071746027, 0.013268515, -0.0019787275, - -0.020320533, -0.007418277, -0.0059382226, 0.0056386213, -0.011380881, - 0.01803616, -3.2488824e-4, 0.005636283, -0.0024303666, -0.0105407005, - -0.0023048734, 0.012201225, 0.018177731, -0.023286464, -0.010289201, - 0.021674315, 0.013507374, -0.0072770147, -0.0145624615, -0.018474286, - 0.025763597, -0.004683842, 0.01793595, -0.014268384, 7.91152e-4, - -0.031341664, -0.0070370454, -9.657443e-4, -0.013856178, -0.0010578943, - -0.015429092, 7.366835e-4, -4.4220194e-4, -0.016735667, -0.008354295, - -0.008156029, -0.009563734, 0.020506576, -0.01571149, -0.018461186, - 3.411461e-5, 0.018293586, 0.020237233, 0.005145571, 0.007995318, - -0.009221076, 0.025566677, -0.029600332, 0.0069127926, -0.010532185, - 0.010527396, -0.020835785, 0.027059117, -0.01342053, -0.011702628, - 0.009425415, 0.009401277, 0.007825414, -0.0015770036, -0.012426726, - -0.038331978, -0.012735387, -0.01625071, -0.016136188, 0.010634845, - -0.016746536, -0.025026927, -0.008821946, -0.007426027, -0.010787662, - -0.014461993, 0.025724495, 0.020675845, 0.008922964, 0.0020239379, - -0.010560351, 0.01847023, 0.013075246, -0.0059729214, 0.019013805, - -0.010278156, 0.0076680756, 0.0073201973, 0.0042479453, -0.025500294, - 0.03275424, 0.0048496025, -0.0016153803, 0.022655377, 0.010571132, - 0.004357679, 0.024715062, -0.017552143, -0.005803727, 7.420924e-4, - 0.004936232, 0.032342367, -0.0026178241, -0.021419797, 0.021943519, - -0.00910101, -0.019591067, -0.0048317504, -0.01621341, 0.022128602, - -0.012349395, -0.018438311, 0.0077682002, -0.0062945345, 0.014701987, - 0.02549176, -0.01330652, 0.009571257, -0.012731341, 0.009590999, - 0.017157808, 0.0016446781, 0.0077800965, -0.010682215, -0.014400773, - 0.021200672, -0.0010230159, 8.5588335e-4, 0.0049872347, -0.0041106106, - -0.005119254, 0.02568237, -0.019716114, 0.020327404, 0.006847667, - -0.016760694, -0.01321146, -0.004144562, 0.025555383, 0.0011537812, - 0.008672724, 0.009800893, 6.8874675e-4, -0.007850733, 0.0012033543, - 0.0076435646, 0.0036467835, 0.025080094, -0.010019397, -0.016539406, - -0.008164794, -0.017472133, -0.031954877, 0.010055323, -0.010165233, - -0.0072922385, -0.020090548, -0.004451888, 0.031686347, -0.0026626564, - -0.033647344, -0.013976174, 0.004630973, -0.028566, 0.0028366323, - -0.014930115, -0.019965602, -0.006863966, 0.002304836, -0.021718621, - 0.013707007, 0.02890096, 0.015808433, 5.607063e-4, -0.018088138, - -0.0048171263, 0.012319735, 6.204072e-4, 0.008565545, -0.009452922, - -0.001993746, 6.9642725e-4, 0.026831767, -0.00886744, 0.010408501, - 0.011636211, 0.0075326143, 0.009743344, 0.018948462, 0.015177455, - -0.020605337, -0.009609095, 0.027285196, -0.011687996, 0.0036380175, - -0.005179286, 0.018230613, -0.0019609646, 0.005929142, 0.008189056, - 0.005394837, -0.012096234, -0.006533735, -0.017596474, 0.0041672, - -0.018815277, 0.0034999535, -0.0054812026, -0.0017576349, -0.016067358, - 0.039541885, -0.004183725, -0.037884872, -0.012778793, 0.0021540143, - 0.004813516, -0.0043631718, 0.008135418, -0.0050101145, -0.021890653, - 0.006838852, -0.01703017, -0.0032887312, -0.028052667, 0.012249982, - 0.0105294725, -0.004081264, -0.010322121, 0.043108445, 0.028378109, - -0.016769111, 0.0048184725, -0.016003568, 0.0063549825, -0.009613716, - -0.0044943467, -0.007504172, -0.0011413048, -0.020650534, 0.0011542907, - -0.013873394, -0.0044317036, 0.007496311, 0.008537892, 0.0060966644, - -0.010936489, 0.012892668, -0.022213552, -0.011255612, 0.002005048, - -0.009844783, 0.0053501697, -0.016183864, -0.007206734, -0.009083138, - -0.01606315, 0.03755671, -0.01742153, -0.0043463334, -0.030035805, - -0.023724277, 0.0015064117, 0.008906626, 0.006897568, 0.0067240326, - -0.003785021, -0.0053501427, -0.009529741, 0.02172695, -0.014116778, - 0.008538421, 0.0040269718, 0.026362715, -0.010860262, -0.010771657, - 0.010537882, -0.0018466674, -0.0019916839, -0.051471997, 0.027947942, - -0.021061162, 0.01515574, -0.010044969, -0.013914406, 0.018381909, - 0.009505992, 0.020459868, 4.1228734e-4, 0.004812996, -0.007558086, - 7.7615853e-4, 0.002799645, -0.02325164, -0.004797064, 0.0010191989, - -0.0025698876, 0.011149998, -0.018935924, 0.0074028564, 0.0128887035, - -0.017747624, 4.0869197e-4, 4.1479422e-4, -0.012161612, -0.003840856, - 0.011469184, -0.02257732, -0.005148894, 0.0020759737, 5.063691e-4, - 0.006528676, 0.007211892, -0.0027682655, 0.046419714, 0.0051355422, - -0.026382186, -1.1998408e-4, 0.0066616666, -0.009625441, 0.006275666, - 0.0038554803, 0.017498828, -0.008450533, 0.027872948, -0.0033005746, - 0.02942479, 0.004889869, 0.018965242, -0.008116362, 0.016937345, - 0.005271858, -2.2443722e-4, -0.0029481049, 0.0014022032, 0.01217354, - 0.0115936715, -0.03944229, -0.011941499, -0.0059818854, 0.0017088206, - 0.014624383, -0.022483826, 0.0036550565, 0.0080188755, -0.0036160324, - -0.017967831, -0.0026809992, 0.024424821, 0.010932786, 0.011363507, - -6.626949e-5, 0.016382828, 0.009799424, -0.01691092, -0.011030485, - 0.030489618, -0.026301641, 0.0362086, -0.0138760535, -0.022946058, - 0.0068643284, 0.020706793, -0.0138746565, -0.015662557, -0.011832414, - 0.0040195626, -0.01992115, 0.009403162, -0.0017285879, 0.0105067445, - -0.015340449, 0.022205135, 0.0058067846, 0.0028393823, -0.0063505825, - 0.02368387, 0.0055298824, 0.012412726, -0.014728762, 0.0048930063, - 0.0022594973, 0.0030432858, -0.003301746, 0.023462877, -6.947646e-4, - 0.013812712, -0.0053240485, -0.00672901, -0.0016379704, -0.003112579, - -0.030933477, -0.013944165, 0.006382647, -0.0101096025, 0.0057746954, - -0.008816548, -0.012320197, 0.0032318702, -0.035471853, -0.008007308, - 0.0063785906, -0.008566422, 0.006870113, -0.0017589438, 0.0047023655, - 0.0050070384, -0.010231325, 0.009750955, 0.006569105, 0.0012313683, - -0.0077641434, 0.020735344, -0.019025829, 0.003244662, 0.017444335, - 0.0026944822, -0.019957123, 0.011649388, 0.0056213285, 0.009877645, - -0.003615997, 0.028268026, -0.017387582, 8.7225233e-4, -0.002036918, - 0.017710213, -0.007929004, 0.034818232, 0.0052260514, -0.0138359815, - 0.013657828, 0.0024323016, 9.4773393e-4, -0.0068288282, 0.0060701785, - 0.009840392, 0.009173886, -0.004321286, 0.025000928, 0.023459231, - 0.0036687995, 0.0015826657, 0.0072441716, -0.022269506, -0.008204761, - -0.04101135, 0.004637463, 0.030883107, -0.013896019, 0.021474214, - -0.0014732663, 0.010995212, 0.024403669, -0.0071521397, 0.0029961346, - 0.017476665, -0.019226128, -0.034248665, 0.0019786288, 0.046022143, - 0.020702556, -0.012146423, -0.0025619103, 0.02665801, 0.010748885, - 0.010345999, -0.011325536, -0.008020524, -0.01586686, 0.013212597, - 6.867918e-4, 0.0034113221, 0.014944562, -0.017999537, 0.034084864, - -0.0054916814, -0.003367292, 4.0934535e-4, 0.021026643, -0.020528728, - 0.008494282, 0.016387856, 0.0122514665, 0.023292407, -0.011023332, - 6.301732e-4, 0.0028125707, 0.032273296, -0.0075740637, 0.007921305, - 0.031794097, 0.0153995175, 0.03284897, -0.009703184, -3.151365e-4, - -0.01607898, -0.017444512, -0.010706005, -0.0067963284, -0.017034756, - -0.016353227, -0.008730385, 0.003516117, -0.020105934, 0.016375843, - 0.029968048, -0.019983942, -0.002189195, 0.015303342, -0.010023693, - -0.01699783, -1.2243175e-5, -0.025407601, -0.019899232, 0.005069722, - -0.012054491, -2.3335274e-4, 0.012500521, 0.0020124249, -0.014383131, - 0.008926131, 0.018996991, 0.0064511294, 0.00426262, -0.010909605, - 0.012782904, -0.0048282393, 0.011220456, 0.011963867, -0.0041205147, - -0.021198846, 0.011570146, -0.00481696, 0.0050975806, 0.0012316882, - 0.0072132936, 0.021473384, 0.0016393504, -0.013706069, 0.0051703104, - 0.022116804, -0.012495272, -0.025512764, 0.008383029, 0.029781759, - -0.005514307, -7.762726e-4, -0.02646919, 0.006586135, 0.026649727, - 0.0047473917, -0.020070527, 0.001924986, 0.02487637, -0.0050228066, - 0.011823795, -0.0010778147, -0.010651328, 0.001520154, 0.005280629, - -0.012131177, 0.045438904, 0.005332892, 0.003978791, -0.012745336, - 0.019290566, -0.012465595, -0.014460854, 0.0077834665, -0.007152216, - 0.012946953, -0.002765858, -0.02578555, 0.011395681, 0.011662714, - 0.003889904, 0.0042946185, 0.0017427355, 0.003143274, -0.0163585, - 0.019610904, 0.021476699, -0.011212584, 0.004281588, 0.0017378663, - 0.004468217, 0.0029587569, 0.0047085285, -0.020487301, -0.006104986, - -0.012479806, -0.027478978, -0.015903616, -0.011768727, 0.01555648, - 2.9668745e-4, -0.014072207, -0.005112348, -0.010074918, 0.008564859, - -0.0071819704, 0.018078245, 0.016627388, 0.008532252, 0.013014914, - 0.019422473, 0.009024684, 0.009259105, 0.007947635, 0.016922273, - -0.026353505, -0.027465792, -0.0020293314, -0.01907895, 0.012821983, - 0.0033403276, 6.468351e-5, -0.016519224, 0.011055791, 0.0046182997, - 0.005448815, 0.0197863, -0.009434094, -0.0048702643, -0.014937658, - -0.008193044, 0.008043333, 0.020353401, 0.0036707593, 0.0042450717, - 0.027149372, 0.025229033, -0.028537462, -0.0058108377, 1.4853792e-4, - 0.013687665, -0.023884436, 0.0067914156, 0.017220693, 3.2972466e-4, - 0.003999506, -0.018176151, -0.022977157, -0.007529139, 0.0127514945, - 0.006448816, 0.021906102, 0.011524446, 0.005297666, -0.018751163, - -0.02165263, -0.020313289, 0.012136045, -0.023021618, 0.001995673, - 5.3226796e-4, -0.022400882, -0.008204349, -0.0045450036, -6.4802857e-4, - 0.028084775, 0.011420754, -0.006065628, -0.0083717825, -0.005937664, - -0.013602225, -0.0033827017, 0.022429498, -0.012930462, 0.01075189, - 0.013197622, -0.0024754836, -0.021686906, 0.012400053, 0.011832802, - 0.02186268, -0.005889369, 0.015659887, 0.019334748, 0.009635518, - 0.009415615, 5.409825e-4, -0.0030797175, 0.00493445, -0.007664324, - -0.018483203, 0.005590514, -0.01557685, -9.282268e-4, -0.007928418, - -7.669992e-4, -0.008579267, -0.012706028, -0.003913389, 0.0042315433, - -0.020143216, 0.008007529, -0.026260981, -0.0040591555, -0.006634428, - -0.021447891, -0.013154465, 0.011517772, -4.922694e-4, 0.010207774, - -0.0024076987, 0.009063101, 0.015611953, 0.012059627, -0.00257141, - -0.015002007, -0.004106529, 0.006437457, -0.0060903206, -0.004213693, - -0.0096947225, -0.019981235, -0.009151624, -0.006693185, -0.022268564, - -0.005975126, -0.014257961, 0.008762454, 0.002851241, -0.039952017, - -0.024669996, 0.0035554564, 0.0055869943, 0.010555073, 0.018703377, - 0.027329097, 0.0035549337, -0.0076094954, -0.016044632, 0.013093738, - 0.0039647794, -0.01202031, -8.5047935e-4, 0.031234043, -0.008849419, - -0.020085614, -0.0045030583, 0.0038379822, 0.015561782, -0.005514263, - 0.0043730824, 0.024452224, 0.0011143088, -0.018508233, 0.018266449, - -0.008007525, 0.012330473, -0.018749418, -0.02061971, -0.009584086, - 0.0016171011, -0.0012613247, 0.0117977485, 0.012546711, -0.030860802, - 0.003154286, -0.016329618, 0.016695952, 0.025592586, -0.009757282, - 0.038455296, 0.009868838, -3.888344e-5, -0.0044404366, -0.009129013, - 0.021389723, 0.005674141, 0.0066055846, -0.006685967, 0.0033901674, - 0.009396681, 0.009203691, -0.022937754, -0.008620878, 0.010009705, - 8.7478175e-4, 0.006495039, -0.013573705, 0.022415424, 0.0064519793, - 0.0014344808, 0.00553458, -0.014938717, 0.03432962, -0.017423168, - 0.004939177, -0.019995835, 0.024542503, -0.0025420361, -0.02843382, - -0.0093850875, 0.0025037413, 0.036488917, -0.022417821, 0.004476464, - -0.0327278, -0.0025335243, 0.027595943, 0.013266582, -0.0042447476, - 0.0058528455, 0.033622347, 0.012044187, 0.018887466, 0.0068697683, - -0.023125706, -0.014929793, 0.0066638268, 0.0061032255, -0.020175822, - 0.0034197303, -0.020070529, -0.0054637226, 0.013979196, 0.021212807, - -0.009449826, -0.0018324358, -0.008295434, 0.019726831, -0.011950775, - -0.013266897, -0.009236483, -0.0069839773, 0.02172592, 0.0036843687, - 0.0041676755, -0.004713288, 0.022892203, -0.009148403, -3.7554651e-4, - 0.021237833, 0.0325707, -0.007875252, -0.012464286, -0.01683012, - 0.0075754356, 0.03135562, -0.013086031, 0.021649353, -0.026006034, - 0.022620311, -0.011097719, 0.032550246, -0.012262953, -0.009847594, - 0.007688712, 0.007376464, -0.02312515, -7.327922e-4, -0.019670982, - -0.017792162, -0.0038584834, 0.015555061, 0.028542506, -0.0099622, - 0.0014125103, 0.008816334, 0.0114939, 0.02264487, 0.015631959, - -0.021642355, -0.014760678, 0.007785785, -0.009411981, 0.005497755, - 0.013785533, 0.028514007, -0.0017113183, -0.02427381, -0.006640328, - -0.010960193, -0.014438535, -7.6255697e-6, 6.668572e-5, 0.0064432607, - -0.0026219115, 0.0064632394, -0.0012341872, -0.019544916, 0.0034457042, - -0.010052814, 0.021403356, -0.037819374, -0.03285579, 0.008976151, - -0.006623131, 0.010462447, 0.008714029, 0.016183984, -0.007581406, - 0.021394484, 5.129375e-4, 0.020699577, -0.019290635, 2.6261332e-4, - -0.005886562, 0.007020588, -0.036657736, 0.036903035, 0.0030734928, - 0.029052366, -0.011893347, -0.014206626, 0.006327167, -0.0050305333, - 0.008498631, -0.007950639, 0.029956544, 0.017599463, -0.03160185, - -0.012636921, 0.013453676, 0.010474029, -0.022291914, 0.009657342, - -0.026250217, -0.0063786646, -0.014503344, 0.0028245328, -0.0039294227, - -0.020144084, -0.028897915, -0.0034583209, -0.0031341007, -0.026324373, - -0.012089291, 0.017604614, 0.014224471, 8.1843976e-4, -0.01511146, - -0.007969065, -0.0065783802, 0.015626533, 0.0055605737, 8.6254696e-4, - 0.0087291775, 0.0066069476, 0.045314614, 0.0038306653, 0.026980864, - -6.662719e-4, 0.049084555, -0.012275834, -0.020250516, 0.005925482, - -0.022314467, -0.0274818, -0.009643161, 0.010109505, -0.008143767, - 0.012987551, -0.012863425, -0.00878647, -0.02098954, 0.0071190074, - 0.0030510812, 6.952814e-4, 0.018247196, -0.012698181, -0.012890822, - -0.020861221, -0.010514469, -0.016958833, -0.03366438, -0.0037884195, - -0.0010437305, -0.014700487, -0.013025164, 0.002800014, -0.021266352, - -0.005351178, -0.023746962, 0.015398063, 5.3136464e-4, -0.015576662, - -0.017547088, -0.016750474, -0.0018675199, -0.015899515, -0.010248532, - 0.0090734, -0.015710957, 0.008177243, 0.0073400047, 0.02307924, - -0.009683554, -0.013779036, 0.006081292, 0.03072339, -0.009241202, - 0.0013055145, -0.005607558, 0.009968439, -6.583561e-4, 0.015211525, - -0.024953606, 0.0027599342, -0.009075715, 0.005102713, -0.0025045075, - 0.01923936, -0.009844666, -0.002931012, -0.006285418, -0.016014764, - -0.0019391162, -0.019679958, -0.002293204, -0.003232414, -0.028262122, - 0.026283804, 0.0196748, -0.0063203983, -0.0054705716, -0.0084876055, - -0.014312964, -2.9870056e-4, -0.0013818186, -0.024852753, 0.0061777313, - 0.005913001, -0.014467852, 0.011859974, -0.017224383, 0.03198763, - 0.012175328, -0.017808575, 0.014227639, 0.0016400997, -0.009178616, - 0.004880109, -0.018199364, 0.001861619, 3.192861e-4, -0.005289378, - 0.001186034, 0.0033792364, -0.00443818, 0.0065814676, 0.006003419, - -0.009253727, 0.00754365, -0.03361333, -0.004712528, -0.01730001, - 0.012689358, -0.039091934, -0.014616145, -0.015195513, 0.018554883, - -3.1883406e-4, -0.0366139, 0.013073638, 0.007477473, 0.01650094, - -0.0055360943, -0.008620143, 0.00845058, 0.012666229, 0.0038983284, - -0.0070180763, -0.0021842036, 0.012943203, -0.0051160143, 0.023613878, - -0.010695547, 0.0072740386, 0.015339202, -0.005835341, 0.020834394, - 0.0034181809, 0.00403733, 0.036159772, 0.007779595, -0.0011528854, - 0.016634421, -0.026112424, -0.004315556, -0.014841197, -0.029223055, - 0.0044387123, -0.0052446537, 0.019316122, -0.020621113, -0.0031374062, - -0.014340891, -0.009342112, -0.0165888, 0.011566019, -0.023617797, - 0.0239854, -0.02709327, -0.0063295467, 0.0017370791, -0.0031232894, - -0.022936027, 0.008953323, 0.010838451, -0.0103634875, -0.0049373787, - -0.025731856, 0.017371712, 0.0075592804, -0.0046595777, 0.0124643035, - -0.013057032, 0.01977406, 0.02218201, 0.007608875, -0.0058218273, - -0.018019881, -0.02025959, -0.018776193, -0.013662455, 0.01377294, - -0.0075104674, -0.02759916, 0.0024467257, 0.004515872, 0.009110642, - -0.009745263, -0.037031006, 0.018390438, 0.018182043, 0.016037231, - 0.011558624, -0.011774729, 0.0022859029, 0.013063443, -0.012137931, - 0.0023423596, -0.015486451, 0.011249552 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + "Edward Said" + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.0021600383, -0.025619088, 0.017522281, 0.0023704409, -0.032348312, - -0.0047734906, -0.0034851283, -0.005304547, 0.0041990997, 0.012050128, - 0.012170877, -0.011775789, -0.008463094, -0.0069843195, 0.0023621959, - 0.010882579, -0.0015042793, 0.0024396803, -0.04473127, -0.0065263542, - 0.012382603, -0.012680753, -0.009395629, 0.0033807815, -0.011771088, - -0.0029675441, -0.0058104238, -0.012454683, 0.0032690926, 0.017206812, - -0.002844319, -0.019779379, -0.01153379, -0.018622668, 0.019939609, - 0.009594914, -0.0064065787, -0.012991061, -2.791587e-4, -0.014371003, - -0.008000246, 0.012711753, -0.013577822, 0.0017234449, -0.014309531, - -0.0076943734, 0.025772067, -0.009062681, 0.019964118, -0.0025771337, - -0.0054043005, -0.009234903, -0.009348084, 0.0023788905, -0.01960181, - -0.010996097, -0.0018009272, 0.013177212, 0.026069451, -0.021206524, - 0.006114443, -1.7573428e-4, 0.009537317, 0.010289134, -0.011395981, - 0.010966321, -0.036458746, -0.030184181, -0.02066288, 0.023201091, - -0.012436553, 0.0030443144, 0.015619292, 0.010948378, 0.014694889, - 0.012874219, 0.01745505, 0.025002792, 0.013151324, -0.014528389, - -0.01628482, -0.011380686, 0.017741565, 0.009423354, 0.013516848, - 0.0079787625, -0.02347407, -0.00115981, -0.0031169746, -0.008471714, - -0.02408754, -0.008758787, 0.012017575, 0.020739833, -0.010442718, - 0.0060882536, -0.018487923, -0.010340948, -0.0013486528, -0.02834074, - 0.028708966, -0.003495744, -0.01192408, 0.028425774, 0.0076903035, - -0.015217606, 0.008713552, 0.012149615, -0.0050188377, -0.030249959, - 0.018574756, 0.0059516034, 0.023291083, 0.013568739, -0.007683275, - 0.012092346, 0.002104822, 0.035578486, 0.017944094, 0.007925168, - 0.0013332474, -0.024434788, -0.004923944, 9.581804e-4, -0.005598516, - 0.026339252, -0.020162223, -0.012148487, -0.013098061, 0.0061506247, - -0.022467084, 0.0062832558, 0.0112938015, 0.012202695, -0.012361213, - -0.011881926, -0.005870021, 0.0070877327, -0.02384629, 0.017263701, - 0.0043799444, 0.03332558, -0.0019708143, -0.011883683, -0.037291925, - 0.0073797903, 0.029882193, -0.027604124, 0.006364364, -1.7800494e-4, - -0.009670677, -0.010116055, -0.012653428, -0.006196868, -0.0044158385, - -0.0022430753, 0.023806162, 0.017101565, -0.015308095, 0.014576737, - 0.004598244, 0.002860863, -0.024683459, 0.004962817, -0.013500269, - 0.008692403, 0.007248001, 0.0038067831, 0.015909813, -0.010642133, - 0.018234115, -0.013531821, 0.010078933, 0.013824045, -0.0046785777, - -0.028890327, -0.0043604486, -0.001630326, 0.0077477256, 0.008372345, - 0.003270311, 0.01260803, 0.0043757036, 7.946945e-4, 0.0068944194, - 0.006098626, 0.025585186, 0.010035416, 0.016692447, -0.014964, - -0.0027853448, 0.01198525, -0.04038377, 0.016651006, -0.019187553, - 0.031354096, -0.028298123, -0.025601937, -0.014379705, 0.011145454, - 0.0022867175, -0.0022789517, -0.0032794257, -0.0020046465, 0.020366346, - 0.00664337, -0.015916469, 0.017226333, 0.0049031354, -0.0036688265, - 0.0022113002, 8.380812e-4, -0.019502843, 5.3016405e-4, -0.022716088, - 0.029244095, 0.012139419, 0.003152902, 0.0011687846, -0.0016980859, - -0.034705844, 0.015026338, 0.00403101, 0.012003026, 0.005108413, - -0.00919514, -0.019018782, -0.00952984, 0.008903709, 0.029230868, - 0.003752007, -0.02166978, -0.003442819, -0.0024416663, 0.0016282685, - -0.019517662, -0.0027017323, 0.0015519789, 0.0080437865, 0.0068484014, - 0.005585496, 0.010174789, 0.015039001, -0.008002361, -0.028092302, - -0.006061511, 0.008736406, 5.209518e-4, -0.005951596, 0.0021711776, - -0.005517784, -0.00856028, -0.017172229, -0.05105607, 0.01229878, - -0.023598524, -0.024891222, -0.023380842, 0.002872155, -0.0168757, - 0.03417613, 0.0039612884, -0.014038523, 0.026074415, 0.02248186, - -0.009289268, 0.0012820596, -0.006297005, 0.026039137, -0.010907516, - 0.0010567174, -0.003806783, 0.0129158795, -0.010905089, 0.033133436, - -5.855508e-4, -0.010423258, 0.0075357268, -0.0075426856, -0.016091034, - 0.0099501265, 0.0041767936, -0.026769968, -0.011806107, -0.011550566, - 0.0057253446, 0.011093705, -0.008085716, -0.022889689, -0.005603216, - -0.01477989, -0.0017454652, 0.016950516, 0.017366089, 0.0014493925, - 0.005178155, -0.0070215953, -0.032004826, 0.0014802407, -0.02271464, - 0.002826583, -0.009270607, 0.019287463, -0.036234856, 0.0059261257, - 0.0021154403, -0.019197779, -0.017782493, -0.0066139027, 0.017194884, - -0.010214034, -0.06312686, -0.001611355, -0.0077721938, 0.014973485, - 0.006663525, -0.037723154, -0.009560291, -0.008461322, 7.076008e-4, - 2.811428e-4, 7.7546906e-4, -0.0039023226, 0.011963632, -0.009404825, - 0.008116966, -7.446757e-4, 0.0072639002, -0.021051401, -0.027437577, - -0.019706693, 0.009165498, -0.010934716, -0.0115553895, 9.6976064e-4, - -0.016972864, 0.03432183, -0.019986356, -0.0046143187, -0.0034466058, - -0.024541602, -0.0074570873, -0.0033809508, 0.037000824, 0.004113512, - 6.4565934e-4, 0.003222113, -0.0027994174, 0.010226212, -7.800521e-5, - -0.014780387, 0.020430664, -0.022417635, 7.4230874e-4, 0.026840668, - 0.012182831, 0.016474808, 0.011452223, -0.0058346204, 0.026048424, - -0.0022732613, -0.003533457, -0.021171391, 0.036591955, 0.0134925805, - -0.0042098616, -4.573087e-4, -0.0010188418, -0.016666709, 0.010190516, - 0.013951261, -0.010310034, 9.518281e-4, 0.005249211, -0.026443217, - -0.012908445, 0.017822115, 3.848142e-4, 0.033659182, -0.0015721972, - -5.448447e-4, 0.001128163, 0.008550054, 0.001001728, 0.009682641, - 0.016423859, -4.7100827e-4, 0.01599289, 0.00727244, 0.020623315, - -0.001107873, -0.026236452, -0.012571256, -0.0040821917, -0.0019557748, - -0.031880207, -0.00498706, 0.015013318, -0.0032012125, -0.003269723, - -0.029932726, -0.008915373, -0.008137468, -2.3780916e-4, 0.0019020697, - 0.019501071, -0.037068944, -0.011469468, 6.5861904e-4, 0.02147305, - -0.015065654, -0.008888296, -0.008164376, 0.016794048, 2.3335067e-4, - 0.016962318, -0.020807086, -0.013147363, -0.008051906, -0.0035182042, - -0.0027913065, -0.030912325, -0.0047062403, -0.016059248, -0.021275807, - -0.008152929, -7.81415e-4, 0.019781243, -0.0011927205, -0.030623011, - 0.0035959554, -0.0075951666, 0.008987634, -0.0064324834, 0.002975422, - -0.0033587753, 0.015360175, 0.009901291, 0.0081247, 0.014907833, - 9.5888996e-4, 0.02774364, 0.01767684, -0.009319137, 0.0033611956, - -0.011712414, -0.016458878, 0.0053885425, -0.004279299, 0.011928206, - -4.5445465e-4, 0.020274714, -0.00564488, -0.0033593085, 0.014695515, - -0.011762151, 0.0060516708, -0.008802633, 0.0024411848, 0.03495928, - 0.02336189, 0.021154426, 0.025025528, 0.033605505, 0.00880938, - 0.012932909, 0.0018252939, 0.004414407, -0.02967895, 0.013523975, - -0.008712714, -0.028819485, 0.005987444, 0.029213522, 0.006698052, - 0.016918724, 0.0023551127, -0.006547073, 0.026876707, 0.006076603, - 0.008573535, -0.04531141, -0.009673587, 0.013124825, -0.011757064, - 0.002061577, 0.037087392, -0.0119628, 0.0043657357, -0.019151732, - 0.015218428, -0.017018538, 0.008607578, 0.0044280677, 0.010244575, - -0.017161943, 0.008643721, 0.023446647, -0.017133929, -0.008066291, - 0.016638935, 0.020426888, -0.010089937, -5.1280667e-6, 0.010503033, - 0.039779063, -0.02388125, -4.7968444e-4, -0.03010284, 0.00719992, - -0.010386403, 0.019817408, 0.016705465, -0.020240402, 0.0069853505, - -0.015564345, -0.018773926, -0.01280611, 0.040351845, -0.00662057, - 0.010650419, 0.005189545, -0.014864682, -0.009833286, -0.012983611, - -0.008749818, -0.0051656165, 1.6402145e-4, 0.007680452, 0.00596014, - 0.0421633, 0.016180314, 0.013666215, -0.0124125965, -5.9476844e-4, - -0.012285205, -0.034425806, -0.014668875, -0.0139375, 0.003696873, - -0.01030348, -0.014634992, -0.018617135, -0.023708774, 0.014681765, - -0.006354867, 0.0071914033, 0.008961993, 0.01033989, 0.009124328, - 0.006455611, -0.007429525, 0.009626164, -0.021936776, 6.417594e-4, - 0.013913967, 0.016993117, 0.01877833, 0.031634275, 0.0031407685, - -0.010149093, 8.7716733e-4, -0.010950642, -0.008316631, -7.0505764e-4, - 0.0052614454, 9.4685185e-4, 0.013762936, 0.008996432, 0.028022315, - -0.022957537, -0.0077991956, -0.00134066, -0.03292542, 0.02450579, - 0.0035761627, -0.015945105, -0.0014134365, -0.011988363, -0.0032815498, - 0.0051589184, 0.019633312, -0.0017195309, -0.0097426, -7.840329e-4, - -0.014458851, 0.0059381095, 0.01916143, -0.0035954413, 0.007696373, - 0.0051633297, 0.007114375, 0.009946334, 0.019444149, -0.0029767225, - 0.005825174, -0.00392462, 0.013307686, -0.0053923493, -0.011228919, - 0.005491923, -0.0063205133, -0.014607535, 0.027597314, 0.016966144, - -0.008317163, 0.02059944, 0.025148852, 0.0050690235, -0.027258132, - 0.01080496, -0.018062389, -0.01720523, -0.018903645, -0.026677711, - 0.008177673, 0.0076269684, 0.005772469, -0.01414366, -0.008644081, - -0.0018638333, 0.04503197, -6.893593e-4, -0.0081295725, 9.3950756e-4, - 0.028379139, 0.004420142, -3.7138906e-4, -0.001058418, 2.0944566e-4, - 0.008548982, 0.0018584295, -0.0380052, -0.0073384307, 0.017130658, - -0.0028082887, -0.0043507395, 0.00451395, 0.02141511, -0.0048564146, - -0.03607655, -0.0258615, -3.322619e-4, -0.028624162, -8.459609e-4, - -0.01304028, 0.023963774, 0.016543029, -0.018572662, -0.0042631174, - -0.0028311892, 0.0032900334, 0.031044751, -0.012480826, 0.0063108047, - -0.0063571297, 0.016654747, 0.014357944, -0.008390522, 0.0075612925, - 0.0082401205, -0.01352108, 0.018817002, -0.035408456, 0.024345035, - -0.0030202365, 3.569063e-4, -0.0048110066, 0.024504723, -0.015376661, - 0.006817481, -0.0063400688, 0.004215903, 0.012160098, 0.028803917, - -0.021130787, 0.02747814, -0.0016902487, 0.016975708, -0.0047618207, - 0.01059751, -0.0019143772, 0.004855615, -0.03196241, 0.020380821, - 0.018984143, -0.017460413, -0.022933586, 0.0062415097, 0.0134249795, - 0.01892002, 0.008437767, 0.010463435, -0.00983298, 0.01585382, - 0.011405684, 0.0077792048, -0.0036538518, 0.003169664, 6.649911e-5, - -0.015261318, -0.008861, -0.0033443673, 0.009814445, -0.002800662, - 0.02041116, 0.0113802785, -0.0043534995, 0.033247266, -0.018672545, - -0.008138461, -0.0022194316, -0.0017266499, -0.0144395, -0.0036135232, - 0.003400004, -3.3568015e-4, 0.003796251, -0.018980665, -0.020489955, - 0.021816501, 0.010721329, -0.0031561172, -0.009497204, -0.020584598, - -0.0068651694, -0.0030792581, 9.0041937e-4, 0.027719576, 0.012448525, - 0.023919571, -0.008557629, -0.012907905, 0.010072119, 0.016375434, - -0.0048760725, 2.8367908e-4, -0.011281484, -0.0043829484, -0.02165274, - -0.019281367, -0.011640888, -0.015146282, 9.487834e-4, 0.0055511924, - -0.020809552, 0.009494048, 0.012165844, 0.006105126, 0.02136349, - 0.004359873, -0.0126915295, -0.0027765997, 0.019324955, -0.021350648, - 0.026289456, 0.024465587, 0.004789199, -0.009263822, 0.013150258, - -0.011478441, 0.02764446, -2.58766e-4, -0.0070694988, -0.014245081, - -0.025378594, 0.010852091, -0.008380499, -0.023685407, -0.006779661, - -0.0059398725, 0.032014724, -0.032081213, 0.0030280387, 0.0045302333, - 0.0117916055, 0.0018615457, 0.009638184, -0.020244984, -0.012453326, - 0.011654354, 0.033684842, 0.023992874, -0.02004791, -0.0032415632, - 0.01091996, 0.006263381, -3.136503e-5, 0.022655781, -0.011615346, - 8.710342e-4, -0.00456671, 0.014154372, -0.010215457, 0.011384994, - -0.04120198, -0.0042265896, -0.009799596, -0.003426217, 0.0154758645, - -0.0031114218, 0.022332046, -0.015548513, 0.008805958, -0.015914187, - 0.008828724, -0.009265179, 0.015684512, 0.008143879, -0.004737923, - -0.0032716582, 0.011729048, -0.011779571, -0.001714242, 0.009692032, - 0.018819656, 0.014102388, -0.0010586436, 0.015490921, 0.025670744, - -0.004801848, 0.012681867, 0.00778266, -0.0052865813, -0.0013163141, - 0.025719382, -0.005009879, -0.0043637413, 0.018731333, -0.055507444, - 0.007937038, 0.012093149, -0.013348638, -0.009318945, 0.011014179, - -0.0020692474, 0.0061852313, 0.019127654, -0.0074987807, 0.006455661, - -0.028242987, 0.018312043, -0.0123071065, 0.029694661, 0.032392282, - 0.022929385, -0.01913967, 0.0040492737, 0.0055942773, 0.016511815, - 0.0053237583, 0.015612253, -0.022528049, 0.015316691, 0.018667607, - 0.007974928, -0.01210695, -0.005129523, -0.008984179, -0.0043267333, - -0.0029608868, -0.010488308, -0.011389438, 0.007982446, 0.0056459345, - 7.769525e-4, -0.009321756, -0.004684491, -8.719233e-4, -0.0049326434, - -0.009374113, 0.018995132, -0.018293222, 0.0012913711, -0.0149100665, - -0.0025198401, 0.00446912, -0.003437646, 0.019838637, -0.032988176, - -0.0035344595, 0.021800783, -0.012783747, 0.0039972104, 0.033096388, - 0.007292323, -0.0092582535, -0.016547455, 0.022990016, -0.012301962, - -0.0017595013, -0.0028209712, -0.026708169, 0.010561821, 0.0065197954, - 0.0014226531, -0.0037816798, 0.011214973, 0.010174287, 0.032480653, - -0.0035193637, 0.013102439, 0.0026360734, 0.0017076769, 0.012785061, - 0.024925949, -0.005072121, 0.008865079, 0.02340068, -0.033008944, - 0.020048497, -0.00848288, 0.01796393, -0.0034741627, 0.008960316, - 0.016764546, 0.038362853, 0.01607133, -0.014201541, 0.021104397, - 0.019903379, 0.017145978, -0.0056905914, 0.005168776, -0.0040352317, - -0.0050902585, 0.007462182, 0.020332595, 0.027135208, -0.010698928, - 0.0066321925, -0.0028711564, -0.0033021804, -0.016936028, -1.9297142e-5, - 0.00839233, 0.007778287, -0.0105915405, 0.021275379, -0.02930629, - 0.023922706, -0.012678399, -0.034655876, -1.9200424e-4, 0.017242625, - 0.01990576, -0.014969817, -0.0052968566, -0.004665919, -7.9355115e-4, - -0.003107353, -0.010265498, 0.018896949, -0.021823773, -0.008879056, - 0.0039593307, 0.020817151, -0.013148257, -1.855808e-4, 0.020457271, - 0.013805829, 0.02096357, 0.008004937, 0.014288727, 0.020653378, - 0.006037193, -0.0072857607, 0.019790422, -0.023553807, 0.019299809, - 0.021619536, -0.023553977, -0.016284868, -0.01245966, -0.025383014, - -0.0067188633, 0.0027677543, 0.007196883, 0.012813248, -0.0035681627, - -0.0018858584, 0.01628821, -0.012781579, -0.005133758, -0.016479753, - -0.032569226, -0.019576024, -0.0035977743, 0.027058821, -0.006080413, - -0.010421181, 0.02617721, 0.0039972607, -8.676843e-4, 0.021439055, - -0.0015460335, -0.002215701, 0.012287413, 0.020283457, 0.0074822986, - -0.008902529, -0.0030572985, -0.013413323, -0.0037239124, -0.009726466, - -0.015062961, 0.028301872, -0.0018126332, -4.888421e-4, 0.01558941, - -0.027292049, 1.8434894e-5, -0.0061202715, -0.0022883397, 0.0026146797, - -0.01312617, -0.012316526, -0.008136732, -0.007937248, 0.029533256, - 0.0062406547, 9.132194e-4, -0.0030795904, 0.003842772, 0.0019461628, - 0.010555007, -0.0023035451, -0.01926746, 0.011477783, -0.006715804, - 0.0067925877, 0.0065622567, -0.0030409968, -0.007210569, -0.018548995, - 0.024156936, -0.0046462063, -0.00635477, 0.0033558884, 3.115178e-4, - -0.014705778, -0.007635006, -0.004798552, -0.016548868, -0.014439504, - 0.016270746, 0.014001537, 1.2375513e-4, 0.0067773, 0.02011144, - 7.58416e-4, -0.014535461, -0.0065452037, -0.011701856, 4.881285e-4, - -0.005711942, 7.88274e-4, 0.005889496, 0.019935198, -0.0033172485, - 0.0056039747, 0.006953933, 0.0031848245, 0.0069674775, 0.008046408, - 0.026605569, -0.007488501, -0.032475993, -0.021234665, -2.151926e-5, - 0.02335884, -0.026802354, 0.0018791253, -0.008964183, 0.015592978, - -0.01853934, 0.0059241317, -0.010673837, 0.0062698293, 0.01641526, - 0.0067348075, -0.01827542, -0.020607943, -0.0070965183, 9.3292224e-4, - -0.020602483, 0.024953943, 0.031603787, -0.009845314, -0.002905729, - 0.024787022, 0.015663678, 0.00715559, 0.005301438, 0.010856643, - 0.029073045, -0.012438374, -0.016778637, 0.008982061, 0.010956516, - 0.0061277878, 0.0018139068, -0.0077767177, 0.022551576, 1.7016254e-4, - 0.0035519162, 0.03217658, -0.0068812147, -0.014027651, -0.02101045, - -0.0139319915, 0.008803433, -0.0053995214, -0.008749947, 0.0133471545, - -0.01759863, -0.010112972, 0.016638992, -0.02567139, 0.015118981, - -0.0034192037, -0.015718926, 0.006128479, -0.043402527, -0.0132252965, - -0.008600889, -0.0013767056, 0.01610865, -9.725596e-4, -0.012316682, - 0.011525121, -0.016984109, 0.01754895, -0.00961742, 0.0016798545, - 0.020284738, -0.0026322082, 0.0060241036, -0.0038643968, -0.0062070712, - -0.0018534948, -0.016263096, -0.011032859, -0.01231366, 0.0076241563, - -0.0019495647, 0.002065283, -0.0075096255, 0.016196704, 0.01796615, - -0.007922641, 0.004867094, 0.0066139777, 0.037931543, 0.0014854693, - 0.017056128, 0.003429794, -0.0074730483, -0.003831648, 0.014170845, - 2.7212352e-4, 0.012140602, -0.031987943, -0.020306936, 0.028781287, - 0.0034783739, 6.590337e-4, -0.0062562693, -0.0038984066, 0.019779904, - 0.0037045635, -0.015259905, 0.009130575, 0.02490108, 0.0033480406, - -0.0058891317, -0.011749584, -0.021743443, 0.02269617, 0.009893565, - -0.0046498585, 0.006185467, -0.032270133, 0.01955269, 0.02633684, - 0.022874424, 0.0088844, -0.023657056, -0.009637563, 0.0042795604, - -0.011163971, 0.012019159, 0.0041413093, -0.019316398, 0.0037440022, - 0.008241817, -0.019710504, -0.01875716, 0.031268865, -0.0070968983, - 8.932995e-4, -0.008864034, -0.012918719, 0.0021619045, -0.0023677996, - -0.015470442, 0.023181878, 0.016743103, 0.018312307, 0.01052041, - -0.010917805, -0.0022846742, 0.016251532, -0.026393496, 0.011587624, - -0.011933642, -0.03811612, -0.010804443, 0.032231297, 0.009733702, - 0.01587673, -0.0018506793, 0.006732251, 0.0046054516, 0.008881624, - 0.0050281775, -7.086027e-4, 0.023985932, -0.017906474, -0.018917073, - -0.006780986, -0.0025417223, 0.00788815, 8.700542e-4, 0.010513055, - -0.01756406, 0.010956535, 0.012937186, -4.7334106e-4, 0.0020934413, - 0.007660267, 0.0025192362, 0.005885577, -0.00459245, -0.0025921748, - 0.001984473, 0.004274386, -0.009731887, -0.01648059, -0.0036713574, - 0.0066631734, -7.4579724e-4, 0.03164678, 0.017711898, 0.037957013, - -0.012810511, 0.0023446814, -0.0112728095, 0.010403092, -0.020864483, - -0.028552793, 0.0048426474, -0.026197875, -0.02254538, -0.023972945, - -0.01622275, 0.003485612, 0.014653462, -0.0056335754, 0.010778658, - 0.021501044, 0.018235495, -0.03313552, 0.014921712, 0.014659509, - 0.01981856, 0.0066814865, 0.009756854, 0.0039120936, 0.009207424, - 2.5729078e-4, -0.020577567, -0.0041969847, 0.009987178, -0.001574458, - 0.007883923, 0.0015463233, -0.009016251, 0.0077790907, 0.02828006, - 0.0118544, -0.00874317, -0.033100795, -0.009704947, -0.003752382, - 0.012332117, -0.027345018, 0.025180683, -0.014466742, 0.024700472, - -0.028571, -0.014645972, -0.011405502, -0.018660076, 0.018189264, - -0.014165842, 0.013596778, -0.014824919, -0.0011769, -0.011897102, - 0.026513467, 0.005767773, -0.012658405, -0.012687432, 0.008930265, - 0.043790817, -0.010217822, 0.021485703, -0.010396649, -0.008488563, - 0.0067540053, 0.0049160947, 0.005754593, 0.018468138, 4.3121172e-4, - -0.009965517, 0.011671188, 0.0074227825, -0.019369602, 0.014264841, - 0.0011794118, 0.011615484, -0.017718624, -0.008380115, 0.0017030252, - 0.028437668, 0.0019831583, 0.004413298, -0.013950275, 6.4788954e-5, - 0.016192831, 0.012833747, -0.003990652, -0.012192165, -0.004047114, - 0.003265784, 0.033746447, 1.1466997e-4, 0.012701236, 0.004423917, - -0.007378757, -0.010727622, 0.0018918728, 0.02224599, 0.0067532226, - 0.0027528552, -0.004009239, -0.002172681, -0.02021924, -0.021196961, - -0.03369571, 0.0040601357, 0.00473945, -0.00965565, -0.029003998, - -0.006335486, -0.0020165918, 0.0038700677, -0.0034070627, 0.00972771, - -0.011843073, 0.00705226, 0.032276638, -0.0134113785, -0.027928589, - -0.0151589075, 3.1724822e-4, 0.0046007396, -0.0039043054, -0.011144112, - -3.1779468e-4, -0.0064576156, -0.003225613, -0.0060325502, -0.017418046, - -0.03972153, 2.4226677e-4, 0.0017746704, -0.016483672, 0.022327472, - -0.021210643, 0.014253821, -0.026360907, -0.032711424, 0.022704452, - 0.015492788, -0.022917816, -0.014438848, -2.8040911e-5, -0.0029319702, - -0.011238567, -0.005768195, 0.0314443, -0.0024143097, -0.0018440494, - 0.0044117225, 0.014608274, 0.019604497, 0.0072996477, -0.018811766, - 0.012565185, 0.00382159, 0.031867806, -0.027080841, -0.026847078, - 0.014694493, 0.010930685, -0.013163663, -0.034810998, -0.005862219, - -0.0012823438, 0.002132775, -0.0355764, 5.892647e-4, 0.028948264, - 0.037936404, 0.0029857843, 0.03935239, 0.0036902614, 0.011262645, - -0.0017728548, 0.0033129281, 0.0021283617, 0.028707728, -0.034785632, - 0.017055066, -0.017405454, -0.010456715, -0.006561099, -0.0053014806, - -0.0023380474, 0.009292306, -2.2735068e-4, 0.015306972, 0.008756097, - 0.0070769554, 0.010009625, 0.01124419, -0.01066472, 0.016316513, - -0.01615177, 7.1979477e-4, 1.2901914e-4, 0.022655567, -0.0017555656, - -0.02466566, 1.2235876e-4, 0.013281554, -0.01076767, -0.009892795, - -0.020299425, 0.015644375, 0.0079535125, -0.015722191, 0.0070633506, - 0.017805278, -0.03245345, 0.022908123, -0.0123902485, -0.016804459, - -0.013995676, -0.0035906006, 0.0043850467, 0.012792964, 0.008454732, - -2.458129e-4, 0.004825863, 0.00662451, -0.0010988655, -0.0032962551, - 0.023769122, -0.020804636, 0.020235391, 0.022239875, -0.0021022768, - 0.013641483, -0.003219475, -0.0030557425, 0.008103966, -0.012902872, - 0.004287445, -4.6908826e-4, -0.0014206903, -0.021792945, -0.005075171, - -0.025574284, -0.011826887, -0.042369504, -0.0029976305, 0.027612198, - 0.006525366, 0.0040891366, -0.0014430947, -0.010911621, -0.0019681486, - 0.004205007, -0.019958183, -0.010487683, 0.019048158, 0.007793065, - -0.02025998, 0.023889555, -0.015873158, -0.017860696, -0.0017140909, - -0.011039267, -0.012348229, -0.0174983, -0.029187085, 0.010434307, - -0.0049073976, -0.02036819, 0.011682345, 0.027633263, 0.0060261586, - -0.012493562, 0.010500692, -0.012401133, 0.015953992, -0.01396351, - 0.019080846, 0.008170614, 0.013486689, 0.04582187, 0.009553273, - -0.021263357, -0.011667221, 0.01904675, 0.009256554, 0.011249929, - 0.0019508145, -0.0015630183, -0.016777588, 0.0066874614, 0.017135926, - 0.0078891, -0.010616345, 5.04185e-4, 0.005670206, -0.008940636, - 0.0030580193, -0.011184227, -0.021154134, -0.012514906, 0.022454966, - 0.008176366, -0.012952522, -0.011553673, 0.026603572, 0.025035867, - 0.008649652, 0.004162003, 0.012953497, 0.020022854, 0.011990683, - -0.009843808, -0.01697704, 0.017556936, -0.0069897533, -0.010224717, - 0.0061469865, -0.009182735, 0.0020554177, -0.0019525286, -0.023464197, - 0.0155731365, 0.0023140293, 0.003490342, -0.0030703724, 0.001339745, - -0.0012073879, 0.01260817, -0.018988341, -0.011944303, 0.009371277, - 0.011766886, 0.021064522, -0.0032691828, 0.0028691292, -0.002328177, - 0.024922477, 0.010237234, 0.0061302674, 0.018410897, -0.008664404, - 0.01698583, 7.6371094e-4, 0.0035384067, 0.008118842, -0.015866889, - -0.01188239, 0.0074691135, -0.0033084576, 0.01576756, -0.017632768, - 0.013327564, -0.027369935, -0.016843624, -0.01254449, 0.019934895, - 0.018021638, -0.0045736297, 0.0192693, -0.013308897, 0.014547012, - -0.0042122877, -0.007298297, -0.022727503, 0.02264044, 0.015945908, - 0.008720372, 0.015476452, -0.01707176, 0.011832728, -0.03075436, - 0.0010023235, 0.031289, 0.0017534981, 0.021332227, 0.025194058, - -0.008856631, -0.004473577, -0.007207474, -0.0010071528, -0.0051099057, - -2.6006773e-4, 0.0022513305, 4.0892794e-4, -0.0011256464, -0.007947763, - -0.0074654166, -0.011440884, -0.0070127733, -0.009665697, -0.006675174, - 0.006656819, -0.001275929, 0.034553234, 0.0013035813, -7.5640116e-4, - 0.022956097, 0.034114912, 0.016505456, -0.0033430727, 0.024632828, - 0.029955512, -0.0062733884, 0.0013495164, -0.018633269, 0.02240781, - 0.0049960697, -0.022124188, -0.006349377, -0.005358293, -0.010116081, - -0.0143187335, -0.020338701, -0.027373992, 0.024076566, 0.01037374, - 0.005889462, 0.01899926, 0.010349929, 0.006367648, 0.007168189, - -0.01552183, 0.012761085, 9.962928e-4, -0.0035409569, -0.0116206985, - -0.017738849, 0.028458487, 0.014108934, 0.013302867, 0.0047424445, - -0.015166323, -0.012804516, -0.017288465, -0.009560456, -0.020801026, - -0.026682664, -0.0014743679, -0.008082525, 8.5204607e-4, -0.0043782517, - -0.010555788, -0.012748463, 0.0016601157, 0.0137461955, -0.018242601, - 0.00962456, -0.020068347, -0.024296854, 0.001578597, 0.0128029045, - 0.011918635, -0.004267002, -0.0015051726, -0.022536267, 0.016357793, - -7.919423e-4, 0.0019961377, 0.0059595783, -0.005098258, -0.021566553, - 0.022766383, -0.008143391, 0.0013836989, -0.0070383223, 0.0066805696, - -0.01918888, 0.0058068484, -0.0015751375, -6.038139e-4, 0.017401883, - -0.01930664, -0.008804308, -0.018064866, 0.016571434, 0.0011729659, - -0.014011784, -0.016677393, 0.0053709378, -0.044123888, -0.008326127, - -0.015467068, 0.021050131, 0.006862885, 0.008228131, -0.01856193, - 0.005248496, -0.009909301, -0.011960379, 6.006172e-4, -0.011106271, - -0.019494025, -0.016592324, 0.020496888, -0.022879723, 0.01090321, - 0.008618458, -0.025346939, 0.0018779979, 0.0064677885, 0.012483722, - -6.9283374e-4, -0.0113285035, 0.007003551, -0.006234841, 0.0014807606, - -6.376809e-4, -4.8590705e-4, -0.0042151627, -0.008446902, 0.010066489, - -0.025243947, 7.7672914e-4, 0.0053857747, -0.012381729, -0.0028260432, - 0.015216249, -0.010621289, 0.026439982, 0.030382074, 0.0023223483, - 0.018688317, 0.0010729276, -0.027746486, -0.01205943, 0.003400447, - -0.0135970805, 0.018934257, -0.020023346, -0.048255607, -0.0038021835, - 0.016074894, 0.013259087, -0.0017037045, 0.021125412, 0.0030311905, - 0.024732197, 0.0013019477, -0.0032873633, -0.0013713428, -0.031096015, - 0.005160758, 0.0039583044, -0.012223367, -0.034728196, 0.023802238, - 0.00408084, 0.01061057, 0.004674268, -0.031758893, -0.009491495, - 0.015516703, 0.008776468, 0.012106843, -0.022449179, -0.044737898, - 0.0028621142, -0.011766103, -0.0030281993, -0.007206522, 0.0019355561, - 0.013091885, 2.2445673e-4, -0.004044133, 0.019103477, 0.01641929, - -0.007635855, -0.0011578826, 0.024096524, 0.014700414, -0.0068662846, - -0.0030780316, 0.0068161883, -0.0036163267, 0.008602371, 0.012895449, - 0.0021122443, 0.009652024, -0.006826498, 0.0049243043, 0.0072732177, - 0.00966789, 0.00891236, -0.0139352055, 0.002464758, -0.039054602, - -0.018249664, 0.0011388336, -0.016840773, 8.97316e-4, -0.012739549, - 0.013529146, 0.022943188, 0.010165214, -0.013973952, -0.01077698, - -0.024421107, -0.0030579537, 0.0142804105, -0.008621047, -0.01966965, - 0.007129111, 0.017487776, -0.019147301, -0.0034126744, -0.018259611, - 0.020421492, 3.4932444e-5, -0.005976235, 0.002237821, -0.026423426, - -0.008835678, 0.002839303, -0.020788359, -0.02251609, -0.0024337827, - 0.0019124156, 0.007721624, 0.0067840344, -0.0023350094, 0.018591188, - -0.022632243, -0.026151001, 0.028898772, -0.009068152, 6.096724e-4, - -0.018424759, -0.014941414, -0.031433143, 0.012983473, 0.009246758, - 0.0054355585, 8.17391e-4, 0.017074812, -0.020830438, 0.0066135316, - 0.012254207, 0.016222415, -0.009143529, 0.0038161667, 0.021697626, - 0.012991013, -0.0021840069, -0.018745681, 0.006974043, -9.058145e-5, - -0.0038779848, 0.0127116935, -0.0054160305, -0.0071386592, 4.4310192e-4, - -0.013226218, -0.019587914, -0.03115683, -0.004932144, -0.037828013, - 0.010430789, -0.008247153, -0.023284275, 0.013473398, 0.00514371, - -0.002597256, 0.009542368, 0.0054636747, -0.012099188, -0.025415014, - -0.009771418, 0.020536805, 0.018048806, 0.007719345, -0.013197404, - 0.014928436, 0.02253102, 0.013513235, 0.016851887, -0.0058440976, - 0.011143581, -0.012511214, -0.010163086, -0.007362371, -0.0041662194, - 0.010280652, 0.02886419, 0.0032784694, 0.04127967, -0.014982817, - 0.0058721737, -0.0054123383, 0.012727648, -0.018221864, -0.018441955, - 0.00919621, -0.020105561, -0.006180053, 0.0024140645, 0.016488666, - 0.017074898, -0.009801631, 0.0019784009, -0.003070547, 0.01658323, - -0.0018542657, -0.027675152, -0.018963283, 0.03147657, 0.0415024, - 0.0053147427, 0.0100489985, 0.020222686, -0.0053935065, -0.001701078, - 0.025501162, -0.017987616, -0.023895705, 0.005897785, 0.027020123, - 0.011787125, -0.022292515, -0.016959315, -0.007951753, -0.01830247, - 0.0074196984, 0.0026642426, 0.005689485, -0.015074796, -0.007910597, - -0.026092991, 0.021855183, -0.004725718, -0.0074415933, 0.0062893103, - -0.0039790673, 0.0025272896, 0.0088803265, 0.012021273, -0.031242961, - -0.0019575916, -0.007084447, 0.022498518, 0.018390113, -0.0020655314, - 0.0069764876, 0.00604939, 0.0037503825, 0.013929123, 0.0045517567, - 0.010785893, 0.0072930516, -0.0060487757, -0.024259325, 0.024318138, - 0.020239858, 0.018944915, -0.008492492, -0.014350329, -0.0030722474, - -0.012942948, 0.025934715, -0.006896749, 0.026953088, 0.028421054, - -0.022521226, -0.0073759924, 0.012081551, 0.012602783, -0.043495025, - 0.0060174665, -0.018523054, 0.0052082045, 0.00921755, 0.0010939959, - -0.031855058, -0.008180762, -0.023337407, 8.184971e-5, -0.009494152, - 6.8641757e-4, 0.0067225415, 0.004850045, 0.01773922, 0.036624048, - 0.0042779893, 0.028487096, -0.013195949, -0.0067935884, -0.030145979, - 0.004824209, -0.002996004, -0.019111238, 0.023689223, -0.009546594, - -0.0021884223, -0.009359453, 0.03053173 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.031189684, -0.011104831, -0.034975957, 0.00820323, 0.006011248, - -0.008707372, 0.061842773, -0.00951435, -0.012560138, 0.05158384, - 0.028072381, 0.009173425, -0.05525804, 0.054949913, -0.004131138, - 0.0072106244, -0.0239371, 0.007145103, -0.09409928, -0.0016224126, - -0.023766557, -0.015748471, -8.658256e-4, -0.018896703, -0.022605445, - -0.003055235, -0.014697511, 0.028968364, -0.015461693, -0.0012678255, - -0.0148763545, -0.07552179, 0.0073425635, -0.026231952, -0.047917914, - -0.010131759, -0.05702958, 0.023078442, -0.0064433585, -0.0061552273, - 0.007338356, 0.021576308, 0.0034893898, -0.0073697753, 0.05996269, - 0.019436749, 0.026462097, 0.08800492, 0.005178387, 3.91383e-5, - -0.015763935, 0.050843123, 0.014768985, 0.059935052, -0.00729347, - -0.013464103, 0.03064868, -0.0017791338, -0.0030792707, 0.008696913, - -0.07518154, -0.036939524, -0.067764446, -0.038138587, -0.0082595395, - 0.024581013, -0.049032018, 0.008464881, -4.6037836e-4, 0.004036488, - 0.03325482, 0.037762422, -0.018979939, 0.031424228, 0.027605265, - 0.019102082, -0.0339752, 1.7113138e-5, -0.012655708, -0.0068519805, - -0.0038453755, -0.03396568, 0.01704432, -0.054560192, -0.035793528, - 0.037216343, -0.05453827, -0.014350609, -0.009063405, -0.02104648, - -0.041688927, -0.02877723, -0.043433875, -0.040841315, 0.033621754, - -0.021760294, -0.031471696, 0.027421666, -0.027360067, 0.044438396, - 0.034312934, 0.011870765, -0.05112597, -0.028419228, -0.018079607, - -0.06307528, 0.018711023, -0.015934769, 0.0038657181, -0.022588545, - -0.010198666, -8.38387e-4, 0.03616474, -0.08198527, 0.0026897718, - 0.007926669, 1.5617243e-4, 0.03861814, -0.043419685, 0.031933445, - -0.024248844, -0.07025504, -0.058011584, 0.006798868, 9.874214e-4, - -0.047507044, -0.02795668, 0.037361596, -0.013969568, 0.027600596, - -0.051626645, 0.023960581, -0.0024754733, -0.0042345147, 0.026842743, - 0.011441493, -0.044136982, 0.019631568, -0.018005662, 0.049407724, - 0.019049887, -0.033139396, 0.027038803, 0.036165953, -0.0017308875, - 0.038652636, 0.02386235, -0.010569306, -0.059865173, 0.0056663556, - 0.0076197125, 0.07154276, 0.03789455, -0.0016260963, 0.054055203, - -0.0072588315, 0.015470888, 0.01368872, -0.03833636, -0.01037102, - 0.044474714, -0.0049894652, 0.019914761, -0.019302035, -0.041309632, - -0.008169865, 0.039747663, -0.0034110795, 0.061540805, -0.0076193097, - -0.039777685, -0.023664868, -0.019529702, 0.03381742, 0.026407745, - 0.012309235, -0.010604923, 0.029933086, -0.029933007, -0.004362423, - 0.033959918, -0.06251095, -0.027396161, -0.06528305, -0.025991902, - 0.017171908, 0.018531367, -0.0139319915, 0.025815943, 0.019949771, - 0.0793979, 0.031242821, -0.013411621, 0.0065382756, 0.036828406, - 0.022122925, -0.031640816, 0.040827543, -0.0358704, 0.054724313, - 0.021971084, 0.0010823008, -0.022237733, 0.019302268, -0.04923828, - -0.008089882, -0.032895867, -0.021420844, 0.046246916, -0.0122837955, - -9.181656e-4, 0.0011977567, -0.047029875, -0.028121594, 0.033070456, - 0.0039597577, 0.02401809, -0.008859943, -0.012087726, -0.023053631, - 0.03954894, -0.036810268, -0.075533085, 0.042443614, 0.034839306, - -0.03806552, 0.03226813, -0.010113697, -0.016776659, 0.010463694, - 0.060361866, -0.055204473, -0.028451642, -0.023840187, 0.007733093, - -0.029417956, -0.023268377, -0.010542244, -1.6557776e-4, -0.0091502685, - -0.004113135, -0.034992494, -0.005094276, -0.023351956, 0.032645278, - 0.035954244, -0.0015754643, -0.035650335, -0.02141857, -0.00925692, - 0.015182197, -0.0129933115, -0.038711194, 0.019515201, 0.02369988, - 0.027446393, -0.050538167, -0.013850231, -0.027345115, 0.012586013, - -0.0060262103, -0.057517163, 0.029304015, -0.012878283, 0.05643983, - 0.010512244, 0.022773754, 0.04925986, 0.0074722446, 0.006129143, - 0.028755212, 0.07308369, 0.0068649086, -0.021030257, 0.06480766, - -0.013214563, -0.0023806158, -0.035920013, -0.03051251, 0.03537896, - -0.021394094, -0.036437552, 0.042755827, -0.016443936, 0.0462709, - 0.03899037, 0.032586627, -0.07122091, -0.002653785, -0.00880115, - 0.0036756643, 0.0062084226, -0.0010241537, 0.015411179, 0.018103331, - 0.02054862, -0.0361109, -0.042800993, -0.0138378665, -0.008877555, - 0.021505427, -0.024769573, -0.010066885, 0.0015782175, 0.023493836, - 0.0016467526, -0.0134512745, 0.014592382, -0.020076416, -0.022202356, - 0.002585386, 0.029699411, 0.0040746154, 0.023918333, 0.062745, - -0.011542779, 0.009684891, 0.04706487, -0.015004569, -0.008588708, - 0.06415957, -0.0045871264, 0.0373348, -0.02119506, -0.004578065, - 0.009207747, -0.028328406, 0.022290407, 0.01547654, 0.042562928, - 0.0810751, 0.05163025, -0.06659191, 0.011379691, 0.046370763, - 0.003462361, 0.011859649, -0.012714999, -0.03328021, -0.0101400595, - -0.06681924, -0.028036857, 0.02426977, -0.009426451, 0.002327271, - -0.00789357, -0.0075887567, -0.022242198, -0.06143916, 0.0048103016, - -0.034932144, 0.035863504, -0.03212007, -0.028836472, -0.027661921, - -0.006419531, -0.017291656, 0.008119577, -0.014582157, -0.009334221, - -0.016696109, -0.023043003, 0.01515322, 0.05121481, 0.031143362, - -0.034134563, -0.028703082, -0.009478814, -0.0188697, -0.021967474, - -0.037475284, -0.030727388, -0.020234462, -0.038183447, 0.0027947924, - -0.0028628923, -0.010794691, -0.020646496, -0.014740026, 0.0060551637, - -0.09686765, 0.022959707, -0.0038214962, -0.016688008, -0.014971821, - 0.0034941132, 0.0051430706, -5.319239e-4, 0.018119207, -0.028585574, - -0.0012393447, 0.026385168, -0.026299966, 0.008166087, 0.035087984, - -0.030097269, 0.028025089, -5.4742413e-4, 0.016791081, 0.017427105, - -0.006979142, 0.022238465, 0.005034785, 0.0081456555, 0.061003547, - -0.032493766, -0.011285697, -0.025760828, -3.3923413e-4, 0.050139744, - -0.022618849, -0.05254978, 0.021801274, 0.0013187265, -0.046121363, - -0.036612533, -0.029576657, 0.013940327, 0.016469846, -0.006292198, - -0.037237845, 0.017416984, -0.014627004, 0.0068720058, -0.017053371, - 0.007049197, -0.023129256, 0.028625205, 0.0068170005, 0.098696135, - -0.02657497, 0.018775031, 0.020627348, 0.040492315, -0.01304055, - 0.010975924, 0.031060541, 0.01971491, 0.014979905, -0.025790716, - -0.04683181, 0.0041391207, -0.033887126, -0.0135747045, -0.011347245, - -0.059913572, 0.04722239, -0.024639329, 0.030434003, -0.007832193, - 0.0029305012, -0.06245, 0.024907636, 0.0301284, 0.0388351, -0.047342055, - -0.020922614, 0.013411185, 0.06792613, -0.02905468, 0.026092581, - -0.0061925245, 0.049205128, 0.031165991, 0.044825062, 0.012225883, - 0.015765963, 0.01074084, 0.010692144, 0.011298573, -0.06563084, - -0.051952105, 0.010963143, 0.0020479185, -0.005818189, -0.019004248, - 0.0102285035, -0.030368662, 0.02623033, 0.015384759, 0.009494712, - 0.0124394065, -0.01885065, -0.033370126, 0.019013345, -0.0145776095, - 0.007789102, 0.0036711097, -3.578739e-4, -0.03221187, -0.022218887, - 0.041467924, -0.0037279204, -0.022357298, -0.06332962, 0.017031431, - 0.019927867, 0.01951072, 0.0023603514, 0.03018334, 0.02768761, - 0.042330973, 0.054765362, -0.042398795, 0.054754097, -0.09987231, - -0.012078589, -0.07028685, -0.0061771316, -0.009812311, -0.028917165, - -0.027509106, 0.010948846, 0.013598628, 0.0067080837, 0.0045283446, - 0.045625903, -0.002964407, -0.009905303, -0.022207502, -0.048833698, - -0.0042584846, 0.021291608, -0.028601404, -0.008982916, 0.031917617, - 0.019183699, 9.068008e-4, 0.057126667, -0.03180044, 0.0022721346, - -0.017580189, -0.011939473, -0.02558537, 0.014607048, -0.018205704, - -0.037935793, -0.0060655396, -0.019691225, 0.036914602, -0.01615749, - -0.045398332, 0.024452556, -0.0012264552, -0.04306478, -0.0022215447, - 0.021980627, -0.047577333, 0.031776268, 0.029393295, 0.07133686, - -0.026260937, 0.017050855, -0.022883005, -0.039513666, -0.0184624, - -0.044679202, 0.024029916, 0.08290648, 0.04203544, 0.043254167, - -0.025944347, 0.015663218, -0.019284494, -0.008872244, 0.0072182785, - 0.044374537, -0.059421472, 0.01730172, 0.025805037, 0.030059109, - 0.021708565, -0.021772092, 0.024517184, 5.976695e-4, 0.015821349, - -0.017177274, 0.007774689, 0.028298693, -0.040270895, -0.021966087, - 0.008970324, 0.04254271, -0.026241155, 0.007812042, 0.020881245, - 0.028017253, 0.018178277, 0.059437554, 0.0054127844, -0.016369635, - 0.056843612, -0.005466725, -0.018602774, -0.025261661, 0.037633356, - -0.022817213, 0.010551228, 0.031629845, -0.0046195183, 0.019237924, - 0.03165901, -0.0062007974, 0.01992038, 0.054520193, 0.0049279854, - 0.03071604, -0.034301646, -0.060258366, -0.046301246, 0.013612055, - -0.0046436675, -0.04741262, 0.10491582, 0.047460463, 0.036517955, - 0.0407029, -0.034949064, -0.010657463, -0.01286394, 0.010735518, - -0.06939552, -0.012176759, -0.028365975, -0.019596733, 0.021019975, - 0.009137192, -0.040882193, 0.004645958, 0.0055725016, -0.013874946, - 0.005350706, -0.031446602, 0.033434365, 0.04201306, -0.0025818115, - -0.0062276735, 8.093766e-4, 0.012328016, 0.018787144, 0.0023665382, - -0.011953316, -0.005930452, -0.022990113, -0.029752264, 0.051348057, - 0.0118197575, 0.010481164, 0.028989352, -0.025892517, 0.05054845, - -0.052687354, 0.040066592, -0.057945844, 0.009223372, 0.031638946, - 0.034245405, 0.027838409, 0.049792968, -0.0012795102, -0.02441289, - -0.038411114, 0.020914009, 0.019437322, 0.026406711, -0.033271912, - -0.008957751, -0.010322173, 0.007764429, 0.03842482, 0.022780206, - 0.010114187, -0.0087661715, 0.022702374, -0.014998866, 0.018736582, - -0.005747614, 0.049565557, -0.04275346, -0.009867404, 0.009439925, - -0.026440741, 0.029638428, 0.042471975, 0.046535384, -0.03396173, - -0.052410588, 0.0031084118, -0.0066271946, -0.03302043, 0.03964131, - 0.005596745, 0.008564961, 0.020859107, -0.05290364, -0.0043873005, - -0.0436624, -0.010751431, 0.034991078, -0.044985186, 0.027821828, - -9.145196e-4, -0.024505733, 0.008452489, 0.03931645, 9.530049e-5, - -0.05226343, 0.013189776, -1.8855289e-4, 0.017910086, -0.06381029, - 0.020634515, 0.049154945, 0.027192393, 0.016873034, 0.03699864, - 0.02506238, 0.050654918, -0.024717638, 0.0072682314, -0.019237867, - -0.013101082, 0.041019082, -0.0049979016, -0.025530962, -0.037251513, - 0.0154316975, 0.06423474, 0.02735353, 0.030059492, -7.0045935e-4, - 0.007928992, 0.03393569, -0.041160226, -0.049396012, 0.020273117, - -0.02695554, -0.007658478, -3.8409184e-4, 0.06566353, 0.026058672, - 0.01581804, 0.02248642, 0.018340489, -0.0083551705, -0.004000131, - -9.541461e-4, 0.0052710734, -0.0018779774, -0.03729925, 0.070069976, - -0.06546209, 0.061380487, -0.014207307, -1.4945971e-4, 0.028608523, - 0.019939892, -0.0106034, -0.031543538, -0.008908309, 0.03038791, - 5.881402e-4, -0.039161578, 0.018501678, -0.047027323, -0.03545071, - -0.035245076, -0.009174963, 0.021988697, -0.047014143, 0.06066786, - -0.02042829, -0.04830154, 0.06825871, 0.026861459, -0.034412894, - -0.003389148, 0.02399732, -0.015987815, 0.007405026, 0.060023505, - 0.00402288, 0.005041031, -0.0025315878, -0.01578674, -0.0057646097, - -0.022035008, 0.01390992, 0.046562225, -0.032910243, 0.020756379, - -0.0040723477, 0.020897899, -0.018382328, 0.019913616, 0.009800976, - 0.014353359, 0.01901679, -0.0435955, 0.037969876, 0.016978404, - -0.00230862, 0.042730045, 0.016308576, -0.006002611, 0.031330068, - 0.04468807, 0.05636015, 0.017952673, 0.052731548, -0.030213669, - -0.011134182, -0.005934499, 3.03425e-4, 0.057834756, -0.059703585, - -0.009482269, 0.004488259, -0.0061636264, -0.053730655, 0.036446553, - -0.014798682, 0.016917307, 0.007772385, 0.022818586, -0.006344668, - -0.014365666, -0.04579539, -0.015571638, 0.016435921, 0.047837306, - -0.03514298, 0.077284954, -0.034314692, -0.013606697, -0.048274323, - -0.009887931, -0.024598464, 0.042943526, -0.015656529, -0.039886355, - 0.0040870374, 0.03380821, -0.014636577, 0.012462496, -0.036535412, - -0.0828582, 0.030249495, -0.0154129835, 0.019852038, -0.014774873, - -6.7966967e-4, -0.014640571, -0.012227335, -0.009380929, -0.0152615765, - 0.008936256, -0.03563591, -0.036854517, -0.0020846436, 0.029846407, - 0.006121366, 0.0034411866, 0.021967517, -0.037217904, -0.035151917, - -0.021233136, 0.01869169, -0.025067888, 0.0076425187, -0.050966218, - -0.032321524, 0.038533673, 0.029509844, 0.033496495, 0.057854246, - 0.0038028779, 0.00966799, 0.03957417, 0.060175356, 0.018059095, - 0.060633134, -0.0031464028, 0.01652168, -0.0069214785, 0.05352759, - 0.07449701, 0.0032574914, 0.048790652, -0.012309243, -0.008650041, - -0.03146321, 0.02714911, -0.025835462, 0.030821567, 0.03597222, - 0.014218352, -0.018279102, 0.052444838, 0.006483349, -0.0440371, - -0.01756552, 0.0060907635, -0.010801467, -0.022825211, 0.0012843645, - -0.029052682, -0.03241356, 0.03715838, -0.035119787, -0.06377321, - -0.053741023, -0.026595164, -0.054729294, -0.005444166, 0.004461567, - -0.04322296, 0.0030531997, -0.0057346285, -0.0132977385, -0.01208365, - 0.003544176, 0.021581722, -0.012085328, -0.016388353, -0.046052504, - 0.0062916325, -0.007296028, -0.01943753, 0.0096249515, 0.0052612824, - -0.0124281375, -0.0293114, -0.011913591, -0.0030619584, -0.012440912, - -0.03450108, -0.011362519, 0.0051617105, -0.02744066, -0.011169224, - 0.028312406, 0.03792422, -0.0031778514, 0.021546632, -0.048662025, - -0.028054614, -0.0101098325, 0.013067568, 0.042189635, 0.06639238, - 0.0272758, 0.042393196, -0.024889814, -0.027152289, -0.017374288, - -8.395197e-4, 0.008310734, 0.015700385, -0.035581354, 0.040942196, - 0.03477902, -0.0020359557, 0.009355594, -1.3705684e-4, -0.0125487605, - -0.007047867, -0.0018044227, -0.020021064, 0.016949482, 0.020244226, - 0.034662154, -0.03640549, 0.039832223, -0.0073463973, 0.024728145, - -0.01992154, -0.01950021, -0.0061249076, 0.025774147, 0.046839558, - -0.014913865, -0.0071285623, -0.013345302, 0.034470048, 0.014797406, - -0.031033305, 0.010961628, -0.005022255, 0.02279639, -0.012475787, - -0.019518068, -0.023642464, -0.020617465, 0.014634203, -0.07161855, - 0.00831003, -0.043555755, -0.029091112, -0.0030196456, 0.007042776, - 0.003960413, -0.0066468325, -0.021348028, 0.011673474, 0.03825193, - -0.006296571, -0.0047847102, -0.02653005, 0.0075998595, -0.02656728, - 0.051170114, -0.06028161, -0.038358588, -0.04701769, -0.01651575, - -0.0187622, -0.05678656, -0.013711442, 0.080744065, -0.0018604412, - -0.036807504, -0.039265852, -0.06063724 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.01803964, + -0.010613173, + 0.030977111, + 0.009326504, + 0.009094656, + 8.2499784E-4, + -0.00974318, + -0.041227352, + -0.017374048, + 0.0011164132, + 0.010175754, + -5.751441E-4, + 0.0070986706, + -0.020767627, + 0.015134766, + -0.0070310924, + 3.4563307E-4, + 0.0063788784, + -0.0018509893, + 0.017117837, + 0.030673608, + -0.017646315, + -0.0140871685, + 0.016760739, + -0.012295716, + -0.0030614708, + -0.0028390314, + 0.019604376, + 0.0027143413, + 0.0017136772, + -0.02376524, + -0.002026462, + -0.0016389155, + 0.0177512, + 0.0057000984, + -0.0073704585, + 5.027021E-4, + 0.0032762997, + 0.021984644, + -0.015899705, + 0.005321644, + -0.02402814, + -0.008113316, + 0.007222623, + 0.0031215511, + 0.005985876, + 0.00791502, + 0.0053623286, + 0.008690351, + -0.029001158, + -0.020419851, + 0.007106759, + 0.0069704596, + -0.011408925, + -0.0040226365, + 0.0017417128, + -0.014868654, + 0.028845279, + -9.40115E-4, + 0.014331964, + 0.008974318, + 0.01799962, + 0.02690084, + -0.00872996, + -0.018813254, + -0.004827514, + 0.026980158, + 0.024086539, + 0.023101345, + -0.019703187, + -0.0068497993, + 0.017450012, + -0.017536895, + 0.008862966, + 0.010722528, + 0.022163924, + 0.0072181695, + 0.008310751, + -0.005189599, + -0.0016317877, + 0.024371566, + 0.042153228, + 0.0072133364, + 0.02906632, + -0.007338858, + 0.0047945105, + -1.6034376E-4, + -0.0062625827, + 0.011111814, + -0.0048106397, + -0.036364887, + -0.015743082, + -0.0080079865, + -0.008035574, + -0.008894401, + 0.009906958, + -0.0074103842, + 0.007156799, + 0.0024033913, + 0.009818624, + -2.1860279E-4, + 0.0154863065, + 0.011519531, + -0.011484673, + -0.006565785, + 0.010451203, + 0.0021099516, + 0.0011126677, + -0.008409308, + -0.0032910707, + -0.006335699, + 0.02173453, + -0.002571325, + 0.009360864, + 0.0023170388, + 0.021774523, + 0.012307356, + 0.0027583481, + 5.7262287E-4, + 0.02555188, + 0.02717578, + 0.010308483, + 0.027138233, + -0.011773047, + 0.019828804, + 0.017703934, + -5.3722307E-4, + -0.0047268625, + -0.0101161245, + 0.025705967, + -0.006797895, + -0.022118451, + 0.008832453, + -0.026957637, + 0.015761469, + 0.023800926, + -0.004308803, + -0.0095035415, + 9.082973E-4, + -0.007166285, + -4.866223E-4, + 0.030486628, + 0.002989261, + 0.024558997, + -0.024781406, + -0.0021417295, + -0.011211913, + -0.006689017, + 0.001641755, + -0.0065807295, + 0.023012163, + -0.04213023, + -3.161698E-4, + -0.0018495958, + 0.009712703, + 0.03385315, + -0.02666914, + -0.01865399, + 0.0054959557, + 0.01434801, + 0.013749302, + 0.0138882715, + -0.0027182964, + -0.027170544, + 0.02202794, + -8.9877105E-4, + 0.021851467, + 0.01057642, + -0.0067349686, + -0.007484137, + 0.012125523, + 0.036943164, + 0.0040422, + 0.021950813, + 0.04223367, + -0.005419186, + 0.0021149497, + -0.0013351974, + -0.0073868567, + -0.023176674, + -0.022488609, + -0.0121355355, + 0.0163668, + 0.0022886535, + 0.0088369055, + -0.013014942, + -0.001476723, + -0.015748244, + 0.018122002, + -0.0019134572, + -0.0022201117, + -0.024382854, + -0.0040696715, + -0.0030098036, + -0.0017080292, + -0.011507907, + -0.007182274, + 0.011867917, + -0.025281774, + -0.002920358, + -4.0006783E-4, + -0.014462856, + -0.031043401, + -0.00347654, + 0.020062849, + 0.046006653, + -0.0059276675, + 0.030622507, + 0.005050999, + 0.02285686, + -0.011854745, + 0.003808326, + -0.0033276968, + -0.020858392, + -0.007871266, + -0.0027541725, + 0.027706869, + -0.02172357, + -0.004360497, + 0.012458299, + 0.0054059, + -0.022401724, + 0.013822552, + 0.013724984, + -0.014274968, + -0.0251345, + -0.0044678864, + 0.020843867, + -0.032808326, + 0.007835262, + -0.01359763, + -0.0103425905, + 0.0065798922, + -0.02974034, + 0.010698011, + 0.01953813, + 0.03094887, + -7.781649E-4, + 0.040359877, + -0.02166418, + -0.0019367547, + -0.0058261775, + 0.025177212, + 0.0063009085, + -0.019215496, + 0.0043650987, + -0.016395865, + 3.1777806E-4, + -0.006667531, + 0.032117877, + -0.00797749, + -0.0026565695, + 3.7324778E-4, + -0.008466797, + -0.019959122, + 0.011483759, + -0.0013483108, + -0.0056358674, + 0.041202623, + -0.03475, + 0.0025829177, + 0.023728855, + 0.00594298, + 0.028519908, + 0.0035734565, + -0.0107749505, + 0.010470178, + 0.0040960326, + -0.010277437, + 0.0068801353, + -0.009490927, + -0.009250981, + -0.0145441275, + 0.01743833, + -0.017450897, + -0.012193041, + 0.017318986, + 0.012616547, + -0.013832095, + 0.007929942, + -0.00509144, + -0.020834899, + -0.0068490827, + -0.010726329, + 0.05115523, + -0.017604146, + -0.04871556, + -0.02171872, + -0.013741261, + 0.0053954585, + 0.027718328, + -0.015072428, + -0.005126806, + -0.009074646, + 0.0035072907, + -0.017649349, + 0.007909293, + -0.008919019, + 0.01477164, + -3.139662E-4, + -0.004617177, + -0.021872558, + 0.006305096, + 0.0056210887, + -0.0028041913, + -0.0046743792, + -0.01614395, + -0.021045437, + 0.0021114333, + -0.012654298, + 0.012382507, + -0.023782922, + -0.016511993, + -0.0065349936, + -0.0063831634, + -0.025085198, + -0.009296722, + 0.017891938, + 0.014742211, + -0.0052102185, + 0.017870925, + 0.002488981, + -0.0019765687, + -0.018356692, + 0.007086879, + -4.636209E-4, + 0.007636524, + 0.015885742, + 0.022444077, + -0.0040711462, + 0.0114748655, + -0.017696047, + 0.038753703, + -0.007753026, + 0.013710936, + -0.0050332895, + 0.0076151183, + -0.022019101, + -0.026013192, + -0.028342277, + -0.009939452, + -0.005251047, + 0.021789487, + -0.027454346, + 0.028359044, + 0.0013581418, + 0.0026594354, + 0.00409405, + -0.0070514325, + 0.0034520738, + -0.001230761, + 0.008537771, + -0.009110396, + -0.003391632, + 0.027029268, + 0.0076666474, + 0.03003032, + -0.017725606, + -0.0051107937, + -0.015330175, + -0.011658216, + 0.0041364897, + -0.013605772, + -0.0051818388, + -0.004951356, + -0.020684952, + -0.0015387376, + 0.008471689, + 0.030398885, + -0.0038999093, + -0.008184609, + -0.0022488616, + 0.009835096, + -0.030263929, + -0.0052142236, + -0.018567944, + 0.007179142, + -0.0048353067, + 0.003768966, + 0.026109045, + -0.025031982, + -0.014157361, + 0.03196464, + -0.008170214, + 0.006956987, + -0.015676053, + 0.0049911784, + 0.0037332636, + 0.025140503, + -0.02287417, + -0.0035993708, + -8.2710694E-4, + -0.02080139, + -0.0013512205, + 0.028436666, + -0.015928483, + -0.016731052, + -0.0034086108, + -0.012661245, + 0.017072031, + 0.011159923, + -0.00200289, + -3.0447647E-4, + -0.006991912, + 0.0031596343, + 0.007897245, + 0.024824528, + 6.144063E-4, + -0.0032241456, + 0.019279854, + 0.005668403, + -0.009384285, + -0.0074725235, + -0.0014657419, + 0.025103519, + 0.010426763, + 0.0050624153, + 0.017101802, + -0.014278391, + 0.021194316, + -0.007201587, + -0.0052239327, + 0.002950823, + -0.010580014, + -0.018202191, + 0.04379096, + 0.023078239, + 0.002168168, + -0.011652322, + -0.011695529, + 0.027035745, + 1.000918E-4, + 0.0029060782, + -0.0015523612, + 0.013659646, + -0.007943328, + 0.011169037, + -0.0020930397, + -0.009675071, + -0.023354223, + -0.023065967, + 0.026959887, + 0.008086939, + -0.0048558917, + 0.006377823, + 0.020970628, + -0.018223224, + -0.020197704, + -0.0041136625, + 0.011568256, + -0.0033279837, + -0.021547943, + -0.01718931, + 0.010294206, + 0.017428491, + -0.012573353, + -0.01089667, + 0.017618408, + 0.015149276, + -0.004245813, + -0.0055883722, + 0.014658922, + -0.020913158, + -0.0058084605, + -0.011869151, + 0.0012370251, + -0.0019508812, + -0.011520901, + 0.0046617775, + -0.0030043842, + 6.690977E-4, + -0.0055149067, + 3.057929E-4, + 0.0076610367, + 0.02664678, + -0.016848594, + -0.0114536, + 0.019507628, + 0.008478928, + -0.009749086, + -0.033533867, + -2.344684E-4, + 0.0066202367, + 0.009683337, + -0.007667434, + -2.9186974E-4, + 0.00413734, + 0.012952555, + -9.0016774E-4, + 0.0048760087, + -0.0030001048, + -2.6635834E-4, + 0.005801453, + -3.9310782E-4, + -0.010487956, + 0.020082429, + 0.004451832, + 0.0010036113, + -0.005315934, + -0.028692978, + -0.016140014, + 0.019144818, + 0.021300385, + 0.0043201162, + -0.015290237, + -0.016209044, + 0.007769885, + 0.0019490859, + 0.0013640472, + 0.0015544264, + -1.5401392E-4, + 0.006553843, + -0.0027333486, + -0.0033567792, + 0.0068451962, + 0.024490127, + 0.013164288, + 0.009570514, + -0.0105970595, + -0.004799998, + -0.022821898, + 0.0075446805, + -0.0017799675, + 0.012237624, + -0.012062743, + -0.016562197, + 0.027210152, + -0.0028186564, + 0.001623086, + -0.006477787, + -0.02740479, + 0.009500439, + -0.0035881104, + -0.007373063, + -0.010171429, + -0.020856932, + 0.013810378, + 4.5089738E-4, + 0.030705346, + 0.025046127, + -0.0094664255, + -0.008279072, + -0.018435128, + -0.0030625968, + 0.006528892, + 0.010644943, + 0.0010536131, + 0.004993389, + 0.027777195, + 0.006494261, + 0.01717058, + 0.0014145178, + -0.013770065, + -0.024747834, + 0.014494625, + -0.029585997, + 0.0030495978, + 0.019483916, + 0.0424853, + -0.0059955907, + -0.0038891276, + 0.018471718, + 0.013641878, + 0.016271088, + 0.005452205, + 0.012377034, + -0.0072289375, + 2.0516517E-4, + -0.0059604286, + -0.007810068, + -0.0068589184, + -0.0057103545, + -0.0031968204, + -0.01688857, + -0.011696434, + -0.009266094, + -0.010677689, + 0.006208899, + -0.020510377, + 3.8901024E-4, + 0.017347453, + -0.0014975531, + 0.007289613, + -2.5922686E-4, + -0.003831703, + -0.0035760247, + 0.02210303, + -0.004535528, + 0.0047449428, + -0.0026212882, + 0.009920567, + 0.025425553, + -0.0012111583, + 0.009075042, + 0.009496568, + -0.022968888, + -0.003994813, + -0.0106028225, + -9.4906276E-4, + -0.015967933, + 0.02413767, + -0.0020574806, + -0.0051621557, + -0.0013928681, + 0.013717909, + 0.013826272, + 0.005528248, + 0.006769406, + 0.011310641, + -0.012055296, + -0.02468849, + -0.027206058, + 0.017284006, + -0.0054853954, + -0.017447257, + -0.017503126, + 0.016937077, + 0.02043508, + -0.004852955, + -0.007755786, + -0.005267059, + 0.008747451, + -0.011698217, + 0.013005302, + 0.014361651, + 0.006784543, + 0.014412582, + -0.023463257, + 6.7462673E-4, + 0.0053147417, + -0.0025551368, + -0.034504667, + -0.004805345, + 0.012704501, + -0.007878605, + 0.0063310293, + -0.028451027, + -0.0061649643, + 0.0010924782, + 0.0035157502, + 0.0031670316, + 0.017871417, + -0.007399766, + -0.028919198, + -0.012347298, + -0.0026973854, + 0.00337685, + 0.012842018, + 0.0047516576, + 0.0074239513, + -0.0049820887, + -0.00638774, + -0.0030694802, + 0.002277868, + 0.0233785, + 0.022894613, + -0.007652944, + -0.002943007, + 0.011070188, + -0.0179501, + -0.0045508216, + -0.030058242, + -0.0012358744, + -0.0094043575, + 0.017765945, + -0.0029753866, + -0.034264598, + -0.0013693603, + -0.009468454, + -0.03710179, + -0.029488947, + -0.018630557, + 0.012870458, + 0.0050173234, + -0.018162357, + 0.031580366, + 0.0055517843, + 0.010651568, + 0.013145696, + 0.018083137, + -0.0036353723, + -7.7627104E-4, + -2.4020573E-4, + 6.961383E-4, + 0.0068190913, + -0.012885279, + 0.02903978, + 0.0012291387, + 0.014683076, + -0.023689868, + -0.0017822115, + 0.007349113, + -0.021465316, + -0.032181635, + -0.024576524, + -0.009815105, + 0.016034516, + 0.019654777, + -0.011328925, + 0.010493647, + 0.0060562706, + -0.017172063, + 0.0014554535, + 0.032778807, + 0.0016841312, + -0.0045712776, + -0.023069039, + 0.017472643, + -0.011790114, + -0.0011848584, + -0.011259929, + -0.005281686, + -0.014616609, + -0.0073610493, + 0.01132886, + 0.0025023886, + 0.002384139, + 0.0034993102, + 0.021146823, + -0.0014278924, + -0.02332879, + 0.0026777033, + -0.0057482314, + -0.031972717, + -0.0029034957, + -0.009259005, + -0.011934274, + 0.0063364687, + 0.013366693, + 0.010167472, + 0.0013018526, + -0.022917131, + -0.0010588039, + -0.001969701, + 0.010519097, + -0.001545056, + 0.01864095, + 0.028827902, + 0.009738599, + -5.2109646E-4, + -0.010517242, + 0.006310595, + -0.008400002, + 0.014639438, + -0.013322607, + -0.014139997, + 0.002124537, + 0.0013357584, + 0.038892083, + -0.016198607, + -0.015181106, + -0.0128480345, + -0.012432933, + -0.012395895, + -0.014148273, + -0.014345611, + 0.020388866, + -0.015796361, + -0.017064983, + 0.005078681, + 0.01248787, + -0.0045146034, + -0.0020881302, + -0.0040743644, + -0.007843962, + -0.027531799, + -0.011374023, + 6.8945234E-4, + 0.0090913605, + -0.0095166825, + -0.023392197, + 0.0010353179, + -0.02461079, + -0.018892748, + -0.025145933, + -0.013659933, + 0.0029928896, + 0.022974273, + 0.018317439, + 0.013568778, + -0.0053015063, + -0.0015968018, + -0.016984437, + 0.0174856, + -0.014219703, + -0.013676139, + -0.007993643, + 0.020856308, + 0.0018899684, + 0.014818033, + 0.02492454, + -0.007822006, + 0.025578277, + -0.01878748, + 0.015603452, + 8.48563E-6, + -0.009014577, + -0.023680627, + -0.0027522005, + -0.010640473, + -0.010011988, + 3.529039E-5, + -0.014210627, + -0.009684365, + -0.01910047, + 0.009727432, + 3.6549848E-4, + 0.018134391, + -0.0053374157, + 0.010072922, + 0.012944443, + -0.006174434, + -0.008829894, + 0.0120414775, + 8.292113E-4, + -0.016657226, + -0.012484621, + -0.00910386, + -0.021552159, + -0.0049635866, + 0.018898351, + -0.007160105, + 0.0077781673, + 0.0025528232, + 0.006631525, + -0.0027201527, + 0.0039782613, + 0.0016214912, + 0.0011168985, + -0.008722645, + 0.0036486203, + 0.011233357, + 0.0038196363, + 0.019608073, + -0.009061353, + 0.005369856, + -0.02435636, + -0.009723512, + -0.004745403, + 0.024633389, + 7.67692E-4, + 0.020036004, + 0.011343344, + 1.8623123E-4, + -0.0026365158, + 0.0050875093, + -0.003936382, + -0.0030555036, + -0.0019242757, + 0.014255496, + -0.015250611, + -0.020967277, + -0.007414437, + -0.008283702, + 0.00861023, + -0.0035562865, + 0.015871445, + -0.011266362, + 0.01792656, + 0.019501366, + 0.01771418, + -0.024183908, + 0.0037419074, + 0.0030150865, + 0.00946888, + -0.0035216133, + -0.009341007, + 0.02344244, + -0.012610036, + -0.033116274, + 0.0018185336, + 0.010757609, + -0.015115245, + 0.007909075, + -0.022217551, + 0.0027423855, + -0.026975827, + 0.029521005, + -0.0010855991, + 0.028475903, + -0.0011438072, + -0.0068706446, + 0.025884615, + -0.009848266, + -0.009535635, + 0.0139180785, + -0.008396737, + -0.015196424, + -0.03996146, + 0.010826741, + -0.016741103, + -0.013096027, + -0.022540161, + 0.04172015, + 0.0050407154, + 0.0018692991, + -0.023829505, + 0.006583891, + 0.010045147, + 0.009675233, + -0.01915349, + 0.010648813, + -0.0077613075, + 0.0035962774, + -5.695498E-4, + 0.0015457614, + 0.020932171, + 0.001912034, + -0.0017112783, + -0.0075431913, + -0.014631183, + 0.014694581, + 0.0016322142, + 0.0038642318, + -0.0037836796, + -0.015338277, + -0.013526732, + -0.0076168496, + -0.0037154383, + -0.014165866, + -0.016236302, + 0.004880065, + 0.01281867, + 0.030490506, + -0.005856526, + 0.027022935, + -0.017203515, + -0.02719091, + 0.002239502, + 0.017801948, + -0.0011005172, + 0.01569334, + 0.028913166, + 0.005847134, + 0.0029490318, + 0.0013074068, + 0.0062551387, + 6.5352843E-4, + -0.0018548389, + -0.029419215, + -0.0087345, + 0.020698627, + 0.004955352, + -0.0033420802, + 0.010749434, + 0.0010587446, + 0.02564272, + -0.019937608, + 0.0049194633, + -0.011342705, + 0.018530915, + 0.029293155, + -0.019845575, + 0.024493309, + -0.006193679, + -0.025012009, + -0.015255894, + 0.009442871, + -0.013604785, + 0.0020353794, + -0.0028861477, + -0.030656222, + 0.0050357534, + -0.024315879, + 0.016367435, + -0.014565571, + -0.011158061, + -0.007702103, + -0.010403925, + 0.0062268665, + -0.010556904, + 0.011801525, + -0.012895363, + -0.022569256, + 0.008323135, + -0.004395665, + -0.007743059, + 0.0042928266, + -0.0080171395, + -0.007453871, + -0.0068692965, + 5.4587575E-4, + -0.023986455, + -0.0036544446, + -0.009760924, + 0.021059295, + -0.021995401, + -0.017419415, + 0.0023721796, + 0.005341378, + 0.01061898, + 0.009104945, + 0.01688074, + -0.024359452, + -0.012611262, + 0.014405082, + -0.01583098, + -0.02991813, + 0.01867896, + 0.022499382, + -0.0014705806, + 0.008633688, + 0.01794644, + -0.022348655, + 3.471972E-4, + 0.015113472, + -0.0058594616, + 0.012554041, + 0.028750475, + 0.013869946, + 0.008252252, + 0.011973776, + 0.006545783, + 0.003464188, + -0.0028528594, + 0.004989303, + 0.010496609, + 0.0073012216, + -0.019231146, + 0.015984692, + 0.0025479803, + -0.011378831, + 0.017229566, + -0.0011389315, + 0.025412858, + -0.02300451, + 0.0244134, + -0.011080082, + 0.018633127, + -0.0082624145, + 0.03416552, + -0.013042356, + 0.012225093, + 0.0058336747, + 0.00403301, + -0.014882002, + 0.03094123, + -0.021843398, + -0.029547019, + 0.010825699, + -0.014499534, + -0.016506733, + 0.008486258, + -0.0074042296, + 0.016352609, + 0.018744728, + -0.008137501, + -0.015798625, + -0.018376393, + 0.009194098, + 0.011857903, + 0.0028506287, + 0.040485032, + 0.0036199556, + 0.0023914326, + -0.026749874, + -0.022619957, + -0.020441175, + 0.009654593, + -4.736667E-4, + 0.004482497, + -0.0017293867, + -0.0024534594, + 0.029162263, + 0.004566973, + -0.032354526, + 0.0065746424, + -0.0013015958, + -0.009672167, + -0.016514108, + 0.010676171, + 0.014266431, + 0.010398287, + 0.0059280386, + 0.015808696, + 0.023622792, + 0.012135716, + -0.0065916823, + -0.010673548, + 0.006145548, + -0.019793622, + 0.015463335, + -0.008942314, + -0.0070728227, + 0.036178663, + 0.037687853, + 0.021091457, + 0.0017939893, + -0.022884568, + -0.008046863, + -0.01751637, + -0.011245939, + -0.001752661, + 0.022220617, + -0.0067120865, + -0.0010635317, + 0.014541982, + -0.007383704, + 5.49158E-4, + -0.0029992696, + 0.02967089, + 0.012249033, + -3.1574306E-4, + 0.008670492, + 0.012514198, + -0.022250649, + 0.010113867, + 0.011053374, + 0.009207958, + 0.012463401, + -0.007942186, + -0.0018160793, + -0.010939309, + 0.004481322, + 0.001001976, + -0.02596228, + 0.0043521454, + -0.017769186, + 0.0103964405, + -0.001115993, + -0.00356335, + -0.025993904, + 4.3744967E-5, + -0.031725843, + 0.0105447415, + -0.005982833, + 0.008752656, + 0.02993313, + -0.003153185, + -0.0012953845, + -0.03198027, + -0.00881515, + -0.031051101, + -0.0054696742, + 0.006706724, + 0.0029033346, + 0.017640848, + -4.214782E-4, + 1.8014338E-4, + -0.009373359, + -0.027920013, + -0.012323314, + 0.01999383, + 0.032761645, + -0.008551036, + 0.037695196, + -0.006369851, + -0.021355607, + 0.0051973276, + 0.01824152, + -0.0075484803, + -0.008361726, + 0.0055486434, + 0.002655817, + 0.02277854, + 0.012552753, + 0.006610918, + 0.004865303, + -0.017203819, + 0.021998344, + -0.0047868015, + -0.009381287, + 0.0026052308, + 0.015254039, + 0.017333081, + -0.0047731115, + 0.03237304, + -0.012605493, + -0.013820019, + -0.0032266055, + 0.01929563, + 0.004644098, + -0.016681358, + -0.007936684, + 0.0011006164, + 3.595945E-4, + -0.009590947, + -0.016268976, + -0.014563657, + 0.018693693, + -0.0028261105, + -0.0118382, + 0.013172951, + -0.006414257, + 0.015368867, + 6.660026E-4, + 0.0027705028, + -0.005872825, + 0.0123658525, + -5.0346914E-4, + -0.022721443, + -7.5218984E-4, + -0.01108362, + -0.008755375, + -0.012477924, + -0.020735284, + -0.0020114405, + 0.029055279, + 0.025244528, + 0.023322973, + -0.0027794905, + 0.017960744, + 0.014786538, + 0.016751321, + -0.013416828, + 0.0047834823, + -0.017790595, + 0.010018647, + 0.02283423, + -0.0029648691, + 0.029024411, + 0.0021077024, + -0.005701657, + -0.017574955, + -6.513396E-4, + 0.017174775, + 0.02185545, + -2.45075E-4, + 0.019801766, + -0.01827853, + -0.0119563015, + 0.0036250888, + 0.010403296, + -0.033455376, + -0.01816634, + -0.007866954, + 0.01522187, + -0.013144249, + -0.00993453, + -0.016651066, + -0.0012780353, + 0.015856475, + -0.016592156, + 0.0010883496, + 0.002567747, + 0.028896378, + -0.0044455016, + 0.023450594, + -0.02708411, + -0.0036776306, + -0.012521935, + 0.016642362, + 0.032582432, + 0.00350728, + -0.00437688, + 0.012633677, + -0.005738145, + 0.009243803, + -0.007955146, + 0.004593213, + 0.015755635, + 0.016779605, + 0.010936046, + 0.004812782, + -0.020544525, + -0.016868839, + 2.6684682E-4, + 0.005577998, + -0.01268289, + 0.008270766, + -0.0044610277, + 8.6331926E-4, + -0.0038554803, + -0.0153498, + -0.014564801, + 0.010131402, + 0.008010284, + 0.010353225, + -0.007993631, + -0.003170435, + 0.007778727, + -0.020899892, + -0.0033746625, + -0.002205247, + -0.02734543, + 0.011914159, + -0.0061777825, + -0.01773336, + 0.006263458, + -0.016248796, + -0.0056534363, + 0.02475148, + -0.005949635, + -0.0070489813, + 0.010746377, + -0.00454483, + 0.011533508, + 0.03739442, + -0.012230177, + 0.0035747052, + -0.007489236, + -0.018575307, + -0.0048438506, + -0.009567451, + -0.018008232, + 0.007457646, + 0.007897959, + -0.002919165, + -2.0336952E-4, + -0.0059094583, + -0.014343574, + 0.0085809305, + 0.03422652, + -0.009461702, + 0.013543014, + 0.015295743, + 0.010820909, + 0.0021800823, + 0.018561378, + -0.01387604, + 0.0015352194, + 0.02599799, + -0.0055519156, + 0.017407142, + -0.017918006, + 0.007979778, + -0.008091219, + -0.008838238, + -0.002963766, + 0.011234686, + 0.006686002, + -0.007616564, + -0.011646282, + -0.011244604, + 0.0090832915, + -0.009999748, + -0.01641817, + -0.013564743, + 0.0026743822, + -0.002200324, + -0.0016190384, + 7.362372E-5, + 0.013608487, + 0.012026836, + -0.0062250355, + 0.01762474, + 3.2047115E-4, + -0.009897541, + -0.010178404, + -0.007019121, + 0.03119345, + -0.007496077, + 0.005481875, + 0.016088167, + 0.020867214, + 0.0133578135, + 0.0051528285, + 0.01159772, + -0.0089676045, + -0.0043663303, + -0.016345516, + 0.025409525, + 0.007647587, + 0.007500166, + -0.011472471, + 0.015674278, + 0.01164118, + 0.0027588643, + 0.007825296, + 0.001592928, + 0.010390822, + 0.0149429375, + 8.2229695E-4, + -0.0029514818, + -0.005311229, + -0.02283155, + 0.011692113, + -0.01302361, + 0.004605923, + 0.0056722476, + 0.008565179, + -0.0031344045, + -0.027624654, + -0.013595977, + -0.010381433, + -0.01644384, + 0.01765201, + -0.0060680066, + -0.019553624, + -0.0040984214, + -0.0018605316, + 0.009800295, + -0.025433952, + -0.02915373, + -0.028682115, + -0.008538651, + 0.02441735, + -0.010317017, + 0.0047274935, + 0.012358892, + -0.0011306055, + 0.0040248097, + -0.02082834, + -0.001400023, + 0.004985139, + 0.0141894845, + -0.0029835233, + 0.007729676, + 0.018473525, + 0.0028232606, + -0.010109005, + 0.018026168, + -0.015545064, + 0.029369324, + 0.0015353297, + 0.02587106, + 0.047340594, + 0.008016198, + -0.008140188, + -0.014238729, + 0.00990668, + 0.0025266567, + 0.023674546, + -0.01511327, + 0.024738189, + -0.0015206215, + -0.0025844364, + -0.0041885767, + -0.0045094118, + -0.02092078, + 0.014020392, + -0.0023522356, + 0.011077667, + 0.00110236, + -0.010602801, + -0.010475731, + -0.03328838, + 0.015546364, + -0.010696942, + 0.0039067487, + -0.014608306, + 0.0032854865, + 0.016393509, + -0.010075092, + 0.014006024, + -0.024160849, + -0.0070155254, + 0.019451229, + 0.007650792, + -0.032971963, + 0.012326659, + 0.0042319424, + -0.0014000584, + -0.0016918554, + 8.5199525E-4, + -0.014092202, + -0.016340327, + -0.018534862, + 0.01735288, + -0.014542234, + 0.019671218, + -0.009806691, + 0.014326689, + -0.01405673, + -0.0033817743, + 0.0011336976, + 0.015899174, + -0.026925288, + -0.010886505, + -0.01151292, + -0.013998851, + -0.0133683365, + 0.002771376, + 0.024818752, + 0.010836389, + -0.015609881, + 0.0013439719, + 0.009300288, + 0.0030018995, + 0.010658364, + -0.012782619, + 2.130543E-5, + 2.524469E-4, + -0.019021621, + 0.01829075, + 0.014610408, + -0.001329822, + -0.0017365557, + -0.0043697213, + 0.0038707452, + 0.0077568465, + -0.0055136085, + -0.0058889342, + 0.016451774, + -0.026141455, + 0.023922095, + -0.014263876, + -0.0071953097, + 0.009293123, + -0.015389315, + -3.0918609E-4, + 0.01713123, + 0.034476902, + -0.004948166, + 0.010766803, + -0.015327021, + -0.0016597294, + -0.009000612, + 0.024921818, + 0.004088861, + -0.0052095335, + 0.018889673, + 0.02844797, + 0.0041076974, + -0.018645436, + 0.024883501, + 0.020530714, + -0.009416242, + -0.018052418, + 0.026155489, + -0.0027484335, + 0.022922453, + 0.014676918, + -0.013595069, + -0.009813208, + 0.021860128, + 0.011301998, + 0.015098861, + 0.0061337524, + 0.012031418, + 0.004849112, + 0.014976466, + 0.0077271736, + 0.008942676, + 0.0029424666, + -0.03588967, + 0.0014386252, + -0.033775795, + -0.011991379, + 0.0044176904, + -0.021551048, + 0.022871956, + -0.00699086, + 0.023742247, + 0.019563083, + -0.021484125, + 0.006217966, + 0.018719368, + -0.0014691706, + 0.0049189683, + 0.0064821085, + -0.004214972, + -0.010209235, + -6.367367E-4, + -0.016970966, + -0.014416026, + -0.025888652, + 0.029082652, + 0.01065485, + -0.014025423, + -0.0046370802, + -0.018121582, + 0.0024988647, + 0.016058953, + -0.014315982, + -0.005618517, + 0.0023385223, + 0.018159987, + -0.011252345, + 0.004831985, + -0.01445957, + 0.004625867, + 0.0018805393, + -6.049502E-4, + 0.010372038, + -0.014214465, + 0.010555572, + -0.012001326, + 0.023220185, + -0.008274341, + -0.015290679, + 0.012929144, + 0.0067771203, + 6.345653E-4, + -0.0163947, + -0.03015317, + -0.00734089, + 0.014997651, + 0.0021225172, + -0.010450415, + 0.0029165116, + 0.008155932, + -0.012910834, + 0.019035393, + -0.025924131, + 0.00852961, + 0.0027769217, + -0.006445671, + -0.019833013, + 0.014045906, + -0.034972794, + 0.014946766, + 0.0066490667, + 2.8620643E-4, + 0.009196186, + -0.038085666, + -0.0015651075, + -0.0155701805, + -0.013038604, + 0.00485631, + 0.006497699, + -0.014969197, + 0.005927103, + 0.025490819, + 0.008173108, + -0.01892525, + 0.018588336, + -0.024983134, + 0.0040624593, + -0.009631112, + -0.010049922, + -0.026988147, + 1.655971E-4, + -0.008291939, + 0.020854298, + -0.004219472, + 0.020789903, + 0.014756125, + -0.0086456165, + 0.015960833, + 0.010312649, + -0.023336401, + -0.0042976853, + 0.022181546, + 0.010090921, + 0.020106135, + -0.029234536, + -0.011745533, + -0.013926598, + -0.004552222, + 0.015582557, + -0.01150174, + 0.0054368405, + -0.0014711766, + 0.030162832, + -0.022994481, + -0.0087535195, + -0.002822121, + -0.008252855, + 0.004839241, + -0.0011692175, + 0.007700045, + 0.013163577, + 4.88431E-4, + 0.012434771, + -0.007699239, + 0.018602805, + -0.037794713, + 3.0612297E-4, + 0.033691287, + 0.0011672311, + -0.012092597, + -0.007595665, + -0.016394213, + -0.009859767, + 0.01084965, + -1.453038E-4, + 0.0072516706, + 0.009645137, + 0.02183463, + -0.004543703, + -0.0058869636, + 0.0044026794, + 0.01507395, + 0.009497345, + 0.012515476, + 0.02184418, + -0.029051693, + 0.013865361, + 0.01907333, + -0.030963372, + -0.013073318, + 0.014749608, + 0.026399154, + -0.014553593, + -0.016310422, + 0.03509093, + -0.0022762613, + -9.463955E-4, + 0.005829306, + -0.022258673, + -0.015804447, + 0.015076724, + 0.013604822, + 0.0017061589, + 0.011395381, + 0.027932676, + 0.006206545, + 0.024896003, + -0.018125022, + 0.0072227484, + -5.148246E-4, + -0.012377145, + 0.0027908967, + 0.0324175, + -0.021963986, + -0.014013794, + 0.0058797835, + 0.0018755088, + -0.021633744, + -0.003991538, + 0.025357377, + -0.019615458, + 0.026895309, + 0.025436694, + 0.0074283113, + 0.0022274614, + 0.005619463, + -0.01557715, + 0.002987706, + -0.003153573, + 0.004492131, + 0.03276117, + 0.021082459, + 0.007936063, + 0.011475108, + -0.00887958, + -0.030644605, + -0.024101896, + 0.023696484, + -0.007539542, + -0.027550444, + -0.015699442, + -0.028686943, + -0.02076601, + -5.6832243E-4, + -0.0014917786, + 0.0010248739, + 0.017061038, + -0.016018756, + 0.012546258, + -0.007103005, + -0.010917626, + 0.008177473, + -0.0339625, + 1.8013667E-4, + -0.008308096, + 6.4059976E-4, + 0.004026655, + 0.00993811, + -0.03206035, + -0.008795484, + -0.011568201, + 0.0020286876, + -3.8534316E-4, + -0.0034348764, + -0.029542875, + -0.0022712413, + -0.020459142, + 0.0077963197, + 0.022497607, + 0.009247136, + 0.0069877836, + -0.0038703089, + 0.016367894, + -0.022571098, + 0.021675393, + -0.0121059, + -0.010303143, + 0.0037099647, + 0.03248309, + -0.020898176, + 0.006638263, + -0.0062369774, + -0.018194355, + -0.006985272, + -0.0026733554, + -0.020769272, + 0.04155789, + -0.020594116, + 0.018930519, + -0.023852093, + 0.008487607, + -0.007308602, + -0.010804941, + -0.00508147, + 0.0014897496, + -0.01051486, + 0.051088966, + -0.0104452185, + -0.016084196, + -0.015406891, + 0.015004602, + -0.0036917296, + 0.005975102, + 0.04384517, + 0.022945048, + -0.002352379, + 0.011798947, + 0.0068894634, + 0.0132847885, + -0.009642676, + 0.02037677, + 0.01117821, + -0.008313169, + 0.004356566, + -0.02680307, + 0.0012249361, + -0.01541401, + -0.026190698, + 0.017222388, + 0.01813168, + -0.0026451393, + -0.0031199094, + 0.006428946, + -0.045897216, + 0.0045463084, + -0.0037465554, + -0.002637964, + 0.013766849, + -0.004147231, + -0.012946514, + -0.029428266, + 0.010076842, + 0.012525797, + -0.006268435, + 0.011419242, + 0.011048604, + -0.008901954, + -0.0087823905, + -0.0067139296, + 2.7780412E-4, + 0.013936589, + -0.014901953, + -0.008155962, + -0.011166391, + 0.010961015, + -0.013251955, + -0.013574698, + -0.007529553, + 0.0065000374, + 0.011805279, + 0.005369952, + -0.008312794, + 0.0026873278, + 0.009211135, + -8.323522E-4, + 0.009742819, + -0.0089963535, + -0.008773155, + 0.0091937585, + 0.01160296, + 0.0068215043, + 0.012537535, + -0.035539623, + -0.0015755844, + -0.021764476, + -0.002813756, + -0.016923003, + -0.012484921, + -0.011591031, + 0.003068652, + -0.0063534533, + 0.010396081, + -0.04140013, + -0.04732985, + 0.002471969, + -7.807271E-4, + -0.0050901296, + 0.0066850884, + 0.014745732, + 0.016288882, + 0.01967298, + -0.011722322, + 0.0020270157, + -7.265095E-4, + -0.0017575504, + 0.015640995, + 0.02570906, + 0.0018388744, + -0.031096365, + -0.008341024, + 0.036379084, + 0.01841326, + 0.005314963, + -0.021149084, + 0.008661769, + -0.0022070534, + -8.169801E-4, + 0.0059410804, + -0.002617488, + -0.01718043, + 0.025672961, + 0.01319296, + 0.015372293, + -0.0095559135, + 0.0069128685, + -0.0036026037, + 0.009430859, + -0.005503044, + -0.009721405, + -0.0039049364, + -0.012100565, + -0.010857105, + -0.00236038, + -1.10406734E-4, + -0.009067243, + -0.012037529, + -0.010999428, + 0.009722182, + -0.015339068, + 0.0054204916, + -0.0066024717, + -0.0019769536, + 0.053089485, + -0.02259545, + 0.019956626, + -0.0010055589, + 0.0098062735, + -0.023086535, + -7.2981056E-4, + 0.004353288, + 6.0188E-4, + 0.027952507, + -0.008128215, + 0.0050024893, + -0.0034251362, + -0.0026817664, + -0.016873423, + -0.011723959, + 0.0056331735, + -0.013517174, + 0.0047099646, + 0.019553605, + 0.0034611628, + 0.00975587, + -0.021871096, + 0.0076705506, + -0.0023445755, + 0.008741748, + -0.009859439, + -0.005875413, + 0.0036195572, + 0.03471639, + 0.0074421666, + 0.040434312, + 0.0066617886, + -0.022023018, + 0.016406657, + -0.0013530354, + 7.610762E-4, + 0.0060829497, + -0.0129418345, + -0.0051563657, + 0.0037577439, + 3.1417984E-4, + -0.01279483, + -0.002767658, + -0.011593122, + 9.765708E-4, + -7.341729E-5, + 0.010369715, + 0.01619448, + 0.003618402, + 0.01577931, + -0.009612482, + -0.0072369487, + -0.0074369814, + 0.019599559, + -0.01264456, + -0.015893662, + 0.02074681, + -0.008812722, + 0.0016128749, + 0.0056252414, + -0.011401758, + -0.005911627, + -0.009412999, + -0.014910659, + -0.0066953185, + 0.012850911, + -0.016740922, + -0.0025082156, + 0.015664613, + -0.006807776, + -0.033574376, + 0.0011400615, + -0.0016296211, + -0.0036193624, + 0.006150022, + -0.011128845, + 0.0043563624, + 0.029546514, + -0.0116909025, + -0.019249137, + -0.00893483, + 0.013522782, + -0.0034019863, + -0.00613391, + 0.009641594, + -0.009476895, + -0.0011430178, + -0.0016558598, + -0.0098597435, + -0.0069136727, + 0.01686074, + -0.020194069, + 0.007921251, + 0.0030520102, + -0.014772265, + 0.0067295823, + -0.05675078, + 0.034362316, + -0.021531204, + 0.0030360587, + 0.023273423, + -0.00485344, + -0.012557278, + 0.005395246, + -0.018671542, + 0.0038235683, + -0.004045256, + -0.016015572, + -0.007679619, + 0.011701179, + 4.1416212E-4, + -0.029701777, + -0.0111120995, + -0.027507495, + 0.011818679, + 0.017133828, + -0.0033773836, + -0.018363608, + -0.0017397457, + 0.009993403, + 0.0072312825, + -0.018611988, + 0.012590971, + 0.013984607, + 0.010803019, + -0.0010074951, + -7.7333354E-4, + -0.013939587, + 0.0039280546, + 0.024121508, + 0.031468816, + 0.008695551, + 0.02503222, + 0.01919241, + -0.0063399985, + -0.023206767, + -0.0013976304, + 0.0020868185, + 6.576365E-4, + -0.0075797415, + -0.011579744, + -0.015165509, + -0.021547055, + 0.0030407545, + -0.022497173, + 0.01892681, + -0.01451218, + 0.00450407, + -0.02515653, + 0.00507887, + 2.141053E-4, + -0.0014685867, + 0.035202425, + 0.0083391, + -0.014188312, + -0.011163092, + 0.01318307, + 0.012113442, + 0.0055725602, + 0.0027905966, + -0.009281853, + -0.0037056918, + -0.01727806, + 0.011141248, + 0.021451863, + -0.007225268, + 0.0088611245, + -0.0030931558, + 0.007595217, + 0.022922983, + 0.007226656, + -0.041782767, + 3.793149E-4, + 0.025433365, + 0.018118618, + 0.019176083, + 0.022209307, + 0.0011071421, + -0.019161882, + 0.001511528, + 0.014422876, + -0.0031408088, + -0.02111047, + 0.02082912, + -3.8784434E-4, + -0.0018010634, + 0.025848271, + 0.008556534, + 0.004525349, + 0.0074330834, + 0.00478818, + 0.019420352, + 0.0017027446, + 0.040224127, + -0.0155086545, + 0.00338158, + -0.005885548, + 0.014357101, + 0.014456923, + 0.0074950927, + 0.017579041, + -8.713116E-4, + -0.0071448795, + 0.0038103594, + -0.008490245, + 0.019747846, + -0.032227494, + 0.0056638587, + -0.016814752, + -0.0068068984, + 0.008214783, + 0.0013203062, + 0.04034638, + 0.0052418965, + 0.013259307, + 0.020095369, + 0.02788151, + 0.020383283, + -0.021346804, + -0.016643101, + -0.041676026, + 0.0031040807, + 0.02152778, + 0.02823121, + 0.02331515, + 0.026869794, + 0.010667117, + -0.00286659, + -0.024731923, + -0.013290313, + 0.016115353, + 0.0101910755, + 0.01548631, + -0.0071460744, + 0.0074329893, + 0.0025501645, + 0.001731994, + -0.027136208, + -0.008524418, + 0.012677082, + -0.0197608, + -0.006552973, + -0.0070562363, + 0.02932761, + -2.2631147E-4, + 0.027871689, + 0.0188797, + 0.04091743, + -0.014426858, + 0.0047907564, + 0.026832065, + 0.019087698, + -0.033751097, + 0.0016840756, + 0.003971352, + -0.0026688552, + -0.010089164, + -0.003934088, + -0.01184767, + -0.0023288785, + 0.0095175505, + 0.02629881, + -0.0052319453, + 0.014537844, + -0.025618998, + 1.00508114E-4, + 0.007233176, + -0.02093464, + -0.0018638931, + 0.008653525, + -5.869552E-4, + -0.01491664, + -0.012334894, + -0.010332575, + -0.0075631435, + -0.019870691, + -0.008200936, + 0.02396261, + -0.012699503, + -0.009647047, + 0.014690246, + -0.01926205, + 0.0027624231, + -0.008800876, + 0.0037008345, + 0.0066564796, + 0.0062841545, + -0.026907166, + 0.0122651085, + 0.0066232197, + 0.007437508, + -0.0076759695, + 0.01630876, + -0.02772737, + -0.010185764, + 0.011208356, + -0.008936858, + -0.0017828697, + -0.0069335354, + 0.017367974, + 0.0012632494, + 0.039355423, + 0.041504666, + -0.005811215, + 0.013234963, + -0.03918264, + 0.007014024, + 0.017508278, + 0.019564591, + -0.0069829347, + -0.005674573, + -0.014384714, + -0.001193785, + 0.021776529, + 0.014499315, + -0.024821179, + -0.009282589, + -0.018019494, + 0.017268028, + -0.020850655, + 0.02138668, + -0.009113612, + -0.008048682, + -0.0015675335, + 0.02503612, + 0.009891992, + 0.009655163, + 0.018797413, + 0.0010754758, + 0.025059158, + 0.020167736, + -0.0051416336, + -0.010600637, + 0.0016093326, + -0.013303562, + 0.013778315, + 0.030292874, + 8.143676E-4, + 0.0017586192, + 0.02040157, + -0.02030795, + 0.025646344, + 0.0013311716, + 0.010228942, + -0.0014304272, + 0.0033772564, + 0.014465662, + 0.003743396, + 0.03460549, + 0.020747833, + 5.577494E-4, + -0.0043010805, + 0.013203917, + -0.023215, + 0.020227477, + 0.008044495, + 0.0030890114, + 0.04682572, + 0.012768561, + 0.01623352, + 0.022845307, + -1.13540755E-5, + -0.0133577585, + -0.00869562, + 0.002548892, + 0.011043459, + -0.019174773, + -0.013535132, + 0.014679187, + 0.018343035, + 0.018462518, + 0.008245348, + -0.00442966, + -0.0069763265, + 0.022610111, + -0.027428303, + -0.017010275, + -0.03565758, + 7.3016103E-4, + 0.018531295, + 0.009834387, + 0.0066647674, + -0.002179044, + 0.013892302, + -0.0070928275, + -0.0073629343, + -0.017505536, + 0.0014662272, + 0.020914389, + 3.8508954E-4, + 0.009274693, + 0.0124151725, + -0.0087960465, + 0.017879944, + -0.020473655, + -0.008296598, + 0.011812775, + -0.028720096, + -0.025219765, + -0.024648117, + 0.0027511998, + -0.014531522, + 0.015442361, + -0.008804905, + 0.0066167396, + 0.016272333, + 0.045515783, + 0.03466255, + -0.008156459, + 0.0076207942, + -0.0023107035, + 3.2060043E-4, + -0.009202928, + 0.012081575, + -0.0042981217, + 0.027163625, + -0.018211206, + -0.006155917, + 0.014026235, + -0.031574868, + -0.0052196546, + 0.020602746, + -0.009112944, + 0.0044545946, + -0.024886169, + 0.020857235, + -0.0056242724, + -3.7048123E-4, + -0.003300452, + -0.026163744, + -0.0020501735, + -0.0076929103, + 0.012703543, + -0.03111442, + 0.018066337, + -0.02452287, + -0.028979603, + -0.019635081, + -0.0016949456, + -0.011463065, + 0.00608501, + 0.0137537895, + -0.010924418, + -0.004116458, + -0.0015872889, + 0.0077184555, + -0.023353493, + -0.013573369, + -0.0033490679, + 0.015989106, + -0.007967605, + -0.032992356, + -0.01907881, + 0.017471617, + -0.025148144, + 0.019824304, + 0.010629777, + 0.0045561697, + 0.021435076, + 0.007958196, + -0.010112355, + 0.008390128, + 0.016393866, + 0.0024860601, + -0.01635995, + 0.0025011993, + 0.010533937, + 0.009452378, + -0.010547321, + 0.009013875, + -0.007331956, + 0.006226256, + -0.00680876, + 0.013530482, + 0.002006551, + -0.016583007, + 0.011496334, + -0.0052558053, + 0.021996012, + 0.006870508, + 0.019376615, + 0.010696445, + -0.039941978, + -0.02870814, + 0.0021813894, + -0.0060982574, + -0.010085331, + -0.0053276652, + -0.016446065, + 0.003074049, + 0.0018026447, + 0.008379122, + 0.015366317, + -0.018050877, + -0.013397122, + 0.019892655, + 0.00862458, + 0.002997591, + -0.0066110147, + 0.0044609657, + -0.018122615, + -0.0083904015, + -0.002642384, + 0.03430561, + 0.0024710824, + -0.008401337, + -0.052301005, + -0.014849886, + 0.007219542, + -0.004594222, + -0.018374976, + -0.010845035, + -0.010287913, + -0.023553355, + 0.0053817383, + -0.009604705, + -0.011695483, + -0.014300284, + -0.0017250486, + -0.016280575, + 0.008112631, + 0.014513214, + -0.0045797, + -0.0053993897, + -0.037094124, + -0.0071786703, + 0.011578972, + 0.01217811, + -0.0063807587, + -0.02380258, + -0.004251087, + -0.014741073, + 0.015547294, + -0.014730069, + 0.015380121, + -0.010039269, + -0.0012372258, + -0.0032341296, + -0.026535781, + 0.007548613, + -0.001860934, + -0.008793714, + 0.007374343, + 0.016067153, + -0.0019692695, + -0.0060948227, + 0.015152708, + -0.01045759, + 0.010795381, + -0.006200858, + 0.025275055, + 0.0017330721, + 0.008721723, + -0.007110655, + -0.014497806, + -0.02060849, + -0.0077823745, + 0.025381424, + 0.015403207, + -0.008327198, + -0.015188726, + -0.0064710896, + 0.014147143, + -0.0044319844, + -6.589836E-5, + -0.0075709424, + -0.009137523, + 0.031795904, + 0.013140163, + -0.007522899, + -8.9205895E-4, + -0.023476914, + 0.017187068, + -0.009888211, + 0.0022019218, + -0.0042216503, + 0.008667807, + -0.009944219, + 6.069019E-4, + 0.0071785734, + -6.05828E-4, + -0.017628513, + -0.0049700704, + -0.0063209278, + 0.01575588, + -0.004548505, + 0.017122164, + -0.003847816, + -0.003086573, + 0.011521538, + -0.005305182, + -0.006980074, + -0.007572006, + -0.013449631, + -0.02224125, + -0.0022270808, + -0.027015286, + -6.876239E-4, + 0.015720392, + -0.0027925768, + -0.013444585, + -0.025625598, + 0.008976295, + 0.003344699, + -0.016850153, + -0.004891177, + -0.023116283, + -0.015312352, + -0.013299546, + 0.0048444206, + 0.0017723329, + 0.0054071047, + 1.1587041E-4, + 0.023332566, + 0.014549945, + 0.013978454, + -0.017791988, + 0.0139135355, + -0.02308425, + 0.010765262, + 0.019152097, + 0.012045041, + 0.010514392, + 0.0038200938, + -0.018940667, + 0.008968405, + 4.211855E-4, + 0.018953292, + -0.0017753094, + -0.011458552, + 0.029250087, + 0.013875338, + 0.011774787, + 8.627078E-4, + 0.0111468425, + -0.007726636, + 0.009126288, + 6.1922846E-4, + -0.0010097917, + 0.037116226, + 0.005309071, + 0.018346122, + 0.0019770511, + -0.008388533, + -0.011091394, + -0.026272591, + 0.018908069, + -0.008877715, + -0.029872386, + 0.006661054, + 0.005009531, + -0.0104768695, + 0.004926381, + -0.00892289, + -0.012071581, + 0.0018426732, + -0.007915903, + 0.021455785, + -0.0072386675, + 0.026825702, + 0.024079276, + 0.003650935, + 0.022413988, + -0.005163195, + -0.016688421, + -0.014763411, + -0.004449119, + 0.014587193, + 0.0027410893, + 0.008221292, + 3.7157765E-4, + 0.029596442, + -0.027002623, + -0.008349537, + -0.00904534, + -0.011902353, + -0.00278393, + -0.0142355105, + -0.008871548, + -0.019345159, + -0.023344588, + 0.01638905, + -0.011740628, + 0.00498897, + -0.019070538, + -0.0060435664, + -0.027950248, + -0.020505153, + 0.008749045, + 0.0029462401, + -0.002625099, + -0.012173741, + 0.010782108, + -0.0012437692, + -0.037063103, + 0.0164136, + -0.006228844, + -0.0078359265, + 0.035883285, + 4.424076E-4, + 0.0056474004, + -0.004553829, + 0.0029010647, + -0.03020709, + -0.003021401, + -0.022007063, + -0.0031245828, + 0.02333485, + -0.0033286978, + -0.0070023006, + 0.024970675, + 0.020173969, + 0.004942242, + 0.028458256, + -0.005842582, + -0.0061851325, + 0.0023174332, + -0.0048940517, + -0.0062042763, + 0.028287828, + 8.4759097E-4, + 0.018128136, + -0.020785015, + 0.025368547, + -0.033490118, + 0.026484575, + 0.037428472, + 0.015372767, + -5.9481297E-4, + -0.016716717, + 0.018788904, + 0.017179273, + 0.002272134, + 0.0032105122, + -0.006998271, + -0.005386386, + 0.013194462, + 0.014478899, + 0.004936332, + -0.034717433, + -0.022549875, + 0.009244134, + 0.0066066063, + 0.019081768, + 0.007894063, + -0.017789153, + 0.002689201, + 0.010576771, + -4.906582E-4, + 0.022294678, + -0.023039931, + 0.026670052, + -0.015990606, + 0.0059314566, + 0.015433205, + -0.018225843, + -0.024752429, + -0.031213623, + -0.008713659, + -0.006440291, + -0.010311189, + -0.008970391, + -0.016004752, + 0.012849663, + 0.01422386, + -0.017827092, + 0.006169854, + -0.011443984, + -0.011194814, + 0.00769462, + -0.014278234, + 0.00890068, + 0.017188385, + -0.0037389612, + -0.0059348783, + 4.1837143E-4, + 0.0033588908, + -0.0049945945, + -0.028391847, + -0.012598834, + 0.0034600866, + 0.019328667, + 0.004584506, + 0.009636614, + -0.013148556, + 0.002846554, + 0.0017098968, + 0.02014202, + -0.0015664021, + -0.006158365, + -0.031074233, + -6.1956013E-4, + -0.018783432, + 0.0035379387, + -0.010141722, + 0.010788265, + -0.0055702296, + -0.025693154, + 0.0033416077, + 0.012403937, + 0.0048897984, + 0.020777816, + -0.011807266, + 0.011122367, + -0.009990523, + -0.0176257, + -0.0054756636, + 0.0037210423, + -3.0494464E-4, + 0.0016680461, + -0.025423987, + 0.005971068, + -0.028525317, + 0.015630877, + -0.023778562, + -0.0016861038, + 0.005093463, + 0.010686232, + 0.014613139, + -0.01691415, + -0.021716306, + -0.0056582154, + 0.006838077, + -0.014810027, + -0.0052447636, + -0.012017127, + -0.014664269, + 0.018305812, + -0.009071318, + -0.013183229, + -0.044088926, + -0.008633059, + 0.012759234, + 0.007910612, + 9.904517E-4, + -0.03612985, + -0.00880599, + 0.023108615, + 0.008351342, + 0.00857292, + 0.011339128, + -0.008484174, + -0.0030817168, + -0.013946825, + 0.011122801, + 0.0046876543, + 0.018318895, + -0.004835638, + -0.0071199024, + 0.0015351307, + -0.003735505, + 0.013474709, + -0.015595025, + 0.023573553, + 0.013830831, + 0.0069166273, + 0.009473179, + -0.022571204, + 0.0041262344, + 0.007606216, + -0.004850381, + -0.027926529, + 0.016025206, + -0.016129285, + -0.006863279, + 0.013139469, + -0.016096434, + -0.018556619, + -0.0044142245, + 0.032888032, + -0.03138287, + 0.0062739956, + 0.032884695, + 0.010995414, + 0.017946279, + 0.0048196376, + -0.013685405, + -0.0055192597, + 0.008784143, + -0.022859503, + -0.011091158, + -0.012627261, + 0.021138627, + 0.0276553, + 0.0093873385, + -0.013343438, + 0.037379358, + -0.033054385, + 0.0071386956, + -0.010384421, + 0.012730002, + 0.010312488, + 0.006541998, + -0.0053713997, + -0.004865619, + 0.008688168, + 0.017125485, + -0.03662064, + -0.002123847, + -0.018770045, + -0.009523072, + -0.01844628, + -0.0037773626, + -0.0027546098, + -0.01159367, + 0.011765094, + -0.0020204962, + -0.006735239, + 0.011625485, + 0.0011419613, + 0.026965812, + 9.90923E-4, + -0.0017896374, + 0.0017035684, + -0.001035877, + 0.014116288, + -0.033200353, + 0.013913971, + -0.047849823, + 0.0025041162, + 0.029666008, + 0.016976645, + -0.0030747976, + -0.015936607, + -0.00739521, + -0.0033256325, + 0.03229234, + -0.0047871526, + -0.024972625, + 3.5218967E-4, + 0.046337336, + -0.028021552, + 0.028792055, + 0.023348758, + 0.015574131, + -0.002123848, + 0.01318671, + -0.0035705694, + -0.019137915, + 0.0055028787, + -0.010406267, + -0.004185985, + 0.023911254, + 0.0024253528, + 0.012865286, + 0.018026816, + 0.0013689629, + 0.010287165, + -0.017708022, + 0.0066681597, + -0.0023125517, + -0.004182826, + -0.0027606806, + 4.3388948E-4, + 0.0035751828, + 0.004592186, + 0.011314035, + 0.010993716, + -0.011481539, + 0.0027239881, + -0.01873329, + -0.028957315, + -0.025588093, + 0.011430094, + 0.012848911, + -0.007929531, + -0.017566191, + -0.013292166, + 0.01202981, + -0.008145874, + 0.008619933, + -6.324233E-4, + 0.013799924, + -0.005958589, + -0.02610693, + 0.010988425, + 0.013094493, + 0.0016826021, + -0.02105257, + -0.021898154, + 0.011789697, + -0.025907295, + -0.009005138, + 0.009833328, + -0.013304153, + 0.010238737, + 0.030784033, + -0.013749562, + -0.013759636, + 0.026776152, + -0.006866581, + 0.010066848, + -7.767324E-4, + -0.0088694515, + 0.005372782, + -0.0038506764, + 0.0012519325, + -0.015798341, + -6.7021546E-4, + -0.002101916, + 4.258737E-5, + 0.013270147, + -0.007224792, + 0.0023376562, + 0.0035469963, + -0.017127797, + 0.020459307, + -0.0041249427, + 0.010787942, + 0.012418965, + 0.007456719, + -0.0143155, + -0.01133562, + -0.00442315, + 0.0030378383, + -0.030392446, + 0.018463997, + 0.0030125591, + 0.015500649, + -0.0023640823, + -0.01757799, + 0.009844434, + -0.0025782106, + -0.016571574, + -0.0031453115, + -0.0026607546, + 0.001780048, + 0.010895678, + 0.010503514, + -0.0036960144, + 0.012065166, + 0.019050373, + 0.018800372, + -0.00698087, + 0.008111544, + 0.0034434411, + -0.014256564, + -0.04733606, + 0.001297051, + -0.020613302, + -0.013371815, + 0.0019482495, + 0.007321114, + -0.020976737, + -0.013348244, + -0.01480403, + 0.03280107, + 0.005736013, + -0.034007058, + 0.011669863, + 0.0011776463, + -0.013414385, + 0.012062907, + 0.0023096143, + -0.02897648, + 9.6186675E-4, + -0.015941983, + -0.025505992, + -0.0011578702, + 1.1356885E-4, + -0.017885469, + -0.010795123, + -0.011828616, + 0.015572132, + -0.008897307, + 2.4967038E-4, + 0.0086266445, + 0.023115957, + -0.007870662, + 0.0028150773, + -0.030450543, + 0.03582138, + 0.013267963, + 0.005693035, + -0.013654667, + 0.0051866276, + 0.0106978975, + -0.002086231, + -0.02002838, + 0.027075533, + 0.019269813, + 0.0075442735, + 0.045215778, + 0.0038235246, + 0.003077506, + -0.018898703, + 0.005795233, + -0.0011046842, + 0.0017163992, + 0.010108621, + -0.0010327874, + 0.009862909, + 0.015495828, + 0.0027174745, + -0.0069195055, + -0.024774633, + 0.0035198755, + -0.013335764, + 0.0030086932, + 0.025038624, + -0.002568985, + 0.01106691, + 0.0025420329, + 0.01091319, + 0.009725256, + -0.011908682, + -0.014413431, + 0.007564163, + 0.01213469, + -0.033368737, + 0.009584612, + 0.0037113507, + -0.025062464, + 0.013249222, + -0.009293428, + -2.1215835E-4, + 0.0023374225, + 0.005744929, + -0.0067941416, + 0.010613134, + -8.929781E-4, + -0.008326018, + 0.007145153, + 0.0030039395, + -0.015127785, + -0.023517212, + 0.020599375, + 0.037245862, + 0.0017202784, + -1.7914428E-4, + -0.009046118, + 0.06259682, + 0.005852812, + -0.017667994, + 0.0012318654, + 0.029820023, + 0.0052907695, + -0.014235161, + -0.008617087, + 0.009428784, + 0.0374162, + 0.0021359765, + 8.758835E-4, + -2.161429E-4, + -0.03343287, + 0.012290653, + -0.026250293, + 0.0031889488, + 0.007677464, + -0.007645922, + 0.012398855, + -4.026052E-4, + -0.004825355, + 0.0045830067, + -0.0073188595, + -0.0060789445, + -0.02482942, + -0.029457655, + -0.0069489167, + 0.0103966575, + -0.009399927, + -0.0036471596, + -0.020703044, + -0.018819446, + 0.013298874, + 0.021470359, + 0.009173437, + -0.016976561, + -0.008094367, + -0.011204017, + 0.017640078, + -3.178455E-4, + -0.009025098, + 3.5534133E-4, + 0.029519532, + 0.01048056, + -1.9638584E-5, + -0.017042484, + 0.020385468, + -0.021431055, + 0.030098492, + -1.4877379E-4, + 0.022192838, + 0.008464482, + 0.01194921, + -0.01466538, + -0.0018525207, + 0.0014519504, + -0.011718118, + 0.011203389, + -0.011277143, + -0.008535327, + -0.028689034, + -0.015383632, + 0.006421997, + -0.006723583, + -0.02595902, + 0.023671588, + -0.039279647, + 0.011827517, + 0.01759759, + -0.011472777, + 0.009540643, + -0.018170359, + -0.018720163, + 2.7017476E-4, + -0.02077024, + -0.023044923, + 0.021203082, + 0.0040616873, + 0.001825864, + 0.00931767, + -0.020974481, + -0.028037386, + 0.006856734, + -0.0046229344, + 0.013538147, + -0.01270907, + 0.0051531466, + -0.0025136024, + -0.008024749, + -0.016757285, + -0.0053506037, + 0.028639516, + -0.012568553, + -0.0067135724, + 0.013966723, + 0.0010241016, + -0.01721426, + 0.02741859, + -0.012085347, + 0.018054735, + 0.004925815, + -0.0021814255, + 0.030947734, + 0.027500464, + 0.008143607, + -0.0058584055, + 0.010553927, + -0.008797618, + 0.015158752, + -0.011056028, + -0.003950304, + -0.016761236, + -0.0020389145, + -0.03084687, + -0.028235955, + 0.029772317, + -0.027126024, + 0.011562916, + -0.010556121, + -0.020126138, + 0.014369391, + -0.015043413, + 0.008240269, + -0.018193034, + -0.007414172, + 0.0049721445, + 0.006168655, + 0.013827705, + -0.008833992, + -0.022920597, + -0.018549886, + 0.002233339, + 1.4532394E-4, + 0.018590134, + 0.00854402, + 0.025699837, + -0.006316298, + -0.019422341, + 0.021416696, + -0.004464014, + -0.0022520698, + 0.0017904383, + -0.008691422, + 0.017034903, + 0.007792456, + 0.023069028, + -0.005373895, + 0.010508026, + 0.0027115613, + 0.019914942, + 0.026045483, + -0.008594187, + -0.0318824, + 0.014149634, + -0.00553955, + -0.024770072, + -0.012852661, + 0.023490725, + 0.017419973, + 0.02267361, + -0.016087137, + -0.017539842, + -0.0026359602, + 0.008557848, + 0.0048390273, + -0.011598426, + 0.020208871, + 0.017990774, + 0.012534149, + -0.011136417, + 0.0038114258, + -0.0038074993, + 0.0044927048, + -6.9144083E-4, + -0.04594169, + 0.023648268, + -0.014140525, + -0.026297837, + -0.030581094, + -0.007578157, + 0.002447307, + 0.015350235, + -0.014132665, + -0.0045128656, + 0.0014667474, + -0.01497728, + -0.02478388, + -0.011728774, + 0.004499461, + -0.014571333, + 0.008991246, + -0.0067648166, + 0.015912438, + 0.018349187, + -0.02364771, + 0.022599826, + 0.0065307347, + -0.002560247, + 0.016232107, + 0.0100518605, + 0.014734865, + 0.0027457348, + 0.008943569, + -0.00844245, + -0.0017026054, + -0.01623584, + 0.01831758, + -0.023914624, + 0.0077084964, + -0.018941412, + -0.019266702, + -0.003471717, + -0.00783101, + -0.017231742, + 0.005061627, + 0.022074692, + 0.005494887, + -0.019105762, + 0.021453382, + 0.017571667, + -0.026431391, + 0.0013427741, + -0.021110028, + 0.00596303, + -0.00387657, + -0.0025768739, + -0.0101021, + -1.4552123E-4, + -0.008864869, + 0.0051968372, + -0.009285423, + -0.009309806, + 0.0011865139, + -0.018628195, + -0.022049638, + 0.022869557, + -0.02494682, + -0.009965233, + 0.0028519058, + 0.011860994, + 0.0071056345, + -0.0023874873, + 0.0016295612, + 0.011873871, + 0.008551592, + -0.020700024, + 0.0046436177, + -0.018915534, + -0.003128425, + 0.028861972, + 6.176902E-4, + 0.014388628, + 0.028772362, + -0.010174299, + -0.018799892, + 0.0067829033, + 0.018695077, + -0.008570538, + 0.006532097, + 0.0071670017, + -0.014619764, + -0.020812497, + 0.044596273, + -0.025161196, + -0.008831056, + 0.018075408, + -0.010448817, + 0.012270128, + -0.009578925, + -0.0019349285, + 0.005567936, + 0.005917444, + 0.002197354, + -0.017367752, + 0.013401949, + 3.0512075E-4, + -0.021789957, + -0.0073614963, + -0.025604403, + 0.013730896, + -0.022585908, + 9.080265E-4, + -0.0222295, + 0.008760482, + -0.0021273855, + -0.004894885, + 0.025126256, + 0.0056428807, + -0.0038578915, + -0.004598605, + -0.018510342, + -0.014238125, + 0.008104645, + -0.0055820146, + 0.01876495, + -0.012889207, + -0.039924346, + -0.0026509261, + -0.019964816, + -0.016290586, + -0.0217377, + -0.02413931, + -0.004058024, + -0.0049162526, + -0.0021739516, + -0.017736219, + -0.030900082, + 0.021992944, + -0.01319159, + 0.023586882, + 0.002896734, + 0.007122619, + 0.005773311, + 0.039963853, + 0.0072635207, + 3.8181266E-4, + 0.0047679124, + 0.0018779137, + -0.009411695, + -0.014764977, + 0.008679515, + 0.03191564, + 0.008283253, + 0.037328094, + 0.008251175, + 0.01348842, + 0.009408161, + -0.006475605, + -0.024243105, + -0.033175968, + 0.029067662, + 0.03297224, + 0.018672697, + 0.01891521, + -0.00830877, + -0.019312117, + 7.0653675E-4, + -0.0035812815, + -0.0075517464, + 0.0044081165, + 0.018473608, + -0.011847336, + 0.0082436735, + -0.019212997, + -0.005675629, + 0.0013618842, + 0.002033895, + 0.027677953, + 0.03406826, + 0.0018627213, + -0.008823122, + -0.0039928374, + -0.021692902, + -0.02291091, + -0.0036320437, + -0.025162494, + -0.005038827, + 0.008253579, + 0.02213987, + 0.0067229257, + 3.7968782E-4, + 0.019694148, + 0.008844469, + 0.005656149, + -0.006345975, + 0.012528833, + -0.006430469, + 0.022349466, + 0.03787525, + 0.030520568, + -8.4502844E-4, + 0.009828134, + 0.013448618, + -0.010795761, + -0.008522354, + 0.048808273, + -0.019004006, + 0.02518202, + -0.012357412, + -2.9300622E-4, + -0.011179324, + 0.01679269, + 0.0023627614, + 0.013485384, + -0.005204804, + 0.013135279, + 0.007181033, + -0.0010956511, + 0.017020652, + 0.03063769, + 0.028558625, + -0.00881673, + 0.003053104, + -0.004462056, + 0.017604351, + 0.0038195923, + -0.007967878, + -0.0036012393, + 0.014179915, + -0.02392135, + -0.010642892, + 0.025737476, + 0.020312835, + 0.008755564, + -0.019510414, + -0.02203449, + 0.016858043, + 0.019658828, + -0.009836175, + -0.02369036, + -0.0070267296, + 0.0013869028, + -0.0012516053, + 0.0120715145, + -0.008137513, + 0.018436082, + -0.011454529, + -0.0040340726, + 0.0010497667, + 0.029510858, + 0.007869419, + 0.00442942, + -0.018021459, + 0.007948331, + -0.013545064, + -0.0012958917, + -0.008833982, + 0.005332631, + 0.001928891, + -0.010609954, + -0.042282213, + 0.038150042, + 4.188349E-4, + 0.02450137, + -0.0045926366, + -0.03437157, + -0.0115618, + -0.026126608, + 0.021668468, + 0.008044955, + -0.021387573, + -0.02617255, + 0.015203285, + -0.030457499, + -0.01652721, + 0.0016368096, + -0.023726223, + -0.0060057617, + -0.009803, + -0.011516273, + -0.0041449657, + -3.2671227E-4, + -0.019096177, + 0.0013949509, + 0.011564482, + -0.017301925, + 0.0045769694, + -0.011376341, + -0.007936652, + -0.013683289, + -0.00654703, + -0.0117892735, + 0.016094333, + 0.01679655, + -0.023619646, + -0.014131835, + 0.0063959137, + -0.019054739, + 0.018033408, + -0.010051587, + 0.018537883, + 0.006478292, + -0.003300852, + 0.0010502867, + 0.008669749, + -0.02698955, + 0.00873189, + 0.018822772, + 0.007980722, + 0.009593107, + 0.0037216302, + 0.0033064128, + -0.023934849, + 0.01284537, + -0.007826635, + -0.0017388054, + -0.006323835, + -0.021578565, + -0.030040229, + -0.019200161, + -0.0059263166, + -0.005439453, + 0.017142296, + -0.005904962, + -0.0018016576, + 0.005270906, + -0.0014992518, + -0.02318272, + -0.01388347, + -0.01254139, + 0.013727093, + -0.013818854, + 0.043194078, + 0.025626143, + 0.005281608, + -0.011896298, + -0.009558378, + 0.008473365, + -0.027233679, + 0.0069489866, + -0.003915474, + -0.008446823, + 0.019026183, + 0.016398849, + 0.013855314, + -0.01794468, + -0.034176823, + -0.006488642, + 0.012896371, + -0.005990242, + -0.010748946, + 0.010679774, + -0.013226145, + -0.0053695003, + -0.015187222, + 0.023262572, + -0.024679955, + -0.003990863, + -0.0036153253, + -0.019116633, + 0.010780581, + 0.0014351332, + 0.008989049, + -0.0073403423, + 0.045498047, + 0.012897592, + 0.029234966, + -0.010597857, + 0.027481083, + 0.013560169, + 0.0055335783, + -0.0036750077, + 0.045177463, + 0.02146395, + -0.006111711, + -0.022497155, + 0.010201096, + 2.03808E-4, + 0.011534154, + -0.031959854, + 0.0058278986, + 0.025570761, + -0.018031703, + -0.006742592, + -0.0015348775, + 0.007120289, + 0.005898802, + -0.0044405237, + -0.0024064532, + -0.021803094, + 0.018711524, + -0.0035457828, + 0.014170495, + -0.0073309205, + -0.03440794, + 0.014787369, + 0.002522015, + -0.008517994, + -0.011723049, + 7.6211E-4, + -0.008520053, + -0.016183771, + 0.0104836095, + -0.011482292, + 0.016345784, + -0.0019243764, + 0.013150439, + 0.015931498, + -0.009983136, + 0.010473595, + 0.00477712, + -0.015472034, + -0.0054728924, + 0.008819407, + 0.0034651586, + 0.030967712, + -0.016937492, + -0.023486713, + 0.021155126, + 2.8827676E-4, + -0.0145672085, + -0.0029833529, + -0.014742161, + 0.0026626477, + -0.041563213, + -0.03135224, + -0.00774467, + -0.004501617, + 0.024246238, + -0.0031571847, + 0.008794659, + 0.0043594954, + 0.004618842, + -4.564396E-4, + -0.0018027287, + 0.009285149, + 0.0025517568, + 0.02135631, + 0.018225476, + -0.009018471, + -0.0069992444, + 0.02239069, + 0.022048885, + -0.005740109, + -0.0045754877, + -0.011715477, + -0.024406282, + -0.006795356, + 0.0047285175, + 0.0022924652, + -0.008743615, + -0.020997321, + 0.0033726885, + 0.011574088, + -0.029709935, + 0.0147298, + 0.031963766, + 0.016681517, + -5.712622E-4, + -0.009092858, + -0.010131022, + -0.0064942925, + -0.0068123587, + -0.019706033, + -0.0040653627, + -0.005454293, + 0.0023907819, + -0.001148134, + -0.008349111, + -0.004299798, + -8.4154795E-5, + -0.0033547282, + -0.008347457, + 0.011071488, + 0.0016591437, + 0.015755674, + 0.012137665, + -0.011810438, + -0.015083424, + -0.01756172, + 0.02845723, + 0.005764911, + 6.881333E-4, + 0.023112057, + 0.0061405078, + 0.008025347, + 0.005643657, + 0.00754908, + 0.011802449, + -0.021727534, + -0.009724192, + -2.6747427E-4, + -0.015292406, + -0.010131707, + 0.023955816, + -0.0105021335, + 0.0065748203, + -0.03243269, + -0.02845692, + 0.011538168, + 0.0065385723, + 0.020165732, + -0.0051322384, + -0.011218075, + -0.017953217, + 5.9988837E-5, + -0.017656488, + -0.0022414837, + -0.006569546, + -0.015508448, + -0.013816947, + 0.032548904, + -0.009397295, + -0.010770404, + -0.016340721, + 0.017542623, + 0.023470642, + -0.008735811, + 0.019141985, + -0.0011806509, + -0.007963319, + 0.012396724, + -0.013724934, + 0.0031812175, + 0.024849448, + 0.01343891, + 0.0021069983, + -0.004826129, + 0.017013041, + -0.017175224, + -3.0056274E-4, + 0.019746885, + -4.811881E-4, + -0.019605825, + -0.023907619, + -0.0075502517, + 0.009988814, + 0.041421752, + 0.010345973, + -0.004363708, + 0.0020760535, + -0.0065831076, + 0.019709317, + 0.016895574, + -0.026861636, + -0.029083697, + 1.8257368E-4, + -0.0018183398, + -0.016068934, + 0.006050436, + -0.012990764, + -0.016281454, + 0.005994779, + -1.221794E-4, + -0.01507871, + 0.019702593, + 0.011681909, + 0.018496895, + 0.007984051, + -0.020271186, + 0.023396695, + 0.049723063, + 0.018108293, + -0.019088345, + -0.017761996, + -0.001261013, + 0.015222492, + 0.013250691, + 5.826671E-4, + 0.017309152, + -0.008668903, + -0.007741591, + -1.2562123E-4, + 0.020410346, + 0.0068373806, + -0.021042066, + -0.009218294, + 0.006012711, + -0.0053874706, + 0.02211187, + -4.5587547E-4, + -0.011657062, + -0.009155525, + -0.009765524, + -0.0027231525, + 0.015411835, + 0.0052485177, + -0.015035338, + 0.003993152, + 0.0014657846, + 0.012751971, + -0.00173514, + -0.0143125085, + -0.003050243, + -0.010858464, + 0.008514631, + -0.0041089132, + 0.0038117804, + 8.2548347E-4, + 0.011775316, + 0.020841464, + -0.012515887, + 0.002286102, + -0.0018724138, + -0.025412837, + -0.0067836284, + -0.0022522449, + -0.029285738, + 0.0056389733, + 0.014961993, + -0.020372657, + 0.01626324, + -0.009498213, + -0.001236826, + -0.01820858, + 0.0037836083, + 0.012995159, + 0.008843213, + -0.036494993, + 0.015222014, + 0.022504892, + 0.014409653, + -0.002872414, + -0.01951491, + -0.010072747, + 0.004644348, + -4.4171652E-4, + 1.9099163E-4, + 0.012094034, + -0.007945449, + -0.0011704402, + 0.009646171, + -0.013076523, + -0.020657757, + -0.0124309035, + 0.025680829, + -0.01790855, + 0.004821097, + -0.012211399, + -0.0066177454, + -0.0064889803, + -0.010962435, + -0.022026476, + -0.0025812958, + -0.003652366, + -0.0021414082, + 0.025827704, + 0.0025558055, + 4.6026756E-4, + -0.0050929408, + 0.0125423875, + -0.014129609, + 0.0025110878, + 0.020326694, + -0.009749042, + -0.011729843, + 0.041815083, + 0.004319458, + 0.007663495, + 0.002146516, + -0.0012443294, + -0.0018291789, + 0.0066359187, + -0.014701399, + -0.01354564, + -0.002143507, + -0.03142565, + -0.044641152, + 0.006169108, + -2.4617792E-4, + 0.021468429, + -0.002155478, + 0.0043285065, + -6.570208E-4, + -0.027709007, + -0.015704677, + -0.0029494597, + -0.013542736, + -0.030913917, + -0.006623634, + -0.013904791, + 0.02508437, + -0.008448356, + 0.0038804903, + 0.022461928, + -0.0063826335, + -0.0077999136, + -0.038557358, + -0.0038508696, + 0.0046893265, + -0.010268256, + -0.005600351, + 0.0047498834, + 0.021159548, + 0.015646452, + -0.020394178, + -0.021443358, + 0.016655263, + 2.4839988E-4, + 0.021443073, + -0.039727133, + -0.010116379, + 0.002396086, + 0.0051900055, + 0.026890993, + 0.008617023, + 0.013514449, + 0.00940153, + 0.022378543, + -0.021234905, + -0.013763836, + -0.016973954, + 0.0030008263, + -0.012921472, + 0.01025102, + -0.017801704, + -0.045668498, + 0.009523206, + 0.010122874, + -0.019191202, + -0.023740923, + 0.014851648, + 0.0015890273, + -0.011491885, + -7.130253E-4, + 0.0029189906, + 0.027768062, + 0.024963865, + 0.0052203443, + -0.0017278775, + -0.014483464, + -0.01251488, + 0.019642971, + -0.019528298, + 0.026289023, + -0.010608895, + 0.003388346, + 0.001516126, + -2.929327E-4, + 0.0072416672, + 0.024067203, + 0.00874885, + -0.0036519521, + 0.002112666, + 0.005569821, + -0.019182406, + -8.4037386E-4, + 0.025952525, + -0.010689204, + -0.026964795, + 0.019271702, + -1.2620434E-4, + -6.680423E-4, + -0.019890582, + 0.016356507, + 8.567766E-5, + 0.009369984, + -0.008236923, + -0.014941624, + 0.007992036, + 0.024437346, + 0.0024759902, + 0.020380512, + 0.016748609, + 0.034996293, + 0.005414751, + 8.1712607E-4, + 0.021310357, + -0.019869754, + -0.020235054, + -0.001438201, + 0.023280067, + -0.008960728, + 0.0067194807, + -0.015083783, + 0.0022137822, + 0.008671851, + -0.0041941484, + -0.0154236015, + 9.6280116E-4, + 0.041053988, + 0.02981963, + 0.0013289937, + 0.01692475, + 0.016755175, + 0.0061252755, + -7.107528E-4, + -0.0038550948, + 0.023356281, + -9.6517656E-4, + -0.004077695, + -0.003143279, + -0.021625873, + 0.0072777956, + -0.015587992, + -0.0289436, + -0.03235684, + 0.009808103, + 0.0087674465, + 0.015637957, + 4.6440784E-4, + 0.023247797, + -0.017056862, + -0.007091437, + 0.006987434, + 0.010266487, + -0.009051003, + -0.012359838, + -0.012638977, + 0.0046070754, + 0.0064952434, + -0.021773662, + -0.0098482445, + 0.015721375, + 0.014426736, + 0.0071829525, + -0.006773011, + 0.015240498, + -0.010803995, + 0.004319625, + -0.016457837, + -0.006779066, + 9.106922E-4, + 0.030525513, + -0.0049533593, + 0.0074194293, + 0.021392394, + -0.045596275, + -0.02471569, + 0.007056097, + -0.017149555, + -0.00854816, + 0.011937809, + 0.02069612, + -0.015039161, + -0.015816929, + -0.014661881, + 0.009390199, + 0.021732286, + -0.0011417887, + 0.015992222, + -0.04186613, + -0.011745268, + -0.021023627, + -0.020689094, + -0.026011465, + 0.028917607, + -0.030820433, + 0.0051199743, + -0.0074436152, + -0.016595762, + 0.0059729056, + 0.012135587, + -0.01150738, + -0.007864022, + 0.010524793, + 0.015579999, + 0.028734671, + 0.00844483, + 0.029263565, + -0.023937704, + -0.024423076, + 0.0025892712, + -0.0032206518, + -8.4182026E-4, + -0.013101593, + 6.7747466E-4, + -0.020049484, + -0.0019872999, + 0.0106582055, + 0.02370943, + 0.0080762105, + -0.02035375, + 0.00978392, + -0.010308281, + 4.1684997E-4, + 0.0023353433, + 0.0055469954, + 0.0020484368, + -0.017771587, + -0.009602748, + 0.012099901, + -5.0788146E-4, + -0.004950452, + -0.006736362, + -0.017930692, + 0.0015863174, + 0.009600332, + 0.023965513 ], - "paletteEmbedding": [ - 0.027186155, -0.009848653, 0.035936616, -0.012436522, 0.03383163, - 0.04954691, 0.029661082, 0.04304518, -0.01998428, 0.06562096, - 0.013356785, -0.019594537, 0.009901042, -0.029492714, -5.570286e-4, - -0.013416102, -0.042698596, -0.0015212361, -0.04060032, -0.01994859, - 0.002347337, 0.044060003, -0.023847602, -0.034412052, -0.017863631, - 0.018236147, -0.053237706, -0.02752414, 6.6877285e-5, 0.020343544, - 0.035389338, -0.038587783, -0.009648067, -0.005809184, -0.033775, - -0.01803802, -0.0014346914, 0.02843686, -0.06728216, -0.009285469, - 0.039751153, 0.0037642096, 0.01143392, -0.050540145, -0.028114973, - 0.018973606, -0.025185198, 0.017708825, 0.023536531, -0.0234487, - 0.046693865, -0.029335363, 0.0050371177, -0.030338868, 0.068892315, - 0.040524352, -0.014779406, 0.020226164, 0.02401465, 0.057571553, - -0.029750869, 0.06355642, 0.0044937106, 0.02208039, -0.043058675, - -0.03778085, 0.05626349, 0.041249394, 0.0047947643, 0.031724572, - 0.0071825967, 0.015353226, 0.009925724, -0.04752528, -0.008106014, - -0.0060537467, -0.05714608, 0.017808909, 0.023652038, -0.029117, - -0.0027718262, 0.031906877, -0.040932894, 0.0075364113, 0.007402052, - 0.0082748085, -0.040460523, 0.035734765, -0.034070596, 0.014236843, - -0.010147327, -0.04041775, -0.031133423, -0.08439309, -0.03935059, - -0.006398489, 0.029623332, 0.03287306, 0.010538668, -0.011864347, - 0.0036351345, 0.033888325, -0.0335397, 0.060655612, 0.03971718, - -0.022345098, 0.026441481, 0.016121259, 0.016084354, 0.024850685, - -0.010758611, 0.0059972857, -0.0044750427, 0.01691701, 0.010825723, - 0.016191568, -0.031662524, 3.543017e-4, -0.029756486, -0.0063404557, - 0.06263963, 0.018857121, 0.024096165, -0.016718518, 0.015716199, - 0.04527813, -0.038504638, -0.016006146, -0.009432255, -0.015547828, - 0.06516815, -0.003157845, -0.002962674, -0.00363804, 4.1596868e-4, - 0.062480822, -0.021286648, -0.04887814, -0.008390387, -0.0070790374, - 0.039819483, 0.04226164, 0.04682539, 0.022618027, -0.009420628, - -0.018325737, -0.007161202, 0.03003417, 0.0179184, -0.013387126, - 0.020684784, -0.015356939, -0.066254064, 0.08382703, -0.008649162, - -0.036569074, -0.018480243, 0.075025395, 0.036251206, -0.0025755623, - 0.026359826, 0.012577718, 0.02480795, -0.033550564, 0.037251163, - 0.011442568, -0.0375465, 0.018399475, 0.007684691, -0.001473702, - -0.026159214, -0.033656117, -0.00527705, -0.027808921, 0.006113645, - -0.052772533, -0.008245, 0.022610875, -0.031455677, -0.005951874, - -0.01708757, -0.0099664265, -0.018228654, -0.028509846, -0.05225927, - -0.037092175, 0.00671976, -0.0097365165, 0.010309121, 0.03430175, - 0.0036943636, 0.0035258788, -0.017136099, 0.050524715, -0.043628745, - 0.046806004, -0.04615598, 0.020665925, 0.026974486, 0.017515795, - 0.003616808, 0.012787446, 0.009319516, -0.0023594252, -0.012885556, - 0.06702379, 0.00279396, -0.009922507, -0.046723306, 0.0131486645, - 0.0020691417, -0.021063961, -0.03592606, -0.008366642, -0.019101113, - 0.012764328, 0.002870642, -0.012013603, 0.015885305, -0.004647928, - -0.04131678, -0.02004021, -0.056936927, -0.005260386, 0.022045176, - 0.016012358, 0.042866733, 0.0815878, -0.0011030248, -0.08041201, - -0.029273255, 0.03185973, -0.013474319, -0.0067395587, 0.0077351686, - 0.039499223, 0.0011330682, -0.018302606, 0.0011523872, -0.006093518, - -0.0045087975, 0.010318172, 0.03921154, 0.0428773, -0.027859058, - -0.0050052986, 0.051599924, 0.010721971, 0.0073044566, 0.048509017, - -0.023746962, 0.02494201, 0.011773505, -0.03330118, -0.013055868, - -0.055606827, -0.0011540089, 0.019980375, -0.017048946, 0.022361726, - 0.023788983, 0.03884586, -0.0372356, -0.021293523, -0.033600923, - 0.009644003, 0.0166656, 0.01956978, -0.010871418, 0.041917097, - 0.06345907, -8.0065534e-4, 0.031495977, -0.025903454, -0.032387357, - 0.05028709, -0.06553121, 0.038778838, 0.037151292, -0.02725294, - -0.05194874, -0.017882248, -0.008300421, -0.045654636, -0.05599607, - 0.0051086624, 0.014382083, -0.03898534, -0.06075885, -0.0034689514, - -0.01649556, 0.032978006, 2.0849628e-4, 0.011104033, -0.046589807, - -0.006533195, 0.055071868, 0.041472856, 0.028280232, -0.053611256, - 0.04102182, 1.0334906e-5, -0.030904137, -0.010925453, 0.018712873, - 0.060179885, -0.01680345, 0.05258281, -0.0042500813, -0.08336113, - -0.036077578, -0.020620147, 0.027372591, -0.01852851, -0.023856511, - -0.0019785946, -0.047444478, 0.017972311, 0.018229472, 0.046302266, - 0.02196042, 0.028253192, -0.0023219967, -0.050874665, 0.0762587, - 0.019556798, 0.051351212, -0.0033871566, 0.0112166945, -0.006520756, - -0.03253067, -0.03874727, 0.023631101, 0.011605115, -0.0049334923, - -0.06718967, 0.036577564, -0.02504922, -0.013143743, 0.027912052, - 4.8874825e-4, -0.019410908, 0.03929307, 0.032078613, -0.023903817, - -0.021762054, 0.002145936, 0.04977536, 0.030424455, 0.026941875, - -0.04007238, 0.010273137, -0.027688367, -0.03377577, 0.021291109, - 0.0090233, -0.012942765, 0.016679967, -0.009390939, 0.03387822, - 0.039483722, -0.03443496, 0.09766414, -0.0017689785, 0.00940159, - -0.022930646, 0.0011619804, 0.062270116, -0.024608353, 0.01104124, - 0.02551857, -0.019447971, -0.005693464, 0.021725647, -0.012857612, - -0.025495242, -0.0022187622, 0.0048780004, -0.02783907, 0.025727382, - 0.049066104, 0.03970279, -0.021276647, 0.0064877677, 0.05854443, - -0.027846927, 0.025485523, -0.02018471, 0.01123122, -0.06998928, - -0.012914862, 0.026216608, 0.009608581, 0.009722845, -0.08146965, - -0.026237806, 0.00394776, 0.016986318, -0.014507321, -0.041930836, - -0.023536952, -0.012242692, 0.0099202655, 0.02586746, -0.0042938753, - -0.012323438, -0.035779953, 0.006090787, 0.048367713, -0.04599009, - -0.044893146, 0.021599513, -0.022810325, 0.031662565, 0.022953006, - 0.068715684, -0.038626943, 0.024996769, 0.027189285, -0.02439385, - -0.042412, -0.028095696, 0.013120372, -2.3731415e-4, 0.0052484805, - 0.019327061, 0.004472433, -0.0075099776, 0.063091956, 0.012710113, - 0.0053942394, -0.025986983, -0.014488949, -0.031563736, -0.038977478, - -0.0023656948, 0.0629728, 0.035771966, -0.027416458, -0.02521825, - 0.057631336, -0.006046519, 0.03236632, 0.019241486, 0.07091083, - -0.032123737, -0.064381056, -0.00686296, -0.032432593, -0.014364645, - -0.030820705, -0.058050934, 0.0014824562, 6.48553e-4, -0.041891515, - 0.031050289, 0.009400927, -0.012550602, 0.02919884, 0.03351592, - -0.051540367, 0.058424823, -0.010435824, -0.05308751, -0.021365564, - -0.037122633, 0.029729113, 0.0062310924, 0.017802205, -0.034306232, - -0.03122719, -0.04775028, -0.027035533, -0.006677822, -0.046713386, - -0.03612773, 0.015838964, 0.08512783, -0.0018491436, 0.008636411, - -0.062425703, 0.04156184, -0.024891574, -0.027784636, 0.012816151, - 0.011630263, 0.042971227, 0.0057481243, 0.01751923, -0.012927128, - 0.008048686, 0.055215687, 0.023008766, 0.047235552, -0.053818088, - 0.039593585, -0.012094626, -0.0121973725, 0.019630538, 0.0033039425, - 0.010971517, 0.017981479, 0.048637386, -0.04774074, -0.06583901, - -0.024822434, -0.053877585, -0.057256464, 0.0014810784, -0.029016133, - -0.037406713, 2.2734763e-4, -0.040232446, -0.009948261, -0.032013044, - 0.014086426, -0.0033714739, 0.03775763, 0.052617624, -0.045010787, - 0.013778937, -0.008550272, 0.028230175, -0.038237, 0.01143895, - -0.009389517, -0.02406751, -0.031136213, 0.06311723, -0.022527559, - 0.0014262955, -0.004204019, 0.012020456, -0.027359087, 0.036138188, - 0.04360861, -0.006590694, -0.045677148, -0.01171167, 0.02484022, - -0.010035731, -0.008353384, 0.07765574, -2.4228239e-4, -0.06716835, - -0.009221274, 0.0444753, -0.055829335, -0.05669718, 0.046669804, - -0.011647142, 0.023065459, -0.06961495, 0.029561441, 0.004678837, - 0.035808448, -0.048796725, 0.021446342, -0.03635181, -0.016795877, - 0.027335094, 0.021159701, 0.030683227, -0.065161, -0.041235883, - -0.003072445, 0.01728005, -0.030133395, -0.01874536, -0.013728644, - -0.009168888, -0.016933126, -0.05570026, 0.0035009896, 0.014267864, - -0.015867509, -0.040220376, -0.008637822, -0.0058473544, -0.015233733, - -0.0488888, -0.0031653107, -0.007062303, -0.016338082, -0.07907079, - 0.019105267, 0.07440588, -0.03314858, 0.0067160754, 0.0048106746, - 0.009732189, -0.043422516, -0.016192062, 0.017445581, 0.016825706, - -0.019992659, -0.0029791768, -0.046087444, 0.0066618808, -0.003178892, - -0.047554042, 0.07026036, 0.006431602, 0.015549019, -9.043276e-4, - 0.0146982465, 0.0031513844, 0.0031044884, -0.025490912, 0.017373608, - 0.035488095, -0.054982398, 0.007647333, 0.038386323, -0.03423027, - -0.039116018, -0.04317396, 0.07201381, 0.015071196, 0.05232392, - 0.0124355685, -0.01596492, 0.024723167, -0.067103855, -0.019712785, - 0.013247468, 0.009605504, -0.02046452, -0.010894404, -4.4852606e-4, - 0.023416385, -0.019336615, 0.018882623, -0.031145815, -0.023681937, - 0.016347283, 0.010631195, 0.009777735, -0.03222878, 0.014390912, - -0.03522711, 0.010479205, -0.057324447, -0.0011806642, 0.05519549, - -0.009135998, -0.010467136, -0.026482964, -0.041058592, -0.033266984, - -0.014424873, -0.021262228, 5.851767e-4, -4.635766e-4, 0.0063949823, - 0.027113127, -0.038957212, -0.022614334, -0.030091204, -0.019682368, - -0.029587956, 0.019156849, -0.04760459, -0.018671073, 0.068752706, - -0.0049575064, 0.01280812, -0.043256532, -0.03232843, 0.055593695, - 0.060859792, -0.0063058417, 0.010234823, -0.0151621895, -0.03985633, - 0.018774185, 0.016583547, 0.04211486, -0.01837444, -0.007649172, - -0.0071888003, -0.0057886504, -0.018098582, 0.016962932, 0.011205117, - 0.015822643, 0.017604712, -0.017673954, -0.032823745, -0.03224471, - -0.042880353, 0.045644175, -0.036326118, -0.024922494, -0.012567312, - 0.0030285916, 0.012805698, 0.013806904, 0.07019503, -0.011136374, - 0.011738745, 0.0068442915, -0.013185141, -0.006979458, 0.018080665, - -0.014682709, -0.0046048528, 0.015287839, 0.01834925, 0.009542653, - 0.07163841, -0.035595763, -0.0013994103, 0.020744875, 0.059869636, - -0.05207328, -0.041776557, -0.0066165924, -0.0083224205, -0.0127597265, - 0.03910779, -0.052689172, -0.016197972, 0.021375379, 0.026961925, - 0.013921616, -0.022552434, -0.0109594315, -0.022679722, 0.01666435, - -0.009995252, 0.0033717055, 0.021932239, 0.026961448, -0.008725341, - -7.993647e-4, 0.014614435, -0.055911772, -0.014180198, -0.027855378, - 0.04597853, -0.010394074, -0.01747606, -0.009963302, 0.022743773, - -0.033205356, -0.036206666, -0.01766961, -0.019735016, 0.0016982879, - 0.022238776, -0.0111302575, 0.033497922, -0.028092464, 0.001867596, - -0.005588266, 0.00933263, -0.042978615, -0.0039628833, 0.011623884, - 0.0068795946, -0.015373823, 0.0138266515, 0.04230084, -0.041762784, - -0.019462775, 0.036032427, 0.010266235, 0.026581865, -0.019327, - 0.01859103, -0.039594218, -0.05606127, 0.02583703, -0.020198485, - -0.0016521411, 0.079960704, -0.01900945, -0.029104186, 0.015221707, - 0.027929783, 0.04088056, -0.013010082, -0.014087929, 0.0029730762, - 0.05121773, -0.0036606798, -0.0028814373, -0.048632633, 0.043047097, - -0.009952239, 0.024592856, -0.05501843, 0.032306787, 0.04036072, - -1.0959773e-4, -0.007616686, -0.03892296, -1.2677709e-4, -0.03681434, - 0.024817307, 0.019062798, 0.021881994, 0.047231223, -0.001703323, - -0.016894905, -0.020560414, 0.023151506, 0.01117728, 0.011268717, - 0.0053412938, 0.061045777, -0.0031900583, 0.0029103989, -0.0063928687, - 0.01813619, 0.032283302, 0.011905326, 0.024798583, -5.5096997e-4, - -0.012405711, -0.0018495431, 0.037032735, 0.00438459, 0.042190913, - -0.009619233, 0.05410558, 0.04578199, 0.014868483, 0.06615195, - -0.010059006, 0.0012197723, -0.0030210917, 0.01092585, -0.046103194, - -0.042155046, -0.0138597675, 0.010353832, 0.04754208, -0.017136484, - -0.012517226, -0.007594847, 0.03390266, 0.030085964, -0.058258917, - -0.030834915, 0.06772663, 0.040636476, -0.06629443, 0.029999604, - -0.0402239, 0.05719768, 0.05942714, -0.005186602, -0.021840619, - -0.056850195, 0.030780332, -0.019473638, 0.0036247126, -0.01141566, - -0.011100774, -0.019741245, -2.7188138e-4, 0.013854824, -0.02063845, - -0.049662124, 0.010721201, 0.04466986, 0.050967336, -0.021550566, - 0.028018588, -0.06451325, 0.031431492, 0.015304234, -0.020675436, - 0.06310617, 0.010271095, 0.007780396, 0.02948787, -0.013959741, - -0.056287374, 0.011691276, 0.022081036, -0.06668845, 0.008124017, - 0.0010746984, 4.6486493e-5, 0.0098421285, 0.018090088, -0.005870117, - -0.018804366, -0.0503214, 0.015030283, -0.003490289, 0.0017978783, - -0.034706883, -0.033671543, -0.05084036, -0.04355077, 0.0038553309, - 5.397037e-4, -6.269558e-4, 0.0039681853, 0.032266036, -0.018578667, - 0.08794797, -0.0073193926, 0.02862961, 0.048617512, -0.013597104, - 0.038384665, 0.027218532, -0.02837387, 0.01511704, 0.017770829, - 0.029320199, 0.007779995, 0.025127245, 0.03542117, -0.024373397, - -0.037812054, -0.002947002, -0.04165807, -0.02756188, 0.031835113, - -0.0022359157, -0.011066642, -0.029427823, -0.046279073, -0.0019843387, - -0.06342977, -0.008893332, 0.07233149, -0.016320877, 0.018908642, - -0.0044438415, 0.02500085, 0.015665293, 0.023506517, -0.0060731093, - 0.0039174305, -0.019761067, -0.014559109, 0.046723537, 0.03802217, - 0.0034133927, -0.03465351, -0.009596963, -0.017701466, 0.035989556, - -0.0010728779, -0.038118273, -0.007674171, 0.015765414, 0.008227249, - -0.00678764, -0.0441452, 0.03041049, -0.046695996, -0.026814379, - 0.032585677, 0.024823148, -0.0019422364, -0.022880476, -0.02323847, - -0.0242301, 0.0016380278, 0.0028603987, 0.049753338, 0.020654123, - -0.018576154, 0.01143114, -0.01680351, -0.06817174, -0.035486285, - -0.009055694, -0.023463229, -0.0047314106, -0.013154366, 0.009889762, - -0.03874104, -0.046180215, 0.035006694, 0.020816715, 0.038304936, - -0.066812865, -0.013145157, 0.024100823, -0.009542171, 0.033676922, - -0.05425926, 0.02711583, -0.020589514, -0.006435119, 0.009026, - -0.044217147, -0.012035017, -0.0131883295, 0.044579033, 0.03746275 + "paletteEmbedding" : [ + -0.0077446084, + 0.017074306, + -0.067236975, + -0.049765203, + -0.0178775, + 0.034328587, + 0.052443422, + 0.036551, + -0.011977188, + -0.045556966, + -0.030168762, + -8.3061226E-4, + 0.020355012, + 0.027251847, + -0.030250538, + 0.031269625, + -0.035459187, + 0.034726538, + -0.018367695, + 0.05664741, + 0.051246732, + -0.03739819, + 0.05016622, + -0.006366542, + 0.0024006516, + -0.052919894, + 0.02553019, + 0.037077118, + 0.029403454, + 0.0029028514, + 0.037199598, + 0.010782337, + 0.023672141, + -0.033234037, + -0.032986537, + 0.026605505, + 0.018711323, + -0.020753529, + -0.02314313, + -0.08813096, + 0.044310693, + 0.019581184, + 0.033195004, + 0.011309691, + -0.055084385, + 0.05455984, + -0.01979935, + -0.0015770772, + -0.0813087, + 0.025902662, + -0.0072252997, + -0.011353213, + 0.03665174, + 0.023931246, + 0.028029097, + -0.04139449, + 0.027611082, + 0.03634455, + -0.029299313, + 0.030743344, + 6.113469E-4, + 0.019193025, + -0.044582658, + -0.044922814, + -0.020542707, + -0.014578327, + -0.05792429, + 0.008657442, + 0.031171896, + -0.043803178, + 0.013504288, + 0.021198481, + 0.02777775, + 0.025862329, + -0.016776582, + 0.025927657, + 0.018246494, + -0.007505857, + -0.04374281, + 0.007907477, + -0.04578149, + 0.029794903, + -0.012871255, + 0.049578488, + 0.0078434255, + 0.0682412, + 0.019344162, + 0.019402202, + -0.06621862, + 0.020120963, + -4.4488756E-5, + 0.017358046, + 0.023923717, + 0.016191684, + 0.029151794, + 0.017239343, + 0.07183988, + -0.015373821, + 0.022148857, + -0.02599327, + 0.02681667, + -0.022477003, + -0.016516369, + -0.0043004244, + 0.029680854, + -0.06472071, + -0.027693719, + 0.026723582, + -0.016899271, + 0.005181532, + -0.009690655, + 0.022025537, + 0.023774149, + -0.054108445, + 0.028482994, + 0.018478235, + -0.0047880355, + 0.01633531, + -0.080180064, + 0.037880458, + 0.0101963105, + -0.022520727, + 0.034112442, + -0.012310207, + 0.08755165, + 0.012552977, + 0.045875166, + 0.0020049608, + 0.0473438, + -0.02441986, + 0.022979006, + 0.015580086, + -0.027111355, + 0.03573152, + 0.01774001, + -0.03453259, + -0.00535759, + 0.041653164, + 0.026011473, + -0.021387171, + 0.028448937, + -0.028715761, + 2.519309E-5, + 0.020055182, + 0.029658986, + 0.043058988, + 0.09208204, + 0.03130862, + -0.059588987, + -0.074265905, + -0.004472285, + -7.886477E-5, + -0.04105321, + -0.004174232, + 0.039976392, + 0.02510738, + -0.021695398, + 0.014285297, + 0.03274209, + 0.011365422, + -0.006300557, + -0.047284085, + 0.021983055, + -0.03917547, + 0.0680082, + -0.06083641, + -0.08680473, + 0.03513671, + 0.036965065, + -0.03665369, + 0.055254377, + 0.02926553, + 0.0065765274, + -0.05162012, + 0.0017554944, + 0.04615108, + 0.038645, + 0.016861288, + -0.0029515405, + 0.02347876, + -0.009125768, + 0.021114081, + 0.023720862, + -0.11224525, + -0.028442215, + 0.030738087, + 0.040351316, + -0.019268341, + -0.008008419, + -0.014915203, + -0.0013291968, + -0.044095706, + -0.052529145, + -0.007707794, + -0.025972813, + -0.04860333, + 0.012830202, + 0.010179946, + -0.009656703, + -0.023575643, + -0.016590206, + -0.032855064, + 0.012277824, + 0.018595904, + 0.027839502, + 0.010642115, + -0.007319264, + 0.001641392, + -0.045296554, + -0.025663296, + 0.013925853, + -0.009182823, + 0.018973839, + -0.040513933, + 0.03954301, + -0.03686378, + -0.0151726, + 0.017796492, + 0.04007426, + -0.019223051, + -0.017267581, + -0.04219028, + 0.014087007, + 0.0330607, + 0.045473322, + -0.016212044, + -0.023216048, + 7.57202E-4, + 0.03470786, + 0.016943334, + 0.008241316, + 0.030375972, + 0.027567767, + -0.009164015, + -0.029054185, + 7.848329E-4, + 0.012696121, + 0.027204305, + -0.028734555, + 0.028391767, + 0.03283678, + 0.009826223, + -0.006040437, + 0.05241473, + -0.002274579, + 0.008888862, + 0.01452697, + 0.015212941, + -0.025739074, + 0.013325469, + -0.005380697, + -0.012265004, + 0.04588665, + 0.03245559, + 0.011884221, + 0.008007274, + -0.04109227, + 0.014685169, + 0.0032226196, + -0.03367433, + 0.024406094, + 0.016436147, + -0.06216116, + 4.1588614E-4, + -0.0030241783, + -0.04194001, + 0.018193707, + -0.05018243, + 0.02380247, + 0.025105575, + -0.053019464, + 0.021933492, + 0.03594301, + -0.012776549, + 0.011748909, + -0.011385117, + -0.011310243, + 0.03286802, + 0.03729813, + 0.06852966, + 0.010765211, + -0.040775593, + 0.012086163, + 0.04779567, + 0.02243682, + -0.008163263, + 0.0035281794, + 0.063152656, + -0.022419715, + -0.02521868, + 0.025086276, + 0.009343664, + -0.044985924, + 0.0334932, + -0.019152947, + 0.04142112, + 0.03529284, + -0.02278253, + -0.028758971, + -0.028367557, + 0.0396876, + -0.022566298, + 0.023190662, + -0.00453349, + 0.012598658, + -0.048959035, + 3.0116277E-4, + 0.025073, + 0.027935188, + -0.060405612, + -0.050853103, + -0.013390159, + 0.091264434, + -7.6921465E-4, + -0.0063998587, + -0.07386982, + 0.0029667714, + 0.020244747, + 0.045265205, + -0.01765886, + 0.01313987, + 0.014222268, + -0.042788655, + -0.046484075, + 0.028725788, + 0.036987886, + -0.03225297, + -0.028946579, + 0.06696496, + -0.002773021, + -0.01575838, + -0.03818029, + 0.0014702542, + -0.019262223, + -0.022676662, + -0.033064894, + 0.007721762, + 0.018656448, + -0.036179554, + 0.020301417, + -0.07496258, + 0.0050372025, + 0.003994985, + 0.08910896, + 0.010867705, + -0.047742654, + 0.021964652, + -0.0033277853, + -0.03570869, + 0.012951715, + -0.053633284, + -0.035744425, + 0.038581993, + 0.019660862, + -0.053196464, + 0.018208185, + 0.002776522, + 0.025966207, + -0.02521678, + -0.018525422, + -0.017253522, + 0.047476463, + -0.027282806, + 0.0017807332, + -0.01463774, + -0.014496401, + -0.007054105, + -0.019745676, + 0.032904897, + -0.051042836, + -0.0039930237, + -0.027102103, + 0.0044951374, + -0.045666084, + -0.02037684, + 0.07957173, + 0.015831184, + -0.051629018, + 0.011331973, + 0.015077472, + 0.014524687, + 0.044317096, + -0.020394508, + -0.045293115, + -0.0027333954, + -0.058237612, + -0.02392805, + 0.0057081417, + -0.018603511, + -0.0088327695, + -0.0100272475, + 0.062541366, + -0.017956186, + -0.055825546, + 0.024025323, + -0.04371406, + -0.038180303, + -0.019349134, + 0.0075978786, + 0.0068877796, + -0.049540035, + -0.026754882, + 0.0069551477, + 0.028808175, + 0.033203725, + -0.012199975, + 0.009689571, + -0.072209895, + -0.025118368, + 0.0032977108, + -0.011184967, + -0.018050877, + 0.03597316, + -0.014083223, + 0.016775934, + -0.023332216, + 0.007576385, + 0.0131283095, + 0.039672855, + 0.055402387, + 0.053295013, + -0.012663662, + 0.008177722, + -0.014130961, + 0.0804006, + 0.007981445, + -0.020861294, + -0.031598724, + 0.06331023, + 0.031856615, + 0.047913224, + -0.05202844, + 0.013414313, + -0.042430058, + 0.006436613, + 0.018257694, + -0.048865557, + -0.021845935, + 0.015482366, + -0.046397664, + -0.022576652, + -0.025619853, + 0.032358423, + 0.0052223275, + -0.005342476, + -0.034982536, + 0.030228997, + 0.019498713, + 0.031358633, + -0.023736382, + 0.02434751, + 0.039369445, + -0.045742, + -0.02704065, + -0.0018483122, + 0.013481337, + 0.030467585, + 0.011240874, + -0.02140753, + 0.012362347, + 0.05483224, + -0.007550755, + 0.018499542, + 0.010001401, + -0.023447104, + 0.043045357, + -0.016463729, + -0.05307903, + -0.0035007272, + 0.05618293, + 0.010684765, + -0.011125716, + 0.061975516, + 0.018554833, + -0.012025481, + 0.01668177, + -0.033214033, + 0.058804154, + -0.048157953, + 0.02751867, + -0.006285487, + 0.03757938, + -0.033085864, + 0.005862819, + 0.033672754, + 0.00859644, + -0.005791715, + -0.036161188, + -0.066067204, + 0.015365107, + 0.021162983, + 0.01592456, + 0.0066977497, + 0.014240333, + -0.006875481, + -0.009598488, + -0.020269034, + 0.019246597, + 0.01046938, + 0.049959254, + -0.07276123, + -0.018863559, + 0.010833348, + 0.03876079, + 0.029308958, + 0.030922528, + 0.015078657, + -0.03127684, + -0.020647867, + 0.0272576, + 0.0019617693, + -0.008300443, + -0.023222717, + -0.034453385, + -0.04573083, + -0.03409059, + -0.009699396, + 0.008528342, + -0.012375887, + 0.015252426, + -0.012736773, + -0.00872515, + -0.0132046165, + -0.002964854, + -0.004311768, + 0.018011954, + 0.032925364, + -0.036060043, + -0.008135462, + -0.005151518, + 0.06468942, + -0.063578255, + 0.01336592, + -0.023270614, + -0.061855115, + 0.012773564, + -0.004495708, + -0.021836236, + -0.052842796, + 0.010498978, + 0.038717777, + -0.013288617, + 0.011300296, + -0.0020815537, + -0.0046020173, + 0.024135087, + 0.03562216, + -0.04996847, + 0.04396271, + -0.00948208, + 0.042842995, + -0.051318277, + 0.019575167, + -0.045725416, + -0.04887172, + 0.0033729784, + -0.019601068, + 0.0050097518, + 0.023175543, + -0.06906563, + -0.011739945, + -0.03516424, + -0.003993768, + -0.014028033, + -0.004350491, + 4.3570306E-4, + 0.0014597183, + 0.0063358312, + -0.0060416777, + -0.008309877, + 0.015181196, + 0.056791306, + -0.0033679341, + 0.03976773, + 0.005236071, + -0.024662917, + 0.007840387, + -0.005777783, + -0.03820173, + -0.020046972, + -0.012250964, + 0.014968922, + 0.020071879, + 0.011492531, + 0.011559873, + 0.003567921, + -0.06853071, + 0.011999986, + 0.04700426, + 0.030173434, + -6.17327E-4, + 0.0045572766, + -0.018192159, + -0.010181468, + -0.045816496, + -0.012171429, + 0.04248541, + 0.012574356, + 0.028530043, + 0.030189563, + -0.019607045, + 0.00548766, + -0.022627633, + -0.07603711, + 0.02918672, + -0.043675408, + 0.03319085, + -0.0121729085, + -0.030918796, + 0.021380153, + -0.049721178, + 0.06465474, + -0.0037194516, + -2.3713402E-4, + -0.035354514, + 0.03964106, + 0.0075063966, + 0.030619148, + 0.01573991, + -0.03259229, + 0.015455033, + -0.016352031, + -0.014441341, + -0.042432714, + 0.021545358, + 0.018128831, + 0.041190892, + -0.037280556, + -0.006156187, + 0.026385779, + -0.022016339, + -0.020162676, + -0.0024389315, + -0.024143934, + 4.833719E-4, + -0.04618192, + 0.010544147, + -0.018577022, + 0.030822521, + 0.021525493, + -0.031878207, + 0.021061625, + -0.029093876, + 0.013476165, + -0.03816123, + -0.002047884, + -0.006876043, + -0.0031939836, + 0.04735793, + 0.013745593, + 0.0141176, + 0.016290158, + -0.029165398, + -0.0047254236, + 0.0390224, + -0.0221859, + -0.03436675, + 0.009021347, + 0.040485006, + -0.018948069, + -0.0086706355, + 0.017822096, + -0.06462443, + -0.028281206, + 0.0039760843, + 0.03436835, + -0.042211063, + 0.027632354, + -0.025144884, + -0.007591723, + -0.030813761, + 0.019297762, + 0.026344215, + -0.013988287, + -0.0013326105, + 0.016679887, + 0.016247027, + 0.03532151, + -0.042941287, + 0.044190235, + -0.04475555, + 0.01909934, + 0.010225579, + -0.029026803, + 0.0010296509, + 0.047529053, + 0.0032165076, + -0.05255739, + -0.045591284, + -0.020137131, + 0.07936007, + 0.008756228, + 6.23722E-4, + -0.04854965, + 0.014433005, + 0.0098589705, + 0.021542903, + 0.035406835, + 0.012803616, + -0.029734053, + -0.012211595, + 0.026110113, + -0.004835664, + -0.021595888, + 0.046325583, + -0.09119216, + 0.034629118, + -0.045960184, + 0.010567551, + 0.051028803, + -0.0016387086, + 0.035567615, + -0.05193389, + -0.012177056, + -0.06264703, + -0.022362452, + 0.0069358055, + -0.0025608398, + 0.0018006013, + -1.1714669E-5, + 0.010712661, + 0.016416615, + -0.0113798985, + -0.034033168, + 0.040177777, + 7.767796E-4, + 0.017174268, + 0.002277556, + 0.013288367, + 0.030837512, + -0.023374258, + -0.042978555, + -0.010516369, + -0.06038276, + -0.020623486, + 0.032464493, + -8.4382744E-4, + 0.033662654, + 0.054234773, + 0.014668318, + 0.014385204, + -0.04667339, + 0.012681946, + -0.0048419395, + -0.05499735, + -0.014422102, + 0.04349183, + 0.020787397, + -0.03285888, + -0.023137923, + 0.07503329, + -0.0116465995, + 0.012669952, + 0.0027811818, + 0.012413258, + -0.010921806, + 0.07162825, + 0.050593197, + 0.018790673, + -0.08292821, + -0.006576617, + 0.06513385, + 0.05772128, + 0.028616019, + 0.013918578, + -0.033731837, + 0.024530822, + -0.01765762, + -0.011357765, + -0.018410262, + -0.024682293, + 0.059068646, + 0.031117411, + 0.04730591, + -0.007889508, + 0.026120747, + 0.03559931, + 0.012490305, + -0.048062593, + -0.019029891, + -0.02293392, + -0.016965408, + 0.008328243, + -0.035195183, + -0.018544147, + -0.014904084, + 0.061477598, + -0.0055869953, + 0.03284777, + 0.03973526, + 0.0013622167, + -0.023161575, + 0.012702647, + 0.05843316, + 0.0021768769, + 0.011774005, + -0.01086521, + -0.012166314, + 0.012725425, + -0.019216787, + 0.045301985, + 0.03177805, + -0.034216106, + -0.009584508, + 0.007717455, + 0.04107458, + 0.015412127, + -0.054226536, + 0.03323903, + -0.03690856, + -0.02644429, + 0.011919332, + -0.018103564, + -0.01915235, + 0.012523092, + 0.029059993, + 0.013837314, + 0.008143803, + -0.028620256, + -0.010597204, + -0.018368345, + -0.0012966656, + -0.044471625, + 0.002015426, + -0.02183324, + 0.0068867244, + 0.061534595, + 0.010174863, + -0.032518517, + -0.019219268, + 0.0022513326, + -0.020910086, + 0.0039327107, + -0.015793916, + -0.06545009, + -0.03291782, + -0.013303678, + -0.032283854, + -0.041165642, + 0.019251134, + 0.048491437, + 0.044021334, + -0.014864256, + -0.021194553, + -0.025358453, + 0.013132683, + -0.030365353, + 0.0050808904, + 0.033714592, + -0.032482006, + -0.011452741, + -0.070496134, + 0.039398924, + 0.044153128, + 0.017775597, + -0.019267663, + 0.0041674026, + 0.04282518, + 0.030140992, + 0.0415951, + 0.033292834, + -0.04481032, + -0.008544109, + 0.008644556, + -0.0458123, + 0.014561333, + -0.016596017, + 0.030774234, + -0.032594804, + 0.020861758, + -0.04020041, + -0.025773117, + -0.004378836, + 0.0187173, + -0.042271595, + 0.038731117, + 0.008279635, + 0.03391556, + 0.01235277, + -0.010516042, + 0.006157046, + -0.0031159918, + 0.013688803, + -0.017840143, + -0.07922646, + 0.017720658, + 0.0063973214, + 0.03521566, + -0.025447253, + -0.014149063, + -0.045996673, + 0.027907213, + -0.03789958, + 0.02716662, + -0.007374575, + -0.009210794, + -0.0069107646, + -0.047561705, + -0.019374022, + 0.0095322775, + -0.026841557, + 0.017646004, + -0.013554232, + 0.034968816, + 0.0036464366, + -0.0039157607, + 0.015765825, + 0.024421299, + 0.014719348, + 0.0117000695, + 0.0064563076, + -0.005462543, + 0.0030672587, + -0.05385715, + 0.0067146914, + 0.010861684, + 0.010135326, + 0.071204126, + -0.026500445, + -0.0063563716, + 0.039122835, + 0.035883147, + 0.014509937, + -0.012138046, + 0.031579945, + -0.0029833843, + -0.005861576, + -0.004591082, + -8.178067E-4, + 0.0010348868, + -0.020551601, + -0.047385022, + 0.015662415, + 0.014238013, + 3.5151493E-4, + 0.016844451, + 0.030315943, + -0.03991767, + -0.039813977, + -0.0327095, + 0.03413593, + 0.0015229355, + -0.015994482, + -0.0012471669, + 0.020058164, + 0.014088468, + -0.0025697441, + -0.036510967, + 0.026155544, + 0.019289687, + 0.015597525, + 0.06050181, + 0.038326066, + -0.049640145, + 0.023865025, + -1.5554568E-4, + 0.027209481, + 0.016472468, + -0.042450715, + -0.01479932, + 0.026176225, + -0.003849523, + -0.08215406, + -0.039304398, + -0.021492295, + 0.027550105, + -0.0018250734, + 0.021949092, + 0.019574715, + -0.01624898, + 0.01710309, + -0.017311314, + 0.058970895, + 0.010594879, + 0.032470867, + 0.022230066, + -0.0011415436, + 0.021799404, + 0.046118863, + -0.0086074015, + 0.038874872, + 0.019386826, + 0.00612379, + 0.0051367017, + 0.0012261498, + -0.039120276, + 0.016033579, + 0.008143167, + 0.035147533, + 0.058966894, + -0.032679696, + -0.017920746, + -0.009071638, + 0.013849137, + -0.0037782127, + -0.021967577, + -0.009362852, + -0.016735045, + -0.030781697, + 0.021200316 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json index b9794a84d..107f5d75e 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json @@ -1,1337 +1,5249 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T14:25:44.014874Z", - "id": "mbrx0yti", - "document": { - "modifiedTime": "1960-09-29T11:35:48Z", - "display": { - "id": "mbrx0yti", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-14T14:37:56.434842Z", + "id" : "gxxntbp9", + "document" : { + "modifiedTime" : "2006-10-01T20:03:54Z", + "display" : { + "id" : "gxxntbp9", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/e7g.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/e7g.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#BFDA74", - "source": { - "id": "tmsqfv4a", - "title": "title-6Ypvhv0595", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#6F0BCD", + "source" : { + "id" : "0gvp6nhg", + "title" : "title-alYogGRWWS", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "mbrx0yti", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tmsqfv4a", - "sourceIdentifier.value": "nBAsnKFChT", - "identifiers.value": ["nBAsnKFChT", "UZEMvPpsm7", "NmozsJbVjy"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-6Ypvhv0595" + "query" : { + "id" : "gxxntbp9", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "0gvp6nhg", + "sourceIdentifier.value" : "EXEoJwLBVY", + "identifiers.value" : [ + "EXEoJwLBVY", + "BUMPDQzgfJ", + "NCrfrRU9EF" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-alYogGRWWS" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.01489379, 0.022573097, -0.0026883408, -0.011395513, -0.0012922061, - 0.014493429, -0.017561955, -0.019719325, -0.026051823, 0.014400465, - 0.0027340588, -0.004144756, 0.0125508495, -0.015934335, 6.704577e-5, - -0.021869078, 0.015551489, -0.0058800536, -0.028245244, 0.004136827, - 0.0057410053, 8.5596915e-4, -0.002017215, 0.0012852317, 0.034585327, - -0.03002514, 0.007635528, 0.0015298624, -0.041309092, 0.011570955, - -0.005553781, -0.0035083645, -0.005551495, -0.032761093, -0.002678564, - -0.021388581, -0.014319282, -0.006180225, 0.0051046703, -0.019803667, - -0.0011415733, 7.978533e-4, -0.0011037573, 0.0025641161, 5.738186e-5, - 0.011432346, 0.012832276, -0.004693012, 0.0062744683, 0.019263927, - 0.013593728, 0.0012584957, 0.014960108, -0.0065279673, -0.0026097463, - -0.009017148, -0.01378058, -0.006617713, 0.022652628, -0.004469967, - 0.012713558, 0.010999003, -0.0029522288, -0.011548425, -0.011560237, - 0.00900846, -0.007897412, 0.0022186218, -0.005122281, -0.0012335681, - -0.0035053676, 0.022237848, 0.019181862, -0.004496071, 0.009301909, - -0.012539088, 0.022542203, -0.0016116323, -0.018243473, 0.003844718, - 0.011435356, -0.006588934, -0.0135988705, 0.013222876, 0.0011201542, - -0.008510516, -0.016715452, -0.030527463, -0.03207864, 0.017781604, - 0.007772784, 0.013461333, -0.033539556, -0.0049170842, -0.026260998, - -0.019519331, -0.0078650825, 0.009771921, -0.017833661, 0.012892217, - -0.012140799, -0.04477555, 0.021408135, 0.0015436887, -0.0010631013, - -0.0041635865, 0.0015863209, 5.993242e-4, 0.015670309, 0.003268927, - 4.568234e-4, 0.009625583, 5.5702426e-4, -0.0017575683, -0.015629012, - -0.0044334102, -0.03894487, 0.04670979, -0.022587214, 2.0360648e-4, - 0.0052676736, 0.0076216916, 0.002325524, -0.004546109, -0.015650893, - 0.0011704534, 0.00467404, 0.013154702, 0.010309343, 0.00347471, - -0.028686961, 0.03326023, -0.009689575, 0.02539209, 0.031935833, - -0.035963953, 0.016354162, -0.008701451, -0.01306957, -0.0058090584, - 0.0050534518, 0.030811066, 0.008084071, -0.03213994, 0.011469507, - 0.008222089, -0.015740154, -0.036179155, 0.010232354, 0.0029337702, - 0.009179303, 0.012373803, -0.0010176748, 0.0034160577, -0.0026076406, - -0.009077994, -0.0029096506, -0.018928705, -0.01032912, 0.006747128, - -0.020729253, 0.022974543, 0.007822822, 0.001888998, -0.016317192, - -0.0024763152, -0.0042726384, -0.010956259, -0.0038950322, 0.01984845, - -0.0018012122, 1.7377314e-4, 0.035036024, 0.004011038, -0.033194494, - -0.0065813474, -0.011206724, 4.8642463e-4, -0.008734689, -0.005637381, - -0.007172639, 8.786347e-4, -0.022588544, 0.0157596, 0.0062372987, - 0.019363709, -0.009793975, 0.0075421347, 0.021113593, 5.3212996e-5, - -0.0041580303, 0.005751612, -0.018964585, 0.011659098, 0.005701187, - -0.02137576, -0.0010190399, -0.013912771, 0.013663298, 0.006529723, - -2.812136e-4, 0.005294856, 0.0214556, -0.002651511, -0.0015414678, - -0.025075799, 1.5003287e-4, 0.0034003851, -0.010952404, 0.0103962505, - -0.0019599125, 0.022934707, 0.001747646, 0.030667963, 0.020384893, - -0.01710852, -0.0059844153, -0.035261013, 9.468693e-4, -0.02631685, - -0.007888605, -0.0044139605, -0.008957452, -0.011516934, -0.015592818, - 0.008007961, -0.025303436, -0.021383997, 0.01945467, -0.006010072, - -0.03637154, -0.007714625, -0.0015017135, -0.020567436, -0.015023642, - -0.0025020542, 0.0029819286, -0.019476188, 0.006549261, 0.017296573, - 0.011860147, -0.026426863, -0.0013260056, -5.935551e-4, 0.014240351, - -0.034551777, 0.0031233125, -0.006924092, -0.013468307, 0.0074028373, - -0.010425405, -0.004071688, -0.011462923, -0.015547764, -0.013905179, - 0.0021236695, 0.012387071, 0.0119821625, 3.1473854e-4, -6.547504e-4, - -0.014681846, -0.02736576, 0.0011330479, -0.0056732413, 0.004857876, - -0.008087359, -0.01645535, -0.026020387, 0.001380217, -7.896956e-4, - -0.026728733, 0.018069582, 0.015357502, 0.0036662887, 3.610751e-4, - 0.00238478, -0.0077592805, 0.0035571256, -0.011381224, 0.0051492495, - 0.002714906, 0.0097815925, 0.028454075, -0.02043172, -0.0040566726, - 0.005808898, -0.02776886, 0.014124876, 0.0282182, 4.1626772e-4, - -0.010866029, -0.0060502933, -0.01293927, -0.010904526, 0.007980493, - -0.016886793, -0.0035061296, -0.0062705665, 0.0063340133, 0.013333451, - 0.01425774, 0.0044368845, 0.017429285, 0.0053586066, -0.020035882, - 0.012051384, 0.010277056, 0.0027307712, 0.011098561, -0.017354125, - 0.0018838898, 0.012577441, 0.0016964622, 0.004226382, -0.008317035, - -0.0055939807, 0.0142137185, 0.004384173, 0.0110274805, 0.008256744, - -0.013384576, -0.020283356, 0.027553286, 0.009584531, -0.01601084, - 0.00761296, 0.013527524, 0.008591885, -0.006105444, 0.0059244516, - -0.0045648958, -0.020906689, -0.029300503, 0.009032481, -0.0014337242, - -0.017884772, 0.009555099, 1.997296e-4, -0.02342896, -0.01811343, - -3.9352113e-4, 0.028746692, 0.010861393, -0.011810704, -0.001295316, - -0.0037765866, -0.028499722, 0.0018640233, -3.5066597e-4, 0.0014253719, - 0.0056821485, 0.005859138, -0.014933214, 1.1605401e-4, 0.013330165, - 0.004539903, 0.008655566, 0.006102399, 0.01933999, 0.005449301, - -1.6366756e-4, -0.0044714194, 0.0037819166, 5.888883e-4, -0.023662975, - 0.016036946, -0.035615988, 0.007767439, -0.006570499, -0.006501626, - 0.004880475, -0.022511493, 0.017270276, -0.035276145, 0.0046598143, - -0.03390006, -0.018314747, 0.010806308, 0.011175588, 0.012703828, - -0.031531118, -0.010309866, -0.025542498, 0.0024116975, 0.008642479, - -0.005984813, 0.011972581, 0.010690973, 0.0066097933, -0.009303196, - 0.012880016, -0.0019967302, 0.005274396, 0.018780187, 0.003958929, - 0.0035197006, 8.242268e-4, 0.020069601, -0.0023572128, -0.0025927257, - -0.026369995, -0.009035892, -0.030205995, 0.0093269, -0.014114875, - 0.0018487271, -0.0041562165, 0.014610107, 0.008478335, -0.0017777358, - 0.0050457767, -0.016229942, 0.019008957, 0.0101260925, 0.03148283, - 3.0435168e-4, 0.0055938195, 0.0060822954, -0.014142646, 0.0012464508, - 0.0027259546, -0.01441793, 0.008899899, -0.018989114, -0.0075915274, - 0.043472663, 0.009000016, -0.0035688896, -0.01166341, -0.006300066, - -0.017946433, -0.015312796, 0.009273828, -4.0470995e-4, -0.021700693, - -0.0049152398, 0.0044137123, 0.022510624, -0.026560945, -0.035592128, - 2.5741177e-4, 0.0065007852, -0.014408723, -0.0045896037, -0.0010720505, - 0.01896289, 0.0034565679, 0.0068541896, -0.026236936, 0.011671475, - 0.022006989, -0.03465066, -0.022756977, -0.030209258, 0.0160071, - 0.0076975096, -0.031516645, -0.033641595, -0.004032388, 0.0019719307, - 0.006385011, 0.007275757, -0.01876472, 0.029286632, 0.015535586, - 0.0062356056, -0.0061605577, 0.014131509, 0.011921099, -0.009486399, - 0.022930643, -0.03171247, 0.014962161, -0.0046390276, 0.033063862, - -0.015661595, 0.025671149, -0.014381688, 0.0065549705, -0.009237627, - -0.032525618, -1.6011722e-5, 0.010155378, 0.010476666, 0.01713252, - -0.006062243, 0.0040438883, 0.0075957207, -0.015578831, 0.0030934154, - -0.02415518, -0.004686176, -0.013232997, -0.006495763, 0.002131456, - -0.025149887, 0.0018058071, -0.012198364, 0.0065065287, -0.005519454, - 0.010383195, 0.01960578, 0.010293659, -0.0044331443, -0.0054138764, - 0.0040795007, -0.026187193, 7.812092e-4, -0.011483573, 0.007019446, - 0.0031971028, -0.004072035, 0.011724815, 0.028820137, -6.3367514e-4, - -0.023566196, 0.008479465, 0.005463816, 0.02366119, 0.019095294, - -0.009922722, 0.0077192616, -0.03220141, 0.018818103, 0.008981486, - -0.009947577, 0.012169862, 0.012847619, 0.0013743379, -0.016401095, - -0.0038840747, -0.0025585345, 0.0013171023, 0.009437936, -0.022100369, - -0.028084882, -0.009045178, -0.013564717, -0.016863348, -0.0052676275, - -0.018467128, -0.018291619, 0.0063871574, -0.013661845, -0.02777314, - 0.005993708, -0.029496042, -0.012823506, -0.0021817153, -0.0064416775, - -0.03334103, -0.016624779, -0.026893524, 0.0067558708, -0.02538936, - -0.002607531, -0.004644052, -0.001443217, 0.0014110659, 0.016161904, - -0.006600109, -0.051251594, 0.0021678365, -0.024022868, -0.0077546425, - -0.0036906796, -0.009220809, 0.007101997, -0.034060862, 0.017864944, - 0.007858604, -0.0074319374, -0.016689789, -0.00897546, 0.003890017, - 0.02128545, 0.004011164, -0.0025488695, -0.012705447, 0.018990912, - 0.0064860014, -0.015190606, 0.015530355, -0.015617254, -0.018287508, - -0.0069054393, 0.0032809966, 0.011822282, 0.038691778, 0.003047042, - 0.002817853, -0.032900717, -0.0093611805, -0.003927591, 0.021952746, - -0.023733083, 0.011158588, -0.021155594, 0.02251548, -0.010545434, - 0.003077689, -0.03454162, 0.011188366, -0.0030890077, 0.0044153403, - -0.022532472, 0.024200212, 0.0089373775, -0.021429429, -0.010350274, - -0.016712153, 0.009824836, -0.016881924, 0.0061263037, -0.0063995156, - 0.007138531, -0.005642124, 0.0028033482, 0.0036756021, 0.010358032, - -0.016525963, 0.017933894, 0.020136949, -0.026750902, -0.011595499, - 0.009760718, -0.016005892, 0.029313328, 0.012959221, 0.0072977236, - -0.0050728233, -0.019738246, -0.022946393, -0.03116355, 0.010861855, - 0.030554717, 0.002640438, 0.007964047, 0.015633006, 0.010365348, - -0.008385912, 0.012966606, -0.004616542, -0.011988344, -0.03269129, - 0.03396389, 0.033321485, -0.0010266675, -0.0012255525, 0.0014099106, - -0.004586929, -0.0075221886, 0.0069430606, 0.0016453625, 0.015253901, - -0.016831735, 0.012406744, 0.012594708, 0.021762902, -0.010093035, - -0.02021167, 0.022238113, -0.010056217, 0.024471495, -0.010739034, - 0.0020737797, 0.0072124624, -6.5198744e-4, -0.03907841, 0.008165865, - 0.030488903, 0.0063093486, -0.017851092, 0.033513926, 0.02017049, - 0.01609239, 0.011670758, -0.024475064, 8.2725746e-4, -1.01542115e-4, - -0.014020649, -0.036486827, -0.00855678, 0.010135927, 0.020390946, - -0.018490871, 0.004208032, 3.3680862e-4, -0.006665848, 0.01784073, - 0.0051047294, 0.018446757, -0.012873952, -0.014530423, 0.0057459907, - 0.005691523, 0.011718517, 0.01878365, -0.009899429, -1.031668e-4, - 0.004063674, 0.0077582025, -0.009091621, -0.007701904, 0.008835282, - 0.005196185, 0.018452931, 0.034300268, 0.014237364, -0.017778274, - 0.0038617817, -0.006974889, 0.004215601, -0.014632745, 0.010367997, - 0.04130141, 8.00531e-4, 0.002700272, -0.014765954, 0.0053438987, - -0.016123269, -0.018508442, 0.035489053, 0.01785127, -0.002223436, - -0.011544029, 0.0074470593, 0.016632954, 0.025272917, -0.001192473, - 0.019753888, -0.016965952, 0.020019036, -0.006910009, -0.007893996, - 0.0074348343, -0.011483295, -0.010754571, 0.014996233, 0.017245604, - 0.007815079, -0.022529297, -0.0034132835, 0.0070436653, 0.01839861, - 0.014025972, 0.031133054, -0.011079972, -0.032633834, -0.02327532, - -0.0013422433, -0.006375429, -0.011387172, -0.018141152, -0.011758784, - 0.0071926718, 0.017912926, 0.016753806, -0.007837252, -0.023589745, - -0.02048351, -0.0054972516, 0.015269665, 0.029857447, -0.0038322913, - 0.003475574, 0.023208851, 0.0019468045, -0.020702885, 0.009187691, - 0.0023906531, -0.0022532912, -0.014249734, 8.81873e-4, 0.023934115, - -0.011476808, -0.005185486, 0.006807186, 0.006780904, -0.019003183, - -0.0021199193, 0.01147843, -1.6969834e-4, 0.027937086, 0.018823132, - 0.0050034467, -0.007452682, 0.0037635267, -0.0032234609, 0.0058802054, - 0.0045465752, 0.0049679424, -0.011793594, -0.008932384, 0.030536583, - -0.0015150004, -0.016946822, 0.014905432, -0.009762574, 0.0016663095, - 0.010461377, 0.0075136074, 0.0074832044, 0.008147503, 0.0019904072, - -0.015880737, 0.011829201, -0.023797112, 0.017366856, -0.008295928, - -0.023664892, -0.02502631, -0.031516034, 0.019906063, 0.0278896, - -0.011757597, -0.018177863, 0.01698365, 2.3104792e-5, 0.011621246, - 0.0073256865, -0.008538728, -0.016716987, -0.0016813013, 0.005846872, - -0.009120743, -0.02264405, -0.02969371, 0.013551629, -0.0057560937, - -0.01473479, -0.02028285, 0.018005548, -0.0044316743, -0.0037415524, - 0.00649335, -0.020118976, 0.0052348394, 0.027275123, -0.006581909, - -0.012115815, 0.011199353, 0.010127498, -2.9357363e-4, 0.01833614, - 0.022827975, -0.00851634, 0.018815398, 8.835524e-4, 0.0058079544, - -0.0047438103, 0.011536291, 0.011142319, 0.008085851, 0.014801307, - 0.0021806671, -0.016261311, -0.0178753, -0.0076334835, 0.002536649, - -0.026477393, 0.019711029, 0.0036806127, -0.020011399, -0.002198631, - 0.004761411, -0.015342336, 0.0326062, 0.017967273, -0.0034349456, - 0.008254406, -0.0018481887, -0.0073496224, 0.021909282, 0.0153649375, - -1.6834086e-4, -0.02007301, 0.0077285543, -0.019727945, -0.022048697, - -0.02725461, -0.019519085, -0.0043419846, 0.0031870403, -0.011278908, - 3.7211212e-4, 0.0010833353, -0.021439029, 0.011628572, -0.030726183, - 0.013074745, -7.7142025e-4, -0.008070395, 0.01436687, -0.025086923, - -0.021068085, 0.0025027036, 0.0074935094, -0.0143866185, 0.0041053393, - -0.010582913, -0.005352843, 0.020290025, 0.0050280397, 0.019003086, - 0.019045578, 0.014100777, 0.012890155, 0.0013471938, -0.0010544745, - -0.0074734115, -0.0018672355, -0.04701696, 0.01000078, -0.0022874046, - 0.016101088, -0.01698303, 0.0014036634, 0.024048286, 3.5809753e-5, - 0.022864144, 0.00906023, -0.0019127061, -0.036702584, 0.016219912, - 0.0033226688, 0.0015046134, 0.0053748023, -0.015675979, -0.004706297, - 0.029647686, -0.023367094, 0.010509573, 0.024265233, 0.021635987, - -0.005841181, 0.019531805, -0.013163831, 0.025070159, -0.020080034, - -0.02070976, -0.0073802285, -0.012728543, -0.0047621503, 0.010385103, - -0.009881551, 0.009526399, -0.010663662, -0.0022674615, -0.02734378, - 0.029624855, 0.013450256, 0.0019020769, 0.009212094, -0.010690455, - 0.014975684, -0.0015715369, 0.0058589457, 0.0105792815, 0.014605935, - -1.7710139e-4, -0.0070549473, 0.006384536, 0.007890338, -0.0067775333, - -0.005954294, 0.0063528083, -0.011017101, 1.4613905e-4, -0.001497882, - -8.600768e-4, -0.0027342422, 0.006912521, 0.016489476, 0.011054397, - 0.0050456347, -0.002498802, 5.2029756e-4, -0.0027351994, -0.008568495, - -0.0059054173, -0.006332614, -0.013217533, -0.018474232, 0.027265593, - 0.015086902, -0.01730647, -0.010954898, -0.010768983, 0.0015957174, - -0.021132683, 0.032601506, 0.0019411207, -5.5283826e-4, -0.016667088, - -0.012661129, 0.010424843, -0.008938504, -0.008214407, -0.028506448, - -0.014228165, -0.016179254, 0.02106944, 0.03222964, 0.006985731, - 0.008536427, 0.012614528, -0.015603813, 0.014451853, -0.0125798555, - -0.027807742, -0.034991246, 0.008249145, 0.0034506375, -0.0037934384, - -0.02151685, 0.004956544, -0.02044463, 0.02616948, -9.011553e-4, - -0.010335113, 0.0014831567, 0.012702151, 0.001100769, 0.0060322285, - -0.0028152692, 0.009472956, -0.00252398, 0.0023469732, 0.0151021965, - -0.020071859, 2.9674498e-4, 0.020900108, -8.3242013e-4, 0.0031934115, - -9.1338916e-5, 0.010482211, -0.00970224, 0.041502032, 0.001981786, - -0.011451708, 0.017677678, 0.01628822, 0.00326077, -0.004361338, - -0.019209849, 0.023595147, 0.0071105775, -0.015199536, -0.004478294, - -0.006810603, 9.980905e-4, 0.022810586, 0.003101143, -0.015072142, - 0.004216912, 0.0010464144, 0.0119637195, 0.018527577, 0.018161114, - 0.0056345896, -0.0109572485, -0.004209462, -0.015193543, -0.01599058, - -0.01828332, 0.021058427, -0.00957479, 0.007986482, 0.005528324, - -0.016858568, 0.014036457, 0.0051252916, 0.009935726, -0.015779646, - -0.015042988, 0.0034584254, -0.010045687, -0.0023301158, 0.023107063, - -0.0010082765, 0.0105007235, -0.002458567, -0.0023444388, 8.394157e-4, - 0.008686999, 0.005381984, 0.014466414, 0.012169624, -0.014878152, - -0.029547881, 0.0016654462, 0.0075565292, -0.013111974, 0.011540322, - 0.005758143, 0.034948837, -0.01577986, 0.008155299, -0.0039039946, - 0.019727949, 0.020371038, -0.0053536757, 0.012006523, 0.0088433325, - 0.0082769105, 0.0041969023, -0.02002824, -0.0144764, -0.030692909, - -0.011101028, 0.005116788, 0.014457102, -0.006112699, 0.0011498493, - -0.0016788819, -0.00179549, 0.017109012, 0.017975397, -0.0069382424, - 0.0025125917, 0.002132191, -0.012859374, -0.008549919, -0.018646682, - -0.020126713, -0.0056783296, -0.019214714, 0.020376742, 0.01168117, - -0.021777768, -0.027902933, 0.010152427, 0.017526573, 0.0010919838, - -0.010646892, -0.0015566562, -0.025227942, -0.0040445076, -0.01127683, - 0.0126569765, 0.02014932, 7.103758e-4, 0.0021304965, -0.024280354, - -0.0027508887, 0.0022384073, -0.0024757597, 0.014216742, -0.0072931736, - 9.99023e-4, 0.007704818, -0.008887893, -0.019225905, -0.009640501, - -0.031443313, -0.014688331, -0.02242216, -0.006715082, -0.046191808, - -0.018880565, 0.030853024, 0.0041814228, 0.0067209904, -0.0105465, - -0.041948352, 0.023998858, -0.022087825, -0.002581797, 0.02275951, - -0.0074082837, 0.023642277, 0.019210584, -0.0056319544, -0.0078018038, - 0.0028755907, -0.013356804, 0.0023592333, 0.011263995, 0.010809234, - 0.02567725, -0.020995058, 0.023930244, 0.013210589, 0.008935975, - -0.034725398, -0.0076814895, 0.01440173, -0.014059549, -0.007913524, - -5.3199055e-4, 0.008783039, 0.011529022, 0.0032924362, -0.0060417755, - 0.0049232775, -0.017614676, -0.009926427, 0.02034878, -0.006480916, - -0.0061728093, -0.0049033975, 0.02216323, -0.011840569, -3.3614208e-4, - 0.016112685, -0.005557278, 0.002058014, -0.004614157, -0.02206415, - 0.0015003164, -0.006949289, 0.043081325, 0.01869942, -0.006201913, - -0.00432941, -0.019524585, -0.019396236, 0.0035366402, 0.014023441, - -7.096171e-4, 0.0061238576, 0.010970836, -0.035975114, -0.0046813525, - -0.008774097, -0.008053156, -0.018425541, -0.007774358, 8.4224704e-4, - 0.0026172642, 0.020043021, 0.0054540667, 0.005748537, -0.0030139335, - -0.03876248, 0.02796312, 0.008988618, 0.0026088138, 0.0061599924, - 0.0071768085, 0.016380882, 0.011337045, -0.020044155, 0.030245617, - 0.0027990553, -0.015681027, 0.018355142, 0.0033973104, -0.008163583, - -0.016545152, -0.025459655, -0.013848684, 0.0034650823, 0.0076072593, - -0.0036963122, -0.0068766666, 0.0021153346, -0.023995886, -3.211222e-4, - 0.0038570978, -0.026087299, -0.023351695, -0.0033223685, 0.0017441137, - 0.0011002712, 0.012871206, 0.0206221, -0.008531019, -0.0036704703, - 0.007293023, -0.023769043, -0.010696614, 0.0043571317, 0.002638185, - 0.0038855425, 0.017785063, 9.314094e-4, -0.007979286, -0.0049902266, - -0.0052280063, -0.0018430296, -0.012434995, 3.6102257e-4, 0.005729103, - 0.00561355, 8.2987826e-4, 0.01787543, 0.006498514, -0.023078319, - 0.008719412, 0.025673151, -0.042239934, -0.0037706993, 0.0018293412, - -0.0035761592, -0.0033218681, 4.852972e-4, -0.02059261, 0.00898406, - -0.007745111, 0.0038515397, 0.0048742313, 0.021811549, 5.210968e-4, - 0.010072201, 0.0089324955, -0.0176942, 0.016114656, 0.0015357184, - -0.016151093, 0.01214704, -0.015818253, 0.014953423, 0.006361468, - -0.012247976, -2.6039698e-4, 0.016290316, 0.012552865, -0.00264758, - -0.0063929358, 0.021062193, -0.0024961636, 0.010022221, 0.031313457, - -0.008251661, 0.021458894, -0.0119242035, -0.012834955, 0.009479545, - -0.014468466, -0.033451382, 0.010487946, 0.0019553418, -0.005446095, - -0.0016398557, -0.010379376, 0.025737166, -0.024290208, -0.012329871, - 0.02297831, 0.012766198, -0.015735246, -5.263738e-4, 0.019117959, - 0.016311493, -0.018620336, 0.0044183563, 0.0012064038, 0.015654787, - 0.0057985033, 0.025678566, 7.43995e-4, 0.004796335, 0.0022469535, - -0.0040592523, 0.033385117, -0.003767308, -0.010885693, -0.010693576, - -0.012526422, 0.018744567, 0.020083616, 0.0072101625, 0.0016744148, - -0.0060553867, 0.0023841467, -0.012428655, -0.0094858, 0.020085897, - 0.0074589914, 0.020649191, 0.01705102, 0.005461411, -0.0075057833, - 0.019783966, -0.007298356, 0.002139549, 0.0060079577, 0.0071789846, - 0.028127102, 0.011181475, 0.021303134, 0.014843169, -0.015671091, - 0.0144558735, -0.024843598, -0.020259507, -0.0039506624, -0.03237492, - -0.035580717, -0.023870291, -0.017542275, -0.034274384, 4.062236e-4, - 0.0151447095, 0.001702325, 0.013957271, -0.0124419145, 0.023234423, - 0.023050515, 0.006511942, 0.012234861, 0.008382095, 0.03501715, - 0.012389838, 0.011860604, -0.05510323, 6.821595e-4, 0.014359795, - 0.008651743, 0.00852403, 0.010349407, 1.0483397e-4, 0.0030027356, - 0.021948565, -0.0041821543, 0.008290793, 0.010254954, -0.008902649, - 6.6603033e-4, -0.011520713, -0.011709382, 0.007489057, 0.017887551, - -0.010595485, -0.021237701, 8.41474e-4, -0.019203994, 0.014435327, - -0.024330605, -0.021597095, 0.009373716, 3.255189e-4, 0.0050608753, - 0.009557318, 0.0030225057, -0.008024469, 0.024425127, 0.0021143446, - -0.0037223224, -0.03440006, -0.007965807, -0.0187209, -5.633437e-4, - 0.0028317135, -0.0026408026, -0.015147647, 0.021708164, 0.013777117, - 0.0115019865, -0.0026488279, 0.019556992, -0.031432927, -0.013992748, - -0.007993744, -0.0059485217, 0.0061703147, 0.0030323055, 0.0046732826, - -0.002214965, 0.016331907, 0.010695317, 0.002708228, -0.018726762, - -0.009263416, 0.03478035, 0.010813544, -0.009975869, -0.023971079, - 0.019615168, -0.0029535356, -0.012836903, 0.017225234, -1.0587154e-4, - 0.03319865, -0.013198486, -0.01355014, 0.007478386, -0.022475855, - 0.011160138, -0.013025351, 0.02720227, -0.0057011982, -0.00750592, - 0.0025152643, -0.016017908, 0.0033523368, 0.032142814, 0.018779038, - -0.0024846417, 0.02199479, 9.276039e-4, -0.0036701746, -0.016333759, - -0.0027437564, -0.015128899, 0.028697371, 0.03417778, 0.041117482, - 0.016900597, -0.022058085, 0.029756425, -0.019603416, 0.013936521, - -0.010948221, -0.025297925, -0.0013403328, -0.0058655166, -0.019709932, - -0.014147793, 0.012451493, -0.02394513, 0.021410022, -0.019966563, - 0.0064299703, -0.0069464594, 0.0032357094, -0.013459874, 0.0051935306, - -0.0325306, 0.012095855, 2.3471388e-4, -0.0051210313, -0.0044107856, - 0.022137748, -5.1781506e-4, -0.017588548, 2.8205794e-4, -0.00980148, - -0.017764023, -0.037152696, -0.0012454361, 0.010245212, -0.032953195, - -0.009661127, 0.0018324573, -0.01970615, 0.011395316, 0.012522341, - 0.024701562, -0.0068214075, -0.014849021, 0.040698085, 0.028997414, - -0.03523311, -0.015886528, -0.004361309, 0.014673914, 0.0033508877, - -0.003560334, 0.007790255, -0.01128688, 0.006066801, -0.0047557442, - -0.008152277, -0.00407033, 0.030906158, 0.026971634, 0.027646394, - -0.03426128, 0.02030199, -0.028414708, -0.021348277, -0.015666071, - -0.014934578, -0.027263533, 0.030183062, 0.002948326, 0.0023646783, - -0.018729014, -0.002812173, -0.013112489, -0.011438938, 0.0035823532, - -0.026520222, 0.003867172, 0.02645738, 0.0075654797, -0.0065897, - 0.013177195, -0.0015507897, -0.005926299, 0.023265596, -0.019115414, - 0.011579585, 0.013285222, 0.0060274373, -4.0116164e-4, -0.017439965, - -0.0065519474, -0.0058447616, -0.0052286405, -0.024765542, 0.019211894, - -0.0060694446, -0.018509606, 0.027246427, -0.0037462965, -0.00994583, - 0.00752109, -0.0030784807, -0.024575105, -0.012689264, 0.030570088, - -0.015281416, 0.004303477, 0.0064061675, 0.0077521973, -0.0015714307, - -0.0062507004, -0.014890632, -0.03130662, 0.009213183, 0.007940143, - 0.0056961705, -0.0038403373, -0.009789058, 0.009053135, 0.022621203, - -0.005487522, -5.9791165e-4, -0.028014429, -0.0017234862, -0.018644286, - 0.029926993, 0.011060185, -0.0039747437, -0.014560244, 3.2172143e-4, - 0.019587507, -0.022546962, 0.00700979, -1.4131985e-4, 0.0030809208, - -0.029380782, -0.03447147, -0.03527741, -0.013103233, -0.03088427, - -0.0066506476, 0.00480136, 0.02543994, 0.010348652, 0.006783419, - 0.0023343868, 0.008449401, -0.0180673, 0.0020927317, -0.0079226345, - 0.0059835343, 0.013578413, -7.45442e-4, 0.019015959, -0.0058995765, - -0.009133677, 0.012228012, 0.005689048, -0.0061947214, -3.189076e-4, - -0.0066069155, -0.023144394, 0.022611463, -0.010293288, 0.011149243, - 0.0014657151, -0.019975679, -0.0024902637, -0.0040948377, 0.0032078854, - -0.016856391, 0.0020768163, -0.007500895, 0.0048597213, -0.028852407, - -0.022737052, -0.010625479, -0.013701993, 7.774333e-4, -0.017641187, - -0.008926963, -0.012645383, -0.025475956, -0.02565301, -0.0031836722, - -0.010515978, 0.008944456, -0.03466765, -0.020184385, -0.032486107, - 7.935985e-4, -0.013135056, 0.024868283, -0.0023641349, 0.03084994, - -0.009376828, 0.003569957, -0.0058272355, -0.0032305291, -0.009811058, - -0.012442501, -4.2179727e-4, -0.011644049, 0.010653799, 0.003548704, - 0.025198314, -0.001218994, 0.015460089, 0.003563889, -0.0025492865, - 0.0010472036, 0.0089314245, -0.03397109, 0.02303646, -0.029819017, - 0.014804477, -0.02468008, 1.2888364e-4, 0.0018628257, 0.013498608, - -0.026291834, 0.014938748, 0.006361584, -0.011132876, -0.0032401315, - -0.0010455813, -0.009366544, 0.0015310838, 0.026220895, -0.0073973993, - 0.0056015127, -0.0041493317, 5.389648e-4, -0.0023572086, -0.019747667, - -0.0289772, -0.005443624, -0.021985369, -0.021132201, -0.0027970825, - 0.027199429, 0.01983879, -0.0067049, 6.620597e-4, -0.008019326, - -0.028310915, 0.004658568, -0.0069517093, -0.018475564, 0.009791692, - 0.008112227, -0.004033711, -0.015434355, -0.015754666, -0.00982843, - 0.010802434, -7.8675366e-4, 0.00782722, -0.016174354, -0.0020096079, - -0.013782444, 0.019835161, 0.007869165, 0.0014368127, 0.038687497, - 0.008373128, 0.0029725686, -0.004588392, -0.014752429, -0.018524349, - 0.011276282, -0.022184238, -0.026760874, 0.012486201, -0.0056529534, - 0.007815075, -0.009570521, -0.0059731854, -0.0010670108, 0.013253745, - -5.3560286e-4, 0.014728695, 0.008587496, 0.021063713, 0.010603544, - -0.040985398, -0.01253434, 0.0027780093, 0.030617904, -0.0064926213, - 0.02483065, 0.016695537, 0.01757373, 0.012005286, 0.01088855, - -0.010922435, 0.008499574, -0.015511475, -0.006114946, -0.021628592, - 0.004042205, 0.009942834, -0.029722825, -0.013925938, 0.004764258, - -0.005065639, 0.02886996, 0.019658165, 0.008964114, 0.019244555, - -0.00493942, 0.030429944, 0.008773977, -0.023870695, -0.010068019, - 0.009863056, 0.0029905578, 0.03367058, 0.003521127, -0.0088531645, - -0.005955217, -0.026299555, 0.010261234, -0.0058602397, -0.032231074, - 8.596887e-4, 0.003666174, -0.0073931417, -0.03343824, 0.009881891, - -0.025678588, 0.009660083, -0.0055931355, -0.030119441, -7.0553244e-4, - 0.015398465, -0.026550785, -0.005589482, -0.012657678, -0.028696282, - 0.01911072, -0.013182771, 0.013697203, 0.002394967, -0.0031618043, - 0.008173983, -0.0021662535, 0.033434585, -0.027932454, 0.009789413, - -0.009472572, -0.011730285, 0.019400408, 0.03539106, -0.0056051044, - 0.011211028, 0.024551721, -8.65646e-4, -0.0020242082, 4.6291854e-4, - -0.029906798, 0.01678126, -0.023337957, 6.4939016e-4, 0.006494294, - 0.015965885, 0.0035049738, -0.03010496, 0.011118014, -0.02706601, - -0.01878399, -0.016037568, 0.020466859, -0.01034181, 0.026001379, - 5.377637e-4, -0.006894429, 0.0015722662, -0.020513749, 0.009709173, - -6.257921e-4, 0.013362036, -0.021670192, 0.012555941, -0.0062798955, - 0.003373842, 0.01093834, -0.0017541362, 0.019521575, -0.02785674, - -0.0062389704, -0.010925429, 0.006222617, -0.010466755, -0.007815982, - 0.013563222, 0.0063030384, -0.004596537, 0.003164698, -0.026955467, - -0.0016623605, -0.01968544, -0.001688937, -0.0044355234, 0.016949657, - 0.02801193, -0.012674644, 0.0039124712, 0.00770771, -0.02661965, - -0.032205924, 0.019061215, -0.017536495, -9.321192e-4, 0.0030338622, - -0.0020779094, 0.004543456, 0.016670734, -0.007376498, -0.0018904174, - 0.0058041136, 0.0062333085, 0.0013674145, 0.012967063, 0.021633703, - -0.01070433, 0.014404634, -0.002633175, -0.017158857, 3.5816117e-4, - 0.0011028118, 0.01755164, -0.011146996, 0.017406343, -0.013543331, - 0.0057149124, 0.014251602, 0.018866438, -0.022035738, 0.013176586, - -0.017339136, -0.015579227, 0.009388501, 0.008657841, 0.02436187, - -0.024305955, 0.029280527, -0.0021827468, 0.014849821, 0.029400492, - 0.018300438, -0.011529913, 0.026074829, 0.020975618, 0.03652055, - -0.0038783292, 0.0075838096, 0.01676904, -0.007829061, -0.024025306, - 0.014403344, 0.021540845, -0.01058056, 0.0076642134, 0.011226114, - 0.012518089, 0.012402333, -0.027702002, -0.018550757, 3.5070517e-4, - -0.02849097, -0.008736485, 0.01882288, 0.0037301234, 0.017287016, - -0.009649341, 7.892794e-4, -0.0069888607, 0.011658313, 0.0010709652, - -3.3266674e-4, 0.003441038, -0.009518052, -0.007902, -0.014027781, - 0.00823656, -0.027412554, -0.0015647243, 0.024512645, 0.018497935, - -0.0074244738, 0.00495457, -0.02041304, -0.005612275, -0.008143538, - -0.012744508, -0.00512561, -0.006010316, -0.018239543, -0.004071062, - 0.0037480725, 0.008721939, -0.017959844, -0.03039167, 0.035532147, - -0.00643919, 0.005147815, 0.010794017, 0.008980697, 0.0016144055, - 0.005799103, -0.016761579, 0.006976467, 0.01173024, -0.02179483, - 0.010586347, 7.3130656e-4, -0.02934659, 0.011999861, 0.013455634, - 0.006246208, -0.014861849, -0.015102311, -0.009122033, -0.007460922, - 0.002175154, 0.0028050956, -0.013150394, 0.013302744, -0.0078209685, - 0.0016916158, 0.00491453, -0.00844645, 0.024976432, -0.001953762, - -0.013978943, -0.009514455, -0.002255457, -0.023033489, 0.003664362, - -0.016417688, 0.0074293325, -0.004526624, -0.008756237, -0.018516617, - 0.02874839, 0.011585326, 0.017948655 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.010285049, 0.0232773, 0.019004265, -0.009396078, 0.0028630197, - 0.0022461512, 0.010482605, -0.030859562, -0.0106103625, 5.0281815e-4, - -0.0063171675, 0.019034732, -0.020655656, 0.0062524546, 0.025891216, - -0.022477264, 0.009529933, -0.004839523, 0.0055547287, 0.0030822863, - 0.0184514, 0.025167016, -0.013234146, 0.013810935, 0.014658344, - 0.0026170018, -0.0064607915, 0.01336828, -0.007753971, -6.069968e-4, - 0.0060393615, -0.01756747, 0.007630987, 0.025491346, -0.0042974665, - 0.021967607, 0.019129114, 0.01095925, -0.0062005688, -0.012958725, - -0.044895403, -0.010382038, 0.0049736057, 0.01190838, -0.0012179874, - -0.009030356, -0.01309285, 0.0013140875, 0.0051112054, 0.01782198, - 0.0016838224, -0.011688585, -0.008335839, -0.017861666, -0.00327152, - -0.017388925, -0.0052556503, 0.01797514, 0.0040703793, 0.016570747, - 0.009400924, -0.0053199083, -0.007374332, -0.03244786, 0.0025844052, - 0.00869771, 0.014279022, 0.015252115, -0.043573614, 0.014931506, - -0.017899558, -0.028534472, -0.0022905082, -0.054172933, -0.008005823, - -0.008384559, -0.02111686, 0.0053939126, 0.013622604, 0.0041432614, - 0.02291874, 0.0038125915, -0.017665448, -0.008934832, -0.025035718, - -0.015829982, -0.01825693, 0.012956527, 0.0038137934, -0.009176245, - 0.012838291, -3.2783506e-4, 0.01925846, -0.057814207, -0.015412873, - 0.002904461, 0.015485017, -0.004569966, 0.029345598, 0.01709258, - -0.020027326, 4.171857e-4, -0.026895069, -8.520319e-4, -0.007757943, - -0.002496778, -0.0018393374, 0.004068278, 0.0014402206, -0.0038610513, - -0.017087363, -0.0036206194, 0.016124958, 0.010141898, -0.026303686, - -0.018113531, -0.0103511, -9.86886e-4, 0.0018705347, 0.004499668, - -0.0021419926, -0.0029825452, 0.0013841068, -0.003238472, -0.026157541, - -0.017146312, -0.040637057, 0.02107065, 0.023016844, -0.0034901737, - 0.034329947, 0.016349066, 0.007954139, -3.447103e-4, -0.026101664, - -0.010475521, 0.026145233, -0.0020086989, -0.0039264527, 0.01873049, - -5.3088355e-4, 0.0018110481, 0.020242995, 0.006150642, -0.024695607, - 0.02686329, -0.008429032, 0.018509984, -0.0041422923, -0.02066621, - -0.010498568, 0.026613792, 0.0053063803, 0.013009038, 0.006626733, - 0.023032326, 0.023285476, -0.015922837, -6.964893e-4, -0.0066754827, - 0.014137419, 0.029150907, 0.0049100076, -0.015216416, 0.010839097, - 0.029628584, -6.775337e-4, -0.012285278, -0.0053882957, -0.019904543, - 0.033809915, -0.008760884, 0.0071857003, -1.7442837e-4, -0.005393602, - -0.022375336, -0.004023373, -0.011269689, 3.9136386e-4, -0.028407477, - 0.0031822317, -0.0066340994, 0.025795888, 0.0123944, 0.009353388, - -0.0073534497, -3.3278955e-4, 0.007194312, 8.8779244e-4, -0.007389244, - 0.007073279, -0.0041547157, -0.0042576846, 0.014977197, -0.010152514, - -0.019113261, 0.012543757, -0.015970754, 0.028618688, 0.01748213, - 9.09884e-4, -0.010763859, -0.0061989273, 0.009894819, -0.01337518, - 0.0019725466, -0.013417645, -0.012236335, -0.0150898155, -0.007817903, - 0.019012192, -0.010117077, -0.033307817, 0.034113865, -0.018031666, - 0.0029676657, 0.009767444, -0.023497224, 0.0021395637, 0.0044352734, - -0.02279724, 1.7637252e-4, 0.018545516, -0.0072167544, -0.0076333904, - 0.011388577, -5.174711e-4, 0.0050700833, -0.0058250264, -0.013065978, - 0.010055939, -0.025490582, 0.009861659, -0.0122273285, -0.00856956, - -0.023581862, -0.016636431, -0.0057078777, -0.030202199, -0.0033128501, - -0.018113619, 0.028518599, 0.015597356, -0.0036193973, -0.016751643, - 0.02024543, -0.026879149, 0.0074105426, -0.009145059, -0.018570054, - -0.005111044, 0.022278203, -0.02849556, -0.0045233946, 0.019961314, - 0.024443889, -0.016006947, -0.007782864, -0.011655844, -0.0021849095, - 9.2138784e-5, -0.0039116396, 0.011041365, -0.002240116, 0.0062904735, - 0.0013249761, -0.012114982, 0.009642479, 0.002768192, 0.006725798, - -0.007855049, 0.016897298, 0.016406097, -0.0040464248, 0.0036882767, - -0.0038318126, -0.010935096, -0.031729624, 0.0050387806, -7.6925184e-4, - 0.010738551, 0.0015856074, 0.030716382, -0.0037354194, -0.006067467, - -0.01499867, -0.0021095884, 0.0029779256, 0.0063720127, -0.041446906, - -0.027776456, 0.008486124, -0.0021390761, -0.009558847, 0.022633754, - -0.01266637, 0.003194801, 0.03221841, -0.0025301073, 1.2959179e-4, - -0.0012203886, 0.019374343, 0.029433032, -0.0026229704, 0.0057039666, - -0.014539817, -0.04100452, 0.010460985, 0.011637175, -0.011273332, - -0.010480484, 0.010075583, 0.01397654, -0.0062653194, -0.015542333, - 0.018664937, -0.010199019, 0.010915588, -0.024916172, 0.010823103, - -0.018286927, 0.0017707583, -0.010434131, -0.0029754266, -0.0056487652, - 0.010582161, -0.0011591136, -0.01824167, -0.014436442, 0.014090489, - -0.014755895, -0.020302776, 0.013320099, -0.01896052, -0.020588873, - 0.018242858, -0.010767479, -0.0071981065, -0.046207294, -0.02632482, - 0.027065804, -0.0056740534, -0.015550692, -0.002701212, -0.010973446, - 0.008091001, -0.030608146, -0.003097094, -0.019457258, 0.016448021, - -0.02694442, -0.01085462, -0.013350384, 0.0039970414, -0.019511485, - 0.007560935, 0.018646248, -0.0049070204, -0.0033917078, -0.009301116, - 0.010754894, -0.0014597044, -0.037237093, -0.0046823327, -0.0017560648, - -0.006484241, -0.020318693, -0.01957166, -0.024723662, 0.009359102, - -0.013775613, 0.010689713, 0.040545404, -0.008980688, 0.022260498, - 0.004198697, -0.039597366, -0.021970946, 0.0017399334, -0.005435699, - -0.01305458, 0.0034278021, 0.018869985, -0.024345601, -0.011926385, - -0.03678942, -0.0074059945, 0.0010444064, 0.015789703, -0.016153086, - -0.0040624966, -0.0032407495, 0.002348517, 0.008111291, -0.008873946, - 0.016171549, 0.017548969, 0.015893588, 0.030262947, -0.014314899, - -0.014123098, -0.0015592949, 0.011939418, 0.0065825954, 6.174441e-4, - -0.0055388636, -0.004881188, -0.0017163279, 0.029988497, 0.015585544, - -0.005500152, -0.003497233, -0.0021225696, 0.011310326, 0.007945502, - 0.010382324, -0.02948206, 0.020308048, 0.009416404, -0.025406087, - -0.0105055645, 0.014088409, 0.01352171, -4.729565e-4, 0.0011661263, - -0.015427215, 0.023046067, -0.00460207, -0.0109212315, 0.042385418, - 0.0116946595, -0.017536506, -2.1439644e-4, -0.0035178484, -0.024411378, - -0.00872064, 0.002343496, -0.026055744, 0.008462407, -0.01826877, - 0.0117207635, 8.6638366e-4, 0.010348401, 8.870762e-4, 0.030413534, - 6.58128e-4, 0.019493304, 0.014251477, 0.006667241, 0.028340455, - 0.009001582, -0.015385216, -0.0033450602, 0.008302915, -0.028121904, - -0.05677655, 0.005846349, 9.891482e-5, -0.020727174, 0.004476952, - -0.004698429, -0.0011015208, -0.003364659, 0.01641555, 0.010711321, - -0.0025523356, 0.020635897, -0.012640814, -0.020289533, 0.0051381243, - 0.004423409, 0.0088194115, 0.02616536, 0.013898323, 0.0013209397, - 0.01089651, 0.027815646, -7.775001e-4, 0.023659699, 0.0086335745, - 0.0141274035, -0.020685457, 0.0047944365, 0.015620755, -0.0062096706, - -7.2395196e-4, -0.012917208, 0.030617153, -0.0022931523, 0.0036433844, - -0.0068635666, 0.007732205, 3.7130094e-4, 0.019068886, 0.008668719, - 0.02378526, 0.004579702, 0.0093785105, -0.0127421655, 6.755431e-4, - 0.014005469, -0.016195785, 0.018249474, -0.0013987746, -0.026617412, - 0.010431464, -0.014832587, -0.01292265, 0.015271745, -0.04439003, - -0.0012643377, -8.8855164e-4, -0.026789235, 0.001358696, 0.0071055805, - -0.006139272, 0.002578593, 0.013090328, 0.0074110227, 0.004204035, - -0.012541938, 0.0011225416, -9.170035e-4, 0.029539244, 0.014527585, - -0.02259628, -0.021629164, -0.020093841, -0.0049833776, 0.00849784, - -0.005389192, 0.019206483, -0.0066457414, -0.018310312, -0.0014271858, - -0.01913348, 0.0070645837, -0.010203531, -0.012369926, -0.014706614, - -0.013490049, 0.007637943, -0.001419864, -0.0050855726, -0.008289271, - -0.012805635, 0.005119785, 0.015387255, 0.012263802, -0.018039644, - -0.019088581, -0.007997108, 5.7516852e-5, -0.037038896, 0.0037021579, - -0.03708672, 0.021830266, 0.008393129, -0.016713222, -0.026226118, - -0.009688998, -0.004771011, 0.020795872, -0.031882145, 3.8887997e-4, - 0.006856664, 0.0032437183, 0.005620539, -0.029019047, -0.031591095, - 0.006575391, -0.00895984, -0.023361584, -9.684413e-4, 0.02961499, - 5.1842496e-4, -0.0024310627, 0.02862343, -0.0069654523, -0.018970741, - -0.008579261, 0.013443937, 0.019215057, -0.0057982155, 0.010321771, - 0.015098957, -0.02147363, -0.0055922307, 0.014329146, -0.004054372, - -0.0013507641, 0.018545693, 0.011158194, -0.036294438, 0.013851025, - -0.009123936, -0.008353623, -0.0035578639, 0.0053809336, -0.01886478, - -0.012752835, -0.0021106035, -0.021917041, 0.019986609, -0.001189027, - -0.0018093729, 0.0034596496, 0.01377228, -0.0040636314, -9.7498484e-4, - -0.01095942, 0.005726765, 0.033076186, 0.010350534, -0.0011602382, - -0.017982611, 0.0047128345, 0.028296577, -0.02917955, -0.020170448, - 0.008066844, 0.009055837, -0.009701716, -0.008706078, -0.04247076, - -0.024633652, -0.019675724, 0.023912426, 0.026781684, -0.012022662, - -0.0067808926, -0.0059382566, 0.005060094, -0.013111029, -0.0012552873, - 0.012068627, -0.0033096804, 0.0069351513, 0.009297027, -0.012643737, - -1.3087476e-4, -0.014075445, -0.044884216, 0.019649265, 0.0313428, - 0.019087207, 0.0050207763, 0.022956047, 0.018694064, 0.005125652, - 0.0058734766, -0.011835616, -0.010277919, 0.03088724, -0.0013558284, - 0.030783078, -0.009714274, 0.013816193, -0.022024088, -0.0028815034, - 0.026013223, 0.023546627, 0.008802343, 0.016696583, 0.011928814, - -0.006955963, -0.033659946, 3.0051247e-4, 0.028149076, -0.0034011758, - 0.01931839, -0.0017108667, -2.800484e-4, -4.4078042e-4, 0.022278516, - -0.00347941, -0.030558016, 0.005731476, 0.020118065, -0.0016268388, - 0.0039183483, 0.002006128, -0.008079485, 0.006182848, 0.013302248, - 0.015983919, -0.027422346, 0.007168943, -0.0032489565, 0.01734408, - -0.0021991644, -0.0037836877, -0.014885944, -0.0056676064, 0.0168592, - -0.012333131, -0.004082749, 0.0023552908, 0.008534681, -0.01882243, - -0.008950579, 0.018728046, 0.009733526, -0.008111196, -0.0148150455, - -0.01848293, -0.0066705914, 0.0027537537, -0.0058862907, 0.0058690296, - -0.0037653053, -0.00888154, 0.0045259963, -0.005480931, -0.0025335327, - 0.006153735, -0.013344325, 0.007947792, 0.0017387861, 0.02957284, - -0.004692612, -7.15116e-4, -0.00894177, 0.009249779, 0.0062452564, - 0.016560799, 0.0063833515, 0.015527753, -0.023147207, 0.03193851, - -0.008941627, 0.0035216212, -0.0053883176, 0.023214249, -0.02726148, - 0.0098784575, 0.0067072753, -0.021011405, -0.018738888, -0.0013602495, - -2.8673047e-4, 0.003980777, -0.012670262, 0.005963204, 0.007879993, - 0.010984679, 0.031409353, -0.033066317, 0.017027678, 3.7495216e-4, - -0.0018116985, 0.010697007, -0.0019211171, -0.012306384, -0.013495619, - -0.010016557, -0.009120313, 0.0047019008, -0.0274331, -0.0038398495, - 0.0023136982, 0.023821991, 0.0070532802, -0.018183291, 0.012508484, - -0.01533662, 0.0038278608, -0.00206458, 0.013005089, 0.008635694, - -0.023288483, -0.0106578525, 4.6278245e-5, -0.011275669, 0.0052324175, - -0.01720159, -0.0032148906, -0.0054271477, -0.012476949, -0.0019360995, - 0.011309485, 0.02468295, 0.004746372, -0.014728892, 4.670167e-4, - 0.033226725, -0.002303968, -0.041191705, 0.009052673, -0.012548085, - -0.0103066815, -0.009404827, 0.008730959, 9.0087246e-4, 0.0012791016, - -0.0016023633, -0.005456082, 0.018350884, 0.021134373, 0.004765937, - 0.0033858235, -0.019102998, -0.0010143004, -0.0116459485, 0.0019145057, - 0.014588204, 0.012181649, -0.009535386, -0.020475568, -0.017704686, - -0.0033123654, 0.013076765, -0.0049942755, 0.006354561, 0.04496046, - 0.01770166, 0.019461358, -0.01889517, 0.0014472333, 0.0064656027, - 0.006232476, 0.0026119745, -0.005517688, 0.009409324, 0.037996512, - -0.0011661679, -8.161795e-4, 0.013928576, -0.0069672978, -0.004906418, - -0.023534786, -0.02417416, -0.009585114, 0.02238915, -0.019328985, - -0.015075386, 0.010877712, -5.873309e-4, -0.027340984, -0.0049911025, - 0.0041085933, -0.004356125, 0.012821292, -0.006467601, -0.0041061556, - 0.0069428403, -0.0142888455, 0.009642126, 0.011032768, 0.029015647, - 0.013931274, -0.021134814, 0.010308189, 0.02652655, 0.030683178, - 0.012229156, 0.0067168996, 0.022570092, -0.024429323, -0.005274899, - -0.02203285, -0.02006203, 0.006888801, 0.016664594, 2.2509914e-4, - 0.006653715, -0.024722423, -0.01803875, 0.01684021, 0.024540557, - 0.028599482, -0.005697971, -0.015981957, -0.043491762, -0.02217063, - 0.010642481, 0.027383082, -0.005090005, 0.007589288, 5.171145e-4, - -0.02497892, 0.025508232, -0.015557663, -0.0010882298, -0.008659075, - -0.010455378, -0.0036453267, -0.0019637241, 0.0033224938, -0.0134333335, - 0.0029478315, 0.024124717, -0.008099692, -0.0208335, 0.0069576264, - -0.016605824, 0.02076445, 0.01686141, 0.02437427, -0.0023752947, - 0.0015199927, -0.0029240837, -0.018026123, 0.00958705, -0.0066326754, - -0.021823628, 0.009819636, -0.012602463, -0.023990981, 0.0029370394, - 0.007580557, -0.016998941, 0.004274718, -0.007513146, -0.017774869, - 0.023760524, -0.019569196, -0.011388366, 0.003377392, 0.0126805175, - 0.017715292, 0.018492391, -0.020125728, 0.021209378, -0.0014266068, - -0.006372148, 0.023333674, 0.01815678, 0.011772846, 0.007307245, - 0.010900979, -0.006024495, -0.002331283, -0.0059459656, -0.014738612, - 0.013582898, -0.021105597, 0.017354531, -0.017976975, 0.021575734, - -0.0066887117, -0.005485678, -0.02291808, -0.017728036, -0.023193438, - 0.004657853, 0.01833496, -0.021783317, 0.0044279722, 0.01569564, - 0.045504116, 0.006448414, 0.025156204, -0.009721434, 0.016368844, - 0.028223364, 0.0071543935, -0.01703499, 7.549616e-4, -0.001763487, - -0.006044702, 0.01861097, -0.012644238, -0.019685756, 0.011580195, - 0.006648305, -0.031472262, -0.024421744, 0.0123053165, 0.005607309, - -0.013336983, -0.034846798, 0.016336314, 0.01860052, -0.008261189, - -0.022313554, -0.012076257, -0.020151652, -0.0052419426, 0.027425086, - -0.010071609, 0.022931261, -0.005372037, 0.0067698136, 0.0012972284, - 6.515921e-4, -0.011138301, 0.008532039, 0.009750309, -0.02347914, - -0.007428479, -0.022617787, 0.030677252, -0.007548802, 0.017351199, - -0.018089715, 0.012622031, 0.026349142, -0.031089565, -0.00344482, - 0.0011898953, -0.002067699, -0.015703423, 0.009295295, 0.017169295, - -0.030553252, 0.018409127, 0.033084664, 0.0054816823, 0.016708525, - -0.004697671, 0.01611802, 6.952819e-5, 0.018467125, -0.008716704, - -0.0031865588, -0.0036216215, 0.015851257, -0.0036727714, -0.011426239, - -6.7479064e-4, 0.00811277, -0.019396618, 7.422796e-4, 0.007203456, - 0.009850868, 0.008275201, 7.342043e-4, -0.0069691218, 0.0016618898, - -0.01622172, 0.008849865, -0.0057980428, -0.021295639, -0.025145423, - 0.008332983, -0.0023972802, 0.0012369886, 0.0015087831, 0.025449848, - -0.005978812, -0.009880857, -0.012294516, -0.0034918797, -0.003944436, - -0.008238448, 0.007211021, -0.008253015, -0.017424634, 0.0011677183, - -0.01028123, -0.0018913242, -0.005651583, -0.0226675, 0.011062708, - -0.0027393582, -0.0018386397, 0.012780791, 0.028142689, 0.009268814, - -0.0016034412, 0.0020211237, -0.0067266473, 0.009618896, 0.024710085, - 0.003286125, -0.006397862, 0.023090802, 0.01831832, 0.010132429, - 0.008843879, 0.016428478, 0.0011044897, 0.0058954624, 0.01980875, - -0.00452156, 0.024439337, -0.018030023, -0.0018262677, 0.021521585, - -0.0031571167, -0.021672346, 0.009434564, -0.016511137, 0.0121493675, - 0.014038915, 0.0034389626, -0.013343771, -0.007420105, -0.0021658167, - -0.015063433, 0.026333034, -0.010943211, -0.025883399, 0.003262932, - -0.010857768, -0.007397331, 0.015581965, 0.005940362, 6.0033246e-5, - -0.0074260496, 0.012183247, -0.0031790398, 0.01268813, -0.003676502, - -1.3587615e-4, 0.011797123, -0.025523946, -3.2933045e-4, -0.004331078, - -0.005457743, 5.8084045e-4, 0.018507134, -0.02394867, -0.016529704, - -0.0019868386, -0.0026529396, -0.018621448, -0.010654728, 0.004884931, - 0.0015865592, 0.018119873, -0.014538213, -0.0039603505, 0.006215012, - 5.6045747e-4, 0.016891908, 0.013849688, 0.0077130334, 4.902087e-4, - 0.00906228, -0.02230571, 0.008757381, 0.019737283, 0.010264311, - 0.0066200756, -0.002808996, 0.0086875055, -0.0035340784, -0.0053912764, - -8.398645e-4, 0.027089965, 0.023440383, 0.01133703, 0.025555408, - 0.040396024, -0.014328786, -0.022534333, -0.006651153, 0.006526136, - -0.0030096404, 0.010587245, -0.0026401663, 0.024490986, -0.0018504948, - -0.011825355, 0.012828035, -4.7520036e-4, 0.010771933, 1.18034404e-4, - 0.008463185, -0.008292556, -0.015810467, 0.027016941, -0.011199779, - -0.025165912, 0.01367883, 0.014685451, -0.014924797, 0.005036836, - -0.017753797, 0.0044662114, -0.018693944, 0.027464133, -0.0016022862, - 0.017334292, 0.007880691, -0.006248492, 0.013439716, 0.0046278434, - -0.006814575, 8.1786903e-4, -0.011061483, 0.011785625, 0.0034767617, - -0.032432493, -0.0021085734, 0.006218201, 6.66035e-4, 0.015597349, - 0.021348415, 0.019291166, 0.009095142, 0.012340992, -0.0128879305, - 0.016835459, -0.0063150325, -0.035371445, 0.0023620517, 0.032401405, - -0.027125852, -0.022771034, -0.0069871517, -0.015420591, 5.085006e-4, - 1.1237106e-4, 0.0027701675, 0.009332184, 0.0013384914, 0.02303341, - 0.020076916, 0.0139208175, -0.04736475, -0.0052108695, 4.406569e-4, - 0.008940686, 0.0040369527, 0.0060183546, 0.007705567, 0.010954658, - -0.007428517, -0.006700865, -0.021467669, 0.00980277, 0.026528373, - 0.0073523107, -0.008625315, -0.008753037, 0.012052078, -0.032972157, - 0.015417963, -0.0018195816, -0.02735529, 0.009046036, 0.022961367, - 0.006010349, 0.0024934744, 4.441961e-4, 0.005518296, 0.0012047085, - -0.005164287, 0.021532279, -0.0038012234, 0.020957157, 0.013099927, - 0.0043688854, 0.018839784, -0.022010392, -0.008372614, -0.006517309, - -0.008529583, 0.011135935, 0.010870701, 0.023292447, 0.021658266, - 0.0075813145, 0.008306574, 0.002795768, 5.7293545e-4, 0.01978072, - 0.004391977, -0.026601236, -0.017357, -0.0024762019, 0.018495638, - -0.007758461, 0.009215639, 0.0021993401, -0.0036473833, -2.2919917e-4, - 0.020155078, -0.00612448, 0.002523667, 0.03371394, -0.0010837633, - -0.02647636, 0.021542972, -0.011483468, 0.017126106, -0.02049947, - -0.015807861, -0.025918314, -0.014037699, -0.006455618, -0.0039709834, - -0.00665313, -0.0033789722, -0.037553515, -0.038569923, 0.002785179, - -0.020197053, -0.009017712, 0.014578651, -0.04091947, -0.018042466, - -0.012646205, 0.026711375, -0.009991649, -0.016340308, -5.215845e-4, - 0.0031893938, -0.017346602, 0.01307571, 0.0044555212, 0.025570732, - 0.006952894, -0.006101799, 0.021532904, -0.033641968, 0.008490047, - -0.006317491, -0.015078677, 0.0047264635, -0.001942196, 7.3231384e-4, - -0.0039623785, 0.003936641, 0.0071537294, 0.0030253544, 8.4684923e-4, - -0.0056618717, 0.007327479, -0.0021432957, -0.0061098817, -0.0077057895, - 0.006399185, -0.017345347, -0.011312058, 0.0028817, 0.032082755, - -0.0042026322, -0.01878735, 0.0039077215, 0.02343165, 0.0056469124, - -0.007811196, -0.010171058, -0.030358972, 0.029036472, 0.017679838, - -0.00356551, -0.0038177562, -0.014783868, -0.032985494, -0.016261704, - 0.011341472, 8.458745e-4, -0.017552901, -0.016447075, 0.0029146697, - 0.0044366824, 0.04882568, -5.073489e-4, -0.0017272226, 0.0017089564, - -0.013625216, -0.0060647284, 0.0039722864, 0.010012475, -0.009867996, - -0.008236161, -6.08006e-4, 0.0030629716, 0.016830426, 0.014382428, - -0.008038772, -7.0087356e-4, -0.017690385, 0.004577928, -1.966455e-4, - 0.018023044, -0.0031752465, -0.0026306089, 0.013402561, -0.018219264, - 0.009641099, -0.038156465, -0.010044956, 0.024099471, 0.0052198833, - -0.0035930423, 0.0033240283, 0.008282649, -0.006103138, 0.0063239094, - 0.013861131, -0.010174579, -4.6453977e-4, 0.028988909, 0.013732492, - 0.006592838, 0.014649965, -0.008635962, 0.027505726, -0.032810077, - 0.012277611, 0.01260608, -0.022648247, 0.025775325, -0.013833426, - 0.012163366, 0.021588461, 0.009373828, -0.006331749, -0.007204532, - -0.01755565, 0.017826073, 0.0039153304, -0.0026144634, 0.018570838, - -0.0075694653, 0.0014281975, -0.025531774, -0.022244776, 0.012032132, - 0.023532609, -0.0053848196, -0.014960801, -0.0039496296, -0.01191, - -0.0029444322, 0.024201466, 0.00844424, 0.001984966, -0.007825897, - 0.0019426587, -0.0058262157, 0.013299429, 0.024822026, -0.009156611, - -0.013725477, -0.0069735358, -0.0118806, 0.019998746, -0.004038954, - 0.021834057, -0.00225124, -1.8994838e-4, -0.024999123, -0.017362894, - -0.0112091135, 0.018289214, -0.005871238, 4.4978835e-4, 0.0193643, - -0.0016008186, 0.0040230663, -0.016226895, 0.017755948, 0.005054397, - -0.016563557, -0.0062030046, -0.00970442, 0.01794733, 0.016977614, - -0.0026336205, -0.010250158, 0.0040732967, -0.010597702, 0.00870023, - -0.025341835, -0.014504867, -0.0017770937, -0.002789131, -0.036557995, - -6.497762e-4, 3.6607965e-4, 0.0014338166, 0.019659955, -0.004780069, - 0.0037161643, 0.02823718, 2.4551302e-4, -0.025683343, 0.013941819, - 0.017068727, -0.013122064, 4.0408623e-4, 0.013462233, -0.0070247953, - -0.0034762542, 0.012903019, 0.036690496, 0.010398886, 9.356957e-4, - 0.023038188, 0.00742346, 0.013241463, 6.37628e-4, 0.019178899, - -0.005490802, 0.0021517957, -0.0054192613, 0.040465817, -0.0057533584, - -0.0092162145, 0.005617981, -0.0022477887, 0.0053751655, 0.016917814, - 0.028905703, -0.01667054, 0.022924049, 0.0062780427, -0.022397658, - -0.028473068, 0.015070377, -0.027780054, -0.0053429785, -0.010788739, - 0.014317, -0.0061088353, -0.028423335, -0.023569351, -0.008784335, - -0.0019874668, -0.0015124108, -0.0334868, 0.008131487, 0.024206646, - -0.0033164138, -0.012908048, -0.02234278, 0.0058744643, 0.0010509171, - -0.024021875, 0.03930962, -0.009007647, -8.0356834e-4, 0.0013263965, - 0.038223248, 0.02040601, 0.0058456855, -0.007949156, 0.011872971, - 0.010569171, 0.016427709, 0.010283663, 0.014319273, -0.019417422, - 0.009164827, -0.009589618, -0.018925952, 0.0068071336, 0.01612242, - 0.0023979968, 0.0026207212, -0.0020485218, -0.007680617, 0.007827592, - -0.040407784, 0.006602074, -0.003243996, -0.003983716, 0.016199736, - -0.03413446, -0.019387648, 0.0012737128, 0.015196521, 0.0066942065, - -0.023622714, -0.007563757, -0.001997967, -0.010452412, 0.0045826924, - 0.015127684, -0.0032727106, 0.01494514, 0.0077557187, -0.0072517535, - 0.0019248318, -0.008315579, -0.00920081, 0.021994399, 0.004445793, - 0.017868934, 7.403633e-4, -0.0108638415, 0.002151208, 0.0019271821, - -0.020311117, 0.010062397, -0.020947492, 0.00694851, -0.020515174, - 0.009114016, 0.014155497, 0.028507307, 0.001651347, -0.013044188, - 0.016400885, 0.0076286984, 0.0061157714, -0.0082106525, -0.01811608, - 0.0049281656, 0.007884411, -0.009263993, 0.009655008, 0.011109634, - 0.018366907, 0.005887459, -0.016804954, 0.011102262, 0.003961971, - -0.010784248, -0.018518277, 0.0025590225, 0.007181905, -0.03107278, - 0.0027971359, 0.010730038, -9.199546e-4, -0.017703647, -0.0058080265, - 0.01502181, 0.004354151, 4.4312025e-4, -0.009408611, 0.0032160655, - 0.009201438, 0.020152656, 0.0032083637, 0.009228935, -0.01101043, - 0.0012208299, 0.0018755696, 0.0042671883, -1.6740132e-4, 0.021303717, - -0.010483972, -0.0045192773, 0.0114444215, 0.027970862, 0.019867076, - 0.025436265, -0.014688681, -0.0062123705, -0.02232182, -0.010598468, - -0.015505534, -0.006953561, -0.016152848, -0.005046956, -0.027920296, - 8.3218986e-4, -0.026429603, 0.026265454, 0.011012149, 0.016229788, - 0.015319598, -0.0074403426, 0.027430812, 0.0015761154, -0.002589642, - 0.0010722727, -0.03075292, -0.022710878, -0.016036864, -0.02875479, - 0.012613455, -0.023467757, -0.020609753, 0.0018104324, 0.0016396546, - 0.0071027405, 0.02987852, -0.02039001, -0.0070710992, -0.007828545, - 6.4011867e-4, -0.0160416, 0.016650913, -0.016597811, 0.010151523, - 0.0017452454, -0.01752655, 0.009030701, 0.021102969, -0.03140695, - -0.0179516, 0.0047195223, -0.00567315, -0.008153586, 0.019459909, - 0.02600403, -0.003703566, 0.015199562, 0.002446692, -0.0021788536, - 0.008735576, 0.0016180726, -0.011430504, 0.0069430503, 0.016728073, - -0.022704756, 0.022763645, 0.004458657, -0.011212202, 0.014451722, - -0.025703792, 0.008446601, 0.011357262, 0.0027335705, 0.006259856, - -0.022025714, 0.019440167, -0.004915139, 0.016889958, -0.008404322, - 8.907734e-4, -0.02571041, 0.020289898, -0.007739153, -0.02144835, - -0.013382998, -0.014390261, 7.213521e-4, -0.009721069, -0.0017053165, - 0.023506524, -0.0025609916, 0.02186581, 0.013394119, 0.016987048, - 0.025586389, -0.013226577, 0.033415128, 0.036966167, -0.019949606, - 0.0019329374, 3.5732723e-5, -0.021625105, 0.0076496922, 0.0041572633, - 0.025157113, -0.019514548, -0.010395784, -0.018898724, -0.007824259, - 0.023500284, 0.02448152, -0.0013078208, -0.022029014, 0.005189656, - -0.016096953, 0.014669309, 0.0074754665, 0.010637472, 0.021415196, - 0.017817939, -0.0055424, 0.01874963, 0.017185451, -0.025318159, - 0.013818899, -0.013105663, 0.0097551625, 0.0014555326, -0.009910757, - -0.010609295, -0.016104555, 0.024917213, 0.024078382, -0.014581297, - 0.001485771, 0.0049905498, 0.012445369, -0.0014284987, -0.002965826, - -0.0022888023, -0.022259206, -0.016301645, 0.022365129, -0.0044473843, - -0.023386573, 0.0015746244, 0.007622253, 0.02042552, -0.0017043878, - 0.002380869, -0.013471562, 0.040887754, 0.027323605, 0.007302581, - 3.7127313e-5, -0.014169652, -0.0074241576, 0.005257493, 0.013803309, - 0.005638858, 0.001409305, -0.0133363, -0.014601241, -0.0012091489, - -0.039162226, 0.005034682, 0.02067021, -0.016208893, 0.008323841, - -8.011989e-4, 0.03291187, 0.005404506, -0.0054335394, 0.0025706778, - 0.018112864, -0.00686267, -0.0023841988, -0.020477856, -0.01580062, - -0.006133097, -0.021748044, -0.010226243, -0.022623634, 0.018850707, - -0.0066293227, 0.007063244, 0.028577285, -0.013426673, -9.851255e-4, - 0.0045549073, 0.011504924, 0.005162991, -0.0026557413, -0.0063377046, - 0.004452978, -0.003811181, -0.011807269, -0.026219247, -0.0015258783, - 0.011949718, -0.01638263, -0.006352792, -0.015631173, -0.005296434, - 0.009825908, 0.012642425, 0.03472602, -0.008786326, 0.0010154718, - -0.0019148642, 0.014678436, -5.706406e-4, 0.017515725, -0.025374353, - 0.0071225683, -0.012936636, -0.032523733, -0.013420469, 0.035498306, - -0.036300167, -0.030449834, -0.0058818436, 0.00878211, 0.0049904976, - -0.015743483, 0.01840097, 0.013560913, 0.011356717, 0.0270284, - -0.016804243, -0.0047914484, 0.042087432, 0.011243646, -0.0041937446, - -0.015137682, 0.025993079, -0.0036186578, 0.017353887, -7.929585e-4, - -0.012557657, -0.011379509, 5.449079e-4, 0.010563399, 0.0012650987, - 0.012557309, 1.4108806e-5, -0.030393906, 0.004240084, -0.022065861, - -0.0041041337, 0.006179404, -1.844473e-4, -0.020320868, 0.0011750713, - -0.009435827, -0.020030048, -0.01641271, 0.004544226, -3.3167156e-4, - -2.716185e-4, 0.020160757, 0.023831228, 0.010107533, -0.00930708, - -0.0041165412, -0.021296222, -0.029770352, -0.011300931, 0.025505705, - 0.024781572, -0.01715813, 0.0066382103, 0.01794279, -0.002227329, - 0.012223005, 0.0028460326, 0.006846772, -0.01893883, 0.031997148, - -0.003849529, -0.0044201245, -0.026867539, -0.01712035, -0.014820271, - -0.01156456, -0.003911764, 0.0059079174, -0.005618719, -0.016189782, - 0.0016662074, -0.00619788, -0.015945291, -0.003395089, -0.016203273, - -0.004953488, 0.0020492133, -0.0040927655, -0.0011640111, -0.00832911, - 0.0076709045, -0.004530786, -0.025660655, 6.1416026e-4, -0.015150852, - -0.01241569, -0.009458748, 9.996957e-5, 0.0015825619, 0.003968674, - 0.013679928, 0.002880703, -0.006325899, -0.02109314, 0.011456737, - 0.0120048, 0.040480584, 0.01187073, -0.008547372, -0.013545037, - -0.016852826, 0.00657605, -0.0175957, 0.032622278, 0.00487471, - 0.009336999, 0.0078017805, 0.009626474, -0.0054899044, 0.01936697, - 0.020217996, 0.0026027139, 0.013772755, 0.0145322615, 0.023721498, - -0.012175327, -0.026769314, -0.016235368, -0.02725086, -0.0031373287, - -0.018725248, -0.011819816, 0.016553804, -0.0064671254, -0.017823393, - -0.0119510405, -0.010181862, -0.007102709, -0.011587083, 0.041951746, - -0.010520548, 0.009659991, 0.01791129, 0.019093448, 0.010049908, - -0.0018618437, -0.011334606, 0.0014340461, 0.019268792, -0.010813323, - -0.014205082, -0.023782054, 0.026378384, 0.02001361, -0.025370242, - -0.0061327326, -0.0018507118, -0.012581944, 0.004569702, 0.03330372, - -0.010943103, -0.018178271, 0.028404942, -0.01936313, 8.8021485e-4, - 0.004767699, 0.017478405, 0.011766833, -0.006904897, 0.010889458, - -0.01827624, -0.0018088666, -0.0058287093, 0.002495945, -2.4491374e-4, - -0.0019110703, 0.009597818, -0.0034585204, 0.008689185, -0.016856637, - -0.013548958, -0.01877713, 0.006059355, 0.014705637, -0.0018745854, - -0.01692171, -0.0033242328, -0.014472009, 0.0073454403, -0.0041536847, - -0.010863692, -0.016018163, -4.1204612e-4, 0.03500566, 0.01711331, - -4.6197452e-5, 0.0068721576, -0.027540699, -0.015864594, 0.011013004, - -4.3796892e-5, -0.011648565, -0.018370446, -0.027302375, 0.012116171, - 8.0549624e-4, -0.019850753, 0.016456205 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.021296656, 0.021221276, 0.0274993, 0.01575468, 0.010419852, - 0.023161843, 0.060751878, 0.037202112, -0.028428692, 0.025998417, - 0.002387957, 0.00632426, 0.04164653, -0.017704744, 0.034360673, - -0.010919149, -0.010551773, 0.028947644, 0.043208968, 0.013121976, - -0.011382657, -0.007832233, 0.021403352, -0.048120372, -0.0013547167, - -0.009308522, 0.004217174, -0.004017846, -0.010213487, -0.008350449, - -0.03572427, -0.015305369, -4.3745694e-4, 0.0058818078, -0.0725201, - 0.04798194, 1.370343e-4, -0.0049962206, -0.016873294, -0.032928064, - -0.02901943, -0.033571642, 0.008661658, -0.0021581887, -0.03422536, - -0.019924061, -0.0072451867, -0.04751918, -0.024684383, -0.02307158, - -0.08582977, -0.007040435, -0.030628888, -0.015668202, -0.012497257, - 0.037665445, 0.015009017, -0.030011853, 0.037844524, 0.0019570298, - 0.0068988944, 0.009801149, -0.010444622, -0.010496573, -0.02316129, - -0.059855945, 0.02151212, 0.032332852, 0.025985595, -0.013099508, - -0.060294777, 0.06496469, 0.060250856, 0.04024806, 0.06866408, - 0.033682447, 0.047487378, -0.022663252, 0.032020815, 0.004945644, - -0.045496304, -0.041464407, -0.0093488395, 0.043196682, 0.04405762, - -0.012995266, -0.05118412, -0.019422462, -6.4511615e-4, -0.053669393, - -0.010881575, 0.045266144, -0.03094219, -0.030447122, -0.026491834, - 0.027528739, 0.01147951, -0.07474313, -0.054765627, -0.02211858, - 0.047640476, -0.019735252, 0.017624212, -0.044940624, 8.523074e-4, - 0.0131728565, -0.038966514, -0.011233396, 0.015203397, -0.045960918, - -0.023375005, 0.034799106, -0.12962925, -0.007845777, -0.0013328277, - 0.032112904, 0.023424786, -0.04465499, 0.023539511, 0.024027025, - -5.468301e-4, -0.011013931, 0.027816802, -0.0030198186, -0.0032607592, - 0.0076921065, 0.012426949, 0.0038746407, 0.030524036, -0.013709183, - -0.029792799, 0.039243635, -0.03443267, 0.015648605, 0.009611486, - 0.034342248, 0.017257962, 0.05425909, 0.05286481, -0.060175836, - -0.034364484, 0.012516367, 0.031150615, 0.018696189, -0.04306697, - -0.01884231, 0.011285068, 0.01456971, -0.005227517, 2.1448675e-4, - -0.015120043, 0.037470758, 0.025825633, 9.33431e-4, -0.033555917, - -0.002490605, 0.01657925, 0.0149415955, 0.0309474, -0.017208954, - 0.020051671, 0.0012403568, 0.027565483, 0.01094456, -0.011000535, - -0.018878477, -0.036325056, 0.020637296, -0.059408702, 0.02908137, - -0.044248767, -0.090803444, 0.028084777, 0.05237801, -0.010368938, - 0.0325649, 0.011421857, -0.023838555, 0.029740535, 0.023126917, - 0.033798445, 0.018692126, 0.010077153, 0.012011164, -0.022699054, - 0.03779168, 0.039748482, 0.0057605607, -5.594105e-4, 0.030782036, - 0.006043816, -0.07255586, 0.019922419, 0.019264458, 0.028527424, - -0.024305632, 0.010578809, 0.045096144, -0.015235399, 0.006922045, - -0.03217457, 0.0053248703, -0.024791555, 0.0042143366, 0.0013761477, - -0.0071657463, 0.0054415446, 0.035396833, 0.017965913, 0.0267433, - -0.021311797, -4.0607413e-4, 0.016388543, 0.015468498, -0.021330979, - -0.014168637, -0.04769023, 1.7182225e-5, 0.0031243025, 0.0221025, - 0.011915605, -0.008752048, -0.002747664, -0.0022946992, -0.011774321, - -0.023701904, -0.024398265, 0.05218797, 0.023810484, 0.048832797, - -0.001333133, -0.030686088, -0.03048342, 0.00803533, 0.005147764, - 0.013641176, -0.019648649, -0.03831132, -0.031541012, 0.019663945, - 0.056950353, -0.034706015, 0.027672384, -0.017625686, -0.018920327, - 0.019889437, 0.02371072, 0.013844092, 0.0024048127, 0.012012424, - 0.00660984, 0.023150794, 0.022966437, -0.04351743, 0.02792912, - -0.0056746695, -0.04012821, 0.016052656, -0.0051256055, 0.05611005, - 0.028291786, -0.033179086, -0.052365355, 0.004513472, 0.06925515, - 0.015546744, -0.027995259, -0.007620414, -0.0017110668, -0.005037919, - 0.037774544, -0.020605994, 0.045010503, 0.03316839, 0.03877722, - 0.0077951094, -0.048749015, -0.034736108, 0.03894215, 0.004275446, - 0.0084613, 0.019135771, -0.0074785664, -0.024213409, -0.027452523, - -0.007852104, 0.0025340868, 0.051518552, -0.052037332, -0.040372055, - -0.033620544, -0.0050111283, 0.023645272, -0.0022366852, -0.0037878717, - 0.0022208304, 0.0138446735, -0.044480294, -0.008470464, 0.045979876, - -0.010957853, -0.031498007, 0.016704492, -0.017685933, -0.019092139, - 0.013780125, 0.024869008, -0.017761314, 0.01415923, 0.019102484, - -0.006960751, -0.008428199, -0.022730783, -0.029689625, -0.065645695, - 0.017400533, 0.016381111, 0.036865544, -0.02911505, 0.034727108, - 0.03387444, 0.006770069, -0.0076644653, 0.006002735, -0.014787808, - -0.037413917, 0.006060643, 0.018798715, 0.013598148, 0.022472845, - -0.04029835, 0.037345897, -0.035158914, -0.008091064, 0.05365862, - 0.019578505, -0.030755274, -0.0046806782, 0.034455337, 0.040925033, - 0.03692867, 0.033362307, -0.016882244, 0.017726885, 0.04153095, - -0.029516164, -0.011792517, 0.007106206, 0.009402216, -0.045490596, - -0.015425802, -0.032427374, 0.034196835, 0.013483367, -0.0051760105, - -0.029301025, 0.07103014, 0.022029558, -0.11127145, 0.018017115, - 0.052660916, 0.079005085, -0.042698443, -0.027216053, 0.0050282343, - 0.022287028, 0.03302088, 0.047454376, 0.023815488, -0.027847676, - 0.01966882, 0.052099027, 0.01889283, 0.0069551067, -0.053229894, - -0.016538918, -0.0023662157, -0.050759535, 0.022054914, -0.010527359, - 0.03967774, -0.009402808, 0.0063430793, 0.031869017, -0.007978081, - -0.01209236, -0.0026845778, -0.0035018264, -0.042749666, -0.053461198, - -0.016074818, -0.031669892, -0.0037665234, 0.0281536, 4.574663e-4, - 0.03884272, 0.00359422, -0.05176311, 0.0015424832, -0.041849688, - 0.046910584, -0.014324114, -0.0113599915, -0.0021185947, -0.053687677, - -0.0075673633, 0.013621982, 0.0021595997, 0.050882544, -0.03325068, - 0.035409413, 0.047389977, 0.020900527, 0.005641346, -0.045305114, - 0.015011938, 0.029945351, -0.03947269, -0.0660635, -0.050635956, - -0.050611764, -0.025234936, -0.032970123, 0.017935365, 0.004299048, - -7.1340357e-4, -0.041233968, 0.04460632, -0.034617037, 0.033441223, - -0.010823547, -0.021208508, 0.055172995, 0.042851146, 0.0069266725, - -0.016765319, -0.02240091, -0.030723324, 0.027453508, -0.052263536, - 0.013417424, 0.025932763, -0.034331642, -0.00499161, -0.0133723635, - -0.026405577, -0.0032570206, -0.011872889, 0.028463919, -0.064515434, - 0.006206558, -0.023641977, 0.03498735, -0.06420726, 0.02208649, - 0.024605071, 0.023109019, -0.031174855, -0.0013451347, -0.04349883, - 0.007139568, -0.016301842, 0.005218323, 0.006893064, -0.028464753, - 0.058140956, -7.801258e-5, 0.021116858, 0.0458928, -0.022808047, - -0.0077180467, -0.018914118, 0.047547277, 0.015632574, 0.09085465, - -0.017625855, 0.06553087, -0.018828738, 0.0025457388, 0.029644167, - -0.011308693, 0.012554993, -1.003051e-6, 0.022337688, 0.021635896, - 0.026965324, 0.00855217, -0.02056366, -0.048728134, 0.010895408, - -0.044042554, -0.026927466, 0.014003319, -0.013959396, -0.023750708, - -0.054402098, 0.0023914336, 0.0066285473, -0.01585711, 0.010790362, - -0.019361703, -0.012978169, -0.05651648, -0.028425107, 0.00207097, - 0.028714504, -0.016799375, -0.045086287, -0.0069369012, 0.019529397, - 0.015186788, 0.0031783336, -0.011542312, -0.08919114, 0.02149032, - 0.07689262, 0.0032404985, 0.08235858, -0.0025126534, -0.0454975, - -0.001761998, -0.079428956, 0.043810233, 0.03667283, -0.021224912, - -0.013369809, 0.046640046, -0.028535401, 0.0066813747, -0.03382102, - 0.03133853, -0.03361132, -0.0046139373, 0.004936709, -0.059169352, - 0.05175047, -0.008292353, -0.006442128, -0.005769905, -0.04277207, - -0.050540622, 0.03500825, 0.036297284, -0.016198257, 0.006821075, - 0.022304166, -0.03567395, 0.07229024, -0.023725683, 0.0217628, - 0.08220178, 0.02366847, 0.016812654, 2.0577575e-4, -0.018225443, - -0.033684246, 0.0023761343, -0.003447823, -0.010323189, -0.025588723, - 0.012281237, -0.016424231, 0.042289916, -0.014967182, 0.014582648, - -0.025082514, -0.003975907, -0.007790082, -0.038075693, -0.0072333096, - -0.014672472, 0.031622864, 0.013703235, -0.028370982, 0.019455368, - 0.021406226, 0.02190319, 0.05010515, 0.007533758, 0.045904037, - -0.0088132415, -0.05667481, 0.015707247, -0.0111007225, 0.056062207, - 0.024884043, 0.010355457, 0.017518964, -0.018221732, -0.014942131, - -0.0045059263, -0.05278615, -0.034599867, 0.018246736, 0.038343217, - 0.023822645, 0.028610548, 0.040446244, 0.032659378, -0.0056150146, - -0.017554544, 0.08080645, -0.031046543, -0.010709266, 0.055781186, - -0.013911579, -0.020263474, -0.059260454, -0.007859244, -0.022991847, - 0.05174182, 0.061603915, -0.014223676, 0.0046349745, 0.008339519, - -0.05599486, 0.047234546, -0.029939042, 0.026559858, -0.025634145, - 0.018052252, -0.004114532, -0.039773513, -0.008978726, 0.046961088, - -0.043774243, -0.01656335, -0.033993356, 0.05520641, 0.01529345, - 0.019044055, -0.0029256204, -0.002218557, -0.018577687, 0.036247946, - -0.026651906, -0.035375863, -0.029021788, 0.020807207, -0.08760508, - 0.062911876, -0.014982413, -0.029421909, -0.009465788, -0.010240035, - 0.0066431435, -2.0410804e-5, -0.016582647, -0.0039171004, 0.055643816, - -0.031483695, 0.0099197375, 0.04723593, 0.043113787, -0.03744621, - 0.006296741, 0.03131682, -0.0211112, -0.011824386, 0.030384013, - -0.019144477, -0.02793462, 0.029762622, -0.047852498, 0.0021525843, - 0.004560238, -0.041068707, -0.07003734, -0.04879819, 0.01363134, - 0.027685117, 0.053520765, -0.006105555, -0.018317517, 0.024384446, - 0.041052204, -0.0070138774, -0.015269985, -0.02405018, 0.031160655, - -0.03294687, 0.024710936, -0.045587186, 0.032313865, 0.0057226634, - 0.011099104, 0.048510436, -0.014051572, 0.018870447, 0.05885087, - -0.023038715, -0.01600793, -0.0038537998, -0.04628459, -0.035687245, - 0.024071226, -0.022978878, -0.004327479, 0.020696212, -0.053275697, - 0.021696089, -0.011813864, -0.036308076, -0.017126538, 0.0011343766, - -0.001340408, 0.028429484, -0.029018817, -1.1567156e-4, 0.024577975, - 0.002864792, 0.0043856963, 0.012016924, -0.053053226, 0.015263058, - -0.049874447, 0.01865053, 0.06869013, 0.06174249, 0.01644055, - 0.020744825, -0.015173315, 0.054885842, -0.049685784, 0.00781843, - -0.02794894, 0.009505603, -0.017984407, -9.5863047e-4, 0.07637232, - 0.03415641, -0.05813822, 0.038420845, -0.026272822, -0.021857994, - -0.016576182, -0.05481967, -0.040427417, 0.009339343, -0.064267345, - 0.012336025, 0.0393713, 0.061620817, -0.0316866, -0.015068999, - -0.027255328, -0.03908195, 0.020588063, -0.01013938, -0.0024634053, - 0.011558072, 0.036230944, 0.036284357, -0.03600229, 0.011017812, - 0.0078902785, 0.029984297, 3.182493e-4, -0.042328484, -0.013382238, - 0.032282237, 0.035664357, 0.016956657, 0.014903304, 0.01666342, - 0.027190428, 0.010139164, -0.016841168, 0.015524163, 0.025549518, - 0.040566776, -0.024965892, -0.03194071, -0.029013341, 0.02621054, - -0.012213784, 0.039319143, 0.0042116665, 0.0049611675, -0.0032733297, - 0.0027822896, -0.010589263, 0.008159926, 0.026610067, -0.03598411, - 0.0469362, -0.05536671, -0.012800608, 0.0137759745, -0.038565956, - 0.04824464, 0.0027017896, 0.0011277233, 0.017308595, -0.005525051, - 0.0043717897, 0.049868334, -0.029838188, -0.005925984, -0.006904716, - 0.03403891, -0.035016626, -0.058226075, -0.006645337, -0.03144815, - 0.035665166, -0.015253627, 0.031150248, -0.028563641, 0.007189105, - 0.029478624, 0.02586111, -0.03197598, 0.0013144319, 0.032495357, - -0.0044053346, 0.050995804, -0.006940335, 0.00231215, 0.047642395, - 0.033370387, -0.0010710896, 0.017449845, -0.019376282, -0.02109159, - -0.02153596, -0.013830724, 0.025457924, -0.027948968, -0.016088929, - -0.016324168, 0.03283523, -0.022294221, 0.01531778, -0.02395934, - -0.0035268322, 0.018716242, 0.007993745, 0.04574221, 0.008648752, - 0.030456472, 0.0021731593, -0.034883972, -0.032449067, 0.014782054, - -0.055585485, -0.0240597, -0.020984748, -0.045675486, -0.026389342, - 0.015121645, -0.013773599, 0.013009435, 0.029742826, -0.0024334858, - 0.011281655, -0.034365658, 0.079081684, 0.0033084478, -0.016316729, - -0.031348918, 0.015409871, 0.015605132, -2.03276e-4, -0.040523715, - -0.05912194, 0.006010022, 0.01840656, -0.034902126, -0.04171795, - 0.060831875, 0.023677144, 0.012455497, 0.024663229, 0.0051375455, - 0.0033561306, 0.0040518586, -0.04672784, 0.050929073, 0.016531121, - 0.06361397, 0.030081237, -0.002624017, 0.033088192, -0.033582, - 0.041813415, -0.05835155, -0.022335118, 0.01101915, 0.016643355, - 0.04035265, -0.03166203, 0.006665913, 0.03912325, -0.01965442, - 0.004616829, -0.015466066, -0.006499127, -0.029297957, -0.045723736, - 0.03286765, 0.0034979116, 0.018079458, 0.039431643, -0.031111682, - 0.022984039, 0.043346126, 0.035716515, 0.0064618276, -0.027975636, - 0.005707503, 0.011939442, 0.030459924, 0.0017601493, -0.019646673, - -0.02270847, -0.033099685, 0.050858814, 0.0028787404, -0.0018541083, - 0.009574011, -0.004829685, 0.012226472, -0.03021748, 0.028450819, - -0.016519802, 0.0022187186, -0.006791633, 0.041239247, -0.046136666, - 0.013963741, 0.016296905, -0.010664576, 0.010048368, 0.025464881, - 0.006505189, -0.017406635, 0.01537583, 0.038503427, -0.035315763, - -0.02017259, 0.01074507, -0.02433284, 0.022664873, 0.0034644622, - -0.008351554, -0.0051653646, -0.03954093, 0.0051168352, -0.081726514, - 0.056773722, 0.04277091, 0.01784525, 0.038354974, 0.044746995, - -0.021283587, 0.011401612, 0.02135567, 0.03400509, -0.029999372, - -0.018188925, 0.01852472, -0.007005976, -0.021446818, -0.0102727115, - -0.0027695491, -0.017142655, 0.015404659, 0.016158205, -0.043464407, - 0.025161736, 0.053137492, -0.018983755, -0.03426742, -0.004607603, - -0.0114612505, -0.015253391, 0.042951137, 0.0017863294, 0.03392866, - 0.033219475, 0.055457756, 0.028590022, 0.010797621, -0.046895873, - -0.02732054, 0.023130523, 0.034878325, 0.027223904, -0.04043823, - -0.042837556, -0.011283631, 8.484898e-5, -0.03177717, 0.037212748, - 0.020501938, 0.04136959, 0.021694005, 0.015052496, 0.020459732, - -0.06500861, -0.012914783, 0.033036385, -0.026270172, -0.03273009, - -0.043016523, -0.046292838, -0.011331262, -0.030574715, 0.022316284, - 0.0030898, 0.0375314, -0.07362461, 0.009021986, -0.0023163995, - 0.0056175897, -0.017172404, 0.025910888, -0.06044628, -0.009325748, - 0.024706729, 0.048931025, -0.04442196, -0.019417182 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.009833573, + 0.008238541, + 0.020807087, + 0.0066550346, + -0.02784278, + -2.0614777E-4, + -2.6837934E-4, + -0.010358568, + 0.020266296, + 0.024803348, + -0.049144235, + -0.02375848, + 0.006956404, + -0.021128457, + 0.0051445914, + 0.0148742, + -0.010540574, + 0.0030526256, + 0.019994054, + 0.014929031, + -0.01867447, + -0.012050809, + -0.016010014, + -0.01471624, + 0.004578307, + 0.011015658, + -0.0038468791, + 0.0034175287, + 0.007950717, + 0.0068599973, + -0.011371308, + 0.01653412, + -0.0071632587, + 0.0031066292, + -0.004003365, + -0.0013581037, + -0.02863956, + -0.009124465, + -0.006213071, + -0.0020572268, + 0.015893847, + -8.605653E-5, + -0.019117959, + -0.009560316, + -0.030058179, + -6.430639E-4, + 0.014857404, + -0.0087016085, + -0.012321374, + 0.025055433, + -0.014500222, + -0.033888582, + 0.013039682, + 0.0025975085, + -0.024423491, + 0.0011153391, + 0.01180041, + -0.021333894, + -0.021244723, + -0.004606336, + -0.015141499, + -0.02508748, + -0.0075021475, + -0.016245693, + 0.01965103, + 0.013150404, + 0.012014632, + 0.026123282, + -0.008351787, + 0.03161168, + 4.9389654E-4, + -0.010210707, + -0.029267987, + 0.014861101, + 0.003011606, + 0.015232321, + -0.003821603, + -0.032141414, + 0.027147163, + -0.012586976, + 0.010147664, + 0.017693944, + -0.030701328, + 0.0055896724, + -0.0038364017, + -0.026314434, + 0.022649486, + -0.008324259, + 0.019532422, + 0.005449747, + 0.0035636064, + 0.0051019117, + -0.017394561, + 1.6912204E-4, + -0.004618673, + -0.011268182, + -0.01983656, + -0.010483131, + -0.009395493, + 0.0018516458, + -0.018015478, + -0.0079474095, + 0.041514263, + 0.012876947, + 0.005671623, + -0.012215861, + -0.024036927, + 0.018684391, + -0.007906379, + -8.348787E-4, + 6.988097E-4, + -0.0024217367, + 0.021132033, + -0.03493095, + 0.0066888817, + 0.017214207, + 0.0072394004, + -0.020702954, + 0.02462684, + 0.0037389693, + -7.675429E-4, + -0.012120258, + 0.021092674, + 0.010773172, + 0.0086819995, + 0.0019955162, + -0.033373207, + 0.012502433, + -0.009706531, + -0.0034004948, + -0.0015501033, + -0.01772647, + -0.032345254, + 0.01566843, + 0.0077045993, + -0.011276045, + 0.0016937524, + -0.00189438, + -0.011591918, + -0.009382608, + -0.020695899, + -0.005558975, + -0.018033545, + -0.012434562, + 0.0140514225, + -0.005721103, + 0.013100226, + 0.03920796, + 0.00955233, + -0.005015859, + 0.018607134, + -0.029595336, + -0.007844809, + -0.01291767, + 0.013263259, + -0.009374797, + 0.020434832, + -0.015202091, + -0.001188414, + 0.014726829, + -0.010278277, + 0.030779427, + -0.017486062, + 0.015404601, + -0.010229133, + -0.017827317, + 0.021032568, + 0.025761733, + -0.009719833, + -0.020731227, + 0.031987272, + 0.012600292, + -0.012416645, + -0.0063051865, + -0.0071562147, + -0.017538648, + -0.0014662253, + 0.0058895526, + -0.012816598, + 0.024066307, + 0.017862959, + -0.02072345, + 0.005174447, + 0.019449957, + -0.010182902, + -0.0065886704, + -0.0037617304, + 0.001610855, + -0.009466931, + -0.005833096, + 0.0023807082, + -0.003918697, + -0.020514056, + -0.017959818, + 0.023058891, + -0.0027067368, + -0.016240995, + 0.024080439, + -0.0066196723, + -0.009839752, + 0.022662306, + -0.005111343, + 0.0330462, + -0.011345443, + 0.012510733, + -0.008612141, + -0.0024589202, + 0.007211923, + 0.0060624755, + 0.013772097, + 0.035241716, + -0.002626105, + -0.029285973, + 0.0028210473, + 0.014853396, + -0.0026784602, + 0.029283797, + -0.033235863, + 0.018869981, + -0.026570596, + 0.01003395, + -0.007984315, + 0.018205564, + -0.016165433, + 0.03957708, + -0.018423354, + -0.011290169, + -0.006145889, + -0.0075258603, + -0.016907299, + -0.0076112505, + -0.007162395, + -0.0079951715, + -0.022633517, + 0.0083258655, + 0.02525201, + -0.0020372968, + 0.036740776, + -0.008314984, + 3.6870668E-4, + -0.015714549, + 0.012767199, + -0.008638312, + 0.003922671, + 0.012825706, + 0.010071422, + -9.23708E-4, + 0.017153544, + -0.01963515, + -0.018181913, + -0.037985843, + 0.013655174, + 0.010718766, + 0.018072847, + 0.002946735, + -0.0042919554, + 0.014126722, + -0.0010653959, + -0.009087197, + -0.020065084, + -0.0015252775, + -0.010104551, + 0.0058066794, + -0.012726214, + 0.009443047, + 0.0019236703, + -0.0246689, + -0.01815451, + 0.013904098, + -0.018832432, + -0.024770994, + 0.02168547, + -0.0392396, + 4.702863E-4, + 0.019729402, + -0.007773708, + 0.01588174, + 0.009417709, + -0.013931105, + 0.010263957, + -0.0149950655, + -0.0012625421, + -0.017554479, + 0.026703808, + -0.0062505477, + -0.0035117546, + -0.015648002, + 0.014954153, + 0.023779051, + -0.03266029, + -0.008224782, + 0.004534335, + -0.009646665, + 0.0071738525, + 0.0059848, + -0.007817682, + 0.027779423, + 6.299997E-4, + -0.0033050296, + 0.015484591, + -0.0292478, + -0.004407843, + 0.013549445, + -0.008088438, + -0.013824438, + 0.002858569, + 0.021104403, + -0.021552619, + -0.009394399, + -0.012185883, + 0.02104113, + 0.011557847, + -0.004077689, + 0.01010167, + -0.020292612, + 0.010927148, + -0.015762711, + -0.010388808, + 0.016523946, + 0.029958695, + -0.03617091, + -0.0048232535, + 9.604028E-4, + 0.0019678809, + -0.009816031, + 0.025896888, + -0.0064019705, + 0.0068318043, + 0.005754337, + 0.016831933, + 0.016103659, + -0.028703367, + 0.013748649, + -0.011831362, + -5.2074296E-4, + -0.00480876, + -0.011422781, + 0.033175796, + -0.0102733215, + -0.03872981, + 0.0060443194, + 0.011107171, + -0.007769654, + 0.018119637, + -0.002016878, + 0.009794996, + -0.04253034, + 0.039269272, + 0.0055834474, + -0.0038933044, + 0.01594174, + 0.0036100743, + 0.018043727, + -0.020441975, + -0.0034366972, + 0.00819855, + 0.0020739073, + 0.008065729, + 0.018589044, + 0.015866403, + 0.023877457, + 0.017989717, + 0.009447701, + 0.01634525, + 9.5394114E-4, + 0.001936951, + -0.020216174, + -0.008869226, + 0.0064009773, + -3.200087E-4, + 0.015121632, + -0.004817868, + 8.439837E-4, + 0.003809375, + -0.013817973, + 0.0028142242, + 0.0072177793, + 0.007945802, + -0.0049847816, + 0.008739644, + 0.026360381, + 0.010506005, + 0.018098665, + -0.004048425, + -0.012362118, + -0.010868608, + -0.028081447, + -0.010462994, + 0.0019574126, + -0.008433883, + -0.012862049, + -0.0045607355, + -0.022465548, + 0.015222078, + 0.014587611, + -0.005340855, + 0.025288988, + 0.001308352, + 0.007993706, + 0.0051976573, + -0.004573806, + -0.003908734, + 0.011172064, + 0.010752695, + -0.024032984, + -0.024659036, + -0.0059433267, + -0.0054728533, + -0.01216109, + 0.0027371983, + -0.022325125, + 0.0023136192, + -0.012901164, + -0.005715208, + 0.027812235, + 0.0157594, + -0.0023050155, + 0.0010701972, + 0.018755201, + -0.027205069, + -0.0040205843, + 0.010325591, + -0.014481618, + -0.00771252, + -0.006403443, + -7.250392E-4, + 0.038391482, + 0.0040966347, + 0.0017267566, + -0.008985784, + -0.0011949966, + 0.011646099, + 0.0057492987, + 0.019430766, + 0.015379687, + 0.0151392445, + 0.015104871, + 0.01976436, + 0.0213904, + -0.0068720127, + -0.026329627, + 0.0077652414, + 0.0073631536, + 0.01988153, + 0.012053548, + -0.020109672, + 0.013197814, + -0.0125603, + -0.005454538, + -0.03127799, + 0.004675119, + 0.014630987, + -0.026748326, + 0.0045446595, + -0.0033068147, + 0.004796555, + 0.010200393, + -0.014678802, + -0.025151934, + 0.008138544, + 0.0117994, + -0.0017513846, + 0.015981833, + -0.0012628271, + -0.03340092, + -0.0083584795, + 0.002969252, + -0.014031538, + -0.03296297, + 0.014981677, + 0.004106795, + -0.00488848, + -0.013700671, + 0.013763189, + -0.018169118, + 0.009401572, + -9.3805505E-4, + -0.00202082, + -0.012465907, + -0.0022370457, + -0.015036376, + -0.0014688714, + -0.011176742, + -0.01445806, + 0.019734161, + 0.019641653, + 0.021146746, + -0.011842305, + 0.02024231, + 0.021631729, + 0.015939867, + -0.0079256445, + -0.010641822, + -0.008438072, + -0.017022986, + 0.0069157477, + 0.0062943366, + -0.0153940795, + 0.018040555, + 0.021845134, + 0.0051421407, + -0.029694818, + 0.027807489, + 7.464183E-4, + -0.008443243, + 0.006099256, + -0.022528263, + 0.008383555, + -0.023125611, + 0.009962406, + -0.012938311, + -0.00705717, + -0.015609811, + 0.02169679, + 0.037266735, + 0.0056560105, + 0.013061393, + -0.010988469, + -0.008006859, + 0.010207612, + 0.0038296178, + 0.0019890962, + 0.015323162, + 0.030059712, + 0.010131481, + -0.010625617, + 0.0044596484, + 0.009906268, + 0.008057736, + -0.0063597034, + -0.019884432, + 0.0031266778, + 0.005375475, + -0.048236128, + 0.018655315, + -0.03327839, + 0.014523329, + -0.016805671, + -0.010677848, + -0.001523531, + 0.008327444, + 0.010342279, + 0.0028496867, + 0.0018955376, + -0.015964014, + 0.006440453, + 0.013724849, + -0.00586384, + 0.009022459, + 0.023392338, + -0.004437421, + -0.0029028903, + -0.029910157, + -0.01505654, + 0.0047340086, + 0.0027198344, + -0.023719959, + 0.0030120874, + -0.016357053, + -0.013475081, + 0.004762968, + 8.296646E-4, + 0.0053404374, + -0.038182743, + 4.7216105E-4, + 0.00820841, + -5.3567495E-5, + 0.0065025445, + -0.0174869, + 0.020887239, + -0.008293761, + 0.0021857827, + -0.012636061, + 0.020610085, + -0.007013243, + 0.019919896, + -0.01783573, + 1.4183504E-4, + 0.012630896, + -0.012908871, + 0.0060445117, + -0.0026637958, + 0.02385693, + 0.019888753, + -0.010010618, + -1.1036377E-4, + -0.0032434133, + 0.0116904285, + -0.003317644, + 0.028797725, + 0.009801182, + -0.012660375, + 0.026553914, + 0.0037507077, + -0.0051484415, + 0.03163, + 0.0059599625, + 0.027039103, + -0.005445686, + -0.011177706, + -0.0017781812, + -0.0049211113, + -0.0025692622, + -0.031193076, + 0.0067702644, + 0.0021978463, + -0.0047917566, + 0.0109767085, + -0.008204651, + -0.0055676196, + -0.0084909815, + -0.009971584, + 0.003613996, + 0.0031001167, + 0.010406808, + 0.009543784, + 0.022570644, + 0.018541442, + 0.020196589, + 0.014572825, + 0.008942633, + 0.012907998, + -0.0062781502, + -0.0057575395, + -0.009442515, + -0.004354609, + -0.012772978, + 0.0024897454, + 0.026622241, + -0.028577415, + -0.023307275, + -0.021571297, + -0.029146139, + 0.015587622, + -0.024933122, + 7.878528E-4, + 0.006940279, + 0.00899867, + -0.011704292, + 0.00916474, + -0.02657813, + 0.016391665, + 0.0026541704, + 0.018268932, + 0.048634995, + -0.00853972, + 0.024318587, + -1.21383586E-4, + 0.0046225325, + 0.019762533, + 0.0066361283, + 0.0017719364, + -0.013291311, + -0.04551327, + -0.0137311425, + -0.0030576612, + 0.008707818, + 7.3362025E-4, + -0.020549519, + -0.024338514, + -0.0058136694, + 0.014617544, + 0.0015092795, + -0.0038168812, + 0.02866084, + 0.0057386477, + -0.04030527, + 0.0015216533, + 0.021938678, + 0.0068894895, + 0.01967685, + 0.013122988, + 0.0035450675, + 0.012157691, + 0.03327612, + 0.009459262, + -0.01274947, + 0.0070468085, + -0.010300471, + -0.0063249688, + -0.007776096, + -0.008615916, + -0.032259006, + 0.023212602, + 0.0074208463, + -0.03173987, + -0.022607949, + -0.0016642952, + 0.014635764, + 0.004835158, + 0.010236456, + -0.007945537, + -0.0012841127, + 0.0053209565, + -0.010697744, + -0.0029701462, + -0.027388409, + 0.023736745, + -0.011541991, + -0.027765803, + 0.014319434, + -0.01725793, + 0.0056769424, + 0.012360388, + 0.008174658, + -0.025218997, + -0.0017083511, + -0.024295323, + -0.013292167, + 0.016551344, + 0.0033126585, + -0.0023191723, + -0.0132184, + -0.008365985, + 0.005204868, + -0.0073040402, + -0.013196205, + 0.014643425, + 0.00862692, + -0.0015949099, + 0.004761559, + 9.405489E-4, + -0.0051347907, + -0.025295377, + 0.0025249398, + -0.015183294, + 0.002085667, + 0.0046661226, + -0.033082012, + 0.016068911, + -0.0233325, + 0.018430721, + -0.0064785937, + -0.027074302, + 0.02984935, + -0.0026906142, + 0.014674679, + -0.013932205, + 0.0010860257, + -0.0134851225, + 0.010388661, + 0.016566522, + -0.00778563, + 0.010223333, + -0.001378665, + 0.00216646, + 0.01375791, + -0.0014134552, + 0.0062223566, + -0.020751087, + -0.01945602, + 0.003451292, + 0.002194191, + 0.019580573, + -0.0051826644, + -0.014697529, + 0.0062929206, + -0.008864936, + -0.026828447, + 0.015594326, + 0.022570305, + 0.0016951114, + -0.015995372, + 0.0016555538, + 0.0060296557, + -0.028938891, + -0.012276817, + -0.026904672, + 0.014026712, + 0.0035548918, + 0.012462863, + 0.0023844691, + -0.028787153, + -0.01269599, + 0.0018263338, + -0.022547038, + 0.01851888, + -7.0535304E-4, + 0.029166918, + 0.009671724, + 0.0028073308, + -0.0131233465, + -0.0019443757, + -0.012205421, + 0.0054243673, + -0.013616807, + 0.011125583, + 0.0011972674, + -0.009495917, + 0.0053390814, + -0.02311783, + -0.011599428, + -0.008704028, + -0.0036776338, + 0.030036166, + -0.007370011, + -0.01337332, + -0.028377179, + 5.915698E-4, + -0.02544613, + -0.007370387, + 0.015688041, + -0.001213697, + -0.029596146, + 0.03337872, + -0.008659341, + -0.012110303, + 0.024674786, + 0.0065245596, + 0.007831821, + -6.140777E-4, + 0.009603234, + -0.024168143, + 0.007382219, + -0.011661555, + -0.022402527, + -0.01051784, + 0.03407184, + -0.0072408277, + 0.010926012, + 0.012161278, + -0.008918678, + 0.02997143, + 0.025040492, + -0.018445915, + -0.023638621, + -0.031895246, + -0.007874076, + -0.019938048, + -0.012022889, + 0.011476287, + -0.0011185348, + 0.010927916, + 0.012844402, + 0.008720361, + 0.021698464, + 0.011353428, + -0.009618255, + -0.02504139, + -0.010648781, + -0.0029526115, + -0.0065342872, + 0.011220428, + -0.01563233, + -0.034192696, + -0.01628646, + -0.005876563, + 0.028173571, + 0.019149385, + 0.020767145, + -0.004713548, + 0.009390669, + 0.010168972, + 0.0039139003, + -0.011693352, + 0.008682745, + 0.009482236, + 0.0025387, + 0.0015225477, + -0.0011338299, + 0.02284768, + -0.010146372, + 0.014556141, + -0.01772282, + -0.014675052, + -0.021643192, + -0.007951014, + 0.030000737, + -0.0050114486, + -0.009818452, + 0.014208453, + 0.0047577904, + 0.0102400035, + -0.010683835, + -0.012862359, + 0.011163714, + -0.009781027, + -0.015593452, + -0.0024386095, + -6.682732E-4, + -0.010933837, + -0.0031117853, + 0.009973762, + -7.257131E-4, + 0.018280126, + 0.010689964, + 0.0042525935, + 0.0029270486, + 0.014106869, + 0.0026102501, + 0.0030648953, + 0.019381264, + 0.02014702, + -0.0029461433, + 0.0064994614, + 0.0074093994, + 0.02394274, + -0.019510228, + -0.024129005, + -0.009079118, + -0.019084333, + -0.021557227, + -0.020625765, + -0.030209016, + -9.811311E-4, + 0.013076253, + 0.014497218, + -0.020144956, + -0.0061771134, + 0.010725368, + -0.009058895, + 0.00780207, + -0.0012770988, + -0.018062847, + 0.0023632671, + -0.0020304567, + 0.043345407, + 0.031367086, + 0.02162145, + -0.0028825293, + 0.0032386668, + -0.006220289, + -0.012927266, + -0.002159998, + -0.016749462, + -0.019428857, + -0.0025952628, + -0.030517275, + -0.010166556, + 0.01445009, + 0.015674556, + 0.0075287535, + 0.031141201, + 0.038034093, + 0.022076981, + 0.01050783, + -2.821992E-4, + -0.015571995, + 0.0012747789, + -0.019720089, + -0.01745467, + -0.030694302, + -0.015662272, + 0.039954375, + 0.00537111, + -0.0013474587, + -0.02472597, + 0.014517729, + 0.021285295, + -0.0031062851, + -0.011251693, + 0.0033086464, + -0.015774088, + -0.01786049, + 0.010119049, + -2.2770106E-4, + 0.003628138, + 0.020229017, + -0.011509571, + -0.018674927, + -0.054857697, + -0.014979299, + -0.0072129085, + 0.012147609, + -3.138451E-4, + -0.0012395817, + 2.3257323E-4, + 0.004383996, + -0.009384861, + 0.001020955, + -0.019251836, + 0.012041021, + 9.3134923E-4, + 0.02434646, + -0.006898764, + -0.013777273, + -0.023427796, + -6.1336247E-4, + -8.0372754E-4, + 0.008536774, + -0.019123133, + 0.001748137, + -0.0050088894, + 0.006793264, + -0.01750989, + -0.0044443565, + -0.009250682, + -0.016998518, + 1.5463713E-4, + 0.024959704, + 0.023938471, + 0.005901168, + 0.0047675576, + 0.002087137, + -0.015755763, + 0.005031111, + 0.0040428736, + 0.026878225, + 0.020743396, + 8.7437395E-4, + 0.016918682, + 0.0035944441, + 0.0155838495, + 0.008957308, + 0.019524533, + -0.0027534224, + 7.043123E-4, + 0.0063159387, + -0.0029734534, + 0.011690388, + -0.012106497, + 0.010562827, + -0.0011128183, + 0.0336036, + 0.008658579, + -0.016815122, + -0.0075018816, + 0.0041929083, + 0.013942312, + -0.01670379, + 0.0057566324, + -0.009913026, + 7.79982E-4, + 0.037626825, + 0.017922606, + 0.019492235, + -0.0059117856, + -0.022638619, + -0.005663796, + 0.0106376335, + 0.022556478, + 0.010581753, + 0.0049842163, + -0.004124756, + -0.022204688, + -0.018564956, + -0.005021915, + -0.006052568, + -0.0017217908, + 0.015359763, + 0.009836338, + 0.016578853, + 0.011089256, + 0.0061917757, + 0.01906483, + 0.009268665, + 0.007165735, + -0.0021261994, + -0.0333703, + -0.044843465, + -0.0155720515, + -0.00505197, + 0.008144091, + 0.011326325, + -0.017713707, + 0.025610836, + 0.0044925413, + 0.01657757, + -0.0013226421, + 4.0548304E-4, + -0.0074982285, + 0.011048436, + -0.0049261064, + 0.011988525, + 0.011111754, + -0.027029468, + -0.009174827, + -0.0043067443, + -0.004420959, + 0.005742156, + -0.011009223, + -0.016032426, + -0.0025843722, + 0.019202044, + 0.013609447, + -0.00788527, + 0.0074221147, + -0.029251186, + -0.010888809, + -0.0021476496, + 0.0038930892, + -0.0027543313, + 0.0012415901, + -0.0070962906, + -0.029852087, + 0.007812527, + 0.008115303, + -0.019277442, + 0.028765345, + -0.0073248204, + -0.0048632473, + -0.0013728702, + -0.008869155, + 8.8851963E-4, + 0.038872488, + -0.00981333, + -0.020381927, + -0.035037573, + 0.0031109275, + -0.011025614, + -0.016166165, + 0.008101983, + -0.024981173, + 5.415632E-4, + 0.017224258, + -0.012885583, + 0.015323413, + -0.0051775253, + -0.0012934016, + 0.035301026, + 0.0041717333, + -0.0033549939, + -0.0043861256, + 0.014679966, + 0.006970886, + 0.006829514, + -0.0030900503, + -0.015451424, + 0.014700759, + 0.012367046, + 0.010997118, + -0.0037931034, + -6.321441E-4, + -0.011277868, + 0.0083402805, + 0.0017166869, + -0.055349477, + 0.01416476, + -0.015912913, + 0.00344766, + -0.006308802, + -0.008923302, + 0.018601686, + 0.010529279, + -0.0016992348, + 0.004341027, + -0.021166114, + -0.020034999, + 6.319069E-4, + 0.026839212, + -0.026273455, + 0.009975136, + 0.018761963, + 0.003567728, + -0.0054622693, + 0.016109074, + 0.002761487, + 2.0118478E-4, + 0.017041398, + 5.5264833E-4, + -0.017502313, + 0.001890318, + -0.017091475, + 0.0113762785, + -0.027882198, + 0.001125986, + 0.006483724, + -0.00733989, + 0.014525858, + 0.0013442385, + -0.0098809125, + -0.010245682, + 0.010232606, + -0.020733315, + 0.007987449, + 0.017701156, + 0.015981894, + -0.0015373161, + 0.0062148767, + -0.0110036, + -0.022714812, + -7.8791304E-4, + -0.044633765, + 0.0076666307, + 0.016420286, + -0.03636498, + 0.023604391, + -0.02322775, + -0.005330049, + -0.008339602, + -0.030881077, + 0.013161076, + 0.016669221, + -0.01479786, + 5.737528E-4, + 0.007544196, + -0.02342907, + 0.036691807, + -0.009180196, + -0.009350029, + 0.011899531, + 0.003163613, + -0.0148261115, + 0.016299885, + 0.009126687, + 0.026534317, + -0.004410269, + -0.02755159, + 0.03462216, + 0.01050437, + -0.0025168054, + -0.01880527, + 0.0362821, + 0.025449594, + -0.015011423, + -0.0065872674, + -0.026640298, + -0.01798646, + -0.029796904, + 0.021681342, + 0.0013794148, + -0.01933343, + 0.008903483, + -0.012184038, + 3.2652912E-4, + 0.008206338, + -0.004246052, + 0.007158448, + -0.010452288, + 0.008970246, + -0.02367025, + 0.003312139, + 0.013713759, + -0.0061656046, + 0.0019201763, + 0.017014856, + -0.0058174403, + -0.014373562, + 0.0038827066, + 0.008236742, + 0.024988309, + -7.5996184E-5, + -0.0065436475, + -0.0199129, + -0.029048702, + 0.0101181455, + -0.0011337464, + 0.007423288, + -0.012054717, + -0.0010231384, + -0.0028561503, + -0.022566257, + 0.0016727922, + 0.011679566, + -0.0022286812, + 0.023714961, + -0.0049325665, + -0.0036354933, + 0.005863211, + 0.0020850145, + 0.0152895935, + 0.009012631, + 0.010110246, + 8.989871E-4, + 0.024348043, + 0.0027582943, + -0.02068681, + 0.043807447, + -0.0010119511, + 0.008990564, + 0.0016027242, + -0.0089858705, + 0.0073425528, + -0.018677277, + -0.002199818, + 0.005431746, + 0.0051602274, + 4.8898417E-4, + 0.012856431, + 0.0068482123, + 0.0060944464, + -0.002199548, + 0.0081222, + -0.030658256, + -0.012069447, + -0.019705068, + 6.829905E-4, + 0.017757254, + -0.0041781673, + 0.022158923, + -0.013973168, + 0.010615905, + -0.035029825, + 0.03271432, + 0.017225677, + 0.014377105, + -0.018634848, + 0.0032312286, + -0.0065726135, + 0.0015388925, + -0.0043117604, + 0.0058462606, + -0.016522085, + -0.008476919, + -0.03413832, + -0.0091651175, + -0.006996966, + 0.005270591, + -0.0073153526, + -0.011057937, + -3.8109708E-4, + -0.012491475, + 0.015834633, + 0.03170572, + -0.011626805, + 0.01971429, + -0.014389157, + -5.9036224E-4, + -0.012881447, + -0.024486234, + -0.015119632, + -0.028292045, + 0.0030057444, + 0.01619951, + 0.0067119775, + 0.0027080069, + 0.013325509, + 0.025692888, + -0.0069732876, + 0.0072765336, + -0.012729106, + -0.017531153, + 0.028771527, + 0.022291506, + 0.0063523995, + 0.021670781, + 0.011460525, + 0.01409148, + 0.0046449997, + 0.006059675, + -0.024435796, + 0.0058406275, + -0.011889033, + -0.01870908, + 0.006337092, + 7.834474E-4, + 0.005327681, + 0.024652869, + 0.013938645, + 0.0028045343, + 0.026859898, + -0.015956447, + -0.021656452, + -0.0095135765, + 0.018614005, + 0.006386145, + 0.009188109, + -0.0038259546, + 0.0057718465, + -0.020704774, + -0.006800156, + -8.947185E-4, + -0.0032684784, + 0.021143265, + 0.0016011257, + -0.006393523, + -0.01330893, + -0.008917086, + 4.1343027E-4, + -0.013561264, + -0.012286647, + 0.0025067045, + 0.0010475784, + 0.0022357814, + 2.550712E-4, + 0.014688706, + -7.590075E-4, + -0.017926887, + -0.0062069357, + -0.0054437257, + -0.005677745, + -0.025718912, + -0.02851366, + -0.011538372, + 0.015819736, + -0.019010648, + -0.00413188, + 8.659089E-4, + 0.028996043, + 0.011052747, + -0.007807586, + 2.0025854E-4, + 0.015032615, + 0.0016804102, + 0.014562341, + -0.0069449, + 0.014723517, + 0.0024893177, + -0.0017437282, + -0.033542737, + 0.009383196, + 0.010964682, + 0.020934824, + -0.0039408808, + -0.016760591, + -0.00743755, + -0.012776875, + -0.018094622, + 0.016318096, + -3.665915E-5, + 0.009838614, + -0.0029553508, + -0.0011719004, + -0.015033902, + 0.011478321, + 0.007556389, + -0.003903108, + -0.012367442, + 0.018766265, + 2.4620947E-4, + -0.025282953, + 0.030470507, + -0.034885406, + 0.009672895, + 0.017632408, + -0.004506656, + -0.010710237, + -0.0052615055, + 0.0067896415, + 0.017109882, + -0.01130459, + 0.0035265102, + -0.0033748595, + 0.026109442, + -0.0026162188, + -0.033841304, + -0.03338998, + -0.0032318593, + -0.019418873, + -0.01840022, + -0.013005684, + 0.037164506, + -0.018657668, + -0.0034462018, + -0.0020087631, + 0.013673526, + 0.020446112, + -0.013203221, + 0.019315641, + 0.0072186794, + 0.021181993, + -0.009816731, + -0.023846747, + -0.0068132193, + 0.011189461, + 0.030381266, + -9.4129733E-4, + -0.021840371, + -0.0030084024, + -0.011376662, + 0.0010445507, + -0.002457828, + -0.01906679, + 0.012907777, + -0.018640714, + 0.002716316, + 0.017753735, + -0.010202939, + -0.0063143363, + -0.025884433, + 0.010734889, + 0.0065413653, + -0.004120735, + -0.02654098, + -0.007532967, + -0.013924874, + -0.0019116214, + -0.0050056824, + -0.008868168, + -0.009547309, + 0.0015234513, + -0.0061657215, + -0.0018824106, + -0.02610402, + 0.003214353, + 0.016757376, + 0.026859758, + -2.3886529E-5, + -0.018685011, + 0.0050312877, + 0.0023325249, + 7.823913E-4, + -0.00731759, + 0.043588776, + -0.022506062, + 0.0059261923, + 0.015420988, + -0.010034043, + 0.021102803, + -0.0055968096, + -0.018111585, + 0.0074309357, + -0.0037291716, + 0.01874005, + 0.016163962, + -0.0082973065, + -0.0015013302, + -0.016311359, + -0.0404872, + -0.0050780037, + 0.005280243, + -0.022518883, + 0.016046062, + 0.010642575, + -0.01632556, + 0.0043113236, + -0.035487223, + 0.0050329464, + -0.0048554298, + 0.002401151, + -0.003472284, + 0.023484183, + -0.014396918, + -0.014898165, + -0.009658487, + -0.010449865, + 0.009522305, + 0.004185231, + -0.010351206, + -0.029414454, + 0.031785153, + 0.03888494, + 0.019407388, + 8.9966867E-4, + -0.025007328, + -0.0069090934, + -0.0060107945, + 0.025613552, + -0.009351739, + -0.030538647, + -0.04010425, + 0.0111977765, + -0.0093980385, + 0.042175893, + 0.024943074, + -0.0039643217, + -0.001102487, + -0.010523426, + -0.0015773633, + 0.0025413013, + -0.024052816, + -0.0049485085, + -0.0070949625, + -8.492596E-4, + -0.0058209733, + -6.286383E-4, + -0.003917157, + -0.006051618, + 5.8764615E-4, + -0.0046624113, + 0.0040642214, + -0.016059168, + 0.023672558, + 0.013262876, + -0.00504565, + 3.2968307E-4, + 0.013057653, + -0.02616155, + 0.018006386, + -0.009729236, + -0.015615235, + 0.022362761, + -0.006185094, + -0.0040227817, + 0.018567191, + -0.016136046, + -0.02696372, + -0.006998951, + -0.013917116, + 0.017146062, + -0.0011828997, + -0.021570314, + 0.031978168, + 0.032005347, + -0.025712525, + 0.006393159, + 0.0120203765, + 4.7023022E-5, + -0.014106188, + 0.01628335, + -0.009765613, + -0.0124221975, + -0.004544533, + 0.01986843, + -0.004860547, + -0.012806245, + 0.008242526, + -0.033242144, + 0.009169637, + 0.0061237663, + 0.014949615, + 0.0065863123, + 0.031001482, + 0.0032176657, + -0.0016435852, + 0.0016150699, + -0.027085762, + -0.01983413, + 0.029765029, + -0.02540328, + 0.0028582714, + -6.799306E-4, + 0.013167273, + -0.03712014, + 0.018647874, + 0.001409758, + 0.029836584, + 0.013061838, + -0.019973272, + -0.0033188746, + 0.0051083686, + 0.009291575, + -0.010803238, + -0.028038204, + 0.0030012704, + 0.014482798, + 0.014207611, + -0.023980023, + -0.0095213195, + -0.0064930944, + -0.012464507, + 0.0042336453, + 0.015135482, + 0.006134104, + -0.013241358, + -0.02749079, + -0.005355583, + -0.0056729857, + 0.014645624, + 0.021927234, + 0.0020179634, + -0.003623022, + -0.014920521, + 0.0012478031, + 0.020314423, + -0.0034428877, + -0.017420579, + -3.088677E-4, + -0.03036184, + -0.030488878, + 0.0027828112, + 0.039626762, + -0.012110927, + -0.007926952, + 0.0038431326, + -0.008689947, + 0.021290282, + 0.010951578, + 0.0012901874, + -0.023421587, + 0.0066487943, + 0.011570612, + 0.02161166, + 0.010319361, + -0.027808346, + 0.007654725, + -0.004439603, + -0.0048189345, + 0.009059902, + 0.002408368, + 0.010156626, + 0.016553478, + 0.044127464, + 0.022192497, + -0.003274239, + -0.019476078, + 0.0048834775, + -0.001955345, + 0.007926328, + -0.029325783, + 0.01665688, + -0.021594318, + -0.003773483, + -0.018841917, + 0.013017976, + -0.0073395013, + 0.008268855, + 0.02340796, + 7.5188075E-4, + -0.008191868, + -0.028337754, + -0.0012592063, + 0.019087316, + -0.0032560136, + 0.02037645, + 0.016704643, + -0.0068032686, + -0.026770307, + -0.008161971, + -0.0023643335, + 0.0015453376, + -0.026097579, + -5.927847E-4, + -0.008829288, + 0.007681561, + -0.011214541, + 0.022194957, + -0.021977624, + 0.021690398, + -0.013296691, + -0.009263137, + 0.011957519, + 0.029473031, + 0.028710036, + 0.0047848388, + 0.038084418, + -0.019178115, + -0.010003064, + -0.0108242715, + 0.0022542079, + -0.023099357, + 0.0070212916, + 0.0018703768, + -0.024642091, + -0.008842615, + 0.029397178, + 0.009281291, + 0.005776407, + -0.009288917, + 0.0093859015, + -0.030201415, + -0.009647773, + 0.0016091872, + 0.026400696, + 0.0154022705, + -0.014240256, + 0.027584266, + 0.014964074, + 0.0040138164, + -0.003184299, + -0.009484412, + -0.012209603, + 0.021605205, + -0.029953193, + 6.9455226E-4, + -0.010796957, + -0.0059256325, + 0.028992988, + -0.0025324286, + 0.03189891, + 0.01782643, + -0.002439592, + -0.01365378, + 0.01079483, + 0.02371382, + -0.0031200366, + 0.016267942, + 0.0049925824, + 0.015107017, + -0.007771328, + -0.005675333, + -0.038666785, + 0.031241996, + 0.015551924, + -0.0023927179, + -0.014405418, + -0.00820144, + -0.025330026, + -0.00769015, + 0.016305098, + 0.0031573104, + 0.013710374, + -0.001853069, + -0.010544672, + 0.0031938045, + 0.05353868, + 0.0118467, + 6.5598753E-4, + -0.007723838, + -0.016530145, + 0.02230452, + -0.0049465606, + -0.01866429, + 0.020436857, + -0.011797151, + 0.02073096, + 0.006535724, + 0.0018225944, + 0.012224793, + -0.023703407, + 0.006209646, + 0.0057819183, + 7.1343454E-4, + 0.011629504, + -0.018754719, + -7.7030173E-4, + -0.008431586, + -0.0062706955, + 0.00639207, + 0.012082926, + -0.024603624, + -0.0032524099, + 0.011584379, + -0.016921535, + 0.042594973, + 6.766403E-4, + 0.024817338, + -4.59427E-4, + -0.0016869671, + 0.015492231, + -2.8552176E-4, + -0.0018312954, + 0.0026511892, + 0.010281345, + 0.020604407, + 0.023295559, + 0.027754828, + 0.010273957, + -0.012772811, + -0.0018613468, + 0.001910275, + 0.017161323, + -0.019573431, + 0.008358181, + -0.002819154, + -2.274529E-4, + 0.00902486, + 0.017430771, + -0.010971882, + 0.019995729, + 0.02799678, + 0.0026786092, + 0.028693039, + -0.010289501, + 0.010070858, + -0.014827383, + 0.02522198, + 0.04621266, + 0.010473996, + -0.01321271, + 0.0065871393, + -0.0030609402, + 0.011276102, + -0.01179629, + 0.011171187, + 0.041108716, + 0.013204302, + 0.031109074, + -0.023648635, + -0.0050825, + -0.0041436516, + 0.014832792, + 0.022353256, + 0.027391179, + -0.021850985, + 0.018865602, + -0.019355815, + -0.0077040303, + 0.0037935984, + -0.01783337, + -0.006515035, + -0.009577008, + -0.0018909394, + 0.0015262332, + 0.008928651, + -0.032619756, + 0.0037049833, + 0.0037149878, + 0.01403337, + 0.0054747313, + -0.002090473, + 0.0025354642, + -0.00818851, + -0.0073475004, + -2.3309106E-4, + 0.007663805, + 0.008042129, + 0.02440726, + -0.008937838, + -0.017350476, + -0.019455833, + -0.008537276, + 0.012798456, + -0.041677743, + 0.003213549, + 0.014039584, + -0.012126278, + 0.027098924, + -0.01701758, + 0.0043895943, + 0.01898264, + 0.021288892, + -0.0018914676, + -0.0056958883, + 0.028788736, + 0.01945495, + -0.005284281, + -0.008147522, + 0.024203317, + 0.013852744, + -0.015416491, + 0.013397306, + -0.0014403256, + -0.008338646, + -0.0067991302, + 0.0010516418, + -0.011427704, + -0.017758792, + -0.016966939, + 0.0073567242, + -0.007974972, + 6.3393207E-4, + 0.0053169713, + 0.011553063, + -0.01607618, + 0.0024336143, + -0.021760402, + -0.02622871, + -4.711966E-4, + 0.024519172, + -0.011160561, + 0.004790267, + 0.0020900625, + 0.05067934, + 0.015713174, + 0.0127362665, + 0.0064844047, + 0.005256855, + 0.0010756514, + -8.81668E-4, + 0.008268521, + -0.018877659, + -0.00804017, + 0.016377978, + -0.0035879258, + 0.012315244, + 0.009060307, + -0.016090427, + -0.005631576, + -0.006666755, + -0.004107717, + 0.0034975598, + 0.009736328, + 0.0068758675, + 7.490826E-5, + 0.018140556, + 0.022507144, + -0.031807166, + -0.009540745, + -0.017434584, + 0.02245764, + 0.013955822, + -0.010270903, + -0.017387552, + -0.0121939, + -0.012261353, + 0.0047709174, + -0.009109034, + 0.013114945, + -0.00897929, + -0.007055876, + -0.005701842, + -0.010556518, + 0.009586256, + -0.017267866, + -0.019294973, + -9.161963E-4, + -0.010000025, + 0.008262992, + -0.01974036, + 0.0045187185, + 0.008808068, + -0.029506316, + 0.007564157, + 0.0017122698, + 0.0034480821, + -0.014421724, + 0.018458072, + 0.015426844, + 0.021993278, + 0.02094904, + 0.003696994, + 0.02694298, + 0.024071189, + -0.015041746, + 0.017181879, + -0.013161038, + -0.0066519845, + -0.009455234, + -0.010055185, + 0.011228104, + -0.0054139337, + 0.001451742, + -0.003314521, + -9.5889915E-4, + 0.03717085, + 0.048828572, + -0.005503383, + 0.0013336866, + -0.029141227, + 0.014774918, + -0.0018383501, + -0.0062463116, + 0.009593366, + 0.014478177, + 0.024127383, + -3.2336317E-4, + -0.0020768878, + 4.4153255E-4, + -0.022902887, + 0.030616062, + 0.016115017, + 0.01754406, + 0.012631572, + -0.021488091, + -0.018211534, + -0.01587797, + -0.0035213095, + 0.009017516, + 0.010764622, + 0.0028408633, + -0.0074600847, + -0.005679836, + -0.019372694, + 0.010085379, + 0.012508862, + 0.01241596, + 0.035660975, + 0.01029534, + -0.013004247, + -0.008419407, + -0.024970992, + 0.0041261027, + 3.6996885E-4, + 0.006157403, + -0.014597903, + -0.0074522654, + -8.565011E-4, + 0.0081968885, + 0.0039852117, + -0.009879265, + 0.010506257, + 0.023881938, + 0.013575749, + 0.0048110643, + -0.03086298, + 0.016997516, + -0.017281042, + -0.011350909, + 0.021630824, + 0.02569982, + 0.014350889, + -0.010097442, + -0.028073786, + 0.031037688, + 0.0018932162, + -0.0011254665, + 0.0055433605, + 0.009614898, + 0.0077810953, + 0.009138585, + 0.008882479, + 0.0017366445, + 0.013740158, + -0.020211803, + -0.027311102, + -0.018673733, + 0.032567553, + -0.024234131, + 0.0023301512, + -0.0026715568, + -0.0010535439, + -0.0035159618, + 0.024237793, + -0.011008375, + 0.0035121685, + 0.019245444, + -0.0070965663, + 0.016860299, + -0.010100805, + 0.026468713, + -0.012133025, + 0.0017030077, + -0.007821643, + 0.013031735, + 0.005888686, + 0.0027382616, + -0.033133194, + 0.02574858, + -0.008664545, + -0.023919307, + 0.013195716, + 0.028559413, + -0.020583514, + -0.024387276, + 0.0409681, + 0.016422847, + -0.009868367, + -0.0028449676, + 0.0053827735, + -0.014799758, + -0.0012392496, + 0.028027026, + 0.007863919, + -0.026010793, + -0.008950652, + 0.022859072, + -0.010991777, + 0.0066135265, + 0.016050598, + -0.013912703, + -0.017876422, + -0.01086789, + 0.006382421, + 0.021268897, + -9.0644474E-4, + -0.024059454, + 0.015030565, + -0.004831699, + -0.017326705, + -0.023992563, + -0.008896188, + -0.0062726582, + -0.004651137, + -0.0045233243, + 0.017030723, + 0.029609328, + -0.0071353037, + 0.011499173, + -0.012771218, + -0.016411748, + 0.0087867435, + 0.0061732465, + 0.008609641, + 0.027187465, + -0.006551216, + 0.01691175, + 9.6969324E-4, + 0.04554143, + -0.0028873337, + -0.0077651916, + -1.5838716E-4, + -0.03082436, + -0.0074464586, + 0.0032077676, + 0.01739519, + 0.016962023, + -0.0044370396, + 0.005092545, + 0.016542075, + -0.01028592, + -0.007365901, + -0.02981687, + 9.460507E-4, + 0.012534339, + -0.0039602895, + -0.01946773, + 0.029930647, + 0.011793667, + -0.026732497, + -0.0047622644, + 0.0038742865, + 0.0062577287, + -0.019627096, + -0.0061103282, + -0.012714138, + 0.0073875515, + -0.016330948, + -0.008935092, + 0.008458479, + -0.024724968, + -0.016156306, + -0.018051839, + -7.0896815E-4, + 0.0134902485, + -0.017103245, + -0.0068163015, + -0.015973479, + -0.01896082, + 0.0033285986, + 0.023887595, + -0.012971071, + 0.014915901, + -0.0029286488, + -0.010672811, + -0.017377986, + -0.007977446, + 0.019312125, + 0.018416774, + 8.240226E-4, + 0.0118679125, + -0.02307324, + 0.002292296, + -0.011584685, + 0.009872366, + 0.0019004798, + 0.029281141, + -0.019258413, + -0.012134617, + -0.021297159, + -0.019845484, + -0.03058104, + 0.0072055096, + -0.009946424, + -0.008534074, + 0.020822538, + 0.0046713, + -0.0065247174, + 0.0021209307, + 0.009639267, + -0.0069273342, + 0.015623057, + -0.024851333, + 5.6738638E-5, + -0.010729092, + -0.010965465, + 0.016444905, + 6.689632E-4, + -0.011546735, + -0.01514962, + 0.023411397, + -0.01813976, + -0.016965061, + -0.005313038, + -1.0458161E-4, + 6.503278E-5, + 0.027923109, + 0.0061468924, + 0.024982555, + -0.005419317, + 0.0018382617, + -0.01610154, + -0.0014860573, + -0.025143662, + -0.01129622, + -0.0034880135, + -0.0012270531, + -0.0073699467, + 0.019577984, + -0.011338823, + -0.0031183443, + 0.0136659965, + 0.0011679076, + -0.012895899, + -0.0048310105, + 0.0022482122, + -0.024049941, + -0.007137506, + 0.0036604055, + 0.02952999, + -0.0016937824, + -0.032036573, + -0.0120678935, + 0.01198621, + 0.008135284, + -0.007473143, + 0.00471887, + -0.010337771, + -0.023747718, + -0.007643212, + 9.5040035E-5, + 0.0017286534, + -0.013821443, + -0.004962125, + -0.02890381, + -0.033124197, + 0.005081803, + -0.01844365, + -0.00821401, + -0.013297336, + -0.039475635, + -0.02924635, + -0.0037930903, + 0.02000336, + -0.035656802, + -0.012755421, + -0.008113961, + 0.029070888, + 0.021598341, + -0.0010671742, + 0.025489429, + -0.045559198, + 0.029871283, + 0.024387985, + 0.035682, + -0.019805891, + 0.029443726, + 0.028763946, + -0.009690205, + -0.010015559, + 0.004175012, + -0.0011995129, + -0.05086721, + 0.0068794913, + -0.017317541, + -0.011750662, + -0.004375843, + -0.004874751, + -0.031284075, + -0.0030203233, + -0.0034214505, + 0.0027464693, + 0.01596667, + -0.0038869437, + -0.012662025, + -0.008467411, + 0.0048204823, + 0.008710604, + -0.0031826068, + 0.0048499038, + 0.0047215614, + -0.008697783, + 0.004893215, + 0.02029337, + -0.0060934154, + 0.011122315, + -0.042150475, + -0.017983407, + 0.0073435297, + 0.01858207, + 0.026978252, + 7.513568E-4, + 0.0038251258, + -0.02190887, + 0.004136863, + -0.009567593, + 0.003055041, + -0.018364219, + -0.017051458, + -0.008431763, + 0.008329231, + -0.009410003, + 0.007985174, + -0.004831169, + -0.0105882455, + -0.01269498, + 0.024054931, + 0.007184176, + 0.008048788, + 0.014766204, + -0.013877069, + -0.0019818146, + -0.01877497, + -0.013351395, + -0.010043814, + -0.019393234, + -0.027797341, + 6.989877E-4, + 0.0066372165, + -0.008894352, + 0.016654467, + 0.004345463, + -0.012526706, + -0.0037870316, + -0.013558821, + -0.0013035865, + -0.03261001, + -0.016052675, + -0.03057645, + 0.0014841765, + -0.00158855, + 0.0063389908, + -0.007825102, + 0.013901899, + -0.028073963, + 0.032090683, + 0.016818697, + 0.0073105805, + -0.00731683, + -0.016781637, + -0.0037282677, + -0.014167644, + -0.029014481, + 0.016305326, + 0.0015305817, + 0.015222503, + -0.0058013704, + -0.023660295, + -0.0125338975, + 0.012653322, + -0.02180498, + 0.023124188, + 0.0015456966, + 0.0047221915, + 0.023596456, + -0.02032469, + -0.015022506, + 0.0010866394, + -0.013945609, + 0.002078697, + -0.016429726, + 0.014285329, + -0.018242054, + 0.005009337, + 0.008097688, + 0.0066119763, + -0.014739077, + -0.03165052, + 0.0076387576, + 0.021726446, + 9.423178E-4, + 0.026582697, + 0.0057518715, + -0.005722889, + 0.012063406, + -0.0021393357, + -0.010171676, + 0.015206146, + 0.0038796044, + 0.008171863, + -0.013143333, + 8.2164013E-4, + 0.0016035952, + -0.019848716, + 0.014824563, + 0.017760295, + -0.03208523, + -0.012788417, + 0.0149056865, + -0.0022857783, + 8.7081804E-4, + -0.017140785, + 0.008929713, + -0.006326359, + 0.0029636316, + -0.00828002, + -0.008474292, + -0.012485273, + -0.0032632241, + 0.01532596, + -0.001508237, + -0.0016592548, + -0.022379966, + 0.0070960377, + -0.009781542, + -0.015400787, + 0.007381186, + 0.011914707, + -0.013194429, + -0.012518965, + -0.006042716, + 9.7528246E-4, + 0.018172149, + -0.011895408, + -0.021366151, + 0.01859902, + -0.0026018345, + -0.001614235, + 0.023667622, + 0.018437274, + 4.3070877E-6, + -0.002071165, + 0.012334504, + -3.8453643E-4, + 0.019260613, + -0.024339018, + 0.010442729, + -0.004563118, + 0.0058867414, + -0.009359055, + 0.012498181, + 0.005286295, + 0.0065600397, + 0.01587841, + -0.006413166, + -0.0048017767, + 0.002870306, + 0.031007024, + -0.019037588, + 0.01656971, + 0.0010454722, + 0.006652826, + -0.016821226, + -0.016399961, + 0.005521408, + -0.012883683, + 0.0048259045, + 0.019550117, + -0.0015075384, + -0.03134506, + -0.004810107, + 0.0026504712, + -0.02037489, + -0.009592118, + -0.019587329, + -0.019236105, + 0.027296713, + -0.016991869, + 0.021330375, + -0.0139443735, + 0.008080051, + -0.004102257, + 0.014821832, + 0.0016237049, + 0.006735909, + -0.0066171377, + -0.020469395, + 0.040191945, + 0.0022080804, + -0.005296016, + -0.015113605, + 0.045766737, + -0.0043805535, + 0.0023375999, + -0.007633461, + -0.01926941, + -0.019892296, + 0.008349113, + 0.0070438976, + 0.011652417, + -0.028657114, + -0.01161841, + -0.019685593, + 0.022353385, + 7.912352E-4, + 0.029991733, + -0.015706541, + 0.027779939, + 0.018199096, + -0.016939428, + -0.006949062, + -0.014899788, + 0.007464938, + -0.0046880282, + 0.01650081, + 0.008146202, + -0.016519906, + 0.015607545, + -0.02427937, + 0.020759374, + 0.011403398, + -0.009328623, + -0.015259712, + 0.012273117, + 0.0049514524, + 0.011072665, + -0.0054288623, + 0.013649652, + -0.0013472697, + -0.010704617, + -0.0028823866, + 0.0064875176, + 0.009766344, + 0.021171259, + 0.01163829, + 0.015077133, + -0.011815782, + -0.015606617, + 0.0070169177, + 0.011700277, + 0.002109476, + 0.010023444, + -0.021882644, + 0.021515256, + -0.012834622, + 0.014975883, + 0.0028325622, + 0.025252737, + -0.0021338316, + 0.028139096, + 0.0044827787, + -0.023346808, + -0.013134945, + 0.0051995832, + 0.0209752, + -0.0014319923, + -0.0052839178, + 0.024533601, + -0.0052846232, + 0.007036347, + -0.0072583435, + -0.015461948, + 0.017862676, + 0.012061527, + 0.016655883, + -0.012554146, + 0.01655139, + 9.1872364E-4, + 0.014484699, + 0.012507249, + -0.014754462, + -0.014279519, + 0.020547036, + 0.010818144, + -4.8043896E-4, + 0.0012566256, + 0.009444869, + 0.007625918, + -0.002075557, + -0.012085022, + 0.014524186, + 0.0035738146, + -0.013455846, + 0.019275825, + 0.0012643179, + 0.0010987743, + 7.2147755E-4, + -0.0121837715, + -0.011162111, + 0.0053713596, + -1.0825359E-5, + 0.0153660085, + -0.016404556, + -0.012671751, + -0.0030729754, + 0.01231079, + -0.0049080616, + -0.020014761, + 0.014167345, + -0.004174136, + -0.008874671, + -0.014365117, + -0.02201477, + 0.007668695, + 0.0030550912, + -0.008989087, + 0.011308071, + 0.01893397, + 0.011307742, + -0.002127425, + 0.01581297, + -0.004055317, + 0.02156264, + -0.003526841, + -0.01215665, + -0.006563963, + 0.02332163, + 0.008433067, + 0.0064943815, + 0.0048201354, + -0.0055432282, + -0.0027972732, + -0.026875759, + -0.0012186168, + -0.010649621, + -0.015960135, + -0.014547608, + 0.0013650098, + -0.0016257858, + -0.034738876, + -0.00608326, + 0.013519453, + -0.006570133, + 0.002337774, + 0.017458467, + 0.0055171354, + 0.004876358, + -0.008120018, + -0.013917798, + 0.0156518, + 0.021269193, + -0.0049881907, + 0.013855366, + -0.007966584, + -0.01976767, + 0.0031414977, + 0.011585914, + -0.0035670816, + -0.032924116, + 0.0050914297, + 0.0037839161, + -0.0030687072, + -0.0047624432, + -0.022018773, + -0.020840703, + 0.00946765, + -0.014008605, + 0.014847479, + -0.02036182, + -0.015855318, + -0.007930543, + -0.010628601, + 0.01202577, + 0.0032639343, + -0.001297291, + 0.025782429, + -0.004469436, + -0.007885233, + -0.015974881, + 0.004198637, + 0.026311545, + 0.017975893, + 0.017113475, + -0.012817386, + 0.0067423205, + 0.007360652, + 0.008418466, + -0.030764421, + 0.001798121, + 0.014063242, + 0.007931046, + 0.018735025, + 0.015280021, + 0.0082471, + -0.0035597153, + -0.005562561, + -0.006034636, + -0.0039034144, + 0.0050039613, + 7.742825E-4, + -0.023924038, + 0.013666289, + -0.0053821607, + 0.00379362, + 0.0070009055, + 0.0046506105, + -3.2982315E-4, + -0.018148985, + -0.015304612, + -0.010296372, + 0.0015220112, + -0.019707609, + -0.01691173, + -0.015019962, + -0.0189615, + -0.021706866, + 0.010684699, + -0.009922937, + 0.0043149535, + -0.010559603, + 0.017304137, + -0.016757471, + -0.008955239, + -0.015045026, + -0.006238713, + -0.020518819, + 0.02112558, + 0.0039977133, + 0.021402545, + -0.0021609927, + 0.0042480794, + -0.008249023, + 0.020445574, + -0.02900453, + 0.009582298, + 0.008267489, + 0.018288366, + -0.0013149804, + -0.018724319, + 0.012478295, + -0.0160142, + 0.01884947, + -0.0049683987, + 0.0068418914, + -0.006492007, + 0.0074439514, + -0.04980886, + 0.03817711, + -0.024430338, + 0.0034478537, + 0.02735903, + 0.010217268, + -0.0041515403, + 0.004553286, + -0.008401311, + -0.0293467, + 0.008581658, + -2.259858E-4, + 0.019733867, + -0.003876357, + 0.02100429, + -0.0035834208, + -0.029915715, + -0.013124516, + 0.014422462, + 0.0014299479, + 0.016832743, + 0.013273861, + -0.012999609, + -0.0124150915, + -0.018292053, + 0.011644404, + -0.010572459, + 0.006578994, + -0.0070408494, + 0.033714473, + 0.0010893404, + 0.014897214, + 0.009318169, + -0.011454659, + -0.020494644, + -0.0040440755, + 0.0015456544, + -0.018065775, + -0.0052395742, + 0.017523644, + -0.005492791, + 0.0074951258, + -0.020288624, + -0.012423815, + -0.023671908, + 0.014016035, + 0.023805844, + -0.0076519963, + 0.0018495201, + 0.019548979, + 0.023899915, + -0.011990836, + -0.015425994, + 0.009251249, + -0.010942653, + 0.009375157, + 0.011663647, + 0.03505978, + 0.0030447466, + -0.0036941846, + -0.018438758, + -0.0060325935, + 0.005614868, + 0.011331946, + -0.0117661655, + 0.017277502, + 0.015692258, + 0.01834686, + -0.0018009174, + -0.028469635, + 0.001082758, + 0.01393292, + 0.009242633, + 2.1615171E-5, + 2.4062872E-4, + 0.01598134, + 0.004379643, + 0.01305067, + -0.014182109, + -0.011971925, + 0.010894487, + 0.005132508, + -0.009802162, + 0.009894538, + -0.005745304, + -0.0031426942, + 0.009930899, + 0.005787334, + -0.0056101405, + 0.01743079, + -0.009678055, + -0.016274612, + 0.0037817415, + -0.020836864, + -0.019184453, + -0.025933823, + 0.013380421, + 0.010650063, + -0.0036182438, + 0.006710262, + -0.009213962, + 0.0075393417, + -0.007594476, + 0.010222375, + 0.014504029, + -0.01519051, + 0.015306431, + -0.018885652, + 0.011647407, + -0.011603837, + 0.015424984, + 0.011306373, + 0.01692593, + -0.017088179, + 0.016543116, + -0.013144606, + -0.003022963, + -0.0015141943, + -0.026863405, + 0.00953238, + 0.014508949, + 0.002570111, + -0.021262283, + 0.0027619132, + -0.016500754, + -0.020833405, + -0.00759837, + -0.008996323, + 5.9745775E-4, + -0.003744139, + 0.005026791, + 0.0058611, + -0.03103832, + 0.027468782, + 0.009216329, + -0.011128743, + 0.0051451223, + 0.0022876188, + 0.004127345, + -0.015408196, + 0.00782261, + -0.008534889, + 0.029671425, + 0.01571488, + -0.017110696, + -0.0013218614, + 0.005040178, + -0.023363108, + -0.0029477207, + -0.0344476, + -0.027559254, + -1.2641112E-5, + -0.0054652262, + 0.009883123, + 0.010559554, + 0.012962701, + -0.0047918865, + 0.01659682, + 0.018075565, + -0.0018790595, + -0.011727298, + -0.0045730113, + -0.004492531, + -0.029970847, + 0.0028322078, + 0.0013914624, + 0.002705426, + 0.0052920547, + 0.0040928954, + -0.009123552, + -0.021030309, + -0.012783654, + -0.015681574, + 2.9594256E-4, + -0.0013769079, + 0.0012694692, + -0.019832479, + -0.013634359, + 0.01464282, + -0.031453017, + -0.008973938, + 0.004036778, + -0.017422287, + -4.8870797E-4, + -0.0029049416, + -0.02445115, + -0.02283566, + 0.029306972, + -0.022784334, + -0.0032056626, + -0.014958746, + 0.0018459903, + -0.015223922, + -0.0085686045, + -0.0056177354, + -0.011230071, + 0.022968234, + -0.008978963, + -0.0053708307, + -0.0040913983, + -0.011187783, + -0.0033116937, + -0.0044693933, + 0.0013144183, + 0.028308652, + -0.0060635563, + 0.00952369, + -0.002834679, + -0.03126152, + 0.005026433, + -0.013656541, + -0.0150273405, + 0.023779139, + -0.028624054, + -0.002096789, + 0.0018755557, + -0.03272208, + 0.006370826, + 0.0062120724, + 0.006916678, + -0.027265849, + -0.010670715, + -0.011342217, + 0.004335289, + -0.008010885, + 0.0068932893, + 0.009561953, + -0.019819116, + -0.008760197, + -0.009421925, + 0.012553315, + -0.003511144, + 0.0071473485, + 0.021927454, + 0.023457082, + 0.023378968, + 5.068246E-4, + 0.015422271, + 0.016443789, + 0.0122130895, + 0.0011975596, + -0.027606271, + -0.005311594, + 0.008964398, + 0.009848374, + 0.020444246, + -0.016132858, + -0.007003244, + 0.018524257, + 0.0038276967, + 0.006658586, + 0.0020377764, + -0.0011374874, + 0.006819427, + 6.3582463E-4, + 0.011029825, + -7.324272E-4, + -0.0051987064, + 0.016615435, + -0.02240476, + -0.01750693, + -0.006559783, + -0.020063845, + 0.013008561, + -0.0019102191, + 0.00457519, + 0.0020850769, + 0.0029458858, + -0.011403083, + -0.019484011, + -0.033121407, + 0.026203344, + 0.004220323, + 0.018046634, + -0.0035263582, + 0.025197791, + 0.0010292509, + -0.0018008177, + -0.006925329, + 0.009182332, + -0.013762973, + 0.00793562, + -0.02606488, + -0.0060064034, + 0.0057992283, + 0.011509506, + -0.019137261, + 0.014081631, + -0.03238732, + 0.007067576, + -0.020692796, + 0.0021484923, + 0.01010791, + -0.020770373, + 0.008354765, + 0.012185794, + 0.026930049, + -0.0106919985, + -0.009003571, + -0.020240722, + 0.0012464488, + -0.003913372, + -0.017342271, + 0.01567742, + 0.021104123, + 0.008555077, + 0.008160887, + -0.016600214, + 5.201419E-4, + 0.012099491, + 0.009404157, + -0.009069166, + -4.3944714E-5, + -0.015303585, + 0.007224079, + 0.014119883, + -0.005536207, + -0.013421759, + -0.002558078, + -0.01807643, + -0.0028987078, + 0.024601065, + 0.017440831, + 0.006591942, + 0.026405709, + 0.021176588, + 0.014332553, + -0.0026608005, + 0.0044500567, + -0.01740807, + -0.00765105, + -0.02290525, + -0.008474603, + -0.006546999, + 0.032738894, + -0.011945902, + 0.0070178816, + -0.002727322, + -0.008706273, + 0.008995271, + 0.013251195, + 0.009579798, + 0.0014735862, + 0.0013836087, + -1.9874373E-4, + 0.023355506, + -0.013984666, + 0.0027914993, + 0.010652299, + 0.005048468, + -0.0046341084, + 7.70435E-4, + 0.03025756, + -0.02183354, + 0.004324091, + 0.0015055178, + -0.0016774908, + 0.002008365, + -0.01586042, + 0.021162368, + 0.018143037, + -0.01979864, + 0.003976045, + 0.015044588, + 0.018874247, + 0.01380969, + -0.0014203286, + -0.0012104989, + 0.008252298, + 0.0021141209, + 0.015646374, + -0.020986341, + 0.007587536, + 0.0036884882, + -0.019059297, + -0.0018946967, + -0.0226449, + 0.014232779, + -4.156545E-4, + -0.008892816, + -0.020196177, + -0.010294924, + 0.016524296, + -2.5349844E-4, + -0.021221189, + -0.014316882, + 0.008124121, + -0.017934142, + -0.0155459205, + -0.0126865255, + -0.0025185419, + -0.0066184597, + 0.008234231, + -0.010449853, + 0.010343751, + 0.019657074, + 0.014828762, + 0.0062458506, + 0.0018000925, + 0.02080143, + 0.014596879, + 0.004859138, + 0.01654136, + -0.010210659, + -0.006191545, + 0.01128673, + -0.0010924477, + 0.0035685736, + -0.009646721, + -0.0118763065, + -0.014116485, + -0.015006175, + -0.022925233, + 0.012293761, + 0.0073664486, + -0.009856498, + 0.023056956, + 0.0038939395, + -0.025293503, + -0.026205428, + 0.021340832, + 0.017038135, + 0.011887467, + -0.0039800457, + -0.014888872, + 0.007797351, + -0.008063522, + 0.0055562407, + -0.02533728, + -0.026043046, + -0.0063303267, + 0.012285195, + -4.4106552E-4, + 0.004227338, + 0.0022915255, + -0.0019204221, + 0.006808061, + 0.016026253, + 0.010737003, + 5.964676E-4, + -0.024290016, + 0.010066544, + -0.024971426, + 0.0019525555, + -0.009028267, + -0.0036392887, + -8.475013E-4, + -0.024841182, + 0.0054672966, + -0.012329915, + -0.0279036, + 0.013844497, + -0.00466382, + 0.013614004, + 0.0048459982, + 0.0075153126, + -0.010039057, + 0.0029206695, + 0.0134592755, + -1.7761209E-4, + 0.0046426826, + 0.0029832819, + -0.015972434, + -0.01776671, + 0.026151419, + 0.0044232733, + -0.0038099564, + 0.010823955, + 0.016927777, + -0.011632412, + 0.0031111825, + -0.028741328, + 0.009833232, + 0.019929385, + -0.005973495, + -0.004509325, + 0.024209071, + 0.011025194, + 0.012507055, + 0.0026652047, + -0.018432248, + 9.597514E-4, + -0.028624663, + 0.013302723, + 0.015008429, + -0.013249472, + -0.025470685, + 0.017623946, + -0.019900987, + 0.016408939, + -0.0452466, + -0.007836688, + 0.01067582, + 0.0066625034, + -0.013786903, + 0.009039888, + 0.036551565, + 3.451439E-4, + -0.021457225, + -0.020054305, + 0.0011011473, + 0.0054028053, + 0.004572545, + -2.4502884E-4, + 0.014536111, + -0.028220061, + 0.0016699455, + 0.015780695, + 0.00343117, + 0.003187728, + -0.0065718214, + 0.0022459426, + -0.0015775592, + 0.018892804, + -0.035668712, + 0.008520673, + -0.011485222, + 0.028545769, + 0.026038973, + -0.005532754, + 0.018224869, + 0.0026294943, + -0.0036365134, + -0.02298385, + -0.00330506, + 0.008122065, + 0.007213714, + -0.0024055287, + 0.010015599, + 0.023986258, + 0.013546434, + -0.0019704655, + -0.027399305, + -0.009379098, + 0.018873513, + 0.0059066284, + 0.0014013181, + -6.459959E-4, + -0.019381266, + 0.025222637, + 0.012704277, + 0.0122667095, + 0.008001602, + 0.0023663002, + 0.010606017, + 0.0138947675, + -0.007345285, + -0.00865124, + -0.00935994, + 0.010283704, + 0.038299516, + -0.00861921, + -0.014640503, + 0.0094318045, + 0.030453216, + -0.01967856, + 0.029252227, + 0.010759245, + 5.5813663E-5, + -0.012225088, + 0.031064581, + 0.011486985, + -0.008657999, + -0.014324125, + -0.0213085, + -0.012078576, + 0.012434713, + 0.029539859, + 0.013560005, + 0.01053484, + -0.0074764895, + -0.009719416, + 0.007349967, + 0.0029996291, + 0.0049304613, + 0.005201383, + -0.0025636647, + 0.011209296, + -0.042025648, + -0.015575172, + 0.0014937383, + -0.008451109, + 0.0043994277, + -1.6963512E-4, + 3.3198693E-4, + 0.0029386017, + 0.005244352, + -0.018577963, + 0.021784982, + 0.0011954083, + -0.009902851, + 0.006477432, + -6.113706E-4, + 0.0050691357, + -0.0068910513, + 0.015062525, + -0.013192454, + -0.016334135, + -0.013200755, + 0.015987018, + 0.005750293, + 0.025004907, + -0.015059431, + -0.021457283, + -0.0013407405, + -0.011300772, + -0.0076741865, + 0.022455256, + -0.010130433, + 0.007580329, + 0.010639337, + 0.029736595, + 0.0078007076, + -0.008879264, + 0.0022517731, + -0.01891876, + -0.0029088682, + 0.0031796908, + 0.004006475, + -0.040639, + -0.029624078, + 0.0058131893, + 0.016738048, + 0.010628767, + 0.0055361707, + -0.005367464, + 0.007938614, + -0.0018911763, + -0.013767674, + -0.0052064653, + 0.0031542866, + 0.009098298, + 3.3899726E-4, + 0.006596911, + -0.036585048, + 0.016073784, + -0.0022514267, + 0.025781084, + 0.0053848866, + -0.023983803, + -0.011864856, + 0.01095475, + 0.032688566, + -0.009397232, + -0.03961822, + -0.0033416299, + -0.014949204, + 2.4442293E-4, + 0.00592343, + -0.0014035669, + 0.0073286225, + 0.020505387, + -0.01985797, + 0.013302412, + 0.023250684, + -0.0066078263, + -0.0152376, + -0.018540688, + -0.011132236, + -7.7604846E-4, + 0.005145198, + -0.0105607705, + -0.008525307, + -7.850048E-4, + 0.002766711, + 0.0018482556, + -0.003283192, + 0.017899109, + -0.02711589, + 0.04106344, + 0.015106988, + -0.007193119, + -0.012235524, + 0.01038496, + 0.0024208927, + -0.019449823, + 0.0024304325, + -0.029434893, + 0.006635243, + -0.011674064, + 0.013977378, + 0.0084351, + -0.0012632459, + 0.01057187, + -0.012383467, + 0.006464322, + -0.00968833, + 0.03174048, + 0.010041311, + -0.019814875, + -0.014954564, + 0.017759709, + -0.0017021995, + 0.010074421, + -0.00928615, + 0.013034623, + 8.8022137E-4, + 0.012264825, + -0.00623934, + 0.017437493, + -0.006492025, + 0.031484466, + 0.009676575, + -0.034706805, + -0.012273121, + 0.010272288, + 0.0240988, + -0.0036864856, + 0.024661308, + 0.0054135486, + 0.0028797865, + 0.015881486, + -0.009048432, + 0.030762866, + -0.004883402, + 0.0023310545, + -5.8582134E-4, + 0.00897586, + -0.0033997868, + -0.0065841167, + 7.5974385E-4, + 0.01846767, + 0.0198567, + -0.0047757067, + 0.0015215757, + 0.011174258, + 0.0015038864, + 0.011144393, + 0.0035191027, + 0.004388518, + 0.012437298, + 0.02756913, + -3.271972E-4, + 0.019250516, + -0.0021111548, + -0.026005954, + 0.023562195, + -0.008647054, + -0.025740456, + 0.0046240864, + -0.008144894, + 0.0038691787, + -0.011541444, + 0.031107433, + 0.026900154, + 0.00893327, + -3.2335406E-4, + 0.005552817, + 0.0059485366, + -0.00735329, + -0.012004427, + -0.0050649922, + 0.0020379405, + 0.012946422, + -0.0019623756, + -0.0097238505, + -0.012713394, + -0.016056146, + -0.018384907, + -0.00692098, + 0.0043983446, + 0.017100824, + -0.013074469, + 0.010582198, + -0.0075486605, + 0.0012868308, + -0.008366802, + -0.018514225, + -0.0155240195, + -0.009475448, + -0.021033512, + -2.1063416E-4, + -0.0073341443, + 0.023255194, + 0.0016651726, + -0.014624102, + 0.0049128374, + -0.009010827, + -0.009888925, + 0.0010893556, + -0.0077788564, + -0.010638612, + 8.536807E-4, + -0.017358955, + -0.016669188, + 0.026898568, + 0.014468119, + 0.018281534, + -0.024447678, + -0.0031648444, + 0.007815593, + 0.005183459, + 0.012113319, + -0.006836844, + -0.009814707, + 0.026719196, + -0.0030805154, + 0.011047387, + 0.01131448, + 0.029619796, + 0.010195062, + 0.0229902, + 0.0106453495, + 0.017855637, + 0.014014369, + 0.027793115, + -0.020424664, + 4.6001372E-4, + -0.010684681, + 0.018974312, + 0.00505841, + 0.0071682655, + 0.0037758874, + 0.005296922, + -0.0038515965, + 0.02386464, + 0.006554843, + -0.018101042, + -0.015951931, + 0.02585186, + -0.01192155, + -0.02100473, + -0.022791702, + 0.0067250757, + -0.021081187, + -0.0023783932, + -0.025555411, + 0.026740758, + 0.023704963, + 0.010487669, + -0.006503009, + -0.007271598, + -0.015662437, + -0.009387552, + -0.019001884, + 0.005771127, + 0.021286748, + 0.019343834, + 0.0017087546, + -0.0025993458, + -0.037624255, + -0.008243239, + 0.014308964, + -0.036391374, + -0.0023402802, + -0.0045866147, + 0.013245241, + 0.030244853, + -0.011660229, + -0.009554329, + -0.025316486, + 0.01573503, + -0.012569761, + -0.0029937099, + -0.0047329785, + 0.016983302, + 0.010054384, + -0.004861459, + -0.0016772548, + -0.021739757, + -0.0028905214, + -0.0053774314, + -0.0039107343, + 0.00932572, + -0.014374771, + 0.0026067714, + -0.04159269, + 0.0043914015, + 0.032730922, + 0.009651811, + 0.010990438, + -0.009034902, + 9.902908E-5, + 0.012136197, + 0.016126422, + -0.0011140082, + 0.021057231, + 0.011193376, + 0.009762428, + 0.018964224, + -0.001588563, + 0.005846249, + 0.013715051, + 0.02709119, + -0.01941529, + 0.011216666, + -0.019360706, + -0.0042961524, + -0.0055555333, + -0.03315099, + 0.009905655, + -0.0026743049, + 0.018820174, + 0.0064674974, + 0.00969539, + -0.009239395, + 0.01468805, + -0.024523912, + -0.0075423596, + 0.008527398, + -0.014113503, + -0.01121421, + 0.0019528362, + 0.0052083717, + 0.015801212, + -0.0014952427, + -0.0021847223, + 0.0068346485, + 0.006653942, + 0.006853014, + -0.004832772, + 0.004185843, + 0.019447267, + 0.0068515814, + -0.03699032, + 0.02954453, + -0.01719566, + 0.0138565535, + -0.001850769, + -0.016294336, + -0.01477177, + -0.002688546, + 0.006701115, + 0.0061851344, + -0.0024636295, + 7.4757496E-4, + 0.010297242, + -0.02373023, + -0.012884444, + 0.0040650927, + 0.01948742, + -0.026251307, + 0.006957488, + -0.006764685, + -0.009065305, + 0.016092429, + -0.009602207, + 0.0039350498, + -0.01431216, + -0.014032308, + 0.001899862, + -0.018575232, + -0.028726151, + 0.00786978, + -0.002911452, + 0.012830233, + -0.01678289, + -0.026630599, + 0.0021545324, + -0.017501112, + 0.0054819225, + 0.025843754, + 0.0108834095, + 0.0025292805, + 0.011393292, + 0.0057791085, + 0.003279462, + 0.01593594, + 0.021070834, + 0.01808562, + -0.018000074, + 0.013226618, + 0.02607888, + 0.007923395, + 0.0340485, + -0.014788869, + -0.009981895, + -0.005288491, + -0.004640941, + 0.01857852, + -0.010645566, + -0.006356439, + -0.014268315, + 0.039581884, + 0.010355604, + 0.02410257, + 0.0039833575, + 0.010748838, + 0.008551723, + -0.015515906, + -0.019694211, + -0.0013885561, + -0.0023206817, + 0.015806468, + -0.0064702467, + 0.018644089, + -0.010499173, + 0.012628119, + 0.004383268, + 0.0076854713, + -0.0089476975, + -0.013538109, + 0.035199814, + 0.016710944, + -0.019038416, + 6.1086623E-4, + 0.00903025, + 0.0063009984, + -0.008947219, + 0.0044265194, + -0.015470404, + 0.014158462, + 0.005592962, + 0.001845332, + -0.018023927, + 0.020728722, + 0.008124837, + -0.00936684, + -0.016608648, + 0.01910899, + 0.036692537, + -0.018482428, + -0.021197073, + 0.008920157, + 0.012998036, + -0.019181011, + 0.013271115, + -0.010571628, + -0.0017543641, + -0.018959533, + 0.023844108, + 0.0010110423, + -0.008107821, + 0.004237567, + -0.01262644, + 0.03912465, + 0.0092902575, + -0.0016320157, + 0.020223998, + 7.953016E-4, + -0.0029702222, + 0.0012584423, + -0.010799654, + -0.0060030622, + -0.01961892, + -0.009279554, + -0.012408085, + 0.019407703, + 0.008863349, + 0.0031068004, + 0.0028741744, + 0.03036757, + 0.020278329, + -0.013884174, + 0.019056195, + -0.007981419, + -0.017324522, + -0.01546949, + 0.02301698, + 0.01282312, + -0.007775248, + -0.0021679057, + 0.026095126, + -0.00925625, + -0.004157386, + -0.01372883, + -0.009276593, + -0.0037595443, + -0.0018359503, + 0.0026655146, + 0.017899327, + 0.01210769, + -0.013743353, + 0.0036686212, + -0.033303183, + 0.012019244, + -0.0023705773, + -0.0044252495, + 0.0018513134, + -0.034184553, + 0.025530579, + -0.03663063, + -0.021879217, + 0.0053271796, + -0.020730369, + -0.0029622125, + -0.0037495045, + -0.019499883, + 0.022795437, + 0.01577884, + -0.0109897135, + -0.017834961, + 0.007265767, + -0.007852492, + -0.01178699, + 0.005734783, + 0.009219383, + 0.010259615, + 0.028108792, + 0.01737102, + -0.022738397, + 0.015172978, + 0.005730283, + -0.0050771483, + -0.008776593, + 0.024213111, + 0.009753766, + 0.020421749, + -0.008449391, + -0.013418944, + -0.003213382, + 0.0065149833, + 0.006321839, + -0.017091278, + -5.989585E-4, + 0.004574065, + 0.001308288, + -0.018624729, + 0.023941657, + -0.02284448, + 0.027949182, + -0.033244155, + -0.004643832, + 0.008303395, + -0.010918243, + -0.01717266, + 0.0034558016, + -3.6663972E-4, + -0.0055369535, + -0.0015992223, + -0.010884983, + -0.011656428, + 0.004353868, + -0.02083382, + -0.009587979, + -0.008118624, + -0.01244461, + -0.00231557, + -0.0060291234, + 0.028464857, + -0.0014596729, + -0.007861258, + -0.03857158, + -0.033561468, + -0.009377268, + 0.0337426, + 0.0049024764, + -0.031249737, + -0.020915275, + -0.01805258, + 0.011026177, + -0.0028469495, + -0.003307404, + -0.006463799, + 0.029217066, + 0.029545039, + -0.017171845, + 0.0056477464, + -0.01947482, + -0.020811813, + -0.007753712, + -0.014320353, + -0.018273432, + 0.023400525, + -0.010103704, + -8.187819E-4, + 0.017111277, + -0.006242017, + 0.0033264204, + -0.0017439136, + -0.014602395, + -0.007838765, + 5.98601E-4, + -0.0022930028, + 0.006083591, + 0.0093948245, + -0.0139413625, + -0.01078887, + -0.005292307, + -0.02221453, + -0.03003343, + -0.0019812942, + -0.007316984, + -0.0015212324, + -0.009276459, + -0.0040676952, + 0.019255375, + 0.015498354, + 0.015563583, + -0.0113683725, + -0.03047408, + 0.024714544, + -0.0071707293, + -0.003411185, + -0.01504308, + -0.00966368, + 0.02000133, + -0.0149048725, + -0.006116525, + -0.021426884, + 0.028176928, + 0.0031850692, + 0.032120857, + 0.00714326, + -0.0010256883, + -0.0055141402, + 0.0134637775, + -0.0055542993, + 0.004452255, + -0.002144397, + -0.009793574, + -0.020927198, + 0.009090322, + -8.7423786E-4, + 0.01977398, + 0.012096419, + -0.0075629936, + 0.0036628074, + 0.014370548, + -0.027002865, + 0.034368876, + -0.0064108996, + -0.003692895, + -0.015989318, + -1.9964941E-4, + -0.008325317, + -0.002886855, + 0.016755724, + -0.020579744, + -0.01463558, + 0.009253418, + 0.0028037217, + -0.01525977, + 0.0051447474, + 0.0096092345, + 0.049106423, + 0.0070058266, + 0.014878178, + 0.004673646, + 0.023823237, + 0.025226228, + -0.024165686, + -0.0046573104, + -0.0228947, + 0.010598313, + 0.016205916, + -0.0068177134, + 0.006863772, + -0.0039459397, + -0.022318373, + -0.013839608, + 1.611243E-4, + 0.012330458, + -0.008409042, + 0.015515692, + 0.002953368, + 0.009646455, + -0.02385411, + 0.028334992, + 0.010406998, + -0.027773255, + 0.021942813, + -0.013625085, + 0.01333502, + 0.017334098, + 4.4994467E-4, + 0.002119167, + -0.016359005, + -0.01710552, + -0.0027411166, + -0.030385775, + -0.017371817, + -0.00534263, + -0.016575385, + 0.0036720328, + -0.036085702, + 0.012026924, + 0.002530538, + -0.0057243137, + -0.014469214, + -0.01650566, + -0.0019638927, + -8.581098E-4, + -0.012972262, + -0.003058124, + -0.009679968, + 0.012446886, + -0.042951442, + -0.025286522, + -0.020683113, + 0.0023136737, + 0.015631987, + -0.016234834, + -0.017011814, + 0.008977606, + 0.018960215, + -0.01914631, + 0.016568916, + 0.004506716, + -2.5320987E-4, + 0.027601032, + 2.7624212E-4, + -0.017069912, + 0.0113888495, + 0.008723849, + 0.010380476, + 5.8147655E-4, + 9.5214177E-4, + 0.008193609, + 0.014100817, + -0.0098579535, + 0.0036226471, + -0.008099002, + -0.023302196, + -0.02591008, + -0.00978264, + 0.002227402, + -0.014238226, + -0.016592013, + -0.027267726, + 0.0027805252, + 0.009147164, + -0.006578993, + -0.0016946273, + 0.0063723437, + -0.031439133, + 0.010063538, + -0.0032158964, + -0.017131642, + -0.027090814, + 0.00854669, + -0.0015082714, + -0.0011726905, + -0.0026992268, + 0.01003419, + -0.0045716395, + 0.0115997745, + 0.01964825, + -0.025179157, + -0.01904128, + -0.010449978, + -0.028094124, + -0.0076352963, + 0.018522369, + 2.1323563E-4, + 0.00841805, + 0.012316604, + -0.011401538, + 0.014396675, + -0.0027495122, + -0.019194169, + 0.011578864, + 0.032019213, + 0.026609989, + -0.008977368, + -0.0017714995, + 0.008753203, + -0.009136355, + 0.010149054, + 0.010163229, + 0.0054512946, + 0.003635822, + 0.027214346, + 0.0055046505, + -0.004915765, + 0.010647112, + -0.0031521942, + 0.013984709, + 0.014539844, + 0.0010502167 ], - "paletteEmbedding": [ - 0.04988688, -0.035102565, 0.019756345, 0.0106337005, -0.022910213, - 0.02733881, -0.005503555, -0.026337842, -0.011925381, -0.023799995, - 0.023518495, 0.013908413, -0.035622, -6.6956e-4, -0.007738211, - -0.038103923, 0.058217425, 0.0018925602, -0.013875595, 0.06401704, - -0.04883065, -0.002417603, -0.038743794, 0.02033492, -0.016174903, - 0.029978873, -0.012620595, -0.012259524, 0.011369123, -0.064597696, - 0.023616564, -0.06275206, 0.017584816, -0.017813949, -0.03660425, - 0.01501955, -9.158454e-4, 0.034785632, 0.009776474, -0.015260406, - 0.040200885, 0.02880737, -0.0075058267, 0.016662356, -0.03378194, - 0.018427236, 0.018971942, 0.011819795, 0.03739565, -0.00450869, - -0.03531472, 0.017259562, -0.038788028, -0.031317834, 0.088198565, - 0.031065993, -0.009574441, 0.028484201, -0.0057716547, -0.012555595, - -0.040142797, -0.010552787, -0.006356007, 0.07947394, 0.053473637, - -0.013701288, -0.020599669, 0.028787278, 0.006513153, -0.025421143, - 0.005687394, -0.007881015, -0.0065089893, 0.0105569875, -0.0020240606, - -0.025826918, -0.011323727, 0.008134684, 0.05407894, -0.01658177, - 0.012032199, -0.022528917, -0.025561163, 0.005304992, -0.0028603373, - 2.9258706e-4, 0.036408287, 0.0073925555, 0.03310732, 0.0061652767, - 0.01406603, -0.07242178, 0.07408232, 0.0024827435, -0.01950822, - 0.02317875, 0.03307496, 0.01632829, -0.026400479, 0.044930108, - -0.03657271, 0.0200371, 0.038652264, 0.019527558, -0.01812301, - -0.0017692766, 0.0022048175, -0.0152164735, -0.010375237, -0.025673678, - 0.015789982, 0.03407358, 0.014453908, -0.0023032739, -0.043614473, - -0.012807491, 0.017492505, 0.08212534, 0.015751313, 0.0036225466, - -0.03321243, -0.018579615, 0.026115302, 0.006045998, 0.048820738, - -0.0045994646, -0.03147075, -0.02230329, 0.07341502, -0.019824319, - 0.0100816395, -0.028111398, 0.012111181, 0.019338656, 0.07013623, - -0.014932194, 0.015027569, 0.027025802, 0.0027601784, -0.01173486, - -0.020273482, -0.029103925, 0.011106187, -0.06285211, 0.06269923, - 0.032083128, -0.042035047, 0.04046207, 0.07741101, 0.0024658334, - -0.03296859, -0.035649452, 0.03889979, 0.002886572, -0.009486834, - -0.01825787, 0.005697795, -0.042771515, 0.02558155, -0.019759577, - 0.005555214, -3.72838e-4, 0.011469535, -0.01651052, 0.09635332, - 0.037801415, -0.084683545, -0.060814418, -0.022685552, -0.08689429, - -0.01577351, -0.031351447, -0.023526654, -0.05497627, 0.0204704, - 0.030064486, -0.07510082, -0.045023527, -0.046384722, 0.0218376, - -0.02169007, 0.05771713, -0.07504516, -0.01157112, 0.029915238, - 0.019752659, -0.013347782, 0.029551318, 0.019927775, 0.005527336, - -0.077759475, -0.0053962995, 0.038903944, 0.010380781, -0.03501244, - 0.07049765, 0.09667056, 0.027553963, -0.032162692, -0.019925933, - -0.008367932, -0.0044632675, -0.027300898, -0.0057459683, 0.002706235, - -0.008239976, -0.014230771, 0.01566358, 0.0046126796, 0.07386858, - -0.006080376, -0.04681713, 0.062848754, -0.023131676, 0.017609002, - 0.0010587877, 0.020478142, 0.020731414, 0.013277498, 0.030793674, - 0.024873732, -0.011467356, -0.026874885, -0.021951893, 0.021861596, - -0.02848444, -0.02943267, -0.01001741, -0.056069944, 0.0016976767, - -0.023620924, 0.002333057, 0.03378343, -0.01268902, 0.01343893, - 0.01952372, 0.011219299, -0.06443819, 0.03190625, -0.050035216, - 0.038595837, -0.029534139, -0.007379199, -0.009841918, 0.009442816, - -0.058483426, 0.05623028, 0.02837307, -0.032503124, -0.0045615407, - -0.05741094, 0.06181259, 0.03473351, -0.0010659264, -0.009472304, - 0.017978016, 0.003959893, -0.02068587, -0.049200244, 8.839337e-4, - -0.050556134, 0.0048503615, -0.013177141, 0.005595998, 0.0017039799, - -0.014037613, 0.05057783, 0.009465955, 0.028642569, -0.043306306, - 0.07394525, -0.0027808454, 0.02290908, -0.003512552, 0.033247188, - 0.021825507, -0.07464052, 0.009803669, 8.061451e-4, 0.01728875, - 0.02687499, -0.009261002, -0.013681059, 0.03757626, 0.012360614, - -0.006514791, 0.018369678, 5.7004014e-4, 0.014821421, -0.003807255, - 0.0027780135, -0.0025418268, -0.041315425, -0.015176765, -0.013990953, - 0.0011527207, -0.008866837, -0.002920926, -7.0079585e-4, 0.06050383, - -0.02800671, -0.016407527, 0.0087055, 0.0010926587, 0.024806254, - 0.015961105, 0.002727288, -0.045594975, -0.04629348, -0.017162316, - -0.035749346, -0.014018462, -0.04311854, 0.0058368114, 0.06333554, - 0.02002432, 0.0236089, -0.045642275, 0.0047544152, 0.067645796, - -0.01731674, 0.030176876, -0.034645643, 0.032188103, -0.002762456, - -0.059699524, 0.0078686215, -0.02825771, -0.052175585, 0.05188413, - 0.007689576, 0.015984528, 0.0037965227, 0.030939126, -0.040381078, - -0.06840268, -0.004632378, -0.02734065, -0.020237204, 0.0040762387, - 0.034640398, 0.018422008, -0.034922726, 0.007900374, 0.036225956, - -0.02611702, -0.0060628774, 0.05319758, 0.031018276, -0.007614101, - 0.016441606, -0.011466061, -0.006517305, -0.004304272, 0.047025766, - -0.04103457, -0.0069766785, -0.0026525275, -0.010937172, 8.5115083e-4, - -0.028654413, -0.001312474, -0.018361304, -0.026589377, 0.01960646, - -0.05603852, -0.04952226, -0.03011542, -0.014276226, -0.045156848, - 0.022311082, -0.012551764, -0.0148728965, -0.011509691, -0.02306289, - -0.029895151, -0.0016583801, -0.0054218057, -0.014896287, 0.049338654, - -0.05012874, -0.051451657, -0.025543882, -0.024386331, 0.01751398, - 0.029148366, -0.011586425, 0.046634868, -0.0425688, 0.013459797, - 0.005114984, -0.0016549786, -0.0012393381, -0.019678902, 0.020894833, - -0.034305923, -0.011279206, 2.0948504e-4, 0.07547246, -0.004806788, - -2.97186e-4, 0.0034402986, 0.054712825, 0.010744871, -0.06201158, - 0.0074811843, -0.05434511, -0.008610207, 0.008240371, 0.07922355, - 0.0012776905, -0.014882732, -0.023803283, -0.025060374, 0.06345905, - -0.027553767, -0.0319776, 0.006252619, -0.0019056494, 0.035273843, - 0.023737289, 0.02928582, -0.06735531, 1.3720039e-4, -0.0051970757, - 0.027739676, -0.01139952, -0.02965774, 0.047673497, -0.012016631, - 0.03032138, 0.0066294814, -0.007759899, -0.020704482, 0.012207188, - -0.03869385, -0.01187114, 0.04615572, 0.0050326213, -0.0036680915, - -0.014052931, -0.0392833, 0.017940987, 0.03108934, -0.03855486, - 0.026140643, -0.040396202, 0.021785961, 0.0092191985, -0.006194171, - 0.009286928, 0.0052485676, 0.058118213, -0.0013250365, 0.020737998, - 0.058087066, 0.06552452, 0.025334252, -0.00361703, -0.04561126, - -0.019005809, 0.008362356, 0.04703271, 0.014307443, -0.03748351, - -0.030902859, 0.02189078, -0.031399064, -0.043192584, -0.031503156, - -0.036777463, 0.008965269, 0.08352166, -0.017918358, 0.06658813, - -0.03887474, -0.021509884, -0.039221127, 0.0019105411, 0.03222709, - -0.049700275, 0.020372791, 0.04507569, -0.013644607, 0.007442764, - -0.010651884, 0.02957427, 0.034538656, -0.008101157, 0.019141313, - 8.2940125e-5, -0.018763823, -0.09814276, -0.032822896, -5.297782e-4, - 0.0147687, -0.009039824, 0.03871242, 0.0013026601, -0.058647346, - 0.04469891, 0.026290948, -0.012999988, -0.00520932, 0.0290705, - 0.013986862, 0.05465953, 0.037895013, -0.002900028, 0.024391755, - -0.02066761, 0.025234882, -0.0018359417, -0.029390393, 0.02874802, - -0.050170895, 0.029510181, -0.016077265, 0.079980135, -0.021327391, - -0.06400326, 0.03599063, 0.022449622, 0.020813603, -0.0016072461, - 0.008547809, -0.004669877, -0.0068440265, -0.009371266, -0.036962193, - -0.008542098, 0.0010240518, -0.024854898, 0.027756685, -0.03864491, - 0.0020030274, 0.013656081, 0.019129556, 0.006565918, 0.018186858, - 0.023837488, -0.040089905, -0.0042511374, -0.015757252, -0.007928463, - 0.015159902, 0.06626819, -0.006813233, 0.017265018, 0.029311547, - 0.014042787, 0.02368325, -0.046866182, -0.030724214, -0.03138421, - -0.040913142, -0.032973044, 0.016406203, -0.042015612, -0.025820207, - 0.020663694, 0.005562108, 0.054009557, 0.03176353, -0.0040675504, - 0.053091586, -0.026089586, 0.0016016965, -0.0042104004, -0.012714081, - -0.008374961, 0.021539582, -0.008023676, 0.014137946, 0.051469076, - -0.0010518485, 0.009843834, -0.035022072, -0.050070982, -0.031992085, - 0.0012537162, -0.022317128, 0.0040401407, 0.030419664, -0.020903885, - -0.008317685, -0.022596225, -0.04397775, -0.03701156, 0.044477265, - -0.017766085, -0.031515278, 0.038681276, -0.049624026, 0.014121766, - -0.0015356658, -0.0024489483, 0.008658891, 0.035755057, -0.041898984, - 0.024002945, 0.010230597, -0.05080531, 0.015690073, 0.015727008, - 0.0073258383, 0.053456057, -0.042886253, -0.0024173507, 9.87307e-4, - -0.026887449, -0.01671734, 0.008532457, -0.0345042, 0.029154113, - 0.044241898, -0.010387242, 0.02724063, -0.01531858, -0.0234322, - -0.013951438, -0.029826146, -0.03649738, -0.05836347, 0.06743674, - -0.053218856, -0.0022784565, -0.020048058, -0.04426565, 0.007633861, - 0.0010326697, -0.060395107, 0.027533932, -0.021270828, 0.02269401, - 0.006526249, -0.0014284193, 0.0010112735, 0.002220254, 0.010153218, - 0.0074431375, 0.04284986, 0.0067112097, 0.00955644, 0.022749038, - -0.048579365, -0.020269861, -0.04675749, -0.008309061, 0.0076813847, - 0.002260097, 0.013177704, -0.0142209325, -0.0074660336, 0.02759189, - -0.021196503, 0.015972473, 0.006037669, -0.022231776, 0.045081027, - -0.003236469, -0.0034105403, -0.032337803, -0.032410555, 0.022230087, - -0.042716578, -0.023602253, -0.006745967, 0.0068047866, 0.01801865, - -0.012226592, 0.020463824, -0.031921852, -0.0578658, 0.031189613, - -0.011880299, -0.02439739, -0.0014004654, -0.035093952, 2.09603e-5, - 0.016244879, 0.019622212, 0.045122765, 0.032967705, 0.01888023, - -0.009213198, 0.082634374, -0.07243553, 0.04147942, 0.010880548, - 0.08276472, -0.016771805, -0.058654886, -0.013011918, -0.034165815, - -0.018933715, -0.024622131, 0.018943137, -0.012939815, 0.059085008, - 0.009853535, 0.023478094, -0.016952386, -0.0024341634, 0.015324759, - -0.0019218314, -0.0066915266, -0.010575099, -0.034216948, -0.03716144, - -0.0010269935, 0.0113983825, -0.024660477, -0.05355562, -0.017807389, - -0.027992094, 0.033679754, 0.009420145, 0.0049603363, -0.021092746, - -0.011719431, 0.019593677, -0.020304583, -0.011477347, -0.014713254, - -0.0445994, 0.030887399, 0.007277116, -0.043627087, -0.020049196, - 0.032732215, -0.022744603, -0.02186965, 0.0023292198, 0.035115514, - -0.01588458, -0.034116916, -0.06530079, -0.0065734414, 0.010420617, - -0.026448574, 0.029790383, 0.022742702, -0.002106465, 0.028833885, - -0.014222255, -0.0070245457, -0.056520175, 0.03903015, -0.050091565, - 0.012277531, 0.044301175, -0.010540643, -0.027288558, 0.028955838, - 0.014766404, 0.0064766402, 0.0037171058, -0.025342783, -0.01039535, - -0.023310993, 0.028287778, -0.04302982, 0.02816043, 0.0014081155, - -0.0027666388, -0.014906531, -0.00980589, 0.014850825, 0.0031072802, - -0.03239729, 0.025096646, 0.009086451, -0.041458216, 0.02557613, - 0.0300423, 0.025215376, 0.0056918073, -0.06415921, -0.056548163, - 0.008276216, -0.013906501, 0.047046192, 0.034414213, -0.015547341, - 0.00347254, 0.016675053, -0.02255924, -0.0030804062, -0.026067609, - 0.0361426, -0.0070380243, -0.025719075, -0.0054723006, -0.0024474799, - 0.014105817, -0.0033000929, -6.7236746e-4, 0.00633752, -0.012185065, - 0.040688593, 0.06943064, -0.018557692, 0.006289817, -0.012145602, - 0.006862378, -0.009033928, 0.017877286, -0.027236432, -0.010840403, - 0.041091602, -0.020333778, 0.011515412, -0.005120045, 0.039638028, - -0.028322395, 0.05304947, -0.02001412, 0.0033369025, 0.0025858001, - 0.03629495, -0.038443774, 0.024531633, 0.047850292, 0.0034722944, - 0.0052975584, 0.0171384, -0.0012698421, -0.0014738892, 0.022197653, - 0.027793473, 0.0027473147, -0.03555648, -0.0024458305, -0.0034244263, - 0.0025823137, -0.002184509, 0.07672109, -0.05865511, 0.03581442, - 3.3550994e-5, -0.019849647, -0.035651747, -0.034174502, 0.027855545, - 0.05587276, 0.035179287, 0.026600283, -0.047399573, 0.06298925, - 0.04497776, -0.015889702, -0.05702217, 0.0025191782, -4.4576e-4, - -3.9731545e-4, -0.020595798, -0.022663878, -0.01913336, 0.059837673, - -0.017546453, 0.013893626, -0.024232235, -0.025263425, -0.041266296, - 0.034941938, 0.025548605, 0.032782994, 0.05373229, 0.024962792, - 0.009356421, -0.00971548, -0.018918257, -0.041587792, -0.012181914, - -0.03457789, 0.01101711, -0.0582123, 0.024381462, -8.751847e-4, - -0.03128504, -0.064882435, 0.026047898, -0.04735212, 0.009099072, - -0.09727148, -0.019972496, -0.04206557, 0.07662151, -0.09116982, - 0.0023644636, -0.04466243, 0.047705606, 0.0439513, -0.030296119, - -0.024374535, -0.013665429, 0.016692074, -0.01697999, 0.021924566, - 0.02665439, 0.035340082, 0.05249772, 0.0026643276, 0.048385255, - 3.128266e-4, -0.0478207, 0.017144972, -0.037056927, -0.062992044, - -0.011584698, -0.049498558, -4.8586188e-4, 0.018210309, -0.0105057405, - 0.01024949, 0.012048727, -0.022880757, -2.2773597e-4, -3.8841047e-4, - 0.018163664, -0.019089304, -0.047318924, -0.0120325, 0.017963642, - -0.007575479, -0.011025179, -0.040030837, -0.06476095, -0.002667081, - 0.014312502, 0.016062668, 0.010807131, 0.00953134, -0.020491576, - 0.03177498, 0.011954774, 0.016288063, 0.0016364674, 0.027269276, - 0.0046667685, 0.011612965, 0.0039718803, -0.0405007, -0.036469646, - 0.016607327, 0.06885751, -0.008104662, 0.006974252, 0.03057547, - -0.035523817, 0.010053, -0.019443318, -0.049085837, -0.05021773, - -0.033183146, -0.011328464, -0.013220229, -0.025019052, 0.03716518, - 0.009368383, 0.005996299, -0.0037510202, 0.020307427, -0.041580115, - 0.011880958, -0.038477823, 0.039678477, -0.026191657, -0.032267172, - 0.05780924, -0.032365724, 0.013371588, 0.029596725, -0.046889737, - 0.012250653, -0.040067617, -0.036983225, -0.053590167, 0.007699396, - -0.059167042, 0.05360641, -0.016901359, 0.030073356, 0.0041688937, - -0.049833447, -0.025771977, -0.0025945934, -0.051979993, -0.0521346, - 0.04594423, -0.022085225, -0.018318139, 0.03102398, 0.023322763, - -0.018624466, 0.051630657, 0.020388741, -0.0077386964, 0.022874994 + "paletteEmbedding" : [ + 0.0127375545, + -0.047161944, + -0.059743535, + -0.048580516, + -0.020563759, + 0.05374442, + -0.002183151, + 0.009869963, + 0.08871893, + 0.034782156, + 0.0062869783, + 0.07202827, + 0.00955915, + 0.045691278, + -0.0027097913, + -0.019061038, + 0.025458066, + 0.024580814, + -0.027971739, + -0.013946313, + -0.014719967, + 0.019645173, + 0.057651702, + 0.005330855, + 0.0022812814, + 2.1342043E-4, + 0.062036272, + 0.022838783, + 0.0023126788, + -0.024216043, + 0.016759899, + -0.009640599, + -0.0050417483, + -0.010985946, + -0.0267783, + 0.011278858, + 0.023400178, + 0.028422356, + -0.0072020004, + 0.012226888, + -0.0373083, + 0.002487041, + 0.015290019, + 9.184209E-4, + 0.024956834, + -0.091707714, + -0.014668941, + 0.01900438, + 0.031228438, + 0.011825922, + -0.04070751, + -0.016305089, + -0.038627993, + -0.034522697, + 0.022396013, + 0.058704365, + 0.004939615, + 4.363858E-4, + 0.015357213, + 0.0028940653, + -0.031609945, + -0.011768867, + -0.03269608, + 0.0020252338, + -0.04062541, + 0.036432777, + 0.01184743, + -0.021915775, + 0.032113407, + -0.03923521, + -0.01368642, + -0.020845806, + -0.035069805, + 0.007872019, + 0.028181303, + 0.025706245, + 0.036584493, + 0.025172506, + -0.059528243, + -0.004169697, + 0.0019407548, + 0.03676032, + -0.04368054, + -0.0052852877, + -0.019683504, + -0.025476228, + 0.0042338464, + 0.050869804, + -0.05544186, + 0.02603843, + 0.0033080736, + 0.08429342, + -0.053076204, + -0.048919372, + 0.024054118, + 0.016847622, + -0.041559316, + 0.01762763, + 0.018937372, + 0.04548684, + -0.02753471, + 0.0349676, + -0.0053059612, + 0.023462724, + 0.0089449445, + -0.008487936, + -0.046993174, + -0.014381467, + 0.028544875, + 0.010697099, + -0.026972841, + -0.018477885, + 0.0519168, + 0.06388063, + 0.038467657, + -0.026049959, + -0.06188988, + 0.010955316, + -0.022218544, + -0.005308075, + -0.053165045, + 0.0078576915, + -0.038770977, + -0.045620434, + 0.067200705, + 0.03695739, + -0.0055503165, + 0.009668082, + -0.008673277, + -0.012229925, + 0.029975053, + -0.020476531, + -0.026172716, + 0.038632836, + 0.02373955, + 0.029949369, + -0.02488095, + 0.002543717, + 0.025950028, + -0.005728272, + 0.0055474876, + -0.009061593, + 6.161523E-5, + -0.00846035, + 4.4544687E-4, + 0.002942708, + -0.028737815, + 0.047543354, + -0.02172267, + -0.04879743, + 0.035957385, + -0.060534567, + 0.014795154, + -0.022281477, + 0.005788243, + -0.016209487, + 0.040749907, + 0.04067397, + 0.04825116, + 0.04089137, + -0.017434904, + 0.022659227, + 0.0021985748, + 0.056330834, + 0.021156235, + 0.014350254, + -0.007010998, + 0.029075176, + -0.034552522, + -0.029441776, + -0.001075789, + 0.035950586, + 0.015161202, + -0.02617331, + -0.029758314, + 0.023961086, + -0.017338324, + -0.014838976, + -0.0062678885, + -0.0057543973, + -0.058457725, + -0.032207027, + 0.008183161, + 0.012449695, + -0.07074576, + 0.061517198, + 0.016835064, + -0.0037112357, + -0.03233152, + 0.013192047, + -0.011061851, + -0.017707173, + 0.00688548, + -0.017964775, + -0.0061571654, + 0.00467956, + 0.03532891, + 0.003686789, + 0.036091175, + -0.009329544, + 0.037888415, + -0.018342694, + 0.045533177, + -0.012024413, + 0.004002052, + -0.034383066, + -0.019954477, + -0.017753793, + -0.016467193, + -0.0017816584, + 0.027092766, + 0.007165615, + 0.029002596, + -0.02547986, + -0.02602766, + -0.012545574, + -0.029409047, + 0.03753866, + -0.004682325, + -0.012054627, + 0.05889681, + -0.07476627, + 0.012165536, + 0.007929256, + -0.004670114, + 0.032023802, + 0.027683841, + 0.04451763, + 0.017121343, + -0.0068246364, + -0.031702604, + -0.030801173, + -0.030335786, + -0.018408194, + 0.0055432054, + 0.040934138, + -0.01859778, + -0.024456685, + -0.029858233, + 0.002965695, + -0.007284044, + -0.02028055, + 0.0315632, + 0.024294121, + -0.046435073, + -0.09039369, + 0.010899661, + 0.021144489, + 0.006449347, + 0.0072475136, + 0.023349922, + 0.0038977552, + -0.0020710414, + 0.03855425, + -0.009108618, + -0.050063796, + 0.01926411, + -0.0047938945, + -0.02086024, + 0.04218572, + -0.06829122, + 0.004088307, + -0.012574867, + -5.164967E-4, + 0.024719195, + -0.056899633, + -0.040381458, + 0.030083774, + -0.0161701, + 0.046553824, + -0.061452743, + -0.0060630455, + 0.007001118, + -0.01793058, + -0.017404346, + -0.03160925, + 0.011675509, + 0.02331006, + -0.025787571, + -0.037891764, + -0.014346372, + -0.035410494, + -0.004338727, + -0.0026266866, + 0.021707796, + 0.0038215679, + -0.029339418, + 0.028721329, + -0.030111462, + 0.019737894, + 0.04775679, + -0.0075205015, + -0.0021669772, + -1.8836782E-4, + -0.02234173, + -0.023200944, + 0.06368917, + 0.03179785, + 0.010522047, + -0.033436522, + -0.007907593, + -0.041865773, + -0.0051937075, + 0.017317288, + -0.0053373626, + -0.051239848, + -0.0061486564, + -0.022073822, + 0.0015801847, + 0.018345041, + -0.044294212, + 0.03889931, + 0.0066042445, + -0.0048309555, + 0.005824493, + -0.02796637, + 0.026274038, + -0.010728895, + -0.04529515, + -0.008350988, + -0.03166704, + 0.031189, + 0.034175117, + 0.034629736, + 0.055751063, + -0.00923025, + 0.041463185, + 0.028611526, + -0.009258024, + -0.018321384, + -0.053846728, + 0.050202955, + -0.0026280805, + -0.04298581, + 0.04718307, + 0.03345091, + -0.051201582, + -0.0049108258, + 0.024363546, + -0.025912441, + -0.013846271, + 0.040796112, + 0.022687003, + 0.030883154, + -0.04577093, + -0.019244896, + -0.03473568, + 0.02800565, + -0.010073935, + 0.015412001, + 0.0019311372, + -0.0038371244, + -0.018507918, + 0.05572224, + 0.03956553, + -0.008525577, + -0.027792834, + -0.009710736, + 0.028064994, + -0.029162632, + 0.019728381, + -0.040539637, + 0.006342747, + 0.018963827, + -0.014758534, + -0.030868536, + 0.024852384, + -0.027888218, + -0.054038644, + 0.0053241164, + 6.229173E-4, + 0.03034322, + -0.049204305, + -0.07230171, + 0.019355005, + 0.0053878957, + -0.0026537785, + -0.033779103, + 0.012359082, + 0.04718099, + -0.0056098145, + -0.018948806, + -0.081633046, + -0.034173883, + 0.06523323, + -0.016455801, + -0.04739311, + -0.036799476, + 0.030748384, + 0.055792373, + 0.022513693, + -6.336218E-4, + 0.034669273, + 0.008878433, + -0.010503002, + 0.03456574, + -0.019267002, + -0.034827042, + 0.0062725535, + 0.012757618, + -0.043944564, + 0.04719731, + 0.023804922, + 0.013469985, + 0.02814691, + -0.01804042, + 0.036870368, + 0.004286088, + -0.009933237, + 0.018485768, + 0.048450384, + -0.053275697, + 0.055061914, + 0.018003939, + 0.036680378, + 0.0024803, + 0.017876368, + 0.10206293, + -0.07379197, + 0.0033498553, + 0.0079118125, + 0.0070861806, + -0.01549883, + 0.016735807, + -0.07247333, + 0.030244712, + -0.018886175, + 0.030714527, + 0.008494368, + 0.009261769, + -0.06736435, + -0.004397777, + -0.018959928, + -0.022176253, + -0.020041544, + 0.00846074, + -0.04010306, + -0.028773956, + -0.0070116026, + 0.007526754, + 0.013260294, + -0.0047037494, + 0.00748069, + -0.012930964, + -0.03157949, + 0.03719793, + 0.009321661, + -0.004926507, + -0.0053594313, + -0.007935291, + -0.0013822794, + -0.055773456, + 0.0068276506, + -0.013219938, + 0.03398726, + -0.03250305, + -0.007465082, + 3.2319607E-5, + 0.025132678, + -0.012698581, + -0.025942905, + 0.030642817, + 0.03913043, + 0.011846262, + -0.0023156665, + -0.01352277, + 0.026088756, + -0.025023386, + -0.044268228, + 0.034754984, + 0.0055504222, + 0.0061396076, + 0.012222742, + 0.020777285, + 0.035997756, + -6.038626E-4, + 0.048552558, + -0.049856056, + -0.052931454, + -0.00753692, + -0.01764107, + -5.508633E-4, + -0.024546523, + -0.0010650868, + 0.026875215, + -0.017361514, + 9.203861E-4, + 0.04518067, + -0.021799864, + 0.023067066, + 0.017528694, + 0.0357134, + -0.008107255, + 0.019439703, + -0.002251249, + 0.041238345, + -0.012751143, + 0.02952515, + -0.022954961, + -0.019693704, + 0.051066905, + 0.033444043, + 0.002657828, + -0.011298868, + 0.032985065, + 0.040299818, + 0.035556074, + 0.0069864285, + -0.051357877, + 0.025492419, + -0.02897645, + -0.01031007, + -0.050678395, + -0.012612567, + 0.058068544, + 0.0033217745, + 0.029074006, + -0.028183209, + 0.0057209954, + 0.06316434, + -0.049873944, + 0.09378587, + -0.0055975313, + -0.011443205, + -0.019491863, + 0.025161847, + 0.03878514, + 0.026402356, + -0.042817965, + -0.035449415, + 0.059881344, + -0.025622165, + 0.027746312, + 0.0025705753, + 0.03811418, + 4.8396722E-4, + -0.014677882, + -0.0102604, + -0.047557272, + 0.029215062, + 0.008140078, + -0.007522439, + 0.049846597, + 0.05117839, + -0.009342061, + 0.014092046, + -0.00494095, + 0.08842967, + -0.007844372, + 0.03482541, + -0.008877333, + 0.009524323, + -0.01842402, + 0.00595189, + 0.010695005, + -0.029802978, + 0.025646314, + 0.0035589065, + 0.03818934, + -0.020088019, + -0.058641512, + -0.028147906, + -0.008353504, + -0.011339309, + 0.0067710415, + -0.036732182, + -0.029067043, + -0.018138329, + 0.029973919, + -0.013625194, + 0.06437999, + 0.0037832938, + -0.035358977, + -0.067422725, + 0.006348743, + -0.01078025, + 0.004201057, + 0.036944035, + 0.024452314, + -0.023836749, + -0.013592407, + -0.02190033, + -0.005681064, + 0.07837889, + 0.058725987, + 0.012725975, + -0.017557075, + 0.00978131, + -0.008876194, + -0.021907357, + -0.00905303, + -0.0021129574, + -0.0017523253, + 0.02486006, + 0.014709625, + 0.07544603, + 0.06891384, + 0.019087255, + 0.021302452, + -0.03278258, + 0.037232626, + 0.035370212, + 0.008925365, + 0.053827863, + 0.0069730957, + 3.1576262E-4, + 0.0013204154, + 0.028771406, + -0.04232685, + 0.03438601, + -0.025945764, + -0.035609707, + 0.0054575796, + -0.005765853, + 0.015593571, + 0.031316396, + 0.07786616, + -0.02819962, + 0.045015115, + 0.007679076, + -0.0016914873, + -0.029206116, + 0.034215778, + 0.010666004, + -0.024011476, + 0.0016744281, + 0.015767476, + 0.03663383, + 0.006216045, + -0.036182262, + 0.006658969, + -0.019602235, + -0.031284936, + 0.057638757, + -0.049504947, + 0.042814605, + 0.0032328942, + -0.023506742, + -0.03221781, + -0.0060766656, + 0.01244405, + -0.01495971, + -0.053469744, + 0.0059789564, + 0.05727644, + -0.0024929065, + 0.058530293, + 0.050706457, + 0.01603607, + 0.028308883, + -0.032068055, + -0.04624261, + 0.009781474, + 0.023088245, + 0.020604448, + -0.024722185, + 0.0020874622, + -0.044976354, + -0.08005522, + 0.03709345, + 0.05363138, + 0.043772943, + 0.03178907, + 0.08795898, + 0.023915995, + -0.0032251035, + 0.0425953, + -0.038500324, + -0.00892756, + 0.011268876, + -0.013164835, + -0.016441965, + -0.009967221, + 0.0137992175, + -0.035051003, + -0.0070118303, + 0.011273005, + -0.018318946, + -0.029854078, + -0.047960937, + 0.032232482, + -0.020060457, + 0.0021124096, + 0.0045198314, + -0.0052317646, + 0.0075815944, + -0.017703425, + -0.0033913236, + 0.02968504, + -0.025248747, + 0.06840197, + -0.020534359, + 0.021964433, + -0.0062447265, + -0.025863742, + 0.015553943, + 0.026602954, + 0.011840156, + -0.0034359402, + 0.026028622, + 0.070406556, + 0.036834285, + 0.03755915, + 0.021920402, + 0.006776698, + -0.013342339, + -0.0143493125, + -0.004416498, + 0.076963566, + 0.04176641, + 0.009468531, + -0.0043044863, + -0.024199283, + 0.008590238, + 8.6603017E-4, + -0.001956787, + -0.0060992553, + 0.012058872, + -0.005990326, + -0.011562579, + -0.017658848, + -0.043033004, + 0.019407876, + -0.04494336, + 0.006970829, + -0.012476444, + 0.0120738465, + 0.003066486, + -0.009700987, + 0.0665998, + 0.04460821, + 0.013026845, + 0.0038148852, + 0.027792461, + -0.08568264, + -0.031377155, + 0.031870034, + -0.014534322, + 0.021161659, + -0.024350148, + 0.041763064, + -0.01236799, + 0.021779377, + -0.049395807, + -0.05956867, + -0.010972631, + -0.005966236, + -0.013291896, + -0.03466319, + -0.006106937, + -0.04090722, + -0.01226676, + -0.044716228, + 0.026730359, + 0.012099563, + 0.007953344, + -0.03160557, + 0.0011392797, + 0.006621352, + -0.0013332608, + -0.0067588394, + 0.03527081, + -0.0034089389, + -0.06480192, + -0.059746027, + -0.0012139578, + -0.010318831, + 0.0039328253, + -0.08906108, + -0.009569781, + 0.01805013, + 0.0085822735, + -0.014800156, + 0.010577159, + 0.0051714596, + 0.023580197, + 0.06276685, + 0.02707597, + 0.006160488, + -0.019856635, + -0.04205687, + 0.012099498, + 0.032642964, + -0.008658566, + 0.03422593, + -0.0070388447, + -0.022049433, + -0.021173855, + -3.6584205E-4, + -0.051709626, + 0.03595575, + 0.06208612, + -0.046327982, + -0.02292516, + -0.027908461, + -0.019595364, + -0.04679194, + -0.05226333, + 0.029798087, + 0.023801416, + -0.015865041, + 0.023449881, + 0.0027997475, + -0.03939682, + -0.008877039, + 0.021456346, + 9.775932E-4, + -0.039617475, + 0.010673187, + 0.05213487, + 0.052758396, + 0.020288548, + 0.019454619, + -0.030208569, + 0.035992593, + 0.033290733, + 0.017460443, + -0.0062937373, + -0.020731436, + -0.014353632, + -0.0140818255, + 0.010367786, + 0.037591744, + 0.016909344, + -0.042541627, + 0.039562583, + 0.022913467, + 0.023020439, + 0.035830516, + 0.08052055, + -0.041936435, + -0.037225947, + -0.02737512, + 0.050731294, + 0.009085104, + -0.0038249267, + 0.030327387, + 0.049820594, + -0.0020382628, + 0.01768332, + 0.0045030713, + 0.046319444, + -0.038833402, + 0.0012091143, + -0.028902417, + 0.027633412, + 0.008520321, + -0.001997105, + 0.034284893, + 0.03918576, + -0.0060883453, + -0.008216224, + -0.020321494, + -0.035630297, + 0.08285455, + -0.042011227, + 0.017778054, + -0.011922131, + -0.015586093, + 0.034067135, + 0.005276028, + -0.035435054, + 0.0026478916, + 0.027564047, + 0.013638653, + -0.0040779435, + -0.03809934, + -0.011164748, + -0.054550953, + 0.03351808, + -0.029305868, + 0.014786962, + 0.017229173, + 0.044456486, + -0.022076666, + 0.020982286, + 0.025507445, + -0.047044005, + 0.07431785, + -0.028460734, + -0.04100743, + 0.0144945765, + -0.006672355, + 0.002085551, + -0.016396401, + -0.016567694, + -0.021822913, + -0.035010636, + 0.031602684, + 0.043022998, + -0.014333463, + 0.042014576, + -0.012492445, + 0.0079132505, + 0.028792959, + -0.004812408, + -0.004679408, + 0.0077717155, + 0.03454889, + -0.0022194162, + 0.021347672, + 0.03605811, + 0.058828678, + 0.025345994, + 0.00771819, + 0.06281822, + 0.028898133, + -0.05095736, + -0.030374855, + 0.059033003, + -0.0044726767, + -0.07034359, + 0.0062274523, + 0.012027735, + 0.040399678, + 0.009687639, + 0.0161968, + 0.01848987, + -0.048160896, + 0.010218357, + -0.013125365, + 0.04959722, + 0.012288293, + -0.039077036, + -0.024583843, + -0.069612496, + -0.0100053875, + 0.0013486063, + -0.01308962, + -0.011394238, + 0.036634486, + -0.015097545, + 0.055859156, + 0.017589292, + -0.025254276, + -0.04745298, + -0.03930493, + -0.04124123, + 0.04349756, + 0.003075519, + 0.017833224, + -0.020447267, + -0.065979056, + 0.017786235, + -0.008929823, + 0.03812526, + -0.03196409, + 0.04426901, + -0.012320044, + -0.021160217, + -0.06483525, + -0.0071337195, + 0.035976153, + 0.0363903, + 0.038733378, + -0.02104243, + -0.07046093, + 0.03579267, + -0.02362953, + -0.004603624, + 0.022865023, + -0.020468095, + 0.01236688, + 0.06424381, + -0.0099572325, + -0.0044063414, + 0.037636034, + -0.011978582, + -0.013412236, + -0.02307208, + 0.028503416, + -0.039607614, + 0.00834889, + -0.019506015, + 0.0089538805, + 0.038680095, + -0.010370582, + -0.03618518, + -0.027774135, + 0.016376076, + -0.020268725, + -0.008024838, + -0.005463807, + -0.007084244, + 0.045728087, + 0.012978125, + -0.058676057, + 0.08594396, + 0.007430714, + -0.024415247, + 0.0049787792, + 0.011497597, + 0.0026587874, + -0.018676726, + 0.047560453, + -0.046704244, + 0.0014482159, + -0.0102750305, + 0.035134796, + -0.017867256 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json index 7770b1569..cfe6b0716 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json @@ -1,1358 +1,5269 @@ { - "description": "examples for the genre filter tests", - "createdAt": "2023-11-21T14:25:44.057582Z", - "id": "xmgujsvi", - "document": { - "modifiedTime": "1973-07-14T04:22:57Z", - "display": { - "id": "xmgujsvi", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the genre filter tests", + "createdAt" : "2024-11-14T14:37:56.463276Z", + "id" : "dtsaqjqy", + "document" : { + "modifiedTime" : "2040-01-25T01:22:51Z", + "display" : { + "id" : "dtsaqjqy", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ic0.jpg/info.json", - "credit": "Credit line: ce8IFxrh", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ic0.jpg/info.json", - "credit": "Credit line: ce8IFxrh", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#22B95D", - "source": { - "id": "0qig9axb", - "title": "title-3JkgY9ozcm", - "contributors": [], - "languages": [], - "genres": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#FEEF0C", + "source" : { + "id" : "avnlzlwu", + "title" : "title-XanTinRi9y", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ { - "label": "Carrot counselling", - "concepts": [ + "label" : "Carrot counselling", + "concepts" : [ { - "id": "g00dcafe", - "label": "YEw5q7g642KcuM6", - "type": "Genre" + "id" : "g00dcafe", + "label" : "ZYpXDgtEHOLRkyW", + "type" : "Genre" }, { - "id": "baadf00d", - "label": "wKlKAINl6Z5qhQw", - "type": "Concept" + "id" : "baadf00d", + "label" : "Gz6jlJqCwJjS1yp", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "subjects": [], - "type": "Work" + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "xmgujsvi", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": ["YEw5q7g642KcuM6", "wKlKAINl6Z5qhQw"], - "id": "0qig9axb", - "sourceIdentifier.value": "7KATmQ3krz", - "identifiers.value": ["7KATmQ3krz"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3JkgY9ozcm" + "query" : { + "id" : "dtsaqjqy", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "ZYpXDgtEHOLRkyW", + "Gz6jlJqCwJjS1yp" + ], + "id" : "avnlzlwu", + "sourceIdentifier.value" : "PnNjvYlLJE", + "identifiers.value" : [ + "PnNjvYlLJE" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-XanTinRi9y" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": ["Carrot counselling"], - "source.genres.concepts.id": ["g00dcafe"], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.0018758501, 0.0072475052, -0.0149441445, 0.006054474, -0.011720079, - 0.0027668513, 0.011858183, 0.0038982471, 0.007915149, 0.02123293, - 0.0011361171, 0.008759583, 0.024904488, -0.0032293356, -0.013150683, - -0.019549666, 0.0054211062, -0.014620382, 0.028213082, -0.0032849086, - -0.014148804, -0.004216066, -0.0019860896, -0.024061285, -0.0024641112, - 0.0018480859, 4.205571e-4, 0.008793129, 0.009805583, -0.016300961, - -0.008695592, 0.021535259, -0.0015969176, 0.022346128, -0.024852898, - -0.019318374, 0.007534353, -3.5783535e-4, -0.007827221, -0.043337017, - -0.012898552, 0.018446645, 8.1418065e-4, 0.028049087, 0.008453831, - 0.013777074, 0.008647444, -0.008255298, 0.009240663, -4.751864e-4, - -0.014977274, -0.029969886, 0.014803141, 0.013039571, -0.037135463, - -0.016167102, 0.021042217, -0.008803204, -0.011995842, 0.025971534, - -0.0045103715, 0.014070093, 0.009098097, 0.01788047, -0.018545087, - 0.015315435, 0.009680555, -0.002390837, -1.0390696e-4, -0.012625621, - -0.0019316989, 0.016066188, -0.018664513, -0.02078981, 0.016947934, - -0.014706573, 0.0076103653, -0.0075001433, 0.0054624965, -0.008465228, - -0.017180301, 0.03473171, 0.0027635144, -0.022103548, -0.012796796, - 0.0097068, 0.019348448, 0.0032616858, -0.0017562116, -0.010098799, - -0.013126493, 0.021879403, -0.031047447, -0.012465228, -0.015224987, - 0.024657268, 0.019669097, 0.009440514, -0.017904175, -0.0045788423, - 0.021126097, -0.0059572705, -0.013117178, 0.011854614, 0.026249463, - 0.005384128, 0.037802644, 0.0062265163, -0.004408581, -0.015012527, - -0.02090823, -0.0028381788, -0.012983482, -0.01444976, 0.0068910345, - 0.020246472, 0.014648043, 0.015691051, 0.00881803, 0.025001114, - -0.014387785, -0.0020434984, 0.007446106, 7.110786e-4, 0.009815969, - 0.008912174, -0.020428214, 0.020335952, -0.014517231, 0.017285507, - 0.0120662, -0.020227162, 0.03358058, -0.0036043536, -0.0066243056, - 0.0041068457, 0.0036952165, -0.020751698, -0.015857058, 1.524639e-4, - -0.019753905, 0.0085033635, -0.014187447, 0.005365902, -0.006173701, - -0.0192147, -0.009265062, 0.026582057, -0.016073266, 0.02913235, - 0.009762219, -0.0106506655, -0.021922784, 0.008587677, 0.006431325, - -0.035107166, 0.0073802904, -0.0026455582, 0.005514221, -0.00848887, - 0.037114155, -0.01180828, -0.024005743, -0.030189471, -0.034107942, - -0.006144897, -0.0019429442, 0.0026686285, -0.013212574, -0.0064359247, - 0.011973211, 0.0035912953, 0.013145733, -0.016496178, 0.02022066, - -0.015715862, 0.008681557, 0.003597327, -0.0015023844, 0.0059840125, - 0.0018859545, 0.0030798272, -0.017145628, 0.023277262, -0.01203201, - 0.0016464932, 0.022072215, -0.015380674, 0.0013543653, -9.3098957e-4, - -0.022766419, 0.0072541116, -0.018308189, 0.0080038635, -0.0012875424, - 0.0038700062, -0.023863537, -0.0026429005, 0.013985417, -0.016991246, - 0.005065488, 0.011126328, 0.019541383, -0.0014485754, -0.0056420453, - 0.0033405249, -0.0012981753, 0.01179223, 0.010358955, 0.010727076, - -0.028780254, -0.0018721379, -0.014465061, -0.020706225, 0.011462642, - -0.013091522, 0.0017641279, -0.0030568466, 0.0030215387, 0.0024929321, - -0.019244708, 0.016797038, -0.013066666, -0.01923286, -0.028612752, - -0.023285804, 0.0037544267, -0.009349197, -0.011299799, -0.011332996, - -0.0041275923, 0.04330291, -0.005907774, -0.0038081899, 0.0014339971, - -0.017898325, 0.0075560585, 0.010632899, 0.012871938, 0.010919169, - -0.032332864, 0.015510487, 0.0022417863, -0.006770038, -0.02844083, - 0.011801218, -0.03044488, 0.0059687444, -0.014425323, -0.021014685, - 0.018720979, 0.013778833, -0.019913135, -0.010853785, -0.028812638, - -0.01700697, -0.005897276, -0.001303586, -0.004915376, 0.0072819428, - -0.0041692136, -0.010808255, -0.013486178, -0.006737527, -0.017199298, - 0.01160207, 0.018344712, -0.0070339176, -0.022218695, -0.021525087, - 0.0036883415, 0.0013302533, 0.013189639, 0.022634659, -0.011690601, - -2.584147e-5, 6.382689e-4, -0.010113257, -0.025756568, 0.010783486, - 0.0095753595, 0.024715494, 0.018548604, -5.904775e-4, -0.012364565, - 0.0062325923, -0.005312059, -9.3091466e-4, 0.021732002, 0.014768557, - 0.013475913, -0.026557969, 0.0034822307, 0.011028158, -0.006705311, - -0.005182848, 0.023122685, 0.0014043215, 0.008632413, -0.007933883, - -0.009406792, -0.019821635, -0.013386956, -0.0022034605, -0.012419404, - 0.026400443, 0.0024345764, 0.0048986166, 1.5706554e-4, -0.029274696, - 0.011160947, 0.0014121787, 0.016344098, -0.011419701, -0.013264333, - 0.017980268, -0.005007488, -0.012290582, 0.00867382, -0.0073786476, - 0.02954767, 6.713106e-4, -0.009729829, -0.032655936, 0.006181411, - -0.004704195, 0.007920091, -0.021793598, -0.012748359, -0.007758484, - 0.0057160878, -0.016902333, 0.013400608, -0.0042849216, -0.010476669, - 0.00898382, 0.040979806, -0.0093862675, 0.008348356, 0.025202012, - 0.02698131, -0.00491487, 0.0089476975, -0.008919326, 0.0073786587, - -0.031306706, 0.02874878, 0.010171559, 0.004309084, 0.025936726, - -0.035200145, -0.029214554, -0.0065644216, 0.011114068, 0.005241848, - -0.02673756, 0.023368828, 0.013872885, -0.035017602, 0.0012603573, - -0.030065136, -0.025732944, 0.01324776, -0.011284915, -0.0020706973, - -0.015534796, 0.017084094, -0.0013843321, -0.007315048, 0.011848116, - -0.010614392, 0.019772254, -0.0069562704, -0.0049301516, 6.935106e-4, - 0.004044143, -0.002746511, -0.008420689, -5.068974e-4, 0.02581274, - -0.016037734, -0.022510916, -0.032739528, 0.00757554, 0.019200174, - -0.010981259, 0.0052040615, -0.017301904, 0.0036617233, 0.003468698, - -0.020418646, -7.8783825e-4, 0.00932667, 0.013404909, 0.014085162, - 0.017391672, 0.015863847, -0.014569383, -0.007138203, 0.025382767, - -0.011895122, -0.007532367, 0.005794686, 0.031421643, -0.04109601, - 8.9784415e-4, 0.019141672, 0.012379364, 0.021898402, 0.0016550742, - -0.0031760344, 0.008000662, 0.006871051, -8.3000376e-4, 0.008174176, - 0.0058854898, 0.005124567, 0.010070188, 0.014310598, -0.015360179, - -0.014247147, 0.0161874, 0.010407635, -0.0046209726, -9.4921264e-4, - 3.887475e-4, -0.02144209, 0.0037828984, -0.005002896, 0.008828168, - -0.0032233181, -0.010776089, 0.004765988, 0.00693481, 0.007821889, - -0.010983193, -0.0107869655, -0.025871364, 0.002776375, 0.008243904, - 0.0089212665, 0.014061618, -0.023182223, -0.013886121, 0.027763423, - -0.003417266, -0.039987043, -0.004817854, 0.00835074, -0.018038902, - 0.0034953435, 0.0026250146, 0.0064641084, -0.0076031084, 0.0056908512, - -0.008909472, -0.0074731396, 0.02461228, 0.004192813, -0.01064954, - -0.015212239, 0.008651246, -0.011522044, 0.013996197, -0.003424072, - 0.010282394, 0.0036756934, -6.5213704e-4, 0.023277907, -0.0063591013, - 0.0037629234, 0.011111754, -0.024825603, 0.007323908, -0.0033783724, - 0.012469169, -0.03693749, -0.013923353, -0.0010841673, -9.6612284e-4, - -0.016555827, -0.017135609, 0.014614465, 0.001395203, -0.0030204311, - -0.0012226714, 0.009213769, -0.028144414, -0.025729796, 0.029266944, - -0.022384496, 0.0068098083, -0.005194971, 0.019908952, 0.016751412, - 0.01229092, -0.009133075, 0.010867668, -0.028107911, -0.0066077383, - 0.011025679, -0.010317916, 0.007843886, -0.003093192, 0.009527451, - -0.016340733, 5.041559e-4, 0.0013151916, -3.27069e-4, -0.015393417, - 0.0049978257, 0.008964471, -0.019882713, -0.0039611724, 0.0040720957, - -0.002851687, 0.0025939571, -0.0047812317, 0.003212988, -0.012161351, - 0.0068709417, 0.019447217, 0.036980998, 0.0072914665, -0.023459585, - 0.014967742, 0.014605376, 4.5402168e-4, 0.013726826, 0.023916677, - 0.0067256126, 0.0043546236, -0.0012207472, -0.012176584, -0.024008717, - 7.4223294e-6, -0.0056340536, 0.0013774174, -0.014832074, -0.0038397794, - 0.03114626, 0.0070285117, -0.007576526, 0.01019274, 0.009740668, - -0.0066984217, 0.0062796166, -0.0028525859, -0.006066975, -1.6344665e-4, - -0.0029043609, 0.009472248, 0.0036382573, 0.019394893, -0.027873358, - -0.005052925, 0.008996916, -0.009736748, -0.019417824, -0.009841727, - 0.00797857, 0.0071418914, 0.016100978, 0.0056819757, 7.4395374e-4, - -0.0023274124, 0.010859253, -0.0021512627, -0.002175104, 0.029463101, - -0.0059139235, -0.015010707, -0.008567743, -0.0118454965, -0.015534014, - 0.018576797, 0.011821138, -0.021771125, 0.018443422, 0.015744809, - -0.014148911, -0.012391947, -0.0151348915, -0.0023291535, 0.00591116, - -0.009402648, 0.016532153, 0.018129086, -0.010157047, -0.022050465, - -0.019596918, -0.028533008, -0.039842926, 0.019085033, -0.016732771, - -0.0014307603, 0.0050565987, -0.011143131, -0.018837342, -0.023399731, - 0.0017839635, 0.016915988, -0.0028341797, 0.0063181766, -0.0027036732, - 0.003302862, 7.2836876e-4, -0.0063319765, 0.015486323, 0.025164695, - 0.009892758, -0.004894265, 0.018148853, -0.03198378, -0.028525107, - -0.0015654837, -0.0021612206, -6.253369e-4, -0.005532995, 0.009439544, - -0.0059546665, 0.011723484, -0.026294412, -0.013181448, 0.033319145, - -0.0140660675, -0.0018150029, -0.004640035, -0.013398034, 0.015777178, - 0.01646457, 0.0014150426, 8.961338e-5, -0.0035836431, -0.004556635, - 0.030102594, -0.010194598, 0.00551196, 0.014833749, 0.01272173, - -0.0060058758, 0.010049582, 0.011410592, -0.018950531, 0.003652255, - -0.012232623, 0.00548626, 0.028309809, 0.0028098698, -0.0029336787, - -0.004410387, -0.0013867078, 0.01590435, -0.020434264, -0.0074589225, - 0.0028426684, 0.005606541, -0.012029789, -0.0037672461, 0.013821343, - 0.018613927, -0.01275164, -0.037020076, 0.0016228772, 0.031378724, - 0.014832715, -0.0031875293, 0.026182814, -0.016141808, -0.014366502, - 0.029810037, 0.015363762, -0.02248789, -0.021085942, 0.0016690891, - -0.024596592, -0.006897639, 0.010577174, -0.0039486424, -0.0044239704, - -0.009702435, 0.032794405, -0.0027098455, 0.018957509, 0.028741363, - 0.012997668, -0.028453546, 0.018623795, -0.018564288, -5.043627e-4, - 0.00548078, 0.011639642, 0.012206574, -0.006096407, 0.017406471, - 0.021694973, 0.016887654, 0.0062138257, 0.010995659, -0.004242945, - -0.013423959, -0.022747923, -0.005160441, -0.0047813533, 0.02616731, - -3.3874536e-4, 0.01583535, -0.014194139, -0.0023662115, -0.01633411, - -0.0032330386, -3.1423816e-4, 0.02754973, -0.0029169894, 0.009160443, - 0.008376784, 0.004149402, -0.009178614, 0.023391489, 0.015687106, - 0.00938585, -0.005794938, 0.0109876115, -0.0058118226, 0.0103399465, - 0.0099055385, -0.011270813, 0.020493796, -0.0062777475, 0.020168582, - 2.2162623e-5, 0.0015691201, 0.0032847044, 0.008086368, 0.01812863, - -0.028581169, 0.007902562, 0.008138089, -0.010557255, 0.008719628, - -0.01685299, 0.014599961, -0.020029599, 0.01769876, -0.008364609, - -0.0069990526, -0.013919441, -0.010822776, 0.018186772, 0.0020149346, - -0.0011832836, -0.003495919, 0.014512611, -0.0053845383, -0.017556213, - -0.015040132, -0.008289295, 0.0041921274, -0.0014972547, 0.012261648, - 0.009815721, 0.005170568, -0.010021976, -0.023231424, 0.0050722472, - -0.01611172, -0.040597424, 2.9922836e-4, -0.0012716807, -0.007144793, - 0.0017430835, -0.013990518, -0.0028240182, -0.014123283, 0.011210342, - 0.038682755, 0.013120246, 0.022388257, 0.0064850054, 0.0016267067, - 0.016856752, 0.014307275, -0.020084316, -0.0056460816, -0.009246213, - 0.0027476202, 0.005728555, 0.01260933, -0.005733342, -0.0044107717, - 0.024321124, -0.025153158, -0.018097475, 0.013125478, -0.00810712, - -0.004233998, 0.009642999, 0.021191815, 0.004584167, 0.016367542, - -0.006591797, 0.0021252278, 0.01942328, 0.02448642, -0.010728668, - 0.006685105, -0.008303121, 0.004644493, 4.2008943e-4, 0.023615146, - 0.007926417, -0.0018444796, -0.0105128195, -0.010990448, 0.016385766, - -0.038677018, 0.020499483, 0.024679381, -0.0022993484, 0.033042774, - 0.016364986, 0.0067647477, -0.0045938916, -0.017738875, 0.0038256228, - 0.025197493, -0.008848563, -0.0023645333, -0.015752682, 0.02066542, - 0.004546502, -0.011870574, 0.009316394, 0.032521266, 0.0041218693, - 0.017953007, -0.020807829, -0.0016992958, 0.002888293, 0.0046873377, - 0.021107854, 0.0061535626, -0.010564283, 0.0027726518, -0.03539841, - 0.01302693, 0.009024728, -0.01408243, 0.022790842, -0.008111253, - -0.012872696, -0.010968452, 0.003983915, 0.01094929, 0.010393744, - 0.0085965, -0.0045413156, 0.0070444625, -0.00924141, -6.8782753e-4, - -0.028509773, -0.01671434, -0.007840733, -0.008071053, -0.019845149, - -0.0102471905, -0.0141628, -0.006960624, -0.004899566, -0.0129928645, - 0.0037884968, 0.010028098, -0.017425299, -0.020781152, 0.0016555835, - 0.01046363, 0.017666114, 0.004808226, 0.009185483, 0.0068019438, - -0.010254569, -0.023857152, 0.021279357, 8.425975e-4, 0.0021736927, - 0.0063336566, -0.0032305561, -9.3004823e-4, -0.014437426, -0.009719026, - 0.018033354, 0.0066951285, -0.022768373, 0.00478646, 0.0062289694, - -0.022156179, -0.021088736, 0.010896605, -0.013545001, -0.015485642, - -0.0029142648, 5.925207e-4, -0.0025767682, 0.015268997, -0.012864023, - -0.021333653, 0.0011341478, 0.0012014037, -0.02238719, 0.0049516344, - -0.032622937, 0.004755994, 0.010130893, 0.0043117725, -0.015098256, - -0.0078012743, 0.005328662, -0.0024576231, 0.01914423, 0.012091872, - -0.004927401, -0.0062559536, -0.0051110676, 0.018031957, -0.010367489, - 0.015167449, -0.022981206, 0.011895967, 0.0028001973, 0.001783915, - -0.001355791, -0.013603249, -0.031018239, -0.025399966, 0.0070016044, - -0.0024355492, -0.003106963, 0.007728791, -0.0140161645, 0.02520825, - 0.018027667, -0.026449148, 0.013930275, 0.0129633, 0.0027810286, - -0.012625602, -0.017098904, 0.02941685, 0.014551015, -0.028128184, - -0.010558885, 0.04229263, -0.02362593, 0.019223472, -0.008227629, - 0.013090311, 0.008340011, -0.011016842, -0.0027317374, -0.0015156803, - -0.014862977, 6.251707e-4, -0.0012785887, 0.0044544144, -0.020496923, - 0.034275565, -0.017231941, 0.024205728, 0.0015771758, 0.012171204, - -7.069388e-4, 7.2656735e-4, -0.011698249, -0.026275057, 0.0065260213, - -0.016699666, -0.027920386, -0.0016500413, 0.0074435384, 0.020627772, - -0.001059923, 0.014760002, 0.020809503, -0.014823122, -0.005467503, - -0.0056426832, 0.02823702, 0.012105079, 0.0015367732, 0.032715175, - -0.008168604, -0.002206001, -0.010948222, -0.00854495, 0.008074716, - 9.709444e-4, 0.020390535, 0.010882321, -0.005815628, 0.0339232, - 0.03716466, 0.012324638, 0.017031327, 0.029417371, -0.017999154, - 0.016517779, 0.0078647295, 0.016219527, -0.0035741408, -0.019238848, - -0.015152643, -0.0049241055, 0.011081064, 0.007245206, -0.028525796, - 0.014798842, -0.0043273624, -0.031447697, -0.012397873, -0.041657332, - 0.019404154, -0.02472467, 0.005904951, -0.017435828, -0.02581348, - -0.0041169953, 0.0056691556, -0.007801038, -0.014781866, -0.036110118, - -0.010919217, -0.0136163635, -0.030775435, 0.007220951, -0.04486028, - 0.0071981056, -0.0016037392, -0.008722299, -0.014435661, 0.011709056, - 0.009155888, -0.034440067, -0.027135791, 0.0106401965, -0.008131161, - 0.012845696, -0.009416926, 0.012463773, 0.013202554, 0.010298542, - 0.016574439, 0.013249001, -0.0028591596, -0.0032998936, 0.003867637, - -0.005449208, 0.0018487442, -0.026136626, -0.008391214, -0.027610403, - -0.010537887, 0.021414671, 0.002481593, 0.0070974664, -9.100033e-4, - 0.019116696, 0.0035979801, 0.022237442, -0.010041328, 0.01578151, - -0.004769068, 0.010170344, -0.00791075, -0.0063581546, -0.0040337658, - -0.013907813, 0.011418736, 0.0077278684, -0.004065274, -0.015839085, - 0.01895156, -0.0053524557, -0.0042107883, -0.028431535, -0.010992828, - -0.011577556, 0.018941067, -0.015033188, -0.004362153, -0.0014247556, - -0.00968761, 0.010926266, 0.023195034, 0.017512072, -0.007191116, - -0.012948721, 0.014309131, 0.0097704455, 0.010729723, 0.021439422, - 0.00416634, 0.022227738, -0.036881436, -0.0012550937, -0.0013014909, - 0.009624059, 0.008579035, -0.019115532, -4.5016383e-5, -0.0012343, - 0.007785795, 0.014336601, -0.0039812312, 0.028231068, -0.004189114, - 0.023224274, 9.472451e-4, -0.008151763, -0.0105645675, 0.009405333, - 0.006455683, -0.008617074, 0.025562286, -0.0013329178, -0.019810205, - 0.019567436, 0.008835298, -7.4629637e-4, 0.0044489764, 0.008279991, - -0.012456791, 0.004245133, 0.01851677, 0.022013, -0.023017664, - -0.0070884908, 0.019731648, -0.0023524507, -0.006088977, 0.0014377187, - 6.249519e-4, -0.0076096985, 0.023286987, 0.0071323398, -0.004912431, - -0.0290727, -0.010129703, 0.009727083, 0.008995668, -0.006602055, - -0.023635456, -0.0024381976, -0.009826752, -0.016454931, 0.05739959, - -5.529703e-4, 0.009485497, 0.012170874, -0.009700416, -3.4742695e-4, - 0.011807639, 0.02449561, -0.0052940184, -0.0015242202, -0.020395357, - 0.0034905584, 0.015316853, 0.0025760203, 0.015961612, 0.0027609647, - -0.011665629, 0.029646793, -0.0019779666, 0.004866461, -0.0094840005, - -0.03784829, -0.025458872, 0.006679601, 0.017965376, 0.005656078, - -0.0032386624, 6.3012785e-4, -0.0076591754, 0.0012283362, 0.0025073441, - 0.02736347, 0.0043974514, -0.009742156, 0.017380036, -0.008063457, - -0.016997362, 0.027618363, 0.014049321, -0.0021763358, -0.015641132, - 0.026032802, -0.003877516, 0.0071099647, -0.035025336, -0.0017169684, - -0.013780816, -0.008466884, 0.03775922, 0.0012241908, -0.013799567, - 0.00856359, -0.02008435, 0.012565709, 4.2684985e-4, 8.806605e-4, - -0.023282146, 0.0056462046, 0.0072493004, -0.0018950471, -0.0148929255, - -0.013082056, 0.011706281, -0.005161168, -0.023020787, 0.033705372, - 0.014545777, -5.5118588e-5, -0.014627415, 0.0049001104, 0.009609472, - 0.0153760845, -0.0038175595, -0.00343979, -0.004171878, -0.007137076, - 0.013716542, -0.006644624, 0.019587476, -0.017965036, 0.015442468, - 5.0198207e-5, 0.01101085, -0.011910759, -0.027259385, 0.0016015078, - 0.021567663, -0.016081586, -0.033456624, 0.0111958925, 0.021445446, - -0.013030422, 0.036719706, 0.026977548, 0.01779755, -0.017908419, - -0.0067271977, 0.020700522, -9.1484166e-4, -0.0013758388, 0.013805801, - -0.0018863744, 0.01963667, 0.010183764, 0.0037350352, 0.00819705, - 0.02198522, 0.013415101, 0.0015528066, -0.030136645, -0.0108036995, - 0.0044022813, -0.019866057, -0.025663009, -0.01082416, -0.025461443, - -0.012445952, 0.0069858944, 0.005440946, 0.024634412, -0.0052428595, - -0.012610502, -0.006585258, -0.019829188, -0.016462961, 0.0077139796, - 0.010912781, -0.014753927, 0.012636572, 0.032792393, -0.018410321, - 0.004288089, 0.008804674, -0.0088020945, -0.01768993, 0.008699959, - -0.004964564, 0.01851401, -0.024160402, -0.001452801, 0.026716594, - -0.0078315, -0.012117153, -0.0071087843, -0.028534496, -0.025653733, - 0.029774647, -0.0052844808, -0.002969, -0.005048398, 0.018167023, - 0.01943945, 0.013078492, 0.027982347, 0.022766946, 0.03521033, - -0.014497527, 0.022937546, -0.012569894, 0.018635808, -0.03940946, - 0.028688148, 0.009518459, 0.012193507, 0.005885725, 0.016063033, - 0.008420837, 0.01554882, -0.016801434, -0.010697379, 0.0030584345, - -0.012267695, 0.009339867, 0.0156009095, -0.032968193, -0.009556139, - -0.006177326, -0.025996892, 0.013461776, -0.013172928, -0.021320464, - -0.01080651, -0.0046935654, -0.0013995572, 0.018956088, 0.0019171962, - -0.017309599, -0.0047028223, 0.0066008815, -0.029703824, -0.004480294, - 0.037762363, 0.027789619, 0.028846316, 0.01950208, -0.026580727, - -7.246382e-4, 0.01840905, 0.015400082, -0.012477244, -0.027795061, - -0.0226828, 0.0038791427, 0.010090588, -0.0169482, -0.0023696183, - 0.012390803, -0.0036393013, -0.014457002, 0.0061243097, -0.011674893, - -0.012521439, 0.00676759, 0.009870615, -2.291419e-4, -0.0032499523, - 0.005520523, 0.00446952, -0.0032974773, -0.030315958, 0.014733288, - 0.009129549, -0.003495644, -0.006933763, -0.03449946, 0.016169788, - -0.0058441036, 0.014545163, 0.013507753, -0.036089312, -0.004770745, - 0.013334924, 0.0011996201, 0.0038331088, -0.0010305314, -0.005818666, - 0.0020729783, -0.0323486, -9.236534e-4, -0.019102003, -0.004820409, - -0.01965163, -0.011652946, -0.0021803088, -0.020964472, -0.010012346, - 0.0065683303, -0.009892624, -0.012426657, 0.00431956, -0.0026561283, - 0.025924541, 0.043641306, 0.0041187457, -0.019292165, 2.9965834e-4, - 0.001678096, 0.019705418, -0.012277966, -0.0039046947, -0.00860516, - 0.006897158, 4.9876975e-4, 0.003220336, -0.0030222435, -0.013613611, - 0.030750798, 0.004829409, -0.0328582, -0.01963497, 8.727056e-4, - -0.018691482, -0.007468609, 0.00821571, 0.0024039906, -0.0021564255, - -0.01582354, -0.011799209, 0.0024143232, -0.021185126, 0.012045645, - 0.0034225436, 0.008088467, -0.0015774553, -0.02225711, 0.018240407, - 0.004270283, -0.014314167, 0.023107234, 0.0021232136, 0.010834211, - -0.013508071, 0.009024303, -0.02857878, -0.007912026, -2.5670265e-4, - 0.026265299, -0.017313601, -0.0028506194, 0.0016535043, -0.02055689, - -0.001458818, 0.0035716426, 0.016094357, -0.029671296, 0.014379847, - 0.023535402, -0.0017574519, -0.0062817317, 0.0025999274, 0.025370901, - -0.0013454009, 0.0018611483, -0.0075704628, -0.00956141, -0.0088449055, - -0.012555962, -0.025867708, -0.012309353, 0.011176593, -0.013019772, - -0.016875103, -0.025015384, -0.012704349, -0.011615889, -0.01291331, - 0.010683556, 0.007123227, 6.880914e-5, -0.014142758, 0.0033696808, - 0.014975266, -0.026296336, 0.005935595, -0.016564349, 0.012730016, - -0.0057206484, -0.0039476524, -0.018149285, -0.022175359, 7.6000695e-4, - -0.01440474, 0.002738227, -0.01127215, 0.0043063974, 0.005717955, - 0.01369172, 0.020475049, -0.015585025, -0.004606634, 0.023933873, - -0.024273738, -0.0068189576, -0.0076683136, 0.0075578913, 0.010942877, - -0.010521763, -0.0022665386, -0.01263271, 0.00717661, 0.020978868, - 0.021704892, 5.627302e-4, 8.806561e-4, 0.013287907, -0.0064735194, - 0.002063722, 0.00941264, 0.01310621, -0.03759898, -0.004797674, - 0.02308587, 0.02547734, -0.012398367, -0.013657862, -0.0019583928, - 0.010346712, 0.011234593, 0.0013330976, -0.011895921, -0.0037187831, - -0.00662027, 0.0014240799, 0.024436068, -0.012535913, -0.034269203, - 0.025528507, -0.0069836215, 0.0068689464, 0.0068778773, 0.022934917, - 0.014559131, -0.0049300343, 0.0439434, 0.013510268, -4.0792502e-4, - 0.022085339, 0.014135545, -0.006352395, 0.0097541055, 0.014247101, - 0.03250866, 0.0063578375, 0.008891726, -0.01934062, 0.008180839, - 0.024101883, 0.01153212, -0.013485361, -0.024326088, 0.0068746773, - -0.019576544, -0.0055242726, -0.005820703, 0.032983232, 0.029181933, - -0.0126161035, -0.0049735066, 0.033697903, 0.010600287, 0.013671035, - 0.014663765, -0.030248253, 0.009732042, -1.2597023e-4, -0.0062154443, - -0.0031035915, 5.367037e-4, 0.013352807, 0.013856257, -0.02692782, - 0.0016761257, 0.007889993, 0.021438431, -0.00407336, -0.0025839657, - 0.009688786, 8.4762817e-4, 0.027000928, 0.007928008, 3.7272694e-5, - 0.02315608, 0.02127689, -0.012706283, 0.013402528, 0.016263165, - 0.03018768, 0.0013292383, 0.022343189, 0.028517567, 0.02938585, - -0.001529255, -0.018383328, 0.0019495501, 0.022239123, -0.009147224, - -0.010043798, -0.016057242, -0.007458767, 0.0033892083, -0.012593524, - -0.011242631, 0.016960366, -0.006087834, -0.0018288966, 0.024772797, - 0.0019121167, 0.001193013, 0.014832906, 0.010041216, -0.0070755845, - -0.005052084, -0.0037770222, 0.0021525577, 4.2358084e-4, -0.00371071, - 0.023414914, 0.01174956, 0.022494579, -0.0013564564, 0.012487424, - 0.019615354, -0.01310629, -0.004883159, -0.012507819, 0.0057943324, - 0.0014603623, -0.022023547, 0.017314875, 4.3038558e-4, -0.0059960126, - 0.005963544, -0.0020843619, -0.01410547, -0.03318847, -0.00670887, - -0.0016503157, -0.0064455485, -0.02722889, 0.01283846, -0.018642811, - 0.0030544472, 0.028479278, -0.008287756, 0.012592202, 0.0011456669, - -0.046473075, -0.015647627, -0.006953729, -0.010632839, 0.005866133, - -0.020497683, -0.008368389, 0.011374592, 0.0076785865, 0.006236238, - -0.0011331347, 0.014036203, 0.020810833, -0.0073299985, 0.02299523, - -0.012450916, -0.0077834404, -0.013772556, 0.009287484, 0.022312144, - -0.025070246, 0.009390611, -0.020093974, 0.016392538, 0.024264958, - -0.016795568, 0.0028287454, -0.014663549, 0.01399498, -0.006950695, - -0.005226924, 0.005209615, 0.04438832, 0.008794198, 7.0567074e-4, - -0.009307466, 5.02366e-4, -0.0093763145, 0.0040825494, -0.005985793, - -0.0027371366, 0.021031143, 0.0014512354, 0.013066005, 0.010175468, - 0.006881917, -0.011815313, 0.022806609, 0.021610053, 0.0048865094, - -0.019540923, -0.008693269, 0.01817194, 0.0077344044, -8.011801e-4, - 0.010936531, 0.001343295, -0.001482078, -0.0053007826, 0.01766045, - 0.015091264, 0.008301998, -0.028529672, 0.0046705925, -0.0068504224, - 0.011952944, -0.017178588, 4.6112522e-4, -0.030162, -0.037082195, - -0.0042218836, -0.0054829847, -0.0070839887, -0.01298187, 0.0058324537, - 0.0064616585, 0.025005441, -0.0024727678, -0.03389744, -0.015994333, - -0.0017360701, -0.012154215, -0.0027538326, 0.01577031, 0.001150753, - 0.008110327, -0.00344943, -0.01172182, 0.008571325, 0.009172723, - 0.0017821578, 0.021177724, -6.8192155e-4, 0.014577037, 0.0064354707, - -0.016282909, 0.03579565, -0.002610295, 0.018745897, -0.02274388, - 0.009634614, -0.012007891, -0.04604149, 0.0034032604, 0.01551116, - -0.001978091, 0.01517565, 0.012475419, -0.016226266, -0.0030842908, - -0.035590086, 0.01847615, -0.005606283, 0.025232619, -0.0103977565, - 0.022556916, -0.025583304, 0.008679822, -0.01700856, -0.009673975, - -0.015837803, 0.002024281, -0.0116786035, 0.008799783, 0.011526173, - -1.5704312e-4, 0.013912574, -0.011646141, 0.0035623403, -0.0051274537, - -0.016751459, 0.014099259, 0.020258484, -0.0013986096, 0.031620964, - -0.0012132599, 0.007565655, -0.027003631, -0.019012773, 0.022612441, - -0.006828407, -0.021708203, 0.009872001, 0.014872114, 0.011050015, - -0.0059139947, -0.007115472, -0.015605018, 0.041554447, -0.0037181447, - -0.028196301, 0.023009265, 0.009208114, 0.01789312, -0.0065613505, - -0.008338389, 0.023904808, 0.0068302196, 0.0127929, 0.0018630966, - 0.01206643, 0.00807777, 0.0011277127, 0.016598633, 0.0044057607, - 0.008891888, -0.010260551, 0.021663463, -0.0068972344, 0.0058060787, - 0.006575042, 0.012605211, -0.0063713053, -0.007427892, 0.02484983, - -0.0062031387, 6.977074e-4, -0.023927294, -7.87715e-4, 0.013451575, - 0.0035781004, 0.0033905008, 0.019782215, -0.007949868, -0.0035212773, - 0.014925857, -0.011011026, -0.013845126, -0.044854317, -0.00506363, - 0.013167887, 0.025628675, 0.001611629, 0.0163763, -0.02492061, - -0.0058664735, 0.030571096, -0.03441512, 0.0019832093, -0.01148825, - -0.022820992, -0.0016178573, 0.0094610695, 0.024890592, 0.011416581, - -0.045997635, -0.01069333, -0.014831813, 0.007886952, 0.011738224, - -0.018409017, -0.01885992, -0.016150745, -0.010305453, 0.008354581, - -0.001116784, -0.0076117185, -0.02115982, -0.008903518, -0.015589684, - -0.0064256196, 0.011180642, -0.016135672, 0.006157649, -0.012681866, - 0.016959386, 0.024798864, 0.0048378953, -0.006064133, -0.016450685, - 0.00449022, -0.013661414, -0.008288608, -0.015213041, -0.010411582, - 0.00513868, 0.02266652, 3.5157724e-4, 0.013944229, -0.026808243, - -0.009323847, 0.0067702173, -0.0013755392, -0.005976444, -0.009420831, - 0.008738373, 0.008610852, -2.643687e-4, 0.005503227, -0.008345957, - -0.004878397, 0.012928506, 0.001783781, -0.017977519, 0.0053053778, - 0.015479842, -0.009540977, -0.008789604, -0.02539291, -0.029639993, - 0.0024915484, -0.017276244, -0.028590158, 0.006900577, 0.0039184885, - 0.017232325, 0.023534602, 0.022456488, 0.010521921, -0.0045285616, - -0.00596923, 0.004356665, 0.015267199, 0.018474285, -0.014529981, - 4.8898906e-4, -0.004159767, -0.011249153, -0.0041766674, 0.004198725, - -0.04229164, -0.009762767, 0.005491887, 5.460337e-4, -2.3470125e-4, - 0.013291141, -0.011216828, -0.024414685, -0.0053982623, 0.004413154, - -0.010159243, 0.0011056723, 0.01736057, -0.027846647, -0.009434766, - -0.031722367, -0.0026978003, 0.025689788, 0.002170665, -0.0051616575, - 0.023459515, -0.016994683, 0.02205456, 0.010426681, 0.0056407684, - -0.022708822, 0.012770713, 0.013018274, 0.024944102, 0.017137941, - -0.024258913, 0.012713862, -0.016466506, -0.018533202, -0.010454516, - 0.001465224, -0.0027965435, -0.021915736, 0.0032335885, 0.034584522, - -0.016345639, -0.026707655, -0.0078694215, -0.015583097, 0.001839179, - 0.020447485, -0.0068706023, -0.0054826792, 0.021053713, 0.024986, - 0.01888146, -0.011971498, 0.019388959, -0.009713393, -0.008776218, - 0.0148394, -0.006614682, -0.020038236, -0.022508893, -0.0062236264, - -4.4290027e-5, 0.016385885, -0.0072717527, 0.011590564, 0.0050535207, - 0.0011093217, -0.03394831, -0.013620698, 0.018946154, 0.016424343, - -0.032267015, -0.013993413, -0.022914296, -0.012102503, 0.017890947, - -0.005170275, 0.0020092402, -0.03217673, 0.033261955, 0.002312627, - -0.0055370056, 0.009624646, 0.015682632, -0.001074664, 0.027071862, - 0.0042745303, -0.022750085, 0.012556549, 0.0015636032, 0.017012205, - 0.0063055255, 0.03363611, -6.4534636e-4, 0.025519097, -0.009976061, - 0.013940862, -0.030320318, 0.0049669473, -0.019087603, -3.169921e-4, - 0.016637044, -0.004660716, -0.0027305877, -0.023186637, -0.006248107, - 0.013475948, 0.0071932413, -0.012376237 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - 0.007990735, -0.018816665, -0.008993182, -0.0013577142, -0.005557504, - 0.0027923216, -0.020923773, -0.0018122727, 0.0031258324, 0.0018128762, - 0.026075285, -0.010857952, -0.0047287815, -0.011291678, 0.00110152, - -0.0020974905, -0.018833883, -0.004848736, -0.020179326, -0.014680116, - 0.010198708, -0.002739094, 6.407499e-4, 0.014106949, 0.011000375, - 0.032284573, 0.00755374, -0.0022585797, 0.02077284, 0.011601834, - -0.0056799725, 0.024155194, -0.011373945, -0.0051013124, 0.012082516, - 0.013617687, 0.009679394, -0.015030228, -0.0025088985, -1.5003468e-4, - 0.025115935, 0.021225786, -0.006000919, 0.0068288664, -0.015705379, - 0.008951221, -0.011686521, 0.008019273, -0.016374173, 0.016498124, - 0.018352952, -0.015061026, -0.01599481, 0.00553695, 0.0060311267, - -9.533823e-5, 0.023494944, -0.004152239, -0.019637719, 0.016378857, - -0.0019051386, -0.0060164034, -0.0069291657, 0.0038614084, -0.009953782, - 0.0037651067, -0.0129299965, 0.032277368, -4.055978e-4, 0.010577164, - -0.008532471, 0.023373859, 0.007185368, -0.009554666, -0.011512082, - -0.020314658, 0.028322022, -7.0980325e-4, -7.3203584e-4, -0.018347925, - 0.016097277, -0.011482497, -0.018415516, -0.0060207522, -0.005831151, - -0.015975667, 0.027192002, 0.005383167, 0.006601482, -0.014341464, - -0.0043509817, 0.019273827, -0.009634311, 0.037520893, -0.018897038, - 0.003903004, 0.024201712, -0.029674422, -0.013390217, 0.027923292, - -0.010605308, -0.023028642, 0.009118704, 0.004080135, -0.0098211095, - 0.016401976, -0.00276041, 0.014260324, -0.0015949674, 0.009285628, - -0.010589691, -0.011836052, 0.018666368, 0.016399333, 0.020632206, - -0.01837323, 0.0048818584, -0.012670151, -0.0022441798, 0.0042004525, - 0.0037257841, -0.018299397, -0.017841998, 0.016079191, 0.024585703, - 0.011770315, -0.008886154, -0.00518998, -0.021218382, -0.0066587212, - -0.005508695, 0.012956841, 0.0044941665, -0.023964807, 0.0014141252, - 0.0038422295, 0.005294266, -0.019527664, 0.00473498, -0.009706583, - -0.007072587, -0.023536175, 0.009691989, 0.00331993, 0.035555445, - -0.005035476, 0.01804991, 0.0049532424, 0.0011979162, 0.0070387316, - -0.015359788, 0.0074780267, -0.0061917864, 0.0065127695, 0.010911038, - 0.002934806, 0.0072526988, 3.2690956e-4, 0.021273103, 0.03183152, - -0.013555779, -0.0059008556, 0.0043207137, -0.018085167, -0.0052704727, - 0.0035607023, 0.0012065015, 0.0031804168, 0.023828322, 0.009680414, - 0.023068132, 0.015603114, 0.018452086, 0.042974856, -0.010908016, - 0.0054192347, -0.013426633, -0.0030225667, 5.032146e-4, -0.0067539453, - 0.0011454491, 0.011549148, 0.015957251, -0.012728581, -0.017944032, - -0.016776038, 0.014356115, -0.0056330776, 0.011792452, 0.018509049, - 0.0017749371, 0.0032356998, 0.006357096, 0.02764829, 0.007273353, - -0.022593962, 0.015725141, -0.0031392495, -0.021415526, 0.043243613, - -0.0049285907, -0.013469167, 0.021388978, 4.323505e-4, -0.0030174118, - -0.011284775, -0.03755141, 0.018964214, -0.0017894249, 0.02140301, - 0.02072417, 0.021658441, -0.008862734, 0.010402155, 0.020636536, - -0.024894653, 0.008310362, 0.008194755, 0.0010932661, 0.00174906, - -0.0019633926, -0.027687106, -0.0021144354, -0.033280328, 3.2623456e-4, - 0.0060304985, -0.008734777, -0.0056084013, -0.0012635239, -0.0010302723, - -0.022094999, 0.0061967545, 0.015936147, -0.006510086, -0.024728186, - -0.0039534187, 0.011261942, -0.022920405, 0.0135870995, 0.002910327, - 0.027407268, 0.013842175, -0.015465664, -7.726764e-4, -0.019989766, - 0.012459553, -0.01946353, 0.02022585, -0.008781502, 1.3376145e-4, - -0.009632049, 0.002216457, 0.0020943095, -0.0039356695, -0.0010157442, - -0.012339818, 0.013517698, 0.025674205, 0.0015057924, -0.004757888, - -0.011424233, -0.017714031, 0.016268883, -0.011111289, -0.011395282, - -0.011329229, -0.023041088, -0.004737917, -0.0039958316, 0.0023050182, - -0.0021683795, 0.017211696, -0.007250351, -0.017223962, 0.011937673, - -0.0031263598, 8.4671826e-4, -0.011083143, -0.013480413, 0.004008071, - 0.029060708, -0.005070203, -0.024661995, -0.005566383, 0.0064576305, - -0.020315232, 0.016261172, -0.023854151, -0.008220358, 0.0022970126, - 0.020866694, -6.839324e-4, -0.011035248, -0.0015784191, 0.0097725475, - -0.04194466, -0.0047935494, 0.0036300404, -0.01365267, 0.0012070863, - 0.02596374, 0.010193488, -0.019781768, -0.030098658, 0.023032892, - -0.011509058, 0.0033882733, -0.027050702, -0.0028937762, 0.008411013, - 0.011208238, 0.016568849, 0.014301224, -0.008262792, 0.0043780436, - 0.0050323033, -0.0025849082, 0.006850277, -0.023430057, -0.012931697, - -0.005061239, 0.006078773, 0.015677728, 0.019555304, 0.010927144, - -0.023300726, 0.0030175971, -0.028182149, 0.010734251, -0.0020211556, - -0.03573362, -0.0033121058, 0.017813042, 0.01762731, -0.013182083, - -0.005473254, -0.004848137, 0.013303883, 0.021598585, -0.008098477, - 0.012192233, -0.0015228986, 4.860974e-4, 0.0034026704, -0.0061213635, - 0.010219994, 0.008843759, -0.030277323, -0.010371899, 0.007879026, - -0.0021329012, -0.035878383, 0.004816007, 0.014949727, -0.0018046002, - -0.0027555316, -0.027925806, -0.03803934, 0.0061836373, 0.019231457, - -0.0109040495, -0.015842859, -0.008588531, -0.011985555, -0.021319088, - -0.007247634, -0.046963923, -0.010940429, -0.0066583725, 0.020235095, - 0.035509765, -0.021886416, 0.036597155, 0.0049752197, 0.014850757, - -0.0047941315, -0.016522652, 0.010114513, 0.03551389, 0.0021710666, - -0.01095359, -0.016824754, 0.010587958, -0.0041076443, -0.0016308319, - -0.024725975, 0.005194502, -0.013224909, -0.018192261, -0.01539017, - 0.0028114358, -0.014824156, 0.024104234, -0.036888212, 0.0026526423, - 0.005555269, -0.0052850596, 0.008935139, 0.028111255, 0.0023699428, - -0.002346924, -1.6165368e-5, -0.015010129, 0.0016284946, 0.011101341, - 0.014258511, 0.0134748295, 0.012301068, 0.023633296, 0.0020642183, - -0.0108240545, 0.0063456455, -0.016483014, 0.009971887, -0.0122596705, - -0.008350343, 0.011452569, 0.010550229, -0.0032571547, -0.0061156675, - -0.021709695, -0.0038788794, -0.007885938, -0.0032398452, -0.019222341, - 0.010783081, 0.011832191, 0.018930601, 0.013384678, 0.014430944, - -0.019045303, 0.0041937637, 0.00653496, 0.024453294, -0.012639621, - 0.010810284, -0.017067108, 0.015427938, -0.001055368, 0.015750589, - -0.005758097, -0.020748578, 0.008652688, 0.04499177, 0.01610185, - -0.026711375, 0.016207669, -0.0017453437, 0.00879105, -0.0032628528, - 0.020748015, -0.014197135, -0.030528784, 0.022061303, -0.011950854, - 0.014645466, 6.683936e-4, 0.006258485, -0.007775724, 0.007063935, - -0.019691978, -0.040772375, -0.01518017, 0.018171828, 0.016083632, - -0.0021350973, -0.014315814, -0.012973254, 0.014478453, -0.022985965, - -0.026469273, -0.017961556, -0.032448106, 0.03411314, 0.028317658, - 0.006394087, -0.0041576847, -0.010137668, 0.002653934, 0.005047807, - 0.020440059, -0.010746572, -0.004285345, -0.021935368, 0.007319581, - -0.0012001402, -0.022477983, 4.0857092e-4, 0.0018681361, 0.0024954653, - 0.018749364, -0.0011685306, -0.010122333, 0.01403999, -0.019105151, - -0.010429336, 0.03290282, 0.019166587, -0.012770516, -0.007463199, - -0.0011135412, -0.011463892, 0.0068831355, -0.012763361, 0.022904217, - 0.006720702, -0.004450247, 9.030451e-4, -0.009148391, -0.0024956502, - -0.0025035006, 0.0106486, -0.002715483, 0.011395823, -0.0067659304, - -0.020128815, -0.028728694, 0.0031485257, 0.0048986403, 0.0043726605, - -0.01650225, -0.003749508, -0.013192382, -0.01639581, -0.011025354, - 0.0015035346, 0.016748436, 0.011168362, 0.01497613, 0.011214997, - -0.025310166, 0.009217079, 0.021571442, 0.017650774, -0.001185403, - 0.0069776303, 0.01835735, 0.006229072, -0.020088805, 0.010475649, - -0.010227554, -0.0041357935, 0.009861557, 0.0047731157, 0.0010701482, - -0.0041603115, -0.0039057583, 0.003285837, 0.0063380455, 0.018158216, - 0.017573971, -0.0028710335, -0.01157466, 0.002366566, -0.018298797, - -0.023372853, -0.004586014, -0.004568234, -0.0124250855, -0.011011986, - 0.017921295, -0.01038317, -0.010137301, -0.00406976, -0.0014793782, - 0.006959635, -3.9144384e-4, -0.003618442, 0.042193215, 0.014166074, - -0.0041603227, 0.007619802, 0.01277677, -5.038817e-4, 0.0045949686, - -0.015045412, -0.0021564246, -0.0086904485, -0.013008163, 0.008823439, - 0.008208325, -0.0022191508, -0.0114096105, 0.009082047, -0.015819829, - -0.0057532648, -0.017716145, 0.0066842767, 0.0043004635, -0.005509204, - 8.902954e-4, -0.01274934, -0.003389865, 0.021497458, -0.013558298, - -0.037291057, -0.014065175, -0.031700317, -0.0021692642, -0.011438213, - -0.0071327984, 3.8029375e-5, 0.014677209, -0.0017090959, -0.0035998737, - 8.79081e-4, -0.011752416, -0.0074013267, 0.03348736, -0.017491141, - 0.035782736, -0.010684991, -0.01886427, -0.0035709706, 0.03135299, - 0.006945237, -0.021411546, -0.019901538, -0.0022351744, -0.015962832, - 0.009287881, 0.009599014, 0.034287084, -0.011109805, 0.02283786, - 6.5369066e-5, -0.017469073, -0.010413975, -0.0099667115, -0.0088601895, - -0.016177144, 0.0089993, -0.0024878813, -0.019527446, 0.010821826, - -0.011517209, -0.020987444, 0.0022215513, -0.0024811835, 8.938888e-4, - 0.0014170067, -0.015991915, 2.7473277e-4, -0.017791035, 4.2500207e-4, - -0.008909691, -0.026421703, -0.0010193326, 0.0027181057, -0.026985563, - 0.014275722, -0.0062010754, 0.017560117, -0.013321505, -0.016612103, - -0.002283014, 6.501323e-4, 3.4433682e-4, -0.00836318, -0.012128054, - 0.020656625, 0.0025367427, 0.0017339977, -0.0065448615, 0.01618001, - 0.019787269, 0.017964229, -0.005212127, -0.0027135552, -0.015321467, - -0.0054610185, -0.027686115, 0.031424925, 0.021290649, 0.017313626, - -0.008623879, 4.090383e-4, 0.026125964, -0.018275551, 0.023608541, - 0.00568499, -0.003785518, 0.020995481, 0.0068922606, 1.2251503e-4, - -0.005752066, -0.013767838, 0.02217553, -0.007558912, 0.020627355, - -0.0016694292, 0.018070044, -0.004008286, -0.004956155, 0.004771697, - 0.0099742925, -0.010863673, 0.010845238, -0.02193305, -0.019669337, - 0.030407352, 0.005276677, 0.018827576, -0.032458946, 0.0074130227, - 0.021387748, 0.00252453, -0.026952887, 0.0021415274, -0.014803767, - -0.0046927724, -0.0077717514, 0.037774544, 0.012354626, -0.014007618, - 0.009169348, 0.0061040632, 0.0045360434, 0.019591149, -0.0032386363, - 0.050844733, 0.013005128, -0.028728293, 0.0344164, -0.013635027, - -0.0066444757, 0.014099266, 0.007356199, 0.0066051004, -0.0050024656, - -0.006565439, 0.004207819, 0.005499856, 0.01912045, -0.009034954, - -0.016897505, -0.0053960625, 0.018679546, 0.018902393, -0.0031725373, - -0.001686399, -0.045310248, 0.0027501856, -0.005799042, 0.017251093, - -0.009497842, -0.0030502267, -0.005488179, 0.012935723, -0.03027163, - -0.021113131, -0.006330464, -0.008472957, -0.0024297868, -0.016319934, - -0.0135682225, 0.0049267896, 0.005163341, 0.0026326864, -0.002048543, - 0.036422636, -8.3708565e-4, 0.021683652, 0.011637715, 0.0077730287, - -0.003626395, 0.0072037335, 0.010463817, -0.030966617, 0.008780141, - -0.02310345, -0.011939519, -0.019271547, 0.0018939214, 0.0114973895, - -0.009754494, -0.016368803, -0.013325242, -0.0052612284, -0.009279417, - -0.0017615908, 0.007709333, -0.0018758783, -0.0140815005, -0.008880054, - -0.02387969, -0.022754494, -0.0071977475, -0.025829745, -0.0073023755, - -0.0052992767, 0.009602337, -0.002708882, -0.007387317, 1.6326497e-4, - -0.0075767958, 0.014843296, -0.011094277, 0.029055892, 0.006269334, - 0.026829103, -0.007830628, -0.020336162, 0.0021183223, -0.0022463144, - 0.03777124, 0.005696277, -0.0027815031, -0.011070896, 0.0069167437, - 0.0015540054, -0.013016025, 0.0068318336, -3.69757e-4, -0.0043532522, - -0.004795481, 0.012226079, 0.033269607, 0.035729297, -0.022331167, - 0.005069417, -0.0044860095, 0.003847457, 0.016246254, -0.046183802, - -8.2904403e-4, -0.043380458, -0.011586837, 0.006146766, -4.1071733e-4, - -0.0062708487, 0.0020303235, -0.0045323707, -0.0076697324, - -0.0036933296, -0.028962355, 0.019961353, 3.2740599e-4, -0.023414768, - 0.0053436384, -0.024573445, -0.0028081762, -0.01395328, 0.014337325, - -0.014903292, -0.0070074364, -0.0054427804, 0.014000961, 0.022554401, - -0.01528131, 0.0050211637, -0.013451434, 0.0014742733, 0.022406356, - -0.0056963805, -9.5560116e-4, -0.023010705, 0.00847314, -0.0041089845, - -0.011104162, 0.007632245, -0.009508401, -0.015626254, 0.014013515, - -0.0049486365, 0.006763414, 0.02256092, -3.5784603e-4, -0.009582034, - -0.009615852, 0.01646561, -0.012718899, 0.013619502, 0.00648753, - 0.006735326, -0.017875968, -0.017016688, 0.031290274, 0.0031607866, - 0.0031569935, 0.019968113, 0.025127936, 0.009365398, -0.025164248, - -0.013481248, -0.026751116, -0.0056246994, -0.013087867, 0.0067969034, - -0.0046546445, -5.0912454e-4, 0.0048099672, -0.014575598, 0.034658592, - -0.0044995835, 0.009442197, -0.019710688, -0.043868694, -0.015608107, - 0.0068564373, 0.02180658, 0.018298615, 0.004220265, 0.010376308, - -0.023020342, -0.015129638, 0.030711945, -0.023429416, -0.0421087, - 0.0039953445, -1.1384989e-4, -0.0030298748, 0.009930833, 0.010968317, - 0.019244544, -0.0051592737, 0.01236705, 3.2863094e-4, 1.5895575e-4, - -0.009357125, -0.010832853, -0.016921978, -0.025228942, 0.01089367, - 0.030164476, -0.013320753, 0.010594392, -0.025367523, -0.0014862875, - -0.023186255, 0.012750055, 0.014089057, 0.014227268, -0.0317015, - -0.0022850342, 0.0072633866, -0.035258245, 8.7879313e-4, 0.018107796, - 0.02198915, -0.01414054, 0.013951719, -0.009702718, 0.012107229, - 0.008797415, -0.014990624, -0.014209393, 0.003932975, 0.011566137, - -0.013765987, 0.0041680518, 0.007980171, -0.014669168, -0.0058027976, - 0.0149914315, 2.8086265e-4, -0.011109975, -0.015896568, -0.00474888, - 0.04541518, -5.1329844e-4, -0.017094411, -0.0061444896, 0.00862506, - -0.0013621646, -0.0074525815, -5.28394e-4, -0.009292885, 0.035297558, - -2.4569043e-4, 0.020174757, 0.028146366, 0.007728479, -0.010332864, - -0.019809712, 0.018217692, 0.018496655, -0.021776222, -0.025535189, - 0.006467528, -0.004937153, -0.011072668, 0.02145884, -0.007767545, - -0.0025300118, -0.0060270242, 0.002358938, -0.005420618, 0.006812663, - 0.022201203, -0.018425595, 0.0017903524, -0.0049675587, 0.0023538468, - 0.0015283292, 0.009812774, 0.006611442, 0.0061768857, -0.012792402, - -0.009343096, 0.008563497, 0.0077456045, -0.017793722, -0.008975407, - -0.0049200635, 0.0011821642, -0.031772107, -0.007260995, -0.006578561, - 0.0071131415, -0.0036767179, -0.034986187, 0.0093654385, -0.015608983, - -0.018516805, -0.0067066904, 0.033700075, -0.0057456256, -0.009732192, - -0.0033898202, -0.0052240263, 0.017997036, -0.021179983, -0.0011259407, - 0.014338774, 0.015709173, 0.024919203, 0.015644932, -0.022372365, - 9.760778e-4, -0.0013679814, -0.0053827027, 3.559994e-4, -0.024096707, - 0.019260723, 0.017259117, 0.008626333, 0.008312612, -0.010997039, - -0.016882984, -0.017233647, 0.015987039, -0.015283975, 0.018682783, - 0.026609566, 0.019844955, 0.0061662165, 0.0048959497, 0.025443722, - 0.0118571315, 0.0016208143, 0.013734151, -0.0015136794, -0.015606493, - -1.4254297e-4, -0.036201507, 0.045762587, -0.01641447, 0.008085435, - -0.01976655, 0.020882843, 0.008914082, -0.020338224, -0.004937014, - -0.031260803, 0.011430865, 0.011829746, 0.024035126, 0.0028552373, - 0.013688234, -0.029266784, -0.011537816, 0.003151611, -0.005059511, - -0.0024454605, -0.019743357, -0.008141127, 0.011648171, -0.0068380632, - -0.006098577, 0.010003067, -0.017218012, 0.013010429, 7.3429564e-4, - 0.0027763648, 0.0035296264, -0.011996687, -0.006260963, -0.01646356, - 0.015354596, 0.00833545, 0.007304835, -0.009104595, 0.021201722, - 0.0065154647, 0.012159303, -0.021014052, -0.00976853, 0.00969188, - 0.007580326, 0.014025595, -0.014636431, -0.0018375154, -0.009420695, - 0.039608568, 4.363517e-4, -0.0034711529, 0.003377887, 0.01608607, - 0.00856824, -0.012002412, 0.0020540934, -0.0038688234, 0.0028066519, - -0.0071170717, -0.008753192, 0.008508892, 0.010660005, 0.023926277, - -0.0049368707, -0.007562962, -0.0049534133, 0.02082124, -6.322442e-4, - -0.02244837, -0.0070055504, -0.012352482, -0.015278175, -0.0119227925, - -0.009053697, -0.0048003066, -0.01197466, -0.010886076, 0.021267042, - 0.031502504, 0.0124875875, 4.7389622e-4, 0.0070399945, -0.00742858, - -0.008169012, 0.0076717953, 0.014928553, 6.260704e-4, 0.0107970685, - 0.025414249, 0.0010600004, 0.009304089, -9.2714024e-4, 0.018281125, - 0.01677185, 0.022602541, 0.01156357, -0.012332519, 0.031418443, - -0.037417516, -2.605908e-4, -0.0017099001, 0.0043882257, -0.018301083, - -0.010974494, -0.00974782, 0.015658863, 0.0043363213, -0.0070228, - -1.4332513e-4, -0.015613841, -0.021264546, -0.02623583, 0.004155536, - 0.001176646, 0.010462833, 9.854151e-4, 0.021468325, 0.01036905, - -0.010943289, 0.0064447243, 0.0067686546, -0.008896926, -0.008717365, - -0.00604275, 0.0012280121, -0.005623497, -9.762176e-4, -0.018225785, - 0.01319691, -0.014558668, 0.021178361, 0.011605236, 0.0018943266, - -0.012184552, -0.008257006, -0.007869084, -0.01635892, -0.0019764765, - 0.008901283, 0.026426286, -0.021187417, 0.012443181, -0.0050904592, - -0.00999424, -0.0035390905, -0.0033357274, -0.013737927, -0.021829939, - 0.021360377, 0.014561804, -0.010778521, 0.0010812851, -0.008154788, - 0.02531042, 0.028988305, 0.041156847, 0.022563722, -0.0072558643, - -0.010602297, 0.00676609, 0.010800709, 0.006517497, 0.018694118, - 0.0048042065, -0.010533196, -0.03236678, 0.015399467, 0.006328479, - -0.005768365, -0.0049015502, -0.0034283279, 0.0012423627, 0.0047032596, - 0.01554656, -0.03347733, 0.024961675, 0.03391687, -0.02337784, - 0.0057438766, -0.026532743, -0.008890687, -0.012848562, 0.025193866, - 0.03576023, 0.01262636, -0.015184077, -0.0065603647, -5.695449e-5, - -4.975951e-4, -0.00891988, -0.001660709, -0.0020596576, 0.030224381, - -1.712379e-4, -0.016188616, 0.0079012895, 0.017307287, -0.008664827, - 0.03836973, 2.6791106e-4, -0.0021937827, -0.024942748, 0.0015249535, - -5.974735e-4, -0.002158862, -0.0013400797, 0.006738748, -0.00716, - -0.0067374296, -0.006760993, -0.019263856, 0.029592294, 0.008246629, - -0.002902154, 0.009901533, 0.022475548, -0.012423847, 0.016205339, - -0.021891585, 0.02782384, 0.002347227, 0.017692145, 0.009276653, - 0.017237384, -0.018829606, 0.037254795, 0.008530486, -7.3210296e-4, - 0.008669787, -0.019860685, 0.0060841925, -0.017047051, -0.008304465, - -0.010762533, -0.018830396, -0.009300164, -0.0051886276, -0.021845577, - 0.032923188, -0.0119828805, -0.016016323, -0.0301543, 0.0069944197, - -0.008344195, -0.007153459, 0.0010515342, -0.017368667, -0.002875625, - 0.011884718, 0.0066523007, -0.011877708, -0.0035319496, 0.013115069, - -0.002228398, -0.0035338055, 0.0077091027, 0.0045222715, 0.007998432, - 7.7504216e-4, 0.00523148, -0.0023248668, 0.014665082, 0.008641924, - 0.016891744, 0.017611252, -0.003696799, 0.031496443, -0.0010036253, - -0.018829973, -0.0011862424, -0.012948523, -0.0053615533, -0.0083693955, - 0.02330158, -0.0057124156, 0.020197451, -0.0039653257, 0.008043498, - -0.001863861, -0.015315298, -0.014400634, -0.027536035, 0.0037325996, - 0.006721118, 0.023057511, -0.016876878, -0.024269832, 0.011716135, - 0.0051689185, 0.029780533, -0.0039027047, 0.029959897, 0.002509141, - 0.0034289432, -0.016833488, 0.0089622745, -0.0060499497, 0.006713552, - 0.0060643344, -0.0069973823, 0.0056377333, 0.015687574, -0.008198215, - 0.046880126, 0.027639408, 0.011344631, 0.0030508363, 0.046155967, - -9.545504e-4, 0.021374896, -0.0037462367, -0.024436457, 0.02841718, - -0.009186091, -0.012146002, -0.052284095, 0.009489452, 0.019861668, - -0.011199097, -0.011752117, 0.041869897, 0.0021535193, 0.0058945636, - 0.02047489, 0.024997393, 0.012548473, 0.0053126398, 0.024600478, - -0.007927494, -0.027934289, 0.008987612, 0.011425115, -0.0055988207, - -0.0021530404, -0.0047279387, -0.006198037, 0.015411397, 0.017748967, - 0.009055201, -0.010282815, -0.0032754778, -0.0024787385, -0.014216822, - -0.008386466, 0.006702421, -0.011952087, 0.0034000466, 0.020948896, - -3.951304e-4, -0.027872436, 0.008060224, 0.0012083686, 0.014335648, - 0.019353276, 0.0075798053, 0.0024551125, -0.0056197885, 0.004052692, - -0.0026273194, 0.009075974, -0.0072973813, 0.047441043, -0.011635342, - -0.022419479, -0.010277899, 0.015830886, 0.027302982, -0.026015485, - -0.024964662, -0.020114293, 0.007849922, 0.015023603, -0.0068598026, - 0.04211209, 0.029091926, -1.3539595e-4, -0.0056224763, 0.0037811403, - -0.017149638, 0.004093781, 0.004474422, 0.011237931, -0.010857035, - -0.01230251, 0.005215032, -0.010316639, 0.0018360276, 0.008567589, - -4.3633062e-4, -0.007074642, -0.04248164, 0.013609853, 0.007082848, - -0.01603589, -0.0082780095, 0.021187924, 0.01603102, -0.02007784, - 0.008936606, -0.0037853261, 0.0016960913, -0.014817026, -0.01421061, - 0.005946589, 0.034409016, 0.014407217, 0.016681014, -0.013764801, - 0.015227211, 0.021859277, -0.033969596, 0.004680797, 0.004034693, - 0.006088312, 0.023035252, 0.018643789, -0.0062693935, -0.011112086, - -0.024583573, -0.02938303, -0.025846126, -0.013966465, 0.026390608, - -0.014539911, 0.015063185, 0.013645409, -0.033782054, -0.008794559, - -0.024565058, -0.0042471467, -5.913682e-5, -0.010635859, -3.0337082e-4, - 0.014820525, -0.0024606383, -4.3859865e-4, 0.008070403, -0.02354664, - 0.009315623, 0.0015522272, 0.015577386, 0.0061106076, -7.709464e-4, - -0.017826155, 0.013797387, 0.013658374, 0.005365539, 0.0023675219, - -0.041500304, -0.010618406, 0.017691476, 0.041929886, 0.0071547283, - -0.017851034, 0.0018783789, -0.0098102065, -0.006677967, -0.011899753, - 0.028801098, -0.002869468, -0.008531854, -0.021285586, 0.014471941, - 0.00465701, 0.002193965, -0.002031468, -0.006545263, 1.6409993e-4, - -0.0148473, -0.024554247, 8.624035e-4, 0.016017703, 0.006749253, - 0.011593929, 0.003992244, 0.0036654943, 0.00796612, -0.0027795816, - 0.02083922, 0.018815678, 0.02057858, -0.0043729786, -0.021036426, - -0.00870962, -0.013298393, 0.0016689596, 0.0020603954, -0.025196688, - -0.023490502, 0.019127304, -7.730505e-5, 0.01915114, 0.007089426, - -0.022300482, 0.009113221, -0.008972527, 0.00777533, 0.012177994, - -0.0047889734, -0.03914702, 0.017888933, -0.0018045905, 0.0016663271, - 4.4590575e-5, 0.007437289, -0.015954258, -0.0034268629, -0.005898595, - 0.01731544, 0.025469592, 0.0020364418, 0.0034710143, -0.011867246, - 0.01345988, -0.02061106, -0.0184836, 0.003976912, 0.020459877, - -0.014465027, -0.0011838514, -0.0062591718, 0.008035182, -0.0053514373, - -0.010266335, 0.019012077, 0.021798918, 0.015063359, 0.012729347, - 0.004784781, -0.008216584, 0.0030616599, 0.024565428, 0.019320166, - -0.0028400205, 0.013076792, 0.011322741, -0.00396662, -0.00919778, - 0.021316756, 0.008166715, 0.017845811, -0.018422492, 0.025469854, - 0.017093409, -0.00462709, -0.009426703, -0.029663246, -0.005098753, - 0.006653159, -0.026848786, 0.0135999, 0.0047729504, 0.021642862, - -0.003559361, 0.007718477, -0.0052630156, -0.0012280613, -0.0014749198, - 0.019294402, -0.010043388, -0.0045070993, -0.0054153544, 0.023879059, - -0.043102887, 0.011487722, 5.9474463e-4, 0.0133650685, 0.032201234, - 0.041157223, -0.017476773, -0.007293902, 0.011911746, -0.013799709, - -0.013013579, 0.0067060455, 0.011523831, 0.045777727, -0.007893509, - 0.009375227, 0.0021622484, -0.01002806, -0.0075078607, 0.041259646, - 0.008567803, 0.0049655773, -0.016929772, -0.0069848206, -0.023192352, - 2.5424408e-5, 8.6168955e-5, -0.027544064, 0.004550078, 0.004277881, - 0.019450372, -0.012411259, -0.008006861, -0.02589257, 0.021610979, - 0.007626637, -0.018395782, 0.008748139, -0.00918743, 0.015999211, - 0.010508533, -0.020172955, -0.030422494, 0.02723966, 0.019908888, - 0.01133956, -0.032925643, 6.9071815e-5, -0.010470512, 0.011077907, - -0.018036496, -0.017393691, -0.007238816, 0.014291517, -0.018372083, - -0.0016775816, 0.00949818, 0.002398269, -0.030664615, -0.00984554, - 0.005316096, 0.034318686, 0.025257712, -0.015977321, 0.029933887, - -0.027587408, 0.012095091, 0.010051872, -0.015230736, -0.007610091, - 0.02684397, 0.025507195, 0.019824035, 0.02016012, -0.008029381, - 7.3344907e-4, -0.0034976895, 0.0025334375, -0.015934885, 0.0010089772, - -0.006205511, -0.019140827, -0.03053499, -0.0063182954, 0.022247195, - -0.0069166296, 0.014807087, 0.027658526, -0.0037093333, -4.5001713e-4, - -0.019628981, 0.010917637, -0.0071745776, 0.0025998647, 0.0024219558, - -0.013711176, -0.005964239, -0.0021775633, -0.0019906794, 2.6942047e-4, - -0.031125663, -0.019165812, 0.0024646972, 0.017572343, -0.008278242, - 0.002714141, 0.006721543, -0.01027567, -0.025294581, 0.010510234, - 0.0012938546, -0.006027671, -0.0050434032, 0.016001312, 0.018517617, - -0.017945258, -0.010375699, -0.002261552, -0.0034049242, 0.032344628, - -0.023036802, 0.025810495, -0.021741644, -0.028411483, -0.019677492, - -0.019347243, -0.0020597081, 0.006085225, -0.0022450662, -0.019865088, - -0.032056265, 0.009571135, 0.016375419, -0.01355118, -0.021730114, - -0.0076686586, -0.0063897185, -0.0042931302, -0.03203572, 0.01156454, - 0.0021045492, -0.010431372, 0.013686865, 0.0014957741, 0.023298891, - -0.021477493, -0.0183093, 0.013012349, -0.013950224, 0.04991236, - -0.019148229, 0.0117433155, 0.0013959823, 0.012197171, 0.005096798, - 0.0101239225, 0.006317731, -0.03787766, 0.00956569, 0.018836407, - 0.012913133, -0.010570174, -0.008421996, -0.01908993, 0.0165884, - 0.0045693386, 0.028085325, -0.008109286, 0.012713044, -0.01652945, - 0.020450562, -0.01662882, 0.008631869, -0.00455424, -0.02274216, - -0.00672225, -0.007917836, -6.47578e-4, 0.014861533, -0.004196229, - -4.7426802e-4, -0.011977756, 0.005090333, -0.025258075, 0.008071687, - 0.02039506, 0.013529314, 0.0062627937, 0.0037712182, 0.0077713244, - -0.006263775, -0.0013433077, -0.02135856, 0.006581933, -0.004442861, - -0.002177304, -0.0021793044, -0.024909329, 0.014383059, 0.03509416, - -0.023495352, -0.0011894124, 0.009641614, -0.004499752, -0.0074420166, - 0.0045540533, 0.015214824, 0.01919835, 0.003075807, 0.004891912, - -0.0063915253, -0.024582772, -0.009492961, 0.043076202, 0.0073737474, - -0.034941282, -0.012224888, 0.024393164, 0.012406492, -0.0010163947, - 0.00512594, -0.007571443, -0.011278943, 0.008492898, -0.0039229076, - 0.004898972, -0.014964553, -0.005991718, -7.9585105e-4, -0.0065413853, - 0.03561556, -0.0023110744, 0.0053191357, 0.012456023, 0.0071331793, - -0.017231558, -0.0046817437, -0.0027416109, -0.014730627, -0.015855605, - 0.010873771, -0.014356796, -0.0013901136, -0.033821296, 0.00722319, - -0.007037068, -0.010805977, -0.007493092, 0.016849874, -0.03147305, - 0.0014403549, 0.0075302445, -0.009245682, -0.0019837187, 0.0085369395, - 0.010679526, 0.020629793, -0.002988528, -0.042420812, 0.015727593, - 0.013814747, -0.016941922, 0.01790467, -0.010089381, -0.0070144306, - -0.014122806, 0.025452008, 0.024026733, 0.007041705, -0.0052803513, - 0.010854224, -0.017178932, 0.025904458, 0.01379608, 0.007642513, - -0.0051958566, -5.6386023e-4, 0.033179335, -0.012780007, -0.007787916, - 0.013278753, 0.0060884547, 5.4642203e-4, 0.024053568, 0.011840066, - -0.004646713, -0.015913747, -0.0015663758, 0.010130956, -0.0076757697, - -4.8063145e-4, -0.0014518341, -5.4862455e-4, 0.01562776, 0.017399125, - -0.0038462596, 0.008014435, 0.015389431, 0.023329005, -0.002906567, - 0.01887666, 0.0047814786, 0.009815117, -0.0026302314, 0.007875953, - -0.027917244, -0.011120384, 4.955443e-5, 0.02410583, -0.009981421, - -0.0019145397, 0.015780117, -0.020361798, 0.021471495, -0.010252435, - 0.043297537, 0.00638917, 0.012093799, -0.020789582, 0.02897546, - 0.011193723, 0.013317301, 0.024767721, -0.030305678, -0.0133833615, - 0.014625132, -0.0011907852, -0.0044706725, 0.002278949, -0.013067286, - 0.010083589, 0.005605905, 8.511684e-4, 0.0038467327, -0.00301975, - 0.006098489, -0.008408881, -0.012993045, 0.005823651, -0.0038822729, - -0.02520743, 0.021776114, 0.013119974, 0.0029628323, 0.002324907, - -0.0021602258, -0.005408872, 0.0073422724, -0.031852096, 0.011239553, - -0.0031098349, -0.008038759, 0.0033178004, -0.006834612, 0.012703285, - -0.015110832, 0.0035910422, 0.004329837, 0.018820496, -0.017599786, - -0.009375782, -0.009625773, -2.7644972e-5, 0.029872919, 0.010258847, - 0.007953618, 0.030908475, 0.004961536, -0.008720525, 0.010611037, - 3.7425396e-4, 0.019161137, 0.025632994, -0.021019727, -0.002927493, - 0.012298133, 0.0197292, -0.0013001914, -0.0019757417, 0.015875077, - -0.0068794168, -0.0059008026, 0.0060970434, 0.006644654, -2.885121e-4, - 0.016679553, 0.005479683, 0.006384142, -0.016529247, 0.026844999, - 0.007975913, -0.017252032, 0.004873532, 3.5446097e-5, -0.008911455, - 0.014043156, 0.011807716, 0.017067883, 0.03211534, 0.037291165, - -0.007948474, 0.041131243, 0.011477064, -0.019515844, 0.016530197, - -0.017339442, 0.01439616, -0.0038869954, 0.0053085494, 0.009321777, - 0.0048249275, 0.019616343, -0.01703047, -0.032023527, 0.006451886, - -0.013393672, 0.01499275, -0.010097261, 0.012961826, 0.021110935, - -0.005540113, 0.02273134, -0.015185876, 0.023927357, 3.5238478e-4, - -0.02277726, -0.00333423, 0.012524731, 0.004214902 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.03658237, 0.008864944, 0.0341393, 0.013304457, -0.03329576, - 0.008784992, 0.022459304, -0.0041930676, -0.0034261001, -0.037863117, - -0.04573175, -0.030808847, -0.04481259, 0.021206446, -0.028982328, - -0.06134568, 4.3388802e-4, 0.012493553, -0.009126759, 0.020270236, - -0.016388578, 0.018426372, -0.008974941, -0.010920446, 0.0057587028, - -0.018955125, -0.045009054, 0.039773703, 0.029287374, 0.005625568, - -0.057109226, 0.038520966, 0.0016381303, 0.037952654, -0.0060782656, - 0.0348, 0.030079994, 0.026704704, -0.011644467, -0.049924485, - -0.048039403, 0.06988022, -0.084884964, 0.074555285, -0.01947479, - -0.0014365521, -0.0055204267, 0.016089652, -0.009049376, 0.04397697, - -0.056921773, -0.013633276, 0.011624412, -0.01059151, -0.009086888, - -0.021475976, -0.043696113, -0.033655025, -0.031179594, 0.06741678, - 0.04503716, 0.04121806, -0.0015773085, 0.038882345, 0.03979387, - 0.0046230485, -3.4324944e-4, -0.009931222, -0.02206741, 0.026617782, - 0.008153893, 0.013819606, -0.008739852, 0.027197568, -0.018706756, - -0.013609199, 0.015415851, -0.040319525, 0.017571993, 0.0059603914, - 0.03864589, 0.0060004736, -0.009163975, -0.020224763, -0.034671072, - -0.052178018, -0.01627887, -0.03300565, 0.018763717, -0.008706925, - 0.04953775, 0.03742231, 0.0066385367, -0.0013567731, 0.052362643, - -0.01101978, 0.024872946, 0.010835916, -0.023004495, -0.032239977, - -0.010477579, -0.02070792, -0.035601225, -0.07503457, 0.0021469411, - -0.033798248, -0.046198364, 0.039268393, 0.0023858035, -0.041429758, - 0.018466787, -0.0152437985, 0.009183626, 0.0045871427, -0.040036727, - 0.03622333, -0.025437122, 0.005652238, 0.0079133995, 0.020769803, - 0.009579001, -0.028942809, -0.021507006, -0.030944875, 0.016904924, - -0.027694985, -0.021735325, -0.028005393, 0.02236859, -0.0080800885, - 0.033213038, 0.0035670889, 0.020771168, 0.0042025363, -0.031519122, - -0.035125747, -0.09932035, 0.02465934, -0.03713947, 0.007671139, - -0.021224594, 0.007048515, 0.0389345, -0.015804766, 0.032968808, - -0.019771859, 0.013948726, 0.052641805, -0.05475461, 0.048661646, - -0.024761833, -0.005919988, -0.031308983, 0.0051940735, -0.042770848, - 0.0351257, 0.0038650427, 0.03499075, 0.013435075, 0.024002142, - 0.020336336, 0.065839864, 0.016759725, -0.035355352, -0.015117866, - 0.0481634, 0.0105754435, -0.011130797, -0.015855558, 0.057800654, - 0.02014961, -0.0022781463, 0.042279605, 0.0048348657, 2.497224e-4, - -0.05697945, -0.020910539, -0.050997768, 0.021979991, 0.022180295, - -0.051480696, -0.029550873, -0.023135675, 0.008793548, -0.049268723, - 0.07855541, -0.023802945, 0.013705732, 0.044759013, 0.0055385395, - -0.00830141, 0.024001647, -0.02497561, 0.009625822, -0.08194726, - -0.032963954, -0.06276369, -0.043573998, 0.031599723, 0.011071652, - 0.045243915, 0.02682003, 0.023871696, -0.038849592, 0.040730882, - -0.03807275, 0.031534627, -0.0513834, -0.027035732, -0.007449488, - 0.01097345, -0.016879037, 0.0050687664, -0.009077684, 0.039858866, - 0.041705556, 0.036043365, 0.04735282, -0.0027820847, 0.036149673, - -0.038517397, 0.01001342, -0.01518345, -0.06610389, 0.010871124, - 0.021355234, -0.0017129926, 0.0026854326, -0.012511055, 0.038987488, - 0.0068086893, 0.011240101, 0.025565365, -0.01875265, -0.009980856, - -0.012303449, -0.020880628, 0.014093329, 0.006443563, -0.01883116, - 0.081875205, 0.059272267, 0.0034126919, 0.045186635, -0.045080435, - 0.043724142, 0.031107182, -0.015520283, -0.00422202, 0.013945763, - -0.012116973, 0.03381824, 0.051635668, -0.024790626, -0.028263705, - -2.4045704e-4, 0.009402823, 0.020852534, 0.0021623434, 0.035605196, - 0.008218057, -0.025928061, -0.01618172, -0.017284753, 0.026701745, - 0.040810704, 0.022559132, -0.034128074, 0.02160917, -0.034632407, - 0.020163413, -2.4713803e-4, -0.019000473, 0.0236575, -0.016107528, - 0.02267894, -0.029450743, 0.029406436, 0.0459014, -0.008806592, - 0.04985905, 0.0233217, -0.04980969, -0.0144462, 0.020839786, 0.06328681, - -0.045901053, -0.0123860575, -0.008547019, 0.09279493, -0.037715178, - -0.004363389, 0.04575106, -0.021584691, -0.034003336, -0.012145315, - 0.0020494182, -0.004927968, 0.0044038366, 0.030353786, -0.04700982, - -0.038458135, 0.022102065, -0.030677939, -0.010736826, -0.019410873, - -0.056581955, 0.020837775, 0.027785076, 0.0068199807, -0.012717923, - -0.016849454, 0.019043596, -0.025181882, 0.0208101, -0.035039917, - 0.05583186, -0.03779208, 0.015621603, 0.030943567, 0.036290765, - -0.018703861, -0.03520068, -0.01756236, -0.0045454297, -0.02398627, - 0.014082456, 0.003906597, 0.003342024, 0.014544646, 0.009290057, - -0.0020909586, -0.018092362, -0.019090578, 0.011825575, -0.0015792877, - 0.014986825, -0.0010746251, 0.006649858, -0.06594929, -0.044899855, - -0.0056889593, 0.00891233, 0.0014568528, 0.0059412066, 0.007773769, - -0.042896457, -0.0039067343, 0.059094388, -0.0065151863, -0.03578093, - -0.025684612, -0.017334003, 0.017519275, -0.027177818, -0.0424873, - 0.012139257, -0.02923606, -0.0077827414, -0.027668567, 0.041641716, - -0.02312102, 0.039025806, 0.04849246, 0.0070154876, 0.05758478, - -0.03438558, 0.040238157, 0.022509126, -0.03696545, -0.003722809, - -0.011048667, 0.014994289, 0.049489792, 0.0449629, 0.007564147, - 0.016969511, 0.011193825, 9.997203e-4, 0.017116955, -0.026766965, - 0.0068170032, -0.034088373, 0.01946597, -0.02231655, 0.02841297, - -0.027788175, 0.040240657, 0.0060763634, -0.004619681, -0.033658147, - -0.008775932, -0.008259544, -0.011066393, -0.01673941, 0.025088167, - 0.030220816, 0.012103799, -0.047897562, 0.017911889, -0.06869477, - -0.044876523, 0.019948006, -0.00418839, -0.05224716, 0.004385552, - 0.023231963, 0.036647942, 0.009248583, 0.018349677, -0.036640167, - 0.01988176, 0.04241833, -0.0104728015, 0.038505077, 0.027142894, - -0.05360033, 0.011753013, 0.004491952, 0.027552519, 0.025087249, - -0.032455552, 0.005717498, -0.02653844, 0.00548468, -0.01858627, - 0.0046093813, -0.022542927, 0.07268119, 0.013757442, 0.031148287, - -0.033965457, -0.01828692, 0.028458878, 0.025423896, -0.010469824, - 0.0047996645, 0.04963723, 0.013532763, 0.094770305, -0.019656204, - -0.046935823, -0.0013418898, 0.031070413, -0.030689318, -0.019980274, - 0.03980333, -0.011001335, -0.0035098654, -0.021082325, 6.6719844e-4, - -0.039857183, -0.030448271, 0.04358532, -0.07048142, -0.028803501, - 0.06363543, -0.015746599, -0.01315179, -0.013106354, 0.03505562, - 0.025198884, 0.02553607, -0.015876958, -0.041627664, 0.0108377915, - 0.026792647, 0.018801682, -0.0327894, 0.0027009605, -0.053231247, - -0.0072176373, -0.040138077, -0.030048436, -0.012008785, -0.06314012, - -0.0202175, -0.008599215, 0.015641106, -0.017139498, -0.032316837, - -0.012938902, 0.0150703825, 0.01471, -0.030379057, 0.026173793, - -0.0049601058, -0.015716614, 0.035740886, 0.024306495, 0.049479995, - -0.044054646, -0.03463468, 0.033466883, -0.068174176, 0.00930821, - 0.004322225, -0.05329137, 0.033655807, 0.010270879, 0.007018112, - 0.0073858947, 0.0046541872, -0.025478784, 0.0025957755, -0.046633508, - -0.034794737, -0.05225507, 0.017774234, -0.04343754, 0.036370903, - 0.034347367, 0.003829935, 0.0020622404, 2.177744e-4, 0.028570857, - 0.008211753, 0.012107124, -0.011467245, 0.0058271275, -0.0052633407, - 0.010242538, -0.023945423, 0.0021532923, 0.026644884, -0.008035231, - -0.04341065, -3.066465e-4, 0.07725577, -0.040712066, -0.017980242, - -0.0073500937, 0.04358478, 0.004658078, 0.0018516481, -0.060831018, - -0.0014729191, 0.02714017, 6.295119e-4, 0.03449011, -0.035661552, - 0.047197226, -0.028854448, -0.03087281, -0.01228587, 0.0091689015, - 0.04514626, 0.03276418, 0.015421117, 7.8635395e-4, 0.034279864, - 0.030827563, 0.024549356, 0.03468586, -0.026700681, 0.020974878, - -0.046109073, 0.031819116, 9.381018e-5, -0.02174536, -0.029860813, - 0.0138872545, 0.012834561, 0.0059032612, 0.012704515, 5.537448e-4, - -0.02953238, 0.016800033, 0.016191509, 0.002865574, 0.08133675, - -0.004747926, -0.025418786, 2.1651626e-4, -0.011092814, -0.019265149, - 0.034120232, -0.030136976, 0.066077575, 0.025235025, -0.0051577375, - 0.037865106, 0.0017752066, -0.025693692, -0.012899153, -0.03195946, - -0.0062375558, -0.03246705, -0.05267198, -0.008769464, 0.03304955, - 0.026803428, -0.057393253, 0.035600133, 0.007907977, -0.051273704, - 0.011954935, 0.026275463, 0.035209082, 0.04384837, -0.026636245, - -0.029303234, -0.018961163, -0.024834517, -0.004838955, 0.010186855, - 0.038812794, -0.029633021, -0.015614569, 0.036440793, -0.011938113, - 0.001170968, 0.029339056, -0.0046585365, -0.03870346, -0.027477682, - 0.032872997, 0.061926764, 0.02847902, -0.027393648, 0.0028070689, - 0.001182901, -0.018480105, 0.026085433, 0.02163391, 0.04248872, - 0.0434764, 6.06676e-4, -0.017317433, -0.041137297, -0.018838316, - 0.042189635, -0.053085145, -0.025970336, 0.026909102, 0.011435749, - 0.04003046, 0.026961943, -0.0022565327, -0.029060397, 0.0053266794, - 0.007669572, 0.020038316, -0.04582294, -0.048799425, -0.0029166886, - -0.08114228, 0.061932083, -0.022821113, -0.036004167, -0.028434448, - -0.005089451, -0.025469322, 0.029361095, 0.0012224319, -0.008540368, - -0.054422818, -0.026370838, 0.05888901, 0.006700972, 0.0015140965, - -0.005067226, 0.013477404, -0.0045623756, -0.051289983, 0.04096183, - -0.11170028, -0.005719342, -0.012725375, 0.001471957, 0.00670743, - 0.0071652043, -0.0239817, 0.013859868, 0.005844974, 0.010028302, - -0.030746067, -0.008118487, -0.010345777, 0.019816378, 0.046432473, - -0.010762046, 0.03506872, -0.019233558, -0.05025676, -0.008755718, - 0.0018373309, -0.039021958, -0.024327356, 0.008413499, -0.057842076, - 0.0016846316, -0.026727645, -0.02864876, 0.024316559, 0.070903346, - -0.010696132, -0.017292585, 0.014086091, -0.065550864, -0.017243724, - 0.04477167, 0.014660612, -0.020928437, 0.04082963, 0.053709984, - 0.038103048, 0.00788216, -0.013795938, -0.06656685, -0.007726296, - -2.0606397e-4, -0.0039865547, 0.004168973, -0.037367526, -0.045298606, - 0.030028647, -0.002039867, 0.03219338, -0.014679442, -0.01671394, - -0.022353083, -0.05170572, -0.027108239, -0.017692126, 0.03946273, - 0.034183156, -0.021759436, 0.02699579, -0.016399063, 0.031138591, - 0.038185395, 0.03905143, 0.033126216, -0.054963622, 0.03260055, - 0.032868255, -0.013313348, -0.009436458, 0.009592479, -0.012646566, - 0.006125002, -0.004946856, -0.022651516, -0.010636543, 0.04125818, - -0.020428902, -0.039647523, -0.030612534, -0.0540704, 0.02739096, - 0.010585959, 0.0065845526, 0.024953397, 0.016387263, -0.0129734315, - -0.004907097, 0.007898814, 0.019560343, 0.008274669, 0.005201329, - 0.052595716, -0.0037870454, -0.014190008, 0.039662525, -0.021796003, - 0.030598303, -0.004647018, 0.025452172, 0.024288192, -0.019780021, - 0.016578505, -0.054718554, -0.023004353, -0.011527709, 0.015105278, - 0.035222866, -0.017796714, -0.039643463, 0.056114707, -0.03258279, - -0.031877648, 0.04785796, 0.005859509, -0.053282697, 0.001215409, - 0.007119682, -0.044306714, 0.02954625, 0.014279085, -0.09052973, - 0.034031715, 0.052411266, -0.046237472, -0.009204069, -0.045555785, - 0.032509513, -0.013934405, -0.012058559, -0.0074190213, -0.07155703, - 0.009300442, 0.039722826, -0.028576234, 0.043868605, -0.011133618, - 0.012224425, 0.032810077, -0.06034878, -0.005615543, -0.03225905, - -0.034651924, -0.049857877, 0.016136453, -0.030972095, 7.3649373e-4, - -0.013116454, -0.010252153, 0.0043465784, -0.037529454, 0.00903602, - -0.06538612, 0.042293515, -0.028196365, -0.02172025, 0.030087834, - 0.01942838, -0.006493909, 0.022512333, -0.013977224, 0.023341356, - -0.021352038, -0.0025288912, 0.0155198425, 0.026830344, -0.03281359, - -0.04156933, -0.035897546, 0.030726627, -0.048125993, 0.012782659, - 0.012947112, -0.06985025, -0.026550973, -0.027232146, -0.0050747558, - -0.050222255, -0.02182383, -0.013797772, -0.06749522, 0.009137861, - 0.04522128, 0.032276213, 0.02496757, 0.03993877, 0.010952589, - -0.013962002, 0.0028043203, 0.013489805, 0.0031713715, 0.004272111, - 0.011857937, -0.022504786, 0.009416542, -0.030361295, -0.032507397, - -0.011591812, 0.02252577, -0.048165537, -0.04261456, -0.060906667, - -0.0077767223, -0.08263429, -0.020561196, -0.03464441, 0.014153581, - -0.047592923, 0.017140392, -0.011403368, -0.04286957, -0.034243934, - 0.020035166, 0.010272029, 0.007415226, 0.023294441, -0.009536652, - 0.04018041, -0.03448223, 0.012047729, -0.014869061, 0.057147853, - -0.049546607, -0.021690939, 0.013785209, 0.01914648, -0.004647185, - 0.009990369, -0.041999195, 0.022248143, -0.010273275, -0.008884241, - -0.008196419, 0.006981929, 0.0083546555, -0.016818048, -0.0043509277, - -0.039362397, 0.04733853, 0.02922441, -0.05829648, 0.019733794, - 0.014244084, 0.06940154, -0.008641139, 0.034809373, 0.010833834, - 0.058912963, -0.016642561, -0.0073965103, -0.034261223, -0.06134098, - -0.045840103, -0.048733, -0.020361818, -0.02828088, -0.020232258, - 0.030615509, -0.029187502, -0.02836939, 0.03276395, 0.005322445, - -0.03931062, -0.031142956, -0.011785615, 0.045209896, 0.05595039, - 0.03056384, -0.0373798, -0.03740985, -0.03468169, -0.010017158, - -0.020370677, 0.016985483, -0.045538962, 0.009550835, -0.039523955, - 0.035056002, 0.019568076, 0.021124221, 0.050651647, -0.057456203, - 0.009662467, 0.018450357, -0.007326672, -0.008755881, 4.9419457e-4, - -0.005543163, -0.029939061, -0.0054188226, 0.06577085, 0.010955342, - 0.018226482, 0.021664578, 0.03939387, -0.027420804, -0.033453315, - -0.0016314572, -0.005413676, 0.0605085, 0.005178615, 0.02087896, - 0.0047408463, -0.028312616, -0.03770217, -0.0677769, -0.0028817023, - -0.02582007, 0.05183495, -0.03383277, 0.005796837, -0.038390294, - -0.020579804, -0.033459052, 0.01701969, 0.012296055, 0.012281064, - 0.047340877, -0.03212392, -0.022477832, 0.014111202, 0.0077887387, - 0.0146407485, -0.01842271, -0.027912451, 0.0024950646, 0.0022075244, - 0.046286937, -0.01109398, -0.028806765, -0.04336518, -0.035559982, - 0.032762047, 0.0043164943, -0.0022212048, -0.03185449, -0.04826901, - 0.001068953, -0.003639984, -0.01708678, 0.0551737, -0.010288204, - 0.042341676, -0.03625205, 0.02543862, -9.066566e-4, -0.02699074, - -0.02556178, 0.011381133, -0.035608675, 0.023873495, 0.055942256, - 0.050003707, 0.0064097294, 0.04974437 + "source.genres.label" : [ + "Carrot counselling" + ], + "source.genres.concepts.id" : [ + "g00dcafe" + ], + "source.genres.concepts.sourceIdentifier" : [ + "L6MtHDV6LX" + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.016438505, + 0.00657761, + 0.01612595, + 0.006897619, + 0.0137391025, + 0.030253187, + 0.0073188217, + -0.01567266, + 0.014539494, + 0.0079393685, + -0.010254898, + 5.019211E-4, + -0.031160317, + 0.013043485, + 0.020342167, + 0.021838594, + -0.028800474, + 0.008242059, + 0.010751098, + 0.021602659, + -0.010137097, + -0.0019307507, + 0.025489181, + 4.3737437E-4, + -0.0099727055, + 0.007761669, + 0.007011138, + 0.009599531, + -0.028416632, + -0.023116935, + -0.010613861, + 0.0025385271, + 0.0119532645, + -0.013896101, + -0.0049233, + 0.012098876, + 0.008362213, + 0.021942176, + 0.0014399049, + 0.0059413845, + 0.008660644, + 0.0052195, + 0.020614801, + 0.005035212, + -0.020645935, + -0.017469665, + -0.013083441, + -0.009237782, + 0.01631914, + -0.007124191, + -0.015906265, + 0.011660106, + 0.024562038, + 4.352224E-4, + -0.028141385, + -0.0015328649, + 0.01652029, + 0.016285859, + -2.5865185E-5, + -0.010516407, + 0.0057251626, + 0.01498771, + 0.038672443, + -0.0174554, + 0.010557469, + -0.012236887, + 0.015978096, + 0.002016734, + -0.016412573, + 0.01975899, + 0.017696505, + -0.004636294, + 0.005214226, + 0.022200098, + -0.02208037, + 0.0021409774, + 0.008022653, + 0.014978895, + 0.009902433, + 0.010205485, + 0.0036869762, + -0.010542708, + 0.0065021487, + -0.011367624, + -0.009855814, + -0.012012613, + -0.02138023, + 0.025845625, + 0.0016850388, + -0.011785395, + 0.0026887525, + -0.016874868, + -0.009859169, + 0.018856248, + -0.008674379, + 0.020109814, + 0.018647276, + 0.028598405, + -0.0030792905, + -0.0022936952, + -1.5866017E-4, + 0.0067323796, + 0.013450903, + 0.0035831402, + 0.015744036, + -0.009055462, + 0.015115555, + -0.0028866085, + -0.015327832, + 0.018127933, + -0.008574368, + -0.0101563595, + -0.031168919, + 0.017993905, + 0.0023030736, + 0.012054585, + 0.0035747022, + -0.016130626, + 0.009057468, + 0.040168766, + -0.012425533, + 0.013669458, + 0.003744824, + 1.2206E-4, + -5.1139687E-6, + 0.011072164, + 0.0022620787, + 4.6193705E-5, + -0.018290194, + -0.024693098, + 0.015407167, + 0.0069590705, + 0.0038265095, + 0.0015585547, + -0.007741338, + -0.013553715, + 0.020214466, + 0.015425159, + -0.02441001, + 4.8420898E-4, + 0.017246004, + 0.020334592, + -0.011246487, + -0.0031888306, + 0.023285486, + -0.0013332276, + -0.0050061373, + 0.016616803, + -0.01917878, + 0.013338226, + -0.00449879, + -0.0108901085, + -0.008076573, + -0.011710554, + -0.020356735, + 0.002914444, + 0.0066191014, + 0.009749518, + -0.03475713, + 0.00801652, + -0.007659065, + 0.016772643, + -0.0058146627, + 0.008224086, + 0.011599054, + -0.0097875, + -2.2851325E-4, + -0.01814714, + 6.0748163E-4, + -0.008778578, + -0.027920708, + -0.013235306, + 0.00562385, + -0.0044254498, + -0.0021560637, + 0.019451521, + -0.03634995, + -0.011919815, + -0.019796876, + 0.004250008, + 0.014255919, + -0.03876356, + 0.016797166, + 0.0077339187, + 0.012497454, + 0.018577056, + -0.030128544, + -0.016611565, + -0.0029416198, + 0.015641732, + -0.017019631, + -0.0074798693, + -0.019218182, + -0.003187367, + -0.02335163, + -0.030305702, + 0.00870621, + 0.0073212814, + -0.0109470375, + 0.0029823352, + 0.012068946, + -0.023645183, + 0.007879376, + -0.005518409, + 0.0044275415, + -0.033507966, + 0.017715126, + -0.010683396, + -0.011632352, + -0.0024175001, + 0.012021165, + 0.016657671, + 0.017797984, + -0.01567224, + -0.02367741, + 0.002549475, + -0.016534036, + 0.012289576, + -0.005878973, + 0.018454501, + -0.0022496884, + 0.006220454, + -9.251267E-4, + -0.011407499, + 0.040246192, + 0.019267501, + 0.0017225236, + 0.0059883352, + -0.00925316, + 7.6706853E-4, + -0.0064190095, + 0.021102143, + 0.015513047, + 0.0056942683, + -0.002393627, + -0.0045791706, + -0.011535937, + -0.01111904, + 0.019076776, + 0.011102472, + -0.02136222, + -0.015910273, + -0.013099486, + 0.016531032, + 0.014824144, + -0.006659722, + -0.010285799, + -0.014565015, + -0.0013533614, + 0.0154519435, + 0.019556733, + -0.015211577, + 0.009107091, + -0.0142168, + 0.01232127, + 0.010410341, + -0.00905758, + -0.006899493, + -0.010195907, + 0.0012932378, + 0.0054575386, + -0.010990101, + -0.0042437376, + -0.014455173, + -0.004143923, + 0.00784277, + 0.013694794, + 0.0022234733, + -0.022179749, + -0.0016143599, + 0.018269222, + -8.777337E-4, + 0.006014356, + -0.004534546, + -0.009892786, + 0.014778994, + 0.019337092, + -0.008722382, + -0.010414149, + 0.002732562, + -0.020399444, + -0.0022769817, + -0.022157613, + -0.010308458, + 0.0015321018, + 0.011363779, + -0.0029895494, + -0.021806108, + 0.020401921, + -0.015492724, + -0.026463917, + 0.018410105, + 0.010524233, + -0.020233251, + -0.0057587833, + 0.009398819, + -0.0077134557, + -0.022374703, + -0.005358761, + -0.0015139184, + 0.033511788, + 0.0056168414, + 0.020913992, + -0.017810887, + -0.028209474, + -0.02862441, + 0.018320668, + -0.0048793997, + -0.012881922, + -0.005464882, + 0.0023805276, + 0.005243811, + -0.009088037, + -0.0025567831, + -0.017806474, + -0.005254162, + -0.017626029, + -0.02749847, + -0.017077858, + -6.824407E-4, + 0.0020352951, + 0.012065164, + 0.004484148, + -0.029173708, + 0.02150338, + -0.019190509, + 0.030937888, + -0.01081981, + -0.005394083, + -0.018365296, + 0.010543287, + 0.007777116, + 0.011823909, + 5.982339E-4, + -0.0072001377, + 0.0151591655, + 0.011155033, + -0.0031453061, + 0.006770131, + -0.016433448, + 0.016858282, + 0.032980617, + 0.005216673, + 0.020126134, + -0.0072227153, + -0.009901105, + -0.008016166, + 9.081486E-4, + 0.0029418638, + 0.018666279, + 0.001381127, + 0.027300233, + -0.005253241, + -0.013151021, + 0.0062748212, + 0.011619004, + -0.018615626, + -0.015672896, + -0.030196453, + 0.0011664516, + -0.010575973, + 0.037698653, + -0.01884864, + 0.0054544657, + 0.008678157, + 0.023776429, + -0.018684264, + -0.01592687, + -0.021062337, + 0.011400546, + -0.01539301, + 0.0046152174, + -0.0016890506, + 0.030774027, + 0.0035001796, + -0.01569179, + -0.019834276, + -4.6204595E-4, + 0.013762423, + 0.00541618, + -0.0034121051, + -0.010694804, + 0.002035602, + -0.009495252, + 0.0026164304, + -0.0069147833, + -0.0024022944, + -0.016392414, + 0.0057988735, + -0.0103571825, + -0.0046689897, + -0.0043031317, + 6.2382757E-4, + -0.03471715, + 0.009905508, + -0.030478574, + -0.015535066, + -0.013086456, + -0.019899085, + 5.130371E-4, + -6.516469E-4, + -0.0022075986, + 0.037213072, + -0.007395142, + -0.008738359, + -0.020864505, + 0.013334685, + 0.006342274, + 0.004656687, + -0.0058944575, + 0.018223086, + -0.0033880584, + 0.008151116, + 0.024102217, + 0.006571324, + 0.010130243, + 8.66386E-4, + 0.009462438, + -0.034602787, + -0.010962663, + 0.00615893, + -0.015736388, + -0.001297592, + 0.014831784, + 0.008232536, + -0.0054136915, + -0.002980384, + 0.0064479364, + 6.725482E-4, + -0.0010418354, + -0.0031042846, + 0.007936234, + 0.029461114, + 0.012236108, + -0.027818056, + -0.0050273263, + 0.0021712605, + 0.009425564, + 0.020282065, + 0.017214363, + -0.004234099, + -0.008029085, + 0.0021231463, + -0.015370642, + -9.551041E-4, + -0.006469515, + -0.0048614442, + -0.022634603, + -0.012488304, + 0.005485485, + -0.0115964, + -3.5155218E-4, + 0.0040243994, + 0.032897256, + -0.008519555, + -0.03020067, + 0.027105084, + 0.008573256, + 0.006197177, + -0.032796487, + 0.009858646, + -0.015933018, + -0.003023602, + -0.01481202, + -0.012225476, + -0.007722418, + -0.030811166, + 0.0119419135, + -0.009053156, + 0.013344516, + 0.01704482, + 0.013338178, + 0.019682717, + 0.008122928, + 0.026766278, + 0.018037897, + 0.011583297, + -0.0016624231, + 0.014236056, + 0.008579672, + -0.011735114, + 0.014368979, + 0.011967383, + 0.0064082877, + 0.0016205272, + -0.020451702, + 0.016117835, + 0.026762322, + -0.003294656, + -0.0328097, + -0.0036157437, + -0.0099883275, + 2.5733415E-4, + 0.014381631, + -0.014833838, + -0.002830545, + 0.009286211, + 0.03370696, + 0.006658439, + 0.012498534, + 7.859696E-4, + -0.014180454, + 0.006010339, + -0.0075879004, + 0.005806211, + -0.009128462, + -0.0071947337, + -0.0024363543, + 0.0043503307, + 0.002770386, + 0.011025155, + 0.004484286, + -0.0016216938, + 0.029055076, + -0.009033822, + -0.009861655, + -1.7379594E-4, + 0.020606581, + 0.013720124, + 0.0031335272, + -0.0069263424, + -0.016015774, + 0.024439584, + 0.018009845, + 0.011422177, + 0.019184884, + -4.5112058E-5, + 0.0050926167, + -0.036276843, + 0.00423655, + 0.024216695, + -0.0027279253, + -0.018160347, + 4.140757E-4, + 0.0029929897, + 0.01205816, + 0.0058982237, + 0.005174262, + -0.0059757396, + -8.808537E-4, + 0.006577461, + -0.011228335, + 0.0052497652, + -0.0010974366, + -0.018191557, + 0.008071313, + -0.0063441605, + -0.041102238, + -0.03135097, + -0.005800915, + -0.021888535, + 0.010219352, + -0.008375922, + 0.023786811, + 0.00466446, + -0.023324654, + 0.007844517, + -0.011537218, + -0.021804856, + -0.014182109, + 0.030441158, + -0.008212192, + -0.0010619749, + 0.004938935, + 0.009954753, + 0.0014939394, + -0.024883788, + -0.003449412, + -0.028967967, + 0.0015176998, + -0.01779607, + -0.0033274188, + -0.03623254, + 0.011802006, + 0.021627022, + 0.0065154578, + -0.0036087192, + 0.037877116, + 0.0045507816, + 0.001992242, + -0.023240998, + -0.006781409, + -0.0056981808, + -0.0059273345, + -0.0060379873, + -0.030158363, + 0.017262999, + 0.006203849, + -0.0025166813, + 0.0023521886, + 0.024455063, + -0.019799983, + -0.01351148, + -0.0033111044, + -0.01791336, + -0.01533295, + 0.0051115346, + -0.00762988, + -0.009039981, + -0.012149162, + -0.015350704, + 0.013435555, + -0.013620989, + -0.012323312, + 0.014841791, + -0.0015798406, + 0.012817426, + 0.0118200155, + -0.00842868, + 0.012750047, + 0.0040078443, + -0.03015214, + -4.8571434E-5, + 0.0024678593, + -0.024775028, + -0.014088925, + 0.026644288, + 0.015603521, + 0.007556949, + 0.006834287, + 0.030984597, + 0.008715192, + -0.0017826107, + 0.0060956273, + 0.008642651, + -6.7632896E-4, + -0.012492369, + -0.025774885, + -0.016637554, + -0.01424065, + -0.004546184, + -0.008398542, + 0.0055569797, + 0.022193264, + 0.0013669167, + -0.0018795135, + 0.013023035, + 0.0064602853, + 0.021291602, + -0.011214156, + -0.024440276, + 0.008878325, + 0.019525757, + -0.025849188, + 0.0088081965, + 0.0014604087, + 0.011647919, + -0.009544653, + -0.00218508, + -0.013263455, + 0.011694396, + 0.030440353, + 0.019226572, + 0.0020196952, + 0.009350619, + 0.020999791, + 8.665861E-4, + 0.0153244, + 0.018441673, + 0.009594501, + -0.011360442, + -0.041007634, + -0.013395164, + 0.0019518678, + -0.015280299, + -0.033859383, + 0.0073998133, + -0.017080272, + -0.0051315655, + -0.022178378, + 0.01204276, + -0.0040522357, + -0.008100902, + 0.019818619, + 0.018538434, + 0.0026835846, + -0.005137872, + -0.020799201, + 0.00577731, + -0.023453312, + 0.006547238, + -0.004158135, + -0.007849035, + -0.017100299, + -0.01458638, + 1.0645159E-6, + 0.013148869, + 0.0034770176, + -0.011835301, + 0.005696987, + -0.01238267, + 0.00806646, + 0.009557404, + 0.009511701, + -0.013193776, + -0.00751943, + 0.01868164, + -0.006604448, + -0.0043302802, + -0.02436633, + -0.001686804, + 0.0042204694, + 0.0021486175, + -0.01908894, + -0.017301822, + -0.013606571, + 0.022981167, + -0.007693097, + 0.021834677, + 0.0059770416, + -0.023597032, + -0.008372279, + 0.005818128, + -0.004991901, + -0.008359974, + -0.0148595115, + -6.0905196E-4, + 0.0017797451, + 0.004874621, + -0.006268648, + -0.013931453, + 0.007764505, + -0.0050891466, + 0.0046221125, + -0.003456841, + -0.0034991382, + -0.006561364, + -0.015480619, + -0.068280436, + -0.0057723816, + 0.014505131, + 0.0063017453, + 0.01019273, + 0.023229023, + 0.016533444, + 0.0071849655, + -0.009746601, + 0.03635758, + -0.008152093, + 2.1613578E-4, + -0.015080256, + 0.03097826, + -0.017037058, + 0.015386928, + 0.013904465, + 0.0012730407, + -0.018678913, + 0.002227059, + 0.0020893796, + -0.02462623, + -0.011141635, + -0.008325379, + 0.03797262, + 0.007941175, + -0.00992275, + 0.0016741931, + -3.820906E-5, + -6.966138E-5, + 0.019012108, + -0.0013429913, + -0.0017637877, + -0.018777942, + -0.009302396, + 0.009539236, + -0.0028006048, + 0.012101988, + -0.014028851, + 0.01948899, + -0.027605325, + 0.0048818397, + -0.023401598, + -0.0010157804, + 0.017172512, + -2.644255E-4, + 0.0044767363, + -0.00649377, + 0.026927738, + -0.020728951, + -0.0010506164, + 0.003972819, + 0.01566304, + 0.007694664, + 0.03258388, + 0.022644369, + 0.006173086, + -0.014533626, + -0.025845867, + 0.0049524303, + 0.013708237, + -0.028360425, + -0.002808113, + 1.0443133E-4, + 0.009079974, + 0.029470738, + 0.016191438, + -0.037095148, + 0.037701365, + 0.032242004, + 0.005435881, + 0.021120675, + -0.00507967, + -0.005423627, + 0.007874501, + -0.023074115, + -0.008600716, + 0.04201339, + 0.00223416, + -0.009392908, + -0.013943794, + -0.026806107, + -0.011393805, + -0.0017861633, + -5.3729827E-4, + -0.0151139125, + -0.02345266, + -0.009288794, + 0.014493405, + 0.019219814, + -0.007878802, + 0.003727797, + -0.017316226, + -0.013194477, + 0.008714616, + 0.007894767, + 0.0015083933, + -0.02522266, + 0.0112819765, + -0.015732167, + -0.0016465026, + -0.033881705, + 0.020024005, + 0.0098399455, + 0.0028209456, + -0.018514367, + 0.013984277, + 0.02486531, + 0.018447185, + 0.008180788, + -0.004835584, + 0.025386555, + 0.02005275, + 0.015564358, + 0.016372727, + 0.019622752, + -0.010949076, + -0.004947324, + -0.019046742, + -0.011541453, + 0.014400156, + -0.011798511, + 0.008025069, + 0.01080586, + 0.041962735, + -0.029547654, + -0.012374329, + 0.005944168, + -0.0013318836, + -0.004259149, + 0.013715631, + 0.0103205135, + -0.02719337, + -0.006779129, + -0.011136344, + -0.0030495848, + -0.011590591, + 0.010522492, + -0.013681251, + 0.020112272, + 0.016671576, + -0.009465307, + -0.003515958, + -0.0019159864, + -0.02498651, + 0.0022254428, + 0.0075082057, + -0.016490424, + -0.004202437, + 0.0025272702, + 0.009378193, + -0.0273839, + -0.016474368, + -0.007790952, + -0.034298975, + -0.001346441, + 0.006800469, + -0.015187836, + 0.0190314, + -0.018042045, + -0.014008324, + 0.0074462993, + -9.069333E-4, + 0.022401558, + -0.006575599, + 0.004027728, + 0.023721257, + -1.9252385E-4, + -0.0043588006, + -0.024470964, + 0.0056679896, + -0.014886134, + 0.011932588, + 0.018124577, + -0.0014916264, + 0.008352254, + -0.02046607, + 0.010154467, + 0.0543978, + -0.003042673, + 0.0071778893, + 0.014429389, + 0.01666551, + 0.0017183296, + 0.008071277, + -0.0037612699, + 0.013025381, + 0.022727253, + -0.010730466, + -0.005376879, + -0.014124446, + 0.022995079, + 0.02328249, + -0.03197426, + -0.009600814, + 0.004758322, + -0.01657766, + 0.016667942, + -0.020515045, + 8.2702E-4, + -0.004625603, + 0.011286828, + -0.015509565, + -0.01204866, + -0.022042127, + 0.021306911, + -0.007144643, + -0.01891081, + -0.013358368, + 0.013140919, + -0.002918525, + -0.0147510795, + 0.00401868, + -0.029267203, + 0.021460697, + -0.03026914, + -0.005352374, + -0.015560376, + 0.011831879, + -0.014466284, + -0.008804785, + -0.0016162399, + -0.016708815, + -0.0034263812, + 0.007120126, + -0.007567973, + 0.020362755, + -0.021778189, + -0.024899863, + 0.004314474, + 0.01576466, + 0.021772925, + -0.031611513, + -0.0025018943, + 0.012629229, + 0.01079652, + 0.016953783, + 0.0012770649, + -0.019588701, + -0.015916998, + 0.015250468, + -0.0033248076, + 0.021078615, + 0.023588916, + 0.006062151, + 0.021868417, + -8.011504E-4, + 0.015128368, + -8.760152E-4, + -0.018651888, + -0.032295384, + -0.016269863, + -0.011774382, + -0.0066113914, + 0.0035367229, + 0.0016762728, + -0.0065807784, + -0.023119994, + 0.014241423, + 0.0035938495, + 0.024470419, + 0.03313527, + -0.016341181, + 0.0036139751, + -0.0033686608, + 0.021530729, + 0.015189096, + 0.021084124, + 0.028968612, + -0.025839746, + -0.0035842364, + 0.007093822, + 0.016474713, + -0.044381067, + 0.01042439, + -0.03783995, + 0.016024863, + 6.5617096E-5, + -0.011957041, + 0.0089482, + 0.0140659185, + -0.009938628, + 0.00653501, + 0.0016711662, + -0.0018059249, + 2.8588233E-4, + -0.009372337, + 0.045772884, + 0.028496545, + -0.0015997025, + 0.012866637, + -0.006062512, + -0.009764733, + -0.01863178, + 0.004735221, + -0.0034878664, + -2.198104E-4, + 0.008375756, + 0.003544194, + -0.029010762, + 0.009611691, + 0.0044616987, + 0.021131031, + -1.3367088E-4, + 0.0097796945, + -0.008740072, + -0.01665297, + 0.02241274, + 0.02139314, + -0.018855238, + -0.0063891793, + -0.0012223558, + 0.0087416265, + 0.0076307296, + -0.021870194, + -0.0012288679, + -1.20995974E-4, + -0.01219895, + -5.60413E-4, + 0.016905274, + 0.0012726147, + 0.0119812125, + 0.006210921, + 0.015702173, + -0.013185994, + -0.02188733, + -0.00757036, + -0.027561188, + 0.025602194, + -5.363269E-4, + 0.022124672, + -0.0016099557, + 0.027702348, + -0.010679519, + -0.0074785743, + -0.022950822, + -0.009159029, + 0.012736788, + 0.008841963, + 0.008738324, + 0.013459169, + 0.0016100176, + 0.02206706, + -0.011419923, + -0.019376414, + -0.022723474, + -0.0450046, + -0.007921791, + -0.0081486255, + -0.009109362, + 0.02561943, + 0.009662476, + 0.0064975363, + -0.00310277, + 0.04084869, + 0.0045587546, + -0.0040292987, + -0.033972878, + 0.0016169209, + -0.02593348, + 0.014018377, + -0.012225998, + 0.022319261, + -0.007963609, + -0.014450012, + -0.028407775, + -0.022467557, + -0.018022496, + 0.026455777, + 0.023425134, + 0.021503504, + -0.01158049, + 0.001230912, + -0.005448271, + -0.017401978, + 0.01052672, + -2.084215E-4, + 0.012669886, + -0.027327335, + -0.011615322, + 8.012546E-4, + 0.0030759426, + -0.016989054, + -0.015947266, + 0.008922729, + 0.024928521, + -0.011323699, + 0.0022684936, + -0.016364494, + 0.01974307, + -0.0038952474, + -0.007818105, + 0.007963125, + 0.025873397, + 0.005432855, + -0.004871112, + 0.040051114, + 0.012687286, + -0.010524819, + 0.023464676, + -0.0019870598, + -0.00484431, + -0.0010955579, + 0.010268265, + -0.008649122, + -0.022336544, + 0.015422679, + -0.021729419, + 0.0017788468, + 0.020796755, + -0.0058620237, + -0.015077319, + -0.0042621177, + -0.015075328, + 0.010364318, + 0.0024911212, + 0.016731916, + -0.0055143563, + -0.021116473, + -0.010997572, + 0.0030752518, + -0.0101712365, + -0.004945661, + 0.018585898, + -0.018169228, + 0.026518732, + 0.031768832, + -0.011005146, + -0.025486141, + 0.02031992, + 0.0062618298, + -0.005966679, + 0.0033660585, + 0.0282104, + -0.010831194, + 0.0047936705, + 0.0014173237, + 0.010887889, + -0.026684241, + -0.0037479845, + 0.024656419, + -0.0019715317, + 0.027349897, + 0.023207923, + 0.01769162, + 0.00923102, + 0.005163935, + 0.012772535, + -0.0023920564, + -6.638973E-4, + -0.01339255, + 0.014916331, + -9.7585056E-4, + -0.028779276, + -0.010629358, + -0.016593345, + 0.016148753, + -0.0046833307, + 0.0058335927, + -0.0433777, + -0.008681718, + 0.004110055, + -0.0135323135, + -0.024486814, + -0.007253315, + 0.03135191, + -0.009708668, + -0.020759176, + -2.3433709E-4, + 0.032151587, + -0.0012559602, + 0.0032219398, + -0.008216406, + -0.009445513, + 0.0026775976, + -0.0050002257, + 4.7839523E-4, + -0.012050066, + 0.020109287, + 0.008028236, + -0.024408316, + 0.0054675476, + -0.0018280797, + -0.01686698, + 0.043854475, + 0.002432762, + 0.016542085, + 0.0022557592, + -0.037178416, + -0.012434718, + 0.0075405585, + -0.016844714, + 0.013430894, + -0.025344174, + 0.01513349, + -0.0073098503, + 0.0040657227, + 0.0012338358, + -0.027136795, + 0.015049659, + -0.011027292, + -0.022326054, + 0.023511551, + 0.009259161, + -5.3771405E-4, + -0.0052521382, + -0.0064611537, + 0.0029942032, + -0.01616121, + -0.024908928, + -0.007048599, + -0.012715316, + -0.0045641894, + 0.018090224, + -0.0157521, + -0.0038294368, + 0.019420102, + -0.009107049, + 0.0021528609, + -0.0024012334, + 0.020143854, + 0.026031556, + -0.0068533593, + -0.018394336, + 0.011619072, + 0.0102756275, + -0.014592363, + -0.03898634, + -0.019549387, + -0.009813944, + -0.026823161, + 0.023331689, + -0.020421669, + -0.020948106, + 0.018411262, + -0.0019047558, + -0.0028169923, + -0.029268712, + 0.0069237845, + 0.008893991, + -5.8602134E-4, + 0.016090574, + -8.5321284E-4, + -0.016106062, + 0.03130919, + -0.009238521, + -0.0029974657, + -0.013513219, + -0.010275848, + 0.027228769, + -0.0065888115, + 0.01853606, + 0.01761509, + -0.007998806, + 0.003497164, + 0.0062455153, + -0.0057546254, + -0.0073141884, + -0.0043711974, + 6.9228606E-4, + 0.0038700607, + -0.023622803, + -0.008556082, + -0.015456722, + -0.018903177, + 0.019023582, + 0.021784455, + -0.005790225, + 0.041869868, + -0.02674119, + -0.0028556976, + 0.019922672, + 0.010314286, + 0.01084018, + -0.013240019, + -0.016188944, + 0.022679048, + 0.008051559, + -0.0013938773, + -0.003149373, + 0.012201621, + -0.014490487, + -0.007909348, + 0.0013969057, + -0.0027859344, + 0.020270979, + -0.0037590642, + 0.0037209427, + -0.01059195, + -0.014981885, + -0.0064013074, + 0.0030281947, + -0.017716473, + -0.01892239, + 0.005539281, + -0.024443367, + -0.0053696497, + -0.015901342, + -0.025422053, + 0.025576085, + 0.018429514, + 0.011997342, + -0.0017715337, + -0.022356687, + 6.082354E-4, + -0.017386464, + 0.012893851, + 6.9434487E-4, + -0.012197958, + -0.02813673, + 0.0041631134, + 0.008186606, + 0.0024899582, + 0.011024808, + -0.02291334, + 0.0035055198, + -0.026316779, + 0.008317171, + 0.017560631, + -0.012413087, + -0.0065883603, + 0.0094168605, + -0.009884832, + -0.01229408, + -0.007901216, + 0.010098205, + 0.018736403, + -0.018053414, + -0.01312813, + 0.042981513, + -0.0058102375, + 0.023366524, + 0.008801517, + -0.008291592, + -0.0074472316, + -0.0035027554, + 0.003347635, + 0.0038985754, + -0.003397161, + -0.015153737, + -0.023993105, + 0.0072475784, + -0.027149364, + 0.003440811, + -0.016287709, + 0.006631938, + 0.0056489334, + -0.023435218, + -0.01327253, + 0.0025184755, + 6.664806E-4, + -0.00436122, + -0.016197715, + -0.009496411, + 0.015470725, + -0.008132145, + -0.025419727, + 0.0013414271, + 0.030699927, + -0.0031659661, + 0.01824582, + -0.019217176, + -0.008225653, + 0.015127991, + -0.025956217, + -6.149832E-4, + -0.014060512, + -0.0024266634, + 1.8544195E-4, + 0.013984556, + -0.015326043, + 0.0033530276, + -0.0067082793, + -0.0036155886, + 0.026945813, + 0.029329231, + 0.010614932, + 0.027082669, + 0.024537224, + 0.004998455, + -0.018989779, + 0.016897812, + -0.0054276106, + 0.01387182, + -0.029810749, + 0.009454082, + -0.0065180524, + -0.0016834354, + -0.02633369, + -0.007241214, + -0.013860682, + -0.030771444, + 0.009692436, + 0.00927728, + 0.004502889, + -0.017997477, + 0.00174899, + -0.013728104, + 0.005039537, + 3.8283583E-4, + 0.0033132688, + -0.0032566611, + 0.0038942154, + 0.019552032, + -0.0033919893, + -0.006554731, + -0.021182334, + 0.0070062247, + 0.018179221, + 0.009793643, + 0.008950971, + 0.010282291, + -0.003870992, + -0.01818134, + -0.02948927, + 0.01582153, + -0.011151645, + 0.006638831, + 0.0021424447, + 0.020548752, + -0.0069819293, + -0.008847771, + 0.005558385, + -0.028911274, + -0.0037789305, + -0.0069030663, + -0.007478318, + -0.018921923, + 0.010221527, + -0.012574489, + -2.857427E-4, + -0.010901471, + 0.001802925, + -0.02370799, + -0.020843035, + -0.0121749975, + -0.004008007, + 0.012335084, + 0.023488654, + 0.008436721, + 0.00213831, + -0.01730922, + -0.01425269, + 0.010801078, + 0.02170592, + 0.01940666, + -0.009700513, + 0.0028250893, + 0.0072540515, + -0.009421449, + -0.02230973, + -0.011194291, + -0.006275909, + -0.003023441, + 0.0059338496, + -0.008587135, + 0.011074366, + -0.01788916, + 0.0082118455, + -0.0028006616, + 0.0039212727, + 0.0076316632, + -0.019197488, + -0.0073982654, + -0.017537244, + 0.011348478, + -0.020780157, + 0.007422729, + -0.0025143372, + -4.3966854E-4, + 8.25797E-4, + -0.010473526, + 0.009276121, + 0.0044237436, + -0.009032924, + -0.04277432, + -0.0111322645, + -0.040412333, + -0.0026743142, + -0.02497878, + -0.012446171, + -0.0052017043, + -0.01474318, + -0.023538645, + -0.0040893536, + -3.7421082E-4, + 0.018540274, + -0.021747112, + 0.01461144, + 0.013883902, + -0.023216417, + -0.015303307, + -0.015172105, + -0.01917655, + -0.02479786, + 0.02789628, + 0.013168762, + -0.008884342, + 0.011995155, + -0.009380665, + 0.012130607, + 0.015039794, + -0.007743362, + -0.0076966383, + -0.003562232, + 0.013872853, + -0.015789654, + -0.012763117, + -0.016971245, + -0.004161136, + -0.0074070645, + 0.019571839, + -0.0042483467, + 0.0046468675, + 0.0013936696, + -0.005980166, + 0.004674158, + 0.0063774996, + -0.011414641, + 0.0048715067, + -0.0044272356, + 0.0029000835, + -0.042204548, + 0.0012424822, + 0.02567925, + -0.0042427094, + -1.1089257E-4, + -0.006515029, + -0.0061668265, + -0.002553217, + -0.03421179, + 0.0016844824, + 0.013306925, + -0.0046569896, + 0.0014289602, + -0.0072626574, + -0.017325656, + 0.019494379, + 0.008553506, + -0.030525444, + -0.013369038, + 0.020409303, + -0.029531298, + 0.001117376, + 0.02371741, + -0.00638201, + 0.014372322, + 1.8560071E-4, + -0.021240212, + -0.0077468096, + -0.024329493, + 0.012190171, + -0.002130126, + 0.00394531, + 0.007618073, + -0.0031687943, + -0.020257384, + 2.9494817E-4, + 0.0029183938, + -0.007423282, + -0.0027258147, + -0.005972354, + 0.0026018298, + 0.005211943, + 0.0056132614, + 0.015103639, + 0.017011426, + -0.017914128, + 5.772122E-4, + -0.019033775, + -2.1220627E-4, + -0.028470417, + -0.019310746, + -0.014667453, + 0.010890283, + 5.7045003E-5, + -0.013579286, + -0.011868573, + 0.0041061277, + -0.0025655618, + 0.02416099, + -0.035403866, + 0.019674342, + 0.0026700115, + -6.987673E-4, + 0.007859358, + -0.006394906, + 0.028987136, + -0.008563914, + 0.0019084639, + 4.165031E-5, + 0.016739715, + 0.02189623, + 0.011663907, + 0.011343721, + 0.024407363, + 0.008094161, + -0.0014554849, + 0.015299012, + -0.017360425, + -0.019360008, + -0.0147739295, + -0.0114318915, + 0.006661011, + -0.015466534, + -0.002295442, + -0.0010730549, + -0.002416135, + 0.013613348, + -0.0075542945, + 0.010028184, + 0.007839105, + -0.020838052, + -0.019555597, + -0.0119928485, + 0.0077403015, + 0.010747757, + -0.022424959, + 0.0089623835, + -0.011708337, + 0.0031047945, + 0.013041777, + 0.006477306, + -0.014619731, + 0.001345252, + -0.023996137, + -0.01822608, + -0.0058040963, + -0.029317707, + 0.0043111355, + 0.0030800782, + -0.0020212734, + 0.0037240037, + -0.010971439, + 0.018143008, + 0.016372796, + -0.027693952, + -0.014227343, + -0.006292551, + 0.013589699, + 0.02280425, + 0.017080568, + -0.017346675, + -0.0112128, + 0.03116761, + -0.017361287, + -0.0025035164, + 0.0030715317, + -0.00810234, + -0.01183448, + -0.021416603, + -0.0103583075, + -0.01291677, + -0.019656166, + 0.029454947, + 0.020253316, + 0.006649256, + 7.00316E-4, + -0.0066313087, + 0.019874664, + 0.015106021, + -0.0010755084, + 0.020261379, + -0.016808558, + -0.005421608, + 0.013235286, + -0.0042992067, + 0.006292387, + -0.021376926, + -0.04333186, + 0.0040659206, + 0.010206438, + 0.027058065, + -0.021435454, + -0.008548032, + -0.0048945523, + 0.026200539, + 0.0011310802, + -0.019999858, + -0.013555248, + 0.027114106, + 0.014469009, + -0.022280624, + 0.012664973, + -0.0055180034, + 0.0033172548, + -0.0010905439, + 0.018575093, + -0.0068099936, + 0.015476153, + -0.018441303, + 0.012993598, + -0.01381073, + 0.019521298, + 0.002558517, + 0.0021178888, + 0.0077476613, + 0.011715686, + 0.0051714503, + 0.020468347, + 0.023581076, + -0.015780533, + -6.9574197E-4, + 0.002171352, + -0.011077307, + 0.0191112, + -0.007820155, + 0.008389273, + 0.020443367, + -0.0025722485, + 0.0015407286, + 0.003976433, + 0.023502517, + -0.020830192, + 0.0015814593, + 0.0073658004, + 0.0016994122, + -0.01036294, + -0.055333916, + 0.015086397, + -8.4390194E-5, + -0.022861158, + -0.0075558405, + 0.007945197, + 0.0114798555, + 0.010053023, + -0.013482725, + 0.0029011606, + -0.0026946042, + 0.041416086, + -0.0020936367, + -0.0082502775, + -0.0019765685, + -0.019590791, + -0.016982082, + 0.011898273, + 0.013318913, + -0.011161757, + 0.017897142, + -0.01603067, + -0.0072229137, + -0.00922175, + 0.0052751773, + 0.026316551, + -0.0033142483, + -0.022186333, + -0.02537954, + 0.0065227333, + -0.008863148, + 0.0057933144, + -0.0065306243, + -0.012935557, + -0.010371188, + -0.002602478, + -0.019805992, + -0.011335053, + 0.012061803, + 0.0046514734, + -0.023922302, + 0.024588773, + 0.005160579, + -0.010700953, + 0.019960487, + -0.0019668022, + 0.0029300966, + -0.009921493, + 0.024183348, + 0.0025264525, + -0.02685551, + -0.027769083, + 0.016946003, + 0.01776993, + 0.007262968, + -0.0032661573, + 0.005457061, + -0.017174916, + 0.0075653694, + 0.026984617, + -0.030938996, + 0.0029811927, + -0.026127303, + 0.010842395, + -0.009194312, + -0.006945254, + -0.013086695, + 0.018767597, + 0.014441666, + -0.022407, + -7.713862E-4, + -0.01884782, + -0.013359962, + -0.02252277, + -0.0031737287, + 0.005417939, + -0.056645174, + 0.0107728485, + -0.00803835, + 0.02560846, + -0.017307485, + 0.003767033, + 0.0064177457, + 0.024966877, + 0.032893512, + -0.00800841, + -0.00900534, + 0.014086803, + -0.015842715, + 0.022759946, + -0.003981003, + -0.0032000057, + 0.012911438, + -0.015499012, + -0.016628716, + -0.0033336396, + -0.0073759463, + -0.010993123, + 0.01172274, + 0.008498133, + -0.009050252, + 0.007813642, + 0.0010760142, + 0.02339172, + -0.019119866, + -0.015584734, + -0.0124879265, + 0.0021395045, + 0.0046994956, + -0.006264001, + 0.0021892793, + -0.009069095, + 0.010330995, + 0.013564578, + -0.0065242057, + -0.007496778, + -0.030195648, + -0.011138285, + 0.0242298, + 0.0030249017, + -0.031011663, + -0.00700205, + 0.00664632, + -0.014182177, + -0.010029766, + 0.0130363675, + -0.0051572504, + 0.01345148, + 0.006808258, + -0.0018566123, + -0.002247484, + -0.0032728838, + 0.017401883, + -0.0037112061, + -0.0029587238, + 0.017172106, + 0.013989688, + -0.001612254, + 0.0038270005, + -1.9581486E-4, + -0.0036011217, + -0.0312864, + 0.01990623, + 0.011916123, + 0.019393966, + 0.009992279, + 0.012285851, + -0.028177945, + 0.018688185, + -0.022520762, + 0.0043722815, + 5.9544324E-4, + -0.0011956941, + -0.009760325, + -0.003211303, + 0.016206862, + 0.007159453, + 0.01335041, + 0.014447674, + 0.021095376, + -0.0074943607, + 0.016887736, + 0.0067145424, + -0.004504407, + 0.0056338566, + 0.007619075, + -0.0051088315, + -0.0145363845, + -0.011687493, + 0.010796691, + 0.016023941, + 0.006845518, + 0.021709599, + -0.0187361, + 0.009918837, + 0.002504952, + 0.0027672516, + 0.011081233, + -0.010302394, + -0.0024926106, + 0.005096348, + 0.008270941, + -0.019305225, + -0.036208738, + -0.015971443, + 0.028854067, + -0.0078115105, + 0.004719463, + 0.03640119, + -5.3286296E-4, + -0.0017775042, + 0.030588536, + -0.029498372, + -0.025853653, + 0.014705493, + -4.655052E-4, + 0.0018816761, + -0.03078485, + 0.04160857, + 0.009869193, + 0.0030426192, + -0.0153831355, + -0.007932009, + 0.0060982932, + -0.017991181, + 0.0034791674, + -0.012337463, + 0.02980699, + -0.014365096, + -0.033255246, + 0.02460183, + 0.004545273, + 0.0038471418, + 0.024369296, + -0.0056735035, + 0.015545048, + 0.018105375, + 0.013651488, + 0.013029266, + -0.0040557897, + 0.012079025, + -0.014234189, + 0.01208534, + 0.0031973904, + -0.006286472, + -0.018388968, + 6.5707E-4, + -0.004054245, + 0.02496529, + 0.0029601129, + -0.007713792, + -0.0041894317, + 0.013244208, + 0.014744426, + 0.006398824, + 0.014162588, + 0.0034421235, + 0.040595997, + 0.01860339, + -0.0019727352, + 0.0060981787, + -0.018334147, + 0.023373105, + -3.2251328E-4, + -0.01078256, + -0.019635739, + 0.020813264, + 0.014182023, + 0.013393734, + 0.008975161, + -0.020427743, + 0.020308554, + 0.0018351481, + -0.004666847, + -0.019180901, + -0.02834643, + 1.8581765E-4, + 0.023387494, + 0.009089219, + 0.009461025, + 0.002285745, + 0.019834448, + -0.008449225, + -0.033763222, + -0.00841054, + -0.010321536, + 0.029441174, + -0.006977889, + 4.1827286E-4, + 0.009674385, + -3.172192E-4, + -0.017149493, + -0.0037704555, + -0.010927921, + -0.015381168, + -0.0052682487, + -0.008613811, + 0.0062033767, + 0.013280009, + -0.016321525, + 0.0015952559, + -0.019345814, + -0.022899369, + 0.040410448, + -0.02393114, + 0.0014394775, + 0.019072305, + -0.01014617, + -0.010821754, + -0.0093453275, + -0.002583276, + -0.002384074, + -0.0060797334, + 0.022714159, + 0.015620905, + -0.0107236495, + -0.017202428, + 0.019328514, + -0.0013154815, + 0.0047730757, + 0.0037727817, + -0.017913839, + -0.012795887, + -6.244002E-4, + -0.019261474, + 0.016017325, + -3.52498E-4, + -0.010930325, + 0.0066970554, + -0.019626167, + -0.0021205877, + -0.006733734, + 0.004532824, + 0.002194119, + 0.0028133783, + -0.026735535, + -0.010603621, + 0.024154095, + 0.010429748, + -0.009152437, + 0.005365071, + -0.011072024, + 0.0065370253, + -0.03290849, + -0.016980423, + -0.006033262, + 0.017094523, + -0.01019221, + 0.0040330244, + 1.6660127E-4, + 0.012128047, + -0.01743441, + 0.017118536, + -0.013204398, + 0.025392408, + 0.0013693509, + 0.018617323, + -0.013802486, + 4.108435E-4, + -0.014558178, + 0.0036594055, + -0.01738765, + 0.02103981, + 0.0122993225, + -0.023571197, + -0.007633965, + 0.01586497, + -0.01323245, + 0.006687751, + 0.0108243795, + 0.016065337, + -0.0010724899, + -0.015997924, + 0.014170059, + -0.0042289537, + 0.0064585414, + -0.003504864, + -0.024583867, + -0.0042446516, + 0.0046278695, + 0.0049737017, + 0.031631865, + 0.0021555014, + 0.013371337, + -0.010270442, + 0.011640831, + 0.007403906, + 0.0047425805, + 0.014702786, + 0.0024632234, + 0.0027208682, + -0.011118887, + 0.033430316, + -0.0026235376, + -0.016722588, + 0.011977052, + -0.004855834, + 0.013679404, + 0.024389748, + 0.020024639, + 0.021028694, + -0.0051867845, + 0.0051133726, + -0.016558997, + 7.3155784E-4, + 0.032931976, + 0.011379207, + -0.0062184813, + -0.029365066, + 0.029353958, + 0.020799354, + -0.016182426, + -0.024012247, + 0.0025270232, + -0.007853613, + 0.03234648, + 0.0012753716, + -0.021314524, + 0.014870257, + -0.023632037, + -3.0199057E-4, + -0.013387399, + 6.358694E-4, + -0.0023827127, + -0.016813288, + -0.021611601, + -0.016043158, + -0.010028936, + -0.02204075, + -0.0034801646, + 0.007848412, + -0.0017533129, + -0.03666446, + 0.020886412, + 0.03209859, + -0.0011368926, + -0.0026082385, + 0.022144983, + 0.02131029, + -0.0360792, + -0.0011549795, + 0.04898503, + 0.013384481, + -0.008514234, + -0.022102995, + -0.0015083784, + 0.0018779101, + 0.0114414925, + 0.01161213, + -0.0029951986, + 0.04599142, + -0.0027335119, + 0.010747863, + -0.004051188, + 0.020771056, + 0.0055527915, + 0.0021321725, + -0.009473311, + 0.00944998, + 0.0036847796, + 0.0064452984, + 0.010022507, + -0.022194304, + -0.038245358, + -0.013562971, + 0.0043807, + -5.4771075E-4, + 1.241185E-4, + 0.005253625, + -0.011893235, + -0.016389867, + 0.009480288, + 0.041519433, + -0.004868833, + -0.0121180145, + 0.010445508, + -0.007880284, + 0.028869433, + -0.0015686312, + -0.002733794, + 0.0030354615, + -0.022918347, + -0.010543252, + -0.02149348, + 0.022895947, + 0.007499141, + 0.023432784, + -0.011938601, + 0.015836064, + 0.0032769043, + -0.00723568, + -0.0029498257, + -0.029079018, + 0.019079467, + 0.0042695915, + -0.0075662127, + -0.015265755, + 0.02369007, + -0.0041547427, + -6.746588E-4, + -0.0013836459, + 0.0018931802, + -0.0069496892, + -0.010420264, + -0.009642911, + -0.014526642, + 2.8803923E-5, + 0.019951241, + -0.011651432, + -0.016409716, + 0.0020144493, + -0.005048479, + -0.012856177, + -0.0017515753, + -0.0049741887, + 0.011903197, + -0.0071169278, + 0.0055036945, + -0.009749438, + -0.004092197, + 0.0021825433, + -0.01236127, + 0.0020767404, + 0.004969098, + -0.0025861026, + -0.0021734363, + 0.0022767032, + -4.232949E-4, + 0.002303933, + 0.0076244, + 0.022200204, + -0.008794713, + 0.0071918415, + -0.005384051, + -0.0076233693, + -0.005300834, + -0.01227353, + -0.0073346896, + -0.0089112, + 0.016229473, + 0.01369805, + -0.0025528693, + -0.0049303262, + -0.014084892, + -0.012734841, + -0.004081775, + 0.012352739, + 0.0076263202, + 0.008620172, + -0.006585935, + -0.005123085, + 9.831751E-4, + -0.0062388107, + 0.0038489264, + 0.010675732, + 0.0032468187, + -0.009673969, + 0.007427679, + 0.004419055, + -0.0057601365, + 0.01415461, + -0.013450548, + -0.014342717, + 0.005950537, + 0.0173543, + -0.016386395, + 0.023601308, + 0.010055367, + -0.01839697, + -0.0066401158, + 0.0104568275, + -0.024621768, + 1.1915732E-4, + 0.0393419, + -0.009332627, + -0.0016290549, + 0.0023093044, + -0.001006352, + -0.014606866, + 0.030620957, + -0.014727867, + 0.011433216, + -0.00821633, + -0.022050157, + -0.0042558378, + -0.02174783, + -0.0074283904, + -0.0031612928, + 0.0036136708, + -0.0062240153, + -0.0114787165, + 0.0064465567, + -0.0022643283, + 0.009490154, + 0.017673286, + -0.0129776215, + 0.013471865, + -0.0061261174, + 0.017164437, + 0.03580433, + -0.03487063, + 0.030960472, + -0.021437114, + 0.023462052, + 0.017756248, + -0.003509902, + -0.020435747, + 4.5538315E-4, + 0.018063024, + 0.034540348, + -0.023448579, + 0.0016333661, + 0.015948521, + -0.015499317, + 0.0012506759, + 0.022927916, + -0.022668082, + -9.537771E-4, + 0.0126966685, + 0.0028436175, + -0.013260002, + -0.016391458, + 6.0478997E-5, + 0.01171106, + -0.02754328, + -0.016739868, + -0.007182718, + 0.02479485, + 0.013437328, + -0.0115566775, + -0.04770577, + -0.011988077, + 0.010510409, + -0.01740726, + -0.017365215, + -0.0033321884, + -0.011053545, + 0.016595703, + 0.0062279045, + -0.014272332, + -0.001571973, + -4.5048536E-4, + 0.010381442, + 0.0072184224, + 4.7536418E-4, + 0.022873383, + 0.0042012567, + -0.013776953, + -0.013757228, + -0.04037158, + 0.009197346, + 0.00568607, + 0.024537638, + -0.03196987, + -0.017918596, + 0.029773012, + 0.0010195569, + 0.020831916, + -0.015972128, + 0.012869014, + -0.009875758, + 0.011709453, + 0.0033639017, + 0.012406155, + 0.009459598, + 0.00919714, + 0.0043594306, + -0.019674508, + 0.0030485059, + 0.03792228, + -0.0038472372, + 0.010577064, + 0.0011712763, + -0.015229344, + 0.010583886, + -0.03043059, + -0.021047434, + -0.020568049, + -0.012714652, + -0.023929296, + 0.02499882, + -0.0036922917, + 0.025409412, + 0.018652052, + 0.024180992, + 0.018696243, + -0.016556658, + 0.00246471, + 0.015820188, + 0.004604282, + -0.0053775343, + 0.008740544, + -0.008516108, + -0.0039215256, + 0.016255947, + -0.01802008, + 0.011165339, + -0.013424608, + 0.022282885, + 0.02581097, + -0.03696901, + 0.0018782885, + 0.010834538, + 0.007193632, + -0.019458216, + 0.018287443, + 0.023934048, + 0.015894558, + -0.047416776, + 6.486584E-4, + -0.04340956, + -0.014101916, + 0.028627735, + -0.014338902, + -0.0026347907, + 0.020134652, + -3.6652575E-4, + 4.894818E-4, + -0.0072582187, + 0.021441108, + 0.023404492, + 0.011129366, + 0.035963856, + -0.009183672, + 0.005235235, + 0.004895087, + -0.015058683, + 0.00834737, + -0.017552573, + -0.017531125, + 0.009344675, + 0.006647658, + -0.02596, + -0.04458357, + -0.003979353, + 0.016159903, + -0.004595862, + -0.0036724347, + 0.0020373785, + 0.006278555, + -0.009543168, + -0.022069255, + -3.5268115E-4, + 0.0041512214, + -0.032123543, + -0.014381468, + -0.0060184314, + -0.008953637, + -0.0040149554, + -0.0069572562, + 0.0011097733, + 2.1598064E-5, + -0.026610695, + 0.0113660935, + -0.003138306, + 0.012338727, + 0.00866789, + -0.024915917, + -0.0034226254, + 0.007814054, + -0.028514352, + -0.018600285, + -0.011208889, + -0.0043710023, + -0.0017692775, + 0.015964244, + 0.007045243, + -0.0078121885, + 0.02081461, + 0.017830623, + 0.008102534, + -0.036394864, + 0.004294559, + -0.0143475775, + 3.1767672E-4, + 0.028659984, + 0.015675927, + 0.005930568, + 0.03142934, + -0.013663935, + 0.0016542725, + 0.0014099294, + 0.01731863, + 0.01222833, + -0.002509514, + 0.005077982, + 0.026174344, + -0.021884711, + 0.015068231, + 2.7506077E-4, + 0.031039625, + 0.003831747, + -0.010179677, + -0.0052558617, + -0.008985976, + 0.007822568, + 3.3397737E-4, + 0.004078159, + 0.0038926082, + -5.5997306E-4, + -0.0043615745, + -0.022098856, + 0.033109408, + -0.0131257875, + -0.012128582, + -0.027475726, + 0.003566814, + -0.0028338437, + 0.013910947, + 0.035662565, + -6.238904E-4, + -0.010907124, + -0.0026966822, + 0.020772563, + 0.0016216439, + -0.011175137, + -0.0026274743, + 0.0034331097, + -0.0036928803, + 0.0082803685, + 0.015883556, + -0.01599857, + 0.016684953, + -0.0038041044, + 0.0077514285, + 0.020334547, + -0.014427009, + 0.006737689, + -0.006826508, + 0.003660882, + 0.02253164, + -0.0058394917, + 0.0052692736, + -0.0064728833, + 0.009229513, + 0.00961787, + -0.0019995614, + -0.0050602523, + 0.009401437, + -0.00815003, + 0.005955886, + -5.968841E-4, + -0.016320163, + -0.0068475828, + 0.027430141, + 0.012001346, + 0.011757693, + 0.0145446295, + 0.04184017, + 0.0032905692, + -0.0050153616, + 0.018107701, + 0.002369595, + 0.007341635, + -0.009802506, + 0.02768393, + 0.005820485, + -1.3793581E-6, + -0.028982364, + 0.008713193, + 0.0128595615, + -0.0047731106, + -0.0054213805, + -0.0049824505, + 0.032412924, + 0.001742264, + -0.021572677, + -0.012706487, + -0.021311298, + -0.05883775, + -0.005556746, + -0.002342422, + -0.01491999, + -0.010934386, + -0.015892722, + -0.0035816678, + 0.017298969, + 0.028806163, + -0.011325819, + 0.0048620435, + -0.017427357, + 0.010224091, + -0.0050554755, + 0.029281149, + -0.0353975, + 0.006150155, + -0.020040575, + 0.0015877603, + -0.01424399, + 0.002722131, + -0.021618657, + -0.014581706, + 0.0027361733, + 0.008714231, + 0.00318395, + -0.0035935852, + -0.019773137, + -0.007401089, + -0.011385678, + 0.01351839, + -0.0016792603, + 0.0026319711, + -0.02709967, + -0.0020819153, + 0.021441083, + -0.021155102, + -0.012075024, + -0.00939814, + -0.020476883, + 0.0027508377, + 0.016964445, + 0.010473842, + -0.0090036355, + 0.020393582, + -0.024676176, + 0.009630116, + -0.019505745, + 0.014402947, + 0.030322481, + -0.012544329, + 0.0011808585, + -0.028359829, + -0.009011674, + 0.018587269, + 0.018376438, + 0.0153370835, + -0.0062960153, + 0.0021606472, + -0.0051648202, + 0.014896073, + 0.0019893697, + 0.01083443, + 0.01270478, + -0.0081900805, + 0.00610831, + 0.024907239, + -0.0022266896, + 0.004208451, + 0.0111282, + -0.014871848, + -0.012822174, + 0.016321983, + -0.012490467, + -0.01748291, + 0.019767823, + 0.020043118, + -0.013557153, + 0.0026068469, + 0.00695762, + 0.008923215, + 0.012751499, + -0.03739047, + 0.03558375, + -0.012230142, + -0.005173302, + 0.033045173, + -0.0063459994, + -8.7700854E-4, + 0.0038788312, + 0.0017638565, + 0.00538967, + 0.0047905166, + -9.963928E-4, + 0.0022715926, + 0.0015619361, + 0.009914179, + -0.0121091325, + -0.00245442, + -0.01123763, + -0.013992503, + -0.0034892573, + -0.0027076846, + -0.006403049, + -0.035282057, + -0.011849332, + -0.012467684, + 0.011503777, + -0.026904209, + -0.013266323, + 0.015327497, + 0.0118233105, + -0.005863341, + 0.0013953435, + -0.0147144655, + -0.009652204, + 0.0025821235, + 0.028503673, + 0.0057513174, + -1.7317357E-4, + 0.012420375, + -0.03522472, + 0.004696376, + -0.0053958106, + -0.016829748, + -0.0071733133, + 0.0305882, + 0.0010564912, + 0.004204341, + -0.008466246, + 0.026975809, + -0.02601104, + -0.020706894, + -0.008986246, + 0.00498816, + -0.021747615, + 0.021773819, + 0.029225672, + -0.009842266, + 0.008717693, + -0.005993595, + -0.0012413462, + -0.0131161455, + 0.0068298993, + -0.0072271326, + 0.0140963225, + -0.018940391, + -0.0093471175, + 0.014775271, + -0.008928756, + 0.008777543, + 0.017256688, + 0.034753464, + 0.0021270933, + -0.014322045, + 0.016161015, + -0.0029366496, + -0.015585951, + -8.274306E-4, + 0.004124601, + -0.00583843, + 0.021069253, + -0.037729796, + 0.016099181, + -0.016565269, + -0.011715332, + 0.004539872, + 0.018196946, + -0.004787864, + -0.007063091, + 0.018433193, + -0.003923401, + 0.008827282, + 0.014233991, + 0.029084304, + 0.007152024, + 0.015933663, + 0.0011596747, + 0.0071387794, + 0.005301955, + -0.006159319, + -0.009912407, + -0.01368969, + 0.014249767, + 0.019704122, + 0.029045653, + 0.02064872, + -0.008144824, + -0.017966263, + -0.0021844262, + 0.01895186, + -0.013068963, + 0.011980948, + 0.011223138, + 0.034837566, + 0.0025863904, + -0.016939918, + -0.0022316542, + 0.011783074, + 0.017611515, + 4.1169938E-4, + 0.0024826536, + -0.0028689434, + -0.0034741343, + 0.0144981025, + 0.0012075695, + 0.020036718, + 0.0010227701, + -0.00891289, + 0.00865479, + 0.0051129395, + -0.01228703, + -0.012142708, + -0.0069220727, + 1.7458125E-4, + -0.0071239825, + 0.017808098, + -0.01516841, + 0.0053651766, + 0.010585829, + 0.0027834536, + -0.011033975, + -0.012638263, + -0.015584001, + 3.479401E-4, + -0.009766786, + 0.013076155, + 0.010997115, + 0.0070608556, + 0.027659034, + 0.0048729004, + -2.2065175E-4, + -0.021106869, + 0.00929239, + -0.0052827476, + 3.206223E-4, + 0.0065095085, + 0.01949093, + -0.01018682, + -0.028534103, + -0.0036218695, + -6.146701E-4, + -0.032709893, + 0.021318823, + -0.013224805, + -0.0062037944, + -0.01936874, + -0.006120865, + 0.0035059412, + -0.015051068, + 0.025543291, + -0.012554122, + -0.019393591, + 0.030039156, + -0.0015258664, + 0.009398954, + 0.012692894, + 0.003998179, + -0.021035599, + 0.002656101, + -0.014929308, + -0.0050280727, + 0.009166643, + -0.014448231, + 0.0104565155, + -0.010998287, + -0.008166185, + -0.006626835, + 0.02566227, + -0.03851774, + 0.019169187, + -0.017000692, + -0.0023680977, + -0.026106955, + 0.023566412, + -0.008231225, + 0.030243779, + 0.0224993, + -0.018286142, + 0.023950756, + -0.0398528, + -0.01622573, + -0.014081049, + 0.017385019, + 0.03993907, + -0.017465986, + 0.022768449, + -0.008118913, + -0.008790388, + 0.0155478995, + -0.024557596, + -0.020247376, + -0.003842876, + -0.0064445306, + 0.0035090754, + -0.019240716, + 0.03175171, + 0.03220823, + -0.018580029, + -8.3405524E-4, + 0.0058963983, + -0.007988533, + 0.0065966286, + 0.025530228, + -0.003177177, + -0.026628563, + -0.0057878275, + 0.01568619, + -0.014092185, + 0.009311974, + -5.1048433E-4, + -0.016094891, + 0.004193977, + -0.013774558, + -0.016473128, + 0.0019960494, + 0.0059935604, + -0.008025504, + -0.03359769, + -0.005244923, + 0.032646913, + -0.043519564, + -5.893117E-4, + -0.018661924, + -0.0060991384, + -0.0037495752, + -0.0033058268, + 0.014476839, + -0.016572073, + -0.01962135, + -0.013096995, + -0.0067620724, + -0.008493871, + 0.009870403, + 0.013339807, + 0.0028692903, + -0.005950627, + -0.010005854, + -0.0188927, + -0.010923841, + -0.007608942, + 0.01328102, + 0.0040555424, + -0.024626875, + -0.019932015, + -0.028139127, + -0.00453475, + 0.028580857, + -0.0044830823, + 0.023934484, + -0.011455743, + -0.027012272, + 0.012207978, + -0.004596805, + -0.014321252, + 0.0028563787, + -0.0057400456, + 0.016293371, + 0.009216119, + 0.0024110237, + 0.006151055, + 0.00331225, + -0.011016169, + 0.015129226, + 0.011083775, + 0.006915113, + -0.0033667574, + -0.026197467, + -0.006671532, + -0.012965677, + -0.0023296708, + 0.007893813, + -0.0059961285, + 0.02263674, + -0.022130348, + 0.009203722, + 0.011740188, + -0.008881883, + 0.014781337, + 0.015818896, + -0.012086536, + -0.005172047, + -0.009993954, + -0.010587665, + -0.0073622796, + 0.016915627, + -0.0044530905, + -0.020647733, + 0.0010309255, + -0.0029069155, + 0.016184134, + -0.011651184, + 0.0058238073, + -0.01653309, + 0.024232581, + 0.016024724, + -0.017321257, + 0.0065754983, + -9.347902E-4, + -0.00951911, + -0.018510614, + -0.005465081, + 0.0071150097, + -0.010993323, + 4.313085E-4, + 0.019366382, + -0.017796237, + 0.01431071, + -0.020761732, + 0.00793688, + -0.008838114, + -0.007936591, + -0.012044184, + -0.017269209, + -0.01779111, + 0.0031390851, + 0.014678923, + -0.0089845015, + 0.011389653, + 0.0028055161, + 0.010724365, + -0.041664455, + -0.002827275, + -0.021326981, + 0.025266131, + -0.017736033, + -0.0015869231, + 0.008160075, + 0.0020108249, + -0.012442943, + 0.014388283, + -0.0055244192, + 0.0024922993, + 0.006864841, + -0.0036192115, + -0.014235737, + -0.010340411, + 0.0013757335, + 0.013154522, + -0.016158653, + 6.570666E-4, + 0.0044114, + -0.019399898, + 0.023700815, + 0.0016270163, + 0.010566731, + 0.006077568, + -0.0043107257, + 0.019422375, + -0.033709943, + -0.009161167, + 0.028212875, + 0.0029199615, + 0.003342495, + 0.004620286, + 0.031631164, + 0.032384805, + -0.012616304, + -0.020922355, + -0.025506316, + 0.008320275, + 0.01567663, + -0.00514944, + 0.0014114345, + -0.011611461, + -0.017600497, + 0.013892931, + -0.019516218, + -0.042775083, + -0.00900408, + 0.021657338, + 0.014163348, + 0.022098104, + 0.023387669, + 0.023289153, + -0.009124201, + -0.019563543, + 0.006646647, + 0.003953612, + -8.4838347E-4, + 0.0054965992, + 0.038347866, + -0.0080230115, + -0.019008845, + 0.00853375, + 0.014242409, + 0.0048080375, + 0.0035853959, + -0.0016753892, + 0.0050016157, + -0.0032981625, + -0.026002638, + -9.046378E-4, + -0.012268554, + 0.015823012, + -0.009768576, + -0.01361132, + -0.012264908, + 2.744966E-4, + -0.026516292, + 0.0031779967, + -0.014674005, + 0.012840979, + -0.019761784, + -0.013219774, + -0.019642005, + -0.0203051, + 0.0016617691, + 0.017638376, + -0.0112215895, + -0.015067198, + 0.012235606, + -0.024081532, + -0.008465214, + 0.0069001927, + -0.002732356, + 0.006476827, + 0.029540284, + -0.013260254, + -0.005109263, + -0.035423823, + 0.022737686, + 0.021313086, + 0.010349752, + -0.02101783, + 0.019132534, + -0.01753328, + 0.028298859, + -0.04077014, + -0.013746833, + -0.011571851, + 0.027189508, + 0.0100691, + 0.031639233, + -0.038465038, + 0.0072142226, + -0.019143619, + -0.0116531635, + -0.017060556, + -0.008046733, + 8.570431E-4, + -0.009860616, + -0.0029847778, + -0.022443345, + -0.0021619247, + 0.012995818, + -0.016190879, + -0.014128762, + -0.01671355, + -0.02355249, + -0.014700652, + 0.006954593, + -0.007028599, + 0.027612485, + 0.010716955, + -0.018447999, + 0.004362726, + -0.026575148, + -9.5963385E-4, + 0.003727399, + 0.0029463503, + 0.013333908, + 0.0074436534, + 0.02616559, + -0.0072520794, + -0.0015288427, + -0.028876226, + 0.0012671098, + 0.0069303634, + 0.030242732, + 0.010533421, + 0.0062171053, + -0.02967407, + -0.005603034, + -0.0051860884, + -0.0033912077, + -0.058833763, + -0.033714887, + -0.0026261695, + 0.01329767, + 0.010037755, + 0.0037673563, + 0.020458361, + 0.005776798, + 0.012798007, + 0.0018742621, + 0.0031729946, + -0.005332628, + -0.008236462, + 0.011273481, + 0.0034489643, + 0.02927322, + 0.0185159, + 0.014286155, + -0.009008239, + 0.016280001, + 0.0121853985, + 0.0095411, + 0.009078822, + -0.023757935, + -0.007547002, + -0.01233247, + -0.017036166, + -0.011706538, + -0.0052575967, + 0.0014308433, + -0.038010843, + -0.020759955, + -0.005494975, + -0.008769005, + 0.026829151, + -0.028685264, + 0.009854904, + -0.01286639, + -0.015078399, + -0.022197835, + -0.0058179097, + 0.0063534146, + 0.00420269, + -0.022567779, + 0.013900759, + -0.03538322, + -0.027570067, + 0.04594393, + -0.0011271398, + 0.010411065, + -0.002165098, + -0.0057364036, + 0.00877161, + -0.010852511, + -0.0050960137, + 0.01220024, + 0.003394507, + 0.018000605, + -0.004663664, + -0.0011445666, + -0.009736136, + -0.002040975, + -0.02014965, + -0.011507054, + 0.034326624, + 0.01221626, + 0.022147141, + 0.01720932, + 8.2740455E-4, + -0.010015929, + -0.011151986, + -0.005254589, + 0.026902743, + -0.023686487, + -0.0019601698, + -0.010455052, + -0.0016622865, + -0.0049158568, + -0.014415171, + -0.008447245, + 0.008538897, + -0.003917118, + 0.017278595, + -0.01315994, + -0.020008305, + -0.014114646, + -0.004262722, + -2.0320526E-4, + -0.016886363, + 0.009834117, + -0.015851565, + -0.014585874, + 0.0027222726, + 0.008860915, + -0.025739996, + -0.0071967198, + -0.00843369, + -0.009915057, + 0.0025482087, + -1.6948949E-4, + 0.014507614, + 5.011659E-4, + -0.0060189124, + 0.0056595937, + -0.0038535646, + 0.012168944, + -0.008855319, + 0.01090281, + -0.019108048, + -0.008384939, + -0.015897984, + 0.0033966624, + 0.0034562342, + -0.010815124, + 0.0021944956, + 0.009118237, + 0.01775699, + 0.026971884, + 0.008141346, + -0.014697131, + -0.014787707, + 0.0042505856, + -0.010309405, + -0.0032946665, + -0.010519488, + -0.019577984, + -0.01822649, + -0.01568964, + 0.028070105, + -0.009436314, + 0.014579426, + 0.03633888, + -0.016761761, + 0.01610405, + 0.0017727081, + -0.022590103, + -0.010546538, + -0.005089057, + -0.001603563, + 0.0035891018, + 0.0076112286, + -0.014952886, + 0.010418018, + 0.027245928, + 0.0019133117, + -0.009688639, + -0.009367631, + 0.0030233776, + -0.01045114, + 0.0010943748, + -0.0127765965, + 0.004344653, + -0.0126022585, + -0.0040135654, + -0.016156001, + -0.028149888, + -0.010898732, + -0.019718388, + 0.015900524, + 0.018693391, + -0.013932581, + -0.01198527, + 7.4256272E-6, + 0.010014123, + 0.010767045, + -0.005133499, + -0.009262929, + 0.01669395, + -0.012400565, + -0.02468938, + 0.041549522, + 0.018161582, + -0.001642466, + -0.009190732, + -0.0027289947, + 0.010031247, + 0.025528677, + 0.016217614, + 0.01282297, + -0.00631269, + -0.014618061, + 0.0155141195, + -0.00931376, + -0.001583306, + -0.0032118438, + -0.009729101, + 0.01656434, + 0.007259832, + -0.031588785, + -0.0018776342, + 0.027405031, + 0.0035755471, + -0.0014390153, + 0.0022112473, + 0.025302915, + 0.0074024606, + -0.009560254, + 0.027134545, + -0.0028157823, + 0.0034996362, + 0.0051473877, + -0.03647046, + -0.016688075, + 0.0011543287, + 0.0050943494, + -0.025438972, + 0.03106468, + 0.017250072, + -0.020076327, + 0.017270347, + 0.0051361043, + 0.024336934, + 0.0020651566, + 0.0039888476, + 0.011948355, + -0.0034514423, + -0.02405197, + -0.0028270858, + -0.037750926, + 3.2037686E-4, + -0.0024225332, + 0.019177964, + 0.0053640027, + 0.024285085, + -0.025619294, + 1.7477047E-4, + -0.034569565, + 0.012442658, + 0.010658558, + 0.00972976, + -0.038707793, + -0.015449806, + 0.009700972, + -0.01858325, + 0.009813765, + 0.001370307, + -0.009267079, + -0.0036453144, + -0.017858386, + 0.008825167, + 0.008184247, + -0.0021096638, + -0.007783233, + 0.004558301, + 0.021671126, + 0.002850939, + 0.01398469, + 0.0030131275, + 0.021927062, + -0.004503793, + 0.00651647, + -0.0042346735, + 0.018041307, + 0.0024256771, + 0.023103274, + -0.018004324, + 0.015995178, + -0.016461428, + -0.010614408, + 0.020651225, + -0.012041698, + 0.0071041253, + 0.01807953, + -0.026452983, + 0.041065212, + 0.016988216, + -0.0046224818, + 0.008759482, + 0.0355471, + -0.010210142, + -0.005468922, + -0.0039258525, + -0.0014138623, + 0.030728746, + -0.0028642598, + -0.036990788, + -0.011833822, + 0.018314688, + -0.011866237, + 0.03424834, + -0.018928051, + 0.019905493, + -0.005482948, + 0.0010550825, + 0.0049145664, + 0.012446855, + 0.01004688, + 0.011134462, + 0.03000665, + -0.001413906, + 0.00933034, + -0.019864775, + 0.02287507, + -0.014369342, + -0.007364914, + 0.0065003172, + -0.010127891, + -0.026081484, + -0.020378627, + -0.0011782185, + -0.0067788935, + -0.0044947234, + -0.010487422, + 0.0030608617, + -0.040342208, + 0.019867983, + -0.025319656, + -0.02012688, + -0.0067967633, + 0.0114534125, + 3.3879883E-4, + 0.0011759999, + -0.013134637, + 0.0016308168, + 0.00799472, + -0.0037248733, + -0.017394489, + -0.003241374, + -0.002290742, + 0.023737762, + 0.010640867, + 0.0048359847, + 0.016739814, + -2.0343895E-4, + -0.025636086, + -0.0120300595, + 0.0055359397, + 0.01637087, + -0.0042804857, + 0.017989514, + 0.0036427523, + -0.004294639, + 0.0056634205, + -0.008141894, + -0.008135628, + 0.017414005, + -0.0024177523, + 0.00870848, + -0.0022372357, + -0.007142604, + 0.006035294, + -0.007326825, + -6.4176845E-4, + 0.002732152, + 0.024527686, + 0.0156122595, + -0.003430573, + -0.010910552, + 0.007013728, + -0.0020397485, + -0.007826017, + 0.020579085, + -0.0085012065, + -0.014905151, + 0.015053145, + 0.007456542, + 5.436421E-4, + 0.011223858, + 0.01746643, + -0.01811002, + 0.004272307, + 0.027755434, + 0.007059612, + -0.0024558033, + 0.0012482464, + -0.010427527, + 0.027253691, + -0.02012622, + -0.022360532, + -0.008747941, + 0.021641204, + -0.0040618414, + 0.0018546458, + 0.0063938466, + -0.002851087, + -0.0279748, + -9.3305955E-4, + 0.009768139, + -0.007300491, + 0.02265528, + -5.935123E-4, + -0.03506459, + -0.04466643, + 0.0025452275, + -0.0146497255, + 0.007328589, + -0.009399243, + -0.0041047167, + -0.013023938, + -0.026894337, + -0.022063628, + -0.032288376, + -0.010462202, + 0.010115362, + 0.050758567, + -0.028118294, + 0.0035793972, + 0.012674088, + 0.011192197, + -0.012131656, + -0.031635437, + 0.006383273, + -0.016717488, + -0.00448139, + 0.0033330892, + 0.003830193, + -0.0097348, + 5.916476E-4, + 0.01931305, + 0.00833408, + -0.0021700265, + -0.021211509, + -0.017015891, + -0.018556267, + 0.005794279, + 0.009109259, + -0.020975439, + 0.0025966996, + 0.01916384, + -0.0072927675, + 9.5175806E-4, + -0.016514894, + -7.3894754E-4, + 0.017812999, + -0.01676644, + 0.02504034, + 0.002039594, + -0.016239222, + 0.0010316777, + 0.012520504, + -0.020865306, + 0.02663318, + -3.8015033E-4, + 0.019718185, + -0.0166369, + 0.010419772, + -0.023534808, + -0.006108288, + -0.015465614, + 0.010449059, + 0.013820206, + -0.010704219, + 0.0082672145, + -0.0010930982, + 0.021504283, + 0.003554233, + 0.021127142, + -0.0116018485, + -0.009104044, + 0.0029934263, + 0.017095856, + -0.0033137908, + -0.0022834996, + -0.0046121157, + -0.018341616, + 0.0036632423, + -0.021996455, + 0.0021095811, + 0.0017559387, + -0.01431664, + 0.001618937, + -0.016856484, + 0.021210764, + -0.009203366, + 0.01398241, + -0.017809285, + 0.007323703, + 0.001196342, + -0.018231023, + 0.010341012, + 0.025033778, + -1.5810908E-4, + 0.003991745, + 0.009830393, + -0.009688804, + -0.020523272, + -0.0012569128, + -0.003911888, + 0.0026164753, + -0.022452533, + -0.011646343, + 0.012868136, + 0.041852508, + -0.014279986, + -0.00965453, + -0.010485026, + 0.0061941245, + 0.027057504, + -0.018057957, + 0.0033979288, + 0.015713073, + 0.0015618731, + -4.1884533E-4, + 0.016913414, + -0.031388994, + 0.0048265057, + 0.004664673, + 0.0051720897, + -0.0019994534, + 0.0074468437, + 0.013848628, + 0.025977656, + 0.015864281, + -0.018959163, + 0.012269499, + 0.010599059, + 0.0056660273, + -0.0032748212, + 0.014128251, + -0.02450055, + -0.0033316112, + -0.016787421, + -0.0043950276, + 0.006706996, + -0.0028572362, + 0.009281743, + 0.0052737873, + -0.018986735, + 0.012468161, + 0.007071352, + -7.477487E-4, + 0.012103058, + 6.088623E-4, + 0.002679795, + 0.016452476, + 0.0021692652, + 0.03765349, + -0.016321411, + -0.008890364, + 0.0019940874, + 0.016136825, + 0.011815054, + 0.02948088, + 0.013055959, + -0.013852085, + 0.008670628, + -0.0038779974, + 0.013692616, + 0.006931178, + -0.017828265, + 0.0041678464, + 7.967658E-4, + -0.026046852, + -0.009489433, + 0.0021662272, + -0.009358948, + -0.016365115, + -0.02714642, + -0.0031706877, + 0.015466956, + 0.0053398884, + -0.0011583846, + 0.017247781, + -0.014395496, + -0.026800077, + 0.0036203258, + 0.023953367, + 0.0038452093, + -0.0035295044, + -0.005597226, + -0.018675482, + -0.020597238, + -0.029452326, + 0.023555428, + 0.006958088, + -0.018395523, + -0.00918042, + 0.0074218367, + -0.03560958, + -0.014807314, + 0.008610839, + 0.0030378066, + 0.0033743528, + -0.00963055, + -0.0072324798, + 0.009266405, + -0.007599926, + 0.021308385, + -0.0010350425, + -0.017093893, + 0.0026176244, + -0.02166456, + -0.011195406, + -0.0059255953, + 0.024131095, + -0.0066102366, + 0.010352286, + -0.0066962275, + 0.015219104, + -0.009923391, + 0.01082248, + -0.007942179, + 0.0016535703, + 0.0049322285, + 0.009751624, + 0.00578272, + 0.016541366, + -7.1448873E-4, + -0.030397082, + 0.016707396, + 0.0059861555, + -0.02529822, + -0.011684612, + -0.0026266137, + 0.0011371528, + -3.466736E-4, + 0.0013579127, + 0.0045331777, + 0.0040271236, + 0.0013781531, + -0.0040868153, + 0.0018517683, + 0.026999084, + 0.0037950405, + 0.009323965, + -4.8612905E-4, + -0.0014095228, + -0.009660473, + 0.03000496, + -0.00347651, + -0.0050273295, + 0.007532681, + -0.0024320402, + 7.9490204E-4, + -5.3431344E-4, + -0.0024312607, + 9.818606E-5, + -0.031019164, + 0.005069131, + 0.0072895074, + -0.0033235578, + -0.01875703, + 0.021321641, + 0.0038886415, + 0.019868592, + 0.0089274505, + -7.782493E-5, + 0.00815519, + 0.038080033, + -0.0065196073, + 6.812481E-4, + -0.019352173, + -0.008478791, + 0.017040068, + -0.010673533, + -0.017252207, + 0.018277511, + 0.0015023793, + 0.013034175, + -0.01660919, + -0.0051623913, + 0.004616737, + -0.012219755, + -0.021431644, + -0.0027700034, + -0.020789849, + 0.030946098, + -0.016611325, + -0.026106725, + 0.003805934, + 8.880258E-4, + 0.0034956036, + 0.0021549065, + -0.009967209, + -0.044018142, + 0.016599402, + 0.022213418, + -0.0091691585, + -0.022711027, + -0.010329736, + -0.0029115858, + -0.008811286, + 0.0029576912, + -0.009113936, + 0.007725743, + -0.006040896, + 0.01604374, + -0.021010414, + 0.020312231, + 0.0174718, + -0.02509126, + -0.019543389, + -0.007820795, + 0.012874853, + -0.0093338825, + 0.008672569, + -0.010355272, + 0.0070469254, + 0.0053212834, + 0.020394528, + -0.019973895, + 0.011506414, + -0.011165381, + 2.8373292E-4, + -0.017927065, + 0.021761794, + 0.011388397, + 0.01720665, + -0.0017065915, + 0.02667577, + 0.018785076, + 0.008384587, + -0.009254129, + 0.018096432, + 0.007988912, + 0.010145813, + -0.0033822884, + -0.03119313, + 0.0072753388, + 0.0069903624, + -0.0128085, + -0.01737636, + -0.018549824, + 0.014452364, + 0.0067025167, + 0.0021096342, + -0.0020596616, + -0.025007598, + 0.020922178, + 0.014868499, + 0.0039925165, + 0.01919191, + -0.0075136945, + 0.005866294, + 0.0051991907, + -0.0065881847, + 0.023377275, + -0.00433243, + -0.0011198381, + -0.005759632, + 0.004590678, + -0.010076759, + 0.010812088, + -0.029821314, + 0.011211488, + -0.018504325, + 0.02072128, + 0.0037663602, + 0.01998273, + -0.0023703235, + -0.039879713, + -0.01623245, + -0.0014658793, + -0.017203238, + -0.0105188405, + 0.007200572, + -0.005764067, + 0.017088363, + 0.018748064, + -0.03576152, + -0.00809251, + -0.0075003128, + 0.008306393, + -0.0014190977, + 0.004430417, + 0.03064718, + -0.001257285, + -3.277845E-4, + -0.008139286, + -7.2264473E-4, + -0.010087033, + 0.009458975, + -0.0047756545, + -0.0052548912, + -0.0026442467, + -0.027664086, + 0.0051041297, + -0.0031115178, + -0.029489543, + 0.015145686, + 0.006192451, + 0.03333437, + -0.0055443775, + -0.0035995892, + 0.013905027, + 4.5186447E-4, + -0.01384228, + 0.016607188, + -0.005582817, + 0.009951027, + 0.0019802127, + 0.0030196456, + 0.0055496125, + -0.010071076, + 0.017788613, + -0.017447507, + -0.0066388445, + 0.006393291, + -0.0043634246, + 0.0018177894, + -0.00406576, + 0.04376597, + -0.0024614946, + -7.4598816E-4, + 0.022018492, + 0.018512685, + 0.0060047987, + -0.009632779, + -0.035237703, + -0.009254021, + 0.018743422, + -0.022564458, + -0.009270332, + 0.010806057, + -0.028599406, + 0.005650567, + -0.01945627, + -0.015108851, + 0.006791637, + 3.5580303E-4, + 0.002869041, + -0.0113098, + 0.011642032, + -0.026008533, + 0.016664833, + 0.018379854, + 0.015269555, + 5.847876E-4, + 0.0041524065, + -0.007996851, + 4.8980064E-4, + 9.671167E-4, + 0.001203587, + -0.011899368, + -0.010633039, + 0.017409474, + 0.023801642, + 0.022476453, + -0.028868428, + 0.0064093997, + -0.0023265788, + -0.016734866, + 0.022678778, + -0.018369468, + -0.011742319, + -0.021884277, + -0.0020584948, + -0.014692779, + -8.6372846E-4, + -0.021740947, + -0.0020627878, + -0.011478792, + -0.0023355777, + -0.018973876, + -0.015849061, + 0.0238039, + 0.013357062, + 0.01089931, + 0.004944304, + 0.0034682697, + -0.0014779661, + 0.014671269, + 0.006511324, + -0.020968566, + 0.002000028, + -0.0046235765, + -0.010252944, + -0.012615886, + 4.8784874E-4, + 0.031157928, + -0.019512594, + -0.0055878013, + -0.008613675, + 0.012301662, + 0.013014556, + 0.029573651, + 0.01896618, + -0.00234466, + -0.008013196, + -0.003162042, + -0.015648836, + 0.0057598352, + -0.029903427, + -0.005028766, + 0.0051870495, + 0.004115652, + -0.0026483857, + -5.185774E-4, + 0.018394977, + 0.04264672, + 0.011162803, + 0.008284048, + -0.024598647, + 0.02542667, + 0.013195395, + -0.005203362, + 4.5602216E-4, + 0.019337308, + -0.0062247734, + 0.0072588013, + 0.02007807, + -0.004442176, + -0.0043950733, + -0.014978723, + -0.020378156, + -0.0085602235, + 0.00915908, + -0.0013844173, + -0.009543852, + 0.028782565, + -0.017747445, + -0.0012906626, + 0.010321468, + -0.015052144, + 0.029018145, + -0.010331746, + -0.0099984165, + -0.005083323, + -0.008169764, + 0.0018743288, + -0.006991459, + -0.012857266, + -0.00448046, + 0.0072553945, + 0.01005203, + 0.003444419, + -0.0034129394, + -0.013765618, + -0.009380448, + -0.009682616, + 0.010124714, + 0.033266336, + 0.03294442, + -0.0033713363, + -0.022579655 ], - "paletteEmbedding": [ - -0.04918699, -0.07515118, -0.04075148, 0.02012839, -0.021211032, - 0.008501942, 0.046222996, 0.002843207, -0.073753946, 0.008250379, - -0.0051548406, -0.016015785, -0.0066680177, 0.027198052, 0.014481539, - -0.022948321, -0.042177036, 0.04398938, 0.015970716, -0.002291065, - -0.006351962, -0.005620938, 0.033888757, 0.04397154, 0.01293613, - 0.03668539, 0.029950112, -0.03330548, -0.05026422, -0.026453385, - 0.06871929, -0.0138533395, -0.016115163, -0.012495277, 0.012941427, - -0.042747844, -0.018793257, -0.031828202, 0.006965755, -0.03907157, - -0.03747161, -0.01822964, 0.013386874, 0.012218864, 0.012730123, - -0.026718697, -0.011485581, -0.008942531, 0.014637763, -0.025526347, - -0.008984696, 0.031484816, -0.01752078, 0.0054397867, 0.0034646986, - -0.0319286, 0.01355137, -0.012437899, -0.017205626, 0.03568616, - 0.010301149, -0.034481645, 0.0032477411, 0.032620534, -0.031302564, - -0.029021595, -0.013072618, 0.034646492, -0.022344079, -0.0060326313, - 0.007139536, -0.03252046, 0.0216991, -0.030303475, -0.037969023, - -0.041879814, -9.849924e-4, 0.021136053, -0.034378517, -0.010539014, - 0.015897052, -0.018042171, -0.028876185, 0.014964046, -0.013901597, - -0.026257945, 0.043852486, 0.06492171, 0.017673912, 0.012590948, - 0.04867067, 0.062223382, 0.02461364, -0.023690756, -0.06961573, - 0.060153496, 0.022274954, 0.013980907, 0.07085198, -0.024484513, - -0.008986456, -0.0078411065, -0.0028213002, 0.023474954, -0.03763596, - 0.041942142, 0.020935463, 0.0125092985, 0.007993885, 0.010724376, - -0.018183224, -0.01449341, 0.008013325, 0.02468048, 0.005619025, - -0.022663813, 0.023808265, -0.0069555705, -0.032811124, -0.040726587, - 0.05414531, -0.012299164, 0.07017336, -0.027305014, -0.01588955, - 0.02589367, -0.012775765, 0.052169807, -0.012230309, -0.0638199, - 0.013718283, -0.013792218, -0.008436938, 0.012873056, 0.00558096, - -0.021256601, 0.055494893, -0.026117414, -0.010416656, -0.043014158, - 0.0205858, 0.021895286, -0.02547865, -0.025781833, -0.006083815, - 0.026952282, 0.0043707457, -0.02719378, 0.006526122, -0.010909814, - -0.010997218, 0.034334593, 0.0049159112, 0.05564663, 0.055348128, - -0.02649794, -0.059771817, 0.0181111, -0.023398768, -0.039683003, - 0.024830507, -0.01160531, 0.023421684, -0.05198153, -0.032341685, - 0.0062115844, -0.034038175, 0.046530154, -0.03752521, 0.0020285826, - 0.023944236, 0.010351916, 0.03916346, -0.0043724743, -0.022426106, - 0.021177713, -0.026260821, -0.030827971, 0.03600008, 0.0056398865, - 0.07153789, -0.027282469, -0.0012439737, 0.006481795, -0.0071495846, - 0.019521732, 0.0027388704, 0.037400726, 0.025024945, 0.026707783, - 0.031435408, 0.048164736, 0.023335472, -0.013250467, -0.0060000243, - -0.06166743, -0.023484236, -0.032704413, -0.0058506257, 0.035147857, - 0.04139677, 0.026063336, 8.307945e-5, 0.06457412, 0.042066246, - -0.07294284, -0.0065994794, -0.023537358, -0.06778114, 0.035500348, - 0.027119603, -0.014912011, -0.04079154, 0.051908318, 0.012659419, - -0.007839887, -0.030010365, -0.01833124, -0.0077575534, 0.0013927616, - -0.010155773, -0.0049867267, 0.029709911, -0.031773414, 0.002682295, - 0.02235333, -0.01437311, -0.050526228, 3.8714375e-4, -0.004349716, - 0.010666539, -0.007209883, -0.01791333, 0.019851295, 0.0012617705, - 0.03312713, -0.038230155, 0.038617995, -0.023465304, -0.011922562, - -0.0042054625, -0.02269619, 0.07071573, -5.791702e-5, 0.020915264, - -0.018681362, 0.02981858, -0.038855, 0.02349838, -0.05294479, - -0.04629563, 0.0378961, 0.011385408, -7.1802567e-4, 0.050205994, - -0.0117668165, -0.010042914, -0.013589771, 0.02584033, 0.02720786, - 0.014074976, 0.010502287, -0.01942935, -0.008257158, 0.05725429, - -0.012354947, 0.0063102674, 0.008542636, 3.398689e-4, -0.0506395, - 0.045324598, -0.024153534, -0.03055494, 0.046868574, -0.032046445, - 0.022424113, -0.020311804, 0.021974076, -0.020820456, -0.012092255, - -0.010484254, 3.207048e-4, 0.0119194435, 0.019703865, 0.02502116, - -0.031143127, -0.04122333, 0.0014160387, 0.09331615, 0.03296364, - -0.07463364, -0.0053138277, -0.007888528, 0.07182602, 0.00855474, - 0.015892651, -0.026361445, -0.026852358, 0.0076542473, 0.033473816, - 0.09730425, 0.03408207, 0.025801582, 0.004262449, -0.04356593, - 0.012221583, -0.034331996, -0.032626648, 0.021431563, -0.013830581, - 0.019332211, 0.0076222867, 0.018476633, -0.042472243, -0.03203872, - 0.0058846856, 0.01548872, -0.007145659, -0.0018284763, -0.02707731, - -0.012985719, 0.02678784, 0.026384912, -0.040078815, 0.035146594, - 0.03303371, -0.0028218653, 0.06019636, 4.124e-4, -0.031766567, - -0.0022385537, -0.001963405, -0.02950168, -0.019774368, -0.033138897, - -0.047579657, -0.020704804, -0.05454731, 0.024361908, 0.010045273, - 0.0278409, -0.018987946, -0.022028133, 0.028051736, 0.04941485, - 0.034453075, -0.030328212, 0.039049964, -0.01746356, 0.026129609, - 0.041850608, -0.015552927, -0.0065590004, 0.004382233, -0.036514577, - -0.028482074, 0.02779162, -0.0039282683, -0.012147542, 0.025850592, - -0.012114076, 0.11126697, 0.03380799, 0.021147912, 0.0051390785, - 0.016629187, -0.017410114, -0.06315658, 0.047126092, -0.07028943, - -0.0113242185, 0.017176371, 0.016639017, 0.011888446, 0.015481445, - 0.044633638, -0.07162297, -0.042500954, 0.011028785, 0.020529864, - 0.002584973, -0.0052577797, -0.01731017, 0.028144473, 0.0069433525, - 0.003669921, 0.009529375, 0.016071713, -0.0047831824, 0.014897273, - -6.1315036e-4, 0.004334861, 0.020102464, 2.9865073e-4, -0.044807173, - -0.0025349648, -0.025824038, 0.02679967, 0.035888884, 0.020195965, - -0.035138305, -0.014819038, -0.043027658, -0.0073422287, -0.012558934, - -0.028690577, -0.035807956, -0.0033042545, -0.013214125, -0.008730358, - 0.03588617, -0.06147398, -0.010358265, -0.030017035, 0.008012329, - -0.024259187, 0.052051824, -0.0278059, 0.020004313, -0.031061018, - 0.0307552, 0.032649897, -0.0070310356, -0.021144032, 0.028386775, - 0.0027664853, 0.07065565, -0.04502709, 0.027583892, 0.019370679, - 0.01188327, 0.0046804384, -0.017547349, -0.013102622, 0.026830168, - 0.058318503, -0.005684271, -0.010466292, -0.062007844, -0.020388108, - 0.016314788, -0.05257261, 0.029866451, -0.008558125, 0.014289534, - -0.0634548, 0.041391544, -0.039367203, -0.007615832, -0.0012010739, - -0.021823969, -0.03570644, 0.013072226, -0.012164069, 0.06038717, - -0.04095531, 0.009771028, 0.015873801, 7.964641e-4, 0.03311777, - 0.001634476, 0.012770163, -0.079299554, 0.029166825, -0.044917632, - -0.03571883, -0.028955856, 0.04258105, -0.0026467417, 0.028994413, - -0.015259621, -0.01598666, 0.026812138, 0.027412776, -0.0029101009, - 0.01398918, -0.031000389, 0.050737925, -0.014656271, -0.042285148, - 0.017327392, -0.0036112436, 0.023511132, -0.013364876, -0.006897125, - 0.0072670537, -0.004993465, 0.0057429173, 0.02915093, -0.03381612, - 0.020417012, 0.048975393, 0.015414374, -0.053993564, -0.0066192574, - -0.006349496, -0.019477783, 0.032339793, -0.062251173, -0.0026600827, - 0.009528638, 0.0015548154, 0.016008811, 0.028695345, 0.06034123, - 0.022122484, -0.008895224, 0.016001498, -0.04748523, -0.03018626, - -0.012384183, -0.007918392, -0.029584209, -0.016448412, -0.05940015, - 0.01288893, 0.028490756, -0.029404456, 0.010374143, 0.020131942, - -0.009165689, 0.06438291, -0.015160869, -0.017657796, -0.10740018, - -0.006621657, -0.0029850637, 0.008652752, 0.007457663, 0.09436644, - -0.03276038, 0.043061495, -0.025844403, 0.028188972, 0.046883352, - -0.011458407, -0.01796792, -0.059783123, 0.028446907, 0.021503717, - 0.0061850655, 0.03415058, -0.03879149, -0.041785415, 0.019340787, - -0.023911802, 0.0031673764, -0.054265983, -0.014461587, -0.023050461, - 0.038769744, -0.029635552, -0.03404541, 0.020261092, 0.032562442, - -8.3302835e-4, 0.0032440424, 0.014731866, -0.011374287, -0.008258908, - -0.020279206, 0.02691507, -0.0059536216, -0.009011764, -0.021704711, - -0.011664866, 0.004651893, -4.573567e-4, -0.014581225, -0.015306074, - 0.0036952104, -0.022061715, -0.043745086, 0.0021657252, -0.07328732, - -0.02471778, 0.019043557, -0.025971673, -0.0074714227, -0.05698617, - -0.053113967, -0.041004553, -0.019062068, -0.020059211, -0.0016681594, - 0.07899993, 0.014005826, 0.022658544, -9.979781e-4, 0.036119346, - 0.0170294, -0.02238772, 0.041367732, 0.010936633, -0.02714685, - -0.07010455, -0.014962528, 0.032806285, 0.03155239, -0.004117577, - -0.051037043, 0.038599484, -0.018451052, 0.0069075893, -0.041959766, - -0.017305084, 0.0065351143, 0.07574592, 0.02300133, -0.027993849, - -0.0012100274, 1.4635101e-4, 0.016187686, -0.0023842754, 0.044617143, - 0.001153821, 0.027729742, -0.055780496, -0.029823245, 0.04484327, - -0.020304771, -5.472309e-4, 0.015488266, -0.06713526, 0.011827304, - 0.021505382, 0.008479815, -0.023167733, 0.018189613, 0.020856764, - -0.017168459, -0.008422578, -0.019323248, -0.07225648, -0.034688372, - -0.057509862, -0.047480833, 0.016410563, 0.0037874205, -0.015186282, - -0.021310179, 0.012559643, 0.028122425, 0.0459794, -0.008216317, - 0.027255947, -0.0645385, 0.08574853, -0.0022817636, 0.002338317, - 0.04355066, -0.004881506, -0.0063966396, -0.037873443, 0.0030780837, - -0.027569002, 0.06844724, 0.014419192, -0.0075118067, 0.002530484, - 0.050228834, -0.019069746, -0.06335457, 0.05246648, -0.021066502, - -0.001722295, -0.027318744, -0.0130343, 0.018723082, -0.004774331, - 0.0077766837, 0.011900441, 0.07362819, 0.014625785, -0.0018898221, - -0.005994755, 0.038225744, 0.005004484, -0.038316403, -0.05998353, - -0.027436795, -0.00985378, 0.032833084, -0.022429755, -0.0077413493, - -0.0014535458, 0.013117879, 0.03599626, -0.010819157, -0.009259481, - 0.0052720113, 0.003536939, 0.026614556, 0.004756018, 0.023400705, - 0.021116445, 0.014524606, -0.004170249, 0.019049969, -0.004147394, - -0.043108203, 0.035148967, 0.023303377, -0.01637037, -0.019595727, - -0.041253142, 0.052502185, 0.07280812, -0.022453709, 0.008454528, - -0.042394318, 0.020607883, -0.016270386, -0.042676583, -0.0159324, - 0.024935717, -0.017824685, 0.016348273, -0.0030884198, 0.04413393, - -0.011776184, 0.058361173, -0.010942313, 0.031183619, 0.022342397, - -0.013515384, -0.015637169, -0.020028358, -0.019886708, -0.006585348, - 0.02996644, -0.0030824952, 0.0018968965, 0.0022296517, -0.039095543, - 0.02037074, -0.023546819, -0.011147058, -0.011258046, -0.012438322, - 0.049673066, -0.018797118, 0.008701194, -0.0349518, 0.05621024, - -0.0152347, -0.018320996, -0.031499576, 0.02177258, 0.030463967, - 0.017891299, -0.0056602517, -0.011848709, -0.012302642, 0.027326822, - 0.038816582, 0.0723079, 0.010644196, -0.04028789, -0.052673608, - -0.014895078, 0.013305267, -0.095113754, 0.009320779, 0.019785605, - 0.04253278, 0.024021374, 0.012072684, -0.06705727, 0.0065345406, - 0.015992247, 0.04241451, 0.022314789, 0.029112013, 0.03262765, - -0.0013895273, -0.01899895, -0.009135964, -0.004327702, -0.035738192, - 0.03954251, 0.050024107, -0.048128612, -0.0052907793, -0.013235495, - 0.0039791716, 0.03992851, 0.012770471, -0.030665955, 0.07187668, - 0.004749392, 0.007870775, -0.006113616, 0.03990584, -0.050269824, - -0.06681137, 0.020848157, -0.02116387, -0.006733434, -0.100301266, - -0.045961637, 0.0054792007, 0.005934699, -0.021684289, -0.0010038562, - 0.11166021, -0.028606383, -0.0035008977, 0.016731147, 0.009544512, - 0.044792823, -0.0032659122, 0.0020508075, -0.0017546765, 0.014541531, - -0.017308846, 7.9340383e-4, -0.043196682, -0.072951615, 0.030518275, - -0.03282458, 0.027910339, 0.028611086, -0.0065858085, -0.011590557, - 0.015363681, -0.022607328, -0.026352042, -0.048582464, 0.049431365, - 0.05121456, -0.014681543, -0.015565308, -0.029829519, 0.039299525, - -0.025523959, -0.019283224, 0.02934145, 0.060258497, 0.02672651, - -0.039858785, 0.065463595, -0.017711543, -0.01068045, -0.04280625, - -0.030218078, 0.025214737, -0.023811992, 0.005240681, -0.017562965, - -0.0050613293, -0.06943186, -5.276589e-4, -0.054959364, -0.033270232, - -0.019149916, 0.04082155, -0.037080333, 0.023815675, -0.016438952, - -0.02916173, 0.003213606, -0.057608053, -7.102565e-4, 0.016913902, - -0.039687674, -0.016575081, -0.010098805, 0.009555872, 5.801953e-4, - -0.009000611, -0.03454685, -0.028099565, -0.02923488, 0.010729876, - 0.030440183, 0.014351722, 0.024633203, 0.0034839804, -0.0011930468, - -0.044192128, -0.050585587, 0.017559826, -0.029194279, 0.05060147, - 0.007435827, 0.02208297, -0.021669716, -0.019708883, 0.011792704, - 0.042372026, 0.0012037373, 0.03999855, 0.005776725, -0.012649185, - 0.003094459, 0.012441617, 0.0028630744, 0.009181421, -0.077902764, - 0.019229142, 0.038516555, -0.053027328, -0.020285122, 0.018391054, - 0.02669013, 0.03021953, -0.00614415, 0.099934414, 0.03424073, - 0.033809416, -0.0052982066, 0.031728532, 0.0032231836, -0.01337151, - -0.0016495682, 0.026653752, -0.012973501, -0.057793703, 0.050088048, - -0.015887046, -0.0062046126, -0.031336438, -0.026271375, 0.001671902, - -0.007479586, -0.03661686, 0.03138546, -0.016744804, -0.0096823, - -0.017772006, -0.03673432, 0.02695824, -0.043818112, -0.0023820798, - 0.030331504, -0.017216325, 0.043916903, -0.028471595, -0.053505275, - 0.005801362, -0.034796115, 0.0031202675, -0.0153471, -0.042145617, - 0.0034026424, -0.020935161, -0.06719629, 0.044537827, 0.0041693924, - 0.009916044, 0.012298389, 0.042396042, -8.359904e-4, 0.02505124, - -0.022903152, -0.023232097, -0.017824214, -0.033360656, -0.009853168, - 0.0075082122, -0.02511779, 0.01102599, -0.015038352, 0.0075507914, - 0.0044569853, -0.0056786574, 0.028494714, 0.0038687002, -0.04782, - -0.020716399, -0.024644407, 0.009166622, 0.009319052, -0.010231067, - -0.0014996825, -0.065779805, -0.029944776, 0.021172691, -0.004493648, - -0.01878021, -0.046633102, 0.08376708, -0.026027778, 0.044300113, - 0.019050553, -0.023109801, 0.0515365, 0.0037785196, -0.023811586, - -0.019818934, 0.01876633, 0.044025168, -0.0016017292, 0.031533804, - 0.04399091, -0.04502786, -0.065677434, -0.01274795, -0.035137024 + "paletteEmbedding" : [ + 0.04292064, + 0.024802417, + -0.0044846274, + 0.021045865, + 0.0043817414, + -0.014640517, + -0.0064443722, + -0.0078114225, + -0.075732745, + 0.015828054, + 0.0031544568, + -0.011873178, + 0.008790799, + -0.010060317, + 0.025487952, + 0.057035144, + -0.015380763, + 0.002023982, + -0.016765894, + -0.0074360156, + 0.069172844, + 0.030048247, + 0.052016906, + 0.0026878088, + 0.038333695, + 0.0077233734, + -0.02361774, + -0.05805934, + 0.047518082, + 0.0094401175, + 0.057038084, + 0.013826397, + 0.035346966, + 0.027525079, + 0.007918067, + 0.0032578728, + -0.024229046, + -0.0398675, + -0.033720575, + 0.026685264, + -0.024973761, + 0.010332552, + -0.0410418, + 0.0073065623, + -0.015591179, + -0.014665435, + -0.0120048355, + 0.048752915, + 0.004097631, + -0.011433532, + 0.0052331574, + 0.03233484, + 0.041596137, + 0.004396498, + -0.036621504, + -0.028599065, + -0.028107733, + -0.010479441, + -0.038727533, + -0.0020777248, + -0.034749806, + 0.0028949247, + -0.010437658, + -0.051711645, + 0.07742952, + 0.04109063, + -0.0013571418, + 0.018507736, + 0.025652613, + -0.011852299, + 0.014021067, + 0.054945417, + 0.011902922, + -0.044149157, + 0.021167794, + -0.020666176, + 0.0012487608, + -0.044542797, + 0.04088613, + 0.06834722, + -0.057702675, + -0.015129482, + -0.027007697, + 0.02131061, + -0.005235516, + -0.025696164, + -0.017292242, + -0.021052757, + 0.0014753478, + 0.051622372, + -0.019282738, + -6.941381E-4, + 0.045791578, + -0.011753613, + -0.07403507, + -0.028333277, + -0.021608707, + 0.022898786, + -0.028806385, + -0.013866398, + 0.0061774235, + 0.053709436, + -0.016120251, + -0.033728313, + -0.003198923, + 0.0070685474, + -0.034197394, + 0.019542689, + 0.015801001, + -0.029941792, + 0.037122425, + -0.019408477, + -0.0012465751, + 0.027135631, + 0.024782805, + 0.04002602, + -0.025709229, + -0.020904671, + 0.045904037, + 0.022948325, + -0.04232871, + -0.005133022, + -0.010266749, + -0.01634511, + 0.048752252, + -0.028276334, + 0.037989028, + 0.033208787, + 0.014490414, + 0.0055254763, + 0.018005399, + 0.004698765, + -0.026223246, + -0.025446778, + 0.057733834, + 0.04707085, + -0.02167952, + 0.024820823, + -0.04104595, + 0.0021549982, + -0.025484953, + -0.03622297, + 0.047254752, + 0.01837091, + -0.011707918, + -0.04133757, + -0.02198751, + -0.04565816, + -0.0134211825, + 0.026789038, + 0.03351898, + 0.004333185, + -0.021022491, + -0.011932999, + -0.011576554, + 0.009979562, + -0.009715981, + -0.01306557, + -0.025945961, + -0.029710405, + -0.02147739, + -0.018052453, + 0.0025829813, + 0.05160156, + -0.025027076, + -0.035615657, + -0.0142240515, + 0.010873101, + -0.03211264, + 0.026534956, + -0.022218067, + -0.0368706, + 0.037336003, + 0.027786555, + 0.03822188, + -1.28366E-4, + 0.009348708, + -0.017885668, + 0.039935257, + 0.008147699, + -0.0018973742, + -0.005861345, + 0.052501068, + 0.047306474, + 0.067938566, + 0.030022219, + 0.009506523, + 0.028871497, + 0.02295505, + 5.438221E-4, + -3.0052834E-5, + 0.037870243, + -0.010959167, + -0.010010096, + -0.029747443, + -0.036113292, + 0.020024244, + 0.024034955, + -0.012293197, + -0.015642788, + 0.04545602, + 0.0611323, + -0.014141578, + 0.012092265, + -0.046255477, + -0.019204559, + -9.970888E-4, + 0.03247813, + -0.009346591, + -0.029707419, + -0.028613945, + 0.059868068, + 0.007514224, + 0.040033694, + -0.014678384, + 0.01560672, + 0.046961173, + 0.007542147, + 0.01912131, + 0.0046492624, + -0.016984018, + -0.022388792, + -0.016473219, + 0.015845839, + 0.012035488, + 0.02437376, + 0.0034803657, + 0.019290783, + -0.0048001017, + 0.009154079, + 0.007029598, + 0.0027822168, + -0.014923256, + -0.0182735, + 0.008968844, + -0.021724662, + 0.018993823, + 0.023910817, + -0.03004592, + -0.0040827217, + -0.018599454, + -0.02172394, + -0.013273586, + -0.0075573595, + 0.031142993, + -0.008613352, + -0.042259157, + -0.08490545, + -0.011113997, + 0.0066274526, + -0.015541914, + -0.019815253, + 0.0022919863, + 0.038564313, + 0.03334054, + 0.00480392, + -0.067729406, + 0.026544046, + 0.033888996, + -0.017435977, + -0.0010999587, + -0.03179822, + 0.0018267024, + 0.021110246, + -0.09517423, + -0.06219906, + 0.058199473, + -0.07779076, + 0.048334066, + -0.018398525, + 0.024513708, + -0.025062999, + 0.0036042489, + -0.047404375, + 0.021157457, + 0.019158676, + -0.03243974, + 0.03733092, + 7.522212E-4, + 0.018815331, + 0.006215134, + 0.0035471562, + -0.033998452, + -0.047240496, + 0.060076986, + -0.017666455, + -0.0061922567, + 0.05368495, + 0.010712691, + -0.0014967439, + 0.025627611, + 0.02231215, + 0.011135723, + -0.03483889, + 0.114724934, + -0.0074767615, + 0.019949293, + 0.032043543, + -0.007694655, + -0.060125783, + -0.021801908, + 0.03708913, + 0.025919821, + -0.006840912, + 0.015006193, + 0.03710481, + 0.02118936, + 0.055570543, + 0.018707318, + -0.0124146305, + -0.024459898, + 0.02083487, + 0.013906934, + -0.025074331, + -0.036792137, + -0.019106494, + 0.06502593, + -0.02184069, + -0.016103804, + -0.0046264823, + -0.01747721, + -0.060514666, + -0.06702599, + 0.017431868, + 0.02551989, + -0.016423194, + -0.0012054184, + -0.02766366, + -0.015987922, + -0.102073625, + 0.052205686, + -0.027421894, + -0.028328788, + 0.02463115, + -0.048369475, + -0.013459091, + -0.0024526715, + 0.011117291, + -0.008752972, + -0.053911522, + 0.006085098, + -0.010170443, + -0.029304286, + 0.0026879457, + 0.011677977, + 0.023777992, + -0.050169904, + -0.034567825, + -0.0946334, + 0.003663625, + 0.039629888, + 0.00300817, + -0.013231794, + 0.03217466, + 0.049807314, + 0.022498924, + -0.064342625, + -0.015862882, + 0.004600717, + -0.010623084, + 0.012173363, + -0.011586922, + 0.052015882, + -0.027474882, + -0.0106887845, + 0.021241076, + -0.015734507, + -0.027200228, + 0.04441319, + 0.016602486, + 0.060414482, + -0.055507325, + -0.0015452658, + -0.059762575, + -0.014713538, + -0.029350651, + -0.050746854, + 0.02780625, + -0.016306676, + 0.0148381265, + -0.035221294, + 0.05226628, + 0.08497932, + -0.039513707, + -0.0016397691, + -0.0010623501, + 0.07600432, + -0.07209007, + -0.045863997, + 0.0209448, + -0.021729525, + -0.019731726, + 0.010993794, + 0.014182952, + 0.0012021464, + -0.007963663, + 0.018779306, + 0.014112732, + -0.022193454, + 0.015267993, + 0.025242653, + 6.6848006E-4, + 0.035580512, + -0.05115234, + -0.004693787, + -0.024819376, + -0.02170654, + 0.06841217, + -0.013771697, + -0.008268273, + 0.0037423116, + 0.01319489, + 0.028800786, + -0.019042045, + 0.017522307, + -0.0018776883, + 0.023524055, + 0.02324429, + 0.018015513, + -0.010207949, + -0.06764209, + 0.016600493, + -0.0050917515, + -0.030984059, + 0.038019557, + 0.008074326, + 0.061054625, + -0.016063483, + 0.016747376, + -0.011543951, + 0.028677618, + 0.049671344, + -0.016456667, + -0.041987363, + -0.08220526, + 0.048982106, + 0.026935706, + -0.009177846, + 0.01383215, + -0.011556749, + 0.034518674, + -0.032012478, + 0.029372826, + -0.0146711795, + -0.004289416, + -0.0010309968, + -0.032633714, + -0.03381839, + 0.05127676, + 0.043841608, + 8.251676E-5, + -0.053840254, + 0.019255184, + 0.012914745, + 0.026547633, + -0.01738684, + -0.0066188765, + -0.020425843, + 0.023450281, + -0.022913685, + 0.021335827, + -0.00953934, + -6.600336E-4, + -0.038147192, + 0.038280014, + 0.01868945, + 0.004804145, + -0.039258398, + -0.027391773, + 0.018781155, + -0.036583886, + 0.014506942, + 0.0633618, + -0.0034507818, + 0.026831038, + -0.02768846, + -0.003373455, + -0.04184995, + 0.03552538, + 0.029747363, + 0.017189572, + -0.030001469, + 0.03953577, + 0.015305187, + -0.013623656, + -0.0014235447, + 0.030711781, + 0.013770212, + -0.014498749, + 0.013070611, + -0.006329086, + -0.03934885, + 0.014594155, + 0.009305995, + -0.023739533, + 0.0023986371, + 0.02142254, + 0.030914279, + 0.020056972, + 0.02039739, + 0.017183764, + -0.00992926, + 0.040562138, + -0.017650772, + -0.009780489, + -0.025241021, + -0.004762718, + -0.021409256, + 0.030818729, + -0.002780249, + 0.07825142, + -0.019698188, + -0.026253747, + 0.025603617, + -0.015921751, + 0.029442348, + 0.046949785, + 0.03027848, + -0.024304736, + -0.0024298101, + -0.021768084, + 0.0122965425, + 0.04234223, + 0.037061177, + 0.006539918, + 0.0036296097, + -0.05864098, + -0.04878913, + 0.019000284, + -0.012611681, + -0.05477879, + 0.048800997, + -0.018275123, + -0.019147448, + -0.0033200695, + 0.017711174, + 0.060487706, + -0.019715957, + 0.011941278, + -0.04098219, + -0.015593819, + -0.015729468, + 0.06627274, + -0.0054713893, + 0.010942754, + 8.218752E-4, + 0.029086746, + -0.038973644, + 0.0089710355, + -0.0059599066, + -0.015551535, + 0.052350987, + -0.058715362, + 0.05353684, + -0.034288343, + -0.050317083, + -0.030411871, + -0.00916812, + -0.007764216, + 0.0091676405, + 0.047511425, + 0.03893768, + -0.024897542, + 0.015000814, + 0.046801265, + -0.0033729596, + 0.0057915733, + 0.019916723, + 0.024258813, + -0.031326983, + -0.021276604, + 0.038923506, + 0.039322406, + -0.025980126, + -0.026574975, + -0.0130759245, + -0.030413909, + 0.017351713, + 0.0015145714, + 0.0107869785, + 0.016225861, + 0.020343961, + -0.010944955, + -0.017521577, + 0.025759242, + 0.02286243, + -0.039360307, + 0.014515873, + -0.014809617, + 0.02959972, + -0.029276777, + -0.027673686, + 0.031278398, + -0.012040415, + 0.066405214, + -0.0010492608, + 0.028602887, + -0.040275346, + -0.005788116, + -0.032482244, + -0.012212109, + 0.024765426, + 0.03972414, + 0.07787577, + -0.013729662, + -0.0028735078, + 0.024567109, + -0.025725797, + 0.047853377, + 0.0065070633, + -0.030734537, + 0.03275814, + 0.09068408, + 0.010910637, + 0.0011700336, + -0.04272852, + -0.005594623, + -0.08526686, + 0.001996726, + -0.065641135, + -0.018043313, + -0.0035929692, + -0.0071343486, + 0.018099638, + -0.02936653, + -0.049011514, + -0.016502745, + -0.027264807, + 0.015694002, + 0.0015214918, + -0.003502486, + -0.045348827, + -0.07870783, + 0.024415378, + 0.017953498, + -0.017551625, + 0.009689978, + -0.017574051, + 0.004996172, + 0.036017265, + 0.020822192, + -0.002003352, + 0.029623806, + -0.008883505, + -0.018898694, + -0.053981647, + -0.004356035, + 0.024060495, + -0.027789041, + -0.039120875, + 0.014740556, + 0.004957526, + 0.036231223, + 0.04799542, + -0.035620462, + -0.007934438, + -0.05925245, + 0.03608382, + -0.0233759, + 0.09428555, + 0.03575298, + -0.002221385, + -0.010406685, + -0.044751875, + 0.01650498, + -0.0033826479, + 0.0015888525, + 0.03386482, + 0.0068296725, + 0.030559763, + 0.03454695, + -0.046736177, + -0.024556497, + 0.041227598, + -0.009190968, + -0.0018623361, + -0.06113821, + 0.010303583, + -0.05350606, + -0.038646854, + -0.018669235, + 0.062600434, + -0.050722823, + 0.028476326, + -0.050415874, + 0.031343065, + -0.03126332, + -0.042941216, + 0.049571715, + 0.02706606, + 0.0365436, + -0.028402884, + 0.029088061, + 0.029766614, + 0.04087114, + -7.7317306E-4, + -0.0080962945, + -0.009375955, + 0.007720807, + 0.02625428, + -0.022790998, + -0.05611537, + 0.010139481, + 0.014877936, + 0.05241886, + 0.028934516, + 0.07316176, + -0.042935707, + 0.050386757, + -0.008321879, + -0.029985473, + 0.021851491, + -0.004526783, + -0.031166654, + -0.006656179, + 0.011541134, + -0.032571144, + 0.0035858436, + -0.056340765, + -0.0431147, + 0.0203976, + 0.008978834, + 0.038579434, + 0.021876011, + -0.034218963, + -0.06608905, + 0.040250316, + 0.028672947, + -0.04758647, + 0.041483093, + -0.03481781, + -0.045280367, + 0.0088629285, + -0.02926269, + -0.020096794, + -0.014896818, + -0.047021363, + 0.059249453, + 0.0012356028, + 0.03569951, + 0.0063116117, + -0.040486403, + -0.023999102, + 0.0035584057, + -0.061651144, + -0.023503387, + 0.0012580891, + 0.0021198136, + 0.019254932, + 0.04119687, + -0.046258382, + -0.0089821275, + 0.032682814, + -0.009911146, + -0.0031840047, + -0.03753323, + 0.0025567603, + 0.0028592015, + -0.0037750753, + 0.008932775, + -1.5093014E-4, + 0.024728283, + -7.935428E-4, + -0.019736717, + 0.03198446, + -0.022110134, + -0.03424755, + -0.008330236, + 0.0032501004, + -0.022781072, + 0.04559982, + 0.009743083, + 0.008645908, + 0.025690176, + -0.06854632, + -0.06493103, + 6.761908E-5, + -1.275489E-4, + 0.017497716, + -0.0054345415, + 0.0108054085, + 0.04913309, + 0.036184203, + 0.009351102, + 0.026159678, + 0.03453697, + -0.025841676, + -2.6213523E-4, + 0.021978159, + -0.0037168413, + -0.011994189, + 0.020683117, + -0.0054177037, + -0.030099183, + 0.031295966, + -0.0130400825, + 0.018931774, + 0.031335082, + -0.02278927, + 0.032556, + -0.03480994, + 0.014788486, + -0.0050781877, + -0.052053306, + 0.007730666, + 0.031750064, + -0.020557106, + -0.039965484, + 0.066883095, + 0.031879336, + 0.009041271, + 0.004683876, + -0.010402404, + 0.033259165, + 0.035644904, + -0.019342013, + 1.6262392E-4, + 0.016361414, + 0.028117545, + 0.018482428, + 4.4496107E-4, + -0.023368785, + 0.031745505, + 0.06573435, + 0.011133553, + -0.037350986, + -0.014199673, + 0.01612865, + 0.014117691, + 0.0017968907, + -0.016460571, + -0.03342108, + 0.0034211446, + 0.009391404, + -0.001467768, + 0.0048676366, + 0.0049679745, + 0.028556531, + 0.014210706, + -0.019597344, + 0.011546344, + -0.0020434882, + -0.04868419, + -0.01441454, + -1.9067545E-4, + 0.008068251, + 0.0746733, + -0.0039587235, + -0.006238037, + 0.020077616, + -0.029733915, + 0.02774959, + 0.0019185826, + -0.019709285, + 0.0048024454, + -0.009481828, + 9.593078E-4, + -0.029816275, + -0.014669422, + -0.040209584, + 0.0024587992, + 0.032724425, + 0.01753741, + -0.02523235, + 0.032495968, + -0.03494814, + -0.01300909, + -0.06952808, + 0.04490856, + -0.0034901523, + 0.009245284, + -0.019368947, + 0.014750128, + 0.06148233, + -0.004215676, + -0.040262137, + -6.311918E-4, + -0.00978375, + 0.0057128756, + -0.026742557, + 0.03503856, + -0.01578841, + -0.020186637, + -0.046015378, + 0.02169852, + 0.015410242, + -0.035419576, + -0.024550792, + 0.017884802, + 0.05885433, + 0.06076062, + -0.029708516, + 0.009794978, + -0.011162507, + 0.007206221, + -0.004689843, + 0.0051033413, + 0.028116185, + -0.011261261, + 0.0204851, + 0.04509503, + -0.00541071, + 0.008143799, + 0.0052222447, + 0.019230485, + 0.021419736, + 0.011691556, + 0.034069113, + 0.021638224, + 0.0014232213, + 0.019006586, + -0.041460417, + -0.049654346, + -0.0039306628, + -0.024419961, + 0.025180425, + 0.0032313238, + 0.016267924, + -0.00801954, + -0.032289073, + -0.02354529, + -0.008911552, + 0.0064073564, + -0.07206179, + -0.011201023, + -0.012381973, + -0.031725388, + -0.01924171, + -0.02548812, + 0.015243539, + 0.013690977, + -0.014403613, + -0.031119391, + 0.016009692, + 0.02808493, + 0.038778234, + -0.004161318, + -0.022929477, + -0.01859372, + 0.028510217, + -0.009261731, + -0.021260642, + 0.0057470193, + 2.4225451E-4, + 0.024135152, + 0.056877606, + 0.046477508, + -0.0102108605, + -0.083167315, + -0.015039589, + 0.022429598, + 0.06869913, + 0.033122182, + -0.038067386, + 0.0735559, + 0.03328223, + 0.028698625, + 0.030321807, + 0.061247636, + -0.0073387097, + 0.03491021, + 0.009983065, + 0.03815213, + -0.009406196, + 0.05722359, + -0.059131827, + -0.040297046, + -0.0076532923, + -0.03195091, + -0.01199274, + -0.042979233, + 0.036675256, + -0.0043277363, + 0.05341712, + 0.030411024, + -0.004045346, + 0.019316979, + -0.0010660106, + -0.0249299, + 0.015667997, + 0.025112703, + -0.053910825, + -0.04066587, + 0.019071909, + 0.03175625, + -0.018117335, + 0.02681596, + 0.015754245, + -0.02861411, + -0.035869386, + 0.0062182993, + 0.13268134, + -0.048005205, + 0.011124554, + -0.016974056, + -0.02320824, + 0.0018338165, + 0.017353361, + -0.032974128, + -0.03267974 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json index 71c489f81..0ba0b0bd9 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json @@ -1,1339 +1,5251 @@ { - "description": "examples for the genre filter tests", - "createdAt": "2023-11-21T14:25:44.060826Z", - "id": "bah7vup6", - "document": { - "modifiedTime": "2049-05-23T13:53:19Z", - "display": { - "id": "bah7vup6", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the genre filter tests", + "createdAt" : "2024-11-14T14:37:56.464110Z", + "id" : "jqn3lcdk", + "document" : { + "modifiedTime" : "2049-07-22T09:18:58Z", + "display" : { + "id" : "jqn3lcdk", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/EvT.jpg/info.json", - "linkText": "Link text: 6k5e4om73", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", + "credit" : "Credit line: URmx76ITw", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/EvT.jpg/info.json", - "linkText": "Link text: 6k5e4om73", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", + "credit" : "Credit line: URmx76ITw", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#8511F5", - "source": { - "id": "nd1kmkh2", - "title": "title-YFswZ6qNJm", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#0F7990", + "source" : { + "id" : "5vhrmefp", + "title" : "title-Y0gPFaAqzY", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "bah7vup6", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "nd1kmkh2", - "sourceIdentifier.value": "rDJm7A55oM", - "identifiers.value": ["rDJm7A55oM", "zQyJM3lo6o", "yJpPR3MQMp"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-YFswZ6qNJm" + "query" : { + "id" : "jqn3lcdk", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5vhrmefp", + "sourceIdentifier.value" : "4BgGjrI2bn", + "identifiers.value" : [ + "4BgGjrI2bn", + "sXXj8lekE5", + "aAWBPmrCWc" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Y0gPFaAqzY" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.0063201915, 0.012277319, -0.020189894, 0.0046476377, 0.017278127, - -0.017038349, 3.7023312e-4, 0.02519059, -0.032480728, 0.022829633, - -0.028456362, 0.009897804, 0.007104424, -0.0392328, -0.0012930712, - -0.021053284, -0.020871967, 2.4708107e-4, -0.0071877292, -0.0023067668, - 0.008765156, 0.0022878018, -0.009296748, 0.022101546, 0.02307222, - -0.004065248, -0.022881487, 0.021408428, 0.014248403, 0.029385246, - -0.002263957, 0.021509152, 0.023277232, 0.019466298, 0.0075197243, - 0.0013074776, 0.028320309, -0.023164231, 0.02526619, 0.0044762213, - -0.0030774719, -0.0024610092, -0.0077163335, 0.0067565287, 0.008278199, - 0.019640464, -0.0037048722, 0.015878111, -0.015184614, 0.036902327, - 0.014262375, 0.020828154, 0.012301935, 0.0074901204, 0.0037997598, - 0.04885067, 0.021868829, -0.018690959, -0.004302756, -0.014340036, - 0.0144428, -0.038171817, 0.0233126, -1.7720213e-5, 0.014655269, - -0.013326321, 0.0021195116, 0.014472234, 0.0016615352, 0.0032484783, - -0.024375241, -0.00233371, 0.012363042, 0.013019237, 0.008511109, - -0.005388285, 0.023043117, 0.0031040139, 0.0061902488, 2.516593e-4, - -0.0132714715, -0.0024318951, 0.022105515, 0.002071102, -0.0077362563, - -4.0666945e-4, 0.012126526, 0.0056179, -0.011376201, -0.0039044418, - 0.033097878, 0.014654262, 0.0320671, 0.0019284664, -0.022386128, - 0.0019334247, 0.0053440826, 2.2172516e-4, -0.010384303, 0.017488841, - -0.0031760936, 0.013221549, -0.028369285, -0.007922619, 0.015973859, - 0.011360235, 0.009513438, 0.016383236, 0.013225469, 0.037179865, - 7.96485e-4, 0.0021300984, 0.020693444, 0.005369827, -0.012630574, - -0.008415715, 0.011544253, -0.0042375834, 0.012258405, 0.0050502163, - 0.004419634, 0.013135769, 0.010881934, 0.0223949, -0.011893051, - 0.00925983, 0.014031407, 0.02235472, 0.0033435076, -0.019154659, - 0.002827592, -0.0020794624, -0.011457857, -0.0049189986, -0.008129212, - 0.020213112, -0.013615291, -0.01339974, -0.007717839, 0.006187639, - -0.011798844, 0.013721719, 0.018949484, 0.012188501, 0.006268404, - -6.436193e-4, 0.0063951206, -0.025803594, -0.005150397, -0.005563607, - 0.020061448, 0.010250969, -0.026849903, -0.013665055, 0.02381119, - -0.008573269, -0.02210917, 0.03755978, -0.010200897, 0.00867405, - 0.004604304, -0.022451606, 0.02057338, -0.026916962, 0.0171834, - 9.307485e-4, -0.028745698, -0.016145015, -0.0028347063, -0.0029750366, - -0.0278318, 0.015796002, 0.008156268, -0.015390006, -0.0067467056, - -0.028432123, 0.0020239556, -0.031226337, -0.0040832446, 0.003481864, - 0.020139785, 0.002330688, -0.03271981, 0.015265411, 0.008243293, - 0.005061696, 0.027187722, 0.006247863, 7.340967e-4, 0.021609647, - -0.0013454743, 0.02935537, -1.0938607e-4, 0.011595153, -7.524164e-5, - 0.012134768, 0.0029119367, 0.0143313585, -0.009984253, -0.011909368, - 0.033722963, 0.008810425, -0.017086448, -0.01672012, -0.02239643, - 0.01626054, -0.014404759, 0.0076638698, -2.8908235e-4, 0.0026684543, - -0.0154729, -0.002228478, -0.0024577626, -0.014135022, -0.0011286449, - 0.023370583, 0.022730147, -0.005940009, 0.018118484, 0.0020277568, - -0.014364022, 0.001851158, -0.017589508, -0.0085375, 0.0112879975, - 0.019458292, 0.0055686636, 0.01595863, 0.0012232334, -0.025761083, - 0.032580845, -0.0026996618, 0.0045855083, 0.0041688504, 0.014758877, - 0.034173876, 0.011263957, 0.010285008, 0.015585446, -0.0031197483, - 0.0038342373, -0.013940559, 0.037208725, -0.03094801, 0.01223753, - 0.019670958, 0.002541, 0.006483051, -0.012439531, 0.00740092, - 0.012613091, -0.0037481724, 0.015977398, 0.0027129191, 0.012940944, - 0.00906919, -0.027920462, -0.0060749357, -0.0046568634, 0.02228851, - 0.013875698, 0.004076542, -0.0028324528, 0.029071905, 0.021070106, - 7.8734366e-4, 5.2766857e-4, -0.026162386, -0.0048573674, 0.004154237, - -0.0031948944, -0.010060492, -0.004023925, 0.0026788681, -0.00490132, - -0.010571341, -0.014945948, -0.01299107, -0.007920796, -0.013865296, - -8.0417644e-4, -0.018152535, 0.011265021, -0.021210894, -5.837921e-4, - -0.0028923238, 0.0017530803, -0.0053053373, -0.0011807362, - -0.0064475033, 0.01907042, -0.0048121684, -0.02134394, -0.025523657, - 0.029749684, 0.002368153, -0.021074867, 0.01931756, 0.004708787, - -0.013827221, -0.020353062, 0.014310326, -0.031934265, 0.0077962303, - 0.015863836, 0.00659174, -0.006440575, 0.025524037, -0.003960403, - 0.014613983, 0.012363827, 0.002601805, -0.016298717, 0.011578709, - -0.0044070785, 0.008467932, 0.027668945, 0.0075078397, -0.019679843, - -0.046302754, -0.0029760504, 0.005595627, -3.0756666e-4, 0.015895857, - 0.008712926, 0.0059474967, -0.00613715, -0.016466757, -0.013474787, - -0.0017137515, 0.027785344, 0.020749746, 0.030968232, -0.005446177, - -0.007919567, -0.021006627, -0.020545477, 0.016759861, 5.637828e-4, - 0.031573597, 0.010099574, -0.0061839316, -0.013515396, 0.020768853, - 0.010440567, 0.009725684, -0.01709877, 0.008043621, -9.755153e-4, - -0.0023306287, -0.004536613, 0.0123676, -0.010666137, 0.033399887, - -0.005183664, -0.011561979, -0.002523561, 0.018390957, -0.008587976, - -0.034718484, -0.010697268, 0.018055988, 0.009231604, 0.0070523503, - 0.044016473, -0.0017817229, -0.018900314, 0.0033363996, -0.018471, - 0.036842316, -0.013827904, 0.00887861, -0.009179436, -0.0066229072, - 0.019269016, -0.0020811872, 0.0023269455, -0.013962145, 0.022159057, - -0.01550131, -0.022371985, -5.053348e-4, -0.018879429, 0.0055699004, - 0.01104027, -0.005456984, 0.02355581, -0.01381276, -0.015536596, - 0.0025809254, -0.0034632143, 0.02007986, -0.021480909, 0.021827614, - 0.005652944, -0.019734764, -0.019269876, 0.024808556, -0.012589334, - -0.0044562947, 0.018753663, 0.018527383, 0.0277877, 0.010079773, - -0.014535286, -0.024797766, 0.018675303, -0.013130119, 0.022467595, - 0.0016116798, 0.0044570332, 0.017414879, -3.1189958e-4, 0.010406828, - 0.011332799, 0.0020888492, -0.0074044713, -0.0023213231, 2.4330267e-4, - -0.025476256, -0.032395214, 0.0043926835, 0.010597725, -0.031273328, - -0.001273608, -0.004576901, 0.0038701505, 0.010976268, -0.012233232, - -0.015794465, -0.016568795, -0.0049964073, -0.030455342, -0.006222028, - -0.0017824479, 0.009987385, 0.0032113886, -0.018370558, -0.006777128, - 0.0033189168, 0.008090759, 0.005297387, 0.003088325, -0.006083552, - -0.01618967, 0.03589668, 0.014299019, 0.0052895825, 0.0033683192, - 0.021924002, 0.014695313, -0.032248482, -0.029932396, -0.016282063, - 0.009812438, -0.0022409174, 0.019925153, -0.009713419, -0.01387995, - 0.0052373135, -0.0015439909, 0.0111102145, -0.003404391, -0.002490971, - -0.0036917715, 0.02830242, 0.0057004755, 0.009458271, -0.025169572, - 5.424728e-4, 0.016521072, -0.005437743, -0.029294515, 0.021532243, - 3.5523117e-5, 0.012721136, 0.015549272, -1.7575272e-5, -0.0033333101, - -0.014933106, -0.0012919991, -0.0038270499, 0.017724365, -0.019447893, - -0.0042885467, 0.024220891, -8.1915874e-4, -9.205923e-5, 0.0028190394, - 0.008971293, 0.01338636, 0.0048481002, 0.021445286, -0.019854892, - 0.0046184286, -0.0066013373, -0.037486993, -0.027616281, -0.007987465, - -0.014524328, -0.0063331537, 0.010157155, 0.012117792, 0.006939975, - -0.037085213, 0.010752247, 0.022913063, 0.005138404, -0.0100143915, - 0.004453129, -0.0023579923, -0.006873119, 0.015355549, 0.017443534, - 0.020604838, 0.020847447, 0.014027777, 0.022038018, -0.0032709218, - -0.013498546, 0.0011695892, 0.021245502, -0.01381772, -0.0037009357, - 0.015526507, 0.008498109, -0.006755094, 0.015802333, 0.044978492, - 0.0030054054, -0.004151531, 0.0026159622, 0.025381101, -0.00722432, - 0.017623574, -0.002016751, -0.008701784, 0.0060255155, -0.016914574, - 0.0064591104, -0.001060702, 0.008967046, -0.0057595526, 0.022576429, - 0.0025656503, 0.007920669, 0.019038964, 0.00217656, -0.0078944145, - 0.008756425, 0.005640479, 0.011083912, 0.01010033, -0.029427523, - 0.005522086, 0.026916303, -0.017552674, 0.017849632, -0.011825105, - 0.0068867044, 0.016355574, -0.010068764, 0.011031318, -0.016692987, - -0.02056559, -0.027797984, 0.028248765, 4.7404054e-4, -0.005582101, - 0.00893008, -0.00871065, 0.0021193093, -0.014402754, -0.015845442, - 0.014139716, -0.022387711, -0.009712097, 0.0011954572, 0.013122212, - 0.007094068, -5.006695e-4, 0.013402117, 0.03072411, 0.007380578, - 0.011469493, -0.022805706, 0.0012153508, 0.0025740212, -0.038562533, - 0.007932901, 0.016524129, 4.5118816e-4, 0.022674143, -0.0015180835, - 0.02045779, 0.01067883, 0.0067644636, -0.018245958, 0.0035270478, - -0.020514885, 0.010856556, -0.01103661, -0.012268756, -0.014153236, - -0.01184295, 0.017494407, -0.00631502, 0.03352567, 3.9368263e-4, - -0.012716663, -0.0049284245, -0.019472882, 0.005803958, 0.01647112, - -0.012218579, 8.6534466e-4, 0.011404665, -0.017892133, 0.004865516, - 0.023984697, -0.0034874135, -0.016015785, -0.0061228643, 5.157827e-4, - 0.007519008, -0.024782922, -0.016361825, 0.0032862942, -0.022364711, - 0.015658747, -0.00256641, 0.0052168583, -0.006925147, -0.011532532, - -0.012555849, -0.021350486, -0.016996512, -0.009855635, -0.015451282, - -0.006317535, 0.008644575, -0.0033649097, 0.008605591, -0.008744667, - -0.003329845, -0.008364183, -0.01811782, -0.01341062, 0.012548541, - 0.0023386085, 0.001033179, -0.022818048, -0.0074767005, 0.0018018844, - -0.01727985, -0.013530403, 0.004415411, -0.0015419344, -0.016654393, - 5.080249e-4, 0.021307288, -0.0030582168, 0.011164772, -0.012008079, - 0.016679756, -0.017662352, -0.0170593, -0.0068649333, 0.022799019, - 0.0039435388, 0.0018939484, 0.014984577, -0.01002926, -0.011432941, - -0.021937585, -0.013355107, 0.0015446856, -0.012325946, -0.0054402035, - 0.017125037, 0.019247238, 0.0056862594, -2.8298693e-4, -0.008797216, - -0.0044669877, -0.035073508, 0.021690382, 0.014550282, 0.02797423, - -0.004006374, -0.011892657, -0.011981292, -0.007107041, 0.0040126652, - -0.008912122, 0.0055357344, -0.016659146, 0.0010768872, 0.00437586, - 0.016733728, 0.0032344942, 0.027302388, 0.0059244893, 0.008455903, - -0.02285199, -0.0112390295, -0.014652638, -0.011457885, 9.655976e-4, - -0.0060305186, -0.0036952882, 0.0044981013, -0.015040188, 4.3737868e-4, - 0.026709927, 0.0011622097, -0.016604513, 0.01030161, 0.013178956, - -0.005758115, -0.026598599, -0.005322957, -0.0021314567, -0.048231274, - -0.005550993, 0.01481887, 0.013413834, 0.010149471, -0.001711484, - 8.969273e-4, -0.007478012, -0.004307997, 0.03892409, -0.012093017, - -5.9864414e-4, -0.0145937195, 0.048670933, -0.011493575, 0.03248884, - 0.009527071, -0.0067678434, -0.015958095, 4.329625e-4, -0.018017007, - -0.0035894283, -0.008067435, -0.010671838, 0.013494494, 0.0029478907, - 0.004137962, -0.01630485, -0.0061568427, 0.0035791367, 0.009591179, - 0.0125626465, 0.0015176783, 0.01191192, -0.013960854, -0.0099966815, - 0.005715276, -0.0015779375, 0.021433808, -0.024507716, -0.009200846, - 0.012081393, -0.0061055785, -0.0026809545, 0.019614648, 0.0045089596, - -0.019832855, -0.016618006, 0.015943576, -0.025821796, -0.0059612393, - 0.02816371, -0.032157123, -0.008123345, 0.01118012, 0.008096883, - -0.0058844397, -0.0032475141, -0.02097465, 0.016562179, -0.0028155688, - 0.0019810111, -0.018356139, 0.011619097, -0.015552002, -0.0075909174, - 0.023890393, -0.019199045, -0.007129346, 0.0056499364, 9.0796157e-4, - -0.029144209, -0.01863796, -0.003761963, -0.010818023, 0.010588799, - 0.035821352, 0.020804854, 0.0024069801, 0.012343091, 0.010965261, - 0.013965415, -0.012722507, -0.017075775, -0.028399667, 0.00699234, - 0.003921986, 5.091683e-5, 0.006036894, -0.01417021, -0.0027657244, - -0.005726355, 0.007673696, -0.005585818, -0.016414696, -0.012749855, - 0.0026916494, 0.023198307, 0.004616673, -0.0060416996, -0.004986261, - -0.018656828, -0.034646567, 0.0012418518, 0.016502937, -0.00643652, - -0.020131676, -0.0037743538, -0.0014669573, 0.0013638181, -0.01907164, - 0.022228584, -0.012988779, 5.8246497e-4, -0.009797457, -0.01103993, - -0.015939878, -0.013829505, 5.766556e-4, -0.0051345243, 1.4803652e-4, - -0.027864823, 0.0049135475, -0.022294333, 0.012110126, 0.028202163, - -0.029789457, -0.0027012478, -0.014337278, -0.0048454627, -0.022130366, - 0.0048192963, 0.0024501795, -0.0175638, -0.016405225, -0.0050225444, - -0.025011534, -0.0023017507, -0.012439551, 0.016720751, 0.0027786533, - 0.0056198784, 0.047175143, -0.0059643644, -0.007083582, 0.0055138967, - 0.02836364, 0.0021517768, 0.010287386, 0.0021498224, -0.019827662, - -0.009833481, -0.011404961, 0.002361393, -0.007632771, -0.0060412665, - -0.019770246, 0.018708874, 0.0042092623, 0.014892875, 0.019722335, - -6.392702e-4, 0.009814662, 0.013275076, 0.013375035, -0.0045163226, - -0.002511197, 0.00550834, -0.014141395, -0.006954391, 0.028925542, - -0.0030880838, -0.0058713937, -0.006067647, 0.020066107, -0.005450003, - -0.0059644207, 0.004571698, 0.019129224, 0.0055889892, -0.027242508, - 0.0059432574, 0.0045124777, -0.015425212, -0.0033497505, -0.010591133, - 0.0032571116, 0.014994829, 0.024789384, -0.016283015, -0.002478132, - 0.0057618446, -8.8567875e-4, 0.017593358, 0.0032265787, -0.0180246, - -0.0042272243, -0.025170181, 0.012010999, 0.0030468078, 0.016861139, - 0.022268165, -0.028304085, 0.026056277, -0.013294684, -0.020630546, - 0.0013359064, 0.002391485, -0.033054005, 0.011379434, 0.020249914, - 0.006688029, 0.04850634, -0.015846593, -0.024858778, -0.027480133, - 0.024723401, -0.009264168, -0.015204968, 0.024853462, -0.0310911, - -0.025229117, 0.016554272, -0.011132839, 0.0017866617, -0.019534105, - 0.010898675, -0.009998335, 0.002258487, 0.0035234697, -0.00396853, - -0.0025834963, -0.0046739886, 9.670411e-5, -0.006131982, 0.005431154, - -0.025346318, 0.018748738, 0.007824235, -0.012393926, -0.009862417, - 0.021812687, 0.008899487, -0.011219736, -0.0022151312, 0.026402343, - -0.009435169, -0.0047430163, 0.0059391926, 0.0150603745, -0.042623747, - -0.0059521846, 0.009269859, -0.0027069552, 0.054607175, -0.010636401, - -0.016779311, 0.0073475866, -0.024483774, -0.006512124, -0.019718112, - 5.968559e-5, 0.0061970176, 0.015019506, -0.02430414, -0.020844815, - 0.023634057, 0.007288604, 0.020284947, -0.032863397, -0.016426837, - -0.023500994, 0.021011733, -0.0277833, -0.011101747, 0.0017703188, - -0.003713103, -0.0147898765, -0.006779748, -0.032791, 0.005537266, - -0.003724385, -0.024440963, 0.015070461, 0.031886533, 0.004302387, - -0.014069605, 0.016603006, -0.01059063, -0.0025735789, 0.0017917773, - -0.005575874, 0.006958515, -0.012704397, -0.009862049, -5.2156433e-4, - 0.0056946445, 0.0016193534, 0.002297816, 0.019202713, -0.009447955, - -0.0193255, -0.0064898264, 0.011971304, 0.020011442, 0.01841353, - -0.02664193, 0.027867017, 0.013441941, -0.0036767013, 0.021641724, - -0.009338358, 0.012676086, -0.028608717, 0.0019422886, 0.014650067, - -0.01047767, 0.040361255, 0.028717117, 0.004477347, -0.009145576, - -0.019692948, -0.0075345356, -0.0024757145, 0.015839446, 0.0022607925, - -0.018844059, -6.0614204e-4, 0.0055276384, 9.683443e-4, 0.012624342, - -0.046851818, 0.010201296, -0.024788495, 6.204746e-4, -0.011520162, - -0.029651567, -0.0107750185, -0.023230176, -0.01030031, 0.0059434893, - -0.0036943506, -0.0060367472, 0.008448862, -0.024680167, 0.0012184333, - -3.7782788e-4, -0.015004187, -0.009151913, 0.00478075, -0.0012532272, - -0.026335187, 0.0037838093, 0.03277622, 0.0064917346, 0.030348051, - -0.00503862, 0.002649176, -0.015225723, 0.0015477252, -1.2143264e-4, - -0.0093053, 0.03910041, -0.01870185, 0.02371353, -0.018935991, - 0.0050375983, 0.0049537155, -0.03450274, 0.03436964, 0.0035104242, - 0.008360336, -0.036552127, -0.009498996, -0.011820651, -8.6507836e-4, - -0.0030341004, 0.0016199283, 0.010992376, -0.014121307, -0.012377505, - 0.0066646812, -0.014606418, 0.013900121, -0.0028995203, -0.015705409, - 0.009233366, 0.0026145554, -0.016180629, -0.010554685, 0.011794422, - -0.005163386, -0.020343767, 0.014969961, 0.020121247, 1.00218924e-4, - 0.037456, -0.00844916, -0.0014831836, 0.0016583127, 1.21749465e-4, - -0.021300973, -0.024715994, -0.016572336, -0.002058165, 0.0021135097, - -0.006867617, 0.022693187, -0.016835198, 0.0077978107, -0.005746105, - -0.020507568, 0.013434207, -0.0026128762, 0.025107136, -0.0039335727, - 0.0028551326, -6.2605884e-4, -0.0020741394, -0.0062895557, -0.025323348, - -0.021705106, -0.031816203, 0.009528072, -0.001493102, -2.141402e-4, - 0.007207562, -0.016354406, -0.02813376, 0.003233686, -0.032394536, - 0.0014303183, -0.015374592, 0.010638286, 0.009102836, -0.01155659, - 0.0024523549, -0.011169776, 0.0010503656, 0.00805481, -0.022475649, - 0.028862912, -0.026821988, -0.010707914, -0.027647672, 0.0052021323, - 0.019160364, 0.013757027, -0.0041797515, -0.0011305597, -0.0038630597, - 0.016335586, -0.006543264, 0.0047749183, 0.0087988125, 0.02540129, - 0.0030668501, 0.012464231, -0.028113328, 0.024792308, -0.017625334, - 0.00788288, -0.009101214, 0.025290526, -0.011548207, 0.008190022, - 0.0073127584, 0.00578676, 0.030549869, -0.03692612, 0.008635286, - -0.004368811, 0.009636743, 3.9540166e-5, -0.003858566, -0.005998172, - -0.021523159, -0.0054325704, -0.007151811, 0.025646662, 0.02966017, - 0.0123012485, 0.0028283328, 0.005248404, -0.0068295663, -0.013326094, - -0.0010795486, -0.0081779575, 0.009962319, -0.008714369, -0.0068498333, - -0.008566276, 0.00783364, -0.021383734, -0.014471479, -0.024833327, - 0.0031281416, -0.004612031, -0.0071277153, -0.02713886, -0.012580441, - 0.022738447, -0.017401269, 0.028856756, 0.0071052257, -0.032129053, - 0.017034402, 0.028906107, -0.01013334, -0.0096576875, -0.010215071, - 0.005097402, -0.006360391, 0.013455673, -0.0057015154, -0.023534115, - -0.008404173, -0.014575355, -0.023834428, -0.011414345, 0.005639531, - 0.025200427, -0.019143289, 0.0027460644, -0.0014610486, -0.005379814, - -0.013673474, -0.0039761574, -5.4042344e-4, 0.009979509, 0.023889951, - -0.010502176, -0.023356093, 0.013437098, 0.012326844, 0.0013026713, - -0.025189964, -0.009749652, 0.013898613, -0.00957813, 0.017036349, - 0.007541447, -0.0023124304, -0.015124928, 0.013989768, 0.009386435, - -0.037049465, -0.023363365, 0.022481866, -0.0030541464, -0.007621154, - -0.005988314, -0.02031347, -0.008140049, -0.01797709, -0.011007292, - -0.038008478, 0.021988295, 0.004531207, -0.027810602, 0.017179854, - 0.009061336, -0.03885866, 0.009973224, -0.0025684908, -0.005418717, - -0.0048989737, -0.0026670778, -0.014976264, 0.0049038986, 0.0053878576, - -0.023192707, 0.0010188705, -0.008767649, -5.00533e-4, -0.021392874, - -0.007618, -0.03298996, 0.024617018, -0.013698887, 0.0037413533, - 0.015540282, -0.0031950588, -0.013557296, -4.5555813e-4, -0.021583619, - -0.015512472, 6.952392e-4, 0.004909148, -0.0098193735, 0.0010525144, - 0.016916964, -0.0060731773, 0.007466479, -0.019012159, -0.008925899, - -0.0177216, 0.010779212, 0.017031921, 0.0027377454, -0.02799295, - -0.016308252, -0.0028349035, 0.016146017, 0.024248099, -0.010922984, - 0.012939522, 0.0102704, -0.0072315983, -0.03212504, 0.011598164, - 0.02194198, -0.0039622667, -0.00730654, 0.003254365, 0.0010208813, - 0.027499735, -0.003354862, -0.0018456168, 0.020407027, -0.0011962401, - -0.024824778, -0.009430815, -0.005083879, 0.023598159, 0.006057872, - 0.009288317, 0.028926358, 0.0096134925, -0.0043122377, 0.003072958, - -0.017213687, -0.004560792, -0.007426738, -0.0035956062, 0.006463635, - 0.0021067439, -0.0050643547, 0.014012483, -0.02219148, 0.017138334, - -0.009988245, -0.004443452, 0.00979779, -0.0026711014, -0.0011449865, - 0.0070677195, 0.009685426, 8.977033e-4, 0.031990968, 2.9147245e-4, - -0.0050409874, -0.008943577, -0.0057879025, 0.0078100194, 0.0026862181, - -0.013034358, 0.01533188, -0.004797681, 0.0072824596, -0.011896542, - 0.0046352916, -0.0037305465, 0.0011533757, 0.007248838, 0.03585539, - -0.0016816781, -0.01105801, -0.023522114, 0.012328138, 0.023099978, - -0.0063914144, 0.024829539, 0.017283583, 0.007473124, -0.018440481, - 0.016127244, 0.019490588, -0.0022199207, -0.0035855218, 0.037981316, - 0.015085004, -0.012837678, 0.018407134, 0.013693996, -0.014325767, - -0.0132721765, 0.01717508, 0.0110797025, 0.007575341, 0.013307679, - -0.005336278, -0.006598257, -0.012113505, -0.0039335163, 0.0055834656, - 0.0020283137, 0.007144838, -0.010643914, 0.020929532, 0.006124931, - -0.014546208, 0.007646641, -0.0047045434, 0.033307225, 0.0021704047, - 0.02279229, 0.015400876, 0.0143153705, -0.021194076, -0.00971814, - 0.006442509, -8.30687e-5, 0.014261162, 0.0028403902, -0.02815675, - 0.016718993, 0.004991253, -0.010582715, 0.01622938, 0.040698715, - 0.001837188, -5.192105e-4, 0.0048220125, -0.014443872, -0.0121217035, - 0.0018599211, 0.00510563, 0.011355526, -0.0076330025, -0.018045202, - 0.0026841834, -0.011098254, -0.027741112, 0.026906312, -0.009378796, - 0.0017046068, -0.013940071, 9.0415106e-4, 0.01041267, -0.0145394085, - 0.012068175, 0.023693208, -0.017052263, -0.012425085, -0.0059629367, - -0.019683683, -0.0035509507, -0.011392938, 0.015601313, -0.0033111635, - -0.012284938, 0.025871774, 0.033990238, -0.0034641868, 0.016214723, - 0.014435831, 0.011663279, 2.598551e-4, -0.009166554, 0.011602144, - -0.012786511, -0.008567355, 0.005772749, -0.002061354, -0.001803239, - -0.03069478, 0.0021816199, 0.0053202137, 0.03318201, 0.011356424, - 0.01771971, -0.009015446, -0.0021407886, 0.009238414, -0.008373767, - 2.4765075e-4, 0.011881029, -0.012244049, 0.021583835, -0.0031215656, - 0.011456545, -0.025809582, -0.003852329, -2.8775167e-4, -0.011982816, - -4.3935783e-4, 0.01041453, 0.010609031, 0.012357946, 0.011236443, - 0.03391401, 0.027808731, -0.023603303, 0.010038615, 0.0017019657, - 0.009918549, 0.019432446, -0.014328339, -0.009347155, -0.0064673224, - 0.0074357158, 0.015667379, -0.0012181656, 0.03132654, -0.016450243, - 0.015268393, -0.007715024, 0.013512421, 0.028708024, -0.03733747, - 0.014278301, -0.013085011, -9.636545e-4, -0.0041522575, 0.011077789, - -0.004240824, 0.026796237, 0.011065853, 0.00482202, -0.0051605734, - 0.014695589, 0.009999343, -0.0019467805, 0.007496874, 0.020654384, - -0.008467927, -0.0064437473, -0.02918584, -0.02199832, -0.0065840473, - 0.022411497, 0.0033521955, -0.009843177, -0.01747796, 0.018010354, - -0.0053870343, -0.014766781, -0.009495935, 0.0042806696, 0.0138078015, - -0.009846046, -0.03307471, 1.5158515e-5, -0.006788078, 0.008074716, - 0.029908417, 0.011425707, 0.00601842, 0.0033358848, -0.009674709, - 9.726333e-5, 0.026268603, 0.02901689, -0.0147171775, 0.010101622, - 0.003723513, -0.012060526, -0.015179325, -0.0069169668, -0.011047746, - 0.005557852, 0.006713308, 0.012388569, -0.036396716, 0.0076649836, - -0.009621899, 0.04499784, -0.01049382, 0.015385932, -0.032343723, - -0.0040372745, 0.017661426, 0.0047761025, -0.01585196, 0.013347376, - -0.014035007, -0.017808983, -0.0018031549, -0.01530043, -0.012979197, - 2.2374956e-4, -0.013722999, -0.032075305, -0.01125898, 0.0068698674, - 0.016803442, -0.0058184047, -0.02261292, -0.007978009, 0.015450938, - -0.012456659, 0.026418524, -0.0028924518, 0.02066982, 0.031101944, - 0.02954577, 0.002062185, -0.006390071, 0.020203369, -0.0031949126, - 0.0238469, 8.731209e-4, 0.0058343043, 0.017929254, -0.020327475, - 0.017725525, -0.0030493627, -0.038730804, 0.027055845, 0.018048963, - -0.021260466, -0.014130168, 0.019009601, 0.0044225096, -0.011617763, - 0.007945374, 6.3442945e-4, -0.0027765955, -0.011228663, 0.02150523, - -0.0069514215, -0.0074673775, -0.019686889, 0.019565675, 0.001668259, - 0.011868733, 0.0041516963, -0.013903151, 0.029155178, 0.006773336, - -0.01772748, -0.01284136, -0.011509319, 0.010034327, 0.011915372, - -0.015443523, -0.0073823854, 0.022551171, 0.008296863, -0.014372112, - 0.035224907, -0.0068179723, -5.687754e-4, -0.0018257565, 0.005385881, - 0.012993189, 0.012055613, 0.004858498, 0.01824119, 0.004767768, - -0.020056054, 0.0047946363, 0.009868286, 0.004780168, 0.0015890343, - -0.008070636, -0.0055325506, 0.02280415, -0.001123514, 0.013834004, - 0.0071396027, 0.013154899, 0.021437658, 0.005379413, -0.011329912, - 0.0019078286, 0.0017242377, 3.8332556e-4, -0.008478434, 0.029534783, - -0.0068330443, -0.004570816, -0.0256867, 0.0024995995, -0.009108771, - 0.007881928, 0.0072238697, 0.018370517, 0.019258123, -0.0049921386, - 0.008042384, 0.002096446, 0.019975439, 0.004578226, 0.0151943145, - 0.02032885, 0.016821932, 0.02844503, 0.0229823, 0.021604447, - 0.009761714, 0.002541822, -0.006148265, -0.0040017264, 0.038958307, - -0.0047886046, 0.020249799, -0.010037434, 0.033874784, 0.0039885147, - 0.010364543, -0.0019966648, 0.014559526, -0.024452457, 0.016703561, - -0.017563531, 0.022490272, 0.0024645252, 0.011656808, 0.025330028, - -0.007825984, -0.0043743444, 0.013849411, -0.0072641647, 0.008581019, - 0.004820848, 0.0065855826, 0.03284428, 0.006284825, 0.011215092, - 0.030895865, -0.0015972869, -0.002590937, -0.012120921, 0.009344601, - -0.003325573, 0.029952358, 0.0020804724, 0.015996236, -0.003666067, - -0.011084516, 0.012157004, 0.025761196, 0.002543458, -0.029204173, - 0.0064106854, 0.030305672, 0.009682832, -8.379589e-5, 7.7644817e-4, - -0.0036152978, -0.021348268, -0.001205556, -0.006391326, -0.023193099, - 0.0257542, -0.0044328696, 0.023573805, 0.0011080038, 0.011284699, - -0.018184617, 0.016116472, -0.009375166, -0.0062932624, -0.005403703, - 0.009128265, -0.0056217047, 0.0010060378, 0.013894084, -0.004988631, - -0.013382958, -0.0026102415, 0.017539656, -0.02379538, -0.0072668483, - 5.2336167e-4, -0.039412063, 0.0027982804, 0.035132658, 0.008872354, - -0.019919366, 0.002089149, -0.0010093111, -8.1403577e-4, -0.031058243, - 2.4039541e-4, -0.011730229, 0.02012338, 0.032440044, -0.019708911, - -0.0060233055, 0.0032530709, 0.00211005, 0.02513397, 0.0066342913, - 0.008075676, 0.022537889, 0.027345074, -0.009856338, -0.01579606, - -0.005611292, -0.011513295, 0.022491759, 0.013663703, -0.0059020803, - 0.012570502, -0.025847092, -0.015401054, -0.029422931, -0.01990589, - 0.015140626, 0.012511847, 0.0014708661, -0.015257498, 0.0072658868, - 0.017583922, -0.013447634, 0.0101488875, 0.020825977, 0.018885316, - -0.012469651, 0.012752748, 0.00120445, 0.025635848, 0.016354878, - -0.0066113016, -0.025918666, 7.187705e-4, -0.003306364, 0.0035480924, - 0.0013864881, -0.002212846, -0.036893528, -0.010933675, 0.014957293, - 0.0048213, -0.01867011, 0.024761356, -0.014236547, 0.018612577, - 0.018638313, 0.0033807836, 0.014058163, -0.0046481616, -0.009360277, - -0.012635166, -0.009449948, 0.03084582, -0.017766234, -0.010245298, - 0.009968079, -0.004093696, 0.0011488218, 0.022659784, -0.006249838, - -0.012167962, 0.0036775754, -0.017476851, -0.020664157, 0.005687062, - -0.0023302347, 0.006152889, 0.010443502, 0.011941477, 0.014635273, - -0.044294182, 0.009961912, -0.038584605, -0.0033148485, -0.023646653, - -0.0078393305, 0.002567873, -0.006836583, -7.9392793e-4, 0.007906267, - -0.0049928618, -0.034923334, 0.0046832412, 0.0015640148, 0.019238602, - 0.009147864, 0.0032818695, 0.015978416, 0.02081587, -0.020602295, - 0.0045643123, -0.043342173, 0.005360092, 0.02000625, 0.0073342766, - 0.027031388, -0.008786367, -0.027311333, -0.022261022, -0.0027044076, - -0.004567901, 0.009098687, -0.007338334, 0.010257283, -0.015755618, - 0.019808564, -0.02100471, 0.0041573416, 0.00652997, 0.00330041, - 0.006917347, 0.010533995, -0.018913774, -0.002157696, -0.018750884, - -0.021292536, 0.0044764658, 0.014311917, 0.027417673, 0.006594492, - -0.0062784613, 0.010344024, -0.013591272, 0.006549666, -0.01731263, - -0.004898013, 0.020683033, -0.012054373, 0.009924102, 0.010842323, - 0.020602485, -0.012142754, 0.013452281, -0.002926995, -0.021286575, - 0.012122952, -0.007620055, 0.017007982, -0.010839298, -0.0020950546, - 0.0120689515, 0.022204468, -0.00250962, -0.0038497779, -0.011572079, - -0.0075308797, 0.0042159567, 0.011236441, -0.012568658, -0.004099165, - -0.0019461396, -0.01712909, -0.0022345143, 0.02483701, -0.020059431, - -0.0011959855, 0.0023863548, -0.002925216, -0.009254437, -0.005591327, - 0.0138001805, -0.010970898, 0.010249957, 0.01722698, -0.0072424538, - 0.004477432, -0.010351993, -0.0037378278, -0.0021013985, 0.0033872176, - 0.010788253, -0.011937241, 0.00102935, -0.015708745, 0.0032268353, - 0.0117435865, -0.01035371, -0.0014941304, -0.01809398, 0.01879457, - -0.017281618, 9.0610835e-4, 0.022238277, -0.013609281, -0.007268086, - -0.01425983, 0.0047727902, 0.0034529446, 0.016539717, -0.02034561, - 0.0047978875, 0.006570619, -0.017091878, -0.015896209, -0.010937081, - -0.017308477, -0.013934427, 0.0073013008, 0.022387605, 0.0038061077, - -0.01002024, 0.023844535, -0.031565696, 0.009774069, -0.016994758, - 0.0042968676, -0.007347803, 0.016363306, -0.00954885, -0.007495632, - -0.009971577, 5.1474146e-4, -0.008603509, 0.001757579, -0.0076622665, - 0.010727339, 0.00644628, 0.0031288525, -0.005412975, 0.024386661, - -0.010867714, 0.011982822, 0.019202067, 0.015674505, 0.0066498495, - -0.025603216, 2.0290373e-4, -0.009861397, -0.007422955, -0.022736393, - -0.026152048, -0.017484955, 5.691978e-4, -0.020475408, -0.008131942, - 0.008727524, -0.015015642, -0.004299481, 0.0018992178 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.01755654, -0.022283033, -0.006098513, -0.041112795, 0.0042032967, - 0.016384447, -0.032755647, 0.024975218, 0.0058770296, 0.009861456, - 0.023029381, 0.0034499222, 0.03156555, 1.4178811e-4, -0.014208548, - 0.0084153, -0.005554036, -7.128595e-4, 0.024077129, 0.032589246, - -0.004161517, -0.008819131, 0.027793342, 0.027193764, 0.009388269, - -0.020134138, 8.268777e-4, -0.013502637, 0.008331784, -0.0017556802, - 0.03154927, -0.0064390088, -0.00911661, 0.0030464272, 0.005202361, - -0.020238701, 0.0054603852, 0.010353953, 0.0055599455, 0.0052494616, - 0.018540643, 0.013513368, -0.018921003, -0.010783295, -0.0149710355, - 0.013033691, 1.766362e-4, -0.010543967, 5.3544575e-4, 0.007538123, - -0.0013719151, 7.1342685e-5, -0.0018661825, 0.011428501, 0.026888754, - 0.013571433, 0.010271946, -0.01446133, -0.013052683, 0.027268356, - -0.008260675, 0.015632648, -0.012072569, 0.026153324, 0.009312811, - -0.014093461, -0.01174964, 0.0046183825, 0.002830581, -0.012908584, - -0.013498603, -0.028745083, 0.008704373, -0.008843744, -0.023225635, - 0.011884937, 0.011175174, -0.021230282, 0.017095232, -0.033628233, - -0.011931797, 0.019576337, -0.017742166, 0.012706398, 0.0123416735, - -0.017346522, -0.0113702435, -0.010095642, -0.008209165, 0.016727855, - 0.024667688, -0.020363912, -0.008313086, -0.0035545519, -0.009880288, - 0.011903124, -0.029396268, -0.024983939, 0.0063162637, -0.004772435, - -0.028229816, 0.025699517, 0.009682549, 0.014098715, 0.0020719673, - 0.010301634, -0.013814911, 0.025132952, -0.019642659, -0.0066140317, - 0.008170478, -0.0053948187, 9.2396827e-4, -0.021750474, 0.057199012, - 0.002267936, -0.00297226, -0.025957854, -0.022497151, -0.010344021, - -0.01543773, 0.024986181, 0.0025700417, 0.021985063, -0.009587141, - -0.015559034, 0.002402113, 0.016249523, 8.068914e-4, -0.0067131007, - 0.007278468, 0.013250019, 0.015786618, 0.029007979, 0.018062081, - -0.00942621, -0.0039147437, 0.004241021, 0.003711124, -0.0013236831, - -0.015634667, 0.007159165, -0.0072650393, 0.024786465, -0.016495915, - -0.007420494, -0.01855463, 0.021267902, -0.035416618, -0.025620108, - 0.0023690753, 0.0076375324, 0.0065247426, 0.017551877, 0.025819005, - 0.009566195, -0.010025062, -0.01758446, -0.017577456, -0.0015429214, - -0.0013226828, -0.005372665, 0.024257552, -0.018859595, -0.02059427, - -0.030500546, -0.018127827, 0.010998552, 0.04113526, 0.009626822, - 0.012592947, -0.008832066, 1.2211285e-5, 0.032323662, 0.008093908, - 0.008741541, -0.0053863716, -0.0014335681, -0.0073283, -0.0037960827, - 0.026639193, -0.012936439, 0.00155567, 0.012932536, -0.011233756, - 0.0038611772, 0.006794839, 0.0067700297, 0.001631114, 0.0015418873, - -0.008844264, -0.0012195458, 5.6132575e-4, -0.0014239228, -0.012637818, - 0.0034155373, -0.0032846404, -0.022345645, 3.2192015e-4, 0.013051586, - 0.023774398, 0.0035618138, -0.0031496785, -0.009250369, 0.0036462077, - -0.012873288, -0.017924922, 0.010807322, -0.02915574, -0.022429725, - -0.038484264, 8.806466e-4, -0.009424715, -0.0078848535, 0.0055026556, - -0.02563247, 0.016931342, -0.015127381, 0.026228877, -0.0010821386, - 0.0039253454, 0.0059917276, 0.0035468813, -2.4251752e-4, 0.025334533, - 0.039382886, 0.0054575475, 0.012433375, -0.019892871, -0.0070233135, - 0.005314255, -0.010708383, 0.022628997, 0.0032467202, 0.016825702, - 0.019074786, -0.013565572, -0.016885705, -0.0022057956, 0.0046100034, - 0.006528427, -0.008427414, 0.009176175, -0.018863557, -0.008709269, - -0.026146578, 0.009803018, -0.00347853, -0.009962573, -0.0028459493, - 0.026764201, -0.0287011, -0.020419076, 0.023265889, -0.0050333645, - 0.0012934693, 0.027913298, -0.012629073, -0.0030271555, -0.008290235, - 0.00708861, 0.017087005, -0.009732297, -0.024268955, -0.0220606, - 0.005342831, 0.0076637915, -0.014322746, -0.012800661, -0.0017458808, - 0.019229162, 0.0071166875, 0.0051008216, 0.020989984, -0.039175276, - -2.5805976e-4, -0.0067478265, -0.0065798094, -0.0065879123, - -0.0017515204, -0.01713137, 0.014791486, -0.011700151, -0.031033691, - 0.02671329, 0.0015813492, 0.0064593176, 0.026853388, 0.010721109, - 0.013726297, -0.004803424, 0.011550977, 0.011285253, 0.003003156, - -5.2655744e-4, 0.029126737, 0.007921436, -0.017315138, 4.5793518e-4, - 0.0018985042, 0.010664537, -0.002285272, 0.02458719, 0.019733138, - 0.0064467927, -0.0043844916, 0.024531174, -0.009075242, -0.018296564, - -0.015897011, -0.0027038052, 0.016011577, -0.0032059017, -0.026934845, - 0.027550336, -0.012997373, 0.016128145, -0.00390191, 0.005235972, - 0.005302151, 0.024340613, -0.0059057623, -0.011226796, 0.011163424, - -0.022061465, -0.009301589, -0.0048161442, -0.0012047773, 0.027162956, - 0.010708204, 0.016018117, 0.0025439323, -0.017006585, 0.021142785, - -0.01431031, 0.015827106, -2.7547998e-4, 0.001922316, -1.3314407e-4, - -0.014416798, -0.005657611, -8.025987e-4, -0.019787777, 0.0013776275, - -0.0042639747, 0.032369956, -0.010377683, 0.023475882, 0.0117672505, - -0.010811176, 0.0026888237, -0.016198726, -0.016097346, 0.009486844, - -0.007833857, 0.031058265, -0.04045825, -0.0055949325, 0.03299082, - -0.0035948951, 0.018765323, 0.012738698, -0.01617168, -0.0062399525, - -0.0038132959, -0.007415342, 0.027959302, 0.0061317706, 0.0058343103, - -0.018090611, -0.013372535, 0.02577598, -0.0062448257, 9.772494e-4, - -0.0014315103, 0.015133933, 0.0069356, 0.005524867, 0.004642081, - 0.048190214, 0.023690175, -4.7760076e-4, 8.6540595e-4, 0.021595998, - -0.0013220455, 0.013710037, 0.006887653, 1.446047e-4, -0.014492534, - -0.017940037, 0.009503017, -0.0025078123, -0.0051504285, -0.0018381167, - 0.013225652, -0.010050026, 0.009222951, 0.024612997, -0.009178154, - 0.0014811739, 0.010602101, 0.005100748, 0.02411853, 0.0039644907, - -9.866289e-4, 0.008411011, -0.024385901, -0.027855616, 0.028146075, - -0.0072255596, 0.010016154, -0.017596515, -0.013786513, 0.0076068984, - -0.0023924578, -0.018192641, -0.0017625956, -0.01417658, 0.010734547, - 0.012667723, -0.0109760165, -0.009379944, 3.7327455e-4, 0.015411161, - -0.009843391, -0.013019442, 0.011583056, 0.0026492411, -0.0064435937, - 0.02007374, -0.017537775, 0.01658814, -0.0031156263, -0.012081597, - 0.006265453, 0.005530046, 0.004548404, 0.016983068, -0.017440194, - -0.0012819184, 0.0022648757, -0.01398977, 0.0115213925, 0.003623623, - -0.0065707457, -0.0037864093, 0.005479453, 5.5252396e-5, -0.0038630806, - 0.024893465, 0.028092273, 0.004964527, -0.013595971, 0.030196244, - 0.011629372, 0.004098866, 0.002083944, -0.016583228, 2.2745012e-4, - 0.0032757209, -0.008130055, 0.031531155, -0.00407021, -0.012946147, - 0.030337827, 0.021975454, 0.027434744, 0.004147761, -0.015187861, - -0.008407628, 0.018243719, -0.007413652, 0.0039897463, -0.008887924, - -0.01081523, -0.004505849, 0.013936461, -0.02274142, -0.016421122, - 0.008606032, -0.02927472, -0.015927337, 0.013095565, 0.0026454434, - 0.0034972134, -0.010303634, 0.013144028, -0.017588025, 0.0073652174, - -0.00904161, -0.010328673, -0.01852111, -0.042999584, -0.03723695, - -0.034542426, -0.0059325453, -0.018877177, -0.00268495, -0.020303361, - -0.016657876, -0.040315222, -0.0048471126, -0.012326078, 0.044394154, - 0.013534099, 0.012684405, 0.00756741, -0.008673872, -0.018529633, - -0.015895305, -0.004105538, -0.01760372, 0.0152395945, -0.006239053, - 0.0111544505, 0.012334194, 0.0023442453, -0.005923786, 0.007984304, - -0.0091120815, -0.0027317384, -0.006210361, 0.008091632, 0.019418834, - -0.02698074, 0.029618805, 0.014368253, -0.005997261, 0.009716652, - 0.0028406312, -0.02770024, 0.0071771126, 0.003433477, 0.014762738, - -0.008219129, 0.006104796, -0.014458376, -0.0035470424, 0.0067621544, - 0.015574787, 0.0054448214, 5.1026983e-4, 0.007956843, 0.024347046, - -0.01605373, -0.0066033737, 0.028054006, 0.017362818, 0.0017624102, - -0.014446936, 0.0027875144, -0.030421387, -0.009059688, 0.0024490564, - 0.014717489, 0.015513799, -0.019335624, -0.034151956, -0.010487788, - 0.017652892, 0.0012101082, -0.017136699, -0.008838474, 0.029144054, - 5.7881884e-4, 0.013825, -0.024216993, 0.0021400328, -0.03144056, - 0.0061611966, -0.004327315, -0.018262465, 0.024112102, -0.02631798, - -0.00415302, -0.017263692, 0.007790897, 0.0013864554, 0.0060095107, - -0.0016123118, 0.0065477053, 0.023973677, -0.010740431, 0.015085529, - -0.0106350165, 0.021714734, -0.009957352, -0.0014326796, -0.012591022, - 0.0219996, 7.797796e-4, -0.002387206, 0.014985949, -0.017084977, - 0.0024979399, -5.567259e-4, 3.4293009e-4, -0.008692723, 3.600979e-5, - -0.017302604, -0.007880816, 0.013477893, -0.03184574, -0.010959778, - -0.004159812, 0.016639458, -0.014685418, -0.006495939, -0.021969719, - -0.010179457, -0.014045454, -0.013739472, -0.0087180715, 0.0073646023, - 0.006412568, 0.0065847635, -9.5317024e-4, 0.012173125, -0.007256286, - 0.012140084, 0.0064662606, 0.011056433, 0.004645701, -0.019592583, - 0.0069311378, -0.012565236, -0.0023976583, -0.009794759, -0.026491882, - 1.5819063e-4, 0.0072161923, -0.0034001307, 7.040528e-4, 0.005913875, - 0.01374333, -0.015754912, -0.017831173, -0.006888094, -0.026315946, - -8.409152e-6, -9.94932e-4, 0.01085695, -0.008327315, -0.0094743995, - -0.01340866, 5.551915e-4, -0.010411975, 0.0019290122, -0.016187724, - 0.016324062, 0.017585585, 6.0199527e-4, 0.017066488, 0.012707801, - 0.024894895, -0.013994969, -0.013807897, 0.0058854944, -0.014838269, - -9.1895583e-4, -0.0081969295, 0.0019586529, -0.004092362, 6.1017065e-4, - 0.003528229, 0.032968912, 0.0065915794, -0.013753114, -0.012089617, - 0.014146591, 0.0012708365, 0.014164304, 0.034486957, -0.031710315, - -0.002857281, -0.003608804, -0.0036749577, -0.0021098284, -0.0039743646, - 0.018278167, 0.03507022, 0.002309503, 0.026193798, 0.01831864, - -0.022448521, 0.0078068436, -0.00843406, 0.008302116, -0.022896029, - -0.0031574667, 0.007655731, 0.013732126, 0.01480666, -0.002827109, - 0.008924468, 0.0148956105, 0.0054815556, 0.003957318, 0.024346542, - -4.670167e-4, -0.008230741, 0.015406829, -0.0027263218, 0.0053198985, - -0.006787933, 0.029271543, -0.0046645137, 0.014614484, -0.0045885327, - -0.017794296, -0.010782444, 0.003346863, -0.018535525, -0.027570063, - 0.002357699, 0.011175381, -0.007120938, 0.024966335, -0.0052623847, - -0.014440603, 0.011270247, -0.0070236265, -0.009051192, 0.011909456, - -0.025206817, 6.7148666e-4, -0.03424789, 0.014681684, 0.0028365823, - 0.006694559, 0.0072363946, 0.012133197, -0.010969162, -0.022319136, - 0.007657133, -0.010812975, 0.03291826, -0.026061254, -0.008254453, - -0.022933962, 0.021739786, -0.002956542, 0.035310943, 0.014834989, - -0.0149368765, 0.029721688, -0.0013710922, -0.00897331, -0.01912988, - 0.013625657, -0.01198207, -0.01977892, 0.013349953, 0.0103347385, - -0.03003017, -0.0140609555, 0.015186688, 0.03302823, 0.024783317, - -0.02780587, 0.01181589, 0.008158876, 0.011854048, 0.003949309, - -0.039731946, 0.0046675266, 0.023111645, -0.0025984927, -0.020304525, - -0.0038757676, -5.678142e-5, 0.009198411, -0.00787005, 0.02816721, - -0.013660711, -0.025700204, 0.020879762, 0.016088694, 0.014265295, - 0.017832708, 0.008826457, -0.008792894, -0.029863361, 0.019898351, - 0.015059256, -0.0011263072, -0.011807735, -0.0037226058, 0.021613346, - 0.015437331, 0.02121782, -0.004010961, 0.0062437328, -0.030334348, - 0.0066817487, 0.00408462, -0.0011914324, 0.007951779, -0.0190938, - -0.007705449, -0.0029699411, 0.008058808, 0.033929307, -0.005198765, - 0.009598301, -0.0049754307, -0.01125907, 0.023076233, 0.010712735, - -0.02265733, -0.031925194, 0.011260765, 0.0074417195, -0.0024980588, - -0.02455546, -0.0069526536, -0.0018256578, -0.012159157, -0.012311226, - 0.00895607, 0.023658313, 0.0065262937, -0.020490248, -0.008923596, - 0.019848702, 0.008639911, -0.011685288, -0.013495494, 0.00521615, - 0.012837359, 0.016265158, 0.00940368, 0.030366534, -0.005642057, - 0.029556561, 0.007559467, -0.021463916, 0.014199743, 0.0018971262, - -0.012797051, -0.0019905681, -0.0032778042, 0.005331527, 0.036746092, - -0.017104805, -0.0024358905, 3.3065252e-4, 0.013603091, 0.02154194, - -0.005066006, 0.0065343566, 0.010924831, 0.0011109051, 0.02114606, - -0.0059472118, -0.005563249, -0.01620274, 0.048123367, 0.010243018, - -0.009094718, 0.0066984943, -0.026136758, -0.010204075, 0.0074721146, - -0.019947952, -9.1873127e-4, 0.003868292, -0.02409475, -0.0090829525, - 0.007849378, 0.012936353, -0.020117175, -0.011500247, 0.021783017, - -0.006975581, -0.008906254, 0.011105899, 0.006000547, 0.013834511, - 0.0064500934, -0.01351957, 0.021096976, -0.016276881, 0.016449042, - -0.014617976, 0.009704041, -0.0073495037, -0.0015428726, -0.01051809, - 0.006880675, 0.014700509, 0.005569514, 0.017685136, -0.027465448, - 4.3296552e-4, -0.0041084834, -0.028248088, -7.970965e-5, 0.01364223, - 0.029775033, -0.018492658, 0.011869965, 0.0124530345, 0.017618423, - -0.022668602, -3.6828427e-4, -0.004198421, 0.019586697, -0.0051863375, - 0.009732104, -0.012542892, 0.0014305598, 0.026170714, 0.013987275, - -0.0027080295, 0.014290854, -0.014778158, -0.021835735, -0.009285336, - 0.004131437, -0.0099566365, -0.0056844046, 0.006318306, 0.03355996, - 0.0052584526, 0.013133241, 0.006294109, -0.01966819, -0.012372285, - -0.022438053, 0.005691498, -0.01735365, -0.019189967, 0.026164364, - -0.013637306, -0.023381304, -0.027732922, -0.012221394, -0.029339531, - -0.0010839199, 0.010121179, -0.015894178, 0.018071717, 0.013036129, - 0.0032760405, 0.01820269, 0.022366539, 0.0052698012, 0.030710135, - 0.0066902917, 0.0026553953, 0.017116303, -0.008351685, -0.011848616, - 0.010282954, -0.018337898, 8.719013e-4, 0.013404936, 0.024858922, - -0.0032850206, 0.015873825, 0.0012710575, 0.0098722875, 0.023894625, - -0.014132452, 0.008728031, -0.0077577494, 0.007821144, 0.009568388, - 0.0026521839, -0.011661541, 0.020565612, -0.005631782, -0.0111982105, - 0.029237218, 0.0030424222, -0.010316221, 0.007265167, -0.011325892, - -0.016815387, 0.011881648, -0.00776614, 0.022358727, 0.025281955, - -0.01645861, -9.5178053e-4, 0.009547393, 0.004189556, 0.027471557, - 6.462334e-5, -0.0023593213, -0.020346563, 0.007361805, 0.0366826, - -0.007416707, -0.0021870043, -0.04109798, 0.013370925, -0.0014662402, - -0.010314642, -0.006184196, 0.0025319976, -0.008816622, -0.007845518, - 0.016100772, 0.006530219, 0.0347842, 0.01274589, 0.024649365, - 0.0033574183, 0.029022418, 8.359381e-4, -0.0028850674, 0.002998297, - -0.016671203, -0.0062495307, -0.004906981, 0.0016913206, 0.016842645, - 0.015330721, -0.027321644, -0.016387424, 0.01990772, 0.0038591146, - 0.006535299, 0.00695121, -0.021616591, 0.037532173, 4.9148966e-4, - -0.0077152336, -7.1603846e-4, 0.0011156447, 8.1221464e-5, 0.008999177, - 0.011622265, 0.0023745715, 0.0040739737, 0.01995545, 3.0223117e-4, - -0.023783464, -0.0010743403, -0.012546994, 0.003858873, 0.005027219, - 0.028382065, 0.0029416014, -0.0045602075, -0.0047899378, 0.0022171324, - -0.020703485, 0.00252859, -0.02745445, 0.0016080772, -0.012617899, - 0.0020091997, -0.044269383, -0.0014298459, -0.013006263, 0.012417005, - -0.015545615, 0.0038746197, -0.015325348, -0.0047522103, -0.005071562, - 0.008118486, -0.003929886, 0.0067038047, -0.015178147, 0.0048210453, - 0.002141426, -0.027418844, 0.0021137272, 0.0085064415, 0.0042277654, - -0.0020606106, 0.03409276, -0.011398343, 0.0019254108, 0.0054613464, - 0.005095323, 0.024312992, -0.027350027, 0.0065081595, 0.00590098, - -0.006408983, -0.015598259, 0.017250823, -0.00928161, -0.0016095984, - -0.021000657, 0.004888041, -0.004986645, 0.0079195965, -0.0135397315, - -0.0055680503, -0.01807206, 0.019425396, 0.031199016, -0.0051221377, - 0.011093196, 0.042659692, 0.0034764449, 0.010205212, -0.0012123514, - -0.00796073, 0.026834326, 0.010142405, -0.0018773733, 9.035893e-4, - -0.0016034249, 0.028511316, 0.015105768, -0.020097643, 2.744681e-4, - 7.7929563e-4, 0.00572827, 0.0069478597, -0.004303453, -0.014983137, - -0.04657453, -0.02162911, 0.013494169, -0.023682985, 0.017166946, - 0.015850274, 0.008983668, -9.568692e-4, 2.8459157e-4, 0.042855747, - -0.024349961, -0.009538512, -0.022438781, -0.0012621874, 0.010306726, - -0.012624038, -0.0142856855, -0.01528597, 0.013454683, -0.011139866, - -0.023902947, 0.02101403, -0.003242637, -0.013848827, 0.01687854, - -0.0047087413, -0.026810488, -6.0771976e-4, -0.010809087, -0.025884923, - -0.016065141, 0.0074397437, 0.014102352, -0.004831192, 0.014963895, - 0.005518941, 0.021456828, -0.0056267385, -0.021336565, 0.005420659, - -0.00794274, 0.008026523, 0.0050832657, -0.0044674315, 0.0047715353, - -4.8998615e-4, 0.029069826, -0.0020858624, 0.002014536, 0.005803075, - 0.025669437, 0.012518823, -0.002432954, -0.008223493, 0.010155219, - 0.0034768058, -0.008714417, 0.013880087, -0.0030806863, -0.0034606054, - -0.0025051578, 0.0067713303, -0.007829816, -0.0027233253, 0.01329372, - -0.03476993, 0.021787735, -3.3419247e-4, -0.013452468, -0.0107134525, - -0.0075459844, -0.013768545, 0.0261136, -0.012576456, 0.012493262, - 0.014113467, 0.03934518, 0.015846232, 0.01460683, 0.015227585, - 0.0012660779, -0.008284566, 0.006856807, 0.022730747, -0.0035288201, - -0.004864048, 0.013247112, -0.004646848, 0.011992684, 0.0048029516, - 0.022285743, 0.05265867, 0.019053172, -0.004412279, -6.373326e-5, - -0.02398273, -0.0011881216, -0.017572662, 0.012090643, 0.0037843832, - -7.83028e-5, 0.0060186535, -0.00849039, -0.00567204, -0.012735298, - 0.022057049, -0.007349208, -0.02565025, -0.020187333, 4.8200224e-4, - -0.03687253, 0.0016125223, 0.0023146681, 0.0020936087, -0.01534266, - -0.0069211456, 0.007416391, -0.025052363, 0.027244221, -0.018387645, - -2.5459236e-4, -0.0068029985, 0.017397953, 0.0022183217, 0.0030640159, - 0.040294092, -0.00906903, -0.019907374, 0.02043811, 0.01820568, - -0.0103908945, -0.001122924, 0.007151141, -6.5773004e-4, -0.026296346, - 0.009446211, 0.02460473, -0.006619028, 0.017170588, 0.013936913, - -0.010673678, -0.005177818, -6.463185e-4, -0.011339731, 0.021750757, - 0.02654039, 0.008442944, -0.016514778, -0.010972165, -0.011164507, - -0.0044185556, -0.0258151, -0.007536353, 0.0204077, 0.0044228677, - 0.02076362, -0.03145931, -0.024423292, 0.019580955, -0.0015713138, - -0.010055914, 0.016988385, 0.02590994, 0.004238905, -0.008401266, - -0.0064718183, -0.024095548, 0.008561123, -0.0193209, -0.012904766, - 0.015901377, -0.03791626, 0.020812172, -0.013271444, 0.019177176, - 0.023778612, 0.009448055, 0.01783254, -0.029527897, 0.0026758427, - 0.022443742, 0.007991468, -4.90722e-4, 0.01940104, -0.0013332147, - 0.026338037, -0.0050475723, -0.012605047, -0.019348467, 0.0011984039, - 0.009798298, 0.010940391, 0.006351457, 0.020527001, -0.016020529, - -0.002356624, -0.0022829778, -0.012621845, 0.0043150717, 0.003836818, - -0.009083591, 0.0014389742, -0.0107270535, 0.013489151, 0.007686869, - -0.001540529, 0.0077349464, 0.029232515, -0.006736917, -2.792792e-4, - 0.0011758455, -0.003237025, 0.015382243, -0.002150661, -0.0059712264, - -0.0053944453, -0.012450502, 0.015700532, -0.031737935, 0.0055090864, - 0.027945101, 0.008804626, -0.015489913, 0.0242919, 0.03580349, - 0.019108037, -0.024924919, -0.01932794, -0.007875156, 0.010834327, - -0.011281118, -0.013447757, -0.015501266, -0.015693374, 0.008675663, - 0.0072256243, -0.005968659, 0.009785635, -0.013682864, 0.011112575, - 2.9797296e-4, -0.0069825267, 0.001953875, 0.007602077, -0.004596355, - -0.021197835, 0.0021100473, -0.0012790078, 0.010768938, -0.0134428, - 4.3220664e-4, -6.419858e-4, -0.014704135, 0.022755459, -7.651443e-4, - 5.4672116e-4, -0.0012705665, -0.030108819, -0.0018882155, -0.0026776688, - -0.0050090863, 0.0074215485, -0.022260228, 0.00809654, 0.00758761, - -8.172185e-4, 0.017207356, 0.01592586, 0.009559291, -0.014002941, - -0.013725765, -0.019168807, 0.0122183, -0.006392072, -0.009518172, - 0.022796053, 0.008710135, -0.01953061, 0.009720024, -0.0022547038, - 0.0038575393, -0.0053302953, -0.001659961, -4.8367796e-4, 0.0054286374, - -0.014227056, 0.012054488, 0.012409931, 0.022105655, 0.006364698, - -0.0027689033, 0.015585483, -0.018935246, -0.020479782, 0.024303818, - 0.018515967, -0.019740716, -0.014763767, -0.0038714022, 0.009159681, - -0.024421178, 0.027575798, 0.019381806, -0.0013512475, -0.004977336, - 0.008295934, 0.010557804, 0.01462688, -0.004700572, -0.010158025, - -0.013934685, -0.0256618, 0.007743929, -0.008581587, -0.025444662, - -0.021048777, 0.015806604, 0.017582878, 0.013138556, -0.0010047612, - -0.012472197, 0.01601208, -0.016885959, 0.011725126, -0.00862901, - 0.014530136, -0.033865962, 0.021417292, 0.0067203115, -0.040446263, - -0.00288865, -0.019747544, 0.019071925, 0.007844822, 0.005480774, - -0.0064365305, -0.010647324, 0.0035787227, 0.007900808, 3.3484644e-4, - 0.013092397, -0.025294717, -0.02483344, -0.021327797, -0.015046434, - 0.0051572025, 0.003114783, 0.00940579, -0.025470331, -0.008973344, - 0.003917195, 0.016615015, -0.027647665, 0.027009662, -0.023363162, - -0.02230328, 0.005499721, 0.012126625, -0.017248292, 0.00784598, - 0.03263979, 0.005224652, 0.0012916109, -0.010624364, 0.015094263, - 0.018762555, -0.015250527, 0.024782453, 0.0073553897, 0.015079561, - -0.016543146, 0.014387784, -0.01474798, 0.005401135, -0.012932248, - -0.03111469, 0.021538965, -0.0027819762, -0.009893298, 0.026446108, - -0.0068521393, -0.027834447, 0.0039937426, -0.004241761, 0.01658623, - 0.01105202, -0.03492139, 0.016514692, -0.012559776, -0.0064587304, - -0.021398954, -0.020118373, 0.006949677, 0.006058468, 0.004168124, - -0.0182207, 0.040287733, 0.0070253415, -0.018101744, 0.0029620195, - 0.0025899136, -0.011035374, -0.0070367735, 0.008396532, -0.0041915253, - -0.0015845245, -0.006045868, -0.0028902527, -0.010918716, 0.005700875, - 0.013142263, -4.6948413e-4, 0.0071367724, -0.0012268528, -0.012306395, - 1.1039932e-4, -0.001104585, 0.018061778, 0.019927446, 0.021907238, - 0.0022888032, 0.0050321063, -0.013423276, -0.006368367, -0.025673296, - -0.010180828, -0.023046322, -0.017184846, -0.0013646012, 0.005399149, - 0.0073738717, 0.014102966, 0.021474931, 0.030965045, -0.015699062, - 0.024759237, 0.017363185, 0.0080060745, -0.002903914, 0.011746629, - -0.015962463, -0.015925903, -0.01950589, 0.032378905, -8.950059e-5, - 0.008115205, 0.028917419, 0.013009967, -7.2282634e-4, 0.02822813, - 0.014852693, 0.032338742, -0.010767758, -0.016719801, 8.9338067e-4, - 0.031829312, 0.0059970156, 0.0065495316, 0.030547826, 0.01095203, - -0.009805698, -0.019318243, -0.0014641144, 0.0060045775, 0.0010928839, - 0.010625077, -0.0138286855, 0.030182784, -0.008570155, -0.0073269675, - 0.014401994, 0.018072898, 0.0026834877, -0.016431417, 0.004632044, - -0.006934498, 0.0041269273, 0.0066349655, -0.015764136, -0.01384073, - 0.027184043, -0.008861543, -0.0051312717, 0.0018295886, 0.006201845, - -0.0021850702, -0.0041426863, -0.009503846, -0.008360046, 0.006395332, - -0.0042331233, 2.9837183e-4, -0.012708682, -0.0020514939, -0.008283881, - -0.027640464, -0.020824034, 0.026403448, 0.010674942, -9.601126e-5, - -3.0896222e-4, -0.019149542, -0.008266797, 0.0031017663, -0.0067961933, - -0.006537077, -0.029960014, 0.006426785, -0.0088583585, -1.7766346e-4, - 0.027399592, -0.0036641299, 0.027304444, -0.0025093942, -0.014593966, - 4.259183e-4, -0.032218292, 0.025044145, -0.033923544, 0.017814651, - -0.025460271, 0.01759882, -0.020655261, -0.013614316, -0.02642623, - 0.007123656, 0.013180814, 0.0025297357, 0.006641072, -0.00849912, - -0.005161421, -0.013938046, -0.0011037462, 0.018552447, 0.0058128755, - 0.0037288615, 0.0040347897, -0.0044708773, -0.011825931, -0.007826977, - -0.016457817, 3.47449e-4, -0.009522417, 0.008473354, -0.0048782313, - 0.021828372, 0.0014078204, -0.012939931, 0.014386829, 0.0040555336, - -0.012120961, -0.016620666, 0.019592825, 0.018469824, 6.137184e-4, - -0.0060634925, 0.0092607, -0.0024441385, -0.002428585, 0.003999728, - -0.014458672, 0.032240074, -0.006347471, -0.021114983, -0.009193681, - 0.037469998, 0.008892217, 0.018186923, -0.008206556, 0.023689369, - 0.016690923, -0.007030892, -0.019708546, -0.009210475, -0.03287637, - 0.008056922, -0.009989319, -0.004532409, 0.03923573, -0.0020598273, - -0.0042594406, -0.0010003543, -0.0021307678, -0.035425156, 0.02122744, - 0.0019021106, 0.0015530464, 0.013736273, 0.013401314, -0.015194776, - -0.0053094495, 0.015103662, 0.027542125, 0.024774205, -0.0074230526, - -0.010687484, -0.0031894043, -2.1998258e-4, -0.0036431823, - -0.0011351166, 0.024050212, 0.0015569058, 0.011017536, 0.007953459, - 0.008007987, -0.011698676, 0.00526197, -0.020626448, 0.024508573, - -0.009935379, -0.01877435, 0.009575167, 0.038143266, 0.029270735, - -0.005650258, 0.0043195114, 0.009389017, 0.00655695, 0.02099505, - -0.030204903, -7.583527e-4, -0.0025446354, -0.011094822, -0.025386604, - -0.025038753, 0.009241772, 0.026581632, 0.023166234, 0.0012135408, - 0.006838692, -7.7417404e-5, -0.0023312485, 0.018478507, 0.015323864, - -0.0078600915, -0.012646486, 0.0038124518, 0.016260408, 0.01816866, - -0.008016296, -0.004640806, 0.008580149, -0.012403633, 0.010482386, - -0.023083378, 0.0081616, -0.0037156667, 0.007665056, 0.013931667, - 0.0076906295, -0.005104257, 0.0153776435, -0.033623535, -0.015952086, - -8.6076034e-4, 0.012475805, 0.009682052, -0.004036586, 0.008981944, - 0.02196436, -0.024348708, -0.025574286, -7.299146e-4, -0.0063652736, - 0.037917458, 0.00968569, 0.0059055313, -0.01478561, -0.01597907, - -0.010971111, -0.0063158255, 0.0022763107, -0.004965433, -0.0152328685, - 0.011620158, -0.013702874, 0.024447752, 0.0011583155, -0.026392665, - -0.029833186, -0.0039149392, 0.0076106875, 0.019171625, 0.023779722, - -7.399092e-4, 0.019200312, -0.012949134, 0.0051985537, -0.01502745, - 0.021109892, -0.0059816935, 0.0041300547, -0.04004943, -0.009704384, - 0.0014138052, -0.0076187756, 0.015785294, 0.016030088, -0.013211229, - 0.021976808, -0.024851738, -0.0051800353, 0.0020700793, -0.013398678, - -0.0106204385, -0.0064607775, 0.0031742458, -0.0036958498, -0.008176008, - 0.0016661441, 0.0049966318, -0.009960071, -0.0013766284, -0.0049674055, - -0.033724803, -0.0034069633, 0.0049389238, -0.0075742877, 0.0030642517, - -0.0082240505, -0.0067110504, 0.013989828, -0.02115186, -0.0047536497, - 0.005992021, -0.018277837, -0.0021798527, -0.020280896, -0.02460732, - 0.021084657, 0.024254989, 0.013928751, 0.014631533, -0.014467245, - 0.03254346, 0.0015374545, 0.031834975, 0.00488876, -0.009918077, - -0.03308585, 0.012267399, -0.008208431, -0.0029120683, 0.0112649435, - -0.027189035, 0.024551094, 0.0057482733, -0.0038899165, -0.007633552, - 0.003351533, -0.029098107, 0.011140169, 0.023407485, -9.099109e-4, - 0.01959726, 9.950905e-4, 0.03818477, -0.006859656, 0.008418525, - 0.005622065, 0.02866383, -0.011510496, 0.02484854, -0.014204749, - -0.007936152, 0.018309562, 0.0021247042, 0.014921487, -0.009218957, - 0.0032530252, -0.008027531, 0.0033284514, 0.049192548, 0.0063291844, - -0.0053606923, 0.0034555446, -0.004506607, -0.017626565, -0.0064446805, - 0.0031229171, 0.022840511, 0.00877548, 0.03222008, 0.0066472976, - 0.022184998, 0.010791763, 0.019938277, 0.01934549, 0.004208652, - -0.01484002, -0.014030245, -0.025303688, -0.0060279616, -0.0048845354, - 0.020735905, -0.007080881, -0.0030137533, -0.009370294, 0.01483342, - -0.01194849, 0.019520346, -0.0065323766, 0.013051565, 0.008957219, - -0.020455891, 0.01883486, -0.029288223, -0.009792178, 0.008510406, - -2.2871309e-4, -0.017836265, 0.0058663026, -0.029133627, 0.022678485, - 0.005564112, 0.010952735, 0.015921284, -0.026283266, 0.0135494815, - 0.007996357, 0.012788715, -0.002971879, 0.013875078, -0.0031909172, - 0.007098424, 0.022404848, 0.033419482, -0.014483897, -0.023394521, - -0.0057369582, -0.0027767187, 0.011992987, 1.5293811e-4, 0.002323341, - -0.021493621, -0.021287715, 0.013038109, -0.0045675733, -0.002253939, - 0.016133018, 0.026297737, 0.020623602, 0.016499296, -0.007569427, - -0.004251792, -0.0023758803, 9.786177e-4, 0.013768502, 0.007303418, - -0.011837369, -0.002925945, -0.0010299, 0.02111601, 0.020420747, - -0.035085086, 0.022830015, 0.012952449, 0.008838405, 0.01507968, - -0.013172232, -0.008094722, 0.019413177, 0.007991508, 0.00885137, - 0.007927848, -9.2143787e-4, 0.006818089, -0.0011365365, 0.0036308079, - -0.0033387216, 0.003787326, -0.011445335, 0.0072512385, 0.005606573, - -0.03309611, -0.014837936, -0.01305759, -0.003407255, -0.007201512, - -0.0068699215, -0.042457897, 0.025599284, 0.02453103, -0.01851831, - 0.031976476, 0.0011994349, 0.021859936, 0.029283155, 0.003323771, - 0.002687486, -3.9252656e-4, 0.008970785, 0.008130509, -0.0047484166, - -0.004018874, -0.009635665, 0.01394549, 0.010776967, 0.025288135, - -0.0033036196, -0.0014771846, -0.008201176, -0.018976213, -0.020463275, - 0.009101331, 0.006652302, 0.008256367, 0.016251506, -0.0023048972, - 0.0097221, -0.0024543342, -0.00518048, -0.019925589, 0.022689411, - -0.0025816052, 0.022476899, -0.0114670405, -0.0094514415, -0.013687911, - 0.0026999842, 0.020678716, 0.007558398, 0.02169736, 0.006511953, - -0.012509253, 0.0045430516, 0.011932629, 0.03628252, 0.00724669 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.022604447, 0.006465574, 0.04200387, -0.03413763, -0.007390815, - -0.025854327, -0.005018111, -0.004856935, -0.0034331852, 0.0053303703, - -0.022426736, 0.002440195, -0.05750921, 0.06437185, 0.0063173682, - -0.011862853, 0.0035129327, 0.0053467015, 0.029183887, 0.025943283, - -0.014232649, -0.011060343, 0.0114632, -0.0200841, -0.02613623, - -0.008793088, -0.021747064, 0.03130847, -0.058636688, 0.06100428, - 0.019799257, -0.011348699, 0.05873072, 0.011859182, -0.028530665, - -0.0013217874, -0.028545301, 0.050824746, -0.020555723, -0.009352682, - -0.020261632, -0.009598242, 0.025582736, 0.034979425, 2.1883337e-4, - 0.025664933, 0.010560878, -0.068209134, -0.03890902, -0.031496834, - -0.06745437, -0.0366797, -0.0541118, -0.008359393, -0.019023726, - 0.0119572515, -0.009332141, 0.07502131, -0.026802437, -0.040674847, - -0.004282869, -2.4874753e-4, 0.004275542, -0.043667477, 0.025356963, - 0.04624967, -0.04399849, 0.035561536, -0.020204384, 0.009136351, - 0.048220415, -0.008892584, 0.030843588, -0.04771958, 0.011342938, - 0.015803339, 0.018872086, 0.051050793, -0.004274623, -0.013733758, - -0.024617473, 0.047666624, -0.051328033, -0.022401268, 0.0087836785, - 0.020434866, 0.027501177, -0.008239561, -0.0074100425, 0.033246737, - 0.0026810872, 0.07867556, 0.056161657, -0.007942951, -0.04309042, - 0.03684399, -0.013744005, 0.038583104, -0.019938482, -0.012148283, - 0.010045544, -0.0015264957, -0.045742948, 0.021049276, 0.050803065, - 0.04923203, 0.020265099, 0.0046100416, -0.015178049, 0.03883879, - -0.04465059, 0.039902348, 0.0110523235, -0.004844512, -0.011955685, - 0.015979698, -0.02206837, -0.03652115, 0.0431261, -0.060687624, - -0.012161003, 0.017963532, 0.008784533, 0.024969084, -0.0054989695, - -0.009932915, 0.033314444, -0.013148159, 0.04893596, -0.059501253, - -0.028758978, -0.038732365, -0.0115443785, 0.02761161, -0.007933827, - 0.020081688, 0.019568332, -0.031121962, 0.04552328, 0.024039194, - 0.042693004, -0.042157773, -0.0380609, -0.017831942, -0.019226829, - 0.011507186, -0.028421046, -0.00724684, 0.04293299, -0.043062784, - -0.059231915, -0.03782733, 0.051056366, -0.08729477, -0.0021435693, - 0.026235724, 0.010308772, -0.02279788, 0.02355513, 0.017283097, - 0.058332354, -0.04507767, 0.02108621, -0.03626126, 0.048510324, - 0.003265275, -0.042388484, 0.008982543, 0.0017577494, 0.025045441, - -0.011726417, 0.027039975, -0.032335974, 0.008557704, -0.048963986, - 0.030467339, 0.055056345, -0.0011562514, -0.0073565166, -0.065680906, - -0.010530514, 0.040434316, -0.018548198, 6.918663e-5, 0.026941653, - 0.009233012, -0.019282266, 0.022300482, 0.021111399, 0.033567112, - -0.015540329, -0.0024074933, -0.022599133, 0.028289685, 0.0055168876, - -0.037266076, 0.04396413, 0.008804594, 0.0061151027, -0.023779847, - -0.025107458, 0.022852693, 0.014289141, -0.023821533, 0.005889832, - 0.021076297, 0.019112155, -0.045061853, 0.024475932, 0.04795439, - -0.0051807263, 0.04683043, -0.070800364, -0.035549138, -0.005606801, - -0.069498226, 0.032079402, 0.009314345, -0.047557507, 0.03158322, - -0.013643953, -0.037158232, -0.020125275, 0.028711649, -0.03653417, - -0.011586977, -0.0073296106, -5.1137904e-4, -0.029283566, 0.010185846, - -0.038446, -0.060466077, -0.016674776, -0.018979037, -0.05230413, - 0.04536201, -0.03148594, 0.026089998, -0.0229612, -0.012025512, - 0.020546652, 0.0089753475, 0.03568075, -0.019337853, -0.055639714, - -0.057760015, 0.045489736, -0.031304173, -0.02640597, -0.03681024, - -8.224974e-4, -0.015584082, 0.07003505, 0.001472458, -0.030969977, - -0.006984425, -0.01872348, -0.017764252, 0.0029734124, -0.027039986, - 0.005944359, -0.064584084, 0.0035895652, -0.0030208535, 0.0017507933, - -0.028842729, -0.017695462, 0.0280397, 4.5056446e-4, 0.010641462, - -0.024861725, -0.029817125, 0.04479289, -0.03853314, -0.012584619, - -0.03810544, -0.008543359, -0.027481284, 0.014192602, -0.056147374, - -0.03166406, -0.02095237, -0.00942144, 0.039473962, -0.01847153, - -0.018206391, -0.0021493556, -0.06108812, 0.0035020246, 0.030536978, - -0.053742837, -0.011926811, -0.025261225, -0.013845641, 0.013697534, - 0.09271443, -0.0060349056, 0.028585894, 0.012548043, 0.026025627, - -0.013959225, -0.014550979, 0.02858878, 0.05009662, -0.024332227, - -0.0055388133, -0.017825376, -0.0047474895, -0.0122484, -0.041390803, - 0.0073393555, 0.053715654, -0.030464312, 0.02039017, 0.018941786, - -0.013997479, 0.03476728, -0.05057331, 0.022574652, -0.020257048, - 0.026365364, 0.01810183, -0.0040295497, -0.005026292, -0.021365138, - 0.0043165744, -0.025429513, -0.031294648, 0.01492552, -0.031675722, - -0.057401396, -0.04601819, 0.014107847, -0.07250037, 0.0012472087, - 0.017552946, 0.011107772, 0.009933591, -0.02752345, 0.010524003, - 0.009095319, 0.061599255, 0.0014190063, 6.985869e-4, -0.019120703, - 0.05688004, -0.040019434, -0.019488454, -0.020476049, -0.04398327, - -0.020824611, -0.014283463, 0.013775085, 0.05927671, 0.011539831, - -0.0064076134, 0.03093408, 0.026342113, -0.007153497, -0.015029075, - 0.0162522, 0.013441793, 0.044287074, 0.010817758, -0.004566186, - -0.03832388, 0.028460888, 0.04525818, -0.04040774, -0.019755663, - 0.009805968, -0.028514497, 0.03296002, -0.03649241, 0.00833119, - 0.0041284407, -0.0035158677, -0.0344364, -0.041986298, -0.018756233, - 0.0056414055, 0.017601985, 0.018921543, 0.0151839545, -1.9286259e-4, - 0.031707145, 0.07253931, -0.03524431, 0.019433433, -8.805127e-4, - -0.054495346, 0.03174151, 0.02633763, 0.052579053, 0.029170636, - 0.018470533, 0.024931388, -0.049433514, -0.0059076506, -0.027150452, - -0.03103577, -0.011983797, 0.011203976, -0.05009697, 0.027928751, - -0.029935356, 0.02834155, -0.034011677, 0.022234356, -0.007065514, - -0.055259895, -0.03698513, -0.032794714, 0.006896874, 0.024507286, - 0.043498013, -0.028298557, 0.03814777, -0.039261423, -0.0052594054, - -0.046210743, -0.00852349, 4.1058616e-4, 0.049833123, 0.009074905, - -0.0021493006, 0.013597185, 0.017166298, 0.03539026, 0.027460996, - 8.3813106e-4, -0.005849714, 0.006249327, -0.037405703, -0.02491697, - 0.012624274, -0.019436553, 0.049222413, 0.029102026, 0.0693964, - -0.03232849, 0.01516574, -0.013021951, -0.022394467, 0.040566325, - -0.0030174884, -0.016029278, -0.014319183, 0.07198671, -0.02972895, - -0.077108726, -0.0046388833, 0.009082885, -0.009183741, -0.020810697, - 0.057725772, 0.049630087, -0.011181901, -0.03288045, 0.016817383, - 0.020673528, 0.015551507, 0.018772544, -0.01274975, -0.0021885827, - 0.010286676, -0.005133446, -0.04210834, 0.0010792735, -0.0073010824, - 0.03539039, -0.03365574, -0.0021308262, -0.022386681, 0.0042454368, - 0.05401614, -0.046188526, 0.030643163, 0.013377432, -0.013191806, - 5.7220814e-4, 0.023579381, -0.042734966, 0.056052245, 0.031962156, - 0.036643926, -0.0071429755, 0.010625363, 0.0045185243, -0.009112016, - -0.0027455406, -0.011121517, 0.020181451, 0.01120359, 0.043796238, - 0.015333796, 0.03506731, 0.014150456, 0.06137393, -0.012235911, - 0.039757427, -0.02012601, -0.022918519, -0.007712545, -0.02161946, - 0.02232343, 0.017426096, 0.00902275, 0.033749644, -0.0013713805, - 0.027203271, -0.015674893, 0.010786498, -0.017711762, -0.007138553, - -0.036977377, 0.018948147, 0.031437248, 0.10116064, -0.0022664317, - -0.061060376, -0.03149081, -0.022339644, -0.020918367, 0.044798687, - 0.009994759, 0.046814658, 0.0099588595, -0.05389469, 0.05262187, - 0.022346966, -0.004904911, 0.0052076946, 0.011754831, -0.014096358, - 0.030418022, -0.022411458, -0.015868457, 0.016640598, -0.08699711, - -0.007317911, -0.040770713, 0.02296997, -0.026246114, 0.00554994, - -0.022215363, 0.008280524, 0.100655325, 0.0047635925, 0.0040291795, - -0.037355255, -0.027668329, -0.0060761957, -0.028838618, 0.0118137095, - -0.03383097, -0.041377846, 0.046346195, 0.0764914, 0.04978207, - -0.01174331, 0.02415414, 0.04040627, 0.0012404983, 0.029435545, - -0.01648145, -0.010845995, -0.02103013, 0.0065196413, -0.032269232, - 0.0021892039, -0.00849028, -0.035820644, 0.0017482843, 0.036895297, - -0.0029708405, -0.008043338, -0.05433299, -1.5815339e-4, -0.0059360713, - 0.0051616197, 0.0026177582, -0.018651932, -0.03759803, 0.022931574, - -0.063310094, -0.072411045, 0.045234725, -0.016208401, 0.024614565, - 0.01021839, -0.021257265, -0.007419991, -0.0027610117, 0.013332943, - -0.004099282, -0.02445519, 0.03922833, 0.06856176, 0.028692227, - 0.009279536, 0.040490992, 0.014358981, -0.03488463, -0.012730677, - 0.009190602, 0.041121174, -0.0061908374, 0.034439165, 0.014823541, - 0.022036219, 0.008143241, -0.029051721, -0.033926718, 0.015925901, - 0.005154443, 0.017854868, 8.462876e-4, -0.025092483, 0.020330759, - -0.060717065, 0.03716578, -0.025428038, 0.03611635, 0.01567109, - 0.011880084, 0.026631854, -0.039503247, 0.00331917, -0.013694933, - -0.015964637, -0.0438035, -0.031782284, -0.025910614, -0.04755051, - 0.010778394, -0.018878825, 0.038778964, -0.038802236, 0.012479762, - -0.03434535, -0.019359697, -0.044443905, -0.022638291, 0.014826401, - 0.02485208, -0.015088149, 0.06371424, -0.008387997, 0.04105877, - -0.006672904, -0.012902263, 0.02824772, 0.04710269, 0.057430312, - 0.03079223, 0.087031335, -0.017946178, 0.027164336, 0.012541355, - 0.040689487, -0.0077048596, -0.025481738, -0.0054913308, 0.05004356, - -0.027265873, -0.006630835, -0.02823312, 1.5453207e-4, 0.012438929, - -0.008210026, 0.019299675, -0.008794194, -0.024545528, 0.0012629094, - 0.011930014, 0.010406658, 0.005306588, 0.012309857, 0.025365893, - -0.018322457, 0.054769553, -0.009260108, 0.045731623, -0.034141514, - 0.009807663, -0.019698115, 0.0018921109, -0.018880354, -0.05268212, - -0.0012020472, 0.032645445, -0.00527506, -0.024671132, -0.0055576367, - 0.016599603, -0.024088275, -0.01115443, 0.05235528, 0.0159801, - -0.07698777, 0.035495665, -0.02258469, -0.02904905, 0.038840972, - -0.004684401, 0.0076564723, -0.0103069255, 0.008600485, -0.026497409, - 0.014423224, 0.05218775, 0.041409127, -0.021990813, -0.039637662, - 0.01563092, -0.0151009, 0.019247934, -0.045417305, 0.052201767, - -0.06187534, 0.010920246, -0.05776487, 0.012601947, -0.02434074, - 0.07371125, 0.020020062, 0.021095138, 0.01672122, 0.010457845, - 0.009322042, -0.0019701293, 0.01860501, -0.010395601, -0.025227994, - 0.020554421, 0.0013636808, -0.008012418, -0.020247003, -0.00965554, - 0.028833581, 0.006089726, -0.0064945547, 0.009423001, 0.028298773, - -0.00563992, -0.0040758583, -0.012408241, -0.0058701755, 0.049673297, - -0.027989982, -0.0044079665, 0.016352229, -0.042953376, -0.027396943, - -0.010923922, 0.034732684, -0.00113492, 0.07401588, -0.024794208, - -0.028850341, 0.04058931, -0.009433263, -0.041285705, 0.0041528726, - -0.035191357, -0.08180471, -0.019531874, 0.0025923208, -0.044117235, - 5.4333644e-4, 0.029288495, -0.0023889255, -0.028021663, -0.010123504, - -0.03360004, 0.037688464, 0.0046220636, -0.072252974, -0.025514787, - -0.0016815223, -0.04787878, 0.0019457975, -0.052497406, -0.012544775, - -0.06108554, -0.031296603, 0.021127548, -0.042640027, 0.047856946, - 0.055551987, 0.0030512025, -0.019277243, -0.050535336, 0.040478207, - 0.037460655, 0.015974678, -0.008967821, -0.0050028106, -0.0065003503, - 0.001788414, 0.017970584, -0.040263653, -0.0106342975, 0.041093465, - 0.009731363, 0.004606779, -0.008417236, 0.07667243, -0.040359825, - 0.0014426458, -0.04575789, -0.034660038, 0.03350979, -0.013436015, - -0.011713061, -0.0220154, 0.01572377, -0.050206784, -0.008291578, - -0.02947907, -0.0036516502, -0.027246146, 0.002235297, -0.02240115, - 0.035486337, 0.050327577, 0.009476097, -0.029277235, -0.031652015, - 0.0041679633, 0.0126206605, -0.052516032, -0.037719395, -0.02468278, - 0.057829026, -0.027811313, -0.061374202, 0.041867547, -6.261974e-4, - -0.02634343, -0.019664807, -0.0064999643, 0.030181073, 0.010453801, - 0.032552835, 0.011430124, -0.012352451, 0.0050843903, -0.027391328, - -0.028392853, -0.014742497, -0.011133375, 0.027115028, 1.4954775e-4, - -0.04346908, -0.0046056495, -0.042645484, -0.040008165, 0.010469046, - 0.010875933, -0.023048569, 0.0067029875, -0.005512864, 0.031622555, - -0.079879, 0.0078839455, 0.017762626, -0.014376156, 0.030565035, - -0.028806979, -0.016942743, 0.004306402, -0.014809805, 0.016639179, - 0.031323347, 0.046202686, 0.007095904, -0.048687905, 0.02912806, - -0.036468774, 0.0316321, 0.035489, -0.011257729, 0.0039672125, - 0.013180209, 0.026503906, -0.027628696, -0.02331184, -0.0103732, - 0.016162507, 0.021187624, 0.031806882, 0.0044539496, 1.648826e-4, - -0.047336336, 0.009345865, 0.05640286, -0.021685962, -0.031778183, - -0.011542197, -0.031939402, -0.026278622, -0.01299677, -0.042699285, - -0.017048027, -0.05183805, -0.011717655, 0.06629095, 0.006507846, - 0.03539991, -0.06019565, 0.02546692, -0.03515499, -0.021296583, - -0.02262061, 0.008686644, 0.004997627, 0.0060309423, 0.040143754, - -0.049648188, -0.025933444, -0.040054712, -0.0055643776, 0.054129265, - 0.014508614, 0.028800499, 0.012553534, -0.04325762, 0.0053501464, - -0.0055961995, -0.01549056, 0.00952692, -0.03867122, -0.008022872, - -0.0020886187, 0.005702157, -0.034989487, -0.050597653, -0.011608282, - 0.09013421, 0.058779664, 0.02652628, -0.058810677, -0.017419236, - -0.02234044, 0.08325654, -0.042546753, 0.009745643, -0.0021034377, - -0.03648623, -0.031194355, 0.025355007, -0.0022195792, -0.017512921, - -0.016785027, 0.046489023, 0.008599786, 0.018781137, 0.013782581, - -0.017274853, 1.4309604e-5, 0.006804386, 0.020861337, 0.060611792, - 0.013453771, -0.03423818, -0.043737873, 0.040043805, 0.017600795, - -0.044261955, 0.009400528, 0.009550782, -0.052101057, -0.03050678, - 0.04156099, 1.7326862e-4, -0.008626539, 0.016546791, -0.0094422335, - 0.01719023, -0.004784928, -0.01667334, -0.009560131, -0.028763484, - -0.05655349, -0.05292663, 0.02137583, 0.025173835, 0.029222893, - -0.016688816, 0.015115935, -0.06081437, 0.022850972, 0.076175354, - 0.02767585, -0.0046482296, 0.0051892367, 0.007391707, 0.0032292642, - 0.024578186, 0.0021242655, 0.054135393, -0.003123735, -0.027978554, - 0.04192823, -0.009414343, -0.055441856, -0.013961451, -0.007409287, - -0.025040012, 0.005048526, -0.033727795, -0.0170129, -0.026587337, - 0.0059514907, -0.01674889, -0.00572145, 0.036412854, 0.006045175, - -0.06538077, 0.045322817, 0.036257084, 0.047202714 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.017860852, + -0.015890874, + -0.015869955, + -0.010372955, + 0.027238298, + 0.007004507, + -0.024510397, + -0.016357085, + 0.013900558, + 0.03158803, + -0.03553689, + 0.0066583725, + -0.01801796, + 0.019322118, + 0.0077701462, + 0.0060138986, + 0.04606923, + -0.009383894, + -0.0026150714, + 0.0071942825, + 0.018718982, + 0.0013688616, + 0.004042794, + -0.016511397, + -0.005250204, + 0.007299348, + -0.012391377, + 0.0030085023, + 6.868504E-4, + 0.014043802, + -0.009653375, + 0.0031861034, + -0.009321209, + -0.0023016208, + -0.03885261, + 0.029887637, + 0.008271173, + -0.018613549, + -0.008788297, + -0.0052319574, + 0.0015661551, + 0.0149329305, + -0.013123089, + 0.016712217, + 8.1562066E-5, + -0.021340031, + -0.024550933, + 0.010965099, + 0.02241897, + 0.02936162, + 0.004336915, + -0.010544039, + 0.031013865, + 0.01659838, + 0.008900474, + -0.0012132234, + -0.015471771, + -0.0028935694, + -0.01380449, + 0.012992569, + -0.00493197, + -0.01924865, + 0.006298038, + 0.009825921, + 0.009405833, + -0.0035922613, + -0.013273766, + 0.028476397, + 0.0032828397, + 0.013321776, + 0.0018944056, + -0.005612787, + -0.03616791, + 0.02553844, + -0.005260357, + 0.011846396, + 0.0023972234, + 0.003151233, + -0.0066335658, + -0.036447514, + -0.00524505, + 0.0090346355, + -0.024077535, + 5.987742E-5, + 0.017501358, + -0.019386284, + -0.0030926866, + 0.036526848, + -0.024186565, + 0.0059464835, + 0.011816626, + 0.026409823, + -0.0021739958, + 0.010435566, + -0.009740786, + 0.001729585, + -0.018152772, + 0.026833648, + 0.020056026, + -9.5719384E-4, + -0.003843387, + -0.0024977105, + -0.006362638, + -0.017727243, + 3.4008842E-4, + -0.004551803, + -0.028579976, + 0.02785416, + -0.028872382, + -0.0047202096, + 0.006774861, + -0.001231232, + -2.646264E-4, + 0.005409045, + 0.017516265, + -0.00463881, + -0.0064622117, + -0.019013045, + 0.0017460564, + 0.0033265988, + 0.0022192602, + 0.017616704, + 0.006807875, + 7.2572473E-4, + -0.01732804, + 0.018500155, + -0.021416837, + -0.0072938465, + -0.011516037, + -0.013427401, + -0.021315096, + 0.009026159, + -0.03213701, + -0.0069615263, + -0.0026581867, + -0.03206288, + 0.0052227187, + 0.008619082, + -0.021763453, + -0.0068352083, + 0.008800599, + -0.004381744, + 0.009179575, + 0.006255061, + -0.0027960134, + 0.022273878, + -3.6315847E-4, + 0.017865678, + 0.011631916, + 0.001303985, + 0.02326771, + 0.00113324, + -0.00793505, + 0.010465514, + 0.025126, + 0.008637399, + -0.013968246, + 0.011692506, + 6.4831745E-4, + 0.0051613743, + 0.0162478, + -0.032637626, + 0.007181497, + 0.013281264, + -0.001980629, + -0.020340059, + -0.0074254056, + -0.0059439284, + 0.0056440397, + -0.011391818, + 0.018053493, + -3.2520044E-4, + 0.0056416993, + -0.002432702, + -0.01055083, + -0.002307088, + 0.012212949, + 0.018195197, + -0.02330884, + -0.0102990875, + 0.02169514, + 0.013520353, + -0.007284007, + -0.014576455, + -0.01849204, + 0.025788354, + -0.004688343, + 0.017953185, + -0.014282095, + 7.919122E-4, + -0.031371783, + -0.007043808, + -9.666723E-4, + -0.013869492, + -0.0010589109, + -0.015443917, + 7.373914E-4, + -4.4262686E-4, + -0.01675175, + -0.008362323, + -0.008163866, + -0.009572924, + 0.02052628, + -0.015726589, + -0.018478926, + 3.4147393E-5, + 0.018311163, + 0.02025668, + 0.0051505156, + 0.008003001, + -0.009229937, + 0.025591245, + -0.029628776, + 0.006919435, + -0.010542306, + 0.010537512, + -0.020855805, + 0.027085118, + -0.013433426, + -0.011713873, + 0.009434472, + 0.009410311, + 0.007832933, + -0.001578519, + -0.012438667, + -0.038368814, + -0.012747625, + -0.016266325, + -0.016151693, + 0.0106450645, + -0.016762627, + -0.025050975, + -0.0088304235, + -0.007433163, + -0.010798028, + -0.0144758895, + 0.025749214, + 0.020695712, + 0.008931539, + 0.0020258827, + -0.010570499, + 0.018487979, + 0.01308781, + -0.005978661, + 0.019032076, + -0.010288033, + 0.007675444, + 0.0073272316, + 0.004252027, + -0.025524799, + 0.032785714, + 0.0048542623, + -0.0016169325, + 0.022677148, + 0.01058129, + 0.0043618665, + 0.024738813, + -0.01756901, + -0.005809304, + 7.428055E-4, + 0.0049409755, + 0.032373447, + -0.0026203396, + -0.021440381, + 0.021964604, + -0.009109756, + -0.01960989, + -0.0048363935, + -0.016228989, + 0.022149866, + -0.012361262, + -0.018456029, + 0.007775665, + -0.0063005835, + 0.014716114, + 0.025516255, + -0.013319306, + 0.009580455, + -0.012743575, + 0.009600215, + 0.017174294, + 0.0016462585, + 0.007787572, + -0.010692479, + -0.014414611, + 0.021221044, + -0.0010239991, + 8.567058E-4, + 0.004992027, + -0.0041145603, + -0.005124173, + 0.025707047, + -0.01973506, + 0.020346938, + 0.0068542473, + -0.0167768, + -0.013224155, + -0.0041485447, + 0.025579939, + 0.0011548898, + 0.008681057, + 0.009810312, + 6.8940857E-4, + -0.007858276, + 0.0012045107, + 0.0076509095, + 0.0036502876, + 0.025104195, + -0.010029024, + -0.0165553, + -0.008172641, + -0.017488923, + -0.03198558, + 0.010064986, + -0.010175002, + -0.007299246, + -0.020109855, + -0.0044561657, + 0.031716794, + -0.002665215, + -0.033679675, + -0.013989605, + 0.004635423, + -0.028593449, + 0.002839358, + -0.014944462, + -0.019984787, + -0.0068705617, + 0.0023070509, + -0.021739492, + 0.013720178, + 0.028928732, + 0.015823623, + 5.6124514E-4, + -0.018105518, + -0.004821755, + 0.012331573, + 6.210034E-4, + 0.008573775, + -0.009462005, + -0.0019956618, + 6.9709646E-4, + 0.02685755, + -0.0088759605, + 0.010418503, + 0.011647392, + 0.0075398525, + 0.009752707, + 0.01896667, + 0.015192039, + -0.020625137, + -0.009618329, + 0.027311414, + -0.011699227, + 0.0036415132, + -0.005184263, + 0.018248131, + -0.001962849, + 0.005934839, + 0.008196925, + 0.005400021, + -0.012107857, + -0.0065400135, + -0.017613383, + 0.0041712043, + -0.018833358, + 0.0035033165, + -0.0054864697, + -0.0017593239, + -0.016082797, + 0.039579883, + -0.0041877455, + -0.03792128, + -0.012791073, + 0.0021560842, + 0.0048181415, + -0.004367364, + 0.008143236, + -0.005014929, + -0.021911688, + 0.0068454235, + -0.017046535, + -0.0032918914, + -0.028079623, + 0.012261753, + 0.010539591, + -0.0040851855, + -0.01033204, + 0.04314987, + 0.028405378, + -0.016785225, + 0.0048231026, + -0.016018946, + 0.006361089, + -0.009622954, + -0.004498665, + -0.007511383, + -0.0011424015, + -0.020670377, + 0.0011553998, + -0.013886725, + -0.004435962, + 0.007503514, + 0.008546096, + 0.006102523, + -0.010946998, + 0.012905057, + -0.022234898, + -0.011266427, + 0.0020069748, + -0.009854243, + 0.0053553106, + -0.016199416, + -0.0072136587, + -0.009091866, + -0.016078586, + 0.0375928, + -0.017438272, + -0.00435051, + -0.030064667, + -0.023747073, + 0.0015078592, + 0.008915185, + 0.006904196, + 0.0067304936, + -0.003788658, + -0.0053552836, + -0.009538897, + 0.021747828, + -0.014130343, + 0.008546625, + 0.004030841, + 0.026388047, + -0.010870698, + -0.010782008, + 0.010548009, + -0.0018484419, + -0.0019935977, + -0.051521458, + 0.027974797, + -0.0210814, + 0.015170303, + -0.010054621, + -0.013927777, + 0.018399572, + 0.009515126, + 0.020479528, + 4.1268353E-4, + 0.004817621, + -0.007565349, + 7.7690434E-4, + 0.0028023352, + -0.023273982, + -0.0048016733, + 0.0010201782, + -0.002572357, + 0.011160712, + -0.018954119, + 0.00740997, + 0.012901088, + -0.017764678, + 4.090847E-4, + 4.151928E-4, + -0.012173298, + -0.0038445466, + 0.011480205, + -0.022599014, + -0.005153842, + 0.0020779686, + 5.0685566E-4, + 0.0065349494, + 0.007218822, + -0.0027709256, + 0.04646432, + 0.005140477, + -0.026407536, + -1.2009937E-4, + 0.0066680675, + -0.009634691, + 0.0062816963, + 0.0038591851, + 0.017515644, + -0.008458653, + 0.027899731, + -0.0033037462, + 0.029453065, + 0.004894568, + 0.018983467, + -0.008124161, + 0.016953621, + 0.005276924, + -2.2465287E-4, + -0.0029509377, + 0.0014035506, + 0.012185237, + 0.011604812, + -0.03948019, + -0.011952973, + -0.0059876335, + 0.0017104626, + 0.014638436, + -0.02250543, + 0.0036585687, + 0.00802658, + -0.0036195072, + -0.017985096, + -0.0026835755, + 0.02444829, + 0.010943292, + 0.011374427, + -6.633317E-5, + 0.016398571, + 0.00980884, + -0.01692717, + -0.011041084, + 0.030518916, + -0.026326915, + 0.036243394, + -0.013889387, + -0.022968108, + 0.0068709245, + 0.020726692, + -0.013887989, + -0.015677607, + -0.011843784, + 0.004023425, + -0.019940292, + 0.009412197, + -0.0017302489, + 0.010516841, + -0.01535519, + 0.022226471, + 0.0058123646, + 0.0028421106, + -0.0063566845, + 0.023706628, + 0.005535196, + 0.012424654, + -0.0147429155, + 0.004897708, + 0.0022616684, + 0.0030462102, + -0.0033049185, + 0.023485422, + -6.9543225E-4, + 0.013825985, + -0.0053291647, + -0.006735476, + -0.0016395444, + -0.00311557, + -0.030963201, + -0.013957564, + 0.00638878, + -0.010119317, + 0.0057802442, + -0.00882502, + -0.012332035, + 0.0032349757, + -0.03550594, + -0.008015001, + 0.0063847196, + -0.008574653, + 0.0068767145, + -0.0017606339, + 0.0047068843, + 0.00501185, + -0.010241156, + 0.009760325, + 0.0065754177, + 0.0012325515, + -0.0077716038, + 0.02075527, + -0.01904411, + 0.0032477798, + 0.017461097, + 0.0026970715, + -0.0199763, + 0.011660581, + 0.00562673, + 0.0098871365, + -0.0036194716, + 0.02829519, + -0.01740429, + 8.730905E-4, + -0.0020388754, + 0.017727232, + -0.007936622, + 0.03485169, + 0.005231073, + -0.013849277, + 0.013670952, + 0.0024346388, + 9.4864465E-4, + -0.0068353903, + 0.0060760113, + 0.009849847, + 0.009182701, + -0.0043254383, + 0.025024952, + 0.023481773, + 0.0036723248, + 0.0015841865, + 0.0072511327, + -0.022290904, + -0.008212646, + -0.041050754, + 0.0046419194, + 0.030912783, + -0.013909372, + 0.021494849, + -0.001474682, + 0.011005778, + 0.024427118, + -0.0071590124, + 0.0029990135, + 0.017493458, + -0.019244604, + -0.034281574, + 0.00198053, + 0.046066366, + 0.020722449, + -0.012158095, + -0.002564372, + 0.026683627, + 0.010759213, + 0.010355941, + -0.011336419, + -0.008028232, + -0.015882106, + 0.013225293, + 6.874517E-4, + 0.0034146002, + 0.014958923, + -0.018016834, + 0.034117617, + -0.0054969587, + -0.0033705279, + 4.097387E-4, + 0.021046849, + -0.020548455, + 0.008502445, + 0.016403602, + 0.012263239, + 0.023314789, + -0.011033924, + 6.307787E-4, + 0.0028152731, + 0.03230431, + -0.0075813415, + 0.007928916, + 0.031824652, + 0.015414315, + 0.032880533, + -0.009712507, + -3.1543933E-4, + -0.01609443, + -0.017461274, + -0.010716293, + -0.006802859, + -0.017051125, + -0.01636894, + -0.008738775, + 0.0035194957, + -0.020125253, + 0.01639158, + 0.029996844, + -0.020003146, + -0.0021912986, + 0.015318046, + -0.010033324, + -0.017014163, + -1.2254939E-5, + -0.025432017, + -0.019918354, + 0.0050745932, + -0.012066074, + -2.3357697E-4, + 0.012512532, + 0.0020143588, + -0.0143969515, + 0.008934708, + 0.019015245, + 0.0064573283, + 0.004266716, + -0.010920088, + 0.0127951875, + -0.0048328787, + 0.011231238, + 0.011975363, + -0.0041244742, + -0.021219216, + 0.011581264, + -0.004821589, + 0.005102479, + 0.0012328717, + 0.007220225, + 0.021494018, + 0.0016409258, + -0.01371924, + 0.0051752785, + 0.022138055, + -0.0125072785, + -0.02553728, + 0.008391084, + 0.029810376, + -0.0055196057, + -7.7701855E-4, + -0.026494624, + 0.0065924637, + 0.026675334, + 0.0047519533, + -0.020089813, + 0.0019268357, + 0.024900272, + -0.005027633, + 0.011835157, + -0.0010788504, + -0.010661562, + 0.0015216147, + 0.0052857026, + -0.012142834, + 0.04548257, + 0.005338016, + 0.0039826147, + -0.012757583, + 0.019309102, + -0.012477574, + -0.0144747505, + 0.007790946, + -0.0071590887, + 0.012959394, + -0.0027685158, + -0.025810327, + 0.011406631, + 0.011673922, + 0.0038936418, + 0.004298745, + 0.0017444101, + 0.0031462945, + -0.016374221, + 0.019629749, + 0.021497337, + -0.011223358, + 0.004285702, + 0.0017395363, + 0.0044725104, + 0.0029616, + 0.004713053, + -0.020506987, + -0.0061108526, + -0.012491798, + -0.027505383, + -0.0159189, + -0.011780036, + 0.0155714275, + 2.9697255E-4, + -0.01408573, + -0.005117261, + -0.010084599, + 0.008573089, + -0.0071888715, + 0.018095618, + 0.016643366, + 0.008540451, + 0.013027419, + 0.019441135, + 0.009033357, + 0.009268003, + 0.007955272, + 0.016938534, + -0.026378829, + -0.027492184, + -0.0020312814, + -0.019097283, + 0.012834304, + 0.0033435374, + 6.474566E-5, + -0.016535098, + 0.011066414, + 0.0046227374, + 0.005454051, + 0.019805314, + -0.009443159, + -0.004874944, + -0.014952011, + -0.008200916, + 0.008051062, + 0.020372959, + 0.0036742867, + 0.004249151, + 0.027175462, + 0.025253275, + -0.028564883, + -0.0058164215, + 1.4868064E-4, + 0.013700817, + -0.023907386, + 0.006797942, + 0.01723724, + 3.300415E-4, + 0.004003349, + -0.018193616, + -0.022999236, + -0.007536374, + 0.012763747, + 0.0064550126, + 0.021927152, + 0.011535521, + 0.0053027566, + -0.018769182, + -0.021673435, + -0.02033281, + 0.012147707, + -0.023043739, + 0.0019975908, + 5.3277944E-4, + -0.022422409, + -0.008212233, + -0.004549371, + -6.486513E-4, + 0.028111763, + 0.011431728, + -0.0060714567, + -0.008379827, + -0.0059433696, + -0.013615295, + -0.0033859522, + 0.02245105, + -0.012942887, + 0.010762222, + 0.013210304, + -0.0024778622, + -0.021707745, + 0.012411969, + 0.011844171, + 0.021883689, + -0.0058950284, + 0.015674936, + 0.019353328, + 0.009644777, + 0.009424663, + 5.415024E-4, + -0.003082677, + 0.004939192, + -0.007671688, + -0.018500963, + 0.005595886, + -0.015591818, + -9.291187E-4, + -0.007936036, + -7.6773623E-4, + -0.008587511, + -0.012718238, + -0.0039171497, + 0.0042356094, + -0.020162571, + 0.008015224, + -0.026286216, + -0.004063056, + -0.006640803, + -0.021468502, + -0.013167105, + 0.01152884, + -4.927424E-4, + 0.010217584, + -0.0024100123, + 0.00907181, + 0.015626954, + 0.012071216, + -0.002573881, + -0.015016423, + -0.004110475, + 0.006443643, + -0.006096173, + -0.004217742, + -0.0097040385, + -0.020000435, + -0.009160418, + -0.0066996166, + -0.022289962, + -0.0059808674, + -0.014271662, + 0.008770874, + 0.0028539808, + -0.039990406, + -0.024693701, + 0.003558873, + 0.005592363, + 0.010565216, + 0.018721348, + 0.027355358, + 0.0035583498, + -0.0076168077, + -0.016060049, + 0.01310632, + 0.0039685895, + -0.012031861, + -8.512966E-4, + 0.031264056, + -0.008857923, + -0.020104915, + -0.004507385, + 0.0038416702, + 0.015576735, + -0.005519562, + 0.0043772846, + 0.024475722, + 0.0011153796, + -0.018526018, + 0.018284, + -0.008015219, + 0.012342322, + -0.018767433, + -0.020639526, + -0.009593296, + 0.001618655, + -0.0012625369, + 0.011809085, + 0.012558768, + -0.030890457, + 0.003157317, + -0.016345311, + 0.016711995, + 0.025617179, + -0.009766658, + 0.038492247, + 0.009878322, + -3.8920803E-5, + -0.0044447035, + -0.009137785, + 0.021410275, + 0.0056795934, + 0.006611932, + -0.006692392, + 0.003393425, + 0.00940571, + 0.009212535, + -0.022959795, + -0.008629162, + 0.010019324, + 8.756224E-4, + 0.00650128, + -0.013586748, + 0.022436963, + 0.006458179, + 0.0014358591, + 0.005539898, + -0.014953071, + 0.034362607, + -0.01743991, + 0.004943923, + -0.02001505, + 0.024566088, + -0.0025444787, + -0.028461142, + -0.0093941055, + 0.0025061471, + 0.036523983, + -0.022439362, + 0.004480765, + -0.03275925, + -0.0025359588, + 0.02762246, + 0.01327933, + -0.0042488268, + 0.0058584693, + 0.033654656, + 0.01205576, + 0.018905615, + 0.0068763695, + -0.023147928, + -0.014944139, + 0.00667023, + 0.00610909, + -0.02019521, + 0.0034230163, + -0.020089814, + -0.005468973, + 0.013992628, + 0.02123319, + -0.009458906, + -0.0018341966, + -0.008303405, + 0.019745788, + -0.011962258, + -0.013279646, + -0.009245358, + -0.0069906884, + 0.021746796, + 0.003687909, + 0.00417168, + -0.004717817, + 0.022914201, + -0.009157194, + -3.759074E-4, + 0.021258242, + 0.032602, + -0.0078828195, + -0.012476263, + -0.016846294, + 0.0075827152, + 0.03138575, + -0.013098606, + 0.021670155, + -0.026031025, + 0.022642046, + -0.011108384, + 0.032581523, + -0.0122747375, + -0.009857058, + 0.0076961, + 0.0073835524, + -0.02314737, + -7.3349633E-4, + -0.019689884, + -0.017809259, + -0.0038621912, + 0.015570009, + 0.028569933, + -0.009971772, + 0.0014138677, + 0.008824807, + 0.011504944, + 0.02266663, + 0.01564698, + -0.021663152, + -0.014774861, + 0.0077932663, + -0.009421025, + 0.005503038, + 0.013798779, + 0.028541407, + -0.0017129628, + -0.024297135, + -0.006646709, + -0.010970725, + -0.01445241, + -7.632897E-6, + 6.67498E-5, + 0.006449452, + -0.002624431, + 0.00646945, + -0.0012353731, + -0.019563697, + 0.003449015, + -0.010062474, + 0.021423923, + -0.037855715, + -0.032887362, + 0.008984777, + -0.0066294954, + 0.010472501, + 0.008722402, + 0.016199535, + -0.007588691, + 0.021415044, + 5.134304E-4, + 0.020719469, + -0.019309172, + 2.6286565E-4, + -0.0058922186, + 0.007027334, + -0.036692962, + 0.036938492, + 0.0030764462, + 0.029080283, + -0.011904776, + -0.014220278, + 0.006333247, + -0.0050353673, + 0.008506798, + -0.007958279, + 0.02998533, + 0.017616376, + -0.03163222, + -0.012649064, + 0.013466604, + 0.010484094, + -0.022313336, + 0.009666622, + -0.026275441, + -0.006384794, + -0.01451728, + 0.002827247, + -0.0039331988, + -0.020163441, + -0.028925683, + -0.003461644, + -0.0031371124, + -0.02634967, + -0.012100907, + 0.01762153, + 0.014238139, + 8.192262E-4, + -0.015125981, + -0.007976722, + -0.006584701, + 0.015641548, + 0.005565917, + 8.633758E-4, + 0.008737566, + 0.0066132965, + 0.04535816, + 0.003834346, + 0.02700679, + -6.669121E-4, + 0.04913172, + -0.01228763, + -0.020269975, + 0.005931176, + -0.022335907, + -0.027508207, + -0.009652427, + 0.010119219, + -0.008151593, + 0.013000031, + -0.012875785, + -0.008794913, + -0.021009708, + 0.007125848, + 0.003054013, + 6.959495E-4, + 0.018264731, + -0.012710382, + -0.01290321, + -0.020881267, + -0.010524572, + -0.016975129, + -0.033696726, + -0.00379206, + -0.0010447334, + -0.014714613, + -0.01303768, + 0.0028027047, + -0.021286787, + -0.0053563197, + -0.023769781, + 0.01541286, + 5.3187524E-4, + -0.01559163, + -0.017563948, + -0.016766569, + -0.0018693145, + -0.015914792, + -0.010258379, + 0.009082119, + -0.015726054, + 0.008185101, + 0.007347058, + 0.023101417, + -0.009692859, + -0.013792276, + 0.0060871355, + 0.030752912, + -0.009250081, + 0.001306769, + -0.005612946, + 0.009978018, + -6.589887E-4, + 0.0152261425, + -0.024977583, + 0.0027625863, + -0.009084436, + 0.0051076165, + -0.002506914, + 0.019257847, + -0.009854126, + -0.0029338284, + -0.006291458, + -0.016030153, + -0.0019409795, + -0.019698868, + -0.0022954075, + -0.00323552, + -0.028289279, + 0.026309062, + 0.019693706, + -0.0063264715, + -0.005475828, + -0.008495762, + -0.014326718, + -2.9898758E-4, + -0.0013831464, + -0.024876636, + 0.0061836676, + 0.005918683, + -0.014481754, + 0.0118713705, + -0.017240934, + 0.032018367, + 0.012187027, + -0.017825687, + 0.014241311, + 0.0016416756, + -0.009187437, + 0.0048847985, + -0.018216852, + 0.0018634079, + 3.195929E-4, + -0.005294461, + 0.0011871735, + 0.0033824835, + -0.0044424445, + 0.0065877917, + 0.006009188, + -0.00926262, + 0.007550899, + -0.03364563, + -0.0047170566, + -0.017316632, + 0.012701551, + -0.0391295, + -0.01463019, + -0.015210115, + 0.018572714, + -3.1914044E-4, + -0.03664908, + 0.013086201, + 0.007484658, + 0.016516797, + -0.005541414, + -0.008628426, + 0.0084587, + 0.012678401, + 0.0039020744, + -0.0070248204, + -0.0021863023, + 0.01295564, + -0.0051209303, + 0.023636568, + -0.010705825, + 0.007281028, + 0.015353941, + -0.0058409483, + 0.020854414, + 0.0034214654, + 0.0040412094, + 0.036194522, + 0.0077870702, + -0.0011539932, + 0.016650407, + -0.026137516, + -0.0043197027, + -0.014855458, + -0.029251134, + 0.0044429777, + -0.0052496935, + 0.019334683, + -0.020640928, + -0.003140421, + -0.014354671, + -0.009351089, + -0.01660474, + 0.011577132, + -0.023640491, + 0.02400845, + -0.027119305, + -0.006335629, + 0.0017387483, + -0.0031262906, + -0.022958066, + 0.008961926, + 0.010848866, + -0.010373446, + -0.004942123, + -0.025756583, + 0.017388405, + 0.007566544, + -0.004664055, + 0.012476281, + -0.013069578, + 0.019793062, + 0.022203324, + 0.0076161865, + -0.005827422, + -0.018037198, + -0.020279057, + -0.018794235, + -0.0136755835, + 0.013786175, + -0.0075176843, + -0.02762568, + 0.0024490769, + 0.0045202114, + 0.009119396, + -0.009754627, + -0.03706659, + 0.018408109, + 0.018199515, + 0.016052641, + 0.011569731, + -0.011786043, + 0.0022880994, + 0.013075995, + -0.012149595, + 0.0023446104, + -0.015501332, + 0.011260361, + -0.0021621138, + -0.025643706, + 0.01753912, + 0.0023727186, + -0.032379396, + -0.0047780774, + -0.0034884773, + -0.005309644, + 0.0042031347, + 0.012061707, + 0.012182573, + -0.011787104, + -0.008471226, + -0.0069910306, + 0.0023644657, + 0.010893036, + -0.0015057249, + 0.0024420246, + -0.044774257, + -0.0065326258, + 0.012394502, + -0.012692938, + -0.009404657, + 0.0033840302, + -0.011782398, + -0.0029703956, + -0.005816007, + -0.01246665, + 0.003272234, + 0.017223347, + -0.0028470522, + -0.019798385, + -0.011544873, + -0.018640563, + 0.019958768, + 0.009604134, + -0.0064127347, + -0.013003545, + -2.7942695E-4, + -0.014384813, + -0.008007933, + 0.012723968, + -0.013590869, + 0.001725101, + -0.014323282, + -0.007701767, + 0.025796833, + -0.009071389, + 0.019983301, + -0.00257961, + -0.0054094936, + -0.009243778, + -0.009357068, + 0.0023811765, + -0.019620646, + -0.011006664, + -0.0018026577, + 0.013189875, + 0.026094502, + -0.021226902, + 0.0061203185, + -1.7590314E-4, + 0.009546481, + 0.010299021, + -0.011406931, + 0.010976859, + -0.03649378, + -0.030213187, + -0.020682734, + 0.023223385, + -0.012448503, + 0.0030472397, + 0.0156343, + 0.010958898, + 0.01470901, + 0.012886589, + 0.017471822, + 0.025026819, + 0.0131639615, + -0.01454235, + -0.016300468, + -0.011391623, + 0.017758612, + 0.009432409, + 0.013529836, + 0.007986429, + -0.023496626, + -0.0011609244, + -0.0031199697, + -0.008479855, + -0.024110688, + -0.008767204, + 0.0120291235, + 0.020759761, + -0.010452752, + 0.006094104, + -0.018505689, + -0.010350885, + -0.0013499487, + -0.028367972, + 0.028736552, + -0.003499103, + -0.011935538, + 0.02845309, + 0.0076976935, + -0.015232229, + 0.008721925, + 0.01216129, + -0.0050236606, + -0.030279027, + 0.018592605, + 0.0059573227, + 0.023313463, + 0.013581778, + -0.007690658, + 0.0121039655, + 0.0021068447, + 0.035612673, + 0.017961336, + 0.007932783, + 0.0013345286, + -0.024458267, + -0.0049286755, + 9.5910113E-4, + -0.005603896, + 0.026364561, + -0.020181598, + -0.0121601615, + -0.013110648, + 0.006156535, + -0.022488672, + 0.0062892935, + 0.011304654, + 0.012214421, + -0.012373091, + -0.011893343, + -0.005875662, + 0.0070945434, + -0.023869203, + 0.01728029, + 0.0043841535, + 0.0333576, + -0.0019727082, + -0.011895102, + -0.037327763, + 0.0073868814, + 0.029910907, + -0.027630648, + 0.0063704797, + -1.7817598E-4, + -0.009679969, + -0.010125775, + -0.0126655875, + -0.0062028226, + -0.0044200816, + -0.0022452306, + 0.023829037, + 0.017117998, + -0.015322805, + 0.014590744, + 0.0046026623, + 0.0028636123, + -0.024707178, + 0.0049675857, + -0.013513241, + 0.008700756, + 0.007254966, + 0.0038104411, + 0.0159251, + -0.01065236, + 0.018251635, + -0.013544824, + 0.010088618, + 0.013837329, + -0.0046830736, + -0.028918087, + -0.0043646386, + -0.0016318926, + 0.0077551706, + 0.00838039, + 0.0032734536, + 0.0126201445, + 0.0043799086, + 7.9545815E-4, + 0.0069010444, + 0.006104486, + 0.02560977, + 0.01004506, + 0.016708488, + -0.014978379, + -0.0027880215, + 0.011996767, + -0.040422577, + 0.016667007, + -0.01920599, + 0.031384226, + -0.028325314, + -0.025626538, + -0.014393522, + 0.011156164, + 0.0022889148, + -0.0022811415, + -0.0032825768, + -0.0020065727, + 0.020385915, + 0.0066497535, + -0.015931763, + 0.017242886, + 0.004907847, + -0.0036723518, + 0.002213425, + 8.3888654E-4, + -0.019521583, + 5.3067354E-4, + -0.022737917, + 0.029272197, + 0.012151084, + 0.0031559316, + 0.0011699077, + -0.0016997176, + -0.034739193, + 0.015040778, + 0.0040348833, + 0.01201456, + 0.005113322, + -0.009203976, + -0.019037057, + -0.009538997, + 0.008912265, + 0.029258957, + 0.003755612, + -0.021690603, + -0.0034461273, + -0.0024440126, + 0.0016298331, + -0.019536417, + -0.0027043286, + 0.0015534702, + 0.008051516, + 0.006854982, + 0.005590863, + 0.010184566, + 0.015053452, + -0.008010051, + -0.028119296, + -0.0060673356, + 0.008744801, + 5.214524E-4, + -0.0059573147, + 0.002173264, + -0.0055230865, + -0.008568506, + -0.01718873, + -0.05110513, + 0.012310597, + -0.0236212, + -0.02491514, + -0.02340331, + 0.002874915, + -0.016891915, + 0.03420897, + 0.0039650947, + -0.014052013, + 0.02609947, + 0.022503464, + -0.009298195, + 0.0012832916, + -0.0063030557, + 0.026064157, + -0.010917997, + 0.0010577327, + -0.003810441, + 0.01292829, + -0.010915567, + 0.033165276, + -5.861135E-4, + -0.010433274, + 0.0075429683, + -0.0075499336, + -0.016106496, + 0.009959688, + 0.004180807, + -0.026795693, + -0.011817452, + -0.011561665, + 0.0057308464, + 0.011104365, + -0.008093485, + -0.022911685, + -0.0056086006, + -0.014794092, + -0.0017471425, + 0.016966803, + 0.017382776, + 0.0014507853, + 0.005183131, + -0.007028342, + -0.03203558, + 0.0014816631, + -0.022736466, + 0.0028292993, + -0.009279515, + 0.019305997, + -0.036269672, + 0.0059318203, + 0.0021174732, + -0.019216226, + -0.01779958, + -0.006620258, + 0.017211407, + -0.010223849, + -0.06318752, + -0.0016129034, + -0.007779662, + 0.014987873, + 0.006669928, + -0.0377594, + -0.009569478, + -0.008469452, + 7.082807E-4, + 2.8141297E-4, + 7.7621423E-4, + -0.0039060724, + 0.011975127, + -0.009413863, + 0.008124766, + -7.4539124E-4, + 0.0072708805, + -0.02107163, + -0.027463943, + -0.019725628, + 0.009174305, + -0.010945223, + -0.011566494, + 9.706925E-4, + -0.016989173, + 0.034354813, + -0.020005561, + -0.0046187527, + -0.0034499175, + -0.024565184, + -0.0074642533, + -0.0033841995, + 0.037036378, + 0.0041174646, + 6.462798E-4, + 0.0032252092, + -0.0028021075, + 0.010236039, + -7.8080164E-5, + -0.01479459, + 0.020450296, + -0.022439176, + 7.43022E-4, + 0.02686646, + 0.012194538, + 0.016490638, + 0.011463229, + -0.005840227, + 0.026073454, + -0.0022754457, + -0.0035368523, + -0.021191735, + 0.036627118, + 0.013505546, + -0.004213907, + -4.5774813E-4, + -0.0010198208, + -0.016682724, + 0.010200309, + 0.013964667, + -0.010319942, + 9.527427E-4, + 0.005254255, + -0.026468625, + -0.012920849, + 0.01783924, + 3.8518396E-4, + 0.033691525, + -0.0015737079, + -5.453683E-4, + 0.001129247, + 0.0085582705, + 0.0010026905, + 0.009691945, + 0.01643964, + -4.7146087E-4, + 0.016008258, + 0.007279428, + 0.020643132, + -0.0011089377, + -0.026261663, + -0.012583335, + -0.0040861145, + -0.001957654, + -0.03191084, + -0.004991852, + 0.015027744, + -0.0032042887, + -0.0032728647, + -0.02996149, + -0.00892394, + -0.008145288, + -2.3803767E-4, + 0.0019038974, + 0.01951981, + -0.037104566, + -0.011480489, + 6.5925193E-4, + 0.021493683, + -0.015080131, + -0.008896837, + -0.0081722215, + 0.016810186, + 2.335749E-4, + 0.016978616, + -0.020827081, + -0.013159997, + -0.008059643, + -0.003521585, + -0.0027939887, + -0.030942028, + -0.0047107623, + -0.016074678, + -0.021296252, + -0.008160763, + -7.8216585E-4, + 0.019800251, + -0.0011938666, + -0.030652437, + 0.0035994109, + -0.007602465, + 0.0089962715, + -0.0064386646, + 0.0029782811, + -0.0033620028, + 0.015374934, + 0.009910805, + 0.008132507, + 0.014922158, + 9.598114E-4, + 0.0277703, + 0.017693825, + -0.0093280915, + 0.0033644254, + -0.011723669, + -0.016474694, + 0.00539372, + -0.0042834114, + 0.011939668, + -4.5489136E-4, + 0.020294195, + -0.005650304, + -0.0033625364, + 0.014709636, + -0.011773453, + 0.006057486, + -0.008811091, + 0.0024435306, + 0.034992874, + 0.023384338, + 0.021174753, + 0.025049575, + 0.033637796, + 0.008817846, + 0.012945336, + 0.0018270478, + 0.0044186492, + -0.029707469, + 0.013536971, + -0.008721086, + -0.028847178, + 0.005993197, + 0.029241594, + 0.0067044883, + 0.016934982, + 0.0023573758, + -0.006553364, + 0.026902532, + 0.006082442, + 0.008581773, + -0.04535495, + -0.009682883, + 0.013137437, + -0.011768362, + 0.0020635582, + 0.037123032, + -0.011974296, + 0.004369931, + -0.019170135, + 0.015233052, + -0.017034892, + 0.00861585, + 0.0044323225, + 0.010254419, + -0.017178433, + 0.008652028, + 0.023469176, + -0.017150393, + -0.008074041, + 0.016654924, + 0.020446517, + -0.010099632, + -5.1329944E-6, + 0.010513126, + 0.039817285, + -0.023904197, + -4.801454E-4, + -0.030131767, + 0.007206838, + -0.010396384, + 0.01983645, + 0.016721517, + -0.020259852, + 0.006992063, + -0.015579301, + -0.018791966, + -0.012818416, + 0.04039062, + -0.0066269315, + 0.010660653, + 0.0051945318, + -0.014878966, + -0.009842734, + -0.012996087, + -0.008758226, + -0.00517058, + 1.6417906E-4, + 0.007687832, + 0.005965867, + 0.042203818, + 0.016195862, + 0.013679348, + -0.012424524, + -5.953399E-4, + -0.01229701, + -0.034458887, + -0.014682971, + -0.013950894, + 0.0037004254, + -0.0103133805, + -0.014649055, + -0.018635023, + -0.023731556, + 0.014695873, + -0.006360973, + 0.0071983137, + 0.008970605, + 0.010349825, + 0.009133097, + 0.0064618145, + -0.007436664, + 0.009635414, + -0.021957856, + 6.4237614E-4, + 0.013927337, + 0.017009446, + 0.018796373, + 0.031664673, + 0.0031437865, + -0.010158846, + 8.780102E-4, + -0.010961165, + -0.008324623, + -7.057351E-4, + 0.0052665016, + 9.477617E-4, + 0.013776161, + 0.009005076, + 0.028049242, + -0.022979597, + -0.00780669, + -0.0013419483, + -0.03295706, + 0.024529338, + 0.0035795993, + -0.015960427, + -0.0014147947, + -0.011999883, + -0.003284703, + 0.005163876, + 0.019652177, + -0.0017211832, + -0.0097519625, + -7.8478636E-4, + -0.014472744, + 0.0059438157, + 0.019179843, + -0.0035988963, + 0.0077037686, + 0.0051682913, + 0.007121211, + 0.009955892, + 0.019462833, + -0.0029795829, + 0.0058307718, + -0.0039283913, + 0.013320473, + -0.005397531, + -0.011239709, + 0.0054972004, + -0.006326587, + -0.014621571, + 0.027623832, + 0.016982447, + -0.008325155, + 0.020619234, + 0.025173018, + 0.0050738943, + -0.027284324, + 0.010815342, + -0.018079745, + -0.017221764, + -0.01892181, + -0.026703347, + 0.008185531, + 0.007634297, + 0.005778016, + -0.0141572505, + -0.008652387, + -0.0018656243, + 0.04507524, + -6.900217E-4, + -0.008137384, + 9.4041036E-4, + 0.02840641, + 0.00442439, + -3.7174593E-4, + -0.001059435, + 2.0964693E-4, + 0.008557197, + 0.0018602153, + -0.038041722, + -0.0073454827, + 0.017147118, + -0.0028109872, + -0.0043549202, + 0.0045182873, + 0.02143569, + -0.004861081, + -0.036111213, + -0.025886351, + -3.325812E-4, + -0.028651668, + -8.467738E-4, + -0.013052811, + 0.023986802, + 0.016558927, + -0.018590508, + -0.004267214, + -0.0028339098, + 0.003293195, + 0.031074584, + -0.012492819, + 0.006316869, + -0.006363238, + 0.01667075, + 0.014371742, + -0.008398584, + 0.007568558, + 0.008248039, + -0.013534073, + 0.018835083, + -0.035442483, + 0.02436843, + -0.0030231387, + 3.5724926E-4, + -0.0048156297, + 0.024528269, + -0.015391436, + 0.006824032, + -0.006346161, + 0.0042199544, + 0.012171783, + 0.028831596, + -0.021151092, + 0.027504545, + -0.0016918728, + 0.016992021, + -0.0047663962, + 0.010607694, + -0.0019162168, + 0.004860281, + -0.03199312, + 0.020400405, + 0.019002384, + -0.01747719, + -0.022955623, + 0.0062475074, + 0.013437879, + 0.018938199, + 0.008445875, + 0.01047349, + -0.009842428, + 0.015869053, + 0.011416644, + 0.00778668, + -0.0036573627, + 0.0031727096, + 6.6563014E-5, + -0.015275982, + -0.008869515, + -0.0033475808, + 0.009823876, + -0.0028033534, + 0.020430773, + 0.011391214, + -0.0043576825, + 0.033279214, + -0.018690487, + -0.008146281, + -0.0022215643, + -0.0017283091, + -0.014453375, + -0.0036169956, + 0.003403271, + -3.360027E-4, + 0.0037998988, + -0.018998904, + -0.020509643, + 0.021837465, + 0.010731631, + -0.0031591498, + -0.00950633, + -0.020604378, + -0.006871766, + -0.003082217, + 9.0128457E-4, + 0.027746212, + 0.012460487, + 0.023942556, + -0.008565852, + -0.012920308, + 0.010081797, + 0.01639117, + -0.004880758, + 2.8395167E-4, + -0.011292324, + -0.00438716, + -0.021673545, + -0.019299895, + -0.011652074, + -0.015160836, + 9.496951E-4, + 0.0055565266, + -0.020829547, + 0.00950317, + 0.012177535, + 0.0061109923, + 0.021384018, + 0.004364062, + -0.012703725, + -0.002779268, + 0.019343525, + -0.021371165, + 0.026314717, + 0.024489097, + 0.0047938013, + -0.009272723, + 0.013162894, + -0.0114894705, + 0.027671024, + -2.5901463E-4, + -0.007076292, + -0.014258768, + -0.025402982, + 0.010862519, + -0.008388552, + -0.023708167, + -0.0067861755, + -0.00594558, + 0.032045487, + -0.03211204, + 0.0030309486, + 0.004534587, + 0.011802936, + 0.0018633344, + 0.009647446, + -0.02026444, + -0.012465293, + 0.011665553, + 0.03371721, + 0.02401593, + -0.020067176, + -0.0032446783, + 0.010930453, + 0.0062693995, + -3.1395168E-5, + 0.02267755, + -0.011626507, + 8.718712E-4, + -0.004571098, + 0.014167973, + -0.010225273, + 0.011395933, + -0.04124157, + -0.004230651, + -0.0098090125, + -0.0034295095, + 0.015490736, + -0.0031144116, + 0.022353506, + -0.015563454, + 0.00881442, + -0.01592948, + 0.008837208, + -0.009274082, + 0.015699582, + 0.008151704, + -0.0047424757, + -0.003274802, + 0.0117403185, + -0.01179089, + -0.0017158893, + 0.009701345, + 0.01883774, + 0.01411594, + -0.0010596608, + 0.015505807, + 0.025695411, + -0.004806462, + 0.012694053, + 0.0077901385, + -0.0052916612, + -0.001317579, + 0.025744095, + -0.005014693, + -0.0043679345, + 0.018749332, + -0.05556078, + 0.007944665, + 0.012104769, + -0.013361464, + -0.0093279, + 0.011024763, + -0.0020712358, + 0.006191175, + 0.019146034, + -0.007505987, + 0.0064618643, + -0.028270125, + 0.018329639, + -0.012318932, + 0.029723195, + 0.032423407, + 0.022951419, + -0.019158062, + 0.0040531647, + 0.005599653, + 0.01652768, + 0.005328874, + 0.015627256, + -0.022549696, + 0.015331409, + 0.018685544, + 0.007982591, + -0.0121185845, + -0.005134452, + -0.008992812, + -0.004330891, + -0.002963732, + -0.010498387, + -0.011400383, + 0.007990116, + 0.00565136, + 7.776991E-4, + -0.009330713, + -0.0046889926, + -8.727611E-4, + -0.0049373833, + -0.009383121, + 0.019013384, + -0.0183108, + 0.0012926119, + -0.014924394, + -0.0025222613, + 0.0044734143, + -0.0034409494, + 0.0198577, + -0.033019874, + -0.0035378558, + 0.02182173, + -0.01279603, + 0.0040010517, + 0.03312819, + 0.00729933, + -0.0092671495, + -0.016563354, + 0.023012107, + -0.012313783, + -0.0017611921, + -0.0028236818, + -0.026733834, + 0.010571971, + 0.00652606, + 0.0014240202, + -0.0037853136, + 0.01122575, + 0.010184064, + 0.032511864, + -0.0035227456, + 0.01311503, + 0.0026386066, + 0.0017093179, + 0.012797346, + 0.0249499, + -0.0050769947, + 0.008873598, + 0.023423165, + -0.03304066, + 0.020067763, + -0.008491031, + 0.01798119, + -0.003477501, + 0.008968926, + 0.016780656, + 0.038399715, + 0.016086774, + -0.014215188, + 0.021124676, + 0.019922504, + 0.017162455, + -0.0056960597, + 0.005173743, + -0.004039109, + -0.00509515, + 0.0074693523, + 0.020352133, + 0.027161283, + -0.010709208, + 0.0066385656, + -0.0028739152, + -0.0033053537, + -0.016952302, + -1.9315685E-5, + 0.008400395, + 0.0077857613, + -0.010601719, + 0.021295821, + -0.029334452, + 0.023945693, + -0.012690581, + -0.034689177, + -1.9218875E-4, + 0.017259194, + 0.019924888, + -0.014984202, + -0.005301947, + -0.004670403, + -7.943137E-4, + -0.003110339, + -0.010275363, + 0.018915107, + -0.021844745, + -0.008887588, + 0.003963135, + 0.020837154, + -0.013160891, + -1.8575911E-4, + 0.02047693, + 0.013819095, + 0.020983715, + 0.008012629, + 0.014302457, + 0.020673225, + 0.006042994, + -0.007292762, + 0.01980944, + -0.023576442, + 0.019318353, + 0.02164031, + -0.023576612, + -0.016300516, + -0.012471632, + -0.025407404, + -0.006725319, + 0.0027704139, + 0.0072037987, + 0.01282556, + -0.0035715913, + -0.0018876705, + 0.01630386, + -0.01279386, + -0.005138691, + -0.01649559, + -0.032600522, + -0.019594835, + -0.0036012316, + 0.027084822, + -0.0060862554, + -0.010431195, + 0.026202364, + 0.004001102, + -8.685181E-4, + 0.021459656, + -0.0015475191, + -0.0022178302, + 0.012299219, + 0.020302948, + 0.0074894885, + -0.008911084, + -0.0030602363, + -0.013426212, + -0.0037274908, + -0.009735812, + -0.0150774345, + 0.028329067, + -0.001814375, + -4.893118E-4, + 0.015604391, + -0.027318273, + 1.8452607E-5, + -0.006126153, + -0.0022905385, + 0.0026171922, + -0.013138783, + -0.012328361, + -0.00814455, + -0.007944875, + 0.029561635, + 0.0062466515, + 9.140969E-4, + -0.0030825497, + 0.0038464644, + 0.0019480329, + 0.010565149, + -0.0023057587, + -0.019285973, + 0.011488813, + -0.0067222575, + 0.006799115, + 0.0065685622, + -0.0030439189, + -0.0072174976, + -0.018566819, + 0.02418015, + -0.0046506706, + -0.0063608764, + 0.0033591131, + 3.1181716E-4, + -0.014719909, + -0.0076423427, + -0.004803163, + -0.01656477, + -0.0144533785, + 0.01628638, + 0.014014991, + 1.2387405E-4, + 0.0067838123, + 0.020130765, + 7.5914484E-4, + -0.014549428, + -0.006551493, + -0.011713101, + 4.8859755E-4, + -0.0057174307, + 7.890315E-4, + 0.0058951555, + 0.019954354, + -0.0033204362, + 0.0056093596, + 0.006960615, + 0.0031878848, + 0.0069741723, + 0.00805414, + 0.026631135, + -0.0074956967, + -0.0325072, + -0.02125507, + -2.1539938E-5, + 0.023381285, + -0.026828108, + 0.001880931, + -0.008972797, + 0.015607961, + -0.018557156, + 0.005929824, + -0.010684093, + 0.006275854, + 0.016431035, + 0.006741279, + -0.01829298, + -0.020627744, + -0.0071033374, + 9.338187E-4, + -0.02062228, + 0.024977922, + 0.031634156, + -0.009854774, + -0.002908521, + 0.02481084, + 0.01567873, + 0.007162466, + 0.005306532, + 0.010867076, + 0.02910098, + -0.012450325, + -0.01679476, + 0.008990692, + 0.010967044, + 0.006133676, + 0.0018156499, + -0.0077841906, + 0.022573246, + 1.7032606E-4, + 0.0035553293, + 0.0322075, + -0.006887827, + -0.01404113, + -0.021030638, + -0.013945379, + 0.008811892, + -0.00540471, + -0.008758355, + 0.01335998, + -0.017615542, + -0.010122689, + 0.016654981, + -0.02569606, + 0.015133509, + -0.0034224892, + -0.01573403, + 0.0061343675, + -0.043444235, + -0.013238004, + -0.008609153, + -0.0013780285, + 0.016124131, + -9.734942E-4, + -0.012328518, + 0.011536196, + -0.01700043, + 0.017565813, + -0.009626661, + 0.0016814687, + 0.020304231, + -0.0026347374, + 0.0060298922, + -0.0038681102, + -0.0062130354, + -0.0018552758, + -0.016278723, + -0.011043461, + -0.012325493, + 0.0076314826, + -0.0019514381, + 0.0020672677, + -0.007516842, + 0.016212268, + 0.017983412, + -0.007930254, + 0.0048717707, + 0.0066203335, + 0.037967995, + 0.0014868967, + 0.017072517, + 0.0034330897, + -0.0074802293, + -0.00383533, + 0.014184463, + 2.7238502E-4, + 0.012152268, + -0.03201868, + -0.020326449, + 0.028808944, + 0.0034817164, + 6.5966696E-4, + -0.006262281, + -0.0039021529, + 0.019798912, + 0.0037081232, + -0.015274568, + 0.009139349, + 0.024925008, + 0.0033512579, + -0.005894791, + -0.011760875, + -0.021764336, + 0.022717979, + 0.009903072, + -0.0046543265, + 0.0061914106, + -0.032301143, + 0.01957148, + 0.026362145, + 0.022896403, + 0.008892938, + -0.023679787, + -0.009646824, + 0.0042836727, + -0.011174699, + 0.012030709, + 0.004145289, + -0.019334959, + 0.0037476, + 0.008249737, + -0.019729443, + -0.018775184, + 0.031298913, + -0.007103718, + 8.941579E-4, + -0.008872552, + -0.012931134, + 0.0021639818, + -0.0023700749, + -0.015485308, + 0.023204153, + 0.01675919, + 0.018329903, + 0.010530518, + -0.0109282965, + -0.0022868696, + 0.016267149, + -0.026418857, + 0.011598758, + -0.01194511, + -0.038152743, + -0.010814825, + 0.032262266, + 0.009743055, + 0.015891986, + -0.0018524576, + 0.00673872, + 0.0046098772, + 0.0088901585, + 0.005033009, + -7.0928363E-4, + 0.02400898, + -0.017923681, + -0.01893525, + -0.006787502, + -0.0025441647, + 0.00789573, + 8.708902E-4, + 0.010523157, + -0.017580938, + 0.010967064, + 0.012949618, + -4.737959E-4, + 0.002095453, + 0.007667628, + 0.002521657, + 0.0058912323, + -0.004596863, + -0.0025946656, + 0.00198638, + 0.0042784936, + -0.009741238, + -0.016496425, + -0.0036748855, + 0.0066695763, + -7.465139E-4, + 0.03167719, + 0.017728917, + 0.037993487, + -0.012822821, + 0.0023469345, + -0.011283642, + 0.010413089, + -0.02088453, + -0.02858023, + 0.0048473007, + -0.026223049, + -0.022567045, + -0.02399598, + -0.01623834, + 0.0034889614, + 0.014667543, + -0.0056389887, + 0.010789015, + 0.021521704, + 0.01825302, + -0.03316736, + 0.01493605, + 0.014673596, + 0.019837605, + 0.006687907, + 0.009766229, + 0.003915853, + 0.009216271, + 2.5753802E-4, + -0.020597339, + -0.0042010173, + 0.009996776, + -0.0015759709, + 0.007891499, + 0.0015478092, + -0.009024914, + 0.0077865655, + 0.028307235, + 0.011865791, + -0.008751571, + -0.033132605, + -0.009714273, + -0.0037559876, + 0.012343967, + -0.027371295, + 0.02520488, + -0.014480644, + 0.024724208, + -0.028598456, + -0.014660046, + -0.011416461, + -0.018678008, + 0.018206744, + -0.014179454, + 0.013609843, + -0.014839165, + -0.0011780309, + -0.011908534, + 0.026538944, + 0.005773315, + -0.012670569, + -0.012699623, + 0.008938846, + 0.0438329, + -0.010227641, + 0.021506349, + -0.010406639, + -0.008496719, + 0.0067604952, + 0.0049208184, + 0.0057601226, + 0.018485883, + 4.3162607E-4, + -0.0099750925, + 0.011682403, + 0.007429915, + -0.019388216, + 0.014278548, + 0.0011805451, + 0.011626646, + -0.01773565, + -0.008388167, + 0.0017046616, + 0.028464995, + 0.001985064, + 0.0044175386, + -0.013963681, + 6.485121E-5, + 0.016208392, + 0.01284608, + -0.0039944863, + -0.01220388, + -0.0040510027, + 0.003268922, + 0.033778872, + 1.1478017E-4, + 0.012713441, + 0.004428168, + -0.007385847, + -0.01073793, + 0.0018936908, + 0.022267366, + 0.0067597115, + 0.0027555004, + -0.0040130913, + -0.0021747688, + -0.02023867, + -0.02121733, + -0.03372809, + 0.0040640375, + 0.0047440045, + -0.009664928, + -0.029031869, + -0.006341574, + -0.0020185297, + 0.0038737864, + -0.0034103366, + 0.009737058, + -0.011854453, + 0.0070590363, + 0.032307655, + -0.013424266, + -0.027955426, + -0.015173474, + 3.175531E-4, + 0.0046051606, + -0.003908057, + -0.01115482, + -3.1810004E-4, + -0.006463821, + -0.0032287124, + -0.0060383473, + -0.017434783, + -0.0397597, + 2.4249956E-4, + 0.0017763757, + -0.01649951, + 0.022348925, + -0.021231024, + 0.014267518, + -0.026386239, + -0.032742858, + 0.02272627, + 0.015507675, + -0.022939838, + -0.014452723, + -2.8067858E-5, + -0.0029347877, + -0.011249366, + -0.0057737376, + 0.031474516, + -0.0024166296, + -0.0018458214, + 0.004415962, + 0.014622311, + 0.019623335, + 0.007306662, + -0.018829841, + 0.012577259, + 0.0038252622, + 0.03189843, + -0.027106863, + -0.026872875, + 0.014708614, + 0.010941189, + -0.013176313, + -0.034844447, + -0.005867852, + -0.001283576, + 0.0021348244, + -0.035610583, + 5.898309E-4, + 0.028976081, + 0.037972856, + 0.0029886535, + 0.039390206, + 0.0036938076, + 0.011273467, + -0.0017745583, + 0.0033161114, + 0.002130407, + 0.028735314, + -0.03481906, + 0.017071456, + -0.017422179, + -0.010466763, + -0.0065674037, + -0.005306575, + -0.002340294, + 0.009301235, + -2.2756914E-4, + 0.015321681, + 0.008764512, + 0.007083756, + 0.010019243, + 0.011254995, + -0.010674968, + 0.01633219, + -0.016167289, + 7.2048645E-4, + 1.2914313E-4, + 0.022677338, + -0.0017572526, + -0.024689361, + 1.2247634E-4, + 0.013294317, + -0.010778017, + -0.009902301, + -0.020318931, + 0.015659409, + 0.007961155, + -0.015737299, + 0.007070138, + 0.017822389, + -0.032484636, + 0.022930136, + -0.0124021545, + -0.016820608, + -0.0140091255, + -0.0035940509, + 0.0043892604, + 0.012805257, + 0.0084628565, + -2.460491E-4, + 0.0048305006, + 0.0066308756, + -0.0010999214, + -0.0032994226, + 0.023791961, + -0.020824628, + 0.020254837, + 0.022261245, + -0.0021042968, + 0.0136545915, + -0.0032225687, + -0.0030586787, + 0.008111753, + -0.01291527, + 0.0042915647, + -4.69539E-4, + -0.0014220555, + -0.021813886, + -0.005080048, + -0.025598858, + -0.011838252, + -0.042410217, + -0.0030005109, + 0.027638732, + 0.0065316367, + 0.004093066, + -0.0014444814, + -0.010922107, + -0.00197004, + 0.0042090476, + -0.019977361, + -0.010497761, + 0.019066462, + 0.007800554, + -0.020279448, + 0.023912512, + -0.01588841, + -0.01787786, + -0.0017157381, + -0.011049876, + -0.012360095, + -0.017515114, + -0.029215131, + 0.010444334, + -0.0049121133, + -0.020387761, + 0.011693571, + 0.027659817, + 0.006031949, + -0.012505567, + 0.010510782, + -0.012413049, + 0.015969323, + -0.013976928, + 0.019099182, + 0.008178465, + 0.013499648, + 0.045865905, + 0.009562453, + -0.02128379, + -0.011678431, + 0.019065052, + 0.009265448, + 0.011260739, + 0.001952689, + -0.0015645203, + -0.01679371, + 0.0066938875, + 0.017152391, + 0.007896681, + -0.010626547, + 5.046695E-4, + 0.005675655, + -0.008949227, + 0.0030609579, + -0.011194973, + -0.02117446, + -0.012526932, + 0.022476543, + 0.008184223, + -0.012964969, + -0.011564775, + 0.026629137, + 0.025059925, + 0.008657963, + 0.0041660024, + 0.012965944, + 0.020042093, + 0.0120022055, + -0.009853267, + -0.016993353, + 0.017573806, + -0.00699647, + -0.010234541, + 0.0061528934, + -0.009191559, + 0.0020573928, + -0.0019544049, + -0.023486745, + 0.015588101, + 0.002316253, + 0.003493696, + -0.0030733228, + 0.0013410324, + -0.0012085481, + 0.012620285, + -0.019006588, + -0.011955781, + 0.009380282, + 0.0117781935, + 0.021084763, + -0.0032723243, + 0.0028718864, + -0.0023304143, + 0.024946427, + 0.010247071, + 0.006136158, + 0.018428588, + -0.00867273, + 0.017002152, + 7.6444476E-4, + 0.0035418067, + 0.0081266435, + -0.015882136, + -0.011893808, + 0.0074762907, + -0.0033116369, + 0.01578271, + -0.01764971, + 0.013340371, + -0.027396236, + -0.016859809, + -0.0125565445, + 0.01995405, + 0.018038955, + -0.0045780246, + 0.019287817, + -0.013321685, + 0.01456099, + -0.0042163352, + -0.0073053096, + -0.022749342, + 0.022662194, + 0.01596123, + 0.008728751, + 0.0154913245, + -0.017088164, + 0.011844098, + -0.030783912, + 0.0010032866, + 0.031319067, + 0.0017551831, + 0.021352725, + 0.025218269, + -0.008865141, + -0.004477876, + -0.0072144, + -0.0010081206, + -0.005114816, + -2.603176E-4, + 0.0022534938, + 4.093209E-4, + -0.0011267281, + -0.0079554, + -0.00747259, + -0.011451878, + -0.007019512, + -0.009674985, + -0.006681588, + 0.006663216, + -0.0012771551, + 0.034586437, + 0.001304834, + -7.57128E-4, + 0.022978155, + 0.034147695, + 0.016521316, + -0.003346285, + 0.024656497, + 0.029984295, + -0.0062794164, + 0.0013508132, + -0.018651173, + 0.022429341, + 0.0050008707, + -0.022145446, + -0.0063554784, + -0.005363442, + -0.010125802, + -0.014332493, + -0.020358244, + -0.027400296, + 0.024099702, + 0.010383709, + 0.005895121, + 0.019017516, + 0.010359875, + 0.006373767, + 0.007175077, + -0.015536745, + 0.012773348, + 9.972502E-4, + -0.0035443595, + -0.011631864, + -0.017755894, + 0.028485833, + 0.014122492, + 0.013315651, + 0.0047470015, + -0.015180897, + -0.012816819, + -0.017305076, + -0.009569642, + -0.020821014, + -0.026708303, + -0.0014757846, + -0.008090292, + 8.528648E-4, + -0.004382459, + -0.010565931, + -0.012760714, + 0.0016617109, + 0.013759404, + -0.01826013, + 0.009633808, + -0.020087631, + -0.0243202, + 0.0015801139, + 0.012815207, + 0.011930088, + -0.004271102, + -0.0015066189, + -0.022557922, + 0.016373511, + -7.9270324E-4, + 0.0019980557, + 0.005965305, + -0.0051031574, + -0.021587277, + 0.02278826, + -0.008151217, + 0.0013850285, + -0.0070450855, + 0.006686989, + -0.019207321, + 0.0058124284, + -0.0015766511, + -6.043941E-4, + 0.017418604, + -0.019325191, + -0.008812768, + -0.018082226, + 0.016587358, + 0.001174093, + -0.014025249, + -0.016693417, + 0.005376099, + -0.04416629, + -0.008334127, + -0.015481931, + 0.02107036, + 0.0068694795, + 0.008236038, + -0.018579766, + 0.0052535394, + -0.009918823, + -0.011971871, + 6.0119433E-4, + -0.011116943, + -0.019512756, + -0.016608268, + 0.020516584, + -0.02290171, + 0.010913687, + 0.0086267395, + -0.025371294, + 0.0018798024, + 0.0064740037, + 0.012495717, + -6.934995E-4, + -0.011339389, + 0.0070102806, + -0.006240832, + 0.0014821835, + -6.382937E-4, + -4.8637396E-4, + -0.004219213, + -0.0084550185, + 0.010076162, + -0.025268205, + 7.7747554E-4, + 0.00539095, + -0.012393626, + -0.002828759, + 0.01523087, + -0.010631495, + 0.026465388, + 0.03041127, + 0.00232458, + 0.018706275, + 0.0010739586, + -0.027773147, + -0.012071018, + 0.0034037146, + -0.013610146, + 0.018952452, + -0.020042587, + -0.048301976, + -0.0038058371, + 0.01609034, + 0.013271827, + -0.0017053416, + 0.02114571, + 0.0030341032, + 0.024755962, + 0.0013031989, + -0.0032905224, + -0.0013726605, + -0.031125896, + 0.005165717, + 0.003962108, + -0.0122351125, + -0.034761567, + 0.02382511, + 0.0040847613, + 0.010620766, + 0.0046787597, + -0.03178941, + -0.009500615, + 0.0155316135, + 0.008784901, + 0.012118477, + -0.02247075, + -0.044780888, + 0.0028648644, + -0.011777409, + -0.0030311092, + -0.007213447, + 0.0019374159, + 0.013104465, + 2.2467242E-4, + -0.0040480187, + 0.019121833, + 0.016435068, + -0.0076431925, + -0.0011589952, + 0.024119679, + 0.014714539, + -0.0068728826, + -0.0030809892, + 0.006822738, + -0.0036198017, + 0.008610638, + 0.01290784, + 0.0021142738, + 0.009661299, + -0.0068330574, + 0.0049290364, + 0.007280207, + 0.009677181, + 0.008920924, + -0.013948596, + 0.0024671264, + -0.03909213, + -0.0182672, + 0.001139928, + -0.016856955, + 8.9817826E-4, + -0.012751791, + 0.013542146, + 0.022965234, + 0.010174981, + -0.01398738, + -0.010787335, + -0.024444574, + -0.003060892, + 0.014294133, + -0.008629331, + -0.01968855, + 0.0071359617, + 0.01750458, + -0.019165698, + -0.0034159538, + -0.018277157, + 0.020441117, + 3.496601E-5, + -0.0059819776, + 0.0022399712, + -0.026448818, + -0.008844169, + 0.0028420314, + -0.020808335, + -0.022537727, + -0.0024361215, + 0.0019142533, + 0.0077290437, + 0.006790553, + -0.002337253, + 0.018609053, + -0.022653991, + -0.02617613, + 0.028926542, + -0.009076865, + 6.1025826E-4, + -0.018442463, + -0.014955771, + -0.031463347, + 0.012995949, + 0.009255644, + 0.0054407814, + 8.1817637E-4, + 0.01709122, + -0.020850454, + 0.006619887, + 0.012265983, + 0.016238004, + -0.009152316, + 0.0038198337, + 0.021718474, + 0.013003496, + -0.0021861056, + -0.018763695, + 0.0069807447, + -9.0668495E-5, + -0.0038817113, + 0.012723909, + -0.0054212348, + -0.007145519, + 4.435277E-4, + -0.013238926, + -0.019606736, + -0.031186769, + -0.0049368837, + -0.03786436, + 0.0104408115, + -0.0082550775, + -0.02330665, + 0.013486344, + 0.0051486525, + -0.0025997518, + 0.009551537, + 0.005468925, + -0.012110814, + -0.025439437, + -0.0097808065, + 0.02055654, + 0.01806615, + 0.0077267624, + -0.013210085, + 0.01494278, + 0.02255267, + 0.01352622, + 0.01686808, + -0.0058497135, + 0.011154288, + -0.012523237, + -0.010172851, + -0.0073694456, + -0.0041702227, + 0.0102905305, + 0.028891925, + 0.0032816199, + 0.041319337, + -0.014997214, + 0.005877816, + -0.005417539, + 0.012739879, + -0.018239373, + -0.018459676, + 0.009205046, + -0.02012488, + -0.0061859917, + 0.0024163842, + 0.01650451, + 0.017091304, + -0.009811049, + 0.001980302, + -0.0030734977, + 0.016599165, + -0.0018560474, + -0.027701745, + -0.018981505, + 0.031506814, + 0.04154228, + 0.00531985, + 0.0100586545, + 0.020242117, + -0.005398689, + -0.0017027126, + 0.025525665, + -0.018004902, + -0.023918668, + 0.005903452, + 0.027046086, + 0.011798452, + -0.022313938, + -0.016975611, + -0.007959394, + -0.018320058, + 0.007426828, + 0.0026668028, + 0.0056949523, + -0.015089282, + -0.007918199, + -0.026118064, + 0.021876182, + -0.004730259, + -0.0074487445, + 0.0062953536, + -0.003982891, + 0.002529718, + 0.00888886, + 0.0120328255, + -0.031272985, + -0.001959473, + -0.0070912545, + 0.022520138, + 0.018407786, + -0.0020675163, + 0.0069831912, + 0.006055203, + 0.0037539864, + 0.013942508, + 0.00455613, + 0.010796257, + 0.00730006, + -0.006054588, + -0.024282636, + 0.024341507, + 0.020259306, + 0.018963119, + -0.008500652, + -0.014364118, + -0.0030751997, + -0.012955386, + 0.025959637, + -0.0069033764, + 0.026978988, + 0.028448364, + -0.022542868, + -0.0073830797, + 0.012093161, + 0.012614893, + -0.04353682, + 0.006023249, + -0.018540852, + 0.005213209, + 0.009226408, + 0.0010950471, + -0.03188567, + -0.008188622, + -0.023359833, + 8.192836E-5, + -0.009503274, + 6.870771E-4, + 0.006729001, + 0.004854705, + 0.017756265, + 0.036659237, + 0.0042821, + 0.028514469, + -0.013208629, + -0.0068001165, + -0.030174945, + 0.0048288447, + -0.002998883, + -0.019129602, + 0.023711987, + -0.009555767, + -0.0021905252, + -0.009368446, + 0.030561067, + 0.016067136, + -0.0057205716, + -0.018017607, + 0.004225834, + 0.0030966501, + -0.004485538, + 0.03185785, + -0.0049012476, + -0.0064702625, + 0.026573036, + 0.014461281, + 0.0047256225, + -0.028465772, + 0.028307043, + -0.0021281254, + 0.0037145002, + -0.012331021, + 0.0036807472, + -0.048474554, + -8.357739E-4, + -0.012243167, + -0.008112709, + -4.460237E-4, + -0.009734497, + -0.011645028, + -0.0015738818, + -0.0075713145, + 0.01492284, + -0.007964977, + -6.5311097E-4, + -0.0076634446, + -0.038904496, + 0.0037824675, + -0.013513197, + -0.024684561, + -0.0052193007, + -0.029378368, + 0.011888689, + -0.0033192486, + -0.00317082, + 0.0037803003, + 0.011114877, + 0.0017975335, + -0.0037964855, + 0.03088934, + 0.010012698, + 0.013631755, + 0.045335088, + 0.0026676077, + 2.0161808E-5, + -0.008120676, + 0.02619146, + 0.0076081343, + 0.030875102, + -0.0037571776, + -0.0069359336, + 0.015788443, + -9.1650774E-4, + -0.0015862637, + 0.0044801505, + -0.038729213, + -0.019029124, + -0.034908358, + -0.019646812, + -0.0042548412, + 0.012662728, + -0.025258483, + 0.004360621, + -2.3716052E-4, + 0.002079367, + 0.017130977, + 0.019453034, + -0.0097773755, + 0.01618796, + 0.014220649, + 0.009840297, + -0.017502075, + 8.815708E-6, + -0.006519495, + -0.0035297472, + -0.0019809168, + -0.01749717, + 0.008780257, + -0.02810628, + -0.018438771, + 0.019171724, + -0.028094988, + -0.0073926104, + -0.0046689464, + -0.01084194, + -0.021475744, + -0.014824379, + -0.022374641, + -0.021039102, + 0.01732, + -0.011209656, + -0.016212413, + 0.01412607, + -0.014094337, + 0.022892114, + 0.017676055, + 0.0061151376, + -0.026337167, + -0.014639956, + -0.009313577, + -0.032492768, + 0.009638846, + -0.008208679, + 0.0019913963, + -0.011636323, + -0.0052537676, + -4.318889E-4, + 0.018629998, + -0.04223411, + 0.0013856161, + 0.004083365, + 8.0451086E-5, + 0.019893851, + -0.022367332, + 0.016450278, + -0.012491614, + -0.036191367, + -0.029884242, + 0.0035023869, + 5.0866284E-4, + -0.024472905, + -0.014401677, + 0.01924655, + -0.0071963198, + 0.014218244, + -0.026595086, + 0.012343117, + -0.0012752218, + -0.0021813791, + 0.013827842, + 0.005894001, + -0.022736842, + 0.010113059, + -0.009275485, + 0.025452027, + 0.009813408, + -0.017071515, + 0.013928841, + 0.018630624, + -8.9165394E-4, + 0.019911623, + 0.012292515, + -0.0054447004, + -0.030839102, + 0.0029189815, + 0.0039252387, + 0.036854725, + 0.0195211, + -8.376715E-4, + 0.02784614, + -0.0037393335, + 0.007969715, + 0.0070516434, + -0.019748693, + -0.0053425548, + 0.022910822, + -0.0025702864, + 0.010258943, + -0.009943301, + -0.021280354, + -0.004208646, + 0.020475715, + -0.0017571924, + 0.03170229, + -0.003925031, + -0.020491183, + -0.012190782, + -0.010060582, + 0.017420795, + 0.013603755, + 0.0063410117, + -0.005463048, + 0.015419809, + -0.015419768, + -0.0022472702, + 0.017494202, + -0.032202058, + -0.014112931, + -0.033630084, + -0.013389537, + 0.008845982, + 0.009546298, + -0.0071769627, + 0.013298893, + 0.010276978, + 0.040901244, + 0.01609451, + -0.0069088973, + 0.0033681446, + 0.018971883, + 0.011396462, + -0.016299535, + 0.021032007, + -0.018478373, + 0.028190829, + 0.011318242, + 5.575393E-4, + -0.011455605, + 0.009943421, + -0.025364736, + -0.0041674436, + -0.016946062, + -0.01103479, + 0.023823759, + -0.006327907, + -4.7298626E-4, + 6.170155E-4, + -0.024227094, + -0.014486633, + 0.017036004, + 0.00203984, + 0.012372742, + -0.0045641344, + -0.006226903, + -0.011875908, + 0.020373344, + -0.018962538, + -0.03891031, + 0.021864517, + 0.017947212, + -0.019609172, + 0.01662269, + -0.0052099964, + -0.008642372, + 0.0053902953, + 0.031094972, + -0.028438177, + -0.014656655, + -0.012281097, + 0.003983646, + -0.015154444, + -0.011986533, + -0.005430759, + -8.529617E-5, + -0.004713693, + -0.0021188513, + -0.018026125, + -0.0026242787, + -0.012029588, + 0.016816976, + 0.018521564, + -8.1158883E-4, + -0.018365007, + -0.011033619, + -0.004768634, + 0.007820997, + -0.006693409, + -0.019941786, + 0.010053112, + 0.012208818, + 0.014138807, + -0.026034366, + -0.0071348445, + -0.014086636, + 0.006483592, + -0.003104358, + -0.029629543, + 0.015095747, + -0.006634153, + 0.029074565, + 0.005415305, + 0.011731732, + 0.025375856, + 0.003849272, + 0.0031573828, + 0.014813036, + 0.037648525, + 0.0035364071, + -0.010833582, + 0.033385187, + -0.0068073845, + -0.0012263567, + -0.01850393, + -0.015718294, + 0.01822521, + -0.011021011, + -0.018770538, + 0.02202535, + -0.008470973, + 0.023836114, + 0.020085603, + 0.016786762, + -0.036688928, + -0.0013670778, + -0.004533848, + 0.0018934914, + 0.0031982232, + -5.275852E-4, + 0.007938955, + 0.009325798, + 0.010585469, + -0.018602263, + -0.022048617, + -0.0071284752, + -0.0045732073, + 0.011078362, + -0.0127598625, + -0.005185881, + 8.130071E-4, + 0.012102677, + 8.4831245E-4, + -0.0069293254, + 0.007517158, + -0.010342219, + -0.011437381, + 0.0013318426, + 0.015299433, + 0.0020990083, + 0.012321353, + 0.032322623, + -0.005946178, + 0.0049891006, + 0.024245122, + -0.007729493, + -0.0044244095, + 0.03305133, + -0.0023630245, + 0.019232746, + -0.010918479, + -0.0023583565, + 0.004743303, + -0.01459317, + 0.011482739, + 0.007972625, + 0.02192598, + 0.041765243, + 0.026596943, + -0.034304332, + 0.005862164, + 0.023887558, + 0.0017836097, + 0.006109411, + -0.0065500382, + -0.017144054, + -0.005223577, + -0.034421444, + -0.01444298, + 0.012502394, + -0.004855967, + 0.0011988766, + -0.0040663145, + -0.003909292, + -0.011457904, + -0.031649932, + 0.0024779914, + -0.017995037, + 0.01847482, + -0.016546419, + -0.014854897, + -0.014249835, + -0.0033069742, + -0.008907669, + 0.00418274, + -0.007511891, + -0.0048084552, + -0.008600877, + -0.011870434, + 0.0078060697, + 0.026382932, + 0.016043274, + -0.01758417, + -0.014786182, + -0.004882941, + -0.009720587, + -0.011316383, + -0.019305116, + -0.015828988, + -0.010423634, + -0.01966992, + 0.0014397168, + -0.001474798, + -0.0055608056, + -0.010635891, + -0.007593216, + 0.003119273, + -0.04990066, + 0.011827524, + -0.0019686157, + -0.008596704, + -0.007712623, + 0.0017999667, + 0.0026494148, + -2.7401667E-4, + 0.009333976, + -0.014725648, + -6.384393E-4, + 0.013592125, + -0.0135482345, + 0.0042066993, + 0.018075317, + -0.015504386, + 0.014436918, + -2.820015E-4, + 0.008649802, + 0.008977445, + -0.0035952537, + 0.011455981, + 0.0025936323, + 0.004196175, + 0.03142553, + -0.016738925, + -0.005813744, + -0.013270501, + -1.7475396E-4, + 0.02582912, + -0.011651933, + -0.027070632, + 0.011230767, + 6.7933224E-4, + -0.023759082, + -0.018860677, + -0.015236197, + 0.0071812565, + 0.00848432, + -0.0032413795, + -0.019182803, + 0.008972231, + -0.007534994, + 0.003540063, + -0.008784919, + 0.003631342, + -0.011914867, + 0.014746064, + 0.0035117276, + 0.05084259, + -0.0136899, + 0.009671818, + 0.010626026, + 0.020859318, + -0.0067177434, + 0.005654167, + 0.01600061, + 0.010155991, + 0.007716788, + -0.013285897, + -0.024125062, + 0.0021322377, + -0.017456703, + -0.0069929096, + -0.00584545, + -0.030864036, + 0.024326267, + -0.012692769, + 0.015677853, + -0.0040346966, + 0.0015096262, + -0.032170657, + 0.012830986, + 0.015520425, + 0.020005615, + -0.024387911, + -0.01077813, + 0.0069086733, + 0.034991648, + -0.014967305, + 0.0134414015, + -0.0031900334, + 0.02534766, + 0.016054932, + 0.023091301, + 0.006298074, + 0.00812172, + 0.0055330647, + 0.0055079795, + 0.0058203763, + -0.03380924, + -0.026762744, + 0.0056475825, + 0.0010549702, + -0.0029971972, + -0.009789898, + 0.0052691386, + -0.015644193, + 0.013512361, + 0.007925346, + 0.004891131, + 0.006408069, + -0.009710775, + -0.017190376, + 0.0097945845, + -0.007509548, + 0.0040124985, + 0.0018911451, + -1.8435612E-4, + -0.016593708, + -0.011445896, + 0.021361897, + -0.0019204108, + -0.011517197, + -0.03262379, + 0.0087736165, + 0.010265694, + 0.010050803, + 0.0012159178, + 0.015548726, + 0.014263067, + 0.02180649, + 0.028211974, + -0.021841427, + 0.028206171, + -0.051448487, + -0.0062221964, + -0.03620775, + -0.003182104, + -0.0050547402, + -0.014896465, + -0.014171113, + 0.0056402176, + 0.0070052333, + 0.0034556198, + 0.0023327433, + 0.02350385, + -0.0015270924, + -0.005102644, + -0.011440031, + -0.02515632, + -0.0021937268, + 0.010968215, + -0.014733803, + -0.004627483, + 0.016442126, + 0.009882341, + 4.6713176E-4, + 0.029428383, + -0.016381763, + 0.0011704734, + -0.0090563055, + -0.006150532, + -0.013180115, + 0.0075247134, + -0.009378535, + -0.019542344, + -0.003124618, + -0.01014379, + 0.019016286, + -0.008323411, + -0.023386616, + 0.012596554, + -6.3179934E-4, + -0.022184506, + -0.0011444124, + 0.011323158, + -0.024509113, + 0.016369311, + 0.0151417395, + 0.036748655, + -0.013528128, + 0.008783623, + -0.011788012, + -0.020355174, + -0.0095107695, + -0.023016162, + 0.012378834, + 0.04270866, + 0.021654248, + 0.022282066, + -0.01336504, + 0.008068792, + -0.009934266, + -0.004570471, + 0.003718443, + 0.022859218, + -0.030610533, + 0.008912854, + 0.013293275, + 0.015484729, + 0.011183007, + -0.011215732, + 0.012629847, + 3.0788506E-4, + 0.008150252, + -0.008848746, + 0.0040050736, + 0.014577864, + -0.020745255, + -0.011315668, + 0.004620997, + 0.021915564, + -0.013517938, + 0.0040243156, + 0.0107568195, + 0.014432882, + 0.009364406, + 0.030618818, + 0.002788356, + -0.0084326975, + 0.02928257, + -0.0028161434, + -0.009583082, + -0.013013359, + 0.019386547, + -0.01175412, + 0.005435387, + 0.016293881, + -0.0023797108, + 0.009910275, + 0.016308906, + -0.0031942953, + 0.010261838, + 0.028085677, + 0.0025386154, + 0.015823143, + -0.017670242, + -0.031041654, + -0.023851747, + 0.0070121503, + -0.0023921512, + -0.024424262, + 0.054046612, + 0.024448909, + 0.018811956, + 0.0209678, + -0.018003752, + -0.005490114, + -0.006626764, + 0.005530323, + -0.03574859, + -0.006272767, + -0.014612524, + -0.010095113, + 0.0108282855, + 0.0047069574, + -0.021060161, + 0.0023933311, + 0.0028706333, + -0.0071475767, + 0.002756377, + -0.016199486, + 0.017223468, + 0.021642718, + -0.0013300013, + -0.0032081401, + 4.169444E-4, + 0.006350687, + 0.009678059, + 0.0012191047, + -0.0061576627, + -0.0030550289, + -0.011843188, + -0.01532666, + 0.026451575, + 0.0060888613, + 0.005399294, + 0.014933651, + -0.0133383395, + 0.026039662, + -0.027141504, + 0.02064001, + -0.029850375, + 0.004751352, + 0.01629857, + 0.017641269, + 0.014340751, + 0.025650483, + -6.591302E-4, + -0.012576122, + -0.019787202, + 0.010773698, + 0.010012994, + 0.013603223, + -0.017139781, + -0.0046145194, + -0.0053173914, + 0.0039997883, + 0.019794263, + 0.011735056, + 0.005210249, + -0.004515829, + 0.011694961, + -0.0077265557, + 0.009652013, + -0.0029608412, + 0.025533332, + -0.022024132, + -0.0050831204, + 0.004862908, + -0.013620753, + 0.0152680185, + 0.021879125, + 0.02397236, + -0.017495135, + -0.02699893, + 0.0016012754, + -0.0034139506, + -0.017010232, + 0.02042093, + 0.0028831218, + 0.004412177, + 0.010745416, + -0.027252922, + -0.0022600857, + -0.022492364, + -0.0055385204, + 0.018025396, + -0.023173787, + 0.01433221, + -4.7110804E-4, + -0.012623948, + 0.0043542376, + 0.02025358, + 4.909335E-5, + -0.026923122, + 0.0067946156, + -9.713163E-5, + 0.009226249, + -0.0328714, + 0.010629719, + 0.025321808, + 0.014007962, + 0.00869202, + 0.019059578, + 0.012910701, + 0.026094507, + -0.012733109, + 0.003744176, + -0.009910245, + -0.0067489264, + 0.021130677, + -0.0025746324, + -0.013152087, + -0.019189842, + 0.0079495255, + 0.033090055, + 0.01409097, + 0.015484926, + -3.6083648E-4, + 0.004084562, + 0.01748172, + -0.021203388, + -0.025445992, + 0.010443548, + -0.013885948, + -0.0039452086, + -1.9786209E-4, + 0.033826087, + 0.013423934, + 0.008148547, + 0.011583714, + 0.009447968, + -0.0043041045, + -0.002060638, + -4.915213E-4, + 0.0027153546, + -9.674262E-4, + -0.019214435 ], - "paletteEmbedding": [ - 0.013255551, 0.03196381, 0.012947797, -0.033181407, 0.04701862, - 0.0012232012, 0.039193947, -0.012064222, -0.042208757, 0.020930337, - 0.0072822953, -0.021765107, 0.085399486, 0.01535836, -0.038165815, - -0.034166478, -0.056131653, 0.025407588, 0.0069441046, -0.06751658, - -0.013954066, -0.013001198, 0.012763175, 0.010022085, -0.013046543, - -0.020580677, 0.0079116775, -0.010459679, -3.313984e-4, -0.002988857, - -0.020379407, -0.021819126, -0.021147769, 0.020936975, -0.03920011, - -0.014239601, 0.03842134, -0.019068351, 0.012224775, 0.04084922, - -0.006156906, -0.033285312, 0.003355179, -0.06320531, 0.0072164047, - 0.025424723, 0.04092445, -0.018851595, 0.01337236, -0.029410265, - -0.032447934, 0.0865406, 0.025986338, 0.035480697, -0.02803003, - 0.009473692, 0.027947145, 0.016926687, -0.026782373, -0.051732536, - 0.046528745, -0.081566334, -0.011683304, 0.011985612, -0.013736877, - 0.05340254, 0.02692966, -0.038271464, -0.015581658, 0.009077112, - -0.004828769, 0.037395924, -7.038768e-4, 0.005513363, 0.011483303, - 0.017661218, -0.0070057483, -0.010696006, -0.041098293, -0.020507844, - 0.015497986, 0.025685968, -0.018202953, 0.005198804, -0.019549994, - 0.062480036, 0.06413343, 0.019296538, -0.050585732, -0.0019953619, - -0.039158393, 0.023143759, -0.09049111, 0.07486028, -0.050649464, - 0.049797196, -6.246504e-4, 0.005372434, 0.055140555, -0.0056968736, - -0.06591901, 0.030515688, -0.07264273, -0.03320598, -0.010898497, - 0.0021049834, 0.03340213, -0.047282316, -0.029916061, 0.0034385223, - -0.009243702, -0.071559824, -0.034702167, -0.080902435, -0.0310694, - 0.0022363246, 0.008223165, -0.01422875, -0.00407749, -0.0046921396, - -0.04549992, 0.020910427, -0.010133051, 0.01369478, -0.040734, - 0.0061208876, -0.021612532, 0.025756206, -0.018011002, -0.06253262, - -0.020565452, -0.0019995759, -0.03499561, -0.021623343, 0.0052042473, - 0.05198274, -0.038634844, 0.004792678, -0.032497477, 8.688545e-4, - -0.0017120396, 0.0046608355, -0.02374449, -0.02517674, 0.007200128, - -0.015143786, 0.001174971, 0.009467839, 0.03642715, -0.035336398, - -0.008524427, -0.039388932, -0.005569468, -0.021150185, -0.029944152, - 0.023088602, 0.038749885, -7.281058e-4, -0.032559145, 0.01626176, - -0.0034647426, -7.1168394e-4, -0.03208353, -0.012706451, 0.018358748, - 0.028378114, 0.0035139197, 0.042942364, -0.017634124, -0.024819689, - 0.009260183, -0.015987135, -0.04626142, 0.012929265, -0.0103713805, - -0.0052413936, 0.016116016, -0.028809825, -0.012188324, -0.024842352, - 0.014342954, 0.026946872, 0.010848086, -0.042720053, -0.034690995, - 0.05304981, 0.0043504164, -0.012805212, 0.09066019, -0.056798425, - 0.048991345, 0.03686587, 0.034649152, -0.0053164223, -0.0064108833, - -0.0059648613, -0.008280023, 0.036355883, -0.004638194, 0.03981826, - 0.016294481, -0.004956614, -0.0054111863, 0.008618001, 0.011572117, - -0.063597165, 0.07920193, 0.00898185, 0.018597128, 0.0065458617, - 0.0015461422, 0.034963276, 0.024576293, -0.004360815, -0.043687996, - -0.019995866, 3.7655534e-4, -0.018723043, -0.062415216, 0.033558074, - -0.064369306, -0.0038859623, 0.038673285, -0.035046335, -0.058576163, - 0.009917403, 0.0088529205, 0.008375899, 0.007872777, 0.014107878, - -0.07378614, 0.017682714, -0.01219886, 0.04393638, 0.039950643, - -0.012526273, -0.011599317, -0.011768688, 0.0067338278, -0.0072755245, - 0.015515715, 0.020423684, 0.04697309, -0.01622462, 0.007663909, - 0.031328537, 0.012299464, -0.013408168, -0.02439215, -0.0043533547, - 0.03179398, 0.008829038, 0.014425105, 0.037823044, 0.025743717, - 0.04652172, -0.01027677, 0.00791193, 0.049645253, -0.015544246, - 0.041908965, 0.002542619, -0.06401948, -0.023443315, -0.010491475, - 0.08691584, 0.014251936, -0.027996238, -0.042589046, 0.0063086874, - -0.014197075, 0.022229046, -0.012370008, 0.0054172603, 0.021185972, - -0.011562551, -0.009568641, 0.0043568546, -0.011035094, -0.0014292747, - -0.01869713, -0.059449658, -0.015898267, 0.010144601, 0.057831418, - -0.012095422, 0.01911253, 0.01815357, -0.04925646, 0.056108024, - 0.02966963, -0.012343008, -0.009624415, 0.03744208, -0.06971384, - 0.010928513, -0.00716887, 0.06586839, -0.03776615, -0.0050049718, - -0.056009345, -0.0127634285, -0.043177187, 0.09328196, 0.028184216, - 0.06631682, 0.043011725, -0.0062462124, 0.0032500457, 0.027019735, - -0.028993065, -0.012958774, 0.07044712, -0.003514924, 0.010733946, - -0.036431223, -0.025492137, 0.049594212, 0.0154728, -0.036053434, - -0.018635215, 0.04685704, -0.053545833, -0.010971662, 0.038756486, - -0.029477712, 0.04616764, 0.018016348, 0.008958308, -0.038888637, - 0.017170861, 0.013003857, 0.014349078, -0.05102171, 0.013857997, - 0.04745785, -0.01609593, 0.05447951, 0.055176184, 0.030993305, - 0.012188638, 0.040429786, -0.027933598, 0.014741181, -0.015297125, - 0.011961934, -0.03851151, -0.04155164, 0.009525021, 0.032341033, - 0.02308595, 0.021169448, -0.013032309, -0.0024012802, -0.03739085, - -0.003456735, 3.6625e-4, 0.013629154, 0.052721936, 0.012033499, - -0.015389791, -0.005182585, -0.01870691, -0.029022368, -0.002812862, - 0.025406955, -0.04392171, 0.0032822373, -0.013970584, 0.01975459, - -0.0071207946, 0.031772386, 0.029823313, -0.089057505, 0.012255081, - 0.029928539, -0.0064214356, -0.03725519, -3.2409743e-4, 0.018776417, - 0.009727999, 0.00516014, 0.012401561, 0.025789373, 0.047943752, - 0.025879748, -0.008876177, -0.0159644, 0.004815632, -5.1747443e-4, - -0.036212493, -0.0137568815, -0.016307732, -0.038589854, 0.012232137, - -0.0063009365, 0.05789969, -0.008085879, -0.03427363, 0.0018265311, - -5.8423803e-4, 0.0055082403, -0.043039124, -0.0018219629, 0.016126694, - 0.02922982, -0.05292901, -0.04630064, 0.014505166, 0.03349475, - 0.045506638, -0.018981542, -0.015344878, -0.01966809, 0.05127562, - 0.032405198, -0.028339202, -0.009501825, -0.0340643, 0.004346161, - 0.033178147, -0.02480394, -0.009588262, -0.019102413, -0.0037127954, - -0.04325488, -0.03432533, -0.0059094103, -0.0080955485, 0.017941995, - -0.015460591, -0.0070712115, 0.005318293, -0.061000198, -3.1045082e-4, - 0.0123015605, -0.017476216, 0.017511018, 0.019985048, -0.009756939, - 0.023870159, 0.022430897, -0.014916287, 0.047348864, -0.011414462, - 0.041802276, -0.046218663, 0.0264081, -0.04419171, 0.046644118, - 0.09056144, 0.012322401, -3.8245055e-4, -0.007051757, -0.03471138, - -0.0055716294, 0.018301953, -0.054151658, -0.038611107, 0.0012462691, - -0.018916583, 0.020808063, 0.04961685, 0.009901272, 0.049717046, - 0.041343063, -0.021176262, -0.04665902, 0.05752506, -0.04617669, - -0.008548519, -0.024716891, -0.020345747, -0.0046218093, 0.017136592, - 0.026330383, 0.06108826, -0.017171055, -0.030504407, -0.03906527, - -0.021554086, -0.060326792, -0.028757961, 0.024575785, -0.0073009627, - -0.04735664, 0.00915469, 0.028032493, -0.017953243, -0.017696213, - -0.027915677, 0.0014818613, 0.048781443, 0.048453853, -0.021354347, - -0.0033178362, 0.015656559, -0.019747356, 0.032562666, -0.051309187, - 0.008368154, -0.01712636, -0.036801446, 0.0023320739, 0.033401188, - 0.010149333, 0.03805446, -0.0070996056, 0.047009584, -0.009610848, - -0.03391739, -0.032629464, -0.042651348, 0.054574106, -0.0058451677, - 0.04415323, 0.025088208, -0.05442254, -5.386901e-4, -0.0034641486, - -0.016610418, -0.009952105, -0.030573672, 0.012462438, -0.0017330071, - 0.0039136275, -0.024747482, 0.067499585, -0.007007991, -0.021115161, - -0.0029775614, 0.046015922, 0.005239219, 0.010331905, 0.06382715, - 0.026205251, 0.035124898, -0.038231418, 0.008185269, -0.036569603, - -0.04325201, 0.026359666, -0.014304635, -0.075056, -0.001466341, - 0.026817758, 0.027347865, 0.030307103, -0.04547608, -0.0068752393, - 0.026337232, -0.01976716, 0.055649135, 0.057404075, 0.024173843, - 0.010650807, -0.016819408, 0.03282474, 0.018276822, -0.0022112583, - 0.010774229, 0.0016933696, -8.8150817e-4, 0.024736358, -0.043243997, - -0.016931059, -0.019532127, -0.010362958, 0.019161757, -0.047173273, - -0.020827794, 0.0030970934, 0.014986883, -0.0071650855, 0.0045185755, - 0.04267124, 0.003950714, 0.0013257843, 0.005802803, -0.004040517, - -5.158773e-4, 0.014161607, -0.029541444, 0.025750307, 0.057801545, - 0.07234816, -0.05025995, 0.0041848538, 0.07773324, -0.009700375, - 0.015304379, -0.05061446, -0.068839, -0.0045715775, 0.020563768, - 0.027817862, -0.03388812, -0.06993897, 0.03355473, -0.0028828504, - -0.042928666, -0.046046674, -0.009491772, -0.03551112, 0.062580355, - -0.052101046, -0.009706186, 0.006646223, -0.026739175, -0.015444287, - 0.016764766, 0.044967152, -0.03287144, -0.011516622, 0.024755282, - 0.022566099, -0.0049778474, 3.9241966e-4, -0.0064681037, -0.037027154, - -5.009075e-4, -0.008649345, 0.028642088, 0.028122207, -0.006285287, - -0.003399939, -0.02353839, 0.03376835, 0.0069156615, -0.00810727, - -0.031234786, -0.015903795, 0.035611674, 0.028296964, 0.064992905, - 0.017616445, -0.028672768, -0.08956464, -0.057419363, -0.025074665, - -0.0044235336, -0.01024629, -0.06574631, -0.010030214, 0.006112367, - -0.058676858, 0.04271603, 0.007793314, -2.215212e-4, 0.08140526, - -6.102619e-4, -0.019855147, -0.024316026, 0.028172608, -0.027795393, - 0.005236447, -0.06317766, 0.006835241, 0.044465665, 0.003238073, - 0.04493034, 0.029085074, -0.02434278, 0.046735045, -0.03486052, - 0.02001861, -0.0134936115, 0.016845293, -0.018320126, 0.041028228, - 0.024407025, 0.004812687, -0.012743482, 0.015880117, -0.046973277, - -0.025709895, 0.045287758, -0.0022788674, 0.02454542, 0.031687435, - 0.0049657747, -0.017743351, -0.008387229, 0.045015737, -0.051380202, - -0.040006462, 0.080103554, -0.024980582, -0.045137286, -0.039508734, - -0.022241807, 0.04633195, -0.048341695, -0.037864815, -0.022216408, - -0.024605557, 0.0017975062, -0.020546814, 0.043531667, -0.06642771, - -0.010546846, -0.048120346, 0.008396985, 0.014604665, 0.005886175, - 0.044416208, 0.008275692, 0.037005, 0.06240064, 0.0380573, -0.016630162, - -0.0145914415, 0.03301237, -0.009801688, 0.009672483, -0.040113233, - 0.044143084, -0.006972029, -0.030469583, -0.00892625, 0.032298736, - -0.007891268, -0.044257168, 0.04063456, -0.037969273, -0.016672531, - 0.019160023, 0.05386336, 0.05059866, -0.009068999, 0.007999658, - -0.0052655917, -0.036232285, -0.050377615, 0.04629047, -0.039824016, - 0.03641742, 0.006533777, -0.017826384, 0.023491323, 0.012759933, - -0.009911216, -0.033732854, 0.0045173923, -0.0051577836, -0.0035024134, - -0.016554523, -0.052981496, -0.03050734, 0.03481454, -0.023371147, - 0.0106643615, 0.0013215599, 0.021278327, -0.02577022, 0.03165521, - -0.001727348, -0.016301744, -0.04485697, 0.06920116, 0.012343961, - 0.019936003, -0.025775393, -0.017739408, -0.0072197393, 0.031436175, - -0.007430908, 9.552381e-4, 0.010015724, 0.050413776, 0.021205667, - 0.002994823, -0.011998684, 0.008704362, 0.0067085056, -0.02437701, - 0.03099699, -0.006413913, -0.022732401, 0.023891421, 0.009870127, - 0.037733488, 0.042944394, 0.035251647, -0.0031325668, 0.019207418, - 0.01322395, -0.01489677, -0.020592358, 0.004485152, -0.0052194186, - -0.04340722, 0.038796388, 0.02400864, -0.01726901, 0.007321373, - -0.07355938, -0.0016080528, 0.013217459, -0.013894546, 0.018130552, - -0.035342023, -0.01655411, 0.045487575, 0.053709403, 0.069335826, - -0.0028832583, 0.013314945, -0.016796896, -6.188403e-4, -0.0071785883, - -0.044834003, 0.015125102, 0.039206363, -0.052474134, -0.051456247, - -0.029426211, 0.019135984, -5.871361e-4, -0.014480802, -0.02627893, - -0.01556934, -0.011618687, 0.03966799, -0.0098424405, 5.2869867e-4, - -0.027340148, 0.0065495125, 0.021085555, -0.0022094569, -0.027719056, - 0.025581961, -0.030665863, 0.027580088, -0.020376189, -0.010143686, - -0.016589737, -0.022299021, 0.026493598, 0.014557229, -0.004790049, - -4.505014e-4, 0.0022897208, -0.04722016, -0.010912232, 0.019600378, - -0.00478647, -0.02852219, 0.092125125, -0.051024493, 0.006091264, - -0.0029211869, 0.025527626, 0.009966363, -0.01603784, -0.016859345, - 0.01882816, 0.026392242, 0.014611784, 0.0039012122, -0.008373308, - -3.7297083e-4, 0.005344715, -0.01298413, 0.0038253062, -0.007354758, - -0.0076765083, -0.028444193, 0.03239761, -0.030643228, -0.05255384, - -0.04174216, 0.0457663, -0.010098034, -0.057229765, 0.048257723, - -0.014929122, -0.028829716, 0.047848947, -0.032320544, 0.007990684, - 0.0351763, 0.014315144, -0.016284581, -0.04226962, 0.025244907, - 0.0032057953, -0.029843038, 0.08425777, -0.0053578326, -0.066346765, - -0.047692597, -0.004885785, 0.045790836, 0.00651768, -0.01375802, - 0.0182991, 0.039473396, -0.021365974, 0.0459509, 0.0066439947, - 0.04558046, -0.004223759, -0.017532015, -0.0023764274, 0.055777695, - -0.01463247, 0.035339836, -0.03132718, -0.0076966016, 0.039663307, - 0.016064724, 0.03138937, 0.05144532, 0.020820588, -0.017312767, - -0.035338122, 0.0028819928, 0.04538439, -0.055986106, 0.018240616, - 0.003897149, -0.017401269, 0.038101327, -0.005180696, -0.010286535, - 0.005357185, 0.039997995, 0.013109466, -0.046765458, 6.618935e-4, - -0.03645716, 0.02034461, 0.022641722, 0.014991399, 0.0055510374, - 0.017935112, -0.012103308, 0.010427266, -0.0133759435, 0.010478394, - 0.003834297, -0.025079729, 0.026662286, -0.03254716, 0.04745413, - -0.048954874, 0.052211653, 0.007856618, -0.027238803, -0.068242826, - -0.016762652, -0.018405909, 0.022799483, 0.053891215, -0.0016827005, - 0.029380228, -0.0025043234, -0.025486723, -0.016657654, 0.010521541, - -0.03377871, -0.039075896, -0.0074969027, -0.0115658175, 0.02711843, - 0.028528452, -0.0012859646, 0.003439427, -6.183357e-4, -0.01299273, - 0.04434325, 0.018626055, 0.021136107, -0.012050791, 0.030257689, - -0.01899664, -0.06598981, -0.006486147, 0.016864222, -0.019289572, - -0.0144676315, 0.0307076, -0.011807461, 0.02487837, 0.0045929025, - -0.06756638, 0.038123384, 0.04344471, -0.04811789, -0.06430477, - -0.014912015, -0.00618114, 0.027869023, 0.014725641, -0.041067753, - 0.040841427, 0.015420098, -0.03322668, -0.043401614 + "paletteEmbedding" : [ + 0.07357815, + -0.06873956, + 0.0644536, + -0.01491862, + -1.5694265E-4, + 0.030040856, + 0.020938216, + -0.011134276, + -0.033122815, + -0.009354318, + 0.031909328, + 6.175864E-4, + -0.04112227, + 0.019427996, + -0.049381826, + -0.037225608, + -0.03700968, + -0.0096343225, + 0.023089597, + -0.049367983, + 0.063705295, + -0.021451065, + -0.05071984, + 0.071676195, + 0.028206322, + -0.03613583, + -0.0035588313, + 0.025198786, + -0.01678827, + 0.0077757705, + 0.06302868, + 0.004224292, + 0.0052934187, + -0.002658336, + -0.01657713, + -0.006053224, + -0.023138227, + 0.014606344, + 0.048893437, + -0.034557946, + 0.021795582, + -0.004276236, + 0.021944188, + -0.01930267, + 0.020910624, + 0.010291678, + 0.015071983, + 0.019968895, + -0.04577818, + 0.039870903, + 0.017828455, + -0.0024242047, + 0.044869393, + 0.01712509, + -0.0063031414, + 0.03289866, + 0.046925448, + 0.059181917, + 0.018851502, + 0.05537164, + -0.031726364, + -0.011691633, + -0.0062316195, + 3.1861648E-4, + 0.060730346, + -0.06269274, + -0.009957015, + 0.004712971, + -0.0064722183, + -0.05642077, + 0.038271308, + -0.015539602, + 0.0177643, + 0.008161522, + 0.023961037, + -0.0066623245, + -0.015084906, + -0.04808821, + -0.016351257, + 0.017258814, + 0.050232362, + -0.03690247, + 0.081154354, + -0.03603271, + -0.014287938, + -0.050691254, + -0.010382987, + -0.025830027, + 0.045093566, + -0.016440397, + -0.04188333, + 0.0042916615, + 0.035500873, + -0.015369382, + 0.013086451, + -0.03836462, + -0.08700663, + 0.031763986, + -0.01618466, + 0.020845963, + -0.015514601, + -7.1369845E-4, + -0.015373575, + -0.012839517, + -0.009850601, + -0.016025672, + 0.0093836645, + -0.037420083, + -0.038699698, + -0.0021890146, + 0.03134072, + 0.0064278417, + 0.0036134752, + 0.023067357, + -0.03908128, + -0.036911856, + -0.022296207, + 0.01962752, + -0.026322953, + 0.008025154, + -0.053517926, + -0.033939756, + 0.040462922, + 0.030987304, + 0.035173554, + 0.060750812, + 0.003993275, + 0.0101520335, + 0.041555516, + 0.063188136, + 0.018963253, + 0.06366883, + -0.0033039327, + 0.017348863, + -0.0072680134, + 0.056207538, + 0.07822682, + 0.003420583, + 0.051233437, + -0.012925525, + -0.00908312, + -0.033038467, + 0.028508374, + -0.027128955, + 0.0323647, + 0.03777323, + 0.014930217, + -0.019194275, + 0.055070575, + 0.0068079485, + -0.04624189, + -0.018444968, + 0.006395708, + -0.01134226, + -0.023967994, + 0.0013486684, + -0.030507252, + -0.0340364, + 0.039018776, + -0.036878116, + -0.066966124, + -0.056431655, + -0.027926695, + -0.057469405, + -0.005716737, + 0.004684943, + -0.04538699, + 0.0032060633, + -0.0060217422, + -0.013963512, + -0.012688638, + 0.003721621, + 0.022662247, + -0.0126904, + -0.017208863, + -0.0483582, + 0.0066066333, + -0.0076613156, + -0.0204107, + 0.01010684, + 0.0055246972, + -0.013050373, + -0.030778922, + -0.012510065, + -0.0032152603, + -0.013063787, + -0.036228433, + -0.011931402, + 0.00542014, + -0.028814523, + -0.01172843, + 0.029729912, + 0.03982296, + -0.0033369558, + 0.0226254, + -0.05109837, + -0.029459214, + -0.010615998, + 0.013721817, + 0.04430193, + 0.06971642, + 0.02864141, + 0.04451568, + -0.026135964, + -0.028511712, + -0.01824416, + -8.8155165E-4, + 0.008726825, + 0.016486451, + -0.037362795, + 0.042992037, + 0.03652029, + -0.0021378892, + 0.009823998, + -1.439188E-4, + -0.013177035, + -0.00740073, + -0.0018947641, + -0.021023452, + 0.017798087, + 0.021257786, + 0.036397573, + -0.038228188, + 0.04182649, + -0.007714207, + 0.025966201, + -0.020918943, + -0.02047652, + -0.006431561, + 0.027064573, + 0.049184658, + -0.015660552, + -0.007485465, + -0.014013457, + 0.036195848, + 0.015538262, + -0.03258704, + 0.011510439, + -0.0052737026, + 0.023937728, + -0.013100407, + -0.020495271, + -0.024826162, + -0.021649713, + 0.015366889, + -0.075204246, + 0.008726086, + -0.045736443, + -0.030547608, + -0.0031708293, + 0.007395384, + 0.0041586976, + -0.006979617, + -0.022416852, + 0.012257925, + 0.040167075, + -0.0066118194, + -0.0050242646, + -0.02785832, + 0.007980359, + -0.027897414, + 0.05373203, + -0.06329971, + -0.040279076, + -0.049371704, + -0.017342638, + -0.01970156, + -0.05962967, + -0.0143979285, + 0.08478665, + -0.0019535872, + -0.038650334, + -0.041231763, + -0.06367314, + 0.026517043, + -0.009606256, + 0.035052136, + -0.012130432, + 0.032998957, + 0.048327446, + 0.028931057, + 0.041985743, + -0.019492421, + 0.06400588, + 0.013028045, + -0.019112272, + 0.009657355, + -0.028766831, + -5.4331886E-4, + -0.013085902, + -0.041647688, + -0.0014837951, + -0.039601054, + -0.019457612, + 0.0022895639, + 0.04297559, + -0.02326066, + -0.033565097, + -0.017423967, + 0.017787315, + -0.05192741, + -0.026846709, + 6.523129E-5, + 0.019842844, + 0.034518328, + -0.037638053, + -0.009410607, + -0.0056662075, + -0.032943726, + -0.017594064, + -0.0013993805, + 0.027736966, + -0.065626204, + -0.009056932, + 0.03877279, + 0.003671564, + 0.011152506, + -0.049296238, + -0.027423, + 0.018506624, + -0.024565334, + 0.017272972, + 0.022957245, + -0.022871576, + 0.045544624, + -0.028613355, + 0.004913143, + -0.029592162, + 0.06719672, + 0.039526958, + -0.014415652, + 0.019728353, + 0.023423595, + 0.056154586, + -0.029018633, + 0.06199215, + 0.0043831104, + 0.021536943, + -0.041998904, + -0.03685098, + 0.054878723, + 0.040234156, + 0.0046767546, + 0.03094376, + 0.0070058173, + 0.0149753485, + 0.00968143, + -0.046355575, + -0.007906507, + -0.0059047504, + -0.05573959, + 0.017370591, + 0.023069909, + -0.028400363, + -0.0027036055, + 0.031121576, + -0.03992544, + 0.0073509235, + 0.007219871, + 0.008071147, + -0.0394647, + 0.03485525, + -0.033232044, + 0.013886442, + -0.0098975785, + -0.039422978, + -0.03036716, + -0.08231599, + -0.038382087, + -0.0062410077, + 0.028894236, + 0.03206398, + 0.010279288, + -0.01157234, + 0.0035456656, + 0.03305426, + -0.032714214, + 0.059162743, + 0.03873965, + -0.021795135, + 0.025790697, + 0.015724478, + 0.015688483, + 0.024239056, + -0.010493818, + 0.0058496795, + -0.004364902, + 0.016500644, + 0.010559279, + 0.015793057, + -0.030883238, + 3.4558153E-4, + -0.029024113, + -0.006184403, + 0.06109793, + 0.018393006, + 0.023503104, + -0.01630704, + 0.015329387, + 0.044163734, + -0.037556954, + -0.015612199, + -0.009200106, + -0.015165161, + 0.06356422, + -0.0030801233, + -0.002889756, + -0.0035484997, + 4.0573077E-4, + 0.06094303, + -0.020762736, + -0.04767514, + -0.008183881, + -0.0069048065, + 0.038839437, + 0.04122149, + 0.045672912, + 0.022061348, + -0.009188765, + -0.017874701, + -0.0069849486, + 0.029294962, + 0.01747739, + -0.013057639, + 0.020175684, + -0.01497897, + -0.0646234, + 0.08176386, + -0.008436287, + -0.03566903, + -0.018025402, + 0.07317885, + 0.035358984, + -0.002512172, + 0.025711054, + 0.012268153, + 0.024197372, + -0.03272481, + 0.03633433, + 0.011160941, + -0.036622398, + 0.017946623, + 0.0074955537, + -0.001437431, + -0.025515378, + -0.032827765, + -0.0051471703, + -0.027124481, + 0.0059631746, + -0.05147368, + -0.008042072, + 0.02205437, + -0.030681483, + -0.005805385, + -0.016667007, + -0.009721131, + -0.017780006, + -0.027808154, + -0.05097305, + -0.036179256, + 0.0065543717, + -0.009496879, + 0.01005539, + 0.033457506, + 0.003603437, + 0.003439099, + -0.01671434, + 0.049281187, + -0.04255494, + 0.045654003, + -0.045019977, + 0.02015729, + 0.026310585, + 0.017084692, + 0.0035277903, + 0.012472719, + 0.009090142, + -0.0023013544, + -0.012568413, + 0.06537418, + 0.0027251944, + -0.009678292, + -0.045573343, + 0.012825047, + 0.0020182156, + -0.020545531, + -0.03504184, + -0.008160721, + -0.018630993, + 0.012450169, + 0.0027999892, + -0.011717922, + 0.015494332, + -0.004533532, + -0.040299885, + -0.019546976, + -0.055535585, + -0.0051309164, + 0.021502595, + 0.015618258, + 0.041811686, + 0.07957974, + -0.0010758769, + -0.07843289, + -0.028552774, + 0.031075591, + -0.013142686, + -0.006573683, + 0.007544789, + 0.03852706, + 0.0011051808, + -0.017852137, + 0.0011240244, + -0.005943543, + -0.0043978263, + 0.010064219, + 0.03824646, + 0.041821998, + -0.027173385, + -0.004882107, + 0.050329935, + 0.01045808, + 0.0071246773, + 0.047315102, + -0.023162497, + 0.024328131, + 0.011483734, + -0.032481562, + -0.012734535, + -0.05423822, + -0.0011256062, + 0.019488614, + -0.016629333, + 0.021811355, + 0.023203485, + 0.037889775, + -0.036319148, + -0.020769443, + -0.03277393, + 0.009406642, + 0.016255423, + 0.019088125, + -0.010603848, + 0.040885422, + 0.0618972, + -7.809494E-4, + 0.03072079, + -0.025265912, + -0.031590234, + 0.04904941, + -0.06391834, + 0.037824407, + 0.036236916, + -0.026582183, + -0.05067017, + -0.017442128, + -0.00809613, + -0.044530973, + -0.05461788, + 0.004982927, + 0.014028108, + -0.038025826, + -0.059263438, + -0.003383573, + -0.016089566, + 0.032166343, + 2.0336472E-4, + 0.010830739, + -0.045443125, + -0.006372398, + 0.053716425, + 0.040452115, + 0.027584193, + -0.052291762, + 0.040012185, + 1.0080541E-5, + -0.030143518, + -0.010656554, + 0.018252308, + 0.058698725, + -0.01638988, + 0.05128863, + -0.0041454774, + -0.08130942, + -0.03518963, + -0.02011264, + 0.026698891, + -0.018072482, + -0.02326935, + -0.001929897, + -0.046276763, + 0.017529972, + 0.017780803, + 0.045162663, + 0.021419926, + 0.027557818, + -0.002264847, + -0.04962253, + 0.0743818, + 0.019075463, + 0.050087344, + -0.0033037912, + 0.010940627, + -0.0063602654, + -0.03173002, + -0.037793614, + 0.023049489, + 0.011319486, + -0.004812068, + -0.065535985, + 0.035677306, + -0.024432702, + -0.012820247, + 0.027225075, + 4.7671905E-4, + -0.018933164, + 0.038325977, + 0.03128909, + -0.02331549, + -0.021226441, + 0.0020931195, + 0.048550274, + 0.029675642, + 0.026278775, + -0.03908611, + 0.010020292, + -0.027006894, + -0.032944474, + 0.020767087, + 0.008801216, + -0.012624215, + 0.016269434, + -0.009159807, + 0.033044398, + 0.03851194, + -0.03358744, + 0.09526041, + -0.00172544, + 0.009170196, + -0.022366272, + 0.0011333815, + 0.06073751, + -0.024002686, + 0.01076949, + 0.024890501, + -0.018969312, + -0.0055533354, + 0.02119093, + -0.012541158, + -0.024867747, + -0.0021641534, + 0.004757942, + -0.027153889, + 0.025094174, + 0.047858477, + 0.03872562, + -0.020752981, + 0.0063280896, + 0.057103522, + -0.027161552, + 0.024858268, + -0.01968792, + 0.010954795, + -0.06826668, + -0.012596998, + 0.02557136, + 0.009372092, + 0.009483544, + -0.0794645, + -0.025592035, + 0.003850597, + 0.016568247, + -0.014150264, + -0.040898822, + -0.022957657, + -0.0119413715, + 0.009676105, + 0.025230804, + -0.0041881935, + -0.012020131, + -0.034899328, + 0.005940879, + 0.047177274, + -0.044858173, + -0.043788224, + 0.0210679, + -0.02224891, + 0.030883277, + 0.02238808, + 0.06702443, + -0.03767625, + 0.024381543, + 0.026520096, + -0.023793463, + -0.041368145, + -0.027404198, + 0.01279745, + -2.3147331E-4, + 0.0051193037, + 0.018851379, + 0.004362357, + -0.0073251403, + 0.061539125, + 0.012397288, + 0.005261475, + -0.025347386, + -0.014132344, + -0.030786885, + -0.038018156, + -0.00230747, + 0.0614229, + 0.03489154, + -0.026741678, + -0.024597574, + 0.056212902, + -0.005897701, + 0.031569712, + 0.01876791, + 0.06916556, + -0.0313331, + -0.062796496, + -0.0066940472, + -0.031634353, + -0.014011099, + -0.030062139, + -0.056622174, + 0.0014459697, + 6.3259073E-4, + -0.040860474, + 0.030286072, + 0.00916955, + -0.012241703, + 0.02848019, + 0.03269102, + -0.050271843, + 0.056986857, + -0.010178975, + -0.051780906, + -0.020839712, + -0.03620896, + 0.028997414, + 0.0060777315, + 0.017364053, + -0.03346188, + -0.03045862, + -0.04657504, + -0.026370129, + -0.006513466, + -0.045563664, + -0.03523855, + 0.015449132, + 0.083032645, + -0.0018036321, + 0.00842385, + -0.060889266, + 0.04053891, + -0.024278937, + -0.027100794, + 0.012500717, + 0.0113440165, + 0.04191361, + 0.00560665, + 0.017088044, + -0.012608962, + 0.00785059, + 0.053856708, + 0.02244247, + 0.04607298, + -0.052493505, + 0.0386191, + -0.011796951, + -0.011897168, + 0.019147387, + 0.0032226252, + 0.010701483, + 0.017538914, + 0.04744031, + -0.046565734, + -0.064218566, + -0.024211498, + -0.052551538, + -0.055847254, + 0.0014446258, + -0.02830198, + -0.036486052, + 2.217521E-4, + -0.039242238, + -0.009703413, + -0.03122513, + 0.013739727, + -0.0032884944, + 0.03682833, + 0.051322587, + -0.04390297, + 0.013439806, + -0.008339831, + 0.027535368, + -0.037295904, + 0.011157412, + -0.009158419, + -0.023475155, + -0.030369882, + 0.061563775, + -0.021973105, + 0.0013911912, + -0.0041005486, + 0.011724605, + -0.026685718, + 0.035248745, + 0.0425353, + -0.0064284825, + -0.04455293, + -0.011423419, + 0.024228849, + -0.009788729, + -0.008147788, + 0.07574446, + -2.3631928E-4, + -0.06551519, + -0.008994318, + 0.043380663, + -0.05445525, + -0.055301733, + 0.045521155, + -0.0113604795, + 0.022497768, + -0.06790157, + 0.028833868, + 0.004563681, + 0.034927122, + -0.04759573, + 0.0209185, + -0.035457112, + -0.016382493, + 0.026662318, + 0.020638915, + 0.029928045, + -0.06355724, + -0.040220976, + -0.0029968254, + 0.01685475, + -0.029391745, + -0.018283997, + -0.013390752, + -0.008943222, + -0.016516365, + -0.054329354, + 0.0034148223, + 0.0139167, + -0.015476975, + -0.039230462, + -0.0084252255, + -0.005703438, + -0.014858797, + -0.047685537, + -0.0030874053, + -0.006888484, + -0.015935965, + -0.077124685, + 0.018635044, + 0.072574586, + -0.03233272, + 0.0065507777, + 0.004692273, + 0.009492657, + -0.04235379, + -0.01579354, + 0.017016206, + 0.016411588, + -0.019500595, + -0.0029058526, + -0.04495313, + 0.0064979168, + -0.0031006522, + -0.04638363, + 0.068531096, + 0.0062733055, + 0.015166323, + -8.820701E-4, + 0.01433649, + 0.003073822, + 0.00302808, + -0.024863522, + 0.016946007, + 0.034614656, + -0.05362916, + 0.0074591152, + 0.037441548, + -0.033387784, + -0.038153287, + -0.042111352, + 0.07024139, + 0.01470026, + 0.051036112, + 0.012129501, + -0.015571986, + 0.024114676, + -0.06545228, + -0.019227609, + 0.012921418, + 0.009369091, + -0.019960845, + -0.010626269, + -4.3748686E-4, + 0.022840057, + -0.018860698, + 0.01841788, + -0.030379247, + -0.02309907, + 0.015944941, + 0.010369538, + 0.009537083, + -0.031435557, + 0.014036719, + -0.03436009, + 0.010221289, + -0.055913564, + -0.0011516054, + 0.053837005, + -0.00891114, + -0.010209517, + -0.02583116, + -0.04004805, + -0.03244821, + -0.014069844, + -0.020738918, + 5.707742E-4, + -4.5216698E-4, + 0.0062375874, + 0.026445812, + -0.037998386, + -0.022057744, + -0.029350592, + -0.01919794, + -0.02885973, + 0.018685356, + -0.046432935, + -0.018211536, + 0.067060545, + -0.004835491, + 0.012492883, + -0.042191893, + -0.031532753, + 0.05422541, + 0.059361897, + -0.006150641, + 0.009982922, + -0.014789015, + -0.038875375, + 0.018312111, + 0.01617539, + 0.041078318, + -0.017922202, + -0.007460909, + -0.0070118676, + -0.005646179, + -0.017653136, + 0.016545437, + 0.010929334, + 0.015433213, + 0.017171422, + -0.017238958, + -0.03201588, + -0.03145109, + -0.041824974, + 0.04452077, + -0.03543205, + -0.024309095, + -0.012258003, + 0.0029540514, + 0.012490522, + 0.013467086, + 0.06846737, + -0.010862283, + 0.011449828, + 0.0066758385, + -0.012860625, + -0.006807678, + 0.01763566, + -0.014321335, + -0.004491517, + 0.0149115715, + 0.017897636, + 0.009307788, + 0.06987523, + -0.034719672, + -0.0013649678, + 0.020234298, + 0.058396112, + -0.05079164, + -0.04074834, + -0.006453743, + -0.008117586, + -0.012445682, + 0.03814526, + -0.051392373, + -0.015799303, + 0.020849282, + 0.026298331, + 0.013578974 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json index 255cc3604..22465cb45 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json @@ -1,1365 +1,5281 @@ { - "description": "examples for the genre filter tests", - "createdAt": "2023-11-21T14:25:44.064125Z", - "id": "sbf5lyqg", - "document": { - "modifiedTime": "2057-05-07T10:51:14Z", - "display": { - "id": "sbf5lyqg", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "examples for the genre filter tests", + "createdAt" : "2024-11-14T14:37:56.465133Z", + "id" : "xmlsowlq", + "document" : { + "modifiedTime" : "1970-11-30T11:53:00Z", + "display" : { + "id" : "xmlsowlq", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Ay1.jpg/info.json", - "linkText": "Link text: e8xBWFtf1", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", + "linkText" : "Link text: AKLim43", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Ay1.jpg/info.json", - "linkText": "Link text: e8xBWFtf1", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", + "linkText" : "Link text: AKLim43", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#14DF55", - "source": { - "id": "vx3fzhn6", - "title": "title-BmBQQm8aMW", - "contributors": [], - "languages": [], - "genres": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#B8DE7E", + "source" : { + "id" : "gdpxcgp2", + "title" : "title-ktG7wwBwmf", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ { - "label": "Emu entrepreneurship", - "concepts": [ + "label" : "Emu entrepreneurship", + "concepts" : [ { - "id": "g00dcafe", - "label": "pwwG2tFEM5z4InG", - "type": "Genre" + "id" : "g00dcafe", + "label" : "jBVxL1V4oewPM67", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "Falcon finances", - "concepts": [ + "label" : "Falcon finances", + "concepts" : [ { - "id": "baadf00d", - "label": "IAoqe6LSXOfd243", - "type": "Genre" + "id" : "baadf00d", + "label" : "ND4ajrHSr7cFUI5", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" } ], - "subjects": [], - "type": "Work" + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "sbf5lyqg", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": ["pwwG2tFEM5z4InG", "IAoqe6LSXOfd243"], - "id": "vx3fzhn6", - "sourceIdentifier.value": "sT3CDyBcPp", - "identifiers.value": ["sT3CDyBcPp"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-BmBQQm8aMW" + "query" : { + "id" : "xmlsowlq", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "jBVxL1V4oewPM67", + "ND4ajrHSr7cFUI5" + ], + "id" : "gdpxcgp2", + "sourceIdentifier.value" : "yi3e0o56QQ", + "identifiers.value" : [ + "yi3e0o56QQ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-ktG7wwBwmf" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ "{\"label\":\"Emu entrepreneurship\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Falcon finances\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": ["Emu entrepreneurship", "Falcon finances"], - "source.genres.concepts.id": ["g00dcafe", "baadf00d"], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.0019561406, 0.056759447, 0.020849546, 0.020851366, 0.0036755118, - -0.010001614, -0.020931503, -0.0045028655, -0.008417221, -0.009978007, - 0.03318512, 0.026000306, 0.001100167, -0.007749074, 8.828688e-4, - -0.033266444, 0.019006222, 0.00881704, -0.009594213, -0.019294944, - 0.014422949, -0.009298325, -0.011205767, -0.024011409, 0.003992273, - 0.011781341, -0.033626195, -0.0068755765, -0.01939315, 0.04591713, - 0.0012465268, 0.002650621, -0.0012516419, -0.013750647, 0.009850749, - -0.008817769, -0.012014659, 0.010248254, 0.020354116, -0.007672635, - -0.0041396497, 0.01943053, -0.0022709486, 0.004199258, -0.021157008, - 0.009711375, 0.0055593774, -0.022018151, -0.015901128, -0.02794662, - -0.03480008, -6.954923e-4, -0.0028423714, 0.015091496, 0.0070795, - 0.025374264, -0.004472793, 0.019100197, 0.0014674255, -0.021581568, - -0.024143873, -0.017419254, -0.015350113, 0.013073906, -0.0041456358, - 0.009889728, -0.019731974, -0.011999928, 0.01564762, -0.02355839, - -0.022261333, 0.018474882, 0.032374773, 0.010153986, -0.018648194, - 0.024872689, -0.022380514, -0.006024978, 0.013413659, -0.0059767137, - -0.012547618, -0.023747431, 0.03177347, 0.006176268, 0.013616086, - -0.0026628568, 0.021764005, -0.0070847007, 6.619883e-4, -0.011325704, - 0.024146855, 0.012383156, -0.025715444, 0.017017461, -0.007666396, - -0.008013072, 0.0028880246, -0.0071589146, -0.011674901, -0.0029858162, - 0.023183648, -0.025362868, -0.03707702, 0.023951016, -0.0030327104, - -0.01234878, 0.018110767, -0.016496327, 0.013251358, 0.0022002463, - -0.009669827, -0.0022589716, 0.018741583, 0.008526315, 0.022687022, - -0.009288295, -0.033678476, -0.00313905, -0.009192066, -0.011922424, - 0.0024451127, 0.02723639, -0.0029559422, -0.009301126, 0.030040964, - -0.0014567297, 0.013279727, -0.020956626, 0.013628806, -0.015381617, - 0.0019213454, -0.002009509, 0.004422009, -0.046358615, 0.018666437, - 0.0011152286, 0.0052866875, -0.0066304095, 0.014553098, -0.010639817, - -0.026138054, -0.004597268, 0.0074310373, -0.0013596265, -0.007988115, - -0.008520906, -0.010389353, -0.03289467, -0.009010959, -0.019892238, - -0.02315681, -0.00981476, 9.271412e-4, 0.002610353, -0.012115005, - -0.006301672, -0.02081552, 0.005865859, 0.01265083, 0.00844923, - 0.034736846, 0.018218666, -0.005403954, -0.004172597, 0.008170266, - 0.011546293, 0.020825418, 0.0010806725, -0.013935393, 9.887071e-4, - 0.005280443, -0.009194364, -0.019766487, 0.028577197, -0.0019679896, - 0.034449786, -0.01703269, 0.0019987095, 0.013343499, 0.02012518, - 0.0052842754, -0.005738094, 0.009581748, 0.048474975, 0.0034037374, - -0.015701545, 0.0056122094, 0.015519248, 0.041933984, 0.014741774, - 0.021235667, -0.02776736, -0.005631975, -0.02859978, -0.004475026, - 0.015555402, -0.0090054, 0.009431287, 0.010032012, 0.018489713, - 0.013864581, 0.0040753055, -0.002313161, 0.006375875, -0.012915671, - -0.025338713, 0.0036079953, -0.002835972, -0.0101853665, 0.017452158, - -0.020712798, 0.01616202, -0.026761897, -0.0068501383, -0.006089097, - 0.026073609, 0.02028348, -0.016015414, 0.024128333, -2.7977076e-4, - 0.010597371, -0.017321313, 0.010454556, 0.00414366, -0.017442448, - -0.010742944, 0.018440912, -0.009324048, -0.013886866, 0.0068886247, - 0.004592516, 0.0077975984, 0.0074197147, -0.002015414, -0.009433279, - 0.02649374, 0.0052734967, -0.011900191, 0.015831877, -0.0031610543, - -0.014740702, -0.0016860762, 0.010269198, -0.018896865, -0.021685963, - 0.011743325, -0.0079052, -0.002515626, 0.006678519, -0.009577391, - 0.045286912, 0.020465363, -0.0029835172, 0.008889853, 0.00605165, - 0.01810769, -0.0147108445, -0.003881564, 0.009245487, -0.00898377, - 0.014876291, -0.025852937, 0.013223169, -8.78713e-4, -0.02188443, - 0.002325669, -0.0118257115, 0.022888092, 0.015028925, 0.022319026, - -6.2932004e-4, 1.912962e-4, -0.0045347726, 0.018776339, 0.013154299, - 0.0033156353, -0.027754132, -0.011929498, 0.0033797538, -0.010368782, - 7.916276e-4, 0.024845654, -0.0055443654, 0.008550774, 0.022374885, - -0.012042833, 0.015421274, 0.001639893, -0.02768128, 0.011201702, - 0.011449117, -0.0013471649, 0.004380509, -0.0017057771, -0.01249103, - 0.006129924, 0.0057287654, -0.0045353873, -0.010673941, -0.012274708, - 0.012307525, 0.0067966133, -0.0037772092, 0.007169235, 0.004433622, - 0.016736485, 0.024134241, 0.043327905, -0.0062418072, -0.028125772, - 9.850424e-4, -0.0064142914, 0.0064813164, -0.0046963547, 0.009353784, - -0.01564461, 0.009568237, 0.010654556, 0.01845699, 6.810286e-4, - -0.0041354652, -0.01274743, -0.002210119, -0.0026798206, 0.010177911, - -0.013130383, 0.015017277, -0.011792645, -0.00577616, -0.013919338, - -0.047921207, 0.021810116, -0.030931437, 0.0012104606, 0.0115640275, - 0.0013495596, -0.0037043162, 0.0015450459, 0.02866587, -0.0134086, - 0.019902209, 0.0045397887, 0.010413067, 0.009561698, -0.0056156185, - 0.016593182, 0.004857047, 0.009905777, -0.008082094, -0.014922511, - -0.010552535, -0.010099838, -0.020866178, 0.037675034, -0.012632607, - 0.010341781, 5.310306e-4, -0.0021611731, -1.3911362e-4, 0.023805117, - -0.010424182, -0.014354125, 0.013817032, 0.021202967, 0.0023311258, - 0.009940178, 4.5013995e-4, 0.025781548, -0.0037286852, -0.005796371, - -0.031839624, 0.017816056, -0.0032737034, -9.2941534e-4, -0.006688425, - 0.0055378093, -0.0024279114, 0.0028004656, -0.011076846, 0.003605565, - 0.00675075, 0.0011423157, -0.0033075446, -0.018602239, -0.025850968, - -0.013737836, -0.017066566, 0.025649851, 0.024471207, -0.0059545063, - -0.007507735, 0.022757301, -0.010120226, -0.009231698, -0.028113753, - 0.010888795, -0.0018401416, 0.008833564, 0.01594118, -0.024140239, - 0.0045651356, 0.011030436, 0.042044964, 0.016032405, -0.027210321, - -0.0032985392, 0.042160355, -0.0012041059, 0.0029053974, -0.014376304, - 0.0020874818, -0.01289922, -0.022783091, 0.014111388, -0.019961467, - 0.02302032, -0.020319775, 0.006452699, -0.018937986, 5.6370546e-4, - -0.0131360395, 0.011368131, 0.002558845, -0.007247783, -0.012075166, - 0.011577749, -0.0038554322, 0.01086794, 0.006693619, 0.0062670596, - -0.023265174, 0.009847526, 0.014644932, -0.0026793077, -0.0026049055, - 0.0014802536, 0.016397808, 0.0030438243, -0.0024569333, 0.015694285, - 0.029655827, 0.011808833, -0.028297119, 0.01079976, 0.030810172, - 0.0063055735, -0.008107181, 0.014551996, 0.014936598, 0.012435059, - -0.0046783397, 3.717922e-4, -0.001182623, -0.025193961, 0.0070767654, - -0.014003341, -0.01369726, -0.02538115, 0.0070167333, 0.0050174906, - 0.010172182, 0.011217986, -0.03307174, -0.0077166576, -0.028395727, - 0.0024066553, 0.012412967, 0.0135235945, 0.014704531, 0.0017595622, - 0.014558006, 0.015260329, -0.0038492784, 0.0025589797, -0.0067668087, - -0.0022426685, -0.01585193, -0.036952708, -0.00567299, -0.009893304, - 0.016099561, -0.010374377, 0.00907828, -0.01774544, 0.0043684477, - 0.002680506, 0.017805729, 0.0026442863, -0.003655563, 0.009917307, - 0.0074583325, -0.0058346777, 0.015791362, -0.013821681, 0.009279125, - 0.011648803, -0.0015989988, -2.9856607e-4, -0.0010203548, -0.0075447676, - 0.03376137, 0.010081812, -0.010763488, 0.006456586, 0.01062834, - 0.010129112, -0.0065024835, 0.0030731019, 0.0076145977, -0.003446003, - 0.01128858, 0.0024555062, 0.021682642, -0.03353461, -0.0066991556, - -0.011060947, -0.01671886, -0.008691612, -0.012549307, 0.014889544, - 0.0033960743, -0.004227857, -0.01430508, 0.024742715, -0.0048545226, - -0.0028538764, -0.009161018, -0.018949851, -0.018673956, -0.022513272, - -0.024208678, -0.013504434, -0.0039889, -0.023945317, -0.004472868, - -0.017023962, 0.005219385, -6.904447e-4, 0.026043797, -0.020056698, - -0.011917379, -0.0041461936, -0.0073527987, 0.02138008, -0.00841779, - -0.0067233, 0.0048196325, -3.4103927e-4, -0.018029956, 0.021205163, - -0.0070850495, 0.0043579903, 0.011160816, 0.030723408, -0.009232917, - -0.009756373, 0.022836586, 0.004918206, -0.0024812445, -0.02824766, - 0.03451634, -0.022706997, -0.0068769013, 0.020737104, 0.01396649, - 0.008825719, -0.020211555, 0.00558218, 0.0046576452, 0.0049195546, - -0.010804248, 0.0099227885, 0.013459301, -4.9600523e-4, 0.003134512, - 0.007763772, 3.264207e-4, -0.028569777, -0.011400407, -0.020733474, - -0.024728013, 0.01945606, -0.0055177715, 6.024484e-4, -0.016806528, - -0.0010413405, 0.0022188015, -0.002868172, -0.0015852124, 0.012750012, - 0.022392038, 0.02777883, -0.019337524, 0.0024197418, 0.013927438, - 0.0031423904, -0.01422528, 0.016630005, 0.024036087, -0.0042600343, - 0.0053699007, 0.018098228, 0.0032764922, 0.003914293, 0.020121224, - 0.02184315, 0.025269926, 0.015077558, -0.015080644, -0.00626837, - -0.0045057125, 0.035193026, -0.017548881, -0.018594041, 0.00555176, - -0.00584181, -0.009703392, -0.004519534, 0.005703488, 0.007653418, - -0.012127065, -0.008797124, 0.021079121, -0.02322999, 0.00860571, - -0.0125323655, -0.01393644, -0.0013700017, 0.014237467, 0.0069462755, - 0.0057205833, -0.011460576, 0.005397026, -0.023884133, -0.0024538708, - 0.011709242, -7.094033e-4, 0.01610868, -0.027999, -0.020594819, - -0.036532808, 0.011210063, 0.0039113653, 0.0026142902, -0.020437814, - -0.026079742, 0.0013265366, -0.009669069, -0.019727113, -0.0064043417, - 0.0050281, -0.009125812, -0.023839803, 0.009004543, 0.021264423, - -0.023163907, 0.007966733, 0.008785823, -0.041113093, 0.009498488, - 0.00572997, -0.008317253, 0.004241845, 4.2206672e-4, -0.002111232, - -0.005949111, -0.025681334, 8.2636235e-4, 2.097513e-4, -0.0058366023, - -0.016884103, 0.0072166873, -0.008852656, -0.0049730255, 0.0025594868, - 0.0049932874, -0.0032952724, -0.01719348, -0.020758819, -1.3836169e-4, - 0.001767513, 0.003941399, -0.0065176627, 0.010557169, 0.025679331, - -0.01599096, 0.025484834, 0.04588023, -0.01599055, 0.01756325, - 2.999472e-4, 0.0103608025, 0.043021306, 0.018112067, -0.018299544, - -0.008236418, 0.0026343712, 0.002574202, 0.01186355, -0.0055081504, - -0.032796904, 0.004195043, 0.0037185003, 0.0016852713, 0.009865461, - 0.018992838, 9.048779e-4, -0.010732646, -0.019713849, 0.002947107, - -0.0075033964, -0.0018090652, 0.0080311, 0.017068267, -0.00689701, - 0.024977954, -0.026632678, -0.021804133, 0.007879969, -0.024200622, - -0.015917659, -0.025898887, 0.023761146, -0.0017361599, -0.023969376, - 0.005342421, 0.00987242, 0.004306104, -0.035566874, 0.0165941, - -0.005156256, 0.019495541, -0.011729153, -3.966023e-4, 0.026444314, - -0.015931647, 0.0041204193, 0.008541257, 0.003177276, 0.0018840603, - -0.034635957, 0.015952615, 0.017289214, -0.002316172, -0.004250109, - 0.023732692, 0.0027098823, 0.0011846977, 0.01413019, 0.004661656, - 0.023370894, -0.008348691, 0.0112266205, -0.0033253015, 0.012854331, - 0.035251766, 0.022619145, -0.017944584, -0.008331951, 0.013808682, - 0.029244144, -0.04579061, -0.009129243, 0.0102479495, 0.0020750295, - 0.017308291, -0.019768035, -0.00727729, -0.006139719, -0.012385985, - 0.0020960593, -0.016427401, -0.01863858, -0.0036203659, 0.0172942, - 0.01784273, -0.0041547604, -0.0059378543, 0.0063859695, 0.0075269616, - -0.020272674, -0.02573762, 0.025716653, -0.018101135, -0.0070669246, - 0.002929602, -0.018978016, -0.014047818, -0.0030492092, -0.051975686, - 0.011724431, 0.001910788, 0.01074953, 0.021248164, 0.0065400247, - 0.004348917, 0.024089616, 0.004812719, -0.018708821, 0.009778896, - -0.006775597, 0.036447737, 0.007195976, -0.02706607, -0.011624752, - -0.008919067, -0.0025949343, -0.0022734136, -0.010936926, 0.03451788, - -0.02472848, 0.01069099, 0.015421329, -0.022221828, 0.030739702, - 0.027850237, -0.01256863, 0.009884168, -0.022678766, -0.003504497, - -0.0015477869, -5.57058e-4, -0.032911133, -0.0014088689, 0.00168125, - 0.018257134, -0.01699327, -0.0016399786, 0.019104147, 0.0047730696, - 3.5983857e-4, 0.004544935, 0.007469127, -0.01747644, 0.0018278514, - 0.022780724, 0.019384028, -0.009706304, 0.0036363145, 0.00278514, - -0.024962675, 0.002459191, -0.0018968757, 0.01689948, 0.012054729, - 0.0051214006, -0.007959853, -0.003833471, -0.0021404831, 0.02442802, - -7.250134e-4, -0.024639217, -0.019418502, -0.001004037, -0.005994996, - -0.018651353, -0.0142870955, -0.020123314, 0.0079193, 0.0022332435, - 0.0054567624, 0.023000032, 0.02622898, 0.011792713, -0.015140926, - 0.013711506, -0.02042709, -0.004639709, -3.1694087e-6, -0.016387068, - 0.030739484, -0.012104975, 0.0016294763, 0.0068643233, -0.008353547, - -0.0039203516, 0.022865288, 0.012682178, 0.015651317, 0.010160117, - -0.025989769, 0.021820543, 0.015911208, 0.002582495, -0.008952269, - 0.0070739244, 0.008588937, -0.0125310635, -0.016025594, -0.019847848, - 0.016557604, -0.010648963, 0.004151235, 0.01826195, 0.026383605, - -0.015920065, -0.0015366169, 0.006876499, -0.008649778, 0.022609565, - -0.0056675677, -0.035876445, -0.021316573, -0.018188734, 0.018849676, - 0.007885302, 0.024739841, 0.023009047, -0.02068137, -0.020928718, - 0.0034058522, -0.005775637, -0.0042259158, 0.008288433, -0.012437126, - 0.014246237, 2.4674673e-5, -0.016743062, -0.015384599, -0.024789846, - 0.011924556, 0.007375579, 0.017847916, 0.017228756, 0.020565089, - -3.1769357e-4, -0.024001053, 0.009553841, -0.022224767, -0.010460956, - 0.023331339, 0.019030575, 0.030592784, 7.662166e-4, -0.011914258, - -0.016519053, -0.012525008, 0.015990438, -0.001883135, -0.030701622, - -0.0029858663, -0.0057256017, -0.0010066457, -0.025591757, -0.014537356, - 0.011408765, 0.022620564, -0.02413444, 0.024913864, 0.016615152, - -0.029460449, -0.0039872616, -0.0054306188, -0.0063838717, -0.008438327, - -0.0022935683, -0.006805945, 0.0031758293, -0.0025051124, 0.022784818, - 0.0038543097, 0.0024653834, -0.039662126, 0.008251069, 0.0064393263, - -0.0051639415, -7.962197e-4, 0.006474071, -0.0034677687, -0.01129883, - -0.015404427, 0.0060378117, -0.017847937, -0.011999083, -0.016817655, - 0.011711075, 0.010337628, -0.010484981, -0.025901273, -0.04796041, - -0.0071300734, 0.0030782789, -0.01161227, 0.0073922854, -0.013268078, - 0.00884948, -0.007128414, 0.018928753, -0.003409209, -0.015274093, - -0.0035274269, -0.004493939, 0.001419781, -0.0121160485, 0.0014957892, - -0.006371504, 0.0052371467, -0.00586985, 0.006146488, 0.008193259, - 0.024235385, -0.0077361125, 0.016826078, -0.023011064, -0.0044800006, - -0.0011853568, 0.008451918, 0.002599064, -0.026984524, -0.015872983, - -6.4719777e-4, 0.0014229977, -0.008105523, 0.0046358155, 0.018187774, - 0.02019702, 0.008307792, 0.0025623362, 5.538784e-4, 0.03368322, - -5.576934e-4, 8.1995246e-4, 0.0042741275, -0.0068113394, -0.017859913, - 0.0075196675, 0.0012524612, -0.0012254693, -0.01783673, -0.0071141007, - -0.017715277, -0.013660976, -0.021895431, 0.030430188, -0.023657503, - 0.01785578, 0.009967069, -0.0058597797, 0.016979221, 0.033935532, - -0.0026956038, 0.010917713, 0.0024962788, -0.023497494, 0.007992266, - -0.010791738, 0.008831936, -0.010793153, 0.012215405, -4.6697116e-4, - -0.02742504, -0.013021069, -0.0011666813, 0.035521206, 0.031852704, - -0.011969263, 0.019935431, -0.0067249024, 0.013572141, 0.009185142, - -0.042670127, -0.005170492, -0.006804777, 0.010329706, 0.019351142, - -0.01264771, 0.013377777, 0.0041245655, -0.015644167, -0.015195958, - 0.011257794, -0.010869347, -9.5156755e-4, -0.011095995, 0.020888636, - 0.012157771, 0.012582549, 0.009486125, -0.021249158, 0.0018295229, - 0.022287963, -0.009871, 0.023566306, 0.007395633, -0.034701917, - -0.024855329, 0.0052451678, 0.018444527, -0.0052227513, -0.0065847505, - 0.03946423, -0.0058654733, -0.016874742, -3.8677282e-4, 0.010560059, - 0.020765798, 6.566033e-4, -3.8763662e-4, 0.010687412, 0.03078334, - -0.0024017342, 0.011958294, -0.0041615763, 0.0076676058, -0.015541908, - -0.0023422823, 0.0038254638, -0.017819911, -0.011521816, -0.022218827, - 0.017371237, 0.0058937245, 0.012208454, -0.005281473, -0.01259753, - -0.003328306, 0.0038941447, -0.009887982, 0.008651031, 0.015516357, - 0.012387122, -0.0050463425, 3.8512927e-4, 0.02436082, 0.019695647, - -0.020540547, 0.0037983633, 0.020603113, 0.0022405842, 0.010827466, - 0.018328054, -0.025096651, 0.020510035, -0.015126721, 0.004313821, - 0.015825033, 0.026329204, 0.004162589, -0.0327914, 0.012534086, - 0.0012578961, -0.021418434, 0.025221165, -0.010364736, -0.0026809976, - 0.023535099, -0.018321084, 0.012521455, 0.010304537, 0.014217775, - 1.4421505e-4, -4.8206787e-4, 0.00641703, 0.015886856, 0.0034259881, - -0.009286651, 0.011552365, -0.027338814, -0.009038976, -0.0114593515, - -0.0045300303, -0.01457925, 0.01121286, -0.007802914, -0.013361553, - -0.0034780754, 0.0024015824, 0.0040105428, -0.0131016355, -0.004965501, - -0.0038686174, 0.018225808, 0.008349286, -0.0034272587, -0.024536762, - 0.010470111, -0.007078753, -0.002569616, -0.0023903174, 0.014935451, - -0.054202184, -0.019807845, -0.02977949, 0.012645316, -0.0058714454, - 0.015295533, -0.0051004277, -0.010277247, 0.02354757, -0.014315443, - -0.011169986, 0.013326904, -0.023291305, 0.024145909, 0.037725005, - 0.011284432, 0.0070594624, -0.0076045524, -0.037656955, 0.030579869, - 0.013982375, -0.016620146, -0.021012187, -0.0017845761, 0.021469535, - -0.008807184, 0.012008773, 0.011545605, -4.3660525e-4, -0.03334728, - 0.021025712, -0.008885751, 0.014730374, 0.03144579, -0.017088348, - -0.017404623, 0.0072995857, -9.463635e-4, 0.0026017006, -0.026767049, - 0.03443199, -0.006687145, 0.010127093, -0.026903741, 0.01175358, - 0.025252683, -0.009659715, -0.0195119, 0.007062251, -0.01989607, - -0.008281124, -0.010675214, -0.0035143, -0.011661861, 0.0068777916, - -0.0090401415, -0.0076127104, -0.0030760623, -0.0011055314, - -0.009193826, 0.009731015, 0.006953676, 0.0032295575, 0.0067216596, - -0.010677922, -0.025637472, 0.025433978, -0.017170675, -0.01402702, - -0.015576176, 0.008329705, -0.013953354, 0.028000023, -0.015413433, - 0.004761307, 0.008565752, 0.009612625, -0.005790508, 0.057552364, - 0.01624984, 0.01464551, -0.0104556065, -0.007087591, -0.0035501863, - 0.026116718, 0.03369258, -0.0039758673, -7.1933516e-4, -0.0014303875, - 0.007751085, 4.6205937e-4, -0.0031684388, 0.006890037, -0.0024850576, - 0.01137044, 0.013003984, -0.02026873, -0.020790335, 0.0063534416, - 0.008600981, 0.0044833403, -0.012448339, 0.015943648, 0.02958928, - -0.026472762, 0.009006746, 0.023702698, -0.0058930023, -0.020210585, - -0.02024964, 0.036635693, -0.02061987, -0.0012556526, 0.030460821, - -0.002438841, 0.0049099876, 0.030936792, 0.015577937, -0.025879994, - 0.007624291, 0.006742782, 0.033568103, 0.026222989, -0.021603635, - -0.0070646275, -0.005659323, 0.022570804, -0.03495921, 0.030992122, - 0.011185142, 1.3030301e-4, -0.0040323455, -0.008633209, 0.009269772, - 0.007009823, 8.3025225e-4, 0.025838636, 0.01702875, -0.007747815, - 0.0034515988, -0.014371071, 0.0016585623, -0.0041248393, 0.005015191, - 0.009858498, -0.008881877, 0.015765931, 0.011427392, -0.002938155, - 0.011790252, 0.0079682, 0.013249035, -0.0049206144, 0.005054072, - -0.013943247, 0.0025525475, 0.007869825, -0.015455194, -0.010488664, - -0.009818536, 0.017386483, 0.0010024228, 0.0032594139, -0.0014903072, - -0.030834269, 0.03895005, 0.016810302, 3.820594e-4, -0.02035602, - -0.021857206, 0.018671231, -0.017289322, -0.0023783566, -0.0017740553, - -0.03133321, 0.0058178795, -0.047221877, -0.0037686157, 0.006852498, - 0.009577166, -2.6293332e-4, 0.016655624, -0.002353012, -0.021462193, - 0.0059197713, -0.009553228, 0.004625055, -0.0076793376, 0.005635549, - 0.009137047, -0.021787573, -0.013665362, 0.0023041323, 0.0061090835, - 0.0035484254, -0.0077370745, -0.02061681, 0.01651586, -0.02419707, - -0.0030113778, 0.0073744287, 0.0102769025, 0.006210985, -0.0040823207, - -0.003601713, 0.005608677, 0.00752885, -0.0459289, 6.9489307e-4, - -0.042579968, -0.027781792, 0.017978266, -0.026816286, 0.027203513, - -0.012851794, -0.04769269, -0.0019939113, 0.020754637, -0.035584196, - 0.00557163, -0.0135939205, 0.0125103425, 0.017321223, -0.02792254, - 0.002214999, -0.0047149635, -0.00796262, -0.0024782184, 0.019416561, - 0.0074670105, 0.0054411013, -0.021655407, 0.006835745, 0.0035382847, - 0.022999456, 0.024803694, -2.4876476e-4, 0.004340086, 0.014865434, - 0.016370514, 0.0083361175, 4.761446e-4, 0.021121657, -0.028640538, - 0.005905449, -0.007062311, -0.004676277, 0.0107877515, 0.02512503, - 0.020056125, 0.017052006, -0.006401156, 0.01766657, 0.01536903, - -0.021007093, 0.020347971, 0.0058881287, -0.027406784, 0.043284014, - -0.0010860272, 0.020670919, -0.002114055, 0.02175032, 0.009544817, - -0.011486591, 0.017013254, 0.023677211, 0.01513281, 3.0657934e-4, - -0.010146617, -0.016420322, -0.006587532, -0.014478809, 0.004445938, - -0.016738778, -0.045246083, 0.005428974, -0.013560806, 0.013568912, - 0.014773825, 5.1339145e-4, -0.04075992, 0.0045281686, 0.007860425, - -0.010499201, 0.00654649, 0.021883376, -0.0029118923, -0.011218912, - 0.009412649, -0.02049824, -0.021637727, 0.012306399, -0.016419405, - 0.038686167, 0.0012589671, 0.0029951306, -0.0033821992, -0.021254847, - 0.02272452, 0.0046926416, -0.0072819167, -0.016964715, -0.0149902785, - 0.005680516, -0.004402884, 0.00888624, -0.00740136, -0.0035229623, - -0.012002215, -0.00478508, 4.0545408e-4, 0.0028852066, -1.8195786e-4, - 0.024176827, 0.0023466435, 0.014566663, 0.009681392, -0.0054644365, - -1.8592014e-4, 0.0029965413, -0.016010597, 2.4390112e-4, 0.022688922, - 0.016561102, -0.010475807, 0.021294663, 0.013436574, 0.0027432449, - -0.007991305, -0.02063958, 0.013339004, 0.0224192, 0.0018416687, - -0.0076454324, 0.018770987, -0.010264322, -0.0053517446, -0.00728655, - 0.0026952738, 0.013558116, -0.020879695, -0.016749304, 0.010153929, - -0.009541096, -0.019739069, 0.013665314, 0.004830439, -0.009780215, - 0.018864684, -0.011631259, 0.021342482, 0.006768878, 0.0047399336, - 0.001231686, 0.0036549787, -0.026180094, -0.007255555, 0.003149799, - 0.0013525012, 0.014520395, -0.007399483, -0.0023299959, 0.012943304, - 0.021961914, 0.01398502, 0.010870881, -0.006889784, -0.0078532435, - 0.0038341817, -0.009578122, -0.035069752, 0.00567, 0.006239721, - 0.017691633, -0.03046592, -0.028092705, -0.01253893, 0.008867456, - 0.0016136885, -0.01684227, 0.016157743, -0.008723389, 0.008375493, - 0.010546205, -0.020640368, -0.006450234, -0.013168399, -0.005225844, - -0.01125613, -0.014847917, 0.010594213, -0.007125164, -0.013183147, - 0.0062188217, -0.0012912538, -0.0012880154, -0.03136631, -0.0034711345, - -0.007852976, -0.009075373, -0.0031792757, 0.031530008, 0.0058452804, - 0.017485172, 0.00526354, 0.0035575195, -0.0090145795, 0.027160577, - 5.9769547e-4, 0.013933508, 0.011347945, 0.0024484976, 0.0089630345, - 6.635009e-5, 0.012696598, 0.0124812145, -3.3946382e-4, -0.005061078, - 0.0042125983, -0.028885815, -0.009186927, 0.005835099, -0.009019022, - 0.023790276, -0.010591973, 0.041445773, -0.03285766, 0.007561407, - 0.015645714, -0.024602138, 0.0019946003, 0.007860129, 0.018067636, - -0.0125351995, -0.007119298, 0.019021263, 0.0120187625, -0.025508454, - -0.026749847, -0.0030344357, 0.01813221, 0.00965936, 0.009999203, - 0.0037788295, -6.894409e-4, -0.016679764, 0.034346513, 0.0072806696, - 0.01163022, -0.018530682, -0.017148918, -0.005978179, 0.009814725, - 0.028079318, 0.008889027, -0.0133488355, 0.01985558, 0.0060646073, - -0.02498742, 0.008319266, 0.0033921073, 0.03495087, -0.009538483, - -0.01045508, -0.013848559, 0.02199756, 0.005533848, 0.0051432955, - 0.025118183, 0.004303216, 0.008419248, 0.0096376585, 0.0052065137, - 0.027889503, -0.0050125998, -0.022214524, -0.026329326, -0.0013038527, - 0.013527616, -0.021067778, 8.4631104e-4, -0.009750678, 0.0044021374, - 0.003058315, -0.01740884, 0.011765053, 0.010423265, 0.016081449, - 0.011089517, 0.0032145374, -0.01026613, 0.019029992, 0.020734545, - 9.865459e-4, -0.0072487574, 0.020509716, -3.9088968e-4, 0.004533395, - 0.020520197, -0.0043418184, 0.03430864, 0.004433225, -0.0058449362, - -0.0017358793, -0.0045562927, -0.004192309, -0.02802591, 0.006584696, - -0.019772224, -1.3879724e-4, -0.013451177, -0.0072559826, -0.0045481822, - -0.016179992, -0.009763598, 0.04619668, 0.011790961, -0.035146296, - 0.005883245, -0.019122157, -0.018899634, -0.016931148, -0.015119347, - -0.049229648, -0.014086889, -0.008199804, -0.008162586, -0.007934017, - 0.005377589, 0.012619772, 0.028547805, -0.004486705, 0.014064039, - -0.021206468, -0.015882023, -0.015104194, 0.026460784, -0.006735062, - -0.009245177, 0.022696609, 0.01203183, -0.015758237, -0.018663403, - 0.012162339, 0.015359186, -0.035049655, 0.013762749, -0.0067250105, - -0.014982678, 0.014600805, -0.016793443, -0.01981722, -0.0017217784, - -0.009480795, -0.012263348, 0.0039423057, -0.021675194, 0.025234835, - 1.730454e-4, -0.006725744, -0.007072829, -0.012866476, -0.0028631818, - -0.023547148, -0.0046122465, 0.011365744, 0.010264033, 0.015629588, - 0.0104446355, -0.0023523308, -0.0069104945, -0.0063505904, 0.0150161795, - 0.006857756, 0.0076480554, 0.0049173315, -0.014774429, -0.0011000849, - 0.0037774898, 0.025056507, 0.012304299, -0.0072283973, -0.018948354, - 0.0017003933, -0.0011203148, -0.017368747, -0.00872458, 0.011121818, - -0.010238919, -0.007855079, 0.006675248, -0.0121947555, 1.0179573e-4, - -0.018883958, 0.0018377258, -0.015144395, 0.012995444, 0.01543229, - -0.004195679, 0.006806906, -0.01689114, -0.03269952, -0.008018039, - -0.017265923, 0.009489261, -0.014747989, 0.015290623, -0.008423385, - -0.008943718, 0.033459406, 0.015265665, 0.021436686, 0.0017470539, - 0.0113048935, 0.013620421, -0.014955771, 0.018096233, 0.02817899, - -0.0043680994, 0.012440744, -0.028770948, 0.02268935, -0.018964296, - 0.0027959077, 0.008440097, -0.03400617, -0.011041587, -0.0075633167, - -0.015517235, -0.026279636, -0.01297212, 0.010757879, 0.036810998, - -0.026549784, -0.013982236, 0.003187156, 0.0036279943, 1.1416025e-4, - 0.0071594683, 0.027491441, -0.0031751834, 0.0070686913, 0.012251411, - -0.021903563, 0.036613982, -0.0116121, 0.022952711, 0.01445179, - 0.021335293, 0.019034475, -0.015266183, -0.012959284, 0.009545089, - -0.029172523, 0.001015184, 0.01065458, 0.013887319, 0.0031805444, - -0.030809494, 0.0018395984, 0.002670016, -0.0052563394, 0.011462643, - 8.418656e-4, -0.0051823417, 0.022169415, -0.025955368, 9.4021374e-4, - 0.009196112, -0.024824, 0.021700997, 0.020976966, 0.016798291, - -0.005261541, -0.0036121807, 0.022887876, -0.032795146, -0.008306187, - 0.010449305, 0.021795457, -0.014084432, -0.009060778, -0.031797074, - -0.022179505, 0.014736927, 0.008451972, -0.0026714944, 0.025143638, - -0.015415195, 0.02336453, 0.0036566597, -0.016652664, -0.012325671, - -0.012721658, 0.0058384603, 0.020045618, -0.00671492, 0.0018795136, - 0.024561277, 0.0142743625, -0.0038350937, 0.010352606, 0.019594159, - 0.0021809314, -0.007397581, 0.0010552149, 0.024004655, -0.0054515474, - 0.009957907, 0.011344533, 0.0026095957, 0.025134766, -0.002386429, - -0.024930868, 0.008553644, -0.014336542, -0.0056931092, 0.0022753016, - -0.008832393, -4.7713317e-4, 0.015042042, 0.0015029187, 0.0034640308, - 0.043420848, -0.0030480344, 0.011495757, -0.016035488, 0.0041479915, - -0.009790795, 0.0066222944, -0.0028425758, -0.008604587, -4.7174928e-4, - 0.01587537, -0.0034595921, -0.022349799, 0.007838392, 0.03330917, - 0.015274803, 0.011033347, -0.025297785, 0.011047668, -0.0076649073, - -0.020638507, 0.0033663576, -7.3627493e-4, -0.029531352, -0.006985029, - 0.011961912, 0.008671735, 0.002772726, -0.033880796, 0.0075056623, - -0.018878037, -0.01074677, -0.001497859, 6.746761e-4, -0.02469185, - 0.02207211, -0.0104365, -0.004132195, -0.008433259, -0.008875531, - 0.01272968, -0.002274243, 0.010152625, -0.013771642, 0.01578733, - 0.008473467, -0.02098139, 0.008249908, 0.013302597, 0.012709415, - -0.016734196, 0.0031973447, 0.041431665, -0.04666438, 0.014593325, - -0.008279342, 0.010552964, -0.011856013, -0.0011951985, -0.020774782, - 0.0055586486, -0.0016488294, -0.010531455, -0.009251708, -0.016977107, - 0.0073727733, -0.019806815, -0.0056393924, -0.0019301033, -0.01010056, - -0.04639162, -0.022958364, 0.0031421024, 0.018386958, -0.011333235, - -0.012128719, 0.008579604, -0.009459167, 0.0024698104, 0.0077067316, - -0.014616848, 0.00730926, 0.0034208363, -0.016509552, 0.017603265, - 0.008483582, 0.014037305, -7.3489756e-4, -0.007821369, 0.0047919727, - 0.0036739851, 0.0042233597, 0.009154498, -0.012478992, -0.008219411, - 0.003594566, -0.0026566219, 0.014246618, 0.0063979574, -0.010256676, - 0.004974348, -0.001954332, -0.006147341, -0.0106906155, 0.02452997, - -0.008887175, -0.0047737537, -0.0030850398, 0.008823451, 0.033225708, - 0.0010335731, 0.01315618, -0.012680165, -0.006147118, 0.006094863, - -0.005080908, 0.019213265, -0.0023155627, 0.008142574, 0.017273879, - 0.009272044, 0.02591597, 0.010314217, -0.008145708, -0.012944583, - -0.0015314174, -0.009807273, 0.0047375113, -0.010754854, 0.030173961, - -0.0020060844, 0.015652465, -0.012672455, 0.0022616538, -0.035396986, - -0.0032703036, -0.015681509, 0.010768495, -0.009714661, -0.04300739, - 0.014056404, -0.004824634, 0.02536298, -0.0041338545 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.023101673, 0.005997459, -0.0066666594, -0.006055231, 0.011214516, - 0.031257804, -0.02698374, -0.0019568703, 0.015386736, -0.015464081, - 0.0021458978, -2.2787484e-4, -0.0049206545, -0.011317996, -0.015353446, - 0.016903874, 0.005610192, -0.030539436, -0.035087053, 0.022620087, - -0.0019289908, -0.031183349, 3.8858224e-4, 0.01285953, -0.008999206, - -0.0025545736, -0.023945646, -0.0068577323, -0.018046858, -0.0066631217, - -0.0100009, -0.024140192, 0.0063820495, -0.0056312657, -0.0096764285, - 0.00433719, 0.0034047263, 0.025922041, 0.008516243, 0.001961542, - 0.002587304, 0.014005135, 0.015648391, 0.0029513917, 0.007951252, - 0.016354943, -0.013707854, -0.009765129, 0.008783995, -0.0061913054, - 0.010223201, -5.891854e-4, 0.012767718, -0.016000379, 1.3460545e-4, - 0.005586469, 0.008631867, 0.010734401, -0.01578338, -0.005756761, - -0.009420895, -0.0034159648, -0.0031678823, 0.0036931972, 0.010831313, - 0.013400903, -0.012386501, -0.0012579389, -0.003319515, -0.0054098894, - 9.803412e-4, -0.0031440286, -0.019665962, 0.0054363757, -0.005235803, - 0.023320477, 0.006059402, 0.004108371, 0.040481016, 0.017426528, - -0.02171123, -0.003843248, 0.009767205, 0.0050115082, -0.00526991, - 3.4017843e-4, 0.0016645965, -0.0165831, 0.008894093, 0.023893576, - 0.011839495, -4.187526e-4, -0.011260897, -0.0029981392, 0.0011168019, - 0.004542139, -0.011530344, 0.0048772837, 0.0033094513, 0.0068796715, - 0.018738229, 0.022841172, 0.038401663, 0.03630547, -0.0023643002, - 0.009724617, -0.0028835041, 0.004926649, -0.0020601836, 0.008757921, - -0.0038983154, 0.007681589, -0.0010332323, -0.024056595, 0.0037848337, - 0.02254422, 0.005057975, -0.00878527, 0.001537214, -0.039768316, - -0.024798492, -0.007004364, -0.0047281645, 0.027888926, 0.035912987, - -0.014358388, 0.013055849, -0.0010118863, -0.012038151, -0.0023176102, - 0.0015210324, 0.019807618, 0.017224988, -0.017512767, -8.4446743e-4, - 0.001974153, -0.00416808, -2.245874e-4, 0.020044519, -0.017456045, - 0.003706161, -0.0036917133, -0.0039554276, -0.022080729, -0.011597195, - 0.01097855, 0.019281346, 0.006118587, -0.001850696, 0.0052697607, - -0.00624014, 0.011841716, 3.2802802e-4, 0.027040819, -0.0060204966, - 0.010358209, -0.0028395983, 0.02482535, -0.016328817, 0.003790341, - 0.015549807, 0.00487292, 0.014689383, 0.0043540834, -0.005972423, - 0.015900116, 0.012033621, -0.017739302, -0.008358937, -0.0031049328, - 0.019616265, 0.031402532, 0.018709633, 0.015858954, 0.01149452, - -0.011821436, -0.003803191, 0.0063435924, 0.021291457, -0.024249557, - 0.0034180682, -7.4801885e-4, -0.014940301, -0.016448688, -0.0072675343, - 0.021810714, 0.015435003, -0.0081624715, 0.011502921, 0.033077184, - 0.0021033161, -0.006374824, 0.0014660681, 0.0044508004, -0.008226208, - 0.017330669, 0.007079001, 0.012268979, 0.0015792613, 0.0032537505, - -0.0051253964, -0.01949754, 0.00563085, -0.035289634, 0.0067849956, - -0.016374987, -0.022769285, -0.022388933, -0.0015496869, 9.6224615e-4, - 0.0066563045, -0.027498698, 0.011454264, -0.01836176, 0.035258256, - -0.017642202, 0.016063184, -0.030941276, -0.0038391643, 0.01635918, - 0.008661489, 0.015887456, -0.015783837, -0.0019812835, 0.004894294, - 0.007970684, 3.0051937e-4, -0.013993569, -0.0030636757, -0.0051874532, - -0.0034684653, 0.007397179, 0.0015929734, -0.012956115, -0.008095936, - 0.0142296115, 0.015666312, 0.011055542, -2.9922678e-4, -0.010669742, - -0.01875529, -0.015140753, 0.0064962218, 0.031870347, -0.004039338, - 0.0064344644, -0.010397077, -3.2294868e-4, 0.0063405507, 0.023415435, - -0.01191241, 4.10601e-4, 0.026036372, 0.010001592, 0.0037663032, - -0.0054578655, 0.032671887, 0.011255208, -0.003012862, 0.0029060899, - 0.0076913997, -0.021118464, -0.0040043965, 0.03070621, -0.018064253, - -0.0061893696, -0.026851807, 0.004466406, -0.011288221, 0.036894992, - -9.858591e-4, -0.04957406, 0.019598925, 0.0069230194, -0.014940227, - -0.0035757096, 0.0067017893, 0.004825908, 0.017475309, -0.011239703, - 0.020379433, 0.027725814, -0.030398607, 0.022533882, -0.016723648, - -0.014293762, 0.0018702804, 0.016527113, -0.018238127, -0.013468232, - -0.013699676, 0.024735855, 0.004845554, 0.008953511, 0.026705908, - 0.010619026, 0.004067097, -0.003079662, -0.0126926815, 0.0071999016, - 0.019748826, -0.0011886742, -0.004904735, 0.022711253, -0.003275458, - 0.0019764483, -0.028325202, -0.014759475, -0.009670797, -0.0339398, - 0.012771493, 0.010187229, -0.021972729, -0.00509634, 0.0056466437, - -0.0106699085, 0.012105909, 0.003812084, 0.0021577522, -0.011548308, - -0.012569871, -0.01724854, 0.019226402, -0.0117181465, -0.01240256, - -6.530155e-4, 0.0041030613, -0.033043154, -0.010502279, 0.03465718, - -0.010532763, -0.012229431, 0.0054618437, 0.016447177, 0.0053782426, - -0.0019523608, 0.04543544, -0.0230413, -0.014653761, -0.015512358, - -0.00694627, 3.9554323e-4, -0.02349402, 0.013880345, 0.012377903, - -0.014136522, 0.0019514972, -0.0034164023, 0.018829735, -0.022307852, - 1.707198e-4, 0.02564097, 0.026704786, 0.014376087, 1.7131196e-4, - -9.116068e-4, 0.008265887, 0.024093691, -0.0030995687, -0.017757997, - 0.006145121, 0.010674791, 0.012318437, -0.020202318, 0.002343644, - 0.0021885182, -0.014553585, 0.0024558548, -0.008939804, 0.0050262604, - -0.008034655, 0.0025789624, -0.017577453, -0.0011931641, -0.018172761, - 8.4081874e-4, -0.01637385, -0.024779981, 0.03415424, 0.014801786, - -0.021130169, -0.020852331, -0.0036280153, 0.013272952, 0.018153097, - 0.007268977, 0.006324429, 0.0043220576, 9.165998e-4, 0.0169024, - 0.009370647, 0.001322582, -0.011409611, -0.015323934, 0.006488522, - 0.014985411, 0.012102541, -0.008138335, 1.2595971e-5, 0.012037634, - -2.656312e-5, 0.007965701, -0.018300882, -0.008883579, 0.006096206, - 0.031021085, -7.516867e-4, 0.010541706, -0.0011451101, 0.010424041, - -0.006057914, 0.011997495, 0.039439525, -0.011872231, -0.0012934254, - -0.005229791, 0.014488478, 0.013478615, 0.0054307682, -0.015108443, - -0.0048620766, -0.02376482, -0.0029727435, 0.009102128, 0.03205889, - 0.005555267, -0.0010966791, 0.0022622214, 0.018841926, 0.046047986, - 0.0027260217, 0.0115073705, 0.031127688, -0.006699505, 0.003959287, - 0.026619632, 0.012590464, -0.03274245, -0.027084045, 0.0050114198, - -0.0071638315, 0.008011863, 0.007114959, -0.010740627, -9.487481e-4, - -0.011199403, -0.01397054, 0.019150816, -0.017309166, 0.011261742, - 0.0051635555, -0.00567889, -0.008124016, -0.015860563, 0.039783143, - 0.016158741, -0.017740417, 0.017244278, -0.02024214, -0.012819098, - 0.0055700853, 0.020635081, -0.010974694, 0.017748447, 0.027785767, - -0.007880469, -8.0830586e-4, -0.0021653536, -2.8794885e-4, 0.016472237, - -0.012688752, 0.005071168, -0.012952038, -0.0025830807, 0.008573498, - -2.5632078e-4, -1.2899791e-4, -0.009723044, -0.026367214, 0.019928461, - 0.020931365, 0.00639825, 0.0057540033, -0.0071376543, 0.002439201, - -0.004934938, 0.018565882, 0.020308578, -0.008816213, 0.007304296, - 0.0046664625, -0.013783151, -0.014565167, -0.015417381, 6.592786e-4, - 0.0036187063, 0.008293974, 0.0014348322, 0.0068200724, 0.018253326, - -0.0045766383, 0.0014394731, 0.004671733, 0.018125271, 0.016095657, - 5.10478e-4, -0.019250363, 0.01203973, 0.0043250127, -0.019843597, - 0.037944753, -2.1832642e-5, -0.0020040448, 0.003294498, 0.029298, - -0.017864108, -0.022693256, -0.016953189, 0.005001107, -0.0043157507, - -0.0085897, -0.04568226, 0.011904891, -0.022095, -0.0032330793, - 0.022838673, 0.0059014023, -0.0015696052, 0.0061498634, 0.034486324, - -0.02007573, 0.006639529, -0.022610014, 0.0041192123, -0.034859195, - 0.03795593, 0.0018095383, 0.0037085125, 0.008887758, -0.005112648, - -0.006918675, -0.0078596845, -0.022223318, -0.013713866, -0.010404397, - 0.021167709, 0.04352453, 0.029392656, 0.0044192825, -0.008702512, - -4.531735e-4, -0.0027230647, -0.03990049, 0.0050276, -0.00835093, - 0.0013083818, 0.020002982, 0.02239764, -0.0071592564, 0.0045032105, - 0.0068102274, -0.024775626, -0.04087399, -0.007917445, 0.009553338, - -0.001981997, 8.7434077e-4, -0.0060789413, 0.022627365, 0.01924372, - -0.0019993929, 3.5261837e-4, -0.011761921, -0.033581987, -0.011527277, - 0.0041139126, -0.0107393935, 0.028691018, -0.011807347, 0.020447575, - 0.008145637, 0.0067428057, -0.019758973, -0.020161407, -0.0153714465, - -0.013974949, -0.04111283, 0.03292243, 0.01154354, -0.01472158, - 0.009594948, -7.7475945e-4, 0.00148287, -0.0027910166, -0.004243684, - -0.005515058, 0.0075244964, -0.0022364317, -0.008300833, 0.0061153644, - 0.0050809127, 0.026155006, 0.00507348, 0.015155932, -0.01418728, - -0.011273478, 0.01025016, 4.9876614e-4, -0.020564187, -0.001411793, - 0.014336327, -0.029651832, -0.020460188, -0.02452686, -0.011894907, - 0.010523352, 0.01422235, -0.012432511, -0.015492131, 0.0065407497, - -0.007039608, -0.016896127, 0.024133094, 0.007403489, -0.023157569, - -0.013806135, 6.62699e-4, 0.022173876, -0.001226165, 0.0023260727, - 0.012412851, 0.0075371047, 0.003038825, 0.0025595888, 0.0010269358, - -0.009653869, -0.014150825, -0.002259106, -0.005249555, 0.002123982, - 0.032743968, 0.025195397, 0.026309032, 0.002579318, -0.0063330415, - 0.022566874, 0.013141857, -0.0070431884, 0.029284107, 1.6368009e-4, - 0.017960725, -0.008364991, 0.019029757, 0.007223051, 0.009617048, - 0.008432817, 0.012411174, -0.0156332, -0.00965742, -0.014173043, - 0.006632075, -0.025151016, -0.01724083, -0.020280275, -0.025492996, - -0.010799325, 0.014060827, 0.021278668, 0.0015270395, 0.03823427, - 0.014472694, -0.015774017, 0.0039890744, 0.011008113, -0.010212582, - 0.0058884635, -0.0041561006, -0.0066532325, 0.022515913, 0.0030893085, - -0.0075087766, 0.013667519, 0.013694041, 0.0027814885, 2.6717831e-4, - 0.011126609, -0.006349675, -0.028108267, -0.00822103, 0.0042981594, - 0.0021913878, -0.03111897, 2.743037e-4, 0.008616911, -0.028494032, - 0.00933439, 0.0048955022, 0.010758791, 0.018397916, 0.019193573, - -0.028861908, -0.015297879, 0.0012235374, -0.020958249, 0.0019025494, - -0.007697604, -0.03747004, 0.0025152927, -0.018435558, -4.2310572e-4, - -0.0182234, 0.019303309, -0.0141616445, 0.026939897, 5.3171214e-5, - 0.024739187, 0.009846565, 0.007186703, -0.019622413, 0.0048275925, - -0.019549772, 0.0034259458, 0.015164015, -0.02036981, 0.0023116516, - -0.004248114, 0.025224455, 0.017168563, -0.011150858, 0.0042899125, - -0.013545918, 0.008529425, -0.013158074, -0.007448768, -0.006476941, - 0.007198727, 0.019614205, -0.007164783, 0.0060744197, 0.038121108, - -0.0067918994, 0.018296953, -0.0028288644, 0.009917891, 0.006493132, - 0.022161199, 0.026355393, 0.01333544, -0.017757151, 0.0046824864, - 0.015377957, 0.018514981, 0.0023901616, -0.0060648266, 0.014303304, - -0.0022483007, 0.01706751, 0.012283209, -0.0060472116, 0.014276966, - 0.00743755, -0.011316673, 0.017227279, 0.02814585, -0.008190843, - -0.0036296449, 0.02213183, 0.011837288, -0.0042038895, -0.018736722, - -5.160383e-4, -0.02922857, 0.0036222327, -0.0095269205, 0.021152604, - -0.029492224, 0.017825317, 0.014046989, -0.0050303056, -0.0062543275, - -0.007349224, 0.009050588, -0.012713538, 0.02925833, -0.007087865, - -1.9293747e-4, 0.0047145253, 0.0020057124, -0.023643522, 0.0045616375, - -0.017694054, 7.919216e-4, -0.0351327, 0.006027709, 0.0032020342, - -0.02213569, 0.026741544, 0.028148727, -0.025283083, 0.014830677, - 0.0046818997, 0.005594154, -4.5985403e-6, 0.014567522, 0.0033564195, - 0.0076219286, -0.0017959097, 0.01162287, -0.012805129, 0.026582642, - 1.0570503e-4, -0.01477596, 0.002701746, -0.01889877, -0.01839434, - 0.01177961, -0.027782306, -0.015000131, 0.0012810575, -0.012006015, - -0.011115844, 0.01955471, -0.012613728, 0.010032065, -0.0049231723, - -0.0049875155, -0.019927183, -0.0073393756, 0.006891892, -0.010613309, - -0.011655336, 0.0042095687, 0.007144545, 0.01482495, 0.013763857, - -0.016072413, -0.006604493, -0.0017821472, -0.00485358, -0.011728644, - -0.006937416, -0.018830953, -0.016481869, -9.599184e-4, -0.020226153, - -0.014123924, 0.0018352448, 0.010953031, -0.0030107226, -0.017014237, - 0.0043968246, 0.011202762, 0.006493811, -0.010599597, -9.813724e-4, - 0.0024777707, -0.018572621, 0.013137724, -0.0076172585, 0.00854456, - -0.01974585, 0.02294292, -0.006258249, 0.013773683, 0.035616737, - 0.016228959, -0.006006488, -0.01005499, -0.025515346, 0.022230212, - 9.818139e-4, -0.00607719, 0.011560253, 0.0043556285, -0.0154714845, - 0.023234854, 0.013632535, -0.018700013, -0.013456176, -0.029753093, - -0.0016806443, 0.020382546, 0.0031432714, -0.009702053, 0.04052018, - 0.02945704, -0.021985581, -0.008841563, -0.02886866, -0.015352504, - 0.010707281, 0.038725596, 0.010945834, 0.012472587, -0.008356027, - 0.020155406, -0.008768253, -0.003864451, -0.01253273, 0.005777081, - -0.010337864, -0.011947187, -0.013093527, 0.0055074897, -0.011183213, - 0.0037794358, 0.0047819763, -0.0068950485, -0.013669421, -0.0029583713, - -0.021734323, 0.011486042, 0.018175418, -0.0052275676, 0.020132797, - 0.005890591, 0.011669621, 0.0015659622, 0.0053933263, -0.008389566, - -0.010446768, -0.004853023, 0.0026335905, -0.034828328, -0.013189099, - 0.0072908388, 0.012134241, -0.0244018, 0.008984142, 0.0045274138, - -0.015811585, 0.002326595, -0.014005883, 0.0018653148, 0.00482113, - -0.0011425705, -0.023050373, -0.0073731695, -0.006742976, 0.026090002, - -0.003811778, -0.008172496, -0.0032531836, 3.0127785e-4, 0.018535426, - 0.01811646, 0.019640584, 0.019194685, 0.008962026, -0.005951487, - -0.008513302, -0.0013270848, 0.006991305, -0.04759478, -0.011003132, - -0.013716962, -2.0634648e-4, -0.024141401, 0.034418847, 0.028357834, - 0.014538952, 0.0016080554, -0.0065304786, -0.012662556, -0.0030787797, - -0.011260051, 0.013607339, 0.006581079, 0.007532559, -0.013568197, - -0.012347619, 0.019380296, 0.009118166, -0.004240457, 0.0081192795, - 0.0065003186, -0.00656325, -0.024720958, -0.019736292, 0.006980259, - -0.016382312, 0.038359594, -0.02710169, 0.015812868, -0.0060594035, - -0.023473276, -0.005461136, 0.007219958, 0.017556801, -0.005013985, - -0.008851959, -0.005971719, -0.0057729883, 0.028764935, -0.0067972303, - 0.012567306, -9.1451235e-5, 0.008597625, 0.012781221, 0.00944016, - -0.019783309, 0.022266587, -0.020678256, 0.03216314, -0.015651906, - -0.019981759, -0.008078631, 0.008935661, 0.017111285, -0.019671066, - -0.015500029, -0.0065044644, -0.012367303, 0.004954749, 0.015459145, - -0.0035185756, -0.012520659, -0.024349654, 0.017771052, -0.01729313, - 0.009733049, 0.009936801, -0.013098287, 0.0150647, 0.0012084709, - 0.017888758, 0.044501398, -0.001964545, -0.012886459, 0.0068792826, - -0.0055610365, 0.011762929, -0.0032197302, 0.005593097, -0.0050943536, - 0.012326722, 0.020801326, 0.021568777, 1.229029e-4, -0.037068844, - 0.014733759, 0.007740453, 0.011206069, 8.6111855e-4, 0.019961378, - 0.010928703, 0.0013583202, -0.023602052, 0.015460453, -0.00967008, - 0.010409609, 0.003417256, -0.009890241, -0.020798901, 0.009615553, - -0.007649978, -0.005041753, -0.009716427, -0.014750964, -0.016589066, - -0.019253109, -0.005643468, 0.0012130801, 0.017162595, -0.019674238, - 0.010175919, 0.015591611, 0.012637881, -0.004864161, 0.0037048648, - 0.018943395, -0.01831883, -0.012445541, 0.022032004, 0.016010502, - -0.0067976536, -0.0017092226, 0.015478317, -0.0011931014, -9.2881895e-4, - 0.005190527, -0.01628364, -0.028757859, -0.040930398, 0.004146416, - -0.0026046003, -0.020200381, 0.023394275, 0.0039343582, 0.016873064, - -0.005452971, 0.012958393, -0.013695278, -0.008588359, -0.0028171488, - -0.006478837, 0.008619121, 0.016582971, 5.776262e-4, -0.0065139066, - 0.017303308, 0.0021015715, -0.015162873, -5.5762246e-4, 0.018811796, - 0.0021170366, -0.016561732, 0.01085574, -0.010275948, -0.016204255, - -0.011869366, 0.019354442, -0.0150128715, 7.175219e-4, -0.005191462, - -4.1454402e-4, -0.009694316, -9.806475e-4, 0.004005223, -0.0040526534, - -2.48664e-4, 4.5330462e-4, -0.008126678, 0.019659864, 0.019763097, - -0.019313976, -0.013153454, 0.030215453, -0.014484919, -0.029309489, - 0.0051751994, -0.021291023, -0.026001692, 0.012049589, 0.007799347, - -0.0077324403, -0.003469359, 0.024674358, 0.01497404, 8.530406e-4, - 0.0076326304, 0.005771965, 0.00739002, 0.0036657467, 0.016761547, - -0.028667277, -0.019397108, -0.014888904, 0.026371282, 0.029790008, - -0.01794803, -0.027716516, -0.0024102884, 0.003661803, -0.013629519, - 0.016873894, -0.012899212, 0.0140032135, 0.035411928, -0.010987016, - 0.0144330915, -0.027618524, -0.008012078, 0.011516531, 0.0048027486, - 0.023554295, -0.009767007, 0.0059955935, -0.008203665, -0.0028363601, - -0.0043876953, -0.0091398135, 0.009346002, 0.011817751, -0.02230298, - 0.014046119, 0.012313807, -0.005152154, -0.0075302455, -0.0013683523, - -0.0086376965, 0.021736562, 0.01777081, 0.0030985244, -0.010217342, - -0.0063886014, -0.01431959, -0.0062339283, -4.0155425e-4, -9.292475e-4, - 0.0040497044, 0.01674659, 0.0055846656, -0.0038930157, -0.0063458043, - 0.008829692, -0.0200944, -0.003494181, -0.024261799, -0.022408606, - -0.0041399435, -0.011736027, 0.015783813, 0.0030784153, -0.014269635, - -0.01766747, 0.0034918564, 0.0049149995, 0.018437782, -0.0023389838, - 0.0020202594, -0.0047220634, 0.011549113, -0.005524182, 0.019964803, - -0.0019592294, -0.005151539, -0.006866118, -0.029517524, -0.012960519, - -0.010806667, 0.0041945493, -0.01305003, 0.008300683, -0.00768064, - -0.013595779, 0.003594038, 0.031152599, -0.013756799, -0.007300676, - -0.0075640813, 0.001324791, -0.020041132, -0.0027265635, -0.0273709, - 0.0137530165, 0.011452165, 0.003127615, 0.013972184, -5.5678375e-4, - -0.0036686475, -0.0041237264, 0.012128105, 0.0026108345, 0.0027377727, - 0.0025066347, 0.010825502, 1.4641613e-4, 0.015212439, -0.01665396, - 0.0149909705, 0.013653451, 0.007308473, -0.026892848, 0.0064852666, - 0.011907309, -0.0135841295, -0.030005371, 0.008958345, -0.020274587, - -0.012774394, 0.032709133, 0.0048671328, -0.018474845, -0.007948216, - -0.029962335, 0.0051005553, -0.02042941, 0.003849266, -0.0030372003, - 0.0028219388, 0.010511814, 0.0064880527, -0.010690967, -0.015362448, - -0.007579829, 0.018697143, 0.015226437, -0.007325648, -0.00463652, - 0.0024887335, -0.010975441, 0.01976117, 0.020880649, -0.022033991, - -0.030079808, 0.007388701, 0.006455894, -0.026657013, -0.0037663488, - -0.012312934, -0.0076950607, -0.01655571, -0.0023002862, 0.023437336, - 0.011214818, 0.0024086342, -0.019091263, -0.019891178, -0.0020310886, - -0.002412733, -0.0035961275, -8.1654906e-4, -0.009461034, -0.0010589282, - 0.030703554, -0.009140058, -0.019566977, -0.013334449, -0.0117412275, - -8.443795e-4, 8.6315774e-4, 0.007992374, -0.019593176, -0.027018134, - -0.0127431, 0.0123136, -0.02781675, 0.011011521, -0.0026038622, - -0.0028233104, 0.003466044, -0.0015881781, 0.0018409448, -0.010461934, - 0.017129472, 0.009077827, -0.010502815, -0.002117576, 3.1266242e-4, - 0.006585501, -0.00556486, 0.0036839799, 0.011132338, 0.007706448, - 0.0072249956, 0.0036787156, 0.0049993983, -0.016198896, -0.015647866, - -0.0022950813, 0.017323637, 0.041726414, -0.012933044, 0.0129679665, - 0.0013868035, -0.005782124, -0.002166809, -6.616197e-5, -0.0038037421, - 0.019438786, 0.0012753542, 0.024019895, 0.012015226, 0.007306867, - -0.02337293, 0.0073413434, -0.015127626, 0.01074313, -0.020817304, - -0.02615131, 0.021829069, -0.023005836, 0.0147699695, -0.0031766447, - -0.00251748, 0.00630219, 0.012539182, -5.465872e-4, -0.002798799, - -0.023515856, 0.014338648, -0.014938847, -0.027160816, 0.002500676, - -0.010957998, -0.013364397, 0.027084295, 0.016752021, 0.018698175, - -0.007838021, -0.02294835, 0.027875597, 0.018310646, 0.0045310496, - -0.009216536, 0.020164179, 0.0062668514, 0.003105526, 0.015203445, - -0.023816872, 4.7596903e-5, 0.026989877, 0.021369519, 0.007074753, - 0.01170267, -1.9313284e-5, 0.0046136593, 0.020893605, 0.0027968427, - 0.010350453, -0.0012359142, -0.009947488, -0.00730182, 0.01007423, - -0.004078866, -0.020651553, 0.0038103634, -0.007414763, 0.007922548, - -0.0017771584, -0.018976735, -0.022354176, 0.023035774, 0.025558606, - 0.010096114, 0.032296237, 0.033418607, -9.3972625e-4, 0.001729658, - 5.6867e-4, -0.0013686701, 0.009831608, 0.0035310767, -3.271684e-5, - -9.329184e-5, 0.015163143, -0.023153184, 0.022998726, 0.007586803, - -0.019326063, -0.025412155, -0.013907972, -0.015284494, -0.022368932, - -0.01541436, 2.0890593e-4, 8.599859e-4, 0.013870778, -0.0067034536, - -0.015996676, -0.004866058, 0.005939217, 0.04431348, -0.015546184, - -0.022165654, 0.016201343, -1.20365665e-4, -1.4078918e-4, -0.008854089, - -0.011095404, -3.7253983e-4, 0.016626282, 0.0017774554, 0.0037692846, - -0.003936101, 0.010846809, 0.019557914, -0.0035192836, 0.0057693226, - 0.016992519, -0.005167822, 0.003925334, 0.0026073311, 0.0045541218, - 0.008823575, 0.0020857796, 0.010371346, -0.0060112495, 0.0043751667, - -0.020242859, -0.029517034, 0.013260876, 0.00830165, -0.010101673, - 0.005097813, 0.0058057746, 0.008905677, -0.029081177, -0.005124941, - 0.0011248802, 0.0076482384, -7.157328e-5, 0.04130362, 0.016332466, - -9.2657044e-4, -0.0265734, 0.033971056, 0.022266747, -0.005455542, - -0.008419773, -0.0048653213, -0.009290538, -0.0058937324, 0.011788125, - 0.014793987, 0.0027739166, -0.034656692, -0.011557679, 0.01969414, - 8.8277966e-4, -0.01528414, -0.03743904, 0.016928343, 0.008606304, - -0.00475065, 0.017347211, 0.0037116506, 0.01322886, -0.02294622, - -0.008331814, 0.004829244, 0.015948027, 0.008642205, 0.001689128, - -8.764514e-5, 0.01920607, -0.004592217, 0.017713001, -0.008395758, - 0.021210633, 0.00673112, 0.008755395, -0.0049756486, 0.01958151, - -0.016855111, -0.0030840465, 0.014764839, -0.023286993, 0.016754165, - -0.003254266, -0.0069288337, 0.016247647, -0.011687983, -0.009763818, - -0.016245672, -0.045755494, 0.002448168, 0.010131612, -0.025307627, - 0.005234438, 0.0032976994, -0.0073535223, -9.561917e-5, -0.030018546, - 0.02217664, 0.026682353, 0.0035191623, 0.005129735, -0.010852633, - 0.028006213, 0.009342522, 0.015230004, 0.024077766, 0.023715101, - -0.012084168, -0.012608157, -0.007409833, -0.004673161, -0.010100582, - 0.0035275165, -0.017744659, -0.00439358, 0.012236863, -0.003087858, - 0.025682952, -0.0025896148, 0.0023688397, 0.0075666024, -0.02632116, - -0.0133179035, 0.00606991, 0.014971249, 0.0078065987, 0.029030727, - -0.0024700656, -0.004291762, 0.012005791, 0.002202778, -0.010856481, - -0.0027492743, -0.009730714, 0.020104107, 0.0011720727, 0.020517485, - -0.004549541, -0.009286662, 0.02227237, -0.01284703, 0.007359375, - -0.0044708573, 0.0012989129, -0.0125581175, -0.0048979395, 0.0038988534, - 0.023046168, 0.02209341, 0.012785296, 0.007191886, -0.01051775, - 0.024004463, -5.055256e-4, 0.034681868, -0.0023050576, -0.0018054403, - 0.016983662, 8.3647564e-4, -0.016750772, 1.682934e-4, -0.0014431932, - -0.0029610253, -0.0025338004, -0.016852835, 0.031887166, -0.042357378, - 0.014494075, 0.011206483, 0.004491115, -0.038570866, 0.0010153755, - 0.024949241, -0.004665126, -0.005434893, 0.020949557, 0.0034891819, - -0.01776796, 0.01715073, -0.0039402237, 0.00253573, 0.022186518, - -0.015110612, -0.0016587129, -0.0041275234, 3.7166395e-4, 0.015657693, - 0.0105645675, 0.013769858, -4.6892065e-4, 0.017182961, 0.041287575, - 0.0026077954, -0.007836643, 0.0189641, 0.0114635285, 0.043828603, - -0.011126819, -0.0039800056, 0.004022666, 0.0076210415, 0.013698672, - 0.0063084555, 0.007645879, 0.0073293364, 0.0023445757, -0.004764318, - -0.0010216444, -0.0032139884, -0.007443557, 0.014530926, -0.0039979145, - 0.02249671, 0.0147484485, 0.011260321, -0.032985788, 0.013068855, - -0.032168154, -0.020668525, -0.008223036, 0.00806991, -0.012295358, - -3.193407e-4, 0.0076648025, 0.0058158585, 0.005021566, 0.0027003493, - 0.009635589, 0.009504687, -0.0010703297, -0.0054789195, 0.02126203, - -0.0034270778, -0.021895662, -0.027023215, 0.0042328862, -0.006279222, - 0.00241109, -0.0013906333, -0.019137189, 0.010920387, 0.004438469, - 0.0053603733, 0.021540264, 0.0077167917, 0.03870311, 0.017151363, - 0.0069838976, 0.008043043, 2.2857981e-4, -0.014791296, 0.026010042, - -0.013151704, -4.8517995e-4, 0.010628423, -0.019154102, 0.027092636, - -0.021778233, -0.003208759, 0.018076163, -0.009789629, -0.012307049, - 0.012440598, -0.0068812678, -0.016501566, -0.0063449875, 0.011938047, - 0.014223117, 0.016429871, 0.0075010364, -0.010701614, -0.013196917, - 0.021846185, -0.0050531747, 0.0041768667, 0.0062403814, 0.010510615, - 0.0010755286, -0.0010982738, -0.006623889, -0.011545514, -0.021843312, - 0.018605288, 0.022295464, 0.024298348, -0.0059404117, 0.038278535, - -0.013627652, 0.01668952, -0.009633472, -0.014399125, -0.028721303, - 0.005867206, 0.009219332, 0.026121978, 0.018615158, 0.01743277, - 0.037086383, -0.0036005073, -0.0028377222, -0.008549454, -0.010515136, - 0.004338618, -0.016427347, -0.0071070036, -0.00964153, -0.018877551, - -0.009809148, 0.005763106, -0.021345494, -0.022628589, -0.00730307, - -0.0067766397, 0.006757601, 0.0050742975, 0.015542609, 0.0044198874, - -0.0068816775, -0.013016332, -0.0022244263, -0.01727332, 0.008998659, - -0.0076347706, -0.013379405, 0.004159469, -0.010012653, 0.026097009, - -0.017995428, -0.004435174, -3.3463995e-4, 0.0034108816, 0.023279494, - 0.0018340887, -0.023728646, 0.028582796, -0.0011234273, 0.030684926, - -0.021709498, 0.0081296535, 0.007742197, -0.0067106625, 0.0019692066, - 0.019293137, -0.014021323, 0.012576784, -0.011135971, 0.010761301, - 0.015229073, -4.3312387e-4, -0.00891608, -0.019465799, -0.027850443, - -0.029783266, -0.004739228, -0.031612802, 0.0013775101, 0.020055726, - -0.0014319384, 0.010753658, 0.0034426353, -0.005033079, -0.0032887303, - 0.0046355915, 0.016264271, -0.0048703654, -0.0049652634, 0.004907696, - 0.010423832, 0.0017480087, 0.010043925, -0.009247532, -0.010888882, - -0.017517637, 0.02088372, -6.696157e-5, 0.0012351424, -0.015107631, - -0.019740392, -0.022403948, 0.0081840325, 0.020915983, -0.0037293253, - -0.00571646, 0.0074563413, -0.019808592, -0.0234946, -0.015938684, - -0.02615217, -0.030823715, 0.019895103, -0.039079517, -0.021678267, - 0.0051843887, -0.019551387, -0.0094262455, 0.0014082646, -0.00571233, - 0.0018147862, -0.014696385, -0.0067992727, 0.011422464, 0.03033393, - 0.010188309, -0.034431078, 0.004511514, -0.01184919, 0.0028535863, - -0.013447026, -0.018082947, -0.006006971, 0.0063715023, -0.002809022, - 4.8905757e-4, 0.012208573, 0.0062276633, 0.0044353423, -0.026399678, - 0.016440954, 0.024633693, 0.0044405274, -0.023505682, 0.0046661575, - -0.0071932646, 0.017631486, -0.006692915, 0.005688349, 0.0071042464, - 0.002041276, 0.0068748984, -0.005080113, 0.007698941, 0.0033355851, - 0.0071192463, -0.019183388, -0.0013922709, 0.021636693, 0.009554781, - 0.01188285, 0.046749335, 0.003432744, 0.0013602851, -0.008977081, - 0.053457588, -0.0111868335, -0.007556351, 0.008834377, -0.011222186, - 0.0014212431, -0.015619284, 0.011308681, 0.02889223, 0.010438807, - -0.008609211, -0.013825606, -2.1663524e-4, 0.009366826, -0.019671183, - 0.014658265, -0.005730902, 0.015531378, 0.0111638345, -0.015208821, - -7.363084e-4, 0.049079742, 0.004404871, -0.016187273, 0.010002438, - -0.0313017, -0.0021206024, 0.03526441, 0.003381474, -0.030846672, - 0.015272095, 0.01752582, 0.021685857, -0.0069306428, -0.016249036, - 0.017576395, 0.010628394, -0.008776869, -0.0044365297, -0.0013451143, - 0.018725976, 0.014497345, 0.0045900363, -0.0067397743, 0.016834734, - -0.0010646426, 0.031724546, -0.013203666, -0.012874549, -0.010552776, - -0.01545022, -0.002703323, 0.0030286233, -0.0076868767, -0.0022404897, - -1.7330583e-4, 0.021308495, 0.003340257, 1.2619069e-4, 0.02650946, - -0.008212894, -0.025811402, -0.010045421, 0.0061371927, -9.559616e-5, - -0.009544493, -0.0033015735, 0.002516211, 0.008085133, 0.01295244, - 0.012111786, 0.018438017, -5.3768847e-5, 0.0061027138, -3.9664697e-4, - 0.0029056247, -0.00780045, 0.0033270852, 1.8040309e-4, 0.013191381, - 0.010877359, -0.019398343, 0.028844489, 0.040445816, -0.012818969, - -0.0046576792, -0.011349087, -3.2527934e-4, 0.0032150466, -0.020150946, - -0.0014275252, -0.031976603, 0.0013314954, -0.006085428, 0.022764275, - 0.015281431, 0.032557942, 0.016079465, -0.017483484, -1.1225865e-4, - 0.01807762, 0.023942139, 0.0062074657, 0.0061808866, 0.010443999, - 0.008056253, 0.001261646, -0.023106894, -0.0060873283, -0.008305777, - -0.01394507, 0.012087894, -0.0038041421, -0.015912082, -0.0057636467, - 7.896484e-4, -0.014832439, -0.010804115, 0.0044746175, -5.093559e-4, - -0.010281876, 0.02800611, 9.478595e-5, -0.0010677865, 0.007795759, - -0.008380021, -0.007415211, 5.6452415e-4, 0.0050732824, -0.023453463, - -0.011209138, -0.007534047, -0.01283666, 0.009747978, -0.002739326, - -0.007823649, -0.002825285, 0.010211592, 0.014190965, 0.019330326, - -0.0105965, -0.008338169, -0.0017305197, -0.0020326704, -0.007251726, - -6.433758e-4, -0.017644862, 0.0064751767, -0.014445261, 8.416052e-4, - 0.013750401, 0.008106525, 0.022097982, -4.1904458e-4, -0.0032734303, - 0.0023642431, -0.03649533, -0.008062824 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.03337889, -0.02417166, 0.03179297, -6.063782e-4, 0.020932438, - -0.07214799, -0.021797715, 0.07935417, 0.024468672, 0.0017373015, - -1.3575454e-4, -0.024638575, -0.021145014, 0.078297324, 0.011913873, - 0.0028008334, -0.005474554, -0.0286672, -0.010251761, 0.033782803, - 0.021818094, 0.030062905, 0.033331074, 0.045983423, -0.003633661, - -0.055536482, -0.004705875, 0.016893718, 0.065132804, -0.024306616, - 0.014473661, 0.009665795, -0.029450484, 1.7556765e-4, 0.032536983, - -0.013555222, -0.050473914, 0.052029703, -0.063790426, 0.023322554, - 0.03865674, 0.011510864, -0.023186984, -0.029513504, 4.971085e-4, - -0.01342867, -0.009381351, 0.031002587, -0.020182231, 0.026163822, - 0.00573934, 0.010455748, 0.0019969137, -0.02043539, 0.035118137, - 0.037039295, 0.032133717, -5.303252e-4, -0.008150974, -0.06210961, - 0.013858258, 0.03540254, -0.014453901, -3.4761443e-4, -0.018826997, - 0.044608325, -0.018667126, -0.04037366, -0.018326934, -7.674613e-4, - 0.0060737263, -0.025138391, 0.030800689, -0.02062908, 0.017194135, - 0.029884687, 0.012444404, 0.043904636, 0.058534075, 0.001969382, - 0.025602963, -0.00966869, -0.0089907115, 0.007859705, 0.008148684, - -0.044560663, 0.086272016, 0.029842246, -0.0010621212, -0.021435905, - 0.056943465, -0.051564805, -0.019993156, 0.013896123, -0.02713834, - 0.019577604, 0.011527, 0.07164688, -0.019261338, 0.015119114, - -0.008134969, -0.01697479, -0.049854375, -0.01139298, -0.023127781, - 0.06671449, 0.023568118, 0.005012924, -0.0043232995, 0.040199954, - -0.029932797, -0.008714524, -0.022702787, 0.028137472, 0.03482694, - 0.06980772, 0.009411417, -0.010416275, -0.0070156017, -0.026149485, - -0.028104318, -0.013893625, -0.03647521, -0.0011806057, -0.015382832, - -0.022198677, -0.026005177, 0.024290415, 0.019931626, -0.01770427, - -0.026607448, 0.0046674055, -0.025381068, -0.030773565, 0.02013239, - -0.040566836, 0.03716985, -0.03807792, 0.0052849003, -0.007928796, - 0.0039195484, 0.0010243381, 0.027292391, -0.0088394275, 0.013020379, - 0.02207239, -0.012700036, -0.01957539, -0.019653786, 0.0011169366, - -0.016258547, 0.03237869, 0.041985255, 0.036059607, -7.372338e-5, - 0.012612427, -0.028096024, 0.0016075519, 0.005260807, -0.015236864, - 0.0048630764, 0.0477949, 0.025190445, -0.005447482, -0.005516721, - -0.0013069513, -0.008449427, -0.016946463, 0.00838549, -0.005281788, - -0.07032337, 0.042386185, 0.0025628959, 0.015127007, -0.019834617, - 0.05358828, 0.028889453, -0.04960366, -0.002533932, 0.025837399, - 0.007728959, -0.011593609, 0.0077561904, 0.05316663, 0.002469059, - 0.006280114, 0.034158252, 0.016254121, -0.052271802, -0.018197225, - 0.040676255, -0.02137498, -0.01805485, 0.020588102, -0.020687278, - -0.07743044, 0.046429608, -0.03913488, -0.028483393, 0.01832872, - -0.0010343099, 0.034976587, 0.010302868, -0.03477043, 0.018708674, - 0.029802602, -0.006961308, 0.0274087, -0.030514168, -0.05148845, - -0.061640274, -0.005705785, 0.029471075, 0.0231018, 0.03179599, - -0.03869456, -0.009544251, -0.00671999, 0.0059590046, -0.0057695904, - 0.01603788, -0.038177874, 0.03597715, -0.0040571853, 0.05617717, - 0.02711153, -0.018091192, -0.015870454, 0.036809728, -0.064535476, - 0.023549337, 0.00987516, 0.004417568, -0.003475738, 0.07681457, - -0.0094883805, 0.041944813, 0.044015806, 0.01949733, 0.0158556, - -0.037940796, -0.010540573, -8.862585e-4, -0.022955514, 0.041882645, - 0.006813884, 0.046652496, -0.04200374, 0.051177718, -0.060673013, - 0.0112730805, -0.011850201, 0.020303886, 0.029383065, 0.009764174, - -0.009188906, 0.013069941, -0.0020754132, -0.015148762, 0.009221233, - -0.037515078, 0.058262452, 0.012232057, 0.02829079, -0.021151865, - -0.04937501, -0.045883335, 0.014094654, -0.024338769, -0.008633183, - -0.029682528, -0.01980776, -0.033702284, -0.021696832, -0.01301064, - 0.040207606, 0.0105389785, -0.003207508, 0.028233571, 0.031346813, - -0.051087398, 0.03052481, -0.051093977, -0.010288976, -0.04730224, - -0.009535901, -0.016903847, 0.03274896, -0.004990819, -0.019948011, - 0.023464808, -0.028843649, -0.053048167, -0.026269542, 0.00995845, - 0.0042407108, 0.035858847, 0.0332504, -0.01137001, -0.03353218, - -0.02919112, 0.017450012, -0.073144004, -0.0044170083, 0.02268522, - 0.0073710545, 0.012268157, 0.02149459, 0.009415606, 0.017262245, - -0.009079737, 0.020101886, -0.014983796, 0.0103261005, -0.025112279, - 0.0015737623, -0.05171382, 0.030350499, -0.0073831934, 0.062906906, - 0.005979088, 0.030854829, 0.030060846, -0.0039581317, 0.029763449, - 0.008244, 0.024888383, 0.030613543, -0.038318265, 0.004472774, - 0.0111361435, -0.018281508, -0.02401606, 0.008588293, 0.035224818, - -0.018211104, 0.0358045, -0.03936105, 0.0065899407, -0.06284392, - -0.025125535, -0.0056233536, 0.038371414, -0.046474434, -0.03062324, - -0.010619985, -0.016220419, 0.054703612, -0.033664335, -0.007993218, - -0.035840895, 9.635877e-4, 0.015097665, -0.00277189, 0.010753493, - 0.012827799, 0.03225079, -0.020057514, 0.070388086, -0.01884145, - -0.025861517, 0.016720507, 0.025930304, 0.017079629, -0.022241628, - -0.011852393, -0.0037954242, 0.011168603, 0.02428183, -0.010373085, - 0.016586134, 0.033939894, -0.004338104, 0.017887795, -0.009135449, - -0.03043296, 0.0188401, -0.013082291, -0.014253007, -0.041774046, - 0.005529117, -0.024997957, 0.0030369372, 0.039422076, 0.04291915, - 0.024639416, -0.02364972, 0.01917525, 0.016649615, -0.0032978181, - -0.03670038, 0.0023344504, 0.028133715, -0.037692197, 8.30123e-4, - -0.013568416, -0.021324897, 0.011395373, 0.007431082, -0.013815109, - 0.047358494, 0.07667206, 0.01658276, -0.045738194, 0.03895229, - 0.0048803147, 0.027721616, 0.027527923, 0.04426802, -0.028701136, - 0.046687413, 0.049615346, 0.0026116099, 0.022264307, 0.04193801, - -0.004012422, -0.03215919, 0.017080598, -0.023317507, 0.017079437, - -0.059002705, 0.0034542414, -0.036346592, -0.021474931, 0.02616197, - 0.020464707, 0.027123032, -0.009935587, 0.0073474515, 0.0050746007, - 0.013215089, -0.070189565, -0.017489243, -0.020669533, -0.032457106, - 0.02952114, 0.024494564, -0.0095689725, -0.0086148, -0.060685497, - 0.036294132, -0.013729143, -0.034840796, -0.046974394, -0.03887698, - 0.016068975, 0.08196795, -0.054526005, -0.06335369, 0.0057140607, - -0.002900056, 0.0068545807, -0.0163981, 0.010353133, 0.020971587, - 0.0119492505, 0.03192921, -0.077588566, 0.007814898, 0.020974996, - -0.010954922, 0.009946622, -0.02212529, 3.1716828e-4, -0.038135707, - 0.0055977423, 0.0089964755, -0.008751314, -0.012065973, 0.031604163, - 0.009136412, -0.06227578, 0.045479964, 0.0295162, -0.029811388, - 0.06715422, -0.012645965, 0.028898397, 0.028947767, -0.05870112, - 0.0215084, 0.025452211, -0.015376268, 0.010482616, 0.045895915, - -0.014005149, -0.0042819083, -0.01043971, 0.039015863, 0.02714623, - 0.0035952204, -0.012084857, -0.08217793, -0.014914523, 0.020254647, - 0.00335109, -0.036485896, 0.009206535, -0.020561783, -0.032707606, - -0.04715548, -0.010632515, 0.024404548, 0.03620801, 0.02602052, - -0.058455043, -0.018665235, 0.03778792, 0.0031145825, 0.018605899, - 0.0027953193, 0.03445371, -0.0030571553, 0.022028774, 0.0148218665, - 0.014160006, 0.022594403, 0.007354559, -0.007927519, -0.023435403, - 0.0067440984, 0.023342865, -0.046015862, 0.009043675, -0.020487223, - -0.017372793, 0.006960765, 0.008914898, 0.027485471, -0.03200482, - -0.02294913, -0.06046661, 9.378455e-4, 0.012811597, -0.04833468, - 0.02409518, 0.017563006, 0.0062770946, 0.016078066, 0.004268572, - -0.020560905, -0.027293373, -0.033949472, -0.015160622, -0.0139470985, - 0.004269864, 0.021475889, 0.08530618, 0.021194156, -0.028826652, - -0.0023711289, 0.016408684, 0.005598056, 0.025687726, 0.005045122, - -0.015458363, 0.08942681, -0.03770598, 0.032557286, -0.017633477, - 0.008403889, -9.57077e-5, 0.025322938, -0.001287855, -0.029540543, - -0.017182782, 0.04833206, -0.028860716, 0.016258243, 0.011719491, - -0.01547909, -0.012615122, -0.008047547, -0.076078326, -0.006039408, - 0.0048896614, 0.048548337, 0.0271745, -0.040478256, 0.062208198, - 0.0072083566, -0.012707089, -0.018713385, -0.023021173, 0.016757391, - -0.06603595, 0.07538057, -0.015860705, 0.06552643, -0.01927453, - -0.016896987, 0.008673282, 0.028512992, 0.009340781, -0.009434201, - 0.018435743, 9.812549e-5, -0.0049802777, 0.08820146, -0.05689521, - 0.01212336, 0.043438792, -0.03681971, -0.0014016043, -0.016022345, - -0.014627986, -0.01591361, -0.013278333, -0.0103711635, 0.056401275, - 0.012905023, -0.011969607, 0.05984086, 0.015567281, 0.0107593285, - -0.07053481, 0.022822, 0.047658257, -0.024804942, -0.00871671, - 0.019940006, 9.781992e-4, 0.050258093, 0.0612237, -0.04103412, - -0.014119484, -0.003000224, 0.0017444545, 0.015409021, 0.018649012, - -0.0012878053, 0.007462407, 0.007614518, -0.052126203, 0.040367015, - -0.024263663, -0.020198822, -0.006679511, 0.016149228, -0.023386259, - -0.07261889, 0.037092205, 0.009905148, 0.01543056, -0.01353832, - 0.027577743, -0.021480564, 0.0017384802, 0.005424545, -0.014834058, - 0.037214287, 0.013874572, 0.031701617, 0.012086504, 0.02327225, - -0.010930987, 0.005792558, -0.027647011, -0.063324325, -0.02923824, - 0.011327232, -0.00875973, -0.06890461, 0.043445513, -0.088818595, - 8.97908e-4, -0.011287525, -0.012232812, 0.043732576, -0.0183026, - 0.004864469, 0.025698151, -0.04696407, 0.073425144, 0.03690432, - 0.029966973, -0.043892182, 0.0063098343, -0.020266982, -0.024113813, - 0.030264515, 0.030274121, -0.063223384, -0.080633715, 0.016123367, - -0.034752656, 0.0019356953, 0.02769201, -0.009632422, 0.0019490243, - -0.026041998, 0.052090857, 0.033714518, -0.030853184, 0.030503282, - 0.04113077, -0.010487569, -0.012151055, -0.0053855386, 0.004533821, - -0.0059365076, -0.010583077, 0.051043317, 0.032011315, -0.009737512, - -0.00886102, 0.07252979, -0.0081905, 0.04368777, 0.014477826, - -0.014390829, 0.0045973137, 0.035537038, -0.014638887, 0.020706788, - -0.0033816288, 0.021857772, 0.031667084, -0.011654058, 0.012433689, - -0.013784054, -0.014382474, 0.02895663, -0.0010179109, 0.022436285, - 0.003285458, -0.04897153, -0.0051077944, -0.038126618, 0.07542843, - 0.010180815, 0.038622584, 0.0038370057, 7.3914113e-4, -0.02566781, - 0.0045871986, -0.016241085, 0.011561351, 0.01564758, -0.026500147, - -0.012358159, -0.0069537973, 0.006346995, 1.1229129e-4, 0.04869075, - -0.012058377, 0.055622455, -0.03612319, 0.019474197, 0.0030472162, - -0.03624983, -0.025347153, -0.040858872, -0.012862174, -0.02109541, - -0.0066697523, -0.021332458, -0.02406826, -0.04875005, 0.039929003, - -0.015059607, 0.024244038, 0.027942846, 0.0089342315, 0.01094309, - 0.020720875, 0.048990097, 0.038269166, -8.9827937e-4, -0.061656162, - 0.018822633, 0.017010054, -0.053005215, 0.012533296, 0.0059195664, - 0.0049373126, -0.035996135, 0.002555194, 0.023625098, 0.0066160164, - -0.05939911, -0.025183527, -0.0065623107, -0.006984493, 0.0384441, - 0.091262914, 0.058261074, 0.028464068, 0.03589212, -0.009483007, - 0.014721258, 0.034268904, 0.0056602145, -0.066263035, 0.02797796, - -0.037033387, 0.015496377, -0.062588744, 0.0068803965, 0.00833404, - 0.013104274, -0.02894503, 0.050674453, -0.015062448, 0.03635752, - 0.03777082, 0.0072667697, 0.016385678, 0.021392653, 0.04466302, - -0.019474426, -0.019794151, -0.048678424, 0.016746834, 0.013555985, - -0.009309189, 0.03520974, 0.055760436, -0.0821174, 0.012122246, - -0.024573741, 7.163868e-4, -0.016185129, -0.03839547, -0.0023168274, - 0.023613222, -0.066424385, 0.021991136, -0.02337397, 0.0034259637, - -0.049056504, -0.011749931, -0.04024113, -0.048737705, 0.0020199737, - 0.030294796, -0.016814923, 0.07043656, 0.04822665, 0.032514453, - 1.8545859e-4, -0.02118946, 0.07549711, 0.00388226, 0.07609763, - -0.06259885, 0.01026886, 0.034056332, -0.030481413, 0.049219348, - 0.011433518, -0.02883689, 0.010162889, -0.024903819, 0.0060740416, - -0.025022173, 0.04507946, -0.0037735172, 0.008510686, 0.0040741763, - 0.008515035, -0.0039022802, -0.027216317, -0.01375909, 0.022672439, - -0.028854854, 0.008275549, -0.013533036, -0.0100668855, -0.025057178, - 0.008478086, 0.016420353, 0.05050771, 0.007126825, -0.024124235, - -0.026138818, -0.04146938, 0.09361093, -0.012226873, -0.01114562, - -0.0142747015, 0.021003397, 0.0019150133, -0.022054251, 0.019298937, - 0.03780636, -0.024730464, 0.04879429, 0.027186373, -0.061459668, - 0.01375286, 0.064205185, -9.92968e-4, 0.02424841, -0.027389312, - -0.02349188, -0.014030124, 0.029651772, 0.016143553, -0.013353283, - 0.008066556, -0.003955324, -0.037266914, 0.01077072, 0.04367862, - 0.045517445, 0.037009746, -0.018329421, -0.04666578, 0.016153172, - 0.114679, 0.0032907478, 0.052079752, 0.06084316, 0.0076578655, - 4.7310308e-4, 0.04603294, -0.021403724, -0.059731558, -0.03355777, - -0.013751749, -0.03455756, -0.0394009, 0.020954903, -0.0031145976, - 0.036426842, -8.717487e-4, 0.0012220527, 0.018586036, -0.021561805, - 0.03028269, 0.045621265, 0.008358313, 0.028512852, -0.01734365, - -0.0348005, -0.009231491, 0.012426009, -0.008032479, -0.017461948, - -0.020342315, 0.040932663, 0.026129218, 0.037219767, 0.016316371, - 0.034631293, -0.0016850661, 0.016612338, -0.01710858, -0.04692183, - -0.017884409, 0.0122959735, -0.028665937, -0.01189998, 0.06764133, - -0.013706285, -0.014248813, 0.023981448, 0.026041843, 0.0019042596, - -0.025821796, -0.0089490665, -0.010434336, 0.007213262, -0.020209668, - -0.006660475, 0.010010297, 0.042681184, -0.014296137, 0.03973398, - -0.006617226, 0.0027284285, 0.008170793, 0.035655435, 0.04787974, - -0.091012634, 0.07118496, -0.039287277, 0.007341981, 0.02547092, - 0.030896226, 0.034795314, -0.052946568, 0.02050184, -0.0034473282, - 0.013298782, 0.027829675, 0.041174296, 0.010767391, 0.0018700362, - 0.045710035, 0.008606039, 0.012845105, 0.054812998, 0.03653362, - 0.027699549, 0.028570224, -0.056986272, 0.04924719, -0.012585384, - -0.010516305, 0.021712715, 0.004937804, -0.002623601, -0.008543936, - 0.042695064, 0.0045376364, 0.016673008, -0.011895949, 0.022010008, - -0.055744927, -0.012094947, -0.010800318, -0.033531018, -0.048411734, - -0.022875495, 0.004868814, -0.0180871, -0.039803945, -0.032957967, - 0.0039148624, 0.019954728, 0.06420916, 0.013271295 + "source.genres.label" : [ + "Emu entrepreneurship", + "Falcon finances" + ], + "source.genres.concepts.id" : [ + "g00dcafe", + "baadf00d" + ], + "source.genres.concepts.sourceIdentifier" : [ + "G6PXCJ2IuI", + "OezVopin48" + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.023446029, + 0.028897293, + -0.0023543043, + 0.012804855, + -0.0031017568, + -0.033672437, + 0.0020658032, + 0.009064829, + 0.014577968, + -0.009818862, + 0.0016572021, + -0.0054221055, + -0.0066596675, + 0.007250915, + -0.010969418, + -0.0072838906, + -0.028558342, + -0.0062647015, + -0.016364358, + 0.019396828, + -0.0038883006, + 0.013787583, + 0.008882962, + 0.015230028, + 0.00879846, + -0.01697595, + -0.025307788, + 0.015739795, + 0.01746733, + 0.0073234052, + 0.02053504, + -0.01593089, + -0.0077036433, + 0.021441339, + 0.021391494, + -0.028659068, + -0.0071591116, + -0.007850478, + 0.0018158709, + 0.003681101, + -0.0010050139, + 0.01642111, + 0.026062338, + 0.0010010708, + -0.022868, + 0.014037931, + -0.0072574154, + 0.008804836, + -0.029292159, + -0.0097493455, + 0.006036169, + 0.0045573222, + -0.012946808, + 0.0026030827, + 0.002022147, + -0.018169418, + 0.013874962, + -0.0070745046, + 0.012823441, + -0.012224493, + 0.002757321, + 0.011956835, + 0.018147105, + 0.0030998331, + -0.0034679119, + 0.005328128, + -0.011026922, + 0.0121723795, + 0.0044881357, + -0.0024464198, + 0.018137254, + 0.03385673, + 0.012644135, + -0.026609989, + -0.013057211, + 0.01937237, + -0.02887953, + 0.0012152622, + 0.031706233, + 8.257026E-4, + -0.009199321, + -0.020664772, + -0.0075528948, + -0.0015791067, + -0.006983189, + -0.0013817179, + -0.030255165, + 9.375362E-4, + -0.0017681267, + 0.0030764095, + 0.0072876154, + 0.007932295, + -0.017658528, + 0.0052714283, + 0.004699797, + 0.01116921, + -0.011806724, + 0.0054328702, + -0.009611265, + 0.005830997, + -0.06477366, + -0.011991947, + 0.006028892, + -0.006237905, + 0.032590885, + 0.0059571653, + -5.108404E-4, + -0.00828083, + -0.021495325, + 0.0053945133, + 0.0044944403, + -0.0029018752, + 0.006391402, + -0.016197084, + 0.020565383, + -0.015428674, + 0.0062380205, + 0.008145344, + -0.015752736, + -0.0050285854, + 0.01806522, + -0.0073868614, + -0.0094057415, + 0.0061150263, + -0.0037492262, + 0.0024155017, + 0.015343707, + -0.012875437, + 6.2834943E-6, + 0.006671181, + -0.016097054, + 8.957462E-5, + 0.005786579, + 0.0023018704, + 0.0032251733, + -0.02486635, + 0.008336185, + 0.00633618, + 0.024774889, + -0.0021719746, + -0.01676572, + -0.003188129, + -0.012606585, + 0.00936299, + 0.004963075, + -0.013577002, + -0.0030000352, + -0.026127962, + 0.0051002353, + -9.906138E-4, + -0.009491165, + 0.01449466, + 0.017084816, + 0.019084651, + -0.026082851, + 0.0016795981, + 0.035037745, + 2.567353E-4, + -0.0124542555, + -0.00489071, + -0.0014387764, + -0.029354986, + -0.023331668, + -0.008963757, + -0.0013846998, + -0.027511032, + 0.042941175, + 0.0032315266, + -7.7000255E-4, + 7.439493E-4, + -0.008684369, + -0.0118491035, + 0.035612658, + 0.00127573, + 0.024613805, + 0.011717562, + -0.038264476, + 0.007012845, + 0.0023466994, + -0.014228587, + -0.014510111, + 0.0050835335, + -0.024700122, + 0.010384701, + -0.015187516, + 0.019296793, + 0.0048344424, + 0.018811652, + 0.021853687, + 0.010418984, + -0.03217581, + 0.010360283, + -0.005252554, + -0.026072377, + 0.012020902, + -0.008972758, + 0.0011221437, + 0.007879898, + -0.010086144, + 0.012229589, + 0.008936239, + 0.0066152974, + 0.008866357, + 0.014964232, + 0.010765793, + -0.004999163, + -0.0013583781, + 0.0068339203, + -0.034238346, + 0.008307857, + 0.0063689267, + 0.0268377, + 0.010302561, + -0.009322255, + -0.007566026, + 0.021133069, + 0.018221859, + -0.009395347, + -0.006478421, + 0.0039502517, + -0.00906561, + -0.008690964, + -0.0064003794, + 6.6667894E-4, + -0.024627384, + 0.011374406, + -8.540336E-4, + -0.0016701545, + -0.0076228916, + 0.0013439519, + 0.005075174, + -0.0172362, + 0.0061894637, + -0.008930286, + -0.0023857956, + -0.0210504, + 0.005038475, + 0.01546243, + 0.0052365125, + -0.012170428, + 0.005019418, + -0.017309284, + -0.025012579, + -0.0031289735, + -0.013950072, + 0.012453101, + -0.008208812, + -0.0051359916, + 0.011616535, + 0.0103873545, + 0.008639484, + -0.019824326, + 0.012589315, + -0.032276064, + -0.004895925, + 0.02947366, + -0.011434631, + -0.025835527, + -0.0049783397, + -0.030688597, + -0.0021474303, + 0.006850073, + 0.014905871, + 0.022591406, + -0.0026905215, + -0.011404756, + -0.0012932543, + 0.014505186, + -0.0175762, + -0.019735321, + -0.026072955, + 0.014412146, + 0.0027362765, + -0.004148118, + 0.01256103, + -0.01594726, + 6.710015E-5, + -0.021886818, + 0.015564104, + -0.0058848234, + -0.028268155, + 0.0041401824, + 0.0057456624, + 8.566635E-4, + -0.0020188512, + 0.0012862742, + 0.034613382, + -0.030049495, + 0.007641722, + 0.0015311034, + -0.041342597, + 0.011580341, + -0.005558286, + -0.0035112104, + -0.005555998, + -0.03278767, + -0.0026807368, + -0.021405932, + -0.014330897, + -0.0061852382, + 0.005108811, + -0.019819733, + -0.0011424993, + 7.9850043E-4, + -0.0011046526, + 0.002566196, + 5.7428406E-5, + 0.011441619, + 0.012842684, + -0.004696819, + 0.006279558, + 0.019279553, + 0.013604755, + 0.0012595166, + 0.014972243, + -0.0065332623, + -0.0026118632, + -0.009024462, + -0.013791758, + -0.006623081, + 0.022671003, + -0.004473593, + 0.012723871, + 0.0110079255, + -0.0029546234, + -0.011557792, + -0.011569614, + 0.009015768, + -0.007903819, + 0.0022204216, + -0.0051264362, + -0.0012345687, + -0.0035082109, + 0.022255886, + 0.019197423, + -0.004499718, + 0.009309455, + -0.01254926, + 0.022560488, + -0.0016129395, + -0.018258272, + 0.0038478365, + 0.011444632, + -0.006594279, + -0.013609901, + 0.013233601, + 0.0011210628, + -0.00851742, + -0.016729012, + -0.030552227, + -0.03210466, + 0.017796027, + 0.0077790893, + 0.013472252, + -0.03356676, + -0.0049210726, + -0.0262823, + -0.019535163, + -0.007871462, + 0.009779847, + -0.017848127, + 0.012902675, + -0.012150648, + -0.044811867, + 0.0214255, + 0.0015449409, + -0.0010639636, + -0.004166964, + 0.0015876077, + 5.9981033E-4, + 0.01568302, + 0.0032715786, + 4.5719396E-4, + 0.009633391, + 5.5747613E-4, + -0.0017589941, + -0.01564169, + -0.0044370065, + -0.03897646, + 0.04674768, + -0.022605537, + 2.0377163E-4, + 0.0052719465, + 0.007627874, + 0.0023274105, + -0.0045497967, + -0.015663588, + 0.0011714029, + 0.004677831, + 0.013165372, + 0.0103177065, + 0.0034775285, + -0.028710231, + 0.03328721, + -0.0096974345, + 0.025412688, + 0.03196174, + -0.035993125, + 0.016367428, + -0.00870851, + -0.013080171, + -0.005813771, + 0.005057551, + 0.030836059, + 0.008090628, + -0.032166008, + 0.011478811, + 0.008228758, + -0.015752923, + -0.0362085, + 0.0102406535, + 0.00293615, + 0.009186749, + 0.012383841, + -0.0010185003, + 0.0034188286, + -0.0026097558, + -0.009085358, + -0.0029120108, + -0.01894406, + -0.010337499, + 0.006752601, + -0.020746067, + 0.022993179, + 0.007829167, + 0.0018905303, + -0.016330428, + -0.0024783239, + -0.004276104, + -0.010965147, + -0.0038981917, + 0.01986455, + -0.0018026732, + 1.7391409E-4, + 0.035064444, + 0.004014292, + -0.03322142, + -0.006586686, + -0.011215814, + 4.868192E-4, + -0.008741774, + -0.0056419545, + -0.007178457, + 8.793474E-4, + -0.022606866, + 0.015772384, + 0.006242358, + 0.019379416, + -0.00980192, + 0.0075482526, + 0.02113072, + 5.3256157E-5, + -0.004161403, + 0.0057562776, + -0.018979969, + 0.011668555, + 0.0057058115, + -0.0213931, + -0.0010198666, + -0.013924057, + 0.013674382, + 0.0065350197, + -2.8144172E-4, + 0.005299151, + 0.021473005, + -0.0026536619, + -0.0015427183, + -0.025096139, + 1.5015458E-4, + 0.0034031435, + -0.010961288, + 0.010404683, + -0.0019615022, + 0.022953311, + 0.0017490636, + 0.030692838, + 0.02040143, + -0.017122397, + -0.0059892694, + -0.035289615, + 9.4763737E-4, + -0.026338197, + -0.007895003, + -0.004417541, + -0.008964718, + -0.011526275, + -0.015605466, + 0.008014456, + -0.02532396, + -0.021401342, + 0.019470451, + -0.0060149473, + -0.036401045, + -0.007720883, + -0.0015029316, + -0.02058412, + -0.015035829, + -0.0025040838, + 0.0029843473, + -0.019491987, + 0.0065545733, + 0.017310604, + 0.011869768, + -0.026448298, + -0.0013270812, + -5.9403654E-4, + 0.014251902, + -0.034579802, + 0.003125846, + -0.006929708, + -0.013479232, + 0.0074088424, + -0.010433862, + -0.0040749907, + -0.011472221, + -0.0155603755, + -0.013916458, + 0.002125392, + 0.012397119, + 0.011991882, + 3.1499384E-4, + -6.5528153E-4, + -0.014693755, + -0.027387958, + 0.001133967, + -0.005677843, + 0.0048618163, + -0.00809392, + -0.016468698, + -0.026041495, + 0.0013813366, + -7.9033617E-4, + -0.026750414, + 0.01808424, + 0.015369959, + 0.0036692626, + 3.61368E-4, + 0.0023867143, + -0.0077655744, + 0.003560011, + -0.011390456, + 0.0051534264, + 0.0027171082, + 0.009789526, + 0.028477155, + -0.020448294, + -0.0040599634, + 0.00581361, + -0.027791385, + 0.014136334, + 0.02824109, + 4.1660535E-4, + -0.010874843, + -0.006055201, + -0.012949766, + -0.010913372, + 0.0079869665, + -0.016900491, + -0.0035089736, + -0.006275653, + 0.006339151, + 0.013344266, + 0.014269305, + 0.004440483, + 0.017443422, + 0.005362953, + -0.020052135, + 0.012061159, + 0.010285392, + 0.0027329861, + 0.011107564, + -0.017368201, + 0.001885418, + 0.012587643, + 0.0016978382, + 0.00422981, + -0.008323781, + -0.005598518, + 0.014225247, + 0.0043877293, + 0.011036425, + 0.008263442, + -0.013395433, + -0.020299809, + 0.027575636, + 0.009592305, + -0.016023828, + 0.007619135, + 0.0135384975, + 0.008598854, + -0.0061103967, + 0.0059292577, + -0.0045685987, + -0.020923646, + -0.02932427, + 0.009039808, + -0.0014348872, + -0.01789928, + 0.009562849, + 1.9989161E-4, + -0.023447964, + -0.018128123, + -3.9384034E-4, + 0.028770009, + 0.010870203, + -0.011820285, + -0.0012963667, + -0.00377965, + -0.02852284, + 0.0018655353, + -3.509504E-4, + 0.0014265281, + 0.0056867576, + 0.0058638905, + -0.014945326, + 1.16148156E-4, + 0.013340978, + 0.0045435852, + 0.008662587, + 0.006107349, + 0.019355679, + 0.0054537216, + -1.6380032E-4, + -0.0044750464, + 0.0037849844, + 5.8936595E-4, + -0.02368217, + 0.016049953, + -0.03564488, + 0.0077737398, + -0.0065758284, + -0.0065069, + 0.0048844335, + -0.022529755, + 0.017284285, + -0.035304762, + 0.0046635945, + -0.033927556, + -0.018329604, + 0.010815074, + 0.011184653, + 0.012714133, + -0.031556696, + -0.010318229, + -0.025563218, + 0.0024136538, + 0.008649489, + -0.0059896675, + 0.011982292, + 0.010699645, + 0.006615155, + -0.009310743, + 0.012890465, + -0.0019983498, + 0.0052786744, + 0.01879542, + 0.00396214, + 0.0035225556, + 8.248954E-4, + 0.02008588, + -0.0023591248, + -0.0025948288, + -0.026391383, + -0.009043221, + -0.030230498, + 0.009334466, + -0.014126325, + 0.0018502267, + -0.004159588, + 0.014621958, + 0.008485213, + -0.0017791778, + 0.00504987, + -0.016243108, + 0.019024376, + 0.010134307, + 0.03150837, + 3.0459856E-4, + 0.0055983574, + 0.006087229, + -0.0141541185, + 0.0012474619, + 0.0027281658, + -0.014429625, + 0.008907119, + -0.019004518, + -0.0075976853, + 0.043507926, + 0.009007317, + -0.0035717846, + -0.01167287, + -0.0063051763, + -0.017960992, + -0.0153252175, + 0.00928135, + -4.050382E-4, + -0.021718295, + -0.0049192267, + 0.004417293, + 0.022528883, + -0.02658249, + -0.035621, + 2.5762056E-4, + 0.0065060584, + -0.014420412, + -0.0045933267, + -0.00107292, + 0.018978272, + 0.0034593716, + 0.0068597496, + -0.026258217, + 0.011680942, + 0.02202484, + -0.03467877, + -0.022775436, + -0.030233763, + 0.016020084, + 0.007703753, + -0.031542208, + -0.033668883, + -0.0040356587, + 0.0019735303, + 0.00639019, + 0.0072816587, + -0.01877994, + 0.029310388, + 0.015548187, + 0.006240664, + -0.0061655547, + 0.0141429715, + 0.011930769, + -0.009494093, + 0.022949243, + -0.03173819, + 0.014974297, + -0.0046427906, + 0.033090685, + -0.0156743, + 0.025691973, + -0.014393354, + 0.006560288, + -0.00924512, + -0.032552, + -1.602471E-5, + 0.010163615, + 0.010485164, + 0.017146418, + -0.0060671605, + 0.0040471684, + 0.0076018823, + -0.015591468, + 0.0030959246, + -0.024174774, + -0.004689977, + -0.013243731, + -0.0065010325, + 0.0021331848, + -0.025170287, + 0.0018072719, + -0.012208259, + 0.0065118065, + -0.005523931, + 0.010391618, + 0.019621683, + 0.010302009, + -0.00443674, + -0.005418268, + 0.0040828097, + -0.026208434, + 7.818429E-4, + -0.011492888, + 0.0070251403, + 0.003199696, + -0.004075338, + 0.011734325, + 0.028843515, + -6.341892E-4, + -0.023585312, + 0.008486344, + 0.005468248, + 0.023680383, + 0.019110784, + -0.009930772, + 0.0077255233, + -0.03222753, + 0.018833367, + 0.008988771, + -0.009955646, + 0.012179733, + 0.012858041, + 0.0013754528, + -0.0164144, + -0.0038872252, + -0.00256061, + 0.0013181707, + 0.009445592, + -0.022118296, + -0.028107662, + -0.009052515, + -0.01357572, + -0.016877025, + -0.0052719004, + -0.01848211, + -0.018306457, + 0.0063923383, + -0.013672926, + -0.027795669, + 0.00599857, + -0.029519968, + -0.012833908, + -0.002183485, + -0.0064469026, + -0.033368077, + -0.016638264, + -0.02691534, + 0.006761351, + -0.025409956, + -0.002609646, + -0.0046478193, + -0.0014443877, + 0.0014122105, + 0.016175015, + -0.0066054626, + -0.05129317, + 0.002169595, + -0.024042355, + -0.0077609327, + -0.0036936733, + -0.009228288, + 0.0071077575, + -0.034088492, + 0.017879436, + 0.007864978, + -0.0074379663, + -0.016703326, + -0.008982741, + 0.0038931724, + 0.021302715, + 0.0040144175, + -0.002550937, + -0.012715753, + 0.019006317, + 0.006491263, + -0.015202928, + 0.015542952, + -0.015629923, + -0.018302342, + -0.0069110407, + 0.003283658, + 0.011831872, + 0.038723163, + 0.0030495138, + 0.0028201386, + -0.032927405, + -0.009368774, + -0.003930777, + 0.021970553, + -0.023752334, + 0.01116764, + -0.021172754, + 0.022533743, + -0.010553989, + 0.0030801857, + -0.03456964, + 0.011197442, + -0.0030915134, + 0.004418922, + -0.02255075, + 0.024219843, + 0.008944627, + -0.021446811, + -0.010358669, + -0.01672571, + 0.009832805, + -0.016895618, + 0.006131273, + -0.0064047067, + 0.0071443217, + -0.0056467005, + 0.002805622, + 0.0036785835, + 0.010366434, + -0.016539369, + 0.017948441, + 0.020153284, + -0.026772602, + -0.011604904, + 0.009768635, + -0.016018877, + 0.029337104, + 0.012969733, + 0.0073036435, + -0.0050769383, + -0.019754257, + -0.022965007, + -0.031188829, + 0.010870666, + 0.030579502, + 0.0026425798, + 0.007970507, + 0.015645687, + 0.010373756, + -0.008392713, + 0.012977124, + -0.004620286, + -0.011998068, + -0.032717805, + 0.033991437, + 0.033348516, + -0.0010275003, + -0.0012265467, + 0.0014110543, + -0.0045906496, + -0.00752829, + 0.0069486923, + 0.001646697, + 0.015266274, + -0.016845388, + 0.012416808, + 0.012604925, + 0.021780554, + -0.010101222, + -0.020228066, + 0.02225615, + -0.010064375, + 0.024491346, + -0.010747746, + 0.002075462, + 0.007218313, + -6.525163E-4, + -0.03911011, + 0.00817249, + 0.030513635, + 0.0063144662, + -0.017865572, + 0.033541113, + 0.02018685, + 0.016105443, + 0.011680225, + -0.024494916, + 8.2792854E-4, + -1.01624486E-4, + -0.014032022, + -0.036516424, + -0.008563722, + 0.01014415, + 0.020407487, + -0.018505871, + 0.0042114453, + 3.3708182E-4, + -0.006671255, + 0.0178552, + 0.00510887, + 0.01846172, + -0.012884395, + -0.01454221, + 0.005750652, + 0.0056961398, + 0.011728022, + 0.018798886, + -0.00990746, + -1.0325048E-4, + 0.00406697, + 0.007764496, + -0.0090989955, + -0.0077081514, + 0.00884245, + 0.0052004, + 0.0184679, + 0.03432809, + 0.014248912, + -0.017792696, + 0.0038649142, + -0.0069805468, + 0.0042190203, + -0.014644614, + 0.010376407, + 0.041334912, + 8.011804E-4, + 0.0027024623, + -0.01477793, + 0.0053482335, + -0.016136348, + -0.018523455, + 0.03551784, + 0.017865751, + -0.0022252398, + -0.011553393, + 0.0074531003, + 0.016646445, + 0.025293417, + -0.0011934403, + 0.019769913, + -0.016979715, + 0.020035274, + -0.006915614, + -0.0079004, + 0.007440865, + -0.01149261, + -0.010763295, + 0.015008397, + 0.017259592, + 0.007821418, + -0.022547571, + -0.003416052, + 0.007049379, + 0.018413534, + 0.014037349, + 0.031158308, + -0.011088959, + -0.032660306, + -0.0232942, + -0.0013433321, + -0.006380601, + -0.011396409, + -0.018155867, + -0.011768322, + 0.007198506, + 0.017927457, + 0.016767396, + -0.007843609, + -0.02360888, + -0.020500125, + -0.005501711, + 0.015282052, + 0.029881667, + -0.0038353999, + 0.0034783932, + 0.023227677, + 0.0019483836, + -0.02071968, + 0.009195143, + 0.0023925921, + -0.002255119, + -0.014261292, + 8.825884E-4, + 0.02395353, + -0.011486118, + -0.005189692, + 0.006812708, + 0.006786404, + -0.019018598, + -0.002121639, + 0.011487741, + -1.69836E-4, + 0.02795975, + 0.018838402, + 0.005007505, + -0.0074587273, + 0.0037665793, + -0.0032260758, + 0.005884975, + 0.0045502633, + 0.004971972, + -0.01180316, + -0.008939629, + 0.030561352, + -0.0015162294, + -0.016960569, + 0.014917523, + -0.009770493, + 0.0016676612, + 0.010469863, + 0.0075197024, + 0.0074892747, + 0.008154113, + 0.001992022, + -0.01589362, + 0.011838797, + -0.023816414, + 0.017380944, + -0.008302658, + -0.023684086, + -0.025046611, + -0.0315416, + 0.01992221, + 0.027912222, + -0.011767135, + -0.018192608, + 0.016997427, + 2.3123535E-5, + 0.011630673, + 0.007331629, + -0.008545654, + -0.016730547, + -0.0016826651, + 0.0058516148, + -0.009128141, + -0.022662418, + -0.029717796, + 0.013562622, + -0.005760763, + -0.014746742, + -0.020299302, + 0.018020155, + -0.004435269, + -0.0037445873, + 0.006498617, + -0.020135295, + 0.0052390858, + 0.027297247, + -0.0065872483, + -0.012125642, + 0.011208437, + 0.010135713, + -2.9381175E-4, + 0.018351013, + 0.022846492, + -0.008523247, + 0.01883066, + 8.8426913E-4, + 0.0058126654, + -0.0047476585, + 0.011545649, + 0.011151358, + 0.008092409, + 0.014813313, + 0.002182436, + -0.016274503, + -0.0178898, + -0.0076396754, + 0.0025387064, + -0.02649887, + 0.019727018, + 0.0036835982, + -0.020027632, + -0.0022004144, + 0.0047652735, + -0.015354781, + 0.03263265, + 0.017981846, + -0.0034377319, + 0.008261101, + -0.0018496879, + -0.0073555843, + 0.021927055, + 0.015377401, + -1.6847742E-4, + -0.020089293, + 0.0077348235, + -0.01974395, + -0.022066582, + -0.027276717, + -0.01953492, + -0.004345507, + 0.0031896255, + -0.011288056, + 3.7241398E-4, + 0.0010842141, + -0.02145642, + 0.011638004, + -0.030751105, + 0.013085351, + -7.72046E-4, + -0.0080769425, + 0.014378523, + -0.025107274, + -0.021085175, + 0.0025047336, + 0.0074995877, + -0.014398288, + 0.0041086692, + -0.010591498, + -0.0053571854, + 0.020306483, + 0.0050321184, + 0.0190185, + 0.019061027, + 0.0141122155, + 0.012900611, + 0.0013482866, + -0.0010553298, + -0.0074794735, + -0.0018687502, + -0.047055095, + 0.010008892, + -0.00228926, + 0.01611415, + -0.016996806, + 0.0014048021, + 0.024067793, + 3.5838802E-5, + 0.02288269, + 0.009067579, + -0.0019142576, + -0.036732357, + 0.016233068, + 0.003325364, + 0.0015058339, + 0.005379162, + -0.015688695, + -0.0047101146, + 0.029671734, + -0.023386048, + 0.010518098, + 0.024284916, + 0.021653539, + -0.0058459193, + 0.019547649, + -0.01317451, + 0.025090495, + -0.020096323, + -0.02072656, + -0.007386215, + -0.012738868, + -0.004766013, + 0.010393527, + -0.009889567, + 0.009534126, + -0.010672312, + -0.0022693009, + -0.02736596, + 0.029648887, + 0.013461166, + 0.0019036197, + 0.009219567, + -0.010699127, + 0.014987831, + -0.0015728116, + 0.005863698, + 0.010587863, + 0.014617783, + -1.7724505E-4, + -0.00706067, + 0.0063897152, + 0.007896738, + -0.006783031, + -0.005959124, + 0.0063579613, + -0.011026038, + 1.462576E-4, + -0.001499097, + -8.607745E-4, + -0.0027364602, + 0.006918128, + 0.016502852, + 0.011063363, + 0.005049728, + -0.002500829, + 5.2071956E-4, + -0.002737418, + -0.008575445, + -0.0059102075, + -0.006337751, + -0.013228254, + -0.018489217, + 0.027287709, + 0.01509914, + -0.017320506, + -0.0109637845, + -0.010777718, + 0.0015970118, + -0.021149825, + 0.03262795, + 0.0019426952, + -5.532867E-4, + -0.016680608, + -0.0126714, + 0.0104332995, + -0.008945755, + -0.008221069, + -0.028529571, + -0.014239706, + -0.016192377, + 0.02108653, + 0.032255784, + 0.0069913976, + 0.008543352, + 0.01262476, + -0.015616471, + 0.014463576, + -0.01259006, + -0.027830299, + -0.03501963, + 0.008255837, + 0.0034534365, + -0.0037965155, + -0.021534303, + 0.0049605644, + -0.020461213, + 0.026190707, + -9.018863E-4, + -0.010343496, + 0.0014843597, + 0.012712454, + 0.0011016619, + 0.0060371216, + -0.0028175528, + 0.00948064, + -0.0025260274, + 0.0023488768, + 0.015114447, + -0.02008814, + 2.9698567E-4, + 0.020917062, + -8.3309534E-4, + 0.003196002, + -9.141301E-5, + 0.010490714, + -0.00971011, + 0.041535698, + 0.0019833934, + -0.011460998, + 0.017692016, + 0.016301433, + 0.003263415, + -0.0043648756, + -0.019225432, + 0.023614286, + 0.007116345, + -0.015211865, + -0.0044819266, + -0.0068161273, + 9.989E-4, + 0.02282909, + 0.0031036586, + -0.015084368, + 0.0042203325, + 0.0010472632, + 0.011973424, + 0.018542606, + 0.018175846, + 0.00563916, + -0.010966136, + -0.0042128763, + -0.015205868, + -0.016003551, + -0.018298151, + 0.02107551, + -0.009582556, + 0.0079929605, + 0.005532808, + -0.016872244, + 0.014047843, + 0.005129449, + 0.009943785, + -0.015792446, + -0.015055191, + 0.0034612308, + -0.010053835, + -0.0023320056, + 0.023125807, + -0.0010090943, + 0.010509241, + -0.0024605612, + -0.0023463406, + 8.400966E-4, + 0.008694046, + 0.0053863497, + 0.014478148, + 0.012179495, + -0.014890221, + -0.02957185, + 0.0016667971, + 0.007562659, + -0.01312261, + 0.011549682, + 0.005762814, + 0.034977186, + -0.01579266, + 0.008161915, + -0.0039071613, + 0.019743953, + 0.020387562, + -0.0053580184, + 0.012016262, + 0.008850506, + 0.008283624, + 0.0042003067, + -0.020044485, + -0.014488143, + -0.030717805, + -0.011110033, + 0.005120939, + 0.014468829, + -0.0061176573, + 0.001150782, + -0.0016802438, + -0.0017969464, + 0.017122889, + 0.017989978, + -0.0069438703, + 0.0025146299, + 0.0021339206, + -0.012869805, + -0.008556854, + -0.018661808, + -0.02014304, + -0.005682936, + -0.0192303, + 0.020393271, + 0.0116906455, + -0.021795433, + -0.027925568, + 0.010160662, + 0.01754079, + 0.0010928696, + -0.010655528, + -0.001557919, + -0.025248406, + -0.0040477887, + -0.011285977, + 0.012667243, + 0.020165665, + 7.10952E-4, + 0.0021322249, + -0.02430005, + -0.0027531201, + 0.0022402229, + -0.0024777679, + 0.014228273, + -0.0072990893, + 9.998333E-4, + 0.007711068, + -0.008895102, + -0.019241499, + -0.009648321, + -0.031468816, + -0.014700245, + -0.022440348, + -0.006720529, + -0.046229277, + -0.018895881, + 0.03087805, + 0.0041848146, + 0.0067264424, + -0.010555055, + -0.04198238, + 0.024018325, + -0.022105742, + -0.0025838914, + 0.02277797, + -0.007414293, + 0.023661455, + 0.019226167, + -0.005636523, + -0.0078081326, + 0.0028779232, + -0.013367639, + 0.002361147, + 0.011273132, + 0.010818002, + 0.025698079, + -0.021012088, + 0.023949655, + 0.013221305, + 0.008943223, + -0.03475357, + -0.0076877205, + 0.014413413, + -0.014070953, + -0.007919943, + -5.324221E-4, + 0.008790163, + 0.011538374, + 0.003295107, + -0.006046676, + 0.004927271, + -0.017628964, + -0.009934479, + 0.020365285, + -0.006486173, + -0.0061778165, + -0.0049073747, + 0.022181207, + -0.011850173, + -3.3641476E-4, + 0.016125755, + -0.0055617862, + 0.0020596834, + -0.0046179, + -0.022082046, + 0.0015015334, + -0.0069549256, + 0.04311627, + 0.018714588, + -0.006206944, + -0.004332922, + -0.019540422, + -0.01941197, + 0.0035395091, + 0.014034816, + -7.101927E-4, + 0.0061288252, + 0.010979735, + -0.036004297, + -0.0046851495, + -0.008781214, + -0.008059688, + -0.018440487, + -0.007780664, + 8.429302E-4, + 0.002619387, + 0.020059278, + 0.005458491, + 0.0057532, + -0.0030163783, + -0.03879392, + 0.027985802, + 0.008995909, + 0.00261093, + 0.006164989, + 0.00718263, + 0.01639417, + 0.0113462405, + -0.020060414, + 0.030270152, + 0.0028013259, + -0.015693747, + 0.018370032, + 0.003400066, + -0.008170205, + -0.016558573, + -0.025480308, + -0.013859917, + 0.003467893, + 0.0076134303, + -0.0036993104, + -0.0068822447, + 0.0021170506, + -0.02401535, + -3.213827E-4, + 0.0038602266, + -0.02610846, + -0.023370637, + -0.0033250633, + 0.0017455284, + 0.0011011637, + 0.012881646, + 0.020638827, + -0.008537939, + -0.0036734475, + 0.007298939, + -0.023788324, + -0.01070529, + 0.004360666, + 0.0026403249, + 0.0038886943, + 0.01779949, + 9.3216496E-4, + -0.007985758, + -0.0049942746, + -0.005232247, + -0.0018445246, + -0.012445081, + 3.613154E-4, + 0.0057337503, + 0.005618104, + 8.3055143E-4, + 0.017889928, + 0.0065037855, + -0.023097038, + 0.008726485, + 0.025693975, + -0.042274196, + -0.0037737577, + 0.001830825, + -0.00357906, + -0.0033245627, + 4.8569083E-4, + -0.020609314, + 0.008991348, + -0.0077513936, + 0.0038546638, + 0.004878185, + 0.02182924, + 5.215195E-4, + 0.010080371, + 0.008939741, + -0.017708553, + 0.016127728, + 0.0015369642, + -0.016164195, + 0.0121568935, + -0.015831085, + 0.014965554, + 0.006366628, + -0.012257911, + -2.6060818E-4, + 0.01630353, + 0.012563047, + -0.0026497277, + -0.006398122, + 0.021079278, + -0.0024981885, + 0.010030351, + 0.031338856, + -0.008258355, + 0.0214763, + -0.011933875, + -0.012845366, + 0.009487234, + -0.014480202, + -0.033478517, + 0.010496453, + 0.0019569278, + -0.0054505123, + -0.0016411858, + -0.010387795, + 0.025758043, + -0.02430991, + -0.012339872, + 0.022996949, + 0.012776554, + -0.015748011, + -5.2680075E-4, + 0.019133467, + 0.016324723, + -0.018635439, + 0.00442194, + 0.0012073824, + 0.015667485, + 0.005803207, + 0.025699394, + 7.445985E-4, + 0.0048002256, + 0.0022487761, + -0.004062545, + 0.033412196, + -0.003770364, + -0.010894523, + -0.0107022505, + -0.0125365835, + 0.018759772, + 0.020099906, + 0.007216011, + 0.0016757731, + -0.0060602985, + 0.0023860806, + -0.012438737, + -0.009493494, + 0.02010219, + 0.007465042, + 0.02066594, + 0.017064853, + 0.005465841, + -0.007511872, + 0.019800015, + -0.007304276, + 0.0021412845, + 0.006012831, + 0.0071848077, + 0.028149918, + 0.011190544, + 0.021320414, + 0.014855209, + -0.015683804, + 0.014467599, + -0.02486375, + -0.02027594, + -0.0039538667, + -0.032401178, + -0.035609577, + -0.023889653, + -0.017556505, + -0.034302186, + 4.0655312E-4, + 0.015156995, + 0.0017037059, + 0.0139685925, + -0.012452007, + 0.02325327, + 0.023069212, + 0.0065172245, + 0.012244785, + 0.008388895, + 0.035045557, + 0.012399888, + 0.011870225, + -0.055147927, + 6.827128E-4, + 0.014371443, + 0.00865876, + 0.008530945, + 0.010357803, + 1.0491901E-4, + 0.0030051714, + 0.021966368, + -0.0041855467, + 0.008297518, + 0.010263273, + -0.008909871, + 6.665706E-4, + -0.011530058, + -0.011718879, + 0.0074951313, + 0.017902061, + -0.010604079, + -0.021254929, + 8.421566E-4, + -0.019219572, + 0.014447035, + -0.024350341, + -0.021614615, + 0.00938132, + 3.2578292E-4, + 0.0050649806, + 0.00956507, + 0.0030249574, + -0.008030978, + 0.02444494, + 0.0021160597, + -0.003725342, + -0.034427963, + -0.007972268, + -0.018736087, + -5.638007E-4, + 0.0028340104, + -0.0026429447, + -0.015159935, + 0.021725772, + 0.013788292, + 0.0115113165, + -0.0026509766, + 0.019572856, + -0.031458426, + -0.014004098, + -0.008000228, + -0.005953347, + 0.0061753197, + 0.0030347654, + 0.0046770736, + -0.0022167617, + 0.016345154, + 0.010703992, + 0.002710425, + -0.018741952, + -0.00927093, + 0.03480856, + 0.010822315, + -0.0099839615, + -0.023990525, + 0.019631078, + -0.0029559315, + -0.012847316, + 0.017239207, + -1.0595742E-4, + 0.03322558, + -0.013209192, + -0.013561131, + 0.0074844523, + -0.022494087, + 0.0111691905, + -0.013035917, + 0.027224336, + -0.0057058227, + -0.0075120083, + 0.0025173046, + -0.016030902, + 0.003355056, + 0.032168888, + 0.01879427, + -0.0024866571, + 0.022012632, + 9.2835637E-4, + -0.0036731518, + -0.016347008, + -0.002745982, + -0.015141171, + 0.02872065, + 0.034205504, + 0.041150834, + 0.016914306, + -0.022075977, + 0.029780563, + -0.019619318, + 0.013947825, + -0.010957101, + -0.025318446, + -0.00134142, + -0.0058702743, + -0.019725919, + -0.014159269, + 0.012461592, + -0.023964554, + 0.02142739, + -0.019982759, + 0.006435186, + -0.006952094, + 0.0032383339, + -0.013470793, + 0.005197743, + -0.032556985, + 0.012105666, + 2.3490426E-4, + -0.005125185, + -0.0044143633, + 0.022155704, + -5.182351E-4, + -0.017602814, + 2.8228672E-4, + -0.009809431, + -0.017778432, + -0.037182834, + -0.0012464464, + 0.0102535235, + -0.032979924, + -0.009668963, + 0.0018339437, + -0.019722136, + 0.011404559, + 0.012532499, + 0.0247216, + -0.0068269405, + -0.014861066, + 0.0407311, + 0.029020935, + -0.035261687, + -0.015899414, + -0.0043648467, + 0.014685817, + 0.0033536057, + -0.003563222, + 0.007796574, + -0.011296036, + 0.006071722, + -0.004759602, + -0.00815889, + -0.0040736315, + 0.030931227, + 0.026993513, + 0.02766882, + -0.03428907, + 0.020318458, + -0.028437756, + -0.021365594, + -0.01567878, + -0.014946692, + -0.027285649, + 0.030207545, + 0.0029507177, + 0.0023665964, + -0.018744208, + -0.002814454, + -0.013123125, + -0.011448217, + 0.0035852592, + -0.026541734, + 0.0038703089, + 0.026478842, + 0.007571616, + -0.0065950453, + 0.013187883, + -0.0015520476, + -0.005931106, + 0.023284469, + -0.019130921, + 0.011588979, + 0.013295999, + 0.0060323263, + -4.0148705E-4, + -0.017454112, + -0.006557262, + -0.005849503, + -0.0052328818, + -0.02478563, + 0.019227477, + -0.006074368, + -0.01852462, + 0.027268529, + -0.0037493354, + -0.009953897, + 0.007527191, + -0.0030809778, + -0.024595039, + -0.012699557, + 0.030594885, + -0.0152938105, + 0.004306968, + 0.006411364, + 0.0077584856, + -0.0015727053, + -0.0062557706, + -0.014902711, + -0.031332016, + 0.009220657, + 0.007946584, + 0.005700791, + -0.0038434523, + -0.009796998, + 0.009060479, + 0.022639552, + -0.0054919734, + -5.9839664E-4, + -0.028037153, + -0.0017248843, + -0.01865941, + 0.029951269, + 0.011069157, + -0.0039779674, + -0.014572055, + 3.2198237E-4, + 0.019603396, + -0.022565251, + 0.007015476, + -1.4143447E-4, + 0.00308342, + -0.029404614, + -0.034499433, + -0.035306025, + -0.013113862, + -0.03090932, + -0.0066560423, + 0.0048052543, + 0.025460577, + 0.010357046, + 0.006788921, + 0.0023362802, + 0.008456254, + -0.018081956, + 0.0020944292, + -0.007929062, + 0.005988388, + 0.013589427, + -7.460467E-4, + 0.019031383, + -0.0059043616, + -0.009141086, + 0.012237931, + 0.005693663, + -0.0061997464, + -3.1916628E-4, + -0.006612275, + -0.023163168, + 0.022629805, + -0.010301637, + 0.011158287, + 0.0014669041, + -0.019991882, + -0.0024922837, + -0.0040981593, + 0.0032104875, + -0.016870065, + 0.0020785008, + -0.007506979, + 0.0048636636, + -0.028875811, + -0.022755496, + -0.010634097, + -0.013713107, + 7.780639E-4, + -0.017655497, + -0.0089342045, + -0.012655641, + -0.025496623, + -0.025673818, + -0.0031862548, + -0.010524508, + 0.0089517115, + -0.03469577, + -0.020200757, + -0.03251246, + 7.942422E-4, + -0.01314571, + 0.024888456, + -0.0023660527, + 0.030874964, + -0.009384434, + 0.0035728528, + -0.0058319625, + -0.0032331496, + -0.009819016, + -0.012452594, + -4.2213942E-4, + -0.011653494, + 0.010662442, + 0.0035515826, + 0.025218755, + -0.0012199829, + 0.015472629, + 0.00356678, + -0.0025513542, + 0.001048053, + 0.008938669, + -0.033998646, + 0.023055146, + -0.029843206, + 0.014816485, + -0.0247001, + 1.2898818E-4, + 0.0018643367, + 0.013509558, + -0.026313161, + 0.014950867, + 0.006366744, + -0.011141907, + -0.0032427597, + -0.0010464294, + -0.009374142, + 0.0015323258, + 0.026242165, + -0.0074034, + 0.0056060567, + -0.0041526975, + 5.39402E-4, + -0.0023591206, + -0.019763686, + -0.029000705, + -0.00544804, + -0.022003202, + -0.021149343, + -0.0027993515, + 0.027221492, + 0.019854883, + -0.006710339, + 6.625967E-4, + -0.008025831, + -0.02833388, + 0.004662347, + -0.006957348, + -0.018490551, + 0.009799635, + 0.008118807, + -0.004036983, + -0.015446874, + -0.015767446, + -0.009836402, + 0.010811196, + -7.8739185E-4, + 0.007833568, + -0.016187474, + -0.0020112381, + -0.013793624, + 0.01985125, + 0.007875549, + 0.0014379781, + 0.03871888, + 0.00837992, + 0.0029749798, + -0.0045921137, + -0.014764396, + -0.018539375, + 0.011285429, + -0.022202233, + -0.026782582, + 0.012496329, + -0.005657539, + 0.007821415, + -0.009578284, + -0.0059780306, + -0.0010678762, + 0.013264495, + -5.360373E-4, + 0.014740642, + 0.008594462, + 0.0210808, + 0.010612145, + -0.041018642, + -0.012544507, + 0.0027802626, + 0.03064274, + -0.006497888, + 0.024850791, + 0.016709078, + 0.017587986, + 0.012015025, + 0.010897383, + -0.010931294, + 0.0085064685, + -0.015524057, + -0.006119906, + -0.021646136, + 0.004045484, + 0.0099508995, + -0.029746935, + -0.013937234, + 0.0047681225, + -0.005069748, + 0.02889338, + 0.019674111, + 0.008971385, + 0.019260166, + -0.004943427, + 0.030454628, + 0.008781094, + -0.023890058, + -0.010076186, + 0.009871056, + 0.0029929837, + 0.03369789, + 0.003523983, + -0.008860346, + -0.0059600477, + -0.026320888, + 0.010269557, + -0.005864993, + -0.032257218, + 8.6038606E-4, + 0.0036691478, + -0.0073991385, + -0.033465363, + 0.009889906, + -0.025699418, + 0.009667918, + -0.0055976724, + -0.030143874, + -7.0610474E-4, + 0.015410956, + -0.02657232, + -0.005594016, + -0.012667945, + -0.02871956, + 0.019126222, + -0.013193465, + 0.013708314, + 0.0023969098, + -0.003164369, + 0.008180614, + -0.0021680107, + 0.033461705, + -0.027955111, + 0.009797353, + -0.009480256, + -0.011739801, + 0.019416146, + 0.035419766, + -0.005609651, + 0.011220122, + 0.024571637, + -8.6634816E-4, + -0.0020258501, + 4.6329404E-4, + -0.029931057, + 0.016794872, + -0.023356888, + 6.4991694E-4, + 0.0064995615, + 0.015978836, + 0.003507817, + -0.030129379, + 0.011127033, + -0.027087964, + -0.018799227, + -0.016050577, + 0.02048346, + -0.010350199, + 0.026022471, + 5.381999E-4, + -0.006900022, + 0.0015735416, + -0.02053039, + 0.009717049, + -6.262997E-4, + 0.013372875, + -0.02168777, + 0.012566126, + -0.0062849894, + 0.0033765787, + 0.010947213, + -0.001755559, + 0.01953741, + -0.027879335, + -0.0062440312, + -0.010934291, + 0.0062276646, + -0.010475245, + -0.007822323, + 0.013574225, + 0.006308151, + -0.0046002655, + 0.0031672649, + -0.026977332, + -0.001663709, + -0.019701408, + -0.0016903069, + -0.004439121, + 0.016963407, + 0.028034652, + -0.012684925, + 0.0039156447, + 0.007713962, + -0.026641242, + -0.032232046, + 0.019076677, + -0.01755072, + -9.328753E-4, + 0.0030363232, + -0.0020795949, + 0.0045471415, + 0.016684256, + -0.0073824814, + -0.001891951, + 0.0058088214, + 0.006238365, + 0.0013685237, + 0.0129775815, + 0.021651251, + -0.010713013, + 0.014416318, + -0.002635311, + -0.017172774, + 3.584517E-4, + 0.0011037063, + 0.017565876, + -0.011156038, + 0.017420461, + -0.013554317, + 0.005719548, + 0.014263161, + 0.018881742, + -0.022053612, + 0.013187274, + -0.017353201, + -0.0155918645, + 0.009396116, + 0.008664863, + 0.02438163, + -0.02432567, + 0.029304277, + -0.0021845172, + 0.014861866, + 0.02942434, + 0.018315284, + -0.011539266, + 0.026095979, + 0.020992633, + 0.03655017, + -0.003881475, + 0.0075899614, + 0.016782643, + -0.0078354115, + -0.024044793, + 0.014415028, + 0.021558318, + -0.010589142, + 0.0076704305, + 0.011235219, + 0.0125282435, + 0.012412393, + -0.027724473, + -0.018565806, + 3.5098963E-4, + -0.02851408, + -0.008743571, + 0.018838149, + 0.003733149, + 0.017301038, + -0.009657168, + 7.8991964E-4, + -0.00699453, + 0.011667769, + 0.001071834, + -3.329366E-4, + 0.0034438292, + -0.009525773, + -0.00790841, + -0.01403916, + 0.00824324, + -0.02743479, + -0.0015659934, + 0.024532529, + 0.01851294, + -0.007430496, + 0.004958589, + -0.020429598, + -0.0056168274, + -0.008150144, + -0.012754845, + -0.0051297676, + -0.0060151913, + -0.018254338, + -0.004074364, + 0.0037511128, + 0.008729015, + -0.017974412, + -0.030416325, + 0.03556097, + -0.006444413, + 0.005151991, + 0.010802773, + 0.008987982, + 0.001615715, + 0.005803807, + -0.016775174, + 0.006982126, + 0.011739755, + -0.021812508, + 0.010594935, + 7.318998E-4, + -0.029370395, + 0.0120095955, + 0.013466548, + 0.0062512746, + -0.014873904, + -0.015114561, + -0.009129432, + -0.0074669737, + 0.0021769183, + 0.002807371, + -0.01316106, + 0.013313535, + -0.007827312, + 0.001692988, + 0.0049185166, + -0.008453302, + 0.024996692, + -0.001955347, + -0.013990282, + -0.009522172, + -0.0022572866, + -0.023052173, + 0.0036673343, + -0.016431006, + 0.007435359, + -0.0045302957, + -0.00876334, + -0.018531637, + 0.028771708, + 0.011594724, + 0.017963216, + 0.0102933915, + 0.023296181, + 0.01901968, + -0.0094037, + 0.002865342, + 0.0022479733, + 0.010491108, + -0.030884594, + -0.010618969, + 5.03226E-4, + -0.006322292, + 0.019050173, + -0.02067241, + 0.006257526, + 0.025912218, + -0.022495497, + 0.009537663, + -0.0048434488, + 0.0055592344, + 0.0030847867, + 0.018466368, + 0.02518743, + -0.013244881, + 0.013822138, + 0.014670234, + 0.0026191245, + -0.006466032, + 0.013379123, + -0.0077602607, + -6.074892E-4, + 0.00604426, + -0.01758172, + 0.007637177, + 0.025512023, + -0.0043009524, + 0.021985427, + 0.01914463, + 0.01096814, + -0.006205599, + -0.012969237, + -0.04493182, + -0.01039046, + 0.00497764, + 0.01191804, + -0.0012189753, + -0.009037682, + -0.013103471, + 0.0013151534, + 0.0051153516, + 0.017836437, + 0.0016851883, + -0.011698066, + -0.008342601, + -0.017876154, + -0.0032741737, + -0.01740303, + -0.0052599134, + 0.017989721, + 0.0040736813, + 0.016584188, + 0.009408549, + -0.0053242235, + -0.0073803132, + -0.03247418, + 0.0025865017, + 0.008704765, + 0.014290605, + 0.015264488, + -0.04360896, + 0.014943617, + -0.017914077, + -0.02855762, + -0.0022923662, + -0.054216873, + -0.008012317, + -0.00839136, + -0.02113399, + 0.005398288, + 0.013633654, + 0.0041466225, + 0.022937331, + 0.0038156842, + -0.017679777, + -0.00894208, + -0.025056027, + -0.015842823, + -0.01827174, + 0.012967037, + 0.003816887, + -0.009183688, + 0.012848705, + -3.2810098E-4, + 0.019274082, + -0.057861105, + -0.015425375, + 0.002906817, + 0.015497577, + -0.004573673, + 0.029369403, + 0.017106446, + -0.02004357, + 4.1752413E-4, + -0.026916884, + -8.527231E-4, + -0.007764236, + -0.0024988034, + -0.0018408294, + 0.004071578, + 0.001441389, + -0.0038641833, + -0.017101223, + -0.0036235563, + 0.016138038, + 0.010150124, + -0.026325023, + -0.018128224, + -0.010359496, + -9.876864E-4, + 0.001872052, + 0.0045033176, + -0.0021437302, + -0.0029849645, + 0.0013852295, + -0.003241099, + -0.026178759, + -0.01716022, + -0.04067002, + 0.021087741, + 0.023035515, + -0.003493005, + 0.034357794, + 0.016362328, + 0.007960591, + -3.449899E-4, + -0.026122836, + -0.010484017, + 0.02616644, + -0.0020103282, + -0.0039296374, + 0.018745683, + -5.313142E-4, + 0.0018125172, + 0.020259416, + 0.0061556315, + -0.02471564, + 0.026885081, + -0.008435869, + 0.018524997, + -0.0041456525, + -0.020682974, + -0.010507084, + 0.02663538, + 0.0053106844, + 0.013019591, + 0.0066321082, + 0.023051009, + 0.023304366, + -0.015935753, + -6.9705426E-4, + -0.0066808974, + 0.014148886, + 0.029174551, + 0.0049139904, + -0.0152287595, + 0.01084789, + 0.029652618, + -6.780832E-4, + -0.012295243, + -0.0053926664, + -0.019920688, + 0.033837337, + -0.008767991, + 0.007191529, + -1.7456985E-4, + -0.0053979773, + -0.022393486, + -0.004026637, + -0.01127883, + 3.9168133E-4, + -0.02843052, + 0.003184813, + -0.0066394806, + 0.025816811, + 0.012404454, + 0.009360976, + -0.007359415, + -3.330595E-4, + 0.0072001475, + 8.885126E-4, + -0.007395238, + 0.007079017, + -0.0041580857, + -0.0042611384, + 0.014989346, + -0.010160749, + -0.019128766, + 0.012553932, + -0.015983708, + 0.028641902, + 0.01749631, + 9.10622E-4, + -0.0107725905, + -0.006203956, + 0.009902845, + -0.01338603, + 0.0019741468, + -0.01342853, + -0.012246261, + -0.015102055, + -0.007824244, + 0.019027613, + -0.010125283, + -0.033334833, + 0.03414154, + -0.018046292, + 0.002970073, + 0.009775367, + -0.023516284, + 0.0021412992, + 0.004438871, + -0.022815732, + 1.7651558E-4, + 0.01856056, + -0.007222608, + -0.0076395823, + 0.011397814, + -5.178909E-4, + 0.005074196, + -0.005829751, + -0.013076576, + 0.010064095, + -0.02551126, + 0.009869658, + -0.012237247, + -0.008576511, + -0.023600992, + -0.016649926, + -0.0057125073, + -0.030226698, + -0.0033155375, + -0.018128311, + 0.028541733, + 0.015610008, + -0.003622333, + -0.016765231, + 0.02026185, + -0.026900953, + 0.007416554, + -0.009152477, + -0.018585118, + -0.0051151896, + 0.022296274, + -0.028518675, + -0.004527064, + 0.019977504, + 0.024463717, + -0.016019931, + -0.0077891774, + -0.011665299, + -0.0021866818, + 9.221352E-5, + -0.0039148126, + 0.011050321, + -0.002241933, + 0.006295576, + 0.0013260508, + -0.012124809, + 0.0096503, + 0.0027704374, + 0.0067312536, + -0.0078614205, + 0.016911006, + 0.016419403, + -0.004049707, + 0.0036912686, + -0.003834921, + -0.010943966, + -0.03175536, + 0.0050428677, + -7.698758E-4, + 0.010747261, + 0.0015868936, + 0.030741299, + -0.0037384494, + -0.0060723885, + -0.015010836, + -0.0021112997, + 0.002980341, + 0.006377181, + -0.041480526, + -0.027798986, + 0.008493007, + -0.0021408114, + -0.0095666, + 0.022652114, + -0.012676644, + 0.0031973924, + 0.032244544, + -0.0025321597, + 1.2969691E-4, + -0.0012213785, + 0.019390058, + 0.029456908, + -0.002625098, + 0.0057085934, + -0.014551612, + -0.041037783, + 0.01046947, + 0.011646615, + -0.011282477, + -0.010488985, + 0.010083756, + 0.013987877, + -0.0062704016, + -0.01555494, + 0.018680077, + -0.010207292, + 0.010924442, + -0.024936384, + 0.010831882, + -0.01830176, + 0.0017721948, + -0.010442594, + -0.0029778401, + -0.005653347, + 0.010590744, + -0.0011600538, + -0.018256467, + -0.014448153, + 0.014101919, + -0.014767865, + -0.020319244, + 0.013330903, + -0.0189759, + -0.020605573, + 0.018257655, + -0.010776213, + -0.0072039454, + -0.046244778, + -0.026346173, + 0.02708776, + -0.0056786556, + -0.0155633055, + -0.002703403, + -0.010982347, + 0.008097564, + -0.030632975, + -0.0030996061, + -0.019473042, + 0.016461363, + -0.026966276, + -0.010863424, + -0.013361214, + 0.004000284, + -0.019527312, + 0.007567068, + 0.018661374, + -0.004911001, + -0.003394459, + -0.00930866, + 0.010763618, + -0.0014608884, + -0.037267298, + -0.0046861307, + -0.0017574893, + -0.0064895013, + -0.020335175, + -0.019587535, + -0.024743717, + 0.009366694, + -0.013786788, + 0.010698385, + 0.040578295, + -0.0089879725, + 0.022278557, + 0.004202103, + -0.039629485, + -0.021988768, + 0.0017413448, + -0.005440108, + -0.01306517, + 0.0034305826, + 0.01888529, + -0.024365349, + -0.011936058, + -0.03681926, + -0.007412002, + 0.0010452536, + 0.01580251, + -0.01616619, + -0.004065792, + -0.0032433781, + 0.002350422, + 0.0081178695, + -0.008881144, + 0.016184667, + 0.017563203, + 0.01590648, + 0.030287495, + -0.01432651, + -0.014134554, + -0.0015605597, + 0.011949102, + 0.006587935, + 6.17945E-4, + -0.0055433568, + -0.0048851473, + -0.0017177201, + 0.030012824, + 0.015598185, + -0.0055046133, + -0.0035000697, + -0.0021242914, + 0.0113195, + 0.007951947, + 0.010390746, + -0.029505976, + 0.02032452, + 0.009424043, + -0.025426695, + -0.010514086, + 0.014099837, + 0.013532679, + -4.7334016E-4, + 0.0011670722, + -0.015439728, + 0.02306476, + -0.0046058027, + -0.01093009, + 0.0424198, + 0.011704146, + -0.017550731, + -2.1457035E-4, + -0.0035207018, + -0.02443118, + -0.0087277135, + 0.0023453971, + -0.02607688, + 0.0084692715, + -0.018283589, + 0.01173027, + 8.6708646E-4, + 0.010356795, + 8.8779576E-4, + 0.030438205, + 6.586618E-4, + 0.019509116, + 0.014263038, + 0.006672649, + 0.028363444, + 0.0090088835, + -0.015397696, + -0.0033477736, + 0.008309649, + -0.028144715, + -0.056822605, + 0.0058510914, + 9.899506E-5, + -0.020743987, + 0.004480583, + -0.0047022398, + -0.0011024143, + -0.0033673882, + 0.016428865, + 0.010720009, + -0.002554406, + 0.020652637, + -0.012651068, + -0.020305991, + 0.005142292, + 0.0044269967, + 0.008826565, + 0.026186585, + 0.013909597, + 0.0013220112, + 0.01090535, + 0.027838208, + -7.781308E-4, + 0.023678891, + 0.008640578, + 0.0141388625, + -0.020702235, + 0.0047983252, + 0.015633427, + -0.0062147076, + -7.2453916E-4, + -0.012927685, + 0.030641988, + -0.0022950124, + 0.00364634, + -0.006869134, + 0.007738477, + 3.7160213E-4, + 0.019084355, + 0.00867575, + 0.023804553, + 0.004583417, + 0.0093861185, + -0.012752501, + 6.7609106E-4, + 0.014016829, + -0.016208922, + 0.018264279, + -0.0013999091, + -0.026639001, + 0.010439925, + -0.014844619, + -0.012933132, + 0.015284132, + -0.04442604, + -0.0012653633, + -8.892724E-4, + -0.026810966, + 0.0013597981, + 0.0071113445, + -0.006144252, + 0.0025806848, + 0.013100946, + 0.0074170344, + 0.0042074453, + -0.012552111, + 0.0011234522, + -9.177473E-4, + 0.029563205, + 0.014539369, + -0.022614608, + -0.021646708, + -0.020110141, + -0.00498742, + 0.008504733, + -0.005393564, + 0.019222062, + -0.0066511324, + -0.018325165, + -0.0014283435, + -0.019149, + 0.007070314, + -0.010211808, + -0.01237996, + -0.014718544, + -0.013500991, + 0.0076441388, + -0.0014210158, + -0.0050896974, + -0.008295995, + -0.012816023, + 0.0051239384, + 0.015399736, + 0.012273749, + -0.018054277, + -0.019104065, + -0.008003594, + 5.7563506E-5, + -0.03706894, + 0.003705161, + -0.037116807, + 0.021847975, + 0.008399937, + -0.01672678, + -0.026247391, + -0.009696857, + -0.004774881, + 0.02081274, + -0.03190801, + 3.8919543E-4, + 0.006862226, + 0.0032463495, + 0.0056250985, + -0.029042585, + -0.03161672, + 0.006580725, + -0.008967108, + -0.023380535, + -9.692269E-4, + 0.029639013, + 5.1884545E-4, + -0.0024330348, + 0.028646648, + -0.0069711027, + -0.01898613, + -0.0085862195, + 0.013454841, + 0.019230641, + -0.005802919, + 0.010330143, + 0.015111205, + -0.021491049, + -0.0055967667, + 0.0143407695, + -0.004057661, + -0.0013518598, + 0.018560736, + 0.011167245, + -0.03632388, + 0.013862261, + -0.0091313375, + -0.008360399, + -0.0035607498, + 0.0053852983, + -0.018880084, + -0.01276318, + -0.0021123157, + -0.021934818, + 0.020002821, + -0.0011899915, + -0.0018108407, + 0.003462456, + 0.013783451, + -0.0040669274, + -9.757757E-4, + -0.01096831, + 0.0057314103, + 0.033103015, + 0.01035893, + -0.0011611793, + -0.017997198, + 0.0047166576, + 0.02831953, + -0.029203221, + -0.02018681, + 0.008073388, + 0.009063182, + -0.009709585, + -0.00871314, + -0.042505212, + -0.024653632, + -0.019691683, + 0.023931824, + 0.026803408, + -0.012032414, + -0.006786393, + -0.005943074, + 0.0050641987, + -0.0131216645, + -0.0012563056, + 0.0120784165, + -0.0033123652, + 0.006940777, + 0.009304568, + -0.0126539925, + -1.3098092E-4, + -0.014086862, + -0.044920623, + 0.019665204, + 0.031368226, + 0.01910269, + 0.005024849, + 0.022974668, + 0.018709227, + 0.0051298095, + 0.005878241, + -0.011845217, + -0.010286256, + 0.030912295, + -0.0013569281, + 0.030808046, + -0.009722154, + 0.0138274, + -0.022041954, + -0.0028838408, + 0.026034325, + 0.023565726, + 0.008809483, + 0.016710127, + 0.01193849, + -0.0069616055, + -0.03368725, + 3.0075625E-4, + 0.02817191, + -0.0034039347, + 0.019334061, + -0.0017122545, + -2.8027556E-4, + -4.4113796E-4, + 0.022296587, + -0.0034822323, + -0.030582802, + 0.005736125, + 0.020134384, + -0.0016281585, + 0.0039215265, + 0.0020077552, + -0.008086039, + 0.0061878636, + 0.013313038, + 0.015996883, + -0.02744459, + 0.0071747582, + -0.003251592, + 0.017358148, + -0.002200948, + -0.003786757, + -0.014898019, + -0.005672204, + 0.016872875, + -0.012343136, + -0.004086061, + 0.0023572012, + 0.0085416045, + -0.018837698, + -0.008957839, + 0.018743236, + 0.009741422, + -0.008117775, + -0.014827063, + -0.018497922, + -0.0066760024, + 0.0027559875, + -0.0058910656, + 0.00587379, + -0.0037683595, + -0.008888745, + 0.0045296676, + -0.0054853773, + -0.0025355876, + 0.0061587268, + -0.01335515, + 0.00795424, + 0.0017401966, + 0.02959683, + -0.0046964185, + -7.156961E-4, + -0.008949023, + 0.009257283, + 0.0062503223, + 0.016574232, + 0.006388529, + 0.015540348, + -0.023165982, + 0.031964418, + -0.00894888, + 0.0035244778, + -0.005392689, + 0.023233078, + -0.027283594, + 0.009886471, + 0.006712716, + -0.021028448, + -0.018754087, + -0.0013613529, + -2.8696307E-4, + 0.003984006, + -0.01268054, + 0.005968041, + 0.007886385, + 0.01099359, + 0.03143483, + -0.033093136, + 0.017041491, + 3.7525632E-4, + -0.0018131682, + 0.010705684, + -0.0019226754, + -0.012316367, + -0.013506566, + -0.010024682, + -0.009127711, + 0.0047057145, + -0.027455352, + -0.0038429643, + 0.002315575, + 0.023841314, + 0.0070590014, + -0.01819804, + 0.01251863, + -0.01534906, + 0.0038309658, + -0.0020662548, + 0.013015638, + 0.008642699, + -0.023307374, + -0.010666498, + 4.6315785E-5, + -0.011284815, + 0.005236662, + -0.017215542, + -0.0032174983, + -0.00543155, + -0.01248707, + -0.00193767, + 0.0113186585, + 0.024702972, + 0.004750222, + -0.014740839, + 4.6739553E-4, + 0.033253677, + -0.0023058369, + -0.041225117, + 0.009060016, + -0.012558264, + -0.010315041, + -0.009412456, + 0.008738041, + 9.016032E-4, + 0.0012801391, + -0.0016036631, + -0.005460508, + 0.018365769, + 0.021151517, + 0.004769803, + 0.00338857, + -0.019118495, + -0.0010151232, + -0.011655396, + 0.0019160587, + 0.014600038, + 0.01219153, + -0.009543121, + -0.020492177, + -0.017719049, + -0.0033150523, + 0.013087372, + -0.004998327, + 0.0063597155, + 0.044996932, + 0.017716018, + 0.019477144, + -0.018910497, + 0.0014484072, + 0.006470847, + 0.0062375315, + 0.0026140932, + -0.0055221636, + 0.009416956, + 0.03802733, + -0.0011671139, + -8.1684155E-4, + 0.013939874, + -0.0069729495, + -0.004910398, + -0.023553876, + -0.024193767, + -0.009592889, + 0.02240731, + -0.019344665, + -0.015087615, + 0.010886535, + -5.8780727E-4, + -0.027363162, + -0.0049951514, + 0.004111926, + -0.0043596583, + 0.012831692, + -0.0064728474, + -0.0041094865, + 0.006948472, + -0.014300436, + 0.009649947, + 0.011041717, + 0.029039184, + 0.013942574, + -0.021151958, + 0.010316551, + 0.026548067, + 0.030708067, + 0.012239075, + 0.0067223483, + 0.0225884, + -0.02444914, + -0.005279178, + -0.022050722, + -0.020078301, + 0.006894389, + 0.016678113, + 2.2528172E-4, + 0.006659112, + -0.024742477, + -0.01805338, + 0.01685387, + 0.024560463, + 0.02862268, + -0.0057025934, + -0.015994921, + -0.04352704, + -0.022188613, + 0.010651113, + 0.027405294, + -0.0050941342, + 0.007595444, + 5.17534E-4, + -0.024999183, + 0.025528925, + -0.015570282, + -0.0010891126, + -0.008666099, + -0.010463859, + -0.0036482837, + -0.001965317, + 0.0033251888, + -0.01344423, + 0.0029502227, + 0.024144286, + -0.0081062615, + -0.0208504, + 0.0069632703, + -0.016619293, + 0.020781292, + 0.016875088, + 0.02439404, + -0.0023772216, + 0.0015212257, + -0.0029264556, + -0.018040746, + 0.009594827, + -0.0066380557, + -0.02184133, + 0.009827602, + -0.012612686, + -0.024010442, + 0.0029394217, + 0.007586706, + -0.01701273, + 0.0042781853, + -0.00751924, + -0.017789287, + 0.023779798, + -0.01958507, + -0.011397604, + 0.0033801317, + 0.012690803, + 0.017729662, + 0.018507391, + -0.020142054, + 0.021226581, + -0.001427764, + -0.006377317, + 0.0233526, + 0.018171508, + 0.011782396, + 0.0073131723, + 0.010909821, + -0.0060293814, + -0.002333174, + -0.005950789, + -0.014750567, + 0.013593916, + -0.021122716, + 0.01736861, + -0.017991556, + 0.021593235, + -0.006694137, + -0.005490128, + -0.02293667, + -0.017742416, + -0.023212252, + 0.0046616313, + 0.018349834, + -0.021800986, + 0.004431564, + 0.015708372, + 0.045541026, + 0.006453645, + 0.02517661, + -0.009729319, + 0.01638212, + 0.028246257, + 0.007160197, + -0.017048808, + 7.5557403E-4, + -0.0017649175, + -0.0060496056, + 0.018626066, + -0.0126544945, + -0.019701725, + 0.011589589, + 0.0066536977, + -0.03149779, + -0.024441555, + 0.012315298, + 0.0056118574, + -0.013347801, + -0.03487506, + 0.016349565, + 0.018615607, + -0.00826789, + -0.022331655, + -0.012086052, + -0.020167999, + -0.005246195, + 0.027447334, + -0.010079779, + 0.022949861, + -0.005376395, + 0.006775305, + 0.0012982807, + 6.521206E-4, + -0.011147336, + 0.00853896, + 0.009758219, + -0.023498185, + -0.0074345046, + -0.022636132, + 0.030702136, + -0.0075549255, + 0.017365273, + -0.01810439, + 0.012632269, + 0.026370516, + -0.031114783, + -0.0034476141, + 0.0011908605, + -0.0020693764, + -0.015716162, + 0.009302835, + 0.017183222, + -0.030578036, + 0.01842406, + 0.0331115, + 0.0054861284, + 0.016722078, + -0.0047014817, + 0.016131096, + 6.958459E-5, + 0.018482106, + -0.008723775, + -0.0031891437, + -0.0036245591, + 0.015864115, + -0.0036757505, + -0.011435508, + -6.7533803E-4, + 0.00811935, + -0.019412352, + 7.428817E-4, + 0.007209299, + 0.009858859, + 0.008281914, + 7.3479983E-4, + -0.006974775, + 0.0016632378, + -0.016234878, + 0.008857043, + -0.005802746, + -0.021312913, + -0.025165819, + 0.008339742, + -0.0023992248, + 0.001237992, + 0.0015100068, + 0.025470491, + -0.005983662, + -0.009888872, + -0.0123044895, + -0.003494712, + -0.0039476356, + -0.00824513, + 0.0072168703, + -0.00825971, + -0.017438767, + 0.0011686656, + -0.01028957, + -0.0018928584, + -0.0056561674, + -0.022685887, + 0.011071681, + -0.0027415801, + -0.0018401311, + 0.012791158, + 0.028165517, + 0.009276332, + -0.0016047419, + 0.002022763, + -0.006732104, + 0.009626698, + 0.02473013, + 0.0032887904, + -0.006403052, + 0.023109531, + 0.01833318, + 0.010140648, + 0.008851053, + 0.016441803, + 0.0011053856, + 0.0059002447, + 0.019824818, + -0.0045252275, + 0.02445916, + -0.018044647, + -0.0018277491, + 0.021539042, + -0.0031596776, + -0.021689927, + 0.009442218, + -0.01652453, + 0.012159223, + 0.014050302, + 0.0034417522, + -0.013354595, + -0.0074261236, + -0.0021675734, + -0.015075652, + 0.026354395, + -0.010952087, + -0.025904395, + 0.0032655788, + -0.010866576, + -0.007403331, + 0.015594605, + 0.0059451805, + 6.008194E-5, + -0.0074320734, + 0.012193129, + -0.0031816184, + 0.012698422, + -0.0036794844, + -1.3598637E-4, + 0.011806692, + -0.025544649, + -3.2959756E-4, + -0.004334591, + -0.00546217, + 5.813116E-4, + 0.018522147, + -0.023968095, + -0.016543113, + -0.0019884503, + -0.0026550917, + -0.018636553, + -0.010663371, + 0.0048888936, + 0.0015878462, + 0.018134572, + -0.014550005, + -0.003963563, + 0.0062200534, + 5.609121E-4, + 0.016905611, + 0.013860922, + 0.00771929, + 4.9060636E-4, + 0.009069631, + -0.022323804, + 0.008764485, + 0.019753292, + 0.010272637, + 0.0066254456, + -0.0028112745, + 0.008694553, + -0.0035369452, + -0.00539565, + -8.4054575E-4, + 0.027111938, + 0.023459397, + 0.011346226, + 0.025576137, + 0.04042879, + -0.014340409, + -0.022552613, + -0.006656548, + 0.0065314295, + -0.0030120818, + 0.010595834, + -0.002642308, + 0.024510853, + -0.0018519958, + -0.011834947, + 0.012838441, + -4.7558584E-4, + 0.010780671, + 1.1813015E-4, + 0.00847005, + -0.008299282, + -0.015823292, + 0.027038857, + -0.011208864, + -0.025186326, + 0.013689926, + 0.014697364, + -0.0149369035, + 0.0050409217, + -0.017768199, + 0.0044698343, + -0.018709108, + 0.027486412, + -0.001603586, + 0.017348353, + 0.007887084, + -0.00625356, + 0.013450618, + 0.0046315975, + -0.0068201027, + 8.185325E-4, + -0.011070455, + 0.011795185, + 0.003479582, + -0.0324588, + -0.0021102838, + 0.006223245, + 6.665752E-4, + 0.015610001, + 0.021365732, + 0.019306814, + 0.009102519, + 0.012351003, + -0.012898385, + 0.016849115, + -0.0063201548, + -0.035400137, + 0.0023639677, + 0.032427687, + -0.027147856, + -0.022789504, + -0.0069928193, + -0.0154331, + 5.089131E-4, + 1.12462214E-4, + 0.0027724146, + 0.009339754, + 0.0013395771, + 0.023052093, + 0.0200932, + 0.01393211, + -0.047403168, + -0.0052150963, + 4.4101436E-4, + 0.008947938, + 0.0040402277, + 0.006023236, + 0.0077118175, + 0.010963544, + -0.0074345428, + -0.0067063, + -0.021485083, + 0.0098107215, + 0.026549893, + 0.0073582744, + -0.008632312, + -0.0087601375, + 0.012061854, + -0.0329989, + 0.01543047, + -0.0018210576, + -0.027377479, + 0.009053374, + 0.022979992, + 0.0060152244, + 0.002495497, + 4.445564E-4, + 0.005522772, + 0.0012056857, + -0.005168476, + 0.021549745, + -0.0038043067, + 0.020974156, + 0.013110554, + 0.004372429, + 0.018855067, + -0.022028245, + -0.008379406, + -0.006522596, + -0.008536502, + 0.011144969, + 0.010879518, + 0.023311341, + 0.021675834, + 0.007587464, + 0.008313312, + 0.0027980357, + 5.734002E-4, + 0.019796764, + 0.0043955394, + -0.026622813, + -0.017371079, + -0.0024782105, + 0.018510642, + -0.0077647544, + 0.009223115, + 0.0022011243, + -0.0036503419, + -2.2938508E-4, + 0.020171426, + -0.0061294483, + 0.002525714, + 0.033741288, + -0.0010846424, + -0.026497837, + 0.021560447, + -0.011492783, + 0.017139997, + -0.020516098, + -0.015820684, + -0.025939338, + -0.014049087, + -0.0064608543, + -0.0039742044, + -0.0066585266, + -0.003381713, + -0.037583977, + -0.03860121, + 0.0027874382, + -0.020213436, + -0.009025027, + 0.014590477, + -0.040952664, + -0.0180571, + -0.012656463, + 0.026733043, + -0.009999754, + -0.016353562, + -5.220075E-4, + 0.0031919808, + -0.017360672, + 0.013086316, + 0.0044591357, + 0.025591472, + 0.006958534, + -0.0061067487, + 0.02155037, + -0.03366926, + 0.008496935, + -0.0063226153, + -0.015090909, + 0.0047302973, + -0.0019437715, + 7.3290785E-4, + -0.0039655925, + 0.003939834, + 0.007159532, + 0.0030278084, + 8.4753614E-4, + -0.0056664646, + 0.0073334225, + -0.0021450343, + -0.0061148377, + -0.00771204, + 0.0064043757, + -0.017359417, + -0.0113212345, + 0.0028840376, + 0.03210878, + -0.0042060413, + -0.01880259, + 0.0039108912, + 0.023450656, + 0.005651493, + -0.007817532, + -0.010179308, + -0.030383598, + 0.029060025, + 0.017694179, + -0.0035684023, + -0.003820853, + -0.014795859, + -0.03301225, + -0.016274896, + 0.011350672, + 8.4656064E-4, + -0.01756714, + -0.016460417, + 0.002917034, + 0.0044402815, + 0.048865285, + -5.0776044E-4, + -0.0017286236, + 0.0017103427, + -0.013636268, + -0.006069648, + 0.0039755087, + 0.010020597, + -0.009876001, + -0.008242843, + -6.084992E-4, + 0.0030654562, + 0.016844077, + 0.014394094, + -0.008045292, + -7.0144207E-4, + -0.017704735, + 0.004581642, + -1.9680502E-4, + 0.018037664, + -0.003177822, + -0.0026327427, + 0.013413432, + -0.018234044, + 0.009648919, + -0.038187414, + -0.010053104, + 0.02411902, + 0.0052241175, + -0.0035959568, + 0.0033267247, + 0.008289368, + -0.006108089, + 0.006329039, + 0.013872375, + -0.010182832, + -4.6491658E-4, + 0.029012423, + 0.013743632, + 0.0065981857, + 0.014661849, + -0.008642967, + 0.027528038, + -0.03283669, + 0.012287569, + 0.012616305, + -0.022666618, + 0.02579623, + -0.013844647, + 0.012173233, + 0.021605974, + 0.009381431, + -0.006336885, + -0.0072103757, + -0.01756989, + 0.017840533, + 0.0039185067, + -0.0026165843, + 0.018585902, + -0.0075756055, + 0.0014293559, + -0.025552483, + -0.022262821, + 0.012041891, + 0.023551697, + -0.0053891875, + -0.014972936, + -0.0039528334, + -0.011919661, + -0.0029468208, + 0.024221098, + 0.00845109, + 0.001986576, + -0.007832245, + 0.0019442345, + -0.0058309417, + 0.013310217, + 0.024842162, + -0.009164038, + -0.013736611, + -0.0069791926, + -0.011890236, + 0.020014968, + -0.0040422305, + 0.021851769, + -0.0022530663, + -1.9010245E-4, + -0.025019402, + -0.017376978, + -0.011218206, + 0.018304048, + -0.005876001, + 4.501532E-4, + 0.019380007, + -0.0016021171, + 0.0040263296, + -0.016240057, + 0.017770352, + 0.005058497, + -0.016576992, + -0.0062080366, + -0.009712292, + 0.017961888, + 0.016991384, + -0.002635757, + -0.010258472, + 0.004076601, + -0.010606298, + 0.008707288, + -0.025362391, + -0.014516632, + -0.0017785352, + -0.0027913935, + -0.036587648, + -6.5030326E-4, + 3.663766E-4, + 0.0014349797, + 0.019675901, + -0.0047839466, + 0.0037191787, + 0.028260086, + 2.4571214E-4, + -0.025704175, + 0.013953128, + 0.017082572, + -0.013132708, + 4.04414E-4, + 0.013473153, + -0.0070304936, + -0.003479074, + 0.012913486, + 0.036720257, + 0.010407321, + 9.364547E-4, + 0.023056876, + 0.0074294815, + 0.013252204, + 6.3814525E-4, + 0.019194456, + -0.0054952563, + 0.0021535412, + -0.005423657, + 0.040498644, + -0.005758025, + -0.00922369, + 0.005622538, + -0.0022496122, + 0.0053795255, + 0.016931538, + 0.02892915, + -0.016684063, + 0.022942644, + 0.006283135, + -0.022415826, + -0.028496165, + 0.015082601, + -0.027802588, + -0.005347313, + -0.01079749, + 0.014328614, + -0.006113791, + -0.028446391, + -0.02358847, + -0.008791461, + -0.001989079, + -0.0015136376, + -0.033513963, + 0.008138084, + 0.02422628, + -0.003319104, + -0.012918519, + -0.022360904, + 0.0058792294, + 0.0010517695, + -0.024041362, + 0.03934151, + -0.009014954, + -8.0422015E-4, + 0.0013274724, + 0.038254254, + 0.020422563, + 0.0058504273, + -0.007955604, + 0.011882602, + 0.010577744, + 0.016441034, + 0.010292005, + 0.014330887, + -0.019433174, + 0.009172262, + -0.009597397, + -0.018941304, + 0.0068126554, + 0.016135499, + 0.002399942, + 0.002622847, + -0.0020501832, + -0.007686847, + 0.007833942, + -0.04044056, + 0.0066074296, + -0.0032466275, + -0.0039869472, + 0.016212877, + -0.03416215, + -0.019403376, + 0.001274746, + 0.015208848, + 0.0066996366, + -0.023641875, + -0.0075698923, + -0.0019995878, + -0.010460891, + 0.00458641, + 0.015139954, + -0.003275365, + 0.014957263, + 0.0077620097, + -0.0072576357, + 0.0019263931, + -0.008322324, + -0.009208274, + 0.02201224, + 0.0044493997, + 0.01788343, + 7.4096385E-4, + -0.010872654, + 0.0021529528, + 0.0019287454, + -0.020327592, + 0.01007056, + -0.020964483, + 0.0069541465, + -0.020531815, + 0.009121409, + 0.014166979, + 0.028530432, + 0.0016526865, + -0.013054769, + 0.016414188, + 0.0076348865, + 0.006120732, + -0.008217312, + -0.018130774, + 0.0049321633, + 0.0078908065, + -0.009271508, + 0.00966284, + 0.011118646, + 0.018381806, + 0.005892235, + -0.016818585, + 0.011111268, + 0.003965185, + -0.010792995, + -0.018533297, + 0.0025610982, + 0.007187731, + -0.031097986, + 0.0027994048, + 0.010738743, + -9.2070084E-4, + -0.017718006, + -0.0058127376, + 0.015033996, + 0.004357683, + 4.4347972E-4, + -0.009416243, + 0.0032186743, + 0.009208902, + 0.020169003, + 0.0032109662, + 0.009236421, + -0.01101936, + 0.0012218201, + 0.001877091, + 0.0042706495, + -1.675371E-4, + 0.021320999, + -0.010492476, + -0.004522943, + 0.011453704, + 0.02799355, + 0.019883191, + 0.025456898, + -0.014700595, + -0.0062174094, + -0.022339927, + -0.010607065, + -0.015518111, + -0.006959202, + -0.01616595, + -0.00505105, + -0.027942944, + 8.328649E-4, + -0.02645104, + 0.02628676, + 0.011021081, + 0.016242953, + 0.015332025, + -0.0074463775, + 0.027453063, + 0.0015773939, + -0.0025917427, + 0.0010731425, + -0.030777864, + -0.0227293, + -0.016049873, + -0.028778113, + 0.012623686, + -0.023486793, + -0.02062647, + 0.0018119009, + 0.0016409847, + 0.007108502, + 0.029902756, + -0.020406548, + -0.0070768353, + -0.0078348955, + 6.4063794E-4, + -0.016054612, + 0.01666442, + -0.016611274, + 0.010159758, + 0.0017466611, + -0.017540768, + 0.0090380255, + 0.021120086, + -0.031432427, + -0.01796616, + 0.0047233505, + -0.0056777517, + -0.008160199, + 0.019475695, + 0.026025124, + -0.0037065702, + 0.015211891, + 0.0024486766, + -0.002180621, + 0.008742661, + 0.0016193851, + -0.011439776, + 0.006948682, + 0.016741643, + -0.022723174, + 0.02278211, + 0.0044622733, + -0.011221297, + 0.014463444, + -0.025724642, + 0.008453453, + 0.011366474, + 0.002735788, + 0.0062649334, + -0.02204358, + 0.019455934, + -0.004919126, + 0.016903657, + -0.008411139, + 8.9149596E-4, + -0.025731264, + 0.020306356, + -0.0077454313, + -0.021465747, + -0.013393855, + -0.014401934, + 7.219372E-4, + -0.009728954, + -0.0017066997, + 0.023525592, + -0.0025630689, + 0.021883545, + 0.013404984, + 0.017000828, + 0.025607144, + -0.013237306, + 0.033442233, + 0.036996152, + -0.019965788, + 0.0019345053, + 3.5761706E-5, + -0.021642648, + 0.007655897, + 0.004160635, + 0.02517752, + -0.019530376, + -0.010404216, + -0.018914053, + -0.007830606, + 0.023519348, + 0.024501378, + -0.0013088816, + -0.022046883, + 0.0051938654, + -0.01611001, + 0.014681209, + 0.0074815303, + 0.010646101, + 0.021432567, + 0.017832391, + -0.005546896, + 0.01876484, + 0.017199391, + -0.025338696, + 0.013830109, + -0.013116294, + 0.009763076, + 0.0014567133, + -0.009918796, + -0.010617901, + -0.01611762, + 0.024937425, + 0.024097914, + -0.014593124, + 0.0014869763, + 0.004994598, + 0.012455464, + -0.0014296573, + -0.0029682317, + -0.002290659, + -0.022277262, + -0.016314868, + 0.022383269, + -0.0044509917, + -0.023405544, + 0.0015759018, + 0.007628436, + 0.020442089, + -0.0017057704, + 0.0023828002, + -0.01348249, + 0.04092092, + 0.02734577, + 0.0073085045, + 3.7157428E-5 ], - "paletteEmbedding": [ - -0.0065553435, 0.034970604, -0.02474767, 0.04821876, -0.018839486, - 0.016450457, -0.036947716, 0.032652024, -0.043535624, 0.042872027, - -0.02127411, 0.03715936, 0.025050329, -0.040490113, -0.0143676745, - -0.014565509, -0.024133665, 0.0066650244, -0.007332654, 0.032132257, - -0.074356414, 0.0025039485, -0.028437788, -0.044148985, -0.05261937, - -0.04594766, 0.011192023, -0.045656305, 0.07047375, -0.049231067, - 0.0073244926, -0.029610625, 0.004672753, -0.060988363, -0.029811464, - -0.04121945, -0.006913384, -0.006964901, 0.038544156, 0.03596476, - -0.0610272, -0.038638465, -0.008333776, 0.04200035, -0.02056498, - 0.03335115, 0.038189627, 0.026350457, 0.030818127, -0.030665306, - 0.01461202, 0.024796234, -0.0016525475, 0.0045386846, -0.015960824, - 0.01653765, 0.00944111, 0.004784753, 0.021733569, 0.004464881, - -0.08245281, 0.07768058, 0.020049734, -0.02325908, -0.039684147, - 0.006852524, 0.017944813, 0.007953987, 0.007818816, -0.009884026, - 0.0074189208, -0.018688112, -0.009309815, 0.07030868, 0.010496636, - 0.024129173, 0.009482244, 0.0050405683, -0.018630503, 0.08010746, - 0.03136758, -0.038349014, -0.089395426, -0.04884359, 0.022723647, - 0.008449147, -0.012360814, -0.02773391, -0.010106538, 0.033918142, - -0.023132857, -0.023296446, -0.0064383894, -0.009372144, 0.02086968, - 0.053633183, 0.013140181, -0.011706865, -0.013556763, -0.058702312, - -0.007423188, -0.061644662, 0.006095989, -0.010437402, -0.006592955, - -0.072780505, 0.062522, 0.049249146, -0.026704412, -0.053633403, - -0.015120243, -0.0016394922, -0.04154465, -0.010923674, 0.04047638, - -0.011523936, -0.003101121, -0.032627057, 0.022738911, -0.0087682335, - -0.007477453, 0.0054982337, 0.023791928, -0.0033664005, -0.038896795, - 0.049607072, 0.045382902, 0.06206521, -0.06474704, 0.021945927, - -0.029024862, -0.012181571, -0.054421254, 0.06014921, 0.004058141, - 0.0078031947, -0.004209116, 0.03790507, -0.047888782, 2.445501e-4, - -0.07650602, -0.023011826, 0.012587927, 0.0089893555, 0.036271702, - -0.03316135, -0.009179316, 0.007672891, -0.023166368, 0.03215021, - -0.017042464, -0.017515592, -0.014691474, 0.03304464, 0.048433706, - 0.07347385, -0.02947533, 0.015723553, 0.0010873372, 0.023645557, - 0.00232599, -0.034412336, 0.054076593, 0.01060213, 0.017813792, - 1.6645758e-4, 0.04166251, 0.015332217, 0.014899341, 0.023611853, - 0.031072384, -0.04535407, 0.013976664, 0.027677976, 0.02019548, - 0.0059749843, -0.014905672, 0.011147754, -0.009576362, 0.06837626, - 0.0033127433, -0.014434945, -0.015300323, -0.03859823, -0.047401525, - 0.021323798, -0.014240461, 0.019316414, 0.035047006, 0.004243809, - -0.052622367, 0.003178355, -0.03136354, 0.013034461, 0.0115583055, - 0.0854349, 0.024500182, -0.03951554, -0.043595184, -0.030389687, - -0.03074436, -0.06235344, -0.035496157, -0.0072506242, 0.044003256, - 0.023429595, 0.0028313925, 0.036848534, 0.044336867, 0.03404099, - -0.07718168, -0.030000595, 0.033493843, 0.020113468, -0.06803019, - -0.0048484756, 0.011530233, -0.0164683, 0.0060661454, -0.008293203, - 0.038427345, 0.017383028, -0.029507643, -0.028788313, 0.017501632, - -0.013634681, -0.019799246, -0.009161021, 0.016833462, -0.010861018, - 0.0059358054, 0.017040642, -0.047051966, 0.034696236, -0.029407829, - 0.0043150177, 0.029303364, 0.015448042, -0.001464759, -0.0049430165, - -0.03188727, 0.039187256, -0.046498656, 0.0042331084, -0.013517917, - -0.0054563773, -0.027137991, 0.022066887, 0.054175604, 0.08524162, - 0.01554381, 0.02721751, -0.007248763, -0.04048506, 0.012795828, - 0.016638953, -0.010414731, 0.0076476545, -0.019852294, 0.031253412, - -0.008567572, -0.03867821, 0.032081027, -0.046595525, 0.015275891, - 0.008290225, 0.0234597, 0.012209942, 0.07776406, -0.052772656, - -0.042288743, -0.039066438, -0.015040101, 0.025245951, 0.045583993, - -0.01571615, -0.01077812, 0.041704666, -0.052785028, 0.009605348, - -0.00901521, -0.050698515, 0.02612522, -0.035610925, 0.043183617, - 0.023802074, -0.016670778, -0.038029265, 0.04042308, -0.0067743827, - -0.018504778, -0.018391432, 0.0021607047, -0.019174634, -0.045658674, - -0.021176439, 0.025479313, 0.040429987, 0.03716859, -0.030565841, - -0.07951145, -0.016507922, 0.01213953, -0.03009694, 0.009649622, - 0.0055843242, 0.005535438, 0.03428607, -0.0023698246, -0.010739843, - 0.019700766, 0.013517903, 0.03737858, -0.047130287, -0.0025769693, - 0.01716848, 0.049259175, -0.0047548544, 0.00890506, -0.035945598, - 0.0027491767, 0.02162657, -0.023006776, -0.028434511, 0.0072607384, - 0.058772143, -6.824369e-4, -0.029950242, 0.0073374566, -0.027141588, - -0.016401745, -0.020305295, 0.023105286, -0.0045404625, -0.004308153, - 0.004910056, 0.06523202, -0.04630285, 0.016947366, -0.045518707, - 0.023901308, -0.008439403, 0.020317692, 0.03988509, 0.025443522, - 0.033097476, -0.0016374418, 0.039817207, -0.016321102, -0.021171568, - -0.06335254, 0.04040788, -0.0024746126, -0.00689063, 0.018304171, - 0.08301703, -0.0054113455, 0.02963536, 0.02963861, 4.801174e-4, - -0.05334947, -0.010841692, -0.039395716, 0.053143397, 0.0071291146, - 0.004266887, -0.0077232984, 0.041954994, 0.03551638, 0.026498323, - -0.015839111, 0.02470449, -5.8602967e-4, -0.022322414, -0.03508576, - -0.024109704, -0.014710414, -0.05257144, -0.012167076, 0.01775767, - 0.0402517, -0.0104461685, 0.02585199, -0.036163226, 0.059450917, - -0.0022559047, 0.004938409, 0.009789644, 0.07116557, -0.0029920752, - 0.054020822, -0.033762958, 0.017985918, -0.014986545, -0.02581919, - 0.0071480633, 0.032339703, -0.015420042, -0.01264497, -0.0067198295, - 0.050605945, 0.0041955844, 0.005499822, -0.012764744, -0.026032558, - -0.0070020617, 0.023834398, 0.048630226, 0.0016074157, 0.060378533, - -0.019353228, 0.0061213956, 0.024573142, 0.030546544, 0.0051885433, - 0.04005511, -0.024718028, -0.018382771, -0.023895526, 0.016447697, - -0.034863938, -0.022818858, 0.0028935475, -0.012020079, 0.03721544, - 0.0127944965, 0.037957974, 0.044347156, -0.036304843, 0.022607064, - -0.001996392, 0.036093086, 0.01425245, -0.018989991, -0.011300733, - 0.045676094, -0.022665568, 0.03783231, 0.0039100074, 0.021335943, - 0.027474012, 0.07366925, -0.032953028, -0.050144937, -0.0154551715, - -0.012457266, -0.019559003, -7.9703296e-4, 0.08455009, -0.007337389, - 0.011956681, -0.016554896, -0.030722106, 0.0062872274, 0.051557183, - 0.005492894, -0.03899396, 9.122314e-5, 0.026343018, -0.007781209, - -0.01691413, 0.058098864, -0.030126443, 0.034732938, -0.013433316, - -0.017941272, 0.023469843, 0.03655825, 0.019327205, 0.03537273, - 0.015715562, 0.008409549, 0.0062917774, 0.0048103114, -0.0019679284, - 0.015201555, -0.02250313, -0.01812794, 0.022716343, 0.015365147, - 0.011583063, 0.014236924, 0.06352857, 0.018015368, -0.018356834, - 0.021853214, -0.0071043633, 0.006951178, -0.009674177, -0.0113191195, - 0.03479831, 0.023985593, -0.025556182, -0.04565647, -0.034408137, - -0.04446048, 0.013293752, 0.009313371, -0.007588355, -0.02734449, - 0.008454629, 0.0135190645, -0.015168905, 0.020269403, 0.025483198, - -0.0053340457, -0.016626285, 0.019351276, 0.022289844, -0.060862802, - -0.020727769, -0.014261066, 0.020798305, 0.041772928, -0.011743536, - 0.017778888, -0.03169491, 0.008492634, 0.02994325, 0.056209497, - 0.0055138282, 0.0087082535, 0.013433292, -0.04918592, -0.042463362, - 0.015348809, -0.031301737, 0.012700869, -0.0060811345, 0.017309215, - -0.10463007, 0.013097079, -6.8366015e-4, -0.07234391, -0.0059193466, - -0.051577587, 0.018127443, -0.02423512, -0.035443958, -0.018591547, - 0.048232634, -0.027061556, 0.069414526, 7.3329714e-4, 0.020331847, - 0.015952708, 0.0074131275, -0.006755559, 0.023852045, -0.022356978, - 0.014797278, 0.061210323, -0.0040776273, 0.015117213, -0.0102452105, - -0.023837278, -0.034145545, -0.034953624, -0.027338004, -0.006834264, - -0.021823084, -0.046933893, 0.0083234785, -0.011953645, 0.0070833676, - 0.019517586, 0.0010702262, -0.04296806, 0.024947686, 0.0031234322, - -0.015470712, -0.008163418, 0.024639517, -0.050595768, -0.05466075, - -0.026123354, 0.04031227, -0.0053716525, 0.039825365, -0.07343714, - -0.0061901757, 0.009191727, -0.012606218, 0.0035434775, 7.7435124e-4, - -0.036437824, -0.0314672, -0.039425246, -0.032733716, 0.007253789, - -0.016095774, 0.026298644, 0.0379099, 0.0155587485, 0.014563783, - 0.034838714, 0.015716651, 0.044045232, -0.0084928945, -0.035487626, - -0.030653715, -0.03231711, 0.025696933, 0.011846264, -0.04356576, - -0.016231958, -0.03717765, -0.045718882, -0.06833937, 0.0069627482, - 0.010344805, -0.031564005, -0.012035114, -0.0020025156, -0.0044293, - 0.09111643, -0.02625256, -0.029226247, -0.035642803, 0.011942748, - 0.033461586, 0.016932685, 0.037995014, -0.07096282, 0.019660136, - -0.02191609, -0.01939215, -0.029891472, -0.00820595, -0.03641326, - 0.018196564, 0.03210365, 0.035917055, -0.01092568, -0.04237666, - 0.03490129, -0.0013361261, 7.240815e-4, -0.035950214, 0.045072373, - -0.024764646, -0.0017137184, 0.0069080796, 0.007043857, -6.206471e-4, - 0.009957611, -0.006093271, -0.028736543, 0.036275364, -0.01984834, - -0.0011004056, 0.046884038, -1.1637424e-4, -0.01320593, 0.03708793, - -0.032219127, 0.043286458, 0.024353627, -0.0371686, 0.0057148347, - 0.051319595, 0.026393108, -0.048686456, 0.04013807, -0.007321096, - 0.037004992, -0.014086408, -0.045892715, -0.029687462, 0.029903958, - -0.04287477, 0.00218767, 0.03935845, 0.03669198, 0.0071377438, - 0.048337676, -0.02202424, 0.0315543, -0.0035471024, -0.030906081, - -0.010914559, 0.0012403029, -0.020155668, 3.9613672e-4, 0.03054568, - -0.030211095, -0.020964228, 0.0059326887, -0.03364952, 0.007978014, - 0.0050179744, 0.0019448084, -0.022130039, -0.02405716, -0.008592853, - 0.0021022414, -0.04371708, -9.3454355e-4, 0.022917856, 0.04168421, - 0.035793558, 0.017662447, 0.0060911076, -0.0044895755, 0.053725667, - -0.014150193, 0.026288364, 0.017429067, 0.019630112, -3.2981165e-4, - -0.02208055, -0.059969414, 0.0010672361, 0.020882899, -0.002286046, - 0.038548186, 0.065949105, -0.0066050887, 0.051971074, -0.004990258, - -0.055690974, 0.026566297, -0.026398888, 0.003673118, 0.026001975, - 0.0070527378, -0.022221409, -0.047512043, -0.011495585, 0.005735119, - -0.012066112, -0.01650779, 0.011822044, 0.03811128, 0.048878487, - 0.05465296, -0.004017017, -0.03228958, 0.0049753855, -0.0047190166, - -0.029053949, 0.019065917, -0.03868946, 0.046898626, -0.022085257, - 0.013948934, -0.009256848, 0.01303492, -0.019417606, -0.044468664, - 0.023932172, 0.017726872, 0.012387207, 0.064890124, -0.015759323, - -0.011070758, 0.008311495, -2.2273465e-5, 0.011628902, 0.028613465, - -0.017869718, 0.031710844, -0.010245407, 0.054727774, 0.016225653, - -0.013787332, -0.032072086, -3.1147615e-4, 0.028432347, 0.0035762412, - 0.034307085, 0.017405378, -0.007978101, 0.02295455, 0.03569955, - 0.027041791, 0.03402296, 0.016004415, -0.029721469, -0.061591115, - 0.012277377, -0.05868187, 0.046104193, 0.009926608, 2.0463354e-5, - 0.030511672, 0.0015464184, -0.0044769235, -0.044338897, 0.016020581, - -0.02604307, -0.012098604, -0.02776998, 0.03314768, -0.013897046, - 0.006888165, 0.009086523, 0.02248966, -0.02293085, -0.0020913878, - 0.072128326, -0.0071240696, 0.05597687, -0.050674595, 0.03279685, - 0.031981185, 0.02139971, -0.022794276, 0.040293373, 0.002789507, - -0.021380719, -0.024889955, -0.03581084, 0.0050071464, 0.011925107, - -0.0059129274, 0.024508003, -0.034688544, 0.021545216, -0.010843909, - -0.028833333, 0.0067117475, -0.0069297235, -0.04402401, 0.0168166, - 0.052620225, -0.016345233, -0.015515275, -0.030081997, -0.025689632, - 0.034929145, -0.018033622, -0.026962195, 0.00668319, -0.006608641, - -0.008152945, 0.038699694, -0.025730079, -0.009021721, -0.039540276, - 0.05069029, -0.015431608, 0.050032627, -0.024009576, 0.0067954347, - -0.034164365, -0.03941778, 0.024531832, -0.033167638, -6.283303e-4, - -6.7230914e-4, -0.049415424, -0.008051299, -0.007902564, -0.064745605, - 0.05409067, 0.008471177, 0.043623213, -0.05609012, -0.019542549, - -0.05179124, -0.0335203, -0.045252424, 0.018181017, -0.05364806, - -0.044728197, 0.023817116, 0.05993955, 0.034627624, -0.030961156, - -0.02127288, 0.0391891, 0.06561412, 0.05686699, -0.0072522424, - -0.02395026, -0.07378765, -0.0663608, 0.009558009, 0.014457449, - 0.0019040256, 0.01988825, 0.030271288, 0.023357037, -0.0131933475, - -0.08039963, 3.595259e-4, 0.05136038, -0.047215793, 0.0032096053, - 0.063232094, 0.030730478, 0.022040479, 0.001193058, 0.0075869686, - -0.0075588287, -0.008410058, 0.0071034464, 0.017962676, -0.036303297, - 0.059412837, 0.032237887, -0.01530388, -0.005506617, 0.01491069, - -0.012144698, 0.009758721, -3.1463354e-4, -0.010571401, -0.033025485, - -0.0399752, 0.018468495, 0.01597215, 0.051379934, 0.07412958, - 0.011752989, -0.0047160313, -0.02899692, -0.025794517, -0.0330647, - -0.020429837, 0.065147236, -0.0056439703, 0.025205756, -0.029946098, - 0.0138317775, -0.03480701, -5.912262e-4, 0.006098631, -0.036843345, - -4.0686954e-4, -0.047909226, -0.0020124672, 0.025613707, 0.0063816477, - -0.025050718, -0.022809781, -0.01742296, 0.076070435, 0.018266505, - 0.032200217, 0.0011348944, 0.011005534, 0.0122481035, -0.02145477, - -0.002814739, 6.265823e-4, 0.07277134, 0.0106456885, 0.0020155474, - 0.01761078, 0.014183812, 0.052404203, -0.029949816, 0.011407972, - 0.014604644, 0.029330347, -0.039707653, -0.029097728, -0.08738965, - -0.0058708224, -0.07176547, 0.017607687, -0.0011288583, 0.018623115, - 0.032449458, -0.05257634, -0.00548123, 0.013389673, 0.011560034, - -0.053631037, 0.009966717, 0.018185066, -0.006922981, -0.03877926, - -0.0331535, -0.06809215, -0.015117814, 0.020279594, 0.08053185, - -0.014453729, -0.017326629, 0.039217666, 0.03257496, -0.027202846, - 0.037154164, 0.03662043, -0.014266858, -0.0020256669, -0.07417864, - -0.0015114512, -0.053160653, 0.0023231476, -0.02500899, -0.035512153, - -0.0093109915, -0.023621725, -0.014425811, -0.021398634, -0.0028817076 + "paletteEmbedding" : [ + -0.028580276, + -0.014974573, + 0.010604396, + 0.027841361, + 0.011373612, + 0.0028425772, + -0.026899401, + -0.029450795, + -0.002438861, + -0.07899046, + 0.010154986, + 0.04169194, + -0.03269344, + 0.016789239, + -0.0016160232, + 0.06638345, + 0.010900922, + -0.010959483, + 0.0051850732, + 0.03653376, + -0.013842049, + -0.004808944, + -0.041303966, + -0.031869948, + -0.012370495, + -0.04386594, + -0.020626398, + -0.045632012, + 0.038021997, + -0.013371386, + 0.014246608, + 0.057640567, + -0.027081683, + -0.0019870047, + 0.0091872765, + 0.023205504, + 0.010413785, + -0.005356647, + -0.01278319, + 0.008981684, + -0.007687176, + -0.023815336, + -0.052884385, + -0.0030777063, + 0.024102656, + -0.033043873, + -0.012813621, + -0.03152817, + -0.0106829405, + 0.019818917, + 0.02549985, + 0.0700426, + -0.017722076, + 0.0020482128, + -0.0038622932, + 0.029606499, + -0.0011509856, + 0.035329327, + -0.05118023, + 0.014366265, + -0.026093276, + -0.065600574, + -0.02706917, + 0.0716003, + -0.07321766, + -0.061417505, + -0.011863716, + 0.017713571, + 0.010065865, + -0.031754706, + 0.037114874, + 0.027352447, + 0.02290657, + 0.054516453, + -0.033894263, + -0.009664382, + 0.08489061, + 0.022678506, + -0.00845881, + -0.0305328, + 0.052428205, + -0.0072988556, + 0.0350029, + -0.0015994023, + -0.025328875, + -0.022952542, + 0.0010990826, + 0.021306442, + 0.002551712, + 0.02532817, + 2.845755E-5, + -0.0613047, + 0.008552276, + -0.04450698, + -0.0082780635, + 0.012463897, + -3.7203135E-4, + -0.04098732, + 0.0023701263, + -0.019032123, + -0.040400732, + -0.033104543, + 0.009165732, + -6.689837E-4, + -5.4785627E-4, + 0.040664375, + 0.048067737, + 0.020386958, + -0.01877244, + -0.008303089, + -0.042954616, + -0.06004699, + -0.02279405, + 0.051445168, + 0.049984585, + -0.03460806, + 0.013389313, + 0.036190722, + -0.0044925367, + 0.024653878, + 0.0057404656, + 0.013809983, + -0.03819974, + 0.06453845, + -0.0077645243, + -0.008915419, + -0.054191995, + -0.034531854, + -0.02989258, + -0.02332579, + -0.007890052, + 0.011916307, + -0.011332991, + -0.032654893, + 0.003360751, + -0.0125011625, + -0.032161754, + -0.0068479157, + -0.032682102, + -0.0099912165, + 0.004133276, + -0.008255133, + -0.0023478176, + -0.016799867, + 0.015472263, + -0.009138624, + -0.0517577, + 0.0012387651, + -0.030559363, + -0.025042526, + -0.019078353, + 2.0163925E-4, + 0.0031920373, + 0.00800484, + 0.0275925, + 0.0058103963, + -0.012759378, + -0.042544995, + 0.023108311, + 0.024213757, + 0.081649594, + 0.023943337, + -0.017240103, + -0.027320426, + -0.033992257, + 0.013263934, + -0.03549064, + 0.06579934, + 0.009832321, + 0.018832784, + 0.01573624, + 0.019416658, + -0.011073172, + 0.0390633, + 0.040779825, + 0.0052496903, + 0.027779734, + 0.029311663, + 0.04784641, + -0.024557712, + -0.053993877, + -0.03274684, + -0.054965157, + -0.006328012, + -0.037768945, + -0.023840643, + 0.033389125, + -0.0130442325, + -0.035949893, + -0.024105323, + -0.020536881, + -0.014326208, + -0.02337122, + 0.08461694, + -0.021220012, + 0.019484263, + 0.036127187, + 0.038511604, + 0.020270728, + -0.0037553506, + -0.022861972, + 0.00289248, + 0.038865276, + -0.02181054, + -0.02865174, + -0.04796855, + 0.053205367, + 0.040367577, + -0.05117194, + -0.01236976, + -0.0037328973, + -0.02537786, + 0.009217118, + 0.06717381, + -0.022072306, + -0.036665685, + 0.057292946, + -0.039055556, + 0.001775399, + 0.009616479, + 0.035254054, + 0.023733778, + -0.01392722, + 0.021964105, + -0.03686329, + -0.0036484955, + -0.011756543, + 0.005034337, + -4.939926E-4, + -0.003854641, + 0.01935886, + -0.0069758575, + 0.01752614, + -0.033999942, + -0.027328333, + -0.037873592, + 0.012221757, + 0.029661361, + -0.0037810507, + -0.034131195, + -0.0067049987, + -0.029190132, + 0.0148158, + -0.008378008, + -0.021912135, + -0.032308735, + -8.3109963E-4, + 0.07060664, + 0.03451765, + -9.318055E-5, + 0.013861185, + -0.055549763, + -0.031998985, + 0.022213299, + -8.83386E-5, + -0.023495229, + -0.037053306, + -0.05506906, + 0.024438394, + 0.001624691, + -0.040039096, + 0.03319227, + -0.021168848, + 0.021093924, + 0.02733427, + 0.015660131, + 0.01035732, + 0.023022844, + 0.06038729, + 0.036978856, + -0.028258085, + 0.025842395, + 0.0023736262, + 0.006286307, + 0.0413966, + -0.017598493, + 0.034154467, + -0.010853621, + -0.01048845, + 0.028773922, + 0.04294966, + 0.013043228, + -0.011314346, + -0.0077852295, + 0.021274906, + -0.04783159, + -0.0013465867, + -0.009252659, + 0.0041918657, + -0.0039937343, + -0.010152193, + -0.008300335, + -0.03550988, + -0.015213518, + -4.3483166E-4, + 0.0058465097, + -0.072084896, + 0.04769399, + 1.3621192E-4, + -0.004966237, + -0.016772034, + -0.032730456, + -0.028845277, + -0.03337017, + 0.008609677, + -0.0021452368, + -0.034019966, + -0.019804493, + -0.0072017065, + -0.047234006, + -0.024536245, + -0.022933122, + -0.08531469, + -0.0069981837, + -0.030445078, + -0.015574173, + -0.012422259, + 0.037439406, + 0.014918944, + -0.029831745, + 0.037617408, + 0.0019452852, + 0.006857493, + 0.009742331, + -0.010381941, + -0.010433581, + -0.023022294, + -0.059496734, + 0.02138302, + 0.032138817, + 0.025829649, + -0.013020895, + -0.059932932, + 0.064574815, + 0.059889276, + 0.04000652, + 0.06825201, + 0.03348031, + 0.047202397, + -0.022527244, + 0.03182865, + 0.0049159643, + -0.04522327, + -0.04121557, + -0.009292736, + 0.042937446, + 0.04379322, + -0.012917278, + -0.050876956, + -0.019305903, + -6.4124464E-4, + -0.05334731, + -0.010816272, + 0.04499449, + -0.0307565, + -0.030264402, + -0.02633285, + 0.027363531, + 0.011410619, + -0.074294575, + -0.054436967, + -0.02198584, + 0.047354575, + -0.019616816, + 0.017518444, + -0.044670925, + 8.4719254E-4, + 0.013093803, + -0.038732667, + -0.011165981, + 0.015112158, + -0.045685094, + -0.023234725, + 0.034590267, + -0.12885131, + -0.007798693, + -0.0013248292, + 0.031920187, + 0.023284208, + -0.044387005, + 0.023398245, + 0.023882832, + -5.4354843E-4, + -0.010947834, + 0.027649866, + -0.003001696, + -0.0032411905, + 0.0076459446, + 0.0123523725, + 0.003851388, + 0.030340854, + -0.013626911, + -0.029614005, + 0.039008126, + -0.03422603, + 0.015554694, + 0.009553806, + 0.034136154, + 0.017154392, + 0.05393347, + 0.05254755, + -0.059814706, + -0.034158256, + 0.012441253, + 0.030963672, + 0.018583989, + -0.042808514, + -0.018729232, + 0.011217344, + 0.014482274, + -0.0051961453, + 2.1319957E-4, + -0.015029305, + 0.03724589, + 0.025670648, + 9.278292E-4, + -0.03335454, + -0.0024756582, + 0.016479753, + 0.014851928, + 0.030761678, + -0.01710568, + 0.019931337, + 0.0012329131, + 0.027400056, + 0.01087888, + -0.010934519, + -0.018765181, + -0.03610706, + 0.020513447, + -0.059052177, + 0.028906846, + -0.04398322, + -0.09025851, + 0.027916234, + 0.052063677, + -0.010306711, + 0.03236947, + 0.011353312, + -0.023695495, + 0.029562054, + 0.022988128, + 0.033595614, + 0.018579952, + 0.010016678, + 0.011939082, + -0.022562834, + 0.037564885, + 0.03950994, + 0.0057259905, + -5.5605336E-4, + 0.030597307, + 0.0060075456, + -0.072120436, + 0.019802859, + 0.019148847, + 0.028356224, + -0.024159769, + 0.010515323, + 0.04482551, + -0.015143967, + 0.006880504, + -0.031981483, + 0.0052929143, + -0.024642777, + 0.004189045, + 0.0013678891, + -0.007122743, + 0.0054088887, + 0.035184406, + 0.017858095, + 0.026582807, + -0.0211839, + -4.0363718E-4, + 0.016290192, + 0.015375667, + -0.021202967, + -0.014083608, + -0.047404032, + 1.707911E-5, + 0.0031055529, + 0.021969857, + 0.011844097, + -0.008699525, + -0.0027311747, + -0.0022809282, + -0.011703661, + -0.023559663, + -0.024251847, + 0.05187478, + 0.023667593, + 0.048539743, + -0.0013251326, + -0.030501934, + -0.030300481, + 0.007987108, + 0.005116871, + 0.013559313, + -0.019530734, + -0.038081404, + -0.031351727, + 0.019545937, + 0.05660858, + -0.034497734, + 0.027506316, + -0.01751991, + -0.018806782, + 0.019770075, + 0.023568427, + 0.013761011, + 0.002390381, + 0.011940335, + 0.0065701725, + 0.023011861, + 0.02282861, + -0.04325627, + 0.027761512, + -0.0056406143, + -0.03988739, + 0.01595632, + -0.0050948453, + 0.05577332, + 0.028122, + -0.03297997, + -0.052051097, + 0.0044863853, + 0.068839535, + 0.015453444, + -0.027827254, + -0.007574682, + -0.0017007983, + -0.0050076856, + 0.03754785, + -0.020482333, + 0.044740386, + 0.03296934, + 0.03854451, + 0.007748329, + -0.04845646, + -0.03452765, + 0.03870845, + 0.004249788, + 0.008410523, + 0.019020934, + -0.007433686, + -0.0240681, + -0.027287774, + -0.0078049814, + 0.0025188792, + 0.05120938, + -0.051725045, + -0.040129773, + -0.033418782, + -0.0049810554, + 0.02350337, + -0.0022232623, + -0.00376514, + 0.0022075027, + 0.013761588, + -0.04421336, + -0.00841963, + 0.04570394, + -0.010892092, + -0.031308983, + 0.016604245, + -0.017579796, + -0.018977562, + 0.013697428, + 0.024719762, + -0.017654724, + 0.014074257, + 0.018987846, + -0.006918978, + -0.008377619, + -0.02259437, + -0.029511452, + -0.065251745, + 0.01729611, + 0.016282804, + 0.036644306, + -0.028940324, + 0.034518704, + 0.03367115, + 0.00672944, + -0.007618469, + 0.0059667113, + -0.014699063, + -0.037189387, + 0.0060242717, + 0.018685898, + 0.0135165425, + 0.02233798, + -0.040056508, + 0.037121776, + -0.034947917, + -0.008042508, + 0.0533366, + 0.01946101, + -0.030570704, + -0.0046525886, + 0.03424856, + 0.040679432, + 0.03670705, + 0.033162095, + -0.016780932, + 0.017620502, + 0.041281715, + -0.02933903, + -0.011721748, + 0.0070635597, + 0.009345791, + -0.045217596, + -0.015333228, + -0.032232773, + 0.033991612, + 0.01340245, + -0.0051449477, + -0.029125182, + 0.07060387, + 0.021897353, + -0.11060368, + 0.01790899, + 0.052344885, + 0.07853095, + -0.042442203, + -0.027052723, + 0.0049980585, + 0.022153277, + 0.032822713, + 0.04716959, + 0.023672566, + -0.027680555, + 0.019550782, + 0.051786367, + 0.01877945, + 0.0069133677, + -0.052910447, + -0.016439663, + -0.0023520153, + -0.050454915, + 0.021922557, + -0.010464182, + 0.039439626, + -0.00934638, + 0.006305013, + 0.031677764, + -0.007930202, + -0.012019791, + -0.0026684671, + -0.0034808111, + -0.042493112, + -0.053140365, + -0.01597835, + -0.03147983, + -0.0037439195, + 0.027984645, + 4.5472092E-4, + 0.038609616, + 0.00357265, + -0.05145247, + 0.0015332265, + -0.041598536, + 0.046629064, + -0.014238151, + -0.011291818, + -0.0021058805, + -0.053365484, + -0.00752195, + 0.0135402335, + 0.0021466394, + 0.050577186, + -0.033051133, + 0.03519691, + 0.04710558, + 0.020775096, + 0.005607491, + -0.045033228, + 0.014921848, + 0.029765641, + -0.039235808, + -0.06566704, + -0.050332077, + -0.05030803, + -0.025083493, + -0.03277226, + 0.01782773, + 0.0042732484, + -7.091222E-4, + -0.04098651, + 0.04433863, + -0.034409292, + 0.033240534, + -0.010758592, + -0.02108123, + 0.054841887, + 0.042593986, + 0.006885104, + -0.016664708, + -0.022266477, + -0.030538945, + 0.027288754, + -0.05194989, + 0.0133369025, + 0.025777133, + -0.03412561, + -0.004961654, + -0.013292113, + -0.02624711, + -0.0032374745, + -0.011801637, + 0.0282931, + -0.064128265, + 0.0061693112, + -0.023500098, + 0.03477738, + -0.06382194, + 0.021953944, + 0.02445741, + 0.022970336, + -0.03098777, + -0.0013370622, + -0.043237783, + 0.0070967223, + -0.01620401, + 0.005187006, + 0.006851697, + -0.028293928, + 0.057792038, + -7.7544406E-5, + 0.020990131, + 0.045617387, + -0.02267117, + -0.0076717287, + -0.01880061, + 0.047261935, + 0.015538759, + 0.09030941, + -0.01752008, + 0.0651376, + -0.018715743, + 0.0025304612, + 0.029466264, + -0.011240827, + 0.012479648, + -9.970314E-7, + 0.022203634, + 0.021506054, + 0.0268035, + 0.008500846, + -0.020440252, + -0.048435707, + 0.010830022, + -0.04377824, + -0.026765868, + 0.013919282, + -0.013875622, + -0.023608174, + -0.054075617, + 0.0023770821, + 0.0065887677, + -0.015761947, + 0.010725607, + -0.019245509, + -0.012900284, + -0.05617731, + -0.028254522, + 0.0020585416, + 0.028542181, + -0.01669856, + -0.04481571, + -0.0068952716, + 0.019412197, + 0.015095648, + 0.0031592597, + -0.011473044, + -0.08865588, + 0.021361351, + 0.07643117, + 0.0032210515, + 0.08186432, + -0.0024975743, + -0.045224458, + -0.0017514238, + -0.07895228, + 0.043547317, + 0.036452748, + -0.021097537, + -0.013289574, + 0.04636015, + -0.028364154, + 0.006641278, + -0.03361805, + 0.03115046, + -0.03340961, + -0.0045862477, + 0.0049070828, + -0.05881426, + 0.051439904, + -0.0082425885, + -0.0064034676, + -0.0057352786, + -0.042515382, + -0.050237317, + 0.034798156, + 0.036079455, + -0.016101047, + 0.00678014, + 0.022170315, + -0.03545986, + 0.07185641, + -0.0235833, + 0.021632196, + 0.08170847, + 0.02352643, + 0.016711758, + 2.0454085E-4, + -0.018116068, + -0.0334821, + 0.0023618746, + -0.0034271318, + -0.010261238, + -0.025435159, + 0.012207535, + -0.016325666, + 0.042036124, + -0.01487736, + 0.014495133, + -0.024931988, + -0.0039520464, + -0.007743332, + -0.03784719, + -0.007189901, + -0.014584419, + 0.031433087, + 0.013620999, + -0.028200721, + 0.019338612, + 0.021277763, + 0.021771744, + 0.04980446, + 0.007488546, + 0.045628555, + -0.008760352, + -0.056334693, + 0.015612984, + -0.011034104, + 0.05572576, + 0.024734708, + 0.010293311, + 0.017413829, + -0.018112378, + -0.01485246, + -0.0044788853, + -0.05246937, + -0.034392226, + 0.018137233, + 0.03811311, + 0.023679681, + 0.02843885, + 0.04020352, + 0.032463383, + -0.0055813175, + -0.017449195, + 0.08032151, + -0.030860227, + -0.0106449975, + 0.055446427, + -0.013828092, + -0.02014187, + -0.05890482, + -0.007812079, + -0.022853868, + 0.051431306, + 0.061234217, + -0.014138316, + 0.0046071587, + 0.008289471, + -0.055658825, + 0.046951078, + -0.029759372, + 0.026400466, + -0.02548031, + 0.017943917, + -0.0040898398, + -0.039534826, + -0.008924843, + 0.046679262, + -0.043511543, + -0.01646395, + -0.033789355, + 0.054875106, + 0.01520167, + 0.018929766, + -0.002908063, + -0.002205243, + -0.018466199, + 0.03603041, + -0.026491962, + -0.035163563, + -0.028847622, + 0.020682339, + -0.087079346, + 0.06253433, + -0.0148925, + -0.02924534, + -0.009408982, + -0.010178583, + 0.0066032764, + -2.0288313E-5, + -0.016483132, + -0.003893593, + 0.055309884, + -0.031294752, + 0.009860207, + 0.046952456, + 0.04285505, + -0.037221484, + 0.0062589524, + 0.03112888, + -0.020984506, + -0.011753426, + 0.030201672, + -0.019029588, + -0.027766978, + 0.02958401, + -0.047565322, + 0.0021396661, + 0.0045328713, + -0.040822245, + -0.06961703, + -0.04850534, + 0.013549535, + 0.027518973, + 0.053199574, + -0.006068914, + -0.01820759, + 0.02423811, + 0.04080584, + -0.006971786, + -0.015178347, + -0.02390585, + 0.030973652, + -0.03274915, + 0.02456264, + -0.045313604, + 0.03211994, + 0.0056883204, + 0.011032496, + 0.048219316, + -0.013967246, + 0.018757202, + 0.058497693, + -0.022900453, + -0.015911862, + -0.0038306722, + -0.046006825, + -0.03547308, + 0.023926768, + -0.022840975, + -0.004301509, + 0.020572009, + -0.052955978, + 0.021565886, + -0.011742967, + -0.03609018, + -0.017023759, + 0.001127569, + -0.0013323639, + 0.028258873, + -0.02884467, + -1.1497739E-4, + 0.024430478, + 0.0028475998, + 0.0043593766, + 0.011944808, + -0.05273484, + 0.015171461, + -0.04957514, + 0.018538605, + 0.0682779, + 0.061371956, + 0.016341887, + 0.02062033, + -0.015082256, + 0.05455646, + -0.049387608, + 0.0077715097, + -0.027781213, + 0.009448558, + -0.017876478, + -9.5287745E-4, + 0.07591399, + 0.033951428, + -0.057789322, + 0.038190275, + -0.026115153, + -0.021726819, + -0.016476704, + -0.054490685, + -0.040184803 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json index 06135da2d..6ef7388de 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json @@ -1,1339 +1,5253 @@ { - "description": "images linked with another work", - "createdAt": "2023-11-21T14:25:44.166747Z", - "id": "zs6cxirr", - "document": { - "modifiedTime": "2010-10-05T23:16:10Z", - "display": { - "id": "zs6cxirr", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images linked with another work", + "createdAt" : "2024-11-14T14:37:56.520561Z", + "id" : "hsgnyw8m", + "document" : { + "modifiedTime" : "2000-11-29T00:19:37Z", + "display" : { + "id" : "hsgnyw8m", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/7v3.jpg/info.json", - "credit": "Credit line: URfT5lfGCv", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", + "credit" : "Credit line: Igw4LN", + "linkText" : "Link text: BLRn04h0", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/7v3.jpg/info.json", - "credit": "Credit line: URfT5lfGCv", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", + "credit" : "Credit line: Igw4LN", + "linkText" : "Link text: BLRn04h0", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#AEA5CE", - "source": { - "id": "fmyupcla", - "title": "title-KJq3yop2L1", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#A0C8A8", + "source" : { + "id" : "immezksj", + "title" : "title-ncEHT1NLb6", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "zs6cxirr", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "fmyupcla", - "sourceIdentifier.value": "szeiyqljE1", - "identifiers.value": ["szeiyqljE1", "JtaMjYcp2o", "fT0WVQ2fba"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-KJq3yop2L1" + "query" : { + "id" : "hsgnyw8m", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "immezksj", + "sourceIdentifier.value" : "fBj197N48n", + "identifiers.value" : [ + "fBj197N48n", + "7Qx3WYHrc4", + "OXpjxG6OXo" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-ncEHT1NLb6" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.022159908, 0.006007418, 0.00349551, 0.007875716, 0.013713672, - -0.010485254, -0.01640202, -0.010187955, -0.03613159, 0.0023716877, - 0.002096292, -0.0056687286, -0.014834071, 0.02264578, -0.0056445897, - -9.86524e-4, 0.009195566, 0.017835421, -0.019108785, -0.008355242, - -0.01152607, -0.005877168, -0.011431072, 0.02217019, 0.0138099, - 0.013590501, 0.025370838, -0.021463709, 0.010321354, 0.008224431, - 0.012599533, -0.016155487, -2.7394807e-4, -0.02980648, -0.026857445, - 0.0023220724, 0.0011754106, 0.00235725, 0.006560888, 0.013035492, - -0.018950606, -0.016803693, 0.027251527, -0.018943913, -0.020278228, - 0.01737681, 0.0065834518, 0.010050316, 0.008902627, 0.0064299335, - -0.008868869, -0.016817858, -0.011088583, 0.025784008, -0.019721294, - -2.862384e-4, 0.012501102, 0.0014671294, 0.0041712536, -0.011361855, - 0.005430687, -0.0060436195, -0.02506279, -0.022670971, 0.005386672, - -0.002546798, -0.0014180267, -0.0021002924, -0.0059001204, -0.020188488, - -0.0155813955, -0.0019009335, 0.019552266, -0.0019995838, -0.0031099357, - -0.0018570612, 0.0140812, -0.004138328, 0.0017430262, 0.0049128514, - 0.0067861015, 0.028008588, -0.02264203, -0.017235255, 0.005802296, - -0.0070334906, -0.002523606, -0.013141983, -0.03469889, -0.01662305, - 0.012383277, -0.0023509276, 0.0014181448, -0.0038232536, -4.972048e-5, - -0.0062846397, -0.019668153, -0.0018957239, -0.0014091815, -0.021674633, - 0.017339164, -0.019663708, 0.014517511, -0.0038823897, 0.024154555, - -0.0066210544, 0.025529832, 8.66484e-4, 0.004005067, -0.008361258, - 0.006147186, -0.0249349, -0.019217089, -0.0022371805, -0.03225114, - 0.026279503, 0.0064885295, 4.9474405e-4, -0.017552566, -0.009612176, - -0.021674287, 0.02611785, -0.007521004, -0.010671155, -0.010215856, - -0.012050227, 0.008632463, 0.00844268, -0.013894247, -0.010935655, - -0.016556358, 0.004102395, 0.04797241, -0.03335568, 0.0063360874, - 0.006539642, -0.008881274, 0.0015625622, -0.01611113, -0.011285897, - 0.001976533, -0.015501758, -0.023027478, -0.0013659395, -0.0029834767, - 0.0010652388, 0.014961407, 0.0049319393, 0.025458213, 0.03001309, - 0.018306179, 0.025479244, -0.011358944, -0.014443215, 0.02025041, - 5.3267047e-4, 0.004621069, 0.005971306, -0.003079853, -0.03377461, - 0.01707494, 0.01833893, 0.020163853, -0.018716607, 0.00618432, - 0.013017775, -0.0017198038, 0.005862614, 0.009111604, 0.029240984, - -0.016299982, 0.0062332456, -0.0019468401, -0.010527516, 0.027101189, - -0.010247274, -0.040403318, 0.007390887, 0.018224057, 0.026116878, - 0.003141424, -0.005043581, -0.007556924, 0.0027748346, 0.011622308, - -0.0070768795, -0.014416207, -0.010723191, -0.004640683, 0.0067341505, - -0.013301783, -0.0024954737, -0.034513243, -0.008141903, 0.0070997407, - -0.0061859433, 0.01187348, -0.006329583, -0.01654847, 0.0013689492, - 0.0011020482, -0.0077394396, -0.018554596, 0.018611776, -0.012143899, - -0.018179951, 0.016998608, -0.008676762, -0.015212973, 0.0027539716, - -0.009657853, -0.012139725, -0.008481534, 0.007556653, -0.0015784926, - 0.019644018, -0.025397727, 0.0066102827, -0.02439064, -0.008384953, - -0.020140791, 0.038256492, 0.012855574, 0.009840121, -0.008364637, - -0.025520133, 0.0045452965, 0.029604098, -0.014737827, -0.007387153, - -0.018577553, -0.03525176, 0.026622962, 0.008245971, -0.013648381, - -0.018187054, 0.009557509, -0.013642533, 7.8484294e-4, -0.011770697, - -0.017148226, 0.0037275117, 0.019515775, -0.009937519, -0.022804273, - -0.03291085, 0.015290085, 0.0049874983, -0.01620841, -0.0065555214, - 0.010039412, 0.00199384, -0.012424269, -0.008236964, -0.0086998455, - 0.023251839, -0.014304714, -0.004066739, 0.015021688, -0.013964741, - -0.0066849347, 0.014179533, -8.9330424e-4, 0.0075757974, 0.0033552141, - 0.0029791105, 0.016999207, -0.0020429746, 0.026671018, 0.02879619, - 0.0016970194, 0.027644837, -0.01617931, -8.613754e-4, -0.012615473, - 0.010911106, 0.011604352, -0.0048779314, 0.005373592, -0.010723794, - -0.0069602327, -0.023374913, 0.012325391, 0.021042215, -0.019363156, - -0.005026668, -0.01682222, 0.028265622, -0.002259449, 0.013100801, - 0.0074536926, -0.013011132, -0.0042855022, 0.0065596257, 0.0026231157, - 0.012944508, -0.01833762, 0.013834109, 0.0168518, 0.023712473, - 0.024421958, -0.007001163, 0.014425497, 0.014171738, -0.053955723, - 0.0120100165, 0.014872907, 0.013588351, 0.016423248, -0.01698878, - -0.011308019, 0.004014048, 0.012759243, -0.0069404887, 0.029070359, - -0.018198684, -0.0019523677, -0.011469956, 8.8346955e-5, -0.0057272636, - 0.0038522892, -0.01693163, 0.023153301, -0.012488716, 0.004901155, - -0.004618842, 0.016011203, -0.015619308, -0.0329931, 0.015627887, - 0.02336699, 0.0011270772, -0.0104009565, -0.019650187, 0.004076239, - 0.014758038, -0.0033615835, -0.00370681, -0.0052501, -0.011901497, - -0.009554151, -0.036936555, 0.01559294, -0.003388216, 0.008580158, - 0.015374513, -0.0029100324, -9.0287696e-4, -0.0073509878, 0.0037871557, - -0.015919717, -9.989851e-4, -0.0061903098, 0.017086783, 0.013108295, - 0.0018268593, -0.002781392, -0.0069352067, 0.009422098, -0.024367131, - -0.02727554, 0.0022801496, 0.004742192, -0.025675224, -7.044727e-4, - -0.011746893, 0.008153139, 0.017732512, 0.025916968, 0.0011387442, - -0.020915532, -0.005414436, 0.0044702105, -0.013646828, 0.004973361, - 0.002340229, 0.024991512, -0.017193899, -0.016550269, 0.0076668444, - -9.3667634e-4, -7.2795554e-4, -0.019665109, -0.002700112, -0.01586032, - 0.004578323, 0.014937092, 0.0034105536, 0.025129575, -0.037713934, - 0.035644498, 0.018986894, -0.011098174, -0.031794693, -0.010501064, - -0.008498247, -0.006594323, 0.01159302, -0.019426052, 0.0021969127, - -0.01975327, 0.0072126486, 0.0038337759, 0.009719458, 0.0028948633, - -0.0072181374, 0.0037048669, 0.011960246, -0.0067647644, -1.6818795e-4, - 0.011902012, -0.0045589153, 0.0016339135, 0.0012110843, 0.0070210528, - -0.027043425, -0.0018823915, 0.0086067505, 3.4513755e-4, 0.008938085, - -0.0066776974, -0.007910443, -0.01711268, -0.021813674, -0.010642285, - -0.015553704, -0.026736699, 0.0016041736, -9.024107e-4, -0.0020579142, - 0.006529268, 0.0142324455, -0.011148263, -0.017611366, 5.719948e-4, - -0.018534519, -3.1664743e-4, 0.026774568, -0.001466816, -0.013946007, - -0.0060467077, -0.0065224837, -0.012455794, -0.0041295863, 0.006213716, - -0.027394386, -0.013390796, -1.9692701e-4, 0.010409348, 0.0034170412, - -0.007002604, 0.008474016, -0.0031258578, -0.017524267, -0.021969141, - -0.01309836, 0.01287774, -0.02916124, 0.026631506, -0.015836598, - 0.0013963766, 0.007550275, -0.011730763, 0.007967126, 0.013934567, - 0.010779005, -0.0038349302, -0.017000457, 0.025471138, -0.0075311675, - 7.127419e-5, 0.0056138625, 0.0068507604, -0.0022278663, 0.0077937725, - -0.01630992, 0.036441203, -0.0016215586, 0.017274601, 0.0072067115, - -0.00962057, -0.0056925532, 0.0096459165, -0.0066487156, 0.012327618, - -0.0030594014, -0.00387233, 0.020571118, -0.0013327616, -0.007788173, - 0.0015924294, -0.003230507, -0.0019375565, 6.145992e-4, 0.0061631138, - -0.0073991786, -0.02297635, 0.007309253, -0.0034591479, 0.032482795, - 0.0036119828, 0.020388972, 0.0057238834, 0.0060183024, 0.033674944, - 0.0030614124, 6.975832e-4, -0.004035313, 0.015094883, -0.034563217, - 0.0057873684, -0.007849884, -0.021150218, 0.0034758693, 0.037925236, - 0.014393093, 0.0043166755, 0.012989745, 0.001608116, 0.017212048, - 0.01795074, 0.015870629, 0.016403226, -0.014280837, -6.3096674e-4, - -0.018222317, -0.019716773, 0.023527473, 0.028027698, 0.010804023, - 0.024983127, 0.011942273, -0.007900797, 0.007539401, -0.0031578583, - -0.005009116, 0.030799327, -8.764098e-4, -0.008275251, 0.019341862, - 3.975045e-4, 0.020791022, -0.014455938, -0.004118572, 0.01006059, - -0.023040177, 0.018130824, 0.0058826217, 0.009757769, -0.009188396, - -0.011024827, 0.016678467, -0.021995373, 0.018225022, -0.009590334, - 0.009875405, -0.012164237, 0.016589196, 0.017281597, -0.018666333, - -0.0065204655, -0.011681559, 0.013236147, -0.02683686, -0.011313962, - -0.0010712198, -0.03266519, -0.0027494456, -0.026812054, 0.03301385, - 0.024594465, -0.018548457, 0.019513983, -0.0046362886, -0.031944998, - 0.010872897, -0.019011455, 0.01382423, 0.017981526, -0.002457343, - -0.0031223933, 0.010944974, 0.019823728, 0.010843015, -0.011260592, - -0.010405615, 0.004151469, -0.002212771, -0.022471204, 0.01205845, - -0.0108456975, 0.005603062, 0.00346045, 0.030189909, -0.0071757655, - -0.004479333, 0.017148254, 0.030787697, 0.011962773, -0.024457864, - 0.0032821654, -0.036200322, 0.021002827, 0.010807617, -0.009469301, - -0.0074491166, 0.009071582, 0.004717225, -0.012717511, 0.006475654, - 4.5746838e-4, 0.0062346817, 0.01952299, -0.020358462, 0.001923807, - -0.009094582, 0.010538545, 0.008693988, -0.021578133, 0.0050045936, - -0.010937417, 0.027925417, 0.012850556, 0.013834819, -0.004384065, - -0.026145887, 0.015894165, 0.01075042, -0.034523062, -0.013328269, - 0.013217402, -7.0012803e-4, -0.006873956, -0.007446329, -0.01464014, - 0.008359551, -0.008284977, -0.0029457205, 0.033266917, -0.0061837304, - 0.017696545, -0.004173813, -0.004759751, 0.0055916645, -0.011665558, - -0.010752221, 0.017900864, -0.024409994, 0.006063814, 0.012402256, - -0.019385027, -0.012486183, -0.020374153, -0.0033612584, -0.014794938, - -0.010018184, 6.198181e-4, -0.0044047167, 0.007179613, 0.0049182256, - -0.019807119, -0.0057004187, 0.0069805887, -2.623196e-4, -0.019257346, - 0.012947972, -0.03929386, 0.021816948, -0.0029987928, -0.010249667, - 0.011129708, 0.022212947, 0.008460688, 0.01398822, -0.0026604088, - 0.011290013, -0.002778709, 0.0024122794, -0.029326439, -0.015726073, - -0.012891178, -0.0027140058, -0.009281963, -0.017973738, -0.008904238, - 0.0017825149, 0.0022231145, -0.013556077, 0.014022172, 0.013892676, - -0.021585723, 0.007595919, -0.01888408, -0.015650464, -0.00505226, - 0.017449444, -0.022484453, 0.007370133, 0.0012440127, -0.02179371, - 0.013453375, -0.021252034, 0.004338196, 0.018487576, 0.0054554287, - -0.019877385, -0.0028346444, -0.013797405, 0.009682539, 0.011960984, - -0.0075987424, 0.033679914, -0.017167177, 7.125797e-4, 0.008230675, - -0.005729441, -0.0051353755, -0.001226782, 0.0077158725, 0.009358954, - -0.03546931, -0.013453925, -0.0010153197, 0.041483127, -0.0020424456, - 0.0026340294, -0.015601413, -0.0063485065, 0.01583742, -0.01139391, - 0.036736842, -0.031433746, 0.026415223, -0.0039470247, 0.005118649, - -9.154841e-4, 0.024625685, 0.0021632714, 0.017827163, -0.021533445, - 0.002322513, -0.024041807, -0.005162228, 8.2101783e-4, 0.01772494, - 0.008025384, -0.001085486, 0.0038581826, 0.014779876, -0.022198621, - 0.030164497, 0.018200394, -0.021941662, -0.026499238, -0.017183974, - -0.0050995727, 0.011969516, 0.0054049664, -0.028838813, 0.0148661835, - -0.023905799, -0.005111603, 0.010714318, 0.0042362213, -0.0051561478, - 0.006925232, 0.009295862, 0.024929846, -2.8208026e-4, 0.0073927995, - 0.0024765292, 0.00869996, 0.015017547, -0.025009017, 0.01228993, - -0.009121017, 0.005928299, -0.013590319, -0.03189581, 0.015907226, - 0.010714353, 5.3880405e-5, 4.9320224e-4, -0.031360064, -0.023626404, - -0.023404883, 0.019729942, 0.005211743, 0.01561728, 0.012957353, - -0.004404568, 0.0045547434, 0.019187784, -0.022004528, 0.0039523053, - 0.01463054, 0.004443323, 0.0074201, -0.013054626, -7.511433e-4, - -2.4560906e-4, 0.0041034445, 0.008813472, 0.0030558722, 0.016951928, - 0.014215363, 0.008739151, 9.739672e-4, 0.007038892, 0.020576231, - 0.011228754, 0.004297059, 0.016903708, -0.026742803, 0.006262272, - -0.0073897834, 0.012376635, 0.021363592, 0.0017607574, -0.0021285221, - -0.014880667, -2.4505885e-4, -0.008349607, -0.025659813, 0.0076910523, - 0.01043975, -0.025355566, -0.015859915, 0.012194679, -0.0011079948, - -0.0024877186, 0.011443388, -0.012280182, -0.01588428, 0.0156416, - -0.009112721, -0.004049723, -0.001933862, 0.0024943696, 0.009779212, - -0.0021338556, -0.014134081, -0.0033112327, -0.0024569652, -0.016329855, - 0.008598705, -0.009420241, 2.9958444e-4, 0.033401582, -0.0051619643, - -0.011018133, -0.007836209, -0.0071276575, -0.018989732, -0.006740478, - -0.020625867, -0.023656167, 0.0055675204, 0.02422485, -0.061727807, - 0.018962108, 0.019017225, -0.004049995, -0.013387279, -0.0068052635, - -0.014381532, 0.007770977, -0.024267837, -0.033573065, -0.0045141764, - -0.0013727035, -0.013808008, 0.013255403, -0.026751934, -0.0049163634, - -0.001058474, 0.02414512, -0.015158186, 0.008803936, -0.0017358626, - -0.004411538, -0.019780152, 0.022126189, -0.0048991744, 0.031115836, - 0.0017058131, -0.0037289811, 0.003651105, 0.020394001, -0.009922903, - 0.021254733, 0.032712243, -0.005862869, 0.014528882, -0.007697431, - 0.014020257, 0.035583854, 0.01727503, -0.021138055, 0.0025588078, - 0.008556277, 0.01827194, 0.0025327865, 0.01652512, -0.0025502488, - -0.007526791, -0.0019659565, 0.012358996, 0.033514388, -0.027073493, - -0.028065294, -0.04254788, 0.010776879, -0.022176052, -2.547993e-4, - -0.010297331, -0.006174759, -0.0061435318, 0.010038733, -0.017707286, - 0.04268521, 0.0055711516, -0.012992219, 0.022338629, -0.01065357, - 0.016885184, -0.015149868, 0.005176328, 0.0022840984, -0.014942914, - -0.0072404207, 0.009696873, -0.03667553, -0.009350052, 0.0148958415, - -0.00951251, -0.016789043, -0.0026372396, 0.0012010154, -0.008731021, - -0.0013405258, 0.017384265, 0.0064088856, -0.0042683845, 0.024298668, - 0.0094353305, 0.008230975, -0.016768768, 0.0047757556, 0.016758673, - -0.016904322, -0.0057604746, -0.028146852, -0.0060425517, 0.0036698668, - 0.019695168, 0.031843532, -0.017249428, -0.0015245453, -0.010956762, - -0.00388501, 0.0057705673, -0.039366264, -0.0155935865, 0.02363307, - 0.014455946, -0.0023021454, -0.004151052, 5.298681e-4, -2.472077e-4, - -0.007811044, 0.0146154575, 0.003677604, -0.013466377, -0.015942035, - 0.011550546, 0.0060251597, -0.032231513, -0.0066437065, -6.646497e-5, - 0.02088442, 1.4842789e-4, -0.018436031, 0.014651102, 8.1034534e-4, - -0.025453942, 0.009806425, -0.014434543, 0.009367451, 0.005297271, - 0.0075970115, -0.005248019, -0.009874065, -0.003437787, -0.013992978, - -0.004972231, -0.0013343217, 0.005891076, 0.048170693, -0.0094119795, - 0.018011268, 0.01821637, 0.010400709, 0.022028403, 0.017146261, - -0.004919844, -0.027416676, 0.008234495, -0.013263078, -0.022515228, - 0.018115524, -0.021623287, 0.023018574, 0.018048054, -0.005306216, - -0.0042141224, -0.007853522, 0.013105834, -0.008036088, -0.020892175, - 0.0017006134, 0.033186827, 0.014809257, -0.004888484, 0.005096506, - 0.005835801, 0.022775609, 0.008093774, 0.024315478, -0.020834573, - 0.017359708, 0.0083531095, 0.007538778, -0.027840089, -0.017032921, - 0.019291222, 0.026642963, 0.008329216, -0.017873876, -0.018969016, - -0.0075059407, -0.028873835, -0.009779865, 0.006089994, -0.005134219, - -0.014287283, 0.0019272446, 0.010289372, 0.009509245, 0.009645973, - -0.024041455, 0.013148129, 0.01330008, -0.003401423, -0.0070080752, - -0.0073112845, -4.1468485e-4, 0.011305243, -0.004646407, 0.025852649, - 0.0018378336, -0.008435937, 0.04222599, -0.011835766, 0.015926559, - 0.012185837, 0.009907576, 0.008589024, -0.019352995, 0.0015393936, - 0.007787531, -0.011715188, -0.012898846, -0.021313988, 0.0068845223, - -0.0027408998, 0.03331595, -0.019780222, 0.004122797, 0.024407767, - 0.009082283, 0.0163274, 0.01913172, -0.022855809, -0.002904601, - 0.01131232, 0.003281084, 0.007410617, 0.0080332905, 0.008467713, - -0.0068328762, -0.008552628, 0.019455522, -7.086213e-4, -0.02316708, - 0.02752177, 0.007116467, -0.03704515, 0.003937468, 0.0049530063, - -0.013771093, -0.029500598, 0.006998723, -0.0016648717, -0.0047142357, - -0.032543477, 8.4776874e-4, 0.0047598, -0.009980616, 0.018543899, - -0.01888728, -0.0054052905, 0.0032533905, -0.015961172, -0.029285142, - 0.007208293, -0.03453167, 0.01569399, 0.015313095, -0.022719061, - 0.018680722, 0.004641609, 0.0155583685, -0.009904558, 0.01009857, - -0.012188412, 0.0051422063, -0.0059236605, -0.004054321, -0.0016555537, - -0.038095094, 0.0070173065, 0.0021077099, 0.014141339, -0.008941649, - 0.009152693, 0.0029301278, 0.015329505, 0.0013329488, -0.017401882, - -0.0045999316, 0.009686778, -5.9892435e-4, -0.04252215, 0.029607102, - -0.006868568, 6.389188e-4, 0.0063893013, 0.023047645, 0.012058985, - -0.0019709098, 0.0065957033, 0.013381866, 0.012990782, 0.008328471, - 0.011038068, 0.023140732, -0.00876603, 0.018690001, 0.020333618, - -0.012452991, 0.0091710305, -0.0024519528, -0.012720962, -0.036916327, - -0.027587093, 0.0061661378, 0.00974453, -0.0105677275, -0.007529962, - -0.011218446, 0.03160829, -0.0078349775, 0.0206815, -0.010382174, - 0.013426911, 0.006084247, 0.023054784, -0.010419604, -0.0061032493, - -0.026760403, -0.009001482, -0.0011061539, 0.003912581, -0.0022101016, - -0.023807114, -0.003880383, -0.010447736, 0.01651589, -0.023032414, - -0.034984794, -0.0032486517, 0.03174551, 0.0030321996, -0.008827902, - 5.618136e-4, 0.02415604, -0.011108927, 0.013853589, 0.0071676387, - -0.014784, 0.0040522595, -0.03471766, -0.01688837, 0.024688818, - 0.012427227, -0.0065489723, -0.022467071, 0.0030509343, 0.006933338, - 0.0027877789, 0.0057380777, 0.020628953, 0.0013837413, 4.724585e-4, - 0.0047815843, -0.010838926, 0.015338057, 0.014077809, 0.0022391644, - -0.0057969, 0.0012519052, -0.003060504, 0.018834516, -0.024132997, - 0.006344512, 0.008390004, 0.011859947, 0.0022066622, -0.027721686, - -0.0086428765, -0.012138164, 0.015106333, 0.031545073, 0.013160793, - -0.0026981481, -0.014443232, 0.0015451235, -0.0217501, -0.006858189, - -0.012299177, -0.0076062605, -0.0018615518, 0.015450416, -0.017082572, - 0.04136357, 0.0024294169, -0.0121908095, -4.6704564e-4, 0.0023541683, - -0.002640555, -0.0039408887, -0.0022042224, -0.020254165, 0.0078090723, - -0.014951652, 0.019332608, 0.008355269, -0.0065434068, -0.0040090447, - 0.0015089713, -0.009449711, -0.013414328, -0.006038441, -0.011058484, - 0.008587809, 0.015257038, 0.027121428, 0.0017013364, -0.011670676, - -0.02323021, 0.013131909, -0.019159611, -0.033764556, -0.0029714643, - 0.004045256, 0.009910204, -0.034274053, -0.00771208, 0.02060004, - -0.0035283915, -0.005554821, 0.03602715, 0.009827353, 0.011378724, - 0.006547846, 0.0051491484, 0.0099386545, 0.017175686, -0.012612162, - -0.028212413, 0.0056855744, -0.0166091, -0.010383927, 5.6962937e-4, - 0.02267313, 0.035362773, 0.014312015, 0.0031067154, 0.026267024, - -0.014103102, -3.1973337e-4, 0.016258027, -0.007116879, -0.0069271564, - -0.018064298, 0.017987115, 0.016906746, 0.00131041, -0.012708083, - 0.0043664468, 0.01659722, 0.012021333, -5.595974e-4, 0.009681351, - -0.009174691, -0.008617253, 0.005353133, 0.033689138, 0.021998493, - 0.009113619, 0.021852471, 0.03305894, 0.004863306, -0.027157035, - -0.013185586, 0.015096698, 0.0035606942, -0.026978984, 0.012498553, - -0.0035527344, -0.007465034, -3.331478e-4, -0.014633123, 0.018405635, - 0.015133065, -0.011662324, 0.030476933, -0.0011217945, 0.0051523163, - 0.014661294, -0.0012725726, 0.0062150187, -0.018715682, -0.012464349, - 0.027654646, 7.6091586e-4, 0.016419599, -0.007563758, -0.007501326, - -0.017093273, -0.0011682615, -0.0030940438, 0.014596064, 6.7454093e-4, - 0.014501533, 0.012723026, 0.023990186, -0.018455112, 0.010583642, - -7.453786e-4, 0.009111581, 0.0077292584, -0.010356086, -0.009061338, - -0.0035933233, -0.002160938, -0.0052251387, 0.011837446, 0.009960655, - 0.0041583357, 0.013465655, -0.01053742, -0.018863602, -0.0013896578, - 0.0040987395, 5.036283e-4, 0.012264575, -0.011847973, -0.018820066, - -0.019324593, -0.01926004, 0.002631326, -0.0035372395, 0.017435918, - -0.0044519696, 0.008257639, 0.030403167, -0.032599695, 0.03582479, - 3.2546764e-4, 0.006966457, 0.010595955, -0.026475994, 0.031218011, - -0.0075142975, 0.011030793, 0.0013120702, -0.0030543364, 0.010991066, - 0.0073353425, 0.033532035, 0.023961833, 0.030280884, 0.010089261, - -0.009940604, -0.0112924045, -0.03280502, -0.014182268, 0.0046784566, - 0.006650493, -0.015260722, -0.0021710014, -0.0067516514, -0.003161273, - -0.0056815185, 0.0029158543, 1.5472725e-4, -0.01851211, -0.015261059, - 0.001652599, 0.0041607707, -0.014998044, -0.007949451, -0.01474096, - -0.023122253, -0.02322437, 0.005253434, 0.016202515, 0.021309532, - -0.017958285, -0.0053672213, -0.020906916, -0.010847957, -0.023946093, - 0.007996014, 0.010234718, 0.0037123463, 0.019957704, -0.008235954, - 0.011367896, -0.0034192703, -0.025392964, -0.0071047894, 0.030656174, - -0.004970873, 0.00958492, -0.008140986, -0.0317665, 0.021716539, - 0.020341406, -0.01690684, -0.016900575, 0.018673616, -0.0037053928, - 0.009312631, 0.013036896, -0.009436598, 0.027148629, -0.009618511, - 2.3510202e-4, -0.032248106, -0.027112339, 0.006871811, -0.002971587, - -0.020709658, 0.044347353, -0.03623335, 0.028920384, 0.013289103, - -0.022099325, 0.010811734, 0.02135841, 0.026082993, -0.0056741154, - -0.0033307169, 8.6988613e-4, 0.015858797, 0.014133999, -0.003956113, - 0.013639614, 0.0022869345, 0.017471746, 0.019420309, 0.016057145, - -0.017488342, 0.0075231115, -0.021635365, 0.007843393, -0.035017014, - 0.0152515415, -0.012784936, 0.0050107385, -0.015334437, -0.0058004637, - 0.020736445, 0.0021938067, 0.004031501, -0.0064849677, 0.015459888, - 0.014883534, 0.033724207, 0.0053241584, -0.006769925, -0.00468106, - 0.013347854, -0.019308053, -0.0071627437, -0.021717804, 0.02291191, - 3.68821e-4, 0.026071988, -0.015992176, 0.0047920877, -0.029063951, - -0.019496497, 0.016234685, -0.026519438, -0.005029666, 0.009100086, - 0.013747464, -0.008530687, -0.0027589141, 0.012365476, -0.0021562285, - 0.007852862, -0.023894463, -0.010796516, -0.0076858746, -0.002368292, - 0.0074238908, -0.018346846, 0.0060002236, -0.010479683, -0.02878141, - 0.012603878, -0.017811269, -0.025556685, -0.003285144, -0.011624367, - -0.0059508304, 0.024948316, 0.0087867705, -0.007971435, 0.013504135, - 0.014640502, 0.0067494246, 0.004241182, 0.0020967294, -0.021821009, - 0.00452871, 0.03025303, 0.016853418, -0.0022942412, -0.00970696, - -0.024382373, -0.010173479, 0.0365025, 0.0047743074, -0.0044351346, - -0.021065097, 0.0029413635, 0.019312507, -0.03421799, 0.006967266, - -0.004969133, 0.025165249, -0.024850013, -0.0124707315, 0.009772218, - 0.0044752858, 0.012589673, 0.005773973, 0.009448138, 6.1575056e-4, - -0.016721271, -0.02598227, 0.02117432, 0.0077701528, 0.020319782, - 0.010575884, 0.021941738, 0.028646704, 0.0034774693, -0.012797532, - 0.009799433, 0.023230996, 0.003247984, 0.0048329853, 0.00760575, - -0.039752014, -0.0023116886, -0.0105072735, 0.005130364, -0.012246519, - 0.009740811, 0.0027233723, 0.008944233, -0.020358142, 0.0053938325, - 0.0032621399, -0.006236027, 0.010005171, -0.02341419, -0.010310079, - -0.0050277906, 0.01103739, -0.009223585, -0.0130231595, 0.022118106, - 0.018020855, -0.011879959, -0.0024172352, -0.030015519, -0.0015598653, - -0.0044912435, 0.023805061, 2.2789315e-4, 0.01835873, 0.025118299, - -0.0048805163, 0.018388936, -0.0069384705, 0.0049549197, -0.01911559, - -0.017520009, 0.002700903, 0.0019410301, -0.017225714, 0.017043814, - 0.015300499, 0.020455714, 0.0073362067, 6.1018305e-4, 0.026325269, - 0.010620081, 0.028452832, -0.0060815983, -0.0029569871, 0.01321243, - 3.127784e-4, -0.028969813, 0.014854908, -0.0051585566, 0.004026172, - -0.017548157, -0.044411056, 0.013514576, -0.008670571, -0.0035277626, - 1.8575267e-4, -0.010575308, -0.009320065, 0.0114561245, 0.01187425, - 0.0015425779, -0.0065718275, 0.018652031, 0.0048738588, -0.0069922674, - 0.010419601, 0.011718695, -0.005052914, 0.023195263, 0.006010553, - 4.0332036e-4, 0.029937992, 0.004506184, 0.012927001, 0.011913682, - -0.017667675, 0.016377684, 0.010667528, 0.0016493994, 0.01827661, - 0.009872427, -0.009237725, 0.0184566, 0.0029372035, -0.014178477, - -0.023727704, 0.0134043675, 0.008824336, -0.002537627, -0.001651893, - 0.0055304407, 1.7043983e-4, 0.008896016, 0.022862995, -0.0041014818, - -7.946948e-4, -0.0013682161, 0.0046803914, -0.024077771, 6.7391194e-4, - -0.019642232, -0.009207826, 0.009584416, 0.006502862, 0.020017458, - 0.01619018, 0.00934842, 0.0045585376, 0.0074719545, 0.0014199527, - -0.0059533, -0.012332229, 0.0058725495, -0.004140923, 0.0224284, - 0.026591294, 0.0025449907, 0.0015656574, -0.008840974, -0.006087428, - 0.021341287, 0.0025830024, 0.00810046, 0.017734969, 0.0011656383, - 0.021725513, 0.041712414, 0.020208685, 0.0010523299, -0.014832948, - 0.0089181755, -0.0018888854, 0.018590698, -0.01686492, -0.011042603, - -0.0063901925, -0.023227235, -0.012568164, 0.010273318, 0.0046146875, - -0.0044774516, -0.005314026, -0.009556771, 0.0055551515, -0.0012169093, - -0.010035377, -7.27786e-4, 0.014388254, 0.005337927, 0.005622742, - -0.002392188, 0.008051213, -0.011025631, -0.019150259, -0.01186739, - 0.002788125, -0.006181103, -0.009608096, -0.023660494, 0.0043088836, - 0.0055756425, 0.007386289, 0.005741659, 0.0054039424, 0.0019839793, - -0.0038196952, 0.022987591, -0.005183786, 0.0106187435, 9.0710615e-4, - 0.026213987, 0.0027214119, -0.0017007068, 0.02213694, 0.01199425, - -0.009244815, -0.0043351986, 0.0030361575, -0.01754333, 0.011534793, - -0.006399222, 0.008647187, 0.0056778206, -0.0014590294, -0.019766558, - -0.007243937, -0.0018861815, -0.015091979, -0.015055863, 0.013726143, - -0.0045038383, 0.030111821, 0.008868479, -0.0019887385, -0.008880795, - 0.012332759, -0.02034104, 0.017233947, -0.015246829, -0.010438569, - 0.008457132, -0.017120384, 0.001013526, -0.015348714, -0.0072220354, - -0.016191991, 0.002631567, -0.013628169, 0.014466801, -0.011401523, - 0.026274463, 0.0010534782, 0.023931505, -0.020188706, -0.015450693, - -0.019751064, 0.009045027, -0.02864164, -0.0058597233, -0.008016056, - -0.008616359, 0.0031415888, 0.007514668, 0.016684838, -0.011112748, - 0.0036216944, -0.008930385, 0.0018400394, 8.1779034e-4, -0.007016906, - 0.0051239682, 0.016375378, -5.2431034e-4, -0.001984925, 0.0054094987, - -0.018220475, 0.02448275, 0.0014532584, 0.01773622, -0.019852242, - 0.013842869, 0.024630731, 0.019899528, -0.02860304, 0.00938452, - -0.011944757, 0.00881294, -0.019554675, -0.016410124, -0.0046545225, - -0.007048907, 0.005937167, -0.0018915774, 0.020516355, 0.01306486, - -0.016902087, -0.027359337, -1.7511343e-4, -0.002196174, -0.0040029194, - -5.2200357e-4, -0.009412686, -0.013577787, -0.0057037515, 0.006008972, - 0.034375735, 0.01348192, 0.018455215, 4.4909958e-4, -0.02650594, - -0.0052757375, -0.0109101655, 0.021077935, 0.010936018, 8.0591923e-4, - -0.004091092, 0.024675326, 0.0017972438, -0.007512885, -0.015935969, - -0.006698721, -0.008891696, 0.009696322, -0.008666661, 0.00192828, - 0.0058822613, 0.0011143866, -0.005593743, -0.022479592, 0.0044911895, - 0.0037340329, 0.015685631, 0.0016510962, -0.018199924, 0.007525125, - 0.040198244, -8.43314e-4, 0.012171204, 0.0037429086, -0.016848827, - -0.0074368464, -0.007838887, 0.007289309, -0.0079733655, -0.0060810526, - 0.020513171, -0.007829306, -0.03065045, -0.007978196, 0.029140277, - 0.022383071, 0.034526877, 0.014004596, 0.009046407, 0.011214227, - 0.0073236544, 0.0067446753, -0.001524001, 0.029361824, -0.0043019094, - 0.0113228345, 0.009523458, 0.006604939, 0.040638003, 7.006088e-4, - 0.016081661, -0.008791841, -0.0016666088, -0.0015515204, -0.002449343, - 0.015477197, -0.017145282, 0.02152231, -0.0052388473, -0.013592174, - 0.034162883, -0.003566339, 0.03976714, -0.011494141, -0.012449796, - -0.006125516, -0.01729332, 0.01162168, -0.0018516515, -0.0067493203, - 0.019893998, -0.04257975, 0.0070648477, -0.0025646682, -0.007963454, - 6.871045e-4, 0.01483549, 0.010935748, -0.008549694, 1.20414064e-4, - -0.0041572372, -0.018746462, 0.008638998, -0.0025742652, -0.011058792, - -0.016282115, -0.0018290515, -0.022906987, -0.030375848, 0.009365956, - -0.029813495, -0.045225903, -0.015417123, 0.008972833, -0.0067197205, - 0.03383019, -0.0121955825, -0.012619855, -0.011671564, 0.009590768, - 0.008557047, -0.010500289, -0.009283914, -0.008506701, -0.006799623, - -0.009810711, 0.013797299, -0.0151062915, 0.006189371, 0.009262713, - -0.016328435, -0.005126238, 4.2451444e-4, -0.0070454525, -0.006252961, - 0.013415298, 0.011384965, 0.022401733, 0.0049823946, -0.008002977, - -0.017102605, 7.7384076e-4, 0.018773189, -0.032674816, 0.011856802, - -0.0018856559, 0.014137484, 0.003838463, -0.0058506154, 0.015893124, - 0.01806342, -0.027222132, 0.0061333324, 0.026249742, 0.0067371605, - 0.0075390707, -0.01718796, 0.012764142, 0.011538946, 0.010303323, - -0.018128682, 0.008891743, 0.011675817, -0.0021004553, 0.021554872, - -0.014716158, -0.028774, 0.021128949, 0.026737612, 0.012804697, - -4.5512745e-4, 0.0127149485, -0.0033254276, -0.012267658, -0.019329472, - -0.0020663452, -0.01503261, -0.003911864, -0.0043192366, 0.020073762, - -9.6342794e-4, 0.013346227, 0.010674056, -0.0075775725, -0.016150622, - 0.020323563, 0.017043546, -0.0062042195, 0.011254379, -0.015545249, - 0.013470052, -0.013603269, 0.006658102, 0.017514747, -0.002700797, - 0.029126257, 7.774202e-4, 9.977578e-4 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.008158258, -0.02167768, -0.0018500275, -0.024572767, -1.5260807e-4, - -0.007913789, 0.017270284, 0.017474856, 0.021857798, 0.0381091, - 0.0018105854, -0.0032660533, 0.015726598, 0.010585344, -0.01722171, - 0.009406512, -0.02022283, -0.006413218, -0.012001382, -0.021008478, - 0.035444826, -0.004392577, 0.0035952376, 0.008249728, -0.022279238, - -0.013401027, 0.004827244, -0.004653996, -0.0049558347, -0.017813377, - -1.794929e-4, -0.019966865, 0.029935198, -0.010271958, 0.0012449943, - 0.009679836, -2.5555643e-4, -0.007829369, 0.036053464, 0.032223854, - 0.0042120707, 0.008651613, 0.001911829, 0.012311276, 0.0035549924, - -0.006443618, 0.00986009, 0.0469467, 0.04224752, 0.010879962, - -0.007636861, -0.026657641, -0.0043797065, 8.362676e-4, 0.0022889194, - -0.0070468844, -0.0038919332, -0.003966452, -0.029175552, -0.0017915987, - -0.003359384, 0.02262652, 0.02122762, 0.0066936617, -0.040065836, - 0.003350678, 0.014768016, -0.01234495, 0.015520001, 0.0086986525, - -0.013885045, 0.009154102, 0.030153578, -0.001451216, 0.0115348045, - -0.0065078638, 0.011081615, -0.0039404277, 0.010922375, 0.010733163, - 0.004924092, -0.012414016, 0.0023479986, -0.0010110732, -0.0017725425, - -0.011769342, -0.0030534044, -0.01828752, -0.014911045, -0.041304547, - -0.01852941, 0.00785018, 0.014155024, 0.019452395, -0.0038362085, - -0.0034845744, -0.0026013018, -0.004552365, 0.007018663, 0.025709432, - -0.021607153, -0.029356541, 0.0047890143, -0.0052816942, 0.026062641, - 0.022645677, 0.028085494, 0.004625794, 0.008080446, 0.052622166, - 0.007704439, 0.008667482, 0.007958833, -0.02183893, -0.006751503, - -0.0059120627, -0.003333367, 0.0030765552, 0.0012911607, 0.0124927005, - 0.018199328, -0.0028398712, -0.005344961, 0.025205381, -0.016164089, - -0.011395743, 0.0052868295, -0.01563795, -9.370448e-4, -0.0031342695, - 0.021221913, -0.0026909108, 0.014658615, 0.0058785086, -0.0080771, - 0.0062672794, 0.004846809, -0.010606113, 0.02999375, 0.031125395, - 0.003919305, -0.011625248, -9.738269e-4, 0.0020958183, -0.0152677605, - 0.021001391, -0.011586909, 0.017671958, 0.0022538214, 0.013467473, - 0.013012955, -0.016501134, -0.011722763, 0.0019420858, 0.007820589, - 0.009895856, 0.011764678, 0.016133923, 0.023563776, -0.0096394075, - -0.004540855, 0.0071206065, -0.023433916, -0.024017747, 0.0027540785, - -0.0367201, -0.010439071, -0.009985533, -0.010203155, 0.016726512, - 0.008221544, -0.021595249, -0.0094052255, -0.005952004, -0.001942196, - -0.013349438, -0.014744978, 0.009690588, -0.019755552, 0.0060554757, - 0.0055753486, -0.0046739643, -0.0026623532, 0.03233231, 0.009322504, - -0.022285303, -0.025838101, -0.009373325, -0.02144606, 0.003724678, - 0.009058047, 0.014225237, -0.0036226558, 0.015568734, -0.00859873, - -0.023227166, -0.004723683, 0.026883835, -0.0028981054, 0.03269051, - 0.0052447966, -0.015452013, 0.025221188, -0.009674776, -0.011026929, - -0.009673889, -0.008919329, -0.011201759, -9.127931e-4, 0.0155943, - 0.03672576, -0.012616682, -0.023725595, -0.017570868, -0.024375424, - -0.017427199, 0.0044781566, -0.008930773, 0.035012133, 0.0070865634, - -0.007381236, 0.017565386, -0.0035232888, -0.001211452, -0.019414902, - 0.024566866, -0.0044868737, 0.0029470404, 0.0035338497, 0.016115041, - 0.004396098, 0.013946199, -0.0067542, -0.0010829404, 8.3845377e-4, - 0.020205952, 0.036334287, 0.02508833, -0.009965429, -0.018591063, - 0.0013842195, -0.021732463, 2.2007538e-4, -0.004273067, -0.031251196, - 0.012219255, -0.008637397, 0.030148664, 0.0148556, -0.018027397, - 0.0068271277, -0.0060253697, -0.0014159501, 0.011039003, 0.016431611, - 0.0028677478, -0.0021129856, -0.0029466911, -0.01203838, -0.0011353483, - 0.025532484, 0.005316296, -0.011531678, -0.012084225, -0.010992655, - 0.014717326, 0.0129945, 0.022413244, 0.0074987286, -0.010110728, - 0.024927152, 0.0036129307, 9.478491e-4, -0.036125638, -0.004987212, - -0.013186823, 0.014612306, -0.030978974, 0.02465003, 0.014217394, - -0.004272215, 0.0025650933, -0.017156247, 0.01291735, 0.0012293584, - 0.018420598, 0.015098385, -0.02101858, -0.01080278, 0.0055755246, - -9.0435875e-4, -0.018332528, -0.0042788554, -0.016560238, 0.006523341, - -0.009058239, -0.0038275183, -1.1628482e-4, 0.015106981, -0.009406196, - -0.018842513, 4.7976707e-4, 0.0018682146, 0.010159911, 0.029685782, - 0.009627518, 0.0052095996, 0.017414823, 0.010378574, -0.0054955557, - -0.016885106, 0.002678883, 0.026867844, 0.040008824, 0.013166892, - -0.018931558, 0.025517805, -0.009702806, 0.013310339, -0.009394968, - -0.017873399, -0.013368338, -0.011372469, -0.0053511257, -0.008083457, - -0.010594023, 0.023320474, -0.0036783963, 0.01250672, 0.013058571, - 6.3565024e-4, -0.0033232286, -0.022758583, -0.0043442245, 2.7251685e-5, - -0.011474438, -0.032274533, 0.010760169, -0.012546683, 0.010158958, - -0.008190341, -4.140626e-4, 0.016250456, -0.017030852, -0.004744006, - -0.029435763, -0.0013250429, 0.011601503, 0.0045035346, 0.008688015, - 0.013190241, -0.0019041257, -0.01422774, 0.032130346, -7.389544e-4, - 0.001254001, 0.032739803, -0.008730617, -0.0037042696, 0.015161484, - 0.0074040317, 0.027001666, 0.006326205, 0.041530404, 0.007796943, - 0.0053577414, 0.0016813065, 0.037525415, -0.0055664866, 0.0059378333, - -0.016172465, -0.022156999, 0.0042501837, 0.016010534, 0.011260796, - 0.028638696, -0.0066517233, -0.012851193, 0.031139258, -0.010075834, - -0.010135168, 0.030907163, -0.011563001, 0.0027367647, -0.012058752, - 0.021297032, -0.0041835844, 0.009894015, 0.009423811, 0.014335051, - 0.015466694, -0.014488082, 0.032478735, -0.009563097, -0.0034693233, - 0.023424005, -0.011779001, 0.0222202, -0.01323368, 0.03670782, - 0.003957159, 0.00642115, 0.026982497, 0.03022701, 0.0074693086, - -0.009840411, -0.004764147, 0.009029383, -0.0073649916, -0.0059391446, - -0.007959012, 0.0049688695, -0.007151058, -0.012760828, 0.0066426266, - 0.03174466, -0.029764099, 0.017358018, -0.0074932906, -0.009339535, - 0.004732348, 0.018128233, -0.009048712, -0.0142821465, 0.015693866, - 0.007213137, 0.0012475448, -0.004339438, -0.02117119, -0.003816732, - 0.004569668, -0.0066186916, 0.015634494, 0.030968152, -0.0012416125, - 0.0149891, 0.021496538, -0.008958783, -0.010740164, 0.01261371, - -0.016029062, -0.007974365, -0.0064348048, -0.009370129, -0.005489867, - 0.0045935865, 0.0017174331, -0.005463766, -0.011119712, -0.013851963, - -0.021348396, 0.006903946, -0.003370553, 0.002690304, 0.0014813517, - 0.008631135, 0.02647159, 0.0064323884, -0.004919358, -0.008151801, - -0.013702248, 0.031146908, -0.0030909216, 0.009589994, -0.005515701, - -0.0091285175, -0.0022789296, -3.625367e-4, -0.0044123176, 7.574135e-4, - -0.0024999592, 0.025825098, 0.042706087, -0.0244267, 0.016632369, - 0.01679255, -0.014124177, 0.008820022, -0.021269463, 0.009064041, - -0.018021306, -0.0051989304, -0.008499125, -0.009232682, 0.0022003355, - -0.014469572, 0.015052731, 0.03760839, -0.0144939935, -0.0049986695, - -0.009160499, 0.014965967, 0.013531967, 0.0046799867, 0.006611692, - 0.009807554, -0.011080357, 0.03583913, -0.001678953, -0.0021857426, - 0.024005855, 0.00292226, -0.016415868, 0.017493399, 0.0097110355, - -2.3944576e-4, -0.011445234, -0.0062499144, 0.019252462, -6.484678e-4, - 0.0069419434, 0.01249332, -0.028844189, 0.0062373294, 0.00673093, - 0.0017599092, 9.911355e-4, 0.0039441595, 0.0047070305, 0.01812321, - -0.017993607, 0.038393874, -0.008139285, 0.031526588, 0.004114366, - -0.0022450797, -0.022143975, -0.009559134, 0.025082393, -0.017791916, - -0.013956211, -0.0024202608, -0.003928159, -0.012292619, 0.021239588, - -5.914431e-4, 0.0043274052, 0.013909568, 0.010832417, -0.020813037, - -0.025080463, -0.0047120857, -0.04345087, 0.021527775, 0.01651712, - -0.01424173, 0.009752474, -0.009588199, -0.01764448, 0.013592648, - -0.0138921235, 0.0037046426, 0.005980646, -0.021628488, -0.0026675588, - -0.008139215, 0.024289925, 0.0072804084, 0.015166092, 0.015533321, - -0.026750054, -0.031436335, 0.0025855538, 0.023182312, -0.019749146, - -0.03181212, -0.014670044, -0.0015448023, -0.03322606, -0.0033853124, - 0.018887337, 0.006230297, 1.2321274e-4, -0.026166946, 0.0042837383, - 0.032355785, -0.030658115, -0.01852327, -0.016045766, -0.012177066, - -0.0030557849, -0.01888583, -0.041987326, 0.021858932, -0.011383194, - 0.0066786874, 0.004420727, 0.0057020816, 8.474918e-5, -0.012344081, - 0.0035413255, -0.012263522, 0.045819864, 0.027680626, 0.006484744, - -0.008178252, -0.0050947946, -0.023548556, 0.009921092, 0.02891296, - 0.011277708, 0.011051897, -0.012228486, -0.013445601, -0.011077522, - 0.0021125649, -0.012392824, 0.009648321, 0.027222062, 0.0040606773, - 0.0123141995, -0.006982744, 0.0036809333, 0.010281166, -0.018195799, - -0.0038906953, 0.01658495, -0.014074716, 1.5169404e-4, 0.03728773, - 0.009701206, 0.019104699, 0.0031959072, -0.0017089985, -0.009601479, - 0.018140689, -0.015727848, 0.013582023, 0.029203067, 0.0039485777, - -0.011508608, 0.0069022137, 0.029571576, 0.00883315, 0.021143638, - -0.033674743, -0.005125333, 0.00728747, -0.025111092, 0.003042081, - -0.013711796, 0.01191957, -0.013974752, -0.00971065, 0.0027469145, - -0.0031023081, 0.0020133415, 0.0049365475, 0.007764213, 0.006065178, - 0.007415663, 0.03284733, -0.025837244, 0.00519291, -0.020534206, - -0.007779123, 0.0022108466, 0.008542804, -0.0021973858, 0.010279591, - 0.012459218, -0.008843241, -0.019177144, -0.025428474, -0.0029119093, - 0.0050454224, -0.02013933, -0.022276336, 0.04103584, 0.003257848, - -0.0261675, 0.003718125, -0.025275405, -0.010787767, 0.0012646136, - -0.010759747, -0.0016205363, -0.0144033665, 0.003029775, -0.0038395042, - 0.00933805, 0.009632888, 0.02968764, -6.174257e-4, 0.011235775, - 0.006649333, 0.013791404, -0.0010887256, 0.016731298, -0.006417038, - 0.01561759, 0.040370334, 0.0056882966, 0.016087161, -0.03168652, - -0.0071016415, 0.0145608, 0.0010062226, 0.006419846, -0.006679453, - -0.015290447, -0.004354433, 0.031176569, 0.0075840456, -0.012066935, - -0.006336413, 0.0035358607, 0.02993633, 0.01742226, -0.008828948, - 0.0067332606, -0.023784183, -0.028630644, 0.0075626955, -0.012602576, - 0.00559989, 0.008139728, 0.010226855, 0.013135632, -0.016281983, - -0.004766384, -0.0050674574, -0.0072116917, -0.015902087, -0.016629638, - 0.01103294, 0.03175537, -0.020694708, -0.01022131, -0.001503993, - 0.017919598, -0.011653963, -0.029215567, -0.012581082, 0.0010423666, - 0.02416161, 0.01703526, -0.02636826, 0.017282592, 0.014497275, - 0.02234713, -0.005412551, 0.009169211, 0.016701, -0.03454619, - 0.0051732017, 0.02120768, 0.01701566, -0.02454097, -0.021878958, - -0.0019849257, -0.01139046, 0.013840048, 0.012243142, 0.008505354, - 9.2941377e-4, -9.132756e-4, -0.02766457, -0.009666068, 0.004112456, - 0.009293765, 0.011543294, 0.0073326468, 0.040001873, -0.0025704636, - -0.009211976, -0.00895062, -0.009722297, -0.0047030966, -0.013457886, - 0.0043976386, 0.016638719, -0.006718256, 0.00418954, 0.029653214, - 0.025359504, 0.01995643, 0.0023880182, -0.024279092, 0.005893343, - 0.0059015756, 0.011736525, -0.012439445, 0.035801336, -0.010066548, - -8.424911e-5, -0.004875826, 0.018905971, -0.0068861116, -0.011512742, - 0.0014991616, -0.019419432, -0.006487839, -1.0492109e-4, 2.0215973e-4, - -0.010379534, -0.010137505, -0.033328563, -0.031630766, -0.0071766805, - -0.006259792, -0.0134096015, -0.012720062, 0.014598721, 0.0016907078, - 0.004792315, 0.022587156, -0.005502576, 0.0040809223, 0.0053033214, - -0.031471238, -0.02154498, -0.009701929, 0.026100658, -0.018803861, - -0.023444135, 0.026128631, -0.018078791, -0.011770082, -0.003254471, - -0.012643067, -0.008915524, -0.023107924, 0.0040549915, 0.0011302044, - 0.014661878, -0.0035481486, -0.002903754, 0.01348421, -0.0377166, - 0.01768171, 0.0024523623, -0.00849373, -0.004516568, -7.821027e-4, - 0.024695573, 0.03421595, -0.0031381473, -0.017838754, 0.01002311, - 0.020402838, 0.0065617794, 0.028560882, -0.011848646, -0.021989988, - 0.016444221, -0.010128036, -0.02886699, -0.008540576, 0.015625536, - -0.029162364, -0.0032922153, 0.03778989, -0.018570391, -0.009986806, - -0.010599006, -0.0033603122, -0.012846012, 0.021333888, 0.022849025, - 0.0039821407, -0.0013303207, -0.0081550535, -0.028785529, -0.012611779, - -0.021993926, 0.009315122, 0.0069331317, 0.015980113, -0.0105431555, - -0.009786674, -0.006249959, 0.0048232996, 0.010410962, -0.011632173, - -0.01669109, -0.0067960094, -0.030519081, 0.0024686952, -0.02081655, - 0.03137441, 0.0066345027, 0.020188285, -0.01150949, 0.0033278898, - 0.007776522, -0.0023207208, -0.0024593112, 2.5214104e-4, -0.020271447, - 0.006417558, 0.011929503, -0.007207676, -0.0076455656, -0.01870444, - 0.012387078, -0.0072958632, -0.021809313, 0.0077405483, 0.001682025, - -5.639596e-4, -0.032329317, 0.0036854113, -0.013494905, -0.010812379, - -0.0065383995, 0.029081399, -0.015288661, 0.0152638685, 0.007490375, - 0.0025091867, 0.049177688, 0.00976205, -0.004537249, -0.009059755, - 0.015075136, -0.0048117246, 0.016763354, 0.0057893074, -0.010558583, - 0.0011313278, 0.015033599, -0.0050171153, -0.023019973, 0.0063312175, - -0.005507522, -0.004687471, -0.022128677, 0.0053971987, -0.0010627487, - -7.360936e-4, -0.03209869, -0.0013073268, -5.251376e-4, -0.012756632, - 0.002960876, 0.0066581485, 0.015162184, -0.014533824, -0.0038017975, - -0.009129397, -0.012222562, -0.013404244, 0.012994273, 0.016611042, - 5.5496086e-4, 0.017455548, -0.0054069525, -0.01731346, 0.012772299, - -0.022327961, 0.008958324, -0.0051110666, 0.009863241, 0.01349625, - -0.010228601, 0.0039911983, -0.016439896, -0.013991619, -0.01665987, - 0.021165254, 0.015472234, 0.010337996, -0.008231968, -0.0139437625, - 0.024477124, 0.0047375048, -0.004631287, -0.012473607, -0.0041774097, - 0.008005556, 0.012060159, -0.016561618, -0.007026472, 0.00883039, - -0.010217927, 0.0013683045, 0.030030347, 0.001802139, 0.020069353, - -0.019076558, 0.013970716, -0.022022696, -0.024283443, 0.0010967277, - -0.013611947, 0.022541732, -0.02580866, 0.0011491267, 0.026981534, - 0.020403875, 0.011964018, 0.0065209367, 0.012283465, 2.763574e-4, - -0.007255436, -5.8316604e-5, 0.013553926, 0.016384084, -0.023367528, - 0.013229273, 0.0012612866, 0.022500994, -0.008740802, -0.0012367589, - -0.03533178, 0.019708874, -0.011531343, -0.018665275, 0.022878932, - 0.0047596684, 0.003150628, 0.01995542, -0.0066015543, -0.01663851, - -0.015357396, -0.007996729, -0.037923694, 0.015727885, -0.026948605, - 0.0017464167, -0.025745846, -0.0052451785, -0.0045628245, -3.6633876e-4, - 0.017672995, 0.02902083, -0.017858468, -0.01251779, -0.018162208, - 0.005119294, 0.022605011, 0.01790533, -0.003585092, 0.013766281, - 0.02936696, 0.015281057, -0.0054613333, -0.0044487873, -0.011718422, - 0.011964917, 0.012517539, 0.019209974, -0.015502866, -0.01066995, - 8.1251824e-4, 0.01761523, 0.0072839507, -0.020704217, -0.016028315, - -0.004132615, 0.02479308, 0.017142761, -0.011084871, -5.842499e-5, - -0.016291708, 0.014443258, -0.0072263456, 0.008505605, -0.00406205, - 0.014841307, -0.009940804, 0.020698944, 0.010021787, -0.010035512, - 0.0015551792, 0.012303401, -7.384542e-5, -0.0067809788, 0.0025747833, - 0.0026117628, 0.010860873, 0.015382236, 0.009785008, -0.0076432647, - -0.0013072505, 0.0046339002, 0.008852435, 0.016076028, 0.020494966, - -0.012633543, -0.01822716, 0.005095232, -0.0022392748, -0.011092089, - -0.014204351, 0.021260297, 0.010848108, -0.004096675, 0.022734981, - -0.0064271535, 0.012320614, 0.022577135, -0.013792148, -0.015951218, - -0.0065641445, 0.019537026, 0.017015526, -0.007795146, 0.020170167, - 0.0014696097, 0.008408933, -0.003809019, -0.009186128, 4.0726194e-5, - 0.022684438, 0.019123074, -0.0077403407, 0.0032326358, -0.0097581735, - -0.0047896416, -0.0075221327, -0.0011429518, -0.009791235, 0.012274254, - -0.018322956, -0.019731615, 0.028604161, -0.008962861, 0.024158848, - 0.005978787, 0.007184724, 0.015819192, 0.023409778, 0.046178445, - 0.022526026, -0.0133404145, -0.0049888915, 0.007791957, -0.004604126, - -0.02943878, 0.013788443, -0.008119693, -0.011314322, 0.010438532, - 0.0036783542, 0.012848168, 0.0011619502, -0.00713848, -0.029249381, - 0.0035178384, 0.009206742, 0.027260104, -0.013952377, -0.0056581004, - 0.009429059, 0.014136215, -0.007422753, 5.9338e-4, -0.04244163, - 0.0035769157, -0.02879652, -0.010513178, -0.012733149, -0.028123317, - -0.050299216, -0.01724853, -0.021286333, -0.0011794997, -0.030871931, - 0.022504194, 0.0061701294, -0.0128947655, 0.034637697, -0.013061835, - -0.0336163, 0.00906519, -0.01102927, 0.0043889396, 0.0054191425, - 0.009532341, 0.011942472, 0.01659967, 0.013985032, 0.03054354, - 0.0014954985, -0.0010455793, -0.029396964, -0.01893757, -0.020375129, - -0.0050795707, 0.025912702, -0.015257417, 0.030676683, -0.007976776, - -0.0168711, -0.0033485868, -0.0112394625, 0.017269893, -0.015267542, - 0.015441399, 0.02312481, 0.015507593, -0.011785574, -7.360131e-4, - 0.0057611237, 0.02225037, -0.0044768774, -2.7445643e-4, -0.007385694, - -0.006215385, -0.01459931, 0.035851482, 0.012690724, -0.0045422195, - 0.007936563, -0.015577381, 0.009020451, 4.4459756e-4, 0.005565645, - 0.008919385, -0.0027620015, 0.0029963881, -0.014544996, -9.686073e-4, - -0.0069282777, 0.03694512, 0.0065589133, -0.0053103804, 0.015486926, - 0.023258673, 0.0016933815, -0.0022088862, 0.0025710247, -0.016965104, - -0.0119189415, -0.015834058, -6.9956045e-4, -0.018912107, -0.021362577, - 0.048247084, 0.009752344, -1.8217301e-4, 0.01891093, 0.0035885521, - 9.931773e-4, -0.0067613414, 0.015882092, 0.008301576, -0.001873192, - 0.011770084, 0.021851767, -0.014743407, -0.052212335, -0.008991845, - 0.03685476, -0.005510449, 0.023842229, 0.027560307, 0.005511879, - 0.0030278075, 0.0062968936, 0.011876178, 0.009662851, 0.0019927823, - -0.014285578, -0.009471065, -0.013353937, -0.011015077, -0.012511736, - -0.012431931, 0.003670679, -0.0030915057, 0.0031917624, 0.023521498, - 0.02283905, 0.011184419, -0.019982329, -0.0045365547, 0.0012697579, - -0.0010204546, 0.0057999673, -0.0077857217, 0.006600783, -0.01599772, - 0.00606268, 0.031483714, -0.014571196, 0.0064462894, -0.014294081, - 0.008493531, -0.0026106406, 0.019060772, 0.025361642, 0.0016562338, - 0.025081152, -3.4089503e-4, -0.0022826632, -0.0013837325, 0.014311293, - -0.004641573, -0.027217327, 0.013612034, 0.003738871, -0.030562036, - -0.02991654, -0.0030845073, 0.0058102417, -0.0011348249, 0.0017053172, - 0.016923405, -0.015025157, 0.007925462, 0.0019981482, 0.010634227, - 0.0021904015, -0.002992594, 0.006562109, 0.012005709, -0.02603658, - -0.020741377, -0.020052684, 0.011144383, -0.019728797, 0.013134275, - -0.0052272626, 0.022309028, -0.02091999, -0.004538063, 0.01410505, - 0.0048929187, 0.010363219, 0.009963788, 0.033306763, 0.024173316, - 0.0031681743, 0.028384708, -0.018625729, 0.010986085, -0.012355929, - -0.02066505, 0.014207978, -0.003523598, -0.0032830036, 0.027963087, - -0.022186335, -7.4927945e-4, 0.017812107, 0.011487011, 0.01242613, - 0.035071764, -0.0012551296, -0.020318432, -0.02249542, 0.008504075, - 0.014948323, -0.011155886, -0.0021384074, -0.013196546, -0.0125817945, - 0.024026835, -0.017844135, -0.014859761, 0.016141575, -0.0046776794, - -0.0036157693, 0.020473935, 0.006881758, -0.018358437, 0.013849623, - -0.0023862536, -0.0028772838, 0.0063277227, 0.013824497, 0.02596607, - 2.0906859e-4, -0.011796611, -5.5047084e-4, 0.01005333, 0.014851, - 0.012520938, -0.0039528348, 0.027007872, -0.011503365, 0.010041005, - 0.0013562856, 0.01325095, -0.021563923, 0.01547494, 0.027269512, - 8.6635066e-4, -0.008137947, -0.014396559, -3.136208e-4, -0.010537697, - -0.020965701, -0.002164241, 0.014534742, 9.557038e-4, 0.0307521, - 0.004365487, -0.0018165113, -0.015589439, 0.013837833, 0.003909729, - 7.7007257e-4, -0.011735982, -0.032521687, 0.013636102, -0.001979773, - -0.0101609845, 0.0064657857, -0.010992486, -0.0010650238, -8.126661e-4, - 0.027068669, 8.080734e-4, 0.0018086818, -0.001360661, 0.004382438, - -0.006235705, -9.788482e-4, -1.7753447e-4, -0.020437509, -0.0066732103, - 9.568548e-4, 0.0025560702, -0.02327959, -0.007880311, -0.0015498975, - -0.018194877, 0.019794617, 0.0050924122, 0.009972704, -0.014190799, - 0.0057210787, -0.005760617, -0.01354988, -0.008742594, -0.015618139, - -0.006739084, 0.013669872, -0.009811918, 0.0057882518, -0.004960322, - -0.0018118506, 0.0070975423, 0.019139132, 0.013523349, -0.0018105882, - 0.006213815, 0.007868548, 0.010811846, -0.013011305, 0.031196712, - -0.0029864565, -3.7940854e-4, 0.024053786, 0.010285729, 0.0075732847, - -0.012071077, 0.01200751, -0.017263133, -0.012900114, 0.0062216995, - -0.009608007, 0.022723231, -0.00550741, -0.009172138, -0.0055044526, - -0.014783007, -0.0046216883, -0.014356437, 0.005631951, -0.0016764282, - -0.020183187, 0.0068606124, 0.036523376, -0.013086785, -0.0011476695, - 0.009559298, 0.004738616, -0.0020413809, -0.0019038611, 0.006088816, - 0.034990888, 0.014494964, -1.3269429e-4, 0.0029161118, 0.004933515, - 0.0086942855, 4.568172e-4, 0.0051846495, -0.0029853804, -0.004727996, - -0.012080062, -0.006259606, 0.0033514835, -0.0209478, 0.022609945, - 0.0032604462, -0.02766577, -0.0017562695, 0.008680585, 0.013844725, - 0.01910074, -0.005560209, -0.0032713923, -0.008818639, -0.013739601, - -0.005055386, 0.014369681, -0.0024167276, 0.0061428607, -0.019375207, - -0.01789684, -0.0022645919, -0.010185225, 0.030502006, -0.01574121, - 0.005387859, 0.0060354387, 0.032020938, 0.004958282, 0.005910066, - -0.018118927, -0.010725826, 0.022071505, -0.0057599074, -0.022258477, - 0.019312534, -0.0044165133, -0.0123313675, 0.01415591, -0.013891474, - -0.0033991884, -0.0013687949, 0.021662865, -0.004563489, -0.012606325, - 0.0025481188, -0.008911457, -0.0051007024, 0.014637717, -8.212481e-4, - 0.0068152198, 0.018280005, 0.02419547, 0.011590961, -0.016173247, - 0.0038226815, 0.024259418, 0.0019550074, 0.0016855259, 0.032860212, - 0.010211485, -0.011383193, -0.027172856, -0.008332287, -0.012882995, - -0.011307964, 0.03445653, 0.042192593, 0.011909483, -0.011400716, - -0.010916577, -0.010098469, -0.015860643, -0.0070213736, 0.007877027, - 0.023487434, -0.02992754, 0.005165849, -0.023925092, 0.02304813, - -0.010228065, 0.027944343, -0.015711011, 5.012148e-4, 0.016491964, - -0.025726566, -0.0048502884, -0.021145843, -8.337704e-4, 0.015973082, - 2.808635e-4, -0.01996743, -0.023163294, 0.009467177, -3.9622723e-4, - -0.015685217, -1.083505e-4, -0.0044213426, 0.012508641, 0.0025350875, - 0.02409716, 0.01455977, 0.017175661, -0.0028255743, 0.010506753, - 0.026899915, -0.016801057, 0.009665724, 0.016495775, -0.018763449, - 0.013241871, 0.02603682, 0.00365925, -0.013016672, -0.013400031, - 0.0037313642, -0.0056097233, 0.033629794, 0.0041977484, -5.155386e-4, - 0.030149106, -0.014911081, 0.02740644, -0.007960389, 0.0166172, - -0.0039433762, -0.003078836, 0.010694342, 0.010348762, 0.010559837, - -0.002178409, -0.016240682, 0.0057431236, 0.011663382, 0.022630349, - -0.007444548, -0.022971494, -0.018088968, 0.018152514, -0.031081041, - 0.0029455891, 0.012583725, 0.017722297, 0.0051425495, -0.016349472, - 0.023998661, 0.018900426, 0.017245434, -0.0017879958, 0.0010075149, - 0.006253774, 0.009293781, -0.014540564, 0.026271367, -3.107383e-4, - 0.012285384, 0.0123476265, -0.0014968057, -0.007836912, -0.0017471007, - -0.03858864, -0.0030409403, 0.008794307, 0.015905716, 0.019700168, - 0.001351999, 0.01956209, -0.002113419, -7.5356534e-4, 0.008710053, - -0.012003626, 0.0032189253, 0.0046794275, -0.006538507, 0.023781909, - 0.005545384, 0.005646539, -0.02947725, 0.0036552458, 0.03418674, - -0.0025974503, -0.010955316, -3.3128628e-4, -7.2029245e-4, 0.00574701, - -0.0011670203, -0.008008719, -0.004763607, 0.005517093, 0.012671813, - 0.008029522, 0.02551291, 0.021609168, 0.011366454, 0.0030074934, - -0.006566155, 0.025693424, -0.0023884943, -0.010280893, 0.019121232, - -0.0293755, 0.010182658, -0.02397942, 8.9156517e-4, -0.02116937, - -0.015652252, -0.016276097, 0.022264918, -0.010911721, -0.0045702257, - 0.01590943, -0.04307584, -0.0031607961, 0.026105568, 0.007923229, - -0.018104773, -0.0069724596, -0.004195753, 0.0055988217, -0.0046413937, - -0.010137388, 0.023482854, 0.0025826402, 0.010412359, -0.0023800775, - -0.0012906505, -0.0045560244, -0.011953107, 0.011368967, 0.014147174, - -0.0014246902, -0.011771739, 0.0043239137, 0.003035345, -0.007167735, - 0.012721582, -0.011031227, 0.011003679, -0.00670897, 0.008377475, - 0.009425051, -0.035514925, -0.015238772, -0.027811423, -0.0041622734, - 0.0030612962, -0.0054519493, 0.0057896697, 0.02688843, 0.0016399133, - -0.0019807525, 1.8538382e-4, 0.0134475995, 0.0038720416, -0.0033175943, - 0.018348133, 0.0071204156, 0.021621875, -0.01740421, 0.008916116, - -0.008593607, -0.014935614, 0.00312405, 0.029330304, 0.011997186, - 0.028678037, -6.671029e-4, -0.012161762, -0.0373924, -0.0021577044, - -0.006563555, -0.022126049, 0.010608094, -0.007276838, -0.025888458, - 0.024049746, 0.03529655, 0.01401794, 0.010185028, -0.0042766794, - 0.0066653606, 0.025890088, 0.018258719, 0.028240697, -0.008907334, - -0.016367942, 0.017918225, 0.048319984, 0.008127779, -0.021456044, - -0.026106477, -0.055035908, -0.017922806, -0.004276135, 5.8695313e-4, - -0.0071039535, -0.007378697, 0.0035689261, 0.0045510996, 0.0051541682, - 0.03900919, 0.0038675452, 0.022573298, 0.0052317223, -0.014525343, - -0.0045059603, -0.011429895, -0.0037102688, -0.006466473, 0.006845006, - -0.012335495, -0.009579862, -0.016336417, -0.010918715, -0.012412472, - -0.015327102, -0.028447697, 0.028030666, -0.005349333, -0.015084948, - 0.008438174, 0.0010961901, -0.01598105, -0.01264059, 0.014899033, - -0.021477936, 0.00490658, -0.0048927967, -0.020034684, -0.014791768, - -0.012684937, -0.0069449157, 0.021945935, 0.004117077, 0.006047489, - 0.004965796, 0.013228901, 0.031418156, 0.02555335, 0.01404207, - 0.009252687, 0.015173788, 0.002894834, 0.0015273817, 3.6300167e-5, - 0.032025985, -0.031711075, 0.007359934, -0.010339542, -0.011086064, - 0.023170386, 0.010389686, 0.010009164, -0.007869723, 0.012052174, - 0.011724153, 0.0017801357, 0.012440048, 0.0079555595, 0.011372558, - 0.02152846, -0.007752036, 6.7585876e-4, -0.005849064, 0.015944356, - -0.0023712844, 0.0020626453, -0.016096318, 0.015201667, -0.0073066237, - 0.0012523945, 0.01506986, -0.01898979, 0.009591874, -0.012050956, - 0.014495836, 0.008289325, -0.010647069, -0.0045443187, -0.0063880575, - -0.0047625885, -0.03205323, 0.00991215, 0.0028060724, -0.0075493827, - 0.011349566, 0.008950571, -0.010808169, -0.023072433, -0.040358774, - 0.019517675, -0.02980153, 0.010145063, 0.0066277715, 0.023784276, - 0.03301793, 0.0016904495, 0.012220047, -0.005316224, 0.00671991, - -0.026738597, -0.010904576, 0.0040387935, -5.58726e-4, -0.0024651352, - -0.007646036, -3.5601907e-4, -0.0024600537, -0.0045755124, 0.0063356096, - 0.0035914662, 0.01162057, 0.005738776, 0.003318641, -0.002616219, - 0.0015332674, 0.02579227, -0.008611123, 1.2215419e-4, 0.016091004, - 0.005387007, -0.0038765892, 0.008068392, -0.02683458, -0.004395289, - -0.0123761045, -0.020611383, 0.050158456, -0.0018611907, -0.0064513846, - 0.0012516298, 0.0025826597, -0.021581305, -0.038065225, 0.01430973, - 0.0056113307, -0.012256547, 0.020022336, 0.008677942, 0.0027656378, - 0.020449014, -0.03322601, -0.012815184, -0.011464904, 0.013034269, - -4.7295252e-4, -0.0028850706, 0.002447388, -0.007932982, 0.005859054, - 0.013358406, 0.011141789, 0.015306332, -0.011201899, 0.018215252, - -0.008518693, -0.011834978, 0.025015509, -0.021849804, 0.002519614, - -0.0095050335, -0.020485971, 0.011307103, -0.008167621, 0.0020564573, - -0.0062231147, 0.016584694, -0.002235871, -0.0031028015, -0.0034217036, - 0.005964048, 0.011132745, 0.0067533976, 0.002578584, 0.008648783, - -0.014545988, -0.010900179, -0.008123136, -0.0093803825, 0.008323987, - 0.027210522, -0.0013216097, -0.010869213, 0.010956462, -0.027517071, - 0.013034784, 0.012140582, -0.003497414, 0.0071997247, -0.0030301264, - 7.298544e-4, 0.004994806, 0.0206343, 0.012619868, 0.0147117935, - 0.0064093927, 0.026383042, -0.0037180725, -0.00856463, -0.00823539, - 0.02858477, 8.009621e-4, -0.030276706, 0.027735833, -0.02896004, - 0.029264363, 0.040852085, -0.021256357, -0.002813727, -0.019485688, - 0.02016095, -0.0047099753, 0.0051299743, 0.012173882, 0.0018977224, - -0.031639703, -0.0063341535, -0.006936076, -0.0043681487, -0.00877864, - 0.02495072, -0.016089667, -0.0035753974, -0.020040933, -0.021245668, - 0.002583957, 0.0019631626, 0.014672811, 0.022025602, -0.020334957, - 0.0058016377, -0.04346944, -0.0023854603, -0.0014890351, -0.0042769797, - -0.011284602, 0.020749709, -0.017179593, 8.071961e-4, -5.806667e-4, - -0.023716833, -0.0031113522, -0.025642218, 0.023769544, 0.01566389, - 0.01006283, 0.012386993, 0.005043275, 0.02730791, -0.008728462, - 0.025902811, 0.022037609, -0.010405459, -0.005309673, -4.7222932e-4, - 0.014160489, -0.0145506635, -0.009757344, 0.006512845, -0.009434094, - -0.01751235, -0.010509341, -0.009181445 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.060130812, -9.873644e-4, -0.013801431, 0.02216207, 0.028115775, - -0.02229406, 0.0676297, -0.051798955, -0.012650276, 0.08004914, - 0.008741099, -0.032120824, -0.029649092, 0.027144993, -0.008163639, - 0.005521002, 0.009196534, 0.040328935, -0.02559386, -0.017483639, - -0.024550863, 0.047526542, 0.042927165, 0.02363194, -0.007968517, - -0.010903316, 0.05560548, -0.041208383, -0.002881136, 0.009898455, - -0.082790054, -0.0096569415, -4.1684043e-4, 0.028391615, 0.011483036, - -0.008604942, 0.027974907, 0.043735947, -0.013973971, -0.020911148, - 0.001820494, -0.03418948, -0.029679775, -0.0046237838, 0.0016317497, - -0.04132963, 0.024417361, -0.010526495, -0.05041682, -0.028898438, - -0.015841246, 0.032163076, -0.020385137, -0.02169054, 0.0018337151, - -0.06778906, 0.0018667332, 0.03061209, -0.06849763, -0.021166524, - 0.041216627, 0.0105188815, 0.030429345, 0.0052822116, -0.04463082, - -0.024511658, 0.023530707, -0.030336846, -0.045559146, 9.659771e-4, - 0.0076505193, -0.0067971097, -0.03385116, -0.028607288, 0.043736324, - 0.026326923, -0.057138287, -0.061886735, -0.0304148, -0.054943766, - 0.013224814, -0.03305998, 0.047812384, 0.05756383, 0.01684931, - 0.086685926, -0.010618715, 0.036863234, -0.0102297645, 0.009211294, - -0.039374795, 0.008426626, 0.07175359, 0.007041388, -0.09173976, - -0.021425476, 0.006810267, -0.0048593315, 0.024639446, -0.04147884, - -0.039381903, -0.016231785, -0.047090165, 0.0016754714, 0.028662466, - 0.0036755633, 0.02743223, -0.009115573, -0.06683564, -0.04785655, - -0.0021864579, -0.054722823, 7.779736e-5, 0.013478817, 0.012937444, - 0.016984768, 0.04502248, -0.028572384, -0.041210473, -0.004261159, - -0.030358657, 0.054382127, -0.023866955, 0.021951506, -0.0160795, - 0.03316877, 0.039714526, -0.0070254393, -0.02897624, 0.06708135, - 0.0026797764, 0.025265237, -0.02298838, -0.029577639, 0.0055802898, - 0.017982021, -0.010276128, 0.004530996, -0.017444005, 0.017421542, - 0.033171058, 0.034105014, -0.013703798, -0.027357085, 0.027594665, - -0.042292997, 0.046337653, 0.013817468, 0.023012014, 0.055536747, - 0.02692337, 0.029996218, 0.010946807, 0.011263967, 0.067186885, - 0.016997019, -0.022126162, 0.036137808, -0.02202588, 0.08618565, - -0.032092486, -0.022924215, 0.024196446, -0.031444978, 0.012475779, - -0.06675525, -0.076392435, -0.015741773, 0.040251594, 0.015524169, - -0.0073065227, -0.005704376, -0.027022418, 0.014780611, 0.02581921, - -0.017878795, 0.0120840985, 0.04060312, 9.310846e-4, -0.024142645, - 0.0055657607, 0.03272132, -0.06814647, -0.03990399, -0.014486358, - -0.012362137, -0.011734623, -0.0018135981, 0.03579994, -6.446891e-4, - -0.008152373, 0.021578168, -0.052194934, 0.06176496, -0.028226083, - 0.011537683, -5.110297e-4, 0.012155097, -0.025078783, -0.006819272, - -0.009260517, 0.031110445, -0.04387003, 0.027564842, 0.013511568, - -0.029791048, 0.012074053, 0.01704195, -5.1565137e-4, -0.010855211, - -0.041956794, 0.02995958, 0.0065175323, -0.022313159, -0.029164944, - 0.017257765, -0.0032869747, -0.011389199, -0.016666193, 0.011407404, - 0.026794415, -0.029273806, -9.923088e-4, 0.021000305, 0.03803807, - 0.040725008, -0.016213272, 0.014923499, 0.0035575673, -8.627434e-4, - 0.029705804, 0.03897077, -0.05088437, -9.157404e-4, 0.02162639, - 0.02551946, -0.022127306, -0.020328512, -5.515574e-5, 0.025087316, - 6.326002e-4, -0.029291203, 0.0029435088, 0.02258081, 0.026340337, - -0.014935584, -0.03967023, 0.030499212, 0.009938148, -0.009056059, - -0.02832581, -0.037330586, -0.0544296, -0.0050063985, 0.0033415237, - 0.015015032, 0.005042881, 0.037767682, -8.9822616e-4, -0.0018649563, - 0.013764172, 0.017382937, 0.032698005, -0.004537322, 0.0125077525, - -0.01174535, 0.0013217703, -0.0016058268, -0.043039087, 0.0048367316, - -0.029147277, 0.008205654, -0.03726942, -0.017401518, 0.0031253246, - 0.051175773, -0.023317613, 0.0067736413, -0.0038629968, -0.027156813, - 0.0036425635, -0.018975483, 0.010770201, 0.026528167, -0.00905848, - -0.003025935, -0.0010994121, -0.0457222, -0.0067084446, -0.03928032, - 0.027222674, -0.004422467, 0.0048858575, -0.0030063493, 0.019780753, - -0.027109453, -0.0012851654, -0.015141846, 0.022693919, 0.010439136, - 0.011325828, -0.016598916, -0.025952006, -0.03421662, 0.052226726, - 0.059270833, -0.014040042, 0.020374589, -0.010981822, -0.047638424, - 0.009598454, 0.04293915, 0.043042876, -0.04523609, -0.054953665, - -5.80343e-4, -0.020320604, 0.023529107, -0.023299508, 0.019528298, - 0.025295163, 0.0075558014, 0.04191883, 0.0021868767, -0.015421796, - 0.04388703, -0.038046777, 0.038159586, 0.006318543, 0.029179832, - -0.03333549, 0.02873634, 0.018826893, -0.0046195867, -0.0026075104, - -0.07163319, -0.010549844, 0.04841227, -0.026583815, 0.0049961773, - -0.008899748, -0.019073015, -0.008556386, -0.020906191, -0.0012394717, - -0.01799427, -0.022622451, 0.011717778, -0.04112247, -0.06763899, - 0.0047607305, 0.010359955, 0.035359945, -0.0026025597, -0.02849379, - -0.022112306, 4.938841e-4, 0.07072196, -0.009222682, 0.0062436666, - -0.033923686, 0.016797816, 0.011117602, 0.047695767, -0.043686308, - 0.037952922, -0.0036643853, 0.0021469328, -0.0139738135, -0.002790479, - 0.014661621, 0.04511928, -0.027231378, -0.008520618, -0.011061083, - 0.003962979, -0.022884088, -0.045690164, -0.010531096, 0.008939091, - -0.014898413, -0.021838566, 0.009718695, -0.030847145, -0.031446785, - 0.031782, -0.018690517, -0.017980997, -0.02718877, 0.006925808, - -0.023011262, 0.018262787, -0.03476273, 0.0018700712, 0.039768558, - -0.036915325, 0.054589428, -0.020470178, -0.002249964, -0.016708631, - -0.025179587, -0.022180345, 0.11473229, 0.0051079732, -0.0019908736, - 0.003270928, 0.039171625, 0.012984291, 0.03156893, 0.009821655, - 0.009381973, -0.014631468, 0.04739726, 0.016334586, -0.0021205978, - 7.782526e-4, -0.05088607, -0.01702375, 0.016515683, -0.018705776, - -0.0053017656, -0.007087604, -0.008991912, -0.04189865, -0.0034737207, - 0.0013178219, 2.7843445e-4, 0.018907351, -0.00787284, 0.07520145, - 0.040227883, 0.0032677248, -0.0036753004, 0.0015771625, 0.043361098, - -0.005845534, -0.056982204, -0.00763847, 0.004653797, 0.008993437, - 0.054751355, -0.058923256, 0.008661355, -0.09824239, -0.058299813, - -0.04231874, -0.0037305295, 0.008315061, -0.019627776, -0.0043034283, - 0.0110431, -0.0758042, -0.016004397, 0.028080877, 0.02481146, - 0.01769532, -0.008992069, 0.029710943, -0.009470762, -0.03209224, - 0.0053303638, 0.03529161, -0.012656118, -0.018317157, -0.00818062, - 0.030443395, -0.009449461, -0.0114023965, 0.011810096, -0.030367726, - -0.0056739445, 0.0042484784, -0.025993634, 0.032017868, 0.01055447, - 0.0073689045, -0.06799206, -0.010676325, 0.053559978, 0.011542859, - 0.0023445762, -0.011728169, 0.060223326, -0.005409073, 0.044606302, - 9.889224e-4, 0.048844133, 0.027060376, -0.002188074, -0.0236876, - -0.03269935, 0.0018382999, 0.0050190175, 0.012552978, 0.0146658085, - 0.032619476, -0.049073353, 0.046566166, -0.051201485, 0.014225583, - 0.006496523, 0.03138575, 0.029743694, 0.009827772, -0.031570535, - 0.02602488, 0.009537792, 0.015121512, 0.009711121, -0.0011395303, - 0.030241404, 0.007652226, 0.025718594, -0.01923438, -0.006800946, - -0.008214874, -0.00214454, 0.018670944, 0.007347212, -0.011148762, - 0.016827412, 0.007343279, 0.012790921, 0.058502637, -0.056039345, - -0.0761074, 0.011079866, 0.0028009538, -0.082017176, -0.017633332, - 0.016152449, -0.019617831, -0.00589829, -0.05017809, 0.023106217, - 0.040809207, -0.036380872, -0.0032190091, 0.022816526, 0.03715349, - 0.024036884, 0.0312762, -0.018230764, -0.049614966, 0.019582916, - 0.061339926, 0.008268637, -0.04842764, -0.013190613, -0.0032256166, - -0.024407426, 0.04331198, 0.06868933, 0.038418908, 0.0636583, - 0.018414125, 0.068500705, -0.03980003, 0.0052905236, -0.014544256, - 0.03816477, 0.003627717, 5.8736774e-4, 0.014206904, 0.024288466, - 0.0030599763, 0.038491037, -0.0703649, -0.0029340296, -0.0014445299, - -0.008101409, 0.053764574, -0.0038346173, -0.041053977, 0.029819008, - 0.047755897, -0.005171749, 0.07135101, -0.029681856, 0.014243913, - -0.025639918, 0.008739923, 0.0071392823, 0.019341255, 0.03460996, - 0.009541162, 0.013411485, -0.026378442, 0.0202613, -0.0046637864, - -0.0027458868, 0.0027357652, -0.031467557, -0.0020270846, 0.02576741, - -0.014863939, 0.024283115, 0.05738964, -0.039669544, 0.0065040356, - -0.04474162, 0.01115713, 0.025413396, 0.02231378, 0.01480404, - 6.308902e-4, -0.01580462, 0.020407466, 0.025116552, 0.03808418, - 0.019916475, -0.041944195, 0.02758399, 0.044168495, -0.05806043, - -0.05155372, 0.034776136, 0.009348458, 0.031004634, 0.0034208705, - 0.019778637, -0.031804547, -0.019642374, 0.007778667, 0.023894018, - -0.023561252, 0.022966303, -0.020766914, -0.003261559, 0.0069483514, - -0.0123718465, -0.017250333, -0.022044694, -0.0067052445, -0.051629517, - -0.0065499097, -0.04605018, -0.104210205, -0.018782815, 0.00678767, - -0.02720905, 0.012353955, 0.029875772, 0.06612052, -0.011794069, - 0.025063483, -0.0026347304, -0.057580527, 0.067285135, 0.0098990025, - 0.011895411, 0.047339167, -0.033047497, 0.027396984, -0.03890942, - 0.02877774, -0.00860738, 0.011979346, -0.01611827, 0.048009347, - -0.018530631, -0.010980153, 0.008422887, -0.038394157, -0.0243139, - -0.036426432, -0.053978723, -0.054009825, -0.05366619, -0.0035666162, - 0.035963863, -0.0193074, -0.033318114, -0.0016328362, 0.030891461, - 0.01824542, 0.0069051385, -0.031521566, 0.016418876, 0.02025497, - -0.03615193, 0.0030758353, 0.04998666, -9.5802156e-5, -0.006199164, - 0.023664039, -0.0039574206, 0.02485751, -0.025233706, -0.038575303, - 0.059431348, -0.03589063, 0.028760863, -0.051442683, 0.008313726, - -0.03935675, 0.0036312323, -0.033467565, 0.018183373, 0.08634812, - 0.029727448, 0.023607532, -0.04153718, 0.0012894169, 0.027309395, - -0.00856451, -0.055332724, 0.031605236, 0.018682543, 0.025203453, - 0.032483917, -0.0014461476, 0.014407941, 0.023240104, -0.03629083, - -0.022386013, 0.036323905, -0.030328255, 0.020173145, 0.019070873, - 0.018893149, 0.0051103546, 9.5520983e-4, 0.030044185, 0.02311073, - -0.017564403, -0.005857341, -0.026652317, -2.3841752e-4, -0.032209273, - 0.009083643, -0.010569916, -0.0144313285, -0.10980566, -0.038012296, - 0.044629637, 0.0025485547, -0.020334184, -0.011527726, -0.03309558, - -0.04128679, -0.014321994, -0.012301368, -0.029748198, -0.03331583, - 0.0048956284, 0.01169992, -0.0025792925, -0.0044977176, -0.004002387, - -0.0053027207, -0.051349223, 0.008167232, -0.049202893, 0.0020594865, - -0.0947588, 0.01153948, -0.072528705, 0.03968401, 0.007535598, - 0.041406855, 0.024004336, -0.0016471443, -0.01563559, 0.0073538986, - 0.031742018, -0.08044609, 0.02044502, -0.03296686, 0.0085960645, - 0.03055209, 0.009402034, 0.011389841, -0.065390795, 0.011486153, - -0.028831076, 0.0023749224, 0.040430546, -0.05837017, -0.05807134, - 0.013585733, -0.009457016, -0.01858707, -0.023976428, -0.014386041, - -0.06928605, -0.003000675, -0.034412116, -0.0043508224, -0.01865922, - -0.041548695, 0.04428799, 0.04682122, -0.00716896, -0.036301054, - -0.010096403, 0.017154135, 0.012156675, 0.035651375, 0.0037997821, - -1.08241744e-4, 0.009991299, 0.026730139, -0.006867765, 0.008630774, - -0.048748832, -0.023237988, 0.03505484, 0.029645704, 0.022207506, - -0.026903572, -0.031330325, -0.017467806, -0.0041937362, 0.0817663, - 0.0031681568, 0.012201116, -0.023187026, -0.045502163, -0.022537662, - -0.0065737534, -0.033581886, -0.009131545, 0.09415956, 0.0054847808, - -0.014713985, 0.058839023, -0.0068423366, -0.021447092, -0.033787306, - -0.008318531, -0.009408904, -0.018384237, -0.0061741774, -0.004499325, - 0.0045525846, -0.025802512, -0.014601332, -0.031396165, -0.07076176, - -0.03825267, -0.02102833, -0.009337175, 0.1108544, -0.014387791, - -0.04017376, 0.007080225, 0.007299329, -0.03537438, 0.070900545, - 0.038887843, 0.022995511, -0.013602675, 0.007983283, -0.033006094, - -8.185604e-4, -0.0029968494, 0.03788025, -0.0196768, 0.02716529, - -0.01652324, 0.025430303, -0.027106194, -8.7364565e-4, 0.010595, - -0.02481945, -0.056859754, -0.019599043, 0.02811732, 0.032631014, - 0.022837974, -0.03778952, -0.052235167, 0.028193591, 0.028448602, - -0.04377464, 0.0067192703, 0.068198554, -0.03707657, 0.024240976, - -0.02019762, -0.0021689183, 0.0024526892, 0.039365176, -0.011875797, - -0.010676152, -0.050073806, 0.03657042, 0.019159136, 0.012870504, - 0.006591315, 0.0060598706, 0.015081536, 0.029470995, -0.035313975, - 0.02568128, 0.072031975, 0.019061549, 0.029597817, -0.03529131, - -0.057745043, -0.012496274, -0.06693842, 0.052906863, 0.03284096, - 0.0097191, 0.016561607, 0.01618253, 0.014733164, -0.008020521, - -0.009303857, -0.016068716, -0.0155784255, 0.00847261, -0.0122575415, - -0.026525354, -0.0010492692, 0.031246789, 0.047182623, -0.03676708, - 0.009272054, -0.06035624, 0.0010223349, 0.028833142, 0.05045346, - -0.03555903, 0.04610808, 0.044514388, -0.0031274178, 0.0018800173, - 0.001172621, -0.047226064, 0.0041984366, -0.014725946, -0.039924722, - 0.029056463, 0.053089682, -0.042612053, 0.009890885, 0.008251609, - -0.022313343, -0.001585109, 0.056207296, -0.031090783, 0.022965603, - 0.0024602443, -0.017521316, -0.011474998, -3.9897517e-5, -0.006999583, - -0.010955188, -0.01750232, -0.013796002, -0.043901194, -0.05124672, - 0.049752776, -0.005364584, -0.035731815, 0.006827452, 0.003501906, - 0.0032135816, -6.7617616e-4, 0.036658164, -0.0029925338, -0.0090416875, - 0.033255063, 0.055508405, 0.025628442, 0.05763674, 0.004292185, - 0.053912226, 0.011837783, 0.025426371, -0.011850194, 0.005923059, - -0.03790561, 0.018505089, 0.019821139, -0.029998496, -0.012137358, - -0.008774142, -0.0013647598, -0.014893222, 0.016601708, -0.037698902, - -0.0074593923, -0.012440716, 0.020670304, 0.01820968, 8.8072097e-4, - -0.015929751, -0.017133323, -0.028235847, 0.069561355, 0.004400228, - 0.036280856, 0.03260969, 0.03668407, 0.044163298, 0.0025152636, - -0.050558805, -9.937932e-4, -0.042034555, -0.016313247, -0.04284797, - -0.010599952, -0.0020407243, 0.0015587492, 0.022313079, 0.010317572, - -0.015572187, 0.012174039, -0.03644894, -0.0113222515, -0.04298856, - 0.05512921, -0.02919174, -0.0032249917, 0.012681325, 0.013646193, - 0.041931998, -0.004022616, -0.013947434, -0.005271424 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.020090086, + 0.012813995, + 3.1020242E-4, + 0.017696384, + 4.8292015E-4, + -9.634025E-4, + -0.021287655, + 0.014891694, + -0.022738982, + 0.052442778, + -0.016853336, + 0.009074807, + 0.0033311895, + 0.009249401, + 0.0012170164, + -0.03127337, + -0.020425139, + -0.012999463, + -0.01118802, + 0.0205352, + 0.018161858, + 0.006986506, + 0.004224849, + 0.007203687, + 0.015201567, + -0.007795438, + 0.014560917, + 0.007979368, + 0.0071005905, + 0.0045389053, + 6.559216E-4, + 0.025456263, + -0.011523667, + -0.014652825, + -0.03226139, + -0.011370888, + -0.001507105, + 0.017532391, + -0.025559377, + 0.032172002, + -8.6726295E-4, + 0.0041547045, + 0.010313436, + -0.025291685, + -0.0017809541, + 0.012588905, + -0.023501165, + -0.0044814795, + -0.022428457, + 0.01234613, + -0.022360656, + -0.0061394935, + 0.013681244, + -0.03175739, + 0.005815688, + 0.013060473, + 0.012175908, + 0.032496996, + -0.023460256, + 0.009087904, + 0.0092935255, + 0.0028897533, + -0.01602422, + 0.025190992, + -0.01881423, + -0.026775245, + -0.011431761, + 0.0036999534, + 0.013115731, + 0.01720545, + -0.018021483, + 0.0021197398, + 0.003914871, + -0.0021960519, + 0.00698252, + 0.0068171844, + 1.4013425E-4, + -0.0260878, + 0.00830396, + 0.004964254, + 0.0040052175, + 0.0075830775, + 0.0036520239, + -0.0043294327, + 0.012696976, + -0.007532668, + 0.015509614, + 0.002891381, + 0.011700882, + 0.004901529, + -0.0057177525, + 0.0072879354, + -0.011201778, + -0.0026655279, + 0.004732866, + -0.004261945, + -3.6366505E-4, + 0.010455122, + 0.007380663, + -0.0053765676, + 0.006973696, + -0.008296782, + 0.028120827, + -0.012732763, + 4.1869E-5, + 0.013756053, + -0.001352048, + -0.0034132786, + 0.010232624, + 0.021322954, + 0.006879449, + -0.0043591703, + 0.0058468096, + 0.0064562117, + 0.023050625, + -0.013744281, + 0.004780142, + 0.0059942016, + -0.0065948996, + -0.013735371, + -0.009736611, + 0.020782363, + 0.0029572195, + -0.020469783, + -0.014558768, + -0.011899674, + -0.0018567942, + 0.0045301532, + -0.012122356, + -0.014607104, + 0.006565225, + 0.008138801, + 0.018271737, + 0.013565854, + -0.005278107, + 0.0036398466, + -0.0035027738, + 0.016716115, + -0.039892595, + 0.027161257, + 0.027402872, + -0.018254496, + 0.021985678, + 5.102643E-4, + -0.007442088, + -0.0017995432, + -0.024048889, + 0.012323914, + -0.005323791, + 0.017207712, + -0.023454947, + -0.0069483994, + -0.0045022992, + -0.0015230352, + 0.007394096, + -2.616395E-4, + -0.0101751685, + 0.007293195, + 0.02249627, + 0.021798199, + -0.0053383163, + 0.024644567, + 0.0073572053, + 3.120225E-4, + 0.00394145, + -0.0043944963, + 0.012793007, + -0.002176158, + 0.0068623596, + -0.02849552, + 0.0034219464, + 3.5056862E-4, + 0.018716043, + -0.01380432, + -0.0022757577, + -0.008935573, + 0.008273052, + 0.02400257, + -0.010536515, + 4.2082198E-4, + 0.022886686, + 0.019384922, + 0.008513991, + -0.021376332, + 0.013244321, + -0.0034063756, + 0.009808619, + 0.0041824654, + -0.010796651, + -0.0114092305, + 0.04119313, + -0.00512973, + -0.0386273, + -0.01336071, + -0.023937117, + 0.014240969, + 4.756585E-4, + -0.0030968226, + 0.008381911, + -0.02081873, + -0.018148744, + -0.015431862, + 1.1387354E-4, + 0.019467173, + 0.013983424, + -0.008520231, + 0.0038944036, + -0.016694818, + -0.025723249, + -0.0058434526, + -0.0012964417, + -0.017415265, + 0.0071122563, + -0.0028967664, + 0.008217325, + -0.026114503, + 0.019618345, + 0.00931405, + -4.520658E-4, + 0.018910777, + 3.717969E-4, + -1.1188587E-4, + -0.0048951427, + -0.01333695, + -0.016028842, + -0.017487008, + -0.0012144583, + -0.014881575, + -0.03317434, + -0.013355879, + -0.028001219, + 0.02856231, + 0.01305008, + 0.005231931, + 0.016823992, + 0.033994433, + -0.024466904, + 0.027782321, + -0.0042858953, + 0.0018603409, + 0.006594747, + 0.026572254, + 0.012509822, + 0.015804153, + -0.01017, + -0.0033719738, + 9.0005813E-4, + -0.01618834, + -0.022434259, + -0.004782694, + -0.03361759, + -0.014625217, + 0.00819432, + 0.032654934, + 0.0026387454, + 0.016021801, + -0.008049807, + -0.0151560195, + 0.009515436, + -0.0016678225, + 3.3339768E-4, + 0.020347098, + 6.285388E-4, + 0.011878109, + -0.016812777, + -0.020457812, + -0.013343466, + 0.0039735045, + -0.005711503, + 0.009073011, + 0.0038655498, + -0.0033363274, + 0.014063712, + -0.013053565, + 0.042025406, + -0.009221939, + -0.013128903, + 0.014920239, + -0.0049492624, + 0.004995935, + -0.0075361887, + 0.013691255, + -0.0027706185, + 0.020113304, + 0.00562882, + -0.026555445, + -0.023088615, + -0.0020183316, + -0.010196547, + -0.015329302, + 0.023551965, + 0.011461535, + -0.013454797, + -0.013545614, + 0.010432432, + -0.008982095, + 0.0068575307, + -0.006291876, + -0.011800714, + -0.009330406, + -0.01688697, + -0.0027235714, + -0.024081979, + -0.0054321946, + 0.004522364, + 0.008561079, + 0.0055614347, + 0.006381962, + -0.050395753, + 0.0016286855, + 0.011405071, + -0.0012613249, + -0.0147138275, + -0.014756819, + -0.015690979, + 0.006406258, + -0.015277655, + 0.018035984, + 0.037337463, + 0.017140424, + -0.025099142, + 0.016212855, + 0.009605083, + -0.011289343, + -0.019940209, + 0.008919951, + -0.017081289, + -0.012988831, + -0.008775885, + -0.0029332493, + -0.011581434, + 0.00918845, + 0.01163011, + 0.0012531206, + 0.016175332, + 0.02458771, + -0.015402182, + 0.013297334, + -0.008692275, + -0.009337485, + 9.032884E-4, + 0.004825311, + -0.005572752, + 0.014215657, + 0.0056063277, + -0.012265, + 0.0013592493, + -0.035107236, + -0.0012751468, + -0.007029628, + -0.0035697692, + 0.0038365826, + 0.020061817, + 0.015006544, + -0.015038192, + 0.021958489, + 0.014960206, + 0.017471164, + -5.027582E-4, + 0.027070248, + -0.0023640438, + -0.010590374, + 0.0063816174, + 0.0077545736, + -0.006294428, + -0.01613864, + 0.0045240475, + 0.03758794, + 4.6591315E-4, + 0.0038202808, + -8.245072E-5, + -0.012966209, + 0.026108075, + -0.017207945, + -0.015472809, + 0.015091581, + 0.02406602, + 0.0018740335, + 0.045102324, + 0.03529095, + -0.002172665, + 0.011879283, + -0.0037879315, + -0.008663124, + 0.014786492, + -7.0695474E-4, + 0.025115075, + 0.030522145, + 0.017242536, + 0.031590253, + -0.019972805, + -0.0027419603, + -0.0058682975, + 0.006305757, + 0.034419827, + 0.010840152, + 0.010832549, + 0.016521372, + -0.013247167, + 0.006014694, + 8.8347145E-4, + 0.0019617723, + -0.022399249, + -0.015964566, + -0.03937761, + 0.023620062, + 0.0042918287, + 0.030784452, + -0.020482073, + 0.00420468, + 0.0014116823, + -0.014318165, + -0.022376439, + 0.015674312, + 0.007734265, + -0.00645665, + -0.007568192, + 0.02205427, + 0.002095531, + 0.025038807, + -0.016583098, + 0.025009084, + 0.01715942, + 0.02266898, + 0.0050528566, + 0.01304913, + 0.008090979, + 0.023536537, + 0.011341472, + 0.010284091, + 0.0044357055, + 0.012719747, + -0.0030623826, + 0.0018049098, + 0.0089187315, + -0.0046049734, + 0.002479892, + -0.013893506, + 0.016337842, + -0.004534603, + 0.04715449, + 0.023315562, + 0.009492427, + -0.03702565, + -0.012758108, + -0.014294764, + -0.008132533, + -0.03840832, + -0.012926134, + -0.020450061, + -4.2235214E-4, + -0.0060282974, + -0.0032577012, + 0.008438328, + -0.006797801, + 0.030859655, + 0.0011997613, + -0.006518615, + -0.031485252, + 0.003429882, + 0.007876808, + 0.008224821, + -0.006656364, + 0.0049513774, + 0.017380133, + -0.00887786, + 0.008775872, + -0.022103991, + -0.031024672, + -0.012317269, + -0.03557104, + 0.014771241, + 0.016819617, + 0.015652996, + -0.008381768, + 0.001953568, + 0.022032537, + -0.01769336, + 0.01089343, + 0.024397695, + -0.014095479, + -0.003980681, + -0.012218514, + 0.040646277, + 0.0050037103, + 0.03226987, + 0.03364676, + -0.015717588, + 0.004862658, + 0.030466, + -0.008595408, + -0.015339552, + -0.022673316, + -0.008884633, + -8.9881656E-4, + 0.006447485, + -0.008173212, + 0.006096257, + 0.0013431764, + -0.040412117, + 0.012411058, + 1.0858886E-5, + -0.007265638, + 0.007242398, + 0.010686384, + 0.0048497505, + 0.0023631249, + -0.008340879, + 0.011877942, + 0.035763152, + 0.019198941, + 0.0025046095, + 0.006842994, + 0.017393516, + -0.0105173085, + -0.016061502, + -0.015081891, + 0.010171974, + -0.022247449, + 0.012349462, + -0.033575255, + 0.009114277, + -0.0025106366, + 0.026473753, + -0.0076248497, + 0.01137743, + 0.0024060633, + 0.0021333327, + 0.0067537706, + -8.483932E-4, + 0.0038659123, + 0.007878874, + 0.008998656, + -0.013472915, + 0.0044658454, + 0.0032886895, + 0.029808298, + 0.016809903, + 0.003228106, + -0.024404965, + -0.010283541, + -0.001700838, + 0.00598349, + -0.02071722, + 0.0038790768, + -0.015976546, + 0.008499266, + 0.01606657, + 0.02642433, + -0.020493323, + -0.013376948, + 0.015837189, + -0.015741944, + -0.0021605701, + 0.011910197, + -0.008173296, + 0.018052462, + -0.011436526, + 0.023464188, + -0.005875863, + 0.018346986, + -0.004082353, + 0.0012148682, + 0.035769705, + -5.060745E-4, + 0.017059295, + 0.015901325, + 0.00593503, + 0.03348314, + 0.016147623, + 0.012489166, + -0.014200602, + 0.011554862, + 0.004823808, + 0.010584537, + 0.01936606, + -0.007927221, + 0.022065487, + -0.021149859, + -0.035782725, + 0.008918376, + 0.002740284, + -0.0132364575, + -0.028126912, + 9.619676E-4, + -2.3430484E-4, + 0.0019190144, + 0.01597012, + -0.004245867, + 0.016160747, + 0.0019049738, + 0.017065773, + 0.02299572, + -0.01914621, + -0.021870341, + 0.0066998154, + -0.015651442, + -0.021235187, + 0.011460252, + -0.0113285715, + -0.027163137, + 0.0063879318, + -0.031227052, + -0.008259786, + -0.0034765021, + 0.010052466, + -0.010684361, + -0.029667553, + 0.054600243, + 0.02115298, + -0.0016374408, + -0.0076668942, + -0.014878484, + -0.0016276937, + 0.0047455826, + 0.011711658, + 0.004519063, + -0.0052870964, + 0.0028175812, + 0.003695219, + -0.022375198, + 0.01746091, + -0.021011055, + 0.007947096, + 0.010922339, + -0.005193864, + -0.01510459, + -0.005419067, + -0.003225493, + -0.02024193, + 0.0128839435, + 0.014962214, + -6.699852E-4, + 0.0032535417, + -0.006295688, + -0.0052297413, + -0.0041508437, + 0.024289994, + -6.6283357E-4, + -0.026144475, + -0.0077014146, + -0.018207327, + -0.005735239, + -0.012846961, + -0.014525681, + -0.004520854, + -0.011454164, + 0.0047431476, + -0.005113679, + -0.0055761267, + -0.018462438, + -0.05594853, + 0.015462389, + -0.0481862, + -0.004344972, + 0.0030244838, + 0.0159324, + 0.0060571795, + 0.010854107, + -0.008685077, + -0.012441466, + 0.013035495, + 0.014430102, + -0.026823442, + -0.028275246, + -0.011863761, + 0.019569144, + 9.059072E-4, + 0.0017819897, + -0.029142236, + 0.008174863, + -0.0017620252, + -0.016708586, + -0.027254436, + 0.016743701, + -0.007644078, + -0.0072670537, + 4.381031E-4, + -0.0038873488, + 0.029542686, + -0.016087376, + -0.013695328, + -0.016869335, + 0.010351202, + -0.0024026236, + 0.01619591, + -0.007628988, + -0.012747344, + 0.003600088, + 0.015177065, + -0.0060511683, + 0.007970421, + -0.011581865, + 0.0012885303, + -0.013586837, + 0.0254047, + -0.0049434328, + -0.003757847, + -0.02580007, + -0.031415325, + -0.022201687, + 0.005581171, + -0.016328285, + 0.0047909007, + -0.015398871, + 0.021463038, + 0.008200242, + 0.022016002, + 0.0075344252, + 0.0068530347, + 0.007946432, + 0.010914582, + 0.0022783314, + -0.032028053, + -0.009303429, + 0.004956273, + 0.015663508, + -4.981912E-4, + 0.019231414, + 0.008665239, + -0.0024049515, + -0.013664419, + -0.014296364, + -0.014977433, + -0.008707556, + -0.026455535, + -8.54509E-4, + -0.0078501925, + 0.017218208, + 0.025477482, + 0.002427566, + 0.016673615, + 0.0064591262, + 0.008529509, + 0.002359328, + 0.014805557, + 0.006023602, + -0.017639967, + -0.004526329, + 0.013204936, + -6.0275156E-4, + 0.036213856, + 0.022839746, + -0.034572624, + 0.009256553, + 0.0279668, + -0.021973057, + 0.01912044, + -0.007825186, + -0.0049881083, + -0.02904266, + 0.0054600975, + 0.003982354, + 0.003369462, + -0.019585496, + 0.0073470846, + -0.005513283, + 0.006996144, + -0.0070480346, + 0.012215423, + 0.0029127817, + 0.011935794, + 0.02236638, + -0.030183487, + -0.012432172, + 0.009893609, + -0.012941987, + 0.0031047938, + 8.0727634E-4, + -0.0256373, + -0.007566689, + 0.008423812, + 0.004822906, + 0.014065951, + -0.027967947, + 0.0053925053, + 0.016196009, + 0.002396926, + -0.022077478, + 0.0020709012, + 0.007956424, + 0.015205702, + -0.004610898, + 0.00304955, + 0.026408844, + -0.0060435557, + 0.0032900756, + -0.0043853684, + 0.013117993, + 0.030863272, + 0.0054434123, + -0.015332208, + 0.032095794, + -0.024689117, + 0.027540568, + 0.0329154, + 0.014945724, + 0.0072250543, + -0.012531068, + 0.0036785437, + -0.023520954, + 0.0047665304, + 0.0054749474, + -0.010702132, + 0.0016360108, + 0.011542213, + 0.003978145, + 0.013678284, + 0.009011422, + 0.019172294, + -0.017516416, + 0.011151062, + 0.0039477753, + -0.009713343, + -0.025500445, + -0.0043167975, + 0.030959845, + -0.030988025, + -0.03773897, + -0.0058032456, + 0.0049633295, + -0.005640737, + 0.007861103, + 0.014817013, + 0.009386339, + -0.0090004215, + -0.009689762, + -0.010227362, + 0.020894641, + -0.016759874, + 0.020839745, + -9.386096E-4, + -0.011497654, + 0.0122582475, + 0.019308724, + 0.007102056, + 0.017356655, + -0.0013732878, + -0.013560305, + -0.012035488, + 0.0075137927, + -0.013855615, + 0.0058267056, + 0.0151084885, + -0.0014003523, + -0.035752747, + -0.009459317, + 0.022525262, + 0.0032452587, + -2.8679965E-4, + -0.017945899, + 2.751618E-4, + -0.01690621, + 0.0023991638, + 0.021043072, + -0.033182047, + -0.008027895, + -0.011066495, + 0.038207754, + -8.759858E-5, + 0.018790968, + -0.011137569, + 0.00912715, + -0.03267859, + 0.015905198, + -0.018883852, + -0.024490887, + 0.0053770067, + -0.039025187, + -8.4232615E-4, + 0.018625092, + -0.018713793, + 0.022722216, + -0.011143003, + 0.025529824, + -0.01041998, + 0.013381019, + -0.01912287, + 0.014985847, + -0.005802489, + -0.028648002, + -0.021449775, + 0.0032947802, + 0.018193899, + 0.0074326308, + 0.01599788, + 0.004953413, + -0.014524261, + 0.01783681, + 0.019861288, + 0.0012603652, + -0.001387448, + 0.01354684, + 0.013894075, + 0.015541468, + -0.010998482, + -0.006018874, + 0.009045861, + -0.020414123, + 0.012211154, + 0.018213145, + -0.01743894, + 0.0040565906, + -0.01759566, + -0.001732445, + 0.010706825, + -0.0031532613, + -0.016346913, + -0.01471803, + -0.01621461, + 0.0053797653, + -0.014130969, + 0.0055327998, + -0.01324393, + 2.6319816E-4, + -0.00842333, + -0.009687894, + -0.0063085766, + -0.0028247964, + 0.009403245, + 0.0041742143, + 0.0023596429, + 0.023320515, + 0.015516491, + -0.009209671, + -0.01648781, + -0.04987231, + 0.0044646417, + 0.018303812, + 0.0034731822, + -0.026795637, + -0.018562509, + -0.0011974698, + -0.012065197, + -0.0061163427, + -0.024704026, + -0.002168909, + 0.029527698, + 0.02544708, + -0.030192152, + 0.0036146156, + 0.006285195, + 0.012257186, + 0.02102435, + -0.010384304, + 0.021026446, + -0.003946942, + 0.008698471, + -0.029038006, + 0.010168118, + 0.01436802, + 0.017739253, + -0.012649357, + -0.0015245097, + 0.011987854, + 0.0034809462, + 0.025861792, + -0.034203436, + -0.022564141, + 0.014610357, + 0.009186902, + -0.015686978, + -0.0054956665, + -0.0066716676, + 8.829311E-4, + 0.0030012098, + 0.021662893, + 0.016770707, + -0.03172858, + 0.0030771976, + 0.013887556, + -0.009754963, + 0.021255953, + -0.0080738105, + 0.005695017, + 0.007846074, + -0.020099787, + -0.0039029669, + 0.018808035, + -0.0052019195, + 0.024222368, + 0.0051973257, + -0.0047247014, + -0.0037199878, + -0.0010588397, + 0.017321952, + 0.008641563, + 0.007902646, + -0.0033679097, + 0.012445635, + -0.013841851, + 0.00431918, + 0.026887614, + -0.017531555, + -0.010442492, + -0.0010619457, + 0.0048698043, + 0.004568532, + 0.0017712712, + -0.022569645, + -0.010829924, + 0.014246221, + 0.0049754824, + 0.0028907435, + 0.008742756, + -0.01579711, + -0.003642904, + -0.007677415, + -0.0072659305, + -0.0014536257, + 0.013876413, + -0.006874301, + 0.0020428933, + -0.0191412, + 0.0067197517, + 0.014324271, + -0.019971792, + -0.0019759722, + 0.0070625725, + 0.00660988, + 0.022472113, + -0.0034474237, + -0.021978704, + -0.010232848, + -0.02188495, + 0.008141749, + -0.019189253, + 0.044395838, + -0.017955817, + 0.002723824, + 0.01801339, + -0.0052696723, + 0.017166693, + 0.014843485, + -0.015050115, + -2.9000337E-4, + 0.009693963, + 0.02898442, + 0.01134231, + 0.012400888, + -0.0075475336, + 0.012618548, + 0.0028678614, + -4.127956E-4, + 0.0047597825, + 0.01572117, + 0.013795817, + -0.0069949166, + -0.0034487317, + -0.01396299, + 0.021399848, + -0.013444982, + -0.0098216785, + 7.5594673E-4, + 0.040058326, + 0.00202173, + -0.002272588, + 0.009905496, + 0.006891298, + 0.0046003023, + 0.016396435, + 0.0070661036, + 0.010717079, + -0.026031755, + 0.008324836, + 0.032086693, + 0.03532068, + 0.029144596, + -0.016957022, + 0.02021454, + 0.016080983, + -0.010537863, + -0.009006899, + -0.010690777, + 0.005788939, + -0.008655475, + -0.0057926057, + -0.009495467, + -0.0024122486, + 0.0076368153, + 0.036328953, + -0.004665684, + -0.0032789535, + 0.0049437135, + -0.00424517, + -0.009624732, + 0.0127100125, + -0.0025092557, + -0.023659931, + 0.009159473, + -0.0031904576, + -0.0066764713, + -0.022671806, + 0.016598001, + 0.017530177, + -0.011465757, + 0.0073967343, + 0.012030839, + 0.001381959, + 0.009696958, + -0.03178675, + 0.005090911, + -0.010066624, + 0.004717275, + -0.0087526245, + -0.012080552, + 0.006117962, + 0.026361689, + -0.004344928, + 2.891753E-4, + -0.002105601, + 0.009675842, + 0.014844734, + -0.006685481, + 0.018752629, + 0.014783754, + 0.008767852, + 0.017935421, + -0.0017584796, + 0.0034897733, + -0.0032940789, + -0.013453934, + -0.006959143, + 0.008451842, + 0.01965822, + 0.00777755, + 0.029625038, + -0.009820665, + -0.012399455, + -0.007985637, + 0.009183647, + 0.018460901, + 0.0017472666, + -0.0026091735, + 0.016968925, + -0.010607112, + -0.003917357, + 0.0042044343, + 0.0025005208, + 0.019163901, + -0.009009357, + -0.016354471, + -0.008146368, + -0.0033842386, + -0.00965257, + -0.026435854, + -0.0023915165, + 0.016192203, + -0.0037381318, + -0.00846366, + -0.023442563, + -0.003430205, + 0.049624506, + -0.009586429, + 0.012295454, + -0.010072281, + 0.017514443, + -0.02482893, + -0.021973634, + 0.0014217773, + -0.002674278, + 0.029208807, + 0.017592588, + 0.017706428, + -0.026097534, + -0.0026400746, + -0.027603334, + -0.014878102, + -0.0038615454, + 7.5103267E-4, + 0.008185676, + 0.017130326, + -0.01098703, + 0.00976274, + 7.4538635E-4, + 0.0062878076, + 0.015494419, + -0.009087444, + 0.002398629, + -0.016875349, + -0.0077111013, + -0.022323053, + -0.021511192, + 0.007819045, + 0.0012686916, + -0.0059629125, + -0.0023019514, + 0.044791296, + 0.03601765, + 0.010148742, + 6.683776E-4, + -0.004974618, + -0.01431048, + 0.010262916, + -0.0083155455, + -0.0018407917, + 0.015189419, + 0.003057692, + 0.017265612, + 0.005402735, + -0.026552394, + -0.023892328, + -0.0062418887, + -0.0028759385, + 0.022239922, + 0.0061294525, + -0.009494129, + 0.0067984886, + 0.011966963, + 0.0022970506, + 0.00251, + -6.591759E-4, + 0.0036892428, + -0.0025201936, + 0.011925763, + 0.020825617, + -0.01625823, + -0.022879658, + 0.019493977, + -0.007674083, + 0.003341934, + 0.009102647, + -0.0074352194, + 0.014461621, + 0.006513641, + 0.014663099, + -0.004150552, + 0.02396038, + 0.015356536, + -0.0108563565, + 0.0049328557, + -0.009402768, + 0.0023375722, + 0.018311037, + -0.009394902, + 0.01830304, + 0.04502253, + 0.022010868, + 6.004747E-4, + -0.01698056, + 0.001425067, + -0.0013610327, + -0.0015054601, + -7.7358645E-4, + 0.0057321773, + 0.018120062, + -0.004478981, + 0.007154461, + -0.010637198, + 0.015982376, + -0.015728094, + -0.0075682113, + 0.011361039, + 0.014759933, + 0.010159972, + -0.021883674, + 0.014454151, + 0.0010812765, + -0.014554664, + 0.023703782, + 0.017625751, + 0.013012737, + -0.037520967, + -0.0014330846, + -0.0067676962, + -0.0070336284, + -0.033202764, + -0.007811838, + -0.016497418, + 0.017684475, + 0.0055448534, + 0.018199798, + -0.02200488, + -0.007951021, + -0.010779046, + -0.026765011, + 0.025795272, + -0.0018113106, + -2.437426E-4, + -0.005546239, + 0.0077344556, + -0.0023876862, + -0.02772512, + -0.013228886, + -0.020058729, + -0.022857618, + 0.011873458, + 0.026311211, + -0.01054221, + 0.03142016, + -0.016109891, + 0.016232112, + 6.5022585E-4, + 0.0035929878, + -0.027759386, + 0.016550554, + 0.0036874332, + -0.022117376, + -8.6917897E-4, + -0.013169552, + -0.0151821375, + 0.014103046, + 0.004764373, + 1.6822398E-4, + -0.01356735, + -0.014570761, + -0.0025361094, + -0.010408071, + 0.002998162, + 0.0046335855, + -0.013108777, + -0.010917863, + -0.019631613, + -0.0038042122, + 0.012702766, + -0.023815632, + -0.0030966587, + 0.016976895, + -0.011093817, + 0.0028756359, + -0.0017149928, + -0.0072156033, + 0.009662709, + -0.023506043, + -0.0016836327, + 0.006337877, + 0.013164714, + -0.008471948, + -9.5021777E-4, + 0.0034285085, + 0.0013049279, + -8.099849E-4, + 0.0051180087, + -0.012061084, + 0.017209321, + 0.017691923, + -0.034560047, + -0.019693399, + 0.0041521494, + 0.00867318, + -0.0115321735, + 0.021484984, + 0.012729299, + 0.008940543, + 0.021106718, + 0.0075892294, + 0.022849275, + -0.004829834, + 0.0035349587, + 0.001030018, + -0.023331936, + -0.003175073, + -0.008559223, + -0.0051734643, + -0.01981337, + 0.0038610492, + -0.041112058, + 0.006040445, + 4.3403753E-4, + 0.028333409, + 0.0062019723, + -0.003023136, + 0.009594777, + -0.02874155, + -0.018158829, + 0.010500234, + 0.0092616575, + -0.005568705, + 0.008873147, + 0.027608003, + -0.004488506, + 0.006979282, + 0.0047487216, + -0.030554723, + -0.00424827, + -0.007724789, + 0.0061265137, + 0.0018093905, + -0.010400852, + 0.010311505, + -0.005970668, + 0.014207742, + 0.0015503281, + 0.02349867, + 0.0019771256, + -0.001609173, + -0.024593104, + -0.011915208, + -0.0014411636, + -0.008635565, + 0.008843234, + -0.0262661, + -6.4957223E-4, + 0.004026698, + -0.024506817, + -0.013087914, + -0.031747196, + 0.015949482, + -0.0028507214, + -0.008361364, + 4.771396E-4, + 0.012164636, + -0.0061341957, + 0.008129231, + -0.028295785, + -0.0107533885, + -0.016534196, + -0.00910285, + 0.009507204, + -1.4038215E-4, + -0.013361498, + -0.014389925, + 0.020776186, + -0.0015759281, + 0.03817021, + -0.02505281, + 0.0012686652, + 0.0051454175, + 0.01049559, + 0.014528678, + 0.03294261, + 0.012939975, + -0.013749101, + -0.023462985, + 0.016610468, + -0.009722491, + 9.136679E-5, + 0.041300423, + -0.00401952, + -0.02513395, + 0.009804781, + -0.01655895, + 0.009792611, + -0.006690579, + -0.020877125, + -0.0040359935, + 1.22920255E-5, + 0.02608931, + -0.00530846, + -0.0034045703, + 0.031533733, + -0.010717706, + -0.014172847, + -0.0016433309, + 0.008181243, + 0.0017908746, + 0.020870829, + -0.0019552065, + 0.004679102, + -0.009067232, + -0.007853615, + -0.02231617, + -0.005279464, + -0.020161862, + 0.007834602, + -0.0059946035, + 0.0013277602, + -0.0068244403, + -0.005861611, + -0.008330704, + 0.017132267, + 0.0049830326, + -0.0077102254, + -0.006914671, + 0.008281724, + 0.005077429, + -0.0045910464, + -0.007869114, + -0.02519094, + -0.00181928, + -0.0052969367, + 0.012133903, + -0.0026568044, + -0.008169783, + 0.011001595, + -0.008211508, + -0.0071503255, + -0.0035682956, + 0.016568651, + 0.015770014, + 0.02601452, + -0.002091551, + -0.0049149273, + 0.009834562, + 0.010189026, + -0.0062909173, + -0.01550841, + -0.01696786, + -0.009718198, + 0.0033901932, + -0.0085105, + 0.022911545, + -0.004926962, + 0.012710997, + 0.009860709, + 0.011368303, + 0.01031054, + -0.037145216, + -0.015159473, + 0.002850715, + -0.006810144, + 0.020641778, + -0.012053427, + -0.0036027967, + 0.009202766, + 0.0042402567, + -0.0066616153, + -0.008567668, + -0.018387789, + -0.01157218, + 4.4198565E-5, + -0.024677852, + -0.0039323396, + 0.015290624, + 0.01626471, + 0.028987816, + -0.0062862267, + 0.0046633314, + -0.0096221985, + 4.6512205E-4, + -0.0060894424, + -0.0066877827, + -0.024734603, + 0.015636433, + 0.027005497, + 0.016423635, + 0.023750974, + -0.023931962, + 0.0032219337, + -0.0017804478, + 0.0176689, + -0.013006513, + -0.011869678, + -2.1496297E-4, + -0.0052773706, + -0.008540598, + 0.008058887, + 0.013568789, + -0.021690598, + 0.0066459905, + -0.01879042, + 0.014894457, + 0.014344734, + 0.0024756175, + 0.019180771, + 0.002135425, + -0.016773924, + 0.029990366, + 0.0042317933, + -1.7977899E-4, + 0.0021418715, + -0.006423964, + 0.011885469, + 0.0012557135, + 0.002353452, + 0.019456787, + -0.012235537, + 0.0062265038, + 0.010910842, + -0.009212582, + -0.014853707, + -0.011583381, + -0.016839935, + 0.0019577157, + 0.010325698, + -0.0016873071, + -0.012593252, + -0.03192284, + -0.0100707, + 0.01143766, + -0.0037494577, + 0.018565161, + -0.031631134, + 0.013994477, + -0.021604901, + 0.006297112, + -0.0067249853, + -0.029348433, + 0.0065248334, + -0.002721976, + -0.016611911, + 0.009217128, + 0.005601792, + 0.025978662, + 0.0015770962, + -0.007790856, + 0.007505176, + -0.014798035, + 0.03246636, + -0.013392688, + 7.765524E-4, + -0.012648641, + 0.004905815, + 0.006897714, + -0.011941847, + 0.013143043, + 0.0055660233, + -0.029916799, + -0.023074096, + 0.0047573145, + -0.022355692, + -0.01193258, + -0.01092847, + -0.019922737, + 0.018213512, + 0.0066368124, + 0.013232971, + -0.0016286684, + 0.0067143016, + -0.023412699, + -0.014133605, + -0.011433669, + -9.6387736E-4, + 0.022956904, + 0.0044098026, + 0.009392824, + 0.005178526, + -0.008007333, + -0.0068609305, + -0.0060832025, + -1.2941221E-5, + 0.020963266, + 9.605857E-4, + -0.004456201, + -0.012723739, + -0.0139792105, + -0.0016143182, + 0.02103629, + 0.011933441, + 0.00242496, + 0.021186646, + 0.014610363, + -4.71732E-4, + 0.007686879, + 0.009696028, + 0.006683078, + 0.021830602, + 0.018969022, + -0.0046524415, + -0.014615931, + -0.013118052, + -0.021315638, + -0.002577129, + -0.015927091, + 0.013165313, + 0.0019292651, + 0.017103665, + -0.016399149, + -0.004609183, + 0.014700535, + 0.014861026, + 0.008916238, + 0.037987217, + 0.018817175, + 0.00817936, + 0.007785927, + -0.004664178, + 4.27252E-4, + -0.025251653, + 0.01761074, + 0.017563231, + 0.017987574, + -0.010274149, + -0.0057076956, + -2.527664E-4, + 0.027445031, + 0.008284261, + 0.014634872, + 0.02775615, + -0.028686019, + -0.01592292, + 0.015245356, + 0.008762748, + 0.014191036, + 0.013226961, + 0.0074499813, + -0.0142679, + -0.033486173, + -0.024792608, + -0.03664375, + -0.02397283, + 0.0201295, + -0.0011301051, + -0.01969154, + -0.0012662834, + 0.0076311897, + 0.018406948, + 0.019143958, + 0.02384169, + 0.00472068, + -0.008365551, + 2.2487751E-4, + 0.020559099, + -0.0072847884, + -0.0013173418, + 0.008251161, + -0.0062704813, + 0.0070604696, + -7.241217E-4, + -0.014731386, + 0.00740346, + 0.03466794, + 0.03665784, + -0.017473439, + -0.01432565, + -0.0010065518, + -0.018989958, + 0.02441641, + 0.009674408, + 0.0166828, + -0.0029772308, + 0.0036893985, + 0.0054815384, + -0.017085077, + 0.0054732035, + 0.015913919, + -0.0064728474, + -0.019275555, + -0.008468144, + 0.0036402158, + 1.0479009E-5, + 0.023393363, + -0.011579454, + -0.012475825, + -0.009401615, + -0.008589355, + -0.022856534, + 0.02601074, + 0.027355177, + 0.0334585, + 0.0074210092, + -0.0038917975, + 0.016967714, + -0.0018181117, + 0.004205562, + -0.007956962, + 0.0036576823, + 0.0021048088, + -0.0094014285, + 0.009365935, + 0.038614035, + 0.005319997, + -0.003805841, + -0.015572627, + 0.020171978, + -1.0028133E-4, + 0.004201796, + -0.0083490005, + 0.007977268, + -0.017117111, + -0.00658168, + -0.012762728, + 5.956682E-4, + -0.013813474, + 0.0062945914, + 0.0129290195, + 0.007213672, + -0.0012055401, + 0.022396764, + -0.015994528, + -0.020570418, + 0.0042819516, + -0.019973407, + -0.002997196, + -0.0023340534, + -0.0133429505, + 0.019145524, + 8.3044963E-4, + -0.008441055, + -0.0047331736, + -0.007978017, + 0.0109041575, + 0.0034840608, + 0.027416473, + 0.00456998, + -0.01623338, + 0.020654034, + -0.01888445, + 0.009842302, + 0.02385958, + 0.0023771822, + 9.962097E-4, + -0.0060865595, + -0.002571833, + -0.0038546196, + -0.0035317985, + -0.007620304, + 0.015496945, + 0.0049048495, + 0.009103305, + -0.014363577, + -0.005193007, + 0.015609893, + -0.0046696495, + 0.008800565, + 0.01735333, + 0.024839828, + -0.012020546, + 3.1379957E-4, + 0.003760082, + 0.0037973647, + 0.009173812, + 0.027808774, + -3.88743E-4, + -0.0014367762, + -0.006671364, + 0.008960207, + 0.009218664, + 0.00884685, + -0.008259406, + 0.031029975, + 0.011751264, + 0.019346805, + -0.020980444, + -0.012961508, + 0.02938395, + -0.010173925, + -0.022565149, + -0.011845033, + -0.012096597, + -0.017150654, + -0.004852574, + -0.012323399, + 0.0097226165, + 0.0051444494, + -0.02366067, + -0.0068329843, + -0.01089392, + 0.0011554598, + -0.015421952, + -0.017698994, + 0.014201736, + 0.01524153, + 0.005500999, + -0.0075290008, + -0.014415154, + 0.0017907964, + 0.023036474, + 0.009538001, + -0.013826279, + -0.014625065, + -1.2698998E-4, + 0.017720368, + -0.010438755, + 0.010537871, + -0.018585786, + 0.004219322, + -0.0014362077, + -0.021598097, + 0.030288327, + -0.030903373, + 0.01856942, + -0.0031796303, + -0.0065957117, + 0.012512746, + -0.01855266, + -0.013503995, + -0.0067900703, + 0.026780853, + 0.001427225, + -0.008113178, + -0.007220647, + 0.021114945, + 0.0010015968, + 0.0044148224, + -0.022437839, + -0.0019221097, + -0.0058266367, + 0.008243072, + -0.009785706, + 0.035452787, + -0.0065584946, + -0.020952625, + 0.0069456026, + -0.014013368, + -0.009598714, + -0.014958038, + 0.005718311, + 0.004693075, + -0.035511155, + 0.0017570818, + 0.016188022, + 0.031985886, + 0.0068055447, + 0.0068355, + 0.006110009, + -0.02662975, + -0.0044864817, + -0.03642633, + 0.03614261, + 0.012960248, + -0.0054717925, + -0.01143217, + 0.016410712, + -0.0030134886, + -0.017264416, + 0.0042090504, + -0.0060598115, + -0.01003812, + 0.013310045, + 0.014758198, + 0.020639986, + 0.033784512, + -0.004619237, + 0.011552469, + 0.0057065217, + -0.0053844815, + -0.028540164, + 0.009585142, + -0.015890293, + -0.020550122, + -0.0037542647, + -0.022231407, + 0.023896452, + 9.448326E-4, + -0.025655031, + -0.022303678, + -0.021676531, + -0.0072697583, + -0.0061859614, + 0.014165568, + -0.0011808445, + 0.022575086, + 0.01789528, + 0.014403412, + 0.01464299, + 0.01398795, + 0.019568993, + 0.029309034, + 0.0016959738, + -0.007317287, + -0.012778062, + -0.033038292, + 0.010857049, + -0.010050662, + 0.0110738315, + 0.004749295, + -0.014642591, + -9.0818045E-5, + 0.0013618305, + -9.6197956E-4, + -0.0120763, + -0.0033471684, + 0.004440989, + -0.007923794, + 4.7103196E-4, + 0.0065536266, + -2.431149E-4, + -0.028199306, + -0.0042271176, + 0.0017474344, + 0.0039539924, + 0.009876891, + -0.012273764, + 0.02418515, + 0.013512222, + -0.006786533, + 0.0023784305, + -1.1593722E-4, + -0.0015388665, + 0.014285972, + 0.00554558, + -0.02244417, + -0.031002272, + -0.0012283464, + -0.011899747, + 0.0017092783, + -0.018546646, + -0.0027266373, + -0.0065956223, + -0.017862683, + 0.0045713647, + -0.008039022, + 0.029496897, + 0.011456765, + -0.027900817, + 0.00873787, + 0.0275235, + -0.010216683, + 0.0017854284, + 0.008613388, + 0.021973608, + 9.803546E-5, + 0.016878763, + -0.0149411755, + -0.022889256, + -0.0017268747, + 0.023649978, + 0.0065464485, + -0.0025468166, + -0.020203328, + -0.005024875, + 0.0193844, + -0.021052146, + 0.04045164, + -0.0050214864, + -0.0043258546, + -0.008931749, + 0.0073689995, + -0.00861989, + -0.007915124, + 0.0066577997, + -0.006396445, + -0.008137586, + -0.016227664, + -0.0014166259, + -0.0054486394, + -0.024130968, + -0.022451116, + 0.013746425, + 4.7629583E-4, + 0.019466562, + 0.0081242975, + -0.0037783429, + -0.0022005318, + -0.0062984643, + -0.009802827, + 0.012991803, + 0.0076463865, + -0.008950291, + 0.023126671, + -0.008975892, + 0.011775748, + 0.0155671295, + -0.0016298065, + -0.04633986, + -0.029662149, + 0.0014779978, + -0.013553515, + 0.005144375, + -0.0016417706, + 2.3212351E-4, + 0.034509677, + 0.006536382, + -0.021901663, + -0.008181872, + -0.02921843, + 0.016854595, + 0.03158558, + -0.016027432, + -0.002013617, + 0.011017353, + 0.015107673, + 0.009738332, + 0.016829824, + -0.01597024, + 0.021402318, + -4.223267E-4, + 5.004221E-6, + -0.014886022, + 0.011918051, + 0.018739022, + 0.0030747948, + -1.504144E-4, + -7.7486475E-4, + -0.0012424197, + 0.011264738, + 0.012860912, + -0.040561445, + 0.024033887, + 0.008519294, + 0.010880141, + -0.02395194, + -0.025596544, + 0.004329192, + -0.00744396, + 0.0064922106, + 0.0093854945, + -0.027401278, + -0.007155144, + 0.022860067, + 0.02159771, + -0.016761703, + 0.001265675, + -0.0027517073, + -0.010281167, + 0.013265692, + -0.0016196597, + -0.014832856, + -0.02532369, + -0.017598432, + 0.0022470462, + -0.0047554625, + -0.009849467, + -0.015564128, + -0.004486664, + 0.023657303, + 0.0019713147, + 0.017061526, + -0.0057924623, + 1.4798448E-4, + 0.020007728, + -0.0022453885, + -0.032246053, + -0.020683117, + 0.019054616, + -0.021613736, + -0.006155093, + -0.005975542, + 0.009065541, + -0.014522799, + -2.519818E-4, + 0.006427868, + 0.02221324, + -0.0022090375, + -0.010843754, + 0.01829204, + -0.024845012, + 0.006809613, + 0.012569417, + 0.023024745, + -0.013082606, + -0.010662985, + 0.0027778798, + 2.3953302E-4, + -0.011635422, + 0.009340165, + -0.029785372, + -0.0036955567, + 0.004039148, + -0.0013825969, + 0.008229873, + 0.013415265, + -0.016375236, + -0.008997066, + 0.015546714, + -0.012340278, + -7.3866907E-4, + 6.7023514E-4, + -6.810258E-4, + 0.011982429, + 0.01613808, + -0.04252021, + -0.003757071, + 0.016080117, + 0.028039021, + 0.0047717676, + -0.0123749515, + 0.016691929, + -0.019791232, + -0.007886196, + 0.008905615, + 0.006464507, + 0.015471852, + -0.007069129, + -0.0067175664, + -0.018465696, + -0.010490778, + -0.03534104, + -0.013699887, + -0.017870244, + -0.008455859, + -0.012095182, + 0.0063540316, + -0.01863295, + -0.028174857, + -0.027796322, + 0.03522779, + 0.0057048546, + 0.008687798, + -9.0480753E-4, + -0.0030400448, + 0.011719586, + 0.013892129, + 0.009336308, + -0.0074684327, + -0.00742167, + 0.0014563858, + 0.01555636, + 0.007279997, + 0.015201821, + -0.026706567, + 0.0075911703, + 0.021756612, + 0.0033377912, + 0.010301639, + 0.02628319, + -0.006311938, + -0.012320256, + -0.0029155347, + -5.437205E-4, + 0.010571827, + -0.011774989, + 0.0045389584, + -0.022930361, + 0.010938207, + 0.022525037, + -0.04152069, + 0.0020147478, + 0.023310391, + -0.005528709, + -0.020425279, + 0.008544314, + -0.003257904, + 0.014937998, + -0.002807182, + 0.0062831454, + -0.0074001364, + -0.005582616, + 0.009860678, + 0.0076221926, + -6.224292E-5, + 0.019278487, + -0.021671588, + 0.0045343474, + -0.006581979, + -0.024496175, + -0.01896865, + -0.00989589, + 5.402959E-4, + 4.8812357E-4, + -0.0029570004, + 0.0058579533, + -0.010385637, + 0.012054437, + 0.00553472, + -0.00915889, + 0.0017949545, + 0.025394667, + 8.747113E-4, + -0.003053615, + 0.0036091607, + -0.010922232, + -0.008217639, + -0.0020742796, + -0.01983708, + -0.0051163263, + 0.0031136253, + -0.010002177, + -0.010157541, + -9.111392E-4, + -0.010224871, + -0.008814596, + -0.0068225316, + -0.022058513, + -0.01066567, + -0.002606212, + 0.0039187814, + 0.01015514, + -0.007339823, + -0.003917352, + 0.0050642253, + -0.015693475, + -0.009752001, + 0.01632186, + 0.009213848, + -0.008061292, + 0.0010213038, + -0.007270345, + 0.037725892, + -0.004707389, + -0.0042057373, + 0.008526501, + -0.003989444, + 0.018540338, + 0.0089808395, + -0.022280315, + 0.018976418, + 0.013051442, + -0.008222162, + -0.015430846, + 0.007442282, + 0.0016299989, + -0.0038170647, + 7.7611377E-4, + 0.029910306, + -0.028450647, + 0.011500661, + -0.01576675, + -0.00447948, + -0.038064748, + 0.02374253, + 0.036493942, + -0.0027966378, + -0.026162855, + 0.021599779, + -0.024094552, + -0.032275345, + -0.016185947, + -0.021838618, + 0.020206748, + -0.014438345, + -0.014031011, + 0.03262801, + 0.0024798636, + -0.0104693705, + -0.0057930225, + 0.011383092, + 0.013741134, + -0.024286037, + 0.005038013, + -0.0013465184, + 0.0057293135, + 0.03508673, + 0.0031835497, + -0.0090976, + 0.010233144, + 0.038269695, + 0.015390761, + 0.0026229995, + 0.0011326802, + -0.007818942, + -0.0153398635, + 0.006069729, + 0.011087902, + -0.004965702, + -0.008320838, + 0.01768524, + -0.019480012, + -0.012067071, + 0.0048875604, + 0.011139908, + -0.012022901, + -0.014138027, + -0.031203207, + 0.0034893644, + -0.0019494441, + 5.6653895E-4, + -0.020575056, + -0.005553893, + -0.0014193865, + 0.0057964087, + 0.014461001, + 0.009540462, + -0.0053984807, + 0.0014022108, + -0.029505473, + -0.0017816758, + -0.033056326, + -0.0037897695, + -0.021096438, + -0.0033581948, + -0.014655423, + -0.004716164, + 0.009122346, + -0.005890276, + -8.291573E-4, + -0.0031613505, + 0.003992635, + 0.013069856, + -0.018192124, + 0.026925849, + -0.0035056625, + -0.006966618, + -0.0029295066, + 0.031233715, + 0.030084055, + 0.00969651, + -0.023216035, + 0.013133226, + 0.022146324, + -0.0058662617, + -0.004414878, + 0.01161381, + 0.01825029, + 0.034785096, + 0.025181893, + -0.009513424, + -0.029352764, + 0.010977522, + 0.022474192, + 2.2100052E-4, + -0.016752442, + -0.0149970325, + -7.063967E-4, + -0.010585127, + 0.015572847, + 0.03129261, + -0.025029553, + 0.008977862, + -0.012581462, + 0.005726559, + -0.0072636153, + -0.012235056, + 0.024444686, + 0.01774968, + -0.03216228, + 0.013762421, + 0.004126988, + 0.011072852, + 0.007624341, + -0.011462865, + 0.013151585, + 0.009658345, + 0.022342948, + -0.00817592, + -0.019927548, + 0.018870905, + -0.01153652, + 0.006429491, + 0.01177947, + 0.017609883, + -0.03420494, + -0.0057854187, + 0.0042659906, + 0.0044462783, + 0.02679121, + 0.034418903, + -0.0076168953, + -9.1323274E-4, + -0.0023674027, + 0.004364208, + -0.013754622, + -0.020521715, + -0.001990916, + 0.010955717, + -0.013259101, + -0.013371565, + 0.0051377257, + -2.2316416E-4, + 0.031150986, + 0.006580446, + 0.012758747, + 0.020972526, + -0.0025354428, + -0.017280782, + 0.0051259794, + -0.028016532, + -0.011405506, + -0.0025850611, + -0.008300614, + -0.024288215, + 0.0083074495, + 0.0025281128, + -0.006326292, + -0.022455448, + 0.014942159, + -0.032088775, + 0.0062387297, + 0.003167205, + -0.029581217, + -0.021776639, + 0.037875503, + 0.011572468, + 0.024492538, + -0.0021896444, + -0.005144966, + 0.02284431, + 0.018129693, + 0.003991616, + 0.0016055194, + -0.021495678, + 0.025302593, + 0.012861761, + 0.0031732616, + 0.033695262, + -0.022582602, + -0.021559477, + 0.0031926008, + -0.02062006, + 0.035635617, + -0.01777574, + 0.0052836826, + 0.004008557, + -0.015927248, + 0.009716446, + 0.005994767, + 0.004384371, + -0.0068373093, + 0.009968174, + 0.013255544, + 0.03890148, + -0.004620359, + -0.0032579764, + -0.012654178, + -0.0029911338, + 0.008146294, + -0.0016792801, + 0.01826205, + -4.967345E-4, + -0.011404111, + -0.01673712, + -0.016458366, + -0.016237836, + -0.0075850817, + 0.008057931, + 0.027471457, + 0.004024761, + 0.0116861975, + -0.028081592, + 0.0011220941, + 0.006832183, + 0.008327917, + 0.016905745, + -0.04683801, + 0.013775642, + -0.016997082, + -1.2203619E-4, + 0.0316142, + 0.02931852, + 0.011270513, + -4.8650472E-4, + -0.016458428, + 0.018900879, + 0.0011081874, + -0.042472877, + 0.008824711, + -0.0016469879, + -0.0011692648, + 0.009620959, + 0.0115529895, + -0.02136904, + 0.010315925, + -0.010922353, + 0.004934318, + 0.009461165, + 0.010407137, + -0.004306894, + 0.007787593, + 0.029084245, + -0.01074816, + -0.02703298, + -0.010309389, + 0.008537547, + 0.030965004, + 0.02494376, + -0.01949084, + 0.0054247035, + -0.031109313, + -0.0069556925, + -0.009881318, + 0.02669127, + -0.033367798, + -0.012921605, + 0.0037858442, + -0.015366063, + 0.0105096325, + 0.021884562, + -0.005002516, + 0.011578674, + 0.0058750757, + 0.011772557, + -0.01142594, + 0.005855393, + 6.5498427E-4, + 0.011691744, + 0.010149706, + -0.018105263, + -0.005083334, + 0.023043672, + 0.027368825, + 0.0046508186, + -0.021107445, + 0.0035646579, + 0.0015852307, + 0.0034790915, + 0.0125525035, + 0.007478402, + 0.00785147, + 0.02720453, + -0.0022185086, + 0.024378516, + 0.011091994, + -0.019285625, + -0.026243519, + -0.031470522, + -0.0014187961, + 0.0029896968, + -0.020668438, + -5.0217734E-4, + 1.2733994E-4, + 0.0072978972, + -0.015045383, + 0.0025058985, + -0.008412565, + -0.008511172, + 0.012862148, + -0.011729332, + 0.017708903, + 0.012846935, + -0.004350671, + 0.011903334, + -8.215423E-4, + -0.0019178734, + 0.015155682, + 0.0062060715, + 0.0022702953, + -0.0010789987, + -0.011020346, + -0.011074532, + 0.0048712906, + -0.00590429, + -0.0031636998, + -0.013733172, + -0.00353689, + 0.0070169205, + -0.005481393, + -2.0615253E-4, + -0.017005917, + -0.020715656, + -0.00297102, + 3.7652713E-5, + 0.029066818, + 0.027211938, + -4.0493745E-4, + 0.010930296, + 0.011591526, + -0.011904927, + 0.010043241, + -0.013537326, + -0.00998656, + -0.017109506, + -0.01105152, + -0.03234193, + 0.0027853341, + 0.022300733, + -0.0038859013, + 0.002168166, + -0.014097176, + 0.009380643, + -0.006477805, + -0.0032284684, + -0.016871264, + 0.010383537, + -0.016593816, + -0.033642597, + 0.0010185024, + -4.78842E-4, + 0.01978606, + -0.016567789, + 0.0081134, + -0.0052612373, + -0.0011121588, + 0.004724417, + -0.009518304, + 0.0051709423, + 1.339027E-4, + 0.017194394, + -0.0017341096, + 0.0011917737, + -0.0019866768, + 0.02949111, + 0.015410975, + 0.0083955005, + -0.008907176, + 0.007820346, + 0.0069294623, + -0.02750606, + -0.02148882, + -0.014851505, + 0.005193045, + 0.007569397, + -3.8433514E-4, + 0.00944443, + 0.010615546, + 0.0016918025, + 0.0037437058, + -0.008550548, + -0.010859013, + 0.0041820873, + 0.021563994, + 0.020374658, + 0.013947274, + 0.005677246, + -0.01082549, + 0.031034151, + 0.004996212, + -0.005116008, + 0.0025160038, + -0.015843667, + -8.853797E-4, + -0.010028851, + -0.026140358, + -0.015144154, + -0.010797074, + 0.014684983, + -0.008579102, + -0.016880339, + -0.0076262434, + -0.0030976017, + 0.008884011, + -0.019313963, + 0.023300491, + -0.0052008233, + 5.372676E-4, + 0.0064713494, + -0.027935516, + -3.6125188E-4, + -0.010371425, + -0.0058352468, + 0.025407549, + 0.0048292894, + -0.012301941, + 0.0064441864, + 0.017400969, + 0.0028752973, + -0.009164914, + -0.0027268932, + 0.016006803, + 0.012961876, + -0.026283385, + 0.011148588, + -0.020939898, + -0.023928644, + -0.023342451, + -0.01791412, + -0.0046745907, + -0.026204308, + 0.0065435288, + -0.010103642, + 0.021159546, + -0.024037642, + 0.011691293, + -0.020474298, + -8.0018677E-4, + 0.018254053, + -0.011887457, + 0.012941871, + 0.041322142, + 0.014954128, + -0.0050830417, + 0.0061600083, + -0.022405762, + -0.0062700086, + 0.003252475, + -0.009770451, + -0.027783098, + -0.0066356347, + -0.003940196, + 8.3407026E-4, + -0.0010903033, + -0.02119594, + -0.019053642, + -0.022444338, + -0.008938732, + 0.013044247, + -0.00365796, + 0.014603148, + -0.01078038, + 0.002072168, + -0.007588865, + 0.02316213, + 0.013620879, + 0.022139154, + 0.0029951448, + 0.02052375, + -0.012780423, + 0.006417331, + -0.0048453524, + 0.0052475925, + -0.0047008367, + 0.015024268, + -0.019777795, + 0.01276387, + 0.008428136, + -0.010157803, + 0.035998538, + -0.0047977883, + -0.013982349, + 0.021732638, + 0.0015122375, + 0.008532853, + 0.01656314, + 0.013980623, + -0.01743664, + 0.017483907, + -0.0013604396, + 0.0395325, + -0.015779417, + -0.008935797, + 0.009509302, + -0.010282461, + 0.017374588, + -0.0030348212, + 0.0028262623, + -0.016583508, + 6.8200025E-4, + -0.012284226, + 0.022165295, + -0.0066842334, + -0.0038800074, + 0.010095716, + 0.014671361, + 0.0061255484, + -0.01983909, + 0.014291065, + -0.030179266, + 0.016763752, + 0.030092087, + -0.011761033, + -0.01803664, + -0.015050148, + -9.2039374E-4, + -0.019540973, + 0.010716432, + -0.0039031084, + -0.01136729, + 0.0052660885, + -0.04176663, + 0.036606587, + -0.0035334122, + 0.013676018, + 0.0053351717, + 0.015256976, + 0.021980355, + 0.0035195448, + -0.0055515375, + -0.014544335, + 0.0058313785, + -0.0067596575, + -0.01762196, + -0.010946882, + 0.00867131, + -0.030596836, + 0.021001525, + 0.0072447606, + -0.013451049, + 0.011054041, + 4.7919445E-4, + -0.0061769946, + -0.0044891858, + 0.0022858512, + 0.004800025, + 0.013521954, + -0.005512202, + 7.866864E-4, + 0.030841226, + -0.008201157, + 0.012102411, + -0.0021316316, + -0.008825115, + -0.0033682473, + 0.012180193, + 0.03548343, + 0.03659349, + -0.0073968456, + 0.0036230793, + -0.0057341093, + -0.022485947, + -0.010414665, + 0.00744103, + 0.0016264395, + -0.0094896015, + 0.0063999286, + -0.008765331, + 0.012967047, + -0.011676191, + -0.019358391, + 0.002476301, + 3.3132374E-4, + -0.016751269, + -0.0019999864, + -0.0064970343, + 0.019057894, + -0.015632812, + 0.0075267716, + 0.010833899, + -0.022686241, + 0.012952983, + 0.001990449, + 0.002301203, + -0.027472015, + -0.033253178, + -0.0016850027, + -0.029554822, + -0.024104875, + -0.006811961, + -0.0012976376, + 0.0047401995, + -0.003941728, + 0.013166588, + 0.0024314371, + -0.007626662, + -0.007082819, + -0.010188795, + 0.004064522, + 0.013993552, + -0.0012662204, + 0.024740541, + -0.0018038816, + 0.0010570713, + 0.00811979, + -0.0072403243, + 0.020084545, + 0.0015908722, + 0.021653756, + -0.013555365, + -0.014958557, + 0.038586434, + -0.014149005, + 2.1859362E-4, + 0.0148763945, + 0.027556214, + 0.018532848, + 0.015786916, + 0.03210341, + -0.0049950443, + -0.0052490057, + 7.9165626E-4, + 0.021748947, + 0.016706152, + 0.0029937443, + -0.03094045, + 0.035645247, + -0.025549578, + -0.006897879, + 0.0075834286, + 0.0037425638, + -0.031745616, + 0.021288196, + 0.02817211, + 0.02113351, + -0.0021745786, + -0.01289104, + -0.022289868, + -0.0064496147, + 0.022140665, + -0.025820544, + -0.012913792, + 0.051601626, + -0.02771294, + -0.025621986, + -5.20573E-4, + -0.020559127, + -0.011130727, + 0.005521621, + -0.017607428, + -0.001138909, + -0.020249994, + -0.0017256545, + 8.2781556E-4, + 0.012376392, + -0.009546849, + -0.001814616, + -0.0090916995, + 0.02219046, + 0.006365726, + -0.0021037718, + 0.019046193, + -0.008662693, + -0.016655719, + 0.020553883, + -0.022107452, + 0.011573522, + 0.01851221, + -0.0069877277, + 0.005049797, + 0.010813251, + 0.012619624, + -0.0043856776, + -0.008788542, + -0.0058842706, + 0.001359439, + -0.0052741603, + -0.0019638173, + -0.0072940397, + -0.028014261, + -0.01615916, + -0.02000434, + 0.006723021, + -5.2728236E-4, + 0.0076795043, + -0.016742066, + -0.008458968, + 6.846789E-4, + -0.019441819, + -0.013326139, + -0.020479701, + -0.016535718, + -0.009305726, + -7.161039E-4, + 0.015553448, + 0.013350172, + 0.038201187, + -0.009927846, + -0.003198078, + 0.0015926051, + 0.012455535, + -0.008415496, + 0.0029175007, + -0.005595143, + -0.004272058, + -0.007356757, + -0.002435635, + 0.038280122, + 0.023752902, + -0.016060323, + -8.3130685E-4, + -0.016076813, + 0.005075571, + 0.0028647766, + 0.00904749, + -0.024545103, + 5.9349136E-4, + -0.015241147, + -0.025785264, + -0.023920046, + -0.021966241, + 0.018583413, + 0.012696707, + 0.025885213, + -0.0042256415, + -0.022141736, + 0.0066627194, + -0.01020103, + 0.016879188, + -0.026979947, + -8.683381E-4, + 0.012581358, + 0.008441945, + -0.0123878, + -0.012877081, + 0.007082335, + 0.012702903, + 0.019042036, + -8.345343E-4, + 0.0022574237, + -0.0060264086, + 0.019453224, + 0.008910956, + 0.025072137, + 0.016519647, + -0.026876014, + 0.017662259, + 0.014292833, + -0.006270591, + -0.01715104, + 0.02518223, + -0.0151137095, + 0.0036180299, + -0.0044180537, + -0.014329523, + 0.002914946, + 0.0129224695, + -0.006088084, + -0.0060126223, + -0.009499819, + -0.048758, + -0.007910594, + -0.012675125, + -9.979638E-4, + 0.0027207893, + 0.043448307, + -0.011916368, + -1.0639749E-4, + 0.004006721, + -0.027249053, + 0.0015260905, + 0.01020328, + 0.0044880295, + 0.027467754, + -0.017003149, + 0.010547476, + -0.004634198, + 0.0038412914, + -0.025310487, + 0.010579811, + 0.0070310887, + -0.0036479468, + 0.012981412, + 0.020677818, + -0.0030310147, + 0.0204834, + 0.012039799, + -0.013839118, + 0.008729196, + -0.008330523, + -0.005384295, + 0.0051274034, + 0.021686248, + -0.014066829, + -0.021813506, + -0.005069042, + -0.01915663, + 0.016099276, + -0.009886433, + 0.00340908, + 0.020718096, + -0.014693245, + -0.007529003, + 0.011034774, + -0.014248644, + 0.0064631747, + 0.0065459604, + -0.018414622, + 0.004206115, + -0.01625876, + 0.004688381, + -0.014150986, + -0.012740921, + 0.0018807064, + 0.0060128393, + 1.0954399E-5, + 1.1950649E-4, + 0.016557338, + -0.0069818944, + -0.024379067, + 0.021760637, + 0.011483293, + 0.021799551, + -0.005025457, + 0.033336427, + -0.024151413, + -0.0017177359, + -0.012370708, + 0.020845732, + -0.018134281, + -0.013192689, + -0.005334265, + -0.011669149, + -0.0018619864, + 0.009812763, + 6.0085056E-4, + 6.351006E-4, + -0.023762893, + -0.008080991, + -0.02044808, + 0.005503006, + 0.00670285, + 0.0023314771, + 0.008864136, + 0.019882929, + 0.020696605, + 0.0078585455, + -0.0038199772, + 0.005189116, + -0.019201891, + -0.01421144, + -0.0036375066, + -0.008581442, + -0.005335897, + 0.020617573, + -9.760659E-4, + -0.015435791, + -0.029937582, + 0.010668797, + -0.006921796, + -0.016958542, + -0.026241316, + 0.012977769, + -0.004282732, + -0.009765511, + -0.004961577, + 0.014668514, + -0.00829449, + 0.020994296, + 0.012137394, + 0.017590316, + 0.016087325, + -0.008223976, + 0.025250196, + 0.009503007, + 0.005476862, + 0.0081390245, + 0.008164052, + 0.0061562425, + -5.5441645E-4, + -0.006026384, + 0.020493086, + -0.009904949, + -0.011818543, + 0.01747265, + 0.032735284, + -0.022331536, + 0.023830077, + -0.0012444386, + 0.024759494, + -0.015554318, + -0.0067442087, + -0.014768058, + -0.0081267385, + -0.020619176, + -0.018418413, + -0.023095423, + 0.016060323, + -0.013921934, + -0.004461657, + 0.0029654293, + 0.046095338, + -0.0012038803, + -0.02463241, + 5.367261E-4, + -0.01006444, + 0.004246659, + -0.019655954, + 0.033122074, + -0.018369297, + 0.012395731, + -0.0017989511, + -0.0017028387, + 0.003075167, + -0.013162046, + 0.034518152, + -0.013068936, + 0.017970735, + -0.0029556039, + 0.0055377465, + 0.008914249, + 0.007322753, + -0.03181811, + -0.0046296744, + 0.0076965494, + -0.013747715, + 0.0054143635, + -6.112395E-4, + 0.018653756, + -0.011619857, + -0.005914768, + -0.0010649852, + -0.0158041, + 0.011509294, + 0.02195797, + 0.010556612, + 0.0104402695, + -0.010133706, + -0.0090338355, + 0.016215203, + 0.004189864, + -0.008818436, + 0.006126727, + 0.02988151, + -0.007520047, + -0.0012838991, + -0.017028462, + -0.02029829, + 0.030439386, + 0.018816996, + -0.022761988, + -0.0054837186, + 0.051123813, + 0.016833356, + 0.024077592, + 0.019584235, + 0.014633165, + -0.0034339672, + -0.0035792137, + 0.024508743, + -0.0046250387, + -0.026108729, + -0.012617467, + -0.004560888, + 0.012717999, + -0.029791057, + -0.011788187, + -0.005151453, + -0.010373454, + 0.015479035, + -0.018229283, + 0.010766781, + -0.0071618306, + -2.085418E-4, + 0.012413177, + -0.03709876, + -0.014776168, + 0.0054701273, + -0.017159734, + -0.011269491, + -7.517167E-4, + -0.0010367873, + -0.008589728, + -0.009233213, + 0.008773836, + -0.013758115, + 0.012525724, + -0.013258462, + -0.023066645, + 0.011243526, + 0.005817133, + -4.2230412E-4, + 0.005707676, + 0.022992758, + 0.03417176, + -0.004254379, + 0.009521009, + 0.01542828, + 0.0030488388, + 0.008754444, + 0.022803415, + 0.021835038, + -0.009958556, + -0.028576346, + -7.5423764E-4, + 0.011404671, + 0.0059916293, + -0.007051761, + -0.0012582613, + -0.027241739, + -0.0043222206, + -0.0012072374, + -0.007860487, + -0.0017247368, + 0.004255653, + -0.029454214, + -0.031689882, + 0.025737653, + -0.004895913, + -0.007736615, + 0.0035202855, + -0.013295186, + -0.005402894, + -0.015718149, + 0.004269481, + -0.02366975, + 0.008185336, + -0.019711744, + 0.012222358, + 0.0049537607, + 0.004171559, + -0.00824972, + 9.816765E-4, + -0.0013689828, + 0.0068069417, + 9.419689E-4, + 0.020668305, + 0.015552912, + 0.006351906, + 0.0088650575, + 0.0054494916, + -0.008761409, + -0.014587748, + -0.029064324, + 0.0058894465, + 0.0041740397, + -0.0081333015, + 0.0059778662, + 0.010003894, + 0.021566743, + -0.022119505, + -0.022485863, + -0.012483129, + -0.027683815, + -0.009649827, + 0.020792983, + -0.001024572, + -0.0014963249, + 0.004499645, + 0.007416048, + 4.1437763E-4, + 0.0069200126, + -0.0148146, + -0.0025222215, + 0.0319422, + 0.02019642, + -0.0059364364, + -0.0262566, + 0.003161078, + 0.021308335, + 0.022551905, + 0.013125976, + -0.019132597, + -0.0014966828, + -0.008095482, + 0.015304793, + -0.004330445, + 0.0039654705, + -0.012752564, + -0.01156689, + -0.023255536, + 0.0048333723, + -0.037483204, + 0.014300327, + -0.020535517, + 0.01085346, + 0.0049622757, + 0.00371612, + -0.0037484951, + -0.007155601, + -0.025545618, + -0.0040666447, + 0.013555433, + 0.0058025336, + -0.0038905318, + -0.0103956135, + -0.025682261, + 0.029636981, + -0.025810232, + 0.008910592, + 0.025819601, + 7.0507306E-4, + -0.008348532, + 0.014277179, + 0.004216337, + -0.0108371815, + -0.0015753785, + -0.008078462, + -0.014037262, + -0.017927015, + -0.025573881, + -0.01493568, + -0.01521545, + 0.019839609, + 0.023929166, + -0.019957198, + -0.013790877, + -0.016628426, + -0.032215912, + -0.0124294935, + 0.003650352, + 0.02245914, + -0.0011851301, + -0.0042402185, + -0.0134899095, + 0.0061426735, + -0.021213632, + 0.0027319656, + -0.046859875, + 0.0038004005, + 0.011035224, + -0.018006228, + 0.013670951, + -0.05048776, + -0.0020140607, + -0.0061699706, + -0.012946088, + 0.012365098, + 0.0050484897, + -0.012449752, + -0.012691158, + -0.025468199, + -0.0033053756, + 0.0076862657, + 0.022441369, + -0.0025951278, + 0.009023008, + 0.014047592, + -0.005091176, + -0.009115209, + -4.9137307E-4, + 0.021448642, + -0.019584732, + -0.0061087045, + 0.0036820318, + 0.013537325, + 0.0065251496, + 0.0195336, + 0.010967759, + -0.02462931, + -0.0054963515, + -9.106321E-4, + 9.79582E-4, + -0.010018285, + -0.007923139, + -0.0016761548, + 0.007980643, + 0.0012468391, + 0.017120196, + 0.005665437, + 0.023512604, + -0.0037675137, + 0.0070851045, + 0.014748545, + -0.0041371705, + -0.0032584197, + 0.0136846, + 0.010151354, + 0.017796306, + 7.3484454E-4, + -0.00817871, + -0.005294962, + -0.018866869, + -0.0059407866, + -0.007279071, + -0.0120803425, + 0.01467162, + 0.02600034, + -0.01655382, + 0.0025014277, + 0.028325131, + -0.01829952, + -0.030906834, + 0.017341461, + -0.022050282, + -0.019524565, + -0.0013840002, + -0.0029735134, + -0.019172944, + 0.032859173, + -0.014287762, + -0.011016821, + -0.016149119, + -0.011495557, + -0.0075753727, + -0.031728532, + -0.0021233375, + -0.018561928, + -0.016915947, + -3.7632568E-4, + 0.0034081428, + -7.962101E-4, + 0.030795636, + 0.0076786536, + -0.0068997475, + 0.02793569, + -0.0058732415, + 0.033440463, + -0.019569792, + 0.004246354, + 0.004918179, + -0.016549366, + 0.009259719, + -5.491095E-4, + -0.009750432, + -2.799015E-4, + 0.0104945665, + -0.0019968045, + 8.77374E-5, + 0.010111987, + -0.01072974, + 2.2891666E-4, + 0.020495053, + 0.0051721963, + -0.0029808104, + -0.0067383386, + -0.02984633, + 0.0063535697, + 0.0011500245, + -0.009402568, + -0.0034988, + 0.013258294, + 0.009233502, + 0.022601267, + -0.016771093, + -0.009372902, + 0.006613774, + 0.01191754, + -0.0029512378, + 0.03883531, + -0.001327898, + 0.036121394, + -0.0049640117, + -0.0072426517, + 0.0068350947, + -5.843929E-4, + 0.010312047, + 0.027853876, + -0.001904289, + -0.003024648, + -0.04417346, + -0.007259439, + -0.013415014, + 0.0053590564, + -0.0099116815, + -0.0047008013, + -8.490755E-4, + -0.01182134, + 0.01788775, + -0.0071194004, + -9.86134E-4, + 0.01142883, + -0.0054390104, + 0.007987021, + -0.005626747, + 0.009998957, + -0.0057812165, + 0.0045115068, + -0.00295534, + 0.017665414, + 0.0072480994, + 0.008494206, + -0.019238057, + -0.0023374704, + 0.028879093, + 0.0063253487, + 0.023133174, + -0.0065403874, + 0.009738294, + 0.017265644, + -0.026865166, + -0.016493736, + 2.157785E-4, + -0.032257397, + 0.01610755, + -0.012226963, + 0.022079114, + -0.0166387, + -0.004112449, + -0.005996417, + -0.023212114, + 0.004309388, + 0.01409979, + -0.009633972, + 0.006194958, + -0.025946617, + 0.00837218, + 0.0014102078, + 0.012294436, + 0.008049606, + 0.0022705023, + 0.0125638535, + 0.008400197, + -0.006616771, + 0.010954925, + 4.578702E-4, + 0.007933178, + -0.02508358, + -0.007002612, + -0.013476608, + -0.0051908833, + -0.02514741, + 0.0027708332, + -0.0038482489, + 0.014818531, + 0.013606377, + 0.02378103, + -0.007248477, + 0.011794435, + -0.002542718, + 0.003971862, + -0.029445613, + 0.009580145, + 0.03331713, + 0.017874844, + -0.008335785, + -0.016631443, + -0.006716945, + -0.0101701785, + 0.028876983, + -0.0077724634, + -0.0063480227, + -0.018339744, + -0.009235012, + -0.009928389, + -0.012596355, + 0.031217515, + 0.016563816, + -0.012414663, + -0.002912457, + 0.0088409055, + -0.018152187, + -6.229248E-4, + -0.011122162, + 0.0068221437, + 8.150735E-4, + -0.02846909, + 0.03075839, + -0.006739678, + 0.031225912, + 0.015492678, + -0.02999798, + 0.0072611636, + 0.022919536, + 0.013157101, + -0.023799762, + -0.008631395, + 0.04060834, + 5.2211828E-5, + 0.013282843, + -0.0045152586, + -0.001469413, + -0.012051808, + 0.014713118, + -0.004645021, + -0.025480649, + 0.0020711424, + -9.155343E-4, + -0.011246595, + -0.0033841333, + -0.031170521, + 0.013862124, + 0.023869952, + 0.015228909, + 0.013632825, + -0.0012513516, + 0.00717457, + -0.0042752423, + -0.010689894, + 0.029936235, + 0.004541957, + 0.006906524, + -0.036984023, + -0.006248885, + -0.031181864, + 0.002621709, + -0.011784435, + -0.02473418, + 0.019535314, + -0.002728304, + -0.00301823, + 0.015889239, + -0.008419236, + -0.005284266, + -0.005932693, + 0.0016788073, + -0.011257135, + -0.02823961, + 0.013374395, + -0.0080154175, + 0.009809845, + 0.026071375, + 0.01913617, + -0.03862239, + 0.0044014286, + 0.01786095, + 0.017267574, + 0.022402711, + 0.013228014, + 0.012254464, + 0.02423564, + -0.006008849, + 0.027744833, + 6.364384E-4, + 0.0056807767, + -0.008369359, + 0.0019517143, + -0.0109584415, + 0.011411684, + -0.0109518245, + -3.363721E-4, + -0.008649976, + -0.03822374, + 0.037592594, + 0.0049000503, + -0.008619966, + -0.006973342, + 0.020466771, + -0.008983522, + -0.004817896, + -0.021022169, + -0.010927933, + 8.738317E-4, + -0.009339497, + -0.025915394, + -0.0069108163, + 0.019482674, + 0.02323268, + 0.03005394, + 3.0640513E-4, + -0.03539084, + -0.0011799443, + -0.011648755, + 0.022142926, + -0.010249015, + 0.03814935, + -0.012168703, + 0.012241836, + -0.012370036, + -0.01355059, + -0.03837265, + 0.011677832, + 0.034026846, + -0.004680967, + -0.0052966247, + -3.8259715E-4, + -0.014792626, + -0.02133703, + -0.012904826, + 0.006074599, + -0.012183568, + -0.014021595, + 0.021911547, + -0.0062683807, + 0.0027604909, + -0.0022899697, + -4.2550382E-4, + -5.6254247E-4, + 1.5950884E-4, + -0.016833832, + -0.011949066, + -0.004462295, + 0.0022539224, + 0.00931009, + 0.034728523, + -0.0132949455, + -0.0056646387, + 0.0069429316, + 0.014222108, + -0.01714292, + -0.0070021385, + -0.004545127, + -0.029049646, + -0.0054856343, + -0.0024955, + -0.011527538, + -0.019286133, + 0.013197067, + -0.0048915683, + -0.036534466, + 0.009184711, + -7.8051863E-4, + -0.013946905, + -0.024868652, + 0.009045285, + 0.0015858079, + 0.029195659, + -0.013436749, + -0.0074518123, + -0.00161241, + -0.006614336, + -0.021785308, + -0.00974098, + 0.0042243204, + 0.029417576, + -0.0066034985, + -0.0098763555, + 0.007558703, + 0.015914975, + -0.0015461429, + 0.013693056, + 0.012960559, + 0.0069075753, + 0.014362284, + 0.006265124, + -0.014023404, + -0.0024080323, + -0.0032874816, + 0.0338347, + 0.004630184, + 0.01633008, + -0.008149791, + 0.024768189, + 0.015643755, + 0.0209794, + 0.020229187, + -0.005884524, + -0.017565899, + -0.0048438963, + -0.008719153, + -0.0012523626, + 0.017609403, + 0.0026397444, + -0.01983401, + -0.021911573, + -0.015023567, + 0.010323061, + 0.009706865, + -0.008760212, + 0.00764604, + 0.002068486, + 0.0117138205, + 0.007956837, + -0.003743523, + -0.038010582, + -0.017989311, + -0.003523499, + -0.014213288, + -0.009474712, + 0.024798624, + 0.04132032, + 0.026899084, + 0.021114588, + -0.0107358135, + 0.0035717, + 0.024866343, + -0.022427725, + 0.009525836, + 0.016115082, + 0.02184425, + -0.006213866, + -0.0069820276, + 0.015587161, + 0.0065757125, + 0.028576653, + 0.029902074, + -0.02002447, + -0.03266805, + -0.007216394, + 0.015163535, + -0.012082195, + 0.006616932, + 0.013127812, + 0.011351011, + 0.013225134, + 0.004081109, + -0.017338121, + -0.01724618, + -0.027049908, + 0.01622685, + 0.021144865, + -9.039157E-4, + 0.015100059, + 0.016251342, + 0.0351738, + 0.02467226, + -0.0034073552, + 0.01589816, + -0.0224579, + 0.0027641866, + 0.0028456238, + 8.865489E-4, + 0.021715537, + 0.012029482, + -5.4136897E-4, + -0.018600967, + 0.015755456, + -0.0039578117, + 0.0043663457, + -0.00502356, + 0.00853789, + -0.002430046, + -0.0020357296, + -0.0042228727, + 5.411526E-4, + 0.003538535, + 0.017223582, + -0.013837666, + 0.023552554, + 5.436148E-4, + 7.1203837E-4, + 0.009090853, + 0.004713426, + 0.0036612102, + -0.0011991991, + -0.02097937, + -0.008476479, + -0.022315908, + -0.0026928294, + -0.011119842, + -8.1203657E-4, + -9.342369E-4, + 0.0069364537, + -8.6227094E-4, + 0.01763095, + -0.0131127685, + 0.0014913804, + 0.016153025, + 0.0048536323, + 0.0054141963, + -0.008653054, + 0.005026009, + 0.021223113, + 0.015932422, + -0.008702579, + 0.017087203, + -0.007305791, + 0.019830646, + 0.006031427, + 0.006992541, + 0.005002553, + 0.021836415, + 0.008639279, + -0.007972904, + -0.008468889, + -0.009400248, + 0.006229545, + 0.014654109, + -0.0055959867, + -0.01777672, + -6.3090865E-4, + 0.016517952, + 0.011841513, + 0.019330606, + -0.020133497, + 0.02449517, + -0.027708683, + 0.023398133, + 0.0012334279, + 0.021711567, + -0.0060418383, + -0.0076174084, + 0.011526868, + -0.011348764, + -0.014863477, + -0.016086929, + 9.360377E-4, + -0.0026419698, + 0.006066932, + -0.027710667, + 0.0021452096, + -0.046437714, + 0.009772646, + 0.0023298617, + 0.0021880518, + -0.01616949, + 0.03748318, + 0.031036308, + 0.008853275, + 0.010169009, + -0.008130788, + -0.014147113, + 0.0019583905, + 0.015068322, + -8.2730193E-4, + -0.006786763, + -0.0010892606, + 0.005185076, + 0.013824522, + -1.5775082E-5, + -0.024734195, + 0.013729407, + -0.019817363, + 0.004005069, + 0.005487121, + 0.008475373, + 0.00634455, + -0.0025694396, + 0.015062022, + 0.005971858, + 0.022403616, + 0.01366635, + -0.019519811, + 0.010713974, + -0.024893327, + 0.0074104914, + -2.0538908E-4, + 0.026605897, + 7.754793E-4, + -0.008492555, + 0.01834295, + 0.014105033, + 0.012705536, + -0.018812835, + 0.0060305856, + -0.016114203, + 0.02051945, + 0.004509315, + -0.0032703197, + 0.013447243, + 0.007563537, + -0.020927899, + -0.010234918, + -0.02110648, + 0.0047608702, + 0.009267136, + 0.027546797, + -0.008835416, + 0.012630146, + -0.00271487, + 0.009926439, + 0.008939778, + -0.0036440932, + -0.0026583106, + -0.004717002, + 0.006220416, + 0.0073885806, + -0.0018280791, + -0.018841516, + 7.9330755E-4, + 0.016777784, + -0.0068326057, + 0.0316433, + 0.0058958195, + 0.0118008945, + -0.019982109, + 0.0063249506, + -0.031094164, + 0.019415537, + -0.0026716422, + -0.020628536, + 0.013228278, + 5.131008E-4, + 0.012594811, + 0.0074327276, + 0.007602183, + 0.021604687, + 0.00977165, + -0.005349337, + 0.008460508, + -0.015174249, + 0.0025168322, + -0.0043238765, + -0.006224206, + -0.0177779, + 0.011440534, + 0.010391084, + -0.0016111508, + 0.011280101, + 0.005529475, + 0.03800496, + -0.013718117, + 0.011059292, + -0.011469196, + -0.0043884027, + -3.3904854E-4, + 0.01726798, + 0.0032754007, + 0.019543394, + -0.026310211, + 0.005662195, + -0.0033005339, + 0.034608427, + -0.01904544, + -0.011977414, + 0.018548582, + -0.0070412206, + 0.012888913, + -0.033220924, + 0.0034272072, + -0.0028232664, + 0.020423755, + 0.0057022646, + 0.0048043053, + 0.009004866, + -0.008501998, + -0.012588429, + -0.005370632, + -0.018089307, + 0.016247883, + 0.04362674, + -0.003140277, + 0.0017749319, + -0.009540218, + -0.022587994, + 0.008678132, + -0.041127585, + 0.030608071, + -0.02368061, + -0.028340938, + 0.0057279663, + -0.0051905955, + 0.006424271, + -0.010754303, + 0.010568326, + 0.011022336, + 0.016236352, + -0.0016017318, + 0.02772019 ], - "paletteEmbedding": [ - -0.026866006, -0.023482101, 0.044951025, -0.012801487, -0.0012356477, - -0.00801162, -0.007890773, 0.018794078, -0.01741737, -0.046979927, - 0.046788197, 0.057403438, 0.02566434, 9.305935e-4, 0.03451445, - 0.013482569, -0.03139979, 0.0701165, -0.03994023, -0.015075998, - -0.0069308747, -0.04452978, 0.023661884, 0.011615612, -0.025035843, - -0.0432414, -0.022348056, -0.0020227046, -0.041543163, 0.0023389864, - 0.0729125, 0.009721718, 0.018216256, -0.005123139, -0.0049292403, - 0.06448129, 0.040455636, 0.030512474, 0.019686714, -0.009405503, - 0.0522328, 0.020443695, 8.857959e-4, 0.053807795, -0.033199072, - 0.02127127, 0.0042563174, 0.004475352, 0.022594504, -0.06089286, - 0.011301668, 3.8885514e-4, 0.028658178, -0.052136067, 0.006653058, - -0.0068434295, -0.030628644, 0.0636349, -0.018923, -0.025779903, - 0.017747814, 0.0509676, 0.007025165, -0.014420973, 0.013567625, - -0.016702283, -0.009682078, -0.01516429, -0.053409167, -0.038908925, - -0.044123318, -0.021020377, 0.0111526, 0.030194722, -0.027001811, - -0.0077033304, 0.030069165, -0.04766066, 0.033634808, -0.013135981, - 0.019729804, -0.023807537, 0.035189636, -0.020199303, 0.022701215, - -0.034062117, 0.022439523, -0.030581292, 0.016081797, -0.0051637418, - -0.03483724, -0.014578623, -0.06253633, 0.041967187, 0.04916734, - 0.03413945, 0.014511217, -0.037633743, -0.04001457, 0.026509129, - 0.023861328, 0.037883878, 0.0077335653, 0.07549252, -0.07083902, - -0.051679302, -0.02692154, 0.0019456914, -0.0027881816, -0.019669287, - 0.0043893014, 0.018663533, -0.019001009, -0.009459346, 0.016435873, - -0.0071332795, 0.0043704947, -0.04094821, -0.022689428, 0.0069643394, - 0.005089363, 0.026259528, 0.041817326, 0.022107933, -0.03596445, - -0.04561566, -0.04900194, -0.05834437, -0.006194098, 0.0013044181, - -0.005715227, -0.08999747, -0.020030497, 0.01100825, 0.040190846, - 0.04604202, 0.0045716786, -0.070291616, -0.030272488, 0.04277903, - 0.02776103, -0.036915354, 0.008990402, -0.06279337, -0.010139027, - 0.043230187, 0.086142845, 0.039267056, 0.018856175, 0.01229203, - 0.027513113, -0.030017756, -0.03888602, -0.00456349, 0.010800208, - 0.025531135, -0.06198674, -0.06190515, 0.0064677666, 0.0034785056, - 0.021268487, 0.011460237, 0.005623453, 0.035874225, 0.02707094, - -7.239758e-4, 0.030573899, 0.057194743, -0.024374695, 0.03505203, - -0.003953507, -0.05247791, 0.034031186, 0.023384375, 0.017930437, - -0.016120963, 0.021427218, 0.0017663927, -0.03412275, 0.014898696, - 0.009190248, 0.007541896, -0.018827505, 0.022596652, 0.03903415, - -0.027836422, 0.07027755, 0.04531023, 0.032306477, -0.031748593, - -0.016122425, -0.016037762, 0.016786885, 0.026283406, -0.03156651, - 0.025314461, 0.034969065, -0.048215643, -0.024386594, -0.044118308, - -0.010081303, -0.0041725114, -0.02187254, 0.09306246, -0.0018155378, - 0.030703073, 0.01770833, 0.054498035, 0.01572536, -0.051202662, - 0.012184804, 0.064503156, -0.032413673, 0.03501236, -0.035301663, - 0.0026459787, -0.020479413, -0.019795097, 0.046661552, -0.012958053, - -1.9560795e-4, -0.009566722, -0.01368982, -0.05494035, 0.017032344, - 0.012128875, -0.028051082, -0.03163666, -0.03668391, -0.015819827, - -0.0219992, -0.004821959, -0.0033154069, 0.0093277125, -0.015084677, - 0.015595227, -0.0073307646, -0.0059384997, -0.03996109, 0.00835041, - 9.059686e-4, 0.058058217, -0.038456686, 0.044468768, -0.056992643, - 0.016768789, 0.009791533, 0.013028789, 0.009403572, -0.03538102, - -0.032338813, -0.0011916985, -0.0030942576, 0.0091927275, -0.05151532, - 0.009156018, 0.02371429, 0.010082132, -0.004319535, 0.01529842, - 0.0073353723, 0.028013455, 0.026767835, -0.026460582, -0.03282855, - -0.028445097, 0.055832155, -0.0135708125, 0.0139050055, 0.0024785644, - -0.022420948, -0.054019473, 0.034361362, -0.00527532, 0.023908237, - 0.003536601, 0.018043397, 0.069656126, 0.033580415, 0.038177352, - 0.0135830315, -0.014103141, 0.0142578585, -0.0073198094, -0.04506952, - -0.03176894, 0.03835934, 0.06989669, -0.0055241585, -0.018305995, - -0.016117038, 0.008083917, -0.011668059, -0.0065882984, -0.00785582, - 0.0015892, 0.014925954, -0.02574672, 0.0052343085, -0.08035817, - 0.019738851, 0.0032920905, 0.031337135, 0.0063365796, 0.044029057, - 0.003869811, -0.0025194257, 0.004410104, -0.0012741024, 0.05249046, - 0.056699723, 0.02303967, -0.029832019, -0.036623742, 0.034307465, - 0.0026815697, -0.019412685, 0.03372196, -0.0124977175, -0.013245984, - -0.047515057, -0.010417926, -0.02998875, -0.018031372, -0.06502186, - -0.036995277, 0.002280136, -0.0023642937, -0.014247172, -0.0098716365, - -0.019560747, 0.027510388, 0.038822547, 0.0061771316, -0.0030776106, - 0.047587227, -0.011072405, 0.024753023, 0.051459994, 0.013629559, - 0.05108722, -0.030817725, 0.007938667, -0.017973004, 0.011197775, - 0.012765217, -0.0041939807, -0.011291206, 0.01484024, 0.02097254, - -0.024514455, 0.006559307, -0.006468277, 0.017580846, -0.0096100615, - -4.2582056e-4, -0.022743443, -0.02453027, 0.023792645, 0.010921478, - -0.0049323523, -0.023241151, 0.047785856, -0.0110598635, -0.020969909, - 0.042896375, 0.014510904, 0.038770605, -0.021855114, 0.025427291, - 0.031996265, -0.030569902, 0.0063962876, 0.009509357, 0.0024442668, - 7.1693066e-4, 0.0054079965, 0.011198341, 0.008522661, -0.032924056, - -0.020483743, -0.007040036, -0.057999134, 0.05354182, 0.06755054, - -0.014620067, 0.01611952, 0.0018311501, 0.0124511495, -0.001126973, - -0.004836718, 0.012440802, 0.023820207, -0.0040292693, -0.013118421, - -0.014353823, 0.016639825, -0.0043833912, -0.058675144, -0.0028078672, - 0.009748213, 0.052332252, 0.04577926, -0.008466686, 0.013670353, - 0.10548963, -0.015465589, -0.03664699, -0.009018976, -0.011072298, - -0.07124428, -0.019768221, 0.01779176, -0.024640458, -0.06944587, - -0.014300258, -3.8118882e-4, 0.0399356, -0.030169195, 0.005213278, - 0.027474113, -0.049243964, 0.023653673, 0.0036766392, 0.009441579, - 0.0075727073, -6.4737955e-4, 0.00698279, 0.0020339845, -0.05150375, - 0.077581905, -0.023168823, -0.0077299853, 0.017565731, -0.004336149, - 0.007802438, -0.008179528, -0.052261584, 0.0033588812, 0.039121065, - -0.03464386, 0.04076669, 0.0032531521, 0.005229437, 0.012917768, - 0.015561834, -0.023237832, -0.013784515, 0.017103396, -0.004580719, - -0.024389567, 0.024726305, 0.015857339, 0.09781738, 0.0054922933, - 0.023715362, 0.008571943, 0.0510521, -0.034922678, 0.0015423795, - 0.007633431, 0.015456408, -0.029521916, 0.0051924763, 0.0102930525, - 0.09135342, -0.0141733615, 0.04384897, -0.032928314, -0.027834933, - -0.014493824, 0.07395848, -0.022724623, -0.022261363, -0.033217337, - -0.021298356, -0.038185768, 5.2339456e-4, 0.013401094, 0.0028266578, - 0.0120849805, 0.028803475, 0.02254083, 0.077887125, -0.032580923, - -0.011646232, -0.053675517, -0.08051764, -0.020166159, 0.029636275, - -0.0033313213, -0.012723635, -0.022102682, -0.021967111, -0.021631144, - -0.04570639, 0.0130078755, 0.030492157, -0.053778935, -0.016262231, - 0.025192322, 0.088339545, -0.008034416, -0.009287704, -0.003441416, - -0.024232268, 0.003908374, -0.010769876, 0.0059723994, -0.013911619, - -0.025001105, -0.054284055, 0.009066285, 0.026978785, -0.028494209, - 0.014298997, -0.031436604, 0.048420936, 0.056394685, -0.028177109, - -0.07356815, 0.06317707, 0.00948813, 0.0022895182, 0.020172888, - 0.006479343, 0.06358098, 0.05769904, -0.007911672, -0.043268476, - 0.02801873, -0.0071811583, 0.0069333473, -0.029876722, -0.006761959, - 0.033590846, -0.024409682, -0.032712013, 0.05195431, 0.025981642, - 0.009285444, -6.032427e-4, -0.025960239, 0.020025294, -0.08701191, - 0.029955423, 0.06142278, 0.06318059, 0.037488792, -0.010950816, - 0.025548922, 0.041377354, -0.029195676, 0.030048309, -0.0049597025, - -0.032729186, 0.020388458, 0.011772046, -0.08182544, -0.017362732, - 0.011538654, 0.02812623, 0.041271374, -0.049968872, 0.007824351, - 0.0028679043, 0.017049098, -0.01865377, -0.027742846, -0.017078586, - 0.044844836, 0.010374067, 0.028927606, -0.023797745, 0.05622925, - 0.042559404, -0.066036604, -0.048882257, 0.015573777, -0.019704053, - -0.0070578526, -0.028872853, 0.017604366, 0.0049792994, -0.048835505, - 0.0040911147, 0.0067647663, -0.010004707, 0.022901775, -0.0086130835, - 0.025134522, -0.017115772, -0.008705169, 3.841911e-4, -0.011347073, - 4.7357875e-4, 0.03166563, -0.010116966, 0.026608339, -0.04671481, - -0.002228443, -0.029965635, 0.020558516, -0.006512235, 0.010283863, - -0.022057675, -0.012081347, -0.016353507, 0.035440806, -0.03134586, - -0.038157, -0.031137608, -0.005230752, 0.016352728, 9.701824e-4, - 0.018850708, -0.08154449, -0.05317018, -0.06319661, 0.014177643, - 0.028404491, 0.009593432, -0.041451808, -0.004497842, 0.008866818, - -0.00696252, -0.034957908, 0.03427013, -0.0037278738, 0.03722647, - -0.00513194, 0.030168863, 0.0641984, -0.0036654582, 0.015897166, - 0.02958174, -0.012101953, 0.044410452, -0.021858778, -0.03353744, - 0.011008964, -0.007401664, -0.03204802, -0.0029412082, -0.0013738958, - -0.033332936, 0.03704827, 0.04894321, 0.0010621311, 0.013846474, - 0.019648554, 0.048477437, -0.018418005, -0.0017993497, 0.019102573, - -0.0063416, -0.009350714, 0.019848114, -0.008435655, -0.030483233, - 0.021401906, -0.0067195394, 0.0162338, 0.02259914, 0.036940895, - -0.017768094, -0.025437651, 0.0049039186, 0.007622386, -0.0068147723, - 0.03369945, 8.380932e-4, 0.013254403, 0.042092472, 0.0044104615, - 0.030860843, -0.036344666, 0.015196154, -0.017467692, -0.025430456, - -0.07003278, -0.0449867, 0.060502492, -0.03858383, -0.0064328047, - 0.009841109, -0.03384354, -0.06853472, 0.0061470387, 0.07572422, - 0.015106056, 0.03389555, 0.022386985, -0.035820708, -0.04343416, - 0.0049062236, 0.052533, -0.015781878, 0.0460343, 0.007459779, - 0.026199223, 2.5350123e-4, -0.030516071, 0.0062715975, -0.039209276, - -0.004703113, -0.01588126, -0.0029098073, -0.03665113, 0.06483607, - 0.008801762, -0.03884459, 0.040600587, -4.8219218e-4, 0.0018752553, - 0.056710705, 0.022728838, -0.019381303, 0.018076854, 0.014075399, - 0.05103327, 0.014523212, 0.0070611495, 0.010412625, 0.02181125, - -0.0016981403, 0.0016983455, -0.012949485, 0.008817543, -0.022480343, - 0.040191866, -0.023735633, -0.003534615, 0.02865589, -0.0035270976, - -0.0051399325, 0.025359461, -0.009871524, -0.02817491, -0.02088845, - 0.047067273, -0.056517784, -0.053719554, 0.053039122, -0.00552468, - -0.008359376, 0.0440245, 0.037971616, 0.0033560714, 0.028012874, - -0.036677655, -0.003823749, -0.046209227, 0.0016063225, 0.012450255, - 0.032011718, 0.012058255, 0.040576506, 0.010293109, 0.031157302, - -0.028311217, 0.018858775, -0.08290348, -0.0371434, 0.056179233, - 0.014867442, -0.05826117, -0.027792314, 0.013136775, 0.006040906, - -0.016459702, -0.047243822, -0.07700145, 0.045209732, -0.0032185777, - -0.0014133713, 0.032104217, -0.015324497, 0.06375761, 0.0210499, - 0.00622942, -0.027520424, -0.021910872, -0.01658117, -0.021864817, - 0.045074757, -0.0051124534, -0.0075976136, -0.028530367, 0.055934817, - 0.06161646, 0.002657795, 0.0137769235, -0.05461031, 0.025209287, - 0.044488683, 0.038776748, -0.005314115, -0.012908142, -0.012523318, - -0.031347234, 0.022578282, -0.013062481, -6.192101e-5, -0.006863365, - -0.063340545, -0.008590531, -0.026749384, 0.045912873, -0.029457033, - 0.037706353, 0.08475736, -0.024962801, -0.011786921, -0.006587257, - -0.004017434, -0.01876829, 0.025685208, -0.045820594, -0.0031229511, - 0.020578718, -0.031917617, -0.0049593262, -0.039415635, 0.06518027, - 0.0114069525, 0.03383221, 0.017002774, 0.009877829, -0.034165185, - 0.022752577, -0.02184054, -0.006534501, -0.019113554, -0.031242639, - -0.016155092, 0.06907561, 0.023630377, 0.006693837, 0.032751463, - -0.0021627864, -0.018681245, -0.013390417, 0.057232413, -0.021670893, - -0.018842569, -0.010109266, -0.007971273, -0.01046671, -0.012410393, - 0.0072428877, 0.015748084, -0.036025777, -0.0031432332, 0.022831704, - 0.018043315, 0.017441036, -0.022753103, -0.005825143, -0.020803144, - -0.06600936, -0.0163297, 0.01434828, -0.026316697, -0.0072593214, - 2.5829772e-4, -0.0052712783, 0.021983104, -0.06524537, 0.031352606, - -0.033932332, 0.036546737, -0.010628065, -0.0069717276, 0.011648822, - -0.014057161, -0.029278882, -0.018601673, 0.011124534, -0.023241566, - 0.01320105, 0.03992278, -0.0064183655, 0.011599064, 0.023158446, - -0.04416661, -0.03898945, -0.020845836, -0.027019234, -0.016715074, - 0.009518349, -0.021309324, 0.024140952, -0.013124465, 0.0019498256, - 0.0011165071, -0.02908717, -0.006931365, 0.023335084, 0.029465329, - -0.046452723, -0.015673213, 0.026522571, 0.052126892, -0.03217612, - -0.02134651, 0.093209736, 0.020158138, 0.017087156, -0.015687203, - 0.035953455, -0.017864818, 0.02658057, 0.005918815, 0.030213082, - 0.0226255, -0.006245881, -0.005293435, 0.007484433, 0.039638247, - -0.027724873, -0.039250694, 0.06819486, 0.022128148, 0.031859614, - 0.028929781, 0.009445922, -0.0072032125, -0.004126609, -0.028193982, - -0.023015834, -0.02645804, 0.0034760952, -0.041900262, -0.022176944, - 0.03641125, 0.025588723, 0.02950503, 0.011315173, -0.052776497, - -0.015812226, 0.0021344093, -0.014182805, 0.05557752, -0.04144015, - 0.0072792894, 0.027311046, -0.01670597, -0.02522895, 0.015537458, - -0.037914347, 0.043197222, -0.013049539, -0.027273633, -0.026854526, - -0.07076939, 0.034271725, -0.030151298, 0.0018335162, -0.02604111, - 0.007554398, 0.06160171, 0.0011297476, -0.012123159, -0.08041912, - -0.016198205, -0.03986978, -0.012398833, -0.022958055, 0.004781421, - 0.061148435, 0.056112595, 0.017999468, 0.03299262, 0.015680667, - 0.0057329787, -0.014990733, 0.051746655, -0.010995833, -0.045062985, - 0.008318335, -0.042407908, 0.048714463, 0.016912103, 0.011205125, - 0.05589346, -0.035864577, -0.0022649341, -0.006980486, -0.043560762, - 0.06625668, 0.014474097, -0.017038265, 0.037665658, 0.032748744, - 0.01895829, -0.047047336, -0.0282294, -0.016226515, 0.009202346 + "paletteEmbedding" : [ + -0.0048597767, + -0.0036105372, + -0.04832014, + -0.013653484, + -0.008106855, + 0.0015423464, + 0.010011106, + 0.029143613, + 0.006032916, + 0.044657145, + -0.04230357, + 0.048772585, + 0.06221031, + 0.03473245, + -0.005720264, + 0.0028632798, + -0.015954953, + -0.0059611355, + -0.05201941, + -0.012936898, + 0.040274, + 0.044483237, + 0.02587733, + 0.04209839, + 0.0155351665, + -0.012729877, + -0.07182676, + -0.05401189, + 0.025746925, + -0.010201551, + -0.024099927, + 0.024128066, + -0.0049360865, + -0.013690657, + -0.037952684, + -0.029921057, + -0.036356755, + 0.011269739, + -0.0059586703, + 0.0026024566, + 0.013035101, + -0.05998595, + -0.009071158, + 0.023485584, + -0.03554109, + 0.023092205, + -0.0023056816, + 0.040162504, + 0.030939516, + 0.022770561, + -0.047856588, + 0.0027285304, + -0.033168145, + -0.018698348, + 0.025667792, + -0.035227925, + 0.009272814, + -0.0012956213, + -0.030516388, + -0.021266181, + 0.01778555, + -0.0019051254, + -0.026892183, + -0.037789565, + 0.010323998, + 0.009298454, + -0.013715772, + 0.008520653, + 0.025525087, + 0.025487483, + 0.05777858, + -0.053885587, + 0.03159181, + -0.0051929764, + -0.02356093, + 0.030390786, + 0.0067985505, + -0.06080342, + 0.02085275, + 0.048042864, + 0.0012412799, + 0.03252049, + 0.07591902, + -0.008832817, + 0.020268204, + -0.029410101, + 9.193308E-4, + -0.025959518, + 0.0054891305, + 0.0057846396, + -0.0047525684, + 0.01221509, + -0.0023686804, + 9.7197364E-4, + 0.023515161, + -0.009636138, + -0.06032321, + -0.006432934, + 0.028746516, + 0.009077684, + -0.025330916, + -0.029126642, + -0.061800033, + -0.0037351171, + -0.01708488, + -0.018769922, + -0.04158637, + -0.036594205, + 0.00830524, + -0.030472113, + 0.007440559, + 0.011031541, + -0.032717332, + 0.025068821, + -0.039033268, + 0.013880197, + -0.019453783, + -0.03538025, + 0.021333897, + -0.036820427, + 0.019935345, + -0.043476332, + 0.00954338, + -0.006087975, + -0.0696649, + -0.031147568, + 0.084121235, + 0.043435287, + -0.009043914, + 0.027070558, + -0.039240483, + 0.036460306, + 0.07033793, + -0.010591234, + -0.0178596, + -0.034987234, + 0.09536282, + -0.015606282, + 0.0046844506, + -0.055231787, + 0.023477474, + -0.026748102, + 0.04549662, + -0.013111844, + 0.05196291, + -0.066878185, + -0.08150664, + 0.018222092, + -0.041371837, + -0.021265497, + 0.005767239, + 0.020206803, + 0.037293945, + 0.008286605, + -0.0017764912, + 0.004232123, + -0.014655732, + -0.008211094, + 0.045158565, + 0.017249754, + 0.038696688, + 0.027652401, + 0.0095643895, + -0.010176259, + -0.006810569, + 0.036288336, + 0.026729709, + -0.064830534, + -0.045338593, + 0.050088152, + 0.043955714, + 0.019582028, + -0.028161604, + -0.037818354, + 0.018377682, + 0.0051977923, + -0.020300657, + 0.0033805026, + -0.058616668, + -0.015498014, + -0.016289083, + 0.038872737, + 0.026044272, + 0.016451925, + 0.008972751, + 0.0050895, + -0.036491863, + -0.024221743, + -0.04444877, + -0.023479084, + -0.037002437, + -0.0148969535, + 0.00916422, + 0.057956908, + -0.03582818, + -0.045171693, + 0.010316189, + 0.015930563, + -0.01485274, + 0.07641513, + 0.052839223, + -0.0020848599, + -0.0034912787, + -0.007249809, + -0.011182732, + 4.895129E-5, + 0.023234705, + -0.050031733, + -0.03471967, + -0.050911278, + -0.04542598, + 0.032129124, + -0.008197936, + 0.017890709, + 8.4882224E-5, + -0.015305832, + -0.00757831, + 0.013579564, + -0.0035682474, + 0.071308464, + -0.0046435846, + 0.004637666, + 0.049881965, + -0.0064111454, + -0.040660203, + 0.03678057, + 0.012315696, + 0.031773962, + 0.048241094, + 0.008940429, + 0.008202893, + -0.043253023, + -0.009131421, + -0.004318583, + -0.041632846, + 0.040326934, + 0.007266776, + 0.03145824, + -0.006620209, + 0.035724677, + 0.002754462, + -0.0072259214, + -0.046899118, + 0.010016549, + -0.0070169037, + 0.0054964754, + 0.012849272, + 0.029046696, + 0.0037641975, + -0.0011491829, + -0.02976313, + 0.02880768, + 0.09252362, + -0.0012217799, + 0.025339486, + -0.06631877, + -0.01608566, + 0.020927232, + -0.015638977, + -0.013441502, + -0.014168607, + -0.05074256, + -0.07611512, + 0.008380074, + -0.020157645, + 5.0186424E-4, + 0.004836842, + -0.03305994, + 0.008518824, + -0.04730938, + -0.04708147, + -0.045542527, + 0.012728042, + -0.015642155, + -0.027642576, + -0.031204233, + 0.035787906, + -0.010609589, + 0.027008897, + 0.006352875, + -0.02714653, + 0.023612041, + 0.043241683, + 0.045606166, + 0.036510408, + -0.026780937, + 0.003916084, + 0.034141712, + -0.0107869515, + -0.016000343, + -0.0016267683, + -0.006887711, + -0.012390277, + 0.060205463, + -0.027037758, + 0.04251405, + 0.003485535, + 0.018639278, + -0.027548404, + 0.06169107, + -0.030580143, + 0.0010927796, + -0.04145092, + -0.028040359, + -0.08632906, + -0.004804011, + 0.0319638, + 0.0040631043, + -0.026688617, + 0.02256435, + -0.01660518, + 0.031149387, + 0.006052733, + 0.051968686, + 0.017233986, + 0.004040497, + -0.04059395, + -0.02223073, + -0.004386319, + -0.010430071, + -0.061851505, + 0.0046480596, + -0.04866984, + -0.02785468, + 0.03024005, + -0.0030352678, + -0.024832757, + -0.03468798, + -0.023003262, + -0.015257914, + 0.032314442, + 0.0019188906, + 0.029332113, + 6.5193186E-4, + 0.050059266, + 0.015883595, + 0.044916775, + 0.04675004, + -0.04923861, + 0.0035067145, + -0.016319862, + -0.014465771, + -0.052501604, + -0.027464485, + -0.0067311325, + 0.03379075, + 0.018822087, + 0.0017014383, + 0.0015257396, + -0.0050569023, + -0.014668572, + -0.0069106463, + -0.060376734, + 0.017551785, + -0.015679792, + 0.04373137, + 0.009478494, + 0.044159357, + 0.017446496, + 0.0075277975, + -0.014836503, + 9.91272E-4, + -0.0977495, + 0.021700291, + -0.001622115, + 0.04844131, + -0.016104054, + -0.07869743, + 0.016245836, + 0.0044496255, + 0.035166513, + -0.0145667745, + -0.0067242524, + 0.021876168, + 0.0011761523, + 0.015532265, + -0.022432717, + 0.008351878, + -0.0018200212, + -0.013979653, + -0.0066734557, + 0.010868847, + 0.002694157, + 0.01806112, + -0.064129926, + 0.048341546, + 0.03505074, + 0.033666585, + 0.008753707, + 0.03352301, + -0.00256127, + 0.005058087, + 0.014179904, + -0.0092302365, + 0.035464477, + -0.011257428, + 0.045574687, + 0.032598514, + -0.012447262, + -0.008847128, + 0.032813985, + -0.07843021, + 0.012648338, + -0.05133087, + -0.069599956, + 0.048321716, + 0.02947981, + 0.023744252, + -0.0059723393, + 0.015286911, + -0.03484582, + 0.061406765, + 0.09056477, + -0.0028660248, + 0.026215602, + -0.04816257, + -0.029925734, + -0.0502696, + -0.023886088, + 0.033819713, + -0.035752, + 0.03857926, + 0.046466332, + -0.04570612, + -0.018287797, + -0.0027700083, + -0.040642697, + 0.026223253, + 0.008875713, + 0.03277766, + 0.0039035745, + 0.04003813, + 0.013847752, + 0.018812794, + -0.014951315, + 9.15573E-4, + -0.032174293, + 0.004736373, + 0.035994485, + 0.01654178, + -0.020856649, + 2.553541E-4, + -0.0060253018, + 0.016753476, + 0.00628814, + 0.013951502, + 0.024725718, + -0.05040817, + 0.039960172, + 0.024351345, + -0.020019412, + 0.031060662, + -0.0014179958, + -0.014047233, + 0.026567945, + 0.04407181, + -0.03014231, + 0.036787894, + 0.007162187, + 0.07389405, + -0.019589318, + 0.014548884, + 0.053717755, + -0.04787055, + -0.002357666, + -0.075202085, + 0.05890033, + 0.0076344893, + 0.006837511, + 0.03076623, + -0.01754517, + -0.09635517, + 0.079311624, + -0.023068924, + -0.048061267, + 0.023839232, + 0.04071162, + -0.07355133, + 0.104447015, + 0.052886043, + -0.003807068, + 0.02002583, + -0.058280114, + -0.008348865, + -0.014053812, + 0.03903873, + 0.061497882, + -0.044527404, + 0.033039056, + 0.019335486, + -0.0056442246, + 0.043004427, + 0.015830401, + 0.019714203, + 0.034303103, + -0.03159384, + 0.016588133, + -0.023593353, + 0.0399982, + 0.011432817, + -0.04961499, + 0.0053538224, + 0.013538236, + -0.011041556, + 0.011680302, + 0.016466906, + 0.0024236722, + -0.007215247, + -0.034814212, + -0.028868109, + 0.007028603, + -0.061796017, + -0.009585289, + -0.011475542, + -0.013704468, + -0.043133836, + 0.013302947, + 0.021540383, + 0.007830448, + 0.03825689, + 0.035636544, + -0.016309502, + -0.013588079, + 0.016648913, + -0.015775418, + 0.049281638, + -0.005333352, + -0.026532609, + -0.0045126146, + 0.008359305, + 0.0029358396, + 0.024198871, + 0.035755612, + 0.011937087, + 0.010714738, + -0.03296556, + -0.028720364, + -0.046047404, + -0.008666647, + 0.062601216, + 0.018300483, + -4.2850088E-4, + 0.014960891, + -0.0053275414, + 0.061148398, + 6.487285E-4, + -0.00661059, + -0.025254996, + 0.009117096, + -0.00622916, + -0.015313048, + 0.040002186, + 0.08548484, + 0.012837539, + 0.058166143, + 0.008748809, + -0.020217462, + -0.03294725, + -0.01705443, + 0.056986727, + -0.0074029635, + 0.060386404, + -0.03003576, + 0.03410281, + 0.049544785, + -0.034364868, + 0.014652053, + -0.010264183, + 0.02132797, + 0.0075129205, + -0.005311975, + -0.036258668, + 0.009849571, + 0.016169101, + 0.028436339, + -0.007202874, + 0.054801784, + 0.00744615, + -0.05378059, + 0.023288088, + -0.00417136, + -0.01756065, + -0.03124481, + 0.011174844, + -0.032431304, + -0.0044930275, + 0.019547435, + 0.026465239, + 0.015133372, + -0.014946318, + -0.058525134, + 0.01882213, + -0.055898458, + 0.028230488, + 0.008602461, + -0.0010971655, + 0.052035864, + 0.00574007, + 0.034601003, + -0.0011313568, + -0.003482866, + 0.0018784209, + -0.019815773, + -0.028687052, + 0.05709852, + -0.0056494307, + 0.046794586, + -0.047849912, + -0.030435208, + -0.050376434, + 0.0047888085, + -0.015375267, + -0.016667174, + -0.026837826, + 0.03125464, + -0.004741109, + 0.008308601, + 0.026644588, + -0.013331994, + 0.007378407, + -0.017299762, + 0.03333988, + -0.01163706, + -0.004436144, + -0.012133181, + -0.024102682, + -0.007055649, + 0.009820442, + -0.013467514, + 0.007550571, + 0.023770435, + 0.034249086, + 0.019645609, + 0.008025497, + 0.026336242, + -0.04191085, + -0.008182809, + 0.019015212, + 0.06836396, + -0.003222931, + 0.031201271, + 0.018460294, + 0.03107414, + 0.03217691, + 0.06696506, + -0.007671241, + -0.037589964, + 0.016669707, + 0.004324044, + -0.011912397, + 0.015235127, + -0.026412228, + -0.05052006, + -0.00954914, + 0.022368489, + -0.052619383, + -0.018002992, + -0.0031279437, + 0.06629784, + 0.047492977, + 0.018456066, + 0.016451366, + 0.06613439, + -0.043629028, + -0.039845508, + 0.035330452, + -0.001086401, + -0.052274488, + 0.007535043, + 0.008688946, + -0.013388009, + -0.015969027, + 0.0132738175, + 0.011269067, + -0.005623965, + -7.352991E-4, + -0.008712327, + -0.03571474, + 0.016339848, + 0.018688945, + -0.0060024755, + -0.012458559, + -0.018695734, + 5.660447E-4, + -0.008982881, + -0.040463533, + 0.025084468, + 0.05273946, + -0.049149733, + 0.0062353048, + -0.0013247029, + 0.035014283, + 0.072128475, + -0.017238203, + 0.02167775, + -0.0019720984, + 0.0012865375, + -0.0048320615, + -0.041169956, + -0.043204278, + -0.04991332, + -0.0127381105, + -0.041589707, + -0.033684883, + -0.028307619, + 0.020219196, + 0.031025546, + 0.026434552, + -0.007227028, + -0.031893536, + 0.005549981, + 0.04046555, + -0.050042003, + -0.030217616, + -0.039039534, + 0.0047105206, + -0.02642894, + 0.015414641, + 0.03913726, + -0.0029951814, + -1.2896296E-4, + 0.017576125, + -0.0076572993, + 0.0041716485, + 0.004891892, + -0.030781336, + 0.026578084, + -0.030287286, + -0.04316412, + -0.03849462, + -0.023952851, + -0.023356915, + 0.072056495, + 0.040350504, + -0.012116805, + 0.0142816035, + -0.031460162, + 0.0065000723, + 0.016130846, + -0.0451344, + 0.05160627, + -0.046371482, + 0.036439642, + -0.010314985, + 0.0024772596, + -0.015766393, + -0.017869292, + -0.060621403, + -0.0049059554, + -0.0028964009, + 0.057863288, + 0.046918906, + 0.048532072, + 0.018962678, + 0.03319019, + 0.014391795, + -0.025259515, + 0.03172625, + -0.037652068, + 0.011327654, + -0.055403028, + 0.013358943, + -0.0460862, + 0.044070672, + 0.007581675, + 0.06558195, + 0.037846867, + 0.006536366, + -0.06398322, + -0.04155753, + -0.02936029, + 0.014590857, + 0.021910958, + 0.019984283, + 5.751681E-4, + -0.033666726, + -0.03811899, + 0.017942848, + 0.021664431, + 0.004996721, + -0.019685017, + 0.02135522, + -0.0073977457, + -0.03965477, + -0.004981568, + -0.0070369225, + 0.004264597, + -0.05173257, + 0.020946987, + -0.017198656, + -0.009457515, + 0.004526, + -8.0929906E-4, + -4.3712728E-4, + -0.027253596, + -0.016345952, + -0.03822968, + 0.047720507, + -0.016149923, + 0.032070518, + 0.03929411, + 0.03134276, + 0.01190444, + 0.042784132, + -0.06197278, + -0.01249906, + -0.025319371, + 0.029219033, + 0.005337332, + -0.0017804204, + 0.032189853, + -0.023014333, + 0.0041529606, + 0.023025615, + 0.011719887, + -0.03330787, + -0.014439025, + -0.023881372, + -0.046014998, + -0.008651642, + -0.0800001, + -0.03245717, + 0.057444047, + -0.0054170643, + -0.030878112, + -9.3247375E-4, + 0.0051797214, + -0.0356912, + -0.059406456, + -0.0023303556, + 0.020567846, + -0.021502372, + 0.016481956, + 0.017853059, + 0.0299657, + -0.0015115539, + 0.019238807, + 0.049719658, + -0.018954692, + -0.018769942, + 0.033701938, + 0.038180325, + -0.025158787, + 0.019202849, + 0.03689263, + 0.062537916, + -0.0020582695, + 0.0264092, + 0.017262181, + 0.023866346, + -0.016404266, + -0.00859327, + -0.026663372, + -0.0047052805, + 0.07466805, + 0.027997369, + 0.02641785, + 0.009145554, + 0.004201643, + 0.015708068, + -0.036119483, + -0.021969076, + -0.03079628, + -0.03167718, + 0.004477154, + 0.049834285, + 0.005099728, + -0.002224876, + -0.01767295, + -0.020167472, + 0.015147875, + -0.012482522, + -0.05159084, + 0.012749307, + 0.006780923, + 0.023020811, + 0.019237326, + -0.0017643437, + 0.013949335, + 0.022002568, + 0.031724066, + 0.00504956, + -0.038673647, + -0.009460486, + -0.0084462715, + 0.025184602, + 3.7964265E-4, + -0.023883346, + -0.022158923, + -2.377542E-4, + -0.0035301098, + 0.009352625, + -0.04777699, + 0.006296694, + -0.029980185, + -0.028334932, + -0.004778149, + 0.060767304, + -0.034668546, + 0.050301515, + 0.03502191, + 0.0017092495, + 0.06473493, + -0.03846425, + -0.010874111, + -0.03421871, + 0.029984104, + -0.0115269795, + 0.009724307, + -0.019278431, + -0.02296709, + 0.048835505, + -0.002025349, + -0.015472121, + 0.054562215, + -0.019635681, + -0.037993386, + 0.011668491, + 0.06048381, + 0.028813427, + 0.017386407, + -0.0061156387, + -0.015392165, + -0.008286761, + 0.0064688926, + -0.0021567731, + 0.04227385, + -0.0074462974, + -0.03943567, + 0.046628416, + -0.013180661, + 0.012049902, + 0.025662905, + -0.0038128449, + -0.060444977, + -0.059450507, + -0.0024541616, + 0.010770884, + 0.025906958, + 0.01678409, + -0.015514036, + -1.8357173E-4, + -0.0036890125, + 0.023136873, + 0.019915571, + 0.030847982, + -0.018616429, + -0.035997957, + 0.030155962, + 0.0042886017, + 0.023029234, + 0.041234005, + 0.0046350397, + -0.028970476, + 0.055729285, + 0.023589011, + -0.012268567, + 0.035197835, + -0.009385952, + 0.0032736717, + -0.03908563, + -0.019961752, + 0.008884726, + -0.0015607345, + -0.0062044435, + 0.006827544, + -0.022226432, + -0.052064314, + 0.018432321, + 0.014196905, + 0.032521877, + -0.011482201, + -0.004196666, + 0.04742905, + 0.05864445, + 0.009352604, + -0.031202761, + -0.04839651, + 0.025824983, + 0.047743335, + 0.009537102, + -0.026184216, + -0.035696685, + -0.013748749, + 0.02080485, + 0.02124391, + 0.0064792773, + 0.053933304, + 0.015951388, + -0.04264531, + -0.032858733, + -0.045768093, + -0.011394025, + -0.03746055, + 0.03430784, + 0.05136298, + 0.0042920057, + 0.019291157, + -0.017580044, + 0.04645499 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json index e3ad80016..854a0ef34 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json @@ -1,1341 +1,5251 @@ { - "description": "images linked with the same work", - "createdAt": "2023-11-21T14:25:44.112134Z", - "id": "442i1muy", - "document": { - "modifiedTime": "1994-09-19T04:49:23Z", - "display": { - "id": "442i1muy", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images linked with the same work", + "createdAt" : "2024-11-14T14:37:56.500107Z", + "id" : "0r17jcwd", + "document" : { + "modifiedTime" : "2055-07-25T16:03:54Z", + "display" : { + "id" : "0r17jcwd", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/3Ga.jpg/info.json", - "credit": "Credit line: GqXFdvQAWP", - "linkText": "Link text: uP1fSq6gM", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", + "credit" : "Credit line: bml9zR8xr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/3Ga.jpg/info.json", - "credit": "Credit line: GqXFdvQAWP", - "linkText": "Link text: uP1fSq6gM", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", + "credit" : "Credit line: bml9zR8xr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#144D82", - "source": { - "id": "0gpwg18n", - "title": "title-3s7xI6F0dO", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#9CD4A2", + "source" : { + "id" : "aawgyyy8", + "title" : "title-Wk9BGeV6UO", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "442i1muy", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "0gpwg18n", - "sourceIdentifier.value": "Xa8L6WpxaN", - "identifiers.value": ["Xa8L6WpxaN", "GmIygfg3bH", "la2n3zKDfE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3s7xI6F0dO" + "query" : { + "id" : "0r17jcwd", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "aawgyyy8", + "sourceIdentifier.value" : "ErLUg1OWaB", + "identifiers.value" : [ + "ErLUg1OWaB", + "22sQyoKXZb", + "Z3y3axc7PO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Wk9BGeV6UO" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.02372562, 0.001911464, 0.021212228, -0.008917154, 0.022118933, - 0.01761126, 0.020548193, 0.017481573, 0.008146814, -0.0051944354, - -0.0052665225, 9.483632e-4, 0.010205293, 0.011882601, 0.01949266, - 0.010090188, 0.0038421976, 0.0061406908, -0.026135484, 0.009045497, - -0.03702419, 0.009665405, 0.021469995, 0.046150226, -0.013186839, - -0.0194074, -0.024770273, -0.0020534706, -4.2681015e-4, -0.002078422, - 0.019466434, -0.02228059, -0.026248636, -0.0038180652, 0.011723425, - -0.0010521896, 0.026461238, 0.013102636, 0.0102414945, -0.0045420504, - 0.0013682033, 0.021472672, 0.0028733297, -0.003398567, 0.009219064, - 0.009976466, -0.025191637, 0.016896702, -0.018987847, -0.01079458, - -0.01854474, -0.031738076, 0.0053497413, 0.02730749, 0.0014853831, - -0.0033878847, 0.015188152, 0.024750136, -0.02584623, 0.018359937, - 0.005193282, -0.009151765, -0.03652233, -0.0075532976, 0.039088994, - 0.013328233, 0.024394443, 0.016209356, -0.038488377, 0.022252593, - 0.017920772, -0.017189808, -0.002262085, -0.0013393018, -0.03031614, - -0.020222383, -0.0052551646, -0.022405293, 0.015914487, 0.011405024, - -0.008185866, 5.4324075e-5, -0.0044800765, 0.016809126, 2.4065941e-5, - -0.0204842, 0.009910396, 0.016017647, 0.0074660317, 0.0020870618, - -0.010175578, 8.349375e-4, 0.0055338438, 0.016957026, 0.011326092, - 0.03290756, 0.014136879, -0.00815914, -0.009386069, -0.009669094, - 0.014423434, -0.016281871, 0.02018085, -0.022480622, 0.04057523, - -0.024545964, 0.01406497, -0.013427481, -0.007900877, 0.027055122, - 0.0072228615, 0.0036919275, 0.018798359, 0.008537476, 0.036973026, - 0.017658072, -0.024026139, 0.028309865, -0.02009671, 0.0060307942, - -0.012817507, 0.0057978183, 0.017661361, 0.0070167123, -0.0113923615, - -0.024366196, 0.005107171, -0.007949081, -0.0029792504, 0.018899212, - -0.011934473, 0.0138027845, -0.011062944, 0.017570045, -3.5894726e-4, - -0.0026536114, -0.041738074, 0.002510308, 0.034781974, -0.002858257, - 0.0028863268, -0.009545626, -0.013396725, 0.0037210484, 0.005915093, - 0.025809646, -0.0041170726, 0.0062216828, 0.020689346, 0.018332552, - 0.021617716, -0.0078092106, 0.02353393, -0.0037844372, -0.0017372323, - 0.010442309, 0.018923659, -0.021692982, -0.0031044723, -5.005081e-4, - -0.033245064, 0.012854405, 0.0141226435, -0.003485175, -0.03202007, - 0.0089996755, 0.013458076, 0.0056086187, -0.0088295555, -0.019353783, - 0.016129173, -0.02734999, -0.011242056, 0.015561775, -0.014304605, - -0.011609693, 0.009308661, -0.029934475, -0.009551998, -0.031807736, - 0.012141073, -0.0017572813, -0.031533238, 0.0025504648, 0.0020943705, - -0.038761675, -0.008378628, 0.030914554, -0.006086171, 0.004990311, - 0.011199493, -0.004954305, 0.009176222, -0.01901635, 0.0037064895, - 0.013682609, -0.006340634, -0.012393742, -0.032004565, -0.012614975, - -0.012674881, 0.008640042, 0.022057554, -0.008670911, -0.021389121, - -0.0032332893, 0.024317125, -5.777515e-4, -0.02053147, -0.010819261, - -0.015990335, -0.00863206, -0.0038249816, -0.012882735, 0.008020535, - -0.015648002, -0.018354395, -2.3235628e-4, -0.043147165, 0.035426848, - -0.003123448, -0.024052836, 0.0065554054, 0.008185837, 0.0070275147, - 0.017067246, -0.012766266, -0.012322174, 0.022222493, 0.007823461, - -0.017933076, -0.018537158, -0.0012024682, -0.007581638, -0.005004051, - 0.005055877, 4.736844e-4, 0.012746131, -0.015510777, 5.109206e-4, - -1.4531733e-4, 3.184858e-4, -0.025557227, -0.023792874, -0.007530238, - 0.016233338, -9.226144e-4, -0.0029759628, 0.035857446, -0.032914773, - 0.01331195, -0.016106065, -0.010576919, -0.014711933, 0.029032383, - -0.009251422, 0.010576587, -0.0057653403, -0.017330045, 0.0045541693, - 0.006481937, -0.004667857, 0.016113818, -0.03363481, 0.0043675913, - 0.009398699, 0.0047071753, -0.006858988, -0.019613286, -0.0035454703, - -0.005409538, -0.021691522, 0.0033677118, -0.01687338, 0.018395383, - -0.025020523, 0.024569927, 0.012264481, 0.0076307254, 0.0095553575, - 0.011894115, 0.009596269, -0.022227129, 9.32297e-4, -0.004753347, - -0.01084112, 0.0051183244, 0.0094739, -9.646074e-4, 0.022532606, - 0.012044227, -0.021201383, 0.008516931, 0.0020830152, -0.007605098, - -0.004180955, -0.024735017, -0.0074794716, -0.026846416, -0.0063739563, - -0.006292132, 0.0014277605, 0.03025483, 0.010396092, 0.007422062, - 0.005390707, 0.01719103, 0.003029273, 0.013202209, 0.0038076397, - -0.016424563, -0.0065848837, 0.015396803, -8.578737e-5, 0.018319296, - -0.022249239, -0.0038352888, 3.6857338e-4, -0.029016506, 0.026188452, - 0.019670768, -0.015946474, 0.0045509636, -0.0128128845, -0.015934655, - -0.012956743, 0.0016594693, 0.016381124, 0.008063417, -0.0077858497, - 0.0077785836, -0.019820495, -0.008769471, -0.026587002, 0.016245443, - 0.004671533, 0.012389424, 0.0020747115, -0.0061289268, -0.019676968, - 0.0037939448, -0.0064022536, 0.03876577, 0.0031883446, -0.010060045, - -0.011602655, 0.016849598, 0.006676132, 0.010066742, -0.005691952, - 0.00289424, -0.021246832, 0.0038909614, -0.0210199, 0.005078936, - 0.030887248, -0.004351897, -0.009272482, 0.013691644, 0.011729, - -0.0039098393, 0.021707885, -0.014776046, 0.0023418232, 0.022291234, - 0.019638605, -0.016634535, 0.0033975572, -0.031950075, 0.027307807, - 7.4765255e-4, -0.0061804843, 0.0042958288, -0.010551758, 0.008821797, - -0.020223055, 0.007764347, 0.027759058, -0.015098346, 0.0024012455, - 0.010035188, 0.0026417985, 0.012658111, 0.00435375, 0.0037191526, - 0.005026448, 0.018616965, 0.018168263, -0.004984222, -0.002983798, - -0.028292496, 0.033092324, -0.0147604095, -0.033141334, -0.0011338715, - 0.020855077, -0.013219881, 0.006547326, 0.0073828255, 0.006771131, - -0.0040162373, 0.0052244407, -0.01539422, 0.009695701, -0.007632458, - 0.016295308, -0.0013961741, -0.024842134, 0.009167512, 0.010204735, - 0.011523362, 0.022777895, -0.0025851585, -0.023875412, -0.017140692, - 0.013370212, -0.015688144, 0.0063311676, 0.017716011, -2.6059774e-4, - -0.024889486, -0.01948787, 0.0075519313, -0.01022901, -0.0020871253, - -0.017202573, 2.5415284e-4, -0.016937653, 0.028850203, 0.030299483, - -0.008317937, -0.023378713, -0.017104447, 0.005699751, -2.3620747e-5, - 0.0243718, -0.03128934, 0.008248173, -0.017612109, 0.020572156, - -0.01236355, -0.015480564, 0.017327098, -0.032152783, -9.1125024e-5, - 0.015587038, 0.011093494, 0.004891245, -0.013432895, 0.018037515, - -0.012338368, 0.022932507, -0.014162267, 0.026826127, -0.0036544476, - -0.006399009, -0.0036496024, 0.0039888965, -0.0025029562, 0.007999429, - -0.008260033, -0.0019657987, -0.030245686, 0.023638722, 0.014694761, - 0.006494298, 0.016775034, 0.0064544226, -0.012855854, 0.0055536483, - 0.007512713, 0.01408808, -0.00929026, 0.005968028, 0.0075915856, - -0.010861809, -0.01298976, -0.016020654, 0.009144918, -0.005945174, - 0.015993955, 0.020939887, -0.02682018, 0.01198418, -0.017418835, - -0.0035385718, 0.010442788, -0.0017002107, -0.012239745, -0.007270095, - -0.003519435, 0.0064477515, 0.014491801, 0.005687695, 0.0033539115, - -0.008233533, -0.0098749595, 0.0037094008, -0.016420774, 6.386458e-4, - -0.020874942, -0.011436297, 0.0029985022, 0.005198248, -0.011377388, - 0.005601042, 0.016760992, -0.022922287, -0.021245455, -0.0026491717, - 1.829699e-4, 0.01862838, 0.014198911, -0.029976316, -0.0011790706, - 0.0058317482, 0.015187072, -0.0016691168, -0.011503168, -0.001659261, - -0.025313366, -0.0015093364, 0.026813228, 0.008582017, -0.007873279, - 0.024204927, 0.010963886, 0.0036548919, 0.021288348, -0.0113975555, - -0.016420664, -0.011886553, 0.008963173, -0.0038513455, 0.009492304, - 0.028012408, 0.003103223, -0.005736057, -0.0016429046, 0.01327431, - 0.033250283, 0.012719939, -0.008210558, -0.027257388, 0.016020592, - 0.022302976, -0.008830909, -0.008466438, -0.014580374, 0.005699874, - 0.017100014, -0.021151735, 0.001192048, 0.021382265, -0.0149117, - -0.015262795, -0.008274959, 0.021158477, 0.0038194077, -0.003314802, - -0.0036431344, 0.019163901, -0.0037706592, 0.015466695, 0.0022945178, - -0.015572594, -0.021765718, -0.0016341914, 0.008386524, 0.010291716, - 0.019492907, -0.007322375, 0.0037612622, -0.012491244, -0.014027015, - 0.0056063724, -0.0050014295, 0.017673897, -0.002325193, 0.01793187, - 0.019736802, 0.0013942337, -0.013668661, -0.010113616, 0.017811745, - 0.012700161, -0.016094746, -0.0133352885, -0.0144890575, 0.026096454, - -0.030336235, 0.0063391845, -0.014549166, 0.007032829, 0.004476985, - -0.0042064483, -5.084519e-4, -0.0073541375, 0.004736887, 0.0045774034, - 0.008962061, 0.008384769, -0.004466268, -0.024822675, -0.008856922, - -0.020547517, 0.03786698, -0.006797647, -0.0065160915, -0.013717931, - 0.0018108491, 0.013682274, 0.0067850226, 0.0076371552, -7.922875e-4, - 0.0039065443, 0.0047470974, -0.009764961, -0.00550645, 0.043764416, - 0.012245211, 0.0170433, 0.014923821, -0.011114201, -0.019080322, - 0.029651932, -0.025428254, -0.013940151, -0.0086663375, 0.0048460145, - -0.002144968, -0.0070209256, 0.013150498, 0.036103584, 0.0018413697, - -0.038476203, 0.007833538, 0.010015965, 0.027542097, 0.01626853, - -0.027913943, 0.0055305692, 0.031027002, 0.008849491, 0.0038987412, - 0.02552062, -0.0053967964, -0.0018554343, 0.010282564, 0.015710425, - -0.011643316, -0.016375674, -0.01128182, 0.008969437, -0.009524974, - -0.0058744596, -0.013352219, -0.005008947, 0.0080797365, 0.0022564384, - -0.0014446514, -0.02405369, 0.009896108, -0.0044340556, -0.00804235, - -0.023726529, 0.011324807, -0.024798522, -0.007837732, -0.003289957, - 0.009697156, 0.01971194, -0.01486522, 0.01819679, 0.017674496, - 0.0032564152, -0.008955833, -0.0036325888, 9.808638e-4, -0.014371004, - 0.005157609, -0.010677964, -0.01183455, -0.008602925, -0.019605998, - 0.0032384745, 0.012328634, -0.03638961, -9.81412e-4, -0.0029480613, - 0.008332435, 0.013750348, 0.01227047, 0.00459621, 0.0176748, - 0.008446396, 0.009614647, -0.0021348384, -0.008013417, -0.0065078572, - 0.0074829995, 0.006436812, 0.01575226, 0.023622079, -0.0031870096, - -0.018553425, -0.020504287, 0.013620986, 0.010450501, 0.009958873, - -0.0016115634, 0.0011001715, -0.0041756346, 0.00968748, -0.00586669, - -0.0059191254, 0.017572125, 0.002188725, 0.014446635, -0.0072120363, - -0.0040706387, 0.00941769, -0.011010203, -0.0019421891, -0.0060688877, - -0.010783858, 0.014829976, -0.0021170091, 0.011511189, -0.0056715654, - -0.03423422, 0.02983593, -1.7595982e-4, 0.011225548, -0.017415348, - 0.0059051896, -0.008682486, -0.016649755, 0.037469026, -0.035949033, - 0.017358474, 0.015685009, 0.012836099, -0.016837096, -6.9109123e-4, - 0.011929076, -0.006044964, -0.0021453004, -7.3326397e-4, -0.004108299, - 0.01660399, 0.026289623, 0.008399517, -0.008074342, 0.023232857, - 0.004935, -0.0035563547, 0.008247093, 0.018957404, 0.0029809265, - -0.015578827, -0.0039020162, -0.010996376, -0.011322453, 0.0241228, - 0.02425215, -0.007475263, -5.1394258e-5, 0.017083254, 0.030890994, - 0.01874996, 0.037914023, -0.00372798, 0.014230731, 0.0040200716, - 0.017771699, 0.024616478, -0.023078855, -0.0021783845, -0.01047713, - -0.010879272, 0.015213984, 0.0036808103, -0.016928658, 0.0020460354, - 0.0034084965, 8.194049e-4, 0.004864697, -0.0036861894, 0.011821043, - 0.013322489, 0.00483673, 0.020904675, -0.011219477, 0.010013315, - 0.0129456455, -0.017637253, 0.023666926, 0.008102477, -0.003311666, - 0.01497754, 0.006886299, 0.01775023, -0.0023509096, -0.008227719, - 0.0069014905, -0.015725615, 0.01621782, -0.014538446, 0.0016440661, - 0.01473734, -0.0062320405, 0.022322116, 0.00262682, 0.042402662, - 0.03362816, -0.023013778, 0.010502363, 0.010783129, -0.008088557, - 0.0100538265, -0.0048391763, 0.0074056475, -0.008561478, -0.0020525486, - -0.0058639334, 0.01053825, 0.006099045, 0.020043941, 0.0083610825, - -0.0038062194, 0.0061373943, 0.008924541, -0.035043053, 0.012893391, - 0.016469056, 0.005397375, -0.011341488, -0.014029004, -0.00433951, - -2.9482023e-4, -0.020726485, 0.020595752, -0.015776116, -0.005447064, - -0.029430281, 0.024371848, 0.01221935, 0.015485311, 0.0073006507, - -0.027699757, -0.02270542, -0.01261418, 0.016057983, -0.033009805, - -0.03989576, -0.0017112818, 0.003749459, -0.017336199, -0.02148072, - -0.002544637, -0.012752051, -0.0039849533, -0.001069933, -0.027135992, - 0.016317945, 0.006729805, 0.012345465, 0.008727079, -9.801851e-4, - 0.014851048, -0.01995137, 0.025030632, 0.010612427, 0.002476784, - -0.011843801, -0.010294644, 0.001139885, -0.0054023294, -3.0742688e-4, - -0.005501402, -0.0031062383, 0.0013094357, 0.022212189, -0.0047130384, - -0.0024909363, -0.02224619, -0.009616149, -0.011969881, 0.013550299, - 0.0020667848, -0.001446537, -0.008347602, -0.011448324, -0.017527262, - 0.030913401, -0.02638021, -0.008358631, 0.0233343, -0.023261923, - -0.007408215, 0.0015758002, -0.021368092, -0.011032977, -0.0215757, - -0.01352673, -0.017871443, 0.011120194, -0.010777315, 0.0052032457, - 0.025919208, -0.011538396, -0.0069520148, 0.028100265, 0.011310269, - -0.0035367454, 0.003980811, 0.0067099584, -0.007531538, 0.007956016, - 0.010939564, 0.013689215, 0.0074679335, 0.020673385, -8.154791e-4, - 0.0065451283, 0.009230589, -0.018735625, -0.0015054336, -0.015253836, - -0.008508309, -0.011764564, 0.010873323, -0.028897332, 7.301324e-4, - 0.019595338, -0.012218602, 9.6226206e-5, 0.012569479, 0.014581321, - -0.026624823, 0.00785341, -0.0108655775, -0.016222255, 0.0012255311, - 0.0035879428, 0.0048403246, 0.0069718575, -0.025276724, 0.007122513, - 0.008305237, -0.013464885, -0.027753169, 0.0037505294, -0.014385144, - -0.017327731, 0.0015855815, 0.004453123, 0.008888814, -0.01863732, - 0.01787481, -0.009605878, 0.017307654, 8.9174e-4, 0.0038696078, - 0.005287672, -0.013486435, -0.0089735305, -0.028499665, -0.02144786, - -0.008509, 0.0013509034, -0.02528129, -0.009207954, -0.016289126, - -0.016320113, -0.021259872, -0.024342367, 0.012315219, -0.029955944, - -0.011152693, 4.2963808e-4, 0.00986201, -0.004474137, -0.004652298, - -0.020418217, -0.001816032, 0.004950088, -7.90489e-4, -0.026884662, - -0.008639461, 0.011182874, -4.1356307e-4, 0.007969545, -0.014443468, - 0.0017891313, -5.838097e-4, 0.00840444, -0.02085396, 0.009342148, - 0.018723015, 0.008241645, 0.013916171, -0.03263471, -0.009966226, - 0.014577083, -0.031386063, 3.4769662e-5, 0.0354483, -0.016632, - -0.017492872, 0.012010504, -0.0053940797, 0.006556484, -0.017448775, - 0.012728218, -0.044373475, 8.705965e-5, -0.01878613, 0.010957429, - -0.0017559978, -0.013769546, -9.3494216e-4, 0.00909711, 0.005123661, - 0.017346134, -0.0040605203, 0.02819318, -0.014159637, -0.0034181068, - -0.02234765, -0.006827596, -0.0045827646, 0.0053227325, -0.021354312, - 0.0070582842, 0.0023103503, -0.009984908, -0.0027933354, 0.0036144725, - 0.007651561, -0.010901857, 0.0072062337, -0.0041441876, -0.0059586815, - -0.003886601, -0.0035307775, -0.03157184, 0.012805053, -0.0047967513, - -0.0026007763, -0.004422933, -0.0154273985, 0.015596922, 0.012886064, - 0.015835503, -0.0029310538, -0.029105935, -0.016481271, -0.014239349, - -0.0031466344, -0.0062178764, -0.0043824776, -8.5910386e-4, 0.019097824, - -0.011246744, 0.006865733, 0.004627223, 0.021603819, 0.0020916841, - -0.0037936836, -0.013983448, 0.021795493, -0.029024964, -0.0034674148, - 0.0116441455, 0.011136954, -0.01608355, -0.009038156, -0.0067288047, - -0.032137685, 9.385318e-5, -0.007396057, 0.009302836, 0.0022622843, - -4.4693053e-4, 0.015391426, 0.0032232988, 0.0049381144, -0.013314164, - 0.0014867389, -0.020967403, -0.004918549, -0.0019026017, 0.017622175, - 0.02432693, 0.0012375059, -0.0062528946, 0.020174835, 0.007850806, - -0.0025581557, 0.010025464, -0.013708085, -0.013521786, -0.0029858493, - -0.0071492014, -8.682602e-4, -0.026269147, 0.014498508, 0.02194447, - 0.0086130835, -0.0072869966, 0.009816717, -0.024680205, 0.004635769, - 0.010686124, 0.001744331, -0.011015515, 0.018923333, -0.036327925, - -5.08913e-4, 0.010762016, 0.009932509, 0.0035954164, 0.032969214, - 0.029394593, 0.0017321771, -0.0019019318, 0.00894236, 0.014827418, - -0.0152181275, 0.012011631, 0.0113285165, -0.013216873, -0.0060605947, - -0.010492729, 0.0010267654, 0.010539188, -0.031713866, -0.024031952, - -0.010198877, -0.019407278, -0.0217585, -0.005264138, 0.01594121, - -0.006279297, 0.004539508, -0.021914052, 0.034774907, -0.018386425, - -0.0025621108, 0.0058587184, -0.009321365, -0.015371743, 0.0082286745, - -0.01555613, 0.016294498, 0.0022447142, 0.02330809, 0.009171081, - -0.004099235, 0.0015206984, -0.016257385, 0.006284999, -0.039937098, - 0.019363742, 0.008327472, -0.0053472696, 0.023692193, 0.003122866, - -0.010872388, -0.015867481, 0.012348959, -0.02090002, -0.019706909, - -0.022910893, -0.008508575, 0.010537724, 0.0032168392, 0.011433905, - -0.022358684, 0.03289918, -0.010921249, -0.011576368, -0.027213637, - -0.0014812533, 0.015383962, 0.010085673, 0.005927883, 0.003618078, - -0.021446269, -1.3842119e-5, 0.018358387, 0.005952699, -0.024702055, - -0.0023348515, 0.010326095, 0.025147805, 0.033058304, -0.0066354703, - -0.0063299504, 0.013342264, 0.018647444, 0.012094428, 0.02315904, - -0.019884499, -0.013605727, -0.005003065, -0.025741888, -0.0070379525, - 0.008073376, 0.027056998, -0.023163153, -0.013978632, -0.008629143, - 0.010192036, 0.027170997, 0.010138083, 0.0022238526, 0.020237587, - 0.0089785205, -0.031127492, 0.0049686115, 0.016169013, -0.006488901, - 0.0027026064, 0.005510732, -0.011194022, -0.028285915, -2.8476902e-4, - 0.002195174, -0.0041067856, -0.016659994, 0.011778383, 0.008388563, - 0.007494525, 0.008002133, 0.0011706271, -0.008134574, -0.025560452, - 0.003072562, 0.0013385429, 0.005221273, 0.0056158747, 0.02819842, - -0.007300618, -0.0038408805, -0.012874951, -0.0048041716, -3.6914097e-4, - -0.002810444, -0.017739953, 0.010484057, -0.0035258757, 0.035992194, - -0.005891617, -0.018188298, -0.004185177, 0.0033562963, 0.0012133712, - 0.011155756, 0.017081896, 8.831027e-4, -0.007767964, 1.5667922e-4, - -0.0060234335, -0.012013436, -0.002101369, -0.007837665, -3.2902905e-4, - -0.0143165765, 0.0010271583, 0.027834829, 0.017154263, -0.0013553812, - -0.013876552, -0.008771142, -0.03548059, 0.017708829, 0.02054879, - 0.0084632225, -0.008803555, 0.014138923, 0.0040779994, -0.01623954, - 0.0057723867, 0.016141323, -0.004752036, 0.030674553, 2.1618254e-5, - 0.011898711, -0.010551539, -0.008668639, -0.009956943, -0.020532658, - -0.006911341, 0.0335967, 0.014221324, 0.0017785153, 0.012943614, - -0.0061115166, 0.010421924, -0.004999162, 0.027222915, 0.009985515, - -0.01205072, 0.019700577, 0.0069380435, 0.006126293, -0.039079037, - -0.0017261722, 0.0015228272, -3.5672027e-5, -0.009827791, -0.01481387, - 0.010876118, -0.010806994, 0.0038734204, -0.014724947, -0.008692974, - -0.01742888, 8.580202e-4, -0.009369205, 0.004039591, 0.006992834, - -0.005412751, -0.011164906, 0.026706738, -0.0074999807, -0.017490547, - 0.0026503915, -0.015473186, -0.022749104, -0.033280205, -0.007179622, - 0.009507059, 5.49459e-4, -0.014656741, -0.013160965, -0.014499846, - 0.019138107, 0.0016433984, 0.023284871, 0.010418623, -0.013415885, - 0.0061553814, -0.026024913, 0.016590802, 0.0033569734, -0.0074164695, - -0.0064781643, -0.012479633, -0.0060048588, -0.005961903, 0.011716723, - -0.0049093785, 0.0125846565, 0.00809966, -0.00527046, 0.014366929, - -5.9993024e-4, -0.002662309, -0.020052249, 0.017192367, 0.014091944, - 0.0095895035, -0.034869075, 0.014367192, -0.016191691, 0.009487116, - 0.0061338856, 0.0033137526, -0.0012104952, -0.038531795, 0.007793593, - 0.008099457, -0.017460957, 0.008958114, 0.011862991, 0.030495219, - -0.028652476, -0.012581791, -0.012562859, -0.003420723, -0.011345122, - -0.012752853, -0.012074621, -0.01526959, -0.006785341, -0.008850403, - -0.006233307, -0.019343602, 0.024817178, 0.0059995097, -0.013992801, - -0.011735347, -0.010878603, 7.240713e-4, -0.008296892, -0.004885572, - 0.006435031, 0.0125408, 0.016377702, -0.022290085, -0.018974748, - 0.0012573027, 0.014172034, 0.01045947, -2.9060565e-4, 0.023253955, - -0.01980903, 0.018596916, -0.028692158, -0.012696604, 0.02198163, - -0.02523203, 7.8355917e-4, -0.0055499547, 0.015547975, -0.017963275, - -0.008417029, 0.0032973539, -0.0067183864, -0.009582253, 0.010659286, - 0.007423242, 7.489906e-4, -0.019523274, -0.007978014, 0.008544234, - 0.011442318, 0.043108348, -0.017760038, -0.009344937, -0.0058254097, - 0.022328341, -0.01701721, 0.0067933234, -0.0018672447, -0.022491371, - 0.0060121343, -0.019342272, 0.03422059, 0.004364083, -0.03291838, - 0.0102169, 0.012310708, 0.0052924985, 0.0018765024, 0.018537408, - 0.012427479, -0.009464635, -0.04030588, -0.024263041, 0.0010083246, - 0.016176565, -0.016407821, -0.019583983, 0.022649286, -0.0052224738, - 0.010781118, 0.010058766, -0.008592477, -0.005004848, 0.017205354, - 0.008600536, 0.02016551, 0.014397105, -8.6844456e-4, 0.016035413, - 0.02924494, -0.0060950276, -0.017699499, 0.015552009, -0.007886982, - -0.008241883, -0.016013484, -0.031768836, 0.035963703, 0.0027462714, - -0.020150745, -0.010528601, -0.005815898, -0.015662046, -0.0062635294, - 0.030961374, 0.012275195, 0.02108952, 0.018968705, 0.013167223, - 0.015809795, 0.014493728, 0.0017438845, -0.029141117, -0.015317073, - -0.006036127, 0.0039575836, -0.023501923, 0.01893235, 0.0077808024, - -0.0163189, -0.0014541133, 0.0012848536, -8.80842e-5, 3.6753362e-4, - 0.0063181208, -0.0023077538, -0.027866105, -0.004643535, 0.028682835, - -0.0028364041, -0.0036145102, 0.0020851993, -0.008429434, 0.031482134, - -0.0075235814, 0.02984936, -0.013636028, -0.03460206, -0.017099757, - -0.011743716, 8.784452e-4, -0.013264215, -0.0069014505, -0.006119398, - 0.0026090438, 0.033380378, -0.019194014, 0.027093021, 0.010944415, - -0.028036902, 0.009915414, 0.021263137, 0.02838112, 0.024430336, - 2.0167757e-4, 0.014074692, -0.0047805025, -0.029352475, -0.003087687, - -0.008631607, -0.015558433, -0.015000471, 0.028308129, -0.026612265, - 0.015080173, -8.1358454e-4, -0.021814473, -0.01621659, -0.0132349, - -0.017608603, -0.0052260035, 0.010390896, -0.009973936, -0.021166984, - -0.03751929, -0.020810936, -0.00936494, 0.035420135, 0.00229189, - 0.0031258585, -0.0055711777, -0.019668989, -0.015960945, 0.00643207, - -0.0071045784, 0.013644502, -0.0049628858, -0.009625502, 0.0088720005, - -0.010697528, 0.0080287885, -0.0115792705, 0.024575422, 0.023924967, - -1.7067532e-4, -0.007445306, -0.02744598, 4.7316257e-4, -0.017146595, - 0.014877714, 0.02941043, 0.0023412767, -0.023904167, -0.018981056, - -0.025565559, 0.018082274, 0.028617352, -0.02383406, -0.03027613, - 0.015558422, 0.016691396, -0.008966831, 0.01414295, -0.06378305, - 0.0013866022, -0.010987383, 0.004458349, -0.002211391, -0.024132414, - 0.007896609, 0.005832558, -0.004506143, 0.0026169184, 0.014951633, - -0.010946931, -0.015084276, -0.001699411, 0.0025392768, 0.024868183, - 0.018279618, -0.0054497994, -0.01011118, 0.022852527, -0.0062690657, - 0.0038942378, 0.011138923, -0.0065630246, -0.013236636, 0.03141353, - 0.00471821, -0.01417682, 0.008676986, -0.035466146, -0.016041365, - -0.033128735, -0.006369408, -0.012852093, 0.0067954287, -0.028516859, - -0.0077484394, 0.02044576, 0.0012938605, 0.01886748, -0.03686396, - 7.8454474e-4, 0.019606763, -7.0460554e-4, -0.015224143, -0.018560538, - -0.017027147, -0.0096427845, 0.009349772, -0.017811555, -0.00786558, - -0.023543447, -0.003568164, 0.04096781, 0.021359155, -0.0067849923, - 0.019700425, 0.0076097776, -0.015838, 0.02022323, 0.011360133, - 0.0067353165, -0.00284919, -0.010138024, 0.037138164, 0.0029885897, - -0.010955648, 0.0013824619, -0.0077418676, -0.014560288, 0.016618857, - -0.0035825497, -0.017341187, -0.01277661, -0.0013132726, 0.01802642, - -0.012100898, 0.0066838954, 0.022560483, -0.0065021645, -0.0032075979, - 0.040355384, 0.019852128, 0.020137543, -9.78528e-4, 7.85503e-4, - -0.010314961, -0.015417917, 0.016307116, 0.0072729248, 0.0041092616, - 0.0040082345, -0.00988457, -0.008649033, -0.024824148, -0.016988011, - -0.002887549, -0.021191325, -0.0054647075, -0.013956294, 0.025901519, - -0.011502884, -0.03335861, -0.010089752, 0.00498796, 0.024798153, - 0.0134670315, -0.005083471, 0.0072422274, 0.008973286, 0.004831078, - 0.017789545, 0.026228163, 0.015688876, -0.02588395, 0.015015515, - 0.019099649, 0.009545474, 0.005423618, 0.0029483384, -0.0017229823, - -0.012915723, -0.03754701, -0.008800805, 0.012807713, -0.019484356, - 0.036226656, 0.007841799, -0.0035148186, 0.022467764, -0.005728416, - 2.9130984e-4, 0.021203272, -0.006161417, -0.0043338537, 0.010645997, - -0.005187591, 0.02092825, -0.011658754, -0.007274731, -9.4451563e-4, - 0.034329593, -0.00946468, -0.017340938, -0.012452344, -0.0047536213, - -0.006576383, 0.018141026, 0.01185245, 0.03881613, 0.002156191, - -0.005556574, 0.038019497, -0.011185365, 5.785523e-4, -0.020620361, - 0.001510987, -0.0013352572, -0.0250586, -0.0034884522, 0.0043261806, - -0.0031369964, -0.022121752, -0.0030476328, -0.012818347, -0.011549599, - -0.008790361, -0.020277979, -0.01007875, -0.011862469, -0.00927385, - 0.015145738, 0.0011531219, -0.0031213681, 0.04141422, -0.014604231, - 0.00472126, -0.015726555, -0.0076436824, 0.0068863756, 0.006911447, - 0.016160365, -0.010586243, -0.0041161287, 0.0066255433, 0.016342936, - -0.0034993629, 0.007023881, -0.006913702, -0.007814473, 0.016158393, - 0.019412735, -0.009688568, 1.1068272e-4, 0.018136231, -0.016034333, - 0.0031698765, -0.016267017, -0.03262741, -0.016824676, 0.00906364, - 0.03413923, -0.0029708066, -0.036406238, 0.032168254, -0.018609492, - -0.015550612, -0.028686222, -0.014937697, 0.017154785, -0.030384375, - -0.010632766, 0.025037827, 0.02043063, -0.0066106725, -0.0029346272, - 0.014357353, 0.004210024, -0.03504022, 0.006123077, 0.01934825, - 0.021614973, -0.011824828, 7.079728e-4, 0.0035812056, 0.014301738, - 0.027440088, 0.028221563, 0.004363196, 0.012303544, -0.020932749, - -0.017128948, 0.011591028, -0.009398419, -0.01777276, 0.019990914, - 0.00817332, -0.004723466, -0.016721297, -0.0112721, 2.683091e-4, - -0.0063686683, 0.00810206, -0.017636467, -0.002065061, 0.010882797, - -0.0015037284, -3.5518454e-4, 0.006568795, 0.011664384, 0.013528313, - -0.022562446, -2.9308416e-4, -0.010585025, 0.0040666414, -0.0013940356, - -0.0012426839, -0.021053348, -0.0021205836, -0.01609309, -0.0046337014, - 0.014365154, -0.021104826, -0.011022546, -0.0034256326, 8.631475e-4, - 0.013528063, -0.003236655, 0.013852371, -0.020930849, -0.012704436, - -5.134209e-4, 0.018536398, 0.017449526, 0.007062091, -0.026940301, - -0.010796878, 0.014580678, -0.0139941955, -0.028436836, 0.014149787, - 0.0016838871, 0.009851299, 0.02416626, -0.013211134, -0.026862022, - 0.0044989465, 0.020983778, 3.6252604e-4, -0.02745733, -0.028771589, - -0.00430454, -0.01688965, 0.002985514, 0.012002641, -0.021434976, - 6.413033e-4, 0.0038163941, 0.0046705944, -0.0141186, 0.015240344, - -0.018561797, -0.0142936045, 0.0064755967, 0.020668786, -0.02347574, - 0.011205557, 0.03036739, 0.007107464, 0.003990466, -0.0065847263, - 0.0058900416, 0.012045502, 0.014036176, -0.014783232, -0.025762158, - 0.0057890713, -0.013344107, 0.01818457, 0.015657369, 0.019198105, - -0.010473596, -0.0014000282, 0.019291077, 0.018054731, 0.002254921, - 8.8656694e-4, -0.007441219, -0.0061231744, -0.025404891, 0.008981517, - -0.003113135, -0.024902128, -0.008842617, 0.0019834873, -0.0011195221, - -6.205242e-4, 0.0124182785, 0.01245744, 0.0058098007, 0.008546347, - 0.032811113, 0.025704483, -0.0059331176, -0.017080657, 0.0018453035, - -0.003143879, -0.0062408615, -0.02712753, -0.023188705, 0.028516967, - -0.016392427, -0.022602307, 0.004779284, -0.0030193317, 0.010256158, - 0.023790281, -0.01109866, -0.019706728, 0.006241479, 0.002591805, - 0.02382612, -0.015413998, -0.04030452, 0.006802611, 0.008398693, - 0.006848576, 0.023174757, -0.011290494, 5.9929234e-4, -0.014435249, - 0.009084034, 0.03820438, 0.005571844, 0.021863315, -0.018934103, - -0.032413993, 0.012514147, -0.019070072, 0.005283433, -0.0017864706, - 0.015591437, 0.009122627, -0.009421863, 0.005377742, 0.0112680765, - 0.012573533, -0.010970879, 0.017684458, 0.0014129737, 0.0028910392, - -0.0137423705, -0.0017390714, -0.0025502625, -0.001669486, 0.007877844, - -0.00434176, 0.016372077, -0.0015834351, -0.03031006, -0.015064074, - -0.011416966, -0.009556767, -0.014254537, 0.012361139, 0.008616914, - 3.9574836e-4, -0.0058062794, -0.019391613, 0.0045310548, 0.0130106695, - 0.0024690107, 0.003172798, 0.0010356285, 0.007131526, 0.007338656, - 0.009780018, -8.9914666e-4, 5.4123404e-4, -0.01656887, -0.0022331967, - 0.045304276, 0.0012254387, 0.010704837, -0.003425893, -0.031152256, - 0.029317925, 3.018738e-4, -0.0015101632, 0.008764255, -0.032318518, - -0.020962473, 0.020638213, 0.010884444, -0.011397001, 0.012944929, - -0.029805856, 0.009035409, 0.026602846, -0.010825862, 0.014836452, - 0.0029636468, 0.0038613062, -0.0198085, 0.0135634495, -0.026432568, - -0.001991269, -0.018067926, -0.0065783197, -0.0010540445, 0.0222958, - -0.013662106, -0.01764932, 0.033753246 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0142212175, 0.004472992, 0.018064179, -0.012376862, 0.010478238, - 0.005023863, -0.0332315, 0.0055808485, 0.008149689, 0.0029500774, - -0.022192951, -0.0048138457, 0.013879235, 0.011243667, 0.0011071204, - -0.012330592, -0.0072915154, -0.006868487, 0.006972249, 0.027408063, - 0.026861172, 0.007942726, -0.0028067015, -0.008452508, 0.0037347658, - -1.8566693e-4, 0.018521162, 0.010322685, -0.011713355, -0.0015626464, - -5.0912984e-4, -0.0036439002, -0.013852699, -0.0098399995, -0.04069573, - 0.042963292, 0.004383498, -0.020564718, -0.01022807, 0.009014411, - -0.012870565, 0.012903831, 0.020766491, -0.016842559, 0.002263901, - 0.0070653427, -0.011264844, -0.014492063, -0.010481294, 0.0106437, - 0.0066546015, -0.0029902596, -0.008170357, -0.0059050336, 0.0062657516, - -0.0012206408, -0.008736771, -0.0046459925, -2.919157e-4, -0.0075292834, - -0.014770322, -0.006468002, -0.015429713, 0.017435541, 0.0037160274, - 0.042243544, 0.04161816, -0.010193078, -0.014046631, 0.011585045, - -0.016239924, -0.009117738, -0.021976858, -0.003702886, -0.0061983326, - 0.0151175065, -0.015453779, 0.0014842631, 0.007877813, 0.011008961, - -0.010610854, -0.0146775395, 0.029278116, -0.008694264, -0.0018877416, - 0.008098021, -0.016766706, 0.015242263, -0.00516701, 0.012173302, - -0.008913157, -0.011325118, -0.008455338, -0.0021161307, 0.028214533, - 3.8307827e-4, 0.022980276, -0.0011145371, 0.02025326, 0.01494163, - 0.0079245735, -0.01479028, 0.022044068, 0.0041201897, -0.010749374, - 0.0143513465, -0.0105414195, 0.019413317, 0.016033718, -7.8649516e-4, - 0.0019524203, 0.011808666, 0.008349785, 0.003656125, 0.0028557873, - 0.007958746, -0.006030145, -0.010179632, 0.017575786, 0.008744708, - 0.010048152, 0.019270953, 0.030630566, -0.011114499, 0.007209397, - 0.01538884, -0.018272242, 0.0032395204, 0.017661942, -0.0019807485, - -0.005822771, -0.0021942093, -0.011250522, -0.024163418, 0.017440718, - -0.009545734, -0.012510117, 0.009325153, -0.008974884, -0.015616336, - 0.0031562063, 8.6911954e-4, -0.010773921, 0.010250315, -0.035400055, - 0.02314782, -0.0042427266, -0.002191414, -1.2445427e-4, -0.01619192, - -0.012998589, 0.015134914, 0.0021748564, -0.016840694, 0.006530962, - 0.0122955255, 0.0014600204, -0.010761304, -0.010551035, 0.020412816, - 0.018340006, -0.01409102, 0.019951154, -0.027500538, -0.01792339, - -0.02194201, -0.03326587, -0.01128194, -0.010826911, -0.012856013, - -0.015235711, 0.004844665, -0.020344477, 0.021795107, -0.025608482, - -0.0016230864, 0.009601324, -0.0066710333, 0.02283145, 0.005487605, - 0.0017015396, -0.021755377, 0.0074760923, -0.0057093343, -0.015489494, - 0.02841689, -0.0062605967, -0.0030905239, -0.0018011677, -0.014254865, - 0.0049004927, -0.016663542, -0.012916934, -5.0029595e-4, -0.016662229, - -0.028556155, -0.013947415, -0.019512644, 0.01856662, -0.0056024515, - 0.025632119, -0.02596691, 0.020090442, 0.010185726, 0.02712513, - 0.005921114, 0.0038785313, -0.004418828, 0.008223863, -0.014561095, - 0.014907659, -0.004710471, 0.0091972565, -0.0059077414, 0.010556754, - 0.018379815, -0.0082134, 0.007556994, -7.663814e-4, 0.016672041, - 0.010294997, -0.0033424215, 0.025302397, 0.009664119, -0.01533553, - -0.009824797, 0.0074333022, -0.013350637, -0.03328582, -7.576097e-4, - 0.0061002965, -0.01895342, -0.01055428, 0.016670575, -0.0051303976, - 0.0061157346, -0.0282335, 0.028375722, -0.016728112, 0.0010771579, - -0.0142702535, -0.02729291, 0.013602386, -0.020082263, 0.02240516, - -0.0181816, 0.0063597513, 0.023129664, -0.0079844, 0.0029239203, - -7.56188e-4, -0.005812939, 0.014990112, -0.014866224, -0.030451981, - -0.0026615385, -0.004778433, -0.012323715, 0.030674871, -0.0026955325, - 3.7593592e-4, 0.011749406, 0.01914078, -0.0063802525, 0.012596434, - 0.0040301033, 0.0061532725, 0.0050573475, 0.010888801, -0.031870507, - -0.008358884, -0.0065360307, -0.029895125, 0.008494337, -0.010010224, - 0.016760664, 0.007144386, -0.020591354, 0.0145357745, -0.013971314, - -0.0069627105, 5.473609e-4, 0.021734646, 0.016825287, 0.011435705, - 0.028306987, -0.0013131669, 0.012290326, -9.889818e-4, 0.006297062, - 0.002354691, -0.004239502, -0.031015094, 0.0072703464, 0.022317775, - 0.023455137, -0.0022972263, 0.024800234, -0.0065228734, -0.0039014127, - -0.0016742158, 0.0068982174, 0.004346719, -0.015654903, 0.01479639, - -0.013179382, 0.01600651, -0.0075877034, 0.0028417637, -0.015976278, - -0.014163062, -0.03404149, 0.00646209, -0.006849158, 0.024123918, - 0.017044615, -0.003309751, 0.0058225496, 0.041401293, 0.01241829, - -0.019086676, -0.013361248, -0.0037341348, -0.040049978, -0.0033061493, - -0.016743943, -0.0037273953, 0.01547523, 0.004301448, -0.01867133, - 0.0041317823, 0.010258501, -0.0033138592, 0.023852717, -0.013345625, - 0.04166006, 0.006750834, -0.0015473028, 0.0041211327, -0.005250224, - -0.01110913, 5.7345675e-4, 0.013060286, -0.009391534, -0.023497451, - 0.007959077, -0.049865287, 0.009641727, 0.012061754, 0.0040398934, - 0.031506985, 0.02076272, 0.0063263, -0.017191682, -0.018643763, - 6.068563e-4, 0.004193334, 0.004999766, 0.037620265, -0.018981012, - 0.0042028558, -0.025888018, -0.0018933018, 0.012443963, 0.024778096, - -0.011125058, 0.01724871, 0.031092133, 0.02884995, -0.024043636, - -0.022360686, 0.027705736, -0.036762953, -0.0021016626, 0.01188281, - -0.038200587, -0.041137837, -0.0043006944, 0.0063329907, -0.012099685, - -4.7686827e-4, -0.009262951, 0.008336423, -0.012781039, -0.0021909385, - 0.022557588, -0.011833781, 7.864304e-4, -0.0036029343, -0.015672525, - -0.008645319, -0.0020281787, -0.0091177095, 0.01765182, -0.01889495, - -0.02193929, 0.013673616, -0.016881518, 0.015483335, 0.022952106, - -0.015059058, 0.023317631, 0.003179375, 0.0024167849, -0.0051210416, - -0.013883086, -0.021081856, 0.010293076, -0.0050771353, -0.0013251844, - 0.007319348, -0.0024270304, -0.005718827, -0.020131387, 0.03611878, - -0.011556718, -0.032613307, 0.002476539, -0.009745917, -0.012932569, - -0.031405844, -0.0033242367, 0.015090317, 0.0011853578, 0.007932946, - -0.022809261, -0.03130102, 0.012312121, -0.002782504, -0.006472789, - 0.005131962, -0.012840201, -0.03086454, 0.0109879505, 0.001328286, - -0.015573936, -8.245104e-4, -0.01584018, 0.01957814, 0.023973595, - 0.0024678975, -0.038369928, -0.022827774, -0.0166079, -0.010074832, - 0.021622315, 0.012530877, 0.018189352, -0.001835703, 0.01685596, - -0.005354944, -0.0037989493, 0.012863335, -0.026825627, 0.012808625, - -0.010544308, -7.997981e-4, -0.0257239, 0.007914954, 0.01429623, - 0.012842755, -0.014570085, -0.0135321105, 0.0080690915, 0.0028609573, - 0.0027991147, -0.0028302048, 0.03158227, 0.017526358, 0.022257691, - 0.018499583, -0.024509853, 0.0043131243, 0.01622964, -0.024594685, - -0.017030474, 0.011454929, -0.018411335, 0.02059262, -0.026511788, - -0.014735554, 0.003569958, -0.019897679, -4.6048316e-4, -0.005072329, - -0.02757185, -0.014365945, -0.0072747576, 0.0076105627, 9.759481e-4, - -0.04236923, -0.033794086, 4.5557364e-4, 0.014126626, 4.9884396e-4, - 0.0013134588, -0.014952101, 0.006250619, -0.0029893122, 0.013279415, - -0.030083932, 0.0065526413, -0.0066863624, 0.009365911, 0.022201935, - -0.010625642, -0.008594055, 0.014698463, -0.004835681, 0.025201824, - 0.0073101902, -0.016561791, 0.005557228, -0.010414181, -0.024047226, - 0.0067654275, 0.018323643, -0.008503598, -0.025065463, -0.01018902, - -0.01434145, -0.008237105, -0.028910438, 0.008227526, 0.0060263583, - -0.0064633926, -0.014371449, 0.0182864, -0.007879993, 0.008966536, - 0.0053119417, -0.0054992815, 0.0035804703, -0.016611941, 0.0015460729, - -0.006925589, -0.020201663, 0.0125664035, 0.008700329, 8.668051e-4, - -0.022536984, -0.020098777, 4.6044638e-4, -0.002014147, -0.013458724, - 0.004384898, 0.026094137, -0.0025491184, 0.010210666, -0.018149486, - -0.004723408, -0.033931322, 0.00577571, -0.009164664, -0.0105598895, - -0.007466236, -0.005971509, -0.012493152, -0.0045405957, -0.0017522955, - -0.014586381, -0.003196368, -0.0054987264, -0.019881431, 0.0016629593, - 0.009104646, 0.022733212, 0.018219521, 0.01025121, 0.0103193065, - 0.008932912, 0.021461584, 0.0105609065, -0.011761034, 0.00891867, - -0.005163194, -0.017550975, -0.018945528, -0.011772485, -0.0021964174, - 0.021356748, -0.0017358719, -0.011350567, -0.0048451354, 0.013675085, - -0.030827234, -0.014097082, -0.007978627, 0.013274664, -0.025849484, - -0.016149448, -0.0059291027, 0.0148722315, -0.004370059, 0.006015731, - -0.008489563, -0.013953045, 0.018978199, 0.0075561814, 0.022945693, - 0.023294976, -0.0038012508, -0.016185733, -0.022467513, 0.022482947, - 0.0070405686, -2.704861e-4, -0.0023863942, -0.008660427, 0.0071540433, - -0.0025587834, 0.030966252, -0.0038027244, 0.013434782, 0.0044874325, - -0.0015394246, -0.016335588, -0.005209569, -0.012677914, 0.018897213, - -0.0043049925, -0.008460673, 0.023065139, 0.00480794, -1.18182405e-4, - 0.022910353, -0.0068063927, -0.004807124, 6.4422045e-4, -0.026238427, - 0.029219279, -0.009419524, 0.008435707, -0.022582902, 0.006143981, - -0.013141174, -0.017211506, 0.0047495943, -0.012258537, 0.0034958068, - -0.0022095114, 0.017788345, -0.006154078, 0.025136394, 0.015782015, - 0.0015577386, -0.012794984, -0.018661173, 0.033579454, -0.002625149, - 0.0122776525, -0.0070515177, -0.029478654, -0.004019997, -0.013335713, - 0.0042672544, 0.010747549, 0.012945351, 0.0028711618, -0.004078014, - -0.0056283437, 0.0074171866, 0.004033132, -0.01569351, -0.038859583, - -0.02356282, -0.015969774, -0.0030242845, 0.020029005, 0.0247908, - -0.032731283, -7.3124265e-4, 0.0010788188, 0.013489683, 0.018272469, - 0.0069658603, 0.014478439, 0.018598126, -0.007351833, -0.0140757, - -0.009004352, 0.0066292034, -0.0073618786, -0.028536562, -0.017440831, - -0.026645228, 0.011560308, -0.004790473, -0.009031528, -0.027355328, - -0.010778826, 0.004963822, -0.00703063, 0.011648052, -0.026555024, - -8.163179e-4, 0.011020272, -0.0023243, -0.011560333, 0.03508253, - -0.0204124, -0.038800832, 0.011347996, -0.010080289, 0.007150734, - 0.010534433, 0.011955218, -0.003547448, -0.005704582, 0.010268654, - 0.02879925, -0.0052730115, 0.005361709, 5.414957e-4, 0.01085209, - -0.027351473, 0.0011530167, -0.0071562985, -0.0235833, 0.010148777, - 0.012545277, 0.012489676, -0.012100664, -0.022740845, -2.5087543e-4, - 0.016455282, -0.009013248, -0.024414036, -0.0034966373, -0.024692778, - -0.009264701, -0.0014672336, -0.0017031481, -6.759201e-4, 0.009163831, - -0.0010017382, -0.0054737795, 0.02487216, -0.0013303991, -0.012193582, - 0.005752914, -0.011213949, -0.005581141, -0.013458506, 0.008997499, - -0.022349034, 0.008171251, -0.02329501, 0.0056024417, 0.013549941, - 0.019012801, -0.032412343, 0.007985431, 2.5082665e-4, 0.0049310266, - 0.0053098514, 0.0019755575, 0.0063600373, 0.0056897746, -0.007980107, - 0.021915006, 0.010914665, -0.013861429, -0.008634924, 0.0043778745, - -0.025734754, -0.0071795015, 0.003922682, 0.013909291, 0.004870539, - -0.012795299, -0.021123637, -0.003090579, -0.0105882725, -0.01605083, - -0.012174378, -3.027715e-4, 0.0021956996, 0.006371883, 0.006178242, - -1.5524517e-4, 0.0048040138, 0.0020277305, -6.608173e-4, 0.0052151694, - 0.03179959, -0.008577026, -0.0068086707, -0.006371321, -1.8220682e-4, - 0.009000173, 0.015793327, -0.008592397, -0.02323641, 0.00783948, - 0.03435232, 0.018039819, 0.021729881, -0.023738919, -0.008495258, - -0.005990348, 0.010822867, -0.020899845, 0.024614038, -0.027201312, - 0.0017883942, -0.018189356, 0.023932358, -0.004853135, 0.008849779, - 0.0071814395, 0.0136812795, -0.012488421, -0.0019637912, -0.021933733, - -0.0109903645, -0.02218104, -0.007130467, -0.02561028, 0.009364785, - -0.025495522, 0.028810276, 0.026931679, 0.004807517, 0.002422258, - -0.009397326, -0.009206336, -0.027569722, -0.017515516, -0.0055676387, - -0.013653507, -0.019965898, -0.022221431, 0.011737227, 0.0129539985, - -0.020422814, -0.002387374, -0.0068659033, -0.017718757, -0.00302092, - -0.0026076618, 0.009815807, -0.0032201926, -0.004950342, 0.0075563844, - 0.018909955, -0.0045833644, -0.035733074, -0.004976199, 0.0036166972, - 0.0046658874, 8.1701216e-4, -0.022403328, 2.3216124e-4, -0.01142965, - 0.031302318, 0.0061604353, -0.0035278616, 0.029958837, -0.0060504097, - -2.5840054e-4, -0.031250644, 4.0572262e-4, 0.0012217957, -0.014321604, - -0.015335622, -0.004150112, 0.006326512, 0.010609385, -0.008178692, - -0.013203083, 0.03672494, 0.00434619, -0.006345491, -0.0018364498, - -0.0062156375, -0.0051568616, 0.03234579, -0.003875801, -0.011132907, - 0.0065324786, 0.009520393, 0.011534307, 0.017434064, 0.01112738, - -0.01930527, -0.0030480893, -0.018319165, 0.0025785444, -0.0023388134, - -0.0131340455, -0.012001149, 0.00715117, -0.0014850721, 0.009026106, - 5.2969943e-4, 0.01616904, 0.0028166892, 0.002993251, 0.0045482893, - 0.003526932, -0.0017615701, -0.025487162, -0.022700967, 0.011108559, - 0.0045026504, 0.022564147, 0.0033408883, -0.0069774073, -0.0013665309, - 0.005250797, -0.0039913044, 0.018080406, 0.010775973, -6.8159716e-4, - 0.0032638975, -0.028264053, 0.0025934249, 0.00406333, 0.0076346714, - 0.009820353, -0.007774227, -0.010714648, -0.0016622095, -0.019703884, - 0.02376098, -0.0028041499, 0.0070011085, -0.01866009, -0.040724315, - -0.016592076, 0.006050545, -0.007899475, -0.02824436, -0.008503265, - -0.00954782, -0.01789804, -0.013929775, -0.0018070672, -0.02959365, - -0.029061371, -0.008954484, 0.0040944293, -4.057142e-5, 0.007733651, - 0.013696622, -0.013843757, 0.009776487, -0.016678307, 0.03451769, - -0.0034783713, 0.020208295, 0.0056888973, -0.004730904, 0.031201346, - -0.004716081, -0.009589397, -2.5219133e-4, 0.0018693275, 0.023447048, - -0.022386432, 2.7885602e-4, 0.005455403, -0.005664047, 0.014069403, - -0.0014752902, 0.0023203942, -0.011490916, -0.008115857, 0.01619025, - 0.017885972, 0.014549253, -0.005515031, -0.014924671, 0.0026671013, - 0.004402755, -0.02346361, 0.024077546, -0.0010223663, 0.035692234, - -0.0010378629, -0.01967001, -0.020797528, -0.001693171, -0.054135807, - -0.016076433, -0.009754555, -0.027553098, -0.012021182, 0.0072481306, - -0.01341154, -0.026532738, -0.0025621876, 0.015079611, -0.0058747143, - 0.011946365, -0.0050758147, 0.007337562, -0.0036469055, 0.006063554, - -0.008460489, 0.010112656, 0.00485137, -0.013897009, 0.012053907, - 0.003854679, -0.022372385, -0.0013108647, 0.0021770177, -0.0045482023, - 0.019327503, 0.0044236, 0.012907951, -0.011705634, 0.015967792, - 0.0041937632, -0.0050558127, -0.012975162, 0.0015411022, -0.036585815, - 0.014552055, -0.03122607, 0.0065810266, -0.010397796, -0.029292995, - -0.02286576, -0.0046483865, -0.0066136895, 0.011409168, 0.0032250136, - 0.014634589, -0.01371303, 0.033311244, 0.022694299, 0.0021255016, - -0.0075771296, 0.004240222, 0.0039474834, 0.01492953, -0.014842487, - 0.017198635, 0.0012840986, -0.0027570785, -0.015516622, -0.010846408, - -0.019237079, 0.010557909, -0.036789484, 0.013981572, 0.00421643, - 0.015126461, -0.01622319, 0.008852034, -0.006669196, 0.009251116, - -0.0039831717, 0.01818795, 0.031909138, 0.01044279, -0.030191366, - -0.012200515, 0.006552594, -0.015252377, -0.032704435, -0.00908609, - -0.007986008, -0.020759223, -0.00399264, 0.010808499, 0.019264545, - 0.0156356, -0.0066398773, -0.002488316, 9.226555e-4, -6.001949e-4, - -0.017581834, 0.027594667, 7.8084774e-4, -0.018026883, 0.014631551, - -0.010058321, 0.03344217, 0.003816207, 0.01933845, 0.0124469185, - -0.0062660766, 0.0056998306, 0.027295835, 0.010615139, -0.021266114, - -0.024690997, 0.025655791, 4.700098e-6, 0.015432087, -0.03180088, - -0.01258264, 0.024150161, -0.04157395, -0.011099412, -4.981246e-4, - -0.023669612, 0.015012715, 0.01331213, 0.014380893, 0.02498548, - -0.009369212, 0.013041685, -0.0057510757, -0.009069666, 0.0043078996, - 0.039776407, 0.029132258, -0.034822717, -0.010552057, -0.025857447, - 0.013960282, -0.010020294, -0.0033663216, 0.0012725549, 0.0053748605, - 0.0010697453, 0.0018038624, 0.005601193, -0.0055716643, -0.0042725787, - 0.003711008, -0.0084784, -0.015744016, -0.017453318, 0.0032196853, - -0.0078440495, -0.0029978221, 0.0065075383, -0.022279063, 0.016370675, - 0.006850135, 0.02342844, -0.024371745, 0.0018702438, 0.029802537, - 0.014964432, 0.01743439, 0.024611557, 0.020519705, 0.027375428, - -0.0060520293, 0.026737748, 0.0067512044, 0.008279226, -0.021056425, - -0.026749538, -0.044779535, -0.022109095, 0.02488083, 8.0243393e-4, - -0.0186722, -0.010815077, 0.010684999, -0.029858802, -0.017194828, - 0.016719714, -0.036852214, -0.012052899, 0.014646885, 0.02041722, - 0.0046574147, 0.039892454, 5.310379e-4, -0.032306027, -0.010265021, - -0.008671822, -0.0029697476, -0.026315784, 0.021145033, -0.0027758277, - 0.024508035, -0.015354941, -0.001204891, -0.03498181, 0.017478421, - 0.00701224, -0.017671399, -0.017722785, -5.1388645e-4, -0.00781334, - -0.0044177515, -0.0023208708, -0.0075983517, -0.01444924, 0.008288615, - -0.014004909, -0.0050864, 0.0023876794, -0.0049610506, -8.2780875e-4, - -0.00438235, 0.00411761, -0.0120021235, -0.007037657, -0.0048719705, - -0.00509096, -0.010588723, -6.071198e-4, -0.0010782523, 0.027061775, - 0.0042146817, 0.004873538, -0.01416615, -0.01819534, 0.019509723, - -0.033709966, -0.008055181, -0.0023705084, -0.005122784, -0.020055007, - -0.0153406635, -0.0037329746, -0.005852549, -0.002409872, 0.007567725, - 0.0011824914, -0.0017148248, 0.014155535, -0.0042061303, 0.038313687, - -0.030953987, -0.006831516, -0.0038228936, 0.040283967, 0.00545136, - 0.007404225, -0.01226125, -0.023627928, -0.01402687, 0.006245551, - -0.0039971215, -0.035541844, 0.008960523, 0.012745601, 0.01592073, - -0.013786659, 0.005977224, 0.019325484, -0.0027175709, 0.006619595, - 0.012509992, 0.0043025897, -0.01108652, -0.041674994, -0.008927605, - 0.025398126, 0.017000867, 0.014320657, -0.002853966, 0.009786282, - 0.012437484, 0.008596472, 0.0029329883, 0.009403555, 0.014434708, - -0.004475592, -0.017331356, -0.001619528, -0.007835892, -0.0031177835, - 0.016949022, 0.012290184, -0.031375073, -0.009006336, -0.017477982, - 0.009035223, 0.013983543, 0.0033435859, 0.003174771, 0.026869033, - -0.0012833748, -0.005203077, -0.016297678, -0.013048965, -0.029128704, - -0.028406315, 0.0032590074, 4.7768472e-4, 0.0058422294, -0.021618448, - 0.010655612, 0.0026465496, -0.011880321, 0.023397617, 0.0197972, - -0.014636704, 0.024589876, 0.00972069, 0.009161258, -0.0015519332, - -0.008724129, -0.01466458, -0.0063835857, 0.01864066, 0.0025521193, - 0.023611644, 0.012861718, -0.013540061, -0.028475769, -0.0030601334, - 0.023848927, -0.017753258, 0.015115248, 0.009867425, 0.0065760543, - 0.021549761, 0.0064168856, -0.016621988, -0.004411758, -0.0048240633, - -0.012649602, 0.011372544, 0.0041568177, 0.0013150856, 0.003136989, - -0.008683906, -4.4548596e-4, 0.014528119, 0.0016473288, 0.008067687, - 0.021802226, -0.009094696, 0.033365928, -0.007247224, 0.013270915, - 0.017932307, 6.373514e-4, -4.8608446e-4, 0.011000604, 0.0023481245, - -0.0035902779, 0.012708743, -0.007881048, 0.008001706, -0.014789797, - 0.010353503, -0.006638647, 0.025337927, 0.029730748, 0.015487281, - -0.0051075355, -0.0070811473, 0.0063693817, 0.0021841764, 0.0030050466, - -0.010150885, -0.01812519, -0.007253529, -0.019356804, -8.781896e-4, - -0.01082127, -0.019152917, -0.037931662, 0.007366559, -2.7708884e-4, - 0.002281309, 0.017258247, -0.007859554, 0.0045665093, -0.025380516, - 0.008100049, -0.009079132, 0.0127894115, -0.005238894, 0.011722407, - -0.003962011, 0.0035207719, -0.0046490016, -0.012945033, 0.0036839596, - 0.01484962, 0.0050691697, 0.0033247836, 0.0068057016, -0.019462211, - -0.0036209854, -0.0041802726, 0.00625105, 0.009353728, -0.0055331243, - -0.014417443, -0.0011640503, 0.02414728, 0.019872569, 0.016207587, - -0.027428294, 0.013738039, -0.0018095413, 0.008855613, -0.009567732, - 0.008949531, 0.001189558, 0.022710796, -0.008629283, -0.024593528, - 0.012032225, -0.0074322075, 9.4105466e-4, -0.01569834, 0.002842606, - 0.02763186, 0.016891155, -0.01460472, 0.0032959357, -0.0016928706, - 3.6603658e-4, -0.009516262, 0.021320134, -0.0034439578, 4.883238e-4, - 0.017371913, 0.018749224, -0.0019721761, 0.013640591, 0.027178535, - 4.2996634e-4, -0.004460876, -0.0079392325, 0.014178406, -0.0034010713, - -0.0052067344, 0.0020161732, 0.014326544, -3.4408132e-4, -0.0074624605, - -0.015415485, 0.028654892, 0.016390154, -7.443859e-6, -0.018199692, - 0.010695577, -0.010894436, 0.01355394, 0.022830816, -0.0056540193, - -0.0031783506, 4.8143053e-4, -0.017407743, 0.009851792, -0.023706175, - 0.009636799, -0.0014080693, 0.02592508, 0.0017551128, -0.034463417, - 0.004119602, -0.005151226, -0.012364776, 0.01325115, 0.0087389825, - -0.012057005, 0.009122679, 0.02218471, -0.0032857852, -0.0010731632, - 0.004936416, 0.009917435, -0.0067108255, 0.0080507975, 0.012134211, - -0.016248995, -0.0076488135, -0.018338634, 0.027927564, 0.027465759, - 0.014425777, -0.01629868, 0.017597329, -0.0064879484, -0.0064382665, - 0.013339586, 0.018153852, -0.0017444646, -0.0094226645, 0.007075146, - -0.021002863, 0.0011987301, 0.016222607, -0.0015582461, 0.01701937, - 0.01816664, 0.0045932555, -0.0037255033, 0.022791779, -0.025248716, - 0.0031127443, 0.016807597, 0.007829123, -6.912774e-4, 8.639282e-4, - 0.018448018, 0.024517402, 0.01162942, 0.0040901364, 0.0057436866, - -0.017519454, 0.0130758155, -0.01120708, 0.008583024, -0.006577419, - -0.0016333659, -0.008359674, 0.0073875417, 0.023242805, -0.00546861, - -0.012642155, 4.743879e-4, 0.0077118725, -0.020116314, 0.008837199, - 0.012286073, -0.0033429707, 0.009255126, 0.010269908, -1.6622763e-4, - 0.016372988, 0.002456239, 0.011572674, -0.008153963, 0.044190463, - -0.012111743, 0.011149784, -0.019538851, -0.008234282, 0.016236974, - -0.032813046, 0.013571428, -0.0035765448, 0.011561095, 0.00816105, - 0.008129587, -0.008158446, 0.007939104, 0.0026502497, -0.012759587, - 0.012630525, 0.008085711, 0.008296479, -0.0046200226, -0.01799748, - -0.005433143, -0.019383097, 0.0010936982, 0.001349422, -0.01151397, - 0.022297507, -0.009623068, -0.014366388, 0.012941343, 0.005356098, - 1.8517081e-4, -0.003015817, 0.014623827, 0.011921618, 0.0024161036, - -0.008365698, -0.026478266, 0.0031195371, -0.021813622, 0.006983198, - -0.005435833, 0.01587869, 0.010816873, 0.023241544, -0.0010892772, - 0.004494796, -0.007916637, -0.011718519, -0.009944225, -0.0013496465, - -0.0086641945, 0.01919122, 0.026557788, 0.016450156, 0.001760582, - 0.01942763, -0.0073893033, 0.023069464, 0.021082088, 0.0014893913, - -0.010050102, 0.002180939, -0.004279374, -0.013242233, -0.018822554, - -0.013509505, 0.031126114, 0.020977814, 0.019998318, 0.0071313134, - 0.010970297, -0.004904929, 0.00633775, 0.0079662055, -8.496534e-4, - -0.0015258376, 0.01563366, -0.010802124, -0.018706016, 0.018105406, - -0.011100444, -0.01519926, -0.015020538, -0.0076697962, -0.014883864, - 0.0018087861, -0.008055152, 0.028392408, 0.0057460666, 0.01693578, - -0.008564481, 0.0035796505, -0.0022802043, 0.031222295, -0.0034393114, - 0.0091777975, 0.0076820594, 0.011105239, -0.015122479, 0.0011403749, - -0.021731662, -0.017476821, 0.018654156, -0.011370617, 0.012495781, - -0.00507779, -0.021531908, -4.1877196e-4, 9.5890043e-4, -0.008861908, - -0.030040886, -0.0068292664, 0.01033564, 0.012532662, 0.012840758, - 0.010194675, -0.011747876, 0.0028189954, 4.1835365e-4, -0.002751579, - 0.015347389, -0.007908035, -0.026564328, 0.023782024, 0.0018614486, - -0.008137591, -0.014036685, -0.0059094937, 0.0012296258, 0.02704989, - 0.0017385817, -0.014975745, 0.0044590086, -0.0017954721, 0.02872089, - -0.02197568, 0.0011034353, 0.015371618, -0.0051624016, 0.0049492894, - 0.0102251265, -0.0056062564, 0.012934479, -8.7458384e-4, 0.016107492, - 0.01181919, -0.022161521, -0.016686667, -0.012040997, -2.3074809e-4, - 0.009372304, -0.015583786, -0.008450173, -0.025385218, 0.01726535, - -0.007278917, 0.005216065, 0.0062044747, -0.0040074717, 0.009479605, - -0.01461932, 0.016779207, -0.024672583, -0.017373513, 0.009485912, - -0.020375058, 0.008676292, -0.021647947, -0.008422473, -0.03149646, - 0.030437801, 0.0014792028, 0.020603925, -0.012868151, -0.0042403443, - 0.011419662, -0.0051842704, 0.021865584, 0.018025571, -0.004318853, - -0.03274815, -0.02137095, 0.0031533258, -0.019239604, 0.050900243, - -0.013615307, 0.014380215, -0.011213512, 0.01114043, -0.033749964, - 0.020885374, 0.026103625, -0.010711669, 0.0017612957, -0.024923615, - -0.022497945, 0.021087132, 0.007982134, 0.003179229, 0.01031437, - -0.026700523, -0.012482748, 0.014022154, 0.01010546, 0.023491234, - 0.0076459637, 0.015373005, -0.017686397, -0.0033096084, 0.01799261, - 0.0027827143, -0.006380983, 0.01641653, 0.011709888, -0.0029100946, - 0.009702826, 0.021387847, 0.016051881, -0.024127815, -0.0017094963, - 0.0033169114, 0.002399127, -0.008564308, 0.010655296, -0.02703869, - -0.0131823635, -0.032578748, 0.0071453503, 0.008113151, 0.0032415427, - 0.006565041, 0.013388994, 0.013390627, -0.013474071, -0.01840558, - -0.0071964194, -0.018207317, -0.034397863, 0.008910029, 0.021766266, - -0.014121535, -0.012178492, 0.018187093, 0.015697302, -8.16908e-4, - 0.00948474, 0.022456905, -0.0012567419, -0.028033927, 6.1706916e-5, - 0.012348621, -0.023752745, -0.012139722, -0.016819347, -0.019928403, - 0.0035280837, -0.011185514, 0.0107033, -0.00523447, 0.013450376, - 8.536162e-5, -0.0040407893, -0.0047021145, 0.013535658, -2.2062243e-4, - 0.006871811, -0.01671497, 0.009194587, 0.0067838314, -0.0059732734, - -0.030718014, 0.021745544, 0.018879056, -0.006529204, 0.004464472, - 0.027470289, 0.031711765, -0.020111825, -0.01454932, 0.027278282, - 0.016068516, 0.015880652, -0.0027640017, 0.013487298, 0.006768812, - 0.002242027, -0.015007426, 0.016799368, 0.008666093, -0.012644905, - -0.0200451, 0.026064659, 0.0063773827, -6.913816e-4, 0.046474177, - -0.010196534, -0.020459453, 0.0059064045, -0.016305925, -0.02126903, - -0.0047780857, -0.015491451, 0.013773622, 0.002463286, -5.5452704e-4, - 2.631356e-4, -0.009860814, 0.009130486, 0.044198826, 0.013785638, - 0.0016671476, -0.020215703, -0.008846515, -0.007966948, 0.01975144, - -0.011721165, -0.0071014063, -0.007837152, 0.010973666, -0.0032491123, - 0.013074997, 0.009153344, -0.023188036, -0.0040040878, -0.0026609106, - 0.0019196722, 0.003529421, -0.012368147, 0.003845698, 0.011490873, - 0.020869631, -0.0027202943, -0.006850432, 0.010015926, 9.422155e-4, - 0.008501565, -0.005896379, -0.014276993, -0.0043019103, -0.005833229, - -4.60612e-4, 0.021340534, -0.01611244, 0.024739815, 0.009468819, - 0.009552991, -0.0013353976, 0.011547158, 0.020028612, 0.00179357, - -0.027728654, -0.028864771, -0.014217182, -1.6948667e-4, 0.015997231, - 0.0039216583, -0.02264948, 0.009900108, -0.0125279855, 0.0034402162, - -0.0012678177, 0.02017906, 0.0017987267, 0.00911883, -0.02183346, - -0.015765838, -0.021422941, -0.005309696, -0.0021949, 8.767547e-4, - -0.020269072, -0.008495193, -0.003967133, -0.0043813856, 0.014762598, - -0.001785228, 0.016663479, 0.0030974138, -0.0012255997, -0.0074567315, - 0.0099415975, -0.0054137134, 0.009079832, 8.0724957e-4, 0.014289929, - 0.0010098045, 0.02651609, 0.018474407, 0.029124076, 0.009286303, - -0.020284683, 3.277244e-4, -0.008068473, -0.005058851, -0.004936704, - -0.015924996, -0.009702466, -0.028993098, -0.022288548, 0.009208216, - 0.03217062, -0.0183924, -0.015953196, 9.454664e-4, -0.008629192, - -0.011838606, -0.0027535276, 0.022833023, 0.005248815, 0.030392129, - -0.035237446, 0.0389556, -0.043817297, 0.023623532, -0.0016394446, - -0.0018288593, 0.008878965, 0.00679972, 0.01759319, -0.021792222, - -0.021254074, 0.012755011, 0.0010835648, 0.02987339, -0.012177007, - -0.008524019, -0.0058030114, 0.013031441, 0.0021585969, 0.020159015, - -0.0049824924, 0.008026321, 0.027681764, -0.0062840357, 0.0012401105, - 0.010779651, -0.0068087787, -0.0077686594, 0.01021662, -0.014352764, - 0.024504088, 0.0044591175, -0.013249588, -0.023432987, 0.0025566912, - -0.030683126, 0.025048789, -0.024851829, -0.006764268, 3.695149e-4, - 0.0040588933, 0.01141354, 0.011848033, 0.0065847808, 0.008922831, - -0.01133081, -0.0049505415, 0.010779449, -0.0016866548, 0.031251565, - 0.015594548, -4.3743217e-4, -0.03375616, -0.023910778, -0.012505876, - -0.01719967, -0.017963396, 0.017745603, -0.011248446, 0.023295175, - 0.015434205, -0.001977197, -0.0076566115, -0.0074741286, -0.02501579, - 0.025936157, 0.0169944, 0.017400568, 0.0015510018, 0.0026794681, - 0.0016323728, 0.0012332099, -0.016090851, 0.0038142852, 0.020847391, - 0.009829542, -0.019086866, 4.91925e-4, 0.024055235, -0.006990815, - -0.0024507414, 0.016548434, 0.017830444, -0.0074241003, 0.0015737064, - -0.013185036, 0.016086033, 0.015942581, -0.020541416, 0.02153408, - -0.0034790146, -0.012670364, 0.004213215, 0.017997045, -0.0147178685, - 0.027851395, 0.0014987474, 0.0056210062, -0.01617028, 0.022059772, - 0.00844419, -0.040164556, -0.0016692496, -0.013450561, 0.02317333, - 0.011799143, 0.03835681, 0.016120039, -3.1995244e-4, -0.017721467, - 0.035405815, -0.0031295212, -0.027844643 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.07106606, 0.026208896, -0.085076265, 0.015577739, 0.006416272, - -0.08254386, 0.009787587, -0.0044799056, -0.0014582439, -0.022132056, - 0.04400612, -0.018853003, 0.022590764, 0.019382613, 0.022008935, - 0.0046803355, -0.020239187, -0.05652617, 0.061495963, -0.014228185, - 0.021585232, 0.01879489, 0.025932077, 0.016443962, -0.033198368, - 0.0341872, -0.02498257, 0.018580234, -0.014606368, 0.0136066275, - 0.015270837, -0.045388296, 0.0027973964, 0.0355591, -0.022928717, - 0.020440096, 0.027069544, 0.0115681905, -0.06076805, 0.0067143613, - -0.018882956, -0.03127355, -0.032598983, -0.008022488, -0.028065596, - 0.022268398, 0.033940133, 0.0063641635, 0.01478974, 0.013687855, - -0.018904535, -0.037922744, 0.035852008, -0.007953807, 0.048595678, - -0.016630465, 0.022365287, -0.015159983, 0.026171891, 0.0032640435, - 0.0038793744, -0.016022017, 0.04601837, 0.02337601, -0.03211237, - -0.011382399, -0.05898991, -0.0072687655, 0.0029852202, 0.0077625653, - -1.5103776e-4, -0.0069470834, -0.033223588, 0.04018167, 0.0014660514, - -0.07718303, -0.041714452, -0.016974006, 0.043147784, 0.010628934, - 8.2652346e-4, -0.030279387, 0.010756334, 0.00496525, 0.01056057, - -0.061742112, -0.0441606, -0.008754809, 0.060024813, -0.0073092985, - 0.033960953, -0.03452879, 0.03906588, 0.028495183, -0.0020528277, - 0.008794374, -0.0046602637, 0.007291174, 0.063432455, -0.022318712, - 0.027751053, 0.028015612, -0.011192509, 0.03697406, 0.012178786, - 0.0065212143, 0.009706654, -0.060027216, 0.043391123, -0.05639845, - 0.009567835, -0.02835526, -0.0123147825, 0.053170487, 0.015523249, - 0.016161216, -0.030812591, -0.017654046, 0.005256902, -0.03345849, - 0.00119837, 0.0071315505, -0.012606968, 0.049706515, 0.0025261603, - 0.034314707, -6.142881e-4, -0.022465998, 0.03172896, -0.027852198, - -0.028052999, 0.019829286, -7.630414e-4, 0.016847776, 0.027203292, - 0.0076316763, -0.049016323, -0.04609967, -0.04356774, 0.03467668, - -0.0077233138, -0.0035253821, -0.030513125, 0.06411864, 0.038845494, - -0.02723912, -0.034640465, -0.037702847, -0.013402007, -0.010176904, - 0.026854081, 0.028531719, 0.0051346645, 0.008072893, 0.043092914, - 0.036143564, -0.036421902, -0.02868348, 0.021994177, -0.0075214026, - -9.930113e-4, 0.043388393, 0.031572983, 0.036063656, 0.04035411, - 0.028877012, -0.0026712483, -0.044869736, 0.036118906, 0.045162857, - -0.0073106443, 0.0031849737, -0.02075373, -0.015112274, -0.0045772884, - -0.035011474, -0.016683703, 0.0030704583, -0.002916814, -0.006671964, - -0.056470674, 0.052335177, 0.0066197165, 0.040471014, 0.03532928, - 0.019907499, 0.009645347, 0.0016511739, -0.017757455, -0.058763303, - 0.066275686, -0.0021312148, -0.017875658, 0.022958597, 0.013244712, - -0.010416897, -0.0056945966, 0.005860273, -0.047186866, -0.06132168, - -0.016728722, 0.013707699, 0.027099695, -0.017439894, 0.01691346, - -0.08502351, -0.014840415, 0.015017027, -0.023766324, 0.0050348896, - 0.023789536, -0.033466306, 0.09294966, -0.03834914, 0.03060392, - 0.009865996, -0.0013899895, 0.021851284, -0.021293033, 0.06791217, - -0.0022336293, -6.387968e-4, -0.023777498, -0.040249135, -0.019148115, - -0.056981266, -0.017787084, -0.03527761, 0.026380982, 0.030742664, - 0.05121247, -0.020338401, 0.02799823, 0.0030551623, 0.03020281, - -0.016600013, -0.011340541, -0.03533938, 0.0045052394, -0.038041234, - 0.015826995, 0.026788035, -0.105823554, -0.013993209, 0.05107282, - 0.013291822, -0.019139703, 0.010798046, -0.038292814, -0.02436017, - -0.020372687, -0.03897217, -0.004822479, 0.0030982576, 0.0039886287, - 6.056553e-4, 0.0062509356, -0.044118453, 0.047318686, 0.05673609, - -0.043514006, 0.017928574, -0.0104894, 0.036191255, -0.058815863, - 0.04547613, -0.049589667, -0.0098927, -0.044561196, 0.034989573, - 0.023219638, 0.005090095, 0.01629173, 0.050155714, 0.010267708, - 0.03724011, 0.029679874, -0.042602267, 0.017174277, -0.021565089, - 0.022785744, -0.04950691, 0.026324036, -0.06568272, 0.07276532, - 0.011210589, 0.014488324, 0.03029849, 0.0404581, -0.06478459, - -0.0027823432, -0.020425107, 0.019204266, 0.03353626, 0.048891515, - 0.00116042, -0.029287737, 0.009289456, 0.006068485, 0.019337477, - 0.015622845, -0.04304549, 0.043199483, -0.008797701, -0.033186056, - 0.015009394, -0.022374943, 0.0010443758, -0.01749972, 0.022530405, - 0.0042819674, -0.008977421, -0.01645023, -0.022865342, -0.04672932, - -0.028043102, 0.03816733, -0.04144691, 0.027537623, 0.017503144, - 0.05598834, 0.027777964, -0.02534893, -0.011995106, -0.008646286, - -0.054705925, -0.01038953, 0.00712205, -0.053874366, 0.021397226, - 0.020634396, 0.0058078165, -0.02465491, -0.015263066, -0.016191993, - -0.012901341, -0.050612856, -0.065087035, -0.007398444, 0.056936633, - -0.0015610934, -0.03071929, -0.020845015, 0.09068277, -0.024587983, - -0.013930738, -0.0013698242, 0.047932044, -0.019518105, 0.019774143, - 0.019243453, 0.0170306, -0.01832761, 0.0794443, 0.02047514, - -0.027068522, -0.033590574, 0.01941629, -0.018194424, -0.031569917, - 0.019911295, -0.025531676, 0.0053507863, 0.020859001, -0.0065771127, - -4.320011e-4, 0.01168942, 0.006582803, -0.008346056, -0.016012168, - -0.046733312, 0.058754835, 0.0027381352, 0.031190338, 0.046517946, - 0.04200215, -0.030202145, -0.038824346, -0.056228045, 0.0060840016, - -0.022781868, -0.03142632, -0.0054211533, -0.0065718354, 0.0042314236, - 0.0042067086, -0.026316693, -0.021378063, 0.030451072, 0.06415268, - -0.009964284, 0.053978734, 0.0073939273, -0.03959819, -0.034407288, - -0.057804402, 0.026697028, 4.4071962e-4, -0.0017578029, -0.06401585, - 0.008116553, -0.05300643, -0.055803776, -0.0037827701, -0.02636259, - -0.0071692606, 0.0118806865, 0.02753361, 0.013817953, 0.07726765, - -0.035003766, -0.064450294, -0.029925685, 0.043477226, -0.027077774, - -0.006855312, 0.053789586, -0.015387184, -0.008857391, -0.03965621, - 0.03640956, 0.052759916, 0.003499018, 0.022445446, -0.008148406, - -0.021813847, -0.017301368, 0.03385344, -0.02850474, -0.06513207, - 0.013415694, -0.031331614, -0.061776165, -0.055569116, -0.033459507, - -0.06592909, -0.001741948, 0.0022769324, -0.0070910375, -0.08713471, - 0.014277962, 0.0063773314, 0.03536326, -0.017918946, -0.0063000126, - 0.008447698, 0.0028863733, 0.02258908, 0.03550097, 0.015740244, - 0.04953695, 0.012775297, -0.021324659, 0.009635761, 0.001663438, - -0.010552188, 0.00942405, -0.0022831901, 0.021537486, -0.03630477, - -0.01495676, 0.045846507, -0.0055972557, -9.821608e-4, -0.014867769, - 0.025506614, -0.071633995, -0.014351314, 0.031229394, 0.022351967, - 0.0015138364, -0.021221409, -0.027416093, -0.008129473, -0.03222997, - 0.010087114, 0.005222381, -0.011066412, 0.011988519, -0.012612009, - 0.023752948, 0.008305355, -9.148157e-4, -7.606878e-4, -0.017673008, - 0.039964203, 0.046193954, 0.0045187194, 0.04679024, 0.020718396, - -0.039812952, -0.018644879, -0.05153613, -0.028225735, -0.036939994, - 0.011884758, 0.052461065, 0.033224527, 0.019490981, -0.0041302857, - 0.051756807, -0.004370807, -0.02963764, -0.022041297, -0.027749935, - -0.006853782, 0.046442542, 0.021756342, -0.0446488, 0.031475276, - 0.010310867, -0.00723588, 0.03450458, -0.04874062, -0.010879655, - -0.036252495, 0.019162482, -0.043558255, -0.049066592, -0.04204448, - -0.04818373, 0.074417815, 0.016426662, 0.06870588, -0.019822493, - -0.06703709, -0.00808542, 0.024697827, 0.022054117, 0.026313258, - -0.033523116, 0.036637824, -0.021897195, -0.0050470056, -0.018339602, - -0.009431152, -0.013922556, 0.027524939, 0.022260714, -0.025872054, - -0.028557243, -0.05975176, -0.015159695, -0.0036483067, 0.034961917, - 0.027893756, -0.04220415, 0.008698248, -0.014645467, 0.051733013, - -0.0036261075, -0.016994262, -0.0063430555, -0.004246972, -0.0057561523, - -0.022166874, -0.025970206, 0.0113767795, 0.015197758, 0.034294255, - 0.069476485, -0.0074174064, -6.279297e-4, -0.008396231, 0.02709257, - -0.003124452, 0.0073882467, -0.036561344, -0.030935517, 0.04644517, - -0.0060206936, -0.014392754, -0.029414091, 0.021294873, 0.035386678, - 0.016885614, -0.01959571, -0.0042947074, -0.022423796, 0.032662112, - -0.012616181, 0.013653996, 0.05394535, -0.016156586, 0.030391563, - -0.023371287, -0.023774583, 0.0697839, -0.018430538, -0.08789267, - -0.019535873, -0.064307414, 0.02412406, -0.0024913778, -0.044731103, - 0.006370481, -7.1955705e-4, 0.0032476457, 0.00155879, 0.040257864, - -0.010841802, -0.04432622, 0.028975556, 0.05589877, 0.0068845903, - 0.04260402, 0.056607552, 0.031606846, 0.028353758, -0.016164407, - -0.016121544, -0.007502792, 0.03353696, 0.041217383, 0.04860511, - 0.024951883, -0.04313299, 0.015809663, 0.018448217, -0.016069524, - -0.010108459, -0.047128744, 0.021915236, -0.006518628, 0.08310493, - 2.4732295e-4, -0.08372687, -0.055828255, 5.4452623e-5, -0.015061031, - 0.006536416, 0.03176286, -0.022142632, -0.018648034, -8.594424e-4, - -0.004008033, -0.041408833, -0.010879028, 0.01140055, 0.012109205, - 0.07452922, -0.04379365, 0.020749837, 0.009372533, 0.01754331, - -0.05085575, -0.041663524, -0.029959768, 0.030910783, 0.007258735, - 0.02187572, -0.003844746, -0.0067761303, 0.027509356, 0.02042079, - -0.021502825, 0.03040049, -0.006744814, 0.043029394, -0.02404569, - 0.024124146, -0.0129922675, 7.400383e-4, 0.011850525, 0.019810177, - -0.024203641, 0.0028771365, 0.0030976976, -0.018122956, -0.011896757, - -0.043755937, -0.019682204, -1.6860843e-4, -0.01271175, -0.020778077, - -0.03370326, -0.008668224, 0.048271075, -0.034172192, 0.025344431, - 1.0135574e-4, -0.0740308, -0.026711127, -0.010110373, -0.02184448, - 0.007286851, -0.0573655, 0.039158802, 0.01342122, 0.0058208695, - -0.028139139, 0.01598213, 0.016023317, 0.008771477, -0.028852882, - -0.029198954, -0.015811501, -0.017172532, 0.007273602, 0.04300502, - 0.060551405, -0.020382987, 0.00596677, -0.045538563, 0.035808798, - -0.0072289705, 0.031162841, 0.031379394, 0.029759523, 0.039998922, - -0.011761753, 0.04366502, 0.0037143151, -0.022763683, 0.024957279, - 0.045773037, -0.023956416, 0.012659266, -0.012479413, 0.0022272056, - -0.008663507, -0.0192863, 0.011266663, 0.01527097, -0.0016722332, - -0.022164563, 0.017390689, -0.044208933, 0.0194567, 0.0069335075, - 0.026631538, 0.07782328, -0.072189346, -0.018846162, 0.0068394123, - 0.0061009494, 0.035138644, 0.016138516, 0.021101737, 0.013544582, - -0.03023888, 0.004834637, -0.005025689, 0.015314564, -0.022331836, - 0.039380237, 0.04605471, -0.024934243, 0.05062231, -0.008447192, - 0.0233616, -0.067529716, -0.052227337, 0.00927747, -0.015910512, - 0.006136916, 0.009208934, 0.006741487, -0.0013192474, -0.05881593, - 0.031726684, -0.010782413, -0.01891554, -0.029017916, 0.0371594, - -0.017371338, 0.036517087, -0.025303515, -0.05113686, 0.013665445, - 9.973284e-4, -0.05781283, 0.008105893, 0.009397674, -0.02284105, - 0.050869863, 0.043722782, 0.036899928, -0.05434582, 0.017019391, - -0.026062433, -0.024268454, 0.009185385, -0.006014207, -6.469843e-4, - 0.013197994, -0.0035138936, 1.8622851e-4, -0.013922844, -0.031958703, - -0.009843293, 0.029969836, -0.06500527, 0.017079752, 0.0015434445, - 0.032219622, -0.032154996, 0.057728518, 0.007513141, 0.017998612, - 0.05244529, -0.024511425, -1.7626211e-4, 0.0013897575, -0.0032181025, - 0.05480198, -0.027738057, -0.02031503, -0.048542358, -0.031713463, - 0.005303792, -0.005233617, -0.02365982, 0.017435601, 9.755084e-6, - 0.022210365, -0.009871033, 0.022999767, -0.041170016, 0.026739895, - 0.018378755, -0.02249853, -0.0190083, -0.021439465, -0.020900097, - -0.011369224, -0.026011016, 0.031014662, -0.022653183, -0.021358447, - 0.019279866, 0.006622629, 0.008960166, 0.01918275, 0.011887699, - -0.020116456, 0.013414273, -0.019987741, 0.029436534, 0.008639192, - 0.021364553, 0.038087137, -0.04277486, 0.01045126, 0.01279798, - 0.030769475, 0.049022004, -0.02245056, 0.035222758, -0.041126072, - -0.044282645, 0.002669971, -0.0033194502, 0.0174171, -0.038266573, - 0.022876205, 0.0419209, 0.01915343, 0.05862679, -0.032821283, - -0.044584442, 7.046282e-4, 0.021789683, 0.031883314, 0.044785067, - 0.023928285, 0.040019315, 0.023198472, 0.0012524042, -0.006394584, - 0.03315439, 0.044582486, -0.023450155, 0.0043424573, -0.020709597, - -0.026115254, 0.007855993, 0.0048702457, 0.018760737, 0.019150926, - -0.023270756, 6.662376e-4, 0.042840768, 0.024296474, -0.07203075, - 0.004146796, 0.055609208, -5.0977447e-5, -0.022355288, -0.0025608158, - 0.0024921284, 9.2037424e-4, 0.021785878, 0.02466648, -0.0040219054, - 0.03902122, 0.018912375, -0.030883556, 0.08605231, 0.017800635, - 0.036698014, 0.043413397, 0.0011830241, -0.02104342, -0.068646766, - -0.04752443, -8.3623675e-4, 0.012445395, -0.013045748, 0.019061789, - -0.018580213, -0.03547976, -0.035540096, 0.045370746, 0.016186118, - -0.034665186, -0.008156119, 0.030834705, -0.042538166, 0.036555264, - -0.01040496, 0.0017535078, 2.390446e-4, -0.012045385, 0.015308628, - -0.028940817, 0.02975692, -0.01677507, -0.0021360326, 0.00809602, - 0.007334492, 0.005797457, 0.042339616, 0.039116606, 0.028523663, - 0.07464243, 0.0015686015, 0.0036304647, -0.002179754, 0.0069450736, - -0.03151116, -0.0016367707, -0.030344434, -0.0011040044, -0.007806223, - 0.020549854, -0.0077310116, -0.009878559, 0.0043144883, -0.004256512, - 0.037014052, 0.032628126, -0.0637449, 0.008862538, 0.0020091138, - -0.017314063, -0.055041846, -0.029349007, -0.04953505, 0.037707735, - 0.0079066465, 0.016595026, 0.019137386, -0.0050862334, -0.02031965, - 0.044329863, -0.013948824, -0.025677022, 0.025206566, 0.047055293, - 0.009263681, -0.0030268265, -0.005862613, -0.039822847, -0.0049815616, - 0.011549345, -0.0055494388, 0.004634006, 0.01885077, -0.035373203, - 0.02421376, 0.023160001, 0.0114816, 0.06926193, 0.042742036, -0.0278689, - -0.075523734, -0.0019193225, -0.030563619, 0.040323872, 0.0068863467, - -0.028139323, 0.030913359, 0.0038049838, -0.028415933, -0.034523122, - -0.021482745, 0.015384503, 0.014566832, -0.012182762, 0.010833511, - 0.046527628, -0.0131399, 0.03142249, -0.020032281, 0.005078174, - 0.03496979, -0.01775422, -0.062543996, -6.848747e-4, 0.095472544, - -0.040839083, 0.0011699278, -0.02654211, -0.008703098, 0.0028755094, - 0.0457057, -0.007779988, -0.026328223, 0.020929916, -0.011237608, - 0.019974599, -0.038323298, 0.016561091 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.016808417, + -0.0039046975, + -0.015330934, + 0.02178052, + -0.013286981, + 0.016625706, + -0.0077834344, + -0.008607507, + 0.0072003985, + 0.027339872, + 0.016687296, + -0.02221171, + -0.0019100094, + 0.02754149, + 0.021229701, + 0.015121885, + -0.00590421, + 0.0111599015, + -0.025735155, + 0.0025203747, + -0.01497855, + -0.014863234, + -0.011863025, + -0.038448334, + -0.00859914, + -0.015599193, + 0.031825643, + 9.603981E-4, + -0.009961206, + 0.0024563167, + -0.0016105383, + 0.010007078, + 3.6017413E-4, + -0.0044443714, + -0.015424664, + -0.0024151783, + -0.0026776816, + 0.0046730125, + -0.015953941, + -0.020675298, + -0.012320302, + 0.01689042, + 0.014920803, + 0.005203638, + -6.828152E-4, + 0.022730632, + 0.015221012, + -0.015320547, + 0.021245489, + -0.012899848, + 0.004849051, + 0.0038083121, + 0.007432309, + -0.0136153335, + 0.009345878, + -0.016269388, + -0.03006628, + -0.005443887, + -0.0070140115, + -0.026995402, + 0.008436416, + -0.016190821, + -0.009190145, + 0.0054655652, + 0.0126067065, + 0.03512076, + -0.026639402, + 0.008992061, + -0.004049481, + 0.010683562, + 0.0066155116, + 0.028339112, + 0.009609984, + 0.013608081, + -0.012462908, + -0.002216435, + -0.014886329, + -0.005939661, + 0.006612544, + -0.035696708, + -0.023244176, + 0.011502607, + -0.010102031, + 0.021403724, + 0.009822819, + 0.010316688, + -0.002151172, + 0.004325452, + -0.023564177, + 0.009763236, + 0.0072430708, + 0.0048050573, + -0.0038801637, + 0.017473685, + 0.03186607, + 0.007737021, + -0.016341861, + -0.00952579, + -0.0025214576, + 0.0025322218, + -0.011257137, + 0.025586696, + 0.013387485, + -0.018541768, + -0.003530314, + -0.0038118092, + 0.008195482, + 0.011303413, + -0.00757435, + -0.021481844, + 0.0034221418, + -0.008757163, + -0.0014498857, + 0.025121989, + 0.006988442, + 0.0114332065, + 0.00703636, + 0.012499907, + 0.0060007037, + -0.004043493, + 0.0071531916, + 0.030195847, + 0.0013289521, + -0.00615801, + 0.005201331, + 0.0051093115, + -0.0028982146, + 0.026570441, + 0.0048110248, + 0.01228001, + 0.006171423, + -0.0110495705, + 0.0026846647, + 0.011632956, + -0.012552533, + 0.013646059, + -0.0015145547, + -9.852479E-4, + -0.0040881876, + -0.022549314, + -0.013927582, + 0.004494948, + 1.4974106E-4, + -0.003605533, + -0.01470985, + 0.027635228, + 0.013406344, + 0.014829619, + 0.022648338, + 0.00322603, + -0.012168611, + 0.0062260996, + -0.011616765, + -0.0035803884, + 0.023090286, + -0.014015285, + 0.00206591, + 0.0057770964, + -0.015574045, + -0.014679837, + 0.0015463282, + 0.0029665278, + 7.284308E-4, + 0.010336907, + 0.0065715485, + 0.010050739, + -0.010294782, + 0.009665574, + -0.036312934, + 0.0060570273, + 0.023816904, + -0.03024553, + -0.0013059055, + -0.018398397, + -0.008593847, + 0.004472395, + -0.0016370924, + 0.0041445345, + -0.017067201, + -0.009378189, + -0.017383916, + 0.0010435047, + 0.033321194, + 0.0051761377, + 0.0046401843, + -0.003139609, + -0.0042364984, + -0.0103557585, + 0.0021351592, + -0.00719973, + -0.014597945, + -0.017668849, + -0.0060973833, + -0.002776833, + 0.016623154, + -0.006114721, + -0.0122965155, + 0.01018011, + -0.018175906, + -0.034198135, + -0.0016049218, + 0.017112678, + -0.05000486, + -0.008601998, + -0.02024125, + -0.008369123, + 0.0010467918, + 0.0250988, + 0.0011876292, + 0.019645067, + -0.03431448, + 0.007491227, + -0.0046738284, + -0.020572767, + 0.036232457, + -0.0011092537, + 0.0126917325, + 0.011287652, + -0.0057905708, + 0.009617899, + 0.017133163, + -0.019751923, + -0.008590524, + -0.008940446, + -0.006664573, + 0.02098167, + 0.00396666, + -0.015331579, + 0.011794479, + 0.0071367025, + 0.014707435, + 0.0083015645, + 0.023283307, + -0.031162212, + -0.01916836, + 0.0077782287, + 0.0010529155, + 0.015319944, + -0.008503949, + -0.019228965, + 0.0011262276, + 0.008441134, + -0.019467186, + 0.0031484133, + 0.017882315, + -0.029524617, + 0.0015960574, + 0.01753193, + 0.033128455, + 0.011268978, + 0.0064873532, + -0.016018644, + -0.020297268, + -0.023769956, + -4.8093955E-4, + -0.009174899, + 0.032428045, + 0.0035883163, + 0.012961077, + -0.0042415606, + 0.021927752, + -0.029196894, + -0.023636362, + 0.023982434, + 0.05995113, + -0.008694949, + 0.011257671, + 0.017113267, + 7.710527E-4, + 5.264471E-4, + -0.0030276827, + -0.013817818, + 0.021754136, + 0.010279802, + -0.019027794, + 0.031581864, + 3.7918726E-4, + -0.018886324, + 0.027342655, + -0.012638426, + 0.029152855, + -0.01065022, + -0.001349919, + -0.015380252, + 0.00750065, + 0.022076933, + 0.011659866, + -0.024183964, + -0.0061584604, + -0.0037131575, + -0.0051123183, + -0.0014178136, + 0.001175465, + 0.018534811, + 0.00906058, + -0.007093282, + -0.028367683, + 0.027420439, + -0.015896205, + 0.011830188, + -0.012148095, + -0.010576528, + -0.001771084, + -0.0056394096, + -0.0011261079, + -0.005576575, + -0.005217713, + 0.015739698, + 0.005242417, + 0.026837148, + -0.00676876, + -0.011583554, + -0.010339779, + 0.027555123, + 0.011456306, + -0.0011604601, + 0.009226666, + 9.367362E-4, + 0.0017884963, + -0.013854301, + 0.0034737464, + -0.0075045344, + 0.020120243, + -0.010524299, + 0.01928037, + 0.020634275, + 0.021311715, + -0.0042458177, + -0.029181037, + -0.0074088937, + 0.013731363, + -0.0015062819, + 0.037561763, + 0.0048444285, + -0.018284341, + 0.012267476, + -0.02032713, + 0.019817086, + -0.0057075014, + -0.014447134, + -0.009437136, + 0.013576866, + 0.01248624, + 0.05788654, + 0.020631908, + -0.034865357, + 0.009561268, + 0.016314391, + -0.024788503, + 0.012641773, + -0.01865365, + 0.0015491581, + 0.02109628, + 0.007097927, + -5.702256E-4, + -0.020826444, + -0.006071499, + -0.029944398, + -0.0017521029, + 0.017345943, + 0.0021431486, + -0.009844485, + 0.0012662709, + -8.3072536E-4, + -0.031123491, + -0.015850978, + -0.012825954, + -0.016039813, + -0.0033350764, + -0.009525764, + 0.008804439, + 9.023265E-4, + -0.006976851, + -0.0018961118, + 0.01779994, + -0.0051853145, + -0.008887796, + -0.009642373, + 0.012784519, + 0.005975754, + 4.997436E-4, + 0.0045018927, + 0.015959615, + -0.0024748894, + 0.0056871083, + -0.0018245756, + -0.01118514, + 0.003993382, + 0.025061028, + 0.021103006, + 0.027835399, + -0.0021513759, + 0.016675087, + -0.015272503, + 0.004124881, + -0.018140364, + 0.006848748, + 0.015731178, + 0.007206886, + 0.016517747, + -0.012794323, + 0.01911264, + 0.011440372, + 0.017236974, + 0.030392537, + -0.013307692, + -0.0037298216, + 0.033598274, + 0.0043000267, + 0.017544385, + 0.034318946, + 0.01259385, + -0.019565556, + -3.318026E-4, + 0.020607602, + -0.029079597, + -0.009445453, + 0.004933695, + 0.01312956, + 0.009527646, + 0.02511133, + 0.010346075, + -0.018149648, + 0.004253084, + 0.02384742, + 0.008380422, + 0.016558332, + -0.020427378, + 0.002748818, + 0.0075401855, + -0.0039360253, + 0.02717768, + -0.02191816, + -0.028630275, + 0.005183594, + 0.0093057025, + 0.013823561, + 0.03330675, + -0.0178372, + -0.015367076, + -0.0030273865, + -0.02065669, + 0.013045288, + 0.016202798, + -0.0182429, + 0.035017285, + -0.0021294358, + -0.0051268553, + 0.014485461, + -0.014871038, + -0.0017188775, + -0.013013835, + -0.008417673, + 0.021501306, + -0.015084863, + -0.0072717373, + -0.0021389567, + -0.010188266, + 0.0024917729, + -0.0035529947, + 0.0018010382, + -0.019640926, + -0.013517803, + -0.010143531, + 0.010646183, + -0.0024728968, + 0.037196975, + 0.0036702792, + 0.02139226, + -0.0029805177, + 0.0036898663, + 0.011420412, + 0.0064868284, + -0.009082257, + 0.018329892, + 0.012705261, + 0.01476052, + -0.01917316, + -0.005974545, + 0.014816832, + 0.01188048, + 0.0072641857, + -0.0030339675, + -0.002559113, + 0.0016702036, + 0.027728397, + 4.554967E-4, + -0.015080121, + -0.022967994, + -0.0056995046, + -0.010193293, + -2.2626921E-4, + 0.001122675, + -0.014058164, + 0.03335319, + 0.0031930087, + 0.0039438484, + 0.011895786, + -0.0016704384, + -0.0012345788, + -0.0042301007, + 0.0076911477, + -0.0015746586, + 0.010849992, + 0.002451019, + -0.020402526, + 0.01577834, + 0.0046503344, + -0.006276995, + 0.025207296, + 0.021190906, + 0.01934058, + -0.005768106, + -0.0024157458, + 0.0037541827, + -4.9574533E-4, + 0.013069845, + -0.014527828, + 0.009549626, + 0.010352793, + 1.7865523E-4, + 0.005055201, + 0.00885232, + -0.0017727368, + 3.1471963E-4, + -0.04011813, + 0.0096358005, + 0.026610773, + 0.018125521, + 0.0049724225, + -0.017261513, + -0.011647052, + -0.015125853, + 0.006694835, + 0.022422997, + -0.015089579, + -0.017200202, + 0.027785009, + -0.0013743194, + 0.02016317, + 0.012263318, + -0.013549988, + 0.011008538, + -0.008137278, + -0.007074415, + -0.0286784, + 0.016135791, + 0.026551036, + 0.010220263, + -0.037077747, + -0.0053781746, + -0.018213898, + -0.026358245, + 0.017941864, + 0.008183742, + 0.020936675, + -0.013219237, + 0.042342532, + -0.007674572, + -0.036440685, + -0.022344632, + 0.009952842, + 0.016266445, + 0.03848833, + 0.013452867, + -0.018354543, + -0.0010475836, + 1.1203133E-4, + 0.028397089, + -0.027462374, + -3.7103612E-4, + -0.009846578, + -0.020894691, + 0.021052118, + -0.016182572, + 0.0090682395, + -0.03214602, + -0.004293175, + -0.015302671, + -0.034511443, + 0.012824365, + -0.01157747, + -0.0017706349, + 0.009540897, + 0.008186541, + 9.228809E-4, + -0.01723205, + -0.010091877, + 0.0037028925, + -0.0133137535, + 0.009119591, + 0.023246689, + 0.004466461, + -0.01621104, + 0.017397048, + 0.015916677, + -9.044597E-4, + -0.014670864, + 0.014319258, + 0.02036411, + 0.030545391, + 0.014164936, + -0.041710272, + 0.0068289796, + -0.00375142, + -0.016669529, + 0.01915326, + -0.018375462, + 0.013114772, + 0.005636336, + -0.0017335719, + 0.004060339, + -0.0046383655, + -0.005917944, + 0.012860128, + -0.016547216, + -0.0024020916, + 1.6775336E-4, + -0.0045616995, + -0.004155385, + -0.009731767, + 0.0038305665, + 0.017865205, + 0.019067913, + -0.0057412833, + 0.011730905, + 0.0011504291, + 0.002155378, + 0.005369883, + 0.0101788575, + -0.0048744003, + 0.010016125, + 0.028781548, + 0.0096350005, + -0.018487219, + -0.0045490405, + -0.014013248, + 0.05596037, + 0.009904662, + -0.016268868, + 0.016525188, + 0.0073444783, + -0.015171672, + 0.0073065516, + 0.006867925, + 0.0021859137, + 0.013643373, + 0.018627374, + -0.02127389, + 0.0038163476, + -0.0135426, + 0.0012462472, + -9.142894E-4, + -0.005485608, + 0.013996126, + 0.0015196775, + 0.028059037, + 0.011420698, + 0.01078418, + 0.0051419637, + 0.013099461, + 0.023190493, + -0.0018800371, + -0.0141667435, + -0.004522419, + -0.028451635, + -0.008202499, + 0.0123661915, + -0.01209977, + 0.0015463551, + 0.013157928, + -0.008516994, + 0.0019048619, + -0.022618016, + 0.021403084, + -0.02883927, + 0.007933593, + -0.01689689, + -0.009432654, + 0.004184286, + -0.0019529874, + -0.031556245, + -0.027605379, + 0.0033323122, + -0.0063063214, + 0.011355526, + 0.050209552, + 0.004418605, + -4.8184558E-4, + -0.003980811, + -0.031817608, + -0.018237092, + -6.540536E-4, + -0.01176866, + -0.018605838, + 0.0014773213, + -0.0043713874, + 0.03079393, + -0.028475005, + -0.0038803658, + 0.035649434, + 0.021210762, + 0.014736592, + -0.03788908, + -0.020866064, + -0.0378239, + 0.00933755, + -0.0026673328, + -7.9231436E-4, + -0.012094148, + 0.02086204, + 0.013432864, + -0.035912078, + 0.0030850903, + -0.0058568614, + 7.0063147E-4, + -0.01082162, + -0.003555172, + -0.0020390155, + -0.014737312, + 0.008537957, + 0.033852056, + 0.013667868, + 0.006143558, + 0.039977893, + 0.015942615, + -0.009108498, + 0.009630915, + -0.006249371, + -1.379417E-4, + 0.010552711, + 0.009762016, + 0.04100511, + 0.011357749, + 0.010629675, + 0.0022085302, + 0.008226731, + -0.010813557, + 0.02555084, + 0.016122486, + 0.019937554, + 0.0029808201, + 0.014622663, + 0.009105395, + 0.021417473, + 0.004574782, + -0.01483478, + -0.006193524, + -0.029989379, + -0.0062981197, + -0.005312325, + -0.00307838, + 0.0077421498, + -0.008944714, + -0.026574407, + 3.5988554E-4, + 0.026762756, + 0.011058887, + 0.0011863072, + -0.010776324, + -0.021253409, + 0.0040838094, + -0.0054829908, + 0.017469123, + 0.024537325, + -4.1326674E-4, + -3.072568E-4, + 0.016863236, + -0.0032247026, + -0.009771858, + 0.012795537, + -0.006372797, + -0.015706496, + 0.014885624, + -0.0070573236, + -0.003318057, + -0.017808344, + 0.005069034, + 9.305606E-4, + -0.0120956, + -0.010302088, + 0.0024965485, + -0.005876741, + 0.007031917, + 6.9790636E-4, + 0.019609006, + 0.001094461, + -0.00413043, + 0.008616052, + 0.0050760536, + -0.013885869, + 0.009279876, + -0.019396026, + -0.0019289125, + 0.009916439, + 0.00906695, + -0.0042602937, + -0.015836585, + 4.595867E-5, + -0.0015471769, + 0.002917174, + -0.0028102791, + -0.009458945, + -0.021679688, + 0.02697117, + -0.014202748, + -0.020875966, + -0.02519844, + -0.0031660874, + -0.0028572385, + 0.0046423706, + -0.005264951, + -0.0036452212, + 0.010378521, + 0.0070527866, + -0.029098963, + 0.018474502, + 0.0058129625, + 0.012700015, + 0.013033409, + -0.008822216, + -0.0010525864, + 0.011646812, + 0.0072801, + 0.006679119, + 0.03525297, + -0.010884338, + 0.028736552, + -0.005359936, + -0.03184323, + 0.0073525235, + -0.007172299, + 0.0025260162, + -0.0056813355, + 0.027589547, + 0.005921917, + 0.0032648814, + 0.0033829068, + 0.009459851, + -0.012675502, + 0.0075157327, + 0.0072941403, + 0.028822884, + -8.470081E-4, + 0.017848704, + 0.01730097, + -0.019712957, + -0.0142722605, + -0.015152419, + -0.006838541, + -0.0087873805, + -0.011072758, + 0.015149291, + 0.03055392, + 0.021188295, + 9.4203104E-4, + -0.029369982, + 8.828322E-4, + -8.707697E-4, + 0.0059577166, + -0.005651666, + 0.01795294, + 0.00790185, + -0.013624345, + -0.0067511606, + 0.004608064, + -0.011982702, + 0.007054082, + 6.6752586E-4, + -0.011689651, + 0.048715215, + 0.004439894, + -0.012328505, + -0.002379947, + 0.025285656, + 0.0085856, + 0.01414034, + 0.0049820812, + 0.0019192979, + 0.006968723, + 0.0023961903, + -0.0056913137, + -0.0023470512, + 0.010981825, + -0.011708988, + 1.06100415E-4, + -0.026807653, + -0.009190013, + 0.00744103, + 0.014731595, + 0.0018631592, + 0.0068760365, + -7.2927086E-4, + 0.0030684122, + 0.015628425, + -0.00241383, + 0.009636572, + -0.011859661, + 0.0018454742, + -0.024947725, + 0.016230369, + 0.0013891702, + 0.011284092, + 0.035971098, + -0.014652194, + 0.004334939, + -0.0060073207, + -0.0074411477, + 0.009893285, + 0.012174158, + 0.009387091, + 0.022057498, + -0.0065176035, + 0.0113029955, + -0.013094592, + 0.01072694, + -0.03218736, + 0.0015864787, + -0.0014172464, + 0.023877582, + -0.008917277, + -0.011665823, + -0.0016674057, + 0.006296025, + -0.014508639, + -0.019205948, + 0.008917424, + -0.018540604, + 0.016347948, + 0.019822503, + 0.0015154093, + -0.010419689, + 0.005135516, + -0.011056602, + -0.0038305838, + 4.3679395E-4, + 0.0025992838, + -0.0016298883, + -0.0036472722, + 0.014059808, + 0.028827788, + 0.0012113389, + -0.013948169, + 0.051439486, + 0.003977002, + -0.004224497, + -0.012116401, + -0.01897478, + 0.0047066165, + -0.008461709, + 0.03183166, + -0.0031606914, + -0.021035962, + 0.01975991, + -0.02677975, + -0.012365503, + -0.034056537, + -0.020896569, + 0.003911842, + 0.009662387, + 0.01018156, + 0.0064092004, + -0.017928855, + 0.025379963, + -0.002819943, + 0.007264144, + -0.003399241, + 0.002544206, + 0.020310065, + -0.018782364, + 0.027672617, + -0.009528813, + 8.5748866E-4, + 0.011137682, + -0.00468598, + 9.9349054E-5, + -0.010590509, + 0.017374877, + 0.021197015, + -0.0026705037, + -0.0104954, + -0.00867421, + 0.012351286, + 0.0028828282, + -9.4889436E-4, + 0.0087530045, + 0.0049621672, + 0.004816492, + 0.021313636, + -0.028832491, + -0.018190043, + -0.02665058, + 0.01443706, + 0.010978323, + -0.004872771, + 0.0069194264, + -0.016105592, + 0.021076242, + 0.013550146, + -0.006437849, + 0.01854288, + 0.019968258, + 0.030189779, + 0.0017831854, + 0.014717493, + -0.012998761, + -0.010399804, + -9.6591085E-4, + -0.01736148, + -0.013240575, + 0.024100168, + 0.0060903355, + -0.016276548, + -0.0069986433, + -0.0022455899, + 0.0015808912, + -0.010248099, + 7.995009E-4, + -0.01564657, + 0.01881489, + -0.011303072, + -0.031774603, + 0.024987128, + 0.004918096, + 0.0058183228, + 0.016847007, + -0.014935052, + 0.00341199, + 0.015995758, + 0.021614525, + 0.021967217, + -0.0024264755, + 0.0016129779, + -0.006132044, + -0.0060687275, + -0.0057564857, + -0.017960466, + -0.010583225, + 0.035963118, + 0.001961532, + -0.015200163, + -0.015844092, + 0.010542601, + 0.028099649, + 0.0054482087, + 0.0023383005, + 0.027875507, + 0.0031268927, + -6.5063545E-4, + 0.00590705, + -5.5619486E-4, + -0.01854336, + 0.001291292, + -0.0027407801, + 0.0039366875, + 0.02004944, + 0.0028451798, + 0.020123672, + -0.0017004574, + 0.009218404, + 0.022292642, + -0.0047503356, + 0.010701619, + -0.0012774641, + -0.0033167433, + -0.019072529, + -0.0025299382, + 0.006856285, + -0.007712692, + 0.007703748, + 0.012324348, + 0.016954837, + -0.0085794935, + -0.0044068033, + -0.015409624, + 0.011344043, + -0.0015800882, + 0.016997267, + -0.0010157819, + -0.0013087617, + -0.019050108, + -0.0012702127, + -0.00379534, + 0.009071119, + -0.0027912739, + -0.0013811495, + 0.026587365, + -5.564286E-4, + 0.010557037, + -0.010019071, + 0.003940723, + -0.0031733913, + 0.017175483, + -0.0061918376, + 0.006747831, + 0.0036679858, + -0.047644585, + 0.008314747, + -0.004644555, + 0.016633479, + 8.7721244E-4, + 0.01211182, + -0.015888719, + -0.0057658027, + -0.010327609, + -0.0075127017, + -0.022929871, + -0.0067907255, + -0.002115578, + 0.0013470977, + 5.212304E-4, + -0.015617008, + 0.025199108, + -0.014659729, + 0.0015779975, + -0.012832773, + 0.030125301, + -0.020053424, + -0.008092801, + 0.0050092437, + -0.0030968925, + -0.019229217, + 0.009179184, + -0.025352387, + 0.008545431, + 0.0040059923, + -0.0035844874, + -0.008773377, + 0.02609905, + 0.001198254, + -0.007678902, + 0.01695045, + -0.027896242, + -0.0025047148, + -0.007970134, + -0.03144439, + 0.0014407136, + 0.0025236201, + 5.6145905E-4, + 0.009767413, + -0.015759764, + -0.0092630815, + -0.0018551705, + 0.0022448632, + -0.0029215498, + 0.003925774, + 0.014448722, + -0.020056719, + -0.03341074, + -0.0038493408, + 0.018714653, + 0.018971981, + 0.004591597, + -6.5749977E-4, + -0.0039727227, + 0.021878896, + 0.006182996, + -2.50732E-4, + 0.0018925593, + -0.018091405, + 0.023035629, + 0.011262605, + 0.00699507, + 0.004328607, + 0.02815599, + 0.026532656, + -0.014715102, + 0.024369849, + -0.020954095, + 0.0018208259, + -0.02589519, + 0.017546464, + -0.009695637, + 6.138464E-4, + -0.016831927, + -0.009428164, + 0.0070663625, + -0.008333612, + -4.171595E-4, + -0.01458394, + -0.016680507, + 0.009510553, + -0.0056621497, + 0.01583893, + 0.011611661, + 0.014150725, + -4.2231748E-4, + -0.03361841, + -0.0071856063, + 0.016239125, + 0.0058494355, + -0.01940778, + 0.02262607, + 0.016953507, + 0.023621114, + 0.03784936, + -0.031633005, + 0.006413647, + -0.024538392, + 0.018129455, + 0.029260805, + 0.00585929, + 0.009232872, + -0.007067885, + 0.012448739, + 0.0021077448, + 0.012384525, + 0.015804496, + -0.013621205, + -0.011512329, + -0.0014751916, + -0.015899105, + 0.030520944, + 0.016948173, + -0.024159804, + 0.028121982, + -0.04368701, + -0.01354389, + -0.007034846, + 0.003791552, + -0.010645179, + -0.019879948, + 0.014646659, + -0.004646263, + -0.0032063674, + -0.0051254258, + 0.004006347, + 0.020063978, + 0.01971544, + -0.0069289305, + -0.007350944, + -0.0046545137, + 0.021465005, + -0.024180181, + 0.01874595, + -0.029724514, + 0.020718211, + -0.028751839, + -0.009373194, + -0.001277897, + -0.0067957183, + 0.013715314, + 0.009200177, + 0.015111985, + -0.0054671024, + -0.0053820065, + -0.014978809, + -0.014403491, + 0.0015213285, + 0.032703288, + 0.01508873, + 0.011800668, + 0.010350114, + 0.006079272, + -3.984856E-5, + -0.022978557, + -0.0150066605, + 0.028676623, + -0.0030651262, + 0.010140942, + 0.0119291, + 0.0024102898, + 5.5611227E-4, + 0.0055892877, + 0.00287809, + 0.0045895544, + 0.034640968, + 0.024899634, + 0.025158562, + 0.027756833, + 0.008634403, + -0.02698141, + -0.010992451, + -0.0010561425, + 0.005300908, + 0.012069193, + -0.015028531, + 0.00714757, + 0.008422003, + 0.014123433, + 0.0078054047, + -0.01597691, + 0.038694378, + 2.730667E-4, + 0.0113507295, + -0.0067860447, + -0.0055041895, + -3.7440134E-4, + -0.008552479, + 2.9720542E-5, + -0.0034576524, + -3.5681348E-6, + 0.010773923, + -0.011365839, + 0.016757265, + 8.2428276E-4, + -0.006433103, + -0.030778034, + 0.0024553111, + -0.0010452978, + -0.016973896, + 0.010380315, + 0.015946573, + -0.0023874862, + 0.005533277, + -0.020626055, + -0.03340532, + 0.019413559, + -0.030860066, + -3.2787063E-4, + 0.007223332, + -0.017639292, + -0.013486773, + -0.0071296263, + 0.002765121, + 0.0129379565, + -6.957385E-4, + -0.023950638, + 0.0040248996, + -0.020303676, + -0.0024404782, + 0.00526183, + 0.018673234, + 0.010365122, + -0.02836936, + 0.008479961, + 0.0022133365, + 0.016027179, + -0.0051947073, + 0.02304652, + -0.0035102526, + 0.014652203, + -0.015301324, + 0.02002156, + -0.011696693, + -0.021552749, + 0.0012343008, + -0.024578316, + 0.011800425, + -0.012786467, + 0.013135861, + 0.032808308, + 0.008336647, + -0.018516012, + 0.002465771, + 0.005780275, + -0.015462398, + -0.0076140347, + 0.028952142, + 0.023469485, + -5.195809E-4, + -0.020812215, + 0.011392339, + -0.003659047, + 0.0023063, + 0.014205156, + 0.00833603, + 0.003882695, + -8.5511676E-4, + 0.016469847, + -0.010601288, + 0.011053522, + -0.018855177, + -4.1642043E-4, + -0.0068054674, + -0.025111364, + 0.020080514, + -0.0045497287, + -0.0058810273, + -0.021530068, + -0.009482768, + 0.012802054, + 0.008583744, + 0.013129119, + 0.031876773, + -0.0047351983, + -0.025936002, + 0.022501523, + 0.011368196, + 0.0065939766, + -0.00983872, + -0.019743528, + -0.004754069, + -0.029750733, + 0.007977576, + 0.0358446, + 0.028056722, + -0.019642474, + 0.0141971335, + 0.0129224155, + 0.002703446, + 0.010307526, + -0.0024442151, + -0.0071090073, + -0.018554598, + 0.014186876, + 0.006572921, + 0.026304292, + 0.021855837, + -0.014508057, + 0.0040656948, + 0.0021447537, + 0.01587743, + 0.002663587, + -0.02266449, + 0.007151748, + 0.02480928, + -0.008913086, + -0.0011809684, + -0.01376805, + 0.0020947917, + 0.001060915, + -0.0028975743, + 0.007436198, + -0.022199588, + 0.023645245, + 0.025079802, + -0.0026590466, + -0.0015897052, + 0.012694836, + 0.017581414, + 0.008440164, + -4.951911E-4, + 0.0044519585, + -0.0064459103, + -0.0135457665, + -0.029569028, + 0.0120518645, + -3.0284357E-4, + 0.026009396, + -0.015120676, + 0.014786529, + -0.014055187, + -0.0042929887, + 0.0054663685, + -0.016452443, + 0.0077707157, + -0.008222461, + -0.008932395, + 0.016399715, + -0.02395795, + 0.0039161546, + -0.023843769, + -0.0038655724, + 0.010346587, + 0.008836471, + -0.022434043, + 1.390145E-4, + 0.015061775, + -0.023459325, + -0.0019526418, + 0.026875103, + -0.011712681, + 0.029705469, + 0.0010499819, + -0.038007878, + -0.015424071, + -0.004767853, + -0.023026444, + 0.0046964944, + -0.008097732, + -0.0382974, + -0.002447361, + 0.025673823, + 0.0011206967, + 0.02112261, + 0.032313615, + 0.015640367, + -0.023002625, + -0.0011564578, + 0.03458997, + -0.0091385925, + 0.016271718, + 0.009169643, + 0.0074216444, + 0.011591672, + 0.011019438, + -0.016972935, + -0.018873073, + 0.0027223362, + -0.005669615, + 0.003327785, + -0.014260474, + 0.0020215705, + 0.012203062, + 0.018347437, + -0.022649588, + -0.033931445, + 0.00584451, + 0.003303659, + -0.016933046, + -0.030796876, + 0.003183737, + -0.0056120986, + 0.017888913, + 0.019988382, + 0.035845265, + 0.014933194, + -0.014613467, + 0.015128663, + -0.0154801905, + 0.011052209, + -0.010187872, + -0.0074314405, + -7.8024616E-4, + 0.0016470485, + -0.0028658041, + 0.0014707523, + 0.011288464, + -0.010786036, + -0.0068272166, + 0.0012943584, + 0.01671741, + -0.017060012, + 0.0032802967, + 0.017623514, + -0.004733878, + -0.0036641653, + 0.018315092, + 0.0015800091, + 0.006854894, + -0.011580091, + 0.013284949, + -0.027148157, + -0.0066743884, + -0.016239284, + -0.01776998, + -0.020759331, + -0.015477073, + 0.02257958, + 0.011157957, + 0.042762864, + 0.0010827921, + 0.016674649, + 0.003563623, + 0.03707435, + -0.02081715, + -0.033173207, + -0.013557905, + -0.016066857, + 0.0049853236, + 0.019864516, + 3.584697E-4, + 0.016244082, + 0.009173775, + -0.023291657, + 0.02425861, + 0.007849113, + -0.013706357, + 0.0012152385, + 0.011138068, + 0.015450186, + 0.011424316, + 0.021991048, + 0.020749312, + -0.0024306783, + 0.0069206012, + -0.010066636, + -0.014443673, + -0.0060730944, + 0.02098599, + 0.027138812, + 0.025241166, + -0.014513213, + 0.009359645, + 0.01858931, + 0.01326688, + 0.03455391, + 0.014868794, + 6.180265E-4, + -0.014554571, + -0.013034812, + 0.005034091, + -0.024043871, + 0.026985701, + 0.0072214017, + -0.0056567686, + -0.0053261737, + -0.00663365, + 0.0015794528, + 0.0031315153, + -0.007091669, + 0.030976005, + 0.0038252794, + -0.011289708, + 0.008539903, + 0.0046634576, + 0.014623569, + 3.537414E-5, + -0.0018771931, + -0.025301581, + -0.0015454316, + -0.010063162, + -0.013622559, + 0.015123909, + 0.0064525562, + -0.019276865, + 0.011128815, + 0.011623031, + 0.009835799, + -0.005017827, + 0.013520458, + -0.031171335, + 0.017624587, + -0.016896734, + -0.021290878, + 0.023255209, + 0.0047801817, + 0.03176044, + -0.008430423, + 1.8158354E-4, + 0.012743376, + -0.008132536, + 0.0035559942, + 2.7845273E-4, + -0.0037475908, + -0.0098894695, + -0.0041303653, + -0.009928178, + -3.2811557E-4, + -0.0058446745, + -0.009852398, + 0.006390514, + 0.03259477, + 0.0032443174, + 0.016326034, + 0.012025177, + -0.014388159, + 0.008634231, + -0.0013818507, + 0.018595131, + -0.019623931, + 0.016430669, + 0.021738084, + -0.011849755, + -0.013761501, + 0.004989697, + -0.030149573, + -0.003397407, + 0.016102863, + -0.002152776, + 3.0391506E-4, + 0.012471163, + -0.010590697, + 0.0013518817, + 0.010495428, + -0.0050365515, + -0.004000789, + -0.009783046, + 0.0059091444, + -0.012529968, + -0.013392871, + -0.00618879, + 0.004347828, + 0.013886379, + -0.028763475, + -0.010575918, + 0.0019834295, + 7.8429E-4, + -0.017549051, + 0.010802767, + -0.00485541, + 0.016438518, + -0.014134976, + 0.0070024785, + 0.029514614, + -0.034542937, + 0.0011533747, + 0.006563419, + 0.031027762, + 0.019828267, + -0.018857, + -0.040614586, + 0.012177045, + 0.010654264, + 0.009020202, + -0.023393208, + -0.019333104, + -0.03845455, + 9.3984994E-4, + 0.0099849785, + -0.016042039, + -0.020193517, + 0.009410824, + 0.014668225, + 0.011572549, + -0.009969794, + -0.00250693, + 0.059505858, + -1.2268087E-4, + -0.018300317, + -0.020010276, + -0.013155653, + 0.027671084, + 0.016639367, + -0.0020681322, + 0.016244557, + 0.019237777, + 0.001911566, + -0.0055287858, + -0.017398432, + 0.004535486, + -0.028376017, + 0.030956008, + -0.019568618, + -0.013694246, + 0.0028587184, + -4.3087194E-4, + 0.016717356, + 0.023932686, + 0.015069342, + 0.008778371, + -0.007985862, + 0.022024324, + 0.0037812307, + 0.006506389, + 0.011632059, + 0.008835247, + -0.0030138362, + 0.012774024, + 0.020229584, + 0.0033159368, + 0.011973066, + 0.017868433, + 0.005959216, + 0.013442111, + 0.019898163, + 0.01634475, + -0.0029442739, + -0.004601845, + -0.007350492, + -0.0032741665, + 0.01637076, + 0.014583656, + -0.008099459, + 0.02561487, + -0.015239947, + 0.011928294, + -0.010835879, + 9.5875724E-4, + 0.019774398, + 0.008845892, + 0.016546445, + 0.0070769163, + -0.02492779, + -0.005267511, + 0.0047335727, + 0.017483922, + 0.022865297, + -0.0041717095, + 0.013716938, + -5.7878037E-4, + 0.003942937, + -0.0022792087, + -0.010849699, + 0.019865267, + -0.020116966, + -0.0121417735, + 0.012972952, + 0.02851048, + 0.0054156715, + 0.0022211098, + 0.00599005, + -0.0010776508, + 0.007889881, + -0.013626612, + -0.0061682463, + -0.028544277, + 0.009850358, + 0.0067728045, + 0.0019769538, + 0.0128681185, + 0.0027773238, + 0.0077767926, + -0.026718512, + 0.007195462, + -3.0854263E-4, + -0.010866619, + 0.008707345, + 0.025944423, + 0.0067967772, + 0.03023948, + -0.0030975987, + 6.864635E-4, + 0.01759614, + -0.0092142755, + -0.02411141, + -6.347663E-5, + 0.012938747, + 0.0026956517, + 0.0045775543, + 0.049558423, + 0.0018001528, + -0.009125248, + 0.016684806, + 0.0011988934, + -0.00971169, + -0.018045839, + -0.002158476, + 0.02262863, + 0.02874079, + -0.030357556, + 0.011035265, + -0.016854834, + 0.004190658, + 0.019563511, + 0.02066331, + -0.008513251, + -0.02943753, + -0.020531062, + -0.013088141, + -0.025476687, + -0.0064832987, + 0.0072676144, + 0.009809513, + -0.031431094, + 0.01715246, + -0.0062311767, + -0.028401582, + 0.022715267, + 0.014767505, + -0.008843342, + -0.011914352, + -0.0020826533, + 0.018446159, + 0.0041424357, + -0.0055719106, + 0.022322372, + 0.0062579815, + -0.023857832, + -0.02093785, + -0.01128247, + 0.0050028847, + 0.019437233, + 0.0034836878, + -0.013056031, + -0.0477085, + 0.0024307882, + -0.012225457, + -0.024867455, + -0.017854929, + -0.013261164, + 0.022078982, + -0.004434919, + -0.011595197, + -0.023934979, + 0.0074424464, + 0.016405227, + 0.012657238, + 0.017571865, + -0.017672475, + -0.010284723, + -0.016462235, + 0.028213654, + 0.00324217, + 0.014835205, + -0.0061011626, + -0.008789192, + -0.012170781, + 0.0010720541, + -0.003818895, + -0.0016051035, + -0.011096636, + 0.01993669, + 0.009893056, + 0.0027385938, + 0.019192422, + -0.003918301, + 0.018983504, + -0.018720815, + -0.001635102, + 0.0038695368, + -0.031863745, + 0.029003514, + 0.0283209, + -0.016435474, + -0.013743931, + 0.015533151, + 0.0027141569, + 0.004311463, + -0.013273063, + -0.015250295, + -0.0052228165, + 0.012040135, + 0.015916508, + 0.018910943, + -0.013751667, + 0.005063694, + -0.019328589, + 0.0070099854, + 0.032573607, + 0.009024999, + 0.016742319, + -4.2398163E-4, + 0.0028533672, + 0.008982401, + 0.0215753, + -0.009119422, + -0.024297677, + 0.026983647, + 0.006766, + 0.0011759005, + 0.0020601433, + 0.006522123, + -0.0060469443, + 0.026960902, + -0.0019455492, + 6.820889E-4, + 0.0011992786, + 0.0052996804, + 0.0057736384, + 0.012865563, + 0.011808928, + 7.473498E-4, + -0.021729024, + 1.4873866E-4, + -0.009635994, + 0.0132082505, + -0.004951717, + -0.002990551, + 0.006924968, + 0.013875451, + 0.012852798, + -0.009130832, + -0.003996702, + 0.00592038, + 0.011100773, + -1.701701E-4, + -0.024758583, + 6.8822046E-5, + 0.0050182957, + -0.00600216, + 0.013456224, + 0.006867711, + -0.01618852, + -0.008197287, + -0.0017293295, + 0.012689577, + 0.0075089894, + -0.016298892, + -0.022303795, + 0.010598037, + -0.025681362, + 0.005191745, + -0.038569238, + 0.00598436, + 0.020204654, + 0.0057023726, + -0.028303033, + -0.0044571334, + -0.029939169, + -0.005272475, + -0.010254888, + -0.014065342, + 0.0074203406, + -0.006881236, + 0.008203481, + -0.027405271, + -0.0065487144, + 0.017288966, + -0.01344774, + -0.0148871895, + -0.0017954713, + -0.017318858, + 0.002691679, + -0.005401478, + 0.0017471211, + -0.020270295, + -0.0067157503, + 0.012827579, + -0.009023863, + -0.011091773, + -0.0017647512, + 0.007469449, + -0.012856303, + -0.029456165, + -0.0012560363, + -0.018381141, + 0.01878588, + 0.0036865952, + 0.011578439, + 0.005486217, + -0.0073437523, + 0.0069015855, + -0.020757787, + 0.0054548504, + 0.008684762, + -0.01659048, + -0.012819922, + -0.010003038, + -0.024017427, + 0.009810662, + 2.416358E-4, + -0.022584852, + 0.007566476, + 0.014524388, + 0.015048392, + -0.012544132, + 0.010528487, + 0.011495068, + -0.004155045, + 0.009662344, + 0.0045269025, + 0.027974103, + -0.0040757237, + 0.0033884395, + -0.02077369, + -0.022563878, + -0.008671493, + 0.011873934, + -0.006897563, + 0.0010167911, + 0.005969447, + -0.018090907, + -0.007836168, + -0.0010033539, + 0.008630084, + -0.008918129, + 0.0046237493, + 0.018148478, + 0.011194127, + -0.005435875, + 0.01603431, + -0.014417744, + -0.016692046, + 0.03333172, + 0.007031221, + 0.0017259391, + -0.022093128, + 0.0041777175, + 8.935109E-4, + 0.032647096, + -0.00502133, + -0.003326448, + -0.011916842, + 0.030011768, + 0.02716234, + 0.016096324, + -0.014613998, + -0.023098882, + 0.0035155534, + 0.021373723, + 0.005636585, + 0.0142604215, + 0.0033698652, + -0.0023234258, + -0.025839606, + 0.011745881, + -0.006590626, + -5.4340105E-4, + 0.013944775, + -0.013433207, + -0.009004866, + 0.006946712, + -0.0089387, + 0.0017057732, + -0.0066443575, + 0.006679584, + 0.014714695, + 0.0026667386, + 0.013438657, + 0.0016771987, + 0.021546287, + -0.016438963, + -0.004883858, + 0.0075145382, + 0.007507377, + -0.0070499443, + -0.010514631, + -0.030373162, + 0.0074451934, + -0.0045640594, + 0.003767087, + 0.004424083, + 0.02057349, + 0.0107939895, + 0.0011413872, + 0.022768194, + -5.036653E-4, + -0.02110478, + -0.024911264, + -0.013519439, + -0.018249903, + 7.4730295E-4, + -0.0046350365, + -0.009956435, + 0.012603975, + 0.01923034, + 0.013525573, + 0.0016154168, + -0.009253141, + -0.0010070065, + 0.029721417, + -0.0024222163, + -0.005342895, + -0.040220782, + -0.019015519, + 0.0037813298, + -0.014096457, + 0.004768641, + -0.009685701, + -8.549202E-5, + 0.009651221, + -0.045434363, + 0.028167928, + 0.017233359, + -0.007402601, + 0.0138600925, + 6.645216E-4, + -0.013494853, + 0.007094681, + -0.012069146, + -0.011960359, + -0.0163295, + -0.013161596, + 0.003401416, + -0.03592114, + -3.147637E-5, + -0.010185379, + 0.0060150363, + 0.011508159, + -0.01158299, + -0.0045314864, + 0.018531222, + -0.0025217782, + -0.010210783, + 0.01351934, + 0.0011869796, + -0.011601513, + 0.0045320382, + -0.008476932, + -0.0123797115, + 0.008463324, + 0.011076318, + -0.005243338, + -0.007336608, + 0.001008749, + 0.0047906316, + 7.5859623E-4, + -0.013500461, + -0.0034277039, + 0.013675425, + -0.008082639, + -0.016852794, + -0.022036865, + 0.010132713, + 0.008675473, + -0.0063311374, + 0.02363603, + -0.0068084043, + -0.01344466, + -0.022291707, + 0.017164191, + -0.0052789506, + 0.0032279373, + 0.016681382, + -0.034791797, + 3.6809169E-4, + 0.027746903, + -0.0033073544, + -0.0070022647, + 0.018382158, + -0.006425604, + -0.003540428, + 0.014769693, + 0.015796613, + -0.0019388398, + -0.024261862, + -0.008910945, + -0.0073473104, + 0.010052203, + 0.02184722, + 0.0028956588, + 0.017922927, + 0.022094889, + -0.007229627, + 0.051609516, + -0.011852151, + 0.01647991, + 0.0013641604, + 0.02344151, + 0.02031904, + -0.0015982579, + 0.0063347365, + -0.00885411, + 4.4141093E-4, + 0.007650125, + -0.017859824, + 0.0044999756, + -0.014723539, + -0.022464115, + -0.0080742845, + 0.014603527, + -0.009905296, + -0.004003195, + 0.0096266065, + 0.010255681, + 5.5317703E-4, + -0.002306146, + -0.01686701, + -0.011556257, + 0.0049659377, + 0.008815203, + -0.03199997, + -0.017851688, + 0.0041426793, + -0.03159994, + 0.024993146, + 0.024399063, + -0.008775467, + -5.8078504E-4, + -0.006070326, + 0.0063613513, + -0.0030708013, + 0.016041312, + -0.0016612179, + 0.010142467, + 0.009065225, + 0.015086714, + -0.023705322, + -0.0075965654, + -0.018900974, + 0.02182082, + -0.009292156, + -0.008971157, + 0.010601215, + 0.019974215, + 0.012437406, + -0.009062515, + 0.023427658, + -0.015197496, + 0.018193217, + 0.0019808137, + 0.0037601206, + 0.009627254, + 0.005632523, + -0.023508526, + 0.018887559, + -0.004692694, + 0.011174594, + -0.010922843, + -0.011478323, + -0.021048462, + 0.013070738, + 0.012573153, + 0.013027585, + -0.004370299, + -0.013092152, + -0.008571567, + -0.017035255, + 0.018343791, + -0.0078316545, + -0.020450085, + 4.4456792E-5, + -0.016525162, + 0.011028954, + -0.013472677, + 0.011244387, + 0.010852265, + 0.011126595, + -0.026532581, + 0.030899053, + -0.0036697637, + 0.003923211, + -0.0378668, + -0.00407684, + -0.0029249187, + 0.0045057624, + -0.005256411, + -0.006571903, + -0.009137334, + 0.03765483, + 0.01203085, + 0.02972989, + 0.008167662, + 0.015015204, + -0.029119587, + 4.671505E-5, + 0.01767278, + -0.016195608, + -0.0098860515, + -0.0078122052, + 0.007197172, + -0.0128203025, + -0.026806034, + 0.016058903, + -0.014293782, + -0.024529213, + 0.023937404, + -0.015508599, + -2.7016006E-4, + 0.014139722, + 0.0057891114, + -0.015919385, + -0.0035194901, + -0.011001136, + -0.0029730625, + 0.001972042, + -0.013355405, + -0.008401533, + -0.011610979, + 0.0022921467, + 0.015380956, + -0.0047144806, + -0.02969653, + 0.018612554, + 0.007430756, + -0.0076430514, + -3.96171E-4, + 0.0059000165, + 0.0014229285, + 0.01741932, + -0.010610356, + -7.220117E-4, + -0.0072134426, + -0.017587584, + -0.010939693, + -0.011354289, + 0.010105605, + 0.013788918, + -0.0058685825, + 0.01048729, + 4.9543724E-4, + -0.025572985, + 0.018477237, + -0.0015168787, + 0.021842191, + -0.006460028, + -0.006480067, + -0.009216853, + 0.002927486, + -0.0133461915, + -0.02935801, + 0.0072822166, + 0.023330104, + 0.014170889, + 0.004773422, + 0.0080697015, + -4.8649535E-4, + -0.028889613, + 0.0056496696, + 0.016413871, + 0.0032227207, + -0.018238239, + 4.2456095E-4, + -0.0050899857, + -0.008056924, + -0.0020778894, + 6.848203E-4, + 0.030673176, + 0.01666217, + 0.009803367, + 0.011017935, + -0.013567986, + 0.0018771123, + 0.012228371, + -0.017272519, + 0.015436485, + -0.017397715, + 0.0013292014, + 0.03077912, + -0.013696369, + 0.026284644, + 0.019227616, + 0.002506493, + -0.021618463, + -0.0054734284, + 0.019790232, + -0.008035943, + 0.03452032, + 0.018488947, + 0.0025787747, + -0.0041282605, + -0.014225417, + -0.02268563, + 0.022505559, + 0.010104261, + -0.008485294, + -0.02840065, + 0.022293013, + -0.009021898, + -0.0012611789, + -0.014463864, + -0.0029453856, + -0.02016463, + 0.034101423, + 0.0054054344, + -0.04323216, + -0.0021140107, + -0.0017864236, + -0.005623167, + 0.008487401, + -0.004517315, + -0.01640437, + -0.0034516926, + 0.008728752, + -0.0116169285, + -0.011324032, + -0.0022928342, + 0.016504312, + -0.0013484294, + 0.010568422, + 0.017233714, + 0.024053782, + 0.0035883905, + -0.023067938, + -0.0061884765, + 0.018505348, + -0.0014265388, + -0.007638714, + -0.009457703, + 0.0033841191, + 0.015094586, + -0.0090694465, + -0.0022136734, + -3.751824E-4, + -0.0040852795, + -0.015716005, + 0.00261186, + 0.007279491, + 0.004951057, + 0.01604747, + 0.013279242, + -0.006148748, + -0.01391198, + 0.009279561, + 3.8524982E-4, + 0.015564874, + 0.003397832, + 0.03789883, + -0.0012684447, + -0.00220915, + 0.010548011, + 0.013424212, + 5.233256E-4, + 0.004405858, + -0.0061826175, + 0.036707323, + -0.013005461, + 0.012847343, + 0.0061423364, + 0.013442451, + 0.017880276, + 0.008518924, + -0.014120437, + 0.008649636, + 0.03439896, + -0.0098774545, + 8.1881357E-4, + -0.0055897343, + 0.012546199, + 0.023451768, + -0.030686783, + -0.0016193498, + -0.010485562, + 0.0010590595, + -0.002231339, + 0.017292079, + -3.7406397E-4, + 0.020313416, + -9.653337E-4, + 0.011807224, + 0.042211574, + 0.00929697, + 0.0073170555, + 0.041376136, + 0.0020735841, + 0.0072657764, + 0.0040504904, + 0.006542883, + 0.018711299, + 0.0126054045, + 0.021934787, + 0.003713378, + 0.020719435, + -0.030672219, + -0.02228624, + 0.010473171, + -0.011054054, + -0.010935448, + 0.026822528, + 0.0015616541, + 0.025903936, + 0.001693573, + 0.007622561, + 0.032505073, + 0.011821975, + -0.0063583595, + -0.007826386, + -0.008638103, + -0.0014791406, + 0.026418064, + 0.012332549, + -0.0016729309, + -0.008289558, + 0.011918762, + -0.007097933, + 0.00581618, + 9.4579475E-4, + 0.00664791, + -0.021458533, + -0.010181217, + 0.009160704, + -0.01173601, + 0.008550376, + 0.00681416, + -0.026288621, + 0.009325269, + -0.009469925, + 0.01926529, + -0.0060925474, + -0.018048344, + -0.0032912772, + 0.009714454, + -0.0011035915, + 0.011950274, + 0.0011795454, + -0.003137834, + 0.0053459657, + 7.924272E-4, + 0.016615735, + 0.01964122, + 0.0073450427, + 0.014646096, + 0.0073613804, + 0.008912226, + 0.021044897, + 0.004395749, + -6.223767E-4, + 0.040998127, + 0.035289902, + 0.005932242, + 0.015288924, + 0.019429756, + -0.009695192, + 0.005471925, + -0.01753442, + -0.01417811, + -0.029048858, + 0.010177344, + -0.008619177, + -0.0027421885, + 0.0021233724, + 0.009360782, + 0.0017064922, + -0.01446294, + -3.5004807E-4, + -7.210494E-6, + -0.003736223, + -0.015644243, + 0.005616773, + 0.0032150124, + 0.011364929, + -0.0013261184, + 0.006219137, + 0.014402227, + 0.011630118, + 0.0029050494, + 0.015532816, + -0.0028194466, + 0.011431434, + -0.009800998, + 0.0010262218, + -0.0018585513, + 0.008253655, + 0.008576575, + -0.0137073165, + 0.003297986, + -0.007059584, + -0.0032181626, + 0.011853419, + -0.030047975, + -0.027751785, + 0.003201285, + 0.0042132963, + -0.010646559, + 0.0034825841, + -0.009392282, + -0.03789877, + 0.01227493, + 0.0018350909, + 0.0040796427, + -0.015740363, + -0.030220386, + -0.0024995175, + -0.019663027, + -0.010749948, + 0.01246594, + 0.013073149, + -0.02116716, + -0.026187064, + -0.007408659, + -0.018995747, + -0.023993248, + -3.1713766E-4, + -0.022175439, + 0.01229639, + -0.004357998, + -0.007535873, + -0.0036448895, + -0.0029659078, + 0.007224591, + 0.020299515, + -0.006657864, + 0.016131336, + -0.014013525, + -0.017673396, + -0.004983177, + -0.006810919, + -0.017571347, + 0.023748007, + -0.009097031, + 0.011123646, + 0.008261361, + 0.016080398, + -0.0050198226, + -0.0067158947, + -0.017057925, + -0.0027615887, + -0.032291893, + 0.015582365, + -0.027724732, + 0.018564828, + 0.01755419, + 0.014155303, + 8.238937E-4, + -0.003987142, + -0.0028083788, + -0.023307746, + -0.009951594, + -0.012573829, + 0.016186818, + -0.025424572, + 0.007879706, + 0.0012671216, + 0.022722797, + 0.0017485825, + -0.0022731652, + -0.030083073, + 0.0044287033, + -0.021983083, + 0.01731734, + -0.022654114, + 5.346617E-4, + 0.020054854, + 0.040586594, + 0.007728133, + -0.035158236, + -0.014264105, + -0.017082114, + -0.01344961, + 0.031222977, + 0.0043900423, + -0.020874022, + -0.0057550687, + -0.016698873, + 0.016571656, + 0.013719739, + 0.0013045451, + -0.0011640582, + 0.012466069, + -0.011674032, + -0.009493167, + -0.0067178286, + 0.022315308, + -5.9900054E-4, + 0.027186483, + -0.034862407, + -0.01055352, + 0.0027106102, + -0.0023193136, + 0.0014096166, + 0.0068066437, + 0.004820333, + 0.028646905, + -0.0438333, + 0.0012023645, + 8.114398E-4, + -0.0069166087, + -0.010462902, + 0.0076466957, + -0.015720084, + -0.016217338, + -0.021530535, + 0.0021567426, + -2.1966819E-4, + -8.863228E-4, + -0.007935184, + -0.0024653499, + 0.016393233, + -0.017078873, + 0.023153517, + -0.0090333745, + 0.01451654, + 0.0042547802, + 0.027983233, + 0.006936792, + 0.0064050094, + -0.016244732, + 0.0020634884, + -0.019222088, + 0.015838886, + -0.022153435, + 0.008791104, + 0.005590789, + 0.0021383779, + 0.0038098798, + 0.016922852, + -0.030987674, + 0.006620053, + -0.006000589, + -0.026475145, + -0.0029998801, + 0.016586503, + 0.0050386535, + -0.006884529, + -0.01058797, + -0.0076881154, + -0.011469981, + -0.0068442635, + 0.0037816912, + 0.027800126, + 0.0063506933, + 0.0126117645, + 0.020399643, + -0.003924541, + -0.033985138, + 0.020029463, + 0.013257778, + -0.01594151, + 0.010127791, + -2.521879E-4, + 0.0060832542, + -0.014348356, + 0.016300853, + 0.009076656, + 0.006829174, + -0.028829765, + -0.012508071, + 0.031855684, + -0.02291919, + 0.009134182, + 0.0032503195, + -7.830304E-5, + 0.017823143, + -0.007450159, + -0.007789653, + 0.01732328, + -0.012693206, + -0.03154586, + -0.00980184, + -0.005248014, + 0.020659836, + 0.010963618, + -8.165882E-4, + -0.0024015373, + -0.010738624, + -0.019419631, + -0.013896692, + 0.024939211, + 0.021187084, + -0.013382614, + 0.0077726142, + 0.015163445, + -0.03579456, + 0.01014424, + 0.018421324, + 0.023767369, + 0.014723575, + 0.0060095135, + -0.023297569, + 0.005862486, + 0.01222502, + 0.019534763, + 0.009297589, + 0.0019350833, + -0.009788528, + 0.01604373, + -0.031671483, + -0.01570209, + -0.029847033, + 0.0052950922, + -0.009478864, + -0.012146129, + -0.014888814, + -0.019088306, + 0.011196498, + 0.0021147989, + -0.04598268, + 0.007289044, + -0.0017389177, + 0.023697656, + -0.014156338, + -0.019411413, + -0.004145247, + 0.01405728, + 0.00432283, + -0.009569421, + -0.0047059506, + 0.0013821209, + 5.598902E-4, + -0.024058433, + -0.0019116648, + -5.12978E-4, + 0.01164589, + -0.017821074, + 0.0031130149, + 0.010911005, + -0.048678394, + -0.030425226, + -0.0016847698, + -0.019944957, + -0.00317372, + 0.0011203723, + 3.452219E-5, + -3.237123E-5, + 0.003542652, + 0.0012178716, + 0.0031032036, + 0.0070197014, + 0.028159011, + -0.001615229, + -0.017588027, + -0.008601065, + -5.007271E-4, + 0.008556019, + -0.02467678, + 0.008439941, + 0.022267144, + -0.01696275, + -0.0077117393, + 0.03359721, + 0.020781467, + 0.004000128, + 0.005285241, + -7.4247277E-4, + 0.0010224285, + -0.00957532, + -0.011111611, + -0.0020465672, + -0.026546152, + 0.0033862537, + -0.009110147, + -0.0069062305, + 0.029736733, + -0.0013036554, + -0.011509684, + 0.051002376, + -0.018987771, + -0.0075881393, + 0.038978323, + -0.01664857, + 0.0052749324, + -0.003167558, + -0.014322325, + -0.009445082, + 0.0051799393, + -0.03739347, + -0.008088565, + 0.035698853, + 0.011515258, + 0.011055668, + 0.012432511, + -0.005182532, + -0.005199792, + -0.01659625, + -0.010857233, + -0.0010477712, + -0.024304964, + -0.004681037, + 0.015868988, + 0.01864449, + -0.015651567, + 0.03459455, + 0.022050139, + 0.009365899, + 0.020591697, + -0.01044841, + 0.028033508, + 0.0023738665, + -0.031122267, + 0.0057508033, + -0.021521665, + -0.009892438, + -0.012995623, + -0.033846635, + -0.008968532, + -0.002867068, + -0.001778612, + -0.019410089, + 0.0053876042, + -0.023068637, + 0.014563746, + 0.006382608, + 0.019817475, + 0.0034630557, + -0.010014024, + 0.029311063, + 0.02661572, + -2.7897637E-4, + -0.0030115868, + 0.018403346, + -0.018700117, + 0.011633807, + 0.024346583, + -0.012193288, + 0.010941788, + 0.025493234, + -0.009204133, + -0.035217013, + 0.026185926, + 0.015621473, + -0.008908398, + -0.007356601, + -0.0174267, + 0.020285951, + -0.0023035165, + -0.024240974, + 0.004164158, + 0.028100023, + -0.0076394803, + -0.0042159953, + 0.006435408, + -0.0047450177, + -0.0035605882, + -0.009940291, + -0.010406153, + -0.011839412, + 0.0072563477, + 0.0070571927, + 0.0010576877, + -0.008040103, + -0.0012311306, + 0.027912004, + -0.020008627, + 0.014190662, + -0.009487802, + 0.020947058, + -0.012063372, + -0.0040676296, + 0.0053511355, + -0.003847913, + 0.015576127, + 0.008461708, + 0.035097077, + -0.01106642, + 0.0140612265, + 1.9173214E-4, + 0.007898144, + -0.002821214, + 0.006821489, + 0.01569938, + 0.018248536, + 0.03417712, + -0.012141781, + -0.00977759, + 0.009237156, + -0.018223198, + 0.0043393592, + -0.0019446409, + -0.018889802, + -8.6999685E-4, + -0.006560756, + 0.01612611, + 0.008667981, + -5.124157E-4, + 0.005658409, + 0.009805729, + 0.012394125, + 0.011670578, + 0.039544284, + 0.029136546, + -0.003726871, + 0.007799385, + -0.004435845, + -7.209534E-5, + 5.241118E-4, + -0.009015867, + -0.0077234805, + -0.0010892111, + 0.0033464797, + 0.0064885267, + 0.0063556745, + 0.010168148, + -0.017764267, + 0.0036302195, + -0.03190096, + 0.023452817, + 0.01855557, + -0.005395755, + -0.0019970858, + 0.0051488215, + -0.0015008837, + -0.015887411, + -0.008818537, + 0.014248188, + 0.021718608, + 0.009150101, + 0.014137359, + -0.0058987727, + -0.016728846, + -0.030467337, + -0.012651138, + -0.0036668621, + -0.014301526, + -0.009294932, + 0.016769925, + -0.009137761, + -0.019734321, + 0.015985617, + 0.0028763502, + 0.010628056, + -0.008075474, + 0.0047091157, + -0.0020509583, + 0.012078385, + -0.015541179, + -4.9779325E-4, + 0.032234147, + -0.009128526, + 0.020112073, + 0.026636435, + -0.0132599585, + -0.022203038, + -0.004562965, + 0.022713497, + 5.7711746E-5, + 0.030252052, + 0.004473139, + -0.0010544368, + 3.6238783E-4, + 0.004478807, + 0.012383819, + -0.010579313, + -7.4071874E-4, + 0.0066146385, + -0.0040864283, + 0.02356136, + -0.0048153307, + 0.008630055, + -0.032757226, + -0.043548062, + -0.0056438637, + 0.007030401, + 0.015855217, + 0.01617615, + 0.021155428, + 0.01983029, + -0.0028579927, + -0.008821966, + 0.0029315585, + -0.024603037, + 0.011199569, + 0.009621244, + 0.013174409, + -4.081911E-4, + -0.0040270933, + -0.014564317, + -0.016589722, + 0.006434678, + 0.024001103, + -0.023212418, + -1.4195146E-4, + -0.024321685, + -0.009431681, + 0.04759985, + 0.0037220456, + 0.0060931747, + -0.01637695, + -0.028426498, + -0.038763426, + 0.003859565, + 0.0143898, + -0.018882984, + 0.03158446, + 0.011138631, + -0.016796585, + 0.0010756379, + -0.0035762803, + 0.0029679397, + 6.116615E-4, + 0.0047202394, + 0.023062719, + 0.026557514, + -0.015460906, + -0.019861873, + -0.013636068, + 0.007904516, + -0.021823516, + 0.026014315, + 0.0020404768, + -0.009877751, + 0.022639375, + -0.029534698, + -7.5556216E-4, + 0.0020186785, + -0.009938012, + -0.0066386885, + -0.019892493, + -2.2958948E-4, + 0.028800715, + -0.023755535, + 0.016103523, + -0.0034370907, + 0.016543696, + 0.021033771, + -0.019341636, + 0.005428949, + 0.01253122, + -0.014816723, + -0.028619831, + -0.018034542, + 0.007194879, + 0.004226374, + -0.024550175, + -0.013297096, + -0.014892274, + -0.015986145, + -0.015683163, + -0.019405738, + -0.016672343, + -0.012354765, + 5.1858853E-5, + 0.008765819, + 7.686774E-4, + -0.0054204944, + 0.002981456, + 5.365201E-4, + 0.034139518, + 0.015274313, + 0.014360524, + -0.0010632961, + -0.015686264, + 0.02729033, + 0.0058704233, + 0.023513785, + -0.0012987055, + 0.004593136, + 0.016438529, + 0.009366586, + -0.004972199, + 0.002363388, + 0.0073418617, + 0.0030451184, + 0.019488145, + -0.0076792417, + -0.008290941, + -0.010249198, + 0.021028705, + -0.01155973, + 0.003833152, + -0.030454712, + -0.018296605, + -0.00214517, + -0.01469928, + -0.0075823413, + 0.023342682, + -0.004412186, + 9.5145823E-4, + -0.010055972, + -0.008672389, + -0.018663336, + 0.009445118, + -0.007424573, + -0.010826278, + -0.018041445, + -0.0023981442, + 0.019821705, + -0.008181331, + -0.015937945, + 0.023782108, + -0.0017811679, + 0.010308887, + 0.01703678, + 0.0073841168, + -0.022133285, + 6.6292356E-4, + -0.016583571, + 0.039458457, + 0.02544966, + -0.020567784, + -0.020018663, + 0.0018760809, + -0.011998883, + 0.0110821165, + -0.029025251, + -0.0013484467, + -0.0033152772, + -0.008672076, + -0.021005228, + 0.0059386618, + 0.009118879, + -9.263278E-4, + 0.022384476, + 0.026470102, + -0.0032189998, + 0.014214669, + -0.011809931, + -0.006222616, + 0.0023110071, + 0.0019977768, + -0.0023290783, + -0.0047752955, + 0.011394211, + 0.023017963, + -0.03163655, + -0.009111647, + 0.021895226, + 0.010397135, + 0.0020291274, + 0.013422423, + -0.012590814, + 0.017869066, + -7.575043E-4, + -0.005837501, + -0.041512944, + -0.025193332, + 0.0058564423, + -0.018959321, + -0.017853672, + 0.031356633, + 0.02517795, + -0.015499943, + 7.4205623E-4, + -0.04184544, + -0.008399912, + -0.002938449, + -0.0047970875, + 0.008717069, + 0.006783121, + -0.045471292, + 0.016467646, + -8.036649E-4, + 0.005156374, + -0.00755765, + -0.0226553, + -0.008958452, + 0.0025124552, + 0.008293468, + 0.0022806444, + 0.0018024707, + -0.010091646, + -0.00539799, + -0.008283613, + 0.039690718, + -0.014568201, + 0.005874167, + 0.006627665, + -0.015224236, + 0.002050121, + 0.007999546, + -0.019356117, + 0.010181136, + 0.024066057, + -0.01438457, + 0.008452316, + -7.896255E-4, + 6.69866E-4, + 0.012146794, + -3.209773E-4, + -0.013519202, + 8.3979906E-4, + 0.012227264, + 5.522226E-4, + 0.017117864, + -0.0102585135, + -0.0074618272, + -0.027471852, + 0.022353498, + 0.0023234014, + 0.002899359, + -0.0022227229, + 0.013396641, + -0.0038097473, + 0.0026230207, + -0.012678543, + 0.0020783218, + 9.3121565E-4, + -0.012225162, + -0.019913716, + -9.0564875E-4, + 0.011134947, + -0.014714599, + 0.0015791764, + -0.048456606, + 0.0067963568, + -0.0023613106, + 0.0033503198, + -0.015556782, + 0.019587535, + -0.012824996, + -0.0041040666, + -0.01149915, + 0.018600898, + -6.096978E-4, + 0.009567128, + 0.024082242, + -0.046264436, + 0.014367898, + 0.0032969653, + 0.0013024277, + 0.013458412, + -0.0121300435, + -0.010954661, + -0.00953304, + 0.0039381813, + 0.031185739, + 0.019952636, + 0.016647497, + -7.6776824E-4, + 0.027601933, + 0.025855383, + -0.009834875, + -0.0213771, + -0.0015157101, + -0.011378734, + 0.004383803, + 0.016629651, + -0.029282162, + -0.012301097, + 0.018379794, + 1.9746779E-4, + -0.001540732, + -0.02378716, + 0.0039069117, + 0.037518818, + -0.015089937, + 0.025709629, + -0.02535295, + -0.0015182965, + -0.024782239, + 0.0058885114, + 0.023262294, + -0.014480267, + 0.019492384, + 0.0068344437, + 0.017734023, + -0.0021952663, + 0.0039506834, + -0.026737465, + 0.008868596, + -0.011093422, + 0.01687575, + -0.014003109, + 0.031186637, + 0.01757095, + 0.015084708, + 0.007787997, + -0.0072654067, + 0.015939748, + -3.5598158E-4, + -0.011295028, + 0.0129881855, + 0.013695571, + -0.010524121, + -0.013765439, + 0.0043601147, + -0.012046138, + -0.0057219015, + -0.015381133, + -0.012195394, + -0.0077320123, + 0.014385088, + 0.016974429, + -0.016598398, + 0.020139761, + 0.0064729685, + -0.021127848, + 0.015875598, + -0.02041264, + 0.0028047066, + 0.0071883295, + 0.007891016, + 0.013507141, + 0.019230971, + -0.009097358, + -0.016802466, + -0.018032597, + 0.0075171986, + -0.004367424, + 0.008673314, + -8.750127E-4, + -0.020875007, + -0.0065731993, + 0.009063389, + 0.0023014303, + -0.009331918, + -0.010630744, + 0.0038775336, + -1.9067616E-4, + -0.015518315, + -0.017869815, + -0.008727035, + 0.03617473, + 0.011074765, + -0.015331541, + -0.00664929, + -0.011062023, + 0.011117885, + 0.0052789687, + -0.023128487, + 0.0042205183, + 0.0057702577, + -1.2664722E-4, + -0.013928312, + -0.007353712, + 0.0066413996, + 0.032139022, + 0.017934937, + -0.01647509, + -0.012059621, + 0.0035586383, + -0.028760072, + 0.032426275, + 0.02385979, + -0.017795797, + -0.011309826, + 0.007614039, + -2.7082863E-4, + 0.0071686152, + -0.016509209, + 0.0051621613, + 0.018814076, + 0.0015845407, + 0.027503286, + -0.0029678636, + -0.0042733084, + 0.0060698087, + 0.017885266, + 0.0047821244, + -8.941835E-4, + 0.014754763, + -0.011841572, + -0.015725298, + -6.4445735E-4, + -0.007419955, + -0.0172556, + -0.008945891, + -0.006558731, + -0.027258959, + -0.006516888, + 0.012439661, + -0.012563564, + 4.8387636E-4, + 0.018687049, + -0.0031274916, + 0.006637654, + 0.004488193, + 0.0021005156, + 0.01373993, + 0.033728153, + -0.006653589, + -0.004735838, + -0.030002626, + -0.022532124, + -0.009536418, + 0.00476113, + -0.010034759, + 0.0041529858, + 0.020029029, + 0.013952828, + 0.0050968416, + -0.010716196, + 0.016273975, + -0.027041087, + -0.0121215405, + -0.003394357, + 0.014600146, + 0.0043540657, + -0.015686965, + 0.003086807, + 0.0054285564, + 0.010278967, + 0.015611917, + 0.0050051725, + 0.013419224, + -0.017785957, + 0.0028856222, + 0.011613502, + -0.009944467, + 0.005170937, + 0.009530652, + 0.005537575, + -0.013271173, + 0.037928335, + -1.0850114E-4, + 0.020118793, + 0.0014298375, + -0.0014606382, + -0.006843954, + 0.010295912, + -0.020504085, + -0.0067832405, + -0.015994672, + -0.030136246, + -0.013949298, + 0.0035249277, + 0.0058482788, + -0.019684374, + -0.025505701, + 0.0021561193, + -0.016556535, + -0.017207405, + 0.0070721805, + 0.0065974905, + -5.8799016E-4, + -0.0015329439, + 0.008305263, + 0.0065046335, + -0.02302228, + 0.007319853, + 0.029321179, + -0.020856585, + 0.0061887093, + -0.010244316, + 0.016778547, + 0.020149948, + -0.016037328, + 0.01194467, + 0.012172717, + -0.029096695, + -0.027394772, + 0.018154839, + 0.005966362, + -0.01290131, + 0.002310402, + -0.0034307719, + 0.019877788, + 0.009390283, + -0.017309446, + 0.0122147, + 0.004837397, + 0.020544581, + 0.010498955, + 0.003590961, + 0.003763424, + -0.0054112175, + 0.025684493, + 7.034786E-4, + -0.0075475685, + -0.013425488, + -0.029824372, + 0.014708879, + 0.022714105, + -0.0041167685, + 0.014164142, + 0.006368068, + -0.001937191, + 7.124781E-4, + -0.0046984577, + -0.01007165, + -0.008973342, + 0.016426893, + -0.0113044875, + 0.013739788, + 0.026149733, + 0.0011149012, + 0.01959086, + -0.019166663, + -0.0202175, + 0.016935827, + 5.994474E-4, + -0.02703608, + -0.004650248, + -0.0014986704, + 0.009302276, + 0.0033612975, + 7.386824E-4, + 0.020415956, + -0.0112946825, + -0.017130971, + 0.017544031, + -0.00785647, + 0.0144072, + -0.004516507, + -0.0017374883, + 0.0036493514, + -0.007926063, + -0.004420211, + -0.02642609, + 0.0058600265, + 0.0139175225, + 0.01620699, + 0.00795731, + 0.028962193, + 0.026033266, + -0.021473117, + -0.00211471, + -0.0052801617, + -0.014513933, + -0.0034675596, + -0.008480598, + 0.013844244, + -0.004115756, + -0.012279149, + 0.0013386483, + 0.01106178, + 0.0010097065, + -0.032978717, + 0.0051955674, + 0.011079241, + -0.0034222647, + 0.02209479, + 8.703914E-4, + -0.0023065966, + -0.0018035681, + -0.02193654, + -0.0040015457, + 0.0012067561, + -0.022634126, + 3.3877586E-4, + -0.0034347042, + 8.329826E-4, + 0.01843463, + 0.0105822, + 0.012098482, + 0.006921615, + 0.009938982, + 0.023440765, + -0.01176344, + -9.31107E-6, + 0.001466035, + -0.01667251, + 0.0074146343, + -0.006061924, + 0.025559744, + 0.006056887, + 0.023555264, + 0.026113473, + -0.031284165, + 0.026438022, + 0.020566784, + -0.0041168225, + 0.0022784455, + 0.0018917382, + -0.0052110236, + 0.023791801, + -0.0019699018, + -0.028590899, + -0.021850636, + 0.0017190988, + 0.020302534, + 0.019487435, + -0.015045882, + 0.0074340585, + 0.013642177, + -0.012353733, + -0.0062162247, + 0.006337676, + 0.012788868, + 0.0075765136, + 0.007777527, + -0.030952005, + 0.001832684, + 0.030834148, + -3.549108E-4, + -0.03517013, + -0.0039536245, + -0.011334319, + 4.2981314E-4, + -0.021695599, + 0.03221387, + 0.013694596, + -0.020527907, + -0.0075063016, + -0.003635475, + -0.007819413, + 0.0036569056, + -0.02654068, + 0.0070294943, + 0.0017616155, + -0.004981454, + -0.0053551076, + 0.0077203824, + -0.0043832418, + -0.01898099, + 0.0073267347, + 0.019189455, + -0.025580477, + -0.012784742, + -0.009634774, + 0.01599504, + 0.0070227585, + 0.01601491, + 0.012705199, + 0.027939048, + 0.0043221493, + 0.023856848, + 0.0054741367, + 0.021915875, + -0.011028557, + 0.010168476, + 0.010468284, + -0.001019987, + 0.007834445, + 0.009045084, + -0.017721204, + 0.010740812, + 0.0050095823, + -0.012684078, + 0.046997212, + -9.192585E-4, + 0.010530162, + -0.012562936, + 0.0017398591, + 0.004570708, + 0.03243579, + 0.0035895326, + -0.023360249, + -0.0067946943, + -0.008905201, + -0.023723753, + -0.0014916897, + -0.006084114, + -0.038992584, + 0.02481678, + -0.032106187, + -0.00399413, + 0.0015742475, + 0.005734337, + 0.019302867, + 0.02114783, + -0.0133220935, + 0.0049082227, + 0.008591186, + -0.016796097, + -0.0048928573, + -0.0033907962, + -0.009440626, + -0.0022769528, + 0.020559411, + -0.006065892, + 0.009862046, + -0.00930847, + -0.012270052, + 0.024049656, + 0.02663924, + -0.0015571665, + -0.009697542, + 0.01356813, + -0.0034337929, + 0.010668154, + -0.0043551195, + 0.023514606, + 0.02937796, + -0.0141845215, + 0.0013200074, + 7.2869565E-4, + -0.0069357874, + 0.012417163, + 0.023489587, + 0.0011400229, + 0.033264037, + 0.0012326546, + -0.002832435, + 0.00399121, + 0.002120761, + 0.01096683, + -0.029509302, + 0.012399055, + -0.003441535, + -6.5759395E-4, + 0.021624882, + 0.03811895, + 0.02215678, + -0.01506637, + -0.027510744, + 0.010052754, + -0.0073204096, + -0.013745673, + -0.011121487, + 0.011813881, + -0.0012822488, + -0.006382385, + 7.6857914E-4, + -0.004632516, + 0.023517353, + -0.02018867, + 0.0040996056, + -0.014606928, + -0.01194315, + -0.009415539, + -0.026666092, + -0.015680132, + 0.007352639, + 0.005652437, + 0.019426538, + -0.025570583, + 0.0011963869, + 0.0067835813, + -0.016222106, + 0.03638931, + 0.023667991, + -0.011519771, + -0.017903943, + -0.010169874, + 0.011090686, + -0.008585518, + 0.002721835, + -0.009721384, + 0.04597773, + 0.023209073, + -0.0103138685, + 0.014086214, + 0.00481682, + -0.023256017, + -0.009124486, + -0.018683258, + -0.006464116, + 0.027159942, + -0.010967739, + 0.0028178191, + -0.009924708, + 0.005189343, + -0.0013136708, + 0.008876944, + 6.300512E-4, + -0.003434537, + 0.011080123, + 0.0011490493, + 0.0036374517, + -0.005240511, + 0.00570387, + -0.0020920685, + 0.0068597146, + 0.013394125, + -0.030024305, + -0.014330533, + 0.008843465, + -0.002712794, + 0.022210453, + 0.016073441, + -0.048282888, + 0.04627418, + 0.0011189717, + 0.011735289, + 0.011171626, + -0.0241034, + 0.00817309, + -0.0017870255, + 0.015710907, + -0.013799299, + -0.016987128, + -0.010399021, + -0.0294488, + 0.010412181, + 0.023533674, + -0.0150096975, + 0.0060955, + -0.008019702, + -0.0046227006, + -0.0015012486, + 0.04163648, + 0.015041141, + -0.009077931, + -0.020656573, + 0.0072767464, + 0.0015213107, + -0.020231312, + -0.0011974638, + 0.003432516, + -0.007171469, + -0.02032946, + -0.010028733, + 0.013578516, + 0.010304187, + -0.019361254, + 0.01029225, + 0.010272264, + -0.010220798, + -0.011588814, + -0.017485507, + -0.024001604, + -0.01234215, + -0.020626439, + -0.02063692, + 6.923615E-4, + 0.0035831027, + -0.005624923, + -0.0033737642, + -0.024209939, + 0.006813794, + -0.0064656693, + 0.006130619, + -0.016160863, + -0.018687874, + -0.0067911563, + -0.014926265, + -0.015782908, + -3.2463874E-4, + 0.0013203096, + -0.006140677, + -0.003554495, + 0.006711258, + -0.0011952925, + 0.038907275, + 0.025420975, + 0.012087009, + -0.013741461, + 0.0040395716, + -0.01771941, + 0.0029688743, + 0.015666874, + -0.009207637, + 0.0056786183, + 0.018939763, + 0.002111069, + 0.008350844, + -1.262179E-4, + -0.023435159, + -3.040012E-4, + 0.0095343245, + 0.0030042662, + -0.015959084, + 0.011989896, + 0.011309773, + -0.0067392164, + 0.016289806, + 4.1629373E-5, + 0.0062316917, + 0.0064523327, + -0.011126092, + -0.007672077, + 0.029618299, + 0.00563767, + -0.017652925, + 0.0042686393, + -0.0033833834, + -0.02034203, + 0.028183378, + -0.008790165, + -0.019787438, + 0.003146011, + -0.012979931, + 0.0031202317, + 0.010481703, + -0.01829466, + -8.423903E-4, + -0.008036747, + 0.011787252, + -0.004676412, + 0.01962159, + 0.006125318, + 0.02868661, + 0.011012205, + -0.0132703185, + -3.6154356E-4, + -0.0026353565, + -0.013687829, + 0.01758536, + -0.0070302123, + -0.0017591147, + 0.0045200344, + 0.025639508, + -0.01606799, + 0.015376793, + 0.011041806, + -0.011609549, + -0.0013888265, + -0.018994201, + 0.008553315, + 0.015198874, + -0.0102425385, + 8.8571105E-4, + 0.024838254, + -0.0173674, + -0.004654104, + 0.0061464724, + -0.0035594385, + -0.0073616845, + 0.01896092, + 0.020809753, + 0.016040891, + -0.013754118, + 0.014960381, + 0.018513227, + -0.02340474, + 0.008606079, + 0.0052666618, + -0.0024931738, + 0.0028388796, + 0.010554779, + 0.007053248, + -0.010851584, + 0.005870846, + -0.016977081, + 0.014302684, + 0.004537391, + -0.02096632, + -0.016596222, + -0.013080721, + 0.020410374, + 0.011355045, + -0.007607491, + 0.021883896, + -0.015726227, + -0.00993785, + -0.01027951, + -0.005710037, + 0.010610967, + -0.0297427, + -0.0059924405, + -0.0041118353, + 0.01809433, + -0.021869581, + -0.014774215, + -0.0024938078, + -0.0036043166, + 0.022629129, + 0.018455366, + 0.024269614, + -0.021968583, + 0.0027077792, + 0.015987128, + 0.0039656493, + 0.0043784273, + 0.025626134, + -0.016090127, + -0.004814909, + 0.011444582, + 0.01476286, + -0.019336332, + 0.032086615, + -0.011051834, + -0.014052927, + 0.012062054, + -0.02504513, + 0.015633972, + 0.007228132, + 0.014608741, + 0.004865206, + 0.015323748, + 0.0018685244, + 0.0048497305, + 0.028845383, + 0.03912532, + -0.0096691465, + 0.00409258, + 0.026896557, + 0.0122462055, + 0.017068744, + -0.002119111, + -0.0031421673, + 0.019527674, + -0.006573359, + 0.0036422731, + -0.023162136, + 0.020560926, + 0.02214353, + 0.0064367508, + 0.016873596, + 0.019212719, + 0.00753738, + 0.003913337, + 0.016896207, + -0.012634316, + 0.015574835, + 0.007390472, + 0.0018128661, + 6.395002E-4, + -0.005769675, + 0.019031715, + 0.02883181, + -0.0019129736, + 0.023005696, + 0.00423794, + -0.009726425, + -0.008631553, + 0.008508029, + 0.028317388, + 0.021826293, + 0.0047836322, + 0.0073570865, + 0.028318977, + 0.02655749, + 0.0015596242, + 0.016832614, + -0.017925773, + -0.005802073, + -0.004246201, + 0.02718581, + -0.008876571, + 0.013212339, + 0.017140182, + 0.0048969025, + -0.001091969, + -0.034547605, + 0.008252762, + 0.017187657, + 0.035064626, + 0.002449657, + 0.00608868, + 0.0133769605, + 8.097377E-4, + 0.016370172, + 0.002340661 ], - "paletteEmbedding": [ - 0.042555124, -0.01410923, -0.015194429, 0.03834017, -0.0066266153, - 0.014333667, -0.013303821, -0.02619508, 0.016708396, -0.046820384, - 0.018275566, 0.0358623, -0.03577195, -0.051172588, 0.010443878, - -3.4045996e-4, 0.00934758, -0.016471583, 0.032778118, -0.0072803725, - 0.003023631, 0.0131168915, 0.010060414, -0.053963467, -0.007926177, - -0.0012607571, 0.017486589, 0.008570706, 0.003958579, -0.022606524, - 3.3922755e-4, 0.020637132, -0.041782357, 0.009690915, 0.01314301, - 0.031887352, -0.021591552, -0.017195318, -0.03507036, -0.009820222, - 0.02300892, -0.03676645, 0.014137235, 0.0054119607, 0.021329436, - -0.044153754, -0.00986806, -0.0023976215, 0.0183152, 0.012694005, - -0.024005389, 0.022567917, -0.06813424, -0.015574771, -0.045265306, - 0.053603854, 0.0623586, -0.01710788, 0.011885456, -0.0023134963, - -0.007304517, 0.029769532, 0.0026118206, -0.010475811, -4.1819207e-4, - 0.03996225, 0.03998971, -0.030091222, -0.059861865, 0.016932612, - -0.02989409, -0.048414163, -0.0061079846, 0.03025013, -0.031499654, - 0.011737194, 0.044767994, 0.024412768, -0.023341205, -0.022056442, - 0.0029438871, -0.020763021, 0.06268138, 0.04775353, 0.0055594933, - 0.032810878, -0.0151353385, 0.018010141, -0.016977664, 0.032433283, - -0.013034686, 0.01550399, -0.034889277, 0.026836544, -0.027850555, - 0.0094876895, -0.005182672, 0.008762791, -0.010081996, -0.028056623, - -0.012754507, -0.044054147, -0.04138289, 0.015872607, -0.008136941, - 0.02156069, 0.018730342, -0.011381264, -0.03148359, -0.05533283, - -0.0093017565, 0.026519155, 0.005098471, 0.07332777, 0.00399921, - 0.020407762, 0.058472592, -0.037275966, -0.024853004, 0.019061595, - 0.008279356, -0.033875078, -0.027909568, 0.031552598, -0.001546514, - -0.0062778876, 0.03929928, 0.04575175, -0.0074449186, 0.0121669825, - -0.028111158, 0.02328415, 0.004755443, 0.040506598, 0.05356166, - 0.05369894, -0.026952675, 0.02166593, -0.0090382835, -0.0091464585, - 0.04003804, -0.059907436, 0.03508191, -0.028638212, 0.013758451, - -0.022069972, -0.024522172, 0.025614196, -0.03196618, -0.016392378, - -6.979198e-4, 0.080607384, 0.04107379, -0.020627955, -0.012215089, - -0.028776733, -0.023057947, -0.021924866, -0.0055126594, -0.018965684, - -0.008134034, 0.0255646, 5.053077e-4, -0.006140866, 0.023367526, - 0.032479387, -0.03801114, -0.011854476, 0.03362188, -0.0060537313, - -0.056794573, -0.021883234, -0.03227021, 0.059071936, -0.008871015, - 0.008721312, 0.017327808, -0.0050583123, -0.0012775394, -0.038474012, - 0.024863042, 0.008083763, -0.016352959, 0.013820183, -0.0617171, - 0.004419953, 0.03941722, -0.04385482, -0.079634026, -0.009976105, - -0.006411783, -0.056342028, -0.07256589, -0.045447122, -0.01940489, - 0.0064152884, -0.026210468, 0.034064908, 0.06437921, -0.03365203, - 0.0046642255, 0.017365202, -0.008409379, -0.005501419, -0.00157018, - -0.038971774, 0.050522633, -0.054514974, 0.009114191, 0.027987253, - 0.014733726, 0.04947239, -0.03267276, -0.041363314, 0.0024515497, - -0.0016122011, 0.038446452, 0.011242967, 0.006349918, 0.011363128, - 0.029039746, 0.0054433346, 0.0021055264, -0.026816977, -0.044005316, - -0.0015269659, -0.03239527, 0.006835453, -0.027666906, -0.0020123522, - 0.025928555, 0.034596562, -0.049714927, -0.053498335, -0.01469139, - -9.8845405e-5, -0.017767195, 1.5167528e-4, 0.012075817, 0.016634587, - -0.008608002, 0.005325711, 0.0368051, -0.008892633, 0.007216822, - -0.028625118, 0.054039586, 0.009802053, -0.0048832786, -0.0067900554, - 0.028914269, 0.0058188518, 0.002636048, -0.036212616, 0.0013986755, - 0.05275705, 0.017717455, 0.006866622, -0.026559068, 0.060509052, - 0.028829036, -0.004506588, 0.01447011, 0.031163888, -6.343634e-5, - 0.0073235626, 0.036491007, 0.005494872, 0.023758112, -0.02140885, - 0.06145298, 0.01782406, -0.003459427, -0.08886687, 0.037625194, - 0.0018695287, 0.013675368, -0.04596998, -0.005374416, 0.048595753, - 0.035968896, 0.037661135, 0.048039336, 0.049809225, -0.052697696, - -0.0032019906, -0.009652124, 0.04554745, -0.038634982, -0.055368017, - 0.01175286, -0.035284966, -0.051844593, -0.0346111, -0.008206817, - 0.038054414, -0.019285126, 0.018675715, -0.023260597, 0.0036719947, - 0.03938897, 0.04394874, -0.006470857, -0.0045669614, 0.0038167099, - -0.02400637, -0.010127059, -0.029975718, 0.02531293, -0.020670166, - -0.007640071, 0.012408312, -0.013995126, 0.028215565, -0.004917905, - 0.028912501, 8.5257436e-4, 0.02785737, 0.027521135, -0.015604467, - -0.033280924, 0.0047364687, -0.00605965, -0.013691456, -0.0113133695, - -0.012883862, 0.05508421, 0.006571113, 0.0012865771, 0.07073365, - -0.046083737, 0.015938122, -0.0076696, 0.049972028, -0.0022957048, - 0.025483072, -0.03098029, -0.035330694, -0.0050240257, -0.015763072, - -0.04044229, -0.024757227, -0.009484448, -0.004790782, 0.038013335, - -0.009018413, 0.08934272, 0.02598985, 0.019347755, -0.022365421, - -0.031903245, 0.00813943, 0.014687952, 0.0427437, 0.029319212, - 0.031702247, -0.040136203, 0.0049095727, -0.0039607584, 0.021493709, - 0.027100628, -0.022634037, -0.01699154, 0.037237518, -0.03699708, - 0.008839849, 0.063748285, 0.013904563, -0.06969438, -0.00875667, - 0.035071656, 8.7224063e-4, 0.01076033, -0.009109561, -0.012251867, - 0.003567069, 0.01535299, -0.010116586, -0.027183041, -0.012273646, - -0.016655214, 0.04253316, -0.0021665096, -0.03592838, -0.026300222, - 0.043036524, -1.9798164e-4, -0.02455821, 0.015964087, 0.051108122, - 0.039231583, 0.018560927, 0.014734089, 0.016148565, 0.0146927135, - -0.04231084, 0.08181765, -0.012834215, -9.3551824e-4, -0.03638758, - -0.01990858, -0.035294537, 0.0021142166, 0.024573617, 0.006426271, - 0.04803764, 0.032532703, 0.03995255, -0.029127153, 0.037640184, - -1.3705649e-4, 0.022664221, 0.0060276245, -0.01086638, -0.03095611, - -0.030163893, 0.013158939, -0.034486193, 0.06794541, -0.06779962, - 0.07841118, -8.6223695e-4, 0.031180335, 0.058153816, -0.0040817047, - 0.033850744, -0.0016985433, -0.044780698, -0.059161305, -0.05824675, - 0.023383599, -0.007219585, 0.047313157, -0.02864269, 0.0025708664, - 0.005444852, -0.06645888, 0.02921343, 0.011965276, -0.050581973, - 0.0077889552, -0.005864767, -0.020442415, 0.03281246, 0.035600916, - -0.0194965, 0.028710194, -0.014532264, -0.030748503, 0.0489058, - 0.035632186, -0.06059932, -0.0032829249, -0.014814011, 0.022929521, - -0.0048593143, -0.023847062, 0.022250807, -0.037906993, -0.018515114, - 0.019937504, 0.03646115, 0.008261434, 0.009080113, -0.0051814443, - -0.0024518732, -0.0073327716, -0.015294647, 0.01953513, -1.4860604e-5, - 0.051528957, 0.039027613, 0.033719286, 0.058576893, 0.05419347, - 0.012224278, 0.0027909377, 0.031653933, -0.0058595194, 0.021316381, - -0.022574503, -0.0022040622, 0.054363646, -0.00870171, -0.055142425, - -0.026746344, -0.012423711, 0.04920463, 0.018721325, -0.017020008, - -0.0012588538, 0.00784318, 0.045333143, -0.0271896, -0.024919914, - -0.008833573, -0.029635597, -0.001268669, -0.04779824, 0.01981749, - -0.02395788, 0.019588372, 0.013911931, -0.056559812, -0.07636186, - -0.005640215, -0.009313175, 0.029890515, 0.003278503, 0.009039986, - -0.0066596866, 0.0012426254, 0.0074744658, 0.01641192, -0.014780477, - 0.02525846, 0.04591483, 0.06332658, 0.0066772983, 0.02127531, - 0.010387792, -0.025609143, 0.06580038, -0.0177483, -0.0064736456, - 0.029639622, 0.0063630105, -2.740505e-5, 0.018649982, -0.014920706, - -0.05052829, -0.038038414, -0.007846449, -0.016010884, -0.043194514, - -0.021687811, 0.004449745, 0.08161121, 0.02694483, -0.04039953, - 0.017708983, 0.027149543, 0.016245203, -0.04033928, 0.036113102, - -0.009709098, -0.029034084, -0.011131963, -0.049185134, -0.025997175, - 0.025878016, -0.037501678, -0.0023872047, 0.018335097, -0.058267206, - -0.09374914, 0.020733448, 0.055906866, -0.0478438, -0.0067997095, - 0.009569233, -0.029177552, -0.017652012, 0.026400734, -0.033092078, - -0.017602453, -0.015867539, 0.06605319, 0.03425469, -0.022661794, - -0.008786989, 0.030843157, 0.0039151106, -0.02261764, -0.0030217376, - 0.06818189, -0.005878228, 0.032405164, 0.026335437, 0.06760866, - -0.02341215, 0.0077719, 0.012276525, -0.025918538, 0.012185456, - -0.011418362, -0.011887093, 0.021699509, 0.042488933, 0.026319498, - 0.06888091, -0.01981409, -0.006146047, -0.017081682, -0.053337414, - 0.018742837, 0.035186794, -0.027373495, 0.009340917, 0.0238114, - 0.0038872485, 0.015247665, -0.038897663, -0.01683409, -0.011113235, - -0.013205653, 0.0021271047, -0.017255127, -0.005798789, 0.06608033, - 0.052892514, -0.0066514057, 0.003322852, 0.046076763, -0.031415228, - 0.004083476, -0.056500256, 0.017478956, 0.02411411, -0.0601596, - -0.006248154, 0.005046403, -0.037277892, -0.055779092, 0.041402508, - 0.006483667, -0.01170536, 0.001545531, 0.0015320084, 0.006090378, - 0.05111535, 0.0475153, -0.0086730495, -0.019926516, -0.072406955, - -0.0626851, 0.010918974, 0.0029519205, -0.0048328736, -0.08587091, - -0.018093811, 0.086026184, 0.014657753, 0.029120453, 0.011402621, - 2.2180867e-4, -0.007952484, -0.034813073, -0.03372199, 0.012581382, - -0.07373495, 0.06704137, 0.03430445, -0.008923651, -0.030535432, - 0.012974752, 0.05350242, 0.03605676, 0.05577073, 0.015144391, - -0.03933765, -0.0449772, -0.03704091, -0.01907664, 0.021828866, - 0.035714593, 0.0071492633, 0.015458227, -0.060507566, 0.013714217, - -0.039660785, 0.02654455, 0.018796936, 0.0371281, -0.026268631, - 0.044425018, -0.03495896, -0.008802488, 0.010013498, -0.049202513, - -0.022896916, 0.0129505545, -0.008195627, 0.02577489, -0.04584054, - 0.0021367865, -0.05223315, -0.033111207, 0.007617617, 0.04799849, - 0.009919787, 0.042026103, 0.004593082, -0.025983136, 0.015975976, - 0.038246896, 0.008423265, 0.07174974, 0.0032455446, 0.05839976, - -0.030112445, 0.0033693546, -0.0376935, -0.0038100318, 0.010008263, - -0.012615181, -0.013845537, 0.0107196625, 0.0017428815, -0.035370387, - -0.02205792, 0.045120493, 0.027420413, 0.027562825, 0.0018148095, - 0.037836473, 0.06580347, -0.0031153953, 0.025075696, 0.0040092445, - -0.05563925, -0.014909844, -0.021913357, 0.011567595, -0.039814115, - 0.005401978, 0.014793711, -0.032871667, 0.037854742, -0.034319665, - -0.024322229, -0.023143599, -0.062210955, -0.011226302, -0.0014082607, - -0.018759891, -0.009768355, -0.017628655, -0.017457144, -0.007936787, - -0.013413274, -0.016655022, 6.919526e-4, -0.020616023, 0.03436718, - -0.0030162984, -0.0032762296, -0.042120382, 0.0021678933, 0.018911183, - -0.0020013656, -0.057406146, -0.0011992173, -0.015956812, -0.028377721, - 0.036196962, 0.0038528908, -0.011049923, 0.0066736233, -0.014527821, - -0.023509068, 0.018079724, -0.0509651, -0.04718131, 0.028014787, - 0.007711945, -0.030226659, 0.05323812, 0.051117927, 0.01344576, - 0.04732975, -0.047374174, 0.0025769917, 0.047906317, 0.0043071317, - -0.018303879, 0.0016920418, 0.044188797, 0.03431408, 0.046931975, - -0.074077584, 0.006339322, -0.0022845406, 0.06401769, 0.012117598, - 0.022767639, 0.022686096, 0.04084104, 0.030201409, -0.019558541, - -0.02474178, 0.016879117, 0.0029797687, -0.025155056, -9.326507e-4, - -3.4998605e-4, -0.0013504305, 0.019601895, 0.044393815, -0.027031532, - 0.018394498, -0.03489411, 0.026137121, 0.012846545, -0.0039671455, - -0.030851364, 0.03272093, -3.3462342e-4, 0.06112105, -0.026682544, - -0.018991038, -0.004054228, -0.023440432, 0.036056202, -0.06862736, - -0.054611817, -0.05046422, -0.0059217857, -0.026711307, -0.0049151103, - 0.0037786958, -6.46285e-4, -0.0048030415, 0.035456434, 0.04541462, - -0.050503608, -3.466073e-4, 0.028828412, 0.014983501, 0.059724253, - -0.03611133, 0.015918009, 0.04367183, -0.02510026, 0.018406115, - 0.016667055, 0.033730548, -0.016193407, 0.005123222, 0.038973127, - -0.052710455, -0.0048910747, -0.008441003, -0.061539106, 0.012027063, - -0.008402782, -0.032189775, -0.01358757, 0.041214723, -0.043536477, - -0.012340954, -0.014531368, -0.007732665, -0.0038920646, 0.027695363, - 0.0015450798, 0.023781244, 0.059835315, -0.016886184, 0.009637637, - -0.022936178, -0.0034959381, -0.019148758, 0.0014279764, 0.018992255, - 0.026030883, 0.016233753, 0.002464517, -0.039358214, -0.042291924, - 0.044859424, -0.03732579, -0.052202575, -0.02314564, 0.0052179224, - 0.03816383, 0.0045746583, 0.0061370563, -0.013948021, -0.036491904, - -0.039044697, -0.00938993, 0.0010525689, 0.06659163, 0.029621122, - -0.023221796, -0.056350566, -0.00300984, -0.016370682, 0.027984062, - -0.018246204, 0.018431302, -0.018463267, -0.078703314, -0.020655964, - 0.023730287, -0.03370262, -0.039785728, 0.054871302, -0.021221647, - -0.02153494, 0.012786819, 0.062944144, -0.023890678, 8.21882e-5, - 0.04468374, 0.0022829056, 0.011130037, 0.018296262, 0.03586154, - -0.006902422, -0.05395732, -0.062848166, -0.062599994, 0.015139129, - -0.013958491, 0.022164457, 0.0013960836, 0.020718789, -0.0036883845, - -0.053040914, -0.012119987, -0.007831392, -0.044391777, 0.06806939, - -0.018082246, 0.02194209, 0.038035356, 0.043792736, 0.030893104, - 0.04214192, 0.024668528, 0.022183383, 0.020162666, -0.0203647, - -0.02807696, -0.012652391, 0.05602477, 0.012811999, -0.04198157, - 0.06489422, -0.0020745066, -0.031538114, -0.054694433, 0.04424491, - -0.01471108, 0.011280045, -0.004614465, 0.05386901, 0.021675637, - 0.019834995, 0.06186547, -0.033397295, 0.014815124, -0.0572934, - 0.015126119, 0.04733464, 0.026066521, 0.043041565, 0.021216724, - -0.009436402, -0.017084982, -0.011581896, 0.009247189, 0.015686277, - 0.03399409, 0.0038211665, -0.038599055, 0.014628291, 0.03405098, - -0.031587295, 0.006287887, 0.012564491, 0.056665163, 0.042532258, - 0.023116004, -0.07690564, 0.011111213, 0.003229241, -0.012190955, - -0.037086915, -0.05707519, -0.0068110838, 0.006199836, 0.0184068, - -0.028888112, 0.015897013, 0.07068146, -0.010937341, 0.016038802, - 0.017241824, 0.015301382, 0.02775242, 0.021038173, -0.04822745, - 0.031105615, 0.024435464, 0.010445707, 0.07584533, 0.006374689 + "paletteEmbedding" : [ + -0.024867522, + 0.0062623387, + 0.005002848, + -0.0024254837, + 0.024227612, + -0.016189173, + 0.0045351423, + -0.08649331, + -0.039490234, + -0.025283704, + 0.06016094, + 0.037898146, + -0.017645918, + -0.07897064, + 0.045663457, + 0.009921292, + 0.0019348643, + 0.0486918, + 0.0044353614, + -0.027401699, + -0.017512124, + -0.011340218, + 0.01926031, + -0.028958352, + -0.013443121, + 0.021591928, + 0.0058841836, + -0.034043144, + 0.02756796, + 0.018393217, + -0.043794576, + 0.012957705, + 0.02723518, + 0.0036466212, + -0.0667629, + 0.0022067903, + -0.030546913, + 0.0051928186, + -0.039492264, + 0.007829004, + -0.021300731, + 0.027389849, + -0.01730676, + 0.026615327, + 0.029217234, + -0.025262987, + -0.015220856, + -0.019687338, + -0.016376993, + -0.022186704, + 0.01278796, + -0.0067736553, + 0.014319648, + -5.678611E-4, + -0.025071438, + -0.034227014, + -0.0010783616, + 0.04272456, + -0.0043117683, + 0.032510713, + -0.012779209, + -0.027628839, + 0.0072007324, + 0.01881608, + 0.0022430127, + 0.02640719, + -0.021809667, + 0.025416555, + -0.012845779, + -0.008340535, + 3.9605823E-4, + 0.003998604, + -0.013913951, + -0.029336011, + 0.06443343, + -0.020510556, + 0.010951204, + -0.033026528, + 0.018015595, + 0.0010698402, + 0.03490072, + 0.013126691, + -0.06151555, + 0.058402475, + 0.054263465, + 0.0030065007, + -0.020112095, + 0.041790336, + 0.024357095, + -0.0056921444, + 0.026105806, + -0.057232685, + -0.021860706, + -0.015016429, + -0.012955986, + -2.3417236E-4, + -0.042399384, + -0.032277398, + -1.9348658E-5, + 0.030940872, + -0.028538227, + -0.019419482, + -0.0011471113, + -0.012423673, + 0.020581983, + 0.006413854, + -0.029011706, + 0.014714544, + 0.016254991, + -0.0029851121, + 0.049180906, + -0.008847763, + 0.018134952, + 0.028259864, + -0.023218388, + -0.055908687, + 0.030670928, + -0.0034835737, + 0.016770715, + 0.020326173, + 0.0126686, + -0.036042023, + -5.6191115E-4, + -0.019338442, + 0.021552933, + 0.0404079, + -0.0021853577, + -0.017747534, + 0.040237222, + -0.07388996, + 0.02809461, + 0.023663754, + -0.01521526, + -0.012973293, + 0.020114472, + -0.026715936, + -0.023047725, + 0.010355397, + -0.029862273, + -0.02330498, + 0.0066976966, + -0.019764809, + 0.026739016, + 8.5406343E-4, + -0.0025362927, + -0.004913788, + 0.01826083, + 0.011321283, + 0.038002398, + -0.012402004, + -0.04370185, + 0.002427905, + -0.009930943, + -0.028357193, + 0.0042408695, + -0.050438467, + 0.03151599, + 0.10573674, + -0.07047529, + -0.032842796, + 0.0035056046, + -0.03962257, + -0.025770126, + -0.035665937, + -0.031596173, + -0.0028523095, + 0.005922325, + -0.0073168064, + -0.048318382, + 0.013542214, + -0.042444766, + -0.020687345, + 0.015162607, + 0.004663797, + 0.010906848, + -0.02096327, + 7.0335926E-4, + -0.043312516, + 0.052290805, + -0.004065592, + 0.036706988, + 0.014665674, + 0.0050975652, + 0.0019659554, + 0.0013207723, + -0.022331627, + -0.017880056, + 0.011846042, + 0.002717165, + -0.04639689, + 0.041000806, + 0.01050962, + -0.017933099, + 0.005098313, + 0.028946102, + -0.036026206, + -0.034358103, + -0.029098801, + -0.015542741, + 0.040118672, + -0.0028933354, + 0.0060498, + -0.013687674, + -0.017329732, + 0.10418091, + 0.039007656, + -0.06385204, + 0.008919971, + 0.042020228, + -0.009166058, + -0.02019215, + -0.0346401, + -0.008049696, + -0.01975332, + -0.010340904, + -0.01562972, + -0.023475867, + -0.034066137, + 0.04107199, + 0.03785317, + 0.0076795407, + 0.007215576, + -0.047692157, + -0.057201736, + 0.0051291785, + 0.042738043, + -0.012484871, + 0.004964085, + 0.018791702, + 0.017403401, + 0.03601796, + -0.08801416, + 0.017475013, + -0.047220744, + 0.020593042, + 0.016841076, + -0.017733963, + 0.01993542, + -0.054094784, + 0.005623488, + 4.0425064E-5, + -0.009353677, + -0.021122837, + 0.004074789, + -0.039263904, + 0.027918428, + -0.0409467, + 0.032408487, + -0.043881275, + 0.0399343, + 0.012607432, + -0.0129310265, + -0.015377046, + 0.015701326, + 0.011118597, + -0.012324237, + 0.03928546, + 0.011663912, + 0.0025396799, + -0.007557812, + -0.016337179, + -0.022455048, + -0.01682606, + 0.04080242, + 0.024120845, + -0.050132055, + 0.011812556, + 0.035674132, + 0.0013961281, + -0.025137763, + 0.015393879, + -0.057686713, + 0.019218981, + 0.011720431, + 0.0445465, + -0.027854906, + 0.04957834, + -0.01646843, + 0.0036810685, + 0.0033901292, + 0.01454007, + -0.0016213326, + 0.026600638, + -0.00774693, + 0.031648714, + -0.018302357, + 0.031173123, + 0.004634714, + 0.05126929, + -0.022874242, + 0.0093898885, + 0.013204542, + -0.022076152, + -0.036778618, + -0.0208636, + -0.043829363, + -0.017977491, + 0.036874834, + -0.03911211, + -8.514738E-5, + 0.033287216, + 0.033752766, + -0.024133533, + -0.0016321144, + -0.026459366, + 0.0031718654, + -0.058722038, + 0.020307686, + 0.072397724, + -0.039930075, + 0.05813285, + -0.032371875, + -0.04591744, + 0.021070298, + -0.009478556, + -6.766848E-4, + -0.04776742, + -0.026882881, + 0.03329236, + -0.008193534, + 0.025808314, + -0.0045435787, + -0.06095221, + 0.0014826263, + -0.027190434, + -0.0024911566, + -0.043845285, + -0.0043362784, + -0.034501348, + 0.07729827, + 0.053373635, + 0.034968145, + 0.012384838, + 0.042319663, + 0.0042206184, + -0.018421097, + -0.005580701, + -0.071030125, + -0.024132017, + 0.0015592952, + -0.021913009, + 0.010947288, + 0.007728753, + 0.055917088, + 0.03973528, + -0.016635787, + -0.008368134, + 0.0061497414, + -0.031664047, + -0.024444224, + 0.043962814, + 0.07471639, + 0.06225456, + -0.028671054, + 0.01283121, + -0.014436764, + -0.0072736586, + 0.020275004, + -0.030859398, + -0.08342773, + -0.032398712, + 0.05044136, + -0.024841132, + 0.023357593, + 0.027651481, + 0.015474723, + 0.06133802, + -0.033915136, + -0.0033655928, + 0.011748606, + 0.016387507, + 0.014215574, + 0.055245243, + 4.315181E-4, + 0.011763695, + 0.004618881, + 0.033138573, + 0.048683885, + 0.04595446, + -0.005159723, + 0.016455656, + -0.0040210173, + 0.027546374, + -0.029945016, + 0.03498157, + -0.02924294, + 0.029037492, + 0.028950274, + -0.014075234, + 0.0036133446, + 0.015107106, + 0.012232265, + 0.06786657, + -0.01940851, + -0.028805155, + 0.035997465, + -0.032913655, + -0.008524797, + 0.021406986, + -0.027399879, + 0.025425978, + 0.035413787, + -0.06900665, + 0.005856344, + -0.009590444, + -0.008963376, + -0.04657766, + -0.01461211, + -0.047697585, + 0.037334193, + 9.855026E-4, + -0.03425608, + 0.004483379, + -0.035163928, + 0.01535823, + 0.01623341, + 0.032752085, + -0.017735258, + 0.009477878, + -7.852974E-4, + -0.02044152, + 0.042149205, + 0.03536063, + -0.0196804, + 0.00963863, + -0.028704643, + -0.013058129, + -0.022382194, + -0.010193605, + 0.0016203951, + 0.03695767, + 0.0247552, + 0.016176645, + -0.040663093, + -0.04395596, + -0.010746134, + -1.940232E-4, + -0.0114333285, + 0.009164243, + -0.0067884573, + 0.034993865, + 0.008095858, + -0.006614493, + -0.011593687, + 0.03448839, + 0.013078232, + 0.08073458, + -0.04101945, + -0.04890365, + 0.0042779674, + 0.08508898, + 0.0842755, + -0.024391642, + 0.021689376, + -0.055181608, + 0.021866286, + -0.031608805, + -0.060770188, + -0.045422293, + 0.032141667, + -0.029665822, + 0.009952868, + -0.015745083, + 0.028499361, + 0.009904854, + -0.031010725, + -0.041665938, + -0.06699072, + -0.024856081, + 0.059659284, + 0.03487482, + -0.0073374915, + -0.0019189304, + 0.03941961, + -0.028719136, + 0.008731401, + -0.01756605, + 0.011167346, + -0.01403677, + -0.042599328, + 0.015103504, + 0.013288788, + 0.009350029, + -0.011973152, + -0.00925394, + -0.050825074, + 0.011327301, + -0.065511614, + 0.022810478, + 0.0025103996, + -0.054658636, + 0.0040400485, + 0.013440879, + -0.016964624, + 0.08181934, + -0.0011014327, + -0.053115923, + 0.037549067, + -0.026783, + -0.04076164, + -0.03823778, + -0.06922262, + 0.04289321, + -0.04671572, + 0.04590758, + -0.01601471, + 0.007569656, + 0.015199182, + -0.03162212, + 0.009057258, + 0.035918538, + -0.013341521, + 0.026153665, + 0.04429502, + 0.07339501, + -0.01942631, + 0.003449541, + 0.01611984, + -0.01871887, + 0.004632743, + 0.013434221, + 0.012459798, + -0.047186814, + -0.016298315, + 0.05561992, + 0.02404234, + -0.0035349533, + -0.053399432, + -0.016634066, + 0.020751994, + 0.019425718, + -0.023289926, + -0.028489439, + 0.03315817, + -0.037631806, + -0.06652249, + -0.01454073, + -0.074985266, + -0.053450197, + -0.014764669, + 0.041182343, + -0.009855386, + 0.017129354, + 0.085258186, + 0.022243178, + 0.04376214, + 0.013522971, + -0.027245218, + -0.012806374, + 0.038438477, + 0.0041665235, + 0.028468462, + -0.04106739, + 0.021668062, + 0.07497764, + 0.044315275, + 0.006021244, + 0.022813313, + -0.027620489, + -0.013854406, + 0.046008926, + 0.04689661, + 0.019739648, + -0.00518368, + -0.062094018, + 0.0068357745, + 0.027017882, + 0.02472796, + -0.030171474, + -0.027807007, + 0.01942733, + -0.021108162, + 0.050096627, + 0.018939804, + 0.007208317, + 0.028249772, + -0.04775248, + 0.0061101913, + 0.07239259, + -0.055798683, + 0.04082204, + -0.022591524, + 0.02047502, + -0.06509004, + 0.026663885, + -0.01724243, + -0.0074718106, + -0.030675717, + -0.03666327, + -0.017230121, + 0.028642414, + -0.04760103, + 0.022107279, + -0.011328574, + -0.03213671, + 1.4695777E-4, + 0.055247672, + 0.025704384, + 0.037032302, + 0.025929237, + 0.0625701, + -0.05515262, + 0.0073202485, + -0.08267011, + 0.03145244, + -0.027720006, + 0.036988195, + -9.547275E-4, + 0.022376116, + -3.0401957E-4, + -0.014732742, + 0.017133022, + -0.020463381, + 0.013755135, + 0.044005807, + 0.0068528396, + -0.06951841, + 0.023932641, + -0.01754683, + 0.004180841, + 0.013947694, + -0.012510855, + 0.008843722, + -0.026026469, + -0.0010377152, + -0.027900036, + 0.018841492, + -0.03426364, + 0.005789698, + 4.4024995E-4, + -0.048213102, + 0.016359542, + 0.012388841, + 0.05420236, + 0.0050740484, + 0.01646285, + -0.04063883, + -0.0069496804, + -0.025327075, + -0.002503446, + 0.016552597, + -0.03747314, + 0.06325161, + -0.0070271455, + 0.05997188, + -0.04075397, + 0.029929139, + 0.015277557, + 0.030617591, + -0.03208003, + -0.007059534, + 0.007971247, + -0.016496824, + 0.00784386, + 0.019244386, + 0.06278731, + -0.0020600867, + -0.024551984, + 0.10056246, + -0.05364317, + -0.01677115, + -0.052584913, + 0.04318488, + -0.002691692, + -0.01359689, + 0.052548613, + -0.017096044, + 0.07538457, + 0.020413984, + 0.0074496507, + -0.05743151, + -0.017336609, + 0.028329663, + 0.009700216, + 0.026928196, + -0.006329097, + 0.007529885, + 0.06396831, + 0.037198253, + -0.053745437, + 0.0055433135, + 0.017957013, + -0.052430514, + -0.02311292, + -0.05874015, + -0.013528857, + -0.013619371, + 0.034074154, + 0.03574644, + 0.024789274, + -0.01933291, + -0.045847196, + 0.016668754, + -0.055854008, + -0.04474608, + 0.020354798, + 0.016658332, + 0.009073019, + -0.016372783, + 0.0048904694, + -0.019786796, + 0.03901082, + -0.007101532, + 0.0096448455, + -0.007702038, + -0.058141902, + 0.035652045, + -0.0043068468, + -0.04774635, + 0.057642773, + -0.057775605, + -0.012557907, + 0.036126927, + 0.0154111665, + 0.0010045998, + -0.02745068, + -0.056005444, + -0.026185893, + -0.0086102085, + 0.025730928, + 1.2298771E-4, + -0.029750368, + 0.08658933, + 0.019010134, + 0.0067140153, + 0.009428075, + -0.049870964, + -0.028728383, + -0.018195923, + -0.047964644, + 0.0283227, + -0.019045074, + -0.022832276, + 0.0122584915, + 0.034673862, + -0.00686455, + 0.0025539817, + -0.024553925, + 0.0096727135, + -0.016010534, + -0.0037103058, + -0.022551524, + 0.010505846, + -3.626061E-4, + 0.021564858, + -0.0061330125, + -0.014282168, + 0.024835475, + -0.026635204, + -0.0018476901, + 0.007524663, + -0.04607465, + -0.0411151, + -0.0152603295, + 0.01663087, + -0.013023197, + 0.047069017, + 0.003634413, + 0.00411327, + -0.033464994, + 0.07192557, + -0.01659198, + -0.0031162875, + -0.011951138, + -0.013259281, + 0.01261531, + -0.028754752, + -0.063240424, + -0.006808689, + -0.023007803, + -0.012477547, + 0.0456593, + 0.05291324, + 0.039219894, + 0.046375588, + -0.057585374, + -0.011355183, + -0.0015852948, + 7.520042E-5, + 0.029544154, + -0.06456845, + 0.005321391, + -0.053092528, + -0.01180882, + 0.018956563, + 0.01649519, + 0.0076381937, + 0.039928626, + -0.038457073, + 4.0218938E-4, + 0.023053553, + -0.034178637, + -0.049694184, + 0.023771927, + 0.01572524, + 0.01662419, + 0.023143984, + 0.017474012, + 0.0024417685, + 0.0068832766, + -0.013213168, + 0.0025099746, + 0.019696122, + -0.056641188, + 0.016681684, + 0.015747046, + -0.015753565, + 0.021160189, + -9.484099E-4, + -0.024449958, + 0.025039103, + -0.0484607, + -0.046177514, + 0.034472957, + -0.027145596, + 0.025792768, + -0.04139098, + -0.0056272186, + -0.033138003, + 0.035179663, + 0.03982229, + 0.036013424, + 0.0076590306, + -0.013039372, + -0.045133755, + 0.018325897, + 0.004148654, + -0.0019029898, + 0.04398076, + 0.027323714, + 0.01632546, + 0.005847009, + -0.0039826534, + 0.06529031, + -0.017553994, + -0.0033455559, + -0.017779902, + -0.010257782, + -0.052456915, + 0.041666538, + 0.023617407, + -7.330738E-4, + 0.022051727, + -0.015423912, + -0.022183517, + -0.012844253, + -0.0065002623, + -0.0024609836, + 0.021479288, + -0.0105027845, + 0.0064842883, + -0.018043762, + 0.06822908, + 0.012644803, + 0.020729573, + -0.00962483, + 0.00819587, + 0.07352448, + 0.0021645902, + -0.0149430735, + 0.016318107, + -0.006830037, + 0.08209797, + -0.002169427, + 0.0353128, + 0.003036708, + 0.010173483, + 0.0214808, + 0.018917136, + 0.04506793, + -0.02369532, + -0.024582734, + -0.045527354, + 0.03500717, + 0.026639655, + -0.015999228, + -0.016452419, + 0.033134088, + -0.047005508, + -0.04323981, + -0.043096703, + -0.0028104242, + 0.005657188, + 0.011380991, + -0.035184458, + -0.018703694, + -0.046178672, + 0.015024514, + -0.028194517, + 0.002493376, + -0.0091714915, + 0.03655643, + -0.014999264, + -0.012594423, + 0.055471133, + -0.011339031, + -0.020209735, + -0.028728649, + -0.035579186, + 0.017049389, + 0.041807275, + 0.039272927, + 1.8433169E-4, + 0.0073972796, + 0.004448827, + -0.0026530551, + -6.4174575E-4, + 0.008361893, + -0.015786218, + 0.0064590983, + -0.04272953, + 0.071599305, + -0.03656211, + 0.008053452, + -0.0058307387, + -0.007544705, + -0.0016774685, + 0.011379329, + -0.00790069, + -0.035037115, + -0.004492186, + 0.013336961, + 0.044106398, + 0.0063801226, + -0.024701273, + 0.02919931, + -0.008928427, + -0.005791352, + -0.010303484, + -0.057685744, + -0.026770595, + 0.051260527, + -0.023569876, + 0.029498542, + -0.022205614, + 0.006615164, + -0.035852972, + 0.030126007, + -0.040290017, + 0.0026564198, + -0.0060455925, + -0.042830735, + -0.022727149, + -0.022762192, + 0.014631322, + -0.025277201, + 0.0073136333, + -0.023640199, + -0.020905726, + -0.0289047, + 0.025893843, + -0.009989199, + 0.04309128, + 0.018393435, + -0.059626482, + -0.012603649, + -0.020306405, + 0.0074773165, + 0.0882896, + 0.01314006, + -0.014674294, + 0.03492051, + -0.048789036, + -6.333284E-4, + -0.016523276, + -0.0077700363, + 0.041174408, + -0.0042491825, + -0.017972037, + 0.020451143, + -0.028103469, + 0.027898036, + 0.017116938, + -0.017175557, + -0.027308263, + 0.012950042, + -9.6241034E-5, + -0.00741798, + -0.01784639, + -0.04002047, + -0.0034736563, + 0.010619109, + -0.02358068, + 0.0287761, + 0.014760528, + -0.008351325, + 0.0051767854, + 0.012467711, + 0.0010842108, + -0.06611462, + -0.037921175, + 0.0016900939, + -0.03917923, + 0.06739608, + -0.013300491, + -0.03346546, + -0.011081477, + -0.021186395, + 0.0015766018, + 0.06878402 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json index ca8f62eea..f99c6435d 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json @@ -1,1337 +1,5251 @@ { - "description": "images linked with the same work", - "createdAt": "2023-11-21T14:25:44.112779Z", - "id": "1wbpae6j", - "document": { - "modifiedTime": "2055-12-28T21:50:52Z", - "display": { - "id": "1wbpae6j", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images linked with the same work", + "createdAt" : "2024-11-14T14:37:56.500910Z", + "id" : "9kt2ikow", + "document" : { + "modifiedTime" : "2024-05-12T10:50:14Z", + "display" : { + "id" : "9kt2ikow", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/EER.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", + "credit" : "Credit line: 6MXO0sLb", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/EER.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", + "credit" : "Credit line: 6MXO0sLb", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#385C1B", - "source": { - "id": "0gpwg18n", - "title": "title-3s7xI6F0dO", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#98C9CB", + "source" : { + "id" : "aawgyyy8", + "title" : "title-Wk9BGeV6UO", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "1wbpae6j", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "0gpwg18n", - "sourceIdentifier.value": "Xa8L6WpxaN", - "identifiers.value": ["Xa8L6WpxaN", "GmIygfg3bH", "la2n3zKDfE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3s7xI6F0dO" + "query" : { + "id" : "9kt2ikow", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "aawgyyy8", + "sourceIdentifier.value" : "ErLUg1OWaB", + "identifiers.value" : [ + "ErLUg1OWaB", + "22sQyoKXZb", + "Z3y3axc7PO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Wk9BGeV6UO" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.008264379, -0.028790887, -0.022388183, -0.017983243, 0.0018612322, - 3.6622862e-6, -0.016306862, -3.222271e-4, 0.024086833, 0.0033367658, - -0.0036028079, -0.0017526083, -0.01181732, 0.016793957, -0.008794991, - -0.02503492, 0.017285544, 0.021229157, -0.022155676, 0.0056942636, - -0.012093714, 0.018369427, -0.00867797, -0.008711229, -0.0040991683, - -0.006579234, 0.0071453014, -0.011204493, -0.0054269764, 0.015996238, - 0.024296263, 0.0067606843, 0.0059858533, 0.01419317, -0.015837863, - 0.0029264411, 0.014681217, 0.006520029, -0.0023962301, -0.008817796, - -0.02833954, -0.007697611, 0.0162977, -0.0022008466, -0.0049603963, - 0.0032174292, -0.03877657, 0.0067781475, 0.0015607341, 0.036902294, - 0.020506814, 6.4796826e-5, 0.0028153306, -0.034337014, -0.021223268, - 0.0025057208, -0.008248918, -0.021037629, 0.034510374, -0.020054365, - 0.0031637133, 0.007714862, 0.03861619, 0.00501736, -0.035200052, - -0.009114471, -0.010560262, 0.033750515, 0.018317185, 0.005424679, - 0.02033107, -0.013384034, -0.0070093623, 0.008330954, 0.015736092, - 0.018858755, -0.030303005, -0.0025026374, 0.023461014, 0.012760546, - 0.008322791, 0.0013966493, -0.013976181, 0.030113973, -0.0048829615, - 0.0018122296, 0.016054004, 0.0031551193, 0.011249043, 0.0029468716, - 0.0014233628, 0.012667093, -0.035245303, -0.00313511, -0.003644697, - -0.009671798, 0.03343184, -0.00623398, 0.0016629196, 0.0066945516, - -0.020047842, 0.0073162112, 0.00857399, 0.013414031, -0.012290554, - -0.008519631, 0.042782802, 0.03147008, 0.0025943266, 0.014570833, - -0.0070154127, -0.039640274, 0.006098497, 0.03176851, 0.016233595, - 0.0045146896, 0.009466664, 0.010499893, -0.024683101, 0.0041785175, - 0.021238144, -0.0073183347, -0.024910284, -0.017000156, -0.0057200314, - -0.001236966, -0.0013779653, 0.004858458, -0.010640831, 0.012228697, - -0.0016823825, 0.0043762904, 0.001991031, -0.003474393, -0.0029249068, - -0.0036562309, 0.027536906, 0.0036500902, -0.037027787, -0.022845559, - -0.0041226936, -0.0070201172, 0.021746812, 0.0030829972, -0.0031703932, - -0.008842116, -0.0071017165, 0.00792554, 0.01882673, 0.007092674, - 1.5536806e-4, -7.8470714e-4, -0.020621259, -0.022742826, 0.0055632046, - 0.007762265, -0.006198196, -0.010102351, -0.025999159, 0.017455082, - 0.01382263, -0.0058171297, 8.850671e-4, -0.0014563655, -0.0143709965, - 0.0036841247, 0.0050536054, -0.01576015, 0.0031579856, -0.0034563288, - -0.02204655, 0.0068527707, -0.020955723, 0.0056549013, -0.010214665, - -0.0027833097, -0.021509055, -0.003117833, 0.0041440353, 0.01582605, - -0.0026877674, -0.0068298415, -0.0063117766, -0.012267028, -0.010711476, - 0.03887019, 0.010644159, -0.009374602, -6.230656e-4, -0.008510833, - 0.020470409, 0.004535216, 0.008745569, -0.0025597946, -0.02185829, - -0.0139924595, -0.00491145, 9.935021e-4, -0.0068292166, -0.009688294, - -0.020166313, 0.007878897, 0.0057709734, -0.027497323, 0.013712716, - -0.014091446, -0.031110853, 0.005541847, -0.016525943, -0.0012963021, - 0.009372352, -0.0120240515, 0.009498483, 0.020978456, 0.013233664, - 0.008258638, -0.0012332288, 0.012941098, 0.020404406, -0.009894492, - -0.0122420145, -0.013551052, 0.022638554, -0.007750915, 0.011782563, - -0.02609234, 0.02179229, 0.014457062, 8.386701e-4, 0.009597381, - 0.02336954, 0.040584996, -0.015042217, -0.0067883767, -0.011209926, - -0.033629823, 0.006178547, 0.0021024381, 0.010491506, -0.00650929, - -0.014836445, -0.01781127, 0.0036563433, -0.016365116, -0.01059497, - 0.016840419, -4.5008765e-5, 0.003994815, -0.036309168, 0.008449066, - 0.02332691, -0.04401431, 0.01133807, -0.004284497, -0.0091824075, - 0.0073453807, -0.008606172, 0.008075516, -0.005907661, 0.0015106549, - 0.020593299, 0.037650038, -0.001445208, -0.013465927, 0.02741, - -0.004775098, -0.019607471, -0.004123622, -0.0070896316, 0.008706461, - 0.0015482163, 0.003692078, -0.00845466, 0.017442923, 0.004554272, - 0.0037904913, -0.0024691813, 0.007450449, 0.0027103883, -0.026061395, - 0.0069827856, 0.011564468, 0.01178242, -0.003574425, -0.014914247, - -0.009133616, 0.0016959924, -0.0095374435, 0.013038817, -0.0024654428, - 0.019547729, -0.011298846, 0.009198811, 0.0052742367, 0.016576845, - 0.039974377, 0.0029379607, 0.0034472847, -0.029440364, -0.009519888, - 0.0027166272, -0.011324894, 0.029839171, 0.01377518, -0.006000784, - 0.010605982, 0.017869864, -0.034189876, -0.0071251644, 0.011443875, - -0.008766178, 0.0010998251, -0.010589842, 0.0027927037, -0.040304005, - 0.019022975, -0.0017860661, -0.005982447, -0.0016347972, -0.009294148, - 0.014598986, -0.010203135, -0.012116753, -0.008054393, -2.6150205e-4, - 0.018319959, -0.025797796, 0.004549418, 0.018553814, 0.0020631705, - 0.0061447634, 0.009059723, 0.022764796, -0.013280878, 0.004073879, - 0.005478255, -0.0019288068, 0.010882206, 0.01574132, -0.025122643, - 0.007035915, 0.003586511, 0.0058077374, -0.018604293, -0.0089871315, - 0.025479425, -0.007794279, 0.0140495645, 0.0017413137, 0.014753206, - 0.006135344, -0.029243395, 0.0016321517, 0.0015832053, 0.0015886802, - 0.013182148, 0.021580433, 0.004130907, 0.004035363, 7.812827e-4, - 0.003285059, 0.0045496216, -0.02517808, -0.0029851943, -0.0059661106, - 0.021304974, -0.0047476133, 0.01088243, -0.011844527, -0.010991614, - -0.016013037, 0.033442948, -0.012904553, -0.0106325, -0.0046944395, - -0.006911838, -0.023365999, -0.0039446773, 0.0025630689, 0.025948202, - -0.006156117, 0.011156261, -0.017360987, -0.009223816, -0.03644181, - -0.011754258, -0.012478112, 0.0037444886, 0.011152131, -0.0030218747, - -0.0078236405, 0.022929247, 0.019080624, -9.697388e-4, -0.010330574, - -0.016382918, -0.020263128, 0.03484029, 0.011760181, -0.019644687, - 0.014161768, -0.01614581, -0.018091861, -0.023676706, -0.00902846, - 2.0221238e-4, 0.037582923, -0.010370187, -0.0132381525, -0.0099233575, - -0.024923313, 0.0056789774, 0.010485941, 0.045838293, 0.026861347, - 0.014010942, -0.023724884, -0.0034801264, 0.0122649595, -0.003849228, - 0.014550458, -0.0028062884, 0.02011219, -0.0063516367, -0.023959883, - 0.010978427, 0.008429742, 0.0061816406, -0.032697313, -0.008367949, - -0.005691842, -0.03040375, -0.010344545, -0.021391029, -0.009000255, - 0.0015268468, 0.0267574, 0.025831006, 0.006291409, 0.03393597, - 0.0059609013, -0.0060611023, 0.0045743803, -0.010646845, 0.008631208, - 0.021860344, 0.0051599643, 0.011296674, -0.024880663, 0.025476778, - -0.0015741753, -0.021875817, 0.0024179225, -0.0061758314, 0.023033092, - -0.0038199134, 1.2802842e-4, 0.012393298, -0.012858125, -0.013321921, - 0.011830254, -0.008254856, -0.0030657784, 0.00808523, -0.03642193, - 0.026466552, 0.021748994, -0.047679976, 0.014170287, -0.007521895, - 0.0014820055, 0.017475788, 0.011712811, -0.0082590785, 0.002422877, - 0.0055769132, -0.0044627073, 0.0071243034, 0.019115847, -0.016393343, - 0.009452397, -0.010413728, -0.018558845, 0.004306644, 0.0021029448, - -0.0027855956, 0.001778962, 0.0038929542, 5.644051e-4, 0.022207487, - -0.035923474, 0.017006973, 0.022931593, 0.0023524994, 0.023622092, - 0.007781578, -0.016404156, 0.011713199, -0.0057496, -0.013019677, - 0.018282527, 0.0013801861, 0.0014586515, -0.014374809, -0.0027185266, - 0.01706782, -0.026544958, -0.00915748, -0.0045738313, -0.0134116635, - -0.018343978, 0.011173226, 0.0139236525, 0.004625023, -0.028714336, - -0.012737132, -0.010099936, 0.0067459703, 0.005747084, 0.006140628, - 0.016069455, 0.015018173, -0.017534181, 0.013455414, -0.013466334, - 0.018846555, -0.017491521, -0.0011939261, -0.0104435105, 0.028503492, - -0.024021767, -0.036876947, -0.008216657, -0.034105256, -0.014414262, - -0.020899104, 0.020005655, -0.006810682, -0.003991325, 0.013345357, - -0.014056461, -0.013637126, -0.0068896865, -0.003535482, -5.8376795e-4, - -0.002888707, 9.2795776e-4, 0.018339973, -0.004890109, 0.007970301, - -0.022821026, 0.025775278, 0.00630269, -0.004146393, 0.010778316, - -0.0034257316, -0.030283026, -0.025872415, -0.0011387268, -0.011867195, - -0.005702513, 0.013440918, -0.009093576, 0.03864386, -0.012394275, - -0.009427339, -0.011694694, -0.011746422, -0.016315175, 0.008320704, - -0.024164379, 0.02158782, -0.014864514, 0.019783344, 0.033278912, - -0.011877966, 0.00798485, -0.0031787218, 1.1426793e-5, -0.008268774, - -0.02283742, 0.008806012, -0.024363631, 0.008016541, -0.010791887, - 0.017238906, -0.01028796, 0.0037963316, -0.0057281293, -0.023990918, - 0.02321748, 0.019737722, -0.014796425, 0.0136303995, 0.008754767, - 0.0035111245, 0.017372323, -0.017459234, 0.029693816, -0.005530833, - 0.0035278427, -2.6171596e-4, -0.036804363, 0.019621579, 0.0028848534, - 0.011658361, -0.01324384, -0.0030463382, -0.005295703, -0.014884232, - -0.037844937, -0.005898228, -0.007896145, 0.009742159, 0.029656438, - 0.010150894, -0.027066475, -0.015015247, -0.007592193, -0.022184853, - 0.02659513, 0.025481144, -0.020564647, -0.003630876, -0.010566034, - 0.009103499, -0.0049185846, -0.041720442, 2.3197053e-5, -0.0011297636, - -0.0032701853, 0.00477446, 0.02113347, 0.0022572519, 0.019919608, - 6.341299e-4, 6.230792e-4, 0.013229525, -0.015582935, 0.014758575, - 0.018404042, 8.5243705e-4, 0.039987147, 0.0063645258, 6.648627e-4, - -0.022716466, -0.0023540135, -0.022504965, 0.012045914, 8.331823e-4, - 0.0062334244, 0.0012885032, -0.026568936, -0.010049122, 0.019722916, - 0.006292161, 0.016092515, -0.03449778, -0.02450662, -0.002052897, - -0.010528798, 0.0072670076, -0.022473376, -0.011899027, -0.0033653332, - 0.0023501576, 0.015603999, -0.026464894, -7.662268e-4, -0.017271878, - -0.019970154, -0.0021142883, 0.032064185, 0.015929818, 0.0068205125, - 0.0036519647, -0.013666114, -0.008129054, -5.8490486e-4, -0.020873358, - -0.031369653, 0.018042436, -0.003364177, -0.0065682163, 0.019524602, - -0.004403138, -0.02624788, 0.021655096, 0.008365498, -7.5027515e-4, - -0.018041292, 0.020550305, 0.016422424, 0.019534491, -0.0012542771, - -0.008037797, -0.011175876, 0.027088106, 0.0063895574, 0.007254552, - 0.0016779691, -0.0019008542, -0.018432967, -0.018038293, 0.04174151, - 0.0031577328, 0.004120448, 0.012939217, -0.0077146403, -0.011719229, - 0.0129284505, 0.0066484883, 0.0060135713, -0.0046229973, -0.019956945, - 0.033446454, 0.013645036, 0.00786971, 0.025950085, -0.022569789, - 0.0051017907, 0.010964713, -0.034542285, -0.014671009, -0.002031874, - 0.0040467246, -0.0029319813, -0.0132698845, 0.0049787494, 0.0058860607, - 0.022837471, -0.0064215306, -0.010396716, 0.023128191, 0.016520435, - -0.008032353, -0.015634429, 0.00255491, 0.007000204, 0.007462175, - -0.011445833, -0.0056837215, -0.004043875, 0.003633817, 0.010972449, - -0.01510018, -0.0030846167, -0.01050461, -0.009404768, -0.007136422, - 0.023704328, 0.0018558047, 0.019092992, 0.0073168697, -0.010708043, - -0.012569318, -0.0011343682, 0.00911909, -0.008833908, -0.03566879, - -0.0022046154, -0.016508654, -0.006591794, 8.962782e-4, 0.025052384, - -0.008091796, -0.0062580886, -0.03295554, -0.0034778446, 0.0034732444, - -0.0087464405, -0.0033896344, -0.00938921, -0.032512255, 0.013790487, - -0.016184788, 0.00435217, -0.0032533137, 0.03446947, 0.015235263, - 0.0033752136, 0.0036666086, -0.010360972, 0.013416379, 0.013550235, - -0.016155975, 0.008869613, 0.004783743, -0.026601585, 2.9603537e-4, - -0.01755467, -0.0011749278, 0.0010253099, 0.004538747, -0.0099992305, - -0.025010047, -0.0018003864, -0.0012514126, 0.018732091, -0.02673681, - -0.02234946, -6.7639473e-4, 0.006458241, -0.006656063, 0.026257077, - 0.01411104, -0.015765209, 0.008357424, 0.018802255, -0.008480088, - 0.012620595, 0.008693127, -0.0030076639, 0.03671087, 0.0014925876, - 0.018356688, 0.0041147587, -0.009516201, -0.014290032, 0.017041948, - -0.020239923, 0.010157364, -0.012628962, 0.0022773962, 0.015539305, - -0.0058512855, -0.003252675, -0.011981285, -0.002189452, -0.017587245, - 0.005357098, 0.008807313, -0.004472797, -0.009178814, -0.008044893, - -0.01001393, -0.01009658, -0.026882866, -0.008627231, 9.1571896e-4, - 0.011341071, 0.009945933, 0.012535025, 0.023640607, 0.011915365, - -0.006480313, -3.2834057e-4, 0.017600708, 0.008896482, -0.018485472, - 0.011965936, 0.006970774, 0.030416582, 0.015907759, 0.00893606, - -0.020228863, 0.0013716256, -0.0068417257, 4.4073563e-4, -0.02109844, - -0.0049282056, 0.0043802653, -0.013216631, -0.03574105, -0.0058251983, - -0.0045043854, -0.026979009, -0.009988549, 0.0132847605, -5.40674e-4, - 0.010492525, 0.0017524926, 0.00821828, 0.02069082, 0.019416263, - 0.011291377, -0.014628995, -0.0024452824, 0.0023515008, -0.01034662, - 0.009361676, -9.334557e-5, 0.0052281017, -0.035319835, 0.015619145, - 0.024542453, -0.00915723, 0.003201768, 0.026242886, 0.0195194, - -0.020009294, 0.0034547301, 0.004230466, -0.014056075, -0.007808837, - -0.011276365, 5.716373e-4, 0.019428471, -0.019749377, -0.024211591, - 0.008108162, -0.0021671462, -0.025888491, 0.010163194, -0.0055476627, - -0.006813066, -0.0065538483, 0.012014033, -0.018674767, 0.0077524567, - -0.006605818, -0.0010580407, 0.0045314957, 0.024308652, 0.0024250227, - -0.020578733, 1.4573901e-5, -0.009046852, -0.020114519, 0.017573943, - -0.013430914, -0.0170032, -0.0059895515, 0.012106553, 0.0044663604, - -0.017237334, -0.0106073255, 0.008570639, 0.008339149, -0.024593955, - -0.004313025, 0.017781507, 0.006778367, 0.011985461, 0.01021007, - 3.6870336e-4, -0.005213543, 0.0058989082, -0.0115929255, -0.0040827165, - -0.0067362892, -0.002171511, 0.017058175, -0.0099393325, -0.01052126, - 0.02273856, 0.010429734, 0.0011393123, 0.029614279, 0.005657944, - -0.04308453, -0.017458746, 0.011123031, -0.0021197891, -0.0036362077, - -0.008637482, -0.008449178, 0.0062639355, -0.002244104, -0.0075169536, - -0.018998072, 0.0069749565, -0.006907602, 1.7494365e-4, -0.031331547, - 0.018908111, 5.8288788e-5, -0.03455085, -0.01086448, 0.025077762, - -0.018358542, 0.0073420354, 0.008241798, -0.0049204854, -0.0060516433, - -0.001841293, 0.0057486515, -7.133889e-4, -0.01789552, -0.014475571, - -0.007552629, -0.020384831, 0.020668563, 0.011945741, -0.0063684266, - -0.00587125, -0.014904234, -0.004163468, -0.0060679987, 0.007937461, - -0.041902658, 0.018171916, -9.7419147e-4, -0.0014340408, -0.025595568, - -0.014177817, 0.03810173, -0.031941082, -0.013404039, -0.022231333, - 0.0016374066, -0.009642537, 0.019922093, 0.0010398594, 0.04333756, - -2.9865274e-4, 0.034491524, -0.02844132, 0.0125731705, 0.03197158, - 0.0076657855, -0.016777612, -0.010145018, 0.043794084, 0.018013705, - 0.0024456617, -0.018086247, 0.0016834703, -0.03249058, 0.004784057, - -0.010918164, -0.013211776, -0.017571215, -0.010349302, -0.0015955027, - -0.002915652, -0.00789332, 0.004358119, -0.006525708, 0.0037485363, - -0.003665863, -0.0014744883, -0.0036545384, 0.014229675, -0.024110373, - -0.002500614, -0.015887465, -1.406608e-4, 0.0121478485, -0.0052675284, - -0.0056719496, 0.013712037, 0.007100525, -0.014986709, -0.011566851, - -0.019333865, -0.0068063387, 0.030506996, 0.019603137, -0.03067759, - 0.0060400125, -0.010626727, 0.014947313, 0.013582117, -0.032178093, - -0.013896112, 0.0017002722, -0.008601216, 0.03713353, 0.010205113, - -0.012225293, 0.0017810538, 0.012799877, -0.007744019, -0.0054689287, - -0.02197189, -0.0011800943, 0.013286496, 0.0038735918, -0.00784105, - -0.0022937863, -0.01743049, -0.0022598756, -0.019799752, -0.0021613853, - -0.008263432, 5.3452136e-4, 0.003696444, -0.012451925, -0.02621483, - -0.007031551, 0.011540836, 0.018584555, -0.016045805, -0.0036803759, - 0.011402171, -0.022119947, -0.012113607, -0.008129662, -0.015707886, - -0.011029603, 0.026740843, 0.013335845, -0.0028836885, 0.022083776, - 0.012324661, -0.03738894, -0.0028782836, -0.015201468, -0.032084327, - 0.0027786677, -0.008091255, 0.012319664, 0.022266503, 0.010592221, - 0.016303891, -0.013439552, 0.009742346, 0.018132355, -0.0143756475, - -0.014252978, 0.00932436, -0.028292354, 9.778682e-4, -0.011366127, - -0.009200196, -0.0059850803, 0.0017695798, 0.018666342, -0.008055106, - -0.0048527005, 0.029588597, -0.014839926, -0.01702575, -0.0054618847, - 0.020942995, -0.012241118, 0.021817565, -0.0063626627, -0.0178096, - -0.019382067, -0.007502056, -0.004280094, -0.025147969, 0.0050506466, - 0.004759721, 0.01829178, -0.027928066, 0.0014386328, -0.017653331, - 0.019919118, -0.016411321, 0.0072293794, -0.017982002, -0.0017910112, - -0.0011060823, 0.012523582, -0.015949802, -0.0016050502, 0.017508047, - 0.011758286, -0.024674786, 0.0060164942, 0.017834404, -0.012513101, - 7.3119486e-4, -0.022019088, 0.030602314, -0.009656276, -0.0038684614, - -0.007985731, 0.022055626, 0.0059304116, 0.0013021285, -0.006818922, - -0.02113632, -0.025719773, -0.0035809816, -0.00870518, -0.0019597055, - 0.027748428, -0.001127947, -0.017647313, 0.011707909, 0.006958615, - -0.0020154098, 0.0019820647, -0.042013038, -0.029504858, 0.006760186, - -0.007955825, -0.002902143, 0.016476654, -0.0104137575, -0.014838276, - -0.019066812, -0.010281336, 0.007922195, -0.017314043, 0.0070722457, - 0.0149968155, -0.0034121517, -0.015432297, 0.0047044847, -0.009201677, - 0.0044961786, 0.0011469595, 0.04321466, -0.0088724485, 0.008414289, - -0.008994031, -0.016822102, 0.027287478, -0.01554019, 0.012078353, - 0.0028371646, -0.0012481548, 0.009042823, 0.017763192, 0.014118752, - -0.0011026344, -0.0026969332, 0.012350201, 0.02184271, -0.0041576987, - -0.016286945, -3.895777e-4, 0.002228721, 0.018280052, 0.0059886365, - 0.010201178, -0.0031015596, 0.023080358, -0.00478461, 0.028687237, - 0.012478557, -0.010523366, 9.5324847e-4, 0.009989475, 0.0070061362, - -0.025680901, 0.024337167, -0.0019652778, -0.008279402, -0.013665462, - 0.009957239, -0.019142738, -0.017980484, -0.014512093, -0.016113585, - -0.008129411, -0.0013450942, 0.0315227, -0.008683303, 0.014520655, - -7.167254e-4, 0.013640156, -0.012067087, -0.04543286, -0.009834647, - -0.0043986556, -0.008769903, 0.019063773, -0.017280528, -0.0054663126, - 0.0015794404, 0.021031404, 0.004021863, 0.02055436, 0.012828401, - 9.778722e-4, 0.02044108, 0.021316752, 0.014375748, 0.018298661, - -0.0094231395, 0.023381943, 0.020095939, -0.017184135, 0.025092162, - -0.008749381, -0.014779475, 0.010721124, 0.009740971, 0.028973121, - -0.0106595205, 0.019026352, -0.0049710693, 0.0147714475, -0.008587477, - -0.003030937, 0.006407287, 0.023574367, -0.003477312, 0.016032543, - -0.012708525, 3.7102547e-4, 0.017846124, -0.017977744, -0.04264731, - 0.0077355877, 0.019522881, -0.011328101, -0.0067219534, -0.002420758, - -0.044585347, -1.5815384e-4, 0.015644474, 0.014717187, 0.009475579, - 0.0042600655, -0.0020065622, 0.02723778, -0.005096344, -0.013560222, - 0.020891186, 0.008452643, 0.009993066, 0.015695458, 0.012910337, - 0.026238088, -0.01734221, -0.0049068793, 0.004605851, 6.1400555e-4, - 0.0069079883, -0.013674369, 0.016471516, -0.002391916, -0.007714596, - 0.022303756, -0.019112276, 0.0059341895, -0.0066799866, 0.013741418, - -0.001911082, 0.014349568, 0.017771896, -0.01491971, 0.016912125, - -0.0089485375, 2.595295e-4, 0.015965808, 0.016740527, -0.011930351, - -0.008283003, 0.0030500905, -0.010956245, 0.009304747, -0.0048064105, - 0.0060473997, -0.002765455, -0.003283427, -0.029372577, -0.0092026815, - 0.0062049576, -0.016737195, -0.0016220711, -0.0057786903, -0.016557228, - -0.012200496, -0.009212235, -0.008379724, 0.0020479895, 0.0010345812, - 0.006641021, -0.010214214, 8.062248e-4, -0.0052522128, 0.022134922, - -0.02860811, 0.008238145, 0.008851362, -0.004727681, 0.010951916, - 0.008403896, -0.031318955, -0.017515019, 0.014922222, 0.011973341, - -0.0035588872, -0.037143856, 0.006473868, 0.010626432, -0.009891254, - 0.003730275, -0.015826875, 3.258889e-4, 0.03492726, 0.011691467, - -0.008767988, 0.008648471, 0.014928842, 0.0112690935, -0.0151536735, - -0.020874918, 0.016310109, -0.007553538, 2.6242898e-4, -0.013819972, - -0.00686869, -0.024257034, 0.004645985, 0.0031956933, -0.0034645097, - 0.008586503, 0.015008799, -0.0060109976, -0.028111296, 0.015515207, - -0.013003235, -0.021724226, -0.011909094, -0.00134638, -0.009008516, - -0.0034265842, -0.006841373, 0.019260675, -0.015219133, 0.0022350072, - -0.016936569, 0.023683779, 0.016999269, 0.03093994, 0.020284086, - -0.003401664, 0.004364225, -0.001517486, -0.005086902, -0.008987395, - 0.004117068, 0.004237007, 0.0046189646, -0.024068331, -0.0012178136, - -0.020135483, -0.024152165, -0.011982556, -0.03744725, -0.003932071, - 0.014462339, -0.0032482091, -0.0022699425, 0.01711411, -0.016255701, - -0.020985698, 0.014132669, 0.038050767, 0.004764339, -0.016376028, - 0.012281899, 0.002012277, 0.009864887, 0.0028063513, -0.0052611376, - -0.013332374, -0.03258496, -3.5646974e-4, -1.6536727e-4, 0.0029552504, - 0.024136242, 0.0019412035, -0.002103903, 0.003841915, 0.03507446, - 0.00574753, -0.0020389224, 0.0014327579, 0.0028733013, 0.024646735, - -0.023122475, 0.016120661, -0.01736548, 0.014046137, 0.006474656, - -0.013944079, -0.0028764424, 0.006676263, -0.019719347, 0.0219098, - -0.009220142, 0.00693728, 0.0068639074, -0.0020729932, -0.009350613, - -0.02210466, 0.01112953, 0.006589013, 0.016626706, 0.016137715, - 0.0070437905, -0.017211707, -0.016457185, -0.00769586, 0.021386772, - 0.005670235, -2.7714774e-4, 0.020246707, 0.014084535, -0.0015570662, - 0.008938202, -0.0077277133, -0.021762514, 0.005745092, 0.0022713225, - -0.0013655882, 0.01970081, 0.009603133, 0.0038461308, -0.0058887163, - -0.002647626, 0.029845467, -0.022260137, -0.015027649, -0.0025774036, - -0.007575762, -0.0039634947, -0.001061065, -0.022922937, -0.0074567115, - 0.02269152, -0.009239752, 0.05095465, -0.0023702672, -0.0035960393, - -0.012220725, -0.0035147658, 0.014472872, 0.020422075, 0.029849846, - -0.020377938, 0.017247388, 0.004552041, -0.031739682, 0.021054918, - -0.007990159, 0.002318726, 0.014863963, -0.020725949, -0.005621214, - 0.020715637, -0.0010117585, 0.007019617, -0.02123285, 0.0023069947, - 0.0047978307, -0.006697088, 0.001095737, -0.01124682, 0.009277323, - 0.032569684, 0.027968327, -0.003762748, -0.031566482, -0.0147897, - 0.02058256, -0.004272185, 0.013082476, 0.047241002, 0.016356353, - 0.008821321, 0.019456679, 0.028372427, -0.003001856, 0.012156828, - -0.023670224, -0.010652703, 4.905586e-5, -0.00709271, -0.004658185, - -0.008499694, -0.007240314, -0.016294178, 0.0056227692, -0.007538535, - 0.017896714, 0.0041351835, 0.003433463, 0.018466981, 0.00872791, - -0.0044791466, -0.008871444, 0.0054478133, -0.031376895, -0.0079616485, - -0.0010585979, -0.016968172, 0.028136643, 0.017639691, -6.6827354e-4, - 0.0046246783, 0.0038927095, 0.0037587034, 0.0072149597, -0.008059534, - 0.01398829, 0.038903665, 0.013493338, -0.0038355822, -0.0071946867, - 0.010588277, -0.025962707, -0.012756409, 0.0015788194, 5.972354e-4, - 0.0056483177, -0.020177027, -0.011320244, -0.018219834, -0.02238363, - -0.0032307, -0.009125607, 0.015465551, -0.0034047014, -0.0054088887, - 0.02876806, -0.02152539, 0.010051159, -0.0053794235, -0.021449268, - -0.006817203, -0.0056164954, 0.023825098, -0.022456313, -0.03360805, - -0.009883855, 0.005034938, -0.0080273785, -0.0064844494, -0.0025098824, - 0.018217701, 0.007429955, 0.004080397, 0.005757007, -0.009190582, - -0.03464137, 0.01607312, -0.0030068476, -0.0065167067, -0.006519988, - -0.021049364, -0.040155612, 0.008088876, -0.008855084, -0.024026308, - -0.03601212, 0.014675032, 0.020654261, 0.013953574, 0.007338956, - 0.007287128, 9.908738e-4, -0.0037680813, -0.0060549015, 3.4882218e-4, - 0.03840935, 0.018190255, -0.015551978, 0.008860621, -0.016662993, - 0.013682252, -0.028717166, 5.107679e-4, 0.0023767024, 0.0033193005, - 6.7357195e-4, 0.031310562, 0.01618747, -0.024276882, -0.0066388054, - -0.017430136, -0.0042075007, 0.005904476, -0.0035886583, 0.0056611802, - -0.016157985, 0.012870423, 0.0138416905, -0.0014879231, 0.0035462652, - -4.6562485e-4, 0.026505737, -0.008199241, 0.012166217, -0.017090274, - -0.010465219, 0.03366055, 0.034879696, 0.012596524, -0.02623594, - 0.017253315, 1.360599e-4, -0.017365633, 0.016473822, -0.0028863254, - 0.0012443771, -0.0050389874, -0.0019636664, 0.029797006, -0.012193545, - 0.0117341215, -0.0059935357, 0.01730657, 4.5399327e-4, 0.020609992, - -0.009128143, 0.009642374, 0.0113207875, -0.0068526436, 0.0057287198, - 3.695898e-4, 0.009348055, 0.010053154, 0.0094895465, -0.022855762, - -0.015067512, 0.0030600661, 0.0012534637, 0.0016525743, -0.001511111, - -0.0037347476, 0.004758088, -0.029418582, 0.011706923, 0.0131209195, - -0.0022276468, 0.014762404, -0.012712402, 0.008644632, -0.007511461, - 0.011621797, 0.0052950233, 0.014878759, 0.025660979, -0.017163446, - 0.00906541, 4.836125e-4, -0.0076251985, -0.02217187, -0.030070087, - 0.009410768, 0.0056446823, -0.0047749467, 0.02881523, 0.002270624, - -0.007441517, -0.013171437, -0.0048071076, 0.02071973, -0.02008699, - -0.003992573, 0.024638502, -0.015962273, -0.010794228, 0.031503025, - 0.030784199, -0.026611086, 0.0024015422, -0.009991986, 0.008532341, - -0.023191094, -0.013559783, 0.013779707, 0.02276107, -0.024652133, - 0.0031873502, -0.017509535, 0.0040092613, -0.007877734, 0.0027091953, - -0.023336086, -0.018902205, 0.007845131, -0.00641523, 0.0055385325, - 0.036231074, -0.008446042, 0.0036946419, -0.0025226446, -0.011861824, - -0.00782719, 0.006067968, 0.016413718, 0.046625912, 0.02602557, - 0.001057132, -0.012014276, 0.011924737, -0.00596926, -0.0018621951, - 0.011886771, 0.009787645, 0.011799071, 0.016266376, 0.0010794011, - 0.006926616, -0.010558269, -0.011293118, -0.011353894, -0.0030880468, - -0.0085863555, 0.007970471, 0.016360415, -0.030096686, 0.0065161963, - -5.716534e-4, 0.020319054, 0.010703948, -0.0145371035, 0.0064471834, - -0.017000576, -0.019668177, 0.0043168818, 0.030628, 0.006243547, - 3.4541267e-4, -0.0015175961, 0.0044407845, -0.015270112, 0.015202572, - 0.011410606, -0.004195849, 0.008810681, 0.007151954, -0.007328539, - 0.0063789366, 0.013414332, -0.015550238, -0.014689415, -0.0019947386, - 0.004920464, -0.0014833779, -0.018155534, 0.014282814, -0.025522182, - -0.011291817, -0.0042613368, 0.010285538, -0.0022688955, 0.00734395, - -0.011635923, 0.012414249, 0.021649355, 0.007642076, 0.021799078, - -0.0112847965, 0.022072092, 0.02182816, 0.033684455, 0.009811172, - -0.0035094705, 0.006026692, -0.027634934, 0.033205792, -0.0046884418, - -0.0076333056, -0.025878377, 0.0069997623, -0.02439208, -0.005279814, - 0.009010655, -0.008937399, 0.00868452, -0.018199688, -0.010122053, - 0.026038295, -0.002024715, -0.012353482, -0.011525308, 0.021244656, - 0.0061860867, 0.019430127, -0.007111676, -0.012337146, -0.0029258572, - -0.010104598, 0.02935463, 0.015846262, 0.002137715, -0.008371384, - -0.010478619, 0.0018746865, 0.004551378, -0.039430182, -0.002679953, - -0.011637688, 0.0013010378, 0.009689526, -0.0034103272, -0.0066887275, - 0.014481506, -0.009798322, 0.0046971906, 0.012821569, 0.0017178562, - 0.023504151, -0.012702266, -0.011296141, 0.018825043, 0.020183418, - -3.9129685e-5, -0.018167287, 0.0099570565, -0.009969771, 0.010647375, - 0.030193482, -0.0010222237, 0.0066554225, -0.005837949, -0.012073631, - 0.007080434, 0.015799034, 0.011403693, -0.0035074728, -0.0028356141, - -0.025238968, 0.016496282, 0.007751247, -0.0059700906, 0.005251757, - 0.013863324, -7.560271e-4, 0.011803751, -0.01043552, 0.016762221, - -0.002125077, 0.006666343, 0.023392586, 2.6158616e-4, -0.01408901, - -0.003923745, -0.0075427913, 0.015550448, 0.015162644, -0.011566467, - 0.009871943, 0.008249343, -0.01983768, -0.039761253, 0.014261242, - 0.020851608, 0.01833798, 0.011337431, 6.262016e-4, -0.0013139843, - 0.0039375853, 0.008031807, -0.012357622, -0.028195454, -0.0157735, - 0.029263847, 0.016222673, 0.004106223, 0.020997154, -0.0060062855, - -0.002041652, -0.0100143915, -0.014831912, -0.0074879234, 0.009736216, - 0.017419877, -0.004739841, -0.009703435, 0.0035857088, -0.018687103, - -0.00878753, -0.007982497, -0.01721864, -0.040232122, 0.0065164943, - -0.044111326, 0.020448014, -6.52515e-4, -0.012982457, -0.0032774038, - 0.013601317, 0.013129602, 0.006338702, 0.0046057613, -0.020563489, - -0.014760815, 0.0023693922, -0.013647045, -0.021265583, 0.0017561279, - 0.0045065125, 0.0013049031, -0.014045429, 0.0057361345, -0.011297032, - 0.0061173136, 0.0026271604, 0.012510145, -0.026852816, -0.0010708355, - -0.012452285, -0.03105847, -0.007395418, -0.008203609, -0.0051612384, - 0.0017954068, 0.0016522633, -0.001830456, -0.0054333424, 0.016073003, - -0.0077366405, 0.024198007, -0.013358263, -0.021348506, 0.0022467715, - 0.0027766551, -0.0042416407, -1.0062489e-4, 0.008803868, -0.030048408, - 0.0071036257, 0.0037040603, -0.0014019054, 0.025618054, -0.0067099384, - 0.02199746, -0.03085411, -9.2187064e-4, -0.01198698, 0.009138949, - -0.0015002551, -0.0117409825, 0.012491013, -0.0055380836, -0.014146704, - -0.005556087, 0.0015029485, -7.460785e-4, -0.03912346, -0.042367853, - -0.021219634, 0.006427947, -0.022041766, 0.015859373, -0.015660571, - -0.0049472684, -0.009049644, -9.183281e-6, -0.011898875, -0.0034974343, - 0.01676086, -0.024222875, -0.010034791, -0.011867752, -0.044932563, - 0.025592854, 0.010525963, -0.0074440325, -0.0013206452, 0.007998227, - -0.0018448329, -0.00363026, -0.010383153 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - 0.0072120097, -0.026943402, 0.01622889, -0.009012889, 0.031380977, - 0.01778074, 0.0025286672, 0.011778131, -0.012653196, 0.013678966, - -1.6971024e-4, 0.013949485, -0.02235408, 0.011451519, 0.017077101, - 0.007308998, -0.005232933, -0.0136316605, 0.01876411, 0.00782544, - 0.036328107, 0.00576919, -0.011213548, -0.008016912, 0.013405679, - 0.02810156, -0.01739268, 0.0054438906, -0.008744903, 0.010323734, - -0.0131964125, -0.0019506277, -0.011352684, -0.006838233, -0.025639392, - 0.006239604, 0.0028716854, -0.004939497, -0.0045034713, -0.025726885, - -0.02444938, 0.03998645, 0.02208175, 0.008948518, 0.035419982, - -0.021785827, -0.0031397368, -0.02654109, 0.0024951394, 1.9527879e-4, - -0.0048080767, -0.007973662, 0.0040309066, -0.028267847, 0.024866946, - -0.0067417496, -0.014279197, 0.009135389, -9.0516097e-4, -0.0064081545, - -0.009074949, 0.009209752, 0.010773796, 0.0098470645, 0.0018922212, - -0.02003118, 0.006449517, 0.018989401, 0.008468383, 0.023118606, - -0.006336169, -4.421092e-4, -0.021945527, 0.012211183, -6.589559e-5, - -0.0080008935, -0.005781284, -0.015931448, -0.010571444, 0.0026069547, - -0.015982814, 0.0023633519, -7.3107815e-4, 0.018212287, 0.009623246, - 0.012491284, 0.016174626, -0.014276033, 0.018670253, -0.015901146, - -0.014231299, 0.006727162, -0.01491792, -0.004630527, 0.011534521, - 0.010070217, -0.0033409304, 0.010079374, -0.00890876, -0.014817671, - -0.0037841168, 0.009139073, 0.019652791, -0.03673048, -0.0042474717, - 0.03534767, -0.0117591135, -0.029397918, 0.029585244, 0.01548789, - 0.023165025, -0.011561629, -0.018817034, 0.0023207, 0.0049683345, - 0.017456982, -0.02144401, 0.013241336, -0.011926321, -0.004746597, - 0.015702106, -0.016222373, -0.023431646, -0.00723422, -0.0068062684, - -0.0033628307, 0.0029870877, 0.009011615, -0.01678675, -0.0019512918, - -0.025936078, -0.01170229, 0.0011222234, 0.021807699, -0.010145824, - 0.0070847375, 0.005071883, 0.0036754683, 0.008796294, -0.006866152, - 0.0031148593, -0.0058522564, 0.021305704, -0.0097566, -0.016144818, - -0.005625758, -0.005444349, 0.015827559, 0.006113572, 0.030206012, - -0.0038494505, -0.025699802, 0.022745946, -0.008305565, 0.0039632255, - 0.015730856, 0.0310697, -0.01728834, 0.010231549, -0.005258387, - -0.005365614, -0.0056452407, 0.002908987, 8.0872193e-4, 0.021793818, - -0.008973849, 0.013049652, -7.473777e-5, -0.0319491, 0.0034439426, - -0.0025234676, 0.013190255, -0.0034943162, 0.0027118744, 0.011702065, - -0.0033609676, -0.012993871, 0.0027914466, -0.03179639, 3.6536733e-4, - 1.4515092e-5, -0.01770404, 0.003330339, 0.002877369, 0.042745624, - -0.0059263785, 0.022132408, -0.03395774, 0.0010995485, -0.0068761823, - 0.0012081676, -0.019632798, -0.013579082, -0.01500172, -0.022075804, - -0.010779776, -0.037602365, 0.0122709405, -1.9479451e-4, 0.017189736, - -0.009386409, -0.0067519504, 8.4426056e-4, 0.0088475505, 0.0019522685, - -0.004982556, -0.020960322, -0.012270879, -0.021885032, 0.04150428, - -0.0065019014, -0.01730551, 0.013660729, -0.009828044, -0.013612019, - 0.012108617, 0.020663805, 0.0062011518, 0.014946577, -0.0074828425, - 0.0152639765, 0.0071458835, -0.0028401385, -0.0079727275, -0.0068525686, - -0.0049996194, 0.024975762, 0.002756736, -0.00964606, 0.034385003, - -0.009021898, 0.009730241, 0.053599626, -0.025739584, 0.009306596, - -0.009542989, -0.015337055, 0.01528221, 0.004400903, -0.016896628, - -0.013604678, -0.0035754067, -0.0019263233, 0.019764176, 0.010064254, - -0.0016677846, -0.02114425, 0.008265288, -0.011059672, -0.0048916806, - -0.012602725, 0.0034199306, -0.018970624, -0.0067796335, 0.013133537, - -0.008562481, -0.0034886228, -0.026256923, 0.015116414, -0.0040940605, - -0.020897692, 1.5314255e-4, 0.01586361, -0.0038234596, -0.0221323, - 0.014541756, -0.0039405865, -0.012360652, 0.0017019307, 0.028536057, - -0.011886074, -0.006067751, 0.0023430702, -0.0110071385, 0.0024044253, - -0.024122633, 0.0051429756, 0.0069148387, -0.009314004, 0.0068963626, - -0.0030162027, 0.0015151901, 0.0210222, -0.015916266, -0.002625918, - -0.012152168, -0.0045335786, 0.0058545577, 0.010724615, 0.038123127, - -0.008473241, 0.015961224, 0.04114493, 2.2504943e-4, -0.016853143, - 0.0012304689, 0.018895846, 0.0056690252, -0.021696135, -0.0153221125, - -0.0059184413, -0.0033710634, -0.0069902223, 0.029624848, 0.0048127123, - 0.010501401, -0.036083873, -0.011119714, 0.02157136, 0.014299873, - -0.022141503, -0.0027756821, 0.0010922375, 0.010213067, -0.05064857, - -0.0013282301, 0.0011361614, 0.0049439226, 0.023845471, 0.021417785, - -0.010088208, -0.0011095997, -0.0074450425, -0.00789515, 0.012356568, - 0.0042899153, -0.011631608, -0.007106946, 1.5629022e-4, 0.0058695767, - 0.0067332145, 0.03160203, 0.00771555, 0.019813212, 0.014995999, - 0.013903514, -0.02909981, -0.009219591, 0.0066078776, 0.0069206376, - 0.004180461, 0.031381723, 0.00394897, -0.008250937, -0.011834599, - -0.0015489038, -0.014099414, 0.012240879, 0.007425126, -0.029271863, - -0.004527646, 0.015306762, -0.005406787, -0.024791582, -0.019928288, - -0.0062767593, -0.04933235, -0.0149032865, -0.018699642, -0.009851852, - -0.0033062075, 0.018481607, -0.022853417, 0.0136344535, -0.008303808, - -0.018115887, 0.03252065, -0.023866683, 0.0034784058, 3.800833e-4, - -0.007716053, -0.018091401, -0.016155772, -0.046313852, -0.01914219, - -0.006275247, 0.017536087, 0.007099477, -0.012550506, 0.0137438495, - -0.009067938, 0.023869785, 0.015614371, 0.010997205, 0.0068039293, - 0.011023623, 0.0033127975, 0.015245737, -0.002655006, 0.006409345, - -0.022247398, 0.0033346533, 0.03549275, 0.027355475, -0.008959502, - 0.0013168302, -0.022509092, 0.015053254, -9.635023e-4, 0.019551069, - -0.017366849, -0.01820801, 0.014244766, 0.012193228, -0.010574116, - 0.019004708, 0.006275939, -0.0023261537, -0.015317931, -0.005304847, - -0.012036559, -0.028229365, 0.0017361694, -0.01032918, 0.03343695, - 0.026090432, -0.012020051, 0.00809387, 0.008612049, -0.0093719, - -0.008969431, 0.011048307, 0.014836001, -0.0032266874, 0.005734974, - 0.009562202, -4.246336e-4, 0.011087931, 0.010516533, 0.0080560325, - -0.012371996, 0.0032813484, -0.0068465085, 0.007860386, -0.0010509067, - -0.005604089, -0.011423278, 0.022369523, 8.839004e-4, -0.0056666345, - -0.006725066, 0.010057432, -0.009729583, 0.018527936, 0.026307553, - 0.006282675, -0.014238011, 0.009566638, 0.0018781293, 0.0030742788, - -0.014632548, 0.0083166715, -0.024821367, 0.016488532, -0.02333974, - 0.0037087458, 0.0071170996, 0.008534699, -0.00891742, -0.031890936, - -0.0014627725, 0.014094497, -0.023441944, -0.028482037, 0.0045894925, - -0.0052426695, 6.871031e-4, 0.009442381, -0.012100557, 0.004849521, - -0.007447965, 0.0335021, 0.016292464, -0.01457653, -0.013541552, - 0.020402297, -0.01721513, 0.03127013, -0.0064580766, -0.00469156, - 0.022532262, 0.026887603, -0.036001272, 0.010732751, 0.029713009, - 0.0065077413, -0.02176858, -0.006785241, 0.005003257, 0.024334872, - -0.031736348, -0.0020388155, 0.026807157, -0.0060196347, -0.017891437, - -0.0028554709, 0.01984469, 0.017958304, 0.007995433, -9.857146e-4, - 0.023228137, -0.0063931174, 0.01975449, 0.011344884, -0.0036591762, - -0.015977204, -0.001177333, -0.018518852, -0.0060757278, -0.0057563386, - 0.008658222, -0.0035373787, 0.010604074, 0.029123228, 0.013007799, - -0.0055229208, 0.023513213, 0.0038326099, -0.023580542, 0.026431283, - -0.027195174, -0.021461139, 0.024487445, -0.010079155, -0.01657317, - -0.023888957, -0.0062305173, -0.02474515, -0.0023077254, 0.0018827249, - 0.011861197, 0.026122041, -0.0063480707, -0.0038348765, -0.015023741, - 0.008205382, 0.0040676487, 0.002109101, 0.00824683, -0.0022678485, - 0.0053504743, -0.0107457265, -0.03096927, -0.0076956023, 0.019219024, - -0.017676597, 0.0059651793, -0.0044808653, -7.7831314e-4, -0.016517738, - 0.030055955, 0.0057439175, 0.011894106, 0.016050283, -7.7128655e-4, - -0.0012611418, 0.0042101364, 0.0143342065, 0.012792206, -0.017989608, - -0.023622368, -0.01625207, 0.0060598715, 0.011593041, 0.0021778194, - 0.019218681, -0.010134366, 0.021350438, -0.024353247, -0.011010247, - -0.0058972463, 0.024804812, -0.004225422, 0.013925597, 0.0034781515, - 0.020016687, -0.014887935, -0.012632852, 0.0152079845, 0.009983399, - -0.023949863, 0.010794804, 0.012032136, 0.018179098, 0.014255223, - 8.1476383e-4, -0.006517408, -0.009868361, 0.0123993335, -0.010234464, - -0.0054870136, -0.041656442, 0.01257639, 0.021798218, -0.007658792, - 0.009374231, -0.0028487106, 0.003741007, -0.018077813, 0.0018914699, - 0.0011672699, -0.024318181, 0.008365055, 0.0026523443, 0.0060266806, - 0.016883118, -0.010933151, -0.008221302, -0.03569323, -0.021104632, - -0.009105794, -0.0036426864, -0.02945504, 0.006703054, -3.2080643e-4, - -0.006626696, 0.0044063176, 0.0080485735, 0.022114456, -0.008334191, - 0.016925544, -0.0054083066, -0.003562962, 2.6205272e-4, -0.015397581, - 0.020336416, 0.009965205, 0.015391072, -0.015928654, -0.0213489, - 0.01776213, 0.009788684, 0.018017247, 0.016997658, -0.0022879418, - -0.013378717, 0.005112211, -0.016029732, 0.007148262, 0.023505095, - 0.018207436, 0.015820574, -0.0053813974, 0.016484868, -0.0037883539, - 0.0011551486, 0.025062254, -3.312435e-4, 0.003324698, -0.0053585423, - -0.016872438, 0.023265028, -0.014252674, 0.010903652, 0.025993235, - -0.012508443, 0.009814615, -0.005178847, 0.01833865, 0.015613933, - -0.0010062936, -0.0014773207, -0.020345153, -0.0051725763, 0.010327928, - 0.0031499506, 0.0056503844, 0.007003348, 0.037443303, 0.00833523, - -0.013972535, 6.946129e-4, 0.003186511, -0.014475175, 1.2552006e-4, - 0.0054678954, 0.017004134, -0.011566316, 0.025503526, 0.029635588, - 0.015763788, 0.0061284807, -0.0038818172, -0.0239374, -0.031408794, - 0.007989369, -0.014041374, 0.019660983, 0.023543095, -0.0075837113, - -0.0036823144, 0.011325174, 0.006512538, -0.0075476733, 0.005947175, - 0.02526012, -0.018016335, 0.0026288244, 0.0049342476, -0.02683254, - -0.020342411, -0.013283582, 0.008495265, 0.004136484, 0.022317026, - -0.0021113576, 0.007181227, -0.014020029, -0.008306593, -0.002757001, - -0.012016109, 0.0040392834, 0.017164202, 0.020193806, 0.019927308, - 0.0022299553, -0.01532855, 2.963459e-4, 0.008967703, -0.0146853905, - 0.0020485048, -0.02289437, 0.011128723, 0.009898124, 0.0026563937, - 0.028672183, 0.0023855504, 0.0044553294, 0.012865448, 0.01989579, - -0.0015511024, 0.014447556, 0.009423461, 0.0107032275, -0.033158123, - -0.0067726513, 0.018683465, 0.017823564, 0.012480025, -0.005809914, - -0.016312521, 0.01045031, 0.019230476, 0.005147573, 0.0122726215, - -0.025712265, -0.007920671, 0.004074769, 0.0040434864, -0.009199949, - -0.009406876, -0.004679183, -5.282296e-4, 0.016444504, -0.007609768, - 0.0036850562, 0.009343105, -0.005847892, -0.011580502, 0.015831826, - -0.009782596, 0.01881351, 0.016577965, -0.025363209, -0.011212379, - -0.02736304, 0.004077986, -0.0028083078, 6.403979e-4, 0.015778413, - 0.0041882833, 0.0051754024, 0.01132498, -0.019047597, -0.011444029, - -9.796922e-4, -0.034402676, 0.013909358, -0.0104108825, -0.009074236, - 0.007769327, -0.010546116, 0.03795436, 0.017734934, -0.014597199, - 0.0012744827, -0.009322583, 0.004837381, -0.0076832883, 0.01030291, - 0.020918777, 0.013234523, -0.009369534, 0.0058328635, -0.009096247, - 0.022804337, 0.026224894, -0.016747229, 0.005899905, -0.009209389, - 0.013073858, 0.0035366036, -0.0062799123, 0.013419766, -0.005483661, - -0.0049692364, -0.013775266, 0.0035477513, -0.023387399, -0.003941098, - -0.018505938, -0.013077558, -0.008447748, 0.01141486, 0.024430754, - 0.00338943, 0.03122286, 0.008989998, -0.0034631873, -0.018329296, - -0.010112715, 0.019644495, -0.017692426, 0.020499237, -0.01965493, - -0.0046087108, -0.019336648, 0.020931438, 0.005512913, -0.012620371, - 3.0704847e-4, -0.03206377, 0.016389972, 0.0063382443, 0.022058526, - 0.0149266105, -0.011150271, -0.011089436, 0.008872569, 0.009599358, - 0.01835271, 0.015813027, 0.005874209, 0.009019017, -0.009714085, - 0.02745982, -0.025918677, -0.0012362709, -0.0053229854, -0.0385866, - 0.012295595, -0.018786432, -0.015012478, 0.020851262, -0.0044580293, - 0.007448835, -0.0042900904, 0.010919485, -0.009374215, -1.848341e-4, - 0.018307269, -0.015484922, 0.0027788635, -0.007688516, 0.0076857074, - 0.013169656, -0.010281001, 0.02248978, 0.0319721, -0.015146849, - -0.007094802, -0.003020773, -0.009639242, 0.016690234, -0.007822769, - 0.013699104, -0.023679826, 0.022665633, -1.18520155e-4, -0.010326911, - -0.02051707, -0.006075149, 0.0010351337, 0.017121289, -0.01770914, - -0.020235784, 0.0014369116, -0.009850856, -0.0034020494, -0.0028270676, - -0.012498091, -0.020526621, 0.012066744, -0.025607808, 0.0044670203, - 0.010617117, -0.005738457, 0.009416828, 0.0077227596, -0.019987892, - 0.005834409, -0.014333326, 0.006742096, -0.03140391, 0.00847326, - 0.012119734, -0.0013244741, 0.04396263, 0.006205574, 0.0019745454, - -0.013709071, 0.039690316, 0.02371913, -0.0072890553, 0.014474059, - -0.015225482, -0.024957348, 0.012084836, -0.019083241, 0.001731382, - 0.017363526, 0.006581836, 0.011580413, -0.0031260338, -0.0020508254, - -0.01388079, 0.016756762, -0.0114991125, 0.030870218, -0.013353626, - -0.021367108, 0.027340675, -0.0076433206, -0.016981242, -0.007651918, - -0.006890762, 0.025566151, 0.0014411726, -0.004300223, -0.0024518468, - -0.033033695, -0.0012482728, -0.027953913, 0.033663366, 0.016708465, - 0.009958304, -0.015893603, 0.018442443, 0.025302839, 0.020364549, - -0.00377074, 0.018309297, 0.032222573, 7.45056e-4, 0.009892852, - -0.009300822, -0.009483068, 0.015010279, -0.003417932, 0.019429572, - -0.010927629, -0.002439129, 0.004776656, 7.7820895e-4, -0.019857937, - 4.650856e-4, 0.01765868, 5.126501e-4, -0.009864966, 1.4646772e-4, - -0.008740368, 0.001650037, -0.0018933765, -0.009776322, -0.01039167, - 0.006022269, 0.01372117, 0.021849966, 0.0033583415, -0.016639987, - 0.0048689693, 0.019632814, 0.03426294, 0.0052888663, 0.0025389954, - 0.027828716, -0.011378858, 0.0068815365, -0.0026801373, 0.011465663, - 0.00206915, -0.013347036, -0.007815462, 0.033090305, 0.0035639969, - -0.024729677, 0.036881186, -0.0039864383, -0.02459504, 0.024988657, - -0.01076735, 0.0036455465, 0.01851939, 0.0060274377, -0.019259693, - -0.017826403, 0.04728983, -0.017726626, -5.048978e-4, -0.008647754, - -0.029525835, -0.0042132344, -0.0064131063, 0.0064373272, -0.012679801, - -0.0344416, -0.014987022, 0.0029983248, -0.033757128, -0.0070466106, - -0.030390607, -0.0381893, -0.007053969, 0.017538827, -0.0015538981, - 0.009321981, 0.0070954696, 0.010461902, 0.009983459, 0.022251824, - -0.0037532537, 5.651791e-4, -0.0038128342, -0.019385993, 0.010398843, - 0.0085726995, -0.015548582, -0.005377838, -0.017182099, 0.003961732, - -0.011873063, 0.034480847, 9.822237e-4, -0.018480096, -0.0032145523, - -0.006803597, -0.02602549, -0.009380268, 0.013755874, 0.009744889, - 0.021221995, -0.0023018466, -0.013088827, 0.0055912365, 0.01909934, - 0.0022437822, -0.0074060773, -0.006189045, 0.0017833035, 0.02876491, - 0.0023910706, -0.0063558915, -0.00128408, -0.00196951, -0.0077624866, - 0.005619946, 0.005273912, -0.001694821, -0.004055284, -0.0054110354, - 0.020440442, 0.009399447, -0.003987234, -0.0040208707, 0.0024141045, - -0.0114059225, 0.02008843, -0.014023282, -0.0026071682, -0.0039654756, - -0.045303263, -0.0102552455, -0.014087846, -0.0033558318, 0.003343204, - 0.034818843, 0.034688223, -0.025939586, -0.012726809, -0.009042767, - 9.167984e-5, 0.019204838, -0.020283427, 0.008451894, -0.0067786304, - 0.0040113525, -0.015161292, -0.01349053, -0.015887136, 5.47385e-4, - -0.013889684, 0.012214427, 0.018797522, 0.0033226951, 0.011903995, - -0.018085388, -0.011195724, 4.0826495e-4, 0.0053650523, -0.008104385, - -0.0123721305, -0.025950119, -0.02392885, 0.014877882, -0.026972156, - 0.040679205, -0.010125403, 0.011329188, -0.0016955704, 0.020974372, - 0.020902427, -0.028826654, -0.012193655, -0.011289901, -0.009209913, - -0.03080357, -0.0091999695, -0.02530777, -0.010797293, -0.0071076103, - -0.00538131, 0.011425365, -0.009388563, -0.0174409, 0.014965946, - 0.0106807295, -0.01507943, -0.013113258, -0.031487666, -0.022561807, - 0.014086142, -7.2071736e-4, -0.0015336013, 0.023079623, 0.00632096, - 0.0027666513, 5.386361e-4, 5.941945e-4, -0.013856563, -0.030329728, - -0.0037175189, 0.013668742, 0.017791253, -0.004564963, -0.027755085, - -0.008035799, 8.701827e-4, 0.018427666, 0.007403608, 0.00181463, - -0.0033609585, -0.013985431, -0.0068014786, -0.019524762, 0.0030330622, - -0.0065064235, 0.014170743, -0.024612917, -0.02156822, 0.0074898093, - -0.02127122, -0.0039431076, 0.024458908, -0.0016291024, -0.016558489, - -0.020828545, -0.0045618736, 0.0011656954, -0.01572182, 0.013308309, - 0.022297448, 0.036078613, -0.02087223, -0.0310917, 0.010502019, - 0.008008693, 0.008457115, 0.013674606, -0.018979527, 0.009561131, - 0.006278413, -0.026990104, -0.0126352515, -0.012301662, 0.015390581, - -0.023729473, -0.022062648, -0.023941442, 0.021084635, 0.004072246, - -0.0083669685, 0.0010353342, -0.011771958, -0.021415386, -0.004106907, - 0.0063354154, 0.007625708, -0.0039812922, -0.009976307, 0.004851685, - -0.0014540921, -0.0013876256, -0.014213553, 0.04254901, -0.002715559, - 9.5881225e-4, 0.015617663, 0.023639774, -0.012247317, -0.008888187, - -0.029335352, -0.011154235, 0.0010394165, -1.9090921e-4, -0.0065771975, - 0.0016671445, -0.03077418, -0.032374445, -0.0050926143, -0.007042489, - 0.021514658, 0.0067247637, -0.0014518165, -0.023249611, -0.00487636, - 0.016405137, 0.011724235, -4.5856333e-4, -0.009651022, -8.94279e-4, - 0.002432506, -0.0011561116, -0.0033376357, 0.007994927, -0.006921257, - 0.003119572, 0.010313331, 0.018970625, -0.008267719, 0.0010574264, - -0.007776113, -0.024936486, 0.024016626, -0.0070999437, 0.008384585, - 0.021992967, -0.020427229, -0.0119705545, -0.0020627964, -0.003896893, - -0.013263219, -0.03038791, -0.0018178556, -0.0063481694, -0.0049476614, - 4.5581156e-4, -0.008059439, -0.0025868695, 0.014706258, -0.0045153648, - -0.021482166, -0.028121643, -0.008092655, 0.008985212, -0.014331476, - -0.02214473, -0.01622978, 0.015102371, -0.016956918, 0.029038632, - 0.022887504, -0.0019445386, -0.0063501676, -1.5187613e-5, -0.023213571, - 0.004184588, -0.005417578, -6.243729e-4, 0.0024824883, -4.611619e-4, - -0.013219054, 0.020725269, 0.002316013, 0.007573459, 0.0127696665, - -0.016427042, 0.023357175, 0.006603914, -0.0041917395, 5.279238e-4, - -0.014443024, 0.039862998, 0.0027341074, -0.010855462, 0.0023788994, - 0.008316787, 0.0031716328, 0.02055295, -0.008343921, -0.014435708, - 0.01920941, -0.029841665, -0.0100648645, -0.0012800677, -0.0033021464, - 0.008257071, -0.0013146088, 1.1852159e-4, 0.01400477, 0.026995758, - -0.0075550787, -0.009257652, -0.016877914, -0.0058841994, 8.2586054e-4, - -0.044935323, 0.006444367, 0.0059988117, -0.016809052, -0.014537876, - 0.005047081, -0.009698693, -0.025139427, 0.0021654833, -0.0027519814, - 0.017157335, 0.0048851636, -0.025074245, -0.026925959, 0.012796829, - -0.014681464, 0.010262211, 0.025820613, 0.02345771, -0.001440223, - -0.0033611387, 0.03273411, 0.0034252868, -0.016825816, -0.024395546, - -0.0020885454, -0.020520056, 0.015258186, -0.04629083, 0.0061758533, - 0.005346811, -0.019317187, 0.024495635, -0.024236578, -0.014185947, - 0.014057452, -0.009680346, 0.009069671, -0.0048259934, -0.005935344, - 0.026983593, -0.0031637663, -0.0118772695, -0.011650472, -0.002711189, - 0.005566431, -0.0067322473, -0.010247612, -3.336982e-4, -0.01905424, - -0.017943127, -0.02093586, -0.01877847, 9.778743e-4, -0.02266236, - -0.0020669275, 0.00417888, -0.02772017, -0.003022287, -0.01835778, - -0.013549035, 0.0012059149, 0.020483274, -0.011684495, -0.01783699, - -0.010713882, -0.009757713, 0.013529005, -0.015876029, 0.0011170029, - -0.008423584, -0.011512581, 0.018972775, 0.0026018354, -0.017684897, - -0.008445254, 0.01771978, -0.027563894, -0.012918581, 0.013172136, - -0.01979186, 0.022412369, 0.028726751, -0.0034117338, -0.00898887, - 0.0026465207, 0.023854868, 0.0016267495, -0.0011727588, -0.0039474233, - -0.008941415, 0.03635095, -0.011436925, 0.0011076247, 0.026834425, - -0.009512076, 0.019851804, -0.0077422317, 0.0012044267, -0.03212289, - -0.021152055, 0.004858686, 0.013085406, -0.009900226, -0.018083882, - -0.012997446, 0.0047445083, -0.004507119, -9.81548e-4, -0.024876311, - 0.001701447, -0.010485695, 0.021550111, 0.018158615, -0.02507952, - 0.006051887, -0.0070292964, 0.029652646, 0.020777913, -0.008323294, - 0.004740968, 0.0046597454, -0.0023722905, -0.0064979, 0.020606786, - -0.015457324, -0.017465606, -0.019592455, 0.0019801985, -0.019943215, - 0.008990008, -0.01807927, -0.005997247, -0.018139996, 0.02771353, - -0.013716133, -0.005663815, -0.016249603, -0.013140979, -0.025945062, - 0.017370813, -0.016502779, 0.0010571555, -0.007832812, -0.0025766178, - 0.0064284336, -0.0014059913, -0.023531806, 0.014347959, -0.014950665, - 0.002116881, -0.01452236, 0.011444303, 0.014976288, -0.0018845205, - 0.021525888, 0.019712735, 4.7817305e-4, 0.021691242, 0.020381482, - 0.034977175, 0.014169644, -0.0037225392, 0.017954817, -0.0032557836, - -0.011478637, 0.027726471, 0.020903327, -0.005931587, 0.019320307, - 0.01789929, -0.012565966, -0.014807355, 0.001417895, -8.2705467e-4, - 0.025665943, 0.012138962, -0.019888276, 0.012430551, -0.0066030356, - -0.0051816087, -0.014166504, -0.0065726773, 0.008889419, -0.013590289, - -0.010575974, 0.012151716, -0.014136813, 0.008032732, 0.011780409, - -7.6281326e-4, 0.003906396, 0.0037962138, 0.006310892, 9.043782e-4, - 0.028367033, -0.002515352, -0.016778585, -0.007030632, 0.0011933837, - 0.012429717, 0.005390452, 0.009112584, 0.020850886, -0.009242959, - 0.01663431, 0.016751073, -0.018406589, 0.0065125716, 0.019286575, - -0.009369507, 0.005992051, 0.013440337, -0.012536767, -0.0037386762, - -0.0043224213, -7.261276e-4, -0.019905688, 4.3019195e-4, 0.0073070806, - -0.0037503203, -0.009276664, 0.018311867, 0.003527629, 0.0070221927, - 0.018530896, 0.004499258, -0.0017451604, -0.008034104, 0.014301668, - -0.0042322576, -0.019729726, 0.0075300024, -0.01916587, 3.8029303e-4, - -0.025059758, 0.012308325, 0.033948004, -0.02671104, -0.018399488, - 0.016023347, 0.016777325, 0.002321159, 0.0020323792, 0.006848294, - 0.020327996, 0.0042927894, -0.009398768, 0.005826747, -0.010780344, - -0.0065925354, -0.008226272, -0.019317826, 0.019915786, 0.006688733, - 4.468563e-4, -0.021635313, 0.027245052, 0.011728084, -0.0014643897, - 0.018768795, -0.0024408135, 0.0054389294, 0.0024717187, -0.0069920304, - -0.0031703976, 0.010663081, 0.015097597, -0.0024124829, -0.006722865, - 0.002477356, -0.018142156, 0.013167927, 0.027838048, 0.019993335, - -0.019290797, 0.0079095345, 0.013997097, 0.00318648, 0.0062960503, - 0.01565878, -0.0037073689, -0.0043533184, 0.015917, -0.008401569, - 0.0133256875, -0.01277659, 0.03062325, 0.003308829, -0.010793722, - -0.030852793, 0.031556565, -0.02228323, 0.018086132, -0.020932205, - 0.0117328195, 0.002203221, -0.0066816513, 0.017896019, -0.0050292625, - 0.015693976, -0.0037142555, 0.0036062025, -0.02001541, -0.011135575, - 0.027284337, -0.0022366066, -0.0011095026, 0.020063432, -0.014028314, - -2.3597508e-4, -0.011888731, -0.011250831, -0.045303363, -0.03344779, - -0.007838371, -0.0036362843, 0.0022773629, -0.011576982, 0.015490197, - -0.05219249, 0.022765063, 0.02866699, 0.017927174, 0.03632651, - 0.0201786, -0.011103039, 0.008622003, 0.0063487627, -0.017199993, - -9.609899e-4, 0.012207087, -0.017262852, -0.006366652, 0.0019229478, - 0.01659855, 8.0360734e-4, 0.009683511, -0.016540488, -0.01497718, - 0.011772373, -0.0033279106, 7.573838e-5, -0.010200823, -0.012873403, - 0.0020824333, 0.029536882, 0.0030493168, -4.5549835e-4, -0.037243627, - 0.0039412854, -0.015734915, 0.008562267, -0.006504496, -0.005154413, - -0.022927852, 0.022406794, 0.013031713, 0.008165809, -0.027866596, - 0.005374976, 4.9784704e-4, 0.018992942, 0.0018884009, 0.0037043022, - 0.03124795, 0.0075277905, 0.00133983, -0.020786373, 0.030674625, - -0.022621851, -0.0050988267, -0.03200042, -0.0058048796, -6.5139204e-4, - 2.1102793e-5, 0.024509726, 0.00641556, 0.021297846, 0.005077214, - 0.022969756, 0.0038234745, 0.0050005703, -0.011373964, 0.0049353843, - 0.026123717, -0.0022875408, 0.022070913, 0.017152065, -2.7850008e-4, - 0.014124269, -0.012696478, -0.0034091265, 0.014489939, 0.017468791, - -0.023119718, -0.03236999, 0.00814683, -0.020372178, 0.009320552, - 0.0060140486, 0.022976572, -0.027045004, -0.005949929, 0.0046829893, - -0.030875804, 0.009824803, -0.0058567543, 0.0027229132, -0.023733133, - -0.018804457, 0.0115390085, 0.015344012, 0.0284024, -0.011859211, - 0.025264047, 0.0102434335, -0.03413476, 1.6302167e-4, 0.0013556927, - 0.013413451, -0.00987059, -0.020346206, -0.0065491186, -0.0322139, - 0.019866688, 0.0017558092, 4.0908213e-4, -0.004516463, 0.0034067335, - -0.018504368, 0.008929379, 0.0051140087, 0.005540566, -0.007804971, - -0.016371857, -0.009880633, 0.0032564425, 0.019773878, -8.4555487e-4, - -0.0068529514, 0.01775744, 0.007612172, 0.026992, -0.013131124, - 0.012730586, 4.626149e-4, 0.025030691, 0.0045423345, -0.014564519, - -0.024320424, -0.006795165, 0.01937136, -0.036477778, 0.018667193, - -0.008735078, -0.005804324, 0.008726849, -0.027465679, -0.024757195, - 0.007373926, 0.0016957058, 0.025316255, 0.02804056, 0.01698567, - 0.005969383, -0.0011264406, -0.013273625, 8.6593995e-5, 0.010968036, - -0.013035437, 6.018891e-4, 0.008998485, 0.040285263, -0.0141072245, - 0.025465302, -0.0042835735, 0.008879959, 0.016998086, -0.012857944, - 9.4217435e-4, 0.0038499802, 0.00213972, 0.001361981, -0.059234627, - -0.013644727, -0.024064727, 0.012205532, -0.023846127, -0.016856017, - 0.010878131, 0.0012181976, 0.0114654675, -0.013901058, -0.017312866, - -0.0049682744, -0.0051673767, 0.014753802, 0.012899334, 0.025852293, - 3.6659124e-4, -0.01474357, -0.012613121, 0.012037981, 0.007811303, - 0.011848376, 0.007963545, 0.0046469136, -0.007549817, -0.012141431, - 0.010413836, -0.0037207191, 0.0030090627, 0.007992162, 0.029868139, - -0.009467916, 0.01334103, 0.016090246, -0.007385779, -0.004893702, - -0.0146198105, 0.0015961027, 0.0113922125, -0.0035508873, 0.02790939, - -0.0074452544, -0.012647104, -0.03868415, 0.0142179085, -0.015919032, - -0.00980848, -0.014979586, 0.016335726, 0.001867658, -0.019720638, - 0.0046559577, -0.01470401, 0.0062443838, -7.586389e-4, 0.013102444, - -0.01490105, 0.016502064, -0.002450242, 0.013131412, 0.007996833, - -7.7867106e-4, -0.025924401, 0.00503732, -0.0055096014, 0.006075657, - 0.018624313, -0.007170409, 0.007570469, -0.009774812, -0.017412357, - -0.013765632, 0.018522518, -0.010737095, -0.014354302, -0.013468222, - -0.0036467058, 0.01608616, 0.024489073, -0.007501118, 0.016380051, - 0.00513942, -0.0061417734, -0.02151416, -0.020459011, 0.032480907, - -0.0043604574, -0.0018028459, -0.011288779, 0.003558641, -0.003983284, - -0.013849529, 0.028819524, -8.2652856e-5, -0.0030284417, 0.016973782, - -0.003976879, 0.011904754, 0.013407449, 0.02599579, -0.012998183, - -0.018283313, 0.008863441, 0.0040672724, 0.01683639, 0.014807966, - 0.01166354, 0.0035373904, -0.009120035, 0.003269229, 0.0034162793, - -0.027751444, -0.010333327, -0.008130526, -0.019404182, 0.02073105, - -0.0021229172, -0.032174505, -0.012707413, -0.004657254, -0.016880251, - 2.2308537e-4, 5.991802e-4, 0.0010429865, 0.017890476, 0.014385765, - 4.9811842e-6, -0.018515809, -0.036610164, 0.006237282, 0.0056557935, - 0.0011363567, 0.01107095, -0.008482672, -0.02131137, 0.0070800832, - -0.010783065, 0.0042469963, -0.010322902, 0.011206847, -0.0025434173, - 0.019014038, -0.013120694, -0.007596089, -0.0053545013, -0.005074562, - 0.001428649, -0.007780806, -0.018662764, 0.0073282346, -0.027579641, - 0.0024493523, -0.019512681, -0.003317787, 0.0053307307, -0.01861861, - -0.028864546, 0.019696308, 0.009440399, -0.006050933, -0.027608024, - -2.6146046e-4, -0.01861467, 0.015390914, -0.010196838, 0.012708427, - -0.0033420795, 0.0020368474, 0.034603946, -0.005884135, 0.0011812168, - 8.1844965e-4, -2.9266663e-4, 0.011822582, 0.011400155, -0.010353687, - 0.0028353608, 0.015713017, -0.007961523, -0.008858974, -0.03334749, - -0.029292243, 0.020605804, -0.007950657, -0.015698759, -0.039048243, - -0.0022896822, 0.0045954096, -0.008576907, 0.015375313, 0.012462778, - -0.01482444, -0.006644017, -0.007389395, -0.0284855, -0.008486321, - 0.005279454, -0.015294753, -0.0033851718, 0.008826549, -0.02156836, - 0.022518972, 0.0026051258, -0.0070112133, 0.02111361, -0.018109633, - -0.019558446, 0.007858054, 0.025409693, 0.0043248944, 0.013162409, - 0.005040348, 0.022741236, -0.031274725, 0.0022643188, 0.0036471991, - 0.031076059, -0.03240677, 0.022705102, 0.013919536, 0.0038851034, - 5.827071e-4, 0.015380191, -0.00822519, 0.0042288657, -0.012550086, - 0.020694302, -0.0090237865, -0.014470414, 0.0037758104, 0.012687846, - -0.01656676, -0.01337891, 0.0063953027, -0.02176501, -0.01404917, - -0.007130234, -0.0021035997, -0.0035272527 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.02179622, 0.016395312, 0.015842188, 0.034909043, 0.02769281, - 8.5729925e-4, 0.004288521, -0.014126748, -0.03898714, -7.808399e-4, - -0.018122004, -0.018834135, -0.0075866543, 0.010357569, -0.027117338, - 0.04612953, -0.04129261, -0.017439807, -0.037713386, 0.0564867, - 0.01711979, 0.05009383, 0.0787805, 0.041648608, -0.06295241, - -0.042400796, -0.021082494, -0.013623554, -0.013882903, -0.02055681, - -0.0040194914, 0.022074142, 0.024370525, -0.016299574, 0.040306915, - 0.020571183, -0.018970406, 0.038359877, 0.046278827, 0.04571373, - 0.057343792, -0.013391056, 0.05851822, -0.020812001, 0.0016108222, - 0.03717814, -0.008703653, 0.004100987, -0.054428898, 0.018243542, - 0.013688147, 0.021767383, 0.011332604, 0.011764648, 0.017881228, - 3.0228792e-4, -0.05728538, 0.02271332, -0.044635747, -0.012142489, - 0.003738746, 0.056705035, 0.033637386, 0.036943268, 0.0365149, - -0.010774246, -0.0429135, 0.043047365, 0.039800525, 0.018304348, - -0.006471358, -0.027891768, 0.050300255, 0.05820375, -0.021650134, - -0.015256413, -0.092946075, 0.020449542, -0.010834763, -0.022710217, - -0.062013444, 0.0016744067, -0.0058416245, 0.0017920213, -0.047818262, - -0.049090214, 0.09843554, 0.035801202, -0.009660776, -0.01728991, - -0.04525665, -0.019579468, -0.025705682, -0.057198625, -0.06457528, - -0.019593598, 0.020231836, -0.037697226, 0.048543084, -0.044252653, - 0.012652291, 0.024934003, 0.044577986, -0.0053782747, -0.009681311, - -0.004899238, 0.049429078, -0.03622179, -0.008857961, -9.669023e-4, - -0.05680273, 0.031033544, 0.026443863, -0.015288463, 0.011871538, - -0.0059213853, 0.022830218, -0.023315774, -0.016060267, 0.027298868, - 7.3546317e-4, -0.008479158, 0.031110851, 0.06267657, 0.04364924, - 0.0094091315, 0.06893182, 0.02182643, -0.004371163, -0.0012268743, - -0.002530033, -0.03316842, -0.02903719, 0.025627147, 0.007177599, - -0.025941458, -0.0044706436, 0.008502321, 0.010912385, -0.036307782, - -0.011315041, -0.020567069, -0.0175556, 0.011830481, 0.05773496, - 0.0090536345, -0.016379895, -0.011051925, -0.055117026, -0.055526577, - -0.038089726, -0.06354244, 0.021455657, -0.027869772, -0.05991027, - -0.0068747737, -0.010586034, 0.008703283, -0.007937756, 0.024307033, - -0.048319865, 0.001463763, -0.01359705, 0.024905639, -0.020812823, - -0.005324804, 0.05452897, -0.006499422, 0.06456295, -0.059916772, - 0.020101054, 3.4031263e-4, 0.1130596, -0.03571701, -0.052047934, - -0.031286497, -0.014205102, -0.028644549, 0.020688655, 0.024238942, - -0.007083299, 0.033794355, 0.0049636336, 0.04186953, -0.014824798, - 0.034210384, 0.017659344, -0.024642775, -0.0149413105, 0.011929477, - 0.016380796, 0.007797964, 0.007974356, -0.014877405, -0.019266501, - -0.007746521, -0.0851896, -0.011751162, 0.04032253, 0.06293594, - 1.4006405e-4, 0.048880693, 0.029508596, -0.030101977, -0.007473105, - -0.03613306, 0.022759674, -0.01889298, 0.0036188606, 1.7038555e-4, - 0.05102379, 0.03285722, 0.00969627, -0.02397605, 0.010348878, - 0.011609673, -0.06610807, 0.0221276, 0.030961087, -0.012637847, - 0.009503489, -0.008837674, -0.025609849, -0.06606024, 0.004231966, - 0.00806745, 0.052549135, 0.01314918, 0.024359401, -0.01604353, - 0.011368241, -0.01622281, -0.039261334, 0.0069425288, 0.0524637, - -0.039628644, -0.03861082, -0.012875287, 0.024500756, 0.0144411195, - -0.002570374, 0.06374803, -0.012000781, -0.046344005, 0.009668239, - -0.01518335, -0.058817267, -0.0023464558, 0.025482932, 0.027606932, - -0.03234907, 0.03570468, -0.04889615, -0.04871104, 0.0070619266, - 0.035834495, 0.0015317941, -0.022303829, 0.011932729, -0.034999214, - 0.02211182, 0.046870306, 0.033573806, -0.008605381, -0.061461017, - 0.06273045, 0.010120871, -0.044844843, -0.039839517, -0.01984159, - 0.014791413, -0.041988768, -0.010922294, -0.0052521843, -0.029116714, - 0.044715237, 0.001839668, -0.054570645, -0.04880981, 0.0029490273, - 0.014394026, -0.014914018, 0.030725243, -0.021324424, 0.019807205, - 0.031875983, 0.07126119, -0.05259022, 0.013179081, -0.0055422154, - 0.047850803, 0.0022011015, -0.016537454, -0.004866045, 0.03875187, - -0.059474096, -0.04055472, -8.331864e-5, 0.045385387, 0.025328489, - 0.009717987, 0.020529332, -0.016687484, 0.03651723, 0.010757266, - 0.024173385, 0.054426678, -0.016483087, -0.012642956, -0.0046013333, - 0.0108725075, -0.004714296, -0.03853351, -0.048280466, -0.03923403, - 0.002216536, -0.019681826, -0.07138773, -8.731261e-4, 0.019555006, - -0.018645326, 0.072351344, 0.04371173, -0.06281748, 0.009597343, - -0.031755593, 0.0071352758, 0.049473457, 0.045761954, -0.013025092, - -0.006202666, -0.03747689, -0.0010049454, -0.045405168, -0.0050356984, - -0.03221703, -0.009579049, -0.049105782, 0.05132909, 0.02336968, - 0.0014309942, -0.008419651, -0.0033536186, -0.015337983, 0.020793233, - -0.036979116, -0.06361838, -0.04121131, 0.0026081959, -0.058663536, - 0.039928682, 0.017270612, -0.0013074045, 0.02965157, -0.019424153, - -0.018908408, 0.033191003, 0.031141449, -0.0064391145, -0.0054554977, - -0.008979286, 0.011525574, -0.06926246, -0.007713894, -0.035146948, - 0.033764716, 0.0063418355, -0.03186491, 0.06699434, 0.03234324, - 0.050990954, 0.0017018516, 0.0021044821, 0.04773459, -0.046111166, - 0.053330418, 0.028849212, -0.025938554, 0.014410041, 0.057791986, - 0.015147411, 0.0013741715, -0.011412981, -0.032548644, -0.015300264, - -0.025562404, 0.060152214, -3.4549795e-4, 0.021139804, 0.015413281, - 0.016166445, -0.01728115, -0.009712374, 0.0225029, 0.01476879, - -0.029276961, -0.045476962, -0.038816758, -0.053792126, 0.0064134477, - -0.015461068, 0.017771516, -0.022174478, -0.029747067, 0.046005294, - 0.035524763, 0.029026166, -2.2834424e-4, 0.0015568765, 0.003961953, - -0.006159122, -0.016561922, -0.001246251, 0.020633249, 0.026597405, - -0.055637512, 0.0033181915, -0.017223056, 0.051016554, 0.062972724, - 0.006288431, -0.06545518, 0.037546698, 0.06928898, -0.021058375, - 0.029222576, -0.056917515, -0.022656074, 0.03671736, -0.01333089, - 0.06397831, -0.022503942, 0.04661155, 0.02077619, -0.05005395, - -0.015815632, -0.02223073, 0.03759197, -0.031758886, 0.029019587, - -0.027597105, 0.05481246, -0.012029887, 0.0518082, 0.07946334, - 0.0063127917, 0.014753449, -0.012394776, -0.022127539, -0.037037287, - 0.024159243, 0.0012385789, 0.009351022, -0.0073130825, -0.026984263, - -0.015542596, -0.021207716, -0.024498327, 0.0096718855, 0.004513158, - 0.04531641, 0.009711481, -0.039774634, -0.021835288, -0.045137476, - 0.022280483, -0.012889783, 7.7283947e-4, -0.01896201, 0.033405986, - -0.021049483, -0.0027358897, -0.022549603, 0.01164544, 0.030673997, - -0.0070587266, -0.021518426, 0.08267344, -0.0065410696, -0.058041003, - 0.03569288, 0.07115735, 0.059812225, 0.03645847, -0.051660027, - 0.011839894, 0.026512949, -0.005187791, -0.008381363, 0.009685848, - 0.007882688, -2.888288e-4, 0.0021561834, 0.019023458, 0.12113845, - -0.010320204, 0.0032464433, -0.05557547, 0.00721947, -0.012332472, - -0.00924186, 0.02783084, -0.017671753, -0.055113863, 0.056851972, - -0.0107961865, 0.033974156, -0.05088975, 0.012958933, 0.0102198245, - 0.023080537, 0.010374189, -0.0132267205, -0.007247714, -0.010699186, - 0.04883992, -0.015296658, -0.012611645, 0.0067458204, 0.014365214, - 0.0486325, 0.0418694, 0.027298063, -0.002681746, 0.0029730839, - 0.0036074128, 0.052593894, 0.0017446593, 0.03427277, -0.02502401, - -0.026109817, -0.051961023, -0.029336654, 0.00626414, -0.020385865, - 0.017756646, -0.0026341868, -0.01080767, 0.015295848, -0.047475014, - 0.01979899, -0.039998397, 0.06344971, 0.040628932, -0.005238152, - 0.032910764, 0.0045342715, 0.038960643, -0.014804107, 0.020596646, - -0.013718004, -0.006118418, 0.030244445, 0.0060435752, -0.019318193, - -0.090496175, 0.038881723, 0.003282035, -0.0037129568, -0.05745606, - 0.007855608, 0.04577816, 0.015811902, 0.021539746, -0.006377964, - -0.01748258, 0.01257183, -0.018867142, -0.0077423844, 0.05591712, - -0.009260799, 0.03102, -0.008259593, -0.021299774, -0.027055034, - 0.004583743, -0.050391745, -0.020784443, -0.009239836, 0.060947083, - 0.016921388, 0.021214256, -0.018037004, -0.011075627, 0.0025584246, - -0.054129206, 0.07065212, -0.025983293, -0.012884589, 0.015850162, - 0.04763483, 0.0014534268, -0.013228918, -0.04198724, -0.0034020562, - 0.015597435, 0.006432871, 0.008560928, 0.004038203, -0.0054668924, - -0.0063280696, 0.022728078, -0.0062539247, 0.01664975, -0.017531333, - 0.026331656, 0.032905433, 0.032615423, -0.021289939, -0.02869537, - 0.013750628, -0.0057435594, -0.0033943471, -7.165303e-4, -0.08644488, - -0.04199974, -0.029376557, 0.024152854, -0.03992627, 0.083540656, - -0.024122525, -0.05808201, 0.0046549914, -0.016729647, 0.029840846, - -0.03270397, -0.0037366902, -0.07104748, 0.043849137, 0.03487922, - -0.02094279, -0.033188727, 0.008949256, 0.0033196383, 0.06015904, - -0.014146524, -0.012569511, -0.017010659, -0.01383927, -0.023052767, - -0.022495735, 0.022498185, -0.012055987, -0.03412272, -0.0058513293, - -0.03436172, -0.025711263, 0.027187945, -0.022791145, 0.029064685, - 0.05681719, -0.030588064, 0.01646086, 0.0026183028, -0.059087485, - -0.008258746, -0.011861538, -0.01741699, 0.039350055, -0.0027117701, - -0.058007583, -0.05823107, -0.0033616528, -0.039956007, 0.018981175, - -0.007841367, -0.04302526, -0.0154847065, 0.038470674, 0.03203018, - -0.016656306, 0.035005454, 0.028610088, 0.025881503, -0.003969, - -0.015222141, 0.06770305, -0.05023281, -0.005753255, -0.03482429, - 0.015175011, -0.011621474, -0.055376947, 0.037333325, 0.020471368, - 0.02906366, 0.013738297, -0.008020317, 0.01278646, 0.0069303447, - 0.033110652, -0.028642317, 0.011440851, -5.435454e-4, -0.013439383, - 0.00792902, -0.039803796, -0.026030552, -0.058570933, -0.012968864, - 0.014528757, -0.027052976, 0.01867341, 0.013096098, 0.026928712, - -0.00840902, 0.024445321, 0.020744888, -0.00483966, -0.025302025, - 0.00738379, 0.017603716, -0.021080479, 0.022640936, 0.0075030955, - 0.009374138, 0.07523882, 0.006942345, 0.008909, -0.0047924975, - 0.019508012, 0.03276901, 0.0022795089, 0.009542891, 0.03992133, - -0.004450712, 0.021646062, -0.0067132483, 0.0010441869, -0.037814114, - 0.012658704, -0.025028769, 0.017532017, -0.024101319, 0.006594975, - 0.0064871223, -0.011728554, -0.038018506, 0.027111204, 0.036249183, - 0.06683882, -0.007151897, 0.004419988, -0.026688041, 3.7637184e-4, - 0.02062722, 0.013300358, -0.02951634, -0.014329697, -0.007939568, - 0.0060832133, 7.883562e-4, 0.0061458065, -0.0024607426, -0.0269179, - -0.004368595, 0.031676427, -0.018747557, -0.033394843, -0.0034004129, - -0.046693403, -0.03617649, 0.03397691, 0.04229696, -0.05266072, - -0.014139402, 0.05541128, -0.038649, -0.012317048, 0.040601786, - -0.020409558, -0.026822355, -0.0019344763, 0.0101432055, 0.0053288606, - 0.02190849, 0.0061016195, 0.008572459, -0.039785597, 0.036965623, - 0.0375372, 0.011732384, -0.044874214, -0.023879314, -0.015125994, - -0.05824548, -0.045210183, 0.024455456, 0.0272515, 0.0110515375, - -0.038911056, 0.049872395, 2.8255788e-4, 0.056096543, 0.002518386, - -5.000308e-4, -0.0039428365, -0.0021992181, -0.019424137, -0.007016624, - -0.03016078, -0.024409572, -0.018808214, -0.03499981, -0.046046566, - -0.023272777, 0.010087079, -0.04988652, -0.005462049, 0.015981525, - 0.019075155, -0.017341228, -0.017194496, 0.017690333, -0.03800274, - 0.0050522694, -0.011937687, -0.01393863, 0.03155819, -0.01382011, - -0.03821487, -0.043792494, -0.02215922, -0.0030919227, 0.002680898, - -0.024046928, 6.569359e-4, -0.035586394, -0.0032016747, 0.0011341149, - -0.016482351, -0.016611835, -0.0024521258, -0.029814739, 0.009793041, - 5.918988e-4, 0.012778183, -0.01393649, 0.0069170916, -0.013577041, - 0.03698231, -0.04060818, -0.009275749, 3.0553865e-4, -0.014574227, - 0.009360941, -0.024451138, 0.01841847, 0.0010867724, -0.008674887, - -0.004564887, 0.0047894735, 0.008526097, -9.934355e-4, -0.047888935, - 0.012963921, 0.022015836, -0.031257357, 0.011258118, 0.011044036, - -0.028873343, -0.013225561, -7.8524416e-4, -0.009632152, -0.09750507, - -0.006986758, 0.025386617, 0.014833811, -0.027471067, 0.036718003, - -0.035078533, -0.009959161, 0.022623457, 0.0038589935, -0.012596917, - 0.03226709, 0.053051863, -0.010824856, -0.012298352, 0.006494299, - -0.035367485, 0.032239743, -0.015308514, -0.008703023, 0.054538913, - 0.008153867, -0.009584191, 0.0143723395, -0.016519712, 0.037734583, - -0.0057778107, -0.021772482, 0.036125988, 0.001651958, -0.01437281, - 0.042158104, 0.023556672, 0.031770248, 0.019946393, 0.0040825447, - 0.017897839, 0.0010621097, -0.0040874, -0.010408767, -0.02279553, - 0.029194957, 0.029669078, 0.0058520944, -0.016042612, 0.006997943, - -0.013805447, -0.024529373, 0.0041319835, -0.0039729476, 4.4546017e-4, - 0.0022119873, 0.034667417, -0.002902573, -0.033056505, 0.055722654, - 0.008082208, 0.00950376, 0.053837694, -0.015118985, 0.047864817, - 0.015697423, 0.040731322, 0.047830794, 0.063334994, -0.011505622, - -0.013042323, -0.018985702, -0.033678673, -0.008972944, 0.026526818, - 0.05860865, -0.045121264, -0.013200386, 0.021109143, 0.009603232, - -0.036981255, 0.028399637, -0.028518558, 0.047159046, -0.030018978, - -0.026256442, -0.03786307, 0.012711539, -0.04688011, -0.006091039, - 5.877565e-4, 0.020641068, -0.024128933, 0.0014990998, 0.016593516, - -0.0056340103, -0.006718284, 0.004875539, 0.0023626236, -0.009577357, - -0.006896989, 0.018244224, 0.025905464, 0.039385926, -0.007974182, - 0.06033662, 0.03925052, 0.0023927612, 0.019573202, -0.007904155, - 0.050988026, -0.021560255, -0.05317289, -0.023515064, 0.0072739567, - 0.015040982, 0.03506194, 0.034524284, -0.009221107, -0.005950701, - 0.028660005, 0.0025306267, 0.004401647, -0.0038790598, -0.004631805, - 0.049580958, -0.071894474, -0.015606821, 0.016631061, -0.01040722, - -0.055002835, 0.0073238276, 0.03529534, -0.007373878, -0.032930527, - 0.008804581, -0.052044593, -0.040123623, 0.025106512, -0.06912229, - -0.015887452, 0.010860408, -0.085702345, -0.039939936, 0.0052185007, - -0.0026585336, -0.00925496, -0.03310116, 0.049585972, 0.022949345, - 0.022596346, 0.015143856, -0.016586713, -0.038934696, -0.035108253, - -0.025394045, 0.01648702, 2.603126e-4, 0.011977751, 0.007427346, - -0.002082411, 0.024590472, 0.0062183156, -0.022306886 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.0016990263, + -0.014407508, + -0.010381854, + 0.020432463, + 0.03496639, + 0.040319055, + 0.0094938, + 0.029331502, + -0.027104294, + -0.012119263, + 0.020895328, + 0.016934631, + -0.022960825, + -0.005349376, + 0.00370688, + 0.012900278, + 0.019415976, + -0.009229491, + -0.0021303075, + -0.021275364, + 0.0023160481, + -0.012627194, + -0.009260713, + 0.0202879, + 0.016622957, + -0.0050816624, + -0.0062383455, + 0.0035428929, + 0.032562662, + 0.004453071, + 0.0059170416, + 0.019127775, + -0.018195352, + -0.0020199867, + -0.029234065, + 0.0081770355, + -0.021915205, + -0.009091512, + 0.011216131, + 0.019902071, + 0.0032192154, + 0.042067718, + -0.00290046, + 0.013942651, + 0.0115760565, + -0.02114456, + -0.0026714473, + 0.015551952, + -0.0028977364, + 0.023766693, + -0.0028034977, + 0.0164388, + 0.0014324323, + -0.012836962, + -0.0068984483, + -0.0057982877, + -0.010450049, + 0.021703945, + 4.1194548E-4, + -0.0050339173, + 0.011974675, + -0.004436545, + -0.003406369, + 0.03755679, + -0.01643663, + 0.039858207, + 1.4384996E-4, + -0.0014765472, + -0.04292402, + 0.0073789586, + -0.010237612, + 0.011069628, + -0.003478074, + 0.010427391, + 0.027614746, + -0.0026006964, + -0.003002151, + -0.0074782255, + 0.021200897, + 0.011714201, + 0.015833406, + -0.022846993, + -0.012577307, + 0.008088789, + -0.01582663, + -3.2889482E-4, + -0.01289391, + 0.009365472, + 0.006583267, + -0.00955684, + -0.026954584, + -0.0032498315, + -0.023415558, + 0.019546038, + 0.024819648, + 0.007923617, + 5.935267E-4, + 0.013782968, + 0.0021876688, + -0.002859423, + 0.033135578, + -0.0088898, + 0.0042273756, + -0.018298648, + 0.013195425, + -0.025863966, + 0.0067955004, + 0.025700992, + 0.010551348, + -0.019036183, + 6.6535966E-4, + 0.013617688, + -0.005185686, + 0.031357963, + -0.023035657, + 0.019675134, + -0.023691041, + 1.3052655E-4, + -0.0050832666, + 0.0052311374, + 0.007579724, + -0.006235074, + 0.027162023, + -0.006287526, + -0.0108365575, + 0.012245382, + 0.014799285, + 0.0028604022, + -0.010559042, + 0.012628239, + 0.0100014, + -0.0022934359, + -0.002519634, + 0.004826355, + 0.01298453, + 0.0053900797, + -0.0043616835, + -0.0056032073, + -0.0059075207, + 0.026152264, + 0.011416841, + -0.029605115, + -0.0034251031, + 0.00900149, + -0.017412735, + 0.0014624313, + -0.01710292, + -0.008536959, + 0.008562893, + -1.8878184E-4, + 0.013271426, + 0.0011068536, + 0.015007214, + 0.027596114, + -0.005918826, + -0.005515645, + 0.0036943315, + -0.001318675, + 0.007991459, + -0.015605786, + -0.00682392, + 0.012414952, + 0.0071429578, + 0.018379783, + 0.01194122, + -6.6761667E-4, + -0.008404385, + 0.0060591702, + 0.020186322, + -0.024383873, + 0.0021420922, + -0.012462239, + -0.009541958, + -0.02127601, + -0.011015209, + -0.0047698626, + 0.015237162, + -0.002893958, + -0.018702177, + 0.0010108774, + 0.006077108, + -0.0049088164, + 0.009940785, + -0.0068868687, + -0.010699994, + 0.0049430807, + 0.0050898613, + -0.017085042, + -0.007813576, + 0.034289572, + -0.029301444, + 0.017094614, + 0.021354957, + 0.028423555, + -0.019828403, + 0.0059611727, + 0.015228667, + -0.019766502, + -0.0018943618, + 0.01238394, + 0.021747071, + -0.0022305003, + -0.0052264184, + -0.009607909, + 0.007892805, + 2.0102148E-4, + 0.004457139, + -0.0076352153, + 0.016966823, + 0.014882014, + 0.013403387, + 0.011988786, + -0.012188142, + -0.023475949, + -0.009933824, + 1.7127191E-4, + -0.00565404, + -0.02258995, + -0.009677914, + -0.007816112, + 0.0047717546, + -0.003920328, + -0.031816807, + 0.014824413, + 0.008028453, + 0.014086226, + 2.1775904E-4, + -2.2955956E-4, + 0.003968309, + 0.037598804, + -0.0036271024, + -0.0033323977, + 0.020360705, + -0.008222389, + 0.031823162, + 0.0064485623, + -0.009277732, + 0.007952465, + 0.025574673, + 0.001643697, + -0.028299324, + -0.008482171, + -0.016844235, + 0.01357519, + 0.019589663, + -0.009684564, + 0.02695676, + 0.011188309, + -0.006954867, + -0.002244315, + -0.0057199057, + 0.020698562, + -9.024691E-4, + 0.01599983, + 0.0057465634, + -0.014226749, + 0.03438102, + -0.010136634, + 0.012040118, + 0.019570323, + -0.006315872, + -0.019069541, + -0.021679481, + 0.0019098411, + -0.001195427, + 0.02188999, + 0.018423472, + -0.027056945, + 0.020294841, + 0.022326102, + 8.56291E-4, + 0.024111828, + 0.002959854, + 9.4050454E-4, + 0.0033027765, + 0.005069128, + 0.0038436681, + -0.007056536, + 0.015581852, + 0.008259007, + 0.004722752, + -0.036327105, + 0.016012182, + -0.010197106, + 0.006384816, + 0.03030794, + -0.017686037, + 0.017035412, + -0.013476941, + -0.0034200293, + 0.005828792, + 0.03056016, + 0.018548477, + 0.008671012, + -4.4811665E-4, + 0.008547582, + 0.0063049383, + 0.01095292, + 0.0029946454, + 0.013632739, + 0.011689745, + 1.6096077E-4, + 0.00471939, + -0.019129593, + -0.00868759, + 0.01759901, + -0.0038510312, + -0.011351483, + -0.016241636, + 0.006251051, + -0.033006005, + 0.02310352, + -0.017676631, + 0.014065308, + -0.0053146854, + -0.006198782, + -0.033316538, + 0.009900148, + 0.011161849, + -0.0048725205, + 0.0069522373, + 5.522199E-4, + 0.017939808, + 0.012001519, + -0.024802832, + -0.011407122, + -0.009234649, + -0.0129618365, + -0.008685943, + 0.031386714, + 0.015002403, + -0.004116223, + -0.012007319, + -0.010439496, + -0.0033906014, + -0.013912563, + 0.0108618885, + 0.0138835125, + 0.0019055301, + 0.0056382404, + 0.009514462, + 4.1565017E-4, + -0.006554721, + 8.3289786E-5, + 6.906325E-4, + -0.021274, + 0.01454678, + 0.007188227, + 0.03737657, + -0.022019114, + -0.0019435737, + -0.019314896, + -0.011165544, + -0.012682406, + -0.014872555, + -0.0035899165, + -0.016154826, + -0.010869222, + 0.028467795, + 0.01911804, + -0.04024516, + -0.012206628, + -0.020316996, + -0.014700967, + -0.033001225, + -0.02551744, + 0.0022270628, + -0.012171994, + 0.018288786, + 0.01997283, + -0.009252258, + 0.011004708, + -0.010929619, + 0.011210707, + 8.076048E-4, + 0.0041605663, + 0.0030099575, + -0.0028581095, + 0.0126282675, + 0.0043297824, + -4.743553E-4, + 0.009978706, + -0.021448443, + 0.007667565, + -0.00619986, + -0.005120547, + 0.013386168, + 0.01170094, + 0.009134901, + 0.0058193244, + -0.025514582, + 0.01772205, + -0.003377079, + 0.018878182, + -0.010849794, + 0.021153731, + -5.229517E-4, + 0.011284128, + -0.02552603, + 0.02243082, + -0.00565827, + 0.015297697, + -0.0012840647, + 2.7946886E-4, + 0.011711559, + -0.014461549, + 0.010392053, + 0.01037125, + 0.015924955, + -0.014577855, + 0.009265315, + 0.0024958733, + -0.002045583, + 4.109363E-4, + -0.0011067165, + -0.016306119, + 0.016019523, + -9.854605E-4, + 0.006102613, + -0.016747784, + 0.017921444, + 0.0287277, + 0.0062293904, + -0.017456086, + -0.008398534, + -0.014142049, + 0.0019179146, + 0.0134832235, + 0.0066218544, + 0.0019258861, + -0.028184941, + 0.020385731, + -0.010921063, + 0.0024781253, + 0.014165647, + -0.0064519555, + 0.004480492, + 0.017328778, + -0.006245474, + 0.007982664, + 0.0015390565, + 0.0077620544, + -0.016503703, + -0.008383501, + 0.004020003, + -0.034494318, + 0.012876342, + -0.0120071545, + -0.025897311, + 0.014722699, + -0.00851999, + 0.014884663, + -0.008426659, + 0.017990097, + 0.015962932, + -0.016230559, + -0.011068409, + -0.0077656345, + -0.0142722055, + 0.009621362, + -0.007954581, + -0.0074520893, + -0.0106050605, + 0.0053826543, + -0.003339983, + -0.0011939895, + -0.0106048705, + 0.016932135, + -0.0263123, + 0.015304254, + -0.0047304374, + 0.0048599737, + 0.0034872256, + -0.006095043, + 0.018295592, + 0.015135179, + 0.0038109894, + 0.007896477, + 0.0010219081, + 0.010339412, + -0.0070520192, + 0.027387286, + -0.01941065, + -0.012395062, + 0.025134558, + -0.020609373, + -0.029271519, + 0.010397625, + 0.015565089, + -0.007880001, + -0.017097829, + -0.0056728106, + -0.0020776566, + 0.01927469, + -0.0015379065, + -0.011298488, + 0.0060411734, + -0.014741135, + -0.04044702, + -0.007090842, + 0.00447138, + 0.0035228268, + 0.014765969, + 3.9178954E-5, + -0.013212891, + -0.008482146, + 0.00741815, + -0.0037629108, + 6.4479455E-6, + -0.0023922494, + 0.017634245, + 0.007904584, + 0.029469488, + 0.036992144, + -0.005150513, + -0.007020123, + -0.0016073436, + 5.13879E-4, + -0.014898151, + 0.004837876, + -0.03203758, + -0.012954378, + -0.014919572, + 0.026708268, + -0.012824557, + 0.006941109, + -0.015617727, + 0.008447712, + -0.013040849, + -0.012439155, + -0.011137641, + 0.007731589, + 0.021639518, + 0.029721834, + -0.00648295, + -0.0016562849, + -0.012882561, + 0.0041427463, + 0.028716065, + -0.0030833085, + -0.013472867, + 0.0014373877, + 0.019082224, + -0.003469223, + 0.01710155, + 0.026881589, + 0.021275781, + -0.014502351, + 0.0016234532, + -0.027717326, + -0.010674745, + -0.019312762, + 0.0153025845, + 0.011242909, + -0.007832103, + 0.0046646055, + 0.0014092879, + -0.011395937, + 0.027464554, + 0.0020918732, + -0.028152034, + 0.01751191, + 0.013444702, + -0.024447598, + 0.0063030436, + -0.002334997, + -0.0025994775, + 0.007708977, + -0.031342812, + 0.009944016, + -0.02151174, + -0.004612475, + 0.001002743, + -0.011614445, + 0.0017267164, + 0.0121908225, + 3.9531806E-4, + -0.024464218, + -0.024386695, + 0.030501083, + -0.0069434694, + 0.0019306288, + -0.008121736, + 0.016759831, + -7.455573E-4, + -0.00543295, + -0.016558114, + -0.010178748, + -0.010504107, + 0.0027944474, + 0.0017764393, + -0.0058399513, + -0.011052544, + -0.01684982, + -0.011279558, + 0.0053275814, + -0.021047438, + -0.013852921, + 0.006097624, + -0.023328621, + 0.035474233, + 0.016374357, + -5.096057E-4, + -0.0032132023, + -0.016106626, + -0.0071023568, + -0.015707495, + 0.007205523, + 0.024777228, + -0.0032169346, + 0.010635166, + -0.027536513, + 0.012275688, + 0.0055408776, + -0.021179158, + -0.0019552142, + 0.011774112, + 5.823199E-4, + -0.017816413, + 0.010498609, + -0.0012871592, + 0.0045387247, + 0.019760814, + 0.019847263, + -0.006179898, + 0.004889207, + -0.008334804, + -0.01251674, + 0.013287018, + -3.0838393E-4, + 0.018655632, + -0.005741157, + -0.0020152065, + 0.029379342, + 0.009171533, + -0.039180785, + -0.021339085, + -0.04011474, + -0.020867206, + 0.010374998, + 0.0029668384, + -0.012126321, + -0.022793846, + -0.009045645, + -3.2738247E-4, + -0.0012607232, + -0.029862987, + -0.013135563, + -0.0160703, + 0.017470216, + 0.0063062445, + 0.017954297, + -0.00926569, + 0.0064564045, + 0.0026156646, + -0.00546883, + 0.001983278, + 0.03867256, + 0.010581543, + -0.0076014344, + -0.024197176, + 0.009380595, + 0.053232133, + 0.002517378, + 0.014112232, + -0.0058559156, + 0.002663831, + 0.012190975, + 0.016229233, + -0.016838403, + 0.00465592, + 0.014833037, + 0.012201957, + -0.010594181, + -0.022681527, + -0.0067536505, + 0.0013462611, + 5.612174E-4, + 0.0023000147, + 0.0045740465, + -0.031694714, + 0.015122716, + 0.022911169, + 0.022925682, + 0.0069626984, + 0.007823044, + 0.01217283, + -7.539364E-4, + -0.003730657, + -0.013820015, + 0.005444553, + -0.015863815, + 4.6862225E-4, + -0.01785347, + -0.029135719, + -0.026677802, + -0.0045175636, + -0.0023464423, + 0.012304777, + 0.005420924, + -0.008360144, + -0.017639074, + 0.012948922, + 0.0010682851, + -0.006748398, + 0.0050475686, + 0.019839616, + 0.005064787, + 0.0105341915, + 0.0022328887, + 0.00524628, + -0.0044785826, + 0.018538026, + -0.0041777375, + 0.007525054, + -0.0030218775, + 0.0034050255, + 0.021317959, + -0.008411085, + 0.016156096, + -0.01697624, + -0.011481243, + 0.0036515591, + 0.0029778874, + 0.008317255, + -0.021654215, + -0.014676931, + -0.028300524, + -0.01616384, + -0.010576683, + -0.039484173, + 0.0074916966, + 0.0050084777, + 0.006352801, + -0.015385914, + 0.028885633, + -0.008570353, + 0.01621855, + 0.0020842112, + 0.004325992, + -0.0026564922, + 0.005467133, + 0.007883018, + -0.01023859, + -0.018344335, + 0.026783722, + 0.0017039293, + 0.014646346, + 0.0019120678, + 0.013314826, + 0.0017677842, + 0.0038421308, + -0.009243131, + -0.0236196, + 0.01647711, + 0.0049972376, + 0.017404355, + -0.015469438, + -0.01043351, + 0.010973765, + -0.0038121697, + 0.0028641005, + -0.013272263, + 0.003947643, + -0.014324995, + 0.0015918262, + -0.017358027, + -0.020559395, + -0.0045663454, + -0.0062339064, + -0.0028660777, + -0.006799433, + 0.014980893, + -0.0040474716, + -0.0039022332, + 0.0058390936, + -0.0066713835, + 0.0032599214, + 0.027983991, + -0.016482353, + 0.008109478, + 0.032556538, + -0.01598316, + 0.023679303, + -0.020668352, + -0.014429563, + -9.185507E-4, + -0.02363273, + 0.013325057, + -0.012634557, + -0.012652868, + 0.033283275, + 0.023468252, + 0.0157626, + -0.019514969, + -0.008296284, + -0.016764635, + 0.01083313, + -0.0057921275, + 0.026458187, + -0.02223755, + 0.021312388, + 0.03060962, + 0.021115527, + -0.0066778134, + 0.017320827, + 0.004409299, + 0.012089063, + 0.029616222, + 0.009176924, + -0.008987872, + -0.011273371, + 0.030029746, + 0.0037662163, + 0.013307756, + -0.039052717, + -0.016717656, + -0.0059747957, + 0.019948218, + -0.00574856, + 0.010035805, + -0.0035485364, + 0.008462626, + 0.013003429, + 0.03756648, + 0.01822839, + 0.0059851552, + -0.0017615918, + -0.032677546, + 0.043044884, + -0.018195653, + -0.015416213, + -0.0011812032, + 0.00602903, + 0.02146257, + -0.0058028526, + 0.03735364, + 0.013627196, + 0.0051606437, + 0.0024688237, + 0.02226552, + 0.022428842, + 0.001938995, + 0.0030245828, + 0.014218573, + 0.011553647, + -0.0111922985, + 0.0044754427, + -0.014214716, + -0.029828057, + 0.02205565, + -0.009874431, + -0.009976517, + 0.0036617706, + 0.019886069, + -0.010543482, + 0.016165487, + 0.0074285194, + 0.012321027, + 4.236849E-4, + -0.008400994, + 0.008489282, + 0.006384295, + -0.037422802, + -0.025591027, + -0.005580852, + 0.0060994597, + 0.012520436, + -0.012669982, + 0.005138453, + 0.003794231, + -0.003284497, + 0.015418447, + -0.013276202, + 0.010362454, + 0.029261716, + 0.001964821, + 0.0022155258, + 0.020697067, + -0.019235106, + -0.020067884, + -0.00961143, + -0.030894209, + 0.0010211561, + 0.007448527, + 0.0019468499, + 0.011982782, + 0.0037890573, + -0.020239903, + -0.041883893, + -0.01533488, + 0.0098262895, + 0.017563283, + -0.027194608, + 0.0140035385, + 0.015418869, + -0.009573847, + -0.020878965, + -0.017515583, + 0.0033952363, + 0.0044617085, + 0.0040541007, + 9.187845E-4, + -0.0022167782, + 0.007356479, + 0.04388978, + -0.015458588, + -3.1609088E-4, + -0.02457058, + -0.014496232, + 0.02955133, + -0.018032653, + -0.007948926, + -2.4577547E-4, + -0.010905497, + -0.0014233786, + -0.022923756, + 0.029248863, + -0.008179317, + 0.008204028, + -0.004132005, + 0.016208757, + 0.012190631, + 0.006237267, + -0.033836246, + 0.0011880405, + -0.017132236, + -0.025532238, + -6.141174E-4, + 0.020147605, + 0.0013021724, + -0.008693329, + 0.0069307187, + -0.0041031595, + 0.014651444, + -0.0020766475, + -0.002247662, + -0.01146826, + 0.01605023, + 0.001898988, + 0.01861834, + -0.0042090337, + 0.0046180314, + -0.011715222, + 0.01598455, + 0.0030214572, + 3.7651742E-4, + -0.019294988, + 0.013618462, + 0.010764638, + -0.011838178, + 0.007712321, + 0.0043295543, + -0.016537528, + 0.020194672, + -0.034575198, + -0.0077268993, + -0.016074736, + 0.012722504, + -0.011962906, + 0.0015905299, + 0.018247781, + -0.014026693, + 0.016200537, + -0.0016514978, + -0.0188332, + -0.019180374, + -0.0014321392, + 0.010425707, + -0.023573559, + 0.012688698, + -0.011753987, + -0.004017961, + -0.0062788767, + 0.013765532, + -0.008917226, + -0.027736064, + 0.014367091, + 0.014755868, + 0.041887946, + -0.012847868, + -0.003602954, + -0.010529886, + 0.008467557, + 0.014254466, + 0.001578022, + -0.008527217, + 0.021668965, + -0.011873096, + 0.034684412, + -0.0066284463, + -0.022447938, + -0.036539316, + -0.020577962, + 0.0031131834, + -0.011654325, + -2.5478657E-4, + 0.006049822, + 0.014359743, + 0.007280554, + 0.024022512, + -0.015112902, + 0.003999573, + -0.006687256, + 0.010045449, + 0.0030347672, + -0.0017747722, + 0.004443358, + -0.0062474785, + -0.020554943, + 0.021955673, + -0.02669913, + -0.011120376, + 0.014378304, + -0.028576056, + -0.0051154452, + 0.01259349, + 0.01548583, + 0.020240135, + 0.00566389, + 0.0011251246, + -0.017019937, + 0.0072662956, + 6.7765976E-4, + 0.02916409, + -0.010833255, + -1.14585535E-4, + 0.009208786, + -0.0076264543, + -0.008836145, + -0.008323959, + 0.011923573, + 3.591975E-4, + -0.008267684, + 0.0010067899, + 0.0037834733, + -0.02067175, + -0.036724787, + 0.0108051505, + 0.0146585, + -0.0018880009, + -0.028665625, + -0.004004233, + 0.011929498, + 0.0071417233, + 0.0075340644, + -0.020429326, + 6.6258095E-4, + -0.01829002, + 0.019531982, + -0.0071478533, + -0.00241866, + 0.014954082, + -0.007952884, + -0.0020822596, + 0.01972439, + -0.0033075851, + 4.8012257E-4, + 0.024366686, + -0.017777009, + -0.0040939576, + -0.01595357, + 0.008884913, + -0.0115417475, + -0.005436109, + -4.5191823E-4, + -0.0060106437, + -0.026453175, + 0.018554091, + 0.020501828, + 0.0027698302, + -0.0028206394, + 0.011056535, + 2.2476126E-4, + -0.021602282, + -0.012554074, + -0.013291391, + 0.0077713397, + -0.004399151, + 0.03038896, + -0.0036593867, + -0.012851193, + -0.0034970175, + -0.0024907524, + -0.017019799, + 0.011589118, + -0.039478328, + -0.0072723147, + 0.027267616, + 8.0440415E-4, + -0.0052932114, + -0.006205121, + -0.0027721806, + 0.025659923, + 0.010434261, + -0.0063633593, + -0.017484866, + -0.0138986325, + 0.022490282, + -0.009728536, + 0.0022916202, + 0.011055661, + 0.0022470618, + 0.027053667, + -0.0017233146, + -0.010467814, + -0.017119838, + 0.0051629124, + -0.0024290895, + 0.0114479065, + -0.011207322, + 0.012673291, + 0.0035432891, + -0.029365756, + -0.011643157, + 0.0027157655, + 0.0088016605, + 8.7490844E-5, + -0.0050624735, + 0.00934888, + 0.0068609817, + 0.007706566, + 0.0321618, + 0.012753394, + -0.006838416, + -0.0030937176, + -0.0032767502, + 0.018336657, + -0.0016288434, + -0.0015012797, + 0.0017282775, + -0.0075640874, + 0.01834288, + 0.0065503605, + -0.019940699, + -0.02919039, + 0.010338171, + 0.01894387, + 0.037638143, + -0.0056627737, + 0.015364427, + 0.015946098, + -0.0070156283, + 0.013469046, + 0.03155033, + -0.00528634, + -0.0049067866, + 0.0021395062, + 0.018657282, + 0.03217266, + 0.009387137, + 0.0038448144, + 0.016013749, + 0.03145989, + 0.007998979, + 0.006465576, + -0.013736562, + 0.008830148, + -0.019234221, + -0.009318429, + -0.014081805, + -0.0034648282, + -0.0015758299, + -0.0020501986, + -0.010118958, + -0.03328027, + 0.005744424, + -0.012886703, + -0.019874882, + -0.0065268134, + -0.008387184, + 0.006538776, + -0.011147647, + 0.009026837, + -0.014918281, + 0.004789668, + -0.006551154, + -0.008483206, + 0.009972533, + -0.01217896, + 0.00577686, + -0.009332519, + 0.006475843, + -0.022842193, + 0.03221896, + 0.027318075, + 0.021753121, + -0.0015418032, + 9.3665335E-4, + -0.0041759727, + -9.181125E-4, + -0.0057584075, + -0.029822588, + -2.68385E-4, + 0.022042856, + 0.04726378, + 0.021159936, + 9.3944086E-4, + -0.017542468, + 0.007860288, + -0.013349623, + 0.0016626571, + 0.023514902, + -0.013126766, + 7.508532E-4, + -0.008948466, + 0.0010684764, + 0.022171572, + -0.014059342, + -3.036823E-4, + 0.009902599, + -0.016924875, + -0.0015209262, + 0.018058082, + -0.009099234, + -0.014315023, + -0.004337113, + 0.008203727, + -0.021443766, + 0.009423258, + -0.025373641, + -0.022071933, + -0.011677442, + -0.024635158, + -0.006174496, + -0.027723659, + -0.009933117, + -0.013808259, + -0.0022624526, + 0.013500144, + 0.014990139, + 0.0048234714, + 0.030423433, + 0.015564107, + -0.0155362785, + -0.0020006257, + 0.015406603, + 0.04797793, + -0.009538608, + 0.019417116, + -0.013306577, + 0.013704869, + 0.0037655851, + -0.0018567238, + 0.010047148, + 0.0058340337, + 0.008664475, + -0.009080968, + -0.037334893, + -0.0032115136, + -0.0078012133, + 0.014335645, + -0.0051348642, + -5.4071157E-4, + 8.016794E-4, + 0.0063219983, + -0.018935077, + 0.011660104, + 0.02072369, + -0.011725502, + 0.010694494, + 0.010210532, + -0.008902461, + -0.008678143, + 0.015412077, + -0.01566694, + -0.022639189, + -0.0036179284, + -0.012707377, + -0.005526588, + -0.021336475, + 0.003236645, + -0.007241916, + -0.0019819604, + 0.027915936, + 0.007283335, + 0.0023552985, + 0.008393451, + 0.039489824, + 0.026396735, + -0.0075761066, + 0.0035927999, + 0.009008455, + -0.013869343, + -0.01695623, + 0.012631017, + -0.006937642, + 0.0068438663, + 0.0092910845, + 0.016186344, + 0.025041044, + 0.00798358, + -0.022343766, + 0.009000936, + 0.020473149, + 0.0088244835, + -0.019261463, + 0.015506262, + 0.012733656, + -3.7062238E-4, + 0.00406524, + -0.01825138, + -0.01727037, + 0.029087856, + -0.006720909, + 0.032520637, + 0.011244033, + -0.012038373, + -0.0067384946, + -0.011476194, + -0.012676277, + -0.014766236, + -0.016480146, + 0.023868086, + -0.009691242, + 0.024698269, + 0.029593913, + -0.027276358, + -0.03202223, + 3.5851423E-4, + 0.02041818, + -0.005194355, + -0.011938832, + -0.0029812646, + 0.015251668, + 0.008383102, + 0.023241138, + 0.0073723956, + 0.019430451, + 0.013122167, + 0.0013666224, + 0.0048543145, + 0.008327, + -0.0137347095, + 0.005840174, + -0.010913073, + 0.011289121, + 0.005314212, + 0.029051738, + -0.013977201, + -0.0069107926, + 0.003725896, + 0.012730102, + 0.0026235587, + 0.001328059, + -0.0106082, + 0.019581605, + 0.011217585, + 0.02206245, + -0.019174995, + 0.004949941, + 0.016201552, + 0.0025257163, + -0.0014317146, + -0.003672449, + -0.0053316513, + 0.0084051015, + 0.019220069, + 2.2897101E-4, + 0.004977939, + 0.0030553641, + -0.0106176855, + 0.010080701, + 0.016278122, + 0.011128402, + 0.015039157, + 0.0011620676, + -0.006133925, + 0.0026661186, + 0.044602815, + -0.027075492, + -0.009689708, + 0.018006336, + 0.0050459774, + 6.524084E-5, + 0.027074447, + -0.034398656, + 0.012474668, + 0.017619133, + -0.0046050586, + 0.020811956, + -0.02249337, + -0.033147335, + 0.0029045322, + 0.011764811, + 0.0037839531, + -0.0048307017, + -0.022598363, + 3.9786275E-4, + -0.013288174, + -0.011773975, + 0.012817869, + 0.008217809, + 0.022841033, + -0.011878193, + -0.0011744705, + 0.0048231888, + -0.013787076, + -0.010514892, + -0.0012035373, + -0.018350631, + -0.0070765456, + -0.011172171, + 0.00857808, + 0.016378444, + -0.011802331, + -0.007998055, + -0.015037044, + 0.008547054, + -0.009461487, + 0.011265179, + -0.00334939, + 0.016544076, + 0.0013307012, + -0.027901039, + -0.02511662, + -0.012599986, + 0.010573653, + -0.002646932, + 0.008452228, + 0.027422985, + 0.024133643, + -0.014503357, + -0.039497595, + -0.010481711, + 0.011279362, + 0.017742813, + -0.02409858, + 0.01883353, + 0.007934417, + -0.0036896323, + -0.0056482926, + -0.0018969907, + -0.001392282, + -0.009481951, + 0.0055704187, + 0.009808971, + -0.021202387, + -0.014876714, + -0.03460027, + -9.835601E-4, + -0.024382854, + -1.6618842E-4, + -0.0076442296, + 0.0055923415, + 7.035192E-4, + 0.0060378476, + 0.0086851595, + -0.007305474, + -0.0013833451, + -0.002214166, + 0.009409372, + 0.01891089, + 0.005990246, + 0.012986871, + 0.013629043, + 0.008429275, + 0.02951527, + -0.0026134425, + -0.0070882416, + -0.0048876293, + -0.009427394, + 0.013912052, + 0.004183672, + 0.0011957862, + 0.010059954, + 0.0063022072, + -0.04268147, + -0.007178772, + 0.022335526, + 0.01041082, + -0.0012424481, + 9.19376E-4, + -0.007001647, + -0.02265228, + 0.017453143, + -0.029121323, + 0.008005959, + 1.0426097E-4, + 0.032069165, + -0.0042104525, + 0.026795005, + -0.002306851, + 0.0154011, + 0.029491074, + -0.0040344046, + 0.01053402, + 0.011801803, + -0.0060467906, + -0.012276695, + 0.027916886, + 0.024373265, + -0.016205076, + 0.008088431, + 0.020300647, + 0.03597957, + 0.028658109, + -0.015745386, + 0.0014000441, + -0.0054584164, + 0.016430859, + -0.010130512, + 0.008869635, + -0.005924138, + -0.0123503115, + -0.009743346, + -0.025253577, + 3.5540495E-4, + 0.013014973, + 0.015955146, + -0.0054086586, + -0.0036193747, + -0.017803775, + 0.021108571, + 0.029522017, + 0.01902031, + 0.005566226, + -6.2933064E-4, + -0.017719612, + 0.0021539307, + 0.0028705574, + -0.0029600374, + 0.022670135, + -0.015982717, + -0.013315986, + 0.0025812339, + 0.001943294, + 9.082879E-4, + 0.037227657, + -0.004132636, + -0.0029058978, + 0.006392137, + -0.042572014, + 0.019293357, + -0.01392726, + -0.0018874662, + 0.029250255, + -0.03627962, + -4.1969437E-5, + 0.024731357, + 0.005058282, + 8.5446984E-4, + -0.016686134, + -6.490069E-4, + -0.012150278, + 0.0049966085, + -0.0077239545, + -0.0050210063, + -0.013897766, + -0.005318452, + -0.0070584174, + 0.0083132675, + 0.026159072, + -0.012775713, + 0.015977714, + 0.0046679974, + -0.009814943, + 0.004454333, + 0.028049402, + 0.009966809, + 0.0100499755, + -0.010023277, + 0.018647334, + 0.0014367127, + -0.0076075774, + -0.004694331, + -0.004476742, + -0.004911865, + -0.017986055, + 0.024068857, + -0.004907022, + -0.011406988, + 0.016303847, + -5.8772863E-4, + 0.018391022, + -7.1873557E-4, + -0.017965173, + -0.0075161853, + -0.013320576, + 0.018062279, + 0.003083862, + 0.019728104, + -0.01095329, + -0.0041803205, + -0.023610258, + -0.017930292, + -0.0171576, + 0.017542709, + 0.0106597645, + -0.0189183, + 0.0025873717, + -0.0030052436, + 0.009227529, + -0.02489539, + 0.012623211, + -0.0033603134, + 0.026666867, + 0.0011526166, + -0.010536486, + -0.012819473, + 0.013833865, + 0.005563049, + 0.012071686, + -0.036005564, + 0.00469927, + 0.020851139, + 7.2865235E-4, + -0.01931094, + 0.006179987, + 0.012140757, + 0.015860518, + -0.008873684, + 0.001010411, + -0.015606328, + 0.001379347, + 0.007025721, + -0.01020533, + 2.5102764E-4, + 0.019668244, + -0.01894111, + 0.035561636, + 0.03319144, + -0.005066393, + -0.025952388, + 0.0035126319, + 0.003276054, + 0.03092778, + -0.0047453158, + 3.33532E-4, + -0.01436526, + 0.0013729566, + -0.008405513, + -0.008831438, + -0.002943931, + 0.018143933, + 0.01384683, + 0.025814451, + 0.004481183, + -0.0161531, + -0.027396059, + -0.003929374, + -0.03040418, + -0.004485881, + -0.019212026, + -0.016056266, + -0.02971831, + 0.017467143, + -0.002345221, + 0.011956854, + -0.012478449, + 0.0060120425, + 0.025972925, + 0.06256485, + -0.006193756, + 0.015085443, + -4.942624E-4, + -0.017360846, + -0.019033719, + 0.017347272, + -0.005659445, + -0.002128666, + 0.0086879805, + -0.0030003872, + 0.0012814119, + 0.016485466, + -0.028623024, + -0.0055221654, + 0.004600126, + 0.011445062, + 0.031881828, + -0.031305596, + 0.025558516, + 0.02434981, + 0.016165754, + 0.0011673005, + 0.0047664144, + 0.001552883, + -0.0020727427, + -0.007957718, + -0.017760836, + -0.012736111, + 0.013639917, + -0.013988577, + -0.009670346, + 0.044008013, + -0.022903603, + 0.02690065, + -0.03249897, + -0.002395213, + 0.0025476138, + -0.031692654, + 0.014204812, + -0.007336202, + 0.016348356, + 0.0064978474, + 0.013313111, + 0.019043671, + -0.010372788, + -0.016086033, + -0.012035609, + 0.011557577, + 0.015433106, + -0.012708319, + -0.00983617, + 0.0030576526, + 0.022805808, + -0.020596819, + 0.024610281, + 0.021130942, + -0.0064941216, + 0.017911548, + 0.015489938, + -0.04175722, + -0.016780771, + 0.006818732, + 0.008930715, + 0.0070832823, + 0.0031215434, + 0.020363884, + -0.022413945, + -0.0024032511, + -0.021704169, + 0.0016235257, + -0.0029690221, + -0.014059691, + 0.010161368, + 0.0033837312, + -0.0024897892, + 0.013414096, + 3.875604E-6, + -0.016253194, + 0.01648584, + 0.023569401, + -0.021446578, + -0.0054165795, + -0.0076815565, + 0.019652864, + -0.015420869, + 0.02445501, + 0.004667452, + 0.0187444, + -0.0011297439, + -0.009856458, + 0.002247007, + 0.012518406, + 0.0062003895, + 0.0015427506, + 0.024052907, + -0.0029216784, + 0.008324702, + 0.023493068, + 0.013456106, + 0.0015480403, + 0.020775795, + 0.011628062, + -0.008628397, + -0.035644766, + -0.015227202, + -0.0019911435, + 0.0022934212, + -0.022131596, + 0.004824939, + 0.0058297054, + -0.0055158767, + 0.0150129935, + -0.0164978, + 0.031772234, + 0.010434943, + 0.024810918, + 0.009992033, + -0.030758722, + -0.032671873, + -0.014849887, + -0.0077429023, + -0.012085315, + -0.00427131, + -0.018132474, + 2.3462706E-4, + 0.015323445, + -0.0031219912, + -1.1481483E-4, + 0.024788551, + -0.006509939, + -0.013149773, + 0.0047339173, + -0.018444806, + 0.037964217, + 0.027745577, + 0.0031642534, + -0.007241502, + -0.013525357, + -0.011193137, + 0.017216852, + -0.008023162, + -0.022760956, + 9.996498E-4, + -0.045646373, + -0.0058931992, + 0.007063226, + 0.0055552726, + -0.013728285, + -0.026988333, + -0.004061261, + -0.03561511, + -0.026012937, + -6.35927E-4, + 0.009081966, + -0.01752556, + -0.027328804, + 0.00843664, + 0.002013015, + -0.0025593657, + -0.00523334, + 0.008758408, + -0.020159204, + 7.6925143E-4, + -0.002446747, + -0.007964855, + -0.009586735, + -1.4564389E-4, + 0.0077572414, + 0.031112367, + -0.0061437637, + -0.020864522, + -0.006700341, + 0.024534365, + -0.008823418, + 0.009105662, + 7.076144E-4, + -0.03543168, + 0.040602, + -0.02048977, + 0.027262604, + -0.013974625, + 0.0026341612, + -0.02712028, + 0.012995002, + -0.0061757094, + 0.010918017, + 0.018195016, + 0.022256033, + 0.010060393, + -0.011922918, + -0.008328827, + -0.0039565936, + -0.0025663946, + 0.027892768, + -0.029184675, + -0.007400311, + 0.0033946463, + 0.016405659, + -0.03177273, + -0.024473144, + 0.016970916, + 0.0011558884, + 0.01803993, + 0.010724558, + 0.0025913443, + 0.015008685, + 0.008135694, + 0.023928098, + 0.011633749, + -0.009294175, + -0.019616133, + -0.014781315, + -0.021044927, + -5.427575E-4, + -0.0058419355, + 0.022395536, + -0.029573154, + 0.0017229323, + 0.011436924, + 0.0017468375, + -0.00324688, + -0.0016894847, + 0.034614168, + -0.009147589, + -0.01607537, + 0.008844156, + -9.456648E-4, + 0.0042701573, + 0.013024029, + -0.0042333873, + -0.013445941, + -0.003323564, + 0.037319347, + -0.023195418, + -0.008371144, + 0.025243754, + 0.008731748, + 0.0286583, + 0.0127938045, + -0.005712656, + 0.014446179, + -0.006837756, + -0.015329165, + -0.003947531, + -0.023479283, + 0.01919673, + -0.012260315, + 0.008905433, + -0.0031575076, + -0.0026276838, + 0.022725625, + 0.00994814, + -0.0068487287, + -0.0089975, + -0.0061637736, + -0.012889206, + 0.0072478093, + -0.0023298014, + -0.018217767, + 0.013688702, + -0.012302794, + 0.008816761, + -0.00760198, + -0.009124204, + 0.016791066, + 0.0032451372, + -0.0045594615, + -0.017092567, + -0.00422664, + 0.023393866, + 7.2030723E-4, + -0.003288075, + -0.008321206, + -0.0053939936, + -0.010889106, + 0.0122544, + -0.008795691, + 0.006424266, + -0.013447612, + 0.0043548835, + -0.005892685, + -0.015751073, + 0.021351041, + -0.034514897, + -0.014962942, + 0.012281688, + 0.009793301, + -0.023418698, + 0.021105317, + 0.017787194, + -0.021306785, + 0.016299445, + -0.016351445, + 0.012119507, + -0.025611522, + -0.033445466, + 0.02094031, + 0.0010909513, + 0.01034147, + -0.0054600188, + -8.5421134E-4, + -0.018718593, + -0.0035008125, + 0.029457564, + -0.0040139244, + -0.034273174, + -0.03345443, + -4.7418487E-4, + -0.023410942, + 0.021688396, + -0.019470219, + 0.018261757, + -0.007606478, + 0.013043911, + -0.0075460523, + -0.011064224, + -0.03256984, + -0.01299122, + 0.0026933977, + 0.031369884, + 0.018857272, + -0.0022176027, + -2.4651026E-4, + -0.006787331, + 0.017759902, + 0.0030372, + 0.010821492, + 0.018151153, + 0.0059503885, + 0.0012249602, + -0.0132479975, + 0.0032734328, + -0.021357652, + -0.003167672, + 0.0124644805, + 0.006361551, + 0.033308674, + 0.0049585393, + -0.007475305, + 0.008160964, + -0.0139291035, + 0.029294588, + -0.0015902999, + -0.0036104938, + 0.0074063134, + -0.002978502, + 0.014067083, + 0.005068124, + -0.004701053, + 0.0039335866, + 0.008443542, + -0.015096592, + -0.022617867, + 0.007265934, + -0.0139561, + 0.008971436, + -0.0027879938, + -0.010698457, + -0.016058655, + -0.014484631, + -0.013811716, + 0.0031884643, + 0.017201846, + -0.023577727, + 0.0066077826, + 0.006092916, + 0.033552263, + -0.025657224, + -0.006667706, + 0.004719231, + 0.0072452724, + 0.0019870105, + 0.018129889, + 0.010671038, + -0.0053065117, + -0.01955619, + 0.0038353854, + 0.0010472207, + 0.014679213, + -0.025920872, + 0.016153784, + -0.023880322, + 0.008083872, + 0.0144592775, + -0.01838983, + 0.0032750436, + 0.0069411327, + 0.015769005, + -0.0070482274, + 0.00893919, + 0.008858013, + 0.0066364883, + -0.0012711519, + 0.0013173309, + 0.023339033, + 0.019142015, + -0.005864869, + -0.017199844, + -0.01768474, + -0.014288398, + 0.019439204, + 0.011965069, + -0.0048421826, + 0.005875406, + 0.016226174, + -0.012752734, + -0.012031353, + 0.010513312, + -0.028744323, + -0.02039423, + -0.003477779, + 0.014746742, + -0.008166578, + -0.011461732, + -0.017622286, + -0.005459954, + -4.141822E-6, + 0.03191974, + 0.012066018, + 0.0060981736, + 0.006211712, + 0.008033336, + -0.042576578, + 0.0074047945, + 0.009331908, + -0.015104924, + 0.011158828, + 0.012337323, + -0.01984977, + 0.021121096, + -0.0045878356, + 0.0070465757, + -0.0040352116, + -2.8106905E-4, + -0.015901504, + -0.03488426, + 5.989323E-4, + 0.016320461, + -0.0029059194, + 0.009496058, + 0.012654, + -0.007800619, + -0.007727664, + -0.0035647668, + -0.0036523757, + -0.0068681557, + -0.022323247, + 0.013924469, + -0.0064916518, + -4.9563753E-4, + 0.0048116134, + 0.001418475, + 0.019055013, + -0.02635662, + 0.015697833, + 0.012717401, + -0.014435952, + 0.010538586, + 0.014569601, + -0.00990133, + -0.0045565427, + -0.009919989, + -0.02203734, + 0.0058966437, + 0.005584487, + -0.010322095, + -0.0072807632, + 0.0031796738, + 0.0022825939, + -0.015366392, + -0.04946613, + -0.0038750372, + -0.0071307058, + 0.030144276, + 0.0177315, + 0.009804616, + -0.015090378, + -5.6040403E-4, + -0.0038494251, + 0.021398054, + 0.0016152574, + -0.0075888257, + 0.025214298, + 0.0049414793, + 0.0069594486, + -3.9211463E-4, + -0.017567374, + 0.0074348347, + -0.008116026, + -0.015164518, + 0.021340052, + -0.031558253, + -0.0029666212, + -0.01093343, + -0.00883765, + -0.019944435, + 0.027361125, + 0.010488801, + 0.0040835068, + 0.012265295, + -0.013871318, + 0.011794964, + -0.026378414, + -0.028292933, + -0.010964369, + -0.010948049, + -0.01657557, + 0.003722575, + -0.021704812, + 0.00557392, + -0.003925948, + 0.03203959, + 0.011759018, + -0.030847928, + -0.018695982, + 0.002366783, + -0.014670351, + -0.0018163753, + 1.759939E-4, + -0.0014618948, + 0.0012733962, + 0.0068756905, + -0.0071671135, + 0.014433653, + -0.0043331636, + -0.0014857214, + 1.34535785E-5, + 0.018484546, + 0.0029035779, + -0.0356584, + 0.006524251, + -0.024228713, + 0.012346492, + 0.007804575, + -0.0046468694, + 0.0075106155, + 0.022369437, + -0.021667179, + 0.0069006225, + -0.021438971, + 0.0026119165, + 0.0117787095, + -0.0012206273, + -0.048638247, + -0.0030255434, + -0.018945307, + 0.014332912, + 0.0043286956, + 0.026302736, + 0.01147276, + 0.019152716, + -0.027825624, + 0.0021545873, + -0.012784498, + -0.01133412, + 0.0057941866, + -0.0018457965, + 0.028368331, + -0.0046898103, + -0.0042099734, + -0.031590275, + -0.0012739439, + 0.009545102, + 0.008939065, + -0.0011159906, + -0.014580019, + 0.013447474, + 0.004091145, + 0.015855798, + 0.013240846, + -0.013356552, + 0.0051536495, + -0.012673538, + -0.0011157801, + 0.018732013, + 0.040889885, + 0.0022414217, + -0.024126507, + -0.0057894234, + -0.01622371, + 0.020185051, + -0.0073050703, + -0.016012002, + -0.0032558632, + 0.01605359, + 4.340452E-4, + 0.009320593, + 0.008312951, + 0.009060318, + -0.020018477, + -0.0021608653, + -0.014768372, + -0.007213512, + 0.001727679, + 0.018548703, + -0.015030837, + 0.03002568, + -0.0012759287, + -0.029898422, + 0.012423335, + 0.0012306472, + -0.030516056, + -0.033189394, + 0.019284539, + -0.013942134, + -0.028233567, + 0.0017482459, + 0.012430627, + 0.010869167, + 0.017350895, + 0.027735252, + 0.010421178, + 0.0070881443, + 0.030443147, + 0.023122514, + -0.01598151, + 0.018429575, + -0.019386074, + 0.03194588, + 0.01556304, + -0.019681346, + -0.0049422076, + 0.0035860597, + 0.007286657, + 0.0019150213, + 0.011311017, + -0.029497458, + 0.008120373, + 0.0093857655, + 0.013416971, + 0.0011326614, + -0.015217575, + 0.004031732, + -0.0010869813, + -0.014031055, + 0.009387331, + 0.011815519, + 0.010118382, + -0.03587998, + -0.014465385, + 0.017356353, + -0.002405965, + -0.0055286363, + -0.020953711, + -0.0018418205, + -0.0031727827, + 0.020534227, + -0.005680689, + -0.032048587, + -0.003673168, + -0.01971394, + 0.009978701, + -0.0016078772, + 0.012492726, + 0.009455514, + -0.013120466, + 0.012215582, + -0.02387067, + -0.0070823063, + -0.00746899, + -3.1710727E-4, + 0.025849223, + 0.008838159, + -0.01759807, + 0.015159365, + 0.019773275, + 0.0052239113, + 0.0050754035, + 0.011913749, + -0.0022291804, + -0.021409972, + 0.013680701, + 0.005358635, + -0.027938839, + -0.0031387808, + 0.017678998, + -0.02650712, + 0.014378253, + 0.0052143913, + -0.031047447, + -0.00558303, + 0.007724617, + -0.039630055, + 0.01807178, + -0.0064715063, + -0.013977724, + -0.0029851024, + 0.00789199, + 0.018479055, + -0.00869276, + 0.019236634, + -0.0015454687, + 0.01400582, + 0.011964544, + 0.0017925095, + -0.006464511, + 0.005492414, + -0.020370238, + -0.019964466, + 0.008126763, + 0.004726909, + 0.01588551, + 0.0033385882, + 0.0041334215, + -0.019795943, + -0.018790137, + 0.011744009, + -0.0013299256, + 0.0077135107, + 0.011047345, + -0.016434817, + -0.027310401, + 0.012001482, + 0.018577501, + -0.0209152, + 0.004915397, + 0.0064333775, + 0.0121050235, + 0.013404805, + -0.027857529, + 0.016320871, + -0.007311639, + 0.053185873, + 0.010774655, + 0.005023448, + -0.015996296, + -0.013832481, + 0.003148698, + -0.0021419215, + -0.029193068, + -0.014998034, + 0.018264644, + 5.191669E-4, + -0.05155284, + 0.0016318907, + 0.018968266, + -0.009242156, + -0.007862677, + 0.005613827, + 0.006538351, + 0.0068367072, + 0.018948348, + -0.010169749, + 0.01288158, + -0.01338268, + -0.011969209, + 0.0014136181, + -0.015213027, + 0.008182601, + -0.005218082, + -0.014874621, + 0.014854474, + 0.016637493, + 0.0088596465, + -0.010734456, + 0.0067552477, + -0.013842808, + -0.02035824, + 0.009630037, + 0.0058831978, + -0.007843553, + 0.0075253346, + -0.0022905564, + -0.001831478, + -0.01924735, + -0.021644708, + -0.012284554, + 0.016856942, + 0.010256015, + 0.01701261, + 0.0052753063, + -0.0030120853, + -0.011418814, + -0.004199239, + 0.015547478, + -0.023104992, + 0.017992059, + 0.01159921, + 0.0054362672, + 0.014862544, + 0.004559427, + 0.0011413433, + 0.039874338, + 0.02432818, + -0.016723126, + -0.030077323, + -0.0026630547, + 0.0033598088, + -0.0015818155, + 2.5248935E-4, + 3.3683726E-4, + -0.006695287, + -0.02001046, + -0.016825173, + -0.0028965631, + -6.818403E-4, + -0.010703475, + -0.015448491, + -0.019658195, + 0.0070047355, + -0.036069956, + -0.0055715195, + 0.0074734623, + 8.397404E-4, + 0.012923669, + 0.011531297, + 0.022029895, + -0.008120123, + -0.029076343, + -0.0032372852, + 0.0145927975, + 0.0073698685, + -0.0044675185, + 0.0027233493, + 0.009521214, + 0.039481048, + 0.0044679255, + -0.0068228375, + -0.011428221, + 0.027556038, + 0.025129845, + 0.0045365845, + -0.008728136, + 0.0077431547, + -9.1372005E-4, + -0.01828888, + 0.018066969, + -0.0018028839, + -0.008372966, + -0.007899756, + -0.016323904, + -0.010665178, + -0.016897228, + 0.012454351, + 0.00423649, + 0.012947619, + 0.0073048146, + -0.010500235, + -0.011712751, + -0.025335385, + -0.0011038166, + 0.006796414, + -0.0059409277, + 0.015031361, + -0.009533372, + -0.0028710342, + -0.005342695, + -0.0014896153, + -0.0030085703, + 0.01932066, + 0.031027365, + 0.015140048, + -7.5181667E-4, + -0.023389839, + -0.0314881, + -0.023227423, + -0.009260767, + 0.018343939, + 0.017948015, + 0.02589894, + 0.006252539, + -0.018577494, + -0.0027208694, + 0.021126047, + 0.0025425146, + -0.0022537299, + -0.010017186, + -0.0017375712, + 0.0016523679, + -4.2677493E-4, + -0.016170414, + 0.012301322, + -0.014250526, + 0.010647904, + 0.0031472002, + 0.02511394, + -0.026737984, + -0.02314328, + 0.0020087094, + -0.025950164, + 0.011931691, + -0.009283327, + -0.04385247, + -0.0036749959, + -0.0021947906, + 0.01642765, + 0.004913226, + -0.015091304, + -0.0035828874, + -0.017877914, + -0.02001853, + -0.010978668, + 0.0115396995, + -0.0032884348, + -0.014027874, + -0.027371008, + -0.03508926, + 0.030435303, + -0.01706356, + 0.00933587, + 0.025091592, + 0.0073238704, + -0.028957374, + 0.0024045543, + 9.862382E-4, + -0.020828282, + 0.017580457, + 0.005709934, + 0.004775911, + 0.034559842, + -0.004485569, + 2.1292716E-4, + -0.011064858, + -0.011571657, + 0.022442121, + -0.027877364, + 0.01397521, + 0.020933999, + 9.3899766E-4, + 0.0045731985, + -0.004254208, + -0.02203166, + 3.6714558E-4, + -0.0036144305, + -0.032699134, + 0.0036890185, + 0.015762744, + 2.8660413E-4, + 0.013041562, + 0.004553885, + 0.0065267016, + -0.014128214, + 0.009684071, + 0.022088908, + 0.02044991, + -0.0155401, + -4.8002714E-4, + 0.0060113203, + -0.011619163, + -0.029870778, + -0.004915118, + -0.0067566345, + -0.009476987, + -0.010045388, + -0.019338012, + 0.020540522, + 6.5381266E-4, + -0.011868892, + -0.0062015057, + -0.028414926, + -0.012082275, + -0.017230075, + -0.03438881, + -0.015424815, + 0.00636561, + -0.008936447, + 0.007472491, + -0.017353727, + 0.019239921, + -0.002827768, + 0.013107489, + -0.030060314, + -0.007125172, + -0.012268608, + 0.019795166, + -0.008729803, + -0.0069132783, + -9.478078E-4, + -0.013285865, + 0.006408235, + -0.011102046, + 0.016051795, + 0.019579547, + -1.47392475E-5, + 0.011013683, + -0.018875826, + -0.001139578, + -0.014071264, + 0.0034808563, + 0.0043103993, + 0.0014633009, + -6.848108E-4, + 0.002217799, + -0.024657682, + -0.028341768, + -0.009075511, + -0.0037531767, + -0.003159132, + 0.005337661, + 0.0022248512, + 4.53957E-4, + 0.013256146, + 0.0041341465, + -0.0346662, + 0.013975982, + -0.0133044785, + -0.019831894, + 0.005134982, + -0.0049881632, + 0.0081598805, + -9.812331E-4, + -0.011227174, + 0.004462687, + 0.017008852, + 0.015090127, + 0.0314996, + 0.011593102, + -0.008409479, + -0.0074453857, + 0.0053083403, + 0.02362385, + 0.0077353185, + 0.0040641343, + 0.005941718, + -0.0073936516, + -0.02514148, + 0.009332701, + -0.022431476, + -0.0044653188, + 0.003246498, + 0.005113698, + 0.0050378996, + 0.0065691173, + -0.004789105, + -0.01392992, + 0.00827639, + 0.014911742, + -0.0155970445, + -0.009407683, + 0.009136665, + 0.013626723, + 0.0029592616, + -0.0083155, + 5.7267058E-5, + 0.0116831055, + 0.014617099, + 0.014191271, + 0.008881564, + -0.012992641, + -0.006115127, + -0.009643623, + -0.008907366, + 0.018248184, + 0.010209576, + -0.0017994498, + -9.4382453E-4, + 0.014887388, + -0.004513819, + -0.009663831, + 0.023945663, + -0.007988499, + -0.007584844, + 0.010456246, + 0.039201763, + 0.013331432, + 0.003836061, + 0.022962678, + -0.002884526, + -0.041498832, + 0.017518476, + -0.018615467, + -0.021388633, + 0.014100872, + -0.013189836, + -0.032227896, + 0.0014782337, + -0.0029922584, + -0.01419037, + -0.024078919, + 0.010899362, + -0.015961979, + 0.013457773, + 0.013376382, + 0.012330419, + 0.0017761858, + -0.005496462, + 0.0011428625, + 0.010519858, + -0.01236695, + -0.005266847, + -0.01317775, + 0.008897984, + -0.025631474, + -0.024234742, + 0.0051763393, + 0.011299834, + 0.010739987, + 0.0053176447, + -0.02492445, + -0.011079417, + -0.009707495, + 0.02734249, + -0.0041426374, + 0.0039631436, + -7.16011E-4, + -7.5274915E-4, + 0.03574968, + 0.004445003, + -0.0014313475, + 0.014669033, + -0.002124567, + 0.0125547955, + -7.4039894E-4, + 0.010523932, + -0.012935297, + -0.005728544, + -0.01584774, + 0.0068284674, + -0.034879327, + -0.0026759128, + 0.0028950346, + 0.021301359, + 0.0021537566, + -0.019956682, + 0.004848682, + 0.004619662, + -0.0040360857, + -0.0048796996, + -0.004255744, + -0.011038712, + 0.03585741, + 0.021484172, + -8.826875E-4, + -6.8464316E-4, + 0.026642764, + 0.015488114, + 0.027233958, + -0.018767828, + 0.017845605, + 0.0031234513, + -0.011205079, + 0.009857242, + -0.012149539, + 0.0047490033, + -0.003651769, + -0.00924128, + 0.0046844026, + -0.009558833, + -0.024567021, + 0.0011657326, + 0.0055417744, + -0.01052999, + 0.013054161, + 0.019308727, + -0.0053270482, + 0.005938013, + 0.015606477, + -0.012642728, + -0.007340824, + -0.016439922, + 0.011460394, + -0.0046907417, + -0.009102008, + 0.03786282, + -0.0049702763, + -0.012179145, + -0.018246684, + 0.005628958, + 0.00221705, + 0.0018039718, + 0.013036981, + 0.0019075451, + -0.014306788, + -0.0025845969, + -0.0103947455, + -0.0011428543, + -0.00341955, + -0.011680972, + 0.017742243, + 0.002205581, + -0.0120081585, + -0.018261597, + 0.015580911, + -0.006808159, + -0.002794223, + 0.0086404905, + 0.0036358815, + 0.010578683, + -0.0018254985, + 0.0025345269, + 0.0028234676, + 0.019857684, + 0.0051518925, + -0.009726248, + -0.019344894, + -0.00541078, + 0.00230964, + -0.0067959274, + -0.008004913, + 0.0067921137, + 0.028625699, + -0.02128524, + -0.0091231605, + -0.030869687, + 0.025906421, + -0.00626092, + -0.0041017854, + -0.021684928, + -0.023188917, + -0.0074429703, + -0.020191502, + 0.005315611, + -0.020879088, + 0.021874422, + -0.014729758, + 0.020448945, + -0.00828386, + -0.018424958, + 0.0025590085, + -0.010170265, + 0.004363133, + -0.028226437, + -0.015573828, + -0.00896474, + -0.020666113, + 0.012776541, + 0.0024263698, + -4.9051753E-4, + -0.022281826, + 7.936489E-4, + 0.016039502, + 0.018297536, + -0.0020586778, + -0.026967952, + -0.010023264, + -0.00921986, + -0.017824372, + 0.03275023, + -0.0047317664, + -0.007146839, + 0.0012981443, + 0.011423197, + 0.041502126, + 0.0071141142, + -0.0055750445, + 0.013143701, + 0.017689785, + 0.008071191, + -0.011152887, + -1.3237812E-4, + -0.002146058, + 0.01110694, + 0.021668509, + -0.0012520555, + 0.009765169, + 0.0067858775, + 0.026543563, + -0.0033051858, + 0.012926324, + 0.009991597, + -0.0064717755, + -0.006810005, + -0.016511703, + -9.737084E-5, + 0.0015830995, + 0.011176798, + 0.0029675476, + -0.0068636653, + -0.037662573, + -0.013022942, + 0.029085848, + 0.015395678, + 0.015931541, + 0.009620602, + 0.01971173, + 0.0052319216, + -0.04011531, + 0.0060114423, + 0.014635941, + 0.003346207, + 0.0028998053, + 0.012833405, + 0.0061292476, + 0.025841149, + 0.0032886132, + -0.0191782, + -0.025157265, + -0.047408324, + -0.029903473, + -0.0042415187, + 0.008787348, + -0.009163419, + 0.01757083, + 0.018423589, + 0.030720929, + 0.009286289, + 0.018148206, + 0.009134633, + -6.355883E-4, + 0.007466443, + 0.035428617, + -0.0012483837, + -0.008017051, + -0.008338602, + -0.020122705, + -0.011954197, + 0.018120803, + 0.024528446, + 0.015789071, + -0.016984975, + -0.019861832, + 0.020577826, + -0.0014700488, + -0.0033300065, + -0.022198778, + 0.016341098, + -0.004513815, + 0.020205662, + -0.019865766, + -0.0033813817, + -0.013745632, + 0.014883742, + -0.0028246315, + -0.011194587, + -0.010358612, + 0.0045573916, + 0.011798485, + 0.0040117498, + -0.015738456, + -0.0042507113, + 0.0070793196, + 0.037190504, + -0.024074117, + -0.010645559, + 0.0028419083, + -0.009828098, + 7.092553E-5, + -0.0050743753, + 8.6661655E-4, + -0.004718587, + -0.022323553, + 0.009265122, + -0.019015547, + -0.006937352, + 0.021469863, + -0.0076272716, + 0.019287327, + -0.01559484, + 0.03576858, + 0.010679879, + -0.0039895326, + -0.0010625193, + 0.0029151475, + -0.0023240205, + 0.017592702, + 0.015533639, + 0.008259058, + -0.008308522, + -0.053251117, + 0.021332432, + -0.03703775, + 0.0047934274, + 8.2694E-4, + -0.018372525, + -0.032511495, + 0.0040441793, + 0.03780893, + 0.0033157973, + 0.0018147443, + -0.0034447268, + 0.005853369, + -0.031176422, + 2.3524657E-5, + 0.009128883, + -0.0036734943, + 0.02114718, + 0.009588328, + -0.0051649893, + 0.032807812, + 0.011651325, + -0.020362245, + 0.0046797013, + -0.017499996, + 0.00329682, + -0.020699754, + -0.013467334, + 0.011623643, + -0.0024799989, + -0.004145678, + 0.014070201, + -0.013533601, + 0.009269884, + 0.01565595, + 0.008715412, + 0.006289797, + 0.0031667121, + -0.0117064845, + -0.027758963, + -0.0075830966, + -0.0060273246, + -0.015253552, + 3.944395E-4, + -0.032002673, + 0.014188165, + 0.009775346, + -0.0040038167, + -0.016470278, + 0.0058185817, + 0.005096071, + -0.0055398867, + -3.8019015E-4, + 0.0028736817, + -0.0039793397, + -0.008568336, + 0.004798103, + 0.017606394, + -0.024370886, + -0.012719341, + -0.001046151, + -0.0073222355, + 0.010631764, + -0.0053837406, + 0.009619183, + -9.954259E-4, + 0.009860959, + -0.019138789, + 0.026019927, + 0.0013633874, + 0.02737602, + 0.004088018, + 0.015419138, + 0.0136518665, + -0.016356727, + -0.028775342, + -0.0023956252, + -0.002779993, + -0.01671131, + 0.010367962, + 0.012479649, + -0.012627326, + 0.0056956336, + -0.012748881, + 0.0037452034, + -0.0035901938, + 0.0067551923, + 0.008144807, + 0.019480458, + 0.005037715, + -0.017746849, + 0.013193776, + -5.2652997E-4, + 0.009417086, + 0.03137944, + -0.005754145, + -0.023490159, + 0.010782129, + -0.013011111, + -0.012253432, + 0.022299023, + 0.009620144, + 0.006325349, + 9.2852104E-4, + -0.012620911, + 0.0102548525, + 5.6324835E-4, + 0.016295077, + 0.018203499, + -0.005895223, + -0.015281736, + -0.0011271066, + -0.004953992, + -0.0053264224, + 0.033779297, + -0.012250439, + 0.031097822, + 3.3828107E-4, + 0.008243649, + 0.011094098, + -0.0033175761, + 0.015284491, + -0.02090663, + 0.037464235, + -0.016479392, + -0.02626166, + -0.0029743256, + 0.0078121335, + 0.005468989, + -0.008944868, + 0.0025424832, + 0.023500508, + -0.010647202, + -0.002138138, + 0.011149072, + -0.009133008, + 0.0059897504, + 0.038215987, + 0.0012861609, + -0.038279373, + -0.0020733841, + 0.013790939, + 0.006043229, + -0.0016744016, + -0.006300689, + -0.009718845, + 0.013318183, + 0.015006064, + 0.05496181, + 0.0036577291, + -0.036237247, + 0.025005829, + 0.0077454248, + 0.02426377, + -0.00304352, + 0.014594648, + 0.002385954, + 0.025281461, + -0.0018498618, + 0.005418118, + -0.004218281, + 0.013743773, + 0.023926916, + -0.0045155245, + 0.029890748, + -0.0016043229, + -0.0075506666, + 5.1851926E-4, + 3.2533784E-4, + 0.010405121, + -0.02099594, + -0.016436636, + 0.040972736, + -0.0056278496, + -0.024609286, + -0.003576266, + -0.010361934, + 0.0061060465, + -0.0035476869, + -5.833568E-4, + 0.0029382887, + -0.008902899, + 0.0061964397, + 0.0065656384, + 0.0040833717, + 0.0047241785, + -0.02985555, + -0.011774907, + 0.0062906477, + -0.007887974, + -0.031172317, + -7.2701357E-4, + 0.0047029587, + 0.0040767416, + 0.020148167, + 0.012796466, + 3.3359596E-4, + 3.762957E-5, + -0.0037905583, + 0.019570895, + -0.0136088515, + -0.0030615604, + 0.002847343, + -0.0029237303, + 0.0074803205, + -0.01690567, + -0.012880092, + -0.009319918, + -0.0121682305, + -0.010813352, + -0.019539202, + 0.0067915325, + -0.0025480909, + -0.024562746, + -0.02064333, + -0.017266665, + 0.0036309198, + 0.018413417, + 0.0013228427, + 0.026765373, + -0.011991466, + -0.0014572347, + -0.013743853, + 0.008706794, + -0.0014245452, + -0.03238409, + 0.0038203879, + -0.013127266, + -0.0149982665, + -1.009525E-5, + 0.014968356, + 0.001876245, + 0.024003616, + -0.035728358, + 8.6566433E-4, + 8.5765834E-4, + -0.01138998, + 0.018256783, + -0.021892356, + 0.0061194724, + -0.018310508, + -0.022724405, + 0.00438001, + 0.0038432006, + -0.010816123, + -0.012260353, + -0.01613705, + -0.011849687, + -0.013559288, + -0.003767754, + -0.016303662, + 0.014837067, + 0.012732455, + -0.0047068023, + -0.004447319, + 0.02626584, + -0.012082553, + -0.019538172, + -0.033846647, + -0.012528069, + -0.028001165, + -0.028899712, + 0.01410446, + -7.847185E-4, + -0.0016421012, + -0.040744603, + -0.028691314, + 0.018315013, + 0.0046043564, + -0.025359878, + -0.026871465, + -0.033001594, + -0.0053160707, + 0.009595586, + -0.0343003, + -0.007703003, + -0.0030071735, + -0.010725748, + -0.015815422, + -0.004047197, + -0.005433556, + -0.008763949, + 0.026030352, + -9.265726E-4, + -0.007283067, + -0.012814771, + 0.017182924, + 7.467237E-4, + -0.020071961, + -0.033003133, + -0.023181308, + -0.0043945224, + -0.014091189, + -0.008516525, + 0.008694621, + 0.03311057, + -6.822244E-4, + 1.6893033E-4, + 0.018257441, + 0.012739596, + -0.027887162, + -0.01596372, + -0.015046542, + -0.026770122, + -5.9416564E-4, + 0.004667157, + -0.014353994, + -0.0018496305, + -0.005872938, + -0.01537581, + 0.0011960643, + 0.006511177, + 0.024961483, + -0.0155001655, + -0.026558952, + -0.0018637972, + -0.0012527355, + 0.003093051, + -0.020976862, + -0.00598106, + -0.004742495, + 0.0019235433, + 0.014941863, + 1.6926943E-4, + 0.011101734, + -0.013822418, + -0.007525983, + 0.014689018, + 0.019531563, + 0.0023223336, + -0.019316614, + 0.010045889, + 0.00872817, + 0.04580564, + 0.0065538753, + -0.0058524613, + 0.008210798, + 0.01979574, + -0.0036384617, + 0.0057595265, + 8.9914486E-4, + -0.0024235796, + -0.010009275, + 0.008313544, + 0.004697971, + -0.010738476, + 0.004846171, + 0.013910342, + -0.0026877508, + 0.014492779, + 0.017654022, + -0.02395165, + -0.0011358683, + 6.362318E-4, + 0.017544186, + -0.011314095, + -0.0075069666, + -0.0019929402, + 0.0018489867, + 0.012332776, + 0.004666049, + 0.0055486388, + -0.005906797, + 0.009686626, + 0.031563144, + -0.02975783, + 0.0013971461, + 0.01154705, + -0.004783092, + -0.013128976, + -0.017222237, + -0.014011942, + -0.024127971, + -0.021222642, + 5.407408E-4, + 0.016148727, + 0.010933641, + 0.030161459, + 0.020893913, + 0.027536126, + -0.00795775, + 0.0053517497, + -0.017030964, + 0.013051787, + -0.0081245275, + 0.0019165067, + -0.0044210632, + 0.043911014, + 0.025917936, + -0.0022627418, + -0.011119819, + -2.7473742E-4, + -0.01219395, + 0.032322995, + -0.009155528, + -0.013052062, + -0.009738987, + -0.01831604, + -0.018370159, + 0.0031969282, + 0.02777177, + -0.009061528, + 0.0083841095, + 0.02483575, + 0.008485559, + 0.0029590155, + 0.005159004, + 0.008520163, + -0.011225167, + -0.0018301264, + 0.0096059935, + 0.011103915, + -0.024401639, + -0.01047101, + 0.0057340562, + -6.2399165E-4, + 0.002276232, + -0.0016025287, + -6.6753005E-4, + -0.025282132, + 0.01001538, + 1.652512E-4, + -0.008237684, + -0.006454509, + -0.009693771, + 0.019861665, + -0.007577749, + 0.023372268, + -0.023828141, + 0.014767387, + 0.017944288, + 0.027895113, + -0.010901326, + -0.0014408744, + -0.0030564927, + 0.013660284, + -0.0059875776, + -0.004345804, + 0.0038868294, + 0.007692542, + -0.017244177, + -0.0017984662, + 0.018403532, + -0.0010027504, + -0.017987648, + -0.017283974, + -0.020952752, + -0.014140553, + 0.008692999, + 0.037568018, + 2.5055805E-4, + -0.018675365, + -0.030376684, + 0.025754942, + -0.01354769, + 0.011589444, + -0.020440876, + -0.0035358765, + -0.0045577795, + -0.039145656, + -0.015500096, + -0.0062297294, + -0.007460012, + 4.1531122E-4, + -0.0066616996, + -0.012887592, + 0.020489879, + 0.004093753, + 0.005756218, + 0.008335165, + 0.011046782, + -0.02617432, + 0.023997415, + 0.02349814, + -0.0025383222, + 0.0093073035, + -6.4433913E-4, + -0.021316867, + -0.026052471, + 0.0028573356, + -0.020730533, + -7.5055775E-4, + -0.012599612, + 0.012643095, + 0.023999609, + 0.021039037, + 0.013271042, + -0.01251506, + 0.008565861, + -0.010350606, + 0.0061165327, + -0.04602043, + 0.017245915, + 0.0026208404, + 0.016712606, + 0.018002974, + 0.010531722, + -0.013664575, + -0.018576566, + -0.022161921, + -0.0016439081, + -0.018891605, + -0.02513599, + -0.011915531, + -0.015304165, + 0.009121866, + -2.9104456E-4, + 0.027541066, + -0.01434054, + -0.0059682573, + 0.0249292, + 0.013820274, + 0.010241975, + -0.017236477, + 0.014304313, + -0.019951807, + 0.009923303, + 0.003752924, + 0.019553423, + 0.004388216, + -0.0010438168, + 0.012259603, + 0.0037675917, + -0.016732305, + -8.387599E-4, + -0.0013149629, + 0.0090862345, + -0.021480124, + 0.005864166, + -0.016004, + -0.03477391, + 0.014021526, + 0.016954914, + 0.04237622, + 0.009969514, + 0.0020579589, + 0.008412296, + -0.005760693, + -1.6920794E-4, + 0.00320997, + 0.014233348, + 0.036581375, + 0.008420049, + 0.0010661065, + -0.02280779, + 0.00907002, + 0.021622833, + -0.03721085, + 0.0055322065, + 0.013368569, + 0.023292342, + 0.034141786, + 0.028327651, + 0.006864507, + -0.007179141, + 0.0020475846, + -0.002321021, + -0.009395499, + -3.5777985E-4, + 0.011283588, + 0.04095272, + 0.029686525, + 0.0042563463, + -0.018985342, + 0.0014047856, + 0.013340162, + 0.02642638, + -0.015794866, + -0.00953972, + -0.0145802535, + 0.0062640086, + 0.0024437462, + 0.033583388, + 0.022428922, + -0.027722858, + 0.012721253, + -0.021960892, + -0.0056539397, + 0.014667313, + 0.011520334, + -0.010098749, + -0.029490316, + -0.01590108, + -0.009859836, + -0.017767875, + 0.010685042, + -0.004018729, + -0.0040659513, + -0.0056292834, + 0.018533105, + -0.0070187636, + 0.01491561, + 0.015431418, + -0.025513906, + -0.0018978827, + -0.0017456777, + 0.007375267, + 0.020743825, + 0.0019389696, + 0.009452968, + 0.012795006, + -0.011462939, + 0.0037506823, + -0.0037415617, + -0.0015175244, + -0.01068034, + -0.002534833, + 0.023095151, + -0.0056854067, + -0.02107637, + 3.7480835E-4, + -0.017118512, + 0.009664735, + 0.01984707, + 0.005079333, + -0.01980165, + 0.013544355, + -2.070754E-4, + -0.021135138, + -7.5290125E-4, + 0.021247158, + 0.029940234, + -0.013954846, + 0.011312528, + 6.38161E-4, + -0.0031813781, + -0.009794965, + -0.0016781596, + -0.006487831, + 0.0020691447, + 0.0235891, + 0.0065374183, + 0.0058727334, + -0.015707998, + 0.011800912, + 0.021236777, + 0.0064238757, + -0.01260118, + 0.012818732, + 0.019574737, + 9.326528E-4, + -0.01838252, + -0.008315046, + -0.028818682, + -0.018398883, + -0.009718847, + 0.0016054567, + -0.014440171, + -0.006322891, + -0.017833015, + 0.015691342, + 0.011085129, + -0.0041531445, + -0.049418148, + 0.018165272, + 0.004578396, + -2.0555958E-4, + -0.004464117, + 0.0042782943, + -0.008553016, + 0.03893487, + 0.009756701, + 0.013306128, + 0.005175392, + -2.0804428E-4, + -0.034072783, + 0.005836912, + -0.0059977593, + 0.016579663, + -0.011579999, + 0.0021674486, + 0.016724857, + 0.0068842983, + -0.020253848, + 0.01654619, + 0.022292962, + -0.03975317, + 0.012041169, + 0.007376671, + 0.013166925, + -0.029007394, + 0.008987473, + -0.0017056955, + -0.014548005, + -0.009715452, + 0.005381117, + -0.0077791084, + 0.016956244, + -0.009056093, + 0.004928063, + -0.009392018, + -0.015194412, + 0.010066483, + 0.019677337, + 0.010071677, + -0.0016875246, + -0.015373007, + -0.0042218305, + -0.0049856333, + -0.009653024, + -0.0038833579, + -0.017472988, + -0.008744742, + -0.003827892, + -0.008510057, + 0.011691803, + 0.0115593895, + -0.029950667, + 0.0102625955, + 0.007076112, + -0.03233679, + -0.005395689, + 0.0026637842, + 0.012783304, + -0.013059631, + 0.0074221166, + -0.012642949, + -0.023827232, + -0.0052690976, + -0.003392222, + -0.0043817824, + -0.0046676453, + -0.013873555, + 0.008928496, + 0.01699774, + -0.003468447, + 0.0028003408, + 0.019734286, + 0.019868998, + 0.008801935, + -0.0062453626, + 0.012457225, + 0.018209966, + 0.015361072, + -0.0043715755, + -0.0025365455, + 0.014149099, + -0.011032258, + -0.018379819, + 0.011921722, + -0.0075592385, + -2.1272033E-4, + 0.0023508463, + 0.0065080053, + -0.013394141, + -0.01095027, + -0.006261094, + -0.0013237902, + 0.002845968, + -0.015606496, + -0.006912048, + -0.018040476, + 0.015070899, + -0.011093874, + -0.01619345, + -0.022326488, + 3.6663498E-4, + 0.0029533547, + 0.0012782853, + -0.017362813, + -0.007839014, + 0.027314011, + 0.0042691, + -0.026781896, + -0.013097244, + -0.0039981394, + -0.004840482, + -0.008315468, + -0.030275287, + -0.0068438826, + 9.906348E-4, + 0.00376564, + 0.0023887933, + 0.014625395, + 0.0045291428, + 0.022788884, + -0.01629823, + -0.020142261, + 0.00789395, + 0.0054522506, + 0.01868616, + 0.029064847, + -0.030230878, + 0.017030327, + 0.013277179, + 0.0031480403, + -0.020230506, + 0.020773405, + 2.0402698E-4, + 0.025406778, + -0.008397182, + 0.0062968764, + -0.024462178, + -0.0021642325, + 0.002013725, + 0.018987026, + 0.01826521, + 5.238204E-5, + 0.0012881579, + 0.02614859, + 0.04554192, + 0.014730379, + 0.0010142531, + -0.0051938114, + -0.017063573, + 0.012066535, + 0.0072505213, + 0.005811699, + 0.003337513, + -0.0300788, + 0.022494469, + 7.059993E-4, + -0.011727359, + -0.020927068, + -0.0054363995, + -0.013029698, + 0.015626188, + -0.0063478844, + 0.017085334, + -0.012217532, + -0.008634855, + 0.009571172, + 0.012447236, + -0.019492213, + -0.013058034, + -0.002991049, + 0.016148845, + -0.011228708, + 0.030089444, + 0.021096319, + -0.0023209364, + 0.0056213066, + -0.015539282, + -0.006115508, + 0.028768973, + -0.0027313696, + -0.009853601, + -0.015719194, + 0.035179436, + 0.0024837062, + 0.016783644, + 0.006162721, + -0.017127097, + 0.0070485454, + -0.014530856, + -7.6159457E-4, + 0.003047528, + 0.0026836693, + -0.020674367, + 0.016304867, + 0.027362246, + -0.0052644173, + -0.0041441214, + -0.005169219, + 0.043664943, + 0.03183483, + -0.020291204, + 0.004505549, + -0.004292381, + 0.003915391, + 0.014348694, + 0.018146394, + -0.040985264, + 0.018868068, + 0.011910614, + 0.009479333, + -0.029867852, + -0.013095171, + 4.6635218E-4, + 0.013028312, + -0.018503914, + 0.0026630585, + 0.005847655, + -0.0032675527, + 0.0172144, + -0.0065626167, + 0.016489454, + -4.641445E-4, + 0.009613303, + -0.019593019, + -0.018154237, + 0.011838205, + 0.016820302, + 0.0016336609, + -0.017975079, + 0.0054755067, + -0.007657783, + -0.020929363, + 0.0032293028, + -0.035209928, + 0.0028351704, + 0.006867137, + 0.0061263037, + -0.01875031, + 0.012416571, + 0.01244791, + -0.020106915, + -0.0098779835, + 0.014791449, + -0.0018133727, + -0.010379442, + 0.002068666, + 0.004979057, + -0.037641633, + 0.00545489, + 0.008454043, + -0.013211292, + 0.008343057, + 0.035573553, + -0.031194458, + -0.010071334, + -0.0033665616, + 0.013683363, + -0.0041574207, + -0.0030410758, + -0.0066729016, + 1.2332875E-4, + -0.0015332411, + 0.0143615855, + -0.010728816, + -0.009149251, + 0.0019174152, + 0.010902213, + -0.018700544, + 0.02814013, + 0.0020394525, + 0.0071153585, + 0.009280461, + 1.9408071E-4, + -0.009036853, + -0.0017114528, + 0.01007502, + 0.009908484, + -0.0043887263, + 0.010720662, + 0.007991403, + 0.011425935, + 0.01970838, + 0.00746926, + 0.0033364354, + -0.0030439496, + 0.015262715, + 0.02585324, + 0.009013334, + 0.03330202, + -0.020693025, + -0.014660949, + 0.009031241, + 0.035125107, + -0.0016328514, + -0.0096935835, + 0.008919496, + 0.0017137079, + 0.008616353, + -0.002611167, + -0.011082279, + 9.1800676E-4, + -0.010215903, + -0.010980864, + -0.0300549, + -0.005047285, + 0.008551688, + 0.022348996, + 0.02084075, + -0.013518707, + -0.004530232, + -0.01415516, + -0.027238926, + -0.0018574275, + 0.006743468, + -0.022006713, + -0.0102237845, + 0.019218484, + 0.022139994, + 0.0010186104, + -0.011864879, + -0.012613802, + -0.00846159, + -0.013789545, + -0.0141893495, + 0.007770079, + 0.011930483, + 2.39635E-4, + 0.016806064, + -0.019610584, + -0.011727081, + -7.680368E-4, + -0.018260697, + -0.012730277, + -0.022502743, + 0.009501937, + -0.015182298, + -0.002930652, + -0.0058987336, + 7.695993E-4, + 0.011956894, + -4.682972E-4, + 0.024257913, + 0.0015156306, + 0.008165225, + -0.0100540975, + -0.011915128, + -0.0030023097, + 0.0045860107, + 0.004063107, + -7.579473E-4, + -0.003251063, + -0.022416651, + -0.01587611, + -0.010305708, + -0.019351836, + 0.0019886543, + 0.0085665975, + 0.0029661024, + -0.0048788977, + -0.001353574, + -0.0241878, + 0.027433243, + 0.028395297, + -0.011251666, + -0.021929277, + -0.0050755544, + -0.0070380536, + -0.006058211, + -0.025310755, + -0.011636074, + 0.024791548, + 9.6351997E-4, + 0.005479015, + 0.01895878, + -0.012638927, + -0.0067410497, + 0.016118977, + -0.005211174, + -0.0028934507, + 0.018366471, + -0.011956685, + -0.005314733, + -0.0046212743, + 0.017418027, + -0.013334917, + -0.003378222, + -1.0241405E-5, + -0.015875014, + -0.024257507, + -0.027304275, + 9.7138964E-4, + -0.0013342454, + -0.005446042, + -0.01468495, + -0.008763033, + -0.010681592, + 0.006470533, + -0.024546836, + 0.015732404, + -0.017352559, + 0.0023878491, + -0.004625429, + 0.010392221, + -0.024072878, + -0.006980885, + -0.008939488, + 0.021984655, + -1.4488095E-4, + -0.038307037, + 0.010399436, + 0.0016744961, + 0.022616774, + -0.020601643, + 0.00903318, + -0.021671703, + -0.015103807, + 0.010985752, + 0.018384216, + 0.0054566045, + -0.012932951, + 0.0027127503, + 0.013213788, + 0.017155781, + -0.0065102256, + 0.0049653514, + 0.004335702, + -0.0121914325, + -0.015115902, + -0.010241923, + 0.01618815, + -0.009547653, + -0.004723792, + -0.006799135, + 8.053143E-4, + -1.5505294E-4, + -0.0034289355, + 0.0112768635, + 0.0031882452, + -2.8931993E-4 ], - "paletteEmbedding": [ - -0.02033385, 0.012787235, -0.025492175, 0.051325236, 0.0036651716, - -0.018482333, -0.03864056, 0.038631793, -0.037767127, -0.021615412, - 0.022140762, -0.0059786323, 0.020716224, 0.004419445, 0.0300435, - -0.016920008, 0.012618388, 0.02590385, 0.05864091, 0.079687834, - 0.0026324966, -0.034021575, -0.026202874, 0.03980508, 0.022646913, - 0.029126192, -0.05907929, 0.0042730398, 0.012326782, 0.03890527, - 0.028437588, -0.026203739, -0.027678723, -0.014064239, 0.025942223, - 0.059496287, 0.0096399635, -0.008664814, 0.00920171, 0.05281414, - -0.012110932, -0.019901365, 0.014378173, -0.019224249, -0.015681595, - 0.019858906, -0.03116976, 0.0308347, 0.002433115, -0.052552477, - 0.01973026, -0.020183882, -0.013641411, 0.02715558, -0.049588483, - -0.022600843, 0.048788443, -0.021789568, -0.02757095, -0.014780255, - -0.031940658, -0.03263939, 0.034513578, -0.009197254, -0.03018015, - -0.02096964, -0.002957321, -0.0525163, -0.0050174454, 0.049047302, - -0.051161617, 0.028735502, -0.004941537, 0.06537538, -0.022192229, - 0.03396536, -0.018408885, -0.02644666, 0.03800523, 0.014305403, - 0.03819307, 0.023337355, -0.0056759077, 3.733786e-4, -0.06505432, - -0.011964042, 0.020196324, 0.06349087, 0.03923789, 0.017980784, - -0.0113911135, -0.05891418, -0.016655874, 0.022848548, -0.0043444885, - 0.001535608, -0.017293675, 4.5922632e-5, 0.024458911, 0.0059740897, - -0.020674337, 0.0030315416, 0.0063543986, 0.015400251, -0.0016591361, - 0.01386671, -0.0107833035, 0.007938037, -0.017179973, 0.015181838, - -0.018945571, 0.0075186477, -0.03880873, 0.019220969, -0.0026207345, - 0.017602388, -0.019916492, -0.015904156, 0.0074323546, 0.009540973, - -0.036842037, 0.013126662, 0.052793723, -0.0077198846, -0.023364924, - 0.004730877, -0.0028247985, 0.0034875674, 0.021442225, 0.04232212, - -0.035588797, -0.008236288, 0.0076274076, 0.04821106, 0.020693302, - 0.080038615, 0.0022072033, -0.036238175, 0.016610695, -0.028907275, - -0.006083665, -0.048620798, -0.01719709, 0.016157268, -0.01269457, - -0.03637916, -0.0057270895, 0.0011510135, -0.020414548, 0.0718107, - 0.012565452, -0.029551838, -0.0039949864, 0.008482243, 0.044123087, - -0.02736112, -0.07147225, -0.050452687, -0.028998207, -0.0018573445, - 0.023720032, -0.0016719215, 0.06014868, 0.017110376, 0.021586169, - -0.019396551, 0.056108795, -4.5742505e-4, 0.030025724, -0.009677387, - -0.013771121, 0.030920766, 9.729599e-5, -0.043397766, -0.03655164, - 0.0056125266, -0.031361595, -0.0013138374, -0.01672862, -0.01081215, - -0.018440885, -0.021593083, 0.024648363, -0.016874963, -0.05028902, - 7.299944e-4, -0.0108262515, -0.013562775, -0.02851444, -0.038728762, - -0.03585889, 0.031993546, -0.00209842, 0.007047832, -0.023691526, - 0.03369889, 0.01517378, 0.025305016, 0.045456182, -0.007389391, - 0.033201292, -0.076143354, 0.043003235, 0.0037716036, -0.008473228, - -0.04243358, -0.039696395, 0.02970703, -8.670058e-4, 0.039746772, - 0.0041621146, 0.035391994, -0.016875248, -0.042394325, -0.0044848537, - -0.038990144, -0.021044489, 0.059101515, 0.017994672, -0.058078725, - 0.0020936811, 0.0115348175, 0.0070627807, -0.034834336, 0.003118599, - 0.032801688, 0.022663645, 0.005024221, -0.02256569, -0.016013673, - -0.056123074, 0.015790628, -0.042794704, -0.0032228502, -0.031913448, - -0.023007348, -0.015543886, 0.03712234, -0.014654986, 0.019111875, - -0.002471497, -0.037504043, 0.0048918254, 0.0024202822, 0.0048459833, - -0.016018417, 0.02265127, -0.058236964, 0.02319563, 0.026262905, - -0.03388678, -0.038801946, -0.017774735, 0.02869791, 0.01990645, - -0.027837198, 0.025904167, -0.010271253, 0.031442184, 0.033672903, - 0.022357674, 0.04216108, -0.0024767544, -0.03560016, -0.044655427, - 0.0060422006, 0.035007622, -0.04231707, -0.031788137, 0.036079112, - 0.02747834, 0.045342926, -0.04327624, 0.013967407, -0.0540398, - 0.0063972687, -0.04596014, -3.0480174e-5, -0.06361641, -0.009651684, - -0.00696965, -0.018052928, 0.041291278, 0.035937622, -0.02205166, - 0.021020453, -0.05022283, -0.04574507, 0.033261403, -0.019914577, - 0.048768498, -0.025576413, -0.019431727, -0.003674993, 0.006418252, - -0.022561217, -0.005919002, 0.03039071, 0.027267179, 0.023498163, - 0.033246525, -0.023442976, -0.009349914, 0.052783795, -0.07544685, - -0.0070984564, 0.013456532, -0.046236083, -0.011745915, 0.0343478, - -0.014861703, -0.040403567, 0.052553453, 0.04687379, 0.0011153682, - -0.045785584, 0.004947598, 0.008930757, 0.030837784, 0.072543375, - 0.027704826, 0.0040322854, -0.04423125, 0.0029038875, -0.04695783, - -0.046280168, -0.013538011, 0.02156295, 0.031144803, 0.0031245842, - -0.049129825, -0.030646231, -0.023108386, -0.007108502, -0.0145274615, - -0.01222027, -0.004102002, 0.0016945059, -0.010060442, 0.009623564, - -0.008527033, 0.0073866555, -0.013881725, -0.023445057, -0.030101907, - 0.0242844, 0.030909905, 0.0054422654, 0.026168149, 0.01185382, - -0.051188797, 0.03650123, 0.017180562, -0.06398756, -0.02578167, - -0.0072275405, -0.044238564, -0.021957042, 0.06659643, -0.034234647, - 0.020286934, 0.014513504, -0.03474592, 0.051357776, 0.01611518, - 0.0069859196, -0.014600106, 0.0022589841, 1.4171046e-4, 0.003822643, - -0.028519426, 5.07121e-4, 0.012249681, -0.0042345854, -0.0064858994, - 0.04617523, -0.031548288, 0.04419943, 0.0040934854, -0.035930365, - -0.0025354777, -0.030397275, -0.019054458, -0.0027618753, -0.0057171886, - -0.029075174, -0.0013624132, -0.08149406, -0.02656824, 0.02260482, - 0.0019287611, 0.00849046, 0.03694003, -0.011486596, -0.061443232, - -0.022350833, 0.029578649, -0.023734244, 0.045477156, -0.07868084, - 0.050113004, -0.0084106475, -0.018419042, 0.03839667, -0.021171477, - 0.017648334, 0.007834412, -0.035435878, 0.056892794, 0.0055278265, - -0.011709589, -0.051303845, -0.024315868, 0.007281323, -0.033895515, - 0.007167826, -0.03967396, -0.0737036, -0.018173145, 0.019877523, - -0.024257254, -0.035490107, 0.006805088, 0.027757466, 0.078860246, - -0.013501801, 0.033365384, 0.034268737, -0.010369118, 0.016648468, - -0.020941501, -0.007380699, -0.017390449, -0.019708263, 0.01559137, - 0.0049017784, -0.012165498, 0.028862571, 0.022769647, 0.009958939, - -0.04634848, 0.016190147, -0.01371188, 0.036478702, -0.015721444, - 0.043253493, -0.038788024, 0.0042713685, -0.0015537714, -0.047703184, - 0.05472404, -0.028969346, 0.028095212, 0.014861246, -0.0029598766, - -0.026642395, -0.047601946, -0.00907697, 0.044260245, 0.018380096, - 0.0452743, 0.023230316, -0.0038587106, -0.030518176, -0.06224589, - -0.08789976, 0.0031464547, -0.012806691, 0.036260746, 0.036932122, - -0.023401057, 0.030792478, 0.01615232, 0.05165115, -0.0066578286, - -0.0019104254, -0.03404961, -1.08901855e-4, 8.8179635e-4, -0.009478747, - 0.016476167, 0.011854954, 0.014103548, 0.027932003, -0.022850256, - 0.0052114422, -0.059224665, 0.029432949, -0.079576224, -0.052545268, - 0.01731276, 0.0057952125, -0.003486565, 0.005076709, -0.05042177, - -0.034963086, 0.03275042, -0.019121777, -0.017931731, -0.0020084355, - 0.02427109, -0.036567703, 0.027338231, 0.013965442, -0.0050993552, - 0.03771056, -0.026342265, -0.027567288, -0.06524636, -0.0069137244, - -0.0028949766, 0.050071474, -0.020243913, -0.004745994, 0.039362904, - 0.060310714, 0.0063515077, -0.03307382, 1.5586005e-4, -0.09119238, - 0.002655276, -0.008740325, -0.003142499, 7.867766e-4, 0.0036556504, - -0.029504944, -0.0066213817, -0.033693224, 0.009330605, 0.0017206393, - 0.047494654, 0.005480314, 0.032463886, 0.08445654, 0.011932892, - -0.04773656, 0.0822731, -2.0491223e-4, 0.036195274, 0.0489606, - -0.027802898, -0.024662154, -0.01931359, -0.048586998, 0.017556835, - 0.0011610182, -0.017429477, 0.04106615, 0.030513525, 0.049754787, - 0.022414636, -0.04541588, -0.033414405, -0.016575089, -0.028979518, - 0.038912524, 0.029681705, 0.0045780586, 0.050527416, 0.02616185, - -0.032478202, -0.02188523, -0.012237257, 0.060799185, 0.029608143, - -0.004964895, -0.013775713, -0.026345164, -0.027017124, 0.063777864, - -0.03727417, -0.025961375, -0.02951052, -0.029767288, 0.031883933, - -0.023192648, 0.03314388, 0.03424461, 0.036289446, -0.00235877, - -0.017008638, 0.009676911, 0.08163168, 0.043363225, -0.0027247537, - 0.05516744, -0.034851283, -0.009514713, 0.0024399871, 0.0069520003, - -0.033991493, 0.015136859, -0.030615149, 0.020802813, -0.029625252, - 0.026300015, -0.04363016, -0.024297075, 0.02248028, 0.016045203, - 0.067929804, 0.0031186284, -0.015014797, 0.007781797, -0.046382464, - 0.015963182, -0.016968818, -0.006826259, -0.012090617, -0.009564629, - 0.05400574, 0.019602597, 0.021579867, 0.014356235, -0.010078273, - 0.046853736, 0.010146497, -0.0032515586, 0.03592278, -0.011829711, - -0.02325174, 0.0437659, 0.0028884278, -0.056260303, 0.019445378, - 0.017375113, 0.021471899, -0.058767866, -0.05524422, -0.011916609, - -0.008001249, 0.0051987907, -0.032840285, 3.3609223e-4, -0.030427068, - 0.06797746, -0.0064683133, -0.012463368, 0.029179407, -0.036293294, - -0.0050547896, 0.03966581, -0.018537713, -0.012311501, -0.016308516, - -0.012399114, -0.013681483, -0.017375164, -0.007100927, 0.03460944, - 0.0015598374, -0.05227861, -0.01757418, -0.0696986, 0.012637738, - 0.021066008, 0.04184377, -0.032952704, -0.0090028625, -0.021660341, - 0.06844259, -2.922442e-4, -0.0013922792, 0.009351575, 0.014976707, - -0.027548155, -0.058129307, -0.05016112, 0.031772226, 0.02329683, - -0.023025177, -0.041028406, 0.0035440093, 0.027414965, 0.00960068, - -0.01828004, -0.012364183, 0.06666337, -0.031075345, 0.017598685, - -0.056368046, -0.019267531, -0.02800557, 0.01968532, -0.0012421142, - -0.019963518, 0.034788944, -0.0036027343, -0.051276132, -0.016078293, - 0.013490776, -0.023649719, 0.010683293, -0.0022581595, -0.060450796, - -0.019534333, 0.008827945, -0.065507226, 0.0059670815, 0.010925723, - -0.02964625, 0.07452146, -0.056649107, 0.03241465, -0.0062028617, - -5.382896e-4, -0.00844616, -0.0032386733, 0.035290908, -0.020023605, - 0.0151298875, 0.003557989, -0.020616712, 0.011615832, 0.0243452, - -0.030366354, 0.05964925, -0.018497331, 0.014372998, 0.006620323, - -0.014684901, 0.0072958227, 0.025495065, 0.0069619133, 0.023660338, - 0.01716623, -0.044501163, 0.01711062, -0.040427335, -0.01792323, - 0.024462055, 0.031900786, 0.008142926, -0.003975118, -0.007837081, - 0.009573909, 4.2486354e-4, 0.050773997, 0.040705875, 0.0341425, - -0.028980188, 0.016421357, 0.12132194, 0.020581188, -0.008046993, - 0.018529082, -0.012092255, 0.04388999, -0.01711422, 0.020749219, - -0.0063727107, -0.017410263, 0.020980753, 0.020262672, 0.028810227, - 0.034597192, -0.03905803, -0.051332515, -0.019419052, -0.046540584, - -0.033101488, -0.016396148, 0.05062837, 0.031102402, 0.005792283, - 0.01806988, -0.012555023, -0.015748553, 0.024344847, 0.024244143, - -0.001342236, 4.38849e-5, -0.019972717, -0.01409595, -0.031258035, - -9.971819e-4, 0.031016769, -0.040909246, -0.015333934, -0.023526931, - -7.732314e-4, -0.002958687, 0.03571812, -0.02463097, 0.036618784, - 0.042741124, -0.0032382763, -0.004351527, 0.0073566814, -0.010916257, - 0.015979841, -0.029149894, -0.083679, 0.037630364, 0.06476199, - -0.0071196575, 0.004724189, 0.0019149265, -0.029237505, 0.013769742, - -0.006062778, 0.03569998, -0.0021732377, 0.028234014, 0.007985751, - 0.030780291, 0.04568631, 0.009097019, 0.011692566, 0.024175381, - -0.0070575066, -0.036506195, -0.004093415, -0.006730031, 0.029898185, - -0.03558333, 0.031191956, 0.018774202, 0.018270677, 0.016477255, - -0.0922358, 0.004002535, -0.0122234635, 9.784563e-4, 0.020864809, - -0.019752378, 0.010379512, 0.034169283, -0.053876624, -0.02580763, - -0.013560274, -0.01179088, -0.009216279, 0.020628514, 0.042971868, - 0.014135021, 0.0597777, -0.0775082, 0.022268089, 0.015348969, - 0.025883626, 0.03090909, -0.04583458, 0.0056955256, 0.008140627, - -0.01433866, -0.019308187, 0.018772412, 0.0041674525, -0.01316605, - -0.034127086, -0.0039123176, -0.011429642, 0.026291765, -0.026841715, - 0.044061344, -0.0031644497, 0.005825057, -0.044171054, 0.018958023, - -0.011341318, 0.01868051, 0.024591397, 0.03268202, -0.0014596669, - -0.0072023794, 0.020789301, 0.006744073, 0.01719283, -0.03293846, - -0.022810219, -0.038818274, 0.013140039, 0.048191745, -0.03422402, - -3.8865692e-4, 0.03390604, 0.053257816, -0.037804924, 0.044145342, - 0.025345787, 0.022741633, 0.002061073, -0.0026048464, 0.051647972, - -0.0022342142, 0.022176707, -0.02774847, 0.053624142, -0.04266522, - 0.046955526, -0.01776369, -0.0032338682, -0.035557527, -0.028087493, - 0.009887544, -0.0024530548, -0.042081002, -0.03166727, 0.013693942, - 0.07864812, 0.022516688, -0.00777807, -0.022113832, -0.024925321, - -0.03949131, 0.047111694, -0.05363555, 0.015445676, -0.0066710403, - -0.03793902, -0.063932925, -0.017026152, 0.06075607, -0.009340552, - -0.011744317, 0.011934552, -0.014098465, -0.013927123, 0.007830271, - -0.019477785, 0.023563752, -0.023590371, -0.054515325, -0.019758277, - -0.008893603, 0.029426225, -0.0071255956, 0.0360916, -0.03324694, - -0.05921028, -0.010505073, 0.011683707, -0.056936182, 0.049608823, - 0.06941114, -0.044517193, -0.09360651, -0.013884978, -0.006192854, - -0.004906409, -0.05253286, -0.0092640165, -0.022568287, -0.04118399, - 0.0031567323, -0.036300037, 0.009572303, -0.006811857, 0.02121904, - -0.007787229, 0.04238382, 0.024194317, -0.009635602, -0.021238105, - 0.013669378, 0.010136449, -0.008130575, 0.063278414, 0.027923085, - 0.041680813, -0.06974779, -0.010418139, -0.008074022, -0.004358049, - -0.048820082, 3.9675852e-4, -0.009923991, 0.010454447, -0.0014385135, - 5.340156e-4, 0.0676682, 0.023755291, 0.045007464, 0.0458834, - -0.0047417963, 0.05333809, -0.030531598, 0.031098295, 0.018287754, - -0.018011954, -0.003083245, 0.005500608, 0.012317151, 0.033799354, - -0.057471495, -0.021797433, -0.05879885, 0.097887985, 0.04729878, - -0.015347965, -0.047619406, 0.0023995463, 0.07535744, -0.015338664, - 0.03052418, 0.048417524, -0.018159734, -0.076598234, 0.023916882 + "paletteEmbedding" : [ + -0.0021062768, + 0.0033230907, + -0.013693226, + 0.029092245, + 0.075288944, + -0.017031934, + -0.0108478265, + 0.042261716, + 0.054224294, + 0.0036875808, + -0.015289523, + -0.026817955, + -0.027521674, + 0.009980809, + -0.044951614, + -0.045948826, + 0.008222298, + 0.03739801, + 0.01360527, + -0.03252621, + 0.07022203, + -0.04550563, + -0.02136914, + -0.04756205, + -0.02912265, + -0.024782673, + -0.019600948, + -0.026008097, + 0.030718671, + 0.039574306, + -0.0919419, + 0.018432554, + 0.018643742, + 0.03720836, + 0.023500178, + -0.035815645, + 0.039885245, + 0.012741761, + 0.032454696, + 0.015665112, + 1.2338061E-4, + -0.053343154, + 0.05414488, + -0.042354457, + 0.047269367, + 0.006590616, + -0.050521754, + 0.039651055, + 0.04107413, + 0.020189961, + -0.02833069, + 0.0023953267, + -0.029363329, + 0.029413983, + -0.01771929, + 0.022659965, + 0.031757105, + 0.039078012, + -0.0070200115, + 0.018875578, + -0.0053981273, + 0.003636057, + -0.030562004, + -0.024666516, + -0.021428937, + 0.015284068, + 0.05110635, + -2.689678E-4, + -0.025652343, + -0.008096495, + 0.0035506287, + 0.022921212, + 0.012875519, + -5.9444574E-4, + 0.037278913, + 0.012014204, + -0.0037603828, + -0.020316314, + 0.016863683, + 0.014024876, + 0.04504725, + 0.019347763, + -0.005161901, + -0.006165656, + 0.073030725, + 0.014102939, + -0.043310188, + 0.03965171, + 0.0066339322, + -0.065735064, + -0.02210289, + -0.028701091, + -0.0014245634, + -0.020026503, + -0.02103678, + -0.034311313, + -0.017478347, + 0.026640449, + 0.075321145, + 0.018434025, + -0.046054054, + 0.0024834655, + -0.021189008, + 0.05304728, + 0.00838885, + -0.04441811, + -0.037617624, + -0.016286584, + -0.021536198, + -1.5908112E-4, + -0.0083274525, + -0.002418593, + 0.013583724, + -0.039579604, + 0.0020481949, + -0.003231684, + -0.012794462, + -0.013067107, + -0.042849924, + -0.0026878489, + -0.016808739, + -0.046500266, + -0.038132973, + 0.028331935, + -0.006937827, + -0.00621964, + -0.01405537, + 0.00396384, + -0.0070388108, + -0.03349841, + -0.021980774, + -0.025884343, + 0.068522625, + -0.021712344, + 0.017706495, + 0.017004363, + -0.05173155, + -0.011853871, + 0.00295531, + 0.012008804, + 8.4767916E-4, + 0.036926292, + 0.034353238, + 0.04620431, + -0.023307309, + -0.016110022, + 0.025210503, + -0.023145294, + -0.021442575, + -0.006910217, + 0.011243235, + 7.234411E-4, + 0.044212908, + -0.029646292, + -0.017614398, + -0.058643788, + 0.031710174, + 0.020689258, + 0.023886357, + -0.018249106, + -0.017419016, + 0.037281904, + -0.024663968, + 0.0053568147, + 0.021146966, + -0.016148344, + -0.022046339, + -0.015565391, + -0.0076267403, + 0.0011512627, + -0.024240628, + 0.04672409, + 0.026886791, + -0.061872695, + 0.040136818, + -0.07741171, + 0.028002797, + 0.025609082, + -0.032065667, + -0.04003118, + 0.0768402, + 0.043481037, + 0.006407931, + -0.034838557, + -0.012879302, + -0.024458963, + 0.02631315, + 0.030341094, + 0.027056446, + -0.0025077497, + 0.040069554, + 0.035016574, + 0.020180225, + 4.813033E-4, + -0.019152151, + -0.0031746381, + 0.013128149, + -0.019988768, + -0.104340866, + -0.014387978, + -0.006019794, + -0.039805967, + -0.0045085414, + -0.046653148, + 0.0012312054, + 0.030372849, + 0.039925758, + 0.013258188, + -0.0031955417, + 0.010736001, + -0.01116553, + -0.016915612, + 9.24229E-4, + 0.03457596, + 0.0022722883, + -0.026252259, + -0.0078220945, + 0.020425463, + 0.0019315066, + 0.01621454, + -0.026850127, + -0.0069172448, + -0.017421966, + -0.022514403, + -0.031387802, + 0.036431, + 0.047782473, + 0.0086678555, + -0.008697127, + -0.009979543, + -0.0045006685, + 0.0704111, + 0.057455402, + -0.003280107, + -0.0051360046, + 0.0053063584, + 0.046523426, + -0.017946891, + 0.005247703, + 0.040739276, + 0.042174228, + 0.06477483, + 0.040524628, + -0.0051078135, + -0.02276595, + -0.0208124, + -0.028868444, + 0.013347912, + -0.04848819, + 0.024489464, + -0.025485324, + 0.033591263, + 0.016245022, + 0.035357945, + 0.038714547, + 0.0066065514, + 0.012746159, + 0.017292283, + 0.0011005076, + -0.00787878, + -0.036526076, + 0.053659588, + 0.0058376375, + 0.0063127526, + 0.0071045673, + -0.01012729, + 0.0011794012, + -8.381864E-4, + -0.045933068, + 0.03140322, + 0.0029036396, + 0.020001123, + -0.015496297, + 0.015521134, + -0.030676939, + -0.024242176, + 0.032621533, + 0.006412268, + -0.056441702, + 0.028499965, + -0.038759645, + -0.0078524845, + 0.0039281566, + -0.010819434, + 0.008460113, + 0.039761487, + 0.018347312, + -0.0018372724, + 0.022523023, + -0.018061357, + -0.020913964, + 0.017892234, + -0.002062583, + 0.004115081, + 0.049862232, + -0.018094357, + 8.1373134E-4, + -0.0077802995, + 0.06760901, + 0.02250494, + 0.04572955, + 0.0135000115, + -0.018052895, + 0.044488315, + -0.01788149, + 0.008053819, + 0.06911564, + 0.035181396, + -0.038552754, + 0.03803322, + 0.017382307, + -0.021345172, + -0.00478007, + -0.044757754, + 0.009645398, + -0.004612735, + -0.01687759, + -0.01698658, + 0.017462749, + 0.030449642, + -0.047760144, + 0.05634951, + -0.066108376, + 0.013816521, + -0.025161147, + -0.0059753433, + 0.018712867, + -0.013775501, + -0.009017104, + 0.040471736, + 0.007429122, + -0.07225991, + -0.05882722, + -0.029095257, + 0.038533103, + 0.015221767, + -0.019115143, + 0.016746636, + -0.05915758, + -0.042448096, + 0.03595904, + -0.009064651, + -0.01810909, + 0.0019873066, + -0.022571614, + 0.018655485, + -0.050574794, + 0.03661795, + -0.053081788, + 0.03413557, + 0.011728121, + -0.038172036, + -0.02183054, + 0.009476402, + -0.026209021, + -0.072759345, + -0.017319538, + -0.030446002, + -0.03867197, + 0.021691954, + 0.017254382, + -0.011027675, + -0.0047186916, + 0.04426172, + -0.05471986, + -0.04085125, + -0.047099687, + 0.0040831068, + 0.02988286, + 0.0394847, + 0.0012919242, + -0.01929841, + -0.030731848, + 0.020279258, + -0.041724514, + -0.02260103, + -0.016660156, + -0.021335578, + -0.025274727, + 0.025183497, + 0.02913835, + -0.043009605, + 0.04188027, + 0.013355994, + 0.037238404, + 0.016750375, + -0.033964403, + -0.040987357, + 0.047490947, + 0.036659263, + 0.017490573, + -0.052797906, + -0.052454304, + -0.03226186, + -0.0048968545, + 0.001783204, + 8.121101E-4, + -0.01480052, + 0.014346909, + -0.04184294, + -0.024183141, + 0.008073004, + 0.01668184, + -0.014557737, + -0.020968746, + 0.041917082, + -0.015975099, + -0.042639766, + 0.011920524, + 0.045751356, + 0.032646738, + -0.049173605, + 0.0037505468, + 0.027269755, + 0.010683733, + 0.08408839, + -0.040487926, + 0.055101387, + 0.028191842, + 0.051615875, + -0.015795914, + -0.022897676, + -0.03828523, + 0.032574035, + 0.08005096, + 0.0070918915, + -0.0062026926, + 7.799037E-4, + 0.048171278, + -0.012416848, + -0.019780261, + -0.0032343385, + 0.0105537735, + 2.378023E-4, + -0.006498244, + 0.05016937, + -0.02436475, + -0.023282997, + -0.031205002, + -0.00971521, + 0.006838686, + -0.01740728, + 0.038605448, + 0.027683899, + 0.012013984, + -0.021052495, + 0.030670028, + -0.028990382, + 0.029711818, + 0.058213674, + 0.035186358, + -0.0014417703, + -0.033673108, + -0.04479133, + -0.0315598, + -0.016881019, + -0.045207996, + -0.0522208, + 6.746533E-4, + 0.03843781, + 0.003276043, + 0.012461733, + 0.020202378, + -0.047601435, + -0.02439516, + 0.001791568, + -0.0034683947, + -0.00259205, + -0.039080456, + 0.02022237, + 0.051487993, + -0.024696816, + 0.004710305, + 0.026869232, + -0.0074054194, + 0.03417743, + 0.034165334, + -0.024040444, + -0.019547854, + -0.023305338, + -0.0083233565, + 0.05305339, + 0.0061252764, + 0.010218298, + 0.0138062835, + 0.0027845695, + 0.024652697, + 0.052591845, + 0.018506717, + -0.03542278, + 0.0015166802, + 0.00994724, + -0.055889335, + 0.014800134, + 0.011839823, + -0.020509241, + -0.057623092, + -0.0038455604, + -0.01952747, + -0.029870637, + -0.020059284, + 0.029426081, + -0.031527955, + 0.03512715, + -0.07291729, + 0.0255429, + -0.047778673, + 0.03686093, + -0.044756196, + 0.035284005, + -0.04072349, + 0.008912762, + -0.07383287, + -0.010838838, + 0.046469804, + -0.014674493, + -0.015005106, + 0.0020061855, + -0.03275733, + -0.008705566, + -0.027031843, + -0.024804808, + -0.0029310246, + -0.014025042, + -0.018102214, + -0.029353838, + -0.04438996, + -0.017925704, + 0.042896125, + -0.028447563, + 0.029108528, + 0.0402237, + -0.039270047, + 0.047250155, + -0.013887926, + 0.012523387, + 0.02159761, + -0.029816136, + -8.0209575E-4, + -0.033357754, + -0.010783258, + -0.007647858, + 0.05401834, + -0.006979945, + 0.026681423, + -0.059783336, + -0.0033876074, + 0.051940557, + 0.019555707, + -0.061022613, + -0.013942623, + -0.019683318, + 0.023430327, + -0.027818693, + -0.03652455, + 0.08009637, + 0.026494876, + 0.015750865, + 0.015733166, + 0.030841213, + 0.013049458, + 0.0062950826, + -0.01808065, + -0.03987284, + -0.008311777, + 0.032915447, + -0.032680947, + 0.025136849, + 0.04165011, + -0.0011080727, + -0.022607751, + 0.09082743, + 0.04740624, + -0.061854254, + -0.013792277, + -0.02861581, + -0.013573855, + 0.014707275, + 0.009796956, + -0.031321637, + 0.033263173, + 0.021782521, + 0.0029061618, + 0.03586798, + 0.037025433, + -0.047086757, + 0.041793093, + 0.03303318, + -0.016980989, + -0.011647475, + 8.311957E-4, + 0.014796296, + 0.025109775, + 0.027668746, + -0.048185475, + 0.037255112, + 0.017936856, + 0.0382413, + -0.0047669155, + 0.01286239, + 0.027764231, + 0.021625375, + -0.027651308, + 0.047917925, + 0.023139825, + -0.008073762, + -0.005882104, + -0.008250118, + -0.04582729, + 0.011789191, + 0.0071679973, + -0.035671934, + 0.003013427, + -0.01970213, + 0.02541488, + -0.042617965, + 0.026671616, + -0.0024111185, + 0.01717939, + 0.0029350834, + -0.02597622, + -0.015159394, + 0.053875674, + 0.001414212, + -0.012638254, + -0.019771634, + 0.026730457, + 6.931044E-6, + -0.019956712, + 0.02123325, + 0.119889885, + -0.035898287, + -0.010247457, + -0.0026095526, + -0.051306237, + -0.028390272, + 0.01839442, + 0.022668632, + 0.023606354, + -5.105034E-4, + -0.03813142, + 0.03665222, + 0.022837123, + 0.032356672, + 0.0052551604, + -0.031166231, + 0.027338983, + 0.022250827, + 0.013383288, + 0.004817456, + 0.021465812, + 0.0040561263, + 0.0016503081, + -0.032846875, + -0.009475959, + 0.011303645, + 0.007947631, + -0.023824342, + 0.056253884, + 0.017356083, + -0.0035347454, + 0.005249813, + 0.04378838, + 0.023269648, + 4.7223724E-4, + -0.014716113, + 0.041343234, + 0.06361731, + 0.010165732, + 0.022732785, + -0.055439465, + 0.009246018, + -0.030798754, + -0.059733495, + -0.02098209, + -0.004075207, + 0.013659571, + 0.03419308, + 0.010578247, + 0.014064725, + -0.045044232, + 2.6637255E-4, + -0.0030412443, + 0.101173185, + 0.018915465, + 0.07903409, + 0.0208397, + -0.07166171, + -0.0056566754, + -0.030545205, + 0.057533287, + 0.0044814707, + 0.010899767, + 0.012987746, + 0.02174466, + 0.030430548, + 0.024753312, + 0.007021657, + -0.041412286, + 0.06865092, + -0.028679984, + -0.02720007, + -0.008535793, + 0.019235432, + 0.0106687825, + 0.0132038, + 0.019556673, + 0.043070253, + 0.009134538, + -0.0713705, + 0.007893123, + 0.009939689, + 0.01664695, + 0.08437689, + -0.003286871, + 0.011287418, + -0.039295956, + -0.0022196476, + 0.022493012, + -0.021987837, + -0.03643038, + 0.040945962, + 0.0020515176, + 0.044724423, + 0.029430738, + -0.01794258, + 0.06915544, + 0.041406948, + -0.0052470616, + -0.021027371, + 0.011743927, + 0.014670355, + -0.010229754, + 0.009297133, + 0.004812542, + -0.046905477, + 0.05731146, + -0.0020978414, + 0.023264442, + -0.010942639, + -0.009356985, + 0.045697317, + -0.0021168364, + -0.009233766, + -0.04548348, + 0.06265011, + -0.01829987, + -0.0072274366, + 0.07321036, + -0.024294853, + 0.010304787, + 0.011701591, + -0.0031984248, + 0.011526873, + -0.011246193, + 0.008226884, + 0.018835776, + -0.0074509685, + 0.08670119, + 0.010848675, + 0.030477213, + 0.04768655, + 0.00982743, + -0.02460569, + -0.032667633, + -0.020641197, + 0.017609512, + -0.023943976, + -0.0025558812, + -0.026689673, + 0.023315202, + 0.015817704, + -0.0824557, + 0.03064511, + -0.0061716605, + -0.025375424, + 8.1659865E-4, + 0.014769141, + 0.02986141, + 0.03902872, + 0.030358614, + 0.0401591, + -0.012379837, + -0.017905457, + -0.018653823, + -0.010682525, + 0.008005417, + -0.0010731363, + -0.020151248, + 0.0077555114, + 0.00210821, + 0.038363554, + 0.033428237, + 0.03255686, + 0.07294197, + 0.006925309, + 0.05747792, + -0.035261337, + 0.038668327, + 0.034477763, + -0.001436709, + -0.025634408, + -2.7331518E-4, + -5.7349296E-4, + -0.01735252, + -0.013990194, + -0.031724907, + -0.007140936, + -0.050206028, + -0.026259067, + 0.009066463, + 0.04067762, + -0.0090432875, + 0.034020435, + -0.008479655, + -0.0024042206, + 0.023235979, + 0.046492238, + 0.050598912, + -0.0268425, + 0.0116385035, + -0.011418503, + 0.016732484, + 0.03157928, + 0.051001612, + 0.038278624, + 0.038066372, + -0.04691887, + -0.07495397, + -0.002670781, + -0.030251015, + -0.008448286, + -0.0025060936, + -0.009478423, + 0.03818147, + 0.049025867, + 0.06414296, + -0.0076468913, + 0.023650026, + 0.042859305, + -0.0076903524, + 0.0076227454, + 0.021197947, + -0.0142054055, + -0.012303943, + 0.0126602845, + -0.014087244, + 0.117736444, + 0.01168092, + 0.011722523, + -0.019473916, + -0.04540973, + 0.02420449, + -0.011285862, + 0.0010004457, + 0.0046063713, + -0.0039400896, + 0.0017788672, + -0.014421587, + -0.013250485, + 0.023976026, + -0.005137335, + -0.0045087524, + -0.05628088, + 0.008379247, + 0.0010739681, + -0.0034547125, + -0.019134412, + 0.018165927, + -0.017460197, + -0.03152476, + -0.03265491, + 0.048550162, + -0.02980158, + 0.030938894, + 0.0378353, + -0.009942326, + 0.03177651, + -0.019621903, + -0.062323812, + 0.0058211614, + 0.024864951, + 0.008569662, + -0.06699051, + 0.0028215754, + 0.04748513, + -0.03603252, + -8.624664E-5, + -0.050970852, + -0.036864877, + 0.003723418, + -0.022889853, + 0.018847499, + -0.021659004, + -0.04854525, + 0.036384016, + 0.0081842765, + 0.030969063, + -0.02040454, + 0.0069953296, + -0.006880498, + 0.014608293, + 0.028461598, + 0.04000766, + 0.013809395, + -0.025283802, + -0.036594637, + 0.018876545, + -0.012896254, + -0.014692326, + -0.019760916, + 0.03907961, + 0.027165193, + 0.010217474, + 0.0031237707, + 0.06952285, + -0.036826357, + 0.02442512, + -0.009218257, + 0.0118234875, + -0.04507959, + 0.023605999, + -0.023493422, + -0.013600709, + 0.055932835, + 0.012665393, + 3.154952E-4, + 0.0071073966, + 0.0036198904, + -0.013299041, + 0.016523931, + -0.007854821, + -0.06370954, + -0.016187448, + 0.008559811, + 0.00659563, + -0.012978605, + -0.014825965, + 0.061729293, + -0.03630939, + -0.01408246, + 0.012833102, + 0.0051166103, + -0.0028869722, + -0.0021673485, + -0.057100885, + 0.04736238, + -0.03924853, + 0.030331235, + -0.020871785, + 0.050021805, + -0.03838726, + -0.011487902, + 0.02347811, + -0.055739466, + 0.030708605, + -0.011890255, + -0.026309991, + 0.0034426616, + -0.019664457, + -0.007996111, + 9.802631E-4, + -0.0359787, + 0.023116186, + 0.0026457775, + -0.0075440975, + -0.025954448, + -0.030803597, + -0.0065103094, + 0.035004724, + 0.0069504427, + -0.020339046, + -0.029427769, + -0.004729758, + -0.019218031, + -0.07080726, + -0.048229396, + 0.022410532, + 0.037462752, + -0.040212665, + 0.015473767, + -0.027206192, + -0.01778023, + -0.016328756, + -0.057362575, + -0.0014666474, + -0.056022454, + -0.040181898, + -0.02044838, + -0.007252097, + -0.0076299976, + -0.029634433, + 0.039552093, + -0.02505083, + -0.010794789, + 0.05087609, + 0.029898504, + -0.023958743, + -0.09178961, + -0.042608008 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json index 450db212d..728d02b8c 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json @@ -1,1339 +1,5253 @@ { - "description": "images linked with the same work", - "createdAt": "2023-11-21T14:25:44.122947Z", - "id": "imwkwk2d", - "document": { - "modifiedTime": "2054-12-28T10:14:19Z", - "display": { - "id": "imwkwk2d", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images linked with the same work", + "createdAt" : "2024-11-14T14:37:56.501674Z", + "id" : "gop4oetl", + "document" : { + "modifiedTime" : "1994-02-11T11:59:16Z", + "display" : { + "id" : "gop4oetl", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/zJI.jpg/info.json", - "linkText": "Link text: RNdjHs", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", + "credit" : "Credit line: jHtcRC9D", + "linkText" : "Link text: wr456t6OC", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/zJI.jpg/info.json", - "linkText": "Link text: RNdjHs", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", + "credit" : "Credit line: jHtcRC9D", + "linkText" : "Link text: wr456t6OC", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#1D4055", - "source": { - "id": "0gpwg18n", - "title": "title-3s7xI6F0dO", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#0F2C29", + "source" : { + "id" : "aawgyyy8", + "title" : "title-Wk9BGeV6UO", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "imwkwk2d", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "0gpwg18n", - "sourceIdentifier.value": "Xa8L6WpxaN", - "identifiers.value": ["Xa8L6WpxaN", "GmIygfg3bH", "la2n3zKDfE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3s7xI6F0dO" + "query" : { + "id" : "gop4oetl", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "aawgyyy8", + "sourceIdentifier.value" : "ErLUg1OWaB", + "identifiers.value" : [ + "ErLUg1OWaB", + "22sQyoKXZb", + "Z3y3axc7PO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Wk9BGeV6UO" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - 0.009550833, 0.012791768, 0.025425794, -0.004163134, 0.030120151, - -0.0050871447, 0.010590496, -0.019056058, 0.014210613, 0.016023772, - -0.015739525, -0.015686372, 0.016042076, 0.014149489, -0.017707244, - 0.0022085917, -0.0075515807, -0.011298498, -0.0047182213, -0.0125288535, - 0.010850098, -0.0017237228, 0.0013148433, -0.0016582747, -0.030012848, - 0.021469144, 0.0039876276, 0.03629356, -0.008392322, -0.008233476, - 0.0050408044, -0.020507252, 0.0068483464, -0.0042900154, 0.007195011, - -0.02147218, -0.010108949, 0.0019407296, 0.0044176383, 0.011540824, - 0.007907284, 0.015553357, 0.036899943, -0.0031244797, 0.00984502, - -0.008493425, -0.0031126929, -0.0011578159, -0.013058901, -0.006757398, - -9.893193e-4, 0.012269418, -5.7009596e-4, -0.015224364, 0.0011977198, - 0.022965576, -0.008237058, -0.0029400133, 0.0016412443, -0.01205514, - -0.029619867, 0.008662859, 0.029208938, 0.0056855953, -0.01187369, - -0.013910173, -0.013922388, -0.010536464, 0.023478484, 0.0020941785, - 0.005454907, -0.0050684568, -0.004953235, -0.006426546, 0.016483195, - -0.0016446133, 0.0033647118, -0.01966288, -0.015815537, 0.045109536, - -0.010817161, 0.011498909, 0.023836749, 0.0011911024, 0.029415403, - 0.01879573, -0.027489416, -0.010046526, -0.018436411, -0.013300214, - -2.5659148e-4, -0.02099754, -0.008841454, 0.010502814, -0.017567813, - 0.008636148, -0.010532271, 9.5605716e-4, 0.009771319, -0.031254034, - 0.01035084, -0.021322703, 0.0025733, -0.0011719986, -0.034733385, - 0.0226584, 0.02007143, -0.027243478, -0.012410781, -0.011404162, - 0.007701863, -0.018368118, -0.0049667205, 2.8732227e-4, 0.007272204, - -8.600153e-5, -0.0010649553, -0.0037256526, 0.00587193, -0.0051792082, - 0.014076814, -0.021943474, -0.002671815, 0.006088396, -0.019630847, - -0.006522725, 0.0050559533, 0.0012580539, 0.022109024, -0.031217363, - 0.011844908, -0.025368355, 0.00660484, 0.0036691006, 0.01101418, - -0.0025056426, 2.5843023e-4, 0.0076078204, -0.036682025, 0.002926711, - -0.037598632, -0.02322802, -0.0052325856, -0.008581288, -0.005237463, - -0.0023256554, -0.022104846, 1.7249586e-4, -0.006767337, -0.015958253, - 0.0011616846, 0.0014700929, -0.012181525, 0.024887314, -0.005239108, - 0.007056689, -0.02723561, -0.018195882, -0.010849168, 0.013077621, - -0.0051048333, 0.017758122, -0.010058369, 0.016512133, -0.023697171, - -0.013501775, 0.009744115, -0.0159751, -0.032387793, -0.020960394, - -0.004023857, 0.014698949, -0.022862691, 0.021221438, -0.0074997516, - 0.02584806, -0.017369306, -0.010903941, -0.019391386, 0.015475603, - 0.02814364, 0.025095377, -0.015317884, 0.007244229, 0.012396223, - 0.014948252, 0.004210377, 0.0100363875, -0.01541508, -0.01002216, - -0.011693091, 0.011896565, 7.839791e-4, -0.03221927, -0.013661667, - 0.007238527, 0.014714583, -0.0041602273, -0.0049590105, -0.037188973, - 0.014230623, -0.006854621, -0.022090077, -0.010066042, -0.013278907, - 0.0057632253, -0.032580577, -0.005788392, 0.0078099594, -0.0057063443, - 0.0074954242, -0.023776766, 0.0095035285, -0.014562095, 0.018292509, - -0.04256049, 2.732245e-4, 0.016387181, -0.0022124953, 0.0179856, - -0.0029206094, 0.04030713, 0.010327407, -0.008225002, -0.010495929, - -0.009871708, -0.008319198, -0.009841718, 0.015701327, -0.019242985, - -0.008257131, -0.02393256, -0.003207211, 0.014156036, 7.9641637e-4, - 7.1704516e-4, -0.015890319, -0.0021433372, -0.003189186, -0.0026610976, - -0.017731609, 0.021635715, 0.024405621, -0.019742696, -0.017692894, - 0.018223045, -0.02410175, -0.0025388936, 0.02934242, 0.013244228, - 0.019000795, -0.023679096, -0.012441858, 0.006813392, 0.011858159, - 0.027737644, -3.429061e-4, -0.0076812906, -0.0060523837, -0.0105130095, - -0.0073268972, 0.010738761, 0.030002363, -0.025400097, -0.01989358, - -0.0011975925, -0.0028251293, -3.3559123e-4, -0.0061678314, - -0.013971154, -0.0050363173, -0.016427398, 0.010503159, 1.8257556e-4, - -0.005039457, -0.018301342, -0.028466051, 0.015326055, -0.010056399, - -0.017330747, 0.024271334, 0.008913567, -0.005261949, -0.011442232, - -0.015085458, 0.024968522, -0.019039614, -0.014998859, 0.010621739, - -0.012426076, -0.006949729, 0.021485953, 0.015396474, 0.028004918, - 0.009454501, 0.014527654, -0.021299275, 0.016406346, -0.008553685, - 0.01443734, -0.0017931641, -0.010323198, 0.020030778, 0.008342983, - -0.013746174, -0.008281792, -0.005657474, -0.019401427, 0.022001434, - 0.0024916728, -0.009817104, -0.010274609, -0.0122521585, -0.0032514427, - -0.0029555955, 0.008163984, -0.016933482, 0.011683895, 0.022928007, - 0.02037655, -0.006123766, -0.009127024, 0.0050331657, 0.018857311, - -0.024719443, -0.005508518, -0.023707315, 0.017560864, 0.0048753982, - 0.027092697, -0.012969919, -0.008928705, -0.007245371, -0.027622376, - 0.026664097, -0.0040481845, -0.0070043025, -0.0042845234, 0.018232467, - -0.0041792286, -0.0031172417, -0.015015129, 0.012635105, 0.022115486, - -0.006728473, 0.018278668, -0.009511986, 0.034623936, -0.0123246405, - -0.011913514, 0.003922097, 0.020399982, -3.8170457e-4, 0.005708955, - -0.020251455, 0.04062981, -0.013972427, 0.0050404333, 0.021265106, - -0.015262316, -0.020574404, 2.6370786e-4, -0.023196187, -0.018614335, - 0.010836471, 0.022380676, -0.014327091, -0.0011976954, -7.018286e-4, - -0.030957485, -0.030957902, -0.016932163, -0.0064268517, 0.008203366, - -0.0029935818, 0.017458966, -0.006733821, -0.009046593, -0.013103817, - -0.013683657, -0.022932786, 0.01510338, 0.005957394, 0.009774051, - 0.014663633, 0.0062428904, -0.027383482, 0.0044294964, 0.018926388, - -0.018294882, -0.013967157, -0.019314058, 3.4215164e-4, -0.006118479, - -0.0068563763, 3.3685187e-4, 0.015379988, 0.041289143, -0.0071029374, - 0.008268235, 0.018858608, 0.007169069, 0.027398072, -0.017559705, - 0.00798809, 0.016925525, 0.02967366, 0.032043133, -0.031062204, - 0.019287359, -0.03152073, 0.02143106, -1.8550734e-4, 0.008428077, - -0.040298607, 0.022812774, -0.004496627, 1.723554e-4, 3.907768e-4, - -0.0062602083, -0.0033344286, 0.0016057236, 0.029175453, -0.015335284, - 0.004412965, -0.0040199733, -0.0018884924, 0.024482125, -0.012936711, - -0.0078064646, 0.021838468, -7.2096585e-4, -0.017205112, 0.032282468, - 0.03538965, 0.008509104, -0.020876676, -0.01809896, 0.021749208, - 6.432859e-4, -0.008975766, -0.0030780775, 0.0039096903, -0.013686034, - 0.010525552, 0.0137702385, -0.016294923, -0.014836316, -0.012376764, - 0.012968838, -0.011229028, -0.011636148, -0.018454986, -0.010168286, - 0.00718938, 0.006794762, -0.01256732, -0.020736488, 0.020385606, - 0.017667644, 0.009901329, 0.013852797, -0.0026237636, -0.0018932623, - -9.1794855e-4, 0.0023018892, 0.017506912, 0.002836637, -0.0071505066, - -0.0120908925, 0.019419698, 0.012683029, 0.013118167, 0.006065535, - -0.006442954, 0.014533392, -0.0130896615, -0.0030454793, 0.006240276, - 0.003211387, 0.026805753, -0.0055770096, 0.0034494065, -0.02140576, - -0.0302032, 0.020521088, -0.015516574, 0.040607292, -0.034967672, - 0.002573755, -0.011840814, -0.0069291266, -0.00856424, 0.00992359, - 0.014920559, 9.024912e-4, 5.654656e-4, -0.008014869, -0.0050768126, - -0.025639193, -0.008804659, 0.01278258, -0.005174725, 0.03330025, - 0.011641987, 0.014225229, -0.022985576, -0.01666086, -0.011362894, - 8.411127e-5, -0.005395185, 0.0034887085, -0.0030099705, -0.024527537, - -0.017494557, -0.0135231735, -0.008206422, -0.017343353, -0.04640716, - -0.02165568, 0.020032413, 0.0057807574, -0.0063809124, -0.0117266895, - -0.013819546, 0.0081488695, -0.02580592, -0.005395778, -0.026024844, - -0.008721855, 0.0154961655, -0.029873377, -0.023044424, -0.0030396006, - -0.02675394, 0.0167261, -0.0058067082, -0.0043899436, 0.012566069, - -0.015705401, 0.01315042, -0.028691994, 0.011201652, 0.01663279, - -0.0052893776, -0.0037373458, 0.0038626245, -0.0026180653, -0.012692447, - 0.0063383095, -0.02018272, -0.00401222, 0.013860445, -0.011048151, - -0.017934447, 1.7079654e-4, -0.0015955305, -0.012824173, 0.001440245, - -0.010152835, -0.012506589, -0.008683263, -0.011081954, 0.030410003, - -0.024994148, 0.02003931, 0.003140434, 0.013554177, -0.012069431, - -0.016802916, 0.022521198, -0.0038280431, 0.026538646, 0.019166782, - 0.028131561, -0.008880593, 0.0020558678, -0.0030426076, -0.0015235998, - 0.0026720243, 0.018161261, 0.00997661, 0.016053576, -0.012218529, - 0.04289178, -0.0025857764, -0.0037538805, 0.012150898, 0.01137526, - 0.00801925, 0.019827366, -0.015767705, 0.011512621, -0.010469508, - -0.010184227, 0.020235533, -0.0023367286, -0.01106942, -0.02106469, - -0.0018507388, -0.030933233, -0.0065462817, -0.031608157, 0.0041890605, - -0.021736981, 6.291569e-5, -0.0068016364, -0.005004759, 0.0052330727, - -0.014607712, -0.0050146673, 0.010114227, -0.007985535, -0.008266616, - -5.6089426e-4, 0.016920263, 0.008531742, -0.008341226, -0.017855871, - -0.028412346, 0.0074728318, -3.7407092e-4, -0.024552265, -0.0036628863, - -0.047836088, 0.029334333, 0.004052787, 7.974868e-4, -0.0042572017, - 0.015275627, -0.017879583, -0.011781056, -0.001428509, -0.028190358, - 0.021109642, -0.02289416, -0.012959003, -4.451392e-4, 0.012675675, - -0.02189666, -0.017068218, -8.295711e-4, -0.031998742, -0.013342911, - -0.03470191, 0.015600472, 0.021444557, 0.0048412, -0.0032103115, - -0.008217442, 0.011316586, -0.0062433975, 0.010586577, -0.0148952585, - 4.9011e-4, -0.02464275, 9.085165e-4, 0.0029025713, -0.0024059818, - -0.016073948, 0.025187664, 0.015873224, -0.015561607, 0.003570496, - 0.014419787, -0.014994032, 0.0077274195, -6.946211e-4, 0.018664442, - 0.021228906, 0.0044544484, -0.008161761, -0.0061726393, 0.044319887, - -0.011695645, -0.023790265, 0.0015711676, -0.022406692, -0.004125913, - -0.01789232, -0.026064523, 0.008696501, 0.01977767, 0.012841956, - 0.019648323, 0.0133334175, 0.003558251, -0.0018498341, 0.014320935, - 0.0060554794, -0.001152125, -0.007183945, -0.017194178, 0.0045090606, - -0.024181673, -0.015378622, 0.0068215895, 0.0048747654, 0.0024176398, - 0.021046508, -0.005761033, -0.008186266, -0.013063488, 0.008618139, - -0.011912953, -0.01577556, 0.009819784, -0.011472762, -0.0074381894, - -0.0310958, -0.0064077796, 0.022058329, 0.007979348, -0.013717701, - -0.011300531, 0.030179104, -0.015945718, 0.0125553915, 0.022966515, - 0.009971093, -0.0071730902, -0.023382619, -0.015554773, 0.0066519794, - -0.01209252, -0.016680254, 0.009408481, -4.3206383e-4, 0.007569368, - -0.019029083, -0.027596422, 0.0036894586, -0.004766295, 0.017873302, - -0.0014757997, 0.008472944, -0.021566505, 0.0033615006, -0.0041734953, - 0.00736702, 0.015130948, 0.014604783, 0.020446924, -0.013962016, - 0.016926924, -0.014061765, 0.010116783, 0.014878131, -0.009740514, - -0.010799189, -0.0072582257, 0.0099098645, -0.0110886935, 0.0060366252, - -0.015258606, 4.1274743e-5, -0.009272649, -0.033321533, 0.0140168425, - 0.043487366, 0.010227104, -0.0334952, -0.00874764, -0.010700578, - 0.011312802, 0.012420203, -0.032150723, -0.0026183818, -0.030545741, - 0.026044888, 0.002048148, -0.015503849, -0.010896974, 0.007551157, - -0.025809553, 0.026666928, 0.027638394, 0.011432729, -0.007042545, - -0.025814714, 0.019362746, 0.002234349, 0.016765112, 0.01668661, - 0.014491313, 0.005756367, -0.0054122484, 0.021525104, -0.0067390855, - 0.0021035173, -0.009437361, 0.0029685732, -0.004120737, 0.0039219493, - -0.011371004, 0.023350267, -0.0011808149, -0.0019400816, 0.008752253, - 0.014450494, 0.009956024, 0.007671958, -0.0488221, -0.018018305, - 0.010953988, -0.015420287, 0.007003791, -7.548402e-4, -0.012386461, - 0.03581234, 6.6857436e-4, 0.020349031, -0.044253964, -0.011947975, - 0.0041251252, 0.0037275553, -0.006197008, -0.0028981152, 0.02448739, - -0.015462711, 0.013444741, 0.04066973, -0.016073799, -0.0069188494, - 0.012873617, 0.0126401605, -0.01150263, -0.0066273743, 0.014013489, - 0.0039855465, -0.026228053, 0.0113195, 0.0062827454, -0.00981064, - 0.0082916925, 0.008938128, -0.026473021, -0.0032683236, 0.0068260115, - 0.0058851023, 0.008964728, 0.0018649373, -0.008796878, -0.00750684, - 0.015394979, 0.02206246, 0.0011486149, -0.028111251, 2.1800495e-4, - 0.0023263022, -0.01983594, -0.012216739, -0.0027379997, -0.025221886, - -0.004300278, 0.008230143, 0.026227718, 0.018620431, -0.0106648905, - 0.004048481, 0.018683465, 0.028302556, -0.0071545416, 0.015560187, - -0.020308789, -7.814843e-4, -0.001070856, 0.0050674533, 0.0068707154, - 0.007837797, -0.023618825, 0.022937031, 0.005755091, 0.005340561, - 0.0029719537, -0.013345949, 0.011458419, 0.012619716, 0.019708237, - 0.002204775, -0.01272005, -0.01443886, 0.009236714, -0.027733771, - -0.013398509, -0.020848528, -0.028152576, -0.0019506143, -0.027813246, - 0.005307675, 0.013204525, -0.016991196, -0.0014166887, 0.015998827, - -0.013199622, -0.008361699, 0.012381991, -0.0016538603, 0.0087799225, - 0.013190463, -0.020236127, -0.017758904, 0.019292153, 0.034091517, - -0.012789338, 0.0010711204, -9.6979464e-4, -0.013068576, -0.016546123, - 0.004020228, 0.0012230214, -0.021605685, 0.016282475, -0.029588789, - 0.019675028, 0.014026623, 0.0024903738, -0.014597805, -0.020627238, - 3.493076e-4, 0.0024445667, 0.01813245, -0.025828235, 0.0013413737, - -0.021259181, -0.010314283, -0.009863028, 0.02343308, -0.013295511, - 0.0070431707, -0.010749513, -0.012999321, 0.036609054, -0.031288568, - -0.0030487073, -0.016038656, -0.011985947, 0.014238727, -0.00982788, - -0.004393221, 0.0076152654, 0.015729655, -4.8246307e-4, -0.028261522, - 0.019115537, 0.009617889, -0.010461305, 0.0019792642, -0.013452565, - 0.0025977392, 0.013540869, -3.390069e-4, 0.020511072, -0.024379082, - -0.022608835, -0.008215204, 0.0059062573, -0.03146863, -0.0148292305, - 0.018644283, 0.0071003484, -0.012451932, -7.80633e-4, 0.0074062366, - 0.008660373, -0.011967255, -7.7859993e-4, 9.064293e-4, -0.006996845, - 0.002170206, 0.0051891566, 0.015855296, -0.007535103, 0.027513169, - -0.025368307, 0.032287735, -0.0036888723, 0.0013616582, 0.017544754, - 0.0020625473, 0.010710034, 0.006933421, 0.013422569, -0.0077927792, - -0.018992431, 0.006982261, -0.0058597177, -0.02689149, 0.017032439, - 0.0065921266, 0.0016079097, -0.0099974945, -0.0071540577, 0.013973938, - 4.5776836e-4, 0.028236177, 0.0013674947, -0.009257502, -0.015789486, - 9.3567924e-4, 0.0027824184, -0.00957979, 0.0061206, 0.009620216, - 0.023417184, -0.044926282, -0.024479339, 7.086212e-4, -0.013546243, - 0.007990637, 0.014654385, 0.015865931, 0.007060456, 0.016183736, - 0.012223916, -0.024529895, 0.0074813473, -6.8051374e-4, -0.00427619, - -0.012796806, 0.0022917094, -0.023443533, 0.013920395, 0.011546727, - -0.018461684, 0.012267717, 0.013924214, -0.0072391927, 0.014179681, - 0.01547887, 0.017032996, 0.0034191427, -0.016309006, -0.0049661873, - -0.005259187, -0.025464386, 0.005045076, 0.019639926, -0.0052503035, - 0.001992851, -0.021509608, -0.026418041, -0.005395344, -0.0017985947, - -0.0024995229, 0.025547462, -0.0047236695, -0.015278874, -0.008928616, - 0.0017382151, 0.009350613, 0.012110896, 0.014743882, 0.0033826632, - 0.0070701865, 0.006902173, 0.0072577707, 0.0015364358, -0.019936388, - -0.009514169, -0.0038581842, -0.024189452, 0.016075026, -0.014121274, - -0.0028507868, -0.0034660236, 0.023301482, 0.022997973, -0.005339869, - 0.0023786023, -0.011352153, 0.0016456515, 0.014200365, 0.015771385, - -0.006371085, -0.011741129, -0.008482752, 0.0039453167, 0.011082226, - -4.0341806e-4, -0.004206897, -0.017249988, -0.0067711, -0.020642798, - -0.008820426, -0.012395004, 0.02737722, -0.0033090115, -0.0011113145, - -0.02777789, -0.02171755, 0.004434741, -0.02020345, -0.009071533, - 0.030855635, 0.0012334698, 0.017424978, 0.016760517, 0.005861251, - 0.014124812, 0.0054243803, 0.011821741, 0.023436448, 0.009003751, - 0.004069341, 0.015492294, -0.01515643, 0.0026192563, 0.0077091446, - 0.008607343, -9.6535956e-4, 0.02261911, -0.0020043615, -0.024736889, - 0.017400049, 0.029484756, 0.009438506, 0.031218989, -0.022247376, - -0.0026950783, 0.00606101, -0.0077593755, -2.1792433e-4, 0.016453097, - -0.012830516, -0.022343442, -4.141549e-4, -0.009425839, 0.009479536, - -0.0045388103, -9.592889e-4, 0.0055134376, 0.008788668, 0.016914703, - 0.009677951, -0.0055414923, 0.011679366, 0.015034534, -0.0016878501, - 0.023541495, -0.004698098, 0.0052128765, 0.0054665343, 0.009448629, - 0.015809031, 0.0050951433, 8.2784076e-4, 0.0026903925, -0.0120153455, - 0.013066875, -0.0076492922, -0.019283844, -0.012519429, -0.018106744, - -0.016736876, 1.9040938e-4, 0.0056432667, -3.5814554e-4, 0.004979848, - -0.003439916, -0.017033344, -0.030013014, 0.012522356, -0.008231292, - -0.0045564678, -0.0064457995, -0.02115741, -0.03196655, 0.023278264, - -0.019110782, -0.010080551, -0.0016841809, -0.008647859, -0.013869691, - -0.028827863, 0.008666264, 0.037754234, 0.011553344, 9.720616e-4, - -0.011725928, 0.0029104068, 0.010564319, -0.016431265, 0.014570434, - -0.003325783, -0.021659484, 0.02065811, 0.015086853, 0.01079267, - 0.0017955094, 0.015465513, 0.017787844, -0.007216226, -0.017582508, - -0.01775168, -0.010219869, -0.025583323, 0.016082339, -0.015700495, - 0.006223903, -0.004240348, -0.006268874, -0.016189585, -0.024026176, - -0.008682811, -0.014912547, -6.4273877e-4, 0.005754159, 0.00551205, - -0.037396193, 0.0070769875, 0.009463405, -0.026863342, -6.8228843e-4, - -0.009684063, -0.013865492, 0.002720698, -0.01203274, 0.005698399, - -0.0011678362, 0.022082813, 0.003188448, 0.009633339, 0.012848797, - -0.0041427356, 0.015466138, -0.013378644, -0.008341645, -0.0036484597, - -0.0024200983, -0.0033084976, -0.026933134, 0.0012698304, 0.032958355, - -0.01020472, 0.023656994, 0.002999623, -6.3137594e-4, -0.007567746, - 0.029134516, 9.272827e-4, 0.011251668, -0.015111011, -9.751736e-4, - 0.012116921, -0.005728032, 0.0011586229, 0.02541437, -0.014555158, - -0.0070611066, -0.013640663, -0.003453935, -0.020716336, 0.009679377, - -0.0150038535, 0.026336357, -0.00827785, -0.0051425705, -0.039792284, - 0.010341637, -0.011695084, -6.736162e-4, -0.0010481047, -0.002195943, - 0.0012211819, -0.0068461685, 0.015219571, 0.01834667, 0.04505378, - 0.02658935, -0.008860347, 0.0058016637, -0.0023214337, 0.014268631, - -0.02347559, -0.008780211, 0.004644418, -0.0053959843, -0.0111986995, - -0.013408451, 0.043400988, -5.1814714e-4, 0.0024393073, 0.0026861217, - -0.0025139202, -0.030775009, -0.017006593, 0.026165215, 0.0041288147, - 0.0011822307, 0.01360841, 0.004152618, -0.020841783, 0.01963559, - -0.017458297, -0.01543156, 0.013755688, -0.0056304703, 0.0128952395, - 0.012542152, -0.009416132, 9.1865886e-4, -0.017719168, 0.01108698, - 0.015124356, -0.0083481325, -0.019133892, 0.0168858, -0.027637424, - -0.015833095, -0.001034982, 0.01752212, 0.008566069, 0.014613046, - 0.012189093, 0.010200198, 0.013340057, -0.019709503, 0.02560996, - 0.011018082, 0.0017671868, 0.010244079, 6.186324e-4, -0.017711468, - 0.03065301, 0.0034979251, 0.01972973, -0.012075792, -0.010255473, - 0.008061872, 0.0053193313, 0.007886765, -0.00494428, 0.0023029072, - 0.0063433954, 0.022692263, -0.017475568, -0.016196478, 0.008348953, - 0.012295935, -0.007594853, 0.028424306, 0.004273139, -0.0015101676, - 0.028904416, -0.033142075, 0.0024422733, -0.014600432, 0.022107195, - -0.009972682, 0.010757101, 0.0063741095, 0.022819085, 0.008890467, - 0.0017145672, -0.012332651, 0.023817807, -0.015893405, -0.0039910367, - -0.0033637816, 0.011967812, -0.0073739514, 0.0032450117, -3.3979453e-4, - 7.299706e-4, 0.016986756, -0.0022574326, -0.0030207017, 0.012598834, - -0.016450083, -0.01762362, 0.024712723, -0.0022275394, 0.014065766, - 0.023265172, -0.0037777955, -0.02671034, 0.0072858348, -0.039783504, - 0.007617559, 0.0067717372, -0.028724812, -0.011974065, -0.0018778926, - -1.6194327e-4, -0.006422586, -0.0019867022, -0.017295681, 0.026956666, - -0.007630991, -0.009405233, 0.02198002, -0.013489237, 0.0011009672, - -0.006884455, -0.0054329177, 0.032743555, 0.010768011, 0.007881452, - -0.031101046, -0.0066234823, 0.004088053, -0.011274439, -0.0043737115, - 0.025292967, -0.01563962, -0.046756767, -0.011979194, 0.011316712, - 0.0064532696, -0.0011232012, -0.003294423, 0.0049379417, 0.008193862, - -0.0065598097, -0.007862315, -0.005409508, -0.005177715, 0.01721095, - -0.024136111, 0.017394124, 0.035553023, -0.020743435, -0.013738392, - 0.008843071, 0.00890294, -0.0077559813, 0.025111295, -0.0056584687, - 0.002038422, 0.008616085, 0.0067520826, 0.0151547445, 1.4956974e-4, - -0.006153043, -0.028701957, -0.006489994, 0.017764458, -0.0068478337, - -0.0073221256, 0.011776198, 0.005079818, -0.0047907745, 0.01409186, - 0.012982214, -0.032449797, -0.0022776963, 0.006466413, 0.019186137, - -0.006102566, -0.031781606, 0.0023709238, -1.3784604e-4, 0.0059417114, - -0.0188096, 0.007256075, -0.010520607, -0.0255072, -0.023428334, - -0.012104572, -0.02837587, -0.0018231736, -0.001291638, -0.028518816, - -0.014557452, 0.009587861, 7.225035e-4, -0.029610539, -0.016351094, - -0.013993723, 0.003433986, 0.008211202, -0.015790544, 0.0022448173, - -0.0011400251, 0.009250486, -0.011029714, -0.007632018, -0.026765848, - 0.0037707814, -0.02741913, 0.018538292, 0.005779021, 0.017918313, - -0.01264155, 0.0050370004, -0.004095044, -0.026674286, -0.017559633, - 0.017619897, -0.010743953, 0.003671525, -0.039461378, 0.016894195, - 0.013924082, 2.4261458e-4, -0.0041605746, -0.003100747, 0.008300139, - 0.016790606, -0.01903499, 0.0044907923, 0.03949312, -0.007892061, - 0.0056267614, 0.0434267, 0.03493803, -0.024637941, -0.012766044, - 0.0033110855, -0.018905235, 0.019314583, -0.018348092, -0.009729153, - 0.016817247, -0.0049726483, -0.017347846, -0.018449264, -0.020776456, - 0.020921018, 0.002936117, -0.012680105, 0.018547613, -0.02013559, - 0.00891907, 0.004984452, 0.005092217, -0.016015826, 0.023345143, - 0.01975671, 0.009223569, 0.0047933343, -0.019466894, -0.008729767, - 0.0011634788, -0.024230683, 0.0058897072, 0.011798885, -0.011474286, - -0.016348654, 0.0026160055, 0.007435552, -0.011691433, 0.0054872874, - -0.0022461605, -0.03470067, 9.0197026e-4, 7.0133066e-4, -0.011934827, - -0.009165501, 0.0040745456, -0.014860292, -0.007359414, -0.0015235414, - 0.004362174, -0.011114105, -6.4371934e-4, -0.02041641, 0.0073300437, - 0.013955982, -0.0031185446, 9.0383907e-4, -0.01666229, -0.013143242, - 0.009660969, 0.016071659, -1.4244586e-5, -0.0048118974, -0.01917861, - -0.0063897935, 0.008966671, -0.0035785823, -0.0017655876, 0.024379741, - 0.004627651, 0.011340576, 0.035472248, -0.028638152, 0.018506749, - -0.010117015, -0.0058793807, -0.009346685, -0.0100794295, -0.006534614, - -0.004965528, 0.008002263, -0.0048263553, 0.008234361, -0.02133539, - 0.006016437, -0.013559937, -0.018844733, 0.014093761, -7.966391e-4, - -0.009204261, 0.018352523, 0.002430462, 0.014777633, 0.020520326, - -0.0052526155, 0.030025577, 0.011701484, -0.009723935, 0.014659417, - -3.8798113e-4, 0.011681738, -0.011915052, -0.0034722437, 0.0054978803, - 0.037171196, -0.012965736, 0.007893211, -0.052953295, 0.00378753, - 0.019652318, 0.003237138, -0.010808416, -0.013364614, -0.032172646, - 0.0030621958, 0.011095953, 0.010388216, -0.0023081664, 0.0012849258, - -0.019580191, 0.015688375, -0.014243987, -0.007574554, -0.00957467, - -0.0012515133, -0.021757402, -0.0058267023, -0.013813013, -0.020379629, - 0.02802504, -0.026381724, 0.010742431, 0.024335077, -0.01420989, - -0.008311372, -0.006065883, 0.0034325665, 0.021563843, 0.01588731, - 0.019958781, 0.0052590156, -0.014948552, 0.0045915954, 0.013262051, - 0.014295229, -7.3440187e-4, -0.008350971, 0.003958654, 0.014473391, - -0.004487222, 0.01636149, -7.989047e-4, -0.0018869446, 1.4137072e-4, - 0.021852644, -0.0115060685, -0.0095263235, -0.0104190195, -0.004944934, - -0.019828584, -0.031065337, 7.82252e-4, -0.008187518, 1.4576882e-4, - 0.007454826, 0.007340477, -0.01826063, -0.025801776, 0.023046827, - -0.010629717, 0.039300077, 0.018095812, 0.0126238335, 0.01147547, - -0.004668634, -0.011669689, -0.036406245, -0.02572231, 0.017202003, - 0.010509402, 0.006544223, -0.003334967, -0.027315015, 5.0786306e-4, - -0.0043516355, 0.006881026, -6.450015e-4, -0.011440039, -0.0066756723, - 0.008612941, -0.0044060117, -0.0019472439, 0.0026320384, -0.019252075, - -0.014407496, 0.01053713, 0.0080052465, -0.0017876369, 0.0028896283, - 7.8967074e-4, -0.004409329, 0.015294416, 0.030464618, -4.951795e-4, - -0.022313913, -0.020369237, -0.014019212, -0.0125176115, -0.03266784, - -0.0048335437, 5.6285085e-4, -0.008553525, -0.02682563, 0.006942016, - 0.004012296, -5.432239e-4, 0.018174727, 0.0038207546, 8.3479926e-4, - -0.022409266, -0.017220393, 0.004292549, 0.011632783, -0.010642384, - -0.0012500959, -0.030034611, 0.027465915, -0.03366006, 0.0119538475, - 0.013665842, -0.005818864, 0.017248357, 0.004006691, 0.002433817, - 0.014756803, -0.017682258, 0.01122042, 0.0060026566, -0.011772489, - -0.0025120864, 0.030369423, -0.0316276, 0.004253124, -0.0030882545, - 0.0047403723, 2.3879789e-4, -0.004271312, 0.027678574, -0.016961828, - -0.01936646, -0.005054844, -0.0025356717, 0.010972071, -0.0056321905, - 0.0016266719, 0.0012685423, -0.007504854, -0.01304249, -0.01123084, - 0.0017202799, -0.006079346, -0.017067868, 0.003638992, 0.026216213, - -0.005746965, -0.009471631, -8.8857685e-4, 0.016131341, 0.0048567564, - -0.006715728, 0.0023278245, -0.0066890074, 0.015018095, 0.0024541118, - 0.014698709, 0.014260064, -0.02795647, -0.0052997107, 0.0024817865, - 0.011693026, 0.013687607, -0.011560746, 0.0033066957, -0.026845822, - 0.034781884, -0.010574418, -0.01164078, 0.007564668, -0.028730597, - 0.013111031, -0.0024844701, 0.002622188, 0.015413942, -0.0032583857, - -0.0056390213, 0.015427959, -0.0053125606, -0.0066266325, 0.007954423, - 0.0053586015, 0.016243631, 0.004351758, 0.01134803, 0.024667317, - 0.0026181098, 0.0025156755, 0.01640563, 0.012729245, 0.0018605576, - -0.0046125073, 0.028131403, -0.02179896, 0.0062111006, -0.015538041, - -0.034682136, -0.0068139485, 0.0033208015, 0.0064434577, -0.010366694, - -0.013603047, 0.005495782, 0.0028723413, -0.010780227, -4.359343e-4, - 0.0136967655, -0.026851749, 0.00554943, -0.015407238, 0.014884263, - -0.0021170352, 0.0020878199, 0.02188419, -0.028096927, -1.05353276e-4, - -0.013964211, -0.0068236585, 0.030988835, -0.0040542353, -0.0029326286, - 0.018856281, 0.021957763, 3.3597797e-4, 0.0031183867, -0.025560746, - -0.003918862, -0.019756483, 0.011713356, -0.011651647, -0.013358652, - 0.008117411, -0.002759292, -0.016917357, 0.0042356523, 0.020611938, - 0.02138184, 0.012043886, 9.0310286e-4, -0.015045359, -0.009809965, - -0.0034324836, 0.0056756637, -0.011712615, 0.0013849584, -0.012842607, - 0.018476274, 0.038151804, -0.009063787, -0.0045694523, -0.016338881, - -2.0279778e-4, 0.02518778, 0.01510862, 6.824148e-4, 0.01469296, - -0.021465514, 0.0018847027, 0.005997896, -0.01105376, 0.015166898, - 0.0140357455, -0.0056273225, 0.031245556, -0.0062220995, -0.001798695, - -0.016006267, 0.024862178, 0.014190968, 0.0010277393, 0.010043332, - -0.016557144, -0.008345874, -0.008190714, -0.016093578, -0.010143327, - -0.01104345, -0.0016785676, 0.0027273213, 0.0092504965, -0.004171734, - -0.0038661985, -0.02626283, 0.0030888827, -0.024382126, 0.01901322, - 0.014021528, -0.010576451, -0.022469405, 0.016340926, -0.0070318403, - 0.004954087, -0.039482784, -0.020356854, -0.017802449, 0.002085912, - -0.0034441405, 0.0060899095, -0.011999845, 0.01027668, 0.026107455, - -0.00696244, -0.0027729839, 0.019501211, -0.021484667, -0.0012556061, - 2.1800761e-4, -0.0023106893, 0.0013201247, 0.025713906, -0.0034863125, - -0.029812928, -0.013637097, 0.00877757, -0.005997867, -0.0077910987, - -0.0057784044, 0.009068475, 0.008842523, 0.016774971, 0.013592835, - -0.012971062, -0.020318702, 0.005667952, 0.023787556, -0.009700822, - 0.019628787, 0.0046378593, 0.0075632893, 0.001624311, 0.010707289, - -0.020833831, -0.019384075, 0.0029169193, 0.0068216566, 0.018692832, - -0.024106627, -0.014967151, 0.013816269, -0.007680127, 0.0018958383, - 0.023761107, 0.008177194, -0.015823644, -0.022773836, 0.0024488978, - -0.0014524424, 4.8494167e-4, 2.6633707e-4, -0.017288769, 0.03197648, - 0.011681936, -0.015782626, 0.021741996, -0.0070541636, -0.007962212, - -0.05122273, 0.015277676, -0.010763978, 0.01849066, -0.024316689, - 5.3031044e-4, 0.011438743, -0.009939865, 0.028725298, -0.026174026, - -0.015894989, -5.6120125e-4, -0.0016118009, 0.013327474, 0.01268091, - 0.024211006, -0.007434792, -0.015594474, -0.029169595, 0.001733387, - -0.008425864, -0.005110986, 0.023213282, 0.0036266998, 0.0131967785, - 0.0012035577, 0.004129168, -0.0011378593, -0.007423721, 6.431082e-6, - 0.00716637, 0.018135127, -0.009709574, 0.011557009, -0.013391742, - -0.0067549823, -0.0011393058, -0.0215664, -0.0052520125, 0.0239403, - 0.025294365, -0.025850657, 0.035753556, 0.014483386, 0.013414967, - -0.018715575, 9.379755e-4, -0.020578114, -0.0137243625, 0.010230126, - -0.0071001844, -0.005420449, -0.024023706, -0.0023836794, -0.011198407, - 0.017081287, -0.009382911, 0.022460196, -0.007100271, -0.027352586, - -8.2463596e-4, 0.0015163451, 0.01794176, 0.0068783825, 0.003918248, - 0.008432507, -0.017453993, -0.012897682, -0.009092726 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.0063184807, 0.0030595362, 0.020531816, -0.023096096, 0.021140525, - -0.02301506, -0.0043027517, 0.01799853, 0.0016416556, -2.0120964e-4, - 0.011209905, -0.014540453, 0.013981671, -0.008053135, -0.020762011, - 0.013334199, -0.008797618, -0.02100317, -0.03551085, 8.434256e-5, - -0.0022142536, -0.0038713915, -0.014603518, 0.014307391, -0.03032319, - 0.014493781, -0.006520857, -8.668549e-4, 0.0030543564, 0.025185196, - 0.020746095, -0.006916404, 6.4336404e-4, -0.003996323, 0.020926101, - 3.2625202e-4, -0.032297105, 0.0070606573, 0.0066487007, -0.007382706, - 0.005634941, -0.012459577, -0.02866959, -0.007259105, -0.0019128026, - -0.007914789, 0.012701818, 0.018812152, -0.014751693, 0.014721924, - 0.0024234313, 7.7304407e-4, -0.013319104, 0.014876548, 0.015912682, - 0.028477402, -0.019719526, -0.0016401072, -0.0049514864, 1.7499627e-4, - 0.011014651, -0.011872384, -0.02178831, 0.020675516, -0.030244397, - -9.725911e-4, -0.03327493, 0.02996647, -0.0010385895, 0.0048888223, - -0.011365608, 0.008677317, -0.0075519676, -0.020210287, 0.0024871058, - 0.0023221995, 0.023724163, -0.015195292, -0.017680097, 0.026026007, - -0.013875174, 0.0056164186, 0.012463836, 0.01097776, -0.00644729, - -3.990474e-4, -0.005684905, 0.02577778, -0.009992835, 0.012610058, - 0.009505327, 0.021593725, -0.015240038, -0.008506319, 0.0035790354, - -0.021268103, -0.020313174, -5.0154637e-4, -0.0071749617, -0.03267502, - 0.008098889, -0.007900202, 0.023462422, 0.009358523, -0.005828819, - 0.019025346, 0.01733377, -0.028603975, -0.0050149714, -0.0154731395, - -0.0074753156, 0.028195074, -0.01739685, -0.009021406, -0.007456939, - 7.844051e-4, -0.0145861795, 0.0075650834, 0.030251471, 0.032234706, - 0.01452636, 0.008706625, 0.009064783, -0.010615571, 0.008370731, - -0.020987457, -0.011829808, 0.027390653, -0.01095388, 0.015247827, - 0.030529896, -0.005891509, 0.0013721249, -0.012292406, 0.0032454892, - -0.005521996, 0.006204433, -9.102364e-4, 0.012240459, 0.0072828084, - 0.02105674, -0.0020552115, -0.0022264658, 0.0072498494, 0.0028348789, - -0.0024861132, -0.012997072, -0.01425583, -0.015425089, 0.0048445053, - -0.028356275, 0.013319591, -0.0054624192, -0.003991888, 0.006150144, - 0.0014692033, 0.0044624177, 0.0067340173, -0.029212838, -0.015623719, - -0.016516654, -0.03810976, 0.0035835868, -0.0060194107, -0.012727504, - -0.018886752, -0.04116918, -0.004416004, -0.016714334, 0.013108512, - 0.024173958, -0.01503248, -0.0098906215, -0.037326857, 0.0058587748, - -0.0010101596, 0.005172302, -0.010706944, -0.008167426, -0.0060350173, - 0.008925107, 0.0126669435, -0.003914227, -5.8011303e-4, -0.01564878, - 0.019278305, 0.018529944, 0.014327595, -0.022104213, -0.012813051, - -0.017113317, -0.004495844, 0.015680438, -0.030603489, -0.01106608, - -0.0077579827, -0.02004466, -0.0094524175, 0.0030728392, -0.003341719, - -0.0025799845, 0.013136111, -0.010210577, -0.003723779, -0.0038223532, - -0.012373615, 0.0037580032, -0.013348842, 0.016419115, 0.021026796, - -0.02916414, 8.7285304e-4, 0.013444396, 0.0033684473, -0.0027635267, - 0.033291172, 0.018739907, 0.008639194, -0.02742739, -0.0058196895, - -0.010402017, 0.014360184, -0.017609341, -0.028783686, 0.005261915, - 0.0027146733, -0.00721146, -7.036233e-4, -0.0010165477, 0.01779074, - 0.008895651, -0.041278165, -0.0066540604, -0.02586084, 0.012056889, - -0.001094699, -5.961457e-4, 0.012847753, 0.01579014, -0.011215859, - -0.016476756, 0.0031338802, 0.04203155, 0.023153158, -0.03354685, - -6.926218e-5, -0.007002828, -0.0044828597, -0.017328488, -0.0031620914, - 0.040565185, -0.027873376, 4.3764262e-4, 0.008738262, -0.012037728, - -0.0022299504, -0.0010726594, -0.024556745, -0.014864338, -0.0020057468, - -0.008359506, 0.015177262, 0.0013251591, -0.00992511, 0.034636445, - 0.011711283, 0.0014239472, 0.002300962, 0.0061298893, -0.005454748, - 1.3911173e-4, -0.013703149, 0.01724715, -0.0157964, -0.011991507, - 0.028549923, -0.001292245, -0.0020066851, 0.008468121, -0.009393093, - 0.0054100077, 0.010058079, -0.0044061816, -0.009328597, 0.022576313, - 0.010736022, -0.010067977, -0.0070154574, 0.0030761673, -0.0050019883, - -0.0031638993, 0.0042648884, -0.030247858, 0.016782988, -0.0066237366, - 0.035884075, 0.0063792826, 0.037615206, -0.0018036406, -0.008679462, - -0.003599874, -0.027469646, 0.017447092, 0.0032665585, -0.0082201725, - 0.027696462, 0.010350961, -0.01751567, -0.0065129152, -0.003119158, - -0.014243387, 0.0022453854, 0.010037429, -0.022926163, -0.02980624, - -0.008396966, -0.014869808, -0.0035447935, -0.009007113, 0.01953287, - -0.014939932, 0.023244362, -0.046942778, 0.012056257, -0.008113499, - -0.030959146, -0.0061657396, -0.013673214, -3.0397475e-4, 0.016860925, - -0.0029559208, 4.2112963e-4, -0.010084074, 0.0019288356, -0.0023874168, - 0.009801988, 0.010999038, -0.006259635, 0.018848728, 0.001029557, - -0.012747953, -0.001182749, -0.020404741, 0.014021581, 0.0073421407, - 0.0450248, 0.014034217, -0.019881034, -0.0036494636, -0.011308568, - -0.020307299, 0.015797002, -0.006408419, 0.0167081, -0.024982763, - -0.02592054, -7.719371e-4, -0.006412251, -0.023145903, -0.0037845878, - 0.0070172115, -7.277119e-4, 0.015532363, 0.010213448, 0.019131396, - -0.013193332, 0.0033472215, 0.008316433, -0.00646732, 0.003941161, - 0.0071523995, 0.015026464, 0.019072112, 0.030640878, 0.011469133, - -0.011233386, 4.4487952e-4, -0.017958125, -0.020363206, -0.02581282, - 0.013639492, -0.0076626926, -0.020145537, 0.0015993988, 0.001990326, - -0.004843034, -9.986508e-4, -0.007946609, -0.01868608, 0.009497719, - 0.024107667, 0.031471014, 0.010844233, 0.01784722, -0.011562605, - -0.009803487, 0.011932058, 0.028439611, -0.015561182, 0.015434124, - -0.008606161, 0.0017633623, 0.0023652224, -0.020987283, -0.019394, - -0.002063131, 2.7541842e-4, 0.0050274697, 0.0020766202, 0.011714948, - 0.002834422, 5.553638e-4, 0.0012628651, -0.021109823, 0.0079981275, - 0.016758582, 0.011577298, -0.007683643, -0.033169936, 0.00867339, - -0.014062733, -0.026347984, 0.015518594, -0.024711438, -0.03074457, - 0.009106031, -1.4371233e-4, 6.9833106e-5, -0.014476663, 0.0052349307, - -0.0020029799, 0.008034908, -0.009191611, 0.0038797816, 0.0076365117, - -0.01404215, -0.018196816, 0.004401253, 0.012176112, 0.003395404, - 0.0028243896, 0.0023335768, -0.0048243, -0.009427319, -0.0022512143, - 0.004450162, 8.5206074e-4, 0.018921724, -0.014893367, -0.009854608, - 0.06347631, -0.0032049017, 0.010277778, 0.0037699037, -0.0013556683, - -0.0039104735, 0.040693127, -0.017148994, -0.004751345, 0.009000779, - -0.00973849, 0.018293396, -0.012413835, -0.0018780465, -0.022048522, - 0.03206873, -0.0046694195, -0.005202177, -0.005621196, -0.0037810279, - 0.011597304, 0.015765073, -0.011064294, 0.011131507, 0.012387853, - 0.026785497, -0.0025086268, 0.02816121, -0.007598838, -0.003564883, - -0.011517751, -0.014375485, -8.8734535e-4, 0.01638194, 0.013893111, - -0.014527455, -0.010318174, 0.024105877, -0.015657699, -0.038781866, - -0.0059961933, 0.008052025, -0.0024663745, -0.013522354, -4.7458312e-4, - -0.01864873, 0.019941783, 0.0049744262, -0.005493529, -0.0028942672, - 0.023846399, 0.005144995, 0.004074889, -0.013283858, 0.013896169, - -0.003540939, -0.01705816, 0.0054706093, 0.034774844, -0.026377978, - -0.0057868636, 0.0025276758, -0.01056335, -0.0055002556, -0.021140775, - 0.0046424274, -0.008467022, 0.005611003, -0.023002584, -0.024360256, - 0.00786353, 0.008003601, -0.024512645, -0.0077948533, -0.001923503, - 0.036877137, -0.009080394, -0.036586005, -0.010114809, 0.006339555, - -0.010390969, -0.022395635, -0.009203362, 0.03460153, -0.014469142, - -0.016552998, 0.03620882, 0.022337576, -0.0042343936, -0.012028081, - -0.027628604, -0.019077284, -0.022809628, -3.908697e-4, -0.016208539, - 0.013320905, 0.0019985694, 0.0027117853, 0.025772, 0.014954421, - -0.022526015, -0.012387418, -9.83457e-4, -0.043613456, 0.007081014, - 0.008174541, 0.013258892, 0.02015399, 0.008357347, -0.005343798, - -0.0050490694, 0.02115589, -0.0021370312, 0.026280211, -0.009565338, - -0.007621298, -0.0032905543, 0.0022690257, 5.7649903e-4, -0.0086949505, - 0.01859777, 0.016374853, 0.009152419, 0.0012234629, -0.036122616, - -0.012325139, 0.021628616, 0.011020579, -0.026389461, -0.0064932504, - 0.016699739, -0.014414209, 0.022298796, 0.008590548, 0.026459357, - 0.01373047, 0.0052850996, 0.01448132, 0.022992656, -0.006909823, - 0.013454974, -0.0010242766, -8.6884946e-4, -0.022023678, -0.004922516, - -0.0011904874, -0.008003569, -0.0012280667, -0.009062918, 0.0017840037, - -0.018259263, 0.006280343, -0.0042385194, -0.016483, -9.2010375e-4, - -0.019721573, -4.661622e-4, 0.022118933, 0.0037389786, -0.0156586, - 0.0034354117, -0.0057907077, 0.012606675, -0.009496227, 0.018163491, - -0.002500786, -0.011284349, -0.0027112984, -0.0046764496, 0.004426034, - 0.021452548, -0.021414082, 0.012175783, 0.02125199, 0.013881779, - -0.0035829176, 0.0029541247, 0.021594947, 0.009150913, 0.0041471994, - -2.8854996e-4, -0.0023446616, -0.016430166, -0.0096178595, 0.012791163, - -0.0036522895, -0.007418512, -0.021014642, 0.02211698, 0.010283148, - -0.0048210137, -0.012553324, 0.0025547415, -0.024964456, 0.018371651, - -0.006716107, 0.0040190886, -0.0071885455, 0.004007902, 0.024276378, - -0.0018053442, 0.010787646, -0.0032905506, -0.012388921, -0.0035454647, - -0.017808959, -0.02188647, -0.023692608, 0.01939193, -0.01246296, - 0.0145480875, 0.014410012, 0.010010009, -1.9740059e-5, 0.0076208073, - 0.0015612808, -0.018469915, 0.018690284, -0.021215526, 0.031126818, - 0.021742042, 0.0075400737, -0.0127079915, 0.018524965, 0.024172215, - -0.0067002783, -0.006077706, 0.00852269, 0.047595415, -0.0044925096, - 7.785772e-4, 0.016547473, -0.0027552478, -0.028697738, -0.009469023, - 0.0086097345, -0.0084357215, -0.013637684, 0.014602559, 0.02306947, - 0.014152045, -0.024772437, -0.023853566, 0.010323825, 0.04768372, - 0.0041397433, -0.004212078, -0.010497351, 0.009733511, 0.010324854, - -0.012788833, -0.02074529, 0.04208707, -0.0054697143, -0.04058707, - -0.021737266, 0.0048637628, 0.00561774, -0.0056903632, 0.0067542754, - 0.0010560564, 4.4749372e-4, 0.0017263496, -0.014821729, 0.005756105, - -0.0056053, -0.0010509705, -0.005282138, 0.030746093, 0.017817166, - 0.007229532, -0.010691764, 0.01163893, -0.0065458557, -0.03093479, - -8.913795e-4, 0.005494144, 0.009392546, -0.0011755007, 0.006490813, - -0.02357071, 0.0077598062, 1.1311234e-4, -0.010133996, -0.0022716976, - -0.011818666, 0.008392257, 0.0045907022, -0.036625255, 0.024078894, - 0.025247278, -0.026898863, 0.0012533618, -0.016109439, -0.01630292, - -0.0046426244, -0.002369601, -0.01907174, -0.019019749, 0.033588916, - -0.034100603, -0.008372063, 0.011539949, 0.01725024, -0.014693685, - -0.004884314, 0.006131059, 0.001091557, 0.014793781, -0.025715707, - -0.008924251, 0.017454462, 0.008210216, 0.011649867, 0.008897945, - 0.02402535, 0.01807106, 0.016093219, -0.0070253797, -0.0045297523, - 4.3070258e-4, 0.014219644, -0.003455725, 0.01240469, 0.005470997, - 0.013962825, -0.021848915, -0.025363596, -0.003019535, -0.0012851668, - -0.0039725383, 0.010361835, 0.0075248326, 0.019735755, -0.007952441, - -0.001606162, -0.027691783, 0.016732702, 0.015865095, -4.023659e-4, - 0.019726913, -0.0054026833, -0.020482454, -0.012806089, -0.017772507, - 0.008051139, -0.01705681, 0.001547408, -0.013887404, 0.0051857755, - 1.3373574e-4, 0.011038434, -0.0023715529, -0.021988476, -0.025496947, - 0.017747425, -0.0063813985, -0.0049171825, -0.003375319, 0.006233805, - -0.0041749105, 0.0143217025, 8.880356e-4, -6.2711886e-4, 0.0023010927, - -0.010678133, -0.001909057, -0.006328853, 0.011088951, -0.008740417, - 0.008351706, -0.00812474, -0.012959903, -0.014729041, 0.0044054366, - -0.01432956, 0.023667013, -0.029505918, 0.007094071, 0.043464962, - -0.0036073155, -0.011034735, -0.024508892, -0.0024160629, -0.009514746, - 0.024666771, 0.021322006, -0.010246881, 0.031311035, 0.009462329, - -0.012043073, -0.009838986, -0.0037563245, 0.0032356493, 0.016235277, - -0.011349712, 0.0021632093, -0.032366775, -0.007755831, -0.005675148, - 0.016787585, -0.015589011, -7.6684053e-4, 0.024205543, -0.0043475535, - -0.0061680656, 0.006935559, 0.002161966, -0.010509362, -0.017406436, - 0.0027193702, 0.0029796, -0.008609132, -0.012469092, -0.009384918, - 0.0018756004, 0.0049268124, 6.5979955e-4, -0.0022289709, 0.009322628, - 0.005085006, 0.002486511, 0.018335527, -0.0062072603, -0.01155844, - 0.0068266173, -0.001929334, -0.024643412, -0.0067913076, -0.0052500945, - 0.020272847, 0.00870194, 0.0017904001, -0.015145014, 0.002439579, - -0.018157905, -0.013852257, 0.010486163, -0.018722, 0.01550782, - -0.0148742, -0.014508039, 0.009286553, -0.0094666835, 0.009672247, - 0.01783887, -0.022015095, -0.0045139575, 0.016532762, 0.0077911876, - 0.016110633, 0.002310368, 0.015686717, -0.021075562, 0.022041647, - -0.01979836, -0.011681213, -0.00857083, 0.0019088935, 0.008046963, - 0.0028770324, -0.006119, -0.008107017, -0.0077731065, -0.011636013, - 0.01052072, -0.0149914, -0.0068644686, -0.012371596, -0.004969543, - 0.020059122, 0.002255558, 0.009235809, 0.018376688, -8.161702e-4, - -0.020720113, -3.060316e-4, -0.0029875822, 0.01039846, 0.007257625, - -0.018152522, -0.029022727, 0.02090606, -0.025888586, -0.012481749, - 0.02416251, 0.015549503, 0.011563331, -0.013417763, -0.010853661, - -0.013604359, -0.002247243, 0.028505472, 0.013086202, 0.007305522, - 0.010061919, -0.0032751577, -0.034272823, -0.019698825, -0.002484362, - 0.016206237, -0.009377538, -0.017656054, 0.0015381735, -0.017811658, - 0.020108549, -0.0055167535, -0.0073185493, 0.011752249, 0.006145576, - 0.013125811, -6.5663416e-4, 0.032821793, 0.016725775, 0.021909056, - 7.317895e-4, 0.011906758, 0.020308949, -0.0029872204, 0.022721244, - 0.045081105, -4.121636e-4, -0.008700773, -0.02385817, -0.001982875, - -0.005621315, 0.014253327, 0.0055511137, 0.018937929, 0.015564809, - 0.0059663896, -0.0013562688, 0.0028619997, -0.0030158293, 0.03296741, - -0.023490548, 0.0010907915, 0.0058741225, -0.0098136, 0.0025749046, - -0.042527772, -0.0054359757, 0.028017756, -0.03753702, 0.018864606, - 0.0019112405, -0.00916285, 0.016477892, 0.008392741, -0.009329765, - -0.015491182, -0.017189145, -0.004098708, -0.008549834, -0.022399768, - -0.021134512, -0.001490221, -0.0024829393, 0.024211606, -0.014382104, - -0.0059668543, -0.016696261, 0.011454012, 0.004468313, 0.010117986, - -0.021534603, -0.021972373, 0.012637984, -3.811845e-4, -0.0070881476, - 0.018429007, 0.0018962455, -0.0042919265, 0.009344075, 0.04125764, - -0.016308822, 0.009843257, 0.027417382, 2.927198e-4, -0.0070494898, - 0.022708263, 0.0028566946, -0.004073886, -0.008452011, 0.020067941, - -0.010697881, -0.026222091, 0.012383815, 0.0042234384, 0.018047724, - -0.019651238, -0.0067797913, -0.006340526, 0.007156238, -0.005179761, - 0.010999685, 0.011815327, 0.018477038, 0.011926294, -0.024576753, - 0.003988499, -2.9564518e-4, -0.030168416, -0.013324401, -0.0037423598, - -0.01385375, -0.035750445, 0.009311624, 0.022912273, -0.0048480555, - -0.007740673, 1.21278545e-5, -0.01216527, 0.009474786, 0.011786277, - 0.012476924, 0.023864413, -7.884659e-6, 0.012186459, 0.0039328197, - -0.004341266, -0.010230796, 0.017161936, -0.009582754, -0.016869064, - 7.494282e-5, 0.003314404, 0.008284934, 0.005257809, -0.034445427, - -0.01036637, 0.04432703, 0.011962002, -0.014640495, -0.0023684371, - 0.014971404, 0.024758369, 0.024335865, 0.021211538, -0.0025931676, - 0.029732183, 0.019790635, -0.008079287, 0.030090593, 0.0011211006, - -0.022554671, -0.0026910333, 0.0057003787, 0.011358708, 9.5297134e-4, - -0.008985009, -0.010319794, -0.0054536546, -0.004818343, -0.013915768, - -0.0023784768, 0.0073023615, 0.002603649, -0.0030413002, 0.013183631, - 0.011093457, -0.0047128205, -0.009666236, 0.011854232, 0.01857213, - -0.015136039, 0.017776586, 0.0011254771, -0.020212369, -0.0060596233, - 0.003524223, -0.007856668, 0.005688057, -0.012617962, 0.0023845003, - -0.0044939923, -0.009158204, 0.010896947, 0.030394781, -0.0025701837, - -0.0023277635, 0.00482982, -0.02179753, 0.01688628, 0.004711821, - -0.012068421, 0.017047884, 0.012927588, 0.018773327, -0.011556124, - -0.021981768, -0.0049440586, 0.013596087, -0.017104236, 0.0073110266, - -0.022086993, 0.010764333, 0.021828769, -0.010752665, -0.0014964738, - 0.0014278217, 0.016813409, -0.0025235317, 0.0034771317, 0.008482588, - -0.022634538, 8.8404416e-4, 0.0046130046, -0.017490774, 5.2369095e-4, - 0.021303713, 0.018136524, -0.028541185, -0.022140598, 0.020631894, - 0.017116953, -0.009882313, -0.004506351, 0.038981296, 9.476268e-4, - -0.007842297, -0.008551911, 0.03322314, 0.010459146, 0.003751457, - 0.0013530384, -0.017189912, 0.018867, 0.0011740442, -0.02598604, - -0.018676497, 0.03375486, -0.0024018926, 0.030658172, -0.005467566, - 0.006609551, 0.019025348, 0.0023106446, -0.022468455, 0.01956796, - -0.0029592006, -0.0055563673, 0.0021597259, 0.0021656929, -0.022092199, - -0.009414621, -0.0017977388, -0.024771083, 0.010727379, -0.004676471, - 0.012490438, -0.0029557685, 0.0034969854, -0.014575221, 0.014969618, - 3.3250058e-4, 0.025696443, -0.0025482068, 0.027582452, -0.016503477, - 0.010054239, -2.1256962e-4, 0.005521322, 0.0049880594, -0.0059544267, - -0.0017357622, 0.02798535, 0.012861998, -0.007828407, 0.0035057848, - 0.022897692, 0.008756118, 0.004704224, 2.6378606e-4, -0.006236102, - 2.2111666e-4, -0.026961466, -0.02572242, 0.017570445, 0.005211414, - 0.019035148, -0.008939751, -0.0141355945, 0.011954796, 0.00506726, - 0.00853589, -0.008083846, 0.0019510722, -0.022367194, 0.025019582, - 0.002797307, -0.0030027174, 0.0054098056, -0.003717619, 0.029929439, - 0.031712383, -0.01573735, -0.0040932326, -0.023862889, 0.023689851, - -0.005935106, 0.027206765, -0.0031323251, -0.0024986255, 0.011668585, - -0.005531598, 0.014800863, -2.6145228e-4, 0.001557942, 0.0044526597, - -0.0060526677, -0.038344428, 0.0016252295, -0.010946384, -0.0058499495, - -0.004234118, 0.0054380475, -0.0025780175, -0.001595378, -0.006971857, - -0.0059830653, -0.030177997, -0.011815568, 0.035371765, -0.0089953365, - 0.0077996226, -0.01875049, -0.0047058347, -0.01188291, -0.0064324606, - 4.921629e-4, 0.0076294024, -0.0050399993, -0.017152611, -0.0065030484, - 0.016690863, -0.031934585, -0.026979115, -3.4291792e-4, -0.02874234, - 0.0097684255, 0.030528167, -0.022972554, -0.0038479134, 0.026508102, - -0.0151984, -0.011446947, -0.012934717, 0.016201165, -0.015880309, - -0.0031338912, -0.009796055, 0.013435548, 0.0031896075, 0.015685393, - 0.0028032733, -0.014109616, 0.015073254, 0.030329658, 0.016478537, - 0.005727294, -0.007855765, 0.0052214805, -0.0063313027, -0.0062638717, - 0.019676885, 3.360652e-4, 0.021599049, 0.0028892194, 0.006897924, - -0.0056844023, -0.012364723, 0.020656632, 0.02798966, -0.0067504896, - -0.014495227, 0.01782984, -0.01507388, 0.02924272, -0.0019047846, - 0.0021113867, -0.003611669, -6.581079e-5, 0.054604568, 0.00888496, - -0.019556152, 0.022891995, 0.0063165524, -0.0077635567, 0.02441553, - 0.0043654577, 0.017492212, 0.009883703, -0.014463712, -0.008616562, - -0.010477463, -0.0028501307, 0.020362118, -0.02683037, -0.007082561, - -0.0029091835, -0.007050858, 0.031466823, -0.021473516, -0.0028366058, - -0.020756993, -0.008077048, -0.0025154147, -0.022543894, -0.0048746415, - -0.0077514625, -0.005661967, 0.013243952, -0.0016835209, -0.010178779, - -0.0066868337, 0.0067874454, -0.0072244336, -1.1982666e-4, 0.023391256, - 0.011320211, -0.0023621742, -0.00736775, 0.017838823, -0.003748686, - -0.030910907, 0.004138751, -0.0023839094, 9.865384e-4, 0.0033052247, - 0.012046101, 0.0011920547, -0.014547268, 0.025125708, -0.014030257, - -5.892771e-4, -0.009358177, -0.03610483, -0.012635576, 0.0059340154, - 0.011341348, -3.2198557e-4, -0.013624206, 0.0039443057, 0.026987575, - -0.020240424, 0.013494037, -0.0392804, 0.0016119146, 3.0008284e-4, - -3.988579e-4, -0.022522716, -0.01530731, -0.0120183695, -0.010021508, - -0.007502219, 0.0048725335, -0.00526034, 0.0045028655, -0.0016217988, - 0.006008618, -0.012403863, 0.025821107, 0.016762115, -0.007850526, - -0.0068460875, 0.018410333, -0.008377439, -0.0032209014, 0.012153904, - 0.0063411295, -0.0070571043, 4.908811e-4, 0.025872445, -0.04103696, - 0.0074476763, -0.043838557, -0.02731038, -0.0013970126, 0.008980822, - 0.008401115, 0.0016403445, 7.394054e-4, 0.019916525, 0.0135057075, - -0.010087577, 0.030599648, 0.0018431053, -0.013729934, -0.015350286, - 0.0070604347, 0.027674949, -0.015564071, 0.02191374, -0.0074022627, - 0.0027795595, -6.334908e-4, 0.0042507355, -0.009334203, 0.022014465, - 0.014935414, -0.024123728, -0.013475113, -0.006671613, -0.02477852, - -0.029173736, 0.022283891, 0.020175401, -0.009554587, 0.021114, - 0.008032693, 0.020011796, -0.008360381, -0.014844328, 0.006969615, - 0.006000609, -0.03191203, -0.029299092, 7.815713e-5, -0.008444709, - 0.022386007, -0.008185667, 0.012641288, -0.0050634854, -0.0027529998, - -0.010207551, 0.009451525, 0.023447754, -0.009361108, 0.026614115, - 0.01032908, 0.025470378, 0.0034194705, 0.00838294, -0.021902658, - 0.013536431, -0.018383704, -0.008855795, 0.01945584, 0.04200073, - 0.0014960906, 0.0014579034, -0.014195933, 0.0014614153, -0.007678981, - -0.0013230661, 0.002824277, -0.008500771, -0.0055189673, 0.01757422, - -0.01922563, -0.0048662256, 0.0030748579, -0.0012099844, 0.00957427, - -0.0073443423, -0.0044531687, -0.008750835, 0.004254264, -0.0017178046, - -0.036631852, 0.008512703, -0.0132756, -0.007962551, -0.01507471, - 0.010750222, 0.013334544, -0.004797707, 0.013126285, -0.002789921, - -0.012057742, 1.337855e-5, -0.025335275, 0.018283019, -0.0033358627, - 0.00403781, 0.02204625, -0.02906076, 0.01980056, -0.037462395, - -0.011101447, 9.885132e-4, 0.014444729, 0.022169981, 0.014983088, - -0.02602493, -0.0037565622, 0.0068976856, 0.013206555, 0.005948593, - -0.00793468, 0.011964448, 0.008035498, -0.018067116, -0.0061549973, - -0.009995145, -0.017848648, 0.011455856, 0.0026304468, -0.010071746, - -0.014797449, -0.008600303, 0.010707715, 0.026728291, 0.02149769, - 0.0027795525, 0.0062009436, 0.015933588, -0.016239898, -0.00807611, - 0.008843768, -0.00951303, 0.0033708515, -0.044163335, 0.023015194, - -0.0050612222, 0.024135502, -0.022201935, 0.019732527, -0.014133667, - -0.011218942, 0.011970025, -0.026448436, -0.013023629, -6.894193e-5, - -0.0012713545, -0.005428756, 0.0051696477, -0.02563414, -0.0032057539, - -0.0032772007, -0.0069636838, 0.010028881, -0.010798338, -0.011878249, - 0.02060673, -0.007658238, -0.0019442755, 0.008407996, 0.001156848, - -0.021022912, -0.027404036, 0.013691362, -0.019765744, 0.030143118, - 0.013109986, 0.011489984, 3.1051395e-4, 0.03137408, 0.011529902, - 5.40666e-4, -0.001183217, -0.017591603, 0.025281249, -0.005744448, - 0.01795234, 0.04033715, 0.017121984, 0.0046966258, 0.00858902, - 0.013550265, 0.0059915166, -0.010406591, 0.0021975508, 0.018632637, - 0.011143616, 0.016381435, -0.015533101, -0.011013765, 0.015774865, - 0.0034159955, -0.009267033, -0.004778217, -0.017734788, 0.009617812, - -0.005142659, 0.0018447044, -0.0032463954, 0.0057403264, 0.005745816, - 0.006689638, 0.0137253795, 0.017170928, 0.024367778, -0.02954328, - -0.0056569227, 0.013985554, 0.020119078, 1.5455481e-4, 0.0072096325, - -0.013854823, 0.028510137, -0.0032372542, -0.008559858, 0.005463066, - 0.024904707, -0.0051029655, 0.012066301, 0.0067645297, -0.0072379946, - 0.015783258, -0.017262219, -0.03227451, 0.0020703806, 0.004716726, - 0.0094435075, -0.0047787605, 0.014507889, -0.017693736, 0.0073389173, - 0.01514959, 6.042262e-4, 0.02718421, -0.021726402, -0.013289508, - 0.0048440504, -0.014153667, -0.026614731, 0.03694674, 0.00820916, - -0.01152844, -0.011250007, 7.2155206e-4, 0.00946263, -3.86745e-4, - 0.008128249, 0.005447227, 0.014223418, 0.0019998336, 0.016885452, - -0.02630072, -0.0017781875, -0.005651262, 0.0407996, 0.008236325, - 0.015711535, 0.034774773, -0.024351513, -0.006949945, -0.0037012042, - 0.032277312, -0.045471415, -0.026800428, 0.011822584, 0.019624328, - -0.0010762173, 0.01594868, 0.014996583, -0.026099255, -0.016344475, - 0.02059057, 0.009940499, -0.026045267, 0.012802096, 0.01290292, - -0.015900422, -0.019805564, 0.012361355, -0.0073839296, -0.009631577, - 0.004448631, 0.005335652, -0.032686446, 0.008904191, 0.02405498, - -0.009846923, -0.015816174, 0.02522704, 0.0123318, 0.012627198, - 0.0137283765, -0.015156697, -0.019605681, 0.01322804, 0.027737258, - 0.0010564008, -0.039092127, 0.024697121, 7.858873e-4, 0.016266942, - 0.004341406, -2.8551236e-4, -0.010014109, 0.007322507, -0.004333396, - 0.001926185, -0.017868264, 0.007916251, 0.017246496, 0.0063276337, - -0.0043464038, -0.008281803, 0.017302575, -0.003536327, -0.024027765, - 0.0060952567, 0.035369124, 0.014119888, -0.012678893, -0.0029183456, - -0.014430789, -0.010808827, 0.0015344487, -0.0128918225, -0.006566162, - 0.013024895, -0.0017092935, 0.023576263, 0.02014578, -0.0033598323, - 0.0028344144, 0.027059102, 0.020787906, 0.0053240582, -0.012077912, - 0.022517156, -0.016173227, -0.0032032998, -0.015209378, -0.0048006484, - -0.025258962, 0.002625213, -0.012699671, 0.026307626, 0.003930138, - -0.018565483, -0.01517251, -0.0031820848, 0.0052214754, 0.005802043, - -0.029604997, -0.012278361, -0.009633644, -0.025368417, -0.028310655, - -0.024735034, 0.01646415, -0.0050260974, 0.02448589, 0.009646274, - 0.005928057, 0.016421823, 0.030568328, -0.014448805, -0.0017924578, - 0.019410143, -0.0012344079, -0.0070340335, 0.00998856, -0.0020592168, - 0.015430354, -0.012140297, -0.042828217, 0.030703843, -0.0029496017, - 0.019504953, 0.0062373197, 0.010816055, -0.002664595, -0.025816483, - -0.025642505, 0.028556801, -0.019290302, -0.006479993, -9.2954165e-4, - -0.013086847, 0.0019352011, 0.0034722309, 0.01480958, -0.015158153, - -0.0023246303, -0.015873805, 1.706599e-4, -0.011867228, 0.017997691, - -0.019678954, 0.01705009, -0.013305996, 0.0126121985, 0.012870066, - 0.0016015228, 0.011814317, 0.034325823, -0.006109298, -0.007273286, - -0.002983835, -0.0048250067, 0.010901581, 0.005420309, -0.0073972126, - -0.010782229, 0.010438559, 0.017723292, 0.006015777, 0.0040208334, - -0.007930385, -0.0034134174, 0.0010216398, -0.03195507, -0.0038512084, - -0.003639206, 0.012973564, -0.011764826, -0.0012542679, -0.003520214, - -0.0021544115, 0.008286851, -0.019627968, -0.0055965744, 0.018850785, - 0.014023104, -0.009992527, -8.1303524e-4, -0.004085783, -0.01740567, - 0.008709764, -0.011936283, 6.097093e-4, -0.017573606, 0.003729076, - 0.0016403694, 0.0033710448, -0.0027035167, -0.0032351043, -0.002390328, - -0.018353239, 0.026826547, -0.03303097, -0.010586601, 0.0038948313, - 0.006415864, 4.7108453e-5, 0.03372497, -1.09419365e-4, -0.008714585, - 0.029784074, -0.0036658447, -0.018644162, -0.01637697, 0.021102253, - 1.6787903e-4, 0.006471073, 0.012458308, -6.7207275e-4, 0.008384599, - -0.0012279921, 0.0032955038, -0.02612574, -0.022431673, 0.0023320538, - 0.019410219, 0.004813211, -0.016402964, -0.029894209, -0.01731772, - 0.010988738, -0.014378843, 0.006038574, -0.013180697, -0.0037456062, - 0.0028248415, -0.0051824846, 0.0036916235, -0.021569395, 0.03337681, - -0.0046674227, 0.005714661, 0.0019932718, 0.014253946, -0.011583611, - 0.01523379, -0.016754199, 0.008777014, -0.016384743, -0.0014595225, - 0.002582765, 0.01959599, 0.008441354, 0.012732557, 0.011668905, - -0.017331371, 0.02162436, 0.008922852, 0.016763734, 0.019676296, - 0.016212976, 0.016084535, -0.016028775, -0.001987493, 0.0011061163, - 0.0069462038, -0.0033731514, 0.006365816, -3.270123e-4, -0.038343575, - 0.01525747, -2.813451e-4, -0.008830842, 0.02640872, -0.011972332, - -0.016983315, 0.003297506, 0.0013401781, -0.0037601776, -0.024873333, - -0.022797067, -0.018904205, -0.010454191, 0.031869937, 0.014673832, - 0.012889258, 0.006206653, 0.031827565, -0.017575447, -0.015448996, - -0.0010368157, -4.5618162e-4, 8.675421e-4, 0.01138913, -0.005014131, - -0.01079671, -0.0026128478, 0.0073450706, -0.0025907785, 0.004759472, - 0.0023301118, 0.0036054577, 0.007382497, 0.02853691, -0.005350538, - -0.0066719684, 0.010658154, 0.013135729, 0.038996562, -0.020896893, - -0.018349081, 0.025467956, -0.0031174973, 4.2309595e-4, -0.029731454, - 0.0023804503, -0.03639965, -0.019345716, -0.0062963637, -0.025920834, - 0.0012899531, 0.016949529, -0.021660263, -0.013111507, -0.0057077687, - -0.013689443, 0.0044392888, 0.0056851725, 0.01848712, -0.027069643, - 6.1575946e-4, -0.009312135, -0.013442818, -0.008041182, -0.022562053, - 3.6707075e-4, 0.040241383, 0.021364763, -0.013173221, 0.01878933, - 0.0043749404, 0.007292833, 0.0119698085, -0.0033313157, -0.009419446, - -0.018399028, 0.0023047165, 0.0062965006, -0.024207255, -0.01321144, - 0.027904985, -0.021991866, -0.003373435, -0.0041810963, 0.02430155, - 0.0045266184, -0.0021906942, -0.020181132, 0.014274389, 0.0017134323, - 0.014241821, -0.011924399, 0.0049766228, -7.951324e-4, -0.01963122, - 0.010181588, -0.0041543953, 0.014129727, 0.007340801, -0.0020014336, - 0.014535587, 0.0075597446, -0.04787297 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.009997773, 0.008665571, 0.0341257, -0.027696924, 0.056029983, - -0.008109927, -0.008241639, -0.016122414, -0.044739805, -0.007867904, - 0.053265654, -0.03751508, -0.013335436, 0.0052811815, -0.0552958, - -0.04096591, -0.033468667, -0.051573366, 0.012401697, 0.012084539, - 0.012758082, 1.28885e-4, 0.008310958, -0.0076462203, 0.03648694, - 0.0064712125, -0.014919218, 0.032775223, 0.058013957, 0.063025214, - 0.030259253, 0.009374616, 0.03776587, 0.0067076664, 0.022286521, - -0.05188744, 0.022616329, 0.06587707, 0.043592118, 0.0233874, - -0.036554277, 0.014913754, -0.020040527, -0.009056951, -0.019325452, - -0.027781231, -0.0027482037, -0.008137047, 0.04116119, 0.010332112, - 0.03910283, -0.009502082, -0.041743994, -0.0031493402, -0.036010247, - 0.01352164, -0.029218964, -0.024678433, 0.034177266, 0.019545237, - -0.0813915, 0.014591492, 0.0021373814, -0.038580686, 0.020426488, - 0.007975953, 0.0037291679, 0.018870996, -0.049811117, -0.016947005, - -0.04043439, -0.018888993, -0.019832918, 0.036901463, -0.005621482, - 0.011033898, -0.05692921, 0.056185853, -0.033217374, 0.010318445, - -0.06557857, -0.0469016, 0.028592812, -0.028145501, -0.008450521, - -0.017857904, -0.02091401, -0.026596779, 0.02545894, -0.01632987, - -0.0108957365, 0.007919362, -0.046362612, 0.017664878, -0.0033617187, - -0.020726353, 0.02139094, -0.05764669, -8.88043e-7, -0.01990802, - -0.052039146, 0.03708459, 0.020742945, -0.041908808, -0.013847266, - 0.058223736, 0.045680225, -0.033140246, -0.018504666, -0.015555243, - 0.0014816696, -0.01601673, 0.0034765052, -0.019405037, -0.015230855, - 0.021123592, 0.03135215, -0.0041183294, -0.042741746, 0.025981009, - -0.022538573, -0.0024966022, -0.009950021, -0.0204654, 0.011855541, - -0.0022062953, 0.010852717, -0.0058814846, -0.006477758, -0.01893961, - -0.031765737, -0.05004867, -0.019250914, -0.012345117, 0.050984267, - -0.038101863, -1.140596e-4, -0.019960511, -0.03269427, 0.07495815, - -0.043645628, -0.042373177, 0.0310389, 0.0032341883, -0.018373262, - -0.00772071, 0.042856187, -0.026675358, -0.025471373, 0.00887784, - -0.028140003, 0.008908927, -0.04071242, -0.02451359, -0.06920518, - 0.027648568, -0.04141108, -0.00595412, -0.0012225928, 0.0059086317, - 0.028741308, -0.04967856, -0.025944907, 0.014561235, 0.0042578974, - 0.043734893, -0.03695794, -0.015386814, -0.032584373, -0.022340352, - -0.025938844, -0.009210422, -0.012949137, -0.0070200567, 0.03315772, - -0.02671074, -8.56409e-4, -0.060305655, 0.031404108, 0.06272204, - -0.026020486, -0.040790044, 0.0198147, 0.013490157, -0.0027844906, - 0.041037556, -0.003634851, 0.007972902, -0.038275503, -0.022522638, - -0.025067573, -0.0814076, 0.078709066, 0.042429417, -0.021916004, - -0.008728632, -0.0014154377, 0.01456259, 0.018432966, -0.012399348, - -0.038870726, -0.009793771, 0.022867719, -0.07175201, -0.049824245, - -0.008234678, 0.003662323, -0.034326218, -0.034171607, -0.01457584, - 0.014704917, -0.025281003, -0.06787019, 0.066127226, 0.029099133, - -0.020500798, -0.0065385518, -0.006230799, 0.0047809407, 0.033190954, - -0.011574857, 0.031133147, -0.03680659, 0.005477463, 0.05643676, - -0.012789895, 5.412946e-4, -0.00507855, 0.007933952, -0.010177083, - -0.03126843, -0.009000451, 0.014165129, -0.018416105, -0.033418182, - -0.022771548, -0.028925993, -0.010540962, -0.025887398, -0.03325008, - 0.011304547, 0.012285143, 0.025611902, 0.0027853134, 0.009065214, - -0.018949771, 0.014442494, 0.0137777515, 0.032011922, -0.02036402, - -0.015647171, 0.07808473, 0.0036989343, 0.05142561, -0.028616548, - -0.039533295, 0.01017107, 0.062278014, -0.00847354, -0.019693952, - 0.0051664147, 0.027679607, 0.04881996, 0.0043168855, 0.028776927, - 0.051299363, 0.02314071, -0.042210065, 0.051926184, -0.03244362, - -0.007269635, 0.026272891, 0.03881487, 0.024756562, -0.030074166, - 0.0122108655, 0.0436075, 0.054593984, 0.016376005, -0.009549401, - 0.027072964, -0.013161194, -0.0805151, -0.0015831621, -0.009737709, - -0.012492873, 0.009027688, 0.01101901, -0.0012858183, -0.009460302, - 0.011840006, 0.008439365, -0.025272, -0.006446895, -0.02340778, - -0.02793643, -0.0068567614, 0.017948264, -0.035561435, -0.0028046484, - 0.030727735, 0.0024388446, 0.024291785, 0.028747622, -0.045774993, - -0.0132137975, 0.038148504, 0.0073393933, -2.9415314e-4, -0.0430867, - 0.027987204, -2.1214453e-4, 0.024207205, 0.019145159, 0.0056981132, - 0.041205194, -0.01761667, -0.014234267, 0.016752139, -0.015756402, - 0.015511284, -0.0018668256, 0.040337533, -0.010398085, 0.009988928, - 0.0035893992, -0.01459542, -0.047631383, -0.018276116, 0.05210557, - -0.0323985, 0.039855443, -0.015676973, -0.007293774, -0.0036465968, - -0.036205497, 0.047995165, 0.037871126, -0.06547789, 0.03965466, - 0.041953355, -0.0968828, 0.046934336, -0.014054703, 0.09887885, - 0.012383173, -0.026664153, 0.011761939, -0.009018271, 0.025420174, - -0.051485736, 0.05562841, -0.028740093, 0.02267044, 0.0034486123, - 0.016067056, -0.0119644925, -0.026053956, -0.037738938, -0.03750193, - 0.039063606, 0.0017586944, 0.02998833, 0.0013700196, -0.021586271, - 0.009300568, -0.030227827, 0.017372934, -0.01632679, -0.03765197, - 0.021707859, 0.0058484604, -0.023324257, 0.022994015, -0.001594864, - -0.031496894, 0.048214808, 0.013964449, -0.007866344, 0.0065527186, - -0.0034185003, 0.021521376, -0.030625379, 0.015322101, -0.008901432, - 0.01893215, 0.009738267, -0.004162186, 0.078075096, 0.033487592, - -0.03450111, 0.007062001, -0.036177393, -0.02418133, -0.047054265, - -0.020471666, -0.028394831, -0.022071641, 0.007826409, -0.025994414, - 0.027906425, 0.024940567, -0.018453626, -0.0373547, 0.045115933, - 0.048607655, -0.028579716, -0.052278694, -0.052753963, -0.01649714, - -0.0022985109, -0.029135566, 0.0073395087, 0.016802223, 0.004805862, - -0.040183414, 0.0053861854, -0.03892671, -0.024850104, -0.021399695, - 0.015965667, 4.0034187e-4, 0.030917004, -0.052141722, 0.03575249, - -0.03511984, -0.012325703, -0.019500345, 0.0163291, 0.045945276, - 0.0067620906, -0.008613315, 0.0012321769, 0.030381368, -0.0014309305, - -0.01737464, 0.06507732, -0.013938926, -0.015846565, 0.021785583, - 0.0013129527, -0.014031604, 0.034268204, -0.040385455, 0.018900162, - -0.0033456387, 3.2962966e-4, -0.0041517564, 0.024460346, 0.050758656, - -0.016698644, -0.027784482, 0.006264514, -0.01505965, 0.011177053, - -0.050587147, -0.01544618, -0.00336535, 0.016515061, 0.012076779, - 0.023309022, -0.017275566, -0.02806195, -0.0029055076, 0.042654324, - -0.046589684, 0.027961139, -0.017206382, 0.016446957, -0.03077913, - 0.0082125645, 5.7659205e-4, 0.010691546, -0.055597447, -0.016024223, - 0.021990238, 0.024577169, -0.0013938837, -0.021509366, 0.023150982, - -0.016732188, -0.0303355, 0.014359588, -0.0023216347, 0.016885303, - 0.07582884, -0.051344257, -0.012767361, 0.0070102415, -3.4986952e-4, - 0.032405946, 0.03410197, 0.011087728, 0.015318337, 0.008362755, - 0.010595883, 0.024362389, -0.037567694, 0.039390765, -0.019490547, - 0.0010713944, -0.0071615702, 0.017922804, -0.008689595, -0.0071279616, - -0.033101656, -0.06130313, -0.054513194, 0.03284791, -0.004486529, - 0.010058676, 0.030817319, 0.061475854, 4.8712027e-4, -8.7323866e-4, - -0.030629208, -0.004208881, -0.05889618, 0.03148637, 0.021655636, - -0.064503334, -0.012372113, -0.054000877, -0.029387549, -0.020175423, - -0.07221719, 0.0022683076, -0.0041676876, 0.005251967, -0.025412187, - 0.011898678, 0.010587913, -0.038641743, 0.015862025, 0.033780236, - -0.007289636, 0.004412264, -0.016942794, 0.013010764, -0.015042827, - 0.050001968, -0.06834568, -0.05630838, -0.0070741856, 0.004228833, - 0.05605473, 0.017966885, -0.0069618504, -0.014173338, -0.043882333, - -0.007607898, 0.017190786, -0.030404374, 0.00899671, 0.022635115, - 0.03418568, 0.019470803, -0.030647365, 0.0777076, -0.02196094, - 0.02906235, 0.014226341, -0.038180806, -0.018053858, 0.10798308, - -0.02793241, 0.008558282, 2.2654775e-4, -3.9502466e-4, 0.037880745, - 0.0282736, 0.031308286, 0.012104981, 0.008131753, -0.013934725, - 0.0015426758, -0.075790636, 0.025031151, -0.027789794, 0.025523413, - -0.054009203, -0.03658478, 0.004512133, 0.011135803, 0.03982084, - -0.03439069, 0.088382244, 0.08654754, -6.205476e-4, 0.020843908, - -0.074251145, -0.011536104, 0.017192887, -3.9882772e-4, 0.056013778, - -0.058792077, -0.013830186, -0.020993391, -0.009445558, 0.025080275, - 0.037237037, 0.008044484, -0.08152703, -0.048317324, 0.040809937, - 0.017199827, -0.07696807, -0.025745552, -0.036602765, -0.005481112, - -0.0041484423, -0.02267561, 0.052746996, -0.019182606, 0.005198506, - 0.0016255442, -0.030876363, -6.2776846e-5, 0.03643441, -0.028247982, - 0.03998674, 0.07847725, -0.0037024447, 0.09017197, -0.006771655, - -0.008402562, 0.043780398, -0.019022012, -0.015552338, 0.03726619, - 0.014341061, 0.03359082, 0.008982671, -0.014873728, -0.0278084, - 0.02410102, -0.07717107, 0.03486381, 0.022834625, -0.021706957, - 0.05550103, -0.0010526315, 0.010213573, 0.039120797, -0.007977423, - 0.0059178732, 0.018684391, 0.018600592, -0.030120308, 0.02872744, - -0.022719713, -0.03170126, 0.02036627, -0.052814424, 0.074414656, - -0.0035564683, 0.001868622, 0.012699677, -0.023391219, 0.02483216, - -0.021300564, 0.041165065, 0.023204925, -0.0067774723, -0.0041194786, - -0.02173727, 0.025651384, -0.025790306, 0.034872245, -0.02795471, - -0.012631719, 0.07565381, -0.011165233, 0.018185886, -0.019839253, - 0.02905838, -0.027157433, -0.010715256, 0.03250549, -0.027831627, - 0.04358235, 0.026030254, 0.017004594, 0.024780203, -0.016995436, - -0.001217127, 0.0077652875, -0.024936667, 0.022615766, 0.011742791, - 0.03643299, 0.0018605668, -0.0013018652, 0.030185463, 0.005136292, - -0.038796254, -0.035435267, -0.015547348, 0.015638446, 0.032855656, - 0.03232522, -0.01956397, 0.0013467247, 0.03924938, 0.014566277, - -0.023325576, 0.014578438, 0.026223673, -0.019809982, 0.060501732, - -0.027383178, 0.012134645, 0.03570118, 0.02119736, -0.031614415, - -0.029328072, 0.022012817, -0.0072175246, -0.03121169, -0.01054663, - 0.0055687684, 0.029556584, -0.032275196, 0.01515158, -0.032415554, - 0.023143584, -0.016190575, -0.056066927, -0.035465524, 0.009381703, - 0.018140709, 0.042708322, 4.705761e-4, 0.08689688, 3.0192392e-4, - 0.030840544, 0.037524007, -0.0566964, -0.024561716, -7.2033843e-4, - 0.06123454, -0.022790933, 0.028613906, -0.027411338, 0.0034293341, - -0.0077016824, -0.009566768, -0.0042790794, 0.0143101765, -0.050194696, - 0.010952537, 0.042565003, -0.013012938, -0.02671453, -0.033012085, - 0.036300313, -0.0014705873, -0.010223065, 0.004428306, 0.06375015, - 0.020945901, -0.048052683, 0.06934397, -0.017894218, -0.049948215, - -0.04980603, 0.02798981, -0.01903323, 0.025843827, 0.010250837, - -0.026864039, 0.015804445, -0.0055440217, 0.030208288, -0.030115912, - -0.020939277, -0.03282295, 0.001200725, 0.057822444, -0.018776806, - -0.008822269, 0.04136932, 0.048854873, 0.0065291338, -0.003049685, - 0.05261874, -0.019502323, -0.024066351, -0.009133635, 0.0043917834, - -0.060153607, -0.024303688, 0.0028776024, -0.043881454, -0.036556322, - -0.0053882203, 0.08345791, -0.0024572436, -0.05156612, 0.027150856, - 0.021679599, 0.046594318, -0.013836945, 0.034847688, -0.10249379, - 0.026600795, 0.073759615, 0.027163776, 0.03422796, 0.012358321, - 0.009291519, -0.025410725, 0.01513352, -0.034077898, -0.021485172, - -0.008055258, -0.050323512, -0.022246813, -0.0121991085, 0.004992936, - -0.006971994, 0.054507174, -0.020099835, 0.026122356, 0.012722295, - 0.027455537, -0.015556865, -0.0024142198, -0.042091805, -0.019813584, - -0.0047635585, -0.033257984, 0.024706464, -0.003866916, -0.027984938, - -0.0077718147, -0.016152138, -0.007626633, 0.07392019, -0.018877707, - -0.035167076, -0.007850316, -0.042925324, 0.03960257, -0.037349273, - -0.022051059, -0.008523049, -0.0015175393, -0.054913964, -0.02242435, - 0.003938725, -0.014922888, -0.02003033, 0.016202979, -0.04959297, - 0.012022012, 0.013909536, 0.013594645, -0.0121025, -0.0056267898, - 0.011655732, 0.030761804, 0.047461987, -0.0069852746, 0.00562901, - -0.057487868, 0.0049645556, -9.906311e-4, -0.0055767586, -0.010984263, - -0.028550785, -0.0046403026, -0.009234713, 0.0142675275, 0.034409378, - 0.02815635, 0.03182615, 0.02279377, 0.022504218, -0.02782672, - -0.030111935, -0.007867756, -0.016926544, 0.018387869, 0.05138581, - -0.014395092, -0.014860004, -0.018003374, -0.013330117, 0.03013971, - -0.0065415483, -4.9004995e-4, 0.015134511, 0.034017693, 0.07095178, - -0.057561044, 0.016814383, -0.024048623, 0.022742985, 0.0039628246, - 0.027672965, -0.010720968, 0.03858436, 0.019653952, 0.025988005, - 0.03233329, -0.023201091, 0.04336674, -0.031743586, -0.01704542, - -0.06874546, -0.008214154, 0.04218573, -0.0057172067, 0.028425675, - 0.019569116, 0.0010928736, 0.028782327, -0.0103045935, 0.0015001029, - -0.0018429519, 0.065700725, 0.021943757, -0.0044050645, -0.08063821, - 0.00636464, 0.019312566, -0.027938446, 0.0024957831, -0.0034420595, - -0.024776796, 0.037186813, 0.001470591, 0.004907769, -0.026923772, - -0.017300298, 0.005753255, -0.02725648, 0.03364314, -0.05198046, - -0.0192556, -0.0034494367, -0.006724359, -0.019327305, 0.044971872, - 0.041100282, 0.02141211, -0.04732884, -0.007861062, 0.046682067, - -0.025540706, -0.0089123035, 0.00416405, 0.023150967, -0.020007363, - 0.01684245, 0.028149782, 0.0042745024, -0.053165466, 0.03961554, - -0.020711584, 0.026319236, 0.07542724, 0.06988897, -0.031959057, - -0.018048588, 0.039394163, -0.010333375, -0.023178972, -0.018716598, - 0.012247149, -0.027344862, 0.032940812, -0.00659603, 0.04317411, - 0.034900613, 0.002755522, -0.030263245, 0.0041962927, -0.028380344, - 0.006636229, -0.019343836, 0.015193267, -0.012090386, -0.044780467, - 0.051871613, 0.029196542, 0.030452698, 0.01112951, 0.0085861, - 0.0093945805, 0.001768423, -0.057311952, 0.026857425, -9.2351425e-4, - -0.05066469, 0.012792963, -0.014261547, -0.03556861, 0.013112751, - -0.019664284, -0.01753165, -0.014803448, -0.018740622, -0.008191588, - -0.009068179, -0.01807426, 0.04296516, 0.0055920985, -0.017445788, - 0.02486454, 0.009536093, 0.027880583, 0.033970553, -0.014690352, - 0.031901464, 0.018875064, 8.4783934e-4, -0.019378867, -0.05168105, - -0.026266204, -0.046626385, -0.048821714, 0.020042574 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.02703398, + 0.0035171164, + 0.027941639, + 0.011243355, + 0.015165663, + -0.004994072, + -0.03326445, + -0.003300169, + -0.032960676, + -0.017586736, + 0.016250908, + -0.0035479977, + 0.017106943, + 0.0060757645, + 0.0055202334, + -0.014727577, + -4.3322847E-4, + -0.0017063043, + -0.018482426, + -0.021352516, + -0.0052506216, + -0.006706937, + 0.011968328, + -0.0027915046, + 0.004431534, + 0.0072886795, + -0.0012914907, + -0.03028223, + 0.018230466, + -0.017067457, + 0.0014690382, + 0.007808537, + -0.008097217, + 0.0072179153, + 0.0031570096, + -0.028449574, + 0.01625583, + 0.008027569, + 0.010629175, + 0.007234171, + -0.010332886, + 0.002553234, + -0.009724682, + 0.010002543, + -0.0082240235, + 0.011089728, + 0.0054894965, + 0.02315473, + 0.013303239, + -0.008756216, + -0.02733111, + 0.010814617, + 0.008356585, + -0.007953594, + 0.001008906, + -0.0012915016, + 0.010550287, + 0.0017672916, + 0.019760836, + -0.01477302, + -0.005378239, + -0.0063957395, + -0.012708167, + 0.019055417, + 0.006836115, + 0.009563315, + -0.027574988, + 0.0016572633, + -0.006794302, + -0.014986794, + 0.015572539, + 0.0015092671, + 0.0055950577, + 0.006808342, + -0.008648449, + 0.0058481866, + 0.0022527531, + 0.028032022, + -0.02579446, + 0.0011220784, + 0.032352827, + -0.005590154, + 0.018734382, + -0.021907141, + -0.012668263, + 0.007854275, + -0.0043001226, + 0.0078340825, + 0.00205366, + -0.035497017, + -0.011595684, + -0.022026557, + -0.01646325, + 0.002213126, + 0.003102691, + -0.01093331, + -0.011758498, + 0.007870422, + -0.006624394, + 0.020070188, + -0.007553438, + -0.006150658, + 0.007324015, + -0.002269346, + -0.005549769, + -0.009310275, + -0.022164525, + 0.021283472, + -0.013670254, + -0.0108804945, + 0.019480562, + 0.0035353499, + 0.023824094, + -0.007599972, + 0.012473215, + -0.023632642, + -0.0125714475, + -0.028622352, + 0.0035762843, + 0.004181425, + 0.044911526, + 0.024709608, + -0.016420515, + 0.023811897, + 0.014106418, + -0.0030727733, + -0.0154834995, + 0.0010502308, + 0.014310019, + 0.018439254, + -0.023022125, + -0.026073456, + 0.0058005564, + 0.031907525, + -0.020230675, + 0.012665442, + 3.7607332E-4, + -0.017607588, + 0.012914094, + 0.016961806, + 0.0023081682, + 0.0056454386, + 0.01469458, + 0.02859865, + -0.017713906, + -0.007910612, + -0.017624436, + 0.0023222242, + 0.0032765763, + 0.021633452, + 0.015311203, + 0.016811557, + 0.006469823, + 0.00795717, + -0.002202729, + 0.012076854, + -0.01012868, + -0.010646849, + -0.011048866, + -0.013470375, + 5.280547E-5, + 0.0047606817, + -0.008963586, + -0.007694042, + -0.0102199055, + -0.0059123123, + 0.023119735, + -0.02553264, + 0.019135142, + -4.3858174E-4, + -1.2425674E-4, + -0.027400613, + 0.01346321, + -0.02000124, + -0.021750398, + 0.010836962, + -0.0070296894, + 0.0011003293, + 0.0070173624, + 0.0049374592, + -0.015848774, + -0.0018199856, + -0.006046379, + -0.0016743013, + 0.0055224802, + 0.019512326, + -0.01196144, + 0.0044853315, + -0.0070535294, + 0.015053677, + 0.029791206, + -0.010069999, + -0.006086252, + -0.012410218, + -4.0052418E-4, + 0.015861742, + -0.002451094, + 0.023683587, + 0.004818337, + -0.008642015, + -0.011859531, + -0.011160111, + 0.004581441, + 0.0075720563, + -0.033984754, + -0.009222391, + -0.035526413, + -0.02738667, + 0.005970255, + 0.038271572, + 0.019271597, + 0.032115076, + -0.0038871549, + 0.002006912, + 0.0012195233, + -0.0070905588, + 0.011326827, + 0.00876712, + -0.013739879, + 9.302351E-4, + -0.0057155755, + -0.027332975, + 0.010331786, + -0.014963598, + 0.008590785, + 0.0012535076, + 0.022108683, + -0.00989001, + -0.013438676, + 0.0024827833, + -0.00514302, + -0.01451368, + -0.0068585626, + 0.017281534, + -0.012158769, + 0.006485881, + -0.0024500666, + 0.01745247, + -0.0037421107, + 0.011863924, + 0.020534135, + 0.005707469, + -0.038954556, + 4.5283412E-4, + 2.6216285E-4, + -0.02882739, + 0.024489256, + 0.016981138, + 0.027472774, + 0.011969496, + 0.005022247, + -0.013386552, + -0.013592606, + -0.04302847, + -0.011547957, + -0.0050081233, + -0.009920502, + 0.02105603, + -0.0037083144, + -0.001219785, + -0.008465985, + -0.016487224, + 3.662067E-5, + -0.007117117, + 0.006757688, + -0.006548904, + 0.0087966295, + -0.004858931, + 0.0037609157, + -0.015809488, + -0.02115275, + -0.019656396, + 0.021080846, + 0.019686002, + 0.010517191, + 0.026800495, + -0.006704337, + 0.0361143, + 0.01194278, + -0.021371033, + 0.038343232, + -0.0151840085, + -5.5342127E-4, + -5.336253E-4, + 0.012516083, + 0.023114147, + -0.0041210037, + 0.04271612, + 0.0043136575, + -0.018956274, + 0.006703249, + -0.0015667266, + -0.0063607516, + -0.011158483, + -0.011417868, + 0.016324406, + -4.3414652E-4, + -0.008092992, + -0.011015653, + 0.0157294, + 0.0070854905, + 0.008917967, + -0.0016303363, + -0.018842682, + -0.010649366, + 0.0010716157, + -0.0010166225, + 0.0031450677, + 0.027760984, + 0.021121964, + 0.021233236, + -0.008025621, + 0.03959168, + -0.00452143, + -0.009458378, + -0.012038147, + 0.021084614, + 0.007935018, + 0.020153051, + -0.014537041, + -0.0050801183, + -0.01490222, + -0.017748257, + -0.019194026, + 0.024288507, + -0.014887671, + -0.017793458, + 0.03257905, + 0.0080924025, + 0.0038954224, + -0.010425544, + 0.0069081853, + -0.0125102615, + 0.009092852, + -1.7062598E-4, + -0.013841551, + -0.031770468, + 0.03909317, + 0.006094379, + -0.010365766, + -7.9342746E-4, + -0.035942186, + 0.02413328, + -3.317359E-4, + -0.004849222, + 0.003674935, + -0.009507184, + -0.010853011, + -0.016745832, + 0.022177264, + 0.013851059, + 0.05396497, + 0.02433174, + -0.008150862, + -0.023413561, + 0.006692953, + -0.048359897, + 0.024199946, + 0.022847805, + 0.006345166, + -0.012647305, + 0.014184824, + -0.031248666, + -0.0022563182, + 0.0037893641, + -0.007456053, + -0.012095199, + -0.015261539, + -0.005653119, + -0.010692144, + -0.01722422, + -0.009484987, + 0.010457872, + -0.020917594, + -0.008131558, + -0.031059036, + 0.0045060217, + 0.0105615165, + 0.0155249955, + 0.014303084, + 0.016381713, + 0.03902231, + -0.011825696, + 0.0041215997, + -0.0035974567, + 0.007825467, + -0.0071164123, + -0.014181033, + -0.01304442, + 0.024314221, + -5.7235884E-4, + 0.0075830244, + -0.022068286, + 0.008191573, + -0.004536794, + -0.022698473, + 0.0090617975, + -3.862475E-4, + 0.014327403, + -0.0280128, + -0.004733601, + 0.0023055933, + 0.016571715, + -0.008178088, + -0.006020018, + 0.014801274, + -0.027015166, + 0.0162694, + 0.0023403864, + -0.021785446, + -0.0029176571, + 0.013667962, + 0.021950802, + 0.025291434, + -0.021463439, + 0.0037195752, + 0.017084291, + 0.015237947, + 0.017664857, + 0.009994185, + -0.014093901, + -0.004893837, + -0.0039970926, + -0.007899688, + -0.008483324, + 0.005492705, + 0.014642447, + -0.0051550353, + -0.0014814851, + 0.009325857, + -0.018787364, + 0.007504785, + -0.009192166, + -0.002479004, + -0.013332747, + 0.011025614, + 0.018852027, + -0.008076189, + -0.0018173669, + 0.027472338, + 0.011016997, + 0.0030406786, + -0.010831685, + -0.015442067, + 0.012870292, + -0.018809058, + -0.007213692, + 0.012104235, + -0.026387105, + -0.007369697, + 0.03412359, + -0.0336116, + -1.8773848E-4, + 0.028317437, + 0.017833699, + 0.0043502953, + 0.012966039, + 0.009844197, + -0.002791019, + -0.018093996, + -0.004432756, + 0.022498121, + -0.021342954, + -0.011992527, + 0.007233595, + -0.0015398045, + -0.0114501715, + -0.010364731, + 0.0058359443, + -0.015683789, + -0.0036475344, + 0.0030059854, + -0.010672698, + 0.005065691, + -0.0142410705, + 0.0015163494, + 0.013723222, + 0.049824122, + 0.006828964, + 0.003316445, + 0.0013343513, + 0.02063835, + -9.476875E-4, + 0.0015626547, + 0.01654114, + 0.03107283, + 0.0010649302, + 2.8430266E-4, + 0.023736518, + -0.0061093154, + 0.004319783, + 0.024311032, + 0.006025969, + -0.013601346, + 0.0085499985, + -0.016277717, + 0.025624558, + 0.008529722, + 2.6881017E-4, + -0.017192796, + 0.020762593, + -0.018054243, + -1.3272974E-4, + -0.0103045115, + 0.007325751, + 0.016979825, + 0.014267895, + -0.016403947, + 0.01703359, + -0.013085905, + -0.0041124653, + -0.0063903024, + -0.04147921, + 0.023221375, + -0.010148844, + -0.018130684, + -0.022757899, + -0.014941625, + 0.00450721, + -0.026436249, + 0.027107835, + -0.005220961, + -0.020245891, + -0.0065659536, + 0.0074511687, + 0.009063916, + -0.005995972, + -0.0041092853, + 0.0066789538, + -0.0014573009, + -0.01959982, + -0.041724976, + 0.010975126, + 0.02209018, + 0.009091634, + -0.009546151, + 0.015310595, + 0.03153259, + -0.008195997, + -0.014859907, + -0.017838648, + 0.008735258, + -0.021903552, + 0.023050774, + 0.0010047321, + -0.024068706, + 0.020624299, + -0.0028333487, + 0.0041894657, + -0.0028281352, + 0.0039477036, + -0.011330958, + -0.027214061, + -0.012887473, + 0.010223564, + -0.0042456435, + 0.0037149522, + 0.01047189, + 0.008602424, + 0.0044828067, + -0.0069204103, + 0.013282638, + 0.005471527, + 0.013203388, + -0.02478467, + 0.011315662, + -0.008218097, + -0.016729439, + 0.02357517, + 0.026263233, + -0.019216737, + 0.0076356637, + 3.5423593E-4, + 0.00923408, + 0.0032821556, + -0.021142537, + 0.006438745, + 0.021038277, + -5.1755324E-4, + -0.0030662704, + -0.0020478764, + -0.02167138, + -0.023773083, + 0.0029583613, + -0.0012096419, + -0.001969225, + 0.0028751264, + 0.016886942, + -0.00537254, + 0.0074881883, + -0.012087672, + 0.0040161526, + 0.0011111512, + 0.013464765, + 0.019360121, + -0.013514135, + 0.008426074, + 0.008954984, + -0.03329352, + 0.005553787, + 0.035566624, + -0.012887981, + 0.031194167, + -0.013040394, + 0.021468963, + -0.028638752, + -0.0035470373, + -0.019300874, + -0.018483723, + 0.009453546, + 0.0024187109, + -0.032232095, + 0.022304134, + -0.005048157, + -0.008147298, + 0.033433825, + 0.016286923, + -0.017193167, + 0.018049419, + 0.007155639, + -0.006170277, + -0.027603213, + -8.131613E-4, + -7.6752726E-4, + -0.030747706, + 0.02751389, + 0.018606842, + 0.010200653, + -0.0075479606, + -0.032954946, + 0.0167153, + -0.0043620532, + 0.012043237, + 0.0024764296, + 0.011373403, + 0.014966803, + 0.028283942, + -0.006999301, + -0.037044227, + 0.005577311, + 0.020369751, + -0.0021316237, + -1.2273666E-4, + -0.030733926, + 0.009264919, + 0.002470543, + -0.017434102, + 0.009189301, + -0.0038547511, + -0.006424889, + -0.0058176806, + -0.018410947, + -0.011187131, + 0.005424944, + 0.0039354097, + 0.013044445, + -0.025400976, + 0.01730331, + 0.005431608, + 0.013522195, + -7.49772E-4, + -0.003023044, + -0.022108933, + -0.021802697, + 0.009479451, + 0.025988827, + 0.025758525, + 0.010761687, + -0.004879908, + 0.02125868, + 0.0014943216, + -0.013421814, + 0.0011080817, + -0.0039789304, + -0.012049141, + 0.024112202, + -0.00315061, + -0.007781234, + -0.016948644, + -0.011881206, + 0.025474263, + -0.013885056, + 0.007910674, + 0.002701127, + -0.005469358, + 0.0011537441, + -0.0033797089, + -0.009257006, + 0.0022249077, + 0.0067364974, + -0.017414348, + -0.014562336, + 0.018620037, + 0.03318416, + 0.002436258, + 0.007292519, + 0.0014009699, + 0.020676047, + 0.02445282, + 0.0044623413, + -0.01534259, + -8.418276E-5, + 0.009616952, + 0.002393808, + 0.019536015, + 0.007880012, + 0.013963392, + 0.009667918, + 0.0058796206, + -0.0033192183, + -0.015968183, + -0.017303385, + -0.009890724, + -0.0075704125, + 0.0031768912, + 0.0016828248, + 0.009672742, + -0.0063972375, + -2.0833018E-4, + -0.005019479, + -0.015796984, + -0.020085363, + -0.011183185, + 0.017736305, + 0.011293709, + 0.0058211912, + 0.011287583, + 0.01959794, + -0.0027434241, + -0.0028198867, + 0.025162468, + -0.0018887094, + 0.01719185, + -0.010831203, + -0.005503651, + 0.008647924, + 0.019138338, + -0.0076532615, + -0.00568136, + -0.0048448043, + -0.0197839, + -0.009878012, + 0.01894846, + -0.0093015665, + -0.008231264, + 0.009522108, + -0.009392098, + 0.031216828, + 0.006278942, + 0.020832712, + -0.007442814, + -0.011496395, + 0.0074875597, + 0.009852946, + 0.005933729, + 0.033147834, + -0.0036012544, + 0.024228305, + -0.01346888, + -0.012475821, + -0.009074177, + -0.00451059, + 0.0027153518, + 5.693051E-4, + -0.007246372, + -0.0020389617, + -0.0065271864, + 0.00517545, + 0.016635666, + 0.022008868, + -0.007372172, + 0.0059029525, + -8.626008E-5, + 0.014914032, + -0.0044308547, + 0.023038292, + -0.014953835, + -0.0040203375, + -0.0075366017, + 0.010646806, + 0.0038615537, + 0.01982803, + 0.018313346, + 0.0093763545, + 0.007560756, + 0.011802008, + -0.015504978, + 0.009945077, + 0.0064628245, + 0.019337026, + -0.013289298, + 0.01473643, + 0.027562834, + -0.012094317, + 0.0020393836, + -0.007009489, + 0.0020773446, + 0.011426297, + -0.008247932, + 0.0046473695, + 0.015105859, + -0.004426024, + 0.02172332, + -0.005450713, + -0.0024628765, + 0.027513137, + 0.0036293266, + -0.016124142, + 0.02212659, + -0.03147142, + -0.0022336724, + -0.010339472, + 0.013489583, + -0.00984566, + 0.03329752, + -0.012868433, + 0.019707697, + -0.018880397, + 0.005422166, + -0.0060407757, + 0.011209084, + 0.00486702, + 0.001021141, + 0.031162411, + -0.006291196, + -0.013261158, + 0.023741504, + -0.004788646, + -0.0080382405, + 0.009372518, + 0.011815288, + 0.026002683, + 0.01511232, + -0.0035744305, + 0.0022733791, + -0.02213135, + -0.024092495, + 0.02330342, + -0.024014428, + -0.025579685, + -0.012104042, + 0.02318936, + -0.0068027545, + 0.015889952, + -0.008144825, + 0.0055359476, + -0.016035287, + -0.009608966, + 0.0138280215, + 0.0024217837, + -0.0030162868, + -0.01496114, + 0.020860076, + 0.001229283, + 0.021897597, + 0.014435406, + -0.0049423976, + -2.6911136E-4, + -0.013579755, + -0.013457707, + 0.010599947, + 0.0071141855, + -0.018268164, + 0.017663572, + 0.008224133, + -0.017575141, + -0.018135421, + -0.011007289, + -0.022530388, + -0.003917726, + -0.004980952, + 0.02280641, + 0.0041625844, + 0.03775866, + 0.024584161, + -0.00369335, + -0.019195747, + 0.017942049, + 0.010529341, + 0.009793744, + -0.008215479, + -0.020898923, + 0.0123389745, + -0.0069523463, + 0.012371695, + -0.0028207519, + -0.012505448, + -0.014681529, + 0.018395811, + 0.0060477015, + 0.010021091, + 0.018372605, + -0.020540405, + 0.009829244, + -0.010816279, + -0.035627436, + 0.0061672977, + -0.0077797556, + -0.001656287, + -0.0020320518, + -0.01769417, + -0.0096960915, + -0.0031190454, + 0.0067450684, + 0.0038961782, + 0.023898745, + -0.011619634, + -0.006861425, + -0.0029189636, + -0.0052852277, + -0.04036282, + 0.02054736, + -0.008648384, + 0.025849178, + 0.0047716824, + -0.0112883225, + -0.014356665, + 0.00624105, + -0.023688782, + -0.00960778, + -0.009284085, + 0.034701444, + 0.0051880167, + 0.00488348, + 0.022619125, + 0.0027824263, + -0.036837757, + 0.0025020437, + 0.014331783, + 0.009057761, + 0.014307629, + 0.012518487, + -0.017078467, + -0.030371891, + 0.023822905, + -0.03332162, + -0.042561803, + 0.0015153392, + -0.023265773, + 0.017490646, + 0.0069958135, + 0.0041498803, + -0.0030644916, + -0.014520659, + -0.0038682234, + 0.006563438, + 0.009678552, + -0.0086870035, + -0.027498975, + -0.006519168, + 0.03382675, + -0.002898743, + 7.083409E-4, + 0.029160831, + 0.008573928, + -0.014095913, + 0.013024166, + -0.0052434118, + -0.00530572, + -0.013126461, + -0.020005895, + -0.0073762257, + -0.0023255816, + 0.004252536, + 0.006653616, + -0.012558991, + -0.010888729, + -0.012542925, + 0.006449051, + -0.0016738315, + -0.017152185, + 0.008936825, + -0.0018646242, + 0.0016353498, + -1.25442175E-5, + 0.0054810694, + 0.011859005, + -0.02058677, + 0.020710781, + 0.009025737, + -0.02281462, + -0.04962019, + 0.0052006473, + -0.002917439, + 0.007080616, + -0.013206026, + -0.011895762, + 0.009137636, + -0.007122255, + -0.015728503, + 0.0016338439, + -0.012022589, + 0.0025648086, + -0.017724518, + 0.0067884265, + 0.019034887, + 0.005644412, + 0.017121816, + -0.02954317, + -0.004732892, + -0.011021444, + 0.0053477, + 2.971092E-4, + -0.012501874, + 0.015280605, + 0.010956105, + 0.01539171, + 0.006384625, + -0.022436343, + 0.009348953, + 0.010923977, + -0.025024224, + -0.014319853, + -0.005466892, + 0.002129012, + 0.013644185, + -0.009799001, + 0.003851884, + 0.011766453, + -0.009433107, + -0.010324725, + -0.023889804, + 0.0026062257, + -0.032688998, + -0.0017845788, + -0.011070817, + 0.010630494, + -0.019479712, + -0.014808173, + -5.0585956E-4, + -0.003451151, + 0.009982622, + -9.713829E-5, + -0.016697003, + 0.0043076333, + -0.005446555, + 0.01382857, + -0.010615021, + 0.0035427026, + 0.016828313, + 0.009068354, + 0.019415228, + 0.010550792, + -0.039068293, + 0.01049691, + 0.004675547, + 0.013311854, + 0.004751458, + 0.016522309, + -0.014986795, + -4.0128626E-4, + -0.0017280623, + 0.0068025766, + -0.0029468408, + 0.02050899, + 0.0074756523, + -0.012905703, + 0.011651847, + -0.00473391, + -0.010837255, + -0.008698372, + 0.019891415, + -0.01736427, + -0.020321194, + -0.024148686, + -0.042536747, + 0.009186508, + -0.0061138743, + 0.010090812, + -0.007153069, + -0.018375631, + 0.010311193, + -8.3841564E-4, + -0.005803417, + 0.010822232, + 0.008153405, + 0.004462065, + -0.009598366, + 0.01355241, + 0.007889074, + -0.04703116, + 0.0065081017, + -0.021337524, + 0.007382408, + -2.9647784E-4, + 0.005022223, + -0.021879124, + -0.012747437, + -0.012535685, + 0.013217231, + 0.0018136674, + 0.020651437, + 0.010206871, + 0.011477377, + -0.008155083, + -0.015559919, + 0.0020326255, + 0.010209338, + -0.023022892, + -0.0019111998, + -0.011417577, + 0.0022059928, + 0.0015717245, + 0.009736138, + 0.0032755462, + -0.01196236, + -0.0029791815, + 0.003829503, + -0.00921777, + 6.758027E-4, + -0.015953254, + -0.020670073, + -0.00292176, + 0.015874727, + 0.004973652, + 0.023015445, + 0.020100432, + -0.014870288, + -0.014614807, + -6.409066E-4, + 0.0074295104, + 0.022912867, + -0.018741433, + -0.008699705, + -0.0030247266, + -0.020916121, + 0.01124896, + 3.8597046E-4, + 0.018627102, + 0.030816983, + -0.009251981, + -0.0030311951, + 0.014289771, + 0.005458189, + -0.0035438181, + -0.019317286, + 0.00269899, + -0.017757695, + -0.016990751, + 0.033016205, + -0.0142924115, + -0.0035361343, + -0.0077858698, + 0.029372951, + 0.02333178, + 0.0245506, + -0.026103724, + -0.012336615, + -0.015018033, + -0.012951011, + -0.018051323, + 0.013578882, + 0.0021332772, + -0.0040375055, + 9.844657E-4, + -0.01777678, + 0.011041219, + 0.009145237, + -0.011458284, + -0.034200784, + 0.016019994, + -0.015438105, + -0.021538084, + 4.3116126E-4, + -0.008580064, + 0.004515704, + 0.015836628, + 0.036053576, + -0.0088226795, + -0.0063763917, + -0.01727599, + -0.018318925, + -0.0047450936, + 1.443705E-5, + -0.042360935, + -0.0037879094, + 0.007518832, + -0.0020907756, + 0.031896554, + 0.02269293, + 0.0080694845, + 0.008462783, + 0.0026406462, + -0.0220119, + -0.007938091, + -0.012206655, + -0.0056642727, + 0.0069899117, + -0.010378669, + -0.015543796, + -0.0022735288, + 0.015853807, + -0.029118402, + -0.005041243, + -0.013075148, + 0.0025106778, + 0.0088231675, + -0.0020896997, + 0.038123395, + 0.015106718, + -0.013571117, + 0.0018190242, + -0.039250918, + -0.008415465, + -0.01349302, + 0.006465899, + -0.0133217145, + -0.031554144, + 0.03503253, + -0.012386524, + -0.01754339, + -0.008301761, + -0.006482181, + -0.0028983692, + -0.024779605, + 0.024846524, + -0.015962765, + 0.005023092, + 0.007437672, + -0.0011036724, + 0.020365309, + -0.010279166, + -0.021504842, + -0.0027722442, + -0.011301007, + 0.0057773883, + -0.011345174, + -0.04318697, + 0.01575839, + 0.013002422, + 0.04133177, + -0.009328388, + 0.006464443, + 0.0083618825, + 0.006650481, + -0.029440645, + 0.014694683, + -0.0018032216, + -0.012645702, + 0.003928721, + -0.011432393, + 6.6235306E-4, + -0.010938524, + 0.011860902, + 0.017518638, + 0.012089297, + -0.019992938, + 0.005118228, + 0.001485813, + -0.0070738588, + 0.001211323, + -0.011400522, + -0.0078003085, + -0.033708062, + -0.0013280003, + 0.025057653, + -0.0145179555, + -0.018147752, + -0.006575926, + 0.009636588, + 0.006051761, + 0.01108043, + -4.521126E-4, + -0.009740117, + 0.0038560017, + -0.007131374, + -0.012030758, + -0.0021395732, + -0.0024384144, + -0.0055083404, + -0.009842123, + -0.005401683, + -0.016899677, + -0.013258066, + 0.0014315986, + 0.009017128, + -0.033186335, + 0.0069800126, + 0.0023662099, + -0.013428184, + 0.0070166984, + 0.012429578, + -0.010013005, + -0.010145382, + -0.028048962, + -0.01659945, + -0.002148198, + 0.030737499, + 0.004591365, + -0.007501297, + 0.0069614532, + -8.652553E-4, + -0.027438479, + 0.03260144, + 0.0090821255, + -0.015840942, + -0.024523025, + -0.021935202, + -0.020119647, + -0.0013802688, + 0.005367302, + 0.011314986, + 9.4676344E-4, + 0.012419917, + 0.003996414, + -0.004090159, + 0.0063188467, + 0.011816404, + -0.031066317, + 0.019034551, + 0.0035256878, + -0.020836327, + -0.017799381, + 0.0061389734, + -0.0071567222, + -0.013547092, + -0.03787452, + 0.012800768, + -0.0042398996, + -0.0043263976, + -0.0035243263, + 0.0045973724, + 0.0077586565, + 0.0015491934, + -0.001592598, + 0.00553656, + 0.012654654, + 0.014543874, + -0.0062475717, + 0.0028158275, + 0.010540468, + 0.025855199, + -0.009867522, + 0.011556606, + -0.0047843014, + -0.016394537, + 0.0065713464, + 0.012705639, + 0.0053163217, + -0.009332266, + -0.0057192226, + 0.03380463, + 0.011220139, + 0.045638096, + -0.019902105, + -0.020376872, + -0.03668902, + 0.0026139782, + 0.03310224, + -0.008037017, + -0.0073659737, + -0.008686429, + -0.03158487, + -0.005012853, + -0.0049066087, + 0.033475596, + 0.029732242, + -0.0097192535, + -0.02057807, + 0.017955609, + -0.0044207973, + -0.0026152486, + 3.9022337E-4, + -0.0029667246, + 0.0013290208, + -0.009159621, + -0.004332428, + -0.0034530887, + -0.0031895773, + 0.0014839792, + 0.0010983215, + 0.0050473902, + 0.0017401526, + -0.010574761, + -0.02544138, + 0.019327212, + -0.028459333, + 0.016079772, + 0.024611143, + -0.013183164, + -0.011467872, + 0.014907582, + 0.009543272, + 0.0073091867, + -0.0039824834, + -0.029132081, + -0.013509174, + 0.014182525, + -0.004519409, + 0.0033179603, + -0.025534045, + -0.0031985152, + 1.9106636E-4, + -0.015993895, + -0.008037983, + -0.026022173, + 0.014427355, + -0.015676478, + 0.01136106, + 0.018515255, + 0.004908581, + 0.022275526, + -0.009299798, + -0.024592714, + -0.0025731712, + 7.340181E-4, + -0.0039051503, + 0.011403035, + -0.01599787, + 0.0054887435, + -0.011304367, + -2.2646363E-4, + 0.004096341, + -0.02285473, + -0.03522194, + -0.00365333, + 0.0037307069, + -0.02737253, + -0.0069702477, + 0.0053901975, + -0.0037474583, + -0.0070549366, + -0.021153698, + 0.005635689, + -0.0022577231, + -0.004909185, + -0.014110905, + 0.0129390545, + 0.008577479, + -0.007392239, + -0.026655985, + 0.0016162284, + 0.01396543, + 0.016756406, + 0.026591387, + -0.011322619, + 0.011729643, + -0.025027998, + 0.00486826, + 4.4334298E-5, + 9.2451053E-4, + -0.016011994, + -0.020667477, + -7.961276E-4, + -0.009940706, + 0.0013513651, + -0.004173381, + 0.016572282, + 0.0023523478, + -0.014192067, + 0.0200153, + 0.006250717, + 0.0027579577, + -0.0053809774, + 0.011392514, + 0.0040249475, + 0.0021690219, + 0.0013616994, + -0.013851317, + 0.0026216514, + -0.015820298, + 0.0025413267, + 1.1175968E-4, + 0.004464458, + 0.015370581, + 0.016847705, + 0.00880314, + -0.0039775935, + 0.026450068, + -0.00846269, + -0.0061904327, + 0.013291629, + -0.0049217334, + 0.011210863, + -0.015170657, + -0.024759484, + 0.016615743, + -0.004926438, + 0.019086432, + 0.015843192, + -0.007349378, + -0.017947445, + 0.019891666, + -0.0047540176, + 0.031017823, + -0.0065072896, + 0.005828812, + 0.0012523817, + -9.417648E-4, + 0.028229943, + -0.021123895, + 0.014593488, + -0.0034265784, + 0.019838644, + 0.003462927, + -0.0038893183, + -0.007067243, + -0.015326308, + 0.016656602, + 0.0016274678, + 0.026522603, + 0.006891943, + -6.2599825E-4, + -0.022287121, + 0.0077056587, + -1.1372878E-4, + -0.009693195, + -0.01772265, + -0.0018301072, + -0.013074483, + 0.0123796705, + 0.007015418, + -0.009316612, + -0.019549856, + -0.008942309, + -0.009668193, + 0.027400708, + 0.0044251564, + -0.004044168, + -0.010056102, + 0.033910144, + -0.01963891, + 0.010486698, + -0.0024175863, + 0.013518708, + 0.016256405, + -0.008019324, + -0.0094912695, + -0.016146554, + 0.0057944283, + 0.0032633888, + 0.0063123875, + -0.0066583664, + 0.012855389, + -0.0018057987, + -0.006329933, + -0.051476758, + 0.025098154, + -1.5836913E-4, + 0.0018635446, + -0.0126098255, + 0.009581469, + 0.016852027, + 0.009678948, + -0.00664373, + 0.0132524455, + -0.018196585, + 0.03410649, + 0.0047127455, + 4.1575992E-4, + -0.012833246, + -0.012251496, + -0.0020676295, + 0.014448677, + 0.023342362, + -0.0028702056, + -0.007451109, + -0.0037855564, + 0.006405698, + 0.010095657, + -0.016526189, + -0.016709743, + -0.003948988, + 0.01018094, + 0.0025400107, + 0.004745845, + -0.006437842, + -0.013166405, + 0.0011887207, + 0.0012015587, + -0.0037547557, + -0.013720243, + -0.034382634, + -0.0013325118, + 0.006378562, + -0.015550752, + -0.0016566585, + -0.017492814, + -0.0033949788, + -0.0054729288, + 0.002011498, + -0.034724973, + 0.014841034, + -0.035356045, + -0.01910929, + -0.0039440976, + -0.0069445265, + -0.005896873, + -0.008975002, + 0.011009789, + -0.023164107, + 0.032050025, + -0.0031068847, + 0.013199928, + 0.0016757958, + -0.037058413, + -0.0056984765, + 0.02355457, + 0.008176572, + -0.0073993853, + -0.0062792953, + -0.0035705613, + 0.007703399, + 0.005151388, + 5.091593E-4, + 0.037159216, + 0.041511055, + 0.0027615472, + 0.010030854, + 0.005590338, + -0.0033422804, + -0.024752159, + 0.0035358185, + 9.8431716E-5, + 0.02329496, + -0.03098554, + 0.0066891434, + -0.022964118, + 0.02415389, + -0.022693727, + -0.015503786, + -0.012892569, + 0.033184923, + -0.012542398, + 0.009148136, + -0.013948731, + -0.031986956, + -0.009087557, + -0.030273013, + 0.008543643, + 0.002655783, + 0.033011664, + -0.026190806, + -1.6903135E-4, + 8.3083304E-4, + 0.005232257, + -0.0037973046, + 0.0042618914, + 0.0063511985, + -0.0052332683, + 0.013318472, + 0.021130258, + 0.0061040223, + -0.0015405304, + -0.025299162, + -0.01366103, + 0.0041330825, + -0.002639661, + 0.002899339, + -0.018045109, + 0.01602259, + -0.015750052, + 0.006327028, + 0.0027480668, + -0.0014081266, + -0.009480338, + 0.0020661994, + -0.003259893, + 0.01311093, + -0.01719301, + 0.020761201, + 0.023927152, + 0.009956861, + 0.019967193, + 0.0059325304, + 0.008638904, + -0.012114078, + 0.0033504947, + -0.015503772, + -0.029157354, + 0.044855952, + -0.0050152396, + 0.022863558, + -0.01807274, + -0.015379081, + -5.2845094E-4, + 0.014268754, + -0.0153451795, + 0.012657679, + 0.007925954, + -0.021020109, + 0.017091334, + -0.0111938985, + -0.009742559, + 0.037434746, + 0.002060526, + -0.001559223, + -0.0032735022, + 0.024212543, + -0.009861384, + 0.028389227, + 0.006275489, + 0.0063877976, + 0.00989298, + -0.022212448, + -0.004240258, + 0.012621788, + -0.0049129035, + -0.0070032883, + -8.1396945E-5, + -0.005475162, + 0.01643248, + 0.021989577, + 0.004724329, + -0.003935363, + 0.005707692, + 0.004226086, + -0.0109978905, + 0.013542435, + 0.018405216, + -0.032753237, + -0.011531303, + -1.4512725E-4, + 0.016119532, + 0.009446206, + -0.02372357, + 0.005102595, + -0.012888766, + -0.008748435, + 0.0019947616, + -0.01824269, + 0.0140900165, + -0.016769398, + -0.023068093, + -0.02412933, + -0.0013322548, + 0.013661802, + 0.020149214, + -0.013870221, + -0.005936302, + -0.0018500277, + 0.010805734, + 0.0031162319, + 0.001114929, + -0.005612017, + 0.031092556, + 0.015370436, + -0.004949971, + 0.01264072, + -0.0063540763, + -0.010960006, + 0.009615654, + -0.029527245, + 0.0048291357, + -0.009426989, + 0.004261791, + -0.0010123848, + 6.7195523E-4, + 0.027708894, + 0.019105555, + 0.020754177, + -0.0010856871, + -0.01224437, + 2.9652065E-4, + 0.022080943, + -0.013917777, + -0.013955744, + -0.012841562, + 0.023211997, + -0.011809227, + 0.004863886, + -0.027327267, + -0.024134422, + 0.0047570164, + -0.0060106195, + -0.011952299, + 0.0034811262, + -0.007898035, + 0.0016064204, + -0.01454328, + 9.102624E-4, + -0.01142986, + 0.0040461095, + -0.014370301, + 0.0106244525, + -0.0019843217, + 0.009593268, + 0.029207487, + -0.01392464, + 0.010610248, + 9.560617E-4, + -0.013209613, + -0.01154185, + -0.01593811, + 0.011922511, + -0.022452392, + -0.0036170615, + 0.021746634, + -0.012702654, + 0.005013728, + 0.020512914, + -0.0038964292, + 0.0013118384, + -0.012735989, + 0.014602257, + -0.02301297, + 0.01723795, + 0.017021224, + 0.0020814843, + -0.022979893, + 0.0026820616, + -0.019595288, + 0.016066162, + -0.032919694, + -0.0075723445, + -0.0046542254, + -0.011421329, + 0.0020464996, + -8.7352836E-4, + -0.015708331, + -0.0045757503, + -0.023700837, + 0.024234805, + 0.018260477, + -0.023515996, + -0.0056234184, + 0.00693418, + 0.012481935, + 0.0118050575, + -0.008727492, + -0.005173899, + 0.006787792, + -0.011608403, + -0.0066088666, + -0.019772938, + -0.006141793, + -0.0034736856, + -0.004591723, + 0.004728558, + 0.0013688732, + 0.015713051, + -0.013068066, + 0.009893747, + -0.021169255, + -0.00978566, + -0.0054963636, + 0.0014249455, + -0.0038545108, + 0.0022136462, + -0.003723126, + 0.017763099, + 0.009391017, + 0.0058101704, + -0.0059796814, + 0.013071859, + 0.034988772, + 0.024787588, + 0.014861126, + 0.021427764, + -0.013790937, + -0.0051139006, + -0.029986987, + -0.030201435, + 0.020982796, + 0.026483746, + -0.0065632984, + 0.008513139, + 0.027728932, + -0.0066929623, + -0.0025289801, + -0.006377231, + -0.004548959, + -0.029439589, + 0.01316667, + -0.00996533, + 0.016248852, + 0.026703048, + 3.1571407E-4, + 0.01753037, + 0.038630668, + -0.011958567, + 0.010413189, + -6.623483E-4, + -0.0025961574, + -0.02052018, + -0.015359482, + -0.0091753, + -0.009554757, + -9.503938E-5, + 0.0034669852, + -0.014712102, + -0.015555418, + 0.023153868, + -0.012368919, + 0.019255633, + 0.011865552, + 0.0028853896, + 0.022296773, + 0.00161304, + -0.00874174, + 0.005057303, + 0.019753018, + 0.0088046435, + 0.0018936922, + -0.016007852, + -0.024213957, + -7.831361E-4, + -0.0046339487, + -0.025802841, + 0.03710553, + 0.0050685788, + -0.014009986, + -0.014742697, + 0.010977249, + -0.023464048, + 0.0025050438, + -0.010986813, + 0.02412344, + -0.013443153, + 0.009315544, + 0.024586637, + -0.0017115219, + -0.036481224, + 0.0240028, + 0.019159775, + 0.008537464, + 0.015111504, + 0.021643603, + 0.008497444, + -0.0088174725, + 0.0043632644, + -0.0075188586, + -0.019576497, + -0.0217693, + 0.023699602, + -0.023890799, + 0.0017964097, + 0.015093534, + -0.0050320798, + -3.9294423E-4, + 0.004982986, + 0.021608377, + -0.0036474129, + -0.006465324, + 0.019851906, + 0.012985444, + 0.016259965, + 0.0035231395, + -0.0036136492, + -0.008329207, + -0.010795206, + -0.012780135, + -0.007559238, + 0.003678989, + -0.0046284553, + -0.011056075, + -0.01940025, + -0.02310051, + -0.023710128, + -0.0053673997, + -0.013432752, + 0.0039761057, + 6.7244156E-4, + -0.019654034, + 0.013477289, + 0.026695801, + 5.9219537E-4, + -0.008413883, + -0.005929485, + -0.017149841, + 0.004592945, + -0.0069247647, + -0.02615603, + -0.014698692, + -0.025620118, + 0.010982748, + 0.0139767, + -0.009493436, + -0.020997113, + 0.0022383989, + 1.6682991E-4, + -0.00493792, + -0.008080893, + -0.014556489, + 0.0034379996, + 0.009449238, + 0.0020770954, + 0.016211914, + -0.006406306, + -0.008213832, + 0.021333976, + 0.0031808808, + 0.030449647, + 0.019769909, + 0.009419787, + 0.00802689, + 0.0136557985, + 6.716626E-4, + -0.030147487, + -0.02576463, + 0.009965752, + -0.011731201, + -0.02192746, + 0.0017433086, + -0.034144253, + -0.005255306, + -4.2339123E-4, + -0.001469454, + -0.0053877938, + 0.019461166, + 0.020778257, + 0.024795238, + 0.016693091, + -0.0032367285, + -0.029970633, + -0.022355555, + -0.024528308, + -0.011252124, + -0.0089729335, + 0.0074606724, + -0.023729548, + -0.036353685, + 0.013186314, + 0.02144986, + -0.0114947045, + 0.02310584, + 0.012233833, + -0.0064963996, + 0.008441414, + 0.028816361, + -0.010152053, + -0.0056114835, + 0.016887948, + -0.020284917, + 0.018065963, + -0.0045063165, + 0.016929982, + 0.015982496, + 0.016210116, + -0.023588944, + 0.002005858, + -0.003214967, + 0.001988416, + -0.0054987255, + -0.035492145, + 0.0024539987, + 0.017357398, + 0.007696274, + -0.001550573, + 0.00929735, + -0.011809538, + 0.0010148968, + -0.016244506, + -0.038413476, + -0.0060607973, + -0.010232947, + -0.0067243516, + -0.007846546, + -0.010089012, + 0.0046488056, + 0.030440722, + -0.02277536, + 0.022889296, + 0.006241239, + -0.009042752, + 0.020028295, + -0.00672113, + -0.0062222076, + -0.006744269, + -0.014290824, + -0.007877614, + 0.0062007084, + -0.0033520544, + -0.0014997653, + 0.008652359, + -0.005842496, + -0.006775709, + -0.027560214, + 0.019529946, + 0.0018568797, + 0.004678017, + 0.005086756, + -0.00725378, + -0.0043870155, + -5.226844E-4, + -0.007160374, + -0.019722236, + 0.0011287123, + -0.010813073, + -0.01233712, + 0.048103195, + -0.0049818093, + -0.0072436486, + -0.004247707, + -0.014115866, + 0.005394121, + 0.014517177, + 0.008002768, + 0.01219581, + 0.0043510348, + 0.007743726, + 0.03170988, + -0.016187713, + -0.0014805384, + 0.025056493, + 0.0037215035, + -0.00916869, + -0.0045475825, + -0.02035304, + 0.0038931426, + 0.02465209, + -0.007137329, + -0.011285981, + -5.088509E-4, + -0.00959271, + 0.009250261, + -0.026131775, + -0.005567208, + -0.03314096, + -0.0018579911, + -0.011065677, + 0.014201453, + -0.015278771, + -0.0023386173, + -0.018875778, + -0.009293716, + -0.020134512, + -0.017562319, + -0.016068336, + -0.005474193, + 0.025701432, + 0.0114442855, + -0.021471972, + -0.011237946, + 0.026666172, + 0.0073802588, + 0.0029141847, + 0.012926027, + 0.005633256, + -0.020501593, + 0.021419313, + -0.0071451482, + 0.00351038, + 0.024646426, + -0.0013410356, + -0.005758571, + -0.0033116657, + 0.007625437, + 0.022532102, + 0.01309527, + -0.0276956, + 0.02623187, + 0.009382153, + -0.027260728, + -0.01074307, + -0.01491852, + -9.41057E-4, + 0.0060703643, + -0.007379778, + -0.010471017, + 0.0023257064, + -0.022867572, + 0.01150966, + -0.001535235, + -0.006961621, + 0.011511816, + 0.013376563, + -0.0077739814, + 0.021444967, + 0.017244786, + -0.022411374, + 7.214327E-4, + -0.02488191, + 0.0070680995, + -0.0010613371, + 0.01809101, + 0.011916292, + -0.015933624, + -0.011332345, + 0.011958485, + 0.0073846127, + -0.036042757, + -0.006538544, + -0.025415633, + -0.0042366623, + 0.009450501, + -0.0053635216, + 0.003845898, + 0.021677539, + -0.007464495, + -0.025945384, + 0.0043000416, + 0.015275455, + 5.3759053E-4, + -0.023960913, + -0.012341209, + 0.00529572, + -0.015362048, + -0.0136369495, + 0.019001497, + -0.018694436, + 0.009980464, + 0.0029418329, + 0.006864025, + -0.004509427, + -0.0029344654, + -0.0088269, + 0.019548785, + 0.0024648716, + -0.017756503, + -0.015073485, + 0.019742416, + -0.0046820724, + -0.0056879376, + 0.013474677, + 0.012572828, + -0.009939134, + -0.0076365736, + -0.022059005, + -0.01959654, + -0.0065893247, + -0.009189646, + 0.0025902512, + 0.016601495, + 0.017027292, + 0.007966064, + -0.019688003, + 0.0068908874, + -0.0130437445, + -0.0014261482, + -0.020319652, + -8.157131E-5, + 0.030680245, + -0.023664514, + -0.013346876, + -0.0066129407, + 0.008028746, + -0.0037360203, + 0.015214165, + 0.0415237, + 0.0048575047, + 0.017875453, + -0.0074165952, + 0.0073493505, + -0.0066210744, + -0.004698581, + 0.010366107, + 0.004988571, + -0.019823179, + -0.007962664, + 0.009300544, + 0.022825439, + 0.009169338, + -0.0043984596, + 0.01015194, + 7.657377E-4, + -0.021933023, + 0.005416042, + 0.0065881982, + -0.009926208, + -0.017484399, + -0.011603389, + 0.006204253, + -7.859678E-4, + 0.005058638, + 0.0033492832, + 0.0018958875, + 0.016829245, + -0.038108695, + 0.018942721, + 9.435649E-4, + -0.010622316, + -0.012801272, + -9.554199E-4, + 0.0024474196, + 0.0071449927, + -0.042072207, + -0.01205508, + -0.011253082, + -0.0026424448, + 0.010796968, + 0.014053898, + 0.0088003995, + 0.025242139, + -0.013140046, + 0.011661263, + 0.004241717, + -0.01999692, + 0.021656426, + 0.024848118, + -0.027170856, + 0.019600643, + 0.0044277045, + -0.0025761675, + -0.009850257, + 0.012181222, + -0.012427262, + 0.00852598, + 0.0010091676, + -0.008907183, + 0.013874068, + -0.037052203, + 0.010346954, + 0.015441412, + -1.3593065E-4, + 0.008452605, + 0.026472235, + -0.013618954, + 0.023735423, + 0.028303321, + 0.0106602255, + 0.0075790808, + -0.0045319507, + 0.0022648235, + 0.0028511214, + -0.0041248547, + 0.021375153, + -0.011796856, + -0.0024364637, + -0.027174504, + -0.008355806, + 0.02266441, + -0.007793376, + 0.0070321457, + 0.008870365, + 0.02160355, + -0.0115968445, + 0.0041977703, + -0.011042138, + -0.012126087, + -0.0019354112, + -0.006448878, + 0.002134042, + -0.021881448, + 0.003043642, + 0.039012473, + 0.0061250264, + 0.010086995, + -0.028262066, + -0.016778618, + -0.009927338, + -0.006174245, + 0.01135897, + -0.043162, + 0.0068821744, + -0.0079363, + -0.016757134, + 0.035441145, + -0.013848275, + -0.013117504, + 0.022081729, + -0.003625917, + 0.0066541173, + 0.003948949, + -0.018988796, + 0.0052231885, + -0.04403685, + -0.007396728, + -0.016716206, + 0.0045884806, + 0.006259414, + -0.008050916, + -0.018818967, + 0.002275515, + -0.025275227, + -0.0027312296, + -0.001539876, + 0.017666815, + -0.005228498, + -0.011801861, + -0.002471186, + -0.01779249, + -0.009450881, + 0.009098941, + 0.019817388, + 0.018072862, + -0.0074394303, + 0.001979155, + -0.005078554, + 0.007274696, + 0.009746942, + 0.0071829627, + -0.014065259, + 0.019977111, + -0.016317924, + -0.01083328, + -0.006898063, + -0.010093038, + 0.036830384, + 0.008379332, + -0.0032847738, + 0.0031076698, + -0.0035393075, + -0.022131387, + 0.0150489835, + 0.009187131, + 0.0043785037, + -0.017882464, + -0.007834228, + 0.015441103, + -0.002832608, + -0.0034506007, + -0.00971184, + -0.021021381, + -8.6519006E-4, + -0.0076922583, + -0.0076632192, + 0.007005956, + 1.8443266E-4, + -0.010669316, + 0.01402445, + -0.007200807, + 3.3336726E-4, + 0.0077019697, + 0.038542494, + -0.03132029, + -0.026581777, + -0.018704304, + 0.008944648, + 0.015398327, + 0.008900244, + 0.016021693, + -0.012651255, + 0.010654793, + 0.012272233, + 0.0046695117, + -0.009342928, + 0.0027776412, + -0.011793561, + 0.0150238965, + 0.0031750107, + -0.0143761365, + 0.010933755, + 0.017674008, + -0.0043452187, + 0.025397692, + -1.4729894E-4, + -0.030540815, + 0.04786441, + 0.016846908, + -0.005104034, + 0.02281376, + -0.012833203, + 0.009753951, + 0.014419514, + -0.0022519876, + 0.007462598, + 0.0044880873, + 0.011281587, + -0.0019745752, + -0.009294991, + 0.019054279, + -0.002411663, + -0.0054142196, + -0.018371014, + -0.014669094, + -0.032803226, + 0.0015625495, + -0.01791451, + 0.01702196, + -3.8797891E-4, + -0.008270292, + -0.008645539, + 0.0050347927, + 0.0012432997, + -0.01336843, + -0.0017629074, + 0.015779268, + 0.025670692, + -0.02604832, + -0.0052115405, + 0.010655225, + 0.008499012, + -0.015592093, + -0.029342953, + 0.012029969, + -0.006099561, + -0.0012809465, + -0.010762242, + -0.0044754795, + 3.8269875E-4, + 0.015235438, + 0.018256428, + -0.024962166, + 0.020731902, + -0.02578287, + -0.016481545, + -0.0038546943, + -3.3012798E-4, + -0.019640919, + 0.013956822, + 0.021877946, + -0.0050114887, + 0.013203778, + -0.029611947, + 0.00451803, + -0.011257788, + -0.026767727, + 0.021610279, + 0.021370403, + -0.0016850523, + 0.008659204, + 0.002062956, + 9.553806E-4, + -0.018903425, + 0.0067636548, + -0.013875076, + -0.015804287, + 0.036463417, + -0.018042948, + 0.010535996, + -0.018788818, + 0.015411806, + -0.0091450345, + -0.024303531, + 0.0022422052, + 0.017856808, + -0.006069803, + 0.0035402498, + -0.008805811, + -0.013238907, + -0.003260298, + -0.0051527275, + 0.024912639, + 0.014601121, + -0.022739232, + 0.0016571531, + 0.017021677, + -0.016432881, + -0.011677219, + -0.010050005, + 0.0040605464, + 0.024135143, + 0.012171933, + 8.222445E-4, + -0.002930045, + -7.177612E-4, + -0.021910483, + 0.00793781, + 0.016866408, + 0.01626221, + -0.01687874, + -0.021968856, + -0.0029090764, + 0.010131688, + -0.01433897, + -0.029333996, + -0.001493981, + 0.0022129745, + -0.010664114, + 0.007596272, + 0.0047245114, + -0.018133113, + 0.01806778, + -0.022721851, + 0.030219646, + 0.026143627, + 0.016263321, + 0.006275331, + -0.0061734146, + -0.004606084, + 1.1226936E-4, + 7.566178E-4, + 0.0067417896, + 0.03144893, + 0.005802003, + 0.006204627, + 0.010781999, + -0.019299634, + -0.0030821797, + 0.011525867, + -0.005379483, + -0.01651774, + 0.021533063, + 0.006284818, + -0.0061398065, + -0.0012240452, + 0.012139856, + -0.0014334024, + -0.010617385, + 0.004326633, + 0.02107492, + -0.028813863, + -0.0010736621, + -0.008717354, + 0.0030209494, + 8.815951E-4, + 8.631991E-4, + -0.0010180173, + -0.033504806, + 0.020689622, + 0.0054095425, + -0.01517975, + 0.02609747, + -0.0032867787, + -0.013306068, + 0.0011107145, + -0.0065957224, + 0.0032195714, + -0.007783972, + 0.0016491993, + 0.018236905, + 0.008988314, + 0.002281477, + 0.0051284307, + -0.013094595, + 0.02773224, + 0.007922669, + -0.016632095, + 0.0066635823, + 0.00823743, + 0.009521371, + 0.010522579, + -0.01161749, + 0.022169465, + -5.6083436E-4, + 0.007244775, + -0.0047848434, + -0.01560641, + 3.698345E-4, + -0.010690186, + 0.010907829, + -0.0068867467, + 0.006385493, + -3.2038137E-4, + -0.007630246, + -0.00896637, + 0.005815852, + 0.01833187, + 0.0026624196, + -0.02946527, + 0.02356305, + -0.0029152646, + -0.010283241, + -0.0015351041, + 0.0076570325, + 0.02247443, + -0.018269723, + -0.012536364, + -0.0011324068, + -0.009193952, + -0.011204998, + -0.009258313, + 0.0067750495, + -0.017169103, + 0.020261701, + -3.2288526E-4, + 0.022383, + -0.008454208, + 0.010302056, + 0.005461403, + -0.016056128, + 0.00820833, + -0.02068464, + 0.00810924, + 0.020527575, + 0.020618584, + 0.012317, + -0.0149650555, + 0.018525384, + -0.0024140659, + 0.026355147, + -0.008202165, + -0.0069192904, + 0.009941853, + -0.0026886112, + 0.027549928, + 0.010386305, + 0.020883888, + 0.0040538083, + 0.0068734773, + 0.019863416, + 0.0220157, + -0.004441858, + -0.0043449653, + -0.01619665, + 0.001548184, + 0.008710434, + -3.5857066E-4, + -0.019778237, + -0.004403051, + -0.004724139, + -0.016136423, + -0.028783832, + -0.015258509, + -0.012620357, + 0.0089348, + 0.0027508968, + 0.007198852, + 0.035921436, + 0.011016443, + -0.0023137224, + 0.010269914, + 0.008207232, + 0.019975409, + 0.023648327, + -0.0034788486, + 0.019710151, + 0.0046301307, + 0.028138507, + -0.0063210228, + -0.0047827247, + 0.021273904, + -0.0043623718, + 0.013723564, + -0.00973136, + 0.0033039532, + 0.046246916, + -0.012236064, + 0.0017553328, + 0.0010383411, + 0.0038668823, + 0.020642232, + 0.0061334725, + 0.02204613, + -9.4254216E-4, + -0.024545288, + 0.015401859, + -0.026031826, + 0.016159354, + 0.040112127, + 0.013286579, + -0.0037507592, + 0.0046028467, + -0.01236936, + 7.905182E-4, + 0.010620664, + 0.0015516512, + 0.008843455, + -0.007946466, + 0.020366328, + -0.016560813, + -0.0016998302, + -0.021107027, + -4.77643E-4, + 0.00393649, + -0.014649607, + 0.0020389264, + 0.0020912976, + 0.019921437, + -0.02074867, + 0.0020571034, + 0.0064978297, + -0.0020902532, + 0.0010963011, + -0.0081671, + -0.006969727, + 0.04992313, + -0.025388166, + 0.013079668, + 4.315442E-4, + 0.03110261, + -0.005750215, + 0.024397489, + 0.0016151258, + 0.0016004196, + -0.032184467, + 0.023989096, + 0.013823434, + -0.0122358855, + -0.0030918843, + -0.020131774, + 0.02804495, + -0.016408278, + 0.008440392, + 0.007556472, + 0.015767349, + 0.02817399, + -0.010898198, + 0.035981525, + -0.0063339896, + -0.011937894, + 0.009520534, + 0.016033972, + 0.01021703, + 0.00841622, + -0.020455759, + 0.011101256, + -0.0272556, + -0.01975557, + -0.0010816263, + 0.0011829475, + 0.016983854, + 0.03862882, + 0.02196851, + -0.012315467, + -0.032275967, + -0.010186925, + 0.02771389, + 0.004749661, + 0.00858735, + -0.026601953, + -0.009130689, + -0.0012426531, + -0.022478655, + 0.00867768, + 0.01270573, + 0.004840545, + -0.012475532, + 0.00411148, + -0.012691138, + 0.0064699114, + -0.007224594, + 0.016525006, + 0.01684848, + -0.010304431, + -0.014147846, + -0.0044335, + -0.015000559, + -0.0049265935, + -0.021552112, + -0.0015510849, + 0.0062503293, + -0.025797583, + 0.032204036, + -0.02400752, + 0.009485375, + 0.012621527, + 0.019078335, + -0.007030883, + 0.006377863, + 0.014289415, + -0.0064870333, + 0.0043631815, + -0.019583147, + -0.009085125, + -0.0033241336, + -0.010205391, + 0.017318556, + 0.021569705, + 8.968116E-4, + -0.013306625, + -0.0044461614, + 0.014843055, + -0.009735241, + 0.033126466, + 0.010330361, + -0.009314826, + -0.017246207, + 0.001112345, + -0.0077704783, + -0.012847723, + -0.0061673755, + -0.016321821, + -0.0026016957, + -0.026247654, + -0.034189552, + 0.024228089, + -0.0071536354, + -0.010260223, + 0.027362177, + -0.022669796, + 0.00659959, + -0.013346071, + 0.03022989, + 0.017600413, + 0.018151581, + -0.0031427334, + 2.1588308E-4, + 0.008125657, + -0.0035876886, + 0.023264024, + -0.006691396, + 0.0068150884, + -0.014997507, + 0.011864182, + 0.017534863, + 0.024654327, + 0.0076559377, + -0.012789002, + -0.009152466, + 0.021729724, + -0.0070432075, + 0.019698884, + 0.009302991, + 0.0036526076, + -0.015326612, + -0.014894366, + -0.0065815724, + 0.01339129, + 0.0146791795, + 0.00718926, + -0.02814434, + -0.029133778, + -0.008583612, + 0.008624171, + 0.017701121, + 0.0028880711, + 0.0038994278, + 0.0013683641, + -0.0055484083, + -0.0038059133, + 0.0068555013, + -0.009993138, + 0.013079205, + -0.0046735206, + -0.01249861, + 0.012467588, + -0.0071194125, + -0.019619595, + -0.0043016425, + -0.010830049, + 0.008261974, + -0.002654072, + 0.004957456, + -0.0035509642, + 0.045593485, + 0.011709074, + 0.002385931, + 0.0051567, + -9.26702E-4, + 0.003655605, + 0.010987458, + -8.72842E-4, + -0.025537228, + -0.012230181, + -0.0063285152, + 0.008499107, + -0.017461179, + -0.005761033, + 0.0073681627, + 0.010900666, + -8.431151E-4, + 0.002036269, + -0.02303522, + -0.002517627, + 0.009175617, + 0.0048202504, + -0.0067844996, + -0.004709254, + -0.0017850483, + 0.019221276, + 0.013501151, + -0.019041365, + 0.021778641, + -0.0100575145, + 0.019109776, + -0.012150093, + -0.033229344, + -0.020537592, + 4.5152984E-4, + -0.0026518465, + 0.0025642347, + 0.0077337306, + 0.004683065, + 0.02108388, + 0.01642868, + -0.012976763, + 0.008453153, + -0.022097552, + -0.025277983, + 0.011369512, + -0.0038005165, + 0.03408446, + -0.009559986, + 0.008868164, + -0.014988839, + -0.0057801646, + 0.006806116, + 0.022220638, + -0.011617317, + -0.016625324, + -0.021375578, + 0.0036990643, + 0.002428892, + 0.020900829, + -0.012424816, + -0.022907356, + -0.012830972, + 0.023230175, + -0.024515625, + -0.013859985, + -0.005296303, + -0.017430477, + 0.0046825046, + -0.024334976, + 0.028940145, + -0.019767512, + -0.023446772, + -0.0018972553, + -0.008647286, + 0.021568106, + -0.005598491, + 0.0015731391, + -0.027129134, + 0.013806299, + -0.011243158, + -0.0077918097, + -0.0021457884, + -0.012643398, + -0.002676958, + -0.0034439524, + -7.840923E-4, + -0.017116629, + 0.011240716, + -0.011812139, + -0.018463975, + 0.0017577546, + -0.0075748614, + -9.820168E-4, + 0.01268017, + -0.02451419, + 0.005811097, + 0.013153893, + 0.009331664, + -0.003859474, + 0.003427175, + -0.021233063, + -0.018120626, + 0.016400449, + 0.0067056613, + 0.019370848, + -0.014820572, + 4.9425067E-5, + 0.011541352, + 0.014007225, + 0.018585052, + -0.0030884743, + -0.0029173454, + 0.014482693, + 0.009707781, + 0.035740014, + -0.010200703, + 0.017926356, + 0.012360389, + -0.010825476, + -0.009881817, + 0.003510392, + 0.0065277726, + 0.0048498763, + 0.013008907, + 0.0025584677, + -0.0046898825, + 0.008509, + -0.008998467, + -0.020611333, + -0.0050641396, + 0.011656586, + 0.0018389305, + -0.023701865, + -0.00953364, + 0.021295799, + -0.00436515, + -0.021092422, + 0.020310685, + -0.006460949, + 0.022065796, + -9.743639E-4, + -0.0036589084, + 0.0060197096, + -0.030685667, + -0.026775347, + -0.014125415, + -0.009045545, + 0.0021858555, + -0.018013455, + -0.015802752, + -5.477142E-4, + 0.018733526, + 0.01720882, + 0.028583257, + 3.4714083E-4, + -0.012911829, + -0.0053132568, + 0.003025198, + -0.009193636, + 0.026093476, + -0.012163117, + 0.03542622, + -0.029130016, + -0.03302256, + -0.0030877898, + -0.0048987702, + 0.0050528906, + 0.02344195, + 0.018695425, + -0.0045825113, + 0.013765006, + 0.011119098, + -0.014069509, + 0.008040215, + 0.019844968, + -0.01379139, + 4.7233654E-4, + 0.002030179, + -0.017181247, + 0.0069352863, + 0.003580826, + -0.016550332, + -0.0021601112, + -0.014835628, + -0.004940886, + 0.010145945, + -0.0033572905, + -0.004622768, + 0.0033584202, + 0.017457021, + 0.008076536, + -0.015108207, + -0.024781153, + -0.008943714, + -0.0035807919, + 0.03252804, + 0.011860542, + -0.0026510714, + -0.0052906824, + 0.0014645812, + 0.015245771, + -0.0111391535, + 0.011269254, + -0.011843451, + 0.024584822, + -0.006450622, + 0.009067974, + 0.0015245707, + -0.031497378, + -0.010219037, + 0.040372964, + -0.028041877, + -0.018336235, + 0.014949454, + 0.0064370707, + -0.0073414305, + 0.008122796, + 1.6983859E-5, + -3.804003E-4, + 0.0094339065, + 0.0038751012, + 0.025881713, + -3.0340985E-4, + -0.010962543, + 0.025568169, + -0.0051029194, + 0.012778554, + -0.021274298, + -0.03972612, + -0.020961946, + -0.022222117, + 0.005246821, + -0.01455336, + -0.007305487, + -0.0107572405, + 0.00495324, + 0.001624334, + 0.003921346, + 0.016813245, + -0.021415338, + -0.010159311, + 0.009936926, + 0.033513125, + -0.022357441, + 0.009158182, + -0.011592901, + -0.014955574, + 0.02954251, + 0.011924558, + 7.846776E-4, + 0.034002457, + 0.008449091, + -0.024336757, + -0.028235715, + -0.0047906265, + -0.027875137, + 0.003674592, + -0.0046262825, + 0.00438189, + 0.004867389, + 0.014067034, + -0.016133862, + -0.003877059, + 0.021773012, + 0.019660428, + -0.022400282, + 0.013021058, + -0.0060395976, + 0.017634103, + -0.013346895, + -0.013033905, + -0.0024485388, + 0.027309276, + -0.0058708927, + -0.011401098, + -0.0024348097, + -0.0015501357, + -0.004831375, + 0.01230463, + -0.01780525, + -0.011710912, + -0.015672058, + -0.0016770345, + 0.0038910627, + -0.02287025, + -0.002114483, + 0.011855232, + 0.023328677, + 0.008599809, + 0.009420078, + 0.004890448, + 0.013711086, + -0.012046222, + 0.009450202, + 0.0038356471, + 0.0066869347, + 0.009828963, + -0.014920686, + 0.0027426158, + -0.0054016435, + 0.019810524, + 0.03007009, + 0.0117564555, + -0.018261798, + -0.0015525775, + 0.0025395192, + 0.014301465, + -0.0075332224, + -0.013602165, + 0.005238445, + 0.017024666, + -0.007594025, + -0.025138052, + -0.001332562, + -0.0034039726, + 0.035874154, + -0.003042138, + 0.017912507, + -0.00982244, + -0.015900727, + 0.01509502, + 0.009315074, + -0.02510835, + 0.0067564873, + -0.015719458, + 0.023203043, + 0.0026984443, + -0.01018773, + 2.1542938E-4, + -0.011714379, + -0.033075057, + -0.0037161147, + 0.009177049, + 0.0025767353, + 0.008949136, + -0.03537924, + 0.0062919874, + -0.0010473554, + 0.00697065, + 0.0011555679, + 0.0057681846, + -0.015528527, + 0.029669367, + 0.005678804, + -0.017869787, + -0.0010769904, + -0.004194719, + 0.008883048, + -0.03026909, + 0.0019928943, + 0.0011944616, + 0.0052766735, + 0.01800094, + -0.0074219666, + 0.012786111, + 0.012204844, + -0.0404943, + -0.0030178493, + -0.011732203, + -0.0021464382, + 0.009224124, + -0.031653132, + -0.037595775, + -0.009746076, + 0.0024945291, + -0.010256141, + 0.018249542, + -0.010969541, + 0.0061150533, + -0.007039748, + -0.013438272, + -0.032066826, + 0.030467762, + 0.015210153, + -0.039851155, + -0.011727801, + 0.022240179, + 0.004513942, + 8.454124E-4, + -0.010307893, + -0.008899418, + 0.004871047, + 0.020113904, + 0.0020027517, + -0.015186721, + 0.012759873, + 0.012391043, + 0.03096487, + -0.018973269, + -0.0100393295, + 0.025534209, + -0.002852803, + 0.02649116, + 0.010686141, + -0.013074224, + 0.015509496, + -0.0020493781, + 0.010961627, + -0.011716461, + 0.019045478, + -0.018228656, + -0.015209944, + -0.014752359, + -0.012187605, + -0.0052114055, + 0.005812684, + -0.005079774, + -0.015257054, + 0.0064965584, + 0.03635602, + -0.020884106, + -0.0074246074, + -0.0058868616, + 0.0153869, + 0.0023483513, + 0.03612047, + 5.9089245E-4, + 0.034270458, + 0.009569428, + 0.008759149, + 0.014171613, + -0.003639411, + 0.0074924454, + 0.008920991, + -0.015568252, + -0.0025361676, + -0.03178616, + -0.019322623, + -0.014386984, + 0.011197902, + 0.007793489, + -0.009903391, + 0.0030347765, + -0.02190807, + -0.020229215, + -0.006714283, + -0.014085034, + -0.0047993828, + -0.014088005, + 0.021442883, + 0.009299184, + -0.006707782, + -0.007655433, + 0.027329363, + 0.00660894, + 0.03562716, + 0.017207326, + -0.0041715037, + -0.0011683868, + -0.0019179409, + -0.0121309925, + 0.020051131, + 0.0073964577, + 0.041682776, + 0.020958269, + -0.026411798, + -0.04143407, + 0.012898674, + 0.023434928, + 0.008726551, + 0.0072325757, + 0.031164048, + -0.0069234436, + 0.023100253, + 0.008650679, + 0.009141111, + -0.009176543, + -0.0039736456, + -0.004440691, + -0.016462047, + 0.0069253347, + 0.01953132, + -0.004543118, + -0.030812178, + 0.004906116, + 0.025762074, + -0.02052075, + 0.0021812322, + 0.0048326827, + -0.022612838, + 0.01605266, + -0.021323927, + -0.00703597, + 0.0064225956, + 0.00980385, + 0.0067254915, + 0.0068347133, + 0.020137204, + 0.011699204, + 0.005285043, + -0.013933802, + 0.009930062, + -0.00826673, + 0.023130802, + -0.0074452087, + 0.009814925, + 0.0351855, + -0.0070267627, + -0.015891854, + 0.0100316, + -0.0027730837, + 0.007253398, + -0.016478179, + 0.027724544, + -0.009652335, + -0.0064076646, + -0.013191525, + -0.014696786, + -0.016916484, + 0.013577833, + -0.016512824, + -0.025048096, + -0.021748673, + -0.024290053, + -0.0016389146, + -0.02075359, + -0.0037725496, + -0.017810864, + 0.028082771, + 0.012137512, + 0.006987643, + 0.0012830604, + 0.0050361976, + 0.0028517128, + 0.017405264, + 0.029207034, + -0.0019068748, + -0.03427403, + -0.006363698, + -0.0066751014, + -0.0083109215, + -0.007833604, + 0.004205862, + -0.026097316, + -0.0184622, + 0.019741394, + 0.0016731505, + 0.0052679484, + -0.0012574632, + 0.0029581694, + -0.030188598, + -0.026256368, + -0.022122286, + -0.00937106, + 0.014046698, + 0.0058134077, + -0.041217856, + 0.023403574, + -0.01634587, + -0.0027883742, + 0.0097997915, + 0.018341886, + 0.023360247, + 0.007574069, + 0.011574912, + -0.0036631043, + -0.009137755, + 0.02132473, + 0.0057608946, + 8.0291467E-4, + 0.017806895, + -0.011634831, + -0.023961822, + 0.016140921, + -0.028269839, + 0.029658845, + -0.012856498, + -0.017805133, + 0.004146548, + -0.0031551558, + -0.039111186, + 0.038139895, + -0.015528744, + 0.020023521, + -0.012266817, + -0.0061717452, + 0.022775909, + 0.017228385, + 0.0075904545, + -0.008198793, + 0.019484954, + 0.014863927, + -0.0010667668, + 0.023819482, + 0.016512752, + -0.008879207, + 0.010297588, + -0.016488748, + 0.027644848, + -0.021768196, + 0.018193617, + -0.005467517, + -0.016760195, + -0.02447681, + 0.008635784, + 0.0138454605, + 0.020677444, + 0.010205669, + 0.0055995975, + 0.009747326, + -0.019630212, + 0.016841019, + -0.012366148, + -0.004920933, + 0.023827018, + -0.008882478, + -0.0070757205, + 0.010661075, + 0.0058315825, + 4.994318E-4, + 0.024401763, + -0.0027915922, + 0.03413877, + -0.0068975054, + 0.020485144, + -0.0098141255, + -0.0032289454, + 0.025343888, + 0.009909154, + 1.3487977E-4, + -0.015879484, + -0.011148093, + -0.0059551345, + 0.0146987, + 0.0044325558, + 0.034830958, + 0.035082314, + -0.007298956, + -0.015161606, + -0.0012246107, + 0.016582634, + 0.023615172, + 0.00721741, + -0.009789803, + -0.010350783, + 0.0047035, + -0.025254307, + -0.0048254756, + -9.1193E-5, + 0.012265505, + -0.022303678, + -0.03376326, + -0.018150136, + 0.010376799, + -0.013966619, + 0.018321931, + -0.0015558458, + 0.026438272, + 0.016047245, + -0.01676009, + 0.002376088, + -0.0073595336, + 0.0016991824, + 0.015659517, + 0.022474429, + 0.011467822, + -0.020808551, + 0.0031475658, + 0.0016247033, + 0.017813016, + 0.00400845, + 0.011674774, + -0.001974053, + 0.016866934, + 0.0128542725, + 0.026767716, + -0.016786302, + -0.0014671726, + -0.02533084, + 0.014461397, + -0.024153385, + 0.005048072, + -0.03164041, + -0.038265523, + -0.0049940865, + -0.031051587, + 0.013215455, + -0.0111710485, + 0.012558518, + 0.0064778402, + -0.033331167, + 0.047805246, + 0.024708044, + 0.016835125, + -0.018149763, + 0.027540317, + 0.0049870214, + -0.0023492668, + -0.012528233, + 0.026667226, + -0.009113342, + -0.013462188, + 6.537493E-4, + -0.009846918, + -0.0055867247, + -0.009059152, + 0.0039004926, + 0.005870127, + 0.011322777, + -0.025586018, + 0.014675607, + -0.01201153, + -0.007569889, + 4.6195294E-4, + -4.1019026E-5, + -0.007608925, + -0.0114315245, + 0.027245525, + -0.0030251294, + 0.0028627552, + 0.038091037, + 0.005694908, + 0.018085234, + 0.02638275, + -0.001768363, + 0.0022249403, + 0.015680777, + -0.00578729, + 0.0022530053, + 0.010299544, + -0.018212391, + -0.008892829, + 0.03690531, + 0.023677938, + 0.0070602363, + 0.005721276, + 0.023606611, + -0.0067896466, + -0.011513996, + 0.038129047, + -0.0032714605, + 0.002656369, + 0.017015755, + -0.037352253, + -0.010251366, + 0.0022052934, + -0.0012231327, + 0.015758088, + 0.016815074, + -0.0065632793, + -0.0316006, + 0.01459609, + 0.012424736, + 0.002031541, + 0.011518133, + 0.019606633, + 0.012316056, + 0.009244339, + 0.004195676, + 0.018892074, + -0.019642217, + 3.3188713E-4, + -0.016845904, + 0.011192838, + 0.024611054, + -0.018283378, + -0.0046461658, + -0.012612141, + -0.02639968, + -0.028264347, + -0.008048049, + 0.015602692, + -0.0019693747, + -0.030015217, + -0.02654092, + -0.001211873, + -0.03006856, + -0.0056279106, + -0.0112193795, + -0.0025225657, + -0.041319534, + -0.021961736, + -0.014821777, + 0.010975513, + 0.016002465, + 0.010172926, + 0.028198265, + 0.0011060971, + -0.013973991, + 0.02591739, + -0.011089649, + 0.005484315, + 0.01721974, + -0.008533164, + 0.007948732, + 0.01550827, + -0.013195274, + -0.0055138404, + -0.013998186, + 0.008705049, + 0.0012541681, + 2.9654874E-4, + 0.013995921, + 0.013457266, + 9.654047E-4, + 0.014593383, + -1.0620633E-4, + -0.003976097, + -0.0071369577, + 0.0030079298, + 0.0040448993, + -0.016720887, + -0.007854014, + -0.0071983435, + 0.0260178, + -0.017948903, + 0.018853229, + -0.0060148267, + -0.003796593, + 0.0029678605, + -0.024798717, + -0.0083330795, + -0.016412856, + -0.019284189, + -0.008841235, + -0.016173434, + 0.011353569, + 0.006240144, + -0.0059414427, + 0.0046058428, + 0.008081662, + -0.0036389316, + -0.0033261843, + 0.010720026, + -0.0038222468, + 0.003983079, + 0.010081776, + 0.009085501, + -0.007191794, + -0.001891747, + 0.012273325, + -0.0041877627, + 0.010174353, + 0.0054360167, + 0.009933345, + 0.005496561, + -0.022447024, + 0.03135713, + -0.0071439026, + -0.020552833, + -0.0085825445, + -0.019674845, + -0.0036108966, + 0.037720703, + 0.026852699, + 0.006925629, + 0.007577219, + -0.02440585, + -0.0018465603, + -0.012480244, + -0.029630499, + -0.0092746215, + 0.015900029, + 0.008796734, + 0.016651573, + -0.0011620147, + -0.0069033313, + 0.0014390224, + -0.030299371, + 0.0095302835, + 0.008757146, + 0.008708011, + 0.0017452169, + 0.0046702307, + -0.016176883, + 0.0139458375, + -8.318323E-4, + 0.006567348, + -0.014867794, + 0.012989354, + -0.014849794, + 0.006371559, + -6.206631E-4, + -0.005711114, + -0.02490625, + 0.013292052, + 0.003788711, + 0.016232414, + -0.013953915, + -0.0025315152, + -0.004106309, + -0.0041766022, + 5.056841E-4, + -0.02469478, + -0.017487887, + -0.011173684, + 0.018077118, + 0.0145888, + -0.0041753333, + 0.013152756, + -0.028220918, + -0.0030426797, + 0.023412155, + -0.003662356, + -0.031220218, + -0.009041245, + 0.016466947, + 0.022373997, + -0.022222547, + -0.0073809642, + -0.017594915, + 0.005495811, + 0.0019909989, + 0.015063712, + -0.0086971605, + -0.016685192, + -0.012582691, + -0.016907386, + -0.01038243, + -0.01829083, + 0.0035523486, + -0.004715003, + 0.01139248, + -0.02867933, + 0.0068719964, + 0.007194324, + 0.004451795, + 0.02703585, + 0.046611167, + -0.014418966, + -0.0062963096, + -0.016570665, + 0.0018070227, + -0.011268566, + -0.0069314665, + -0.007044014, + -0.02242657, + -0.008355191, + -0.0018810828, + 0.011962777, + -0.013603979, + -0.009198621, + 0.005147847, + 0.0060852426, + -0.009509084, + 0.011395094, + 0.0042860326, + 0.031035665, + -0.021944929, + -0.007861456, + -0.037335116, + 0.005210748, + -0.006232451, + 0.0085376445, + -0.0038319628, + 0.04363684, + 0.011336574, + 0.014495768, + -0.006309839, + -0.0058464822, + 0.061060686, + -0.012663841, + -0.015037214, + -0.016000042, + -0.003019655, + 0.007911111, + -0.0012661538, + -0.012394596, + 0.0010663875, + -0.011927685, + 0.0050159697, + 0.007996282, + -0.020983137, + 0.006763288, + -0.011699454, + 0.0074982345, + 0.005726756, + -0.01662154, + 0.013736631, + 0.005536577, + -0.027484747, + -0.0014655693, + 0.0024869463, + 0.008849048, + -0.007670713, + -0.0019309775, + 0.0026605031, + 0.0060507455, + -0.009331766, + -0.028266294, + 0.015507992, + -0.009753369, + 0.0027941626, + -0.024503887, + 0.0034960576, + -0.008221198, + 0.0016123989, + -0.028622212, + 0.006277785, + 0.007855697, + -0.024328686, + 0.016559986, + 0.0273067, + 0.010510732, + 0.01641462, + 0.020119993, + -0.019626383, + -0.006130223, + -0.02461612, + -0.0011992694, + -0.0016397262, + -0.011677529, + 0.0095392, + 0.010808501, + 0.011738172, + -0.004912085, + 0.0017887171, + -0.0030904405, + -0.0067171617, + 0.033917792, + -0.008567667, + 0.008775472, + 0.0037881027, + 0.009644932, + 0.004802948, + 0.020433744, + -0.029561607, + 0.023447445, + -0.0015686862, + -0.01516332, + -0.0017240136, + -0.010893978, + 0.004604136, + -0.011069255, + -0.011631943, + -0.033537194, + -0.00417302, + -0.019488875, + -0.017828513, + -0.018526187, + -0.0073552798, + -0.02263454, + 0.015704397, + -0.024141194, + -0.026839893, + 0.0030905858, + 0.025004381, + 0.021431953, + 0.023610001, + -5.6520384E-4, + -0.0100404825, + -0.0037382538, + -7.0014445E-4, + 0.00391812, + -0.008776078, + 2.1659353E-4, + -0.008490429, + 0.004532567, + -0.012854789, + -0.03807483, + 0.027145706, + 0.019784003, + -0.016250309, + 0.019072395, + -0.011652399, + -0.009555268, + 0.014940885, + 0.027190758, + -0.008799448, + 0.035704214, + -0.005705128, + -7.596945E-5, + -0.017489431, + 0.0067964187, + 0.020200588, + 0.018222598, + 0.0069962945, + 0.011812157, + 0.008387024, + 0.016247569, + 0.0014805347, + -0.010751029, + 0.015041656, + -0.006707044, + -0.0077770157, + 0.013439478, + 0.007567355, + -3.2961642E-4, + -4.3722484E-4, + -0.004068994, + 0.0088499505, + -0.011662244, + -0.0029557347, + -0.003811816, + -0.0052832244, + -0.044004843, + 0.024218034, + 0.024354404, + 0.0089878505, + 0.0067738886, + -0.008490247, + -0.015087104, + -0.0016075294, + 0.013196436, + 0.00421573, + 0.013371188, + 0.009434445, + 0.02073136, + -0.0026343833, + 0.008472357, + -0.00674927, + -0.009047483, + -0.012164211, + 0.018115163, + 0.009586403, + 0.0038036087, + 0.004905635, + -0.020906335, + 0.0072805616, + 0.0038859535, + -0.017678954, + 0.008717295, + -4.2268017E-4, + -0.009080451, + -0.022136867, + -0.024112443, + 0.0041482784, + 0.012289352, + -0.005531689, + 0.011432012, + -0.0031044695, + 0.0015638795, + 0.018080276, + 0.008222852, + -0.0015160438, + 0.007424214, + 0.001162497, + 0.030110352, + -0.03370591, + -0.0038752907, + 1.6612464E-4, + 0.004544717, + -0.017899394, + 0.0029471063, + -0.027543478, + 0.0130757, + -0.0038767317, + -0.017579509, + -0.012259861, + -0.025287969, + 0.004275462, + 0.015834995, + 1.4673399E-4, + -0.019095473, + 0.03782367, + 0.008975667, + -0.007643449, + -0.0015416077, + -0.010376105, + 0.026407499, + -0.010099137, + -0.0027060648, + 0.027087428, + 0.008026283, + -0.030520214, + -0.0027028257, + -0.0022748285, + 0.013525326, + 0.021885578, + -0.0025605105, + -0.007891336, + 0.0030812358, + 0.021196378, + -0.022205744, + -0.004217062, + 0.026316345, + 0.0038606764, + 0.0028423714, + -0.0029528919, + -0.021084763, + 0.015923524, + 0.0061526448, + -0.011749362, + -0.0064822016, + -0.009261691, + -0.007735037, + -0.0025070412, + -0.0048685414, + 0.009800376, + 0.0016273478, + -0.012859933, + -8.0216146E-4, + -0.0096336035, + -0.016108312, + -0.028414823, + -0.009384215, + 0.04639125, + -0.007957535, + 0.0063685994, + -0.019583192, + -0.0087725455, + 0.014731275, + -0.004436124, + 0.007210289, + -0.008349761, + -0.030060617, + -0.02009924, + -0.010012603, + -0.0026944338 ], - "paletteEmbedding": [ - -0.06881866, -0.056366365, -0.06577815, -0.008843473, -0.021069821, - -0.07565054, -0.04671911, -0.00470508, 0.011383595, 0.028872723, - -0.015218298, -0.025386965, 0.019600008, 0.030614294, 0.014347523, - 0.039133515, 0.034501556, 0.02884258, 0.0013109384, -0.038918443, - 0.043464955, -0.01220348, 0.023686763, 0.00100914, 0.008582794, - 0.056439955, -0.004441846, -0.0061322865, -0.01148342, 0.008671033, - -0.019166648, 0.012825654, 0.013173316, 0.0010649795, -0.01827492, - -0.0064282306, -0.03514108, -0.009950625, 0.0018710078, -0.010870077, - -0.0041396767, -0.023223933, 0.04656249, 0.07777785, -0.02336249, - -0.019573918, -0.03932417, 0.009329795, -0.013123604, 0.027324017, - -0.014082512, -0.038681347, 0.005806808, -0.0212712, -0.029279724, - -0.0017181097, -0.00693137, 0.013043336, -0.027157446, 0.021248551, - -0.029493354, -0.023273906, 0.018478291, 0.03965812, 0.05851108, - 0.05535847, 0.021840615, -0.029671019, 0.021730559, 9.5242815e-4, - 0.016768822, -0.004673093, 0.005555725, -0.02030916, -0.0012950925, - 0.05199697, -0.018052626, 0.002637696, 0.018057272, 0.030784518, - -0.015829762, -0.047683038, -0.024532601, 0.010261559, -0.022890009, - 0.035953995, 0.019791355, -0.028100705, -0.012341519, -0.01045967, - 0.007515933, -0.046298835, -0.0022369928, -0.0023897528, 0.045436703, - -0.004062883, -0.029443325, 0.044290125, 0.016296528, 0.039355263, - 7.496811e-4, 0.01621746, 0.053089812, -0.0074399896, 1.2588677e-4, - -0.019224502, 0.0044573676, 0.06117036, 0.014407139, -0.044308353, - -0.009922478, -0.0072468435, 0.016032653, 0.008774658, -0.052709453, - 0.021726185, 0.0031848762, -0.023702962, -0.023591407, -0.041808203, - -0.05718024, 0.023176886, 0.055115826, 0.012309729, 0.005408866, - 0.00345941, 0.024776485, 0.02448561, 9.814567e-4, -0.06611262, - -0.06913739, 0.010205969, -0.04400424, 0.010612608, 0.050984133, - 0.006471731, -0.03395978, 0.0064813322, 0.026244942, 0.011225302, - -0.020191196, -0.035282835, -0.025687486, -0.022831982, 0.021120476, - 0.01952848, -0.023383254, -0.0117294965, -0.051290613, -0.041556407, - 0.015999136, -0.07711821, -0.03386127, 0.024300935, -0.012115839, - -0.005595598, -0.021573272, -0.0013410771, -0.014077767, 0.036122344, - 0.009600924, 0.02251093, -0.04184132, -0.0028594504, 0.017379647, - 0.03355637, -0.028980797, 0.035650093, -0.0028583214, 0.020888632, - -0.021136986, -0.023150438, 0.0029013844, -0.06659034, 0.0065060984, - -0.021011524, -0.008885951, 0.03160601, -6.109096e-4, 0.0324717, - -0.015305144, 0.011550892, 0.022528095, -0.017553579, 0.037524775, - -0.03821403, 0.02390838, 0.023398826, -0.0040254435, 0.009256512, - 0.025463426, -0.01685733, 0.018525105, -0.017159797, 0.033215813, - 0.036239143, -0.011975261, 0.024001274, -0.007384562, 0.02045904, - -0.024074877, -0.011143922, 0.002984181, 4.0009305e-5, -0.056940578, - 0.0051462147, -0.018239819, -0.04326077, 0.036976203, 0.009421523, - -0.019202124, -0.046012778, -0.04625438, -0.0146605745, -0.0043107616, - -0.02300456, 0.013657205, -0.0606234, 0.009473475, 0.019847162, - -0.0076518743, 0.044724014, -0.039662194, 0.0030439792, 0.010597665, - -0.0017589582, -0.042568747, -0.0019916706, -0.08945852, -0.019716265, - -0.044118784, 0.00698211, 0.026177408, -0.026002485, 0.012759045, - 0.017352702, 0.014839606, 0.002154649, 0.01642392, -0.06660031, - -0.0072858497, 0.02283177, 0.036595955, 0.023175597, -0.08730517, - 0.014478838, -0.024526361, -0.072210655, 0.0034491236, 0.021997476, - 0.052118573, 0.028551014, 0.061197486, -0.006420924, 0.044414513, - 0.03208965, 0.0019940916, 0.010873181, -0.017346777, -0.020688476, - -0.006955637, -0.046316206, 0.019806761, 0.033373542, 0.0070811296, - 0.027869085, 0.020431435, -0.014729038, -0.049496565, 0.012922296, - 0.052687656, -0.0022308128, 0.020892052, 0.025316982, 0.0070103197, - 0.016106639, -0.052673303, -0.002210712, 0.024906727, 0.031810693, - -0.036374427, 0.029368171, 0.0028562509, 0.058097687, 0.03299417, - 0.023590337, -0.011366729, -0.025434546, -0.02104319, -2.1311696e-4, - -0.01177773, 0.06705383, -0.026985519, 0.077197514, 0.006587363, - 0.018971859, 0.021635374, -2.35606e-4, -0.01955643, 0.0087689115, - 0.021439813, 0.015702283, -0.0760624, -0.0039257435, -0.022564836, - -0.027488051, -0.03358792, -0.019182, -0.049125783, 0.0040728822, - -0.046109363, 0.02137612, 0.020438047, -0.034211818, -0.023938008, - 0.013731599, -0.019651698, 0.0052599465, -0.028731238, -0.0125999255, - 0.03601654, -0.04073885, -0.082594365, 0.027458638, -0.029289456, - 0.032180913, -0.03560157, -0.01857004, 0.008813872, 0.041831955, - 0.039645538, 0.045564868, -0.017909693, -0.018091979, 0.016215276, - 0.012017421, 0.050375786, -0.0053429147, 0.039485145, 0.010583138, - -0.049617734, 0.024955027, 0.003577827, -0.059653375, -0.0756721, - 0.010433267, -0.037074424, -0.022237048, -0.027483894, 0.03702153, - -0.018805716, -0.01150973, 0.033552293, -0.02329178, 0.033087894, - 0.06272124, 0.0728864, 0.018502265, 0.021645207, 0.0069315834, - -0.008867229, -0.018276315, 5.2863173e-4, -0.049083635, -0.026345527, - -0.004768612, 0.04749819, 0.034227736, -0.011933343, -0.06380353, - -0.01243263, 0.023733659, -0.029124241, -0.017714992, -0.0219989, - 0.0043884427, 4.464665e-4, 0.014213271, 0.023061002, 0.030451387, - -0.0101977, -0.012903554, -0.0031688004, -0.06325341, -0.0046060267, - -0.037279725, -0.064164035, 0.03092343, -0.012222245, -0.0061927964, - 0.030674439, -0.023326699, -0.021785524, 0.03431448, 0.019055251, - -0.0058062514, 0.0075042374, 0.02198161, -0.007497214, -0.029680455, - 0.04934273, 0.0075217388, -0.06168732, -0.029233886, -0.017582515, - -0.047172107, 0.006742007, 4.960604e-4, 0.048051376, 0.0011791644, - 0.07111354, -0.06305167, -0.02105148, 0.006397437, -0.054222897, - -0.078775726, 0.0015121106, 0.019431302, -0.06385964, 0.024774086, - -0.046824425, 0.03864112, 0.027739618, 0.06765498, -0.023255736, - -0.033921972, -0.022370737, 0.045345683, 0.018893873, -0.009906591, - -0.0224627, 0.004696367, -0.03544236, -0.0010511517, -0.048688293, - 0.040282283, 0.045559485, -0.054908298, -0.018544191, 0.024570256, - -0.049696688, -0.016841376, 0.013632344, 0.040836707, -0.03186134, - -0.030020874, 0.039184067, 0.028285239, -0.025158275, 0.029071873, - -0.012699066, -0.017173601, -0.033831615, -0.005762525, -0.01513714, - -0.04037028, -0.015020813, 0.004485023, -0.023274379, -9.1400376e-4, - 0.010149552, -0.037817962, 0.0679766, -0.02449744, 0.010031107, - 0.034158587, -0.012117917, 0.006441911, 0.0043970756, -0.012452746, - -0.04328332, -0.002481323, -0.006035131, 0.04465307, -0.016161703, - 0.0051756506, 0.001117705, -0.014079313, -0.017607763, -0.011674591, - -0.014503321, 0.051498458, 0.035127334, -0.011985708, -0.024729066, - -0.0050102235, -0.00903966, 0.040383317, -0.010202384, 0.03374183, - 0.03658336, -0.024904905, 0.011246322, -0.049047742, 0.010999582, - -0.048201535, -0.026325105, -0.054973416, -0.046429858, 0.048164554, - 0.028707856, 0.021437347, 0.0072338735, -0.037097353, -0.014968398, - 0.037969913, 0.025925366, 0.022560425, 0.005887733, 0.034855857, - -0.020501856, -0.013012139, 0.004492623, 0.016902745, 0.07871012, - 0.019048417, 0.0460655, -0.029797992, -0.017297512, 0.039327327, - -0.0019571362, 0.012038028, -0.06315243, 0.051137168, 0.0205115, - -0.01619411, 0.00712621, -0.0041762413, 0.02257193, -0.00854413, - 0.013173332, 0.024385115, -0.02399335, -0.043055158, 0.0154893575, - 0.028683376, -0.0290474, 0.032688018, -0.024211803, -0.04058558, - 0.02467685, 0.045912422, 0.0061688386, -0.022006879, 0.035808902, - 0.033275988, -0.07550755, -0.021742467, -0.043189444, 0.0015098223, - -0.0262305, -0.054253113, -0.008113453, 0.008717322, -0.05032373, - 3.145547e-5, 0.012352844, 0.02598787, 0.004205688, 0.0056006676, - -0.0416098, -0.011709314, 0.03739319, 0.03856077, 0.07541228, - 0.0049177287, -0.031995602, -0.032775775, -0.03986236, -0.03515794, - -0.05265475, -0.0081584165, 0.007402526, -0.045283366, -0.0333707, - 0.046599735, 0.024640176, 0.01756105, 0.009699216, -0.080777906, - 0.0047637112, -0.020580268, -0.01107937, 0.032577656, -3.358544e-4, - -0.0011918988, 0.020146396, -0.001588315, -0.060035832, -0.022843624, - -0.020287005, -0.023007274, -0.017317755, 0.002855943, 0.034321103, - 6.345076e-4, 0.035789765, -0.008182119, -0.01331327, 0.03209182, - 0.046991423, 0.00603815, -0.04800216, -0.0031126575, 0.0030605758, - -0.025284484, -0.02714587, 0.012033989, 0.006155746, -0.020426853, - -0.008586087, -0.020189324, 0.006429842, 0.0062274644, 0.041983195, - 0.02008158, -0.008062199, 0.031994864, 0.00322835, -0.042036057, - 0.034444936, -0.010328549, -0.02289568, -0.019727107, -0.03849825, - 0.0068690656, -0.055220686, 0.00237583, -0.052383155, -0.025777847, - -0.019365137, 0.009020348, -0.07328059, -0.012699005, 0.039647803, - -3.2291075e-4, -0.018021982, -0.025357423, -0.026018947, 0.0536989, - 0.025891509, -0.05313042, 0.007028406, 6.739796e-4, 0.03572402, - 7.7822927e-4, 0.058996823, -0.008726752, -0.018934311, 0.0025956875, - 0.0738283, 0.018226545, -0.022484535, -0.014086647, -0.0039785397, - 0.00592903, -0.03831335, 0.011024374, -0.094207704, 0.055624567, - -0.03171419, 0.012203325, 0.01994124, -0.056615703, 0.01530015, - -0.0070078787, -0.004092483, -0.012413773, -0.045867763, -0.0334463, - -0.049966697, -0.034294575, -0.021273507, 0.026135324, -9.835782e-4, - -0.041712232, -0.01533863, -0.006742529, 0.017123973, -0.024719184, - -0.009529801, 0.0093793785, 0.033058614, -0.015917309, -0.046215095, - -4.0698593e-4, 0.014417165, 0.029979143, -0.02292331, 0.0068830494, - 0.06571891, -0.049944285, 0.02971693, -0.045228697, 0.019726451, - -0.03220308, -0.02629191, 0.0722164, 0.05301128, 0.026414756, - -0.049148783, -0.029347023, 0.03895701, 0.035254546, 0.041328266, - -0.029624615, 0.014488768, -3.9291022e-5, -0.005471393, 0.06974127, - -0.012182996, 0.009659018, 0.038502242, 0.032433953, 0.033134457, - 0.015939133, -0.005420947, 0.02084244, 0.061784294, 0.017564023, - -0.004042525, 0.007752645, -0.008623165, -0.021898244, 0.05862651, - -0.00569737, -0.016209839, 0.075663045, 0.015780162, -0.034929413, - 0.06251339, -0.03173644, -0.042107515, 0.0021125767, 0.031583596, - -0.026518587, 0.03704018, 0.010210535, -0.0067582093, 0.02375644, - -0.007119868, 0.039821427, 0.0014145734, 0.03782171, 0.01208592, - -0.022792539, 0.028148044, -0.022999037, -0.008027787, -0.0045386143, - 0.028364131, 0.028491708, 0.039831143, -0.08703765, 0.07527179, - 0.008068545, 0.0186906, 0.009339772, -0.011390577, 0.015044064, - -0.027673371, 0.053375565, -0.020863535, 0.018121308, 0.008473729, - 0.01917161, 0.07677479, -0.021759728, 0.04952624, -0.0017831691, - -0.032931417, 0.04665719, -0.025418682, 0.0148070725, -0.011259618, - -0.028021911, 0.008618892, -0.016191391, 0.007843957, 0.0013387427, - -0.01607247, 0.008483742, 0.028582696, -0.014843326, -0.03579821, - 0.014843623, -0.013694805, 0.039877016, -0.04742059, 0.028106818, - 0.05613851, 0.064718805, -0.007889744, -0.04526294, 0.0024817705, - -0.004371134, -0.004078814, -0.027283555, -0.029446786, 0.010646019, - -8.458421e-4, 0.017260224, 0.020377597, -0.03526189, -0.015051093, - 0.0678782, 1.625391e-4, -0.022884369, 0.021187792, -0.022944825, - -0.01856312, -0.021527741, 0.02759112, 0.0112243155, -0.04680088, - 0.0017052733, -0.037980035, -0.020081066, -0.009837956, 0.041186024, - 0.04744005, 0.020828972, -0.014480717, 0.013012771, -0.007761261, - -0.023930801, -0.008563276, 0.004698905, -0.028352302, -0.013428995, - -0.028501473, -0.009234723, -0.004513148, 0.0212592, 0.02006466, - 0.01754561, -0.028893454, 0.038137633, 0.017453115, 0.015061307, - 0.007869365, 0.021957258, 0.054835364, 0.011890789, -0.012479959, - -0.0039842534, 0.08058427, -0.01813006, 0.08071561, -0.022844568, - 0.025027698, -0.015783468, -0.076029584, -0.044821892, 0.014514039, - 0.0081597185, -0.05254071, 0.009189764, -0.017255092, -0.07637792, - 0.0020481213, -0.05133945, 0.008344966, 0.05577833, -0.049499273, - 0.012809968, 0.0012541468, 0.035164606, 0.005538694, -0.045366935, - -0.019252662, 0.013760825, 0.008501923, -0.024898471, 0.02543136, - -0.015027965, 0.004646994, -0.009065967, -0.03566829, -0.046499822, - 0.04275139, -0.044519883, -0.031004058, -0.04168591, -0.010970195, - -0.012407986, -0.0141239725, 0.014638785, 0.014940323, 0.037342343, - 0.04199147, 0.018342445, 0.027816214, 0.015487538, 0.058165606, - 0.013424132, -0.0063885874, 0.017179469, -0.048024297, -0.0045530684, - 0.012485919, -0.055763133, -0.0153356185, 0.020127438, -0.05067111, - -0.02913874, 0.017777126, -0.011821592, 3.1905973e-4, 0.0076983855, - -0.034591004, -0.013019831, -0.0150638595, 0.02289319, -0.009334976, - 0.05164876, -0.006780661, -0.055973273, -0.010717055, -0.027080933, - -0.056340955, -0.011270797, 0.008893009, 0.001458303, 0.008562707, - -5.99711e-4, -0.020189287, -0.051912878, -0.023327483, 0.011513627, - -1.9174714e-4, -0.04813801, -0.019875761, -0.018555935, -0.031658407, - -0.045463786, 0.011100039, -0.04796069, -0.035967834, 0.035574056, - -0.011062466, -0.013597204, -0.04839358, -0.05003772, 0.049216025, - 0.016508725, 0.029148355, 0.052654427, 0.01618003, -0.0031872338, - -0.07606416, 0.012577992, -0.0034172223, 0.0011852001, -0.045428302, - -0.021269215, 0.0434352, -0.016531514, 0.015791204, 0.02499804, - -0.009439094, 0.046521742, -0.064404555, 0.028997615, -0.0027163515, - -0.0187342, 0.009211576, 0.08181004, -0.018687867, -0.01895685, - 0.024545599, 0.0068044434, 0.041584935, -0.044624966, -0.010313155, - 0.033884685, -0.03625084, 0.031832352, 0.005291779, -0.0459525, - -0.027298152, 0.036468957, -0.021711994, 0.031290922, 0.020926677, - 0.008920503, 0.043998096, -0.006113626, 0.054927118, -0.042265233, - -0.010203805, 0.059215922, 0.008499616, 0.014092533, -0.029768491, - -0.006409526, 0.028355086, 0.031658147, 0.03866652, 0.00472837 + "paletteEmbedding" : [ + 0.0015423129, + 0.016129043, + 0.013101662, + 0.057491686, + 0.023053663, + -0.025113864, + 0.013853049, + 0.042719666, + -0.015182035, + -0.021155404, + 0.014696647, + -0.030119527, + -0.020261848, + 0.014383405, + 0.016468056, + 0.018391779, + -0.010281023, + -0.019461202, + 0.0028848902, + -0.021587452, + 0.04736932, + 0.05127611, + -0.022145325, + 0.011319165, + -0.004956227, + 0.039963312, + 0.071355365, + 0.0059860437, + -0.0017829067, + 0.013858658, + -0.009978213, + 0.014051067, + -0.011297033, + 0.006634503, + 0.026401376, + 0.033238284, + 0.020818802, + 0.032322604, + 0.008830684, + -0.015922777, + -0.016518064, + 0.0021948612, + 0.010427915, + -0.03186331, + 0.045665387, + -0.01241618, + 0.046691675, + 0.03131302, + -0.02841756, + 0.0934168, + 0.038690742, + -0.022427522, + 0.021434298, + -0.034188926, + 0.047967795, + 0.025503553, + 0.013366529, + -0.017324023, + 0.022454796, + 0.036168493, + -0.004355111, + 0.061194062, + -0.020572195, + -0.012828747, + -0.018591788, + 0.012757873, + -0.035622764, + 0.06858186, + -0.03325852, + 0.0334323, + 0.010526958, + -0.016450344, + 0.0727621, + -0.042847723, + -0.030955195, + 8.069224E-4, + -0.07032101, + 0.046827324, + 0.033189695, + -0.039475065, + 0.014452247, + 0.057842303, + 0.0048053325, + 0.0062308055, + 7.2779917E-6, + -2.9872372E-4, + -0.06665413, + -0.02234747, + 0.015590821, + -0.024126412, + -0.09367447, + 0.00761201, + 9.129584E-4, + -0.0054003163, + 0.026977168, + 0.018483046, + 0.007313816, + 0.023653142, + -0.02430671, + 0.0070370785, + 0.029623883, + -0.029887278, + -0.03556933, + 0.039220918, + 0.030438008, + 0.009354464, + -0.08527091, + -0.008782047, + -0.031086948, + -0.03587737, + -0.0087448405, + 0.023777593, + 0.06962934, + 0.0079577295, + 0.0360506, + -0.014965941, + 0.031829856, + 0.009700263, + -0.036682542, + 0.027365012, + -0.010708304, + 0.0055641006, + 0.0071112225, + -0.008956886, + -0.011283639, + -0.050088182, + 6.394881E-4, + 0.05109216, + -0.010966421, + -0.0073954207, + -0.060611073, + 0.01294608, + -0.009373446, + -0.018604396, + -0.0243943, + 0.07702555, + 0.028802617, + 0.03136985, + -0.019603916, + 0.027985888, + 0.037371278, + -0.032375768, + 0.048441846, + 0.030763615, + 0.03616264, + 0.0012892914, + -0.047395334, + -0.034362577, + 0.04118298, + -0.030141454, + -0.06285686, + -0.015996182, + -0.016639676, + 0.0051096943, + 0.029570071, + 0.015241742, + -0.0354656, + 0.011789739, + -0.016888773, + 0.043813925, + 0.003147197, + -0.0041050506, + -0.009130684, + -0.07788744, + 0.019361025, + 0.018102381, + 0.0143923005, + -0.0020224964, + -0.026581032, + 0.017559353, + 0.057890717, + 0.03171629, + 0.026151862, + 0.06499403, + -0.032079548, + 0.024045233, + 0.005492822, + -0.016983328, + -0.014414356, + 0.033221416, + 0.036062203, + 0.007167187, + 0.032010645, + 0.0035288197, + -0.051795967, + -0.01758802, + -0.072171256, + -0.03300163, + -0.06143583, + -0.037272394, + -0.028948126, + -0.060892973, + 0.044678975, + -0.021090163, + 0.020546906, + -0.06792228, + -0.005244059, + -0.0063025053, + -0.0030387386, + 0.06676787, + 0.045448165, + 0.02867982, + -0.04049585, + 0.016950117, + -0.02451079, + -0.04004158, + 0.009945155, + -0.058285546, + -0.08522701, + -0.026726807, + 0.02881948, + 0.018855438, + -0.044434194, + -0.02132999, + 0.008918124, + -0.032421906, + 0.029394114, + -0.01196707, + -0.019315321, + -0.0038235872, + -0.009166783, + -0.031116907, + 0.051544134, + 0.010671033, + -0.05735199, + 0.019967616, + 0.027097834, + -0.021527544, + 0.011521773, + -0.045376733, + -0.0030542952, + -0.016313547, + -0.00412661, + -0.039094146, + -0.002744265, + 0.0031818324, + 0.029136606, + -0.017763551, + 0.017800724, + 0.029109862, + -0.009280183, + -1.924897E-4, + 0.02104505, + 0.023639712, + -0.0039173095, + 0.047119975, + -0.014951238, + 0.04115507, + 0.04995612, + -0.01531255, + 0.011888511, + 0.0022566977, + 0.042651203, + 0.024620965, + 0.06361845, + -0.014746311, + 0.01554753, + -0.037566982, + -0.036649246, + 0.025929084, + 0.013565869, + -0.033389743, + 0.0302448, + 0.03930407, + 0.028999582, + -0.017314997, + -0.028546145, + 0.05278752, + 0.010794002, + -0.05339654, + -0.008685217, + -0.024752237, + 0.014565206, + 0.007947224, + 9.729177E-4, + -0.052501686, + -0.0110047115, + 0.008324097, + -0.020353999, + -0.012134204, + -0.005171332, + -0.009220909, + 0.08791956, + 0.044482894, + -0.0068152617, + -0.03405849, + 0.025353938, + 0.009840923, + -0.022022, + -0.007980881, + 0.0044775973, + -0.0054821996, + -0.0024410672, + -0.02315686, + -0.017010413, + 0.022634331, + -0.0084250625, + -0.0044614514, + -0.014201864, + -0.021688389, + -0.021456894, + -0.025579114, + -0.013346257, + 0.0019734262, + -3.1205604E-4, + 0.031460024, + -0.006886205, + -0.042315505, + 0.013839481, + -0.040271755, + 8.19195E-4, + -0.012372496, + -0.052546877, + 0.02194588, + 0.023681175, + -0.025657514, + 0.018097581, + 0.006984285, + -0.035407174, + 0.0010490372, + -0.0016922676, + -0.024498722, + 0.0035044614, + -0.08028693, + 0.0098446645, + -0.07071457, + -0.04094622, + -0.030651063, + -0.017022343, + -0.024692357, + -0.006579679, + 0.03873095, + -0.026093144, + 0.00311042, + 0.05197308, + -0.012916281, + -0.030672546, + -0.049522486, + -0.05079952, + -0.029144147, + -0.008385751, + 0.023188025, + -0.027284868, + 0.02964669, + 0.011440671, + 0.030580927, + -0.015220753, + -0.029748352, + 0.014997333, + 0.010433956, + -0.044324365, + -0.039731435, + 0.01819875, + -0.005187431, + -0.0456144, + -0.02250143, + -0.017001025, + 0.010729646, + -0.025246192, + -0.07867278, + -0.011124827, + -0.0073713227, + 0.043419763, + 0.005727789, + 0.04670111, + -0.023808917, + 0.074384816, + 0.00636312, + 0.04848017, + 0.017531432, + -0.028654037, + -0.017395789, + -0.040260326, + -0.033862043, + 0.008008398, + 0.014088, + 0.020862848, + 0.020269208, + -0.009695431, + 0.009622204, + 0.03571623, + -0.00693758, + 0.022622349, + 0.023114512, + -0.014748801, + -0.015130221, + 0.033381578, + -0.040988006, + 0.04159895, + 0.033271037, + -0.04129858, + -0.03096077, + 0.010253924, + -0.011522279, + -0.023138087, + -0.041965302, + -0.040386148, + -0.02070714, + -0.0084288325, + 0.027511852, + 0.00459707, + -0.04943578, + 0.024317443, + 0.007907973, + -0.026798643, + -0.0023655803, + 0.044794675, + 4.662907E-6, + -0.05111007, + -0.01758869, + -0.01775254, + -0.0528297, + 0.009023586, + -0.005328802, + 0.012907246, + 0.011010672, + -0.0145446295, + -0.00846716, + 0.011163191, + 0.0046185367, + 0.030037662, + 0.015524206, + -0.07404905, + -0.002282891, + -0.004341218, + -0.028287968, + -0.038450867, + 0.03516995, + -2.0334493E-4, + 0.02270818, + 0.027781732, + -0.0030360378, + 0.030717734, + 0.014850617, + 0.009054647, + 0.020927416, + -0.0046745366, + 0.0069778697, + -0.031212164, + 0.077644385, + -0.023618788, + -4.031341E-4, + 0.007974024, + 0.0420238, + -0.006844132, + -0.017853178, + 0.040664833, + 0.0052864808, + 0.0059949374, + -0.0041948827, + -0.056294374, + 8.104769E-4, + -0.042227034, + -0.020083325, + 0.0010945494, + -8.290006E-4, + -0.0052567176, + 0.024768827, + 0.0024888208, + -0.015020396, + -0.0020308925, + -0.010482425, + -0.07109064, + -0.007896535, + -0.03776632, + 0.016746806, + 0.02337214, + 0.027038196, + 0.007297596, + -0.029659048, + -0.027689366, + -0.0024731047, + -0.018397786, + -0.011370321, + 0.00591245, + -0.017731009, + 0.022772266, + 0.024008866, + 0.016098147, + -0.028009431, + 0.013392999, + 0.011434734, + 0.019080553, + 0.009938539, + 0.030457107, + 0.0055640936, + -0.02581446, + 0.10194103, + -0.01804568, + 0.007162705, + -0.023428576, + 0.011401709, + 0.021311061, + 0.020569852, + 0.012001154, + -0.018856315, + -0.042066276, + 0.026875341, + 0.025466453, + 0.032382578, + 0.017560344, + -0.073119104, + 0.027681049, + 0.021745797, + 0.011031371, + 0.0066900337, + -0.04558376, + 1.1688453E-4, + -0.017650599, + 0.0032606067, + 0.046901178, + -0.028142465, + 0.01336078, + -0.047079824, + 0.051292643, + -0.03549279, + -2.1741133E-4, + -0.0036622677, + 0.017603636, + 0.00702684, + -0.0053850496, + -0.048335582, + 0.054534744, + 0.003749918, + 0.07160817, + -0.0052912207, + -0.0039130496, + 0.0114947595, + -0.024110992, + 0.009649226, + 0.039908774, + 0.013137186, + 5.825655E-4, + 0.077432066, + 0.058522906, + 0.016365185, + 0.018058654, + -0.004043522, + -0.025922557, + 0.026086757, + -0.0039137146, + 0.03563189, + -0.04363944, + 0.043475114, + 0.04849175, + -0.04327324, + 0.0331131, + -0.0037197012, + 0.021433724, + -0.021061894, + -0.008085968, + 0.008389559, + 0.03524788, + 0.043071516, + -0.014709126, + -0.014216132, + -0.0014785281, + -0.017499214, + -0.021971952, + 0.01624906, + -0.002254684, + 0.020026384, + -0.0075696595, + -0.0077442056, + -0.033100087, + 0.017700123, + -0.022100652, + -0.017363582, + -0.0143606365, + 0.058436703, + -0.01421858, + 0.008211352, + -0.062397085, + 0.01643942, + -0.01809079, + 0.045261778, + 0.04374525, + -0.060818978, + 0.00919607, + -0.008730144, + -0.027385134, + -0.11404514, + -0.022794995, + 0.025866993, + 0.004012686, + -8.5162086E-4, + 0.008385603, + -0.040817402, + -0.028861938, + 0.012558963, + 0.02091616, + -0.07351988, + 0.040767334, + 0.05042156, + 0.012008167, + -0.046403833, + 0.006484007, + 0.018771281, + 0.03567082, + 0.014531591, + -0.029563222, + -0.0070427004, + -0.01713167, + -0.0032658377, + -0.040373117, + 0.033800617, + -0.04487637, + -0.016931403, + 0.0169445, + 0.030152522, + 0.006801622, + -0.0041051903, + -0.013679726, + 0.021639792, + -0.03472563, + -0.025621476, + -0.02278297, + 0.010484846, + -0.0072449953, + -0.01087186, + -0.065576755, + 0.07923872, + 0.032216787, + 0.0031938497, + 0.03833954, + -0.004575234, + -0.0131671615, + 0.021410199, + -0.03716102, + -0.016822482, + -0.062401146, + -2.3940462E-4, + 0.0075422116, + -0.013293211, + -0.08268115, + -0.016616944, + -0.059238836, + -9.2041213E-4, + 0.0038334576, + 0.014660876, + -0.009411909, + -0.004036502, + 0.03065444, + -0.018913383, + -0.07385805, + -0.001707207, + -0.022966046, + -0.011374319, + -0.016729953, + -0.021167405, + 0.055742662, + -0.024685571, + 0.035573617, + -0.029559916, + -0.016697388, + -0.046249833, + -0.03982383, + -0.068954624, + -0.0050996593, + -0.023520464, + 0.009259087, + -0.0058683725, + -0.04551834, + 0.00259512, + 0.014712783, + -0.002283794, + 0.007668681, + 0.02392375, + -0.038125005, + 0.05691295, + 0.03549618, + -0.024818324, + 0.04465293, + -5.825345E-4, + 0.05399709, + -0.059547264, + 0.04062983, + 0.0031415226, + -0.039811444, + 0.008103672, + 0.0023080488, + 0.05307174, + 0.043769635, + 0.06051252, + -0.06806169, + -0.014604017, + -0.054554183, + -0.003881257, + 0.008581118, + 0.02990788, + 0.020718535, + -0.053698175, + -0.014095139, + 0.061786693, + 0.005067586, + 0.07817354, + -0.020363815, + -0.010268039, + 0.023222096, + -0.047594402, + 0.059331264, + 0.034076877, + -0.02615438, + 0.059015453, + -9.007376E-4, + 0.023962492, + 0.08241586, + -0.010950508, + 0.03809529, + -0.05245092, + 0.017130898, + -0.014001874, + -0.015223099, + 0.033698794, + -0.022919245, + -0.0294989, + 0.028258245, + -0.009565541, + 0.04542698, + 0.017222025, + 0.008900044, + -0.011319652, + 0.014443207, + -0.06103933, + 0.021047685, + -0.035180468, + 0.014431673, + -0.01643638, + 0.038128518, + -0.040497843, + 0.024035646, + 0.011565972, + 0.0038708886, + -0.012096868, + -0.028718445, + -0.045568086, + -0.013234077, + -0.04503406, + 0.027420882, + 0.009106203, + 0.02415857, + 0.0289397, + -0.028144168, + -0.012623298, + 0.044539932, + -8.708421E-4, + -0.015865872, + 0.026208347, + 0.0215046, + -0.027443854, + -0.027525833, + 0.019443728, + 0.0017488716, + -0.03510261, + 0.001458908, + -0.015732016, + 0.030325567, + 0.037382912, + 0.007787043, + -0.0013895762, + 0.020326702, + 0.08744192, + 0.0032349578, + 0.00433175, + 0.042269114, + 0.034947973, + 0.0047400407, + 0.00543267, + 0.018840056, + -0.0205409, + -0.004565415, + -0.034073293, + 0.0065484587, + -0.026295437, + -0.0024938618, + 0.0028696842, + 0.013175853, + 0.023082882, + 0.027157273, + 0.076190926, + 0.03260021, + -0.022215385, + -0.038593583, + -0.037903674, + 0.037154272, + 0.00874501, + -0.031699, + 0.022631666, + -0.025172517, + 0.03427746, + 0.015173135, + -0.019270761, + -0.07493444, + 0.0051741214, + -0.017071215, + 0.0214751, + 0.0012139112, + 0.02521613, + -0.0073577473, + -0.012750126, + 0.009725886, + 0.019495253, + -0.086726405, + -0.03299643, + 0.01316144, + 0.004894255, + -0.039822515, + -0.03846815, + -0.006459738, + 0.07412587, + 0.0056454567, + 0.0068763904, + 0.011097431, + 0.013275708, + -0.038050767, + -0.007923556, + 4.3429487E-4, + 0.016562175, + 0.009774573, + -0.0071350313, + -0.021417845, + 0.038838927, + 0.024307644, + 0.019152023, + -0.020959828, + 0.0063275686, + 0.016003441, + -0.02113951, + 0.0014776499, + 0.02105549, + 0.031047238, + -0.026515702, + 0.0025389981, + -0.05697578, + -0.027615968, + -0.07853251, + 0.017680602, + -0.03879575, + -0.0424743, + 0.004183611, + 0.022275059, + -0.0342293, + -0.021864315, + 0.0056612706, + 0.0046281596, + 0.016513389, + -0.04999524, + -0.006501834, + -0.031904895, + 0.012274448, + 0.018277878, + 0.04294503, + -0.01772665, + 0.02204391, + -0.043884788, + 0.07752569, + 0.0429695, + -0.06313298, + -0.040430766, + 0.032259326, + -0.017266076, + -0.026442247, + -0.0028160263, + -0.024084834, + -0.025685357, + -0.0062979646, + -0.0043296507, + -0.03271181, + -0.017613556, + 0.0095275855, + 0.057046775, + 0.043818764, + 0.013710135, + 0.06960336, + 0.04964965, + 0.023526764, + 0.010092185, + -0.04707893, + -0.02828388, + -0.0194034, + -0.0045022396, + 0.010129518, + 0.0043562595, + 0.03615522, + -0.021718659, + -0.012766256, + 0.039994437, + -0.0049344148, + 0.011430752, + 0.014785425, + -0.032617647, + -0.050176125, + 0.0055661327, + -0.021080874, + -0.041721817, + 0.039830238, + -0.04928618, + -0.00281977, + 0.012087391, + -0.0032978435, + 0.010399881, + 0.035965163, + 0.0025152538, + 0.004921797, + 0.011093468, + 0.0074534793, + 0.09231712, + -0.029881071, + -0.055224955, + 0.025449963, + -0.02414454, + -0.023694685, + 0.051565334, + -0.0126962485, + -0.02395233, + 0.02029789, + 0.014622289, + -0.0018513049, + 0.07727618, + 0.013628844, + -0.015297582, + -0.01624184, + 0.020612929, + -0.010032294, + 0.008753556, + -0.007710847, + -0.037880424, + -0.034953274, + -0.011161095, + -0.010485043, + 0.043982126, + -0.01806706, + -0.052104745, + 0.028705435, + 0.037057545, + 0.0011784628, + 0.004729859, + -0.017144848, + -0.08595344, + -5.8720546E-4, + -0.053361848, + -0.002595411, + 0.018139943, + 0.008212718, + -0.042960357, + -0.047608074, + 0.039413422, + -0.0030912256, + 0.023657484, + 0.0061289347, + 0.03945177, + -0.03717153, + 0.021911679, + 0.021885723, + 0.0085885385, + -0.05655429, + 0.05089115, + -0.035583798, + -0.016340327, + 0.010052701, + 0.019569846, + 0.05520004, + 0.01827231, + -0.021156937, + 0.026428297, + -0.007810395, + 0.050688557, + -0.018625673, + 0.0044801324, + -0.014443024, + 0.0024325363, + 0.010982624, + 0.027243786, + 0.013798108, + 0.043007154, + -0.0144830365, + 0.008678716, + 0.010717374, + 0.034515258, + -0.026316736, + -0.006622135, + -0.033114612, + -0.02192473, + -0.0021230488, + -0.008599624, + -0.039779015, + 0.04365223, + 0.0039998284, + -4.130813E-4, + 0.030399894, + 0.029833682, + -0.017268099, + 0.035430457, + 0.023813598, + 0.037932795, + -0.036303796, + 0.020681093, + -0.025995139, + -0.022308784, + 0.0076953494 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json index fdad2e60b..c35b0e175 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json @@ -1,1339 +1,5251 @@ { - "description": "images linked with the same work", - "createdAt": "2023-11-21T14:25:44.126121Z", - "id": "rzdabpna", - "document": { - "modifiedTime": "2005-03-11T21:05:37Z", - "display": { - "id": "rzdabpna", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images linked with the same work", + "createdAt" : "2024-11-14T14:37:56.502353Z", + "id" : "ovet6upc", + "document" : { + "modifiedTime" : "1979-08-24T17:45:33Z", + "display" : { + "id" : "ovet6upc", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/1KR.jpg/info.json", - "linkText": "Link text: UG3iHqu", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", + "linkText" : "Link text: 96u9HFiRZ", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/1KR.jpg/info.json", - "linkText": "Link text: UG3iHqu", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", + "linkText" : "Link text: 96u9HFiRZ", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#03F652", - "source": { - "id": "0gpwg18n", - "title": "title-3s7xI6F0dO", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#530705", + "source" : { + "id" : "aawgyyy8", + "title" : "title-Wk9BGeV6UO", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "rzdabpna", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "0gpwg18n", - "sourceIdentifier.value": "Xa8L6WpxaN", - "identifiers.value": ["Xa8L6WpxaN", "GmIygfg3bH", "la2n3zKDfE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3s7xI6F0dO" + "query" : { + "id" : "ovet6upc", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "aawgyyy8", + "sourceIdentifier.value" : "ErLUg1OWaB", + "identifiers.value" : [ + "ErLUg1OWaB", + "22sQyoKXZb", + "Z3y3axc7PO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Wk9BGeV6UO" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.0022216795, 0.016658887, -0.015039459, 0.028230695, -0.009247482, - 0.0153682055, 0.002239302, 0.0017664022, 0.014319959, 0.011153164, - -0.009918152, -0.014897572, -0.03615889, -0.01855425, -0.00757459, - -0.0073661767, 0.007088243, 0.034535386, 0.0017249759, 0.0021019145, - -0.011616329, 0.022081602, -9.1416005e-4, 0.021388786, -0.022260336, - 0.0019996043, 0.0048370594, -0.037402295, 0.024927504, -0.0016222337, - -0.016930666, -0.008187854, 0.017899103, -0.012650861, -0.0029073814, - 0.00647816, 0.02398129, 0.008940429, -0.017809946, 0.013758724, - -0.025608089, -0.013663379, -0.007253676, 0.004744751, 0.010265458, - 0.0069278805, -0.0060193795, -0.007479142, -0.014574936, -0.01909478, - -0.0068734493, -0.021670649, -0.011005683, 0.010967668, 0.0012169355, - -0.01919577, 0.005018911, -0.014022215, -0.0028911384, 0.018678539, - -0.0013658185, 0.01255536, -0.028363178, 0.019242054, 0.013081176, - 8.7147934e-4, -0.011382991, 0.019931924, 0.012451578, 0.0032347545, - 0.013322416, 0.0060072844, 0.010686362, -0.0035161655, 0.012971096, - 0.0055717262, -0.010176208, -0.0240261, -0.009764011, 0.003590923, - 0.016654344, 0.01594876, 0.006644788, 0.016227486, 0.006536546, - 0.0049661705, -0.010584574, 0.0071449094, -0.02057733, 0.011008771, - -0.013085202, -0.011069867, 0.017181607, -0.0046113157, 9.53825e-4, - -0.032318875, -0.0047111153, -0.0043000337, 0.02548053, -0.006427948, - -0.022794722, 0.0042605493, -0.0018538794, 0.01237335, 4.244452e-4, - 0.016482554, -0.014698893, 0.003612042, -0.005370866, -0.009996391, - -0.0013286086, -0.0048264023, -0.017851595, 0.010535047, -0.016201377, - 0.0072939466, 3.326312e-4, 0.017082576, 0.010456762, -0.0033482173, - -0.004263475, -0.022131747, -0.008959276, 2.3372349e-4, -0.019081507, - 0.009361368, 0.0027301991, -0.001566202, -0.0141016515, 0.0028535197, - 0.0075282305, -0.03886095, 0.018514793, -8.612777e-4, 0.003243045, - 0.004092036, 4.4420987e-4, -0.0063497084, 0.028811878, 0.013897033, - 0.0054543517, -0.0030195625, -0.002418943, 0.006536831, -0.009858192, - 0.0044187075, -0.014845787, 0.011058399, -4.812597e-6, -0.009804364, - -0.023651851, 0.0073412894, 0.010468429, 0.0023264592, -0.025895052, - 0.017286384, -0.015566, -0.0054235742, 0.0015483815, 0.028024506, - -0.022131633, -0.00650481, -0.0028096652, -0.022384627, 0.005145494, - 9.7136776e-4, 0.007415998, -0.012044369, 0.025189515, -0.0068140095, - 0.006866717, -0.012261182, 0.022702184, -0.031220734, 0.021227235, - -0.013896999, 0.02369733, 0.006133356, -0.028558368, -0.012921898, - -0.0047799475, -0.02490286, -0.020759055, -0.002399738, -0.015786398, - 0.007946327, -0.019975891, -0.04000398, 0.015367841, 0.023779674, - -5.9174217e-4, -0.00839451, 0.0029094964, -0.018182438, -0.01797127, - -0.020082816, 0.006830594, 0.007817917, 0.0069606453, -0.029331377, - 0.013282849, 0.01957074, 0.012665224, -0.018894602, 0.023129363, - -0.03973629, 0.0030130013, -0.0053069256, 2.4314e-4, -0.009616178, - 0.019620962, 0.04056603, 0.0012905207, -0.0077339937, 0.026474457, - -0.011757831, 0.0011897762, -0.03684912, 0.01530813, 0.010628508, - 0.015443058, -0.026971275, -0.004183292, -0.024731388, -0.006301515, - 0.026341382, -0.006891921, -0.015066384, 0.009323026, 0.029350583, - -0.0029747162, 0.004526946, -9.995805e-4, -0.003632923, 4.9049634e-4, - 0.0060109906, 0.015906708, 0.021928605, 0.016868837, -0.016288497, - -0.016799133, 0.016956173, 0.009303217, 0.0064803055, -0.004061972, - 0.0021951692, 0.0042060437, -0.0085420115, -0.025706146, -0.0143053625, - -0.033197742, 0.0050558737, -0.016937377, -0.011293917, 0.021146962, - 0.018453406, 0.008743572, 0.014537167, 0.019686444, 0.009994379, - 0.0012053328, 0.0038960003, -0.022327965, -0.002637036, -0.008802009, - -4.8329605e-4, 0.013185792, -0.018259205, -0.006551524, -0.008654502, - -0.008616555, 0.003435477, -0.006073759, 0.026637185, -6.1099645e-4, - -0.008133763, 2.0422945e-4, 0.012437654, -9.230152e-5, 0.012544815, - 0.031385098, 0.011774692, 0.0117954295, 0.028184222, -0.00362674, - -0.027540583, 0.010597599, -0.01691059, -0.016961737, 0.009270038, - -0.019473005, -0.010572068, 0.01838499, 0.037776798, 0.0072606993, - -3.8420672e-5, 0.002137161, -0.01645269, -0.020404456, -0.0029329357, - 0.0019065649, 0.024894422, 0.011126987, 0.014704453, 0.0044573676, - 0.008650167, 0.0054064556, 0.0078441985, 0.005324844, 7.3330244e-4, - -0.007606113, 0.011752645, 0.019891337, -0.01922379, -0.018623587, - -8.6152053e-4, -0.031191628, 0.031528004, 0.014771667, 0.014200004, - -0.00940059, 0.0151681965, 0.0385384, -0.023063345, -0.019993136, - 0.014711902, -0.023920765, 0.008046221, -0.005174886, 0.004709994, - -0.007903706, 0.011493251, 0.00163972, 0.014108101, -0.005280415, - 0.01446205, 0.019883908, 0.021407438, -0.0010140192, 0.007946404, - -0.013650815, 0.016634349, 0.009054896, -0.016507775, -0.023022553, - -0.0035470247, 0.007583718, -0.0030187864, 0.030252397, -0.004324911, - 0.023784282, -0.028819794, 0.008353951, 0.009050695, 0.02045214, - -0.007816605, 0.003345297, 0.0095665995, 0.039313387, -0.0416926, - -0.012377657, -0.028215267, 0.005598084, -0.0045615765, 0.0030698688, - -0.026780745, 0.02037187, -0.021897748, -0.002704389, 0.021448154, - -0.0031849507, -0.02939064, 0.012180436, 0.010034025, 0.012855389, - 0.041702494, -0.021463886, -0.0055695963, -0.010569853, -0.002914142, - -0.0021184965, 0.017076317, 0.023255728, 0.028759176, -0.0018296088, - 0.011790693, -0.023244588, -0.0022648326, 0.0015829793, -0.027363429, - 0.020024195, 0.0013759191, -8.0133893e-4, -0.020845445, 0.025192164, - 0.008988255, 0.0025774897, 0.012624878, -0.013974807, -0.0038177143, - 0.003249912, -0.0049513583, 0.020347629, -0.0018253706, -0.0087503595, - -0.016800739, 0.023588011, 0.012794623, -0.009112216, 0.009752404, - 0.016866446, 0.0036746096, -0.019304529, 0.013798035, 0.01476185, - -0.010968723, -0.0319045, -0.00745036, 0.006284747, -0.00843364, - 0.013272459, 0.024581013, 0.004367558, -0.013655051, -0.012780863, - 0.012404019, 0.008468803, -0.009156575, 0.024180565, 0.0058096554, - -0.019430174, 0.008998771, 3.7788483e-5, -0.010275783, -0.009262331, - 0.018493619, -0.016116153, -0.01055347, -9.88877e-4, -0.013224926, - 0.012388368, -0.0026883148, 0.0017860711, 0.013188368, 0.0015019155, - 0.01240013, 0.0150773, -0.0051071057, -0.01612131, 0.024262896, - -0.022170242, 0.0161657, 0.011324553, 0.01664589, -0.0016248394, - 0.009502825, -0.008341128, -0.014724684, 0.010754824, -0.033716407, - -0.008699105, -0.010853027, -0.014599072, 0.005931514, 0.02135051, - 0.03876948, 0.010585833, -5.624732e-4, -0.009661053, 0.005529779, - 0.032847643, -0.008093549, 7.7348214e-4, 0.011080996, -0.0044873855, - -0.0023556806, 0.0011842436, -0.0122291, -0.029055359, 0.016376756, - 0.0071621547, 4.416856e-4, 0.012874308, -0.0022426113, 0.004516333, - -0.01583811, -0.020700451, -0.009566699, 0.010396518, -0.015929969, - -0.0031717713, -0.009870077, -0.012567015, -0.013935862, -0.007431504, - 0.0030597874, 1.0167635e-4, -0.022766508, -0.03368251, -0.019145198, - 0.012493717, -0.008641007, -0.014500494, -0.012354614, 0.0025875848, - -2.9332793e-4, 0.02107546, -0.004026081, -0.0069596698, -0.0052041137, - 0.027665034, 0.018533478, -0.003504632, 0.025214517, -0.02949451, - -0.001901363, 0.024379635, 0.01388051, -0.0018830972, 0.008422536, - 0.0045293584, 0.008972903, 0.026925245, -0.015258698, -0.006446046, - 1.8853867e-4, -0.02791288, 0.0023950697, -0.008587942, -0.026146943, - -0.0010862695, 0.009993049, 0.0052309707, 0.020676093, -0.011985154, - -0.009343037, -0.0013237066, -0.0020068267, 0.018514613, 0.004655861, - 0.008025803, 0.01095323, 0.011580263, -0.010709657, -0.013901055, - 0.007362782, 0.012719796, -0.011512108, 0.034093756, 0.0056968955, - 0.0030286456, -0.012770967, 0.018603211, -2.4070033e-4, -0.017735891, - 0.015390451, -0.012845958, -0.016481096, 0.002137142, 0.013700618, - 0.04327057, -0.0049108546, 0.004286679, 0.0226823, 0.00374307, - -0.013246446, 0.020498756, 0.031541634, 0.00853796, 0.009367175, - 0.020824574, 0.013953884, -0.025911426, -0.0017579622, -0.008424569, - -0.0021165938, -0.0348714, 0.0030284042, -0.0015831571, -0.017286396, - 0.016671585, -0.0060019037, 0.012476957, 0.02047779, -0.005360133, - -0.0017305376, 0.007854104, -0.012746857, 0.032413207, -0.011465639, - 0.011409056, 0.019916134, -0.008714661, -0.0143475, -0.014474259, - 0.011682768, 0.0060919053, 0.03051539, -0.012832516, -0.0075399755, - 0.009823443, 0.023978245, -0.004618501, -0.015011576, 0.028661028, - -5.462657e-4, -8.9308544e-4, 0.020601565, -0.017755458, 0.0048989006, - 0.0051428187, -0.008644644, 0.026580796, 0.026261335, -0.0037637074, - -0.0049027014, -0.006088141, -0.03706254, 0.019405298, -0.0010978824, - 0.0036084405, -0.007998474, -0.012733701, -0.0020478454, 0.0059619267, - -0.006996894, 0.016405266, 0.022995092, 0.018739523, 0.012005381, - 0.00560905, 0.021311218, -0.020783432, -0.0010565027, 0.009244829, - -0.032244112, 0.0059231124, 0.0035978823, 0.0023125324, 0.009115135, - -0.033637255, -0.021916382, 0.0018597476, -0.0064834612, 0.017975781, - -0.0035366984, -0.02042117, 0.021039344, 0.025667103, -0.018091742, - 0.0025448673, -0.006124316, -0.013050337, -0.0063759955, -0.043697644, - -0.014107919, -0.017984856, 0.016861651, 0.01505209, -0.011272824, - -0.017865894, 0.005358318, -0.013871258, -0.006235105, 0.007627765, - -0.0092194695, -0.012811485, 0.020006057, -0.033927675, -0.0048917644, - 0.010212347, -0.0012702419, 0.006306182, 0.0066840155, -0.019524314, - 0.008716964, 0.0049596983, 0.016703416, 0.0072092116, 0.002595509, - -0.036787756, 0.013163761, 0.014270332, -0.0019044956, 0.007385191, - 0.019107461, 0.015220605, 0.0064837257, 0.028486572, 0.007842642, - 0.008651867, 0.0012971234, -0.009155016, -0.009971736, 0.0056748497, - 0.006718617, 0.018425431, -0.014167633, 0.021264706, 0.017044066, - 0.01199723, 0.025078563, 0.0012820965, 0.0010534048, -0.006948048, - 0.007944716, 0.03199519, 0.027053544, -0.008299174, 0.008823934, - 0.020393595, -0.013064361, 0.0069148657, 6.085416e-4, -0.004421836, - 0.0029772178, -0.024633467, -0.03907048, -0.0027855746, 0.013272204, - -0.008049738, 0.00671992, -0.019412208, -0.020497976, -0.0101221325, - -0.021661753, 0.0044002263, -0.013514475, 0.0023265155, 5.1826215e-4, - 0.0059388303, 0.0035345475, -0.014057859, 0.0092584565, 0.010215478, - -0.006633832, -0.018492708, -0.012873386, -0.008369683, 0.0027553458, - -0.020297904, 0.0031845418, 0.03182112, 0.0239821, 0.0074207666, - 0.017776577, 0.021390129, -0.008980191, -0.009791383, 3.059941e-4, - 0.0091165155, 0.016833099, 0.03337298, -0.007098928, 0.026579808, - 0.009768351, -6.120182e-5, -0.0062102266, -0.020855712, -0.006380966, - -0.01726293, -0.013665916, 0.027859777, 0.016878415, -0.007945031, - -0.016665444, 0.0137082115, -0.021015821, -0.0040232604, -0.020296354, - 0.007779626, 0.008902345, 0.012299706, -0.016958948, -0.003141484, - -0.0013779858, -0.0042791814, 0.010445787, 0.028229449, 0.0023325272, - -0.016922707, 0.0029825752, -0.035995383, 0.0032094268, -0.010196043, - 0.0069877156, 0.0022931308, -0.008202562, -0.024956917, 0.01553815, - 0.010195846, 0.010486576, -0.027277453, -0.0021709504, 0.024013681, - -0.016257739, 0.017298574, 0.015235733, 0.002606508, -0.0067328145, - 0.010665324, -0.02116388, -0.0048443056, 0.018144673, -6.5143575e-4, - 5.822941e-4, -0.0014952995, 0.020159645, -0.0059886095, 0.0052943015, - -0.020501288, 0.0017026322, 0.017207464, -0.0042316983, -0.0062118936, - -0.0057410477, -0.014572601, -0.0022261513, -0.0140090175, 0.019987488, - -0.006658909, -0.02147157, -0.01056451, -0.0112265535, -0.003154079, - -0.021478783, 0.027922431, -0.009858118, 0.002306744, -0.010025192, - 0.013217542, -0.0068132123, -0.014800152, 0.0056235422, -0.019728456, - -0.015569588, -0.009000461, 0.0058614705, 0.008608967, -0.022961969, - -0.011484078, 0.0029891713, -0.009285387, 0.026420671, 0.005044218, - -0.030757679, -0.0069268774, 5.441645e-4, -0.019542659, -0.0034487997, - 0.01252639, -0.0022323588, -0.021591103, -0.025938418, 0.0022333532, - 0.0341789, 0.028596167, 0.013088771, -0.0062077, -0.023230614, - 0.008695953, 0.016306804, 0.0025568993, 0.0075268354, 0.0048152376, - 0.005815673, 0.0037288645, 0.025577022, 0.020872787, 0.01474768, - 0.027418617, 0.0010632897, 0.007321686, 8.969174e-4, 0.0116841085, - -0.034964506, -0.013714829, 0.0063799513, 0.0064683785, -0.0011467792, - -0.009821769, -0.0037861427, 0.005420128, -0.005048546, 0.021674003, - -0.014253343, 0.0094553465, 0.008722845, -0.017252969, -0.004718354, - 0.0018016417, -0.0025576998, -0.013368646, -0.0112715075, -9.5105055e-4, - -0.016460577, 0.013715314, 0.0102928765, 0.009526457, 0.018957745, - -0.0061935517, -5.245719e-4, -0.006093521, -0.0045820433, 0.025570858, - 0.009246095, -0.0034645826, 0.016151441, -0.031970013, -0.0023579127, - -0.0037613034, 0.020685878, 0.009639285, -0.027584117, 0.021917978, - -0.022280417, -0.017446086, -0.02421794, 0.0047894167, -8.4759966e-5, - -0.0018334831, 0.013920839, 0.027952073, 0.0010549353, 0.019444885, - -0.0072789704, -0.012644765, 0.024660666, -0.023756541, 0.023029288, - 6.9225155e-4, -0.0072378856, 0.01358157, -0.010811666, 0.011944021, - 0.020178303, 0.015793731, 0.009952632, -0.0043806266, -0.0030100835, - -0.001051115, -0.041217815, -1.6843817e-4, 0.034173284, 0.023025205, - -0.00936158, -0.011703984, 0.0056957444, 0.015169175, 0.011976999, - -0.010168634, 0.0285722, 0.012927362, -0.007440717, -5.1682517e-5, - -0.013590259, -0.0071477043, 0.016147213, -0.0014650173, -0.008453974, - 0.018399306, 0.020143863, -0.0029980014, 0.013067179, 0.001086483, - 0.02853345, -0.0069370335, -0.0066662207, -0.02062703, -0.014825272, - 0.0028281927, 0.01826512, -0.004993831, 0.0014940051, 0.016313994, - 8.352505e-4, 0.003412002, -0.0036492345, 0.026347598, -0.0023287584, - -0.0025707395, 0.007796982, -0.006995458, -0.014645227, -0.0022614056, - 0.020641528, -0.008112572, 0.019527193, -0.010352623, -0.01486796, - -0.016012885, 0.04469351, 0.011199662, -0.023322439, -0.0013502209, - -0.006324584, 2.6341875e-5, -0.01754525, 0.013640894, 0.01923879, - 0.008937046, 0.011286232, 0.0077950703, 0.01576868, 0.009491938, - 0.005691564, 3.14703e-4, -0.010536429, 0.0032977436, -0.025776012, - -0.0057429364, -0.016802121, 0.020827053, -0.012130866, -0.016304316, - 0.006748507, 0.03386242, -0.0261248, 0.0114215, -3.6405236e-4, - -0.0013982119, 7.988115e-5, -0.008330969, -0.015320983, 0.029945338, - -0.02188945, -0.01743718, 0.0013513769, 0.012377196, 0.012409682, - 0.018211218, 0.010117413, -4.5113015e-4, -0.018508766, -0.03808049, - -0.024926638, 0.014779991, 0.005895105, 0.035689525, 0.009909784, - 0.014490668, 0.026960293, 0.014195513, 0.0016223623, -0.021090293, - -0.018654848, 0.01705299, 0.023823548, -0.0126117235, 0.010706902, - 0.0274613, -0.017245801, 0.0063609905, -0.008297683, -7.351128e-4, - -7.7647896e-4, 0.033389147, -0.02596151, -0.01363955, 0.031966783, - -0.0040849224, 0.021981928, 0.025974484, -0.011625947, 0.0053575123, - 0.013995574, 5.6608464e-4, -0.01712409, -0.017836062, -0.006232666, - 0.0077017187, 0.00658326, 0.008309599, -0.019140245, 0.018117752, - 2.6946593e-4, 0.00766946, 0.012065533, -0.004951494, 0.019593675, - 0.033273753, -0.0023732202, -0.0331084, -0.015554243, 0.027541783, - -4.6133262e-4, 0.0036246015, -0.010729688, 0.003825814, 0.017397895, - 0.012467435, -0.010837517, 0.0045597027, 0.02644486, -0.016779039, - 0.016568232, 0.0027308285, -0.010310773, 0.0027500924, 0.021263288, - 0.016742395, -0.0055806343, 0.009943473, -0.022541631, 0.012463165, - 3.767491e-4, 0.01049635, -0.0051831156, 0.010330822, -0.0059730886, - -0.019753408, 0.006890552, 0.02818995, -0.016137201, 0.0012840447, - 0.0010349896, -0.009720073, 0.013204478, -0.011833301, 0.022897635, - -0.003258444, 0.031083776, -0.010116658, 0.012854571, -0.0049186232, - -0.012678864, 0.014608944, 0.009003007, -7.407447e-5, 0.02236564, - 0.008528337, -0.025558507, -0.040455718, 0.005915652, 0.03321591, - -0.013775021, -0.022192296, 0.010687865, 0.009871821, -0.008128953, - -0.017700782, -0.012965697, -0.019152053, -0.00737951, 0.008824285, - -0.005953721, 0.0064124274, 0.019890746, -0.003133582, -0.03208461, - 0.005243669, 0.015509783, -0.0039437166, -0.0016285348, 0.021064408, - -5.5560424e-5, -0.003467766, 0.029638706, 0.02286463, -0.013189838, - -0.0041751363, 6.2584097e-4, 0.036992535, -0.007599047, 0.026901066, - 0.0010330227, -0.026177917, -0.034244135, 0.01017181, -0.005485608, - 0.0472121, -0.0050234883, -0.013312575, 0.007822244, 0.01624009, - 0.017331377, 0.008968984, 0.027109893, -0.017980907, 0.022977302, - 0.01547303, -0.022364685, 0.0062467046, -0.018826827, -0.039687112, - 0.020574996, 0.031847782, 0.0013460125, -0.0036521505, -0.01304279, - -0.004721684, 0.0020282487, -0.018870939, -0.016570503, 0.016450357, - -0.013919724, 3.6562973e-4, 0.0020317747, -0.026961498, -0.015197193, - -0.0076405094, 0.016343048, 0.019121572, -0.005508455, 0.0024234666, - 0.0022615243, 0.02219335, 0.0043810443, 0.007732195, 0.0132659385, - 0.001645256, -5.16504e-4, 0.006606521, -0.01888391, 8.930705e-4, - 0.016766928, -0.0043495814, 0.019865077, 0.013881766, 0.009970351, - 0.015865674, -0.016183592, 0.008303777, -0.0046979543, -0.00906594, - -0.008419491, -0.009907894, -0.0015357558, 0.0043195463, 0.018260079, - -0.021525327, 0.005697567, 0.0028159623, 0.034151994, 0.0013925823, - -0.01771043, 0.0052047274, -0.008757889, 0.007480868, -0.016329221, - -0.01495244, 0.009938199, 0.0043415558, -0.022859346, 0.0094063785, - -0.013753813, -0.018081395, 0.0067570186, -0.0108409915, -0.012553235, - 0.012365083, -0.0061566764, -0.0099336365, -0.015304178, -0.012092041, - 0.012980427, -0.0061045974, -0.010273507, -0.0055641853, 0.0059639025, - -0.0027818612, 0.0077244807, -0.003543687, 0.035340462, -0.0102608735, - 0.002584933, -0.0070773824, 0.0029929206, -0.0044950014, -0.012116304, - -0.0019016443, -0.02554148, -0.009025118, 0.0056951237, -0.030739972, - -0.008855873, 0.005372504, -0.013518145, 0.036954124, 0.018797034, - -0.00136923, 0.010529285, 0.008441416, -0.017515656, -0.012743864, - -0.012989042, -0.011957497, 0.015608356, 0.027349142, 0.011422833, - -0.0012869999, -0.022049133, 0.005492427, 0.0030089202, -0.0027085368, - 0.005221059, -0.016225485, 0.0012541292, -0.004509122, 0.02272633, - -0.024290262, -0.002845604, 0.0029486865, 0.0051255226, 0.013579319, - -0.018576998, -0.003509993, 0.02099533, -0.03342903, 0.0011697516, - 0.0056010867, 0.00887391, -0.026471402, 0.01221339, 0.024072982, - 0.006839688, -0.016155278, 0.012825168, -0.013452573, 0.008484465, - 0.01917574, -0.018838987, 0.008334127, 0.005367715, 0.03176387, - -0.02889996, 0.018077161, -0.025570957, 0.0060163303, -0.0011805488, - 0.006945254, 0.0040227594, 0.012880505, -0.01732433, 0.0020882671, - 0.007508779, 0.016351178, 0.013118872, -0.0010056221, 0.019061837, - -9.568717e-5, 0.003984984, -2.4044656e-4, -0.008588585, -0.005998883, - 0.026027445, -0.009942595, -0.014562029, 0.011412809, 0.019926384, - 0.007817991, 0.0058537875, 0.016296087, 0.010360793, -0.018775417, - -0.012773844, -0.012560888, 0.039484087, -3.769424e-5, 0.029661573, - -0.0136931585, -0.0058869254, 0.004039197, 0.014260612, -0.0056131803, - 0.011513348, 0.012757411, -0.001756388, -0.008259673, 0.009890375, - -0.033156313, -0.0219966, 0.009888663, -0.002911002, -0.023216894, - 0.017753629, 0.035827067, 0.020305429, -0.016959753, 8.690844e-5, - 0.0083656665, 0.014065924, 0.006159799, 0.012768246, 0.010103283, - -0.005175454, 0.013803789, -8.03001e-4, 0.011858786, 0.009265324, - -0.022330284, -0.0022822216, -0.019219661, -9.529649e-5, -0.011619207, - 0.03149768, -3.1110545e-4, -0.00796707, -0.008479699, -0.001579192, - -0.0043919566, 0.0089584105, 0.012142696, -0.008344032, 0.021089701, - -0.014425377, 0.030451458, -0.013156149, 0.020804815, 0.0013301023, - -0.0012636908, 0.009871782, 0.0029492714, 0.010429487, 0.012836384, - -0.009638249, 0.015926814, 0.019427143, 0.011323769, -0.0043958053, - -0.018367138, 0.025779909, 0.0033097242, 0.018093351, -0.001428145, - -0.010843061, -0.0061774105, 0.011156931, 0.025143491, 0.003823138, - 0.017166993, -0.0021849077, 0.0022779033, 0.009249718, -0.031423092, - -0.03356924, 0.005987654, -0.02770698, 0.0029188874, -0.0085032545, - -0.025036784, 0.0049692914, 0.014724112, 0.029826514, -0.018942464, - -0.018752638, -0.0052049505, 0.015575241, -0.015852926, -0.01612702, - -0.0010780434, 0.022193506, -0.004447729, 0.011484501, -0.015430888, - 0.015832497, 0.016673312, 0.012348937, 0.040370785, -0.010350944, - 0.019362755, 0.016488416, -0.010078174, -0.0035775646, 0.030288894, - 0.008233144, -0.0028265198, -0.0014378311, 0.007236838, -0.023378754, - 0.006229174, -0.002208413, 0.0011501235, -0.01597904, -0.02233795, - -0.025025895, -0.012395246, -0.005102973, 0.005652028, -0.006350911, - 0.008576865, 0.015228014, -0.002494113, 0.0143445125, 0.0120361075, - 0.014960943, 0.046943847, 0.006672939, 0.0012206973, 0.029922742, - -0.0023977172, -7.4614835e-4, -0.0018070601, -0.016085627, 0.0046926127, - 0.0033346652, 0.021631878, 0.019248515, -0.010139948, -0.01600347, - -0.02958246, 0.014840096, 0.0026529524, -0.016303139, -0.0035532091, - 0.02451494, -0.0056578573, 0.010156406, -0.014255833, -0.004748107, - 0.0023572573, -0.0029133677, 3.9444288e-4, 0.00376637, 0.00782084, - -0.015478272, 0.014405569, -0.018986143, 0.008630932, 0.025646582, - 0.005565935, -0.00708343, 0.011179848, 0.0010828561, -0.0020498235, - 0.040766593, -0.009989882, -0.023297204, -0.0025663015, 0.009189062, - 0.015814196, 0.0028828525, 4.2427468e-4, 0.022233298, -0.009503521, - 0.024862826, -0.017735245, 0.007218276, -0.004005416, -0.0312829, - -0.0061941626, -0.014719577, 0.0058775884, -0.0143172555, -0.012470305, - -0.0381244, 0.021153158, 0.02538994, 8.556189e-4, 0.00913588, - -0.0071412236, -0.011919384, 0.0036248176, 0.008594392, -9.511574e-4, - -0.005333374, 0.026862767, 0.002009277, -0.013121828, 0.024216374, - -0.0035808217, 0.0074411943, 0.010728289, -0.004871013, -6.660984e-4, - 0.008994798, -0.009753486, 0.017716762, -0.029940499, 0.01601035, - 5.199775e-4, 0.005033724, -0.021564368, -0.0077339415, -0.020387195, - -0.031633247, -0.011353491, 0.003685152, 0.0070284554, -0.0013787968, - 0.001027463, -0.012473372, 0.008311326, 0.0055378797, -0.009779537, - 0.0030960368, 0.005476798, 2.1652404e-4, -0.0013940089, -0.0058022356, - 0.005855746, 0.010571638, -0.035171427, 0.001384224, 0.008605635, - -0.021561349, 0.0076928115, 0.0022554272, 0.010230104, -4.6886686e-5, - 0.028448552, -0.026197743, -0.009850156, -0.0066322405, -0.0076575554, - -0.013933221, 0.0319774, -0.00511592, -0.0041203867, -0.013337708, - -0.0031569295, -0.002529699, 0.0050940206, -0.011423171, -0.021200273, - 0.008047551, 0.013226532, 2.7783407e-4, 0.008725153, 8.8292087e-4, - 0.004570641, -0.02374661, -0.009101211, -0.0026491021, 0.010219133, - -0.0030709628, 0.016757058, -0.0077356715, -0.0065980186, -0.015433435, - 0.001242066, 0.025666514, 0.014286407, 0.012234681, -0.023314945, - -0.020345706, -0.004928348, -0.0073415344, -0.02980837, 0.008777936, - -0.017845359, -0.006193542, 0.0126292035, 0.009323394, -0.004612231, - -0.017997356, -0.009597792, 0.007218051, 0.014717773, 0.005427917, - -0.0021652065, -0.014431488, 0.017790882, -0.028065354, 0.012810805, - 0.013254797, -0.0036709548, 0.018984841, -0.017244088, -0.0025833647, - -0.00479589, -0.0075670523, -0.008987478, 0.024299376, -0.016801849, - 0.017456533, -0.006208387, -0.009484355, -0.012876996, 0.02339349, - -0.022169163, -0.0058610835, 0.006682422, -0.005677381, -0.02617552, - 0.0017459389, -0.01106709, -0.004766654, 0.004730119, 0.0031411448, - 0.02242407, 0.008076478, -0.010519796, 0.015747076, 0.0021718624, - -0.010827911, -0.026511006, 0.0177591, 0.01088733, -0.007918692, - -0.0019458447, 0.00635171, 0.007779991, -0.001723044, -0.024889948, - -0.010804488, 0.010046051, -0.003765423, -0.013370448, -0.0076270676, - 0.020752506, 0.0060111284, 0.013299682, -0.0118504735, -1.6840703e-4, - -0.025626667, -0.01437244, 0.0069006262, 0.0019743803, 0.0078699635, - 2.2726525e-4, 0.018200291, 0.017975133, 0.0034148, -8.4447046e-4, - 0.037036266, 0.0025054014, 0.0044618454, 0.017742554, -0.004807072, - -0.018609246, 0.014765791, 0.018562367, -0.0064600445, -0.005928036, - 0.017987974, 0.001362862, 0.005582845, 0.0129784355, -0.023284087, - -4.6586592e-4, 0.023817683, 0.0153923575, -0.027486704, 0.02367308, - 0.0077937366, 0.0037273979, 0.028004145, -0.018532705, -0.0013503226, - 0.0062350724, 0.025786664, 0.014207715, 0.008726006, 0.015258275, - -6.9374393e-4, 0.0046741455, 7.6372724e-4, 0.00102496, 0.015536997, - 0.006987555, 0.023991652, 6.0606224e-4, 0.018496132, 5.4973655e-4, - -0.0037266132, 0.020559631, 0.0034818505, 0.025464661, 0.0071591507, - -0.0047130953, 0.0053228904, -0.014657553, -0.0071198368, 9.280142e-4, - 0.02055649, -0.0021763751, 0.013422314, -0.024800379, -0.008573837, - -0.028191479, 0.017271964, 0.0054275836, 5.397501e-4, -0.0076481807, - -0.014502977, 0.0076664547, 0.021602437, -0.00613388, 0.0037438534, - -0.023489939, 0.009151477, 0.014252375, 0.010698497, 0.0062181237, - -0.025033625, 9.288196e-4, 0.006778556, -0.0061784443, -0.014110145, - 0.01719539, 0.017610118, -0.020666566, -0.025051963, -0.004956723, - -0.010228791, -0.008244231, -0.011985384, 0.0033163233, -0.007676598, - 0.022256587, 0.0012765193, -0.011287837, -0.04083941, 0.006922637, - 0.022015749, 0.019049339, -0.010021089, 0.015815519, 0.019053105, - 0.010061866, -0.012903629, 0.0036648049, -0.033019494, 0.008003224, - 0.01668964, -0.0040693325, -0.017402349, 0.01612265, -0.019724693, - 0.0069451793, 0.020965539, -8.538476e-4, -0.023359159, 0.011784148, - -0.00519768, -0.0068079294, 0.012306892, 0.002009513, -6.8539596e-4, - 0.009041541, -0.013087521, -0.011519704, 0.013499413, 3.6680064e-4, - 0.014056586, -0.01847231, -0.0011280059, 0.029917749, -0.0072447243, - 0.022301663, 0.0023271146, -0.008012326, 0.007615615, 0.0011171115, - -0.012662214, 0.023341201, 0.013609997, -0.032279544, 0.034836534, - -0.03174326, -0.019427888, 0.008707456, -0.011122925, 2.8790845e-4, - 4.4291283e-4, 0.030894127, -0.017213406, 0.010729018, -0.003963614, - -0.0020652392, 0.0071765124, 0.0032166291, 0.024570195, 0.01983009, - -0.0053588557, -0.0012951667, -0.0036468075, -5.639362e-4, - -0.0049165175, 0.015258924, 0.0017437036, -0.0026041288, -0.013332433, - -0.012564516, 0.013584973, 0.0056997323, 0.006897203, -0.014006134, - -0.015073761, -0.013321552, 0.0035783746, -0.0050274036, 0.021984495, - -0.01820233, -0.009716902, -0.010130654, -0.015855689, 0.01247647, - 0.01716146, -0.047513206, 0.026212249, 0.016391564, 0.0047637387, - -0.007068206, 0.013039427, -0.0029138923, 0.004520623, 0.04526723, - 0.0026814223, -0.008093818, 0.021975556, -0.00887194, 0.024280094, - -0.024422692, 0.03326268, -0.008818965, -0.003727396, 0.025765162, - -0.043488257, 0.014622695, -0.0049268473, -0.012546244, 0.012011329, - 0.0066139316, -0.005111827, 0.009287356, -0.008800682, -0.0059189405, - -0.027447728, -0.044612117, -0.008243848, -0.0050059245, 0.021054238, - -0.028014837, -0.021363145, -0.012337771, 0.01273688, -0.0066783885, - -0.00407516, 0.017136684, 0.0021057369, -0.010607678, -0.014284054, - 0.008051771, 0.039117727, -0.010186073, 0.0047657816, -0.0098240245, - -0.015273491, 0.005752374, -0.006506155, 0.013358057, -0.029147644, - -0.011025871, 0.0026581546, 0.02333064, 0.016897352, 0.010566426, - 0.021893803, 0.022663783, 0.010267204, -0.014709314, -0.023989562, - -0.0022544274, -0.0484086, 0.011073295, 0.007243822, 0.010190295, - 0.0010436707, 0.003824492, 0.011058864, -0.013429831, -0.0033149829, - -0.009775494, 0.005271367, -0.02779647, 0.029950788, -0.012432151, - -0.031947922, -0.0050054663, 0.023266219, -0.02100815, 0.013872957, - 0.009163186, 0.0054363594, -0.004830948, 0.011176543, -0.012459691, - -0.023266263, -0.011588877, 0.031585008, 0.0016877871, -0.03704046, - 0.025209855, 0.027096098, -0.006053771, 0.029039165, 0.0046157553, - 0.0127817225, 0.012705157, 0.013712285, -0.007891913, -0.014639763, - 0.006387263, 0.013197592, -0.023383608, 0.010991319, -0.0022077516, - 0.012560625, -0.010390318, -0.01663455, 0.014888199, 0.008712587, - -0.0063452125, -0.009357545, 0.0027421413, 0.0043184184, 0.0018058172, - 0.0055170143, 0.0418489, -8.557098e-4, -0.019393343, 0.005538993, - -0.030520707, -0.010340124, 0.014540388, 0.0022997581, -0.012427793, - 0.00715643, 0.026481811, 0.013867811, 0.023677127, -0.008434616, - 0.017331878, -0.023372926, 0.023530792, -0.026768953, -0.002286571, - 0.039816346, 0.0068747797, -0.0022109542, 0.02561073, 0.01762742, - -0.010746747, -0.0062660854, 0.024769222, -0.012836706, 0.014988687, - 0.006483475, -0.009379364, 0.005689109, -0.014117175, -0.012309212, - -0.0041929176, 0.009177953, 0.007607693, 0.01640621 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.012997518, -0.021314975, -6.400475e-4, -0.034252524, -9.170311e-4, - 0.0012094593, 0.004734403, -0.022537475, -0.00972587, 0.036832467, - -0.026878664, -0.0028941177, -0.013767932, 0.009167037, 0.013062734, - -0.013950514, -0.0028354058, -0.023949934, -0.010295597, 0.003299761, - -0.010985482, -3.8576918e-4, -0.0085586915, 0.004012815, -0.005850206, - -9.7378256e-4, 0.017113192, -0.0059170155, -0.020529673, -0.012540152, - 0.016299391, 0.0027526733, 0.007281546, 0.001551723, -0.0053378455, - 0.023680976, -0.01662928, -0.021480212, 0.027608592, -0.0021938446, - 9.556174e-4, 4.9993565e-4, 0.014119862, 0.024803348, -0.005005811, - 0.03120949, -0.016888706, 0.009793179, 0.011541904, 0.0063896114, - 0.03891669, 0.028230852, 0.0110468455, -0.0035483635, 0.008402641, - 0.004723092, 0.033232804, 0.0051793437, -0.01067974, 0.012834048, - -0.011657966, 0.019293997, -0.028009214, -0.0030011155, -0.023495225, - 0.0030843522, -0.008910571, 0.0069115567, 0.011976063, 0.007247627, - 0.008701671, -0.010494729, 0.005220197, -0.009360469, 0.020291947, - 0.004553394, -0.0013770806, -0.003923476, -0.024820894, 0.00401823, - -0.012510734, 0.002556234, 0.0044418243, 0.024759548, -0.026877785, - 0.004524722, 0.0064552897, -0.033576127, -0.014463162, -0.0039935308, - -0.024958303, -0.029515352, 0.010084044, -0.025542498, 8.297854e-4, - 0.0148955, -0.017483605, -0.0079330765, 0.010723889, -0.019264335, - 0.005877063, 0.0038612506, 0.03147065, -0.02549237, -0.0082283355, - -0.005452482, 0.0015813375, 0.0087589435, 0.001939116, 0.013578684, - -0.015789313, 0.029388478, -0.0026975584, -0.008786228, 0.013121478, - 0.011416573, -0.03175786, -0.0066730753, 0.009093995, -0.014907447, - -0.01376551, 0.013493341, -0.0126942955, -0.015268637, 0.0027024094, - -0.031750187, -0.0014224427, -0.0065351445, 0.018115629, -0.009929995, - -0.022191646, 0.017771024, -3.180685e-4, 0.0033884468, 0.0045236666, - 0.0021168957, -0.012712337, -0.012956991, -0.0017346371, -0.019927202, - 0.0017495004, 0.03263941, -0.019826131, -0.015685061, -0.010222727, - -0.009789397, 0.018551733, 0.030324109, 9.5716555e-4, -0.024124527, - 0.005818386, 0.012790704, -0.004453834, 0.019164117, -0.025795171, - -0.0138090765, 0.01792202, -0.0019521387, -0.030888252, -0.0028238385, - -0.009683801, -0.007980659, 0.0053133187, -7.9104886e-4, -7.692169e-4, - 0.012505769, -0.0035357114, 0.006099913, 0.022399077, -0.0011159185, - -0.0026880228, 0.008109152, 0.008929868, -0.042656902, 0.012547624, - 0.009975296, 0.0073376736, 0.010701726, 0.026493719, -0.0043543186, - -0.007919101, -0.028232373, -0.0037542516, -0.010806159, 0.037018854, - 0.008206239, 0.014444332, 0.0052948645, -0.004159026, -0.0079717785, - -0.013019284, 6.502695e-5, -0.019538958, -0.021617323, 0.026899127, - 0.0017570589, 0.028886154, 0.004857568, 0.043762352, -0.0027524338, - 0.0014327783, -0.020062258, -0.025730833, 0.026098415, 0.010742321, - 0.01663004, 0.0100854905, 0.008492496, -0.0020668604, 0.015106022, - 0.027694391, -0.012840264, -0.014321546, -0.022851715, -0.013834966, - 0.01500451, 0.01631986, -0.0027409925, -0.0045736153, -0.026635755, - 0.0019677342, 4.3678543e-4, -0.01278131, 0.012194731, 0.043918412, - 0.036519237, 0.0078024953, 0.014244069, 0.008871406, 0.0076036192, - -0.0031444589, 0.011771462, 0.0076672, 0.010679109, -0.027437767, - 0.0039520613, 0.021743754, 0.016272398, 0.0032571566, 0.016265212, - 0.006236463, -0.007977017, -0.008631931, -0.015228413, 0.011764999, - -0.016909363, -0.0067266263, -0.0025219012, -0.0034735515, - -0.0057037235, 0.002733215, 0.028003726, -0.0018339372, 0.010109964, - 0.03197701, 0.003451694, -0.019743128, 9.907254e-4, -0.0054063764, - -9.837863e-4, -0.016280087, 0.0038244985, 0.012435211, 0.015686557, - 0.007714864, 0.0145975845, -0.0060367794, 0.021071708, -0.012965339, - -0.008804673, 0.01020971, -0.016260443, -0.012662739, -0.018007422, - 0.0011406706, 0.008968426, -0.029611634, 0.01088219, -0.0028969336, - -0.026482645, 0.010715794, 0.01166591, 0.014277624, -0.0066173486, - -0.008316793, 0.02715767, 0.00472018, 0.021441694, -0.0126634985, - 0.00891515, -0.0137989065, 0.022257796, 0.0057349545, 0.0024026388, - -5.619018e-4, 0.015959365, 0.022777999, -0.0040411786, -0.02389448, - 0.005570077, -0.016307827, -0.0053322674, -0.027251976, 0.012506673, - 0.011074345, 0.011043326, 0.029174596, 0.006691809, -0.02670941, - 0.007786889, 0.022972947, -0.018494263, -0.014767179, -0.0010273028, - -0.009948467, -0.025488388, -0.009702869, 0.010993536, -0.0010321123, - 0.0193411, -0.030032253, 0.014614318, 0.010051722, -0.0055445363, - -0.023632117, -0.041823376, -0.018367637, 0.01784705, 0.0046710614, - -0.009927145, -0.038094234, 0.013340228, 0.009633102, 0.0039487635, - -0.010269845, -0.038037892, -0.011261614, -0.0078595355, 0.007799857, - 0.0016256731, -0.021807443, 0.0052317157, -0.02010856, 0.018729601, - -0.025290277, 0.0028730137, 0.011657079, -0.0040582954, 1.5833304e-4, - -0.015097055, 0.001877217, -0.002771792, 0.0043048915, -0.013938648, - 0.013196792, -0.0109096095, -0.006562177, 0.006956766, 0.018249903, - 0.01854889, 0.041287243, 0.00587667, -0.008966453, 0.0056178845, - -0.011633593, -0.025570164, -0.014782372, -0.013977422, -0.0069404207, - 0.0067645656, 0.0065517197, 0.015936133, 0.008998492, 0.020570809, - 0.016132664, 6.835331e-4, -0.012310118, 0.023525493, -0.023297433, - -0.01142067, 0.028726503, -0.01145629, -0.005826378, -0.01908606, - -0.026336147, 0.02094732, -0.0017267492, -0.008446767, -0.0023575847, - -0.006218694, -0.018675629, 0.02122424, 0.005413944, 0.012378606, - 0.039042324, 0.0045621577, 7.684062e-4, -0.016400326, -0.0061532524, - -0.005214023, -0.0012222712, -0.0013625266, 0.009790753, -0.0031660483, - -0.018168956, -9.6886733e-4, -0.015770696, 0.01629349, 0.020624932, - 0.029296182, 1.7390521e-4, 0.011385868, -0.014343756, 0.007677053, - 0.008371261, 0.015923465, 0.002080729, 0.0075665032, 0.0025644326, - -0.012869518, -0.02836305, 0.016719552, -0.019494167, -0.009607415, - -0.005191851, 0.003936078, 0.029485494, 0.020243015, -0.0069105043, - 0.025403483, 0.008445838, -0.015188008, 0.009396321, 0.0035860997, - -0.005924395, -0.014920223, -0.009960951, -0.0027547646, -0.024931548, - -0.011594948, -0.01757551, -0.01154399, 0.00859294, 0.01814514, - -0.027900042, 0.01806918, 0.010359362, 0.028016873, 0.01101277, - -0.010137356, 0.011590821, -0.00507274, 0.010485902, 6.235723e-4, - 0.013230196, -0.05592533, -0.029319895, 0.0095900055, 0.034000523, - -0.029195325, 0.013771628, -0.026931215, 0.01670407, 3.0331072e-4, - -0.01940149, 0.02807978, -0.012943949, 3.2677536e-4, 0.03249656, - -0.001154213, -0.02042362, -0.01059538, 0.004856631, 0.003551093, - 0.013537481, -0.0036938936, 0.015602601, -0.005106109, -0.009798293, - -0.017802283, 0.010764792, -0.026247896, 0.015305065, 0.015985513, - -0.005330805, -0.008603223, -0.016149636, 0.009541902, 0.007432441, - -0.008554744, -0.007604728, 0.006643956, 0.002043007, 0.0050216173, - -0.003100664, -0.0011754915, 0.013289939, 0.005272348, 0.026123181, - 0.01474673, 0.019256284, -0.002198651, 0.005648193, -0.017532833, - 0.011219027, -0.009299754, -0.030015226, -0.01576204, 0.018235214, - 0.0041201785, -0.011321465, 0.0066824816, 0.012533926, 0.026991518, - 0.025142428, 0.0035490245, -0.018931348, -0.006221865, -0.011333893, - -0.017380891, 0.008633303, -0.003576912, 0.019019263, 0.010107063, - 0.028005727, 0.002926982, 0.004818343, 0.014470625, -0.012802876, - 0.008845646, 0.016913602, -0.010697799, -0.00843951, 0.016012814, - 0.005241803, -0.0033887094, 0.013305163, -0.016024776, 0.004572675, - 0.004618964, -0.01821363, -0.015297747, -0.026468044, -0.008675567, - 0.0050521637, 0.046591643, 0.01779392, 0.003743328, -0.022468828, - -0.0030137468, -0.0013131173, 0.018343486, -0.0059738206, 0.008246842, - 0.00415546, -0.0029811386, 0.03148901, -0.001789508, 0.010786203, - -0.016696392, -0.0049338676, -0.009009788, 0.035856612, -0.0011895858, - 0.011576125, -0.017118275, 0.030525323, -0.010861735, -0.022525568, - 0.017778097, 7.047456e-4, 0.012603506, 0.019297348, 0.023892771, - 0.004419976, 0.0043442743, -0.024837984, 0.013372065, 0.003917569, - 0.015095202, -0.018288987, -4.902099e-4, -0.028041385, 0.01709605, - 0.011965374, 0.01852399, 0.033497598, -3.0217608e-4, -0.008915464, - 0.02315621, 0.0038308864, -0.009802881, -0.0024512894, -0.0042483457, - -0.010314729, -0.0100384, -0.004932455, -0.0014118642, 0.015224495, - -0.0018685422, 0.011099356, -0.01093236, -0.012679437, -0.019340519, - -0.008161198, 0.029586364, 0.01728952, 0.0110346265, -0.036005784, - -0.009886183, 0.0066154595, 9.58927e-4, 0.028745554, -0.005355588, - -0.0035213553, 0.027171217, 0.021672761, 1.772687e-4, 0.019731693, - 0.017664498, -0.013256917, -0.0075162924, -0.012827558, -6.028783e-4, - -0.03006405, 0.002169944, 0.0063014347, -0.022605687, 0.0077346326, - 0.02838382, -0.01202983, 0.029752396, -0.002629488, -0.013460893, - -0.008464733, 0.0071080457, -0.018059907, 0.039343353, 0.023210363, - -0.022831343, -0.0018697758, -0.017988471, 0.010007145, -0.024491873, - -0.022159554, -0.019040028, -0.020484518, 0.008337816, 0.011078083, - -3.48303e-4, 0.009486559, 0.004543901, 0.011418325, 0.0113319475, - -0.027463827, 0.00876313, -0.020093787, 0.004997279, -0.010491762, - -0.027011253, 0.01748559, 0.015718928, -0.015637575, -0.0016766406, - 0.018221412, 0.0113601135, 0.032991257, 0.01078281, 0.017573882, - 0.019976854, -0.017746143, -0.016437279, -0.0036601154, -0.014549183, - -0.0076210224, -0.0015853452, -0.0029911397, -0.029773794, - -0.0045266985, -0.015878761, 0.008537303, -0.013499402, -1.8775578e-4, - 0.012017733, -0.0067447918, -0.025811335, 0.004156963, 0.003447012, - 0.010290233, 0.013951884, 0.021290831, -0.01870546, 0.029593034, - -0.009144022, -0.0069855466, 0.0074628657, -0.0056316317, -0.002155304, - 0.0017971271, -0.0017341236, -0.02197149, -0.009805593, 0.0072160615, - 0.0046709348, -0.0061664837, 0.008549404, -0.0032967078, -7.047055e-4, - 0.016434042, 0.005851718, -0.00187596, -0.0028187581, -0.010771212, - 0.007862144, 0.010716739, -0.011984318, 0.008684135, 0.019126287, - -0.013747626, -0.03428192, -0.009994253, -0.004008808, 0.017579496, - -0.011959256, 0.005799185, 0.007982498, 0.009336794, 0.016543802, - 0.021790452, -0.004321931, 0.019538183, 0.0044021453, 0.0047019334, - -0.010042685, -0.0029827605, -0.017180422, 0.004271487, -0.001137016, - -0.029186588, 0.008099562, 0.009207013, 0.016229639, 0.0010228807, - -0.007975617, -0.025213705, 0.016460698, 0.01659184, 0.0040859804, - 0.008285541, -0.014866554, -0.01464433, 5.8850786e-4, 0.02829413, - -0.040039353, 0.012569928, 0.022028724, -0.01094392, -0.0176814, - 0.001490433, -0.013715249, 0.006178588, 0.016512502, 0.0033768078, - 0.010718803, 0.0026023048, 0.02156465, -0.004711268, 0.015721817, - -0.019530354, 0.010231279, 0.0035244096, 0.027627382, -0.026553325, - 0.011372521, 0.0128835365, 0.003677696, 0.017238975, 0.03007221, - 0.0022216293, 4.9629615e-4, 0.009448836, 0.014458864, -0.0021669483, - 0.011134639, 0.0015622763, -0.017623335, 0.004455182, 0.0150670055, - 0.0037962242, -0.01090828, -0.010554455, 0.015586376, 0.010361389, - -0.019539235, -0.009334469, -0.007722271, 0.025247844, -0.005548249, - -0.018584447, -0.005194603, 0.009082889, -0.00230753, -0.028927924, - -0.0012080824, 0.010600504, -0.01350382, -0.0071887034, 5.469014e-4, - -0.008853623, -0.0018800943, -0.0072085815, 0.008973943, -0.018830989, - -0.0061587347, 0.002597496, 0.0069493647, -0.022414783, 0.0116206845, - 0.017649658, 0.01051659, 0.026643597, -0.010216645, -0.017293286, - 0.013506653, -0.001276403, 0.029457336, -0.0065777292, 0.008396013, - -0.01730066, -0.01495015, -0.025931066, 0.02608249, -0.016920658, - -0.01840022, 0.02092414, 0.010535837, 0.013465851, -0.012357966, - -0.011819737, -0.009359529, 9.040026e-4, 0.029159768, -0.003234993, - 0.0029058428, 0.0065700626, 0.044047676, -0.023483971, 0.030378398, - -0.0013655863, 5.906295e-4, -0.0036018626, 0.0063653323, 0.002440341, - 0.008512377, 0.0021683832, -0.0117215095, 0.005847009, 0.0055013974, - -0.012547396, -0.006876128, 5.703445e-4, 0.02944559, 0.01052023, - 0.010751542, -0.024181945, -0.0017661528, -0.004501445, 0.03835977, - 0.002192688, -0.022969222, 0.01835366, 8.230032e-4, 0.006279052, - 0.0083925575, -0.021929663, 0.004556338, 0.031079229, 0.01997091, - -0.009459228, -0.006669651, 0.0053464817, -0.013372338, 0.014617641, - 0.021253122, 0.012053389, -0.013545753, 0.013334643, -0.016791465, - 0.019704679, 0.014074914, 0.014049952, -0.023976589, 0.011185094, - 0.008404372, -0.011661498, 0.0024974323, 0.01978176, -0.009018162, - 0.009553925, -0.01832184, 0.0117170075, 0.012185609, -0.017397977, - -0.0032567892, -0.0062165908, 0.0077657416, 1.3642796e-4, 0.019514063, - 0.0025473076, 0.0032028195, 0.015093187, 0.0102444505, -0.009077696, - 0.012660604, -0.008836382, -0.024890551, 0.015910635, 5.8881094e-4, - 0.0018456952, -0.009629568, -0.015981564, 0.008045439, -0.025382789, - -0.021188976, 0.0077658514, -0.004970024, -0.0266994, 0.0115647875, - 0.0062340978, 0.019831127, 0.028660722, 0.008519492, -0.012378822, - 0.012181748, 0.018076941, 0.016247291, -0.006862282, -0.025426086, - -0.019381482, -0.016896479, 0.0012334442, -0.035890814, -0.012424252, - 9.716057e-4, -0.008276546, -0.016497709, 0.03056718, 0.018935982, - -0.009645263, 0.0018686436, 7.002518e-4, 0.007093744, 0.014251271, - -0.003757931, -0.02799985, -0.009285653, -0.0051876274, 0.0026001446, - 0.015552611, -0.0025052573, 0.036090855, -0.0011819247, -8.219966e-4, - -0.0038655796, -0.020707088, -4.2353917e-4, -0.005406217, -0.012220595, - 0.013065187, -0.0044791135, -0.01972857, -0.021970026, 0.010920539, - -0.022804707, 0.0031144773, 0.01502238, 0.04068314, -0.013464049, - -0.008537772, 0.0016824459, -0.010108643, 0.02426581, 0.008122645, - -0.013669261, 0.016115528, 0.014101221, -0.007976819, -0.008784508, - -0.015480178, 0.0077633616, 0.0033763656, 0.008028063, -0.014844938, - -0.017398862, -0.023879433, -0.0025434813, 0.009908989, 0.003555188, - -0.0034192908, -3.6067926e-4, -0.01464888, 0.0014371928, -0.005341833, - 0.0109341405, 9.562274e-4, 0.018749027, -0.027917737, -0.03743567, - -0.014566689, 8.2414184e-4, 0.005056801, -0.01067373, 0.008870237, - 0.032051425, 0.020974418, -0.010933205, -0.0065123457, -0.013589351, - 0.0036243647, -0.014164802, -0.026634365, -0.01152778, -0.030224718, - -0.011814468, 0.008120423, 0.013847689, -0.031122077, 7.2263926e-4, - -0.008810784, -0.0130282715, -0.016386524, -0.009749869, 0.021814365, - -0.006193184, -0.0054707383, -0.04114542, 0.004635723, -0.016993897, - 0.011756691, 0.0024891254, -0.010901717, 0.0242579, 0.00675594, - 9.4696425e-4, -0.017340954, -4.010433e-4, 0.0037953134, -0.0010793611, - -0.017931756, -0.0038247234, -0.0076571037, 0.010592055, 0.041008003, - -0.024773464, -0.006139454, 6.245448e-4, -0.0014909188, -0.00773946, - 0.013706838, 0.01436606, 0.0042651524, 0.023609228, 0.023459742, - 0.013308299, -0.03381518, 0.0012732028, -0.00617108, 0.02119754, - -0.0073434343, -0.004997639, -0.02267906, -0.0099881375, -0.013831965, - 0.007290422, -0.009165102, 0.011630634, 0.010519537, -0.012558739, - -0.0056250384, 0.02204093, 0.003364284, 0.007361842, -0.011328688, - 0.020658992, 0.010991393, -0.012700663, 0.0197437, 0.01839036, - 0.0026811818, -0.010575231, -0.018488731, -0.012762509, 0.0037370343, - -0.0063863196, 0.00373366, 0.008728401, -0.005506437, 0.006700873, - -0.005161106, 0.008484391, -0.008619669, 0.02885019, -0.01750287, - -0.030600814, 0.011240899, 0.002998097, -0.005678647, -0.013154879, - 0.029619036, 0.009954592, 0.018125271, 0.006149013, -0.0018678637, - -0.0046155998, -0.0023184684, -0.02561327, 0.012562867, -9.76636e-5, - 0.0033061288, -0.0069766524, -0.042044777, -0.006523091, -0.009806827, - -0.014717318, -0.035927515, 0.016926782, 0.0047852905, 0.028659083, - -0.01720987, 0.0181149, -0.014928656, 4.5231532e-4, -0.03779065, - -0.016964825, -0.0075469394, -0.0014815066, 0.018195951, 0.009817442, - -0.0035996626, -0.0011255083, 0.015484547, -0.005587183, 0.008408314, - 0.011469984, 0.023340032, -0.0065185153, -0.009445441, -8.576852e-4, - 0.02014808, -0.008764659, -0.011612625, -0.010438343, 0.029712528, - -0.008762558, 0.030527933, -0.011468559, -4.9885386e-4, 0.011255621, - 0.015081072, 0.008207096, 0.0015561193, 0.005357355, 0.015470846, - 0.021128234, 7.777417e-5, -0.0047029727, -0.01276168, 0.03439007, - 0.004397004, 0.005145944, 0.00163637, 0.01936381, -0.02031631, - -0.020926265, -0.0059003, -0.0066519524, -0.015093401, 0.009255876, - -0.008638768, -0.006363237, 0.008592973, -0.029118232, -0.015931163, - 0.007064519, -0.012425718, 0.0022474744, 0.018465728, -0.0065062856, - -0.0048158728, -0.016524035, -0.01866556, 0.0064681997, -0.0028685925, - -0.01826227, -0.0075844303, 0.0074949483, 0.0037912657, -0.0033817268, - 0.0117180245, 0.013768938, 0.004719336, -0.011056244, 0.01289021, - 0.010998037, 0.008527951, 0.01686319, -0.03846744, 0.0052434066, - 0.019048283, 0.0011860114, -0.037836406, 0.026854875, -0.019864887, - -0.007483188, -0.025721567, 0.022909878, 0.0053716428, -0.015135408, - 0.014814898, 0.0027567556, 0.01808543, 0.012966934, 0.006447151, - 0.0019742341, 0.0037470842, -0.017926704, 0.00930665, 0.015561512, - 0.020064708, 0.0074873157, 1.8209264e-4, 0.009072082, 0.01269455, - -0.0016800498, 0.013612418, -0.012203544, 0.019275835, -1.5764868e-4, - 3.888536e-4, -0.0028536657, -0.0022055313, 0.013377513, 6.8170467e-4, - -0.017697833, -0.009618288, -0.0057124943, 0.0031827523, -0.033282295, - -0.001665044, 0.020872742, 0.0015920431, -0.007906616, 0.0017439718, - -0.03322652, -0.0010078102, 0.0015434793, -0.0032752517, -0.011631121, - 0.010986685, -0.014432374, 0.014128159, 0.015218484, -0.015324962, - 0.04055659, 0.012933002, -0.007416146, -0.007934744, -0.017607098, - 0.016563546, -0.0236126, -0.016408231, 0.012704798, 0.01581165, - -0.025235089, -0.019574583, 0.01544146, -0.019319326, -0.009302747, - -0.02676021, -0.012612957, 0.0018471056, -0.0019983947, -0.0012164334, - 0.019813322, -0.027676718, 0.0020749907, -4.6354698e-4, 0.0074014044, - -0.021745455, -0.025374556, -0.014021984, -0.020151515, -2.7667792e-4, - -0.0059509845, 0.007126491, 0.0134309605, 1.972488e-5, 0.00448419, - -0.010052932, -0.026349667, 0.0050151725, 0.005606756, -0.012538606, - -0.015593126, 0.009316021, -0.015318132, 0.0047394903, -0.01239403, - 0.018467896, 0.0108212195, 0.0050167316, 0.026362348, -0.0029921858, - -0.02282217, -0.018558774, -0.028669702, 0.033141144, 9.627239e-4, - 0.0141940685, -0.007367057, -0.011088864, -0.009428984, -8.1215834e-4, - 0.015348511, 0.03011736, 0.0031642257, -0.006708599, -0.033747256, - 0.025853947, -0.0067428923, -0.011257202, -0.028349785, 0.02416164, - 0.0046603046, 0.008464803, -0.014797991, 0.012302618, 0.023508117, - -6.770228e-4, -0.014183425, -0.012403529, -0.0089896815, -0.00524757, - 0.005581695, -0.020782456, -0.009575419, -0.014765417, -0.014570768, - 0.0063820146, -0.039106015, 0.017278958, -0.031208469, 0.0126329325, - -0.0073693222, 0.008801252, -0.017116046, 8.0034905e-4, 0.007930663, - 0.014116487, 0.015518389, 0.011355207, -0.01831447, -0.004012337, - -0.012010902, 0.0065469984, -0.012959301, 0.0025161777, -0.024321442, - -0.008747477, -0.0061688963, -0.03030934, -0.01250553, 9.622659e-4, - 0.0013539612, -0.011808788, 0.018031405, -0.0011850217, 0.031094968, - 0.003908408, 0.0011514466, -0.017056994, 0.043958426, 0.021816134, - 0.0011557307, 0.008813005, 0.00864767, -0.003635324, -0.023768561, - 0.022113053, -0.01972668, -0.008233762, -0.030641722, -0.016969284, - -0.021825997, -0.020631166, -0.014784566, -0.01532871, 0.011293498, - -0.0015001545, -0.011056408, -0.009404865, -0.005046323, 0.0045922752, - -0.023593549, -0.009081189, -0.0067364858, 0.0041322, 0.011932206, - -0.026152853, 0.024002003, -0.01315426, 0.010389758, 0.0049455906, - -0.002864855, -0.025288867, 0.0025319182, -0.009904294, 0.019862052, - 0.015258352, -0.019714227, -0.0075813597, -0.0055757975, -0.019316731, - -0.011785401, 0.01585939, 0.01431826, 0.022396669, -0.015090424, - -0.021697344, 0.014515875, 0.011448994, -0.0010761666, 0.009699811, - -0.0064810077, -0.0022910554, -0.0056737564, -0.03356733, 0.012244737, - 0.010820323, 0.019671889, -0.012633091, -0.016107425, 0.018039715, - 0.035590354, 0.009613422, -0.004413087, -0.007921594, -0.0148665495, - -0.012087007, 0.039901335, 0.01734385, -0.010078618, -0.010958494, - 0.014763787, -0.02155579, 0.013099984, -0.005234591, 0.013308901, - -0.0060728686, -0.010973448, -0.02202107, -0.027120776, 0.009208228, - 0.006630709, -0.021919303, -0.005879137, -0.0038160365, 0.0031754272, - 0.017425038, 0.014376701, -0.0021567168, 0.003908669, 0.038772088, - -0.004170246, 0.014845169, -0.014164686, -0.005242632, -0.0018481092, - -0.04740251, -0.01650565, 0.0034860729, 0.008061419, -0.012464255, - 0.010981096, -0.01102516, -0.012573312, 0.020592775, 4.5092165e-4, - 0.0036124089, 0.008465003, -0.0071504647, 0.014604113, -0.0011641752, - 0.0063008033, -0.007835842, 0.019611264, -0.017326545, -0.007689912, - 0.003742028, 0.04099992, -0.011851393, -0.0096304435, -0.047446582, - 0.031702723, 0.0056686467, 0.0037854046, 9.2369696e-4, -6.7938025e-5, - 0.009884926, -0.015037046, -0.015135089, 0.008879446, 0.0035644046, - 0.005755031, -0.016327735, -3.2134942e-4, 0.013316967, -0.01308768, - 0.007914745, 0.005622968, -0.024930278, -0.014905817, -0.058187224, - 0.0038803536, 0.012266703, 0.0017453914, 1.9458994e-4, -0.013769558, - -0.006944528, 0.036446318, 0.005028766, 0.0136068575, -0.0044283103, - 0.03167291, 0.0029997649, 0.013409509, -0.0017813318, -0.0011760008, - -0.00832041, 0.003546958, -0.0034462428, 0.012847849, -0.015797384, - 0.00596746, 0.014097042, 4.9512924e-5, 0.029710421, -0.005142713, - -0.012397085, 0.0044489326, 0.010673297, -0.015398353, -0.006919984, - -0.0040694443, 0.011579152, -0.0024651485, -0.0035016227, 0.018506214, - -0.024903717, 0.0011386126, 0.010225944, -0.023465, -0.0020767273, - 0.007009232, 0.0061112856, 0.018356973, -0.00313895, 0.026037157, - -0.01078739, 0.0073412904, 4.558994e-4, 0.0031685212, 0.0056545455, - 0.0028718775, -0.008643174, -0.004076592, 0.020474251, -0.012876448, - 0.013056585, 0.0012935862, 0.013728703, -0.01061977, 0.031850003, - -0.012780849, 0.01697034, 0.011228486, 0.03122244, 0.042715438, - -0.002520553, -0.008022395, -0.008296548, 0.029646922, -0.008573388, - -0.0050493865, -0.013444563, -0.001690043, -0.034741893, 0.010971742, - -0.009893312, -0.032412957, -0.033478107, 0.025122318, -0.0046756524, - 0.008795561, -0.0044965823, 0.009243556, -0.00893117, 0.00100312, - -0.0113039585, -0.017752457, -9.869876e-4, 0.018334378, 0.0058520203, - -7.5143826e-4, 0.016749684, 0.009328533, -0.009856675, 0.0033255038, - 0.016829886, -0.005499649, -0.01670898, -4.960078e-4, 0.027305206, - -0.029354991, -0.019955445, 0.02507687, -0.0035477174, -0.0049854373, - 0.036815777, 0.028153889, 0.008145585, -0.0061743148, -0.007912895, - 0.004622702, 0.016604971, -0.015436371, 0.02555314, -0.019779788, - -0.024910215, 0.007938104, -0.00965082, -0.005475621, 0.018080804, - 0.012087482, -0.005478784, -0.009079962, -0.007388368, 0.0099331, - -0.009150286, 0.028742459, -0.008500453, 0.004799127, -0.0067026755, - -0.0023872685, -0.016644776, 0.009336807, 0.0045459634, 0.007825756, - -0.002404111, 0.025357805, -0.017330289, -0.0018007783, -0.011429211, - -0.008041115, -0.012700663, -0.0011485156, 0.006016277, 0.029472128, - 0.008144021, 0.011025872, 0.020101096, 0.009143342, 0.010499681, - 0.0064688483, -0.0019378689, -0.0031801986, 0.002345432, -0.005043849, - -3.643666e-4, -0.0069924872, -0.011442677, 0.028142719, 0.016531643, - -0.028888693, -0.0060534305, 0.004972707, 0.02619195, -0.010208512, - 0.0069025583, 0.011205528, 0.008753699, 0.0028390323, -0.0066998336, - 0.013743906, -0.007905909, -0.006781992, 0.02392837, 0.007802863, - -0.011366638, -0.008209184, -4.2750873e-4, 0.011449585, -0.0011301156, - 0.0017558424, -0.014505903, -0.014623671, 0.007610019, -0.020516166, - 0.009756493, 0.0040116343, 0.009480754, -7.8701467e-4, 0.0032914968, - 0.02244355, 5.522126e-4, 0.0010809851, 0.018738417, 0.014314536, - -0.0057836967, -0.010020057, -0.024184514, -0.016809218, 0.019145506, - -0.010062754, 0.0025717104, -0.009070915, 0.008202805, -0.006296002, - 0.002757483, -0.008564512, -0.025977679, -0.0069031776, -0.0292159, - -0.018072162, -0.014150553, -0.008632187, -0.015572589, 0.02108165, - 0.012213777, 0.002942304, 0.001957635, -8.3620264e-4, -0.024137625, - -0.008392443, -0.048023134, -0.005910548, -0.004767939, -0.020307872, - -0.011782506, -0.008050862, 0.012187167, -0.006771183, 0.0060470738, - 0.0067420974, -0.0068884515, -0.0060613514, -0.017856056, -0.012305018, - 0.0060798954, 0.0028272297, 0.016836826, 0.0038458162, -0.022777544, - -0.016796606, 0.0018908503, -0.010932299, 0.019490128, -0.017386971, - 0.0038237094, 0.023954958, -0.00864025, -0.0010363825, -0.0012673351, - 0.016990975, -0.009579305, -0.0027785108, -0.015665054, -0.0032935212, - -0.0018746086, 0.003573705, 0.00601132, 0.024480414, -0.022381376, - 5.5448554e-4, 0.0072761485, 0.017988132, -0.0040776758, -4.7903732e-4, - -0.0021763833, 0.0057179388, 0.037275564, -0.028079681, -0.017359026, - 0.0056620017, -0.00438163, -0.01071023, 0.020591363, 0.011592658, - 0.012680592, -0.007302111, 6.908562e-4, -0.040368546, 0.013912916, - -0.016590098, -0.011124915, 0.006784716, -0.004377992, 0.0028299151, - 0.009263692, -0.0068512917, -0.023431836, 0.01503481, 0.009400458, - -0.0015141575, 0.008202921, -0.00814979, -5.4332276e-4, -0.0013005891, - -0.04260227, -0.0025078047, -0.009121323, -0.0032101187, -0.0029254225, - 0.013611309, 0.0047757323, -0.011111825, -0.0018700819, -0.00402654, - -0.008561089, -0.00839575, 0.028434873, 0.028233364, -0.02054985, - 0.0131702125, -0.008751161, 0.009616311, 0.001850949, 0.009200233, - -0.0019167912, 0.011410773, 0.017656988, 0.0065844175, 0.0021579438, - 0.0057379385, 0.020804297, -1.3135828e-4, 0.013660658, -0.008151969, - 0.009842761, -0.0030748022, 0.0044142073, 0.022118371, -0.0025834427, - 0.012368474, -0.02192059, -0.008918951, 0.007303774, -0.013031264, - 0.01133076, -0.025417123, 0.009864555, 0.0016136648, 0.033042647, - 0.0045574727, 0.0047657606, -0.02817711, -0.044003513, -0.0064785457, - 0.006163945, 0.033957645, -0.0017388631, 0.03014636, -0.0031474615, - 0.024553422, 0.009386972, 0.0031915484, -0.0047578625, -0.009604501, - -0.0047743656, -0.015041601, -0.024578696, 0.018698888, -0.025206616, - -0.026200676, 0.017012848, 0.009320572, -0.0054719, -0.031400453, - -0.004694767, -0.0065978314, 0.019947767, 0.019451637, -0.0033805093, - 7.373109e-4, -0.0017333671, -0.009809275, -0.003034145, 0.0031119958, - -0.015782868, 0.009252185, 0.026774842, 0.013496584, 0.007788259, - 0.004500856, -0.031512316, -0.020567399, 0.016238274, -0.02845944, - 0.0035979382, -0.026890662, 0.035515673, 0.018970294, 0.013460141, - -0.00990842, 0.01160387, 0.0017474565, 0.023690952, -0.0021560849, - 0.014274407, -0.0019324524, 0.021101817, -0.01136818, -0.010174783, - 0.011109161, 0.020047177, -0.010335056, -0.032975204, 0.01113664, - -0.007179107, 0.020757673, -9.5382286e-4, 0.011820941, -0.0112068085, - -0.01603382, 0.0024055308, -0.009853393, 0.00783889, 0.00549253, - 0.01732583, 0.024264246, 0.012933684, -0.0055778488, -0.010284825, - -0.006645454, -0.010753294, -1.20910234e-4, -0.005342367, 0.032148138, - 7.394088e-4, -0.020093828, 0.010058263, -0.008189888, -0.0028634209, - -0.0026334159, 0.03895704, -0.030348757, 0.0030378527, -0.006413542, - 0.009501431, 0.017119627, -0.0032811465, 0.007672254, 0.010741842, - -0.0045444593, 0.012800683, -0.014476073, 0.01954906, -0.008851368, - -0.015793096, -0.0030786607, 0.019487072, -0.005114343, 0.030874884, - -0.005423067, -0.014080787, 0.019678628, -0.027903104, -0.017654775, - 0.02545948, 0.001406625, -0.006417309, -1.9835653e-4, 0.021413362, - 0.02006884, -0.008880013, -0.0045571043, 0.02023455, -0.023407025, - -0.0057654744, -0.0024950146, 0.0045752395, -0.005061898, 0.011030138, - 0.0037757165, 9.0184977e-4, 4.7271015e-4, 0.0048952023, 3.9833838e-5, - -0.0022995165, -0.0022861457, -0.015522164, 0.0016639231, 0.028073728, - 0.001926219, 0.009573695, -0.02268941, -0.0010910487, -0.0057744836, - -0.004126189, 0.013376184, 0.0017320794, -0.009027717, -0.015559051, - -0.00793168, 0.023007821, 0.02599061, 0.0031046595, -0.0080281105, - -0.019921929, 0.00818505, 4.2468717e-4, 0.021056853, 0.018743774, - 0.007758751, -0.004470087, 0.017081209, 0.007004679, 0.008517993, - 6.0603514e-5, 0.0022984403, -0.012219191, 0.024420902, 0.02429933, - 0.008882603, 0.0032730405, -0.0034615162, 0.031488072, -5.9367425e-4, - 0.0050513893, -0.0020473825, -0.031477813, 0.021887524, -0.024281766, - 0.017858947, -0.04561612, 0.0056406963, -0.013171263, -0.0011160012 + "source.genres.label" : [ ], - "reducedFeatures": [ - 0.010062983, -0.009924825, 0.006703097, -0.02458815, -0.017217303, - 0.014530734, 0.013125753, 0.037475895, -0.08886153, 0.035976186, - -0.0054345937, -0.015441144, 0.13006687, -0.01816351, 0.071040906, - -0.042699113, -0.056220815, -0.0040177857, -0.0034458048, 0.016957194, - -0.0037393905, -0.006208951, 0.0058529307, 0.03173287, 0.037707128, - 0.011842823, -0.04157003, 0.0216892, 0.0034786812, 0.002618627, - 0.0184741, -0.013480595, -0.03966178, 0.033073317, 0.014725407, - 0.047828134, 0.02498474, 0.055237807, -0.04506134, -0.0309632, - 0.030846845, 0.018545935, 0.04547884, -0.054659296, 0.06290143, - 0.003126828, -0.011765978, -0.014013614, 0.054221246, 0.039999675, - 0.0068266657, -0.01692352, 0.012174045, 0.05099096, 0.006315593, - -0.028715279, -0.008237837, 0.007426492, -0.005025569, 0.02466291, - 7.440506e-5, 0.013699739, -0.04014407, 0.006976106, 0.11340264, - 0.043868866, -0.0070814933, -0.022607842, -0.023267834, -0.00839491, - -0.056713574, 0.0484022, -0.012368203, 0.018140947, 0.020139836, - 0.046827585, -0.016504457, -0.029344685, -0.03286295, 0.03080714, - -0.01242841, 3.6074867e-4, -0.009372438, -0.027266476, 0.001982815, - 0.04272713, -0.008455783, 0.005497853, 0.0017933556, -0.040469296, - 0.03357066, -0.020063244, 0.015537632, -0.024243094, 0.016437616, - 0.03433038, -0.046714462, 0.015821388, -0.012143783, 8.34953e-4, - -0.0018337121, -9.479542e-4, -0.012609458, -0.025591996, 0.043189097, - -0.012088997, -0.05997266, 0.017897516, 0.011240344, 0.029846031, - -0.040666573, 0.019012423, 0.021496065, 0.041713443, -0.01614027, - 0.015221122, -0.026677048, 0.013227682, -0.011194154, -0.014436996, - 0.02795213, 0.021839997, 0.04816416, 0.013618593, -0.04912647, - 0.047955982, 0.024715211, -0.059695024, -0.023785947, -0.015904276, - -0.03414608, 0.020833146, -0.021539655, 0.01836669, -0.006085271, - 0.0268453, 0.014594281, -0.037680518, -0.03358899, 0.026819125, - 0.030534554, -0.047142603, -0.01713937, -0.030138697, -0.0152876135, - 0.027068436, 0.012299256, 0.025851877, 0.011175302, 3.3753458e-4, - -0.047160823, -0.01778853, -0.0012293368, -6.9396757e-4, 0.002534338, - 0.030461276, 0.0024253838, -0.007859105, 0.040179975, -0.0063484637, - -0.013699682, -0.038456284, -0.0048388946, 0.007230706, -0.0037136048, - -0.016522067, -0.01245129, -0.009481234, -0.028829295, 0.009707616, - -0.04032463, 0.059888482, 0.015689066, -0.004967836, 0.032706562, - -0.0064973636, 0.026368283, 0.012431254, 0.017154312, 0.043229777, - -3.0070485e-4, -0.054699074, 0.031846132, 0.05658386, 0.014250508, - -0.07085192, -0.0031041722, 0.03749375, 0.030931376, -0.03124209, - -0.044227943, 0.0060507944, -0.008429015, -0.015802365, 0.02363257, - -0.06826981, -0.014728869, 0.0051052794, 0.004259163, 0.036799714, - 0.028784174, 0.014920746, -0.002342248, 0.0036172415, 0.0023130958, - -0.014645924, 0.012426814, -0.062185828, -0.039770264, 0.008935723, - 0.08084844, 0.0048886416, 0.015200184, 0.030693935, -0.004904414, - 0.038813397, -0.01714791, -0.012430679, 0.025669128, -0.0072716908, - 0.0639971, -0.0021827102, 0.0029908621, -0.0261034, 5.1516294e-4, - -0.00279592, 0.0074574733, -0.07126938, -0.013197057, -0.0013079753, - 0.005487484, -0.0045880135, -0.04050345, 0.034555506, -0.0028432745, - 0.012721414, -0.05420378, -0.01054006, -0.010804818, -0.008670079, - 0.0046090297, -0.021599801, 0.03832752, -0.026925849, -0.08810093, - -4.859784e-4, -0.026918117, -0.04128805, -0.032461707, 0.008843698, - -0.05420839, 0.021007933, 0.020049531, -0.07036422, -0.030288417, - 0.022154493, -0.045989353, -0.009388954, 0.024397545, -0.007505305, - -0.058360964, -0.037997752, -0.012896065, -0.0026458343, 0.0566014, - -0.0030607758, 0.044108737, 0.012302423, 0.025260394, -0.036522005, - -0.00305269, 2.7601465e-4, -0.03493305, 0.04306408, 0.044601597, - -0.063735396, -0.021303633, -0.045213595, 0.07570606, -0.023591071, - -0.008445991, 0.011305159, 0.021205101, 0.021476535, -0.07871532, - -0.019374758, -0.0065081497, -0.0524308, -0.066477634, 0.0045063295, - 0.035348777, -0.072309025, 0.009410715, -0.06533529, -0.0060047125, - 0.056821223, -0.013254317, 0.02791024, 0.042083643, -0.021231564, - -0.028891543, 0.0071331244, -0.008402509, -0.03154299, -0.0046214713, - -6.130015e-4, 0.01992018, -0.015453894, 0.010914559, 0.036263578, - -0.06083999, -0.007881375, 0.038316626, -0.0042050034, -0.03424775, - -0.032652948, -0.021726202, -0.010903894, -7.558213e-4, -0.010205721, - -0.03961658, 0.020313505, -0.015233577, 0.09983908, 0.01634095, - 0.018995306, 0.026296917, 0.017365564, 0.03827307, -0.0050801076, - 0.021488016, -0.048353873, -0.009335025, 0.028059, -0.0065891272, - -0.056476686, -0.019819167, 0.014837383, 0.018004946, 0.013956153, - 0.012856296, -0.04119181, -0.048243016, 0.0014404951, -0.022607228, - 0.030627884, -0.020306269, -0.02057344, -0.022024399, -0.04428442, - -0.071042, 0.029138774, 0.04859058, -0.070468694, 0.06230717, - 0.021822408, 0.018594887, 0.027029818, 0.014126322, -0.059044365, - -0.0064725676, -0.005146751, -0.061730865, 5.5079075e-4, 0.016597128, - -0.009677202, 0.008186142, -0.026012838, -0.03910249, -0.06038682, - -0.027703311, -0.029758444, 0.019256292, -0.0055835396, -0.014887371, - 0.017553229, -0.0030395316, -0.009110065, -0.03654662, 0.027017737, - 0.006801106, 0.011508778, -0.009488376, 0.014140967, 0.023552489, - -0.020298846, 0.037091736, -0.02536777, -0.012925691, -0.053896774, - 0.06022527, -0.028923187, -0.017405085, 0.016979566, 0.0180844, - 0.027590701, 0.014802408, 0.0030845052, -0.022557558, 0.027568195, - 0.031215433, -0.027682723, -0.016215986, -0.017198822, 0.031379595, - 0.0049819737, -0.036065243, -0.008214714, 0.017717896, 0.008306145, - -0.0193072, 0.06876534, 1.2202724e-4, -0.007780961, 3.6601505e-5, - -0.0085971, -0.0037601714, 0.011843338, 0.008186593, 0.09221318, - -0.014519761, -0.020124493, -0.02937236, -0.005098062, 0.026859831, - -0.025907252, -0.0067198323, 0.0264132, 0.03908901, 0.056748148, - -0.015643083, -0.012744525, 0.043290686, -0.003190881, -0.018256744, - -0.009127437, -0.010163105, 0.0054916744, 0.039655022, 0.04276583, - -0.039655812, -0.04287524, -0.01997699, -0.017265318, 0.047351856, - 0.008061472, -0.025573006, -0.04130362, -0.03880096, 0.036679752, - 0.044938434, 0.013510782, -0.033063337, -0.024579762, -0.0037767955, - 0.07921138, -0.00827275, -0.004285419, -0.009668589, -0.030776922, - -0.059615515, 0.03411454, -0.011884907, 0.045648303, 0.04602086, - -0.0027723901, 0.010807799, 0.046888486, 0.012990704, -0.07131882, - 0.0034852661, 0.048286684, -0.030950822, -0.050335474, 0.0131060835, - 0.056855284, -0.009040054, -7.863677e-4, -0.031069577, -0.027017066, - -0.039899524, -0.0425951, -0.0156017775, 0.008719935, 0.06872772, - -0.016990889, 0.022939153, -0.020568985, 0.02202879, 0.027539656, - -0.03276235, -0.025084836, 0.065148816, 0.045550458, -0.061473656, - 0.007983694, 0.03530541, -0.012183727, 0.009466967, 0.039018784, - -0.051373865, 0.014813045, -0.02204698, -0.014787428, -4.986442e-4, - -0.028191742, 0.02507863, 0.06418809, 0.006738177, 0.01296492, - 6.485917e-4, -0.004637977, -0.045223545, 0.010579497, 0.05485456, - 0.0052586473, 0.032570492, 0.027313164, 0.002219633, 0.029783024, - 0.02239616, 0.052958205, -0.028971178, -0.005531964, -0.075521685, - 0.028295113, 0.052203275, -0.011235138, 0.025019735, 0.02243006, - -0.012519675, 0.04374154, -0.029061584, -0.008583667, 0.016946753, - -0.014644327, 0.039149873, -0.038602084, 0.014614877, 0.044666782, - 0.013802426, -0.018074358, 0.023877665, 0.016512407, 0.00314399, - 0.018616047, -0.03207834, -0.028224798, -0.009125849, -0.0066862623, - 0.028950697, 0.0022034973, 0.016407494, -0.050232396, 0.02433845, - 0.018075267, -0.004745779, -0.042593297, -0.0062478483, -0.005163267, - 0.010082895, -0.035875864, 0.0039715823, -0.036871962, -0.0285912, - -0.018839842, 0.03100974, 0.0012177663, 0.05909936, -0.013277757, - 0.009718924, 0.024493963, 0.05002462, -0.0094316695, 0.013748419, - 0.0033576123, -0.0017575836, -0.009290433, 0.033143066, -0.0045523345, - 0.005524166, -0.014922101, -0.023526162, -0.009610257, 0.020031093, - -0.04178033, -0.029209806, -0.022035485, -0.0064548766, -0.0375376, - -0.002431302, 0.01602939, 0.023491042, 0.011669456, -0.0130784875, - 0.028410077, -0.01530477, -0.0058899196, 0.07122042, 0.03106162, - -0.012151164, 0.039419435, 0.029830683, -0.030429529, 0.051545598, - 0.029596813, -0.059545692, 0.013405118, 0.07898108, 0.006931064, - 0.013573784, 0.03665803, -0.009668619, -0.02523043, 0.038698595, - -0.021643642, -0.014550787, -0.011111288, 0.025343504, 0.030197332, - 0.07418812, 0.043547038, -0.0012916578, -0.009101024, -0.012234048, - 0.038818777, -0.012014003, -0.0011616722, 0.005613623, 0.0685813, - -0.019066924, 0.01304204, -0.03518498, 0.015103757, -0.0055552796, - 0.04174142, -0.025259625, -0.034324616, -0.010314462, -0.05826087, - 0.022973938, -0.004530272, -0.012593119, 0.049953833, 0.011736943, - 0.008390214, 0.034803484, -0.03551093, 0.0053911423, 0.03255773, - 0.008748469, -0.0071016005, 0.017177947, 0.0028828215, -0.046478216, - 0.0119135985, 0.02235274, 0.05682695, -0.01777888, 0.037733346, - 0.0029168306, -0.014479014, 0.007872708, -0.007411859, 0.01591303, - 0.038748626, -0.020487878, 0.0017704299, 0.023366423, 0.008338722, - 0.049663026, -0.03889589, 0.01462931, -0.032792218, 0.031078994, - -0.013149544, -0.011461425, 0.029055597, -0.054128475, 0.07083192, - 0.046488192, 0.010576837, 0.029956153, 0.049100805, 0.02818897, - 0.007884763, 0.0076304823, -0.017972415, -0.030704634, -0.0061858436, - 0.02125148, 0.008482773, 0.016446484, 0.11476812, 0.0046176086, - 0.02007494, -0.034083337, -0.0021489912, -0.027660664, 0.034965396, - 0.0041829343, 0.034650896, 0.013349863, 0.03312767, 0.033282187, - 0.03261428, -0.0578171, 0.010227081, -0.0046998616, -0.022249678, - -0.011653849, -0.07477685, 0.003138956, -0.058182437, 0.011321829, - -0.019233935, -0.0033741675, -0.0038338334, -0.043056976, 0.015618723, - -0.030610884, 0.056603115, -0.021540098, -0.016697621, -0.022385387, - 1.14866496e-4, 0.016326733, 0.018400723, 0.00425042, -0.023178631, - -0.015837686, -0.019295545, 0.0046954504, 0.022260373, 0.04472485, - -0.026731193, 0.0687316, 0.056031357, 0.044871803, -0.01046732, - -0.012688699, -0.024226053, -0.0013446112, 0.032261945, 0.03049871, - -0.01974727, 0.0049083713, 0.029333873, -0.035143618, 0.01799294, - -0.006967152, -0.0017635426, -0.017150434, -0.03254603, 0.0072758794, - 0.0030516968, 0.012816781, 0.005680299, -0.04276124, -0.061239857, - -0.02393588, -0.056765534, -0.017032808, -0.032560993, 0.0013232151, - 0.053250298, 0.037965637, 0.026927223, 0.02044948, -0.03710894, - 0.03478443, -0.009470325, 0.002561938, 0.0028332027, 0.024473026, - -0.0012089022, -0.007184248, -0.045690425, 0.016722182, -0.015968367, - 0.006537695, -0.00991863, -0.013751621, 0.053869534, 0.029748967, - -0.00454884, -0.023423793, -0.0380382, 0.030019974, 0.03735877, - 0.008707653, -0.03346518, 0.002430977, -0.044535182, 0.032424044, - 0.03359903, -0.048581842, 0.026172183, 0.059454624, -0.08118649, - 0.004532435, 0.033812676, -0.008922392, 2.0609894e-4, 0.0063397563, - -0.052229624, 0.037961587, 0.0018778477, -0.06405317, 0.036175847, - 0.015842441, 0.013772287, -0.020606516, 0.007535304, 0.01572193, - 0.020735105, -0.028868845, -0.06292117, -0.0046457993, 0.013419512, - -0.01316394, 0.0111135, -0.012820216, 0.013205798, -0.008615817, - 0.03610816, 0.090699926, -0.03727818, -0.048479483, 0.010143044, - -0.004584248, 0.020050121, 7.411416e-4, -0.051501453, -0.007194152, - 0.018907124, -0.02056714, 6.63914e-4, 0.015364047, 0.10154962, - 0.0065932786, 0.090107545, 0.03264325, 0.03998237, -0.0058400827, - 0.028948262, 0.026878601, -0.025893798, 0.0121042775, -0.035009954, - -0.025288131, -0.0011256536, -0.0348151, -0.03459303, -0.010503641, - 0.023278981, -0.0015858457, -0.010377854, 0.0047050263, -0.025667401, - 0.04318368, 0.009207861, -0.060548063, 0.020945871, 0.022176411, - -0.027472677, -0.011250846, -0.031626068, -0.029356515, -0.02361344, - 0.008037221, 0.0068185735, -0.042353757, -0.026774278, -0.011168148, - -0.007702052, 0.060404196, -0.031196907, 0.006722995, -0.001944045, - -0.049485166, -0.030674184, 0.0208312, -9.7120367e-4, -0.037244804, - -0.019931609, 0.027753329, 0.029884953, 0.0059152558, -9.664203e-4, - -0.04017486, -0.022061197, 0.032298397, 0.0310196, -0.002278173, - 0.011871504, 0.04704669, 0.008149926, -0.023392098, 0.0092510395, - -0.010830561, -0.037175525, 0.011266562, 0.03698244, 0.011352981, - -0.026710419, 0.033260413, -0.023325305, 0.007595756, -0.026714262, - -0.015732467, 0.0073609324, 0.01364045, 0.023086203, -0.017743498, - -0.008996769, 0.0036821961, -0.004336868, -0.01625812, -0.03907889, - -0.033449043, 0.012202808, 0.0059022466, 0.04393888, 3.314801e-4, - 0.03155854, -0.022215294, 0.042539034, -0.05454345, 0.024260584, - 0.0011753722, -0.052769225, -0.02963764, 0.014541524, 0.014794211, - 0.030113205, -0.03175302, -0.016702961, 0.01984129, -0.012219805, - 0.019537618, -0.033548955, -0.024856402, -0.08976696, -0.003786681, - -0.0041947565, -0.034987807, -0.03805719, 0.008739254, 0.052122455, - -0.014053742, -0.0011161881, 0.040575586, -0.027584307, 3.5489624e-4, - -0.029575022, -0.026486352, -0.00804758, 9.603055e-4, -0.015891926, - -0.02073546, 0.005812816, -0.012118432, -0.0021243314, -0.019465078, - -0.04358928, -0.031214181, 0.014488193, -0.0016876432, -0.002830783, - 0.041076686, 0.012194311, 0.03098376, -0.0040122396, -0.06278741, - -0.024696987, 0.024078874, -0.041001003, -0.06534155, -0.0014287813, - -0.016365485, 0.0024744105, 0.0155688515, 0.017964024, 0.048291836, - 0.006665437, -0.029773552, -0.043731853, -0.0025769165, 0.04714655, - -0.010278248, 0.016862895, 0.010946945, 0.007763459, 0.033127557, - -0.026130196, -0.03751151, -0.04193319, 0.021473503, -0.039352603, - -0.00867857, -0.002322025, -0.018429266, 0.01657288, 0.012406447, - -0.0122390175, -0.00610664, 0.0022164208, 4.1270212e-4, 0.011029079, - -0.016631782, -0.055993777, -0.010509972, -0.030531986, -0.023517687, - -0.032154452, -0.022124982, -0.057598043, -0.002078239, 0.004670284, - 0.002607033, -0.0012744453, -0.037532985, 0.013414664 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.02418603, + 0.009767216, + -0.026419742, + -0.016767267, + -0.013909499, + 0.008183388, + 0.00807132, + -0.0032004043, + -0.0036353923, + 6.898979E-4, + 0.010465183, + -0.006301104, + -7.3728454E-4, + 0.02102439, + 0.0018829667, + -0.005371109, + 0.00956233, + -0.020929482, + 0.013960404, + -0.024307648, + -0.0070253313, + 0.008563723, + -0.0020728456, + -0.011246054, + -0.011936604, + -0.013865018, + 0.007149616, + -0.0051703327, + 0.0041716015, + -0.018804854, + 0.012101373, + -0.031297978, + -0.021742633, + 0.022782596, + 0.0013725919, + -0.021518016, + -0.022771979, + 0.019775784, + 0.008755733, + -0.018110827, + -0.002723157, + -0.020934174, + 0.01512706, + -0.018029556, + -0.0065470817, + -6.6904083E-4, + -0.0014355762, + -0.015810894, + -0.0107861, + 0.0018949383, + -0.005704391, + 0.015953075, + -0.0033390531, + -0.021385912, + 0.041044317, + 0.032720823, + 0.0181532, + 0.0050847023, + 0.0244368, + 0.0019664075, + 0.006673095, + -3.3213155E-4, + -0.008237824, + 0.027963836, + -0.0010945664, + 0.005674568, + -0.010227192, + -0.013736601, + 0.009426494, + 0.0058895927, + -0.017506545, + 0.002470695, + 0.022757616, + 0.0017923203, + 0.026184283, + 3.3215218E-4, + -0.0041455273, + -0.03472236, + 0.004230058, + 0.0055575236, + 0.0023911064, + 0.021610653, + -0.007955345, + 0.022276672, + 0.018121012, + -0.004662695, + -0.04141938, + 0.018327896, + -0.0012773251, + -0.011761387, + 0.024796493, + 0.015092595, + -0.010040848, + 0.02448291, + -0.0040565087, + 0.0013510108, + -0.005679628, + 0.0027283723, + -3.8281924E-4, + 0.027494183, + -0.01151999, + 0.013328189, + -0.03408934, + -0.010060962, + -0.019196283, + -6.909938E-4, + -0.0041444968, + -0.019786555, + -0.020099906, + -0.0048162, + -0.0034318161, + -0.020509204, + 0.00993378, + -0.009107249, + 0.004147969, + 0.013515773, + 1.9916575E-4, + -0.0057990956, + -0.008905985, + -0.008589884, + -0.009877267, + -0.03200922, + 0.023400897, + -0.02023492, + 0.007832986, + -0.003794179, + 0.0029783782, + -0.008450535, + -0.029381923, + 0.016893078, + 0.016044084, + -0.008479781, + -0.02576779, + -8.891965E-4, + 0.017803967, + -0.02312138, + 0.042644378, + 0.0077395225, + 0.0011368626, + 4.0128847E-4, + -0.010019984, + 0.0019125735, + 0.01081844, + -0.014801149, + -0.009848336, + 0.023349842, + -0.020079413, + -0.00717016, + 0.032372523, + -0.015966289, + 0.005593226, + 0.0019681551, + 0.008811512, + -0.0040521254, + 0.03614846, + 0.013688961, + -0.008769469, + 0.010083243, + 0.00383397, + 3.329732E-4, + 0.0012510155, + 0.008644457, + 0.013072509, + 0.0012794535, + 0.003874324, + 0.022896074, + -0.022603452, + -0.03000818, + 0.014223359, + -0.0062979856, + 0.01386248, + 0.011148961, + -0.0063901967, + 0.044114437, + 0.011698445, + 0.021176975, + -0.019293245, + -0.018536588, + 0.007448206, + 0.017503558, + -0.019000612, + 0.0028673026, + -0.0060842065, + 0.007221977, + -0.0012433605, + -0.024281688, + 0.004215468, + 0.008066199, + 0.026454808, + 0.0034655181, + 0.0070517184, + -0.017091516, + -0.007896825, + 0.011889687, + 0.020811612, + -0.010810456, + -0.0016441387, + -0.0031280704, + 0.002416487, + -0.00900303, + -0.004975185, + -0.017453952, + -0.010470515, + 0.0063202963, + 0.004644989, + -0.0033983444, + -0.014376159, + -0.023155535, + -0.0025662761, + -0.003677547, + -0.0028577857, + 0.01285963, + -0.003923805, + 0.0090706935, + -0.012971328, + -0.010140471, + 0.024377968, + -0.017336851, + 0.0071813595, + -0.0018058877, + 0.003181514, + -0.018060647, + -0.006371705, + 0.012200939, + 0.017687203, + -0.0011121233, + 0.019755509, + 0.008457996, + -0.0077216825, + 0.011628899, + -0.002366183, + 0.007805062, + 0.011903384, + -0.020570854, + -0.0026055805, + 0.022845116, + 0.010163322, + 0.026061414, + -0.006698236, + -0.020331815, + 0.0106616905, + -0.0024653424, + 0.007984225, + -0.0025582938, + -0.012420727, + -0.017564332, + -0.007719649, + -0.003727584, + 0.0012263411, + 0.011510172, + -0.010951979, + -6.931892E-4, + 0.0046088896, + -2.1620559E-4, + -0.008706327, + 0.021231737, + 0.022250801, + -0.0125849545, + 0.009947691, + -0.009259626, + -0.008167416, + -0.018345851, + -8.681759E-4, + -0.0016304994, + -0.015681949, + 0.015722247, + 0.022843359, + -4.2425474E-4, + -0.0036131877, + -0.0126304375, + -0.0024647883, + 0.0012570189, + 0.018145943, + 0.009990315, + 3.436553E-4, + 0.0074207345, + 0.0011482091, + 0.009206208, + 0.0093029365, + -0.014115042, + 3.4593136E-4, + -0.027706381, + 0.015847849, + 0.015871676, + -0.046596333, + 0.015913507, + -0.016793346, + -0.008654519, + -0.018485028, + -0.008077452, + 0.038832553, + -0.027588736, + 0.017421022, + -0.006512416, + -0.0131783355, + -0.028346552, + -0.005787804, + -0.0055171307, + 0.0033927106, + 0.027423406, + -0.010920871, + -0.019504203, + -0.03612004, + -0.033661544, + 0.009529661, + -0.031307306, + -0.014699844, + 0.024689235, + 0.020005891, + -0.0028083771, + -0.009327299, + 0.014883038, + -0.012026785, + 0.019101258, + 0.021009441, + 0.0024248406, + -0.03569218, + -0.0051658023, + -0.01085504, + 0.0060769767, + -0.0156125, + 0.03368605, + -7.28649E-4, + 0.006377478, + -0.017924435, + 0.010475735, + 0.015106002, + -0.021323228, + -0.0050395043, + -0.012916238, + 9.364138E-4, + -0.0022163596, + -0.012491721, + 0.02127414, + 0.032905016, + -0.00689302, + 0.018215828, + -0.016466808, + 0.014702372, + -0.010520574, + 0.006817644, + 0.009724598, + 0.023222608, + -0.013824911, + 0.007500084, + -0.0012688637, + -0.012741087, + -0.021282172, + 0.0045403684, + 0.0033837361, + -0.0037596284, + -0.005235824, + -0.004329333, + 0.010082983, + 6.8163645E-4, + 0.017363712, + 0.024711868, + 0.020925352, + 0.006467207, + -0.008617365, + 0.002141956, + -0.0130404355, + 0.0058673853, + -0.008919883, + 0.015692765, + 0.0030850936, + -0.0072244396, + -0.0030514295, + 0.014374718, + 0.020422772, + 0.030571237, + 8.1960356E-4, + -0.018546926, + -0.002708966, + 0.0073342803, + 8.973215E-4, + 0.0074401535, + 0.0030865914, + -0.024511464, + -0.01798625, + -0.018585838, + -0.035360858, + -0.010195833, + -0.010868135, + 0.008956608, + -0.0021092664, + 0.011086275, + 1.5898395E-4, + -0.0022998985, + -0.0053993734, + -0.0061299, + 0.026332185, + 0.017304126, + -0.008563096, + 0.0066178925, + -0.0050795646, + 0.011254823, + 0.026472675, + 0.0084649045, + 0.009444057, + 0.029441487, + 0.0060512363, + -0.016443178, + 0.0022345092, + 0.020078752, + -0.025682082, + 0.026911628, + 0.021563895, + 0.0030583069, + -0.01282292, + -0.023035573, + -0.020349089, + 0.034117874, + -0.0011549161, + -0.003956894, + -0.009878357, + -0.013142002, + 0.037723392, + -0.004024871, + 0.012667559, + 0.01595519, + 0.010786144, + -5.853543E-4, + 0.0013874483, + -0.024741374, + -0.011704417, + -0.018708825, + 0.024167016, + -0.018765092, + -0.006535298, + 7.179208E-4, + 0.011605391, + -0.0044480893, + 0.022776779, + -0.0029512723, + -0.004281766, + 0.012449003, + 0.004782056, + -0.009779071, + 0.0200749, + 0.008019416, + 0.0055250167, + -1.14264E-4, + -0.009764977, + 0.01328852, + -0.0102593675, + -0.009185321, + 9.667671E-4, + -0.026542855, + -0.002280832, + 0.0084284255, + 7.322563E-4, + 0.009707836, + -0.005836271, + -0.016192246, + -0.012720666, + 0.006274501, + -0.010349354, + 0.0063697104, + -0.0072999327, + 0.01595992, + -0.01594525, + -0.01089334, + -0.0054626903, + -0.007020045, + 0.02207827, + 0.0014896463, + -0.01717607, + 0.0035444405, + -0.010133281, + 0.020979758, + 0.016718527, + 0.030048277, + 0.015580607, + 0.001536664, + -0.010883295, + -0.0010822341, + -0.008830147, + -0.007479852, + -0.0027314934, + -0.03574027, + -0.011202901, + 0.013073856, + 0.0068441457, + -0.0023696222, + -0.022068977, + 0.009373976, + -0.0039192066, + -0.005885663, + -4.63162E-4, + 0.022315433, + 0.004221131, + -0.017630147, + -0.032429013, + 0.014985993, + -0.019018238, + 0.0017408516, + -0.012646458, + -0.0041439272, + -0.024461986, + -2.029261E-4, + 0.02160802, + -0.02635747, + 0.015817942, + -0.00539446, + -0.014551629, + -0.019067286, + 0.009560204, + -0.00855282, + -0.011364656, + 0.011133267, + 7.477593E-4, + -0.02036719, + 0.020827735, + 0.003048089, + -0.008886374, + 0.008263033, + 0.013481388, + -3.834034E-5, + 0.011401282, + -0.0014556464, + 8.358407E-4, + -0.0076404763, + -0.0125103835, + -0.0141257, + 0.006704259, + 0.012899635, + 0.015421473, + 4.5235857E-4, + 0.016496193, + 0.011523119, + -0.010098947, + 0.019644437, + 0.026666317, + -0.046358045, + 0.0068284506, + 0.0032160084, + 0.0010809373, + 0.020416243, + -0.019155936, + 0.016963976, + 0.03335242, + -0.013100382, + 0.015425263, + 0.01761574, + 0.012365236, + 0.0181774, + 0.009610159, + 0.015452403, + 0.030690935, + -0.013249809, + -0.0076559675, + 0.02217965, + 0.017106675, + -0.025645055, + -0.013525351, + 0.012153206, + 0.02323339, + -0.01627678, + -0.0074575096, + 0.0043624714, + 0.022410147, + 0.007170563, + 0.02009811, + 0.01085453, + 0.037349813, + -0.002034212, + -0.017530372, + -0.0033152644, + -0.008155818, + 0.020978168, + -0.01451857, + 0.0100975055, + 0.01630259, + -0.007566651, + -0.032037426, + 0.012079888, + -0.014682283, + 0.005019325, + 0.022620443, + 0.00887168, + 0.0192684, + -0.016351359, + -0.016230958, + 0.0077371052, + -0.008050105, + -0.02727863, + 0.008538539, + -0.018965507, + -0.004092741, + 0.016635077, + -0.002581117, + 0.0355215, + -0.013737275, + 0.006407152, + -0.0025098298, + -0.0022856214, + 0.016348053, + -0.008662754, + 0.0043803463, + 4.8225408E-4, + -3.459268E-4, + -0.003122206, + -0.027243001, + 0.011461072, + -0.011668692, + -0.029463638, + 0.00911325, + -0.008323437, + 0.010152492, + 0.0037915837, + 0.0101181045, + 0.008446117, + -0.034387928, + 0.0076224417, + -0.007764796, + 0.009059086, + -0.033693384, + 0.02287931, + 0.008320625, + 0.011744346, + -0.009884005, + -0.023469077, + 0.0067478777, + 0.0039010185, + -0.019323109, + 4.488148E-4, + -0.006563232, + 0.02065472, + -0.0068413485, + 0.0045554116, + 0.007862433, + 0.033245888, + -0.016346449, + -0.0041550123, + -0.0016508806, + -0.008436882, + 0.020553548, + -0.00901336, + -0.0015485949, + -0.0082586, + 0.006977116, + 0.013958682, + 0.011872193, + -0.016007124, + 0.003850861, + -0.01395762, + -0.0107515985, + 0.0023528177, + 0.0097932555, + 0.02675805, + -0.021136329, + 0.013593325, + -0.0081583625, + -0.0051675425, + 0.017299946, + 0.003799903, + 0.023305194, + 0.026035685, + 0.018696502, + -0.028350573, + 0.010760176, + 0.0055967206, + -0.0053276974, + 3.9658116E-4, + 0.005415541, + -0.003840907, + -0.024926562, + 0.0145908715, + 0.011528106, + 0.011473172, + 0.013102405, + 0.018279668, + -0.015087881, + 0.022957856, + 0.004910261, + -0.008576927, + -0.007903527, + 0.019526316, + -0.006828263, + -0.021019025, + 0.01747101, + -0.0054295715, + -0.029098133, + 0.002472983, + 0.0128202615, + 0.00992008, + 0.021461353, + 9.396882E-5, + 0.022323422, + -0.014763698, + -0.0063593937, + -0.008507668, + -0.018222377, + 0.012770788, + 0.0064970087, + -0.016857158, + -0.002869658, + -0.009255332, + -0.0017164814, + 0.015807632, + 0.006196928, + -1.01513084E-4, + -0.0073900926, + -9.732538E-4, + 0.005784577, + -0.004879829, + 0.01577698, + -0.0072470037, + -4.8723922E-4, + -0.0011237452, + 6.297492E-4, + -0.008037276, + -0.0120024085, + -0.019986361, + 0.015967669, + 0.01051606, + 4.5033533E-4, + 0.0055894195, + -0.014904228, + 0.030510955, + 0.0038513613, + -0.003736788, + -0.0014594672, + -0.023766471, + -0.0126468185, + -0.013361134, + -0.005661917, + -0.0034748667, + 0.010119533, + 0.017478779, + 0.0033858104, + -0.0063966815, + 0.0015619348, + -0.012120817, + -0.00420149, + -0.0037988792, + -0.024417333, + -0.008775554, + -0.002345408, + -0.021491224, + 0.016807813, + 0.022287937, + -0.0466987, + 0.0019272096, + 0.011494225, + -0.02053639, + 0.009726737, + 0.0066367635, + 0.023044147, + -0.014742722, + 0.001594044, + -5.0843897E-5, + -0.018108033, + -0.025972446, + 0.015124204, + -0.0034889851, + -0.011925601, + 0.009105025, + -0.024429161, + -0.014612545, + 0.008678372, + -0.0129377255, + -0.017520541, + 0.020621799, + -0.004385165, + 0.020260664, + 0.0019898522, + -1.9924776E-4, + -9.022428E-4, + 0.021300692, + 0.021556854, + -0.007723662, + -0.037746966, + -0.012400142, + -0.032414116, + -0.013841357, + 0.003931265, + -0.009296691, + -0.0059211077, + -0.015752304, + 0.022061393, + -0.00789697, + 0.006866844, + 0.004186142, + -0.0044946456, + 0.0055040983, + 0.01619893, + -0.025240988, + 0.019152088, + -0.005070946, + -4.839107E-4, + 0.020350613, + -0.018690966, + 0.012312757, + -0.0034911938, + 0.015804134, + 0.01828458, + 0.021348799, + -0.0015745744, + -0.010534761, + -0.004754829, + -0.0037496903, + -0.027777987, + 7.7525486E-4, + 0.040573426, + 0.010651277, + 0.007893969, + 0.0120771285, + -0.010663435, + -0.00584017, + 0.036905363, + 0.015541959, + -0.011033207, + 0.012906471, + -0.01725933, + 0.020112852, + 0.0044807806, + 0.010033141, + -0.036045875, + -0.010153721, + -0.0065590655, + 0.028533457, + -0.0118550435, + -0.008667274, + -0.044093896, + -0.010439512, + -0.034241974, + -0.009326697, + 0.015454793, + 0.008045075, + 0.0033118925, + -0.005708285, + -0.015954498, + 0.01598218, + 0.015037252, + -7.759931E-4, + -0.0035911899, + -0.008016513, + -0.0077596772, + 0.0063357125, + -0.024964968, + 0.0371753, + 0.0010911891, + -0.0126744425, + 0.015623732, + -0.005244846, + -0.007092736, + -0.0073728906, + -0.0035046164, + -0.002761817, + -0.013639392, + -0.011139296, + -0.011434828, + 0.00724446, + -0.016462836, + 0.03908163, + -6.557997E-4, + 0.013611589, + 0.007294231, + -0.019644838, + 0.008669044, + -0.0038765806, + 0.0019048842, + -5.506706E-4, + 0.0043001533, + -0.02413488, + 0.01241189, + -0.016546356, + 0.013245114, + 0.008525801, + 2.9685258E-4, + -0.014572357, + 0.007009573, + -0.019998597, + 0.06061358, + 0.0021786992, + -0.00883363, + -0.022942705, + -0.042390287, + -0.008953249, + -0.011701882, + -0.009002357, + -0.007236257, + 0.010582566, + -0.0076116426, + 0.006515382, + 4.5070497E-5, + 0.016369488, + 0.0013806773, + 9.4187487E-4, + -0.018768074, + 0.0075441278, + -0.03353606, + 0.024253832, + 0.008894722, + -0.014351165, + -0.024992572, + -0.0054879664, + -0.002128831, + 0.01024062, + -0.0108803185, + -0.014808517, + 0.036033027, + -0.014554002, + -0.025177548, + 4.5261683E-4, + -0.004167951, + 0.0037113482, + 0.022102095, + -0.0022778662, + -0.0097695915, + 0.010908882, + 0.0015335882, + -0.011234803, + -0.009907586, + 0.024248032, + -0.004259327, + 0.007435819, + -0.0136735905, + -0.0035804636, + 0.008992787, + 0.009849674, + -0.0060353153, + -0.018774997, + 0.0034783857, + -0.0049585807, + 0.0077477256, + -0.0046711196, + 0.0071645677, + 0.0242726, + -0.010614714, + -0.010484208, + -0.0076487814, + 0.0051433006, + 2.68813E-5, + -0.018533042, + -0.020001259, + -7.08389E-4, + 0.0076690335, + 0.028019235, + -4.8400287E-4, + 0.005103678, + 0.008298739, + 0.0050658803, + -0.020707399, + 0.0327255, + 0.011221703, + 0.0036748445, + -0.007735018, + 0.020076495, + -8.7059516E-4, + 0.008647336, + -0.020380145, + -0.005839669, + 0.013012027, + 0.008233103, + -0.006346665, + 0.03613394, + -0.01903847, + -0.017589552, + -0.015618332, + -0.013982521, + -0.024594883, + 0.009715319, + 0.003882645, + 0.014083804, + -0.024582097, + -0.021685231, + -0.016652798, + 0.0072232597, + -0.0018160759, + -0.020736571, + -0.057649042, + 0.017394345, + -0.008429739, + -0.0055367155, + 0.01278384, + -0.0034585646, + -0.023895906, + -0.012977757, + -0.008159201, + 9.13958E-6, + 0.0076006716, + -0.02002336, + 0.011863081, + 0.005396704, + 0.007500961, + 0.0015176961, + -0.0018914681, + -0.015276491, + 4.072851E-5, + -0.0062458646, + 0.015280455, + -0.029843478, + -0.03140275, + -0.01342236, + -0.0021272216, + -7.6492346E-4, + -0.0020230936, + -0.029978104, + -0.0039015058, + 0.001619956, + -0.0051656626, + 0.010040487, + 0.0059882943, + -0.007706318, + -0.020042615, + 0.009480678, + -0.02962977, + -0.021700684, + -0.01357164, + 0.010636253, + 9.889621E-4, + 0.0063391915, + 0.020824082, + 0.0058038207, + -0.009453435, + 0.012512614, + 0.020656034, + 0.008234427, + -4.4899524E-4, + -0.016281078, + -6.882275E-4, + 0.003558065, + 0.025072852, + 3.3492706E-4, + -0.038537078, + -2.4265287E-4, + 0.005526331, + -0.009673021, + 0.008603245, + 0.009088715, + -0.009517934, + -0.006451083, + 0.0034472286, + 0.054815467, + 0.01025435, + 0.008752087, + 0.01654565, + -0.02423162, + 8.69654E-5, + -3.3499987E-4, + 0.005124813, + 0.0097012445, + 0.0016257678, + 0.016513325, + -0.030905187, + 0.013305736, + -0.009607464, + 0.0020564615, + -0.0034101284, + 0.019367902, + 0.008335864, + -0.0125733735, + 0.0111734, + -0.0039024698, + 0.007194174, + 0.0093221925, + -0.013572998, + -0.011524275, + -0.0140643185, + 0.012036604, + -0.032304004, + 0.005299751, + -0.019951139, + -0.0041575357, + 0.016497182, + -0.0069186813, + 0.003995923, + 8.9066074E-4, + -0.00315856, + -0.02205115, + 0.017083194, + -0.012474315, + 0.019974489, + -0.0221062, + 0.0069279172, + -0.0075545856, + -0.011972317, + 0.01113941, + 0.018303704, + -0.015743379, + -0.009312715, + -0.0030004287, + 0.003742683, + -0.0057379254, + 0.0063847816, + -0.010325409, + 0.02483101, + -0.006757959, + 0.015415144, + -0.018367779, + 0.023183182, + 0.013613182, + -0.00279756, + 0.0060965996, + 0.019813892, + 0.015426592, + -0.0032135083, + 9.538976E-4, + 0.0027791357, + -0.019103102, + 0.03219944, + -0.020153113, + 0.018149223, + 0.0201604, + -0.00890583, + -0.012979944, + -0.0022945278, + 0.007943058, + -8.2282955E-4, + -7.5720024E-4, + 0.0028171919, + 0.009575923, + 0.035410233, + -0.0021042086, + 0.0017367313, + -0.010457362, + 0.0011191145, + -0.029142288, + -0.003918152, + -0.042608015, + -0.038301386, + -0.0072925594, + 0.013085085, + -0.0061486214, + 0.014597481, + -0.009422529, + -0.0020305559, + -0.011428272, + 0.008681655, + 0.013557117, + 0.0062698997, + 0.00713405, + -0.016755419, + 0.0039097206, + 0.0025961369, + -0.0032909364, + 0.026733723, + -0.025872499, + -0.0012690792, + 0.004317625, + 0.030297996, + -0.021611234, + -5.9783115E-4, + 0.008393026, + -0.015958859, + -0.0019337551, + 0.0067353677, + 7.343577E-4, + 0.0052589807, + 0.005300587, + 0.009702772, + -0.001737305, + 0.0029934056, + -0.018882645, + -0.022298068, + 0.0022538067, + 0.009741537, + -0.012673765, + 0.016913772, + 0.010981156, + -0.004941342, + 0.0069286004, + 0.01394994, + 0.002755872, + -0.016232772, + -0.022732634, + -0.0040302873, + -0.004323362, + -0.0072946143, + 0.012527647, + -0.023303192, + 0.007344397, + -0.0010208322, + 0.012758889, + -0.010681383, + 0.02542809, + -0.0026259993, + -0.009881656, + 0.028336985, + 0.014524599, + -0.009103736, + 0.0066415165, + 0.017037759, + -0.0057298453, + -0.0013352743, + -0.0044546323, + 0.037809875, + 0.0029798208, + 0.008648329, + -0.010362678, + -0.007325352, + 0.033159398, + 0.0013207125, + 0.014091017, + 0.004654892, + 0.029309211, + -0.0049842023, + 0.0011589869, + 0.0355974, + -0.030158369, + 0.01566508, + 0.0038983496, + -0.00263931, + -0.016240114, + -0.0030586517, + 0.0057820296, + -0.0053643477, + -0.008520783, + 0.010541404, + -0.016933596, + 0.0022516965, + 0.022693153, + -0.009256703, + 0.009610322, + 0.011536781, + 0.0075588147, + -0.04388695, + -0.010369135, + -0.017061278, + -0.0066637667, + 0.02795878, + 0.027661173, + 0.004382174, + 0.004572395, + -0.0024963547, + -0.010472345, + -0.006048976, + 0.014513022, + 0.0020087895, + 0.0023208184, + 0.009041384, + 0.009250114, + 0.011781602, + 0.013938362, + 0.006352816, + 0.017164143, + 0.009644507, + 0.009860066, + -0.032065764, + 0.0079960795, + 0.017777773, + -0.02099151, + -4.1339136E-4, + -0.0029947774, + 0.0010430455, + -0.012797132, + 0.0074572633, + -0.0026463931, + 0.036173202, + 0.015733937, + -0.0122425025, + -0.0019691088, + 0.00935255, + -0.014750463, + 0.014491535, + -0.011455494, + 0.023686355, + -0.01737541, + -0.011935826, + -0.015068129, + 0.029204084, + 0.014576967, + 0.013086572, + -0.010735281, + 0.035704516, + -0.018711042, + -7.545434E-4, + 0.002472107, + 0.00467471, + 0.023069285, + 0.015027203, + 0.010366616, + -0.019894378, + 0.023322556, + 0.014041754, + -0.020802945, + -0.0055337227, + 0.02411832, + 0.0151436115, + -0.0014713595, + -0.022802547, + 0.0014461834, + 0.0067441193, + -6.827913E-6, + 0.016444322, + 0.0039797425, + 0.024712311, + -2.3068456E-4, + -0.015490959, + 0.023081854, + -0.0024209495, + -0.009416731, + 0.0069385236, + 0.006223056, + -0.0076246657, + 0.016464945, + 0.006548794, + -0.0056974166, + 0.010912643, + -0.005453911, + 0.003757547, + -0.0017176254, + -0.01798042, + 0.01061212, + -0.035367385, + -0.007626708, + 0.015848972, + 0.009346184, + -0.0077047716, + 0.0028979697, + -0.00601243, + -0.022805786, + -0.022537459, + 0.0073584532, + 0.009031617, + -0.024235502, + 0.00592248, + 0.013114152, + -0.0020678937, + -0.006858488, + 0.027669277, + -0.03286934, + 0.0036283347, + 0.009722212, + 0.028642656, + -0.0036196068, + 0.026213562, + 0.027093846, + -0.025953706, + 0.0049992115, + -0.007418118, + 0.0067808023, + -0.010618192, + -0.017417148, + 0.0065291007, + 0.012848228, + -0.005104069, + -0.005293896, + 0.0076457127, + -0.019950967, + 0.008321671, + -0.014684311, + 0.01386619, + -0.038503733, + 0.0056688753, + -0.005659259, + -0.017845083, + 0.017052842, + 0.0062349103, + 0.0045588114, + 0.0030513841, + 0.00301036, + -0.018353691, + -0.007930564, + 0.005108876, + 0.03480373, + -0.0025163996, + -0.009551095, + -0.0160476, + -0.029045975, + 0.036420196, + -8.844169E-4, + -0.0033107002, + 0.007917497, + 0.01782426, + -0.00491452, + -0.007808123, + -0.0040992643, + -0.022128649, + 0.02369451, + -0.009813267, + -0.011018655, + 0.015824491, + -0.0044094524, + 0.018437736, + 0.01993062, + 0.0023894177, + -0.013293088, + 0.011867313, + -0.013046234, + -0.029957267, + -0.0017073959, + -0.00668526, + 0.004753176, + -0.01608073, + -0.029264193, + 0.009815015, + -0.00713598, + 0.01833047, + -0.0074796095, + -0.012197713, + 0.0071575055, + 0.019928945, + -0.02817674, + 0.025672372, + 0.013359534, + 0.010146557, + 0.008352664, + -0.003063665, + 0.002033633, + -0.014679176, + -4.130108E-4, + -0.023154039, + -0.016284127, + -0.03273832, + -0.020902723, + 0.022202639, + -0.022500953, + -0.004883925, + 0.0064518396, + -0.009389627, + 0.0013580642, + -0.024319425, + -0.015744613, + -0.010547326, + -0.011792374, + -0.0048225885, + -0.023167865, + -0.01924199, + 0.0067268102, + -0.0059757596, + -0.019592198, + 0.009810511, + 0.033681333, + 0.012659438, + -0.021877425, + -0.005585894, + -0.03731449, + 0.005022337, + -0.0023347188, + -0.0010584302, + -0.0070804907, + 0.012944625, + 0.016486963, + -0.0017440277, + 0.019955035, + -0.0111471135, + 0.010857121, + 0.0253838, + 0.028953841, + -3.6564807E-4, + 5.210733E-4, + 0.009890906, + 0.0060813962, + 0.003502271, + 0.015266349, + -0.005515696, + -0.0033624386, + -0.03534974, + 0.017777527, + -0.0127395, + -0.0021191493, + -0.004028314, + -0.012983335, + -0.011146037, + -0.01481589, + 0.016665893, + 0.016207794, + 0.0065446068, + 0.011062954, + 0.0019497093, + 0.0021323224, + 0.006633562, + -0.0085304985, + 0.01637008, + 0.005616105, + 5.4608635E-4, + -0.032493014, + 0.023103299, + -0.016776571, + -0.008183669, + -0.011149733, + 0.001530841, + 0.008945502, + -0.008538726, + 0.012754657, + -0.016085073, + 0.029742492, + -0.0028279528, + -1.7658409E-4, + 6.335895E-4, + 0.008533653, + -0.012928546, + -0.021910766, + -0.01101935, + -0.023014026, + 0.01079473, + 0.027012542, + 0.0047673783, + -0.0015943144, + 0.008746003, + -0.008392994, + -0.030014008, + 0.00205395, + -0.02390713, + -0.0026153782, + 0.004105727, + 0.010929875, + -0.01123075, + 0.017414162, + 0.021532685, + -0.009425479, + 0.031250995, + 0.010000045, + -0.012047195, + -1.890331E-4, + -0.010651512, + -0.02350465, + 0.0010397253, + 0.023462342, + 0.008986216, + -0.008355819, + 0.021514064, + -0.021140726, + -0.0023904087, + 0.015635537, + 0.019426279, + 0.015641158, + 0.0106909685, + -0.011566009, + -0.0015113163, + -0.007442913, + -0.0039794603, + -0.009236474, + -0.001449249, + 0.007224035, + 0.033709202, + 6.029621E-4, + -0.012523129, + -0.027437605, + -0.022423724, + -0.020233316, + 0.012126165, + -0.0045669363, + 0.00737986, + 0.019273937, + -0.017999474, + -0.026532264, + 0.018477805, + -0.0050179427, + -0.009388668, + 0.009428139, + -0.0023639072, + -0.009364358, + 0.023580736, + 0.024334442, + 0.0016148248, + -0.005737599, + -0.008121451, + 0.0051423023, + -0.0025007771, + 0.025598908, + -0.008274069, + 0.010472386, + 0.008620136, + 0.010260825, + -0.00738327, + -0.016817475, + -0.008015325, + -0.01643192, + -0.006625813, + 0.011865621, + 0.013899907, + 0.0014018741, + -0.0029975187, + 0.017576156, + -0.011690638, + -0.05473058, + -0.015767112, + 0.023551526, + 2.3351972E-4, + -0.0046003987, + 0.005424175, + 0.023181438, + -0.0099169845, + 0.0029225855, + -0.0046011745, + 0.008457367, + 2.2185173E-4, + 0.033730615, + -0.006706096, + 0.012867396, + 0.0025382184, + 0.007827564, + -0.013226771, + -0.021312054, + -0.006425597, + -0.0016148594, + 0.0026986122, + -0.027221788, + 0.010878653, + -0.030826358, + 0.0067795455, + 0.0012528182, + 0.0041855467, + 0.015661463, + -0.015705118, + 0.007683698, + -0.023564711, + 0.014661688, + -0.0113848485, + 0.012936895, + -0.012804817, + -0.006216961, + 0.025226375, + 0.010003782, + -0.00988592, + 0.015211019, + -0.01566331, + 0.009802468, + 0.013910219, + -0.01850042, + -0.004660203, + -0.0080973245, + 0.004486163, + 0.009423672, + 0.008859688, + 0.045655645, + -0.010639508, + -0.015607739, + 0.0130548505, + 0.025249511, + 0.018576086, + 0.039565176, + 0.007872125, + 0.014052904, + -0.016525803, + -0.028029706, + 0.013428748, + 0.007183197, + -0.0051082857, + 0.0064618713, + 0.018099248, + -0.014172837, + -0.0051326323, + -0.006039832, + 0.006374516, + 0.019321758, + 0.019868588, + 0.041195717, + -0.025176205, + 0.02129081, + -0.0132382875, + 0.016648162, + -0.009759776, + -0.019693648, + -0.033386048, + 0.016270593, + 6.2303693E-4, + 0.019424126, + 0.008051439, + -0.015879368, + 0.006628768, + 0.0014209568, + -0.006113946, + 0.0046375133, + 0.021099705, + 0.007123169, + -0.031351183, + -0.017202655, + 0.01047563, + -0.043168038, + 0.005418844, + 0.0029702757, + -0.03522287, + 0.030356944, + -0.012281965, + -0.009071997, + -0.01658781, + 0.022191124, + -0.014886854, + 0.015277607, + 0.0108253835, + 0.015789302, + -0.024623992, + 0.0021033168, + 0.0078008496, + -0.003108716, + 0.007119462, + -0.005137665, + 0.027456403, + 0.007855391, + -0.013448894, + 5.8002886E-4, + -0.014845683, + -0.007356429, + -0.014527719, + 1.4786232E-4, + -0.015871868, + 0.007302386, + 0.0051795156, + -0.0037655467, + -0.007650119, + 0.008121105, + -0.022905622, + 0.019293815, + -0.001482139, + -0.01129535, + 0.013437738, + -0.004979406, + -0.008780576, + -0.02056646, + 0.025205115, + -0.025774892, + -0.011960995, + -0.021477915, + -0.01654631, + -0.015718587, + 0.0091573065, + -0.008590086, + 0.008953411, + -0.008594773, + 0.01081023, + -0.005488634, + 0.023974674, + -0.011995621, + -0.01786767, + 3.8373924E-4, + 0.001202086, + -0.0064116144, + -0.014476259, + -0.011034425, + 0.027148629, + -0.0022195573, + -0.009723038, + -0.006869266, + 0.016007107, + 0.015440401, + 0.029185086, + -0.010465691, + -0.015375865, + 0.001573024, + 0.0030580638, + 0.0033045085, + 0.0055487645, + -0.001262236, + -0.015880354, + -0.009296651, + 0.007839876, + 0.023703042, + -8.03155E-4, + -0.015919546, + -0.0028697927, + 0.004564195, + 0.0021443823, + 0.0073439414, + -0.013549385, + 0.018079644, + -0.0029966538, + -0.028633514, + -0.027281262, + -0.00604026, + 0.0017856639, + -0.013451975, + 0.00753848, + -0.020566324, + -0.0018014167, + -0.0109220045, + 0.007999146, + -0.011164122, + -0.004335573, + -0.027660016, + -0.017808102, + -0.001876731, + 0.020320255, + -0.009443243, + -0.023000194, + -7.437691E-4, + 0.005543348, + -0.032623447, + -0.007511153, + 0.0041253977, + 3.1410727E-5, + 0.013952469, + -0.03405741, + 0.014411174, + -0.007580677, + 0.018991832, + 0.017329032, + 0.0038584813, + 0.008195301, + 0.0061341645, + 0.0070782495, + -0.025244681, + -0.019508094, + 0.0028660058, + 0.012412049, + 0.0016084574, + 0.01290647, + 0.021392588, + 0.005657079, + -0.013017002, + -0.011227188, + -4.3283732E-4, + -0.024433136, + 0.019446976, + -0.032527026, + 0.030740956, + -0.0034779974, + 0.0078040757, + -0.021664308, + -0.014538566, + 0.009118189, + -0.0014343939, + 0.0037451852, + -0.006238264, + 0.0058271466, + 0.01356398, + -0.006550483, + 0.027824285, + 0.0067135417, + -0.008566112, + 0.0058693006, + 0.007539908, + 0.0053480235, + 0.008214726, + -0.0120699955, + 0.0016700575, + -0.015000628, + 0.0034084043, + -0.009585235, + 0.001045049, + 0.005416326, + -0.0066530644, + -0.010058964, + -0.015825136, + 0.009000697, + -0.014987643, + -0.01412971, + 0.036593325, + -0.017606989, + 0.0027001814, + 0.013095245, + 0.0209714, + 0.025282327, + -0.017291117, + -0.019823967, + -0.02562411, + 0.00577605, + -0.013406547, + -0.008159197, + -0.043673437, + 0.005613994, + -0.02040145, + 0.0011334036, + -0.0028522734, + -0.011022934, + -0.02172739, + 8.9577615E-4, + -0.010402754, + 0.0050586327, + 0.018135201, + -0.0016586812, + -0.007579227, + 0.0058184387, + 0.0028679254, + -0.010445773, + -0.007883568, + -0.012664057, + 0.004262179, + -0.008555823, + 0.02296043, + -0.0067969407, + -0.020663356, + 0.023110233, + -5.174204E-4, + 0.027684446, + 0.030672021, + 0.01635538, + -0.0070481156, + 0.017097238, + -0.011592047, + 0.006245104, + -0.016560493, + -0.017013937, + -0.012737485, + 0.008777029, + 0.022389548, + 0.0013663096, + -0.0086749, + -0.009633601, + -0.003315961, + 0.011158773, + -0.0027090844, + 0.012484656, + -0.017305516, + 0.0020294604, + -0.026072893, + 0.01915219, + 0.008348459, + 0.018007405, + 0.022172863, + 0.008096814, + 0.014396388, + -0.010470882, + 0.0055072997, + 0.011597464, + 0.002347303, + 0.005451439, + 0.004875824, + 0.014634532, + 0.012098244, + -0.021842977, + 0.0044926438, + 0.011795726, + 0.009523211, + 0.008948602, + -0.015885811, + -0.004459544, + 0.027694358, + 0.007808368, + -0.03996238, + -0.011038424, + 0.0046775825, + 0.019901546, + 0.019570297, + -0.024316175, + -0.010653467, + 0.03076746, + 0.01122774, + -4.0360406E-5, + -0.033143967, + 0.007900902, + -1.2269062E-4, + 0.029278502, + 0.015797593, + -0.0034835013, + 0.011542417, + -0.0269529, + 0.0011215194, + -0.031263836, + -0.0019181079, + 0.040484793, + -0.0077838013, + 0.016885916, + -0.025567938, + -0.0026571539, + 0.0036976608, + -0.012859087, + 0.015231752, + -0.010115285, + -0.015300412, + -0.020559935, + -0.01302191, + -0.0077232798, + 0.02360397, + 0.011480284, + -0.0046166014, + -0.0034595334, + -0.007839482, + 0.0013219944, + -0.017744284, + -0.002685183, + -8.209739E-4, + 0.016080718, + -0.014934677, + -0.02210024, + 0.013743646, + 0.045431983, + -0.023552202, + -0.016394677, + 0.012331401, + -0.024630489, + -0.008743107, + 0.0014791416, + 0.014094556, + -0.003903431, + 0.008867966, + -0.013215857, + -0.004094265, + 0.0098891985, + 0.004177831, + 0.004549955, + 0.0066662347, + -0.004148477, + -0.010490817, + 0.005109013, + 0.0036520034, + -0.017994877, + 0.016815534, + 0.017507572, + -0.010501565, + 0.007424002, + 0.018503468, + 0.03386618, + 0.007828866, + 0.0043772133, + -2.013354E-4, + -0.007952215, + -1.2579272E-4, + -0.005035962, + 0.001118312, + 0.007372452, + 0.01037083, + 0.002808641, + -0.027897147, + 0.008860972, + -0.0040005227, + -0.030443883, + 0.013470407, + -0.00231401, + -0.03864763, + 2.2283905E-4, + -0.0043812273, + -0.014643616, + -0.009107922, + -0.009739614, + -0.014829182, + -0.00671882, + 0.0068468126, + -0.005900359, + 0.031188507, + 0.0028587952, + 0.015591133, + -0.004085115, + -0.0018933334, + -0.010701624, + 0.026917977, + 0.026960663, + 0.008689778, + -0.029950352, + 0.0040828893, + -0.0044894377, + -0.0029551005, + 0.008775152, + -0.027471906, + -0.0027725466, + 0.008396465, + -0.004595252, + 0.025007764, + -0.0041650916, + 0.0039792624, + -0.015259004, + -0.027093586, + -0.012689111, + 0.002468512, + 0.010324432, + 0.028555367, + 0.0067378622, + 0.023969699, + -0.020243514, + -0.00411299, + -0.016699597, + 0.0040075183, + -0.008957766, + -0.02343101, + -0.0065461155, + -0.009056362, + 0.012010651, + 0.0026568652, + 0.004393354, + 0.023481699, + 0.015886547, + 0.005254022, + 0.0036625522, + 0.0011494275, + 0.023362642, + 0.007168495, + 0.012805964, + 0.02164979, + -0.008721711, + -0.012583838, + 0.009830313, + -0.0026717403, + 0.008057624, + 0.0073755267, + -0.015655095, + -0.007175613, + 0.0050496077, + 0.012687343, + -0.022462633, + -0.0025122433, + -0.011007747, + 0.023289718, + -0.03230009, + 0.005917135, + 0.009292154, + -0.013911494, + 0.012916166, + -0.008222873, + -0.02269199, + -0.01885878, + -0.004401615, + 0.02118553, + 0.020308217, + -0.010675634, + -0.010305936, + -0.028773235, + 0.006285096, + 0.0111059155, + -0.019293485, + 0.010417559, + -0.031213144, + 0.006821942, + 0.009814447, + -8.062017E-5, + -0.003884984, + -4.7392095E-4, + 0.013486762, + -0.022105355, + 0.0183825, + -0.0406086, + 0.008652722, + -0.009810044, + -0.0010554133, + 0.043426625, + 9.538555E-4, + -0.0050148107, + 0.023346137, + 0.00912687, + -0.0042994036, + 0.0020594145, + 0.00936759, + -0.0064812214, + 0.015446518, + -0.026430346, + 0.012480635, + 0.013220675, + -0.015439839, + -0.004898957, + -0.0039051615, + -8.362305E-4, + 3.7905845E-4, + 0.010666684, + 0.029087279, + -0.020409767, + 0.012053019, + -0.01675949, + 0.0071558496, + -0.006584384, + -0.007122037, + -0.013278039, + 0.008050406, + 0.0014875826, + -0.020345192, + -0.040292528, + 0.0019749482, + 0.00787105, + -0.01835863, + -0.005918142, + 0.026534796, + 0.005411324, + 0.025974693, + 0.0043151095, + -0.017052151, + 0.005767736, + 0.0045925295, + -0.011937311, + -0.009639822, + -9.12352E-4, + 0.004433606, + -0.02950917, + -0.023092218, + -0.0013994788, + 0.0062906723, + 0.022436555, + -0.014018992, + 0.013001092, + 0.0020849274, + 0.0110719, + -0.0063062375, + -0.011093028, + 0.0018011304, + 0.0054459698, + -6.7376107E-4, + 0.0063015, + 0.0019294098, + -0.00851466, + -0.011487197, + -0.0025170236, + -0.0052617723, + 0.0026509091, + 0.010973911, + 0.0024838913, + 0.018740768, + 3.6427635E-5, + 0.021556614, + 0.0012299704, + 0.007134646, + -0.009799985, + -0.0121325785, + -0.014114385, + -0.011062989, + 0.015044219, + 0.012244486, + -0.004888, + -0.02372331, + -0.006515655, + -0.029085714, + -0.005367368, + 0.010235701, + -0.029805714, + 0.011956006, + 0.0060591106, + -0.0012787606, + -0.019901268, + 0.013399109, + -0.0037069505, + 0.007208261, + -0.015208037, + -0.0022182437, + 0.017569108, + 0.017183783, + 0.015552294, + 0.002641567, + 0.0025594092, + 0.034425467, + -0.0030047076, + 0.016615152, + 0.012023846, + 0.0026161121, + -0.023074683, + -0.023917481, + -0.023221685, + -0.03869607, + 0.0114078885, + 0.0017776251, + 8.3207246E-4, + 0.009966182, + -0.01495431, + 0.0146894995, + -0.009758551, + -0.0035291808, + 8.7685976E-4, + 0.031416405, + -0.024293577, + -0.038078073, + -0.027359735, + 0.030032495, + -0.01348998, + -0.010324584, + 0.00924188, + -0.04833084, + 0.007448312, + 0.010700244, + -0.008693653, + -0.022755818, + -8.005637E-4, + -0.012134884, + 0.0012821788, + -0.005752395, + -0.017280009, + -0.022785582, + -0.0052243946, + -0.0069343355, + 0.009130656, + -0.0065358346, + 0.022953566, + -0.010032982, + -0.012350092, + -0.03587644, + 0.028779602, + 0.0015894275, + 0.007056279, + 0.010492257, + -0.0036129488, + 0.018388333, + -0.027780406, + 0.0048241816, + 0.010060295, + -0.014549984, + -0.0057173036, + -0.0023399245, + -0.030119542, + 0.0050616493, + -0.0052747205, + -0.005298427, + 0.0044035623, + 0.012624436, + 0.01484783, + 9.928021E-4, + -0.0011475853, + 0.018408727, + 0.015305036, + 0.02515498, + -0.026926637, + -0.0048878095, + 0.0037736713, + -0.027868798, + 0.027572665, + -0.0068092877, + 3.1135386E-4, + 0.002898027, + -0.005563673, + 0.0025771118, + 0.020117078, + 0.012438094, + -0.00962429, + -0.019410498, + 0.012173398, + -3.3767658E-4, + 0.011109641, + 0.0144946175, + 0.02174861, + -0.011307587, + -0.020337533, + 0.0022498197, + -0.0036249089, + 0.0443367, + -0.010120646, + -0.043650046, + 0.009917039, + -0.0025201065, + -0.030120132, + 0.013112833, + -3.4577177E-5, + 0.012871421, + -0.027012613, + -0.006799049, + -0.005199781, + 0.0025588374, + 0.0112283, + -0.0018621683, + -0.0040731924, + -0.013998152, + 7.466075E-5, + 0.020078596, + -0.042838648, + 0.021279445, + -0.0027142717, + 0.011816087, + -0.004262728, + 5.354775E-4, + 0.016027693, + 0.009793135, + 0.028043851, + -0.018249987, + -0.020809941, + -0.0127834, + -0.011163731, + 1.0788004E-4, + -0.015482191, + -0.009010656, + 0.010002247, + -0.01018693, + -0.0041603395, + 0.013796894, + -0.0025900528, + 0.0051693455, + -0.017668115, + -0.02152136, + -0.032497726, + -0.004324134, + -0.01834258, + 0.013369425, + 0.021564336, + -0.017655687, + -0.0065287976, + 0.00796979, + 0.019145343, + -6.861425E-4, + -0.0053002434, + -0.025834523, + -0.010993917, + -0.0017917919, + -0.008618045, + -0.0072718216, + 0.03506351, + -0.017563336, + -0.009360196, + 0.03425116, + -0.034559537, + -0.0055421027, + 0.0023855201, + 0.008506205, + -0.0062061814, + 0.0059783626, + -0.009916136, + -0.013070701, + -0.004494089, + -0.0019935917, + -0.00838959, + -0.00435178, + -0.002436483, + -0.026657857, + -0.009115319, + 0.018222477, + -0.009229074, + -0.02300628, + 0.014475191, + 0.010817853, + 0.0053748093, + 0.017552245, + 0.018911771, + 0.007819923, + -0.018355545, + 0.016191302, + 0.0064611775, + 0.0020668635, + 0.020684468, + 0.011844246, + 0.0014836361, + -0.012738336, + -0.008635438, + 0.0040660743, + 0.015564767, + 0.0041200863, + -0.0034934515, + -0.024759442, + -0.022255735, + -0.03480759, + 0.010462304, + -0.011062911, + 0.0026534442, + -0.0069630574, + -0.0042089876, + 0.013965942, + 0.011296527, + -0.02203446, + -0.006670779, + 0.004377526, + -4.842697E-4, + -0.018971683, + 0.017023982, + -0.008945466, + 0.013125203, + 0.005496541, + -0.016513243, + -0.012318774, + 0.007965146, + 0.019851984, + 0.02090344, + -0.010508039, + -0.00942899, + -0.013402943, + -0.024706967, + 0.023825286, + 0.0029906284, + 0.0025449302, + -0.0020732742, + 0.025977366, + -0.017046703, + -0.017484814, + -0.0069074947, + -0.009013652, + 0.02599095, + -0.014464703, + -0.011417956, + -0.017116956, + -0.01827011, + -0.0109428875, + -0.0054610106, + -0.007608577, + 0.0065304707, + -0.001897766, + -0.010492716, + 0.028191982, + 0.014923888, + -0.009099695, + -0.004054134, + -0.031438764, + 0.009085688, + 0.0032544562, + -0.012223394, + -0.021642283, + 0.020995555, + -0.017137235, + 0.006748273, + 0.009165117, + -0.008069899, + -0.014374636, + 0.007237798, + -0.0063650482, + 0.02137429, + -0.024239104, + 0.00396638, + 0.01463871, + -0.010499956, + -0.010106646, + -1.5536591E-4, + 0.0107655, + -0.0042841393, + 0.008578053, + -0.0045380318, + -0.0035190992, + 0.0152530065, + 0.046454467, + -0.012096512, + -0.0030421927, + 4.8097048E-4, + -0.028870592, + 0.0017250127, + 0.028520124, + -0.013893134, + -0.015609433, + 0.007358784, + 0.003071651, + 0.009751154, + -0.01894178, + 3.4369703E-4, + 0.014436032, + -0.0059610736, + -0.0074520046, + -0.0126653155, + 0.0014788749, + 0.0012574429, + -0.0033370075, + -0.0054076337, + -0.015757855, + -0.021698318, + -0.0025323979, + -0.023617238, + 0.014518183, + 0.018252427, + 0.0031583263, + 0.007933432, + -0.0047242274, + 0.022342259, + -0.0027021489, + -0.0076321857, + -0.0060080006, + -0.008690515, + 0.0085657975, + -0.0041558696, + -0.009143623, + 0.021252044, + -0.02804482, + 0.01704741, + -0.0016496474, + -0.023065569, + 0.007998577, + 0.021914404, + -0.009215355, + -0.0064468207, + 0.020434275, + 0.02595925, + 0.0150882, + 0.03126663, + -0.01849213, + 0.0064053833, + -0.0098652495, + -0.033934567, + 0.02132027, + -0.016789054, + 0.009214089, + 0.02678049, + -0.027652077, + -0.0022923616, + -0.024776109, + 0.038505662, + -0.018363325, + -0.0047121374, + 0.009256795, + 0.003134095, + 0.021347571, + -6.6302804E-4, + -0.014333184, + 0.01492785, + -0.00859847, + -0.005556651, + 0.0028810638, + 0.017873704, + 0.028406713, + 0.016546417, + -0.004709254, + 0.018381605, + -0.015189131, + -0.004778783, + 0.011885082, + -0.007450918, + 0.00898787, + -0.019369869, + -0.011246091, + 0.013323027, + -0.0034856051, + 0.010302777, + 0.031563714, + -0.0069434093, + -0.0048190295, + 0.020206405, + -0.017236313, + -0.019040348, + 0.011408324, + -0.028503776, + 0.015128354, + -0.014549751, + 0.023118433, + 0.026681276, + -0.0051014093, + -0.028875966, + 0.016073601, + -0.016889455, + 0.009099623, + 0.015189971, + 0.002847786, + -0.003029027, + 0.019313999, + -0.024402142, + -0.013571649, + 0.0038792535, + -0.0029522614, + 0.00529362, + -0.018798957, + 0.006061864, + 0.015647536, + -0.0065406025, + 0.017460192, + -0.007551682, + -0.013367441, + -0.010713614, + 0.014495184, + -0.009233033, + 0.006747974, + 0.011459709, + -0.014314067, + -0.001804587, + -0.0028718552, + -0.022937393, + 0.011145586, + -0.006773266, + -0.026363486, + 0.009717851, + -0.01860622, + -0.024747891, + 0.055322118, + 0.020849988, + -0.0058366694, + -0.010617296, + 0.009512129, + -0.002471889, + 0.0075260457, + 0.00729156, + 0.0052389516, + -0.018776247, + -0.007181864, + 0.0057056127, + -0.0036740024, + -0.018332064, + -0.0010162398, + 0.011983611, + 0.021998625, + -0.0071875844, + 9.2111505E-4, + -0.010539018, + 0.015555552, + -0.01992805, + 0.055726957, + 0.04925331, + 0.011925689, + -0.0073453756, + -0.008562213, + -0.011048411, + -0.009889912, + -0.038121127, + -0.032084335, + 0.0064541805, + -0.018272307, + -0.029261852, + 0.0055474634, + -0.007408371, + 0.027884614, + -0.026165877, + -0.007906321, + 0.008352163, + -0.0012065356, + -1.1461908E-4, + -0.017872367, + -0.0074283783, + 0.01582813, + 0.00863571, + 0.0020166056, + 0.033328746, + 0.0066215484, + -0.011031542, + 0.01580639, + 0.008532661, + -0.019633768, + -0.011080895, + 0.0037475037, + -0.010497517, + -0.007348015, + 0.017722482, + 0.0125191435, + -0.012945593, + -0.0316966, + 0.012501553, + 0.0021161116, + -0.01574158, + 8.265187E-4, + 0.0014538879, + -0.010276811, + -0.022630583, + 0.00191168, + 0.01653818, + 0.0039054716, + 0.010671638, + -0.015005944, + 0.0033347306, + 0.026428606, + 0.006622676, + 7.12302E-4, + 0.017409327, + -0.010029677, + -0.0025494911, + -0.014852993, + -0.005963147, + -0.0013539954, + -0.01760143, + 0.008679912, + 0.012633495, + -0.011132506, + 0.0057651354, + 0.018171692, + -0.016573992, + 0.018731413, + -0.009597279, + -0.003420228, + 0.02889801, + 0.022857992, + 0.029560823, + 0.018744264, + 0.0048093842, + 0.012011865, + 0.0015595936, + 0.0146403015, + 0.0054883827, + 0.021971252, + 0.005730619, + 0.028213786, + 0.0026854277, + -0.011969685, + 0.02286107, + 0.0038165029, + 0.0064820466, + 0.0035523633, + -0.009882742, + 0.0016737673, + -0.020206533, + -0.0066548805, + -0.0113812145, + -9.085731E-4, + -9.246887E-4, + -0.0035438938, + 0.0042001535, + -0.027102059, + 0.0113327475, + -0.01834104, + 0.0067823627, + 0.008330806, + -0.020133127, + -3.4913857E-5, + 0.011019232, + 0.020567792, + 0.0011142051, + -0.0030657062, + -0.018022217, + -0.02004901, + -0.0075385137, + 0.002340728, + 0.0104222605, + -0.024895938, + -0.001321627, + 0.019516286, + -0.0036435374, + -0.018578889, + 0.01583614, + -0.0024469614, + -0.019462617, + -0.006018748, + 0.026603837, + 7.580765E-4, + 0.012209039, + 0.028202245, + -0.0074438765, + 0.009644521, + 0.0070721083, + 0.020009886, + -0.011335343, + 0.011279254, + 0.0030987712, + -0.00569845, + -0.010443416, + 0.00564336, + -0.004219406, + 0.0010051674, + -0.009628546, + -0.03506854, + 0.001488934, + -0.026511217, + -0.01698867, + -0.011141353, + 0.0073591704, + -0.003468024, + 0.013249524, + -0.01567877, + -0.021694813, + -0.019570442, + 0.022917273, + 0.011325889, + -0.01965875, + 0.0024861638, + -0.011495733, + 0.021113073, + 0.009211179, + -0.015101721, + 0.004686398, + -0.032446355, + 0.005758518, + 0.0042669843, + 0.0034146032, + 0.019652667, + 0.015361938, + -0.012242829, + -0.0016728921, + -0.003205516, + -0.019943085, + 0.016436964, + 0.0034961319, + -0.0067756474, + 0.015136599, + -0.004136184, + -0.020552684, + 0.015228767, + -0.019302264, + -0.009733267, + -0.016658086, + -0.0011751646, + -0.016027678, + -5.732696E-4, + -0.016820895, + -0.0042861425, + 0.0045720357, + 0.015622701, + -9.1988133E-4, + 7.989868E-4, + -0.0055355863, + 0.014507046, + 0.010019267, + -0.009180323, + -0.01540273, + -0.014084279, + -0.0039142785, + 0.053732354, + -0.0025458005, + 0.007071605, + -0.0067340937, + 0.021324188, + -0.017969685, + 0.0025545652, + -0.0030875702, + 0.021727974, + 0.015185233, + 0.017222742, + -0.0038278713, + 0.006633903, + 0.008639183, + -0.002868211, + 0.01682892, + -0.011554117, + 0.0047992957, + -0.0093233725, + -0.0092755705, + -0.004165468, + -0.006087602, + -0.0044248533, + 0.0021759726, + 0.036036883, + 0.009282235, + 0.025634022, + -0.009461048, + -0.02726366, + -0.007194555, + 0.0076539246, + -0.035600323, + 8.700808E-4, + -0.024255129, + -0.013370645, + -0.016124526, + 0.015373467, + 0.02268112, + 0.0015985909, + -0.018093081, + 0.0033411004, + -0.0270472, + 0.005837134, + -0.007502503, + -0.028513387, + 0.006016574, + -0.010690319, + 0.013239889, + -8.709792E-4, + -0.0045829252, + 0.048286453, + -0.0039657573, + -0.017684955, + -0.0061648604, + -0.008770947, + 0.0019000616, + -0.006821567, + 0.019080007, + 0.0075958134, + -0.010471986, + -0.029203953, + -0.029177258, + 0.004807153, + -0.017666023, + 0.018116398, + -0.0055649155, + -0.01564886, + 0.0015828498, + -0.014303122, + 0.036379047, + -0.026796063, + -0.0025660365, + -0.036370877, + 0.013016204, + 0.023607759, + -1.651158E-4, + -0.00883659, + 0.013985878, + 0.0046705552, + -0.00855567, + -0.0019210292, + -0.007893819, + 0.026892914, + -0.012501599, + 0.0028026751, + -0.012375777, + 0.012579071, + 0.013179283, + -0.003998587, + -0.014167332, + 0.010725032, + -0.011692523, + -0.002172679, + -0.013166444, + -0.003321513, + -0.0073327934, + 0.0015301778, + -6.722807E-4, + -0.02017357, + -0.010080373, + -0.007283587, + 0.0025687087, + -0.022363989, + 0.0027789439, + -0.0076394277, + 0.015536722, + 0.007081982, + -0.0070117395, + -0.002336311, + 0.021122156, + 0.014131716, + -0.0040990748, + 0.03130243, + 0.023768889, + 0.0109096365, + -5.606022E-4, + 0.024070054, + 0.026490789, + -0.0012549349, + 0.015590046, + 0.019385349, + -0.0038828268, + 0.008840537, + -0.005658554, + 0.011651172, + -0.017979214, + -0.016663877, + 0.023321537, + -0.005394316, + -0.00972648, + 0.004201758, + -0.006943151, + 0.017945465, + -0.022359358, + 0.0023434348, + -0.0061736754, + -0.014806581, + 0.024185825, + -0.018599968, + -0.0019890561, + 0.051105198, + 0.014512041, + -0.008381432, + 0.011847833, + -0.019613182, + 0.017820748, + -0.012347728, + -0.0010689993, + -0.003472068, + -0.019817756, + 0.024657648, + 0.0032663795, + 0.013783664, + -0.017830461, + -0.009524514, + 0.014459157, + -0.008114401, + -0.013999812, + 0.029236486, + 0.010943208, + -0.014500766, + -0.010475736, + -0.013568348, + -0.025149321, + 0.010921486, + -0.0075416383, + 0.014114694, + 8.351841E-4, + 0.00213311, + -0.0020384581, + 0.007808162, + -0.022114871, + -0.031942926, + 0.005580979, + 0.0018343684, + -0.012877247, + -0.0015128284, + 0.0038020872, + -0.0018864828, + 0.020444322, + 0.0027589202, + 0.007486903, + 0.0017914373, + 0.005261251, + 0.01110842, + -0.017817635, + -0.04096115, + -0.011393574, + -0.025576096, + -0.021079302, + 0.033443376, + -0.009245883, + 0.023925712, + 0.008186078, + 0.014016941, + -0.01030118, + 0.0075764973, + 0.021657154, + -0.0052898205, + -0.0021195982, + -0.017897964, + -0.0021592968, + -0.014452522, + 0.032376334, + 0.01915895, + -0.020334799, + 0.011446606, + -0.012760712, + -0.004798864, + -9.5729175E-4, + 0.008396205, + -0.043680232, + 0.0079189185, + -0.020807061, + 0.0015831569, + 0.0014122194, + -8.407376E-4, + 0.01595835, + -0.008368965, + 0.0034648937, + -0.0028623606, + -0.03738965, + -0.0011752102, + 0.020023832, + 0.013805874, + -0.003894008, + 0.009102838, + -0.0063836817, + 0.005857898, + -0.0044853226, + -0.014032147, + 0.010179705, + 0.018225988, + 0.014276407, + 0.004077247, + 0.0037701712, + 7.6536223E-4, + -0.011593184, + 0.0016485003, + 0.021171711, + -0.006011697, + -0.022826893, + 0.024263995, + -0.00455181, + -0.019552944, + 0.018620282, + -0.024824144, + -0.011420036, + -0.016362576, + -0.00615001, + 0.02812905, + 0.021107117, + -0.011679272, + 0.0029797943, + -0.019686783, + 0.016062846, + -0.015202947, + -0.021094589, + -0.020924885, + -0.018392336, + 0.011369684, + 0.003831955, + 0.0030639453, + -0.022086376, + -0.009504923, + 0.004448107, + 0.0026806344, + -0.0022912286, + 0.0048161703, + 0.0132397525, + -0.006168944, + 0.009816808, + -0.0119932, + -0.009452911, + 0.016800297, + 0.023056531, + -0.0345963, + -0.0017192558, + 0.02148521, + -0.011710026, + -0.029220568, + -0.0066459556, + 0.03414017, + -0.017938882, + 0.013904536, + -0.010166988, + -0.011990426, + 0.0041126856, + 0.036344882, + 0.011322899, + 0.017935378, + 0.010363839, + 0.0035935987, + -0.017269824, + 0.0017084322, + 0.0024412468, + 0.005098914, + -4.6754393E-4, + 2.675082E-4, + -0.012338571, + -0.020438751, + -0.0052549443, + -0.019197421, + 0.009872078, + -0.009729327, + 0.0012711342, + -0.013575016, + -0.02296688, + 0.020745885, + -0.035406467, + 0.017161913, + -0.01284665, + 0.0031638788, + -0.016327783, + 0.007819238, + 0.007621299, + 0.003195616, + 0.002088948, + -0.026667684, + 0.0020492119, + -0.00269225, + 0.0049545355, + 0.009515026, + 0.009867602, + -0.0083641885, + 0.020059096, + -0.018705992, + -0.008684784, + 0.014040438, + 0.00996887, + 0.008931328, + -0.006763424, + 0.009350302, + -0.017778339, + 0.011152071, + 5.2478747E-4, + 0.009395743, + 0.005438512, + 0.015768137, + 0.0019062861, + 0.0014113493, + -0.0063192905, + 0.019725414, + 0.025208725, + -0.007333554, + -0.027532186, + -0.0148743, + -0.016954718, + 0.016641822, + -0.022239534, + -0.02265003, + -0.03133042, + 0.012932703, + -0.022145182, + -0.034554176, + 0.0016865793, + 0.011317248, + -0.0048994753, + -0.028419562, + -0.018056491, + -1.9009647E-4, + 0.007408942, + -0.0012526251, + -2.2014926E-4, + -0.020394308, + 0.004877816, + -0.0050453655, + -0.01631683, + 6.4087403E-4, + 0.00850645, + -0.018302914, + 0.0039756834, + 0.009068297, + 0.009019808, + -0.00902236, + 0.0042420346, + -0.014728319, + -0.021923384, + -0.0072870115, + 0.001959196, + -0.015862923, + -0.011023054, + 7.0145086E-4, + -0.018322393, + -0.020103915, + -0.0060505173, + -0.022275299, + 0.013503819, + -0.008755142, + 0.0019405168, + -0.013800772, + 0.008116082, + 0.009995401, + 0.0024900604, + 0.0019877064, + -0.016890705, + -0.015480784, + -0.02407366, + 0.004991909, + -0.017481167, + -0.036187034, + -0.012783984, + 0.009951927, + -0.0344884, + 0.027817085, + -0.0024979215, + 0.019606723, + -7.306639E-4, + 0.021014879, + 0.0105597805, + -0.004908209, + -0.009405472, + -0.0010642413, + 0.01357672, + 0.027201248, + 0.009840558, + 0.007792394, + -0.047081552, + -0.016270414, + 0.019077264, + -0.0072038034, + -0.005849973, + -0.017156614, + -0.03317109, + 0.012247405, + 0.034870252, + -0.025203155, + 0.0013211255, + 0.0054485104, + -0.013755233, + 0.0025466739, + 0.0067835804, + 0.0020642986, + -0.028185021, + 0.022060512, + 0.016649647, + 3.3804687E-4, + 0.008165153, + 0.0048907343, + 0.011724, + 0.004560956, + 0.0057566534, + 0.013608685, + -0.002778086, + -0.008988034, + -0.03164454, + -0.023573086, + -0.0024379424, + -0.011568064, + -0.0063917493, + -0.019641731, + -7.7655706E-5, + -0.02185659, + -0.008950249, + -0.01332568, + -0.0075662863, + 0.0080167195, + 0.027915874, + 0.002718652, + 0.02358376, + 0.002606272, + 0.0207941, + -9.094726E-4, + -0.018320698, + -0.0019359024, + -0.0252216, + -0.017773027, + 0.014264951, + -0.014774159, + -0.007961209, + -0.011450118, + -4.964684E-4, + -0.020033812, + 0.015847357, + 0.006584587, + 0.005561134, + 0.011874097, + 0.0095205065, + 0.006723728, + 0.028783137, + 0.014756775, + 0.0073651634, + 0.010940334, + -7.319931E-5, + -0.015603021, + -0.0050459746, + 0.010383595, + -0.011385996, + 0.006631726, + -0.002767386, + -0.018300029, + 0.010462638, + 0.013486085, + -0.0050153625, + 0.027111571, + 0.025272788, + 0.021783821, + -0.0011566441, + 0.027778486, + -0.0012860231, + 0.022906614, + -0.01715566, + -0.008670102, + 0.02054705, + -0.021911088, + -0.004925562, + -0.026724756, + 0.014744869, + 0.0076574525, + -0.011373299, + 0.018273396, + -0.024202056, + 0.0041579707, + 0.004337621, + 0.014890913, + 0.014024588, + 0.02995383, + -0.010812125, + 0.0026906852, + 0.010721483, + -0.01605248, + -0.037527714, + 0.007857361, + -0.014403833, + -0.0047419867, + 0.01888086, + 0.0070096743, + -0.009166925, + 0.007400393, + 0.015165797, + -0.0088508725, + 0.015381265, + 3.46604E-4, + -0.0031684334, + -0.0070826258, + 0.010772814, + 0.00447887, + 0.008784756, + 0.025363378, + 0.009528276, + -0.019883256, + 0.0043291138, + -0.012639002, + -0.022543617, + 0.017135222, + -0.013551318, + 0.031100048, + -0.031902004, + -0.013244982, + -0.010687383, + 0.016541755, + 0.0073303403, + 0.004884499, + 0.0032799144, + 0.012939221, + 0.008876902, + -0.006517311, + 0.0011769481, + 0.0057646595, + -0.0069997017, + -0.0060457243, + 0.018648887, + 0.015682925, + 0.008904522, + -0.010680106, + -0.0062311, + 0.023178415, + 0.01825277, + 0.020364035, + 0.030949883, + -0.03462921, + 0.0011686495, + 0.010630312, + 0.011471599, + -0.0073953173, + 0.020688502, + 0.025505915, + -0.009993045, + 0.0076178918, + 0.010348238, + 0.009496299, + -0.024465835, + -0.008319758, + -0.0136128105, + -0.00486658, + 0.011700687, + 0.010536098, + -0.013500089, + 0.02882082, + -0.002940488, + -0.0017582934, + 0.007958673, + -1.1585671E-4, + -8.033798E-4, + -0.021916596, + 0.010075197, + 0.03579266, + -0.002032716, + 0.014129172, + -0.015071764, + 0.0013194717, + -0.017024897, + 0.015753252, + -0.0069096684, + -0.006307807, + -0.013761254, + -1.11222886E-4, + -0.016217295, + -3.3645082E-4, + 0.0016726947, + 0.006500041, + 0.025304925, + -0.011103705, + -0.017313333, + -0.0016804409, + -0.0054338295, + 0.0051802346, + -0.004155327, + 0.011932926, + -0.0014797683, + 0.0055400548, + 0.022573909, + -0.014696884, + -0.0035875351, + 0.0055520996, + -0.014645775, + -0.018513625, + 0.026784156, + 0.010162072, + -0.009281324, + 0.032017775, + -0.0052045654, + 0.007482953, + -0.012596526, + -0.009203773, + 6.991613E-4, + -0.020294417, + -0.009173828, + 3.8041745E-4, + -0.004505587, + -0.013100618, + -0.024645668, + -0.017463021, + -0.010297753, + 0.0027358828, + 0.027488263, + 0.018208366, + -0.0178266, + 0.0057421387, + 0.0012226447, + 0.0028847954, + -0.013485956, + -0.0057402537, + 0.0021969902, + -0.0040357755, + 0.01704334, + -0.02381013, + -0.0025743472, + 0.00412792, + 0.012030462, + -0.004859417, + -8.1851013E-4, + -0.0132255545, + 0.006453782, + -0.012319775, + 0.008679447, + 0.015609277, + -0.018725147, + 0.005384731, + 0.010412633, + -0.025794297, + -0.0033036447, + 0.043001346, + -0.024178104, + 0.021861622, + -0.013105192, + 0.005466956, + 2.567109E-4, + -0.0018197703, + 0.010369054, + -0.0063085654, + 0.0059902323, + 0.033070322, + 0.01770339, + -0.011695286, + 0.006047989, + 0.025043277, + 0.006691084, + -0.021447197, + 0.014725127, + -0.021230629, + -1.4902638E-4, + 0.021258352, + 0.009059181, + -0.01968887, + 0.013459344, + -0.005781634, + 4.603608E-4, + -0.0069429693, + 2.1096546E-4, + -0.015368358, + 0.0076726796, + 0.005342411, + 0.0069035934, + -0.016801495, + -0.029981634, + 0.031876396, + 0.011643088, + 0.011115576, + 0.010352241, + 0.001037683, + -0.01960094, + 0.0031277607, + 9.086435E-4, + -0.0220038, + -0.016680071, + 0.03710855, + -0.013376098, + -0.00825741, + -0.007704248, + -0.014639698, + -0.0011573209, + 0.0017836936, + 0.006707199, + 2.1943949E-4, + -0.009529417, + -0.0023270443, + -0.023559941, + -0.008082579, + -0.02082403, + -0.003993605, + -0.012135245, + -0.021888334, + 0.025176316, + 0.01768508, + 0.01442593, + -0.009717316, + -0.021622268, + 0.005310924, + 0.002252725, + -0.0072063967, + -0.02200353, + -0.011463298, + -0.011760628, + -0.0066170213, + -0.02926165, + 0.01389482, + -0.029021738, + 0.0021393131, + 0.005406138, + -0.006235983, + -0.03161732, + 0.0222772, + 0.013686365, + 0.024809333, + -0.0076846327, + -0.0046621454, + 0.022986645, + -0.009116642, + 0.0022930827, + -0.017200587, + -0.0059403344, + 0.013678298, + 0.003811469, + 0.017440656, + 0.016898936, + -0.005424944, + -2.4156263E-5, + 0.01701474, + 0.0029307758, + 0.017540932, + -0.012232896, + -0.009817177, + -4.1666446E-4, + 8.990869E-4, + 0.013387026, + 0.028842723, + 4.3633676E-4, + 0.006700976, + -0.008420116, + 0.0044396957, + 0.007335816, + 0.0019001017, + 0.021937808, + -0.016221348, + 5.346617E-4, + 0.01416396, + -0.0081524905, + 0.0080449525, + -0.031038448, + 0.014239415, + 7.779578E-4, + 0.02480123, + 0.0060377447, + 0.004670132, + 0.003956887, + -0.007939509, + -0.008792867, + 0.011511299, + -0.02032725, + 0.03582014, + 0.006068988, + -0.012053817, + -0.0030255248, + -0.0118286675, + 0.014608839, + 0.0033753752, + -0.015866628, + -0.037986595, + 0.007874651, + 0.0032217258, + 0.023635328, + 0.003114704, + 0.0058126277, + 0.013872609, + -0.017572438, + -0.010399783, + 0.022985024, + 0.005946954, + 0.008254193, + 0.011120866, + 0.012908169, + -0.0021825936, + 0.020328391, + 0.0025525307, + 0.019081634, + -0.011349575, + -0.016670799, + 0.004310435, + 0.0010812479, + 0.0037046603, + -0.005893753, + 0.021722028, + -0.041003965, + -0.0010555689, + -0.0019886326, + -0.027459098, + -0.0064496323, + -0.013332756, + 0.017905306, + -0.022389676, + 0.0114418715, + 0.019609874, + 0.00958389, + 0.002107307, + -0.013865163, + -0.009001178, + 0.023969209, + 0.005908342, + 0.00568758, + -0.020560017, + -0.021317348, + 0.0062938374, + -0.012530386, + 0.03243247, + -0.024227085, + 0.028394226, + 0.023315888, + 0.006635828, + -0.004121259, + 0.014305399, + 0.017107874, + -0.013898817, + 0.011595552, + -0.014041347, + -0.0030408718, + -0.0061748014, + 0.012500668, + -0.024687784, + -0.010629128, + -0.0064437343, + 0.01243627, + -0.024623588, + 0.0030930184, + 2.1635777E-4, + 0.022472288, + -0.007742495, + -0.021959107, + 0.015366066, + -0.0072751585, + 0.012429124, + -0.0058960356, + 0.0037171077, + 0.024820985, + 0.014014347, + -0.023733173, + 0.01214079, + -0.028284399, + -0.013692939, + -0.0054480624, + 0.010124304, + -0.010291414, + -0.007417807, + -0.011249559, + 0.016794775, + -0.015695143, + -0.0102095185, + 0.029326182, + -0.004393957, + -0.026471477, + 0.023081627, + -0.014731605, + -0.024455672, + 0.008187239, + 0.016937196, + 0.004091517, + 0.023938917, + 0.012580293, + -0.023619903, + 0.011685359, + -0.015921151, + -0.019900681, + 0.021333043, + -0.012591859, + 0.011039729, + 0.0042573307, + -0.0068095084, + -0.022602495, + -0.010286687, + -0.016469711, + 0.0013444471, + 0.013393712, + 0.028604733, + -0.0016460009, + 0.0123203555, + -0.009970463, + -0.009709834, + -0.009222234, + 0.011619064, + 0.041698582, + -0.0034904515, + 0.009561064, + 0.015436618, + 0.008812876, + -0.0018779091, + 0.015187251, + 0.0095957285, + 0.013860696, + -0.016599933, + 0.01270994, + -0.009771892, + 0.0028599848, + 0.001308581, + -0.009491078, + 0.0073534306, + 9.823213E-4, + -0.017372973, + -0.013969077, + 0.030211775, + 6.33247E-4, + 2.877621E-4, + -0.018994182, + 0.040493485, + -0.00576233, + 0.031236123, + 0.012860699, + 0.001399296, + -0.022862118, + 0.004719585, + 0.0030240666, + -0.016423125, + 0.0092401095, + 0.016286641, + 0.033774033, + 0.010623688, + 0.016067317, + -0.013688119, + 0.02168521, + 0.003907795, + 0.021047974, + -0.00817631, + 0.0075187027, + 0.016780656, + 0.0030972261, + 0.020796213, + -0.0011917644, + -0.005671899, + 0.01720899, + 0.0018934042, + 0.007834775, + -0.010201444, + -0.019832317, + 0.0018782105, + 0.019316366, + 0.008947015, + -0.006496718, + -0.022606086, + 0.015600723, + 0.0021459993, + 4.728034E-4, + -0.03028154, + -9.858495E-4, + -0.016133938, + -0.009345511, + -0.011994909, + -0.0013402739, + -0.002666672, + -0.008871616, + 0.003256627, + -0.016007261, + 0.010782441, + 0.02027297, + 0.01733595, + -0.0039259912, + 0.009390925, + 0.0052081905, + -3.6679945E-4, + -0.018257102, + -0.021436432, + 0.0052301898, + 0.034202345, + -0.0115182325, + -0.0016991944, + 0.018873738, + 0.012314862, + 0.013223744, + -0.014285064, + -0.03249103, + -4.702186E-4, + 0.017486548, + 0.006213665, + 0.017641075, + -0.010585785, + -0.006129456, + -0.009144564, + 0.001668492, + -0.004878438, + 0.016547892, + 0.003458726, + 0.00732028, + -0.0049745417, + -0.0057363748, + -0.008681764, + 0.0069740606, + 0.0068740686, + -0.0068233237, + 0.0072636525, + 0.015440732, + -0.0058779423, + 0.0011993259, + -0.0010901154, + -0.015891546, + -0.0024305638, + -9.803482E-4, + -0.0057084667, + 0.00666614, + -0.012172425, + 0.022088757, + -0.014477623, + 0.01025129, + -0.010776078, + 0.0139416335, + 0.01124231, + -0.005899608, + 0.0069600698, + -0.023479605, + 0.025590943, + -0.030041704, + -0.02640682, + 0.013079928, + 0.007622576, + 0.026950536, + -0.010168873, + 0.007869029, + 0.014567031, + 0.042376824, + 0.02025607, + 0.018021416, + 0.002601512, + 0.018939482, + -1.4086519E-4, + 0.0029596349, + -0.01718876, + 0.022845881, + 8.563948E-4, + -0.00677452, + 0.011884067, + -0.019307725, + -0.0011062112, + -0.009098983, + 0.008740203, + -0.007914845, + 0.0037421705, + -0.0013012702, + -0.036360055, + 0.02057583, + -0.0020940627, + 0.0031688022, + 0.029202063, + -0.01632928, + 0.009989267, + 0.01630879, + -0.008237738, + -0.025646582, + 0.032552727, + 0.0014037377, + 0.019606711, + -0.0018288037, + 0.021943457, + -0.0018645154, + 0.018591123, + -0.013022808, + 0.042661883, + 0.0054148943, + 0.01563606, + -0.0028089765, + -0.035923, + -0.004030448, + -0.0050053634, + 0.033480402, + 0.022720492, + -0.0057711834, + 0.013768111, + -0.025947815, + -0.009426336, + -0.026090065, + 0.0035017072, + -0.018749809, + 0.007913261, + -0.005796373, + 0.02529269, + -0.021318644, + -7.2893844E-4, + -0.006595575, + 0.016703352, + 0.0032435474, + 0.017266233, + -0.017307322, + -0.011105453, + 0.018327124, + 0.015668614, + 0.023792265, + -0.015050872, + -0.007030211, + 0.053636122, + 0.0145478, + 0.022054022, + -0.014544831, + -0.007572968, + -0.007823925, + -0.012931573, + 0.009683949, + 0.0117698135, + 8.808868E-4, + -0.002146351, + -0.0066914507, + 0.017778793, + -0.020808674, + 0.012694024, + -3.3394402E-4, + 0.02678783, + 0.009027934, + -0.010278411, + -0.01842641, + 0.0146690495, + 0.004009913, + 0.020235486, + 0.009170818, + -0.0059235385, + -0.015898678, + 0.013403427, + -0.012134982, + -0.022385048, + 0.04037948, + 0.013726823, + 0.010940949, + -0.00362, + -0.008298823, + -0.014983759, + 0.028147958, + 0.0139253, + -0.0142333275, + -0.018868333, + 0.01998258, + -0.0018147089, + -0.0150127, + 0.0026616429, + -0.004856989, + 0.011451865, + 0.013790383, + -0.02710624, + 0.016217936, + 0.005010233, + -0.022875918, + -0.008958248, + 0.005772545, + 0.042671602, + 0.003313836, + -0.012067389, + -0.019770619, + 0.015699046, + 0.017532155, + 0.005479062, + -0.0060575623, + 0.0074573006, + 0.010079475, + -0.0063490034, + -0.02463648, + 0.002892786, + 0.0015766878, + 0.008869628, + 0.0034736437, + 0.018154657, + -0.0037959367, + 0.019534891, + -0.014230672, + 0.011150119, + -0.01849755, + -8.186795E-5, + -0.023554413, + -0.022980463, + -0.0039273617, + -0.040170144, + -0.005368314, + 0.016667956, + -0.013929547, + 0.0121438345, + 0.011234297, + 0.002881629, + -0.020897174, + 0.013371842, + -0.039033104, + -0.004967427, + -0.002665154, + 0.0067202486, + -0.001888616, + -0.020650417, + -4.6974677E-4, + 0.0058563026, + -0.037004527, + -0.019108735, + -0.008615659, + -0.031771254, + -0.0147958705, + -0.020071339, + -0.012521389, + -0.033781633, + 0.00411069, + -0.019350586, + -6.278792E-4, + 0.026896073, + -0.0102454815, + 0.0074610426, + 0.010404743, + -0.011773958, + -0.015533055, + -0.014232052, + -0.0019838244, + 0.012366441, + -0.0037621378, + -0.018777864, + -0.023290455, + 0.025934316, + -0.013209948, + 0.0036869429, + 0.0074797845, + -0.008098502, + 0.03377448, + 0.014744005, + 0.007968472, + 0.0063618505 ], - "paletteEmbedding": [ - -0.024023907, 0.00421651, 0.02708398, 0.018290255, -0.0027868447, - 0.03470947, 0.011054117, -0.028959014, -0.010369578, 0.006357468, - -0.013140943, -0.026855715, 0.043546803, -9.506801e-4, -0.01423929, - -0.010345855, 0.043988366, -0.02766227, -0.030876659, 0.019978309, - -6.415624e-4, 0.0231857, 0.01952167, 0.0060306326, 0.017366467, - 0.042723026, 0.0016101818, 0.0043483074, 0.040473003, -0.0040035374, - -0.024712633, -0.042009987, 0.0056486903, 0.013684477, 0.034649223, - 2.4474366e-4, 0.009460477, 0.022092301, -0.018716017, -0.046432972, - -0.004433816, -0.034018267, 0.03574263, -0.03308068, -0.041653514, - -0.07121848, -0.026741058, -0.037923224, -0.040166073, -0.0026092043, - -0.0075715254, -0.030250162, 0.06649568, 0.018563963, -0.07256535, - 0.028304059, -0.011687792, 0.0367893, 1.9245959e-4, -0.015198674, - -0.0030339323, 0.041512635, 0.020822002, 0.012490227, -0.049074586, - 0.030566115, 0.01961377, 0.024076676, -5.753428e-4, -0.023287263, - 8.925946e-4, -0.039772425, -0.04952537, 0.009768288, 0.018800655, - -0.06362762, 0.024608161, -0.0014009043, 0.007967367, 0.02153517, - -0.026235392, 0.035721626, -0.036000382, -2.56832e-4, -0.01431296, - -0.028535346, 0.022613548, 0.03147554, 0.01096628, -0.033226818, - 0.07444466, -0.039566584, 0.0023890978, -0.007148849, 0.029706636, - -0.0065065976, -0.027479162, 0.015356675, -0.017398193, -0.035526518, - -0.01065838, -0.020052608, -0.027709689, 0.028262137, 0.0060985787, - 0.044985212, 0.016225792, -0.064364105, -0.025582252, -0.03370039, - 0.009867145, 0.034533415, 0.034787055, 0.031208787, -0.010471455, - 0.018266171, -0.015159384, 0.006590526, 0.01521228, 0.016655587, - 0.053555794, 0.08924456, 0.0076390128, 0.026413547, 0.032977626, - -0.023515377, -0.038696066, -0.035987716, 0.046062842, 0.051111277, - 0.00618002, 0.037195545, 0.083962046, -0.029521698, 0.010302573, - -0.0036900595, -0.02265696, 0.0011680258, 0.04466228, 0.026786355, - 0.0033808872, 0.027351772, -0.01886321, -0.0066828644, 0.005225605, - 0.01865673, 0.020170992, 0.007462655, 0.013548775, 0.01237938, - -0.042140905, -0.043880753, 0.030602545, -0.002198068, -0.04455007, - 0.015054947, 0.06625841, -0.008927027, 0.018909235, 0.01877889, - 0.046230756, -0.0076706223, -0.03464894, -0.02106769, 0.06403567, - -0.03397356, -0.0043598865, 0.035586447, -0.024307182, -0.008675481, - 0.011326693, 0.016567664, 0.008971335, -0.0013067595, 1.7634268e-4, - 0.024429161, -0.025477532, 0.014207484, -0.012916173, -0.012121087, - -0.017768648, 0.04229304, 0.012118588, 0.03893951, -0.012956629, - 0.038320605, 0.030851778, -0.032507338, -0.0013447885, 0.058875605, - -0.004151063, 0.013524127, 0.008886319, -0.03733238, 0.037195403, - 0.0445938, -0.016972475, -0.052036006, -0.008236376, -0.013193223, - -0.052551486, 0.041422304, 0.040606663, 0.05089919, 0.058876146, - 0.005751938, -0.011987303, -0.014628642, 0.049715966, -0.011251565, - -0.02869958, 0.0066145873, -0.021887021, -0.03294611, -0.03159253, - -0.01490854, 0.024926906, -0.009128329, 0.010243883, 0.083641455, - -0.039308567, 0.008616851, 0.017487302, -0.07830361, -0.05030403, - -0.021925116, -0.004808975, 0.013610079, -0.014050953, 0.032968957, - 0.058961675, 0.00607969, 0.016585466, 0.03276103, 0.03880838, - 0.015885914, 0.0546105, 0.020623455, -0.021401988, 0.014402783, - 0.037637163, 0.031716146, 0.061087612, 0.013516236, -0.03133477, - -0.02290247, -0.07779938, -0.019583223, 0.0103667155, 0.0027270466, - 0.009930045, 0.0065560024, 0.03551203, -0.03464413, -0.09205839, - -0.015071702, 0.054304026, -0.0071000787, 0.022859404, -0.049758174, - -0.028340193, -0.0073586563, 0.011351499, -0.029095069, 0.0029425018, - -0.051292226, -0.03990778, -0.0492078, -0.025085315, -0.047800906, - 0.021867556, -0.02342696, 0.003832629, 0.0027971386, 0.014341643, - -0.018212551, 0.02926196, -0.004493242, -0.0074741514, 0.02685101, - -0.0313053, -0.0071154432, -0.005505391, -0.003722647, -0.005275486, - -0.05948831, 0.025397882, 0.052268405, 0.011746076, 0.03561638, - 0.017205402, 0.007901227, 0.016616922, 0.023417136, -8.0976554e-4, - 0.021798585, 0.0458649, 0.014212276, -0.036164157, 0.040888898, - -0.0349013, 0.007646024, -0.051060975, 0.0057465085, 0.0074249078, - 0.09007146, -0.0582722, -0.046294417, 0.038629405, 0.0716273, - -0.015833683, -0.019483509, 0.062827185, -0.0066215354, -0.025898566, - -7.58273e-4, 0.040751737, 0.009849105, 0.021124264, 0.0035920478, - 0.018008424, -0.050915796, 0.03621371, -0.024202893, 0.032513294, - 0.013805092, -0.05169853, -0.017534813, -0.033206217, 0.024725713, - 0.0018172257, 0.07268295, 0.017280387, 9.560789e-4, 0.049175877, - 0.018172638, -0.021930527, -8.848825e-4, -0.06320435, 0.058867116, - -0.038519744, -0.010826395, -0.001507712, -0.06039557, -0.025565635, - -0.037692267, 0.09848588, -0.08056032, 0.06108765, 0.012082798, - -0.035211846, 0.0042004897, 0.05805722, 0.061798297, 0.053613883, - 0.009855946, 0.025894884, 0.046310708, -0.020129686, 0.025228214, - 0.02160467, -0.038855802, 0.0071098623, -0.050759476, 0.019296726, - -0.033776462, 0.07064401, 0.035700746, -0.031596366, 0.04706767, - 0.008491379, 0.031416953, 0.06991834, 0.020280415, -0.050001904, - -0.0104455715, -0.016003562, 0.0048532034, -0.015225734, -0.027019521, - 0.009371468, 0.025425522, 0.014812116, 0.044047445, -0.04661508, - 0.04514433, -0.015371898, 0.05026947, -0.028289778, 0.014776707, - -0.0048427447, -0.019767923, -0.0019837285, 0.08177029, 0.06517589, - -0.018475175, -0.03654293, 0.0043068277, 2.7402613e-4, 0.03045757, - -9.0876594e-4, 0.04360779, -0.0010025372, 0.010693867, -0.04511178, - 0.008945738, 0.025494844, -0.002259484, 0.02898628, -0.013698478, - 0.015274486, -0.008015345, 0.0055803205, 0.04588814, 0.014032859, - 8.8956434e-4, 0.008142583, 0.03094809, -0.022015603, 0.027796734, - -0.022411393, 0.0069787665, -0.025222475, 0.024635231, -0.006046956, - -0.049469657, -0.038415708, -0.0033033364, 3.9596777e-4, 0.0051242793, - 0.013981262, -0.0028670565, -0.03780396, -0.0090756025, -0.04817663, - 0.025456104, 0.03088571, 0.0036471658, -0.01037601, 0.019642923, - -0.0131485155, 0.010009336, 0.014340762, 0.004624045, 0.012113502, - 0.0087695625, 0.043036807, 0.01899693, -0.03707877, -0.027831543, - 0.025149344, -7.356959e-4, 0.009518822, -0.029970974, 0.0018717251, - -0.021011647, -0.0045282235, 0.03780932, -0.0024644102, -0.07398782, - -0.038784683, -0.024393536, -0.048703175, -0.026653467, 0.015107778, - -0.02629129, -0.027787507, 0.0054165153, 0.023669546, 0.026494205, - -0.0074089062, -0.04550983, -0.007814471, 0.0043252124, -0.043387745, - -0.0136423595, 0.010598687, -0.030864356, 0.031256534, -0.009090022, - 0.027807023, -0.069579355, -0.037784144, 0.039349575, -0.010035961, - -6.702423e-4, -0.009602285, 0.037998173, 0.0663112, 0.014294602, - -0.024698472, 0.01531769, 0.016340455, 0.009259842, 0.011026347, - -0.026219683, -0.03201857, -9.510871e-5, 0.043602925, 0.06915804, - -0.03246847, 0.0038242415, 0.028415244, 0.006528378, -0.0020787567, - 0.013998464, 0.008661797, 0.0063484623, 0.04003607, -0.019981874, - 0.048372947, 0.042592935, 0.026748149, -0.03598261, 0.017406838, - 4.9062795e-4, 0.00450021, 0.022187684, -0.008533332, -0.008185188, - 0.019032078, -0.001093239, -0.005576387, 0.007040635, -0.035446703, - -0.015239957, -0.032637037, -0.07081449, -0.035804305, -0.018809946, - 0.033229265, -0.004775675, -0.0146427415, 0.02074936, 0.028098525, - -0.002196847, 0.0018320902, -0.065737754, -0.022872886, 0.0010212491, - 0.036870915, -0.0056107435, 0.029676598, 0.017014641, -0.024336116, - -0.05220632, -0.014862457, -0.032653056, -0.01740038, 0.008907605, - -0.020162469, -0.052425288, -0.053927463, 0.020127319, 0.05279946, - 0.02470146, 0.011361131, -0.00302279, 0.05912526, 0.01332773, - -0.007917156, -0.028297015, -0.07264094, -0.024033917, -0.04165578, - 0.059850343, -0.017077496, 0.010143323, -0.0106439395, 0.02099255, - 0.027928486, 0.014330596, -0.027735638, -0.01251355, -0.023567013, - 0.0074531697, 0.012654027, -0.014606302, -0.006607809, -0.01125146, - 0.06299324, 0.0024441686, 0.053073846, 0.017015364, 0.010631643, - 0.017612856, 0.028050354, -0.023055054, -0.009772153, 0.005669267, - 0.03518963, 0.0165809, -0.02553565, -0.051169124, 0.01772249, 0.0586288, - -0.037371702, 0.0044039725, 0.06621231, 0.012790852, -0.00857995, - -0.032469146, 0.01668412, 0.011924095, 0.027368236, 0.051278275, - -0.026245559, -0.00470225, 0.034089193, 0.017736642, -0.060226806, - 0.01595341, 0.01584883, 0.0015781805, -0.0048526656, 0.002169841, - -0.051894803, 0.019156931, 0.03516037, 0.019294003, -0.016612474, - -0.02767504, 0.019611102, -0.0055260626, 0.03871715, -0.06123522, - 0.0060057025, -0.01759455, 0.015243427, -0.009786303, 0.028373111, - -0.0057161143, -0.0487911, 0.031091193, 0.01878319, -0.06737116, - -0.022402538, 0.026916245, 0.018346708, 0.026403798, -0.025068188, - -0.02877725, 0.050417267, -0.027377602, 0.0021438661, -0.021129861, - 0.011199404, -0.046309613, -0.018351715, -0.023641491, 0.06447961, - -0.0014569222, -0.017062938, 0.025407856, -0.034252107, -0.010651767, - -0.05293074, -0.0071068043, -0.030173624, -0.03605259, -0.008418421, - 0.047100812, -0.03273969, -0.029786117, 0.0072278646, 0.0058180247, - 0.056253195, -0.009175739, 0.03835989, -0.037866816, 0.02128548, - -0.0174966, -0.017038805, -0.0065212916, -0.04133428, 0.01149137, - 0.019450773, -2.8167563e-4, 0.04651526, 0.050468437, 0.008568547, - 0.0030544002, 0.03308464, -0.025016535, 0.02053362, 0.032666214, - -0.007236241, 0.030564174, 0.009085555, 0.03268454, 0.038937617, - -0.02100183, -0.0449151, -0.04195796, -0.06455669, 0.017965777, - -0.010675703, -0.020210853, -0.0480499, -0.011345535, 0.009463693, - -0.031411976, 0.032168478, -0.033461202, -0.012273709, -0.0043202667, - -0.02588886, 0.03400255, 0.04194237, -0.040376004, 0.001613243, - -0.027804267, 0.007260896, -4.20945e-4, 0.024536677, -0.007391063, - 0.019966211, 0.03326946, 0.011906799, -0.017658347, -0.041639563, - -0.0054298537, 0.0065959175, 0.007922102, 0.024586948, 0.02746167, - 0.025257746, -0.047401976, 0.024048684, -0.009498314, 0.011553094, - -0.008452021, -0.0337613, -0.0043627815, -0.01883743, -0.025614122, - 0.015675224, 0.012542906, -0.019393295, -0.0486601, 0.06127905, - -0.030134972, 0.058212407, 0.020374525, 0.0071403286, 0.04433581, - -0.0023412334, -0.03255879, 0.015509366, 0.032056775, 0.0013686, - 0.024463048, -0.015296467, -0.006355729, -0.03548265, 0.021715486, - -0.023337932, -0.021788461, -0.068443276, 0.0038575477, 0.046132654, - 0.0519491, -0.015020665, 0.031501304, 0.014123805, 0.0060137487, - -0.021650743, -0.048824195, 0.038345862, -0.01209491, -0.0531037, - 0.024644509, -0.024769893, -0.016881248, -0.011907026, 0.07817823, - -0.03670351, -0.024695396, 0.006256784, -0.017591683, -0.0043815384, - 0.007965164, -0.0028297314, 0.011474034, -0.014577735, -0.014989974, - -0.026695283, -0.0018886548, 0.011129221, 0.017413627, 0.012566333, - -0.03113719, 0.013897965, -0.019947423, 0.038110543, -0.0038334515, - -0.016549027, 0.010414005, -0.03582517, 0.0030247848, 0.01086695, - 0.027442683, 0.020225514, -0.060655102, -0.010766816, 0.0057350704, - -0.033341452, -0.048990518, 0.010807734, -0.02009729, -0.04024421, - -0.024552079, -0.05022674, -0.011685674, -0.017232345, -0.051634785, - 0.011784984, 0.0058928984, -0.009778638, -0.017531099, 0.007378308, - 0.06636077, -0.026606102, 0.027625533, 0.00963805, 0.07199003, - -0.0017985507, 0.0021061937, -0.027587606, 0.044944197, -0.03931356, - 0.028064203, -0.09007825, 0.0067629404, 0.052580606, 0.017360115, - 0.04998426, 0.055756047, 6.201708e-4, -0.078339905, 0.0057233856, - 0.052506354, 0.009519111, 0.030488377, -0.018553842, -0.01071651, - 0.0030969682, 0.0046030185, -0.016466102, -0.019360876, -0.011570432, - 0.021100378, -0.018377371, -0.013529447, 0.08610656, -0.024988297, - 0.019501729, 0.054777622, 0.05170734, 0.05526348, -0.012980195, - 3.692075e-4, 0.04778409, -0.014954126, 0.010611257, 0.020261154, - 0.016213631, 0.006809383, -0.009055972, 0.0013636723, 0.016885305, - -0.05559591, -0.016389566, -0.0406511, 0.058775235, -0.006147141, - -0.057923045, -0.009170698, -0.043572806, 0.037964437, -0.018243475, - 0.034439962, -0.00486723, -0.003383645, 0.015543618, -0.0013186632, - -0.03202898, -0.0026401025, -0.030836266, 0.03962565, -0.031058552, - -0.09806431, 0.024035249, 0.029487684, 0.0061956085, 0.00692211, - 0.0150657315, -0.014874777, 0.024026984, -0.09011592, -0.031159436, - 0.02668541, -0.02788408, 0.021797163, 0.04934657, 0.016840598, - 0.006849369, 0.021517571, -0.0391746, -0.08233925, 0.023552809, - 0.02885682, 0.011546713, -0.06529268, 0.03320952, -0.043426204, - -0.020188063, 0.032525137, -2.5515183e-4, -0.014216546, 0.0046930234, - -0.027248267, -0.018094463, 0.029206494, 0.052099466, 0.06480312, - -0.045733836, -0.03757518, 0.04838718, -0.004895364, -0.016073698, - 0.0039821314, 0.025143448, -0.030922642, 0.020548237, -0.006589782, - -0.039011806, -0.011054159, 0.0023991866, -0.011412546, 0.02987215, - 0.035160802, -0.010064277, 0.0031967259, -0.02610129, 0.016874125, - -0.02029157, 0.0207489, 0.06055722, -0.030481644, -0.08282602, - -0.007186176, 0.013760853, -0.012930383, 0.02732106, 0.014129651, - 0.0057378714, -0.016308175, 0.047125038, 0.039125662, 0.0110181235, - -0.05509948, 0.06559906, -0.006703277, -0.052762035, 0.0014189177, - -0.034762144, 0.001248569, -0.019548874, 0.025892904, -0.022899443, - 0.0045298557, 0.02218139, -0.017889889, -0.01959376, -0.009741111, - 0.019738344, -0.039349325, 0.002528646, 0.023039794, 0.053933322, - -0.009725735, -0.011208485, -9.874381e-4, -0.0214831, -0.011833394, - 0.023246648, -0.0042631403, 0.0074928184, 0.009622562, -0.0031851379, - -0.04430509, -0.044541832, 0.035572242, -0.027286088, 0.014226632, - 0.012382548, -0.007928246, -0.044403583, 0.050018284 + "paletteEmbedding" : [ + -0.04067954, + 0.0496877, + -0.0067734257, + -0.0072574452, + -0.033407826, + 0.063696705, + 0.0047517605, + 0.03557485, + 0.028396424, + 0.003451544, + -0.004820489, + 0.011080963, + -0.027705446, + -0.026059322, + 0.008897814, + 0.012071572, + -0.04688905, + 0.009650039, + 0.0059823636, + -8.6456E-4, + 0.037988327, + 0.046893552, + -0.014655727, + 0.04345285, + 0.029651232, + -0.022715207, + 0.018923694, + 0.03210093, + 0.0044562123, + -0.020377293, + 0.006180484, + 0.049538568, + -0.017829802, + 0.01735038, + 0.03129408, + 0.054275915, + -0.011668551, + -0.021529725, + 0.010415296, + -0.044002127, + -0.0044872556, + -0.035051174, + 0.0058404547, + 0.002173092, + 0.006054669, + -0.029818598, + -0.021797972, + -0.04111607, + 0.019560253, + -0.012401699, + -0.030525694, + 0.009938106, + 0.010376307, + -0.033118196, + 0.072098315, + -0.00978933, + 0.027120931, + 0.046212573, + -0.013020821, + -0.026118206, + -0.038482673, + 0.014926172, + 0.05205042, + 0.039466485, + 0.043027434, + 0.023293912, + -0.08155536, + -0.010442007, + 0.030181529, + -0.02559759, + 0.027695082, + -0.010207409, + 0.015903601, + 0.02821043, + -6.4590503E-4, + 0.018798226, + -0.033566646, + -0.0014666499, + -0.059292614, + 0.016316725, + -0.003945974, + -0.019236324, + -0.007900614, + -0.046284553, + 0.04082539, + 0.0071005, + 0.01388903, + -0.028376441, + 0.01774244, + -0.09056547, + 0.0239598, + 0.008528272, + -0.05787506, + 0.051355004, + 0.03237011, + -0.041539237, + -0.025007725, + 0.002635695, + 0.03951798, + 0.025899012, + -0.0079752505, + 0.025292661, + 0.0017522128, + -0.03044866, + -0.039398786, + -0.023987312, + -0.040549066, + 0.004302443, + 0.05587789, + -0.045712244, + 0.006203523, + -0.017885946, + -0.02808862, + -0.013340255, + -0.03363605, + -0.0022381174, + -0.008806661, + -0.03241648, + -0.0771819, + 0.097606726, + -0.06581019, + 0.062328935, + -0.015803434, + -0.033022534, + -0.031881332, + -0.004095769, + -0.041512866, + 0.012914661, + -0.020286772, + 0.035275646, + 0.009933925, + -0.06353253, + 0.030093702, + 0.018611234, + 0.020161968, + -0.0010098388, + 0.042383563, + 0.0109174615, + 0.024915207, + 0.051536143, + -0.021352867, + -0.0026630522, + -0.023013283, + -5.4509076E-4, + -0.009466737, + 0.0065544685, + -0.028696772, + 0.0054989913, + -0.038898215, + 0.07475382, + -0.008243693, + -0.006498166, + -0.011094118, + -0.042349543, + 0.014096835, + -0.011485028, + -0.023260402, + 0.060073838, + 0.026548168, + 0.02547033, + -0.03622739, + -0.018455412, + 0.01711327, + 0.0332251, + 0.014494685, + 0.020792294, + 0.059126157, + 0.02830978, + 0.018528633, + -0.0030289644, + -0.022829738, + -0.003351549, + -0.060255766, + 0.0069493037, + 0.004255426, + -0.004330284, + 0.02972149, + 0.0075500314, + 0.015212494, + -0.0101582585, + -0.010268226, + 0.049459737, + -0.0039915433, + 0.04716833, + 0.040030323, + 0.01433057, + -0.027233597, + -0.035106115, + 0.035201576, + -0.052383818, + 0.010027657, + 0.0038417615, + -0.017464267, + 0.033280883, + 0.008941134, + 0.0046868543, + -0.030645166, + -0.026967045, + -0.023119645, + 0.021492554, + 0.013463414, + 1.3856047E-4, + 0.01731166, + -0.021768898, + 0.023610627, + 0.025219092, + -0.0028418875, + -0.011390346, + 4.516907E-5, + -0.011094641, + 0.029343935, + 0.025512356, + -0.025425425, + 0.0030948827, + -0.027351307, + -0.01705251, + -0.0053262007, + 0.0125241615, + -0.0147698885, + 0.054910116, + 0.03312659, + -0.02071603, + -0.034075215, + 0.02435908, + 0.0042501115, + -0.013207975, + 0.014938328, + -0.027681133, + -0.01769748, + 0.0152654955, + -0.027547823, + -0.021558555, + 0.05045491, + -0.0424118, + -0.009482045, + 0.015167641, + -0.024739848, + 0.005616269, + -0.016231393, + -0.0076989383, + 0.0077821217, + -0.008193773, + -0.04652884, + 0.024225743, + -0.013535041, + 0.038840592, + 0.027253795, + 0.013543185, + 0.0049463985, + -0.027657246, + -0.026099853, + -0.05882055, + 0.027368704, + -0.030358974, + 0.030568225, + 0.022214033, + -0.041827906, + -0.0025701101, + 0.0137341125, + 0.022172635, + 9.98794E-4, + 0.06320621, + -0.015981745, + -0.04305753, + -0.011328509, + -0.029598027, + -0.026499182, + -0.006097938, + -0.05089342, + -0.018208591, + 0.028498001, + -0.061800852, + -0.009961561, + -0.035212908, + 0.031804558, + 0.0012388221, + -0.0064748814, + -0.03693716, + 0.039686766, + -0.018453479, + -0.03184667, + 0.01570367, + -0.020129513, + -0.010243828, + -0.0052069966, + 0.042527366, + -0.031102816, + -0.019567793, + -0.01931997, + -0.0072881496, + 0.06360374, + 0.04215973, + 0.011824841, + 0.08333028, + 9.68244E-4, + -0.002595342, + -0.03528638, + -0.060857523, + -0.034892987, + -0.023959473, + -0.03345842, + -0.019360341, + 0.047958273, + 0.022089912, + 0.067912504, + -0.01060268, + 0.028710088, + -0.041672435, + -0.009713933, + -0.0019766518, + -0.043909233, + 0.03204944, + -0.007506079, + -0.04783572, + -0.028346425, + -0.022802573, + 0.03758079, + -0.011871371, + -0.036105517, + 0.0022735451, + -0.014461795, + -0.050307885, + -0.047826804, + -0.032251373, + -0.017990423, + 0.0014033064, + 5.1315455E-4, + -0.025036791, + -0.019591205, + 0.025756529, + -0.043636713, + -0.037613485, + -0.04008904, + 0.04421712, + 0.022203207, + 5.2102434E-4, + -0.010777104, + 0.008224981, + 0.049053267, + -0.02272471, + -0.0067919353, + -0.059590265, + 0.009584185, + 0.0042575765, + 0.003616059, + -0.060013335, + -0.063083895, + -0.00623355, + -0.034532044, + 5.3916394E-4, + -0.05172913, + 0.023767857, + -0.026481299, + 0.037264768, + -0.006019189, + -0.029284261, + 0.015932998, + -0.064245746, + 0.003654168, + 0.021735426, + -0.003305551, + -0.044146206, + 0.034010615, + 0.025123272, + 0.0018194466, + 0.023159046, + -8.1372185E-5, + 0.009882532, + -0.038343, + -0.017080255, + 0.0071831527, + -0.055364683, + -0.0105350865, + 5.5890036E-4, + 0.02205003, + -0.006601577, + 0.06356657, + 1.315791E-4, + -0.029811932, + -0.014990591, + 0.020244012, + -0.0051707667, + 0.025263218, + 0.0288228, + -0.052751746, + -0.08451578, + 0.024310965, + 0.018385032, + 5.18346E-4, + 0.036492117, + 0.045358315, + -0.0028372253, + 0.022350673, + -0.0038340697, + 0.067559965, + -0.02208641, + 0.014743763, + 0.04143588, + -0.026986418, + 0.044081904, + 0.017967982, + -0.057446264, + 2.599205E-4, + -0.014136164, + 0.011886903, + 0.04313425, + -0.031110091, + -0.009625297, + 0.020504162, + -0.021344896, + -0.05324698, + 0.016048672, + -0.009232922, + -0.03328443, + 0.0010131589, + -0.060560737, + 0.021818267, + -0.026509468, + 0.013065778, + -0.04438513, + 0.01741209, + 0.004224983, + 0.0063158507, + 0.008874322, + -0.031168161, + 0.01796935, + 0.012457269, + 0.02167212, + 3.3611248E-4, + -0.011848632, + 0.021206547, + -0.030966312, + -0.017281601, + -0.016916675, + 0.027751615, + -0.010582421, + 0.0066555543, + -0.04798495, + 0.024157105, + -0.017827388, + 0.0071549923, + 4.963898E-4, + -0.02017341, + 0.011120188, + -0.004813328, + -0.010905609, + -0.051966682, + -0.030067062, + 0.008751408, + -0.003498097, + -0.039683778, + -0.009118561, + 0.005311193, + 0.048448086, + -0.0078072143, + 0.017118309, + 0.017066883, + -0.023768669, + 0.0015732177, + 0.022655074, + -0.0301256, + 0.016307907, + -0.013739971, + -0.007542437, + -0.06117595, + 0.04888568, + 0.004716358, + 0.04394612, + 0.032009214, + -0.031543408, + 0.05051731, + 0.0018819929, + 0.018442338, + 0.03578285, + 0.036332637, + 0.06610668, + -0.010099142, + -0.02410976, + -0.029894669, + -0.030494086, + -0.067044064, + -0.044959754, + -0.010962735, + 0.047265083, + 0.014407775, + -0.02429639, + 0.0354914, + 0.07144421, + -0.016511487, + -0.0476714, + -0.019452734, + 0.015302344, + -0.02587671, + -0.016782908, + 0.027607791, + -0.00757774, + -0.00467347, + -0.04343765, + -0.05047046, + -0.051087454, + 0.029085234, + -0.029784027, + -0.045831744, + 6.1152177E-4, + 0.0050390144, + -0.05990707, + 0.050665, + 0.017641494, + 0.023226747, + 0.022989115, + 0.02155203, + 0.0014952539, + 0.019639827, + -0.023055902, + -0.055473212, + -0.020413147, + -0.06605306, + -0.018982237, + -0.0022675784, + -0.025872463, + -0.011990415, + -0.0792455, + -0.023587888, + -0.0023363987, + -0.018546019, + 0.022901496, + 0.0071844864, + -0.015095852, + 0.006881267, + -0.044084128, + -0.015110347, + -0.03177166, + 0.026432015, + 0.023552677, + -0.0014949957, + -0.07248224, + 0.06392142, + 0.03448439, + 0.02816838, + -0.07844, + -0.078598365, + -0.007918971, + -0.019630598, + -0.030579073, + 0.020917226, + -0.008816087, + -0.016088035, + 0.022758035, + 7.2153105E-4, + -0.055572484, + -0.009831063, + 0.018355915, + -0.09198424, + 0.0073202117, + 0.052198507, + -0.04070804, + -0.040583342, + -0.01922504, + 0.03155021, + 0.01195256, + 0.05658544, + -0.019870307, + -0.0011191869, + -0.022025174, + 0.006387873, + -0.0790157, + 0.038848102, + -0.0024808235, + 0.011608013, + -0.018707959, + -0.051658798, + 0.058078494, + -0.018242717, + -0.0334173, + 1.7853537E-4, + -0.007933104, + 0.062205836, + 0.040798943, + -0.0020811406, + -0.012880961, + 0.014639883, + 0.0064264387, + -0.0019967665, + -0.03556144, + 0.018912798, + -0.074469015, + -0.06563004, + 0.0045920056, + -0.018331043, + -0.02210346, + 0.009531273, + 0.072171174, + -0.05878572, + -0.007657647, + 0.028807992, + -0.06004601, + -0.037799146, + -0.020609453, + -0.02988684, + 0.053671274, + -0.03112762, + 0.021458363, + 0.04420605, + -0.021656526, + -0.0019899895, + 0.012626958, + -0.028514208, + -8.5923064E-4, + -0.049591795, + 0.044914182, + -0.0023391284, + 0.043346934, + 0.004875616, + -0.028209733, + -0.041629177, + 0.020504773, + -0.010506784, + -0.016623875, + -0.0067719654, + -0.030676166, + 0.028014347, + -0.052529015, + 0.016704584, + 0.021253519, + -0.020431427, + -0.0720694, + -0.04160023, + -0.008958952, + -0.03402779, + 0.048845686, + 0.022879515, + -0.007002091, + -1.1458548E-4, + 0.0048189694, + -0.037246723, + -0.02279484, + 0.03448732, + 0.020067146, + 0.06985206, + 0.017571235, + -0.013099311, + 0.0016139173, + -6.1132986E-4, + 0.054088205, + -0.06615183, + 0.027598612, + -0.0053762766, + 0.009825399, + -0.016222803, + -1.4525003E-4, + -4.73725E-4, + -0.0064031384, + -0.019586414, + -0.002315558, + -0.03949295, + 0.021585843, + -0.009529168, + 0.048269115, + 0.029379003, + -0.017976757, + 0.05523042, + -0.04916216, + -0.036015816, + -0.02929097, + -0.0014158376, + 0.004894204, + -0.036444075, + -0.008229599, + 0.001147173, + 0.020896843, + -0.058867026, + 0.008809687, + 0.0322412, + -0.034000404, + -0.012272863, + 0.010832122, + 0.020781841, + 2.7069406E-4, + -0.05008539, + -0.004148688, + 0.012957233, + 0.022223359, + 0.022111157, + -1.9180664E-4, + -0.047405962, + 0.058068965, + -0.058579072, + 0.05498088, + -0.032250267, + -0.0073224064, + -0.0066569364, + 0.007527469, + 0.02454132, + -0.03904443, + 0.013590118, + -0.017751599, + -0.02592141, + 0.0253859, + -0.043687955, + 0.01203662, + -0.019179948, + -0.039550103, + -0.017364386, + -0.06785652, + -0.026165664, + -0.038064264, + -0.006631467, + 0.030621272, + -0.03466658, + 2.7595239E-5, + -0.031259988, + 0.003132893, + -0.02908263, + -0.024154112, + -0.026439345, + -0.0038750935, + -0.04218, + 7.675578E-4, + 0.0026148744, + 0.013207906, + 0.0041731047, + 0.04019166, + -0.016175024, + 0.049901944, + 0.00812344, + 0.023596535, + 0.06557648, + 0.0050767674, + -0.033850905, + 0.039011996, + -0.017050343, + -0.071454704, + -0.031541973, + 0.0025615043, + -0.048098158, + 0.0018899497, + -0.028358843, + 0.018288417, + 0.016928269, + 0.046826858, + -0.045408025, + 0.068383746, + -0.0030294184, + 0.0407341, + 0.03445113, + 0.033319503, + 0.10095309, + 0.02030114, + 0.038090244, + 0.011843145, + 0.0021252837, + 0.017423106, + 0.009159118, + 0.043061454, + 0.0037908277, + -0.043056488, + -0.022908678, + 0.0214395, + -0.05023892, + -0.03631804, + -0.0013767666, + -0.03478257, + -0.0038411615, + -0.032806683, + -0.02032463, + 0.0071598985, + -0.0034497313, + -0.012297011, + 0.020781387, + 0.003603525, + 0.029898144, + -0.03371211, + 0.06702702, + 0.04365905, + -0.030039186, + -0.007175089, + -0.067226216, + 0.010976011, + 0.02530638, + -0.014598591, + 0.004506415, + -0.017738806, + -0.06330555, + -0.006451308, + -0.064422034, + 0.044906557, + -0.02444069, + -0.027022881, + -0.015441793, + 0.035865452, + 0.01559426, + -0.054234255, + 0.0051673953, + 0.02135374, + -0.016525183, + -0.031387, + -0.01740664, + 0.007146019, + -0.044701297, + -0.007911537, + -0.012611685, + 0.02304799, + 0.004770634, + 0.07086011, + -0.016530292, + -0.008408242, + -0.014348575, + -0.0070488756, + 0.031170994, + -0.04160407, + -0.0075740227, + 0.027560346, + -0.0032221586, + 0.03898666, + 0.019170241, + 0.026458073, + 0.010673769, + 0.05656581, + -0.025529118, + 0.016860133, + 0.012811061, + -0.04524562, + -0.006671436, + -0.02291325, + 0.0019890303, + -0.002263481, + -0.01809874, + 0.00880879, + -0.09838988, + -0.0083288625, + 0.0041742977, + 0.022240069, + -0.0043557985, + -0.0056866403, + 0.004880525, + 0.04282658, + 0.004831663, + -0.051472057, + -0.00614028, + -0.068815075, + 0.052787736, + 0.02204432, + 0.03585705, + -7.798824E-5, + -0.005730739, + 0.02302787, + -0.024870893, + 0.016608743, + 0.024987001, + -0.038616907, + 0.030305, + -0.04233645, + -0.034938134, + -0.026984032, + 0.007451194, + -0.035634097, + -0.03466381, + 0.014604038, + -0.035683163, + -0.008499999, + -0.0029097067, + 0.00297606, + 0.027562125, + -0.037635047, + 0.054133665, + 0.028125728, + 0.0013343717, + -0.019142834, + 0.050265875, + -0.007973178, + -0.035684768, + -0.015340184, + -0.003490483, + -0.033103555, + 0.05712855, + -0.048451588, + -0.006101088, + 0.0045267614, + -0.00953915, + 0.02785601, + 0.008771779, + 0.088343255, + -0.019943085, + 0.040879864, + -0.01834217, + 0.044128925, + 0.015030144, + 0.026895866, + 0.012213924, + 0.017756892, + -0.021419657, + -0.057916682, + 0.031085158, + -0.027503038, + 0.0063532693, + 0.028753852, + 0.016423773, + 0.0012093713, + 0.011627648, + 0.01564408, + -0.03369471, + -0.0064864308, + 0.008496471, + -0.01843042, + -0.02702067, + 0.04352442, + -0.01684907, + -0.029594254, + -0.013107341, + 0.022452349, + -0.028428696, + -0.010724865, + 0.06442631, + 0.012510882, + 0.014138305, + 0.049267992, + -0.02936768, + 0.05171277, + 0.04817968, + 0.009387656, + 0.018054875, + -0.012080298, + -0.004120699, + -0.017211558, + 0.0060356874, + -0.003650182, + -0.03331791, + -0.018879218, + 0.003783367, + 0.017402831, + -0.063115306, + -0.013737898, + -0.025343789, + 0.015695792, + -0.040376507, + 0.014897948, + -0.0036988684, + 0.012034053, + -0.037364423, + 0.05341256, + -0.036775775, + -0.021723585, + 0.033417765, + 4.3691947E-5, + -0.003597567, + 0.01167389, + 0.07483546, + -0.005662778, + 0.0160586, + 0.02362659, + 0.0395021, + 0.021727368, + 0.04451529, + -0.014390755, + -0.019844458, + -0.045683615, + -0.03456671, + 0.0093999095, + -0.024096392, + -0.042648766, + -0.028829861, + -0.016750144, + -0.0013498102, + -0.03763695, + -0.031654775, + -0.04533432, + -0.01893301, + -0.038069226, + 0.034128968, + 0.015829295, + 0.002769019, + -0.031206764, + -0.023520833, + 0.04342983, + -0.0030068061, + 0.041682985, + -0.026963988, + -0.0028940642, + 0.022968134, + -0.0025399178, + -0.0014627568, + -0.04602423, + 0.012626271, + 0.0067687063, + 0.026617313, + -0.034891892, + 0.044522867, + 0.0151927145, + 0.026212465, + -0.03526946, + 0.0072417576, + 0.033855096, + 0.044004053, + 0.015550633, + 0.0017902215, + 0.033522587, + -0.012780685, + 0.0080382945, + 0.0018186601, + 0.010969187 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.genres.0.json b/common/search/src/test/resources/test_documents/images.genres.0.json index 3d467b2b2..ab2695410 100644 --- a/common/search/src/test/resources/test_documents/images.genres.0.json +++ b/common/search/src/test/resources/test_documents/images.genres.0.json @@ -1,1345 +1,5259 @@ { - "description": "images with different genres", - "createdAt": "2023-11-21T14:25:43.945659Z", - "id": "fkysdxdk", - "document": { - "modifiedTime": "1946-06-21T08:00:48Z", - "display": { - "id": "fkysdxdk", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different genres", + "createdAt" : "2024-11-14T14:37:56.406976Z", + "id" : "a56axpjh", + "document" : { + "modifiedTime" : "2038-06-23T05:04:57Z", + "display" : { + "id" : "a56axpjh", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/s3g.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", + "credit" : "Credit line: cHPJUdxLru", + "linkText" : "Link text: YlUiSU", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/s3g.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", + "credit" : "Credit line: cHPJUdxLru", + "linkText" : "Link text: YlUiSU", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#35236A", - "source": { - "id": "ewsdjrv8", - "title": "title-AKlsR03BjF", - "contributors": [], - "languages": [], - "genres": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#626AB6", + "source" : { + "id" : "jh9wm7yc", + "title" : "title-3AaAdcU2qn", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ { - "label": "Carrot counselling", - "concepts": [], - "type": "Genre" + "label" : "Carrot counselling", + "concepts" : [ + ], + "type" : "Genre" } ], - "subjects": [], - "type": "Work" + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "fkysdxdk", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ewsdjrv8", - "sourceIdentifier.value": "mbBTROLu6h", - "identifiers.value": ["mbBTROLu6h"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-AKlsR03BjF" + "query" : { + "id" : "a56axpjh", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jh9wm7yc", + "sourceIdentifier.value" : "4Kj79xEwqO", + "identifiers.value" : [ + "4Kj79xEwqO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-3AaAdcU2qn" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": ["Carrot counselling"], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.009972721, 0.013880849, -0.012685677, 0.004802973, -0.037802186, - 0.01190439, -0.005262961, 0.006600408, -0.0045573637, 0.0033457146, - -0.0076896804, 0.020082708, 0.0034693766, -0.0055863513, -0.0023626427, - 0.0054886676, -0.02029292, 2.7178921e-5, 0.0011014622, 0.0040075807, - -0.00432943, -0.0076663545, -3.6355646e-5, -0.005940817, 0.019075247, - 0.0072872723, -0.016647292, 0.020733831, -0.019031608, -0.0120269125, - -0.0010626045, -6.1161694e-4, -0.024076957, -0.028021438, 0.0288165, - -0.0142123895, 0.015171532, 0.010430153, -0.0018025014, -0.0059682643, - 0.033253532, -0.014274758, 0.004710339, 0.00979668, 0.012426545, - 0.011403842, -0.027198361, 0.014663568, 0.007877958, 0.02235289, - 0.009323766, 0.00914881, 0.008962534, 0.013693071, -0.0067784386, - -0.015855314, -0.014859706, 0.001189916, -0.004552574, 0.0025645003, - 0.014152006, 0.014206897, 0.004218566, -0.012241327, -8.8646414e-4, - 0.017995765, 0.016688455, -0.006777071, -0.014563444, 0.012462616, - -0.015144148, -0.00842294, 0.003346204, 0.030863486, 0.009058498, - 0.015622402, -0.0032718948, -0.021934705, -0.0014435847, 0.0029293296, - -0.010996548, -0.010378629, -0.0034656648, -0.022550097, -0.0040790243, - 0.0034783843, -0.022252055, -0.022445882, -0.03513837, 0.0050266758, - 0.014159899, 0.004285673, 0.011538737, 0.029363217, 0.004772286, - -0.008392738, 0.01837522, 0.015139567, -0.019125191, 0.002495143, - 0.012585414, 0.015122523, 0.011332554, 0.003251678, -0.0022023031, - -0.024024, 0.009056743, -0.018140312, 0.022252144, -0.004430283, - 0.013175719, 0.020533687, -0.0054793092, -0.0091849025, -0.020033598, - 0.004107867, -0.041402053, 0.019634955, -0.011576047, -0.007826692, - -0.032616314, 2.2368348e-4, 0.023200843, 0.0026414494, 0.014916967, - 0.02680668, 0.016428228, -0.020175556, 0.0109997345, -0.018962897, - -4.3281892e-4, 0.015915653, 0.0046744836, -0.0020764375, 0.0017895121, - -0.009189142, -0.008778041, -0.038746864, 0.0029257098, 0.025352882, - -0.008474754, 0.018159637, 0.030063055, -0.03807936, 0.004729747, - -0.009436784, 0.00401942, -0.0010952714, 0.001862211, -0.009120076, - -0.0139619615, -0.028880715, 0.011309822, 0.027156226, 0.008339354, - 0.010424653, -0.0080021955, 0.009768309, -0.027217593, 0.0031128973, - -0.020992711, -6.5224693e-4, 0.008102118, -0.003973912, -0.010811979, - -0.02881271, -0.006801046, 0.0053814263, -0.0018964157, -0.04677806, - -0.01612146, 0.0039372607, 0.005786489, -0.03834412, -0.015720695, - -0.0019126997, -0.011277996, -0.020734528, 0.004543334, 0.019624235, - -0.0029035637, 0.00620012, -0.0020296199, -0.0016730087, 0.021311842, - 0.0024268192, -2.9170935e-4, 0.017507045, -0.0045406097, 0.010657405, - -0.038186654, -0.0015247702, 0.0112344995, -0.014518083, 0.00804464, - -0.019894764, 0.009161315, -0.0239247, -0.0132938465, 0.00176975, - 7.9972604e-5, 0.020139951, -0.0046156887, -0.011228435, 0.0059228446, - -0.0136497505, 0.0059551448, -0.0075734574, 0.02357519, -0.02744582, - 0.007451989, 0.003986932, 0.013967312, -0.017299144, 0.002461584, - 0.0076521276, 0.0031663277, -0.0042152167, -0.017228585, -0.028955719, - -0.0052852537, -0.009708627, 0.0060848696, 0.026986083, 0.0036895822, - -0.008119855, -0.007198768, -0.027402602, 0.013630759, 0.022627251, - -0.0037285592, 0.0071899784, -0.0152730765, 0.013491998, -0.012125658, - -9.324939e-4, -0.022011524, -0.016487487, -0.019379592, -0.022418415, - -0.0032891347, 0.00396831, -0.0026513208, 0.012099726, 0.022641106, - 0.0014023294, -0.00348291, -0.0054395935, -0.024148429, -0.03863367, - 0.0024462878, -0.0060049635, -0.005657669, 0.008156894, -0.0129057905, - -0.017992906, -0.0076254634, 0.030281799, -0.0134767005, -0.020531626, - -0.03785342, 0.02791375, -0.03525278, -0.005289163, -0.004744592, - 0.01652994, -0.028536003, -0.022955006, -0.007074502, -0.010794108, - 0.005630955, 0.007105167, -0.01240832, -0.012678603, -0.025220253, - 0.0053307824, -0.012107223, 0.005239932, -0.025077747, -0.010636644, - -0.014683849, -0.0033661118, 0.035802856, -0.009471656, -0.0136333825, - 0.017443895, 0.05053216, 0.01749743, 0.016267726, 0.002720728, - 0.0056219692, 0.0021769754, -0.023081655, 2.6876296e-4, -0.022396015, - -0.0035218669, 0.0028172808, 0.014395569, 0.020036165, 0.0035112065, - 0.00500983, -0.018468436, 0.01140064, 0.014507553, -0.004057381, - -0.018261392, -0.015664876, 0.0030380369, -0.0025044105, -0.00725008, - -0.030620815, 0.02234461, 0.009165777, -0.0075123105, -0.013148959, - -0.023619168, 0.003363564, -0.0039237994, 0.021447012, -0.0029142182, - -0.037191596, -0.0029686892, -9.8431956e-5, -0.015065237, -0.026239809, - 0.038882833, 0.043075047, 0.025388835, 0.0075270263, 0.013575447, - -0.039750535, -0.008731954, -0.006962551, 0.0025899233, 0.0072258185, - 0.00527417, 0.005370392, 0.007164627, -0.0030045575, -0.005777471, - -0.006081088, -0.0033899231, -0.020166105, 0.0043372028, -0.0030215192, - -0.018246742, 0.004714984, -0.003780751, 0.0090150675, 0.019229228, - 0.011552093, 0.012268239, -0.012564511, 0.011759141, 0.019829994, - 0.021455405, 4.176136e-4, -0.01708771, -0.002596984, -0.011653912, - -8.802272e-4, -0.0069953795, 0.0062041455, -5.940509e-4, 0.004518288, - 0.024470054, 0.005468514, -0.029266741, 0.020446774, -0.0012890775, - 0.027362138, 0.017661287, 0.012052587, -0.0031567006, 0.008712968, - 0.0075746453, -0.028711466, -0.0017789691, 0.005764805, -0.011546337, - -9.833594e-4, 0.02353875, -0.0061166747, 0.022380665, 0.0016314642, - -0.0043226182, 1.1076595e-4, -0.011931426, -0.016369356, 8.765001e-4, - 0.018196002, -0.0070467903, -0.012893555, 3.0718758e-4, 0.0034987244, - 9.7031926e-4, -0.014466188, -0.011801332, 0.011232065, -0.0022279914, - 2.9528592e-4, -0.0070349653, -0.004433946, -0.034839254, 0.009852858, - -0.001455623, 0.016787421, 0.005395252, -7.6938554e-4, 0.016139211, - 0.0139770685, 0.02332968, -0.021138068, 0.032039225, -0.01323695, - -0.016400019, 0.007089316, 0.0030106066, 0.015138832, 0.0045217443, - -0.020581393, 0.019733194, -0.026514232, 0.0035497085, 0.003531319, - 0.00570647, 0.012730301, -0.009899634, -0.0012532308, 0.015027932, - -0.0037961483, -0.04362876, -0.015247804, 0.021473221, 0.012942869, - -2.524301e-4, 0.011428373, -0.016756225, 0.0052389824, -0.008639959, - -0.006989303, -0.011769342, 0.009730598, -0.010801014, -0.019637402, - 0.019551069, 0.027599152, 0.014343218, -0.0010818123, -0.022144385, - 0.018412098, 0.028239843, -0.002059059, -0.008221336, -0.0195745, - -0.0075844615, 0.010440847, -0.0065682814, 0.0068396144, 0.011299632, - -0.02724294, -0.029482894, 0.010045646, 0.012491765, -0.008610994, - 0.0048763123, 0.015777022, -0.003936596, -0.0051630563, -0.010680412, - -0.0032394866, -0.01815996, 0.009840981, -0.012970204, 0.008948345, - 0.03637318, 0.025191452, -0.006107964, -0.0052023325, -0.008397721, - 0.035304848, -0.011860689, 0.008756088, 0.008271269, 0.0071561383, - -0.016977694, -0.018238444, -0.026983142, -0.008196174, 0.020373998, - -0.024238663, -0.010770278, -0.0028653608, 0.004078731, 0.01012179, - 0.018947408, 0.004027268, -0.04304292, -0.009976483, -0.027501998, - 0.0037638096, -0.019950047, -0.007962327, -0.038443293, -0.0055130715, - -0.026348498, 0.010139873, -0.016068572, -0.012021431, -0.010870797, - 0.008960724, -0.0055140043, 0.017726196, -7.7966956e-4, -0.035508484, - 0.032335658, -0.013159872, -0.0068807187, 0.0018225305, 0.0035716367, - 0.0018921213, 0.01607098, -0.005296001, 0.015427442, -7.002044e-4, - -0.0035557696, 0.009462255, 0.004813538, -0.0012871047, -0.0065748193, - 0.009574905, 0.011407643, 0.005674285, -1.8490404e-4, 0.00938446, - 0.0022120308, 0.019306514, 0.015108898, 0.0059144082, 3.4374624e-4, - -0.018822059, -0.026151089, 0.03225759, -0.0020043564, 0.022097614, - -0.021112755, 0.0065830685, 0.004242303, -0.010224466, 0.004406945, - 0.004761386, 0.008904094, -0.010890236, 0.005265688, 0.022186238, - 0.008841271, -0.014031475, 0.01660133, 0.008922309, 0.018039543, - 0.0036478743, 0.02055657, -0.001601645, -0.005318575, -5.774412e-4, - -0.010782717, -0.019520981, 0.008376829, -0.0058187167, 0.0028340346, - 0.018542906, -0.0039768964, -0.035501316, -0.0031482922, -0.0013726952, - -0.011663177, -0.017120564, 0.010152564, 0.009431698, 0.00786101, - -0.00976197, -0.011638887, -0.007965981, -0.010988213, 0.0026147205, - -0.018815706, -0.036002003, -0.002390573, 3.5892353e-5, 0.01191678, - 0.0012303336, 0.008090058, -0.020248361, -0.0073491833, -0.041255664, - 0.0017763196, -0.019731445, -0.01768192, 0.015043233, 0.009301274, - -0.021244556, -0.009818834, 0.005012962, 0.008255072, -0.0017771483, - -0.0057018874, 0.00982549, -0.026670234, -0.011020628, -0.018188436, - 0.012568587, -0.00837222, 0.0054105213, -0.017882373, 0.0048647798, - 0.007816428, 0.0036814264, -0.013736864, 0.01473455, -0.019478729, - 0.016786853, -0.025812654, 0.015998574, 0.0055213994, 0.00842539, - -0.022375485, -0.02537215, -0.017350335, 0.014167588, -0.0083727855, - 0.010900982, 0.0014827119, 3.714589e-4, -0.012273081, -0.008918615, - -0.02068673, -0.017399084, -0.029449003, 0.010330278, 0.01761839, - -0.007074602, -0.005355762, 0.0061250175, -0.02003282, -0.021039804, - -0.009104403, -0.0027090863, 0.022007486, -0.0018773517, -0.024449643, - -0.0030587153, -0.010661792, 0.017828282, -0.0031691084, -0.014296962, - -0.016943501, 0.022517169, -0.029276218, -9.7375613e-4, 0.020137817, - 3.8826928e-4, -0.006391997, -0.0050195716, 0.0029036496, -0.02805258, - 0.016013712, -0.012048917, -0.008965685, 0.016656863, -0.008363925, - 0.015624495, 0.003631587, -0.002806756, 0.020020878, 0.014733608, - -0.018496575, 0.03449087, -0.0127430465, 0.008085884, -0.01885247, - -0.0018047827, -0.012069938, 0.024238838, -0.0049105943, 0.006488304, - 0.014131502, -0.00771793, 0.021295866, -0.013871563, -0.016842028, - 0.014030678, 0.023430742, -0.005078373, -0.027131768, -0.030567436, - 0.0034394895, -0.0076293005, -0.028904032, 0.011619592, -0.0168566, - 0.019137869, -0.0153065985, -0.0033355257, 0.007647426, 0.017362794, - -5.196824e-4, 0.007970399, -0.009007699, -5.6476163e-4, -0.007998593, - 0.0038479418, -0.026537528, -0.010871585, -0.039100584, -0.003701442, - -0.0019074221, -0.0397953, 0.026429899, 0.006112964, 0.01495131, - 0.014171493, 2.3273939e-4, -0.018185843, -0.0032690237, -0.0045093154, - -0.0037175175, 0.008100484, 0.007121479, -0.0062484806, 0.036832843, - -0.006052856, 0.019965312, -0.0076799556, 0.0034726781, -0.003982592, - -0.022112133, -0.018552566, 5.730734e-4, 0.022463696, -3.4805932e-4, - 0.013303525, 0.01661307, 0.009664203, -0.001557809, 0.014054472, - 0.00808402, 0.0041494635, 0.021154605, 0.0024119613, 0.0041647465, - 0.01114168, -0.024505356, -0.00727982, 0.0045641386, 0.004036757, - 0.0024439243, 0.016343689, 0.005786491, 0.009254601, 0.006064627, - -0.009141725, -0.002032229, -0.01317517, -0.010676345, -0.009951082, - -0.020589834, 0.002731074, 0.012608189, 0.030300004, -0.0043091844, - -0.0035000257, 0.010509079, -0.0073386296, -0.012820103, -0.03549874, - 0.020594174, -0.005195581, -0.0146012455, -0.0016289143, -0.0140320435, - -0.015576018, 0.010825975, 0.010263026, -0.020860245, -0.0030743398, - -0.038448926, 0.019526636, -0.0036763838, -0.018621134, 0.009688204, - 0.00412426, -0.004074884, -0.017848996, 0.008405057, 0.0017371495, - 0.011021262, -0.018786063, 0.014629079, -0.011267188, 0.004236177, - 0.031845935, -0.011438366, 8.8143407e-4, -0.004584896, 5.0424534e-4, - 0.022964614, -0.018150896, -0.010572724, 0.001469263, -0.0015919538, - -0.018623909, -0.01610129, -0.0025428154, -0.005586979, 0.003505285, - 0.024063807, -0.010478842, 0.030794706, -0.015146953, 0.00845745, - -0.0032525992, 0.0033487733, -0.020717185, -6.314209e-5, -0.010497982, - 0.016593559, 0.001778255, 0.011879677, -0.019728407, 4.2875693e-4, - 0.0010697113, 0.0057206796, -0.01743679, 0.028795373, 0.010551819, - -0.0058890553, -0.009210291, -0.009852982, 0.018175058, 0.020193001, - -0.013343739, -0.0038612767, 0.0132354265, -0.030532751, 0.025031772, - -0.020311609, -0.008614672, -0.02907575, 0.00675704, 0.007764578, - 0.021763185, 0.0035365957, -0.02212024, -0.009293779, -0.0136632845, - 0.0038851362, -0.015655784, -0.008018963, 0.031993676, -0.027033549, - -0.010446395, -0.0010567947, 0.0023849804, 0.004587658, -0.001343188, - -0.0036525363, -0.020167757, 0.007967992, 0.0399958, 0.007293795, - 0.019958211, -0.0113149965, 0.021201482, -0.0029556777, 0.024294402, - 0.029842978, 0.008227254, -0.0199793, 0.009665408, -0.0027434416, - 0.025519723, -0.0070770592, -0.015169051, 0.0018345244, -0.0014006576, - -0.0011369943, 0.02000808, -0.016657855, -0.020866182, 0.008318032, - -0.014059086, 0.020062149, 0.0016848879, 0.022271046, 0.020566005, - 0.0053902995, -0.0077515543, -0.01713323, 0.018829688, -0.030582588, - 0.005007307, 0.0013619706, 0.0075747673, 0.011147106, 0.0056362655, - 0.01882265, -0.005898563, 0.015974104, 0.0100122, -0.023674821, - -0.013250056, 0.028977763, -0.025625259, 0.0010143548, -0.014607018, - -0.0022515513, 0.017772865, -0.008362428, -0.0049697408, 0.0064132577, - -0.01446244, -0.015708972, -0.011172285, -0.02589081, 0.027950265, - -0.035894427, 0.021397185, 0.01948742, 0.0043762876, -0.00770415, - -8.0804876e-4, 0.02805627, 8.425303e-4, 0.014356432, -0.0034133678, - -0.02733936, 0.029620303, -0.019250315, 0.017417783, -0.0010418913, - 0.029850421, -0.011797373, 0.010508371, 9.467114e-4, 0.026812369, - -0.019932678, -0.008631411, 0.004055941, 0.00378219, -0.009260508, - -0.020664956, 0.017172158, -0.0018500118, -0.011964152, -0.0043815887, - 0.026820386, 0.00477704, 0.026272815, 0.026379721, -0.0020627042, - 0.016502656, -0.021552194, 0.012908195, -0.02311027, 2.2163083e-4, - 0.05291343, 0.0063363803, -0.012576573, 0.004078463, -0.011418623, - -0.012126335, -0.008772777, 0.013058331, -0.010388754, 0.0021861885, - 0.0063132755, 0.0016582838, 0.0012136993, 0.0028624167, -0.0056981947, - -0.010215095, 0.0012586582, -0.025415525, -0.0023438071, 0.018760702, - 0.030566342, 0.033797022, 0.019036097, -3.069159e-4, -0.02492671, - -0.016975287, -0.015347637, -0.021728376, 0.023136916, 0.028048119, - 0.029640594, -0.0098968, 0.025795212, -0.034238793, -1.5029834e-4, - -6.405456e-4, -0.018870356, 0.0065831128, -0.012029896, -0.0015751685, - 0.02091715, -0.011591926, -0.010144131, 0.024291255, -9.026208e-4, - 0.0069264867, 8.711433e-4, -0.012419322, -0.009334906, -0.025641225, - 4.5002135e-4, 0.02049959, -0.0042828163, 0.024083734, 0.0037724394, - -0.010128227, -0.0072489018, 0.0023449303, -0.03101405, 0.025365442, - -0.009409994, -0.0060498263, 0.005761263, 0.026530359, 0.0125720715, - 3.496985e-4, 0.047680855, 2.695951e-4, -0.016808925, -1.2393741e-4, - 0.009977368, -0.0024894841, 0.003994939, 0.012950624, -0.0018428246, - 0.0046316595, 0.035179146, 0.015283328, -0.017735496, -0.008831648, - 0.0040440466, 0.006596921, -0.002315892, -0.009699209, 0.021556094, - -0.026805844, 0.022684535, 0.027115712, 5.5731955e-4, -0.016716653, - 0.03286586, -0.012892156, -0.01355846, -0.007284182, 0.027765274, - 0.001520811, 8.3220203e-4, 3.7835902e-4, 0.029732307, 0.027846929, - -0.006983737, 0.0046654367, 0.00596052, 0.010583589, -3.626633e-4, - -0.0051582837, 0.016246064, -0.011636047, 6.552058e-4, -0.014651992, - 0.018171202, 0.0076415115, -0.0074046133, -0.0022069642, -0.024027579, - 0.004887507, -0.009004013, 0.031661447, -0.0057783592, -0.02081856, - 0.025403123, -0.021250166, -0.023968145, -4.7530732e-4, -0.021124028, - -0.0073612253, -0.025106616, -0.010531331, -0.0051643094, 0.031385794, - -0.010166792, -0.029727714, 0.016753124, 0.0097825155, -0.0057307226, - 0.015085644, -0.00883488, 0.009646433, 0.02207857, -0.010903026, - 0.012902904, -0.010678549, -0.023186894, -4.2716896e-5, -0.016839787, - -0.013932445, 0.001793731, 0.010070141, 0.020927357, 0.0029216271, - -1.5677312e-4, -0.0053922017, 0.009320293, 0.005551125, 0.0058268555, - 0.010619527, 2.2737698e-4, -0.009230046, 0.0018309102, 0.0059386743, - -0.009034818, 0.008220987, -0.014073802, -0.0013082395, -0.0016309164, - -0.0057916506, -0.0155442385, -0.0082656285, -0.00320379, 0.0013717824, - -3.2746043e-6, -0.011356707, 2.4414208e-4, 0.0034787864, -0.010657859, - 0.0010881056, -0.01489805, -3.403499e-4, -0.0020278862, -0.011430287, - -0.0040606125, 0.013830535, -0.003596656, -0.0031596653, 0.028641893, - 0.01924501, -0.022958321, -0.007507613, 0.021228854, -0.022691403, - -0.0025223745, 0.004989884, -0.0081080245, 9.825025e-4, -0.013526265, - 0.015037873, -0.025953261, 0.009998769, -0.01364704, 0.0034963489, - 0.015565841, 0.012360182, 0.022036163, -0.015927712, -0.010438519, - -0.018826852, 0.0068831774, 0.005986423, 0.009527331, 0.016759913, - -0.0073178937, -0.015711242, 0.0064709247, -0.01725207, 8.8950834e-4, - -0.008092348, 0.018599752, 0.02192687, -0.02423449, -0.007295712, - -0.010834179, -0.021380309, -0.014942654, 0.0059351292, 0.0092121335, - -0.007403573, 0.0071969586, 0.020219693, 0.019324845, -0.006798552, - -0.03514751, -0.00418742, 0.020903794, -0.0034477913, -0.009382837, - -0.020811878, -0.021487704, 0.0143301105, 0.04216331, -0.014351064, - 0.006768985, -0.00831228, 0.0097961165, -0.040225666, -0.006723389, - 0.028397355, -0.030808613, -0.010911708, -0.01507278, 0.007306296, - -0.02927602, 0.0048878524, -0.035509147, 0.015228124, 0.0024471579, - -0.0038947358, -0.002797388, 0.03119779, -0.0034773974, -0.015494833, - -0.03338346, 0.025548631, -0.021614136, 0.014001658, 0.014542473, - 0.012024017, 0.0033909576, 0.023994327, 0.015710192, 0.02436589, - 0.027938997, 0.0077175074, -0.011888686, 0.023162447, -0.0330908, - -0.003974528, -0.0031093592, -0.013487391, 0.0020968646, -0.013602844, - 0.024534866, 0.0022749633, 0.008872322, -0.0046228883, -0.01289057, - -0.007083484, 0.003194548, 0.0068018762, -0.0029977812, 0.019079287, - 0.0012321125, 0.006579244, -0.006497478, -0.005561462, 0.011838102, - -0.044780184, -0.006737986, 0.016508289, 0.018783776, -0.0063395128, - -0.012422617, 0.0111276945, -3.9570947e-5, 0.012811328, -0.025491973, - -0.013021592, 0.00499512, -0.0014161975, -0.0046073087, -0.013525109, - -0.01921995, -0.012751137, 0.023785343, -0.014526766, 0.0028122587, - 1.4583171e-4, -0.012572371, 0.022445839, -0.010778379, 0.007459545, - -0.013183414, 0.011026005, -0.012846678, -0.009453073, 0.029038599, - 0.006827233, -0.0072015957, -0.02513506, -0.010721618, -0.012056171, - -0.010005411, -0.003284076, 0.0014256154, 0.019328296, -7.8473246e-4, - -0.017117294, -0.012105618, 0.009675999, 9.09821e-4, 0.010632607, - -0.015790924, 0.012060997, -0.008470984, 0.015825102, 0.006641649, - -0.016061476, -0.03427322, 0.021460801, -0.03267692, 0.013023752, - -0.009273997, 0.005688512, -0.010907206, -0.01565335, 0.00783049, - 0.021159515, -0.01371665, -0.002334053, -0.021946011, -0.016583828, - 0.0141090825, 0.037076224, -0.013470871, 0.022987563, -0.024541762, - 4.6005043e-6, -0.037295356, -0.004083949, -0.0018058621, -0.022014607, - 0.007340412, 0.030561958, 0.015201177, -0.034954377, 0.016619293, - -0.0040536453, -0.0052089645, -0.023617763, -0.007387673, -0.014118071, - 0.0034176947, -0.013895758, 0.011646928, 0.0063236356, -0.018296516, - -0.01370197, 0.027452452, -0.00913662, -0.012729055, 0.006816375, - 0.001184205, 0.0046872743, 2.408643e-4, -0.01894117, -0.0029880297, - 0.02274892, -0.0070021073, -0.021806693, 0.0039581787, 0.0096170325, - 0.0047969017, -9.337468e-4, -0.0077969423, -0.020956757, -0.014061925, - 0.01024347, 0.016685523, -0.0036124839, 0.024953982, -0.0011102681, - -0.03407202, -0.0016569649, 0.0044025974, 0.010522893, 0.010030374, - -0.019261394, -0.010844158, -0.008180295, 0.03008535, -0.0206777, - 0.0022906284, -0.02006285, -0.018148277, 0.029763198, -0.019697055, - 0.028784966, 0.016534382, -0.031642556, 0.023668194, 0.0118678175, - 0.032502856, -0.00749128, -0.021223985, -0.017345656, -0.0069680163, - 0.0038502086, -0.03529376, 0.019336745, 0.017083246, 0.005195154, - -0.02756403, -0.020745875, -0.006540146, 0.014016588, 0.005074361, - -0.020141473, 0.004166172, -0.03799164, 0.012061271, 0.024704633, - 0.015495626, -0.016496643, 0.013116282, 0.009076917, 0.012551295, - -0.03239398, 0.0041109957, -0.030415362, -0.030729108, 0.011159416, - 0.007516951, 0.00843304, -0.034848966, -0.03935771, 0.0040718745, - -8.486148e-5, 4.950896e-4, 0.01273812, -0.019286258, -0.0036344617, - 0.006449538, 0.01185584, -0.004062461, 9.357233e-4, 8.810856e-4, - -0.01309654, -0.0073872493, 0.004175243, 0.0122107975, -0.021549065, - -0.0071388436, 0.01609441, -0.023274392, 0.0038822351, 0.025051866, - 0.0063260184, 0.008050131, 0.018700859, -0.005469114, 0.023050463, - 0.009194254, -0.01185514, -0.01350509, 0.0028403269, -1.9560492e-4, - 0.007246072, -0.018226584, 0.014276304, 0.023780074, 0.003849634, - -0.011182923, 0.0122414455, -0.0010946606, -0.021123216, -0.017301735, - -0.006163926, 0.016568655, 0.0012245866, 3.1822792e-4, -0.012915821, - 0.0052549276, -0.009418047, -0.010704128, -7.5285416e-4, -0.01948778, - -0.0021190664, 0.02849184, 0.0071515813, -0.0072093485, -0.013609359, - -0.007040728, -0.009343924, -0.040134884, 0.009670832, -0.008675251, - -0.013101659, -0.016835958, 0.007373176, -0.0019035304, 0.0031878352, - -0.01901292, -0.008561013, 0.019399215, 0.005789759, -0.019302947, - 0.04292243, 0.008116735, 0.023420535, 0.015477568, -0.004096261, - -3.4771182e-4, 0.0045247595, -0.010595983, 0.0020373093, -7.640301e-5, - -0.012973555, 0.013072074, 3.7651986e-4, -0.022619266, 0.015682241, - 0.015906297, -0.00947952, -0.03222786, -0.017187657, 0.0061587566, - 0.02016894, -0.002058788, 0.0026022047, 0.0019365198, -0.01671075, - 0.0214171, 0.0033247375, -0.038924895, -0.0015878864, -0.014275947, - -0.0049553583, -0.0050998097, -0.009539965, 0.0026741966, 0.005252815, - 0.018693132, 0.008004337, 0.010042769, -0.013428808, 0.007107742, - -0.003905837, -0.004800756, -0.028396023, 0.033505213, 0.014200933, - 0.0054030987, -0.012392144, -0.014343885, 0.0019662376, 0.022119317, - 0.0021282278, 0.0051312996, -0.031921577, 0.009308978, 0.008151308, - -0.011569498, -0.012235732, -0.0067284848, -0.036071725, 0.00183237, - 0.013023983, -6.473243e-4, -0.005265208, 0.010634626, 0.020029977, - -2.7682688e-4, 0.0013803077, -0.0036520555, 0.010163311, 0.020360181, - -0.007141063, 0.0035893102, -0.020487126, -0.00490235, -0.034387335, - -0.013540172, 0.018700523, 0.014915149, -0.01043181, 0.020227846, - 0.020036988, -0.010331622, 0.009867724, 0.0076310844, 0.0044984343, - -0.010622599, 0.0013376096, 0.0045849164, -0.011290972, 0.019086767, - 0.031559248, -0.027951807, -0.01424054, 0.01609113, -0.017055357, - 0.012909003, 0.0046994733, 0.013308919, -2.5345592e-4, -0.015072494, - -0.02982579, -0.02452871, -0.00801966, -0.021405604, -0.008781444, - 0.014921825, 0.0032615538, -0.012060815, -0.0049444595, -0.0029215687, - -0.018120445, 5.452405e-4, 0.0102983955, -0.011514433, 0.0038920688, - -0.008602629, -0.0024824266, -0.012180837, 0.016401839, -0.0013414131, - 0.0092679225, -0.016103249, 0.0116115995, -0.01578065, 0.007488022, - -0.0038592156, -0.004987124, -0.011617869, -0.0071160523, -0.010934721, - -0.004867408, 0.018455347, 0.0035431746, -0.0015399967, 0.0112873, - 0.03587369, -0.009689881, 0.0036423262, -0.0044826823, 0.0068229823, - 0.003574967, 0.011490165, 0.016249035, 0.01740776, -0.014833958, - 0.012491319, 0.0089679, -0.040701658, -0.009249769, 0.016064338, - 0.010882384, -0.010356209, 0.020306459, -0.006913626, -7.533903e-4, - 0.0035174838, 0.018163668, 0.0036741004, 0.018450392, -0.014080931, - 0.015854103, 0.0038997415, 0.011709485, 0.010499535, -0.005231424, - -0.009310176, 0.008265695, -0.02748991, -0.008613764, -0.018534418, - -0.01410279, -0.0184616, -1.8332437e-4, 0.020088889, 0.032488972, - 0.010388466, 0.0078708185, 0.007682288, -0.012279334, 0.004187413, - -0.010964652, 0.015459128, 0.01944351, -0.03902623, -0.014849343, - -0.016916597, -0.039678406, 0.010929304, 0.010892173, 0.010741619, - -0.014812681, -0.016864352, -0.00624398, 0.03152361, -0.02715004, - 0.010524014, -0.0027799753, -0.019274453, -0.0029754064, -0.002306575, - 2.1414146e-4, 0.025001269, 0.021101894, -0.0121029345, -0.02359506, - -0.0073481607, 0.0096503, 0.020836767, -0.005418199, -0.013821221, - -0.01548809, -0.0033815745, 0.0034291015, 0.005000814, -0.014142817, - -0.018331561, 0.024717243, -0.0025583669, 8.7293144e-4, -0.033419758, - 0.025549388, -0.041813243, -0.038303632, -0.0054423893, -0.02750462, - -0.015401961, -0.015927544, -0.016816903, -0.022962581, 0.009142831, - 0.013386594, 0.013781415, -0.009236264, 0.009003556, 0.012364956, - -0.0018981663, 0.019225692, -0.008809069, -0.019353999, -0.012945355, - -0.001653332, 0.0043672165, -1.5403002e-5, 0.012713635, -0.0044451663, - -0.017793957, 0.008208954, 0.01625166, 0.009278073, -0.014613616, - 0.0040385793, 0.02421051, -0.037766393, -0.022410395, -0.011993759, - -0.0058390377, -0.0032313368, -0.011429534, -0.013640446, -2.5083194e-4, - 0.0119431075, 0.005520615, 0.03683126, -0.012359816, 0.00832188, - -0.0042146733, -0.032325454, -0.0031646, -0.01737394, -0.0016922649, - 0.035980485, 0.029544713, 0.006217877, 0.0069715013, -0.011071831, - -0.02237911, -0.0052230787, 0.010749722, -0.004442882, 0.017100569, - -0.010758132, -0.03485644, 0.02004417, -0.01471061, -0.00893376, - -0.008232686, -0.050337918, 0.015252968, -0.021617178, 0.03782848, - -0.0041236975, -0.023014981, -0.02153015, -0.02625373, 0.019689607, - -0.0023711885, 0.008603015, 0.009783732, 0.01200376, 0.0035393878, - 0.0126791755, 0.0027638413, -0.007852366, 0.021213833, -0.005115499, - -0.020025263, 0.022340031, 0.023340853, -0.005127456, -0.044397727, - 0.0081882235, 0.00981107, 0.013215777, 0.0027693212, -0.003783032, - -0.0041176416, 0.025723394, 0.009303179, 0.009716892, 0.019991677, - 0.025895426, 0.013792165, 0.0054556257, -0.0019033172, 0.0044862228, - -0.0015441614, -0.0066443384, 0.027635934, -0.0018292756, -0.0067892647, - -0.008123719, 0.01523143, -0.011802947, 0.01462663, -0.032911476, - -0.021655733, 0.0063875476, -0.0036527333, 0.017765766, 0.006037397, - -0.018882088, 0.0025603138, 0.0086557465, 0.0034197222, -0.007873065, - 0.008795818, -0.008116331, -0.0028155907, -0.0038666814, -0.010153426, - -0.010230311, -0.008199557, 0.0061000567, 0.017521251, 0.0132274525, - -0.0041606063, 0.044384845, 0.012803192, 0.013949282, -0.005382349, - -5.987277e-4, -0.012903768, -0.00838246, 0.02156121, -0.0123405, - 0.032952942, 0.011185158, 0.007584948, -0.0068427175, 0.008650597, - -0.015041156, 0.004094148, 0.0034867115, -0.010165864, -0.013903435, - -0.045489788, 0.0052246093, 0.020259943, 0.003957277, -0.006609838, - -0.01367163, 0.024796713, -0.003898652, 0.015745474, -0.012589544, - -0.0042256746, -0.008915392, -0.01666904, -0.011222506, -0.001652591, - -0.009994768, -0.0024613186, -0.0049339994, 0.028323442, 0.013152891, - -0.00310844, -0.012359627, 0.030960781, -0.017052116, -0.003168629, - 0.010610055, -0.020523205, 0.023058528, 0.010608099, 0.007436544, - 0.0030765047, -0.013260955, 0.01714151, -0.01307263, 0.010007535, - 0.00308665, 0.010815342, 0.0026806812, -0.005806372, 0.0012734457, - 0.0012393825, 0.020562734, -0.02103366, -5.7818595e-4, -0.018579748, - -0.025544267, -0.008623979, 0.008209116, 0.028122278, -0.02719489, - 1.932687e-4, 0.030000255, -0.002321542, -0.008992764, -3.124022e-5, - -0.0059728725, -0.0019419009, -0.0088077355, -0.0079679815, 0.006936091, - 0.0031063578, 0.018405985, 0.026138356, -0.0077270605, -5.8766134e-5, - 0.01412286, -0.0062601324, -8.5794576e-4, -0.014464242, -0.031542495, - 0.0071235965, -0.00426061, -0.019158872, 0.023067003, -0.0035597968, - 0.029553423, -0.012548334, -0.005477665, -0.0034058376, 0.01976872, - 0.016200216, 0.0030194856, -0.01029206, -0.0043171593, 7.0305064e-4, - 0.022356607, -0.0068483297, -0.002359893, 0.007928728, -0.0027129066, - -0.008535616, -0.03115926, 0.0063597425, -0.0037438506, 0.019960463, - 0.00878225, 0.0122203855, -0.017140009, -0.021954177, 0.005057495, - 0.003608158, 0.0108097885, 0.009807072, 0.014722873, 0.013815129, - 0.025638903, -0.006536335, -0.013915447, 0.029963773, -0.014058065, - -0.0081349965, -0.0064796815, 0.0470102, -0.021653194, -0.015791979, - -0.026016233, -0.008506008, -0.009660661, -0.0139151905, 0.011692337, - -0.008981979, 0.01122851, -0.0023835825, -0.028776992, 0.009328129, - 0.004891553, 0.02349992, -0.01786304, 0.0010725918, -0.018078456, - -0.005186628, 0.0020837192, -0.003620335, -0.018321346, 0.008110471, - -0.002153966, 0.022590864, -0.0125913415, -0.01504222, 0.003517271, - 0.0105023505, 0.0054785516, -0.015589057, 0.010088419, 0.00572912, - -0.019452756, 0.02400008, 0.0027978963, 0.018186197, -0.0087617105, - 0.025734812, 0.02645592, -0.031942796, 0.0085631665, -0.0029307422, - 0.014572759, -0.009604383, 0.036257576, 0.007443803, -0.021756243, - -0.012525243, -0.031174429, -0.0049948525, 0.016362479, -0.021154761, - -0.00895392, 0.013711083, -4.903989e-4, -0.01464386, -0.007984667, - -0.019084198, 0.0017122157, 0.0032582625 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.0048045483, -0.01684546, -0.016802391, 0.0097095035, -0.021602992, - 0.029016133, -0.0434683, -0.009936919, -0.0013320543, -0.0033496318, - -0.009837691, -0.0037715684, 0.014646771, 0.014239401, -0.0016779401, - 0.025514029, 0.0027519956, -0.0028554336, 5.874189e-4, -0.004683811, - -0.020818371, 0.010817906, 0.006628669, 0.021421941, -9.569352e-4, - 0.0113374265, 0.027807742, 5.759141e-4, -0.0026624808, -0.0043132245, - -0.01708901, 0.0085869245, -0.013716183, 0.020531055, 0.0068186824, - -0.0033758602, -0.011347136, 0.006232789, 0.0044809184, -0.0042692446, - -0.0028541288, 0.02461085, 0.029548079, -0.012147364, -0.009264637, - -0.0306243, 0.008016299, -0.012478173, 0.0062270304, -0.017734699, - 0.01662201, 0.029095462, 0.029292466, -0.029105337, 0.027452214, - -0.0024681992, -0.011601576, 0.031579528, 0.006248458, -0.018354552, - 0.017441161, -0.0011476353, -0.029858645, 0.008599698, 0.010982528, - 0.0050324905, -0.02653401, 0.032034643, -0.033216067, -0.006877581, - 0.018137861, 0.015761737, -0.025611274, 0.006727957, -0.0427943, - 0.0042894883, -0.009381135, -0.0057130465, 0.010087128, 0.0029641548, - 0.010773759, -0.015361415, 0.0070729787, -0.0185538, 0.010160126, - -0.025636112, 0.022122815, 0.0026497345, 0.002878975, 0.009668781, - 0.013198074, 0.0075467983, 0.0037349272, 0.0055057723, 0.024250515, - 0.01583745, -6.878971e-4, 0.0024019238, -0.006354794, -0.015617028, - 0.0074799354, -8.2230876e-4, 0.0029660303, -0.02081549, -0.00737118, - -2.464565e-4, 0.0014463294, -0.021955391, -0.0070316265, 0.0041787336, - -0.0022720946, 0.017451309, -0.023824029, -0.028859254, -0.013977132, - -0.011503431, -1.756046e-4, -0.021454914, 0.014586569, 0.0013103657, - 0.020953652, -0.019313967, -0.0064949454, -0.017680857, 0.026598556, - -0.014925309, 0.023129376, 2.2836748e-4, -0.0047978647, -6.889951e-4, - -0.012557694, 0.02038584, -0.002759666, -0.019132234, -0.0025887017, - -0.0021340046, -0.030190537, -0.0054495796, -0.010598666, -0.009726548, - -0.010417928, -0.0076086977, 0.010108469, -0.021966059, 0.0054065394, - -0.015622231, -0.017825479, -0.024284162, 0.01050321, -0.020670738, - 0.0023893071, 0.006620002, 0.022664795, 0.009586989, -0.009143188, - 0.011965472, -0.008949677, 0.024333078, -5.5695255e-4, -0.020987798, - -0.025300166, -0.0059094965, -0.006496642, 0.0029698298, 0.011581641, - -0.0022327066, -0.016093481, -0.004053721, 0.005218449, 0.0068800147, - 0.010030361, 0.004827161, -0.019228058, 0.017167278, 0.021691477, - 0.0317797, -0.006599028, 0.005525056, 0.011816472, -0.002763949, - -0.011669679, -0.0047389353, 0.019354861, 3.0795648e-4, 0.017948996, - 0.022409316, 0.011060293, -0.014685714, 0.0063259304, 0.025433073, - 0.018302761, 0.024643667, -0.016742755, -0.0054663424, -0.0032924241, - 0.025188578, 0.003824699, 0.002374792, -0.005745376, 0.01419975, - 0.015632821, -0.013599203, -4.7656003e-4, -0.009282316, -0.0037364129, - 0.009009852, -0.02157802, 0.0024293386, -0.016250415, -0.017371504, - -0.014138582, 0.011710073, 0.0070362366, 0.023418695, 0.0010054653, - 0.011913501, 0.013552809, 0.001636762, 0.009027608, -0.0035746356, - 0.0048293727, -0.009106888, -0.00858637, -0.0021307047, 0.03341154, - 0.01587369, -0.02113124, -0.004713338, -0.0063519017, 0.022881135, - 0.021066224, 0.006075138, -0.03783812, -0.012897583, 0.025332505, - -0.0020713003, -0.0059269913, 0.028320808, 0.013040483, 0.00700183, - -0.007880018, -0.026150458, -0.026484605, 0.0039258515, 0.0013510743, - 0.006667893, 0.008779311, 0.020530727, -0.0013528995, -8.121634e-4, - 0.025708338, 0.01697948, 0.0121827945, -0.020142121, -0.017448043, - -0.009397211, -0.012629334, 0.010959012, 0.0014488607, -0.00675608, - -0.00612125, 0.006836748, -0.009480768, 0.0016288209, 0.015141629, - 0.024258157, 0.0067558857, 0.026311964, -0.024485555, -0.006974491, - 9.238189e-5, 0.0064643025, 0.027338175, -0.010061339, 0.026299017, - -0.01291775, -0.016733468, -0.02124624, 0.010981846, -0.018131996, - -0.0015229473, 0.009331257, -0.002198738, 0.02413457, 0.007056105, - 0.02195798, 0.015928732, 0.011039588, 0.0142879505, 0.00678766, - 0.02742898, 0.0024604786, -0.0075697247, -0.01712007, 0.008671052, - 0.010744129, -0.017622113, 0.0025859927, -0.015154373, -1.2773597e-4, - -0.0025856725, 0.012503232, 0.0028177665, -0.0065575857, 0.0029742853, - 0.01647517, 0.008492089, 0.013079642, -0.02095732, 0.016596725, - 0.0068068667, -0.013447021, 0.0056803254, 0.0079806615, -0.020822583, - -0.0016245103, 0.008379852, 0.019823842, 0.03045339, 0.004238998, - 3.6463773e-4, 0.03868151, -2.4713104e-4, -0.002836099, -0.013287857, - -0.0079731215, 0.0047645094, 0.0037157796, -0.0035681473, 0.01710629, - -0.017806996, 0.0049996898, -0.010620276, -0.026924424, 2.021262e-4, - -0.005999009, -0.0141031025, 0.01904496, -0.010484831, 0.01148136, - 0.0106528625, -0.010824921, -0.011394321, 0.013843714, -0.014199298, - 0.010840616, -0.012904814, -0.0042699208, 9.5845415e-4, -0.017053524, - 0.01369332, 0.009789014, -0.0029696699, -0.026722573, -0.0021054212, - 0.012963378, 0.0030359374, -0.019793509, 0.013321647, -0.008406136, - -0.027124748, 0.027646678, 0.0096862875, -0.0044888593, 0.0087601105, - 0.008229397, -0.027578732, 0.0069932207, 0.008994173, -0.008231677, - -0.0212351, 7.9968094e-4, 0.006150933, -0.0064479494, -0.009751431, - 0.0035352693, 0.028234093, -0.021793136, -0.02662354, -0.0056862617, - 0.018203741, -0.007420306, -0.024150772, 0.010154491, 0.0046662646, - -0.011863297, 0.013911842, 0.0067639314, -0.00503752, -0.0017357889, - -0.021333722, 0.019712461, -0.011900825, -0.027921729, 0.0023238147, - -0.013249993, -0.016107574, -0.018752089, 0.010712444, -0.0066444012, - -0.026063977, -0.029571932, 0.0062369425, -0.013924888, -0.010449728, - -0.02197441, -0.005827429, 0.0011974679, -0.005752155, 0.0034488079, - -0.03583473, 0.006778872, -0.020599503, -0.014807425, -0.011573528, - -0.023166345, 0.0045101857, 0.015723517, -0.001090821, -0.047307327, - -0.014971351, 0.007594186, 0.011495686, -0.0026566756, -0.01444675, - -0.009340195, 0.012700041, 0.016777586, 0.0049757627, -0.014317003, - -0.015380005, 0.0039171106, 0.022951938, -0.02470179, 0.006673119, - 0.009021784, -0.01780626, 0.029670091, 0.030885577, 0.020366235, - -0.013090117, 0.01327804, 0.024165852, -0.019973911, 0.034732107, - 0.016235758, -0.030772235, -0.011805319, 0.031233773, -0.0049377736, - 0.007594752, -0.013824895, 0.013876928, 0.023428537, -0.003652489, - 0.0025861317, 0.012610548, 0.032129683, 0.0035091105, -0.005531333, - 0.011554388, -0.008295552, 0.00645256, -0.0019556554, -0.009938437, - 0.0018755418, -3.245268e-4, 0.004376967, -0.011079188, 8.1737206e-4, - 0.00927654, -0.012243051, 0.021131277, 0.0048404415, -0.015867997, - -0.016248105, 4.1035574e-4, 0.007616188, -0.015343387, -0.013533974, - 0.019206274, 0.032379784, 0.009960089, -2.4852663e-4, 0.010756882, - 7.727184e-4, 0.009402762, -0.025746845, 0.014861625, -0.009973046, - 0.019837435, -0.023910193, 0.0072614397, -9.394186e-4, 0.0016821959, - 0.016654199, 0.014186757, -0.013268393, 0.013116125, 0.0020618297, - -0.031125104, -0.017836608, 0.009939229, 0.010553332, -0.0052625765, - 0.0022870193, 0.017266437, -0.017514843, 0.017240921, 0.008462678, - 0.029816637, 0.005836441, -0.0044253916, 0.002764388, -0.024563882, - 7.965658e-4, 0.013505418, -0.003384617, -0.0106297275, -0.028346881, - -0.011265598, 0.01534862, 0.00291493, 0.013307453, 0.038634114, - 0.0065772594, -0.013131503, -0.03812698, -0.024925387, -0.0114521235, - -0.015429139, 0.018448684, -0.002151431, -0.008551937, -0.009898039, - 0.024349937, 0.021706255, -0.009683314, 8.442841e-4, -0.02269641, - 0.011135419, 0.0065450794, -1.2784613e-4, -0.010794866, 0.010333107, - -0.0130438795, 0.0029350894, -0.0052559585, 0.021350043, -0.003969435, - -0.008211015, -0.019918205, -0.009967744, -0.0041328003, 0.011524477, - 0.020667866, 0.030245444, 0.018766236, 0.005581243, 0.011198796, - 0.0025939706, -0.031546175, -0.013099447, 0.007182209, -0.003123463, - -0.0018748733, -0.0030091847, -0.021509502, 0.012709642, -0.006316376, - 0.0016987968, 0.019689506, -0.0018801821, 0.022209046, 0.0076898504, - -6.2911137e-4, -0.006599291, 0.010341805, -0.0014883913, 0.026308358, - 0.011611905, 0.01942247, -0.0039306083, 0.01459399, 0.008547072, - -0.0022934778, 0.011681254, 0.0179294, 0.009797174, 0.009440289, - 0.015692929, -0.0121467635, -0.02133164, 0.0034054113, -0.014911258, - -0.026146406, -0.0030620894, 0.00345989, 0.018641558, -0.0035313165, - -0.008915308, 0.011205378, -0.018377962, -0.029209986, -0.0070769265, - -0.030740146, 0.028886922, -0.009205774, -0.016526401, 0.025232565, - 0.0031034094, 0.0025555568, 0.031463794, 0.013329813, -0.035598293, - 0.013239594, -0.004065134, 0.029917976, -0.010288282, 0.0067904633, - 0.012032841, 0.04105895, 0.018415628, 0.0018147727, 0.0014405112, - -0.0057237633, -0.0163108, 0.028543208, 0.0068827723, 0.010840177, - -0.030031959, -0.011982908, -0.0059961625, 0.018225526, -0.009638026, - -0.01548989, -0.01742085, -0.010258897, -0.02731482, 0.034216683, - -0.0047292258, -3.207255e-4, -0.021057682, 0.018448172, -0.007975533, - -0.0012597608, 0.008487612, -0.0021135479, 0.011992461, -0.008794845, - -0.007307398, -0.005793257, 0.0016806752, -0.015367672, -0.031802822, - 0.0051969043, -0.0066288398, -0.010475082, -0.022064868, -0.017692544, - -0.0036887757, 0.009988634, -0.014759036, 0.00799382, 0.015356298, - 0.019819092, -0.019056333, 6.559684e-4, 0.008744625, -0.016377594, - -0.0042874804, 0.0044743977, 0.0018094429, -0.008355295, -0.015646935, - 0.015274995, -0.0058666705, 0.004401338, -0.02235876, 0.0017943841, - 0.0059324256, -0.011307375, 0.0031623556, 0.0079993205, 0.020817561, - 0.023192, 0.010131966, 0.0019902524, 0.0051895413, -0.0024612444, - 0.013787586, 0.021350674, -0.021418106, -0.015121538, 0.007580727, - -0.011649379, -0.009258288, 0.0058581424, 0.019162517, 0.008600756, - 0.018697219, -5.6596793e-4, -0.008288141, -0.0092557175, 0.008685345, - -6.038648e-4, -0.017875036, 0.01415915, -0.018322386, 0.005795363, - 0.025131362, -0.0063478784, 0.0041495473, 0.013056795, 0.009105768, - 0.0022036317, -0.018520143, 0.003013205, 0.017990274, -0.0124519365, - 0.011085818, 0.0058264253, 0.0034524072, 0.004261261, -0.043132946, - 0.011793632, -0.026064089, 0.0019286368, -0.0037129235, 0.003242643, - 0.004252265, -0.01623056, -0.02292702, -0.015342517, -0.03009242, - -0.0095663415, 0.002473207, -0.0046067853, 0.010807356, 0.0027700418, - 0.010355731, 0.01032276, -0.014308535, 0.016343307, -0.011770174, - 0.010567205, -0.0056808274, -0.0017026241, -0.010645023, -0.038351357, - -0.008100501, 0.004533672, 0.03376789, 0.025394099, 0.006096379, - -0.009847716, -0.013259836, -0.0060824286, 0.023770465, 0.013692263, - 0.031239035, -0.019340366, -0.0027358676, 2.3567454e-4, -0.00853763, - -6.3244003e-4, 0.007652609, 0.024025802, -0.013293796, -0.011359416, - 0.014152629, 0.0060480125, 0.0036449581, 0.015148001, 0.012552826, - -0.015434744, -0.02051683, -0.010332234, 0.010373633, -0.008737254, - 0.0017540255, -0.0053205104, 0.007460205, -0.023116047, -0.015425937, - 0.0065524294, -0.02983178, -0.01252008, -0.0044452935, 0.0062303324, - -0.0043121674, 0.001420603, 0.045025486, 0.014419299, 0.020420305, - 0.0029486734, -0.03295549, 0.01323491, -0.012075752, -0.024936624, - -0.006582712, 0.005898151, -0.019336754, 0.0049725417, -0.0090096, - -0.0022071758, 0.02862684, -0.006710066, 0.002903028, -0.025200576, - -0.009637868, -0.0017011262, -0.022140566, -0.0058881883, 0.0010143162, - 0.0034719198, 0.0068091834, 0.0037037313, 0.009544662, 0.0072184713, - -0.015778286, 0.04399748, 0.0018790939, 0.003888587, 0.0054214415, - -0.007421637, -7.047124e-4, -0.0055731996, 0.01014556, -0.004238897, - -0.020008178, 0.02946962, 0.0067076273, 0.009937607, -0.0069504553, - -0.008522548, 0.017108863, 0.0011003845, 0.028596696, 0.008640517, - 0.037333354, 0.0020252757, 0.011277429, -0.02533399, -0.024260877, - -0.012403082, -0.007565155, 0.022641582, -0.015393945, -0.011337366, - -0.033308934, 0.00878247, 0.011487866, 0.025132196, -0.0306001, - 0.008407953, 0.007824992, 0.020907555, 0.007317543, 0.009709888, - 0.018366283, 0.01558105, -0.0034651682, 0.0051460965, 0.0015090078, - 0.0065323063, -0.022923145, 0.0062969546, 0.0023536552, -0.016062235, - 2.688305e-4, 0.010589132, -0.0014645864, 0.0055885925, -0.01775114, - 0.011217419, -0.025056468, -0.0012721291, 0.01735222, 0.0012718015, - -0.0044647073, 0.009525109, 0.016296454, 0.028052405, 0.0018389866, - -0.0074820165, -0.007698979, 0.005179448, -0.0017790928, -0.00948721, - 0.013425899, -0.0017568937, 0.001477822, -0.029541153, -0.0016848035, - -0.02002528, 0.033579163, -3.095003e-4, -0.0019243408, 0.00224197, - 8.189987e-4, -0.0024144505, -0.0045577423, -0.002728707, -0.009911609, - 0.010321952, 0.013978853, -0.018106937, 0.016733263, -6.8939134e-4, - -0.0057637314, -6.584722e-4, 0.010760807, 0.019871855, 0.014678287, - -0.015611492, 0.0014791639, 0.011265838, 0.009372391, -0.0025478303, - -4.155026e-4, 0.005291909, -0.01246282, 0.0015000344, 0.007430399, - -3.6072827e-4, 1.4797413e-4, 0.015367236, -0.0190788, -0.01722673, - -0.01942917, -0.02898265, -0.026925499, 0.022315945, -0.0017038132, - 0.006348979, -0.010551785, 0.003795683, -0.009411986, 0.0032832199, - -0.02015743, -0.016591035, -0.0014808677, -0.015116514, -0.01666492, - -0.013502586, -0.0073752375, 6.270452e-4, 0.0017807718, -0.006287, - -0.006230263, -2.4065658e-4, 0.014765631, -0.0011560688, -0.018210942, - 0.001075719, 0.019711575, -0.024368148, 0.033502523, -0.023768304, - 0.0068461583, 0.018134933, -0.006250543, 0.0037277, -0.02007416, - 2.1300871e-4, -0.0013657548, -0.010109567, 0.017076194, 0.0072868927, - 0.009353344, 0.006031565, 0.007881599, 0.0037070836, -0.016853528, - 0.009402762, -0.0144354785, 0.020647895, 0.008677576, 0.006951835, - 0.033225525, 0.012205521, 0.020420784, 0.0054012085, 0.0027788933, - 0.0133803785, -0.001763961, 0.01772544, -5.7122414e-4, -0.013585948, - 0.008609573, -0.009412405, -0.046520684, 0.0021704473, -0.018495584, - -0.007185994, 6.7176716e-4, -0.006993651, 0.0022786686, 0.014823078, - -0.009671179, -0.0018281013, 0.022535622, -0.013893976, 0.016499355, - 0.01777104, -0.008324824, -1.3965872e-4, 0.0110212825, 0.014399452, - 0.007516727, 0.0056119724, -4.5696786e-4, 0.022139896, -0.0038468677, - 0.019539148, 0.020374773, -0.01856764, -0.0016108358, 0.0038331149, - 0.013697652, -0.030012498, -0.010300807, -0.019938417, -0.0145753445, - -0.018019402, 0.017301355, -0.02206016, 0.001619826, -1.83939e-4, - -0.02208512, 0.0052797287, 0.01776625, 0.017049005, -0.023101259, - 0.01438504, -0.008274085, 0.016415114, 0.0038851765, 0.014130725, - 0.03935335, 0.016883202, -0.031569608, -0.0066611595, -0.007999225, - -0.013364577, 0.027359629, 0.02958644, 0.025507404, -0.026431609, - 2.7631593e-4, -0.006942949, -0.009670779, 0.0016603925, 0.0013454597, - 0.017221868, -0.024932405, 0.02499777, 0.016364267, 0.010942274, - -0.0071656224, -0.007013108, -1.4607602e-4, 0.005702063, -0.025107233, - -0.039040662, 0.016663555, -0.02814675, 0.0027580822, 0.0013796453, - 0.011195634, 5.0664117e-4, 0.00651646, 0.031490356, 0.0071484535, - 0.0065992414, -0.007367721, -0.015096299, -0.011234366, -0.0011959071, - 0.011688978, 0.017154377, -0.009830658, -0.031728555, -0.019063354, - -0.016968084, 0.004116262, 0.0019769329, 0.025476381, -0.006137191, - 3.6661664e-4, -2.4841205e-4, -8.5054094e-4, 2.312049e-4, -0.004145806, - -0.004473441, 0.024474451, -0.003872389, -0.027071508, -0.0031760605, - -0.0021352135, 0.01473732, 0.01998017, 0.014921642, 0.0053209323, - 0.03469947, 0.022766, 0.009705196, -0.013414513, -0.015085184, - -0.006341416, 0.0018930386, -0.010897825, 0.020962289, 0.0018266699, - 0.016666211, 0.009525231, 0.005187599, -0.009362388, -0.0019648413, - 0.016756745, -0.0043229507, -0.01879928, -0.022379044, 0.027590124, - -0.0023866745, 0.0035176594, -0.02062016, -0.00413845, 0.008185749, - -0.023373295, 0.007152061, -0.018315045, 0.0055856444, 0.025434062, - -0.011506882, -0.009169778, 0.023859648, -0.0111994, -0.026030414, - 0.016140299, 0.010815691, -0.016155446, -0.022951595, 0.021564743, - 0.004310988, 0.050148513, -0.004633589, 0.014024436, -0.010316998, - 0.007142788, -0.005154402, 0.0044617113, -0.0054584956, -0.013409825, - 0.017049307, 0.016065782, 0.0013694625, -0.012396033, -0.007948001, - 0.0054630316, -0.006788085, -0.007742761, -0.035376307, 0.021749383, - -0.0042856564, 0.010453584, -0.0051837265, 0.0077081053, -0.0028170634, - -0.010844064, 0.0057252687, -0.015860314, -0.0031414195, -0.01759539, - 0.004725209, -0.009017725, 0.009003231, -0.027280936, 0.0018873976, - -3.3430598e-4, 0.005145894, -0.0011895581, 0.027974231, -0.010345161, - -0.006204078, 0.036224086, 0.011133475, -0.011185426, -0.015244968, - -0.019069633, 0.0063904445, 0.0030895607, 0.0050381096, 0.017363504, - -0.016676014, 0.017429747, -0.0117142545, 0.010519121, 0.011325413, - 0.004060753, -0.0076173507, 7.8151893e-4, 0.0016464031, 0.004422236, - 0.0016156087, -0.0062051285, -0.006865162, 0.007489081, -0.024694152, - 0.04505608, -0.016759472, -0.029455522, 0.024820764, 0.0034165387, - -0.01982716, 0.009391884, -0.020503473, 0.021922061, -0.02755312, - -0.009934807, -0.0095108645, 0.011736752, -0.0058761127, 8.1176084e-4, - -4.510859e-4, -0.0052463566, 0.0057442957, 0.018055359, -0.01871585, - -2.5811553e-4, -0.009841003, 0.02055992, -4.0305092e-4, -9.293452e-4, - 0.0063957516, 0.01242382, -0.03291572, -7.181463e-4, -0.0010066925, - 0.0030645947, 0.00966298, 0.0052460707, -0.0035517043, 0.01924203, - 0.013284846, -0.02926534, -0.025040776, 0.04182706, 0.010133753, - -0.00427884, 0.017031291, -0.019896062, 0.021271506, -0.020060081, - -8.611772e-4, -0.010106549, 0.012294362, 0.002905575, 0.00488952, - -0.01015137, 0.008928546, -0.017622968, -0.013222475, 5.785697e-4, - -0.01493444, -0.0027417443, -0.0022689472, -0.012419234, -1.7636568e-5, - 0.002362897, -0.010627047, -0.014175297, -0.013961542, -0.004132643, - -0.0063522295, 0.0035843938, -0.03123099, -0.007969617, 0.006185533, - -0.012403712, 0.008716447, -0.0014365703, 0.014717465, 0.030269207, - 0.016248211, -0.0019027806, 0.006166862, -0.025232125, -0.010676589, - 0.0021569452, 0.020126145, -0.017233482, -0.0129272975, 0.007936459, - -9.501302e-4, -0.013495578, -0.010162193, 0.013935221, -0.003390079, - -0.007289295, 0.010521819, 0.009403303, -0.025023537, 0.0030519192, - 0.010472289, 0.012806378, -0.024437867, 0.02113326, 0.0042533353, - 0.0015009394, 0.008955309, -0.023642141, -0.026540313, -0.0013655721, - 0.0066202036, 0.007050061, -0.0048817545, 0.009251569, 0.0019605872, - -0.005017021, -0.008617865, 0.008915825, 0.010929448, -0.016659206, - -0.022082895, 0.009722318, -0.004480847, 0.022221722, 0.006999728, - 0.029913409, -0.028810648, -0.025842331, 0.0011438011, -0.0046618483, - -0.00791678, -0.026310632, 0.013716006, 0.012462138, -0.030599007, - 0.00627469, -0.006631822, -0.0038943149, 0.004307461, 0.003783428, - 0.034912508, 0.0022378268, 0.022644034, 0.0055567594, 0.0028481826, - 0.002083494, 0.006756002, 0.0066615813, -0.0044792015, 0.033042837, - -0.024244621, 0.014875774, 0.03322587, 0.02321922, 0.02662527, - 0.010092639, 0.003360479, 0.022259492, 0.005825035, -0.014252453, - -1.3336202e-4, -0.0066861105, 0.0027538557, -0.008056516, 0.03730215, - -0.0042749937, 0.01952439, -0.002895632, 0.0010935025, -0.010925666, - 0.03129248, -0.0117816385, -0.0020057808, 0.01645152, 0.008093693, - -0.0022675856, -0.0014024215, -0.008107348, 0.0021631336, -0.023025725, - -0.030395212, 0.0101419175, 0.024751483, 0.0010107914, 0.008782041, - 0.014528179, 0.010818292, 0.01874876, -0.013057921, 0.0075906357, - 0.016117401, 0.0083172, -0.016317295, 0.0040732916, -0.041847024, - -0.034896024, -0.008269049, 0.0010763488, -0.023299413, -0.0058783, - 0.021246279, 0.003143606, -0.016071506, -0.029292084, -0.021127537, - -0.00911424, 0.001040877, 0.01891814, -0.005184633, -0.0013683804, - 0.008710525, -0.0044357353, 0.0129957665, -0.008385562, -0.02514809, - 0.040979914, -0.015645634, 0.010012949, -7.1705744e-4, 0.02199435, - 0.015028791, 0.0012571777, -9.711817e-4, 0.016329594, 0.011812237, - -0.020425951, 0.008529321, -0.0015612307, -0.018103248, -0.012422292, - 0.0070099058, -0.0014561444, 0.001420512, -0.008261095, -0.02325552, - 0.01822133, 0.00310867, 0.012203789, -0.021386383, -2.279205e-5, - 0.007161426, 0.009288744, -0.008562765, 0.0032519726, -0.010658696, - 0.015260752, -0.015952801, -0.007596201, -0.006048608, -0.01621631, - -0.010229538, -0.006138895, -0.002525142, -4.5988112e-4, 0.011604015, - 0.007336839, -0.0073265648, 0.0011293819, 0.031030454, -0.0031158521, - -0.013694182, 0.005059765, -0.018764727, 0.038065087, 0.012640226, - -0.006755022, -0.0013919672, 0.018171594, -0.00596316, -0.06717868, - -0.010482666, 0.01444008, 0.013699347, 0.017899249, -0.012304249, - -0.022707192, -0.0051643695, -0.018244687, -0.009602177, -0.0016726106, - 0.014808806, -0.01224429, -0.013587877, 0.0020628003, -0.027418546, - 0.022643253, 0.026210474, -0.046005465, 0.0010443579, 0.012318949, - 0.0048734494, -0.0017471019, 0.00643508, 0.007931224, -4.9640535e-4, - -0.008208531, -0.02401309, 0.019315863, -0.029455172, 0.0064756516, - 0.0110031385, -0.0018202161, 0.016619064, -0.0025030565, 0.040457346, - 0.0029095775, 0.0011166044, 0.0026677973, -0.003616869, -0.01763492, - -0.024596794, 0.0045778933, 0.013436272, 0.006067315, -0.019698633, - -0.0066345097, 0.010136718, 0.015159191, -0.0016689021, -0.003191152, - 0.015844688, -0.0031621826, 0.01612721, 0.009000866, 0.005676486, - -0.026193568, -4.53528e-5, -0.030731762, -0.014875649, 0.022978125, - 0.0050473902, 0.0026563338, 0.003968581, -0.016936494, -0.011339886, - 0.00415019, 0.020316038, -0.018076362, 0.0021763693, -0.016127644, - -0.0023611058, 0.008827734, -7.293357e-4, -0.015545765, -0.011190342, - -0.008149435, -0.04728877, 0.019556263, 0.01979809, -0.0022649136, - 0.013125703, 0.01883717, -0.0087281745, -0.0065130456, 0.022940379, - 0.014599229, -0.014245773, 0.012166332, 0.029075237, -0.0022874353, - -0.012497649, 0.00316067, 0.0057926727, 0.027532518, 0.0031976788, - 0.002066604, 0.015621091, -0.011496158, 0.012377498, 0.009749524, - -0.022959113, -0.009418691, 0.00409936, 0.0055046766, 0.0073679453, - -0.009981382, 0.02158467, 0.0029976848, -0.008227909, -0.013338432, - -0.031303193, 0.013958918, 0.029279567, 0.003067573, -0.010089529, - -0.006344196, 0.024058541, 0.0060129855, -0.019193068, 0.020228354, - 0.02835677, 0.01649926, -0.008237109, -0.011532579, -0.014260434, - 0.0048246803, -0.0017789816, -0.016674293, 0.0056498297, -0.0056599765, - 0.014943475, -0.0038898306, 0.010792598, 4.8536627e-4, 0.014659749, - -0.0019252576, 0.0041735675, -0.020263141, 0.0293788, -0.0049474644, - 0.010264563, 0.012397246, 0.0057821926, 0.01566398, 4.7365951e-4, - -0.025797902, -0.002626062, -0.03083006, -0.036643956, -0.010700481, - 0.0053645447, 0.021739366, 0.016445283, 0.01787529, 1.605505e-4, - 0.015188118, 0.0230088, -0.0026510255, -0.0022317625, 0.029127236, - 2.2622537e-4, -0.0032817188, 0.012533923, 0.023325125, 0.021547608, - 0.00542573, 0.022467542, -0.0015269018, 0.0074008843, -0.006559612, - -0.009227634, 0.014978798, 0.009481369, 0.016435713, 0.0060002278, - 0.009948613, -0.0035096467, -0.027861247, -0.0062761423, 0.02216757, - 0.017924834, -4.94594e-4, 0.007888863, -0.0080870325, -0.0122687705, - -0.029528394, 0.027734457, 0.0037659793, -0.012545216, -0.0071506207, - -0.044629715, -0.004719037, -0.012038475, -0.015711786, -0.018621538, - 0.019040095, -0.034097716, 0.0067919143, -0.016901702, 0.0044519673, - -0.011460195, 3.58262e-4, 0.010165628, -0.032019213, 8.249961e-4, - -0.011949509, -0.008112504, -0.012170854, 0.00975862, -0.017132472, - 0.018228186, 0.0053083524, 0.003098675, 0.0056071337, -0.0028663243, - 0.0035830901, -0.008943633, 2.4430247e-4, -0.014499497, 0.0053284336, - 0.024420787, -0.012854996, 0.009736603, -0.015224089, -0.01106933, - 0.013574791, 0.009108325, 0.006079987, -8.6422195e-4, -0.0066796076, - -0.014559308, -0.0058261957, 0.021676805, 0.007058703, -0.015365947, - -0.009459359, 0.010445409, 0.00626299, 0.009606226, -0.010134185, - 0.008343436, 0.015619108, -0.011356176, 0.0022858032, 0.0058393744, - 0.0046115075, 7.129664e-4, -0.017436057, -0.0085289385, -0.011784448, - -0.009506291, 0.0010332091, 0.0013267327, -0.0046467497, -0.008390598, - 0.004614842, 0.03168672, -0.017652264, 1.1729676e-4, -0.023638366, - -0.026361803, -0.004206067, -0.013138243, 0.009030349, -0.0057054176, - -0.007973319, 0.004909209, -0.011450877, -7.426852e-4, -0.027362261, - 0.023012739, 0.0018407429, -0.0014902729, 0.017207883, 0.032103945, - -0.00965318, 0.015080546, -6.009783e-4, -0.0033868942, -3.8581114e-4, - 0.00795807, 0.0018980579, -0.033613, -0.003787728, 0.0058130105, - -0.010426186, -0.008214633, -0.005522728, 0.026066348, -0.017324556, - 0.0026766148, 0.011982423, -0.0057669594, 0.0024536673, 0.004946773, - 0.009196872, -0.011799767, -0.013079041, -0.0132578, -0.03536821, - 0.0017685383, 0.002088784, -0.00613681, 0.032900207, -0.010678686, - -7.2709064e-4, 0.0013230357, -0.014052931, 0.004208014, 0.0053764433, - -0.01688537, 0.0035794128, 0.003427455, -0.006529588, 0.008983378, - 5.70517e-4, 0.008506681, -0.005463657, -0.018454758, 0.026617806, - -0.027342752, 0.026249804, 0.007443597, 0.004269944, -0.008525756, - 0.004733022, -0.010870559, 0.018046787, 0.01104721, 0.020230325, - 7.050511e-4, 0.02175924, 0.0032737248, -0.017228577, 0.016496046, - 0.0040029283, 0.008926289, -0.01976881, -0.02346261, -0.01085711, - -0.023008995, -0.0018621691, 0.004389289, -0.015765095, 0.021568257, - -0.0066172713, 0.0048966515, -0.0046673818, -0.010141734, 0.018204184, - 0.009607773, -0.0015809167, 0.012528953, -0.010550853, -0.014642642, - -0.01802735, 0.003992018, 0.018166764, 0.0076680756, 0.0055791982, - -0.012657788, -0.008615562, -0.012867195, -0.024604965, -0.015200888, - -0.014296559, -0.019456394, -0.018080393, -0.0033427218, 0.010103255, - 0.010369748, 0.005588114, -0.015003054, -0.01836444, 0.015851421, - 0.0040910947, -0.011510856, -0.017539663, 0.015517044, 0.0031251255, - -0.008237489, 0.0043611275, 0.012198827, 0.013234257, 0.002143068, - -0.01830551, -0.0109063005, -0.022861341, 0.020937167, 0.0038838475, - 0.0141142085, -0.0064298892, 0.0032906535, 0.018924914, 0.0061691306, - 0.010800801, 0.0034571222, -0.025266532, -0.013607199, -0.013038222, - -0.0023170453, -0.0037308927, -0.023365332, -0.014628657, 0.023202019, - 0.028284349, -0.001064064, 0.015529257, -0.0021306605, 0.008599126, - -0.011913527, 0.02356635, 0.012727566, -0.013485518, -0.006405766, - -0.004455159, -0.030054899, 0.0021481423, 0.010691186, 0.032939352, - 0.009861633, 0.0088887885, -0.0010806043, 0.020243304, 0.0145248575, - 0.02277576, 0.0027340306, -0.023680601, 0.01159396, 0.022474453, - -5.2663183e-4, 0.0045890016, 0.010205461, 0.008263706, -0.009905003, - 0.005372907, -0.008202677, -0.016745526, 0.007358814, 0.01415695, - -0.015635876, -0.021101292, 0.024923632, 0.009991117, 0.007674922, - -0.0045493143, -0.02630431, -0.008250599, -0.0023463531, 0.012721115, - 0.029054698, -0.021023808, 0.015041237, -0.01119128, 0.014724458, - -0.018367143, 5.545657e-4, -0.014384746, -0.018252073, 0.0036499198, - -0.031024005, -0.013904361, 0.011142016, 0.017012686, 0.008297707, - -0.021556992, -0.006574403, -0.014527788, 5.8097724e-4, -0.017158, - -0.02343659, -0.014015053, -0.017000927, -0.026963376, -0.006749683, - 0.03885206, 0.001022356, -0.0076050065, 0.0016812141, -0.014097089, - 0.048020642, 0.0047774855, -0.010683908, 0.020960031, -0.0010236135, - -0.0072301803, 0.00851645, -0.029372796, 0.016740026, 0.0024010607, - -0.007191888, -0.02246998, 0.012825768, 0.0010781134, -0.019767711, - -0.011099889, -0.021213764, -0.004675901, 0.011324419, -0.03174895, - 0.02684178, 0.0070245564, 0.0055553517, 0.0014111793, -0.011780166, - 0.013896058, 8.7146444e-4, -0.001778708, -0.00585104, -0.011567668, - -0.003995869, 0.006298736, 0.005909907, 0.020368861, -0.015915317, - 0.016346581, -0.005436022, -0.022589382, 0.026170695, -0.00536234, - -0.016963786, 0.0051780324, 0.0073043387, 0.034786187, -0.005068394, - 0.0032587827, 0.0048015104, 0.0044955225, 0.0010022755, 0.03140485, - 0.015044578, -0.009573635, -0.014119266, -0.0020434102, 0.023904067, - -0.0155591015, 0.009556365, -0.014857843, 0.0030764164, 0.015350356, - 0.007703097, -0.004732942, 0.02116268, 0.0057680462, -0.018499704, - -0.0073256483, 0.006897091, 4.8769475e-4, -0.007798985, -0.0054718317, - 0.0061066006, 9.521892e-4, 0.012573866, 0.0023248997, -0.0075400067, - -0.016457796, 0.0026508323, -0.006687141, -0.017773302, 0.024889283, - 0.010618128, -0.008671996, 0.010196642, -0.0046369876, -0.020458559, - -0.013547067, -0.005897643, -6.594521e-4, 0.006180856, -0.009355782, - -0.041749462, 7.6290657e-4, -0.028162519 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.022016661, 0.0039364547, -0.028192488, 0.012113918, 0.007857769, - 0.015200628, 0.047278486, -0.02730178, -0.03420387, 0.009913623, - 0.013799051, -0.031679124, 0.003538107, 0.042299274, 0.004276405, - -0.031686395, 0.027095338, 0.01718509, -0.018098483, 0.007190676, - -0.0115736, -0.013637994, 0.0074147433, -0.017162515, 0.06123903, - -0.019873489, -0.0025924058, -0.010212074, -0.0010229427, 0.018873243, - -0.024038894, 0.061689783, 0.014141784, 0.026698995, 0.0480341, - 0.013864581, 0.011296336, 0.0037990888, 0.003257457, 0.07177241, - -0.0099368775, 0.028521735, -0.030387387, -0.014897211, -0.025545835, - 0.012167027, 0.0052718106, -0.038661454, 0.031626083, -0.023997677, - 0.008122425, -0.004412586, 0.0069433474, 0.0553427, 0.054821715, - -0.064321764, 0.032435153, -0.015271706, 0.0046331044, 0.039501514, - 0.027404614, 0.046402223, 0.014578599, -0.043418325, -0.044708446, - -0.011120269, 0.004971954, 0.005507335, 0.029290173, 0.031117046, - -0.041994542, -0.019092133, 0.031657267, 0.009176436, 0.032740884, - -0.0044507524, -0.011915375, 0.029218739, 0.013528832, 1.0570522e-4, - 0.061032586, -0.010129361, -0.026582368, 0.011819146, 0.029772436, - -0.012261767, 0.037814714, 0.027950592, -0.031820856, -0.025229372, - -0.03806268, 0.005189333, -0.03593495, 0.0013870455, 0.010434998, - 0.045588464, 0.0066730715, -0.027181858, 0.007558771, -0.0020314935, - -0.08011014, 0.026412765, 0.05089178, -0.035514962, -1.7840712e-4, - 0.021426579, -0.01751515, -0.02493101, -0.057817977, 0.0030816167, - 0.043838408, 0.024534574, -0.014294479, 0.018343247, 0.0018093196, - 0.059467588, -0.015440753, 0.006810299, -0.02218562, -0.024084266, - 0.005500989, -0.02155347, 0.011533429, 0.021842966, -0.004755728, - -0.00265392, -0.008819954, 0.029362736, -0.028897844, -0.0046024574, - -0.010021606, -0.05933194, -0.04896843, 0.012042898, 0.0052176365, - -0.049567442, -0.025410295, -0.0053369123, -0.023608413, 0.066646986, - -0.029107012, -0.010000736, -0.033793774, -0.0020875095, -0.053620543, - 0.049331866, -6.900377e-4, -0.00885659, -0.014314599, 0.018638603, - 0.06420734, -0.010016947, -0.004492388, 0.012924906, -0.07724467, - 0.029891677, -0.01648718, -0.0063548405, 0.02938652, -0.004557728, - 0.062126055, 0.030329537, -0.004753179, -0.005095645, -0.013237214, - 0.0030228612, -6.847251e-4, 0.016852893, -0.019862525, 0.0038024124, - 0.036625568, -0.018192288, 0.019434141, 0.03627689, -0.039101765, - -0.021891922, 0.014486025, 0.02804094, -0.007524033, -0.0029424368, - -0.021162046, 0.009576439, -0.025559569, 0.011230681, -0.03551847, - -0.038803604, -0.041633908, 0.0030592233, 0.03133577, -0.031962484, - -0.033096682, -0.05481625, 0.017985856, 0.0128026055, 0.03840023, - 0.027248485, 2.8534338e-4, 0.012457873, -0.047287717, -0.0532764, - -0.023087153, -0.004255824, 0.00497184, 0.032736026, 0.00950922, - -0.0012221962, 0.023363555, 0.060208056, -0.032995917, -0.0018470456, - -0.059720725, 0.010010669, 0.013175162, -0.07401674, -0.014808259, - -0.01330541, -2.7157928e-5, -0.030367551, -0.02635248, 0.04105617, - 0.0055132927, 0.0019630808, 0.07858499, 0.0054847663, -0.063719735, - -0.02852189, 0.0370591, -0.040905535, -0.06382049, 4.645955e-4, - -0.0056752525, 0.018215781, 0.020836372, 0.030085728, 0.058502987, - 0.0040213726, 0.048481643, 0.0070557264, 0.01543661, -0.007594979, - 0.025201777, -0.017308466, -0.06384052, -0.020288637, 0.029019907, - 0.008363764, -0.018169546, -0.04656949, 0.08642868, 0.029329497, - -0.008250302, -0.055538245, 0.04627932, -0.041834135, 0.018769257, - -0.03959472, 0.054659706, 0.044208568, -0.02376948, 0.11079708, - 0.015042108, -0.064898096, -0.010964944, 0.044193394, -0.021837162, - -0.006170348, -0.031338576, -0.014805354, -0.05388179, -0.0061769444, - -0.038895614, 0.03320934, 0.027442772, 0.009314845, -0.06123113, - 0.023804137, -0.021673521, -0.012486317, -0.01151222, 0.032955054, - 0.03129739, 0.04579009, 0.0039736, -0.03602622, -0.0205747, 0.030571247, - 0.023383271, -0.01765432, 0.007088651, 0.012041553, 0.030589612, - -0.0055985157, 0.022252524, 0.046957258, -0.042202093, -0.016301109, - -0.027327662, -0.036207493, -0.020917967, 0.0109264795, -0.00802775, - -0.029984992, -0.0017598739, -0.030456828, 0.0149508575, -0.024597572, - -0.041104726, 0.06356174, 0.0061773886, -0.044690564, -7.806586e-4, - 0.062156618, 0.0366814, -0.005118401, -0.036012094, -0.013289625, - -0.07518875, -0.0016044757, -0.02881624, -0.002688839, -0.03674784, - 0.037594803, 0.026036931, 0.020919904, 0.036376584, -0.05595299, - 0.0013678, 0.01814416, 0.0117215635, -0.015071942, 0.0027963307, - 0.020580217, 0.016363146, 0.016231198, 0.015230856, -0.060005356, - 0.030260546, 0.024733206, 0.012091361, 0.030650837, -0.075326, - 0.0039130445, 0.0076824077, 0.008318807, -0.018770704, 0.015652576, - -0.05695972, -0.018972488, 0.0688029, -0.018472156, 0.03239873, - 0.036392033, 0.0041554393, 0.034037217, 0.0094528515, 0.02046912, - -0.0012002427, -0.0010018117, 0.02738103, 0.043165985, 0.032797914, - -0.024338719, -0.018404176, -0.0036848101, 0.017957734, -0.051424887, - -0.012079893, 0.048809998, -0.03200139, -0.012966232, -0.007137597, - -0.0097136395, -0.04279235, 0.029262997, 0.0027394725, 0.011181495, - -0.009402076, -0.025368517, -0.047058973, -0.043477222, -0.008558666, - 0.0184846, -0.023387384, -0.06077221, -0.05062812, -0.011732477, - 0.023638146, -0.050179955, -0.016861437, 0.0068360423, -0.02009112, - -0.00426565, -0.0020528452, -0.050410185, 0.031553596, -0.022150906, - 0.0014113154, -0.010606509, 0.038022637, 0.041411642, 0.0066485144, - -0.007637837, -0.023930855, 0.049881577, 0.013423509, 0.010975839, - -0.020173421, 0.030561203, 0.0037582926, -0.0025945995, -0.019833755, - -0.015080379, 0.027870381, 0.049904313, -0.0383236, -0.051024828, - -0.01943453, -0.011372726, 0.055012513, 0.013304889, -0.005289701, - 0.06538575, 0.030510927, 0.0062268833, 0.037759427, 0.029438151, - -0.046774462, -0.090727575, 0.05440066, -0.012437437, 0.0035395783, - 0.01905588, 0.08683078, 0.0146482, -0.04094198, 0.013160092, - -0.018095901, 0.069863655, 0.040266916, -0.044367973, -0.0060422975, - 0.010138439, 0.011774274, 0.02488869, 0.05725166, -0.018417303, - -0.030725885, -0.066139214, 0.003048907, 0.0019247641, 0.0030000538, - -0.015156951, 0.0055519515, 0.059758674, 0.030603448, 0.013950238, - 0.033771396, -0.016097708, -0.01169083, 0.0038058932, -0.008367801, - 0.026386093, -0.021503514, 0.068685435, -0.008526818, 0.008116592, - 0.049918793, -0.06927099, -0.034674462, 0.013588162, 0.015508387, - -0.059640333, -0.013541674, -0.040832788, -2.4212207e-4, 0.020972118, - -0.005995747, -0.008485213, -0.023999278, 0.003619036, -0.0028537235, - 0.05099237, -0.05134832, 0.044364728, -0.012081505, 0.023185793, - -0.021310471, -0.024330564, -0.018984275, 0.0021091106, -0.006243854, - 0.04943295, 0.06174364, 0.023663107, -0.0090214545, -0.014378819, - -0.008316039, -0.03648008, -0.008247874, 0.055120584, -0.0089001935, - -0.0037771761, 0.0042218193, -0.0025331273, 0.015576821, 0.01756513, - -0.04439747, -0.021825254, -0.09607573, -0.012364547, 0.003624422, - 0.02757062, 0.009226332, 0.017615102, -0.037564155, -0.026146121, - -0.049654033, 0.04407793, 0.026386091, -0.03284161, -0.0076111564, - 0.025930773, -0.011855574, -0.05803368, 0.025880164, -0.015021347, - 0.027385665, 0.04798892, 0.004338444, -0.0026023847, 0.05494101, - -0.028842604, 0.03812813, -0.037212446, 0.055093832, 0.027239224, - -0.008990263, 0.023926754, 0.010614203, -0.04587236, 0.05675784, - 0.004210929, 0.02922201, -5.90141e-4, -0.010583645, -0.044013973, - 0.053623624, -0.028520033, 0.010791208, -0.052935973, 0.013891387, - -7.4743066e-4, 0.02242364, 0.023094146, -0.005723716, 0.040406734, - -0.03880465, -0.02763206, 0.0020485865, -0.007690549, -0.026138907, - -0.022331467, -0.03665281, 0.072914764, 0.032141298, 0.008898115, - 0.0023081943, -0.012793827, -0.014264893, -0.0013674917, -0.01919456, - -0.006410615, -0.027260507, -0.030945228, 0.016917048, -0.058408942, - 0.071525045, -0.013593619, 0.008202759, 0.035101008, 0.02684994, - 0.014522669, -0.009862707, 0.028266458, -0.0077709877, 0.035179496, - 0.01715364, 0.001693439, 0.03386633, -0.029742274, -0.027285146, - -0.066531725, -0.027581384, 0.0050107515, 0.03517511, 0.026918197, - 0.05210193, -0.012717575, 0.012747579, -0.033122666, -0.0035418638, - 0.0069159037, -0.008053208, -0.021279464, 0.0012792656, 0.007173883, - -0.01625419, -0.05687831, -0.031029984, 0.013935713, -0.007846779, - -0.02634228, -0.012332983, -0.029417258, 0.005430397, -0.009655816, - 0.064222224, -0.007555363, 0.022979043, -0.0692794, 0.0064199935, - 0.06518045, -0.00177295, 0.037890583, -0.016889323, -0.038970932, - 0.05541794, 0.011237057, 0.0071355235, -0.009700556, 0.03404001, - -0.013518102, 0.0053984732, 0.035654917, 0.005693287, 0.023442937, - -0.0013440674, -0.020600708, 0.010675877, 0.033106774, -0.046669163, - 0.0110957865, -5.323524e-4, 0.01103959, 0.0073443167, -0.025488554, - -0.023087155, 0.04394575, 0.011219608, -0.02216229, -0.06592687, - 0.005788605, -0.038495213, 0.054069046, -0.007064963, 0.0430601, - 0.024697827, -0.027140038, -0.04634717, 0.006795994, -2.1896455e-4, - -0.008430536, 0.029772112, -0.051740244, 0.008976496, 0.02880657, - 0.043865025, -0.012369023, -0.04190325, 0.030951679, 0.03574583, - -0.020271126, -0.012280368, -0.02574851, -0.003997081, -0.04606113, - -0.010023027, -0.037427053, 0.023602722, -0.022579912, 0.036656246, - -0.024621729, -0.036232766, 0.023901045, 0.026922679, 0.008369085, - 0.04967863, 0.05193816, 0.0075335107, 0.037104208, -0.026502922, - -0.009219447, -0.0035703734, 0.026631372, -0.03270257, -0.020093622, - 0.0034290915, -0.047396455, -0.0305348, 0.021059152, -0.032476373, - 0.009409365, 0.021849547, 0.043539822, -0.054309968, -0.0465343, - -0.012964693, 0.039666194, 2.8768205e-4, -0.028527558, 0.003103064, - 0.04206191, 0.009134766, -0.010816388, -2.8304434e-5, 0.017797155, - -0.0063530914, -0.029885149, 0.032660414, 0.027005242, -0.02669668, - 0.004461667, -0.012768965, -0.013791918, -0.026927484, -0.012017034, - -0.0011268143, -0.021702286, -0.009392286, -0.020087767, -0.017317178, - 0.03748077, 0.005593778, 0.020792281, 0.013663991, -0.02652354, - -0.07161502, -0.03852362, -0.027646832, 0.08391506, 0.04613473, - 0.025921425, 0.0045460216, 0.023743996, 0.016500203, 0.0057419757, - -0.028194267, -0.040286057, -0.021071192, 0.0010936555, 0.045200482, - 0.007643376, -0.022694971, 0.010766428, -0.02128099, -0.016982965, - -0.053669877, 0.010714248, -0.051705133, 0.019363733, 0.033018142, - -0.018446151, -0.011387838, 0.030282551, 0.059173778, -0.0032821633, - -0.03958729, 0.018374873, 0.042124536, -0.0032923513, -0.028527668, - -0.01786272, 0.015400258, 0.009644294, 0.019007476, 0.018152546, - 0.0067285043, 0.017118333, -0.020499816, 0.0056554982, -0.04732249, - 0.038123984, -0.005930779, 0.041658863, 0.008331382, -0.06601996, - 0.0018394962, -0.0014986059, 0.03409794, 0.019347204, -0.00953706, - 0.019324375, -0.0017356322, 0.030922556, -0.0020515185, 0.041117605, - -0.032210074, 0.001514721, -0.067275785, -0.022489743, -0.015633212, - -0.025960362, -0.048227955, 0.006980949, -0.015807904, -9.811062e-4, - -0.0032932863, 0.062340796, 0.0063448353, 0.044965863, -0.044499673, - 0.013234925, 0.006349982, -0.001568257, -0.03047814, -0.030932717, - 0.033663932, -0.03948361, 9.677628e-4, -0.005450079, 0.048926346, - 0.054801617, -0.011621886, -0.044612207, -0.043268904, 0.0090061, - 0.018508347, 0.045061044, -0.002403756, 0.038971774, -0.018041233, - 0.02551689, -0.011526935, -0.00831638, -0.022502728, -0.020193776, - -0.017265087, 0.05605394, 0.0044044447, -0.0626523, 0.020338556, - 0.059566062, -0.006243627, -0.022324406, 0.067224704, 0.022128716, - 0.056228053, -0.01646861, 6.6098047e-4, 0.020019384, 0.048212368, - -0.004331738, 0.033110775, 0.025232747, -0.059440818, -0.012330044, - -0.019494066, 0.011487568, 0.0033654694, -0.013898287, 2.7045485e-4, - -0.015820803, 0.03329402, -0.041243374, -0.014759823, 0.042508952, - 0.037287656, 0.049909394, -0.055366267, -0.0151744075, -0.005042213, - -0.05422511, -0.011491509, -0.029404292, 0.008611038, 0.016530244, - 0.021670409, -0.03951841, 0.03629389, -0.008240594, 0.023741532, - 0.029069055, -0.027615145, 4.7867335e-4, -0.007585306, -0.04371281, - -0.019670786, -0.06266404, 0.03091372, -0.038086258, 0.041034985, - 0.010199697, -0.027243976, -0.07152307, 0.005773437, -0.034596827, - 0.03532121, -0.019756937, -0.07040295, -0.03187205, -0.035157356, - -0.009245312, 0.008462938, 0.07481888, -0.009795559, -0.023152914, - 0.01334177, 0.01983071, -0.054278918, 0.036549818, -0.028006135, - 0.0032116557, -0.0064294203, 0.013283256, 0.015821466, 0.033004247, - -0.061083443, -0.049245827, 0.025529405, -0.037506115, -0.043702453, - -0.009714303, -0.037003133, -0.017228127, -0.024171751, -0.015098937, - 0.0134769995, 0.035161134, -0.0011375532, 0.0038968255, 0.0029781614, - -0.04218421, -0.0035914532, 0.0112693915, 0.036277942, 0.013301187, - -0.084943, -0.03644907, 0.02393766, -0.008167748, 0.038831938, - 0.03168951, 0.032957274, -0.0040660636, 0.01409907, -0.004884517, - -0.031750396, 0.023944696, 0.025523266, 0.0473582, 0.032622445, - -2.257709e-5, 0.038161263, 0.007428637, -0.010621447, 0.006417887, - -0.029227706, -0.017319951, 0.011136936, 0.0153837195, 0.025629304, - -0.032103885, 0.023048818, 0.020315802, -0.01179233, -0.01106754, - -0.00677211, 0.004429508, 0.0101205185, -0.020173531, -0.0058487714, - -0.030796539, -0.003705923, 0.00903952, -0.039711524, -0.0010723972, - -0.0075955777, -0.010324109, 0.06610898, -0.039125156, 0.01128739, - -0.036876887, 0.005641056, -0.048511606, 0.013426171, 0.008397233, - 0.005178164, -0.044606443, 0.017336594, 0.029412512, 0.03362566, - 0.043505557, 0.054186698, 0.029142557, 0.035410214, 0.009197059, - -0.007812619, 0.031157875, -0.049578696, 0.0052277646, 0.012057056, - -0.022461222, 0.03868952, -0.037637144, -0.0305836, -0.009226083, - -0.019203966, -0.01618064, 0.047254413, 0.04611137, -0.0077373954, - 0.007235653, -0.010373463, -0.03497115, 0.018790396, -2.5976085e-4, - -0.025357256, 0.024390742, -0.036512513, -0.058636665, 0.016609583, - -0.0477643, 0.01520914, 0.04499999 + "source.genres.label" : [ + "Carrot counselling" + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.011086239, + -0.008567317, + -0.019029234, + 0.011544425, + -0.021386417, + -8.163466E-4, + 0.038887203, + 0.015467307, + 0.010377381, + 0.016850684, + 0.0021437858, + 0.002641558, + -0.0022065972, + 0.0072310604, + 8.4952393E-4, + 0.031308264, + -0.0109883165, + 0.0059549725, + 0.011226956, + -0.0049190796, + -0.005377579, + 0.005594683, + 0.038616877, + -0.026218409, + 0.0025227456, + 0.015797483, + -0.021457221, + 0.003698044, + -0.03278786, + 0.010142473, + 0.011215875, + 0.03865155, + -0.007991668, + 0.010333234, + -0.007835127, + -0.01626031, + 0.0070688464, + -0.014423013, + 0.022236, + 0.006767132, + 0.0047713164, + 0.025280261, + 0.015516805, + 0.020221163, + 0.010402695, + -0.0015663771, + 0.021847831, + 0.0055151423, + -0.007697414, + 0.009924175, + -0.009553202, + -9.628554E-5, + 0.0011861643, + -0.0077947658, + -0.018935692, + -0.014174033, + -0.0041554365, + -0.032737173, + -0.02513854, + -0.0027618085, + 0.0054298667, + -0.011547807, + -0.008649328, + -0.008314517, + 0.007756002, + -0.016842594, + 0.013734988, + -9.839562E-4, + -0.008493882, + 0.012721302, + 1.0528767E-4, + -0.011661362, + -0.0019935453, + 0.0070714992, + -0.043036245, + -0.012631305, + -0.013798594, + -0.0033168436, + -0.020750841, + 0.003948711, + 0.014170165, + -0.023949914, + 0.017130902, + 0.005055201, + 0.0043202937, + 0.00712501, + 0.010028018, + -0.00499234, + -0.03513832, + -0.0014616646, + 0.0123108635, + -0.0054886085, + 0.023112178, + 0.026863154, + -0.019325305, + 0.0136409085, + -0.017668964, + -0.01141483, + -0.017566556, + 0.008065541, + 0.007155352, + -0.020569582, + 0.016026411, + -0.016621083, + 0.0052867793, + -0.0096152965, + -0.0020806491, + 0.0075697354, + -0.011410216, + 4.5810413E-4, + 0.008964584, + -0.011723986, + 0.03141173, + -0.015600655, + -0.016198646, + 0.008834005, + -0.012035803, + 2.0910375E-4, + 0.0057323133, + -0.012592738, + -0.0019928622, + -0.0040212413, + 0.004251928, + 0.0055356403, + 0.012033716, + 0.003970454, + 0.0088604, + 0.009446472, + 0.0053357026, + 0.0072662774, + 0.028420584, + -0.009984286, + 0.0033904014, + 0.003147958, + -0.008972254, + 0.016354362, + 0.012743331, + 0.01483504, + -0.010014987, + 0.008084458, + -0.012145758, + 0.0053996514, + -0.0016611492, + 0.022539144, + -0.0180174, + -0.017702462, + -0.003165843, + -0.026041763, + -0.007378963, + 0.0167872, + 0.0076182852, + -0.026180618, + -0.010063369, + -0.012601865, + -0.036398202, + -0.0075614974, + 0.021627702, + -0.010085223, + -0.008000041, + 0.004261397, + 0.0031252964, + -0.019118145, + -0.013520458, + 0.003448184, + -0.0012299368, + 0.0029627744, + -0.021656986, + 0.027077641, + -0.016091287, + -0.0048449435, + -0.006519897, + 0.018772662, + 0.017101517, + -0.005165187, + 0.004805227, + 0.017535895, + -0.018432278, + 0.02302363, + 0.016830431, + 0.007819948, + 0.002397784, + 0.009817462, + 0.012196322, + 0.017908577, + 4.6986193E-4, + 0.036696482, + 0.03147165, + 0.0074239527, + -0.011631367, + -0.03760997, + -0.0073134177, + 0.0058565633, + -0.015248031, + 0.029375888, + 0.012642314, + 0.0044971346, + -0.007044571, + -0.023021057, + 0.014419434, + -0.00881564, + 0.0069551235, + 0.010797829, + 0.003107163, + 0.051803, + 0.007595812, + 0.004452547, + -0.022986505, + 0.027723575, + 0.010531351, + 0.008109915, + -0.01227921, + -0.005314438, + 0.0038559611, + -0.006824472, + -0.024017764, + 0.010511246, + -0.013420889, + 0.0030676774, + 0.0014607917, + 0.022986475, + 0.003940783, + -2.759594E-4, + -0.02010842, + -0.007246473, + -0.018305602, + 1.6914871E-4, + -0.023430716, + 0.0013016926, + -0.014143632, + 0.012640428, + -0.005800773, + -0.010062828, + -0.008509932, + 0.032319818, + 0.021298824, + 0.015579613, + 0.0016732728, + -0.01926506, + 0.008897988, + 0.019931069, + -0.023552729, + 0.0158895, + -0.013894895, + -0.0018399571, + -0.0025097583, + -0.0018869865, + -0.020283682, + 0.010538767, + -0.013076415, + 0.0123778, + 0.0028589696, + -0.021408768, + -0.0183758, + -0.031512078, + 0.02757062, + -0.017484486, + -0.0010956179, + 4.2090652E-4, + 5.930478E-4, + 0.0025700047, + 0.019197708, + -0.008241281, + -0.020516183, + -0.008813808, + 0.017910752, + -0.028812133, + 0.012747875, + -0.008014735, + -0.022266418, + 0.0344157, + -0.0015970559, + -0.016832294, + 0.02437636, + -0.009244194, + -0.005411066, + -0.0023216584, + -0.015150143, + -0.02687064, + 0.02269494, + -0.0029417565, + -0.009437264, + 0.016859977, + -7.957694E-5, + -0.036125116, + 0.01382093, + 0.020835975, + 0.008515177, + -0.018482544, + -0.021710977, + -0.009968535, + -0.0045116097, + 0.013010486, + -0.00734657, + -0.041946143, + 0.004381823, + -0.03695333, + -0.008718274, + -0.014866471, + 0.017202655, + -5.4591225E-4, + -0.0065680007, + 0.012365325, + 0.010887489, + -0.008534095, + -0.020415781, + -0.00831864, + -0.02510694, + 0.02499819, + 0.037702437, + -0.0035343212, + 0.027396617, + -0.025154326, + -0.016342973, + -0.011341954, + 0.011810807, + -0.00488452, + 0.01358411, + 0.013585694, + 0.022067076, + 0.028184716, + 0.0028167812, + -0.0042276727, + 0.008469043, + 0.021703519, + 0.0063386294, + -0.0035835237, + 0.016797036, + -0.0050786645, + -0.019645441, + 0.00982498, + 0.0079152, + 0.01787623, + -0.0066759386, + -0.011917622, + -0.023244992, + 0.020554183, + -0.0082984045, + -0.022561066, + -0.0010273238, + -0.034763362, + 0.008825753, + -0.028328115, + -0.009623333, + -0.01768297, + 0.005967613, + 0.0064949654, + 0.008102567, + 0.021270398, + 0.025011571, + 0.024534753, + 0.018391384, + 0.015924942, + -0.006309824, + 0.0014224623, + 0.0056793992, + -0.002727243, + 0.014282099, + 0.025583975, + -0.0024190124, + 0.021419574, + 0.026422847, + 0.018854229, + 0.01692792, + 0.012679598, + -0.008894612, + -0.019497026, + 0.0125836255, + 0.0107024135, + 0.036900457, + 0.021445546, + -0.018011056, + -0.030173186, + 0.012035825, + -0.05928412, + 0.017827531, + -0.007521203, + 0.003248656, + -0.004478551, + 0.012477288, + 0.03127304, + 0.0015275744, + -0.011460931, + 3.3554473E-4, + -0.009960156, + -0.0035158107, + 0.0079194065, + 0.002431161, + 0.017060824, + -0.004357285, + -0.02986855, + 0.0341613, + 0.005164621, + 0.021535022, + 0.020660391, + -0.016272495, + 0.010642795, + -0.001962798, + -0.02132708, + 0.0024719343, + -0.007086071, + 0.011025021, + -0.016313985, + -6.314459E-4, + 0.016422598, + 0.018607546, + -0.018583933, + -0.011620362, + 0.028157603, + -0.007251632, + -0.012432959, + -0.0104977125, + 9.390196E-4, + -0.042123444, + 0.0044950293, + -0.015289099, + -0.0026558547, + -0.008079663, + -0.010542525, + -0.026812758, + 0.009405729, + 0.013964815, + -0.002088826, + 0.004292009, + 0.0050571226, + 0.014152358, + -0.038384866, + -0.004575168, + -0.03899268, + 0.014508854, + -0.012299405, + -0.010026569, + 0.020653745, + -0.017632293, + -0.011355209, + -0.0192636, + -0.0281895, + 0.018784465, + -0.015081122, + 0.017744448, + 0.004658157, + 0.0044704587, + -0.019796135, + 5.831716E-4, + 0.016581781, + 0.0016160671, + 0.002853914, + -0.001600063, + 0.013550159, + 4.1509818E-4, + -0.01027167, + 0.01569971, + 0.026768817, + -0.023522926, + 0.019231226, + 0.0075308867, + -0.004603498, + 0.016917834, + -0.0011976814, + 0.008617183, + 0.027807863, + -0.005662414, + -0.023759317, + 0.01599403, + 0.0023944646, + 0.021341525, + 0.009127084, + 0.023259366, + 0.014916601, + 0.007711203, + 0.00444541, + 0.009887594, + -0.0068439734, + -0.029668666, + -0.006422378, + 0.0105292415, + 0.02222582, + -0.006719509, + -0.0062082387, + 0.018733868, + 0.009005503, + 0.007247153, + 0.0010266377, + 0.0069310614, + 0.01124624, + 0.021177946, + 0.016843991, + 0.0310593, + -0.012378541, + -0.021932924, + -0.0022185335, + -0.0017930486, + 0.004970871, + -0.024597006, + 3.352968E-4, + -0.012700391, + 0.028254407, + 0.016961157, + -0.032575473, + 0.014845172, + 0.021893637, + -0.004644812, + -0.042359058, + 0.0017521911, + 0.0012653808, + -0.0044283136, + -0.017178575, + 0.0047033313, + 0.0011303584, + -0.0018796562, + -0.015288439, + -0.022749498, + 0.009540559, + 0.014144865, + -0.032302294, + 0.025729783, + 0.021263944, + -0.011646091, + 0.008068534, + -0.013277564, + 0.009602548, + -0.0041885753, + 0.019534554, + -0.006940185, + 0.011898362, + 6.409727E-4, + 0.0047417213, + -0.013317587, + 0.0077268085, + -0.004569314, + 7.4834545E-4, + -0.01605525, + -0.012888208, + -0.022147123, + -0.008540422, + 0.03536698, + 0.010103763, + -0.0050424356, + 0.010652523, + -0.020009603, + -0.010758555, + 0.021051642, + 0.009127707, + 0.009439382, + -0.02183348, + -0.0089752795, + 0.0063881576, + -0.0061048227, + -0.016400995, + 0.0015867464, + -0.012472818, + 0.010877625, + 0.01457264, + 0.017729523, + 0.0072407126, + 0.012634905, + -0.019126143, + 0.023364702, + -0.00900167, + 0.014004542, + -0.020060744, + -0.034742057, + 0.02568745, + 0.008947507, + -0.034983866, + 0.02221727, + 0.002823055, + -0.015095753, + 0.015694128, + 0.0045584063, + -0.008276695, + 0.005643188, + -0.032185778, + 0.042964894, + 0.014197883, + 0.0013611496, + 0.004385233, + -0.020498969, + 4.8781335E-4, + -0.002327137, + -0.02206218, + -0.004202415, + -0.019293495, + -0.017539214, + -3.349731E-4, + 0.0021457179, + -0.045909222, + 0.021786075, + -0.0040303054, + 0.009974986, + -0.030798992, + -9.282106E-5, + -0.009333025, + 0.017301895, + 0.008467673, + 0.0133443335, + 0.0049346644, + -0.015989494, + -0.02297758, + -0.0044151093, + -0.01675631, + -0.008356082, + -0.024864241, + -0.010569322, + 0.0054219216, + -0.007474023, + 0.0047974605, + 0.004767085, + -0.012705553, + 0.009952342, + -0.009176244, + -0.054117408, + -0.04799016, + -0.0033403977, + 0.012785643, + -0.013507106, + -0.018685143, + -0.010573178, + 0.005169304, + -0.009818843, + 0.01731216, + -0.0057986667, + 0.008949479, + 0.008487212, + -0.0052971435, + -0.01929317, + 0.026719563, + 0.0051948787, + -0.0068616313, + -0.0018610148, + 0.026539775, + 0.005361661, + 0.01663015, + 0.03581445, + -0.0174184, + -0.004543512, + 0.007374274, + 0.021845512, + 0.013353285, + 0.01832848, + 8.11229E-4, + -0.01986411, + 0.006177549, + -0.016597852, + 0.003566201, + 0.024949107, + 0.0021251007, + -0.005053281, + 0.0058202674, + 0.011681813, + -0.013296121, + 0.004429103, + -0.015574849, + -0.023416847, + 0.0040095528, + 0.007872996, + 0.0069278083, + -0.011679456, + -0.008704506, + -0.008821143, + 0.006214702, + -0.01625607, + -0.010357038, + 0.0053589293, + 4.154049E-5, + 0.013009413, + 0.02531729, + -0.005790228, + 0.004322331, + -0.003873291, + -0.006915385, + -0.009694206, + -0.0043257126, + 0.006398142, + 0.004718283, + -0.008028896, + 0.009693816, + -0.022158401, + 0.02950868, + 0.022231769, + -0.005257942, + -0.020249188, + -0.0041689402, + 0.024135439, + 0.004293785, + 0.0073947087, + 0.038050633, + 0.028258353, + 0.013013691, + 0.012794555, + -0.0069002747, + 0.0016583469, + 0.006172519, + 0.012721295, + 0.011785542, + -0.020216493, + -0.027998615, + 0.00923249, + 0.0038882166, + -0.002221913, + -0.021810122, + 0.019729879, + 0.0032972246, + 0.0015146544, + -0.0015646269, + -0.005544623, + -0.016606592, + 0.021034446, + -0.009132179, + 4.7257246E-4, + 0.022249017, + 0.01519529, + 0.025233887, + 7.2596234E-4, + -3.1411566E-4, + -0.006243762, + 0.020624239, + 0.020019181, + 3.8652346E-4, + -0.020536376, + 0.017184962, + 0.017233236, + -0.019758163, + -0.009236171, + -0.011209796, + -7.596232E-4, + 0.0025294009, + 0.004877545, + -0.02310225, + 0.007377362, + -0.005038117, + -0.0075795753, + -0.03343835, + 0.010376843, + 0.0158552, + -0.027932264, + -0.0019712246, + 0.011768743, + 0.010733952, + -0.010518317, + -0.015369573, + 0.0022478872, + 0.0032167672, + -0.015939293, + 0.0020435452, + 0.031023245, + -0.004316509, + 0.010440116, + -0.0012716218, + -0.0017645606, + -0.0024306884, + 9.3692855E-4, + -0.023603203, + 0.01685567, + 0.006159648, + -0.0015156092, + 0.012041584, + -0.014187978, + 0.0014994071, + 0.012873887, + 8.7288645E-4, + -0.014505824, + 0.025815716, + -0.010572253, + 0.014088755, + -0.017953001, + -0.021665841, + 0.023311531, + -0.015463574, + -0.009086591, + 0.010964409, + -0.025352994, + -0.006386659, + -0.022023356, + 0.013940999, + 0.01294173, + 0.014472788, + 0.008368724, + 0.02012404, + -0.0028932495, + 0.006106735, + 0.004172106, + 0.0050018826, + 3.1565013E-4, + 0.0021388454, + 0.022474082, + -0.015441993, + -0.025461173, + 0.0044501116, + 0.02609486, + 0.009779408, + 0.019526316, + -0.0096908845, + -0.012011649, + -0.0132725695, + -0.0069575477, + -0.0153839225, + -0.011543589, + -0.0011687297, + -0.00388142, + 0.02922304, + -0.0021869673, + 0.0035647089, + -0.007320815, + -0.013183708, + 0.002533755, + -0.031874754, + -0.016903313, + -0.023141291, + 0.017045682, + 0.0022194628, + 0.0024447758, + -0.045667984, + -0.015565675, + -0.0146745145, + 0.016454179, + -0.015782928, + 0.014703321, + -0.00454324, + -0.017376423, + -0.01735843, + -0.024269665, + -0.015320676, + 0.013935203, + 0.018981876, + 0.007286527, + -0.0174345, + 0.006193541, + -0.014301684, + 0.0020427923, + 0.0069415816, + 0.019168673, + 0.004340917, + 0.0045533916, + -0.02782371, + -0.00985336, + 0.005763108, + -0.005836212, + 0.0060963337, + 0.025887487, + -0.003046613, + -0.0034454928, + 0.024617136, + 0.0054968926, + 0.018881332, + -0.039962936, + -0.01485249, + 0.010463636, + 0.017417263, + 0.012606382, + -0.006754051, + 0.004717865, + -0.015115619, + -0.034350574, + -0.024193373, + 0.00921742, + -0.014198915, + 0.01911762, + 0.0059719845, + 0.01653625, + -0.011083303, + -0.014218783, + -0.018948054, + -0.016573353, + -0.042935528, + -6.813595E-4, + 0.001251897, + 7.90031E-4, + -6.498908E-4, + -0.003915957, + 0.0045777727, + -0.0016558546, + 0.019821022, + 0.00923859, + -0.0044592386, + 0.02427422, + -0.0013234164, + -0.014231358, + -0.01564282, + -0.007535611, + 0.010230064, + -0.01111796, + 0.045157563, + -0.017496448, + 1.8310809E-4, + -0.00700741, + -0.012620836, + 0.010161428, + -0.019272102, + -0.021727564, + -0.0010328785, + -0.013215532, + -0.0015369505, + -0.010944181, + 0.004985646, + -0.0062289657, + 0.024196962, + 0.035717547, + 0.029519444, + -0.0019110002, + -1.0208622E-4, + -0.013120425, + -0.005006485, + 0.0013968361, + -0.010273104, + -0.04134733, + 0.0061803083, + 0.013402367, + 0.013039475, + -0.0046060313, + 0.0018630404, + 0.017649626, + 0.017123064, + 0.033207607, + -0.002699552, + -0.014610333, + -0.018164124, + -0.0033718466, + 0.010995327, + -0.01625639, + -0.019874379, + 0.0032738335, + -0.005522738, + 0.0019955623, + -0.011565248, + -0.026577875, + -0.0027756453, + -0.005358117, + 0.0037695675, + -0.029359952, + -0.01062103, + 0.012535893, + -0.005520834, + 0.0071664825, + 5.9320225E-4, + 0.00912143, + 0.018658858, + -0.007035822, + 0.021792093, + 0.030618267, + 0.003602816, + -0.033750243, + -0.007302148, + -0.0056718905, + -0.0024508517, + -0.013374883, + -0.008275383, + 0.027140688, + -0.0018663122, + -0.003953266, + 0.012776632, + 0.0012637422, + -0.0044868276, + -0.002334018, + -0.035580132, + 0.010540826, + -0.009094739, + 0.01204806, + -5.073401E-4, + 0.01106356, + -0.01923537, + -0.006232296, + -0.008721994, + 0.012310513, + 0.016420035, + -0.007562252, + 0.0024687466, + -0.0030572885, + -0.011526196, + 0.0024527956, + -0.023141777, + -0.020212421, + 0.0064060832, + 0.01675455, + 0.024705714, + -0.036917225, + -0.021411289, + 0.008114097, + 0.0018747285, + -0.0030868894, + -0.0153725445, + -0.011543121, + -0.0027701622, + -0.0075537036, + -0.007309787, + 0.0100758355, + -0.045712896, + -0.01446708, + -0.0048229992, + 0.023551198, + 0.013421969, + 0.017808221, + -0.016027205, + 0.0037172684, + -0.014574443, + -3.911929E-5, + -0.009218897, + -0.0048776376, + -0.028219538, + 0.008077603, + 0.016571106, + 0.0020569598, + -0.016660377, + -0.012571807, + -0.002972325, + 0.00937707, + 0.011419176, + -0.009108087, + 0.010665471, + 1.5636264E-4, + -0.01954464, + -0.005936424, + 0.022952003, + 0.01787488, + -0.03264463, + -0.011957698, + 0.013236782, + 0.019058222, + 0.029474868, + -0.009658593, + 0.018207476, + 6.2174955E-4, + -0.021239795, + -0.011725826, + 0.01995887, + 0.013106006, + -0.010774972, + 0.016048258, + 0.0023376069, + 0.035220303, + 0.010397998, + -0.012924868, + 0.014589827, + -0.004596971, + -0.0034259735, + -0.002628954, + 0.010041545, + 0.008633899, + -0.007844089, + 0.009766278, + -0.01336804, + 7.506726E-5, + 0.009095435, + 0.0024293184, + -0.011155642, + 0.010643085, + -2.4541153E-4, + -0.0023934713, + -0.034697164, + 0.025532905, + -0.0044337604, + -0.019236237, + -0.022422371, + -0.0092944475, + 0.0072169793, + -0.016404398, + 0.034269325, + 0.013337323, + 0.021997804, + -0.006806244, + 0.0012875756, + 0.024029698, + 0.01192618, + 0.0069563976, + 0.015115789, + -0.0040550134, + -0.0038513427, + 0.012210509, + -0.0028826357, + 0.009849961, + 0.019178035, + 0.017594913, + 0.01630597, + 0.0018688939, + 0.011476678, + -0.002103736, + 0.0043754126, + 0.002148072, + 0.020111803, + 0.021577034, + 0.030900273, + 0.016109945, + -0.0031938553, + 0.0016205836, + 0.004363857, + -0.01406571, + -0.017189302, + -7.1622105E-4, + -0.006632258, + 0.019807829, + -0.009155988, + -0.014023595, + -0.009177747, + 0.025949279, + -0.02142099, + -0.011531148, + 0.024395466, + -0.019756721, + -0.014478624, + -0.007594816, + 0.0012821987, + -0.030699449, + 0.01968106, + -6.598464E-4, + 0.01558435, + 0.028906113, + -0.012782676, + 0.0013292657, + 0.0109872455, + 2.624999E-4, + -0.0058707595, + 0.016015437, + -0.009463595, + -0.030186454, + -0.039930087, + -0.010878115, + -0.04198807, + 0.014647665, + 0.016070165, + -0.002188889, + -0.014651308, + 0.012899741, + -0.006618624, + 0.0010213811, + 0.032487117, + 0.014579097, + -0.007926017, + -0.033458747, + -0.017703999, + 0.0053601847, + -0.018200533, + 0.016937688, + 0.0025317115, + -0.008618241, + 0.052969333, + -0.0035257577, + -0.014946857, + 0.0057410165, + 0.0057359706, + -0.013163326, + -0.015475071, + -0.01461909, + 0.018760115, + 0.019997276, + -0.023560202, + -0.0025140822, + -0.013344666, + 0.0066030133, + 0.008785979, + -0.024799023, + 0.0057181823, + 0.001402694, + -0.0042683976, + -0.0020328017, + -0.009856351, + -0.014441926, + -0.02145139, + 0.009755777, + -0.005070992, + -0.007617466, + -5.547013E-4, + 0.026679473, + -0.013074931, + 0.0030000282, + -0.014345544, + 0.013180368, + -0.025522301, + 0.010672731, + 0.026541214, + -0.024669211, + -0.011751181, + 0.0032511314, + 0.03304074, + 0.029611703, + -0.0075486433, + -0.007770285, + -0.035738636, + 0.013470174, + 0.014917821, + 0.019859528, + 6.803152E-4, + 0.01765519, + 0.013421152, + -0.0073774233, + 0.004079628, + -0.040493917, + -0.023249578, + 0.008621188, + 6.407993E-4, + 0.0102390675, + 0.0048430166, + 0.012751736, + 0.0025883082, + 0.0025155982, + 0.043145828, + 0.010790055, + 0.0024210447, + 0.0029142413, + 0.004852828, + 0.01668412, + -0.025783947, + 0.0144368475, + -0.009483333, + -3.50292E-4, + 0.0019827578, + 0.031635, + -0.028993925, + -0.013680852, + -0.0059206504, + 0.008488522, + -0.01171561, + -0.02067316, + -0.012217886, + -0.0020503087, + -0.0140113495, + 0.0185395, + 5.9381564E-4, + -0.002514983, + 0.012382783, + -0.019994864, + 0.00856357, + -0.0035830007, + 0.041796807, + 0.008869534, + 0.01292175, + -0.011214084, + 0.029850634, + 2.4462776E-4, + 0.014433611, + -0.017546153, + 0.01502092, + -0.014978099, + -0.00274282, + -0.0036388782, + 0.0100011835, + -0.014956299, + -0.008581529, + 0.0058674566, + 0.0037876095, + 0.023722222, + 0.012204254, + 0.0015840073, + -0.011793003, + 0.004680609, + -0.0037301378, + -0.005936069, + -0.0020050923, + 0.014590789, + -0.032741677, + -0.0162099, + 0.025367092, + 0.016386447, + -0.008372552, + 0.01608975, + -0.0014152717, + -0.0071997615, + -0.026348565, + 0.00942892, + 0.024396919, + -0.009238832, + -0.018084958, + 0.0048596533, + -0.003407982, + -0.011307053, + 0.009102341, + -0.0010008217, + 0.0095924735, + 0.009288552, + -0.0072411527, + -0.009861952, + 0.0064978655, + -0.0050340584, + 0.017427051, + 0.018736867, + -0.007534423, + 8.5736196E-5, + 0.0017187247, + 0.041728605, + -0.015403167, + 0.016660951, + -0.026043752, + -0.013263519, + 0.021187512, + -0.011831895, + -0.002834644, + 0.011439194, + -0.018214392, + -0.01909226, + 0.01202122, + 0.020729555, + -0.009082428, + 0.02572969, + 0.023159761, + -0.007960212, + -0.015945444, + -0.026373796, + -0.024634084, + 0.02710921, + 0.0028484, + -0.003807925, + -0.021261146, + -0.010714222, + -0.0029306167, + 0.016246328, + -0.003994211, + 0.0077273487, + 0.005295187, + -0.021863513, + -0.012660829, + 0.014461297, + 0.037911307, + -5.870172E-4, + 0.022957327, + 0.00148921, + -0.0017596111, + -0.0022926193, + 0.029478839, + -0.012828427, + 0.009976051, + -0.0382372, + -0.003870919, + 0.021781288, + -0.011336735, + -0.004911086, + -0.010354112, + -0.009786081, + 0.0074184677, + 0.007860178, + 0.01847504, + 0.0036263857, + 0.0041455673, + -0.01235476, + -0.009198566, + -0.0067662117, + 0.033979297, + -0.011234688, + 0.0048254174, + -0.02241586, + 0.010483891, + -0.0047541843, + 0.0040141135, + 0.031616926, + -0.015743582, + -0.0020055638, + -0.0048571425, + -0.009897489, + -0.011993213, + -0.018920256, + 0.029337322, + 0.005533779, + 0.011368955, + 0.005756458, + -0.0067156213, + 0.01760615, + -0.012484523, + -0.016846593, + -0.001413576, + 0.02228382, + -0.010237781, + 0.012140048, + -0.019863442, + -0.0027796938, + 0.017453281, + 0.01723053, + -0.009779692, + -0.010117537, + 0.009925743, + -0.02323356, + -0.0072697694, + 0.026736945, + -0.03311811, + -0.019032128, + 0.0062176725, + 0.001791267, + 0.015326989, + 0.004568461, + 0.007671694, + 0.009178535, + -0.030967847, + -0.0043259254, + 0.0011739511, + 0.013340121, + -0.036718026, + -0.007000994, + -0.0040557343, + -0.004994797, + 0.007957166, + -0.018590318, + -4.52206E-4, + 0.018572502, + -0.001706597, + -0.0072442344, + 0.0043656533, + -0.0030256663, + 0.019762324, + -0.0017841359, + 0.040307347, + -0.010588855, + 0.02140974, + 0.002227606, + 0.031244857, + -0.009186712, + -0.0037052864, + 0.03073242, + -0.010047361, + 0.0035760119, + -0.018128293, + -0.029302713, + 0.031046422, + 0.019045245, + -0.025491662, + -0.01092887, + 0.008964755, + 0.020672876, + 0.040952377, + 0.0014997381, + 0.0074570845, + 0.007498354, + 0.0015368577, + -0.009840743, + -0.00967418, + -0.0027884787, + 0.017033916, + 0.008271562, + -0.011996186, + -0.012648183, + 0.018317215, + -0.014478535, + -0.012807324, + -0.022076156, + 0.008842728, + -0.017841473, + -0.01651316, + -0.0017502335, + -0.0029410836, + 6.6658304E-6, + 1.523008E-5, + -0.011554918, + -0.011136846, + -0.0011984494, + 0.0072277025, + 0.012610584, + 0.025326408, + 0.009227659, + -0.0090994015, + -0.02063356, + -5.359875E-4, + -0.015691057, + -0.0037321767, + -0.021803673, + 0.001280795, + -0.012408143, + 0.020956587, + 0.0015950218, + -0.017027842, + -0.013762204, + 0.005834768, + -1.8950629E-4, + -0.0038593472, + 0.005066416, + -0.019023193, + 0.026917865, + 0.02971116, + 0.018780522, + -4.6013074E-4, + -0.0056655183, + 0.0011474411, + 0.0046115206, + -0.018375736, + 0.0068676765, + -0.0130992355, + -0.0075074243, + -0.0030715545, + 0.0026067852, + 0.0035714542, + -0.008686125, + 0.03160048, + -0.012489954, + 0.002961021, + 0.00633208, + -0.0038833835, + -0.0064432044, + 0.029977914, + 0.020037118, + 0.017025042, + -0.016201958, + -0.024869738, + 0.0031461497, + 0.0065617715, + 3.2551136E-4, + 0.01850768, + 0.014632867, + -0.01349468, + 0.024833161, + 0.0032715586, + 0.016411556, + 0.0012489886, + 5.4406933E-4, + 0.019872386, + -0.020677658, + 0.011950818, + 0.0062819324, + -0.016126575, + 0.010246875, + 0.0073755425, + 0.03302512, + 0.0046416023, + 0.0015337028, + 0.011764055, + 0.016971743, + 0.036799744, + -0.026254432, + 0.004013762, + 0.03387157, + 0.0081475135, + -0.012341099, + -0.017998785, + 0.021421557, + -0.02544647, + -0.029615747, + 0.01268464, + 0.023416447, + 0.02426927, + -0.020293415, + -0.0036910165, + 0.022636095, + -0.004313408, + -0.0021166424, + -0.0045608645, + 0.009698116, + 0.0057231304, + 0.03024403, + 0.0324612, + 0.0049853083, + 1.7095965E-4, + -0.017637419, + 0.017297078, + -0.022907285, + 0.035174537, + -0.015623936, + -0.014067122, + -0.0017464745, + 0.021683604, + -0.013779567, + 0.0052325, + -0.00734505, + -0.017338451, + 0.011254812, + 0.015650837, + 0.010990818, + -0.0019119015, + -0.015716594, + -0.041489784, + 0.021355942, + 0.013442227, + 0.0033073544, + 0.001655708, + 0.0082095, + -0.009368702, + 0.0057085105, + 0.029367113, + -0.022516845, + 0.02526079, + 0.027552258, + 0.007993347, + -0.0028905312, + 0.02082349, + 4.053515E-4, + -0.012040525, + -0.00271379, + -0.013354848, + 0.02119996, + 0.028811391, + 0.01559109, + -0.012289261, + -0.0021148426, + 0.02241046, + -0.016423857, + 0.0074388115, + 2.065229E-4, + 5.054285E-4, + 0.010457817, + -0.0022918517, + -0.0076483944, + 0.004032785, + 0.008598038, + -0.009290615, + 0.0014078731, + 0.0062108054, + -0.007083728, + -0.0154153425, + -0.033415835, + 0.02359836, + -0.014328699, + 0.00374141, + -0.01002472, + 0.030079018, + 0.008725586, + 0.005651889, + -0.003029527, + 0.008688756, + 0.009622348, + 0.009005839, + 0.0051305084, + 0.019692339, + -0.010682406, + -0.005798619, + -0.008262865, + 0.009642616, + -0.015969463, + 0.04747817, + 6.051004E-4, + -0.0071423263, + 0.007648832, + -0.005477791, + 0.021369789, + -0.009420382, + 2.025132E-4, + 0.004927106, + 0.0037865662, + -0.003608673, + -0.02228985, + -5.921579E-4, + 0.012618266, + -0.0034136414, + -0.031727515, + 0.0169996, + 0.032933284, + -0.0072894716, + -0.0052472837, + -0.014668852, + -0.02079256, + 0.036710143, + 0.011708435, + -0.0045219683, + 0.01318838, + -0.02622555, + 0.0012235646, + 0.014628202, + 0.0027719783, + 0.008359483, + 0.005718043, + 0.010915513, + -0.009336179, + 0.003764825, + -0.007235406, + -0.022088723, + -5.4608856E-5, + 0.024120104, + 0.0063471864, + -0.0073420745, + 0.01909421, + -0.010579307, + -0.013079139, + 0.0077206967, + 0.0043282434, + -0.019311672, + 0.009552694, + -0.0037689013, + -0.036917772, + 0.022000495, + -0.0061660283, + 0.0011308064, + 0.017895397, + -0.036837798, + 0.005205663, + -0.005970643, + 4.666318E-5, + -0.01624212, + 9.1061863E-4, + 0.004887138, + 0.005448875, + 6.172743E-4, + -0.004383673, + -0.008528356, + -0.0032014628, + 0.024768187, + 0.0012200064, + -0.01048499, + -0.00219051, + -0.009857152, + -0.028771155, + 1.7405505E-4, + 0.005095055, + 0.010896814, + -0.013207997, + -0.009022636, + -3.5287783E-4, + 0.02781109, + 0.010206346, + -0.014896203, + -0.02450209, + 0.0153561495, + -0.01767697, + -0.01040226, + -0.0096793715, + 0.007395967, + -0.036883518, + 0.017107714, + 0.0027662858, + -0.019468406, + 0.0045374874, + -0.0083213, + 0.008004623, + 0.009227831, + -0.011557015, + -0.0037731996, + 0.0102073755, + -0.0024372481, + 0.01297663, + -0.0134990625, + 0.005504165, + 0.00801066, + -0.009140138, + -0.0026163235, + 0.008424081, + -0.012790368, + -0.029440783, + -0.003845652, + -0.0169565, + 0.024611386, + 0.017732892, + 0.015642164, + 0.024148641, + 5.2714877E-5, + -0.0051552155, + -0.0035911293, + -0.017825518, + 0.0021104151, + -5.861555E-4, + 0.022478659, + -0.0023641798, + 0.029383482, + 0.0047122384, + -0.019690912, + -0.017852956, + -0.012084084, + -0.006345879, + 0.0091934, + 0.0032556236, + 0.020808375, + -3.6563168E-5, + 0.01662456, + -0.03307611, + -0.017360494, + -0.002174146, + 0.004972675, + -0.0067066355, + -0.010559727, + -0.015589405, + 4.313219E-4, + -0.0053642127, + -0.016484007, + 5.3381573E-5, + -0.014905081, + -0.010661058, + -0.0064332043, + -0.0075763473, + -0.022435918, + 0.0012204086, + 6.757052E-4, + 0.016642885, + 0.010856465, + 0.0027475634, + 0.011730015, + -0.02990096, + -0.007219672, + 0.013183961, + 0.017612137, + 0.0017387697, + 0.014636544, + -0.011214039, + 0.0072527737, + -0.030057196, + 0.01227235, + -0.024492336, + -0.019713985, + 0.02540064, + 0.0043717194, + 0.0017710972, + 0.001445589, + -0.019642211, + -0.013161646, + -0.0073450212, + -0.014404904, + 0.008914898, + -0.018768441, + -0.023490498, + -0.011837438, + 0.03673351, + -0.00885623, + 0.027789084, + -0.0055513624, + 0.021262346, + -0.010472474, + -0.0016614551, + -0.0045611258, + -0.014268732, + 0.002074827, + 0.0059663383, + 0.021184945, + 0.006913593, + 0.009433116, + 0.005293527, + 7.0795405E-4, + -0.0024006, + 0.0070174374, + 0.0052220984, + 0.008955443, + -6.2501506E-4, + 0.0057316744, + 0.016584069, + 0.010523364, + -0.004238028, + 0.0067359842, + 0.019391317, + 7.042604E-4, + 0.014031853, + 0.005518395, + 0.022567267, + -0.0019788453, + -0.0061577684, + -0.01342358, + 0.03433741, + -0.012647873, + 0.009708018, + -0.013049427, + -0.021610644, + 0.02295466, + 0.007933277, + -0.006499034, + -0.013720811, + -0.0048071896, + -0.009446003, + -0.02411612, + 0.012435745, + 0.009985823, + -0.0047481786, + -0.011682744, + -0.00437601, + 0.030664949, + -0.00917022, + -0.014656794, + -0.009036089, + -0.0062343497, + -0.0019131219, + 0.0014970276, + -0.006992674, + -0.023411738, + 0.02562175, + 0.01342915, + -0.0063218744, + 0.0019976287, + -0.004153928, + 0.0069753807, + 0.003105817, + -0.015649617, + -0.037349187, + 0.012468463, + -0.0048893113, + -9.881732E-4, + 0.013400622, + -0.001839798, + 0.01480156, + -0.019418452, + 0.022389917, + -0.00952641, + 0.03494515, + 0.013668548, + 0.0012480599, + 0.0010230347, + -0.009155673, + -0.002481343, + -0.0031270396, + -0.013968558, + 0.013517457, + 0.018482018, + 0.0071119503, + -0.013362673, + 0.002565282, + -0.0022240211, + -0.020110518, + -0.014334835, + -0.00460162, + 0.0128177265, + -0.020270668, + 0.00690759, + -0.0014701883, + 0.018436257, + -0.015268674, + 0.003314659, + -0.010829976, + 0.018042123, + -0.005787035, + 0.011723048, + 0.009171502, + 0.009456929, + 0.009752112, + 7.247886E-5, + -0.0046112873, + 0.0046442584, + 0.004581805, + 0.012666023, + 0.011046234, + 0.003149857, + 0.022296451, + 0.005958652, + -0.008598468, + 0.0044572777, + -0.015828867, + 0.0029927162, + 0.013636569, + -0.017379029, + -0.014977691, + -0.01451431, + -0.020055687, + -0.026540494, + -0.0044134166, + 0.002452694, + 0.012644719, + -0.012247369, + -0.0048495196, + -0.0075379424, + -0.013139779, + -0.017008875, + 0.0076975385, + 0.04339002, + 0.0127471015, + -0.011226319, + 0.011807212, + -8.170361E-4, + -0.0044459915, + -0.012794026, + -0.02298654, + -0.008566783, + -0.0011739784, + -0.0051762257, + 0.006475924, + 0.010190353, + 0.015421768, + -0.007764113, + 0.0045652557, + 0.005119171, + -0.009775884, + 0.0121615585, + 0.00645304, + 0.009939799, + -0.004897371, + -0.0059817038, + 0.009769832, + -0.0029202602, + -0.012095062, + -0.0012633902, + 5.267268E-4, + 0.01474859, + -0.014793561, + 3.3996758E-4, + 0.03625447, + -0.010711161, + -0.009972367, + 0.009173226, + -0.0022871715, + -0.0019382742, + -0.015229395, + -0.01606479, + -0.006018444, + 0.0031376565, + 0.011361981, + 0.009844094, + 0.011992241, + 0.014560684, + 0.0075451727, + 0.028700918, + 0.015456679, + -0.01903726, + 0.0041565546, + 0.002853317, + 0.017635135, + -0.011405697, + 0.0017886262, + 0.001275995, + 0.01048957, + -0.017685894, + 0.0014577889, + 0.006982658, + 0.013718963, + -0.014721664, + 0.014948249, + 3.7648584E-4, + -0.018556742, + 0.025401227, + -0.001662684, + 0.01970954, + 0.034680933, + 0.0053273686, + -0.012422203, + -0.00979236, + -0.0015135998, + 0.0064782873, + 0.010692946, + 0.0013178635, + -0.016316518, + 0.0044816304, + -0.0015783937, + 0.002293437, + 0.0215459, + 0.013312109, + -0.027832014, + 0.001778737, + -0.025907585, + 0.020260967, + -4.7108476E-4, + -0.014359838, + -0.042533126, + 0.0011578986, + -0.014942687, + 0.009779021, + 0.027633546, + -0.023156837, + 8.647884E-4, + 3.0796902E-5, + -0.008092142, + -0.017396174, + 0.0036636954, + 0.007840246, + 0.0029425442, + 0.013439284, + 0.010001429, + -0.01350707, + 0.0025402093, + 0.011898457, + -0.0031745515, + 0.012201895, + 0.012709375, + -0.012800581, + -0.0024418652, + -0.0018029067, + -0.008874158, + 0.003955565, + 0.016287943, + -0.016460828, + -0.008354897, + -0.020377547, + -0.005632468, + -0.020224923, + -0.03089983, + -0.0012598963, + -0.013436384, + -0.007851673, + -0.0012624973, + -0.020355469, + 0.020210328, + 0.0034762954, + -0.046219714, + -0.010275563, + 0.0075782877, + -0.0047737258, + 0.006711136, + -0.0148644885, + 0.0070817573, + -0.010786002, + -0.0033101488, + -0.03791519, + 0.014839671, + 0.009098952, + -0.007764703, + 0.0050841896, + -0.005334019, + -0.023199564, + -0.005098541, + -0.0011442566, + -0.0011258374, + 0.0042233886, + -0.030095622, + -0.0024472596, + 0.0033092576, + 0.020397374, + 0.013279628, + -0.0061756065, + -0.011796209, + -0.02372222, + 0.026212454, + 0.007700068, + -0.033340435, + -0.012830915, + 0.0073678326, + 0.014647403, + -0.010349336, + -0.0049013887, + -0.022230372, + -3.9241154E-6, + 0.027540946, + 0.005480144, + 0.011979974, + -0.0077160643, + -0.0075226785, + 0.008457484, + -0.023839809, + 0.0039189085, + -0.02823869, + -0.008449868, + -0.0029274952, + 0.0059441268, + -0.006681764, + 0.0022756208, + 0.013849237, + 0.0018886483, + -0.005342959, + 0.021204196, + 0.017616343, + 0.005195588, + 0.011883631, + -0.01181356, + -0.006534986, + -0.017157467, + -0.0049748328, + -0.0020078071, + -0.0062434613, + -0.0068270094, + -0.015534786, + 0.010350456, + -0.0015132668, + 0.005887001, + -0.012666702, + 0.014439272, + -0.0033152348, + 0.021725828, + -0.0021630344, + 0.011647002, + -0.007864065, + -0.029190263, + -3.153786E-4, + 0.0028217172, + 0.0132212555, + 0.010005755, + 0.0054123937, + 0.005077314, + 0.004356933, + 0.005526598, + 0.01584523, + 0.0026948443, + -0.02498641, + 0.040320575, + 0.018707769, + 0.008202322, + 0.012694957, + 0.027946508, + 0.0010108462, + 0.024645912, + 0.0033447496, + -0.028938208, + -0.0102695925, + 0.011691427, + -0.018281013, + 0.038347058, + 0.018879175, + -0.028005384, + 0.009495093, + 0.0019480931, + 0.0022607574, + 0.00566841, + -0.0029008142, + -0.019583976, + 0.008202469, + -3.765377E-4, + 0.007854492, + 0.016149903, + -0.018164475, + 0.010454394, + -0.014841865, + -0.0029946254, + 0.0035803793, + -0.009707036, + 0.041777432, + 0.01931288, + -0.018833952, + 8.006371E-4, + -0.021220488, + 0.018640386, + -0.0223689, + -0.0143469, + -0.004591737, + -0.019603191, + -0.029937956, + 0.0044306475, + -0.019468226, + -0.020567687, + 0.02791133, + -0.008493816, + 0.031158729, + 0.0037396846, + -0.005293319, + -0.0059288205, + 0.0092346575, + -0.012346034, + 0.007281152, + 0.012268722, + 0.0072749867, + -0.020326562, + 0.021458764, + -0.02293339, + -0.025539683, + -0.011437516, + 0.006722941, + -0.0049811853, + -0.019600773, + -0.0055872602, + 0.018957926, + -0.007518906, + 0.013475113, + 0.0030012198, + -0.011390811, + -0.020781063, + -0.012360861, + -0.010078897, + -3.4131092E-4, + -0.0070856893, + -0.008676681, + -0.029347613, + 0.0037664773, + 0.0032517791, + -0.020670911, + 0.013614389, + -0.010079179, + -0.0034886156, + 0.017175578, + 0.014923382, + -0.014116529, + 0.036129154, + 0.0044689323, + 0.010966494, + -0.040093556, + 0.022246514, + 0.008092068, + -0.01684396, + -0.014209382, + -0.027555736, + 0.0087709045, + -0.02655629, + 0.0037909779, + 0.024798544, + 0.009503152, + -0.00171626, + -0.0048948796, + 0.011416319, + -0.014798456, + -0.0060639586, + -0.016987134, + 0.014739223, + -0.0049464963, + -0.015765127, + -0.004513966, + -0.006013962, + -0.022128006, + -0.0077369097, + 0.032883305, + 0.0033377823, + 0.015105536, + 0.0037104662, + 0.0018364285, + 0.0012914872, + -0.017765533, + 0.0032221877, + -0.018467333, + 0.018275611, + 0.027026769, + -0.01887876, + -0.0029455898, + 0.004052322, + 0.024071561, + 0.001642201, + -0.0050645536, + -0.0040312773, + 0.020250069, + 0.036810994, + 0.009682267, + 0.0014188281, + 0.008405344, + 0.010676366, + -0.0037162178, + 0.0032693397, + 0.012643591, + -0.010559637, + -0.011543473, + 0.015974788, + -0.02867879, + 0.013807314, + 0.008059683, + -0.019968404, + -0.023950296, + -0.0068846312, + 0.03137886, + 0.008829785, + 0.030133395, + 0.030755378, + 0.02262188, + -0.011866501, + -0.0024769786, + -0.027242346, + 0.023176108, + -0.011280445, + 0.023392366, + 0.0017059272, + -0.004063411, + 0.0039427704, + 0.0037848828, + -0.011801035, + -0.0067585814, + 0.016307378, + -0.016384449, + -0.018961368, + -0.024471879, + -0.008931799, + -0.008916353, + -0.008891448, + 0.023782045, + -0.005639122, + 0.015683845, + 0.043986067, + 0.0039266776, + -0.02261046, + 0.004806269, + 0.0068245735, + 0.017881725, + -0.009356494, + 0.0143201025, + 0.0036646135, + 0.0077655064, + -0.016939022, + 0.013485282, + 0.0039702, + -0.0010285798, + -0.03122865, + -0.014781418, + -0.0033936389, + -0.018024959, + 0.005111058, + 5.858582E-4, + 0.01966788, + 0.002894116, + 0.018345412, + -0.0067112837, + -4.114944E-4, + 0.007924572, + -0.00642316, + -0.01224698, + -0.034393407, + -0.022493567, + 0.012809788, + -0.009453189, + 0.01689875, + 2.5928006E-4, + -0.01380981, + -0.0068147047, + 0.024252096, + -0.016529815, + 0.024062678, + 0.001726273, + 8.3291176E-4, + 0.003451163, + -0.033943605, + 0.009910402, + 0.0021914707, + 0.0030611677, + 0.019724077, + 6.9031776E-5, + -0.01102609, + 0.0049504307, + 0.013573684, + 0.00623088, + 0.009183164, + -0.012464692, + -0.012656371, + -0.0042307004, + -0.0060076723, + 0.006759789, + 0.0075512845, + 0.006106199, + 0.018643996, + 0.03993121, + 0.011644213, + 0.004061862, + 0.00404754, + -0.015994212, + 0.012544894, + -0.028359579, + 0.020096898, + -0.007814168, + -1.324241E-4, + -0.0018168201, + 0.0011320546, + 0.022508286, + 0.004135688, + -0.012806147, + 0.0011369323, + -0.011244639, + 0.0017469169, + 0.03952399, + -0.0024027755, + 0.011865546, + -0.017194359, + 0.022035562, + 0.009478463, + 4.2783187E-4, + -0.003216872, + -0.016144149, + 0.015108295, + -0.018763272, + -0.034997396, + 0.027370555, + -0.0033399789, + 0.021594424, + -6.494733E-4, + -0.01885723, + -0.010723466, + 0.018280905, + -8.090071E-4, + -0.017611064, + 0.0079402365, + -0.0022427493, + 0.018118273, + 0.009283561, + 0.0021042014, + 0.004602553, + 0.0096376585, + 0.009548735, + -0.02905147, + 3.1113502E-4, + -0.0070920773, + -0.0108769955, + -0.0072313426, + 0.025121033, + -0.008411582, + 0.0031708095, + -0.018058736, + -0.013250654, + 0.022133471, + 0.0063343057, + -0.025423765, + -0.013230882, + -0.021540966, + 0.0067693987, + 0.017452069, + -0.0071864277, + 0.013602321, + -0.004276812, + 0.002970349, + -0.020247621, + -0.0288896, + 0.014701828, + 0.004601912, + -0.0010585259, + 0.0012407099, + -0.020388834, + -0.0137966825, + 0.015042545, + -0.0015818919, + 0.021367982, + -0.010749885, + -0.012876518, + 0.0070236335, + 0.0062099714, + 0.009050684, + -0.0033295716, + 0.0042386786, + -0.024897385, + 0.006189589, + -0.038695827, + -0.008848674, + 0.0021928204, + 0.009146129, + -0.0040795454, + -0.038632207, + 0.0052079437, + 0.012529289, + 0.005751635, + -0.017281184, + 0.014774992, + 0.006704367, + 0.013440947, + 5.2957726E-4, + -0.00677, + -0.0019153442, + 0.021223648, + -0.007225468, + -0.0104369605, + -0.019737534, + 0.014226973, + -0.0023856722, + 0.0018593008, + -0.023835482, + 0.0047662645, + -0.0031022758, + 4.697096E-4, + 0.008818432, + 0.017549558, + 0.012541261, + 0.0015180545, + 0.0028918264, + 0.0016215178, + -0.005784502, + 0.0033675162, + 0.00842157, + 0.014012429, + -0.0027432663, + -0.008759331, + -7.1324076E-4, + -0.016573232, + -0.0063954107, + -0.02126965, + 0.01081528, + -0.019931667, + 0.021974208, + -0.003442552, + -0.0032161258, + 0.010656143, + 0.0043547256, + 0.011474752, + 0.025731111, + -0.015607747, + -0.019919557, + 0.008751802, + -0.0067335037, + -0.011939741, + 0.006121655, + 0.020715598, + -0.032724306, + -0.0012944894, + -0.0018756472, + 0.012874722, + 0.0054806764, + 0.0011302256, + -0.00906999, + 0.008404909, + 0.0044765454, + 0.0030216058, + -0.003847633, + -0.015130477, + 0.012028275, + 0.009750688, + 0.020691963, + -0.0016944611, + 0.0032202182, + 0.029125346, + -0.008847994, + 0.01470929, + -0.010918972, + -0.008571441, + -0.022087399, + -0.004563018, + -0.012783708, + -0.013468657, + 0.013343673, + 0.010578022, + -0.012465505, + 5.126564E-6, + -0.0040759835, + -0.009298179, + 9.5501693E-4, + 0.01834694, + -0.013413066, + -0.009495207, + -0.0049992604, + -0.0017981784, + 0.012935779, + -0.038182605, + -0.025070364, + -0.03229126, + -0.012203872, + -0.014881414, + -5.6533015E-4, + -0.00685632, + -0.010980708, + 4.143669E-4, + 0.0071349754, + 0.020005357, + 0.0026695533, + -0.0019185733, + -0.030051695, + -0.023703178, + -0.013116759, + -0.0057751727, + -0.013985713, + 0.0037890046, + -0.011772576, + -0.009132446, + 0.004202793, + -0.029673405, + -0.03186999, + -0.014018988, + -0.018745238, + -0.0118565895, + 0.005368126, + -0.0049573556, + -0.0056900335, + -0.026404325, + -0.030874547, + 0.0024042393, + 1.6314388E-4, + -0.008023455, + -0.011207666, + 0.016582083, + -4.9620805E-5, + 0.007399191, + -0.0016026415, + 0.010669368, + 0.0052543115, + 0.00528985, + 0.021877814, + -0.005539752, + 0.013465788, + -0.01677589, + 0.03481154, + 0.017612588, + -0.01710813, + 0.009454229, + -0.015106641, + 0.0024486557, + 0.009441995, + 0.010916085, + 0.028080456, + -0.031823967, + 0.0060963375, + 0.005406446, + -5.9642707E-4, + -0.015271604, + 0.0048040505, + 0.0013279642, + 0.03418406, + -0.01824499, + 0.006524872, + -0.035837222, + 0.009290131, + -0.026685352, + -0.026762925, + 0.013140728, + 0.013108217, + 0.021518495, + 6.737141E-4, + 0.008734796, + -0.002701066, + -0.011886785, + -0.038110957, + -0.009219157, + -0.025986267, + -0.011270171, + -0.02024434, + -0.010164116, + 0.0024880527, + 0.012067098, + -0.016007883, + 0.005805737, + 8.3300483E-4, + 0.016950443, + 0.02770167, + -0.0042560226, + -0.016467802, + -0.0011871757, + 0.0028918067, + 0.006068199, + 0.0032791155, + 0.007345481, + -0.028313857, + 0.01494573, + 0.0056734136, + 0.007978079, + -0.008545817, + 0.032886792, + -0.031916674, + -0.01034586, + 0.0012709881, + 0.034492187, + -0.008465268, + -0.016042767, + 0.02018157, + 0.009786334, + -0.012411161, + 0.0035981731, + 6.867898E-4, + -0.015306403, + 0.019712606, + 0.010926779, + -0.007163753, + -0.008808445, + -0.019684974, + -0.007027683, + 0.012525146, + -0.010753846, + 0.014950832, + -0.026193185, + 0.01751591, + -0.0041150586, + -0.0102009205, + 0.011690503, + 0.0029066026, + -0.016584046, + 0.033771254, + -0.012101778, + 0.004286615, + 0.015024676, + -0.010752754, + -0.02467782, + 0.009226244, + 0.014276751, + -0.025330227, + 0.010106656, + 0.021038022, + 0.017788133, + 0.010401193, + -0.0075408965, + -0.008703331, + 0.016064089, + -0.0034217488, + 0.011158651, + -0.023375543, + -0.0060444637, + 0.004212017, + -0.005268759, + 0.027107775, + 0.0148658985, + 0.007982955, + 0.004756363, + -0.020257816, + 0.011420098, + 0.0020622197, + -0.0067143003, + -0.007205876, + 0.014962785, + 0.006366476, + 0.006226761, + 0.013775736, + 0.0139166275, + 0.0054466836, + 0.02490225, + -0.0043956297, + -0.014149159, + 0.009745348, + 0.009834459, + -0.022210341, + -0.034560725, + 0.016924841, + -0.009547838, + -0.0059644463, + 0.017286284, + 0.012575442, + -0.043839388, + -0.028402265, + 0.009023942, + 0.027013103, + 0.011492324, + 3.9117195E-4, + 0.013502943, + 0.01579339, + 0.022605915, + 0.004024871, + 0.01938234, + 0.021721417, + -0.011677981, + -0.018445661, + -0.039068535, + -0.0038781897, + -0.013360415, + -0.014947995, + 0.009249489, + 0.035615794, + -0.008064773, + -0.0076918886, + 0.0027680162, + 0.009928386, + -6.22482E-4, + -0.02017583, + 0.022377105, + -0.008516178, + -0.034052905, + 2.6015306E-4, + -2.745834E-4, + -0.003534757, + 0.03226079, + -0.0032205083, + -5.404032E-4, + 5.173267E-4, + 0.0018172057, + -0.0063800225, + -0.008968504, + 0.017209155, + -0.024331091, + 0.0053759436, + -0.003916574, + -0.0036413097, + -0.010293562, + -0.009038692, + -0.016515933, + 0.04062568, + 0.034218203, + -0.00404423, + -0.013777613, + -0.023928775, + -0.0065415036, + 0.02917321, + 0.016163992, + 0.0074353423, + -4.9779745E-4, + 0.015205201, + 0.008679712, + -0.0046482473, + 0.012171268, + 0.019683108, + 0.0061699906, + 0.0075052558, + -0.015081598, + 0.00422954, + 0.007181571, + -0.005587842, + -0.0035665059, + -0.005783986, + -0.014596738, + 0.00615289, + 0.010882683, + -0.0064579407, + 0.006025572, + -0.0051293885, + -0.0071282233, + -0.0031310432, + 0.0279733, + 0.0058868546, + -0.011519531, + 0.017970916, + -0.009861975, + 0.0054343, + 0.0135840075, + 0.0010133858, + 0.006425367, + 0.00166824, + -0.0033308316, + -0.006326008, + 0.005702736, + 7.4715866E-4, + 0.024055362, + -0.020870324, + 0.0042276992, + 0.02880508, + 0.0141971875, + 0.027674869, + -0.013293077, + -0.002968281, + -0.0067300685, + 0.013556848, + 0.025179656, + 0.003696523, + 0.011926826, + 0.008972823, + -0.017992135, + -0.011815663, + -0.009027864, + 0.03820768, + 0.008973625, + -0.0032931918, + 0.001307754, + 0.0043577338, + -0.0073621906, + 0.020389859, + -0.0052280673, + 0.0075108544, + -0.011165095, + 0.020044751, + 0.00963117, + -0.0048722336, + 0.0023274745, + -7.6451246E-4, + 0.024288557, + -0.0092127025, + -0.011132515, + 0.0069399523, + 0.021833064, + -0.0026433284, + 0.0053442824, + -0.017244877, + 0.026220223, + 0.018475818, + 0.01099086, + 7.630641E-4, + 0.0027231495, + -0.018906988, + -0.0059888987, + -0.0023977037, + -0.004958222, + 0.005695069, + 0.015140597, + -0.013361251, + -0.008046555, + 0.0038387692, + 0.020148547, + 0.010983651, + -0.021237785, + -7.297418E-4, + -0.011020314, + 0.013149273, + 0.019556323, + -0.0029596789, + 0.012578339, + -0.0013683809, + -0.010358603, + -0.003456752, + 0.005463742, + -0.035890706, + -0.0014451541, + -0.01968759, + -0.020267798, + -0.0084499, + -0.011692002, + -0.024773294, + -0.022210704, + 0.0063673975, + -0.01180141, + -0.016595135, + -0.0027864282, + 0.01028703, + 0.020713797, + 0.012166093, + 0.015315512, + -0.0070340275, + -0.020872967, + -0.015732817, + -0.006335076, + 0.030979916, + 0.016372407, + 0.0131619, + -0.027763918, + -0.0071248403, + 0.01193707, + -0.008916002, + -0.0015593856, + -0.0014597668, + -0.018541697, + -0.0118378615, + -0.012857266, + 0.0038061175, + -0.009551886, + 0.0160559, + -8.682619E-4, + 0.014569633, + 0.0063751796, + -0.019348538, + -0.0014171931, + -0.0017893838, + 0.020310868, + -0.03410759, + -0.015121425, + -0.0023682886, + -0.0042703734, + -0.0061751483, + -0.00899993, + -0.025131105, + 1.7898521E-4, + 0.013103379, + 0.017026406, + 0.0063614757, + 4.455608E-4, + -0.02277406, + -0.018938947, + -0.008080231, + -0.02343826, + 0.0035321722, + -0.00780604, + -0.017659966, + -0.010762693, + -0.004006299, + 0.020135613, + 0.02034968, + -0.034615677, + 0.032018457, + 0.0066895885, + 0.006670867, + 0.0018495388, + -0.022197817, + 0.0030634229, + 0.009941907, + 0.007087349, + 0.0073325206, + -0.016483866, + 0.007096995, + 0.0074072066, + 0.0029889187, + 0.012029965, + 0.021985821, + -0.010457833, + 0.011527468, + 0.0074291965, + -0.006150016, + 0.006151637, + -0.012959578, + 0.010766743, + -0.015340887, + -0.029618029, + 0.004971138, + -0.007344637, + 0.014172311, + -0.01348738, + 0.002544773, + 0.008942461, + -0.017147511, + -0.014763823, + -0.006577427, + 0.02429509, + -0.007915387, + 0.02062192, + -0.0013666259, + -0.008380872, + 0.009792806, + 0.006113901, + 0.011732056, + 0.013646864, + -0.02879218, + -0.012289598, + -0.002287621, + 0.0056172335, + 0.013801232, + 3.3866927E-5, + 0.005867218, + -0.025511127, + -0.022404766, + 0.0081910435, + 0.0142378155, + -0.022214234, + -0.0018101307, + 0.005285529, + -0.013860111, + -0.011123798, + -0.014030602, + 0.0030298906, + -0.011858722, + 0.0049576224, + -0.0037838055, + -0.021609534, + -0.015468604, + -0.009848937, + -0.02220253, + 0.01270021, + -0.011685105, + 0.0025329667, + 0.0061488543, + -0.015007466, + 0.01972806, + 0.012941458, + 0.021996563, + -0.0056443764, + -0.0137237385, + -2.1108819E-4, + -0.0214022, + -0.016301185, + -0.011228941, + -0.00966555, + -0.014699627, + 0.01793676, + -0.0035298897, + -0.018337289, + 0.005763944, + 0.0070773414, + -0.025245044, + 9.0387044E-4, + -0.0051838667, + -0.01197346, + -0.01619096, + 0.031901587, + 0.0012720223, + 0.012876173, + -0.028779758, + -0.0037460355, + 0.030812029, + -0.020667389, + -0.0022493303, + -0.015861398, + -0.0062457537, + 0.009801479, + 0.01716773, + -0.006496382, + 0.009813977, + -0.020990115, + -0.017374665, + 0.014209513, + 0.010731925, + 0.006793279, + -0.025623139, + -0.01647286, + -0.0030765818, + -0.00897356, + 0.014055822, + 0.0371615, + -0.019488072, + 0.05791741, + -0.005540398, + 0.012387862, + -0.0058368887, + 0.008204392, + 0.024986224, + 0.019289652, + -0.014262759, + 0.0068881544, + -0.020128906, + 0.0011864147, + -0.03606069, + -0.022864379, + 0.0066093965, + -0.00845699, + 0.003927924, + -0.019961488, + -0.01651354, + -0.02031041, + -0.011336657, + 0.023227647, + 0.022120973, + -2.3390424E-4, + -0.0066688657, + -0.019191185, + 0.0017419101, + -0.016239677, + -0.0026125042, + 0.009325541, + -0.006437621, + -0.0024271954, + 0.009124009, + -0.0010992538, + -0.0048452346, + 0.0028262183, + 0.004205314, + 0.0058434866, + 0.0142081035, + 0.005709819, + 5.9672213E-5, + -0.0036258004, + -0.010930052, + -0.015887259, + 0.0081279315, + -0.013956772, + -0.0039322213, + 0.014157363, + 0.002596911, + -2.2276698E-4, + 0.01325482, + 0.031134231, + 0.0040192963, + -0.003110978, + 0.007623011, + 0.007812845, + 0.008662691, + -0.0033013052, + -0.011603073, + 0.020394435, + 8.409826E-4, + -0.003079545, + -0.011325007, + -0.0064747897, + -7.555949E-4, + 0.019784322, + -0.027281184, + 0.0011828, + -0.013524574, + -0.016243769, + 5.587885E-4, + -0.01063161, + -0.020301435, + 0.010719619, + 0.0059509543, + 0.020221168, + -0.011348658, + 0.020565053, + -0.014954288, + 0.0067071277, + 0.01201368, + 0.0011965449, + 0.02993541, + 0.010712869, + -0.008590982, + 0.00375961, + 0.0038625726, + -0.0068932683, + -0.011816102, + -9.200594E-4, + 0.0020601875, + -0.012544729, + -0.0022056864, + -0.0056932275, + -0.01977824, + -0.012021744, + 0.017307518, + -0.023982536, + -0.016815232, + -0.014694455, + 0.010584726, + 0.0025297597, + 0.0146760475, + 0.027630152, + 0.009792173, + 0.0023524424, + 0.013499315, + -0.012411022, + 0.011390031, + -0.011638413, + -0.006168273, + 0.025199708, + -0.0029832008, + 1.8777706E-4, + -0.012411539, + 0.015855346, + 0.0017753097, + -0.019081783, + 0.03537148, + 0.013794599, + 0.0076078246, + 0.00394686, + -0.025131438, + -0.006666039, + -0.005120205, + 0.025282629, + -0.021947157, + -0.0077474727, + 0.012566864, + -0.0025158417, + -0.001940313, + 0.004775632, + 7.2545436E-4, + 0.01564158, + 0.01440837, + -0.016268345, + -0.009567843, + -0.0051780646, + 0.012612406, + 0.031990882, + 0.025732921, + -0.007994218, + -0.01667655, + -0.032243617, + -0.0070618223, + -0.0071143294, + 0.0059696925, + -9.94185E-4, + 0.019952284, + 0.0111864, + -0.009331091, + -0.012765073, + 0.0044752127, + 0.016245369, + 0.009232982, + -0.04302304, + 0.0072532804, + 0.0039476, + 0.025791416, + -0.015686756, + 0.028735086, + 0.03912419, + 0.026115343, + 0.011217336, + 0.036747668, + 7.14093E-4, + -0.014541193, + 0.030974079, + 0.0025271727, + -0.017342987, + 0.005540689, + -0.024596183, + -0.0038477818, + 0.0018490776, + 0.010942426, + -0.007089614, + -0.0100214435, + -0.014028817, + 0.028938815, + 0.002042804, + -6.5267173E-4, + 0.0057509844, + -0.007170199, + 0.011542058, + -5.756942E-4, + 0.011799421, + -0.005266381, + 0.007630156, + -0.012273611, + -0.008151174, + 0.013181317, + -0.008359602, + -0.033376664, + 0.015612276, + 0.02440276, + 0.009238862, + -0.012333113, + 0.008840681, + 0.044972442, + 0.02420311, + -0.0064206785, + 0.009954306, + 0.019117363, + -0.029684275, + -0.014457863, + -0.030119048, + 0.005212457, + 0.019439304, + -0.0037906494, + -0.011992495, + 0.025098221, + -0.014621331, + -0.0043867943, + 0.02349235, + -0.004370106, + 0.007994104, + 0.012262097, + -0.009532124, + 0.008711868, + 0.02089116, + -0.0035955203, + -3.4188663E-4, + 0.0019246335, + 0.004751334, + -0.012164141, + 0.014853817, + 0.01923446, + 0.016700186, + -0.016726498, + 0.0038479017, + 0.005230352, + 0.004447628, + -0.030157708, + -0.009663924, + 0.0139451865, + 0.009379136, + 0.01448722, + 0.014871118, + -0.017296385, + -0.009150497, + 0.012964693, + -0.010040739, + 0.016962232, + 6.2192266E-4, + -0.012560444, + -0.019522274, + -0.033000235, + 0.012112534, + 0.013879449, + 0.015181831, + 0.0025050235, + -0.008462214, + 0.002899852, + -0.015750235, + -0.020586278, + 0.011551156, + 0.025936702, + -0.01089434, + -0.009067863, + -0.027059656, + 0.014073875, + 9.936964E-4, + -0.010951095, + 0.016786229, + 0.043350093, + -0.020464798, + 0.003768751, + -0.0127073, + 0.011273279, + -0.0138348965, + 0.01581468, + 0.019939154, + 7.4092735E-4, + -0.005096095, + -0.0012525686, + -8.2453055E-4, + 0.0025080633, + -0.0106812725, + -0.0038493043, + 0.004311236, + 0.026602244, + 0.012394853, + -0.014623399, + -0.0043340665, + -0.007761821, + -9.788643E-4, + 0.004676166, + -0.02292218, + -0.026810635, + -0.0016116868, + -0.010068866, + 0.015578929, + 0.012857296, + -0.011384799, + -0.013681753, + -0.010053131, + 0.0018346137, + -0.004423898, + -0.002567927, + -0.010067763, + -0.0073851226, + -0.010810589, + 9.987225E-4, + 0.00851332, + 0.010122086, + 7.383332E-4, + 0.01012685, + -0.015698541, + 0.022947172, + 0.022024201, + 0.008895286, + -0.022873985, + 0.020430326, + -0.017798934, + 0.028871557, + 0.034930266, + -0.008595138, + 0.008424662, + -0.0024283999, + -0.003770758, + 0.011029306, + -0.0051134443, + -0.007674389, + 0.012915544, + 3.6181085E-4, + -0.013575701, + 0.015435212, + -0.013697665, + -0.030208496, + 0.016594594, + -0.009030947, + -0.0059032408, + 0.024151633, + 0.0088413, + -0.013651266, + -0.0013048684, + -0.007927644, + 7.2572246E-4, + -0.0040969998, + 0.011498307, + -0.03627994, + 0.030395653, + -0.010467322, + -0.020582756, + -0.002555841, + 0.02980876, + 0.008167977, + -0.022958009, + 8.561599E-4, + -0.009013806, + -0.027695715, + -0.0027758614, + -0.0022885236, + -0.012927879, + -0.0049081827, + -0.0049769753, + -0.022294754, + 0.009278941, + 0.0067107067, + -0.019358499, + -0.008086392, + 0.0048999893, + -0.03075887, + -0.004664283, + -0.014571114, + 0.042069264, + 0.0075445636, + 0.019998595, + -0.021249825, + -0.0038717585, + -0.020342918, + 0.010062523, + -0.007702169, + -0.013673503, + -0.03066831, + 0.009097473, + -0.014161667, + -0.012364835, + -0.035017233, + -0.011596045, + 0.002521722, + -0.0088492995, + -0.003173424, + 0.025724713, + -0.016522694, + 0.0020298585, + 0.014566125, + -0.018221164, + 0.021597814, + -0.016267935, + -0.012861476, + -0.014876324, + -0.03523348, + -0.0029601236, + 0.0038304867, + -0.007733999, + 0.017838538, + 0.02084483, + -5.1632285E-4, + 0.0020564995, + -0.0105626695, + 5.71163E-4, + 0.014312297, + 0.027215486, + -0.011676379, + 0.006205371, + -0.015582581, + -0.008736629, + -0.022501603, + 0.01209306, + -0.02513385, + -0.0040141228, + -4.6286854E-4, + -0.03516077, + 0.012161684, + -0.017149786, + -0.009966786, + 0.019159222, + -0.0010798214, + -0.012066702, + 0.015072471, + -0.019977972, + 2.796759E-5, + 0.0051189368, + -0.009625033, + 0.016947439, + 0.01935972, + 0.0072327554, + -0.0025039262, + -0.0022521156, + 0.01755013, + 0.036762662, + 0.007496767, + -0.015048049, + 0.022318574, + 0.03764747, + -0.01085542, + -0.011278692, + 0.017609634, + 0.0019591118, + 0.026205033, + 0.0072120545, + -0.008573785, + 0.010917814, + 0.011711485, + -0.008619836, + -0.00104779, + 0.015306088, + -0.01283099, + -0.0054885442, + -0.004550049, + 0.012547024, + 0.007958821, + -0.030337995, + -0.0057617, + 0.024387265, + -0.015702743, + 0.010586979, + 0.004512728, + -0.026586872, + 5.7786464E-4, + -0.012470599, + 0.008041344, + -0.0043879524, + -0.0056184814, + -0.00288371, + -0.0058670626, + -8.39613E-4, + 0.008735422, + 0.015757343, + -0.002497112, + 0.03294219, + -0.011003885, + -0.001148487, + 0.014188078, + 0.0038810195, + 0.0049392143, + -0.012524203, + -0.022266522, + 0.02359852, + -0.0063780546, + 0.016122377, + -0.011363416, + -0.019185044, + 0.0030923754, + 0.024355689, + -0.025167486, + -0.03098386, + 0.0019452622, + 0.007100657, + -0.016868474, + -0.046974186, + 0.0022971751, + -0.019575728, + -0.018969849, + -0.027751302, + -0.0053384057, + -0.019514877, + 0.0011577363, + 0.010902035, + 0.0070335157, + -0.007765348, + 0.01316894, + -0.021836799, + -0.0037739493, + -0.011789272, + -0.0059277443, + -0.0035330337, + -0.009469788, + 0.012747454, + 0.0017912982, + 0.01869689, + -0.026306147, + 0.00206326, + 0.011983772, + 0.0152959805, + 0.0052458253, + 0.0011594151, + 0.021823235, + 0.0024903251, + -0.0069138394, + -0.012159526, + 0.0064364043, + 0.021478463, + 0.012864, + -0.016244413, + 0.009701415, + 0.015247983, + -0.001322915, + 0.02543231, + -0.018062318, + 0.0076477583, + -0.015732419, + -0.015916858, + -0.010726672, + -0.006965212, + -0.010030338, + 0.0013872606, + -0.014390138, + -0.020104324, + -0.011464155, + 0.014218248, + -0.0061806533, + -0.0017566223, + 0.016475148, + -0.0027416607, + -0.016375624, + -0.034316685, + 0.027075166, + 0.002013681, + -0.0014380313, + 0.03293236, + -0.0037295087, + -0.007973825, + -0.0107050175, + 0.009967287, + -0.0064828023, + 0.0076604523, + -0.02557047, + 0.006402207, + 0.008817864, + -0.023721565, + -0.009780649, + -0.009564691, + -0.0072627114, + 0.01184692, + -0.018788956, + -0.02089542, + 0.010278172, + 0.026320873, + 0.021927007, + -0.0012029029, + -0.012444824, + 4.5736038E-4, + 0.021250112, + 0.018889664, + 0.013755893, + 0.00262891, + 0.0059333066, + -0.015386801, + 0.008499847, + 0.00718634, + 0.012383157, + 0.0029626742, + 0.009461748, + 0.0033969292, + -0.009846979, + -0.022752512, + -0.030532911, + -0.020456452, + 0.025905088, + 0.004842921, + -0.0058643757, + -0.011125675, + 4.0610714E-4, + -0.0072370893, + 0.0027862391, + -0.010135469, + -0.023020513, + -0.03363185, + 0.043367926, + 0.0024201649, + 0.0010403848, + 0.007943963, + 0.018187568, + -0.0016075221, + -0.006328105, + -0.013670592, + -0.018557318, + 0.011933984, + -0.023572799, + 0.018205483, + 0.0076948875, + -0.0115630785, + 0.01691943, + -0.020193208, + 0.011376753, + -7.3618063E-4, + 0.010168958, + -0.0017878821, + -0.018519657, + -0.014342117, + -0.0131261535, + 0.010132348, + -0.0019346535, + 0.0031465532, + -0.0014035162, + -0.011919359, + -0.017526597, + 0.031912062, + 0.022727525, + 0.024599424, + -0.016480548, + -0.0042599933, + 0.0029133055, + 2.6531363E-4, + -0.020247169, + -0.02738899, + 0.007842674, + 0.026030842, + 0.002226242, + 0.019697532, + 0.010693616, + -0.023294017, + -0.028032778, + -0.0105816275, + -0.003404765, + -0.023967937, + 5.2548444E-4, + -0.0016310511, + 0.011144258, + 0.01864636, + -0.008610508, + 0.003699567, + 0.007429669, + -0.00497767, + -0.035588514, + -0.013796342, + -0.031367615, + -0.012012667, + -0.007575701, + 0.003526923, + -0.010519506, + 0.019758254, + -0.020383634, + 0.025995104, + -0.017070496, + 0.04554601, + 0.005967596, + -0.004046559, + 0.029227097, + -0.019841172, + -0.0075077214, + 0.026669664, + -7.467924E-4, + 0.043146607, + 0.019578101, + 0.023093615, + 0.002717548, + -0.0051825326, + -0.0061940476, + -0.005556394, + 0.01411381, + -0.03112682, + 0.012254591, + 0.007686286, + 0.0021235778, + 0.010141016, + 0.008083208, + -0.011036467, + 0.0031778852, + -0.0029521207, + -0.009163822, + -0.026071902, + -0.010287143, + -0.01639265, + 0.00478436, + -0.01691976, + -0.008664359, + 0.025254596, + -0.015629102, + -0.005609784, + 0.0137194265, + -0.015589528, + -0.013228351, + 0.024564387, + 0.0021921766, + 0.010227205, + -0.0012352613, + 0.018743778, + -0.011681032, + -0.01449869, + -0.0033354894, + -0.0112556685, + -0.006099132, + 0.003886221, + -0.031492587, + -0.011866964, + 0.034250993, + 0.0039012022, + 0.02525083, + 0.0016226247, + -0.015704157, + 0.008211439, + 0.013687066, + 0.032471977, + -0.018668152, + -0.01856999, + 0.0024507104, + -0.0014485855, + 0.0032892849, + 0.005051095, + -0.033896837, + 0.0040191296, + 0.009967025, + -0.011668899, + 8.1944204E-4, + 0.017426457, + 0.016321098, + 0.009984767, + 0.007925905, + -0.016970908, + -0.027873524, + 0.012727028, + 0.016797075, + -0.0012121762, + -0.014589128, + 0.010476795, + -0.007991286, + 0.007446009, + 0.009527026, + 0.0037733587, + -0.0047808373, + 8.687073E-5, + -0.015132586, + -0.013561232, + 0.008650255, + 0.0026642329, + -0.014857654, + 0.027322976, + -0.019611191, + 0.016587868, + -0.008458167, + 0.012535596, + 0.0014112814, + 0.028165935, + -0.0052155904, + -0.012260571, + -0.002581547, + -0.013000513, + 0.028648263, + 0.0033343402, + 0.027059074, + -3.2634314E-4, + -0.01818956, + 0.019691026, + 0.025390202, + 0.004882397, + -0.0057901577, + -0.010408211, + -0.0051887403, + 0.0013997208, + 0.027988115, + -3.892379E-4, + 0.014779486, + 0.0065471143, + -0.021060895, + -0.0030215594, + 0.018907728, + 0.0119486395, + 0.01042569, + -0.015821064, + -0.0015032188, + -0.007548888, + -0.0034214617, + 0.014618775, + -0.014992421, + 6.17112E-4, + -0.006698792, + -0.008814293, + 0.04776558, + 0.002226004, + 0.007082196, + -0.0077391164, + 0.016203808, + 0.01743744, + 0.021447273, + -0.012019972, + 0.030247087, + -8.6171407E-4, + -0.022064362, + -0.008715197, + -0.009157089, + -0.0043985434, + 0.021175386, + -0.0053418013, + -0.002192672, + -0.011646345, + -0.016527263, + 0.0066219647, + 4.916974E-4, + 0.017477578, + 0.023796363, + 0.011095401, + -0.01186127, + -0.01616269, + 0.0034878731, + -0.013215223, + 0.0056061344, + 0.024949273, + -0.016924962, + 0.017947381, + -0.015564563, + 0.01080523, + -0.0070001907, + -0.013594682, + -0.009483895, + -0.0057943393, + -0.024284007, + 0.016406879, + -6.409079E-4, + 0.007526608, + -0.016981665, + -0.008049624, + 0.014911507, + -0.019730844, + 0.0077735446, + -0.004806413, + -0.013587205, + -0.015998801, + 0.016410423, + 0.052260656, + 0.00965232, + 0.009495795, + 0.0016825453, + -0.018715167, + -7.4478136E-5, + 0.007900266, + -0.019912116, + -0.006392659, + -0.023618782, + -0.0072058807, + -0.01944938, + 0.012707386, + -0.038753428, + 0.01292396, + -0.010809916, + -0.0030205396, + 5.133267E-4, + 0.0081378175, + 0.011333833, + -0.0074178083, + -0.0077948747, + 0.01036294, + -0.005847869, + -0.02488392, + -0.008951485, + 0.013112465, + -0.007677217, + -0.034350682, + -0.01643751, + 0.011439693, + -0.011255864, + 0.007303752, + 0.026353354, + -1.6935477E-4, + -0.011017008, + 0.0024514503, + -0.0077588875, + 0.013024442, + 0.008049223, + -0.005948516, + -0.012265595, + 0.0034170833, + 0.0026482388, + 1.7593964E-4, + 0.021972245, + -0.0013771813, + -0.0105401045, + -0.0118265785, + 0.0045123473, + -0.01594047, + 0.025292898, + 0.006769405, + 0.0114603415, + 0.005805709, + -0.004884283, + -0.011357445, + -0.020355625, + -0.008237119, + 0.005180145, + 0.02413748, + 0.0034934857, + 0.007887502, + -0.019861963, + 0.0030865043, + 0.011115294, + 0.044127066, + -0.007004767, + -0.014331972, + -0.023027055, + -0.032332502, + -4.0627105E-4, + -0.009652528, + -0.020850226, + 0.003789254, + -0.003054775, + -0.0027996902, + 0.008426625, + -0.010073742, + -0.01685606, + 0.00799243, + 0.015478603, + 0.0027930595, + -0.005765196, + 0.010794311, + -0.009558163, + 0.01574959, + -0.019236116, + 0.015954997, + 0.020953195, + -0.0046517104, + -0.036182854, + -0.014987496, + -0.009928683, + 0.0140925385, + 0.0074575706, + 8.0511963E-4, + -0.011511086, + -0.008869507, + 0.0015688897, + -0.01937614, + -0.009492093, + 0.010207548, + 0.007981893, + -0.016613962, + 0.0031365613, + -0.011311415, + -0.026622439, + -0.016955327, + -0.0029533834, + -0.0030038408, + 0.014414573, + -0.010049413, + 2.7955775E-4, + -0.0029286265, + 0.006888015, + 0.0027993778, + -0.020341251, + -0.002456996, + 0.0053352206, + -0.017611004, + 0.0028980915, + 0.023019228, + 0.0012484322, + -0.010720893, + 0.023713298, + 0.0019475436, + -0.017450837, + 0.008163891, + -0.029701069, + -0.008645774, + -0.016264556, + -0.010998997, + 0.023081403, + 0.006133991, + 0.013555316, + -0.021506885, + -0.0065104365, + 0.009181049, + 0.015215492, + -0.023419376, + 0.025456162, + 0.008740146, + 0.004591312, + 5.093988E-4, + -0.0051928526, + -0.011922448, + -0.014186834, + 0.0050152224, + 0.018347414, + -0.004909351, + -0.005847677, + 0.012135588, + 0.0052890964, + -0.023944609, + 0.0052191075, + 0.0046150163, + 0.017820885 ], - "paletteEmbedding": [ - 0.011949247, -0.018922698, 0.0224854, -4.4941884e-5, -0.0023230505, - 0.049426157, 0.003254229, -0.01831847, 0.03798694, 5.032708e-4, - 0.008979551, -0.015615077, 0.0391362, 7.574492e-4, -0.04370451, - 0.07998041, -0.034795012, 0.06432602, -0.045155317, 0.0348737, - -0.029495984, 0.04583765, -0.028235584, 0.0054955976, 0.055371832, - -0.038045116, -0.020428013, 0.008163118, 0.0012626217, 0.05593464, - 0.060949977, 0.027415607, 0.010403759, -0.057800405, -0.045450114, - 0.012630165, 0.036510367, -0.00995972, -0.0085473545, 0.050196238, - 0.01628178, -0.04085015, -0.05345169, -0.023503546, -0.015021495, - -0.0015869484, 0.036078192, 0.039586086, 0.008531629, 0.006760694, - 0.036899608, 0.0063451994, -0.030931287, 0.0076649194, 0.025205947, - -0.0081554605, 0.04202742, -0.008775933, -0.058259528, 0.01333334, - -0.0019201336, -0.028044611, 0.020790406, 0.035976287, -0.015476994, - -0.028829105, 0.0770735, -0.062768325, -0.03130834, -0.027272152, - -0.038058143, 0.013512778, -0.0097609665, 0.06631006, -8.235426e-4, - -0.057358284, -0.0113652665, 0.017417686, 0.022169506, -0.037830908, - 0.060048275, 0.043024514, 0.034794036, 0.024001624, 0.02504808, - 0.007127886, 0.033554778, 0.0036965865, -0.031235097, -0.0016256563, - -0.052303113, -0.030007277, 0.043084282, -0.052044373, 0.060557712, - 0.051398814, 0.021473227, -0.058855996, -0.006416513, 0.039907426, - 0.04357676, 0.0038271055, 0.011149872, -0.030655002, -0.0042313975, - 0.011432279, 0.062866434, 0.042702124, 0.04111941, -0.015549914, - -0.026169796, 0.05437057, -0.09622687, 0.010971055, 0.033302303, - -0.031922497, -0.0022507578, 0.01429059, 0.0044550626, -0.04075894, - -0.017084403, -0.016849324, 0.07771485, 0.0056949416, 0.008308526, - -0.0568427, 0.025603263, -0.044002064, 0.009815183, -0.034770522, - 0.03120683, 0.0059130993, -0.013453254, 0.034266975, 0.049083278, - -0.0776792, 0.014259455, -0.020857284, -0.055079855, -0.011283485, - 0.03780249, 0.013054112, -0.009333192, -0.02204791, -0.033836495, - -0.011561745, -0.028249253, -0.014170046, 0.029637402, 0.042835128, - -0.018119838, 0.0516827, 0.037131593, -0.0020858722, 0.026702171, - -0.049938347, -0.021278696, 0.0110760005, -0.01667143, -0.00786414, - -0.019589249, 0.026298845, -0.03860134, 0.05603158, -0.03848934, - -0.0054508056, -0.015744306, -0.026648728, -0.020298064, -0.023763161, - 0.009000082, -0.018975064, 0.0018700571, 0.029844128, 0.01734552, - 0.007069, -0.03611458, -0.0015722548, 0.020515637, 0.0034890457, - -0.0018641755, 0.020588169, -0.0057301805, -0.023343023, 0.014644206, - -0.016153594, -0.038684074, -0.008431967, -0.028349051, 0.016596219, - -0.010176769, 0.04197593, -0.009794592, 0.01064167, -0.026610596, - -0.0043994, -0.025530186, 0.040845763, -0.03470919, -0.02522613, - -0.011859233, -0.010545319, -0.003628635, 0.009536174, -0.047139302, - 0.036883302, 0.038822107, -0.027412798, 0.015985437, 0.0052972883, - 0.015418269, -0.008423315, 0.011220208, 0.016405525, -0.013543244, - -0.059655122, 0.007424951, 0.0112396, 0.013545829, 0.0015955963, - 0.0029491095, 0.02868578, 0.074467696, 0.04109424, -0.022971436, - 0.038303282, 0.05526744, 0.0070928335, 0.028161582, -0.029253645, - -0.015365513, -0.009393734, -1.6704595e-4, -0.03805434, -0.01701173, - 0.01960533, 0.0051520066, -0.017146023, -0.00912069, -0.021890204, - 4.404488e-4, -0.021266615, -0.05878066, 0.015634248, 0.01467372, - 0.016600931, 0.023101103, -0.015676385, -0.063165024, -0.029109422, - -0.02763109, 0.028097974, 0.03125005, 0.04573521, 0.044618733, - -2.7690912e-4, -0.0056356993, -0.008587693, 0.04565428, 0.033641215, - 0.054163374, -0.018858047, 0.031967722, 0.016760616, -0.026895013, - 0.027363935, 0.030698098, 0.058502596, 0.039883256, -0.0058358293, - 0.022949027, 0.01156393, -0.021848617, 0.03286862, -0.052134085, - 0.032843087, 0.007626975, -0.029404752, 0.021145092, 0.016485233, - 0.018109733, -0.031114126, 0.032854985, 0.040219832, -0.008129625, - -0.03241365, 0.021501081, -0.015543008, 0.0055386596, -0.025804784, - 0.0034753883, 0.039062638, 0.0067385286, 0.0031486999, 0.016040893, - 0.022856157, -0.0026482574, 0.008931869, -0.016291764, 0.012405404, - -0.0436919, 0.02577014, 0.06535078, 0.064844936, 0.017086364, - 0.024987902, 0.025253039, -0.03684124, -0.017275607, -0.0015444042, - -0.025326986, 0.07670762, 0.022614121, -0.035861507, 0.036751732, - 0.022715932, 0.019310517, 0.021706173, -0.034937203, 0.021217084, - 0.0039604115, 0.027216293, 0.0024647987, 0.0027325347, 0.0059976787, - -0.043548457, -0.035038076, -2.03281e-4, -0.058060464, -0.013562648, - -0.010360028, -0.02951523, 0.020260388, 0.00789244, -0.024736093, - 0.027558604, 0.028675606, 0.018199572, -0.011169613, -0.06381683, - -0.016842142, 0.027736045, 0.012538055, 0.00246227, -0.035357222, - -0.015019512, 0.025073195, 0.010190874, -0.022828478, -0.012667522, - 0.019179601, -0.009434728, -0.005629958, -0.021789338, 0.033055745, - 0.020468632, 0.017278548, 0.03222891, 0.06328228, 0.0233734, - 0.012223988, -0.050343163, -0.01047881, -0.02339693, 0.04937493, - 0.035576593, -0.029819326, -0.027408065, 8.2295516e-4, 0.0364009, - -0.05162284, -0.056409784, -0.005118843, -0.004970767, -0.064713866, - -0.0031736994, 0.02985779, 0.017552245, -0.024096206, -0.02250921, - 0.001918976, -0.02010769, -0.01649626, 0.028440451, 0.047198165, - 0.046388373, 0.050423887, -0.01933446, -0.056457292, 0.039452206, - 0.007826471, -0.041129824, 0.010682564, -0.0141996145, -0.030646948, - -0.022503389, 0.03916005, -0.010975852, -0.05967924, 0.0100759035, - 0.03724985, -0.018897483, 0.023799296, -0.021306466, 0.061365478, - 0.011039217, 0.007528774, -0.00582409, -0.03560933, 0.030007888, - 0.057696614, -0.005910829, -0.009342503, 0.044427842, 0.017815102, - 0.016109398, -0.05029709, -0.031232135, 0.021133445, 0.020705318, - 0.038971838, 0.0057756463, -0.025989583, 0.02993769, 0.016507277, - -0.041628998, -0.034610696, 0.0045380048, 0.008072555, -0.01349127, - -0.0021179689, 0.0080186855, -0.024111083, -0.014488869, 0.014010324, - 0.069513634, -0.055604357, -0.05992829, 0.048401732, -0.022608334, - 0.008509214, -0.0012098491, 0.023073234, -0.06030514, -0.027549166, - 0.01927073, 0.008903211, -0.0013902507, -0.068346664, 0.058409445, - -0.017078742, -0.038743574, -0.03513416, -0.026424896, 0.007186645, - -0.036588024, 0.049318016, 0.0067935614, -0.06298295, 0.019216025, - 0.007972902, 0.0058081173, 0.033132054, -0.015488245, -0.008829171, - -0.0052706106, -0.02859267, 0.01674689, 0.014487415, -0.023152694, - -0.0028129127, -0.0048120827, 0.008183959, 0.03242498, -0.007700722, - 0.020158883, -0.023014832, 0.061101448, 0.008973793, 0.053201523, - -0.021167833, 0.03817568, 8.1639446e-4, 0.05126641, 0.042521864, - -0.016747802, -0.06873776, -0.043291043, 0.05206109, -0.03026128, - -0.017934, 0.011444079, -0.06543871, 0.00384791, 0.016990628, - 0.04219126, -0.05289388, 0.013167946, 0.03973459, 0.024594894, - 0.011043466, -0.027722782, -0.0071281134, 0.007834596, -0.024784809, - -0.011583315, -0.020797914, 0.04416999, 0.004375832, -0.015633399, - -0.0065168, -0.014431223, 0.032337997, -0.016090304, 0.04820375, - -0.062159225, 0.006752314, -0.023052255, -0.009878119, 0.029093474, - 0.021748053, -0.0017335522, 0.0030497168, 0.087394856, -4.7496514e-4, - -0.016577726, 0.04484744, -0.00195348, -4.675366e-4, -0.027420608, - -0.05133982, -0.009812007, -0.007111106, -0.08338852, -0.052399285, - -0.024862288, -0.017762842, -0.0035278113, 0.010187357, 0.040025327, - 0.014652492, 0.015294217, -0.0028786368, -1.8642191e-4, -0.042745743, - -0.012583309, 0.013658572, -0.011425971, -0.0043915943, 0.016238203, - -0.0049875756, -0.0074430965, -0.007293409, -0.049170714, -0.011931706, - 0.055895682, -0.054468933, -0.015861347, 0.026336534, 0.043059036, - 0.015223314, -0.033247653, 0.076440625, 0.064634375, -0.0038732379, - -0.008493912, 0.013515785, 0.010093912, 0.020101357, 0.0012355243, - -0.025010236, 0.047790132, -0.042921845, 0.003869999, 0.05022211, - 0.010722226, 0.011189658, -0.068159215, -0.04007285, -0.042398278, - -0.009741603, -4.774217e-4, 0.04156628, -0.051712587, -0.008838561, - -0.015961275, -0.03976053, -0.025119785, -0.03622122, -0.0064548594, - -0.039836153, 0.048514195, -0.019422596, 0.012002468, -0.023784468, - 0.0010670073, 0.021518005, -0.004129895, 0.025192313, -0.030404704, - 0.077453025, 0.005807139, -0.015968097, -0.0012995354, -0.01604677, - -0.009419039, 1.13293514e-4, 0.03872066, 0.061253518, -0.037720956, - 0.03848755, 0.044123553, -0.07683442, -0.0052444637, 0.031697534, - 0.053207647, -0.016776094, 0.03859399, 0.015104263, -0.016622897, - -0.009423938, -0.02569575, 0.0026378068, 0.0121994065, -0.032111656, - -0.0012892323, 0.016378999, -0.006822933, 0.035606712, -0.053534128, - 0.017391494, 0.010506183, 0.0066790306, 0.0073844567, 0.005162043, - 0.011862277, 0.006269653, 0.010074024, 0.0019346727, 0.035069123, - -0.014818021, 5.6332635e-4, -0.03794103, -0.0037279136, -0.0037424394, - -0.05040197, -0.024997711, 0.008462109, 0.03798095, 0.03201681, - -4.7533243e-4, -0.026246889, -0.051843397, -0.0026484109, -0.07468983, - -0.005081075, 0.010333985, 0.042968404, 0.020565862, -0.01861343, - 0.0038450623, 0.0399311, 0.009274257, 0.06820386, -0.075405225, - 0.0071032573, 8.6637423e-4, -0.036171153, 0.040564932, -0.03331804, - 0.0026380136, 0.070736974, -0.06285178, -0.026318932, 0.062163487, - 0.036041863, 0.056188308, 0.06423483, 0.031953316, -0.014300117, - -0.018152662, -0.027629338, -0.0027113464, 0.046829533, 0.025298646, - -0.060409788, 0.006320292, -0.025987068, 6.488284e-4, -0.0058966456, - 0.03608544, -0.013286623, 0.03829497, -0.01347789, 0.018310383, - -0.037706215, -0.0094637275, 0.055671606, -0.035611533, -0.0034881313, - -0.013780928, -0.037971992, -0.022083633, 0.022218099, 0.018100841, - 0.006041534, 0.00217822, 0.016636727, 0.050713472, 0.06194049, - 0.04763483, -0.012417375, -0.002477306, 0.0065389276, -0.006997117, - 0.020588279, -0.023703719, 0.02309888, -0.0042643086, -0.014072704, - -0.0024295195, -0.010122178, 0.02119629, -0.017620474, 0.025590021, - 0.070816845, 0.009396232, -0.06811228, 0.05989404, 0.018882724, - -0.005705811, 0.038856383, -0.030008638, -0.042095337, 0.008492618, - -0.0032356763, -0.0016167229, -0.036252767, -0.014120445, -0.0047437125, - 0.035011955, 0.055550955, 0.0049325763, -0.056690674, -0.006777145, - 0.017816313, 0.076748945, 0.042937156, 0.047486298, 0.010856737, - -0.012700816, 0.020249465, 0.04522954, 0.011529061, 1.8271725e-4, - 0.063242696, 0.0018746165, -0.03069807, 0.005789245, -0.046442583, - -0.039989494, -1.5777249e-4, 0.008384011, -0.007166819, 0.095426984, - 0.019169182, 0.041323762, 0.013885222, 0.007548039, 0.033353556, - 0.052707996, 0.053768225, 0.0049458332, -0.007865856, -0.024606964, - 0.028575782, -0.0022063996, 0.009448043, 0.01036548, 0.018916644, - -0.03561715, 0.0045664995, -0.032404598, -0.036107823, 0.018616326, - -0.008876808, 0.011437546, 0.0020120912, 0.056173094, 0.01805073, - -0.020715887, -0.02195021, -0.023896942, 0.035220046, -0.007262175, - -0.023250695, 0.010362734, -0.033710133, 0.054193646, 0.068340875, - -0.008539726, -0.01929186, -0.061717324, -0.0414107, -0.04062322, - -0.015326689, -0.0104930485, -0.0032670423, -0.025994154, -0.02815815, - -0.020925775, 0.04592772, 0.003848475, -0.034739796, -0.026873242, - 0.0075405748, -0.008963773, 0.009524107, 0.05535212, -0.011807774, - -0.024642784, 0.021553328, 0.024937475, -0.022648957, -0.022762338, - -0.025902951, 0.009842883, 0.019273207, 0.048508782, 0.052334763, - -0.0117388405, 0.04819969, 0.0036404026, 0.07723965, -0.044292364, - -0.018882398, 1.1085919e-4, 0.01156067, -0.017238665, 0.040840548, - -0.0010515479, 9.162182e-4, 0.024583621, -0.028609293, -0.026879227, - -0.027494181, 0.0024944118, -0.0021362377, 0.075208426, -0.005689689, - -0.026629932, 0.024016453, -0.035400067, 0.040001854, -0.030832473, - -0.0056292717, 0.014262881, -0.05258407, 0.023035167, 0.057516813, - -0.010557818, 0.08129661, 0.0040314686, -0.012342489, 0.020134853, - -4.9592747e-4, 0.025358774, -0.0140548, -0.0011198168, -0.01251962, - -0.03183944, 0.0061941673, -0.034245983, -0.01821684, 0.0031288275, - 0.008324833, -0.033399764, -0.030290557, 0.05115196, -0.04844053, - -0.007207323, 0.06189897, 0.021722466, -0.015322883, -0.041574545, - -0.008365837, -0.04400157, -0.013857915, -0.058958724, 0.0069442997, - -0.012911085, -0.0025684407, 0.059640143, -9.890766e-4, -0.0012251862, - 0.024296658, -0.024700329, 0.034723215, -0.026022777, -0.022876183, - -0.0237534, 0.009877853, 0.012138912, -0.055506796, -0.00852662, - 0.037541315, 0.017457576, 0.0029292204, -0.0054607, -0.0011701112, - 0.0052966457, -0.04598619, 0.016022684, 0.017432323, 0.048904106, - 0.014873836, 0.014294365, -0.016891213, 0.010780148, -0.034378536, - -0.01813321, 0.029525453, -0.02207978, 0.0011729732, -0.04487235, - -0.032382187, -0.02723752, 0.0062803472, -0.015032935, -0.0074937325, - -0.0068938034, 0.011367702, 0.09290442, 0.015452374, 0.03480404, - -0.039297614, 0.056701727, -0.016182642, 0.018329212, 0.01176167, - 0.027873738, -0.06338802, 0.008110458, 0.0022136874, 0.020505626, - -0.0151434615, -0.010633483, -1.5566699e-4, -0.021028401, -0.023506347, - 0.0060205436, -0.0103908, -0.0019415104, 0.02390882, -0.025682403, - 0.017001782, -0.009678315, -0.02082799, 0.024594223, -0.009896312, - 0.011342051, -0.036316115, -0.02902619, -0.0022974184, -0.020174773, - -0.0074549364, 0.009494284, -0.028923837, -0.06121757, 0.048802704, - -0.07887246, -0.03170468, -0.0010863489, -2.225524e-4, -0.06481092, - -0.064125665, 0.006202239, 0.048010748, 0.0022334848, 0.011236444, - -0.010050685, 0.011967996, 0.015732665, 0.0036984868, -0.023337573, - 0.013988688, 0.020934572, -1.9732266e-4, 0.021278296, 0.01133401, - 0.02471299, 0.017130908, 0.015428297, -0.02389184, -0.053604238, - 0.020468991, -0.020444537, -0.032201927, 0.0040999, -0.015573321 + "paletteEmbedding" : [ + 8.519833E-4, + -0.029553905, + -0.029358773, + -0.015577932, + 0.03082147, + 0.014723516, + 0.012989367, + 0.016735733, + 0.016943254, + 0.027567454, + -0.0052010585, + 0.011173841, + -0.03983657, + -6.492304E-4, + 0.07091518, + 0.01610205, + -0.003962866, + 0.0071448223, + 0.028582769, + -0.019340398, + 0.029524308, + 0.021877822, + 0.019390848, + -0.014959304, + -0.053040393, + -0.03784033, + -0.05140276, + -0.03574654, + -0.014334456, + 8.238708E-4, + 0.025811229, + -0.048142, + -0.03302023, + -0.025200177, + -0.021234015, + -0.0084519815, + -0.026710229, + 0.005175823, + -0.025952222, + 0.0071226247, + 0.027866695, + -0.02397305, + -0.0517327, + 0.0068965945, + 0.018337656, + -0.012163665, + -0.026389977, + 0.015601163, + -7.936253E-4, + 0.01871646, + 0.035375785, + -0.010276535, + 0.06135506, + 0.0020113436, + -0.0037059889, + -0.003879566, + 0.014831365, + 0.011755095, + 0.005523711, + -0.026751883, + -0.032117672, + -0.05763304, + -0.006761492, + -0.00494029, + -0.037797626, + -0.028601103, + -0.0149937775, + -0.037938923, + -0.02021987, + 0.028522944, + 0.024783405, + -0.015082748, + -0.04187385, + -0.025400061, + -0.011811173, + -0.045475837, + -0.013549309, + -0.028740153, + 0.014940103, + 0.020280499, + 0.033733845, + 0.0072177206, + 3.3654267E-4, + -0.05586861, + 0.03371088, + 0.041538358, + 0.008401654, + 0.034886394, + 0.06005996, + -0.004909534, + -0.0119449925, + -0.05920879, + 0.039524056, + 0.0036488897, + 0.0013486652, + 0.032790042, + -0.0068747657, + 0.011615108, + -0.018957973, + 0.0018821331, + 0.0062571084, + 0.016931253, + 0.03738266, + -0.0054133367, + -0.05782746, + -0.04522025, + 0.05189684, + -0.01633469, + 0.019930394, + -0.044153053, + 0.007361787, + 0.047483124, + -0.051638983, + 0.02643992, + 0.040047627, + 0.00515911, + 0.024200827, + -0.021530006, + -0.0073743835, + -0.0014991268, + -0.010816074, + 0.0605058, + -0.0069970535, + 0.030357143, + -0.0051231356, + -0.014851282, + 0.01747493, + -0.01109034, + 0.021423532, + 0.023755224, + 0.011309624, + 0.0066681104, + -0.020970426, + 0.04223274, + 0.027139341, + 0.054214593, + -0.0065491158, + 0.081687555, + 0.037620384, + 0.010601399, + 0.029730596, + -0.05792844, + -0.02411684, + 0.06242391, + -0.045075595, + -0.013175192, + 0.045586992, + 0.005028781, + -0.07568423, + 0.023920797, + 0.016047725, + 6.1531627E-4, + -0.049982738, + 0.03638966, + 0.005363589, + 0.058346123, + -0.012746877, + -0.017845321, + -0.04195638, + -0.01154794, + 0.014548259, + 0.023026526, + 0.014061951, + 0.031031221, + -0.021559685, + -0.026467035, + -0.024872229, + 0.0070992233, + 0.02904961, + -0.03077324, + -0.015493714, + 0.0239887, + 0.0043421984, + -0.0064037675, + -0.06297135, + 0.014155548, + -0.031496175, + 0.046147913, + 0.024958063, + 0.02165774, + -0.014697787, + -0.0042629195, + 0.0040453454, + 0.0016191103, + 0.017947147, + -0.023211949, + 0.0035028975, + 5.900622E-4, + -0.024086894, + -0.024847835, + 0.029259777, + 0.050855115, + 0.06653254, + -0.012116441, + -0.020271655, + -0.041497454, + 0.033349708, + 0.040034186, + 0.006453903, + -0.05361863, + 0.01128381, + -0.013549189, + -0.014449706, + 0.04447316, + -0.046191547, + 0.006124447, + -0.011779333, + -0.01731038, + -0.013480357, + 0.023479845, + 0.027322762, + 0.017768953, + -0.01289388, + 0.013207319, + 0.0038074425, + 0.008711198, + -0.021631159, + 0.04970666, + -0.0074330363, + 0.020655409, + 0.054154452, + -0.031250533, + -0.0102341315, + -0.015545772, + 0.018244477, + -0.01152833, + 0.015010516, + -0.0017559145, + -0.04548398, + 0.049911994, + 0.0047189402, + -0.01964013, + -6.469065E-4, + 0.007345847, + 0.007107019, + 0.003920468, + 0.011210625, + 0.024574734, + -0.023640314, + -0.0100966785, + 0.01947245, + -0.007122925, + -0.01262702, + 0.004056409, + 0.03780856, + -0.018756248, + -0.011045442, + 0.03606376, + 0.005064743, + 0.020320969, + 0.008286643, + -0.035611667, + 0.025838174, + -0.042494778, + -0.06610981, + 0.021986932, + -0.008207557, + 0.041169327, + -0.080563396, + 0.015345349, + 0.059031937, + 0.013507899, + 0.0031773131, + 0.02843219, + 0.029063715, + -0.023793371, + 0.02759396, + -0.045402747, + -0.03949038, + 0.008420288, + 0.015690707, + -0.03855317, + 0.01792982, + -0.01071227, + 0.025468763, + 0.01567897, + 0.04840047, + -0.030461453, + -0.006609846, + -0.045578673, + 0.0011035183, + -0.07337039, + -0.03602815, + -0.02463012, + 0.017892834, + -0.018751968, + 1.4857156E-4, + 0.020674568, + -0.007490431, + -0.0054020104, + 0.01289418, + -0.019381046, + -0.030214548, + -0.026070967, + -0.04360835, + -0.0013439874, + 0.014768245, + -0.048897173, + -0.04925994, + -0.031041637, + -0.0011193401, + 0.03167882, + 0.007241504, + -0.035788916, + -0.04726591, + -0.025966186, + 0.050610784, + -0.0054642255, + -0.017608771, + -0.005140062, + 0.008882297, + -0.008357733, + -0.00964016, + 0.040154908, + 0.012237028, + -0.0052016377, + 0.034437165, + -0.070858076, + -0.012271616, + 0.005076476, + 0.02885708, + 0.03644593, + -0.050668065, + 0.0012177663, + 0.009112752, + 0.0858309, + 0.013886141, + 7.726075E-4, + 0.0016394275, + -0.011001743, + 0.012445889, + -0.024645587, + 0.05020683, + -0.056396004, + 0.0025899077, + -0.032305826, + 0.019230496, + 0.048781823, + -0.019137517, + -0.023162205, + -0.04350317, + 0.037479088, + -0.033801436, + -0.008619135, + 0.025275052, + -0.009016836, + -0.010275931, + 0.055748187, + 0.041375183, + 0.05508635, + 0.0036757665, + 0.025891954, + -0.023190588, + -0.06517593, + -0.059618026, + 0.012216826, + -5.8314315E-4, + 0.034017142, + -0.039264087, + -0.03562854, + -0.056479733, + 0.028358039, + -0.06592878, + 0.020703766, + -0.044974647, + -0.010516569, + 0.032788865, + 0.017446537, + -0.002345399, + -0.02416207, + 0.050535835, + 0.037736934, + -0.06758677, + 0.046830375, + -0.03126684, + 0.02362989, + 0.023158548, + 0.032242686, + -0.00692923, + 0.02510502, + 0.012436057, + 0.015420134, + -0.008919526, + -0.023142412, + 0.05034603, + -0.026505789, + 0.046185825, + -0.049755804, + -0.0058646537, + 0.033159602, + -0.006524468, + 0.007656086, + -0.02691705, + -0.01765171, + 0.029202469, + -0.0090790745, + -0.021851616, + -0.06328622, + 0.0047612917, + -0.054435782, + -0.05234702, + 0.038162556, + -0.014514143, + 0.0053038597, + -0.008924843, + 0.09046936, + 0.042855576, + -0.02007143, + -0.010845938, + -0.018622417, + 0.05036624, + 0.023998853, + -0.018313533, + 0.014625856, + 0.0116431285, + -0.027748873, + -0.046947215, + -0.013241608, + -0.033596333, + -0.019368889, + 0.030566806, + -0.009110865, + 0.05008733, + -0.016749013, + -0.038801026, + 0.082568005, + 0.0071063647, + 0.014877937, + 0.040685695, + -0.021571832, + -0.07274413, + -0.025636517, + 0.021627655, + -0.04012482, + 0.03556371, + 0.047876272, + -0.069009826, + 0.014303674, + -0.016273564, + 0.019961532, + -0.07016376, + -0.023507114, + 0.02519947, + 0.006714499, + 0.073659725, + 0.016005782, + -0.0021679078, + 0.020254875, + 0.03183716, + 0.010525048, + -0.0014352358, + 0.00985303, + -0.05006707, + 5.884003E-4, + -0.017299794, + -0.010250315, + 0.013688344, + -8.433033E-4, + -0.029798679, + -0.03398068, + 0.03069659, + 0.025721377, + -0.0048465603, + 0.0114511885, + -0.022637611, + 0.059057485, + 0.0079595875, + 0.024057418, + 0.034417212, + 0.0026041844, + -0.031222643, + 0.010352553, + 0.020048283, + 0.048333853, + 0.004643363, + -0.028727213, + 0.016855082, + -0.022364074, + 0.016242173, + -0.04753417, + 0.06455503, + -0.024946315, + 0.041919, + -0.0017267459, + 0.013487336, + 0.033219207, + 0.017321724, + -0.0025517512, + 0.028869182, + 0.07043827, + 0.0055279266, + 0.097695895, + 0.055048138, + 0.043119464, + 0.065250754, + -0.025770914, + -0.068397656, + -0.01892465, + -0.040542442, + 0.03257889, + 0.007832681, + 0.006705346, + -0.014363902, + 0.03175262, + 0.058308188, + 0.029644838, + -0.0024963203, + 0.027204107, + -0.021377474, + -0.015810939, + 0.04397481, + -0.027350668, + -0.084870465, + 0.014132191, + -0.026071038, + -0.037847687, + -0.038294226, + 0.01893137, + -0.039862633, + 0.028164964, + -0.017158896, + 0.008211211, + 0.006047167, + -0.059102464, + -0.011684912, + 9.875662E-4, + -0.0068229735, + 0.018417854, + 0.012489928, + 0.0109846275, + -0.021776615, + 0.0028949084, + 0.012675137, + -0.043774735, + 0.025343992, + -0.017934015, + -0.028741533, + -0.040063813, + 0.015677497, + -0.0052173203, + -0.015163358, + -0.024273062, + 0.015226803, + 0.03065601, + 0.040066842, + -0.05429572, + -0.047140103, + -0.0024392807, + -0.0022106874, + -0.024771973, + 0.007192723, + -0.0051726312, + -0.03247223, + -0.030514538, + 0.032781605, + -0.0324902, + 0.0026631174, + 0.011494974, + 0.024336604, + -0.031286944, + -0.03145962, + -0.02974249, + -6.7062094E-4, + 0.057821795, + -0.0031511523, + 0.0041619907, + -0.011100606, + 0.004749671, + 0.012284579, + 0.053601217, + 0.03070943, + 0.013020737, + 0.06882759, + -0.03646329, + 5.2369456E-4, + -0.015295015, + 0.021225264, + 0.0018230232, + 0.008221361, + -0.01709363, + -0.01210622, + -0.0010951594, + 0.02054166, + 0.030782904, + -0.037720066, + -0.011954051, + -0.008389947, + -0.01859225, + -0.034880035, + -0.029037625, + 0.03120217, + -0.036580972, + -0.0019978697, + 0.085053034, + -0.017546598, + 0.008265396, + 0.0033118636, + 0.040469192, + -0.007800026, + -0.02036795, + -0.0078717265, + 0.0035537535, + -0.025501158, + -0.0012333011, + -0.04278, + 0.028973117, + -0.009389061, + -0.021060118, + 0.036478776, + -0.02705637, + -0.0052105146, + -0.02463196, + 0.02215212, + -0.026632586, + -0.04696654, + -0.043876722, + -0.06308914, + -0.023073463, + 0.03099417, + 0.021925693, + 0.015473869, + 0.04678883, + -0.022369526, + -1.5551875E-4, + -0.009999726, + 0.02198976, + 0.009723508, + -0.009333398, + -0.011510263, + 0.02769874, + 0.023947764, + 0.06450237, + -0.020122206, + -0.011437411, + -0.00498405, + 0.032257933, + 0.03161894, + -0.0131700495, + -0.0027488845, + 0.027199902, + -0.031029485, + 0.0014794889, + 0.0166991, + 0.006040038, + 0.043244544, + -0.006696202, + -0.020080019, + -0.008437054, + -0.02868053, + 0.0052568815, + -0.0092951, + 0.021735134, + -0.024984704, + 6.3868624E-4, + 0.0050063124, + 0.055050816, + -0.020025553, + -0.0010280227, + -0.0033191165, + -0.014295717, + 0.016362825, + 0.03327977, + 0.032945402, + -0.029158864, + 0.0041747503, + 0.06704716, + -0.013433609, + -0.0035619556, + -0.028270971, + 0.010866518, + -0.041753873, + -0.014896943, + -0.046418965, + -0.07508043, + 0.0202253, + 0.02981086, + 0.014220221, + 0.041460074, + 0.053557076, + 0.018662797, + 0.039125983, + -0.025085526, + 0.0011453347, + 0.014203702, + 0.013170634, + -0.00492411, + -0.012044525, + 0.0586273, + -0.05211998, + -0.044163857, + 0.024489153, + -0.010093152, + -0.058215432, + -0.020128462, + 0.0016939263, + 0.030030446, + 0.032315172, + 0.014101202, + 0.015848419, + -0.009382061, + -0.037154395, + 0.02293181, + 0.049403865, + 0.036328565, + 0.008518124, + -0.0410353, + 0.039795283, + 0.025837354, + 0.054049406, + -0.0045325365, + -0.050999902, + -0.024568157, + 0.059306175, + 0.015985958, + 0.0069122147, + 0.02163745, + 0.0693663, + 0.06409945, + 0.022085398, + -0.039148502, + 0.037578974, + 0.026707973, + 0.02908657, + -0.0266853, + 0.011155184, + -0.029120719, + 0.059063457, + -2.1444734E-4, + 0.012567494, + -0.015578473, + 0.020967582, + -0.055835146, + -0.014258476, + 0.03434334, + -0.06271034, + 0.0345729, + -0.004489753, + -0.021475041, + 0.004398376, + -0.054790404, + -0.0014050319, + 0.011993519, + 0.031856664, + -0.020660121, + 0.012341957, + 0.009198801, + -0.0072759367, + 0.0075317686, + 0.07134357, + 0.020219464, + 0.016849484, + 0.034012187, + -0.035748955, + -0.002072263, + -0.028622253, + -0.087322265, + 0.065049246, + 0.0025988773, + -0.050538965, + 0.0043337382, + 0.031533666, + 0.013382344, + 0.036338132, + 0.021466136, + 0.0103670275, + -0.012270825, + 0.0070826774, + 0.017762344, + 0.03149596, + -0.034610163, + -0.014377607, + 0.013714446, + 0.024979347, + -0.03177097, + -0.006981762, + 0.017741362, + 0.0034817832, + -0.008098971, + -0.025981894, + 0.0136367995, + 0.018160118, + -0.030658115, + -0.06699018, + -0.05974511, + -0.04886828, + 0.018192727, + 0.0076332637, + -0.0030509657, + -0.04038051, + 0.019896688, + -0.07836002, + 0.012068523, + 0.012254409, + 0.054604933, + -0.004248231, + 0.037897997, + 0.018007733, + -0.027935026, + -0.017400103, + -0.017193338, + -0.003483578, + 0.004226193, + -0.07270825, + -0.0018107272, + -0.008023082, + 0.042532288, + 0.005222998, + -0.047165744, + -0.022912035, + -0.032103505, + -0.01364314, + 0.033914436, + -0.0016744963, + -0.017406994, + -0.030871525, + -0.039692376, + 0.04858339, + 0.0013877773, + -0.052347187, + 0.033665344, + -0.015253261, + -8.4312254E-4, + -0.08512131, + 0.01899299, + -0.022879237, + 0.01979464, + 0.059125, + 0.010463461, + 0.038481634, + 0.033343285, + -0.048719402, + 0.0029401402, + 0.00783459, + -0.00759558, + 0.014859827, + 0.017083192, + -0.044212434, + -0.0049404735, + 0.018851336, + -0.029572116, + -0.038355377, + 0.06570402, + -0.05726548, + -0.015786747, + -0.034215618, + 0.039265536, + -0.011443092, + -0.004750164, + 0.0064954367, + 0.014411668, + 0.017307155, + -0.039779805, + 0.052315965, + -0.028648779, + 0.0030077265, + 0.05758069, + -0.020966312, + -0.042337682, + 0.009153664, + 0.026554558, + -0.03507202, + 0.0064990646, + -0.036490824, + -0.03209138, + 0.020374158, + 0.04045402, + 0.047055237, + 0.0035650986, + -6.747614E-4, + -0.023506118, + -0.026103497, + 0.006676915, + -0.003202239, + 0.024484742, + 0.044825163, + 0.036955535, + -0.044839323, + 0.020768823, + -0.013135654, + 9.997519E-4, + 0.04941903, + -0.03136413, + -0.07211572, + 0.08039149, + 0.013158586, + 2.780736E-4, + -0.049310334, + -0.0362883, + 0.036967456, + -0.016917659, + 0.018225113, + -0.06770594, + -0.002079127, + 0.0070717204, + -0.04934572, + 0.0656674, + -0.017328886, + 0.03791284, + -0.0652097, + -0.012095023, + 0.036910985, + 0.014256368, + 0.018390767, + -0.03838563, + 0.009537679, + -0.03257025, + -0.004869815, + -0.017084675, + -0.0057239905, + 0.011821911, + 0.007826779, + 0.015143143, + 0.019003425, + -0.076799996, + 0.023792395, + 0.01557814, + -0.021926254, + 0.007340906, + 0.0070731663, + 0.012078772, + 0.013129238, + -0.012909594, + 0.03300042, + -0.039110668, + -0.00523119, + 0.029009776, + -0.034495335, + -0.013551541, + -0.03932762, + -0.0048762634, + 0.002704742, + 0.0045406963, + -0.05393958, + -0.04099249, + -0.03905028, + 0.044072464, + 0.052679867, + -0.0045600315, + -0.008843174, + 0.018041965, + -0.011582551, + -0.035522748, + -0.01899112, + -0.053622033, + -0.0362328, + 0.008805513, + 0.025712403, + -0.013389498, + -0.037113763, + 0.029269831, + -0.009276727, + 0.008873199, + -0.015056391, + -0.051925763, + -0.049289364, + -0.050172508, + -0.019408736, + 0.03754487, + -0.05845623, + 0.01034776, + -6.460975E-4, + -0.0026849837, + 0.036625244, + 0.0051474213, + 0.0036795156, + 0.015643038, + -0.0026890421, + 0.009930174, + -6.141836E-4, + 0.018725418, + 0.01461846, + -0.022777727, + -0.028956398, + 0.031135524, + -0.035999108, + -0.036954816, + 0.050610702, + -0.0061264713, + 0.002102011, + -0.013319307, + 0.016234754, + -0.0536143, + -0.024376415, + -0.029619044, + -0.04408354, + -0.013536347, + -0.036648586, + 0.010976722, + -0.01437064, + 0.095511265, + -0.041383833, + -0.03384952, + -0.012578752, + 0.0060007046, + 0.031823292, + -0.043734048, + -0.026453095, + -0.011944136, + 0.036042485, + 0.039712142 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.genres.1.json b/common/search/src/test/resources/test_documents/images.genres.1.json index 498082fee..bf771cbe9 100644 --- a/common/search/src/test/resources/test_documents/images.genres.1.json +++ b/common/search/src/test/resources/test_documents/images.genres.1.json @@ -1,1337 +1,5249 @@ { - "description": "images with different genres", - "createdAt": "2023-11-21T14:25:43.949780Z", - "id": "onjwqn3s", - "document": { - "modifiedTime": "2013-12-24T22:18:34Z", - "display": { - "id": "onjwqn3s", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different genres", + "createdAt" : "2024-11-14T14:37:56.407937Z", + "id" : "rq5xcdkx", + "document" : { + "modifiedTime" : "2048-01-18T04:47:01Z", + "display" : { + "id" : "rq5xcdkx", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/zhz.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/zhz.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#17A0A0", - "source": { - "id": "peziohgi", - "title": "title-TUa7KVeUu4", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 0.38759995, + "averageColor" : "#63D0C8", + "source" : { + "id" : "mg2z5kcv", + "title" : "title-Mwkf9XEEId", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "onjwqn3s", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "peziohgi", - "sourceIdentifier.value": "pikYTn72Hs", - "identifiers.value": ["pikYTn72Hs", "jdOoaoN4T6", "3Mf5K6fB88"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-TUa7KVeUu4" + "query" : { + "id" : "rq5xcdkx", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mg2z5kcv", + "sourceIdentifier.value" : "TCqFnT1Dwy", + "identifiers.value" : [ + "TCqFnT1Dwy", + "ZVArfOHkC4", + "9cj08zf2Pd" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Mwkf9XEEId" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] - }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "vectorValues": { - "features1": [ - -0.008359648, 0.010414631, 0.015519961, 0.030528773, -0.010668897, - -0.009348229, 0.011588972, 0.019034954, -0.0018527469, -0.020042636, - 0.0047634924, 0.006748427, 0.025072291, -0.038047165, -0.013664672, - 0.029397428, -0.015296041, -0.01235338, -0.030050537, -9.3839224e-4, - 0.011954502, -0.00138775, -0.023868602, -0.007828637, 0.011650512, - 0.0026370066, -0.0053687785, -0.0012217051, 0.006674663, -0.0036670056, - 2.0352402e-4, 0.008068277, 0.011556993, 6.1102625e-4, -0.0038451226, - 0.020642947, 0.00769819, 0.011126328, 0.020007059, -0.010951817, - -0.023810348, -0.0072670705, 0.009872646, -0.0059599606, -0.030708207, - 0.014161147, 0.0057220813, 0.022255698, 0.0066081258, 0.0087175155, - -0.0050987033, 0.023958758, -0.013105809, 0.008010641, 0.017179543, - -0.0075367, 0.0029458955, 0.027050404, -0.0117573105, -0.017893236, - -0.026683392, -0.029275235, 0.014115257, -0.030888336, -0.037457366, - -0.0013346734, 0.007315697, 0.0038329777, -0.015689455, -0.010773089, - 0.009565859, -0.014825218, -0.0041951323, 0.015925823, 0.025328849, - 0.006473254, -0.01784844, -0.0010302054, -0.011613326, 0.019756226, - 0.008434555, 0.0061852755, 0.0077874293, 0.0119342245, 0.002872148, - -0.0072251437, -0.024679445, -0.018731875, -0.008226102, -0.025634516, - -0.011171601, -0.009363227, 0.009479326, -0.0025369718, 0.016679542, - -0.0036120147, -0.0025911396, -0.009387647, 0.0075452817, 0.0010657642, - 0.022211106, 0.012708336, -0.014335301, -0.009512424, 0.0017582186, - 0.022469662, -0.03365759, 6.592566e-4, -0.010323201, 0.02062488, - -0.010723596, 0.013879552, -0.040637325, 0.004395985, -0.013569934, - -0.0066994987, 1.5088734e-4, -4.126416e-4, -0.011153927, -0.012741624, - -0.019957386, 0.03133339, 0.0072144405, 0.025815962, -0.0071024084, - 0.010753532, 0.0046214364, 0.018200357, 0.01652031, 0.02051056, - 0.022823105, -0.0023953405, 0.0135308355, 0.0034692697, -0.0024766217, - 4.0186057e-4, -0.034814235, 0.008465158, -0.01169341, 0.00575204, - -0.0018947815, 0.01541084, 0.011536697, -0.0035132773, 0.031796053, - 5.8952987e-4, -7.614406e-4, 0.007711301, 0.008340923, -0.008001506, - -0.0084050065, 0.023498619, 0.008339774, 0.015427577, 0.020168955, - 0.006242833, -0.010611969, 0.020726284, -0.002807587, -0.00483023, - 0.024324842, 0.024586009, 0.0025886307, -0.003470368, -0.0038241837, - -6.89342e-5, -0.0067260875, -2.7797918e-4, 0.0038074062, 0.005477759, - -0.0077511193, -0.023106659, -0.024456376, -0.012888863, -0.0018864331, - -0.010948325, 0.012428556, 0.0042943293, -8.062132e-4, -0.03397367, - 0.012197551, -1.7370388e-4, -5.201935e-4, 0.0015771734, 0.004891107, - -0.007079481, -0.00534429, 0.020605475, 0.0035064563, -0.013326341, - -0.018730314, 0.005903843, -0.02289242, -0.027287299, 0.030360775, - -0.007757463, -0.020921582, 0.0031032949, -0.005343958, 0.002208812, - 0.019862682, -0.0042397743, -0.0020432444, -0.019901311, -0.03154285, - -0.014955004, -0.018783517, -0.0065330574, 0.0045667198, -0.030592859, - -0.018058667, -0.025921386, 0.018313086, 0.01668485, -0.008021058, - -0.02090845, 0.009608349, 0.026388286, 0.029316923, 0.03165953, - -0.014623299, -0.028394325, -0.012902183, -0.0019197619, -0.026457457, - -0.009894631, -0.00895621, -0.004408431, -0.010951659, 0.0132370535, - -0.005723855, 0.03363809, -0.0065322807, 0.0055751437, -0.0029275597, - 0.0035414584, 0.0020097068, 0.0027516847, -0.01300442, 0.0120426, - -0.0033436022, -0.016503543, -0.015388285, 0.002325355, 0.014897465, - 0.004672704, -0.0103649255, -0.017265698, -0.0028651115, 0.0070864577, - -0.013822778, 0.010997869, 0.0067171096, -0.032873824, 0.011931691, - -0.018031863, -0.0020901638, -0.0039967685, -0.001661401, -0.004233321, - 0.006417198, -0.03140969, 0.010404679, -0.005533619, 0.008458102, - 0.0114521785, -0.0022434306, 0.012579969, 0.004005219, -0.028039604, - -0.0011651526, 0.01338669, 0.0059696543, -0.007223653, -0.010878796, - -0.003337966, -0.0044647, 0.020225642, -0.009055742, -8.4315997e-4, - 0.0027414332, 7.982003e-4, -0.007915544, -0.0011441399, 0.011327303, - 0.0042069764, -0.009841606, -0.0014283792, -0.016831605, -0.01881862, - -0.017682632, 0.0134898815, -0.0024358325, 0.022857718, 0.019719476, - 0.010631889, 0.009546201, -0.00900049, 0.0150160305, 0.019484727, - -0.041607372, -0.007176254, 0.018215202, 0.01974585, -0.0020759532, - -0.021871675, -0.006007849, 0.004206402, 0.0042309165, -0.019421892, - 0.004439981, -0.010675886, -0.005787364, -0.02278737, -0.0027232964, - 0.032883074, 0.008602339, 0.009634448, -0.0094389785, -0.003209534, - 0.011256346, 0.0064948853, -9.3394826e-4, 0.0050152936, 0.020709164, - 0.014279016, 2.976281e-4, -0.02005164, -0.0046025873, -0.01282738, - -0.019257445, 0.025851458, 0.0136007685, -0.014792551, 0.0033353118, - 0.017688377, -0.010563941, -0.010268565, 0.0027681016, -0.0048751603, - 0.022347482, 0.014027272, -0.028735684, -0.052113734, 0.017166842, - -0.010726364, -5.3756713e-4, -0.007494968, -0.018044543, 0.004335408, - -0.02820065, 0.01744187, -0.014491947, -0.005341821, -0.011287998, - -0.024383066, -0.0028704484, 0.015366928, -0.00658387, -5.9220224e-4, - 0.002873153, -0.0024023056, 0.014787098, 0.009655379, -0.0045358003, - 0.008613359, 0.0067806123, 0.0037075924, 0.017012883, 0.01545638, - -0.024581155, 0.012142704, 0.002802235, -0.004036366, -0.021065982, - -0.0018652768, -0.031363614, 0.0069481, 0.025654586, 0.017634012, - 0.0013820154, -8.3115365e-4, 0.0067438185, 0.0072408505, 0.017330047, - 0.009012048, -0.029084694, -6.834447e-5, -0.01290171, -0.0035624625, - -0.0031654635, -0.022340778, 0.01605966, -0.0018579257, -0.0023801597, - -0.010953601, 0.0032453358, -0.019333659, -0.0011983868, -0.0045325863, - 0.005836428, -0.014699583, 0.012811444, 0.021994188, -0.023800734, - 0.009037911, 5.560921e-4, 0.0022479275, -0.0014347275, -0.016347857, - -0.007411415, 0.024101067, 0.014858501, 0.0024785988, -0.007447649, - 0.01565335, -3.2102258e-4, 0.007861201, 0.03405783, -0.018783864, - 0.007530085, 0.02436959, -0.010197329, 0.0027357903, 0.0114751505, - -0.0054516573, -0.0035310688, -0.010742587, -0.016601581, -0.002540636, - -0.014421673, -0.018603243, 3.76244e-4, -0.016018672, 0.018879447, - -0.009938403, 0.02353707, 0.037680175, 0.026080478, -0.02649613, - -0.024576504, -0.013767303, -0.012280747, -0.0063861134, 0.013970249, - -0.00501073, 0.02200758, 0.02002235, -0.015929304, -0.014104054, - 0.014113105, -0.0018226557, -0.03894725, 4.934745e-4, 0.021105157, - 0.046105526, -0.021822773, 0.01884346, -0.010189711, -0.015937213, - 0.014593842, 0.0024011538, -0.0027143196, -0.01433858, 0.010119143, - -0.01274296, 0.028717186, 0.020168196, 0.007655428, 0.027933419, - 0.0014207388, -0.013598156, -0.0072694565, 0.01898738, 0.002648541, - -0.0075859567, -0.007519194, 0.0051574134, -0.014920667, -0.004116808, - 0.012041637, -0.0059008016, 0.0126944, -0.020516315, -0.009213512, - 0.019061964, 0.021872377, -0.012461436, -0.02009335, 0.007012986, - -0.0036270197, 0.013325649, -0.006843764, 0.013427665, 0.010284496, - -0.027005231, -0.011481763, -0.019905768, 7.13658e-4, -0.011508007, - 0.015201836, 0.007492801, 0.0064892424, -0.015516899, -0.0018816328, - -0.004391662, 0.018457126, -0.0010371718, -0.026133375, 0.007579817, - 0.0051157787, -0.019125596, 0.024126261, -0.004335933, -0.0057252552, - 0.017191416, -0.018849121, 0.010327396, 0.007507924, -0.0021251296, - 7.7312114e-5, 0.023423482, 0.0139010865, 0.0182278, -0.012418394, - 0.002511323, -0.0011662086, 0.018472422, 0.01670866, -0.018910509, - 0.005204875, -0.00831123, -0.025293237, -0.0056170295, 0.019082792, - 0.017199744, 0.0018490026, 0.0074292175, -0.011174772, 0.0072334064, - 0.004044958, 0.01016458, -0.013040251, 0.026402323, -0.035020776, - 0.0031339666, 0.010374834, -0.009740592, 0.004710761, 0.014823774, - -6.34575e-4, 0.006269907, -0.030490018, 0.0017661002, -0.028926574, - -0.013302123, -0.010402875, 0.008866633, 0.029388886, 0.012280592, - 0.015100104, -0.007005419, 0.013469916, 0.021373285, -5.147082e-4, - -0.017794073, -0.015276225, 0.017483857, -0.016814388, -0.013782857, - -0.008659118, -0.018093493, 0.0039771614, -0.020080473, -0.0012045304, - 0.018901765, -0.0032339976, -0.024338609, 0.010747376, 0.017484996, - -0.026882587, -0.024022967, 0.032271508, 0.0072115147, -0.012927361, - -0.017130904, -0.0024480177, -0.0010787667, 0.016898578, 0.0042938637, - 0.013279838, -0.0063836337, -0.012404733, 0.0090874275, 0.00904464, - -0.018134313, -0.015434136, -0.005421225, 0.0032887156, -0.0029813047, - -0.017392337, 0.0055640624, -0.01763588, 0.010485949, -0.03557496, - 0.005182154, 0.023342652, 0.008740839, -0.022674171, -0.0053328318, - -0.021626227, -0.014954544, -0.0357864, -0.020546256, -0.0159832, - -0.021349914, 0.017667176, -0.03502883, -0.0024778498, 0.026659662, - -0.012697003, -0.015443312, 0.00793405, 0.0105122, -0.0013784464, - 0.020669205, 0.004493618, 0.0049629416, 0.026097897, 0.0030045814, - -0.025776047, 0.03077405, -0.0012222091, 0.014444772, 0.016208801, - -0.0015991712, 0.0025655634, -0.016814815, -0.011255495, 6.7288405e-4, - -0.010151021, 0.011762175, 0.006790239, 0.0055065947, -0.0047580516, - 0.0044428525, -0.012729422, 0.0019354348, 0.0381941, 0.0050264676, - -0.0033188125, -8.0291124e-4, 0.011524214, 0.016347839, 0.010533081, - 0.0013891222, 0.027219756, 0.020898098, 0.011400338, 0.012639192, - 0.0012777454, 0.010814683, 0.0048933234, 0.008645284, 0.021584649, - -0.023233509, 0.0173169, -0.014087654, -0.010961589, -0.0055945124, - -0.0048537576, 0.007968818, -0.014060868, 0.0034731568, -0.015133005, - 0.01112388, 0.008038545, -0.006863283, 0.005966257, -0.011486975, - -0.0039808, -0.026037062, -0.012513518, -2.5264366e-4, -0.023755828, - 8.906993e-4, 0.0046558906, 0.0076751327, 0.03199087, 7.1641855e-4, - 0.003623688, -0.0066323397, 0.019538283, 0.004327097, -0.012517872, - 1.5513671e-5, 0.024846543, -0.01412312, 0.032434333, -7.08103e-4, - 0.0060652196, -0.008566608, 0.012888862, 0.0010429655, 0.0024046558, - 0.0064022257, -0.0010224358, -0.023023475, 2.7841495e-4, 0.003960436, - 0.002053694, -0.012875293, 0.015397226, 0.0029253454, 0.013135105, - -0.028202822, -0.0013138496, 0.008772796, -0.0063013416, 0.00985682, - 0.0027395752, 0.038681995, -0.0024686933, 5.879681e-4, 0.021119876, - 0.0055792416, 0.0043277466, 0.011844904, -0.011089887, -0.014998927, - 0.0077663874, 0.01131095, -0.004156131, -0.0071938536, -0.013968936, - -0.0055018966, 0.00427676, -0.0019577001, 0.020352265, -0.0068929642, - -0.0436549, -0.023561502, 0.031772275, 0.0015930228, 0.025052648, - -9.5328456e-4, 0.008148821, -0.008975879, 0.0056649437, 0.009434138, - -7.1330444e-4, 0.004505065, 0.026903361, 0.009052445, 0.01591004, - -0.01457581, -0.01976752, 0.010542651, 0.012666537, -0.008428026, - 0.0070322286, 0.0048312214, 0.0041134837, 0.0075505027, 0.03236255, - -0.0045419484, 0.0077013965, -0.00872839, 0.0031074442, -0.005321764, - 0.011185855, 0.02487278, -0.040958323, 0.025775895, -0.00894615, - 0.005565597, -0.020668902, 0.016831527, -0.022703903, 0.0048030764, - -0.010518602, 7.9257466e-4, 0.019663677, -0.020078246, -0.0033196902, - -0.0029955516, 0.019288763, -0.014520401, -0.031317845, -0.010152273, - 0.005042264, 0.01019767, 0.006378912, -0.045027625, 0.029588237, - 0.020579044, 0.0076958234, 0.018373383, -0.0033609173, -0.014404668, - -0.023337523, 0.0045248494, -0.01136427, 0.028390195, 0.023974773, - -0.018062633, 0.0044235396, -0.035665505, 0.011650006, -4.801608e-4, - 0.0043636146, 0.0074475086, -0.011844404, -0.04319704, -0.01678444, - 0.0014922466, 0.010387963, 0.010058397, -0.016439488, 0.015035708, - 0.031823777, -0.004505427, 0.0052054, -0.014039141, -0.002255401, - -0.0036623594, 0.012861042, 0.022773828, 0.010056398, 0.011557834, - -0.0048506223, -0.008601147, -0.0023392118, 0.006398232, 0.00579021, - 0.0011051528, 0.012400269, -0.030933836, -0.0130222, -0.014437614, - 0.021590155, 3.030708e-4, 0.027132727, 0.0035138968, -0.014559922, - -0.015945107, -0.012382386, 0.0038727112, 0.005560954, -0.0071152723, - -0.035787106, 0.004970299, 0.008449404, -0.027798574, 0.00916027, - -0.0046339016, 0.019905211, 0.019577626, -0.018502295, 0.01635855, - 0.011652817, 0.018441096, -0.0064505637, -0.016309759, 0.021689415, - -0.026508363, 0.019731242, -0.008071722, -0.023978166, -0.0037115638, - 0.023478404, 0.0342856, 0.0063505364, 0.0020938404, 0.0067257783, - -0.027118964, -0.0055023185, 0.017251883, 0.008790226, -0.0072542946, - -0.013966074, -0.02721133, -0.0290633, 0.0067308005, -0.00883706, - 0.0028636523, 0.020808114, 0.008035645, 0.0016292669, 0.009188032, - 0.02894518, -0.036537595, 0.0019489408, -0.0019885828, -0.00784894, - -0.014598015, -0.0074796104, 0.0066805887, -0.012831145, -0.019543407, - 0.024800858, 0.0033179845, 0.015338623, -0.0027191401, 0.012463616, - -0.021953804, -0.025903895, -0.013304601, 0.008360553, 0.03732405, - -0.0155014545, 0.016747521, 0.0029216534, 0.011077051, -0.02158907, - 0.0096327495, -0.01203591, -0.0013731326, 0.021946685, -0.01225465, - 0.0063549518, -0.0033895436, -0.00331752, 0.013451144, 0.01631262, - 0.04817916, -0.020601591, 0.025980651, 0.0033504998, -0.003241391, - 0.009198771, 0.01314232, 0.0043785763, 0.0070424797, 0.010239792, - 0.022798775, 0.0015431042, -0.028147237, -0.0113951545, 0.006418242, - -0.0052318503, 0.012400419, -0.0069425567, -0.0013952907, -0.0166856, - -7.0986344e-4, -0.0019216854, 0.0048018475, -0.0074407803, 0.0030225194, - 0.023273027, -0.0277964, -0.018761326, 0.002881256, 0.01458632, - -0.018940888, 0.004147601, -0.0044954624, -0.0022994603, 0.009914415, - 0.0010739446, -0.009438944, -0.018672116, 0.033744663, 0.020179069, - 0.016917296, -0.020328322, -0.007980647, -0.033157334, 0.0072334316, - 0.031158496, 0.033908132, -0.0026566624, 0.015074955, -0.011280918, - -0.0016978111, 0.015123264, -0.0016285615, -0.010525334, -0.009922783, - -0.0019295935, -0.031033594, 0.007319297, -0.004073144, -0.02473293, - -0.0035962944, -0.003929684, -0.0057499018, -0.015060886, 9.972067e-4, - 0.015049161, 0.009649485, -0.04027046, 0.013457908, -0.0040887576, - -0.003051304, -0.019297987, 0.0013926143, -0.010640426, 0.0041289316, - 0.01682193, -0.02399758, 0.021449056, 0.0029441058, 0.014218515, - -0.004738897, -0.009443819, -0.0052095717, -0.019222435, 0.003332887, - 0.013860647, -0.033217195, -0.0032943003, 0.0047141043, 0.008450341, - -0.0054488014, 0.004289239, 0.011034418, 0.016416332, 0.011325448, - -0.010958092, -0.031766996, -0.04175906, -0.0051458017, -0.020300394, - -0.022228256, -0.016952075, 0.010870653, -0.003750603, -0.021790322, - 0.020676034, 0.009165949, -0.008826885, 0.008649598, 0.032392204, - -0.0016141352, -0.0030237706, 0.011221103, 0.002621962, -0.0091188345, - 0.019037966, -0.017632194, 0.026416173, 0.0139828585, 0.016008541, - -5.4730504e-4, -0.0065998915, -0.005303137, 0.0058982912, 0.011799523, - -0.015741872, 0.0019153905, 0.029803244, -0.008421269, 0.010434393, - -0.015317066, 0.0070520844, 0.005300515, 0.016191062, -0.03230345, - -0.020046953, 0.0023861567, -8.542531e-5, -0.013670842, 0.0065318667, - -0.0018268465, -0.039614283, 0.009107906, 0.029727053, 0.0177123, - 0.009010951, 0.021698019, 0.0081287455, 0.023538314, 0.017779594, - -0.015508247, 0.0069332733, 0.014325654, -0.020412534, 0.009596873, - -0.009765097, -0.03523607, -0.003813795, -0.0033308938, 0.020254543, - 0.008529526, -0.009755891, -0.0033075865, 0.01011618, -0.018052816, - -0.0065839966, 0.0060869013, -0.004651273, -0.012284213, 0.03735852, - -0.004528217, 9.852817e-4, -0.023778366, 0.018455543, -0.019225026, - -0.010677266, 0.016670333, -0.003715346, -0.018105349, 0.002643178, - -0.012576528, -0.0073980684, -0.005566228, -0.015971407, 0.007851261, - 0.010769485, 0.013621966, -0.010887608, 0.011315938, -0.015176822, - 0.0030637225, 0.016667722, 0.0066676685, -0.030359596, 0.022976026, - 0.0020677263, -0.013356424, -0.009507573, -0.017493725, -0.02171133, - -7.771458e-4, 0.023476956, 0.014319537, -0.020432785, 0.0031610664, - 0.0031948406, 0.009557538, -0.008211255, -0.0021563326, -0.030859344, - -0.015690649, 0.015268406, -0.017635077, -0.005108615, -0.008371037, - -4.6725743e-4, -0.0219211, -0.028623436, 0.007830331, -0.013093365, - 0.0059378026, -0.023571614, 0.028977774, -0.007816813, -0.020807324, - -0.0118765235, -0.011574699, 0.0031917936, -0.00834054, 9.803602e-4, - -0.0094281295, -0.015577555, -0.017780416, 0.020245232, 0.0096731875, - -0.010392641, 0.01381684, 0.016252933, -0.011122286, 0.0098897405, - -0.016755583, 0.0057255705, 0.004057902, 0.0034304676, 0.011720508, - -0.026868023, -0.023828547, 0.030279864, -0.03137911, -0.018171402, - -0.016331723, 7.910286e-4, 0.0036850837, 0.02563036, -0.01023204, - -0.0141625395, 0.024332933, -0.01241779, 0.009040319, 0.0061659804, - -0.016251827, 0.014269292, 0.006701848, -0.011154009, 0.0021264157, - 0.012071326, 0.0027614727, 0.010115644, -0.020314554, 0.017624257, - -0.0343811, -0.0012243075, -0.002030059, 0.007748307, 0.012147411, - 0.016683437, 0.026629183, 0.020317571, 0.009391793, 0.0021496865, - 3.589389e-4, 0.01598792, -0.010137759, 5.003339e-4, 9.2561316e-4, - -0.012959128, 0.0065188245, -0.015379869, -0.012552442, 0.02103458, - 0.034157436, 0.010667299, -0.011493447, -0.0035986148, 0.017046092, - 0.027137414, -0.025085887, 0.021767855, 0.0041906643, -0.013180695, - 0.019068195, 0.02977241, -0.004477965, -0.0089881085, -0.0017224796, - 0.04290136, -0.015991108, -0.014479203, -0.017186742, -0.015515512, - -0.002632754, -0.0011512587, -0.010048169, 0.014424693, -0.009366898, - -0.014626473, 0.0061522853, 0.021884937, 0.018911086, -0.026042674, - -0.0062633557, 0.0062346486, 0.019601623, 0.0076131793, -0.05617878, - -0.009899995, 0.0060195974, -0.010720321, 0.014452653, -0.02801104, - 0.019805025, -0.01816701, -0.0075474777, 0.012425471, -0.001813417, - 0.0035451627, 0.0060550626, -0.025824364, -0.01700739, 0.01595357, - -0.037634917, -0.009925392, -0.010065718, 0.0091341315, -0.00867835, - -0.009132717, -0.004162482, -0.01129617, -0.005436365, -0.0025875075, - -0.0090317065, -8.622727e-4, 0.01456391, -0.0016600655, 0.021926053, - 0.010333033, -0.027449483, 0.007128767, 0.009707596, -0.008253235, - -0.024738664, 0.02423554, 0.009239604, -0.0063549136, 0.010225585, - -0.01813979, -0.0042761536, 0.0018938631, -0.0070459335, 0.028402295, - -0.036796845, -0.011779874, -3.606179e-4, 0.0014598056, 0.01994367, - -0.0077545685, -0.010927268, -0.012117293, -0.022437455, 0.006607931, - -0.010603251, 0.011496704, -0.002017469, 0.017275626, 0.028310291, - 0.015408195, 0.021765387, 0.005126298, 0.010731498, 0.016931955, - 7.445022e-4, 0.0072231307, -0.015970852, 0.0072992686, -0.0024961268, - -0.0132706985, -0.014257288, 9.246599e-4, 0.0052184053, 0.009272955, - -0.0107254265, 0.0074414974, -0.010678127, -0.019015647, 0.012918212, - 0.0071442993, 0.0021264947, -0.0034057195, 9.5276267e-4, -0.005561784, - -0.036796026, -0.005189948, -0.019070018, -0.001807648, 0.0056702653, - -0.012986587, 0.007995668, 0.0034934524, 1.0781821e-4, 3.2495774e-4, - -0.02185401, -0.0163831, -0.0141169885, 0.029445771, -0.028846705, - 0.0040735183, 0.010588622, 0.015618514, -0.0024704728, 0.002319471, - -0.007740162, 0.004279283, 8.051232e-4, 3.3922298e-4, -0.0043007806, - 0.008117779, -0.018366849, -0.027404895, -0.003892663, -0.014618023, - -0.006974888, -0.018830718, -0.01940331, -0.021006841, 0.00880614, - -8.194166e-4, 0.00391442, 0.006720472, -0.004186728, 0.008997587, - -5.588929e-4, 0.009655243, 0.0038855441, -0.017331367, -7.0511014e-4, - -0.014000789, -1.7216148e-4, 0.014383781, -0.005648372, 0.0016568325, - -0.0024017023, 0.0113247335, -0.025284093, -0.0062952135, -0.0126054445, - -0.028724674, -0.017586408, 0.028621225, -0.016985305, 0.025806226, - -0.002287834, -0.0065791346, -0.011942721, 0.017181262, -5.0570956e-4, - 0.009021784, 0.017719902, -0.015937569, 0.0016153675, 0.017032519, - -0.0145111745, 0.0024851412, 0.011860379, -0.020623552, -0.0010597707, - -0.015700819, 0.01794301, -0.02171824, 0.0020668956, 0.026261393, - 0.0021729486, 0.0034039253, -0.028302006, 0.024503088, 0.017673874, - 0.007402841, 0.007872058, -0.0133097395, -0.028070733, -0.0017460046, - -0.015423636, -0.0047866027, 0.0019110171, -0.014010489, -8.817778e-4, - -0.0013674552, 0.020060277, -4.4519146e-4, -0.012867157, 0.013068186, - 0.009497976, -0.02623992, 0.009850775, 1.646558e-4, -0.004731931, - 0.0010080665, -0.021860695, -0.0029625832, 0.007597274, 0.0056077004, - 0.019565828, 0.01512784, 0.017194662, -0.004820694, 0.016258672, - 0.043518975, -0.02066348, -4.3040316e-4, -0.01120583, 0.0031084374, - 0.00655146, -0.005002375, -0.010405393, -0.012811725, -0.03116725, - 0.01688225, -0.030928802, -0.015550116, 0.014756302, 0.0102623515, - -0.00878808, -0.027108843, 0.0085965395, -0.016256481, -0.022572422, - -0.04350769, 0.013169792, -0.013348652, -0.0064523323, -6.1706477e-4, - 0.023520593, -0.0012761457, 0.0033594759, -0.024598807, -8.284737e-4, - -0.015426335, -0.026625182, 0.016997706, 0.036106452, -0.004319377, - 0.005771196, 0.0034035468, -0.004166044, -0.0050170696, -0.014655523, - 0.025469793, -0.046845175, 0.012075317, -0.0026530598, 0.008481254, - -0.002546433, -0.0056519, -0.011882617, -0.0025364181, 1.1436226e-4, - -0.0069246506, -0.02643246, 0.014209126, -0.0057706377, 1.3187842e-4, - -0.03237947, 0.011609846, 0.024608029, -0.009879585, -0.012839991, - 0.016224947, 0.0041174856, -0.020943696, 0.021660803, -0.014290202, - 0.018691722, -0.0083168745, 0.013384411, -0.0021905792, 0.0033362077, - 0.0060260515, 0.017036615, 0.005519838, 9.6158887e-4, 0.027158426, - -0.012080374, 0.0062788376, -0.012485068, 0.0011017773, -0.012649854, - 0.0041344664, 0.021981332, -3.835183e-4, 0.033511885, 0.009254699, - -0.043493293, -0.007995029, -0.017184842, 0.020084757, -0.016459163, - 0.022641249, 0.016612915, 0.0011472609, -0.020497378, 0.024573402, - 0.013719786, 0.02141075, -0.0014021372, 0.0053062374, 0.011639286, - -0.02096296, 0.0022261823, -0.010712041, -0.0033718187, -0.014719048, - 0.010278267, -9.1325905e-4, 0.009242595, 0.021437692, -0.0054825074, - 0.007758012, -0.002174779, 0.0054870625, -0.016669502, 3.4686326e-4, - -0.0045817653, 0.0026009087, 0.0037582673, -0.005414403, -0.016788075, - 5.0975906e-4, -0.027207993, 0.0076369196, 0.005796707, 0.018402368, - 0.0010086376, 0.020086385, -0.0069367536, 0.017269615, 0.00469083, - -0.036272407, 0.005150444, 0.0019892133, -0.008794248, -0.0034422153, - -0.0032831728, 0.024542464, -0.022511212, -0.011316052, 0.0052542733, - -0.017887982, -0.016383767, -0.02134913, -0.014887836, -0.010874457, - 0.008022129, -0.0076844594, 0.00205251, -0.015384395, -0.018486548, - 0.0012034591, 0.0049133785, 0.0029804853, 0.003332977, -0.013395779, - -0.007107273, -0.0027606285, -0.0023436458, -0.0038389873, -0.019660871, - -0.0014342105, 0.0019487719, 3.2699696e-4, 0.025637602, 0.010565171, - 0.0020263519, 0.015916614, -0.020452047, 0.0059417426, -0.0110132, - -0.0027421534, -0.011992224, -0.0074860905, 0.0028742065, -0.017368058, - -0.013013816, 0.028042514, -0.020904224, 0.011424073, 0.022826854, - -0.016213108, -0.02282, -0.015020444, 0.020100687, -0.0015650317, - -0.0129744075, -0.0101388935, 0.0035709364, -8.870401e-4, 0.0037305534, - 0.0341911, -0.010051054, -0.025767338, -0.019221893, 0.010185048, - 3.9668512e-4, -0.02268515, 0.0043992563, -0.02379961, 0.0049139606, - -0.011352435, 0.027178388, 0.011393344, 0.005282792, 0.0038236505, - 0.0048677227, 0.01134377, -0.0024226538, 9.942625e-4, 0.010508252, - -0.0024476256, 0.030571971, 0.01325904, 0.022073137, 0.0049190833, - 0.024111431, 0.00870749, -0.002271642, -0.004878828, 0.0014577954, - 0.028859029, -0.014744986, -0.0063655362, 0.013514949, -0.028558958, - -0.023028811, -0.012598525, -0.008149267, 0.033961445, 0.028314281, - 0.005981569, -0.023643283, -0.005682883, 0.009204784, -0.009388164, - -0.0027028446, -0.0031063245, -0.013690215, 0.032118313, -0.03078896, - -0.0033994864, 0.008340332, -6.3987204e-4, -0.012353952, -0.0045414977, - -0.023485051, -0.022907853, 0.0065480466, -0.0020323165, 0.039923135, - 0.012433443, 0.013367656, -0.00160721, -7.470994e-4, 0.0027025875, - 0.0132210115, -0.024179056, -0.0050566746, -0.027339531, -0.0014901081, - -0.020633958, -0.0022464804, -0.022107756, 0.023162324, -0.009135946, - 0.027218945, -0.014173651, -6.3793146e-4, 0.015383324, -0.018431129, - 0.011977949, 0.010399322, 0.029487427, -0.020545106, 0.01858275, - -0.014147642, 0.023755351, -0.017596234, -0.008499109, 0.018965967, - 0.009836231, 0.026394486, -0.012903474, -6.7379634e-4, 0.027131066, - -0.010071695, 0.0011471506, -8.096151e-4, 0.010147844, 0.01689242, - 0.014211943, 0.009885878, 0.042426337, -0.030359892, -0.013198418, - 0.004827045, -9.444595e-4, -0.0033314931, -0.005638989, 0.009333256, - 0.0141771985, 0.0036703395, -0.008502639, -0.014137848, -0.036943674, - -0.046048425, 0.00427892, -0.0040653944, 0.023039479, -0.015335217, - 9.022915e-4, 0.03688565, -0.00319783, 0.01712081, -0.0125479065, - 0.023747435, -0.015205132, -0.01995655, 0.031559665, 0.027955066, - 0.0062930174, 0.010557282, 0.0042906436, -0.0022165116, -0.0049468973, - -0.015303498, 0.0053387703, -0.022102686, -0.014817013, -3.6333752e-4, - -0.026964074, 0.02297293, -0.029606331, -1.1516902e-4, -8.151063e-4, - -0.04154409, 0.007873028, -0.0030845546, 0.0051534376, 0.016918233, - -0.006822085, -0.020616671, 0.009749045, 0.003803516, -0.021637958, - -0.015620424, 3.697215e-4, -0.009199864, 7.683712e-5, 0.018932221, - 0.016090844, -0.0030393915, -0.010023941, 0.0027916075, -0.015030223, - 0.0053540785, 0.0207523, 0.018528486, -0.005751889, 0.0071194787, - 0.009889108, 0.015076497, 0.0052049872, 0.020726113, -4.957247e-5, - 0.015791263, 0.0022787128, 0.0014655853, -0.0010541064, 0.007858827, - 0.018741466, 0.003372152, 0.021884382, 5.9803383e-4, 0.022250997, - -0.012301171, -0.011232179, -0.0017115143, 0.0029513023, -0.009365115, - 0.0026648568, 0.0033392159, -0.004051457, -0.006849568, -0.013986771, - -0.009946207, 0.0037444243, -0.016199086, -0.030280016, -0.027542276, - -2.4179828e-4, 0.0050460184, 0.018768026, 0.012049097, -0.0029173505, - 0.009555936, -0.004291268, 0.0063676327, -0.0015716716, 0.0058446415, - 0.017122155, -0.004006628, 0.0027819134, 0.022827148, -0.019088939, - -0.011845908, 0.0040117893, 0.03711686, -3.836346e-4, 0.009695589, - 0.0023367258, -0.0036079776, -0.014353267, -0.0016196034, 0.009724547, - 7.922116e-4, -0.028503522, 0.022272779, -0.016990643, -0.014739584, - -0.027745683, 0.008064808, 0.0030359733, -0.0072828876, -0.036686953, - -0.025692185, 0.0058965543, -0.0019072087, 0.034875803, -0.006907285, - -0.02168159, 0.012920843, -0.007932066, -0.0102039855, -0.021920292, - -0.001963701, 0.020137306, -0.0057019773, 0.0064155147, 0.003276002, - 0.002240731, -0.016265694, 7.901165e-4, -0.006811527, 0.0043931087, - -0.026391255, -0.017141556, -0.015571495, 0.018225577, -0.01067349, - 9.6670796e-5, 0.0056190575, 0.014694258, 0.008492208, 0.0057816966, - 0.0020788966, 0.01332303, -0.0073043634, 1.4956434e-4, 0.014579847, - 0.0010720543, -0.019681579, -3.2948822e-4, -0.0039033683, 0.0036540497, - 0.011371214, -0.021922015, 0.013595832, 0.020788109, -0.0036230504, - -0.015220778, 0.005492209, 0.029482756, 0.019671064, -0.016022995, - 0.014481692, -0.0014591814, 0.01260984, -0.030150158, -0.016434567, - 0.011938834, -0.020665526, 0.046769064, -0.01954738, 0.038402393, - 0.0021850727, -0.015796635, 0.0075954553, 0.0051831347, -0.015923139, - -0.021009818, 0.02244903, -0.029764144, -9.487397e-5, -0.01670527, - -0.021221874, -0.021597192, 0.003327897, -0.00198011, 0.012295329, - -0.015022106, -8.5454824e-4, 0.0021257696, -0.0037984261, -0.011297812, - -0.022193143, -0.007295832, -0.0047638607, -0.008570414, -0.011534438, - -0.013361546, -0.015265296, -0.035242513, -0.008831876, -0.022508627, - -0.0021789984, -0.0074609444, 0.017616201, -0.007966912, 0.016274998, - 0.021717815, -0.012583459, 0.007393937, 0.01427352, -0.0021973785, - -0.019947775, -0.0073209326, 0.005590357, 0.009599817, -0.0055044503, - 0.029837998, -0.023481427, -0.0077648037, -0.01586777, 0.020079495, - -0.027953183, -0.006196955, -0.01885593, -0.017107796, -0.03115708, - -0.0034473198, -0.0033653418, -0.0037425316, -0.0370147, 0.0014391342, - -0.008270829, 0.0052128695, -0.0025101712, -0.0074625122, 0.014643933, - -0.04049712, -0.009899865, 0.0022107325, 0.0142839765, -0.010722521, - -0.018352779, 0.016796878, -0.020812392, 0.02126822, -0.021637922, - -0.006684814, 0.032165304, -0.005840429, -0.015995208, 0.026583742, - 3.861033e-6, 0.019341327, -0.014441377, -0.008416963, -0.023870183, - -0.047230277, -0.008066494, -0.0021052344, -0.011916728, -0.036862817, - 0.002109751, -0.018123902, 0.010017457, 0.00661448, 0.038816348, - 0.0140816085, -0.0010493522, -0.011758877, 0.0102511505, -8.7546895e-4, - 0.005033606, -0.008742017, 1.9499724e-4, 0.017320836, 0.001180439, - 0.024414312, 0.020099962, -0.016789505, 0.018212715, 0.010647517, - 0.012357327, -0.006813045, -0.0010161803 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ ], - "features2": [ - -0.043868374, -0.022471005, 0.009787572, -0.0072317687, 0.037843205, - 0.030845646, 0.01125026, -0.019523978, 0.034532003, -0.0051355115, - -0.026303887, -0.0073531694, -0.0035155436, 0.0068921708, 0.018145684, - 0.005651887, 0.0037758546, 0.0076322868, -0.0055709807, -0.006874901, - -0.011642301, 0.0018357467, 0.0089576, 0.0038578769, -0.011237306, - -0.024767624, -0.0045590065, 0.0067373137, 0.03270725, 0.022880258, - 0.002954564, -0.02846432, -0.015979819, -0.015913185, -0.016595732, - -0.0038239134, 0.007565743, -0.0023813872, 0.0060482575, -0.011122548, - 0.010540498, 0.0016852992, -0.011942847, -0.016672116, 0.0055943774, - -0.013423643, -0.007711366, -0.004697826, -0.0012585055, 0.008096436, - -0.019652283, 0.004206406, 0.0026981009, -0.027534124, -0.024659222, - -9.742018e-4, 0.016460868, -0.019198038, 0.016813667, 0.0020977843, - -0.0018019959, 0.01254685, -0.005930822, -0.0062780855, -7.788395e-4, - 0.0015704749, -0.014528765, 0.013404436, 0.011050208, 0.0068282173, - 0.015036003, 0.017902484, 0.01781053, 0.017830648, 0.019065274, - 0.014246738, 0.03216089, -0.0055509442, -0.0043185786, -0.018774478, - -0.007897659, 0.02421101, -0.030921828, 0.010857896, 0.0125221005, - 0.025324197, -0.0065319883, -0.018025937, 0.020975115, -0.030710312, - -0.031072568, -0.0062535554, 0.01779957, 0.006554474, 0.013397233, - 0.009650034, -0.009543432, 0.026889702, -0.0075469487, 0.02801772, - -0.0017319502, 0.008085316, -0.01587064, -0.009931461, -0.008227371, - -0.0023725298, -9.991821e-4, 0.0043507796, 0.02199327, -0.0029541394, - 0.015942454, 0.0011160338, 0.009345948, -0.024137266, -0.002058315, - -0.016258126, -0.010160284, -0.036834527, 0.013260765, -0.0071271723, - 0.012069046, -0.007181444, 0.020965196, 0.006003051, 0.008408402, - 0.006958336, -0.008883797, -0.007846454, -0.0062004593, -0.0017675698, - -0.020685172, -0.0010370495, 0.004231498, -0.0027194987, 0.0147796385, - 0.009087077, -0.0028691348, -0.0076755667, -0.004344099, 0.014116292, - -0.0013121358, 0.0074459035, -0.037730265, -0.014130578, 0.007843666, - -0.0066653034, -0.0075895777, -0.015118203, -0.0063033993, 0.004896668, - -0.007902885, 0.022818126, 0.0070892363, 0.03169873, 0.005691831, - 0.011555436, -0.0051759062, 0.009205412, 9.935114e-4, 0.006247489, - 0.024099633, -0.011275357, -0.0048671262, -0.011003376, 0.016112966, - -0.015867457, 0.007132589, -0.0085812025, 0.014201175, 0.0151022645, - -0.0089448355, -0.01012552, -0.0053090705, -0.0011048369, 7.7559083e-4, - -0.0039303293, 0.006579543, -2.9737165e-4, -0.022336934, 0.013602573, - 0.013354892, -0.0046547567, 2.526453e-4, 0.009987936, -0.013281435, - -9.767374e-4, 0.010339968, -0.010511009, 0.0053024124, 3.3054844e-4, - -0.016550105, -0.004528018, 0.014694215, -0.018568182, 0.008332985, - 0.0051865974, 0.03415426, -0.025755156, 0.011829088, 0.018184721, - -0.0049004783, 2.0474035e-4, -0.008808657, -0.0042194757, -0.0039747995, - 0.008304721, 0.014110505, 0.011330543, 0.002846273, -0.023278205, - -0.0036675287, -0.025883567, -0.0066023804, 0.011380928, -0.008066849, - 0.011229936, 0.005794327, 0.0052651223, 0.0071175704, 0.024370832, - 0.006700086, -0.0065165926, 0.014985773, 1.6608385e-4, 0.0071633435, - 0.009654046, 6.4246816e-4, 0.0061369888, -1.0304297e-4, 0.007929621, - 0.002293154, 0.023907451, 0.011064042, 0.020204391, 0.013572263, - 0.01399734, 0.009828869, -0.014262709, -0.012146382, -0.03772556, - -0.023440866, 0.012857302, 0.019244462, -0.0073491186, 0.004349675, - 0.013000096, -0.01267046, -0.015769837, -0.021265702, -0.0013601588, - -0.011286428, 0.027713364, 0.013411889, -0.010677714, 4.0667545e-4, - -0.0045524016, -0.0039733867, 0.021128392, 0.0016465539, 0.010713119, - 0.017598262, -0.007820513, -0.006783591, 0.021802615, 0.007672808, - 0.0103029255, -0.024609935, 0.017630285, -0.02267337, 0.0094850175, - 0.026219841, 0.0100610005, -0.014121889, -0.007882317, 0.018825248, - 0.01603584, 0.0036264798, 1.0265623e-4, 0.0067273984, 0.025928393, - 0.0058205086, 0.020067053, -0.005521364, -0.006511528, 0.0021699015, - 0.025382718, 3.6150575e-4, 0.0149090765, 6.569716e-4, 0.018486027, - 0.0019316046, -0.0063784327, -0.0057853498, -0.015521185, -0.034979396, - -0.0110006835, -0.0037065502, 0.020362485, -0.013821046, 0.0149690425, - 0.00706712, -8.2055456e-4, -0.010325806, -0.024903096, 0.03341685, - -0.027475668, 0.035928156, 0.00784038, -0.0018612519, 0.0061928187, - -0.0385282, 0.0030967465, -0.0034854438, 0.029329717, -0.011383691, - 0.028260402, -0.0054357285, -0.01748487, -0.017231332, 0.001296046, - 0.009798355, -0.003888344, -0.0013959303, 0.048571285, -0.0021183486, - -0.0035243414, -0.007900459, 0.010588801, 0.022822697, -0.0069540623, - 0.009744001, -5.3920556e-4, 0.015024576, -0.0052836677, -0.0012070606, - -0.02438551, 0.034668494, 0.01544572, 0.01492984, 0.008140094, - -0.021984674, 0.0040886234, -0.021448689, 0.0030518104, 0.0053940034, - 0.016817922, -0.0022692236, 0.009194134, 0.02035187, -0.0026519576, - -0.012042098, 0.026106725, 0.035076793, 0.014120087, 0.0025171498, - 0.0055352575, -0.007850112, 0.014193378, -0.018882997, 0.01586018, - 0.0056823594, -0.028187342, -5.9664977e-4, -0.014492343, 0.0034380783, - -0.009930915, -3.142012e-4, -0.0057926495, -0.012224124, -0.038544293, - -1.0017047e-4, 0.0044387784, -9.282193e-4, 0.0022833769, -0.006225655, - 0.021616068, 0.0054038037, -0.024445241, -0.021677883, -0.015526426, - -0.003529843, 0.009990294, -0.023476962, -0.015918238, -0.008527941, - 0.016861942, -0.017154392, 0.0061354483, -0.001806974, -0.0018182917, - -0.018173564, 0.010405139, 0.01561964, 0.014289667, -0.016053747, - -0.0136592435, -9.1009826e-4, 0.013527031, 0.004724523, 0.040923625, - -0.010927317, -0.008962485, 0.008994603, 0.004283947, 7.8979065e-5, - -3.144142e-5, 0.02719301, -0.009876898, 0.017018216, -0.025577158, - 0.008225915, 0.0013931848, -0.010754232, 0.011483862, -0.0028354444, - 0.022853276, 0.011233938, 0.019438019, -0.014708278, -0.004744653, - 0.014186013, 0.014045651, -0.012947143, 0.018800002, 0.0055657695, - 0.031218594, 0.014509207, 0.01574591, 0.023369484, -0.0033690503, - -0.02282842, 0.009178053, 0.02087994, -0.007964258, -0.002656594, - 0.0016775083, 0.010403101, -0.009846669, -0.019320415, -0.019655107, - -0.0076779826, 0.0016384267, 0.020742238, -0.015931897, 0.012939527, - 0.021743586, -0.010572826, 0.017078644, 0.0027489197, 0.0058667157, - 0.0052095097, -0.016903143, -0.02449588, 0.0025188639, -5.608295e-4, - 0.0015265294, 0.012372321, 0.019761402, 0.018737666, -0.009313275, - 0.009332705, 0.0033929786, -0.029479833, -0.02188002, -0.0021594586, - -0.024934022, 0.0144328885, 0.031185929, -0.011248321, 0.016752012, - 0.0040689376, -3.712715e-4, -0.03508294, -0.01944203, 0.014897749, - -0.023043927, -0.015116366, 0.007815206, 0.031316273, -0.014352976, - -0.032540757, -0.009152687, -0.006021599, 6.459751e-4, 0.015419851, - 0.011079483, 0.012005922, 0.006054738, 0.0065954844, -0.013902816, - -0.01516323, -0.005578443, 0.004310845, 0.004006754, -0.0124003105, - -0.001905763, -0.005536928, -6.3703326e-4, -0.014385902, 0.01440023, - 0.011472004, -0.001816768, -0.016032444, -0.03402709, 0.011488863, - 0.027002856, 0.018057002, -5.94505e-4, -0.0038378774, -0.012770964, - -0.018155692, -0.035202716, 0.017480515, -0.013702032, 0.03219377, - 0.022150213, 0.015157513, -0.017750714, 0.008762344, 0.007054064, - 0.009183711, 0.0016836611, -0.0054233503, -0.001661551, 0.0022646687, - -0.024330147, -0.009456663, -0.019800186, 0.011395486, 0.011882043, - 0.027607081, 0.033077147, -0.014356696, 0.012950574, 0.013634175, - -0.025283804, 0.011323005, -0.018029084, 0.0049254275, -0.03345386, - 0.0089596305, -0.023874355, 0.013106622, -0.0068795574, -0.014865709, - 3.6575794e-4, 0.015963154, 0.014991298, -0.015700642, -0.01936445, - -0.017712548, 0.023859039, 0.0013268951, -0.027342219, 0.008992953, - -0.009241997, -0.01473622, -0.0021723197, -0.02346342, 0.009464139, - -0.0054288753, -0.022970991, 0.004726851, -0.03950718, -0.011538552, - -0.002477717, -0.009098231, -0.014820991, 1.7891201e-4, -0.006399517, - 0.024131715, 0.0115346685, 0.027064731, 0.014214904, 0.013761797, - -0.031322014, -0.0011239976, -0.019936083, 0.0014271643, 0.0013881613, - -0.018091079, 0.025335124, -0.021206895, 0.008186956, 0.00890539, - 0.0082043065, -0.013558118, -0.024475282, 0.022200627, -2.1997777e-4, - 0.029436769, 0.014991114, -0.012646619, -0.02238367, -0.008981952, - 0.01019414, -0.03924446, 0.023697477, 0.020207092, -0.031318463, - -0.022033405, 0.0020303372, -0.012087785, -4.371874e-4, -0.0035411231, - 0.009642072, -0.0074277422, 0.021919332, 0.014053102, -0.021305747, - -0.008602133, 2.7087858e-4, -0.025187269, -0.018581174, -0.0014359213, - -0.021210888, 0.00939433, 0.0021773807, 0.022035433, 0.014203076, - -0.0048930473, -0.0339212, 0.01916679, 0.0338877, -0.0013906072, - 0.015985537, 0.0069401897, -0.022749247, 0.0039551435, -0.012679763, - 0.009287055, 0.007056202, 0.007979033, -0.004096022, -0.010389007, - 0.017136356, 0.0028651422, 0.0108038, -0.011344195, 0.0019122848, - 0.0012731017, 0.023784554, -0.0027988295, -0.0022267262, -0.002705109, - -0.017731471, 0.009943362, -0.0076385746, -0.00870438, -0.013815171, - 9.15013e-4, -0.009295506, -0.0035623158, -0.010654098, 0.008235951, - 0.0059183524, -0.007978436, -0.030889628, 0.021690603, -0.0056861616, - -0.035511933, 0.0047027194, 0.0044015795, 0.0043002297, 0.023844363, - 0.013001168, 0.002500939, 0.028999802, 0.017781034, -0.010057587, - 0.021737076, -0.006690879, 6.918274e-4, 0.0068992125, -0.0015919427, - 0.028511714, -0.0045088185, -0.027528092, -0.011363929, -9.6624746e-4, - -0.014867061, -0.007433104, -0.019273082, -0.0080551, -0.0035276727, - 0.01946428, -0.016244968, -0.010732247, 0.033401527, 0.011274543, - -4.618021e-4, 0.018333405, 0.007506415, 3.637472e-4, -0.014565377, - -0.026546955, -0.0079398835, -0.004298419, 0.017291805, -0.006490492, - 0.03709401, -0.0014042591, 0.020990688, 0.008245372, -0.011038672, - -0.016875219, 0.017658759, -0.006466349, -0.0010447814, -0.009706755, - 0.01364642, 0.027095594, -3.3897688e-4, 0.0016084752, 0.004062871, - -0.026933273, -0.01606307, -0.00795698, -0.005489657, 0.019919505, - 0.0050264853, 0.009367451, -0.013124668, -0.003110646, 0.011892334, - 0.00299997, 0.015842237, -0.013323056, 0.010935333, -0.0077808285, - -0.019247709, 0.024454435, -0.0017508797, 0.0010256537, 0.021287732, - 0.012489875, 0.01344312, 0.006094206, 0.0024484426, 0.0060432884, - -0.02960522, -6.833062e-4, -0.008066571, -0.0039269757, -0.026105473, - 0.0028119332, -0.013306255, -0.0036639762, 0.0025755703, 0.007943555, - 0.020720374, -0.001443357, -0.005591489, 0.015074096, 0.027762737, - -0.013418404, -0.027494993, 0.004244737, -0.0071699526, -0.011517936, - -0.0012185718, 0.016800066, -0.013557644, -0.00810067, 0.0055435593, - 0.007681218, 0.0038209895, -6.4051535e-4, -0.0016923426, -0.01731596, - -0.025581975, 0.014152988, -0.0035099764, 0.0070515443, -0.009058049, - -0.009683996, -8.529052e-4, 0.031298906, 0.020235512, -0.0060884464, - 0.022221243, 0.011794229, 0.01762143, 0.01611274, -0.005237238, - 0.022804804, -0.009805491, 0.0045235474, 0.0021434585, 0.0040853866, - 0.014909769, -0.0013695142, -0.014742201, 0.017422395, -0.025822112, - -0.012420848, -0.01630243, 0.012705139, -0.009046273, 0.009501351, - -0.007851089, -0.0052865697, -0.0014075108, 0.009881969, 0.007809945, - 0.009174808, -0.013385606, 0.016039085, 0.0186598, 0.018248906, - -0.01159494, -0.019787945, -0.026210738, -0.026525112, -0.014205989, - 0.003323627, -0.015787093, 0.014032938, 0.003642173, 0.0122181745, - 0.005434306, 0.00747387, 0.013798962, -0.0013573028, -0.018922053, - 0.0034611595, -0.025277484, 0.0083464105, -0.0075729345, 4.4430397e-4, - 0.02011334, -0.0230797, 0.012756465, -0.026229782, 0.004393963, - -0.0068589197, -0.012161167, 0.009389498, 0.0061012777, 5.008089e-5, - 0.020025976, -0.023409493, 0.0111246295, -0.005453742, -0.0041769543, - -0.0019644105, 0.0058930353, 0.0072956085, -0.012267255, 0.0018326651, - 0.01778022, 0.017666023, -0.0021775016, -0.01362793, 0.027530035, - -0.021661209, -0.019407377, -0.0050463984, 0.011516868, 0.006943585, - -0.0049357205, 0.0026260463, -0.01926671, -0.0032813295, -0.009419622, - -0.021226835, 0.007507744, 0.0107291285, -0.0065721427, 0.007331375, - -0.00761982, -0.006639633, -0.01146369, 0.013311561, 0.017094791, - 0.0054021054, 3.9943669e-4, 0.014692825, 7.8577583e-4, 0.00434648, - -0.0058045937, 0.0048481617, 0.020650286, 0.0038571046, -0.007894012, - -0.015395054, 0.032789744, 0.0011540148, -0.019245096, 0.010485488, - 0.036596224, -0.007580159, -0.02632976, -0.0021713506, -2.5051343e-4, - -0.011698236, -9.716866e-4, 0.027613286, 0.0011011026, 3.5937745e-4, - -0.010532191, 0.023532689, 0.008777167, 0.0020917675, -0.016142676, - 0.018661411, 0.028035175, 0.007380023, -0.00943038, 0.0101283025, - -0.009162754, 9.773441e-4, 0.0101371175, -0.023632979, -0.0075924676, - -0.022839848, -0.03725396, -0.010939217, 0.0048380275, 0.008178167, - 0.0069596, 0.01006364, 0.0023528093, 0.001531914, -0.017884197, - 0.012591801, 0.014915393, 0.009817866, 0.013105708, -0.022828188, - -0.0044923946, 0.021212377, 0.016693296, 0.012002936, 0.005279874, - 0.024173496, -0.005616969, -0.010257544, -0.009783938, 0.009574039, - -0.025530878, -0.018200083, -0.022755774, -0.045752775, -0.021852355, - 0.024456436, 0.008444981, -0.010540334, -0.0033687896, -0.019307991, - 0.031102836, 0.0072838645, -4.7435102e-4, -9.286919e-4, -0.0040756925, - 0.022014236, 0.01577953, 0.0011049856, 0.014914354, 5.509051e-4, - 0.0043671248, 0.013012538, 0.005152598, 0.02736514, 0.012033116, - 3.3911687e-4, -0.00812662, 0.007611829, -0.028258348, 0.006794822, - -0.0034978038, 0.016145023, -0.0142393345, -8.188608e-4, 0.026565213, - 0.022257311, -8.461295e-4, -0.0038565388, -0.0066284575, -0.0048672883, - 0.020867005, -0.007018646, -0.019952185, -0.0067207864, 0.00731272, - 0.009373558, -0.00865409, -0.015983189, -0.025448851, 0.0049813255, - -0.020274866, -0.015286661, 0.011087274, -0.017859543, 0.0024232485, - -0.0056081926, 0.026289292, 0.009340992, 0.004016064, 0.01340934, - 0.0026184372, 0.0034546198, 0.0053583058, 0.015779812, 0.04121606, - -0.013042844, -0.0010607885, 0.014313972, -0.0064736097, 0.039287224, - -0.010377616, -0.035888817, 0.006917149, 0.014172751, 0.003233658, - -0.021013768, 0.009929237, -0.012537988, -0.016281283, 0.009498027, - 0.02163385, -0.007652965, -0.013048512, -0.0022599453, -0.013167973, - -1.1000434e-4, 0.0032777144, 0.015265192, 0.017248455, 0.023549976, - -0.012117324, -0.007874375, -0.008841442, -0.010256938, -0.007941028, - 0.009240123, 0.009830063, -0.03240421, -0.028807981, 0.025820505, - 0.03338908, -0.033485014, -0.002460254, 0.0019273048, -0.0121299885, - -0.002152458, -0.0033292184, 0.036182486, 0.004222391, -0.0068151965, - 0.004654802, 0.009470115, -0.001056036, -0.0052977423, -0.009010507, - 0.023792382, 0.006566525, 0.009648585, 0.020312427, 0.015309417, - -0.015130759, -0.023044536, -4.559602e-4, -9.6834585e-5, -0.003489389, - 0.0031278792, -0.006173491, -0.02005843, -0.024216805, 0.008917872, - -1.3087387e-5, -0.02868836, 0.021794725, 0.014929026, 0.009151254, - -0.017167654, 0.026093666, -0.017368903, 0.027431613, -0.003459354, - -0.012193838, 0.012155989, 0.0388583, 0.018709095, -0.02412387, - -0.0070558228, 0.0047631334, -0.002816896, 0.010006045, 0.008610969, - 0.0065533016, 3.825282e-4, -0.0041913297, 0.01557305, -0.0044311015, - -0.043403998, -0.027423283, -0.030236736, -0.029899854, 0.010345214, - -0.0069355885, -0.0013351196, 0.010712526, 0.014805546, -0.011470245, - -0.020182569, -0.0062041576, 0.038843576, 0.013114641, 0.0036953113, - -0.013575656, 0.0030326096, -0.009456907, 9.1696647e-4, 0.006988221, - 0.00457536, 0.017871661, -0.014978375, 0.013884894, 0.020200932, - -0.017089505, -0.01584465, -0.016449416, -0.014131405, 0.007446734, - -0.028880367, -0.014515011, -0.017165188, -0.0037620116, -0.008457525, - -0.007814924, -0.03873401, -0.005676173, 0.0027372753, -0.0034833648, - 0.012873495, -0.012537651, 0.0067663277, -0.009552254, -0.028601792, - 0.005692661, -0.019105935, -0.0035108188, -0.0011473583, -0.019173643, - -0.011051378, -0.013116143, 0.019750789, 0.0062959967, 0.021175783, - 0.0046695955, -0.024990724, -0.0019860596, 0.005985984, 0.034060743, - -0.00862316, 0.0041356357, 0.031526178, -0.022044122, -0.019087674, - 0.025589162, -9.240751e-4, 0.009192716, -0.018410778, -0.005744644, - -0.011494676, 0.010477144, 0.01053336, 0.0064451224, 0.025293682, - -0.0010905818, -0.0129581215, 0.008903593, -0.008910925, 0.022212958, - -0.017132549, -0.035569586, 0.01936958, -0.012800451, -0.016645402, - -0.0012060907, 0.019917328, -0.03526982, 0.0066244863, -0.002007923, - 0.003222038, -0.0129518155, 0.04232703, 0.015145991, -0.011522891, - 0.0027602774, -0.0070010005, -0.005610515, 0.0116569195, -0.0014152289, - 0.01004806, 0.001250774, 0.02431963, 0.0010646507, 9.1923066e-5, - 0.020732708, -0.004937579, 0.003161735, 0.009868475, 0.00827537, - -0.013853351, -0.006829764, 0.02180307, -0.0034877898, 0.01653028, - 0.014649849, -0.014227717, -0.0031929116, -0.019510472, -0.026712906, - -3.200897e-4, -0.022553368, 0.0032083, -0.00796218, -0.0141368415, - -0.016523177, 0.001462375, -0.015646832, 0.0066703823, -0.0025611895, - 0.0035893014, 0.024059622, -0.018757936, -4.6981033e-4, 3.9317463e-5, - -0.0040730312, 0.0037018096, 0.021008573, -2.5345245e-4, -0.017733531, - -0.017171482, 0.010838588, -0.006496425, 0.0039394624, 0.022638228, - -0.018093307, -6.993552e-4, -0.011001772, 0.0026783482, 0.0011349533, - -0.020554047, 0.00562123, 0.004162378, 0.004440917, -0.020059798, - 0.0038076309, 0.010180408, -0.012887129, -1.883481e-4, -0.017372428, - 0.0019196401, -0.01908328, 0.02120214, 0.0037006398, 0.0030360355, - 0.020053301, -0.010090978, 0.0039975946, 0.006797147, -0.0010987006, - 0.03401179, 0.0098403, 0.0096463105, 0.014209326, -6.7132016e-5, - -0.025900979, -0.008279759, 0.015927307, -0.040568925, -0.0021633669, - 0.011167009, 0.004808787, 0.018999495, 0.0076524946, 0.007897752, - 0.002405316, -0.01800244, -0.0022984066, 0.0013282469, 0.0074318186, - -0.014525804, 0.01723458, -7.713853e-4, -0.01504539, 0.018901685, - -0.027736211, 0.014859529, -0.0026299742, 0.0053168894, 0.0030410234, - 0.003542844, -0.016741538, 8.6998136e-4, -0.009066978, 0.02321407, - 0.013272638, -0.018945694, 0.003761106, 0.02325413, -0.010647217, - -0.001595435, -0.02632158, 0.008215878, 0.015965289, 0.025611171, - 0.008688428, -0.015114387, -0.00988465, 0.017155506, 0.004737223, - -0.016834872, -0.0020053375, 0.032616988, -0.004697993, -0.004451024, - -0.006325719, 0.0015790962, -0.0031714016, -0.008398562, -0.004715195, - 0.0021046123, -0.025294615, 0.0031271921, 0.027695108, -0.010595532, - -0.01786751, -0.013452643, -0.027077507, -0.011574068, 0.0121081695, - -0.010275784, -0.004552651, 0.0025021178, -0.015332757, -0.0075947074, - -0.034245472, 0.0051963823, -0.033753518, -3.199308e-4, 0.0013420823, - 0.0015279711, 0.018882556, 0.005722158, -0.01281146, 0.025330508, - 0.012058605, 0.0044565434, 0.021911556, 0.011294467, -0.0022944165, - -0.031266615, 9.061864e-4, 0.001997095, -0.0011560373, -0.0050076996, - -0.0032710508, -0.0044222334, -0.012760899, -0.0056037167, -0.025691919, - -0.0059814015, -0.008972993, 0.008854276, 0.02124837, -0.012674786, - 0.012661574, -0.0011832586, 0.02077993, -0.0011329066, -0.03816502, - 0.0124165295, 0.010180511, -5.0829025e-4, -0.02243067, 0.041396484, - -0.024804724, -0.014823747, 0.0129313525, -9.705595e-4, 3.4201526e-4, - -4.1819047e-4, 2.474482e-4, -0.010086228, 0.005421654, 0.0063642194, - -0.0071639144, 0.0013977052, -0.0036893135, 0.00460492, -0.03161238, - -0.0068796226, 0.012807955, -0.008427561, 0.008712274, -0.009748603, - -0.007053415, 0.009641568, 0.006662884, 0.0018730795, 0.0035686123, - 0.034990676, 0.018648136, -0.038771383, -0.0039904485, -0.010808467, - -0.0068226266, 0.0077479943, -0.0026157664, 0.010999095, -0.0049004364, - -0.0090427715, 0.009278227, -0.0044816933, 0.0096533075, -0.022837061, - -0.0025239612, -5.0530495e-4, -0.02537564, 0.016002899, -0.015004726, - 0.013370961, 0.016427685, -0.016798679, 0.0011226053, -0.008067871, - -0.007902263, 0.0022310163, 0.0068570864, 0.007646977, 0.039592337, - 0.01630501, -0.019149102, 0.012971726, 0.016266795, -9.1561046e-4, - 0.010391749, -0.021505564, -0.008236848, 7.73136e-4, 0.0051323497, - -0.019661684, -0.012706036, -0.013550053, 0.028328514, 0.0060538654, - 0.0139548695, 0.016231678, 0.005836051, -0.00396889, 0.006896582, - -6.034051e-4, 0.0062347315, 0.022353852, -0.0019422834, -0.004453153, - -0.009046155, 0.011753406, 0.005014718, 0.0024623303, -0.004831686, - -0.009109637, 0.0078114425, -0.0034027076, 0.011899759, -0.028279599, - -0.017790826, 0.019726418, 0.006676047, -0.009948639, 0.0065180156, - -0.019995727, -0.0019607884, -0.0023965456, -0.010453337, 0.017827695, - 3.898557e-4, 0.02406167, -0.009922561, -0.0126414215, -0.008455834, - 0.014107456, -0.014637712, -0.0019106242, -0.0065963906, 0.011540339, - -0.009512703, -0.003531608, -0.007469145, -0.02394939, 0.0073894938, - -0.011383668, -0.008929067, -0.0037838095, 0.016625118, -0.025087487, - -0.0072896485, 0.01573742, 0.009458901, -0.023403669, 0.0012256126, - -0.009500842, -0.008837122, 0.018350918, 0.02653729, 0.014576377, - -0.011293913, -0.0056808707, 0.005708927, -0.00915219, -0.005881294, - 0.013121232, 0.035937957, 4.3717137e-4, 0.010075096, -0.0255357, - -0.020172039, 0.015318569, -0.009815026, 0.001347643, 0.00950814, - 0.028655738, 0.017945908, -0.010585776, -0.011962216, -0.009665314, - 0.018562779, -0.0011535549, -0.053590655, 0.005503728, 0.012625583, - -0.030398287, -0.006215722, 0.024720166, -0.02197208, 0.012105528, - -0.013649126, -0.014435885, 0.032557745, 0.0035869416, 0.004364813, - 0.0069482015, -0.0031734603, 0.007455012, -0.006976227, 0.02156377, - -0.010437295, 0.0069752494, 1.5549273e-4, -0.004408686, 0.0034459354, - 0.010264976, -0.0027434807, 8.852349e-4, 0.019313486, 0.020680469, - 0.0033511303, -0.010487169, 0.009359843, 5.296453e-4, 0.019149797, - -0.0032523926, -0.0143474685, 0.0376, -0.0042995047, -0.0041508237, - -0.0051942677, 0.006535058, 0.0028563559, 0.0058298404, -0.005952269, - -0.0043042484, 0.0043663858, 0.025344377, 0.015403009, 0.015333146, - 0.008462029, 0.030034604, 0.0017324088, -0.017908718, -0.014366121, - 3.451743e-4, -0.028651996, -0.017932827, -0.0054326574, -0.005140164, - 0.012742879, 0.009765615, 0.0059148143, -0.020515628, 0.0064915917, - 0.010802503, 0.014121322, 0.0036974293, 0.010367904, 0.027389064, - -0.013848526, 0.022165172, 0.009245143, -0.0028607843, 0.0032028335, - 0.017309949, -0.009115574, 0.002836755, 0.016350124, -0.036305178, - 0.022747414, 0.0044697165, 0.0112638045, -0.008905098, 0.018892856, - 0.014167963, -0.00769022, -0.015468114, -0.027366064, -0.0034582505, - 0.007832426, 0.02091676, 0.0047975555, -0.0047401492, -0.018125415, - -0.01376024, 0.004666167, -0.006949372, 0.004664585, 0.0050951517, - -0.0178657, 0.004962992, 0.019974401, -0.008942985, -0.010228517, - -0.018887417, -0.0012181307, 0.003679235, -0.01752553, -0.01731873, - -0.0063643847, -0.028593726, -0.001400322, -0.017017828, -0.024182523, - 0.0029207608, -0.025215855, 0.0035005538, -0.02142615, 0.013186286, - -0.019473018, 0.0088933315, -0.04154022, 0.003880048, -0.017491248, - -0.018344108, -0.0039469143, -0.0044726525, -0.015131214, -0.00644658, - 0.010696336, -0.010644751, -0.013508382, -0.0041184057, 0.0013110235, - 0.0043376894, 0.002975311, 0.0092565585, 0.016451536, -0.016833374, - -0.01945483, 0.0027458218, 4.7058254e-4, -0.04659501, 0.002785701, - 0.0055506537, 0.0039778994, 0.023612471, -0.01836928, -0.033683337, - 0.011142821, 0.0010407891, -0.007266952, 0.0034266168, 0.029541042, - 3.4421423e-4, -0.014587137, 0.009870024, -0.0037014468, 0.0065205507, - 0.004558071, -0.012226482, -0.005692825, -0.01909903, -0.007311085, - 0.027287299, 0.029756948, -0.027295891, -0.018998804, 0.02268145, - 0.0028022227, 0.0068478044, -0.0063512814, 0.006380418, 0.00621342, - -0.002926338, -0.02098649, -0.008665658, 0.011428041, -0.025675382, - 0.0041337106, -0.013265266, 0.02544354, 0.009338064, -0.020618731, - -0.009018814, 0.017093753, 0.0042297705, -0.02203759, 0.028159041, - 0.007986254, -0.014454233, 0.01263106, -5.92037e-4, 0.0039932276, - -0.006517545, -0.0022444255, -0.024336789, 0.002283583, -0.022259718, - 8.0332643e-4, -0.028301746, 0.004632359, 0.009953986, 0.026526544, - 0.0045114392, 0.015754879, -0.0039212415, -0.024199164, 0.013523866, - 0.012551369, -0.009320563, -0.015635354, 0.005291383, -0.03215421, - -1.5163014e-4, 0.018603988, 0.026122095, 0.0118738385, 0.0044801994, - 0.011327031, -0.012927965, -0.005121961, 0.025875416, -0.002164117, - -0.010943848, -0.011245438, -0.015997719, 0.03857563, -0.0050039645, - 2.3090208e-4, -0.012504686, -0.0072031743, 0.0028070817, -0.015280238, - 0.0040890975, 7.812023e-5, 0.014557598, -0.010514343, -0.020283306, - -0.03281195, 0.012613052, -0.016827378, 0.0013210415, -0.027757226, - -0.009225671, -0.038252506, 0.011547585, 0.01110606, 0.02554946, - -0.008210735, 0.037761964, 0.011273437, 0.0011556259, 0.031548228, - -0.007476301, 0.029323902, -0.008549075, 0.0107926065, -0.002525423, - 0.0070148283, -0.01842549, 0.004062984, 0.019583212, 0.025417127, - 0.011051618, 0.017093742, -0.01629762, -0.043858193, -0.026179947, - 0.016358621, 0.025630593, 0.0019903996, -0.010919232, -0.016800147, - 0.020451838, 0.007992986, -0.030224366, -0.002138565, 0.0077555166, - -0.012264892, 0.009870366, 0.00447925, 0.008871487, -0.030678084, - 0.011738898, -0.0086994525, -0.016855363, -0.021131387, 0.018265493, - 0.007293734, -0.0062386976, 0.009773127, -0.015849194, 0.0095797945, - 0.019222507, 0.030179987, -0.03498217, -0.0016321659, 0.004965084, - 0.033124216, -0.0024789888, 0.017395217, -0.0047328807, 0.0130300615, - 0.03283122, -0.005736444, -0.0060524377, -9.934797e-4, 0.019215632, - 0.019324804, 0.020182323, -0.027898567, 0.0033194795, -0.010902974, - -0.0185203, -0.020056287, 0.019881407, 9.6628245e-4, 0.009257911, - 0.0010538602, -0.011177883, 0.018960357, -9.3710044e-4, -0.0034235923, - -0.017038606, 5.442618e-4, 0.01046462, -9.883891e-4, -0.01537413, - 0.014250925, 0.0035409848, -0.007184186, 0.008538799, -0.033328887, - 0.0055051707, 0.006393724, -5.250944e-4, 0.0156885, 0.004970292, - -0.009648197, -0.02822476, 0.0038704271, -0.006876747, -0.0022816146, - 0.009842281, 0.015129829, -0.001819911, 0.008064928, 0.007403409, - 0.011521312, -0.011900881, -6.158211e-4, 0.011557599, -0.012471002, - -9.610091e-4, 0.007888121, 0.006189321, -0.017070042, 0.0035464114, - -1.7496831e-4, -6.268465e-4, 0.0254014, 0.0058741174, -0.008215592, - -0.010534742, 0.014039471, 0.010541439, 0.01255131, -0.012736619, - 0.011456338, 0.024671452, 0.027524786, -0.010617899, 0.034261357, - -0.0061862594, 0.011826693, 0.0042869, 0.015089174, 0.010550865, - -0.0040383562, -0.019826515, -0.02473938, 0.027704213, 0.016667642, - 0.02866527, -0.014426603, 0.02346721, 0.010276819, -0.012308066, - 0.002793116, -0.008182988, -0.009556035, 0.008263862, 0.0059580333, - 0.0014599006, 0.010833391, 0.013190471, -0.034602333, 0.0048370087, - 0.027856264, 0.03692273, 0.0053980094, -0.011097276, 0.026061393, - -0.0012691579, -0.027560124, -0.014094325, -0.0026456153, -0.021638133, - -0.010151923, -0.00909485, 0.0074276845, -0.0077418606, 0.019361038, - 0.00665414, 0.003318526, -3.6737238e-5, 0.0063346727, 0.0043705637, - -0.014379482, -0.012202158, 0.0011136953, -0.0021127062, -0.028228678, - -0.013732726, 0.020479, -0.008799612, 0.0115007525, 8.3918107e-4, - -0.00211555, 0.0032353953, 0.04090928, 0.002483287, 0.01705699, - 0.01302292, 0.011338237, 0.028401617, -0.012540744, 0.02809703, - 0.031199185, -0.0109160105, -0.0039893086, -6.711119e-4, 0.026278757, - -0.010558998, -0.023405597, 0.005732093, -0.02386031, 0.013714425, - 0.017918773, -0.018745242, 0.0053017894, 0.004973912, -0.0101144845, - 0.0013478593, 0.043193676, -0.0016827609, 0.030655112, 0.0051855943, - 0.012459703, -0.012417609, -3.273813e-4, -0.0069651525, 0.006269555, - -0.014302834, -0.023599768, 0.012720631, 0.021307955, 0.001409388, - -0.017002597, -0.037340097, -0.0038908655, 2.937361e-4, 0.021844229, - -0.022560926, -0.018362746, 0.027402878, 0.010071396, 0.0065016076, - 0.0270525, -0.0025780802, -0.010240919, 0.013537619, -0.0013589173, - 0.026894001, 0.003881965, -0.013196005, -0.0046862983, -0.0037311232, - -0.019859726, 0.0018706071, 0.0339455, 0.018930681, 0.0010243473, - -0.0014310386, 0.015476726, 0.0029383814, -2.9234824e-4, 0.013164115, - -0.023169942, -0.007089663, -0.0150046665, -0.012988202, -0.0048180907, - 0.01502485, 0.006629903, 0.027632205, -0.020928303, -0.0023549497, - -0.04122579, -0.026820963, -0.0042419024, -0.0062886192, -0.009062177, - 0.009542564, 0.008939792, -0.0012460841 + "source.genres.label" : [ ], - "reducedFeatures": [ - -0.011385566, -0.00560987, 0.01886764, -0.013526922, -0.09260549, - -0.035500202, -0.019839946, -0.008759174, -0.08475814, 0.05937331, - 0.062684625, -0.06684093, 0.056003127, 0.019304493, 0.0052578887, - -0.0077725225, 0.062960215, -0.023826366, -0.04861022, 0.033545434, - -0.03278322, -0.054246172, 0.027987286, 0.004766704, -0.025349932, - 0.021728333, 0.044546455, -0.019261446, -0.054895114, -0.0198106, - 0.034917917, -0.017545363, 0.005122342, -0.04299378, -0.023152439, - -0.02764765, 0.009289058, 7.724869e-4, -0.0104126, 0.021795237, - -0.0317722, 0.013815718, 0.032983966, 0.023040162, -0.008645407, - 0.09062358, -0.010765653, -0.06367101, 0.0069720177, -0.03788416, - 0.005879696, -0.030113423, 0.02139899, -0.0954794, 0.00550819, - -0.015350481, -0.00516115, -0.01548947, 0.035411984, 0.0020667694, - 0.009217815, -0.00547484, 0.04701681, -0.03711907, -0.014876144, - 5.5854965e-4, -0.04396125, 0.08754293, 0.007523482, -0.010814159, - 0.0107872635, 9.2933374e-4, 0.02207957, -0.030120213, -0.012309289, - 0.0036985944, 0.0123322, -0.02734833, 0.019403571, -0.02438435, - -0.030617358, -0.019600216, 0.024592634, -0.028044723, -0.024251401, - 0.034009926, 0.015103328, -0.02764657, 0.01794896, 0.02892058, - 0.020407598, -0.003405731, -0.025426708, -0.019315291, -0.03464334, - 0.0020790556, -0.03226106, -0.09875097, -8.846344e-4, -0.032669507, - 0.038004622, 0.040093545, -0.01836358, -0.048369974, -0.027163973, - 0.0047290293, -0.014910103, 0.012226316, -0.011821076, -0.08528342, - -0.012307079, 0.014779221, 0.022258833, -0.017983139, -0.020100798, - -0.0069886968, -0.010435859, -0.021226212, -0.022673268, 0.005901296, - 0.0045559327, -0.03729535, -0.06008439, -0.027655292, -0.022800893, - -0.008649269, 0.011073459, 0.014873352, -0.010311228, -0.02892149, - 0.06841367, -0.05224112, -0.012392593, 0.062434815, -0.020592928, - 0.02252225, -0.017539488, 0.057917207, -0.04286313, 0.015343943, - -8.41338e-4, -0.020005139, -0.008327081, 0.010687028, -0.05197684, - 0.03477448, -0.005872559, 0.008933189, -0.025140708, -0.004325071, - -0.0056471387, -0.028423434, -0.04961632, 0.020549303, -0.0021337918, - 0.009505468, -0.028013786, 0.021164456, 0.0018112485, 0.04723016, - 0.051841557, -0.016596531, -0.028891997, 0.03816617, 0.030521844, - 0.06130348, -0.033958916, -0.058088537, 0.010026764, -0.026325999, - -0.056698076, -0.028748086, -0.008796803, -0.0015081608, 0.007684202, - 0.0030985444, -8.683984e-5, -0.0018416706, -0.062722735, 0.027019652, - -0.051508978, -0.028861323, -0.04762635, 0.0063103465, 0.033940416, - -0.025978176, -0.033085085, 0.04936353, -0.016441924, 0.062466986, - 0.0387945, 0.014685517, -0.0016207317, 0.007873021, -0.0125055425, - -0.035680875, -0.00950928, 0.065824635, -0.0070735756, -0.032086052, - -0.021084586, -0.05309708, 0.0025353832, 0.0043751406, -0.0018905818, - 0.011638031, 0.049138535, -0.00405106, 6.3450995e-4, 0.03490204, - -0.019894844, -0.002471777, 0.023087325, 0.01597164, 0.015849499, - 0.008734436, -0.020660693, 0.04819433, 0.044646133, 0.051589258, - -0.037349638, -0.019460713, 0.011577052, -0.020750925, -0.006539329, - 0.00964682, -0.034979727, 0.013105732, -0.024083076, -0.001007299, - 0.006671102, 0.044075705, 5.052854e-4, -0.009298282, 0.02036774, - -0.017289279, -0.026640233, 0.02314247, 4.3084838e-5, 0.022007523, - -0.015645973, 0.02229054, -0.0060652136, 0.013473899, -0.044431064, - -0.05379965, 0.045815844, -0.016258024, 0.006875585, 0.026781505, - -0.046367817, 0.017313333, 0.0343627, -0.01827659, -0.04101359, - -0.034546696, 0.027237872, -0.0031286846, -0.019350342, -0.018166307, - 0.023782056, 0.035212815, -0.036755063, -0.03420919, 0.010328381, - 0.01417379, -0.037044954, -0.048971955, 0.019948196, -0.026760127, - -0.00412945, -0.021738378, 0.041576218, -0.06738101, -0.04575435, - 0.010171619, -0.011767633, 4.590001e-4, 0.007171951, 0.0022533026, - -0.032660827, -0.05156472, 0.021774812, 0.023874253, -0.031906933, - -0.015335839, -2.1939151e-4, 0.050370734, -0.00986194, 0.06903127, - 0.027172538, -0.0061367885, -9.931242e-4, 0.010914516, -0.01589597, - -0.06550336, 0.0684225, -0.023513159, -0.037027124, -0.030788057, - 0.019103412, 0.028845869, 0.015708344, -0.052857872, -0.004287467, - -0.008712034, 0.011737136, 0.033901017, 0.031980827, -9.594579e-4, - -0.01492855, -0.00993177, -0.020249704, 0.0031316197, 0.018419277, - 0.023176672, 0.0091785295, -0.016309483, -0.02034071, -0.031977855, - 0.06033309, -0.043387637, 0.028822854, -0.01759788, -0.027526146, - 0.023918366, -0.014081616, 0.06999184, 0.017126547, -0.05193882, - -0.020986976, -0.0062109213, -0.0062084785, 0.009975617, 0.014639133, - 0.08067524, 0.007246468, -0.038499184, -0.005778397, -0.0066487836, - -0.013012457, 0.050944086, 0.030721832, 0.008538064, 0.0050585386, - -0.035909325, 0.020380238, -0.07067926, -0.053410962, 0.019919258, - -0.061182253, 0.02203007, 0.023564257, -0.016171379, -0.018387705, - 0.0028930218, -0.00204845, -0.050281394, 0.025454763, 0.015120661, - 0.03597761, 0.025137072, 0.0022556498, -0.046029467, -0.04115928, - -0.009519865, -0.010354766, -0.008922459, -0.011580834, -0.017364737, - 0.016885336, -0.025278468, 5.691976e-4, 0.033873208, -9.1727346e-4, - 0.013888902, -0.0016410628, -0.034691647, -0.016456915, 0.014186688, - -0.0032020903, 0.023175832, -0.0468911, 0.01652105, 0.05177885, - -0.014808235, 0.015819378, 0.0034641176, -0.017582674, 0.022935499, - -0.010696622, -0.0036008763, 0.058464307, -0.0071087964, -0.013048406, - 0.009172972, -7.3299377e-4, -0.015050705, -0.02223053, 0.041453805, - 0.03457818, 0.025680697, 0.017348172, 0.0124409795, -0.042810947, - -0.012616059, -0.007796323, -0.031623572, -0.006314052, -0.024018705, - 0.007788446, -0.0031719154, -0.03954137, 0.032261934, 0.025233908, - -0.033550147, -0.016327081, -0.00972095, 0.015726082, -0.009914696, - 0.01324416, 0.017049491, 0.046103556, 0.033057835, -0.054148667, - 0.017329255, 0.01161137, -2.5077353e-4, -0.03928065, -0.040724847, - 0.029610947, -0.020980965, -0.018336164, 0.062142495, 0.013439171, - 0.0017574438, 0.03507841, -0.0048716045, -0.0077225245, -0.016896596, - -0.04372224, 0.05118997, 0.01218521, 0.007539969, 0.009045455, - -0.0066898596, 0.008164588, -0.010424074, 0.022233259, 0.0061656428, - 0.004892058, -0.01888927, -0.03698705, 0.036264546, -0.046804503, - -0.0049539916, -0.054972406, -0.017527211, -0.02425484, -0.059547614, - -0.021817153, -0.09934554, -0.04248231, -0.04827672, -0.005695547, - 0.02944726, 0.058606006, -0.02414357, 0.025090633, 0.04682636, - 0.022888532, 0.010414894, -0.030986141, -0.049085386, -0.02325249, - 0.013454492, 0.005352566, 0.07166222, -0.04668212, -0.0277368, - 0.016840575, -0.0020940257, -0.018478107, -0.04792999, -0.02884824, - 0.052224364, 0.020457165, -0.029741833, 0.04027524, 0.017861778, - -0.038040806, 8.128431e-4, 0.03581417, 0.037796345, -0.009400017, - -0.0033730175, 0.0055758227, -0.019225506, -0.003358756, -0.029954577, - -0.01460623, -0.027249498, -0.006703868, 0.016759073, 0.013998653, - 0.04135031, -0.0034343016, -0.04545028, 0.06888113, -0.06268244, - -0.042336244, -0.035620328, 0.019228809, 0.029372517, 0.008978132, - -0.015835395, 0.029177448, 0.0012065269, -0.025148202, -0.020727789, - -0.04790962, 0.057916194, 0.011199353, 0.031783655, -0.002185678, - -0.03307991, 0.034008518, -0.02853058, 0.023510616, -0.016852414, - -0.015598878, -0.02116033, 0.044612817, 0.011886644, -0.005700112, - -0.048776492, -0.024304258, -0.029223172, -0.02726826, -0.02445251, - -0.032161612, 0.027134517, -0.012919051, -0.029234929, 0.0069725844, - 0.026681542, -0.025402553, -0.040173247, -0.01842682, -0.0050099767, - 0.008172017, -9.6483825e-4, -0.0051184013, -0.01102846, 0.004024122, - 0.043878887, -0.019323586, -0.017946027, 0.0057195863, -0.06615957, - -0.027951373, -0.04696669, -0.06941133, 0.025326082, 0.025829807, - 0.02131424, 0.0022254959, -0.006008915, -0.031284448, -0.04160964, - 0.026069023, -0.03254499, -0.04464053, -0.020520316, 0.04458018, - 0.008088975, 0.015728667, 0.009301448, -0.002975715, 0.018330306, - -0.029429303, 0.0116556985, -0.007177815, 0.027225932, 1.8145017e-4, - -0.077827625, -0.04344739, -0.020218944, 2.2144197e-4, -0.04220613, - -0.02196289, -0.029220218, 0.06705845, 0.0034188232, 0.023272332, - -0.013456073, -0.026082061, -0.035174828, 0.034178328, 0.0017652671, - -0.007490109, -0.0063176807, -0.018561294, -0.024756296, 0.02010359, - -0.027974004, -0.008825763, 0.040056277, -0.0044714096, 0.017214404, - 0.0052928412, 0.01596562, -0.016918438, 0.029452631, 0.05514605, - 0.017434897, 0.014801882, 0.004402472, 0.01036609, -0.0062805037, - -0.0059825075, 7.634903e-4, 0.013024743, 0.0129968515, 0.02836543, - -0.02805059, -0.06592244, -0.035781514, 0.049094964, 0.0024353021, - 0.0017244213, -0.053500388, -0.007500772, -0.010179099, -0.04135623, - -0.007439878, 0.02280178, -0.008268191, -0.019651998, -0.028976066, - -0.03787184, 0.03145563, 0.04653209, 0.030315831, -0.010007606, - 0.024416465, -0.05110041, -0.030799478, 0.0497802, -0.0099005345, - -0.05705646, 0.033917174, 0.01875724, -0.032142404, 0.041624013, - -0.071640655, 0.014345593, -0.048791815, 0.014637096, -2.507306e-4, - 0.008652287, -0.016422471, 0.014783357, -0.0024921538, -0.018844334, - -0.049921572, 0.030510517, -0.01757141, -0.037535302, -0.009270943, - 0.004362431, -0.050028972, -0.0577581, -0.0066441544, 0.0015977098, - 0.017870033, 0.02334899, -0.034934536, 0.0038262994, -0.02316963, - 0.018085714, 0.017941622, 0.022175407, -0.020642875, 0.0036542814, - 0.011437117, 0.026264768, -0.01283352, 0.019493321, -0.071051806, - 0.020284342, -0.04601542, 0.03292167, 0.02797801, 0.016526854, - -0.0033608242, -0.048190504, -0.025627123, 0.06120724, 0.035074744, - 0.061660685, -0.020082902, 0.047780976, -0.019622799, -0.06258896, - 0.019679436, 0.034866992, -0.002659969, 0.02051163, 0.010422134, - 0.0016087159, 0.018442815, 0.0033617765, -0.027108615, -0.029404787, - -9.421306e-4, -0.04557265, -0.026109476, 0.0064065414, 0.0094737215, - 0.021563075, 0.06428413, 0.026459727, 0.012663282, -0.028002325, - 0.0053743944, 0.04632428, -0.04299953, 0.0035889314, 0.012127664, - 0.034444027, -0.0058722235, -0.013081305, -0.03747176, 0.026820242, - 0.03327989, 0.082348466, -0.023352057, -0.056202967, 0.016263532, - -0.027728163, 0.024445351, -0.014807739, -0.025086677, -0.011889469, - -0.018672464, 0.024337552, -0.028309034, 0.037787892, -0.01603709, - -0.008510462, 0.016140174, -0.008513145, -0.016116546, 0.016669534, - -0.024096495, 0.0066149044, -0.04653552, -0.02248492, -0.06618762, - 0.034500603, -0.022912892, -0.029088793, 0.042221732, -0.026751783, - 0.0077984794, -0.018009432, 0.032775927, 0.001550557, -7.7515794e-4, - 0.04578303, -0.01246918, -0.012991877, -0.032483984, -0.009127232, - 0.002506976, 0.054727975, -0.02723844, 0.0134624485, 0.0038851015, - -0.048437525, 0.0016983213, 0.021351758, -0.009389904, 0.025926929, - 0.010732711, 0.0026496637, -0.016384533, -0.0050148056, 0.0076372926, - -0.024415376, 0.017683452, 0.012116969, -0.020120194, 0.031060698, - 0.026124705, 0.0016681397, 0.004739889, -0.043197144, 0.015844775, - -0.016099295, 0.07148823, -0.02146383, 0.047217157, -0.012816585, - 0.039089993, -0.0029782783, 0.010612858, -0.043606084, 0.021506023, - -0.0037036177, 0.031812932, 0.048784204, 0.027974397, -0.029469037, - 0.0070222975, -0.021752339, -0.056693252, 0.016271705, -0.053430926, - -0.015938034, 0.023301983, -0.03244055, 0.01926571, 0.037380595, - -0.031308074, -0.017470997, -0.0157022, 0.0069698133, 0.020233793, - 0.0016451048, -0.007918859, 0.051587675, 0.025320843, 0.036701676, - 0.098351136, -0.04003518, -0.023919854, -0.0039895126, 0.01440718, - -8.8119745e-4, 0.01807525, -0.060401306, -0.0058198245, 0.056189332, - 0.0063014906, -0.0020691515, 0.0060556047, -0.027426822, -0.05078517, - -0.027203707, 0.019889908, 0.008965071, 0.0116991745, 0.03811023, - 0.028208682, 0.012390586, 0.025189243, -0.011807957, -0.022344168, - 0.03148626, -0.02993418, 0.013282582, -0.028764533, -0.046418987, - 0.0033030228, 0.0018066008, 0.033032864, 0.005068725, -0.04862544, - -0.014343542, -0.042885233, -0.06081034, -0.008274567, -0.007847728, - 0.035426266, -0.051469177, 0.02687165, 0.08176846, -0.021444293, - 0.012336518, 0.0032864618, -0.023044221, 0.028060323, 0.025455022, - 0.020165123, -0.0065774573, -0.025263505, 0.06271601, 0.0036193028, - -0.045731574, 0.015612675, -0.07193376, -0.049573127, -0.05109011, - 5.076407e-5, -0.032046802, -0.03602182, -0.052849703, 0.012536969, - 0.04087623, 0.03427208, -0.039712474, -0.031799532, -0.014209631, - -0.05894158, -0.001549198, 0.022194093, 0.012597168, 0.024121556, - -0.0801794, 0.081727624, -0.009258342, -0.00346724, -0.062358245, - 0.045327194, 0.004625888, 0.021901311, 0.04338915, -0.00338076, - 0.052606206, -0.044342093, -0.01352391, -0.016148921, 0.022805795, - 0.011011096, 0.012365991, 0.0024691366, 0.015848713, -0.014131401, - 0.029777344, 0.03071508, 0.0087476475, 0.02782407, 0.037290365, - -0.018222513, 0.01783866, -0.031170143, 0.01547701, -0.0075734216, - -0.022656903, 0.0034742774, -0.0046596345, -0.021139584, -0.03908208, - 0.019407578, -0.0036460494, -0.028383948, -0.01043962, 0.03640899, - 0.009326941, -0.03805593, -0.0012302301, 0.003901352, 0.034552153, - -0.038780738, -0.01596812, -0.016856551, -0.014424243, -0.003115145, - -0.04957826, -0.027912533, 0.004624351, 0.05599593, -0.0026240505, - -0.04386052, -0.0012055261, -0.040011823, -0.0388139, -0.021448486, - -0.052174874, -0.0031843886, 0.046701122, 0.024165625, 0.0637665, - -0.035389923, 0.010737737, -0.018465081, 0.017821062, -0.03686234, - 0.0069398545, -0.018443137, 0.0067046583, 0.004729991, -0.0099294055, - 0.054996785, 0.010005098, -0.07281032, -0.038071066, -0.0015925145, - 0.010660084, 0.008793932, -0.0011734541, -0.06085385, 0.026857713, - 0.013099244, -0.00801927, -0.020694928, 0.065652244, 0.021601448, - -0.010983807, 0.029780125, -0.021311726, 0.040053565, -0.03589525, - -0.029003367, -0.04363748, -0.0046498636, 0.07983984, 0.059341308, - 0.024082078, 0.030220129, 0.017007655, -0.0018939133, 0.027224012, - -0.022754246, -6.684747e-4, -0.010595379, 0.022814438, -0.011738336, - 0.03610384, 0.022804461, 0.008513714, -0.067203365 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.010518231, + -0.0027960816, + 0.014241312, + -0.0022873988, + -0.014359572, + -0.0055754087, + -0.007070785, + -0.025106767, + 0.0040455456, + -0.0147674875, + 0.008317349, + 0.010625484, + -0.0038579085, + 0.02579306, + -0.0062135216, + -0.007941922, + -0.015725179, + -7.0078304E-4, + -0.009066495, + -0.011673866, + 0.0028582786, + -0.0026899453, + 0.019083522, + -0.008575399, + -0.008368738, + -0.013398541, + 0.028442316, + 0.017470345, + -0.028712902, + -0.018833825, + 0.01886866, + -0.01331123, + -0.016944852, + -0.007765841, + 0.003043858, + -0.016520968, + 0.0050075585, + 0.034484364, + -0.0017609899, + -8.021243E-4, + -0.011876318, + 0.017685603, + 0.019536322, + -0.002998601, + 0.0017127533, + -0.021528864, + -0.025726, + 0.0313522, + 0.02489511, + -0.011799639, + 0.002648449, + -0.026074331, + -0.02640863, + -0.030264148, + 0.0018717144, + -0.040694505, + 0.033062212, + 0.015005076, + -0.021660468, + -0.0033763726, + -0.018013787, + -0.012660601, + -0.0034679137, + 0.01192882, + 0.012508503, + -0.007696116, + -0.0024935328, + -0.021524474, + -0.0049973284, + 0.014211076, + -0.011680873, + -0.015662866, + 0.018920867, + 0.007853963, + -0.017774848, + 0.021560417, + -0.02210802, + 0.032605764, + 0.023647731, + 0.0015272304, + 0.02557125, + -0.014317925, + 0.012316414, + 0.005535468, + 0.013330926, + 0.026881296, + -0.0069398144, + -0.0151547305, + -0.0077455444, + -0.02491464, + -0.0014835362, + 9.5807336E-4, + -0.0023209837, + -0.0125903655, + 0.001972226, + -0.015941188, + 0.006917419, + -0.026352251, + -9.508772E-4, + -0.0013989668, + -0.0075189755, + -0.007790034, + -0.012729671, + -0.0066420645, + -0.0010900899, + -2.8439515E-4, + -0.006985601, + -0.021744175, + -0.016716743, + 0.0063645463, + -0.010217383, + 0.027618695, + -0.020392291, + 0.030504648, + 0.025862053, + -0.0068602534, + -0.016111562, + -0.011092607, + -0.019294856, + -1.1685306E-4, + 0.024723884, + 0.039075464, + -1.6719535E-4, + -0.0205091, + -0.0186631, + 0.0016403093, + -0.02460123, + -0.006420736, + -0.008890225, + -0.0032891554, + -0.034461547, + 0.03895541, + 7.502123E-4, + 0.0051884805, + -0.016794715, + 0.014232641, + -0.016899938, + 0.0017088623, + 9.359546E-5, + -0.011531986, + 0.023557104, + 0.004379237, + -0.0048738476, + -0.007542701, + 0.020476677, + -0.024672182, + -0.0028706337, + -0.04154955, + 0.0025925469, + -0.011451539, + 0.029329203, + -0.008188758, + -0.0011572352, + 0.012643284, + -0.0055537317, + 0.025749046, + 0.020039225, + 0.01134093, + -0.0247625, + -0.023697048, + 0.0109095, + -0.010305157, + 0.017778696, + 0.016948901, + 9.6067216E-4, + 0.004314062, + 0.03266465, + -0.0010281487, + 8.658513E-4, + 0.02183513, + -0.01506873, + -0.008560694, + -0.010877205, + 0.020939553, + -0.01992793, + 0.014394417, + -0.0055212937, + -0.0073478576, + 0.027044741, + 3.814483E-4, + -0.015255702, + -0.009191918, + 0.0290552, + -0.01215371, + 0.0050912406, + 9.5566E-4, + -0.0070044366, + 0.017084798, + -0.009718865, + 0.008600571, + -0.011315133, + -0.013268034, + -0.02785859, + -0.010980944, + 0.0014845014, + 0.016696343, + -0.0041747703, + 0.004643714, + 0.013705143, + 0.007356701, + 0.0044997917, + -0.0116080865, + 0.026136499, + -0.0014616874, + -0.003402303, + -0.011093304, + -0.0024349834, + 0.0076134936, + -0.0028301042, + 0.016428446, + -0.015642738, + 0.007573542, + -0.03732488, + -0.014405432, + 0.016412448, + -0.0016842, + -8.115251E-4, + 0.017868198, + 0.03588298, + -0.017706586, + 0.0073385686, + -0.0039749793, + 9.51209E-4, + 0.0132880155, + -0.010054955, + -0.008646427, + -0.008671953, + 0.013237528, + -0.0042591216, + -0.037121188, + 0.032564003, + -0.013214785, + 0.0018997437, + -0.015068848, + 0.033221763, + 0.0043906183, + -0.010866076, + 0.0071656164, + 0.033720113, + -0.006829637, + -0.007184243, + 0.036863122, + -7.8141555E-4, + -0.0032997432, + -0.004214554, + -3.482967E-4, + 0.0021430287, + 0.012101545, + -0.016663631, + 0.0220247, + 0.003863473, + -0.01170783, + 0.007868772, + -0.008104768, + 0.00833147, + -0.011638998, + 0.0011879739, + -0.022160443, + 0.014942511, + -0.018140923, + -0.029331509, + 0.019136554, + -0.0012583791, + 0.006613411, + -0.02310392, + 0.0092514865, + -0.008073945, + -0.0066760727, + -0.02208668, + -0.007136291, + 0.01660123, + -0.010662859, + 0.010161897, + -0.023769999, + -0.003169274, + -0.02141613, + -0.011171342, + -0.027038857, + 0.013670648, + -0.0064138086, + -0.013768984, + 0.01319561, + -9.420028E-4, + 0.017307773, + 0.018163573, + 0.021876499, + 0.036250133, + 5.5901875E-4, + 0.021994762, + -0.019976698, + -0.005717737, + 0.0027292087, + -0.0098531535, + -0.012164835, + 0.014971397, + -8.5527694E-4, + -0.014605935, + 0.00733915, + 0.0010526648, + 0.006301918, + -0.020643432, + 0.032240137, + 6.115196E-4, + -0.0015254467, + 0.0181318, + 0.050992083, + -0.024845293, + 0.005902689, + 3.964219E-5, + 0.018730104, + -0.0033344897, + -0.015990239, + -0.020359088, + -0.0011555125, + -0.003383202, + 0.022048766, + -0.012431153, + 0.0246124, + 0.023966366, + 0.009399707, + 0.016665803, + 0.0126176225, + 0.0010102304, + 0.007750846, + -0.010463946, + -0.005037324, + -0.0121984705, + -0.006049561, + -0.034448817, + -0.028684074, + -0.008173517, + 0.010052614, + -0.0025377737, + -3.0967183E-4, + 0.00322046, + 0.026730413, + 0.007529364, + 0.009339647, + -0.031068046, + 0.028696949, + -0.015203061, + -0.024839573, + -0.009752379, + 0.0010871731, + 0.007471766, + 0.004397164, + -0.013786454, + -0.018085508, + 0.0056472262, + 0.012487687, + 0.020736711, + -0.0011581767, + -0.015203844, + -0.01655564, + 0.009151202, + -0.024241798, + 0.007822564, + 0.010369161, + 0.021616673, + 0.006493306, + 0.017129503, + -0.01812955, + -0.004475849, + -0.0038897286, + 0.023010606, + 0.017933995, + 0.0154651385, + -0.0033481168, + -0.005590565, + 0.008297372, + -0.026142996, + 0.016834892, + -0.029662203, + 0.0066957087, + -0.018491775, + 0.012580459, + 0.006394328, + -0.0039571035, + -0.0013252584, + 0.010120926, + 0.0018937388, + -0.0020029326, + 0.0013809472, + 0.008627, + -0.006319498, + 0.01135062, + -0.011256688, + 0.018424753, + -0.0037111284, + 0.01385279, + 0.02395556, + 0.013358688, + 0.0051263142, + -0.014056481, + -0.006472938, + 0.016935213, + 0.011658083, + -0.0075446917, + -0.03326232, + -0.0014522428, + -0.004905702, + 0.0037799396, + 7.8850467E-4, + 0.006811837, + 0.004103181, + -0.0044206176, + -0.0070181172, + 0.024869122, + -0.02113589, + -0.005022953, + -0.008778058, + -0.01338546, + -0.013607895, + 0.03355004, + 0.01520087, + 0.0011304792, + -0.005874253, + 0.012002465, + 0.0043132603, + 0.025198506, + 0.029470589, + -0.0014800782, + -0.022582542, + -0.0020245572, + -0.01097804, + 4.3104964E-4, + 0.0042691804, + 0.008998295, + 0.04577714, + 0.021182083, + -0.021154378, + -0.0052423454, + -0.014497574, + -0.028981395, + 0.016544739, + 0.007014043, + -0.011606452, + -0.023054471, + 0.019970264, + -0.0036834078, + -3.6440897E-4, + -0.0065704715, + -0.0014872038, + 0.027196495, + -0.008888249, + -0.007254941, + 0.027767427, + 0.0025507996, + 0.015568506, + 0.022114884, + -0.007040647, + 0.012133367, + 0.0030233867, + 0.009354112, + -0.013668998, + -0.016509706, + -0.001778558, + 0.013527947, + -0.0040925704, + -0.012623662, + -0.013866626, + -0.0027746179, + -0.0050428566, + 0.0021862516, + -0.027076526, + 0.013244051, + 0.021568136, + 0.0020860562, + 0.009140354, + -0.018660566, + -0.0072688446, + -0.00426178, + 0.025179356, + 0.010147021, + 0.0067355614, + 0.012208701, + 0.005582536, + 0.031410735, + -0.020472657, + -0.0035810366, + -0.03222475, + -0.017410152, + -0.013822096, + -0.0253847, + -0.021440595, + -0.0014709104, + -0.03141662, + -0.022358863, + -0.0040232446, + -0.0058856555, + 0.031025158, + 0.0010279182, + 0.001436593, + -9.6672546E-4, + -0.004525736, + -0.001067986, + 0.008426061, + -0.0033304347, + -0.013511007, + 0.018504336, + -0.0027933554, + -0.011405547, + -0.02704426, + 0.015339817, + -0.023183312, + 0.006091031, + 0.0025572337, + 0.0037980499, + 0.02282569, + -0.0010177569, + 0.011283449, + 0.023249244, + 9.6392125E-4, + 0.012199535, + 0.0021391723, + 0.0048497063, + -0.022662545, + -0.010885588, + 0.01162605, + 0.013258683, + -0.007116369, + 0.006629776, + -0.010954791, + 0.0015317583, + -0.0017898766, + 0.035788722, + -0.010112237, + -0.007645552, + 0.0071776714, + -0.0022780674, + 0.0045302035, + 0.04249218, + 0.027200425, + 0.027995134, + -0.016891118, + 0.016652578, + 0.022043997, + 0.011841426, + 0.001395035, + -0.012433567, + -0.014656738, + -0.0018303741, + -0.001337456, + -0.008557645, + 0.0075504165, + 0.020628778, + 0.0070914654, + 0.027989153, + -2.9909163E-4, + 0.011658782, + -1.5144016E-5, + -0.020372456, + 0.011606511, + -0.0073444694, + 0.013443923, + 0.003325367, + 0.027676623, + 0.0065030092, + 0.028982928, + 0.008736684, + 0.008328787, + -0.011596111, + -0.02649885, + 0.009680738, + 0.0029773081, + -0.008480915, + 0.017672913, + -0.0062610474, + 0.009070734, + 0.004229794, + -0.017601531, + -0.0026740471, + -0.02592341, + 0.03373259, + -0.006694346, + -0.00943421, + 0.008354124, + 0.013475928, + -0.046916492, + -7.608981E-4, + -0.003759053, + 0.0048115747, + -0.0028670952, + 0.01330306, + -0.015917063, + -0.014731041, + 0.008387455, + -0.0045582447, + -0.016875045, + 0.009996094, + -0.0051537566, + 0.0019276731, + -0.0057985387, + -0.004642947, + -0.006788757, + 4.166731E-4, + 0.012771544, + 0.021950884, + 0.0080151865, + 0.032517698, + -0.010757337, + 0.024583466, + 0.017926607, + 0.0071740965, + -0.003917476, + -0.012679177, + -0.009992184, + 2.275414E-4, + -0.012378925, + 0.01103863, + -0.01080046, + 0.006380909, + -0.017032906, + 0.00872158, + 0.013330351, + -0.010147492, + 0.020473044, + -0.004838836, + 0.011709654, + -0.014263365, + 0.011574183, + 0.012313263, + 3.7631608E-4, + -0.0113346465, + -0.016170345, + -0.02525083, + 0.00944525, + 0.002787491, + 0.009436131, + -0.0024889773, + 0.034497153, + 0.004257834, + 0.01658277, + -0.0044607953, + 0.011543866, + -0.013378472, + 0.020548047, + 0.020776486, + 0.0025834735, + -0.014568364, + -0.030303415, + 0.024237921, + 6.520857E-4, + 0.008677503, + -0.0054196864, + -0.0028791998, + -0.015405436, + 0.017029965, + -0.05199652, + 0.005234332, + 0.01370184, + -0.0088119, + -0.007193784, + -0.014236831, + 0.018066537, + 0.03140722, + 0.014442061, + -2.45083E-4, + -0.00679879, + 0.006195388, + 0.007814315, + -0.0055523445, + 0.015557302, + 0.016892407, + 0.0395381, + -0.016925186, + 0.025138753, + -0.0010899138, + 0.0057530263, + -0.0013161239, + 0.0035813346, + -0.014181744, + 8.460569E-4, + -0.0050768135, + -0.015496148, + -0.0038320394, + -0.022862481, + 0.0038772959, + 0.03261181, + -0.014914883, + 0.0013421521, + 0.015809722, + -0.013003767, + 0.010666066, + -0.008657843, + -0.022758018, + 0.008785651, + -0.016775234, + 0.04562136, + -0.006033551, + -0.001271588, + 0.013487622, + 0.0033200884, + -0.0065334393, + -0.0045841904, + 0.037638675, + -2.4656262E-4, + -0.01155781, + -0.012630962, + 0.019073147, + -0.009220269, + 0.0050203116, + 0.009353962, + 0.013462037, + 0.0018926004, + 0.009543576, + 0.015311173, + 0.002567011, + -0.029130155, + 0.009154558, + -0.018075073, + 0.012640743, + 0.014994292, + -0.010696189, + -0.0052398816, + -0.027693273, + 0.006068155, + 0.02695044, + 0.03464301, + -0.012744722, + 0.022493806, + -0.025406642, + -0.0010310407, + -0.028946511, + -0.02901957, + 0.0043142554, + 0.04011903, + 0.008481546, + -0.0047594043, + -0.016716685, + 0.0070700385, + 0.0103074275, + 0.0073541338, + 0.027878024, + -0.0078029833, + -0.008578946, + 0.015573872, + 0.0025649588, + -0.0074152374, + 0.0038794586, + -0.008179221, + -0.0072395885, + -0.008436328, + 0.022683691, + 0.0031168193, + 0.012467076, + 0.005264656, + -8.4759854E-4, + 0.0015488304, + -0.0060870512, + -0.009410935, + 0.0103821065, + -0.013704862, + 0.013253603, + 0.0012987219, + -0.005929839, + 0.022859676, + -0.012842624, + -0.011389573, + 0.021861607, + -0.008567898, + 0.019761853, + 0.0042964397, + -0.009950745, + 0.016551627, + 0.022725973, + -0.029333502, + 0.007349095, + 2.6103717E-4, + 0.031685323, + 0.0027850387, + -0.011296033, + 0.01387037, + -0.0057153087, + -0.004604161, + -0.029649595, + -0.01140537, + -0.004204257, + 0.0013201123, + -0.0060838996, + -0.0031515101, + 0.013963143, + -0.011254411, + -0.015903639, + 0.0061596795, + -0.018288204, + 0.022997856, + -0.008513634, + -0.019390995, + 0.0056240447, + -0.02302209, + -0.012032173, + 0.012748356, + 0.004916283, + -0.014584862, + -0.025235035, + -0.028819572, + -0.0062589534, + -0.0026248056, + -0.014199427, + -0.02059287, + 0.011131439, + -0.0037723875, + 0.0036542956, + -0.0022283974, + -0.0030124178, + -0.004758464, + 0.0045667505, + 0.034946978, + 0.028700205, + 0.024188057, + -0.009472368, + 0.02348631, + 0.003705685, + -0.0030740506, + -0.0010041201, + 0.0066149146, + 0.013134129, + -0.018643387, + -0.012557118, + 0.009949442, + -0.0047274274, + -0.012866636, + 0.0025205454, + 0.008552451, + 0.01581998, + 0.007542065, + 0.017697271, + 0.014546534, + -0.01130062, + 0.0072420165, + 0.010010439, + 5.848577E-4, + 0.014354841, + -0.0066214968, + 0.0111231785, + -0.008458926, + 0.009125058, + -0.0042471187, + -0.017861849, + -0.0065894737, + -0.0066615255, + -0.01114809, + 0.003979943, + 0.008641082, + -0.017322358, + -0.014054225, + -0.0017985386, + -0.010086054, + -0.0044841575, + -0.011433119, + -0.009598296, + -0.006249092, + -0.0053891274, + 0.0043069837, + -0.02553099, + 0.008529833, + -0.008964734, + -0.0054022316, + -0.020806963, + -0.013274007, + 0.04780997, + -0.023566244, + -0.019601677, + 0.014909863, + -0.008274367, + -0.0011341544, + 0.014318451, + 9.6624397E-4, + 0.014329255, + 0.021166302, + 0.012090485, + 0.018010525, + 0.008191562, + 0.02132714, + 0.042628225, + 0.0012416737, + -0.018603856, + 0.0041149217, + -0.005368455, + -0.010085116, + -0.004635232, + 0.0037640673, + 0.011175889, + 0.0068502324, + -0.017243486, + 0.019370398, + 0.014846147, + 0.0023675002, + -0.01415578, + -0.00892352, + 0.0025379935, + 0.004447252, + 0.008558439, + -0.024505442, + -0.02818221, + 0.007939335, + 0.0027422912, + -0.005503782, + 0.013370821, + -0.010809315, + -0.015912473, + -0.005418793, + 0.008641526, + -0.010868736, + 0.03258764, + 0.00793887, + -0.009288632, + 0.016858198, + -0.027761757, + -0.0010981358, + -0.0036775777, + 0.0038701158, + -0.044025097, + 0.0054697916, + 0.010252831, + -0.029156545, + 0.029593557, + 0.018104201, + 0.0054251202, + 0.0092485305, + -0.027279913, + -6.941887E-4, + -0.04014089, + 0.0030432043, + 0.0019567332, + -0.019346964, + -0.0024707324, + -0.0074766586, + 0.014493473, + -0.0038808458, + -0.018882202, + -0.017187292, + 0.00116488, + -0.0032485223, + -0.004175271, + 0.014646728, + 0.007425864, + 0.0074305134, + -0.005536048, + 0.03172156, + -0.0062312023, + 0.013163171, + 0.018331848, + 0.008761986, + -0.007215246, + -0.0051613995, + 0.015886905, + -0.0049061, + -0.019406175, + 0.016159667, + 0.02223805, + -0.012808589, + -0.03312537, + -0.013412627, + -0.023016969, + -0.020654822, + 0.01840763, + 0.008174609, + -0.0029505407, + -0.019740505, + 0.016475378, + -0.0042658066, + -0.017491875, + -0.0068670325, + 0.017567635, + 0.002385531, + -0.037135918, + 0.02238736, + 0.003764523, + 8.882348E-4, + -0.021859553, + 0.009545038, + 0.0027220903, + 0.020127289, + -0.007070388, + -0.029642329, + 3.1361738E-4, + 0.010543359, + 0.0029575003, + 0.004610634, + 0.009005634, + 0.0033723975, + 0.0030871623, + -0.0048708594, + -0.021151936, + 0.008199426, + 0.008821731, + -0.027094547, + -0.026352972, + -0.001265585, + -0.016138004, + 0.0078084073, + 0.0048027625, + -0.012799549, + -0.002348788, + -0.02681339, + -0.01873782, + -0.009727113, + -0.023945063, + -0.035195824, + 0.0018564899, + -0.0048096366, + 0.01888229, + 0.034345698, + 0.009320739, + -0.0018846714, + -0.008214227, + 0.00426918, + 6.07655E-4, + 0.01619698, + 0.008415576, + -0.013271251, + 9.1834477E-4, + 0.03943772, + 0.008542328, + 0.016145598, + -5.3378224E-4, + -0.017979335, + -0.012398661, + -0.0066494904, + 0.0035683885, + -0.0027065948, + -0.0040621418, + 0.029701507, + -0.0026076862, + 0.012164297, + -0.020356912, + -0.032579325, + -0.0014087722, + 7.2371546E-4, + 0.028566312, + 0.013362797, + -0.029923892, + 0.022950295, + 0.02230334, + 0.012063095, + 0.01833796, + 0.008465706, + -0.023161525, + -0.005322446, + 0.003930413, + 0.022210123, + 0.023175802, + 3.4058935E-4, + -0.0022749489, + -0.004111612, + 0.021229204, + -0.0012367319, + -0.011030021, + 0.00836649, + -0.015765846, + 0.010670315, + 0.006908944, + -0.013960604, + 0.032795843, + -0.027762052, + -0.03148841, + -0.004864905, + 0.013320322, + 0.012215439, + 0.0045874454, + -0.013861674, + -0.0010212992, + 0.009647534, + 0.009974569, + 0.0041542808, + 0.021736661, + 0.008011868, + 0.018205274, + -0.0032718843, + -0.015855916, + -0.025452403, + 0.012302431, + -0.0063064927, + 0.0131603815, + 0.01470455, + 0.0049484284, + -0.014211778, + -0.02009721, + 0.01415685, + 0.0024662449, + -0.019182008, + 0.012800964, + 0.021641573, + 0.0020470456, + -0.004954771, + -0.022741372, + -0.00925423, + 0.005543879, + -0.001435463, + 0.012767635, + 0.00761891, + 0.0076316283, + -0.008072941, + 0.019465718, + -0.0014602481, + -0.012455786, + 0.019907981, + 0.007711929, + -0.0015841909, + 0.008904856, + -0.0105235465, + -0.011047498, + -0.0018608159, + -0.014189065, + 0.016179742, + 0.014417585, + 0.03243917, + 0.0018672186, + -0.016079947, + -0.0023845693, + -0.02182416, + -0.0029921876, + -0.0041374615, + 0.0038652665, + -0.007206099, + 0.007554615, + -0.016844349, + -0.04783044, + 0.0052386466, + 0.0012324044, + 0.0051262435, + 0.009396457, + -0.011544741, + -0.030229408, + -0.028321262, + 0.0024862858, + 0.015748015, + 0.03206949, + 0.0033986266, + -0.016503949, + 0.0053082593, + -0.004413274, + -0.00544005, + -0.026298393, + 0.017398013, + 0.011654513, + 0.015265385, + -0.025345834, + 0.00927268, + -0.015033252, + -0.0020046574, + -0.02794908, + -0.045538522, + -0.025837323, + -0.029461175, + 0.00975946, + 0.026994435, + -0.038196348, + -0.005146148, + 0.003023737, + 0.009192764, + 4.134151E-4, + -0.022456152, + 0.047985554, + 0.003505565, + -0.0129527915, + -0.01027829, + -0.015260817, + 0.0052714976, + 0.019770252, + -0.015319784, + 0.019104082, + -0.024132421, + -0.017572867, + 0.01045436, + 0.011181913, + -0.030853184, + 0.0200668, + -0.013750062, + 0.001527546, + -0.013207612, + -0.0069304765, + -0.016021041, + 0.033815254, + 0.016983362, + -7.304214E-4, + 4.7057768E-4, + -0.005449616, + -0.011887297, + 0.014672732, + 0.013755997, + -0.005109426, + -1.3603794E-4, + -0.001961913, + 0.01658695, + -0.0041585127, + 0.04374165, + -0.013232143, + 0.016822308, + 0.00549291, + 0.009680521, + 0.011796762, + -5.397308E-4, + -0.0052566403, + -5.208012E-4, + 0.0014354958, + -0.019870376, + 0.016160006, + -0.009867008, + 0.03363772, + -0.015324065, + -0.005815819, + 0.013835744, + 0.0020831157, + 0.0072233933, + 0.0070789796, + 0.006695977, + -0.006352528, + 0.009658525, + 0.0017478338, + -0.032410506, + 0.008311629, + 0.0035746268, + -0.010627553, + 0.011139667, + 0.023273291, + 0.008585359, + 0.024502626, + -0.019329445, + 0.0054822136, + 0.036238212, + 0.0072217793, + 0.009265234, + -0.012884265, + -0.0013185368, + 0.0053511537, + -0.03152523, + -0.004386508, + 0.031534716, + -0.017607514, + -0.024538338, + -0.0063294885, + -3.8954004E-6, + 0.001731665, + 0.012143008, + -0.008217869, + -0.01087138, + -0.014288143, + 0.008262624, + -0.018212603, + 0.0058275657, + -4.184576E-4, + 0.020160314, + -0.015517195, + 0.022435669, + -2.570137E-4, + 0.00896535, + 0.007077083, + -0.011533972, + 0.005019034, + -0.002661525, + 0.0070707765, + 0.011365977, + -0.0039944095, + -0.033662464, + -0.01076483, + -2.0449312E-4, + -0.007189558, + 0.009371611, + 0.023277072, + 0.0047916262, + -0.018653885, + -0.017064743, + -0.008447397, + -0.0094229905, + -0.021683712, + -0.014450376, + 0.023006089, + 0.0057045557, + 0.025879113, + 0.022412615, + 0.01852348, + 0.01660332, + -0.019248873, + -0.021518147, + 0.007625132, + -0.0027354544, + 0.002482246, + 0.008726491, + 0.004449254, + 0.006422177, + 0.002281526, + -0.022666303, + -0.001687026, + -0.019603778, + -0.0038702944, + 0.0045270394, + -0.0066208206, + 0.009683887, + 0.0075800642, + -0.0054268846, + 0.008865368, + 0.01310147, + 0.008030129, + -0.013069521, + -0.014182741, + -0.0049039456, + -0.021118987, + 0.010385379, + -0.021156905, + -0.015377791, + -0.01038738, + -0.021032184, + -0.019446112, + -0.013344734, + 0.0018840727, + -0.0076509123, + 5.867385E-4, + 0.0030866785, + 0.0074557634, + 0.0037793657, + 0.008297721, + 0.027380051, + 0.037494298, + -0.016142555, + -0.0022928512, + -0.017935086, + 0.0061466936, + 0.0025339033, + -0.012225665, + -0.023138685, + -0.013667195, + -0.014509164, + -0.0032977192, + -0.026350645, + 0.003445397, + -0.011228318, + 0.0121803, + 0.03966497, + -0.005749788, + 0.006596189, + 6.272609E-4, + -0.0072379685, + 0.018163575, + -0.021333788, + -0.0078342715, + -9.7323104E-4, + 0.011131118, + 0.007987305, + -0.0021506231, + 0.025192022, + -0.009988435, + -0.0016347326, + 0.005320768, + -0.0020787662, + 0.015869383, + 0.013984956, + -0.016650043, + 0.002617862, + 0.0050712563, + -0.016132327, + -0.0012086093, + 0.0028946095, + 0.03329529, + 0.016288169, + -0.0015495683, + -0.010226444, + 0.005122197, + -0.0010472948, + 0.019151963, + 0.0010090539, + -0.027668893, + -0.009106885, + -0.004054831, + -0.015260283, + 9.32878E-4, + 0.014775954, + 0.02728003, + 0.0019420285, + 8.6181326E-4, + -0.006509932, + 0.006920617, + -0.02477416, + -0.024516772, + 0.025982033, + 0.004133612, + -0.001968921, + -0.0112210885, + -0.0053226775, + 0.0013222459, + 0.008312382, + -0.0103799375, + 0.008362325, + 0.01854463, + 0.021232666, + 0.014031529, + -0.012304873, + 0.022123244, + -0.002350664, + 0.014807735, + 0.01816385, + -0.027472204, + -0.016637996, + -0.010181433, + 0.008055545, + 0.03063184, + 0.011135683, + 0.0018961439, + 0.015337146, + -0.033213202, + -0.02001222, + -0.00958734, + 0.016396781, + -0.023557687, + 0.012807844, + -0.0019291056, + 7.252263E-4, + 0.016731987, + -0.0046519786, + -8.1906846E-4, + -0.025564568, + 0.002354291, + 0.008768436, + 0.0065156696, + -0.0026319935, + -0.0035533353, + 0.011015089, + 0.008793014, + -0.0035004877, + -0.007542845, + -0.0113277575, + -0.012452343, + -0.017547382, + -0.0029711197, + 0.025745166, + 0.01896783, + -0.009448877, + -7.0730457E-4, + 0.0013595695, + 0.010338038, + -0.018743299, + 0.0038237246, + -0.0045111123, + 0.004378367, + -0.008505569, + -2.078613E-4, + -0.012942677, + 0.0051284716, + 0.031105176, + -0.0021430543, + -0.002874866, + 0.011107052, + -0.0052605607, + 0.021760419, + 0.007703949, + 0.015593224, + 0.03157005, + 0.013339075, + 0.010565021, + 0.014249323, + 0.0030939532, + -0.0018627148, + 0.005284981, + -0.0059629483, + 0.012006803, + 0.0035072507, + -0.010416104, + 0.0077602244, + -0.0025638135, + -0.012843752, + 0.004921934, + 0.001708904, + -0.012454063, + -0.011880118, + 0.0100694345, + 0.018548971, + -0.0036822793, + 0.013700256, + -0.013816998, + 0.006932196, + -0.013562167, + -0.01952667, + -7.955E-6, + 0.020399584, + 0.024753978, + 0.0050435895, + -0.02115149, + -0.027174553, + 0.019568361, + 0.019777162, + 0.009029358, + -0.00935979, + -0.005138761, + 0.0029641248, + -1.5966721E-4, + -0.009705148, + 0.013248943, + -0.004106496, + -0.01258049, + 0.026754025, + 0.01737118, + 6.694274E-4, + 0.017341238, + 0.0046851393, + -0.012967439, + -0.0059483834, + -0.024674695, + -0.020191163, + 0.01389376, + 0.022037225, + 0.017381119, + 0.021840703, + 0.011998942, + 0.021636263, + -0.008117489, + -4.1218716E-4, + -0.014960763, + 0.00523853, + -0.01877921, + -0.022456348, + -0.006540785, + 0.01080325, + 0.0065046987, + -0.0142254075, + 0.033605825, + -0.001372116, + 0.020935994, + -0.0026734823, + 0.034204397, + -0.016593125, + -0.009658588, + 3.5982882E-4, + -0.01742275, + 0.010053662, + -0.011184171, + -0.0059265518, + -0.01081199, + 0.024602322, + 0.008142756, + -5.836775E-4, + -0.017292092, + 0.0061681904, + -0.0072285905, + -0.0013911102, + -0.018449066, + 8.106477E-4, + -0.01989139, + 0.029673345, + 0.0022995982, + -0.0032736894, + 0.0011127257, + -0.008225356, + -0.008152094, + -0.002926813, + -0.0104442015, + -0.03554212, + 0.0017139053, + 0.01358033, + -0.009478675, + 0.0014986251, + -0.00866297, + -0.007681469, + -0.0042568487, + -0.015226393, + 0.013157034, + -0.0048899674, + 0.015191816, + 0.026568335, + -0.008997525, + 0.0063549313, + -0.006262386, + -0.0016068916, + -0.0032933645, + -0.016650418, + 0.003151048, + 0.01730814, + 0.025156999, + 0.003272165, + 0.008187422, + -0.0037507499, + -0.031104926, + 0.025645245, + 0.01954573, + -0.019779375, + 0.024034409, + -0.020386929, + 0.011669191, + -0.013226837, + 0.016363742, + 0.009571267, + -0.0020908671, + -0.03162507, + -0.029508734, + 0.012027388, + -0.017441373, + 0.020681452, + 0.026398625, + -0.023297675, + 0.0016068321, + -0.0056258477, + -0.0069640395, + 0.011233581, + 0.012443231, + 0.01449494, + -0.03363255, + -0.012058928, + 0.006965108, + -0.011233552, + -0.03094302, + -0.0227577, + -0.007665917, + 0.029999362, + -0.0057281805, + -0.014706806, + 0.0056872517, + -0.0037398417, + 0.02304688, + 0.018239604, + -0.013545101, + -0.01181674, + -0.0050687077, + 0.002203997, + -0.003206243, + -0.017314719, + 0.0023185585, + -0.019266771, + 0.005778165, + -0.013360563, + -0.0013545457, + -0.0027384125, + -0.016112393, + 0.018641165, + 0.006903054, + -0.040120423, + 0.0020948653, + -0.007636054, + 0.011926528, + -0.01398681, + -0.0042362185, + 0.04298561, + -0.02335704, + 0.011010765, + 0.027650867, + 0.0048083877, + -0.0019871623, + 0.012687159, + 0.002233279, + 0.002601428, + 0.017134627, + 0.010011728, + -0.012299847, + 0.0089299185, + 0.016805682, + -0.024340365, + -0.011519602, + -0.006647188, + 0.020840576, + 0.0053174123, + 0.01776545, + -0.0029683942, + -0.012326658, + -0.0021742543, + 0.0011183386, + 0.0049032774, + 0.0017874106, + 0.014173407, + 0.0012798544, + -0.0132968165, + -0.0054497835, + -5.107479E-4, + -0.006003596, + 0.0027980956, + -0.011319582, + -0.014464997, + 0.0154804895, + 0.026148101, + 0.005734614, + -0.00707388, + -0.007689066, + 0.015584257, + 0.0037494262, + 0.008272833, + -0.0109514855, + -0.007417283, + -0.013233437, + -0.0031524682, + -0.015692174, + 0.006232507, + -0.012030366, + 0.019724023, + 0.0016023366, + -0.0029282928, + 0.011478493, + 0.008984102, + 0.016828308, + -0.0012851106, + 0.008115605, + -0.019220734, + 0.014734128, + -0.012511609, + -0.024795953, + 0.022387942, + 0.024687216, + -0.0019649556, + -0.004692686, + -0.007768624, + 0.014373244, + 0.017789328, + -0.025087295, + -0.0011645914, + 0.025590118, + 0.015163398, + 0.02271162, + -0.019201912, + 0.011013443, + -0.007756987, + -5.3150975E-4, + 0.0077182036, + -0.032053642, + 0.022722369, + 0.0113493595, + -0.027373288, + -0.015919445, + -0.013082724, + -0.005764615, + 0.011600392, + -0.0014448435, + -0.026122088, + 0.0026538665, + -0.013156973, + 0.0013704111, + -0.009049247, + -0.0020050013, + 0.0052123913, + -0.0033494676, + -0.002103291, + -0.025775045, + 0.006750606, + -0.004109877, + 0.01575644, + -0.008968839, + -0.009832568, + 0.013079043, + -0.004042618, + -0.0026580342, + 0.011535641, + 0.011493867, + -0.0010791322, + -0.017674359, + 0.016058683, + -0.0092212595, + 0.024046866, + -0.010849438, + -3.6837926E-4, + -0.002772652, + -0.021247793, + -8.699989E-4, + 0.025425825, + -0.0038758374, + -0.004407433, + -0.016734114, + -0.0132615995, + 0.03378229, + 0.010898765, + 3.9471698E-4, + -0.008913175, + -0.013881735, + -0.002887736, + 0.01397743, + 0.033558387, + -0.0029959367, + 0.0023867416, + -0.0075191143, + -0.010790448, + 0.038640026, + 0.016434083, + -0.006020329, + 0.008073523, + 0.0036704757, + -0.011074437, + -0.0046190643, + -0.015539201, + -0.019364983, + 0.004303845, + 0.008169083, + -0.0016015559, + -0.025586389, + -0.0029578903, + -0.019144678, + -0.014066249, + 0.009010053, + -0.018302877, + -0.025209237, + 0.017017184, + 0.0014907832, + -0.026230846, + 0.01870677, + 0.0037091142, + -0.024589809, + 0.021850217, + -0.021758026, + -0.0496586, + 0.010104925, + 0.008321285, + 0.010667924, + 0.007928178, + -0.011710527, + 0.020149304, + 0.016184269, + 0.016494434, + -0.0221369, + -0.012613266, + 0.004863055, + -0.005547763, + 0.0015484884, + 0.01977105, + 0.00773683, + 0.017809711, + 0.013903275, + -0.025416063, + 0.017770203, + -0.0022059781, + 0.018572737, + -0.027098384, + 0.007409626, + -6.4623455E-4, + 0.015903536, + -0.010222432, + 0.020018337, + -2.9236497E-4, + -0.028239744, + -0.017890593, + 0.0053892103, + -5.881378E-4, + 0.016103357, + 0.02089033, + 0.0143912835, + -0.0087442435, + -0.0185408, + 0.01567532, + 0.0024988714, + 0.0138777625, + -0.0014320017, + -0.009980123, + 0.0020043594, + 0.027202547, + 0.0010031618, + -0.00987314, + -0.010064912, + -8.753178E-4, + -0.012557135, + -0.0013754264, + -0.0018816141, + 0.0030677444, + 0.010069858, + -0.0039664763, + -0.027403396, + 0.013793418, + -0.01700249, + 0.012992075, + -0.011855399, + -0.0016223199, + 0.015722632, + 0.008389603, + -0.0090445485, + -0.038510084, + -0.0080932425, + 0.011128184, + 0.00444866, + 0.017205441, + 0.024273174, + 0.005551897, + -0.014110631, + -0.019264746, + -0.023425967, + 0.009646406, + 0.009732347, + -0.002381747, + 0.009138036, + 0.0068982574, + -0.005531204, + 0.029391143, + 0.0036805498, + -0.0013712232, + 0.01834461, + -0.029209528, + -0.0013139506, + -0.027004186, + 0.009725856, + 0.013401709, + 0.017947007, + 0.008192347, + 0.0031244215, + -0.011508998, + 0.019631084, + 0.015061779, + -0.021866329, + 0.041754883, + -0.009638505, + -0.010556003, + 0.02569495, + -0.022024972, + -7.5014535E-4, + -0.015559667, + 0.004731132, + -3.340437E-4, + -0.004022777, + -0.0102876, + -0.014018681, + -0.010455849, + 0.016513279, + 0.011378739, + 0.009587049, + 0.0015178135, + -0.02579449, + 0.009766396, + 0.02682618, + 0.013921666, + 0.017588887, + -0.018905869, + 0.017094195, + -0.014788101, + 0.02702369, + -0.004294467, + -0.0040415, + -0.0028406593, + 0.01731105, + 0.009062033, + 0.00990261, + -0.019148981, + -0.0039182683, + 0.0053080125, + 0.0037597236, + 0.008778491, + 0.001174163, + 0.013201158, + 0.007858018, + 0.0114441225, + 0.021954011, + 0.0072827316, + -0.017520452, + -0.0028192634, + 0.01400837, + -0.0011291553, + -0.0044298773, + 0.003634713, + 0.02280177, + 0.006282908, + 0.004686472, + -0.028483504, + -0.009808988, + 0.006910429, + 0.0060458295, + 0.008364179, + -0.0075920695, + -0.023214035, + 0.0144116515, + 0.009346597, + -0.00520387, + 0.024767688, + 0.01652264, + -0.006602362, + 0.012085191, + 5.473746E-4, + -0.006692363, + -0.008916554, + -0.011353657, + 0.00897995, + -0.008099755, + 0.005560049, + -0.0233232, + 0.02264406, + 0.009428715, + -0.005602797, + -0.030006535, + -0.011535083, + 0.019704226, + 5.694833E-4, + -0.021587435, + 0.015112511, + -0.012159251, + 0.015842637, + -0.020664131, + -0.006844082, + -0.011721813, + -0.0021629883, + 0.023972834, + -0.0016060486, + -0.03292135, + -0.025796022, + 0.016587142, + -0.022049177, + 0.012891856, + 0.004681746, + 0.024371237, + -0.022626808, + 0.008275399, + -0.008708714, + 7.700493E-4, + 0.007335734, + -0.025269529, + -0.0053578774, + -0.011972439, + -0.018252634, + 0.005617062, + -0.03247389, + -0.0013250661, + -0.0054020938, + 0.002732634, + 0.018169934, + 0.004971654, + -0.016681641, + 0.027670547, + -0.019806687, + -0.015029642, + -4.4504303E-4, + 0.020455102, + 0.02243721, + 0.0052661654, + -0.001720765, + 0.019437054, + 0.0062477244, + -7.5023767E-4, + 0.016099392, + -0.0028256665, + -0.0084236115, + 0.0032730496, + -0.0199725, + 0.015558229, + -0.00239805, + 0.024868147, + -0.011506457, + -0.0069656884, + 0.022267917, + 0.019431313, + -0.016349437, + 0.010259441, + 0.014135184, + -0.0053370153, + 0.011624514, + -0.0021178953, + -0.024951579, + 0.01472678, + -0.025734602, + -9.178881E-4, + 0.023265598, + 0.009051637, + 0.0031027214, + 0.0228105, + 0.011525408, + -0.01185839, + 0.018116357, + 0.01168376, + -0.0015074355, + 9.3712E-4, + -0.017090535, + 0.015803287, + -0.004755976, + 0.008195015, + -0.0054192576, + -0.0012159161, + 0.015560174, + -0.014910245, + 0.018557731, + 0.011454676, + 0.01868285, + 0.013150035, + -0.012972312, + 0.01799283, + -0.019185655, + 0.005934572, + 0.021779101, + -0.0058179805, + -0.009881958, + -0.011504919, + 0.006023678, + 0.024548922, + -0.03091095, + 0.011834822, + 0.0014036421, + 0.011698622, + -0.0036881997, + 0.019948533, + 0.013559146, + 0.026639067, + 0.0171654, + 0.024881791, + -0.028272986, + 0.0041257762, + -0.010731692, + 0.0015771916, + 0.009736936, + 0.028794475, + 0.003601525, + 0.0030298734, + -0.020312529, + 0.05739039, + 0.003045435, + -0.013701844, + -0.015979167, + -0.008037866, + 0.003859146, + -0.041172918, + -0.026459249, + 0.014108762, + -0.0020384556, + 0.01746805, + 0.042429104, + 0.0039113164, + 0.011371856, + -0.016041754, + -0.005509962, + 0.0071079, + 0.015239177, + 0.0044073327, + -4.044626E-4, + 0.028593985, + -0.022265267, + 0.01724516, + 0.027878584, + -0.005730116, + -0.013272327, + -0.0112217935, + -0.0132727325, + -0.0123722525, + -0.0037357318, + 0.005955119, + 0.024681116, + 0.018730039, + 0.010890124, + -0.019833306, + 0.01112838, + -0.017624184, + -0.014735148, + 0.034514084, + -0.012797103, + -0.0015405995, + -0.013894926, + -0.016408738, + 0.028555974, + -0.008198281, + 0.018538367, + -0.0056679943, + -0.0019106028, + -0.008928578, + 0.0026400685, + 0.0101484265, + -0.027473832, + -0.031715248, + -0.0061805504, + 0.02943851, + -0.0017920932, + -7.6099625E-4, + -0.0035378311, + -0.017735787, + -0.0057045408, + -0.017571015, + 0.016136901, + -0.039497286, + 0.012074253, + -0.0014668175, + -0.0051592356, + -0.0041638147, + -0.012314695, + -0.005496591, + 0.00388253, + 0.021126604, + 0.011093701, + -0.0056244116, + -0.029011931, + 0.017522868, + -0.022077655, + -0.019246047, + 0.0035648043, + 0.0034188898, + 0.011397018, + -7.571179E-4, + 0.005523964, + -0.02692371, + 0.0073375474, + -0.014074528, + -0.010733268, + -0.02050919, + 0.0028088815, + -0.011686202, + 0.007700404, + -0.003395839, + 0.014221899, + -0.025728663, + -0.008495302, + -0.0010638821, + 0.0068011824, + 0.011365086, + 0.016922487, + 0.031169767, + -0.015952066, + -0.032485243, + 0.004596196, + 0.025923356, + 0.0022912237, + 0.010290004, + 5.058984E-4, + -0.0050363434, + -5.5875385E-4, + -0.011421589, + 0.009269818, + -0.022520466, + -0.028380439, + 0.014506617, + -0.034962416, + -0.005236053, + -0.004193145, + 0.0024555048, + -0.00528216, + 0.0040077246, + 0.00345426, + 0.014349197, + -0.0030583404, + 0.008960502, + 0.017802738, + -0.049963154, + -0.02208769, + 0.0035964267, + 0.0035280336, + 0.0061627426, + -0.006998663, + -0.020227, + -0.009537909, + -0.009140879, + 0.011733576, + 0.028944299, + -0.016554335, + 0.010392085, + -0.0019496991, + 0.0045534703, + 0.03426005, + 0.002802431, + 0.0098273745, + -0.0077160844, + -0.010082526, + -0.022224441, + 0.008482743, + 0.020217037, + 0.018219544, + 0.009320635, + 0.013370878, + -0.026017115, + -8.3806727E-4, + -0.027969148, + 0.0051540798, + -0.009667881, + -0.009412266, + 0.0058308793, + 0.034374766, + -0.008327067, + -0.019795284, + 0.009731175, + -0.016395237, + 0.0043729115, + -3.1610514E-4, + -0.006280635, + 0.0038483033, + -0.0020004052, + -0.01222313, + -0.009741731, + 0.0122862235, + 0.0030244603, + -0.011382584, + -0.0020384628, + 0.0024748654, + 0.007598355, + 0.013473401, + 0.016218578, + -0.024347078, + -0.010822789, + -0.01330879, + -0.0029106264, + -0.009699557, + 0.0032158261, + -0.026141565, + -0.009758965, + 0.025354262, + 0.013839013, + -0.0340867, + 0.0057464465, + 0.010081572, + 0.03237784, + -0.01185094, + -0.0013209502, + -0.01584318, + 0.014204511, + -2.0832776E-4, + -0.002204911, + -0.013356693, + 0.0011505639, + 0.009447373, + -0.0057958704, + -0.005123778, + 0.00316255, + 0.013311077, + -0.01571854, + -0.019474497, + 0.013575832, + -5.349865E-5, + 0.0128929345, + -0.004473024, + 0.010795741, + 0.01082586, + 0.017604236, + -0.006734361, + -0.009253526, + -0.007592839, + 0.009280061, + -0.018670488, + -0.0070512337, + -0.026840176, + -0.010935659, + 0.023337604, + 0.0036552271, + 0.008697124, + -0.0014450954, + -0.008281802, + 0.015350864, + -0.019573297, + -0.026115539, + 0.017506713, + 6.183316E-4, + 0.02345796, + -0.001440443, + 0.009027723, + 0.0044523617, + 0.019852009, + 0.016627792, + 0.005814586, + 0.028154451, + -0.007938119, + 0.017327439, + 3.105666E-4, + -0.010195581, + -0.008517362, + 0.003750297, + -0.021652957, + -0.027483921, + 0.02137935, + -0.0048267175, + 0.014695592, + 0.017205182, + 0.024213308, + -0.022958016, + -0.020492738, + -0.0071920305, + 0.0038317163, + -0.018029673, + 0.0041818945, + -0.025949553, + 0.016410682, + -0.0054557417, + 0.005691886, + 0.009495741, + 0.010174849, + 0.008258739, + 0.012887016, + -0.020298507, + 0.046952214, + 0.02786552, + -6.081445E-4, + -0.023359967, + 0.005554779, + -0.040381074, + -0.014255582, + 0.0083137015, + 0.013773317, + -0.00623641, + -0.019918796, + 9.5370633E-4, + 0.0177096, + -0.013704113, + -0.021908706, + 0.03638106, + 0.0051229703, + -0.0151369665, + 0.015525687, + 0.05495885, + 0.0016026709, + 0.031531442, + 0.020551557, + -0.013612609, + -0.0070380154, + -0.008729438, + -0.031904623, + -0.021320546, + 0.025526464, + -0.006066509, + 0.009251636, + 0.011989453, + 0.0016222387, + -0.0017749842, + -0.008577813, + 0.012314387, + 0.0043376074, + -0.023371661, + 0.03291303, + -0.013457768, + -0.017911969, + -4.781088E-4, + -0.009670936, + -0.00885765, + -0.0027209134, + 0.023322752, + 0.022667056, + -0.0045772796, + -0.026960468, + 0.013963942, + 0.0020979983, + 0.016857337, + -0.0013719551, + -0.018447911, + -0.008789357, + 0.027245302, + -0.033715926, + 0.00855185, + -0.02029544, + 0.0028007047, + 0.021447333, + 0.020467987, + -0.005411253, + -0.010532542, + 0.023206165, + 0.01612339, + -0.02338801, + -0.022737766, + 0.01762245, + -0.009156648, + -0.018663518, + 0.009250368, + -0.021596715, + -0.01863369, + 0.008434173, + 0.023234377, + 5.5510085E-5, + -0.028193552, + 0.0027020301, + 0.015985748, + 0.027333034, + -0.0100454055, + -0.008251469, + 0.0058018486, + -0.0167137, + 0.013458071, + -0.004941178, + -0.010446605, + -0.0054505295, + 0.0118859755, + -0.00872651, + -0.028861813, + -0.0018710173, + -0.0060014594, + 0.015353778, + 0.0074308612, + -0.0109640965, + 6.7889626E-4, + 0.00878235, + -0.01599163, + 0.0033359504, + 0.009459553, + -6.5598445E-4, + 0.015653819, + 0.0044267066, + 0.010361904, + -6.014554E-4, + -0.0053400863, + 0.006521817, + 0.021824196, + -0.021899281, + 0.015639547, + 0.010375094, + 0.0011536905, + 0.0019689829, + 0.027229909, + 0.030653484, + 0.0077825137, + -0.0046474864, + -0.013958922, + 0.008413617, + -0.012787345, + -0.011049518, + 0.010522929, + -0.024659108, + 0.0024659422, + -0.003456553, + 0.019984962, + -0.024607845, + 0.014476396, + 0.046709485, + -0.0049779164, + -0.034866817, + 0.0020648409, + -0.004936576, + 0.007455581, + -0.004926562, + 0.013119469, + 0.016267046, + -0.028312905, + -0.022885704, + -0.00803479, + 0.004406954, + 0.01443737, + -0.0069129113, + -0.022407744, + -0.0010415576, + 0.018369393, + -0.015600433, + -0.002249017, + -0.008751575, + -0.0023248491, + -0.023341233, + -0.009584589, + -0.015062395, + 0.023455525, + 0.016441567, + 0.0107384045, + 0.006018211, + 0.021389209, + -0.012900818, + 0.030508319, + -0.014073449, + -0.01358417, + -0.0025991986, + -0.0012656921, + -0.016654518, + -0.009653648, + 0.0153487325, + -0.009188822, + -0.010331848, + -0.00894535, + 0.03508102, + -0.017178692, + 0.0014627648, + -0.014306097, + 0.007953742, + -0.02243608, + -0.0067107165, + -0.00378633, + 0.006452211, + 0.0074537904, + 9.233783E-4, + 0.003122237, + 0.015518636, + 0.019094693, + 8.3097164E-4, + 0.0020104535, + 0.00918912, + -0.0013538216, + 0.023634553, + 0.00866343, + 0.017996619, + 0.010897417, + -0.029122269, + 0.034528524, + -0.0042192866, + 0.0061561298, + 0.018750094, + -0.042340536, + -0.0047852458, + 0.0012024482, + -0.01720156, + -0.0034588627, + -0.011414321, + 0.0275965, + -0.007631684, + 0.0011663447, + 0.0029875792, + 0.008998741, + 0.0036664673, + 0.014297871, + -0.030582912, + 0.028110761, + -0.008674782, + -0.02559931, + 0.008965055, + -0.0010190877, + -0.01502653, + 0.0059199748, + -0.012874916, + 0.011447098, + 0.0014149412, + 0.019722138, + -0.007998617, + 0.019117104, + 0.03230128, + 0.027619343, + 0.0050951787, + -0.009569623, + 0.015244314, + -0.0058087353, + -0.0058867, + -0.0037415056, + -0.020612625, + 3.9307363E-4, + 0.02465134, + -0.0010430814, + -0.010186901, + -0.03480419, + -0.005024168, + -0.020286674, + 0.0321443, + -0.0059119165, + -0.022268808, + -0.0059052147, + 0.02100662, + -0.012993889, + -0.017065186, + -9.071209E-4, + 0.025506154, + -0.008953508, + -0.0102936905, + -0.0025392042, + -0.0096475165, + -0.018340271, + 0.0078992, + 0.012478763, + 0.0038821343, + 0.0016531361, + 0.026824279, + 0.025352139, + 0.004529038, + 2.9514811E-4, + -0.02043535, + -0.0026279455, + -0.021354966, + 0.008375875, + -0.010383541, + -0.02864484, + -0.008331162, + 0.0101806, + -0.012412436, + -0.016349796, + 0.011119609, + -4.940919E-4, + 0.0057731615, + 2.3155476E-4, + -0.022797363, + -0.0108337505, + 0.003929656, + 0.0049607106, + -0.022565624, + 0.023357932, + 0.010663394, + 0.020241637, + -0.0034016385, + 0.007245472, + -0.012090832, + -0.024963515, + -0.020858621, + -0.03141076, + 0.016227448, + -0.006443727, + -5.226867E-4, + 0.019960986, + -0.01165269, + 0.019914621, + -0.022286288, + 0.016437719, + -0.035631146, + -0.00881295, + 0.013999038, + -0.00534954, + 0.00400134, + -0.012517439, + 0.010251006, + 0.011443724, + -0.012684118, + -0.008167267, + 0.008540514, + -0.013853317, + 0.0044024717, + 6.370311E-4, + 0.004159948, + 0.0111082, + 9.767307E-4, + 0.0013424676, + 0.0011512657, + -0.014091225, + 0.00953749, + -0.024219703, + 0.0031999804, + 0.014057991, + -0.004046889, + 0.008947787, + 0.0200513, + -0.016461398, + 0.014593467, + 0.001509288, + 0.001889481, + 0.00917699, + -0.0010678057, + -0.0059262575, + 0.0072916117, + 0.006850963, + 7.645262E-4, + -0.022792615, + 0.019622082, + 0.021342525, + -0.025792988, + -0.0044341353, + 0.0034271549, + -0.015561695, + -0.024853848, + 0.0016036122, + -0.0113506885, + 0.009026192, + -0.012214418, + -0.013130952, + 0.006459738, + 0.0037272156, + -0.018390192, + -0.01465897, + -0.0014566571, + 0.0026306873, + -0.0015413822, + -0.014436439, + -0.011536346, + -0.02830349, + 0.0035417099, + -0.01724674, + -0.016306583, + -0.01757531, + -8.7098766E-4, + 0.013855942, + 0.0032352994, + 0.011724204, + -0.0070047276, + 6.197904E-4, + -0.0077002333, + 4.9528346E-4, + -0.026898809, + 0.003829203, + -0.015016184, + 0.0058203377, + -0.019861145, + -0.018423576, + 0.02367761, + -0.022415988, + -0.0014350663, + -0.005481127, + -0.004535951, + -0.0028453716, + -0.011767371, + -0.009669325, + -0.00541978, + -0.0017006495, + -0.030495003, + 0.0016965148, + -0.0029897627, + -0.0053849206, + 0.0011772589, + 0.005218824, + -0.01746632, + 0.0062299846, + 0.005303536, + -0.01523214, + -0.0031592026, + 0.03402303, + -0.0028454158, + -0.007968977, + 0.0064472635, + 0.015257271, + 0.0014065896, + -0.02080846, + 0.007332179, + -0.017712021, + 0.004196187, + 0.0015448047, + -0.0129297115, + 0.011007071, + 0.021712808, + -0.016716987, + -0.0023993286, + 0.0069192187, + -0.03256346, + -0.03426198, + 0.020336227, + 0.010179616, + -0.0047874274, + -0.018078852, + 5.656436E-4, + -0.01787896, + 8.3016034E-4, + 0.014689889, + 0.00888825, + 0.014833999, + 0.0188447, + -0.0030363717, + -0.0015521151, + -0.020761248, + -0.0035819577, + 0.00936372, + 0.02061903, + 7.7342946E-4, + 0.014839472, + 0.03426863, + -0.016325906, + -0.008595859, + 0.0035020674, + 2.0655923E-4, + 0.04831435, + -0.005282164, + -0.02263055, + -0.0031054444, + -0.008937118, + -0.02497875, + 0.00436895, + 0.024075167, + -0.0039091413, + -0.022365347, + -0.0026009332, + -0.014960697, + 0.0025236295, + 0.009763089, + 0.010362226, + 0.0070269266, + 0.013625114, + -0.024847068, + -0.030166715, + -0.0070143514, + 0.001754288, + 0.009569403, + -0.028438864, + -0.020948142, + 0.029888697, + -0.0029208339, + -0.00889738, + -0.009934841, + 0.012765141, + 0.024842724, + -0.019174827, + -0.01968108, + -0.0066829273, + -0.0073874453, + 0.0047886693, + -0.006857511, + -0.027235894, + 0.036506925, + -0.025495943, + 0.010155279, + 0.0054770624, + -0.022774482, + 0.0127987, + -0.02739676, + -0.013483671, + 0.018880816, + 5.240069E-4, + 0.004958505, + 0.007964975, + 0.005372996, + 0.011750318, + -0.008688978, + -0.013230757, + 0.023178067, + -0.0067009022, + -6.51769E-4, + 0.0056652953, + 0.0032406026, + -0.019618185, + 0.05289421, + 0.0058145714, + 0.011288531, + 0.025686037, + 0.0072865766, + 0.0033846728, + -0.018040692, + -0.040694773, + 5.567081E-4, + -0.014156643, + -0.012451436, + -0.017576026, + -0.00818312, + 0.021049257, + -0.002503244, + -0.008991165, + -7.300468E-4, + 0.012257755, + 0.017189577, + 0.017969016, + 0.0037144714, + 0.016041316, + -0.01673073, + 0.0029542404, + -0.0031310525, + -0.013187678, + -0.019702801, + 0.0065134037, + 0.0028667476, + 0.020399258, + -0.015642598, + 0.009776693, + -0.010623583, + -1.6329168E-4, + -4.630652E-4, + 0.0033629814, + 0.014851526, + 0.028860476, + -9.691843E-4, + 0.003857893, + 5.500798E-4, + -0.013737324, + 0.0044013895, + 0.0125980405, + 0.024276374, + 0.0076417164, + 0.0026411654, + 0.0052924096, + 1.4238429E-4, + 0.0024674924, + 0.013771685, + -0.0034272722, + 0.033713043, + -0.001717665, + -0.002187553, + 0.008461999, + 0.0047617946, + -0.0059997644, + 0.011763077, + -0.022998728, + 0.0057806033, + -0.0070475456, + -0.013330857, + 0.011852936, + -0.014057344, + 0.015616544, + 0.00618951, + 7.1655435E-4, + 0.0012024369, + -0.0048926277, + -0.010077894, + -0.0056040925, + -0.03325317, + 0.020632181, + 0.0075950506, + -0.0072855665, + 0.024717651, + -0.0018685388, + 0.0020016213, + -0.022557275, + 0.020759283, + 0.0035723178, + -0.012846215, + 0.005372639, + -4.635052E-4, + -0.022766905, + -0.008591411, + 0.0023138067, + 0.0127051985, + -0.0015452272, + 0.0019835653, + 0.013685715, + -0.012354245, + 0.012096283, + -0.01065886, + 0.010339617, + -3.202188E-4, + -0.026611516, + 0.026871512, + -0.0054145055, + 0.015933068, + 0.0055751684, + 0.0029997092, + 0.004861183, + 0.036183074, + 0.020871118, + 0.004045537, + 0.020721823, + -0.018756896, + 0.04182126, + 0.011991808, + -5.26026E-4, + 0.0052540237, + -7.5131466E-5, + 0.012564578, + -0.020056248, + 0.006505372, + 0.0031832675, + 0.021234164, + -0.023162281, + 0.006427917, + -0.0029450573, + -0.0017466438, + -0.022698151, + 0.0049184905, + 0.009949098, + -0.013679947, + -0.031333994, + -0.0036076212, + 0.0139578385, + -6.650166E-4, + 0.015693137, + -0.0060195783, + 0.026745098, + -2.4233639E-4, + -0.027541999, + 0.01328344, + 0.037206903, + 0.004997416, + 0.0027019132, + -0.02883928, + 0.0015459374, + 0.0114480825, + -0.0050209668, + -0.013355804, + 0.0038481161, + -0.01495043, + -0.01980439, + 0.008300535, + -0.012654314, + 0.020236665, + -0.04300319, + -0.013728697, + 0.0043205116, + 0.02219685, + -0.021174204, + -0.0073874206, + 0.01872916, + 0.013558352, + -0.01931373, + 0.024131693, + -0.008175982, + -0.0066161747, + 0.0070575373, + -0.014331019, + -0.020318255, + -0.0044049523, + -0.013038718, + -0.009834034, + 0.0019455297, + 0.0039058405, + 0.008213571, + -0.02516168, + -0.02554906, + -0.014341828, + -0.0032211666, + -0.016778078, + -0.012687752, + 0.0140412375, + -0.020721318, + -0.0071885115, + 0.006289598, + -0.0040373364, + 0.007953033, + 0.006018045, + -0.00338678, + 0.022774274, + -0.015368662, + -0.015933286, + -0.0027368027, + -5.366463E-4, + -0.012941531, + -0.01190161, + -0.007817096, + 0.018177712, + 0.004093185, + 0.010991027, + -0.021498185, + -0.0057603125, + 0.013165744, + -0.013386484, + -0.016414428, + 0.008412061, + 0.014366256, + 0.024084218, + -0.021455035, + 0.010734979, + -0.011236624, + 0.023402298, + 0.017131515, + -0.018681193, + 0.013607356, + -0.01896232, + -0.0016298571, + -0.0036074768, + -0.0039478997, + 0.022077015, + 0.014419138, + 0.031000972, + 0.0059120986, + 0.004986894, + -0.0031151995, + -0.003581335, + -0.015237443, + -0.022730485, + -0.0032076708, + 0.007153279, + 0.004756331, + 0.002977929, + 0.0051912046, + 0.02401269, + 0.015394483, + -0.0071864016, + -0.006580393, + 0.009314164, + 0.01003737, + -0.018838488, + -0.028980972, + -0.0029367898, + -0.007958133, + -0.015571348, + 0.014941139, + 0.008724145, + -5.9671424E-5, + -0.02590246, + -0.0015273183, + -0.028691154, + 0.019082392, + 0.03251269, + -0.0022140348, + 0.013101432, + 0.014392594, + -0.0025831896, + -0.007732372, + -0.0063724667, + 2.472279E-4, + -0.010744963, + 0.0045095957, + -0.0050173304, + 0.0050378977, + -0.023788147, + -0.015269834, + -0.015802622, + 0.010500408, + -0.01265254, + -0.005845505, + -0.016085949, + -7.622006E-5, + 0.005938756, + -0.033012893, + 0.021455048, + 0.011518801, + -0.012294222, + -0.009886293, + 0.003017347, + 0.012385228, + -0.04876386, + -0.016115734, + 0.010259341, + -0.0036802413, + -0.020520406, + 0.003206211, + -0.030860856, + -0.015090879, + 0.019096756, + 9.78952E-4, + 0.010410665, + 0.017447794, + -0.008143328, + -0.016133394, + 0.0019343825, + 0.0014900108, + -0.0112892715, + 0.016212594, + 0.009215839, + -0.008705163, + -0.008079291, + -0.027775876, + 0.027492935, + 0.012025398, + -0.0036199368, + -0.014651924, + 0.013571012, + -0.024161957, + -0.003762335, + 0.033708278, + 3.305072E-4, + -0.0031597295, + -0.010720531, + 0.014322859, + 0.0012577052, + 0.020082103, + 0.015032598, + -0.005029513, + -0.0050698305, + -0.007633654, + 0.005780247, + -0.02919025, + -0.011673768, + -0.02792597, + -0.013448127, + 0.022542553, + -0.0072696046, + 0.009100035, + -0.0013294533, + -0.0030968818, + -0.0054983175, + -0.0019085996, + 0.0021860353, + -2.2324572E-4, + 0.00905259, + -0.0042510843, + 0.025079956, + 0.015720783, + -0.019187516, + 0.02260094, + -0.00420395, + -0.008455242, + -0.002552613, + 0.014971004, + -0.013933548, + 0.03233585, + -0.0024239267, + 0.007511214, + -0.00622799, + -0.006536521, + -0.04038998, + -0.0122819245, + -0.018638924, + 8.2049205E-4, + 0.009741302, + 3.8319832E-4, + -0.008956061, + 0.011015077, + 0.0020420037, + -0.008484398, + 0.007363965, + 0.021987375, + 0.011200787, + 0.017194912, + 0.008999392, + 0.011871741, + -0.006351353, + 0.003730236, + -0.014087656, + -0.0064245486, + -0.012486998, + -0.028600106, + -0.011791659, + 0.013595597, + -0.009628948, + -0.006854433, + 0.012487787, + 0.026987825, + 0.0070330855, + 0.028258935, + 0.008947677, + 0.020836154, + 2.7657396E-4, + -0.010189824, + -0.0018844495, + 0.0082695, + -0.0063844738, + -0.004035891, + -0.016342124, + -0.0019408339, + -0.009925122, + 0.008967557, + 0.009721097, + -0.014943532, + -0.015321754, + -0.0042606127, + 0.01307024, + 0.01694835, + -0.019159148, + -0.006396159, + -0.012294184, + 0.013848583, + 0.005688213, + -0.010680849, + -0.030584237, + 0.02632972, + -0.01450452, + 0.0073505524, + 0.023062062, + -0.012954865, + -0.027570492, + -0.0038995338, + 0.014757854, + 0.008682322, + 0.0061859135, + -0.019589975, + -0.04269913, + 0.018130397, + -0.020173054, + -0.028643334, + -0.026867408, + 0.00790501, + 0.006011023, + 0.005010469, + 0.03398802, + -0.018880935, + 0.0029639585, + 0.018674789, + 0.012350775, + -0.02658565, + -0.004709298, + -0.0019766367, + 0.024593905, + -0.002105033, + -0.014292735, + -1.3437854E-4, + 0.023505544, + 0.03714632, + 0.002412467, + -0.012073727, + -0.009337734, + -0.02416064, + 0.015452409, + -9.939511E-4, + 0.013845502, + 0.0065858024, + 0.028591812, + 0.010858175, + 0.019938586, + -0.0020418372, + 0.01670668, + -0.0102508, + 0.016165122, + 0.004053168, + 0.0056682075, + 0.007433374, + -0.0069781286, + 0.021160545, + -0.0041203834, + 0.02942797, + 0.024164613, + -0.015121987, + -0.0041074054, + 0.008284679, + -0.024834497, + 0.01615817, + -0.024995381, + 0.0025010395, + 2.8043587E-4, + 0.0071601206, + 0.002788292, + 0.027748428, + -0.011384242, + -0.010295854, + 0.008947275, + 0.012776052, + -0.006486335, + 0.0053017605, + 0.017121898, + -0.038676355, + -0.029032655, + -0.017847294, + -0.01679058, + -0.010451373, + 0.038631015, + -0.007908132, + -0.0064746747, + -0.018603526, + -0.017080909, + 0.007530254, + 0.010091704, + -0.014739379, + -0.017307311, + -0.0069501456, + -0.03144177, + -0.007502359, + 8.834883E-5, + 0.025394233, + -0.004138371, + -0.006004949, + 0.025528181, + -0.02069513, + -0.019429954, + -0.004384855, + 0.0334575, + 8.643931E-4, + 0.0050001754, + 0.0049384497, + -0.0070931334, + -0.034821182, + 0.02691182, + -0.014701918, + -0.008634183, + -0.0079533355, + 0.027567564, + 0.006055567, + 0.011943824, + -0.006057707, + 0.015727388, + -0.02531179, + -5.5543456E-4, + -0.0028966244, + 0.0040115896, + -0.0028550972, + -0.02753706, + -0.013409704, + 9.525098E-5, + -0.012894541, + 0.03336587, + 0.011653478, + -0.009446316, + -0.02791655, + 0.010340279, + -0.013649032, + 0.0055098403, + 0.015059997, + -0.0035896604, + 0.0119601395, + -8.9465483E-4, + -0.001036613, + 0.0045452453, + 0.0010952519, + 0.014503204, + -0.009050811, + 0.014270251, + 0.010291142, + -0.008625421, + -0.01201759, + -0.018959623, + -7.0013566E-4, + 0.01760595, + -0.006008897, + 0.013471266, + 3.4401633E-4, + -0.005067802, + -0.0016409967, + 0.0021307138, + -0.019210095, + -0.0011522832, + -0.0025441858, + -0.017609933, + -0.011873392, + 0.0030340734, + 0.011024929, + -0.0021607343, + 0.0074101603, + 0.015307825, + -0.010906978, + 0.010801009, + -0.0069376724, + 0.0014616008, + -0.029294996, + 0.0138935195, + -0.005466734, + 0.003056476, + -0.0012098058, + 0.007139886, + -0.033086732, + -0.009283019, + -0.0013036096, + 0.010328508, + 0.0133404415, + 0.018657856, + -0.02186062, + -4.0680363E-5, + -0.012731976, + 0.0059173284, + -0.0033122206, + 0.024562014, + -9.015874E-4, + 0.0116254445, + -0.016007364, + 0.021913797, + 0.008055766, + 0.026939409, + -9.360512E-5, + -0.008167389, + -0.019308273, + -0.007118065, + 0.014454826, + 0.004232243, + 0.01670992, + 0.03922695, + -0.008877925, + 0.022789981, + 0.005491469, + 0.0032422817, + -0.014915569, + -0.00187025, + 0.001462088, + 0.020559706, + 0.012048296, + -0.005041538, + -0.0078681335, + 0.014994398, + -0.029407147, + 0.0014199661, + 0.019160355, + -0.017174419, + -0.005496498, + 0.0107016945, + 0.006866921, + -0.009303213, + -0.027550291, + 0.015784496, + -0.01630404, + -0.021825021, + 0.014718945, + 0.010731238, + -0.01179742, + -0.0052776644, + 0.021753587, + -0.0055523384, + 0.044014033, + -0.007936111, + 0.009605614, + 0.001369793, + -0.010713496, + 0.019055864, + -0.010747043, + -0.027368525, + -0.009259769, + -0.01919705, + -0.029743263, + 0.0021850858, + -0.015931444, + -0.005639789, + 0.01456347, + 0.0072684027, + 0.008979812, + 6.691454E-4, + -0.0050428463, + 0.005261287, + 2.1989693E-4, + 0.010626303, + -2.5159159E-6, + -0.029432666, + 0.016893981, + 0.03163903, + 0.0194083, + 0.008622118, + 0.013271092, + -0.012434571, + -0.006981607, + 0.034955464, + -0.015795361, + 0.004291111, + -0.0061158403, + -0.008416127, + -0.021825926, + 0.009889414, + -5.889724E-4, + 0.018114397, + 0.0046964483, + 0.0063052094, + -0.0048510754, + -0.0036804886, + -0.018401021, + 0.008016018, + -0.024618013, + 0.0018387097, + 6.2403106E-4, + -0.0041430406, + -0.007200509, + -0.013190694, + -0.0026949274, + 0.025308903, + 0.0015061954, + 0.017439857, + -0.009303252, + 0.027274355, + -0.012072261, + -0.024097, + -0.013963477, + 0.005174732, + 0.003078775, + -0.02669933, + 9.723372E-4, + -0.0113151185, + -0.017804146, + -0.011380476, + 0.002613399, + -0.014229025, + -0.019808194, + -0.03453597, + -0.02096894, + 0.019695692, + 0.010652597, + 0.0023242268, + 0.0053732977, + -0.017294643, + 0.013999652, + -0.015671063, + 0.0066087227, + -0.0064282166, + -0.010689771, + 8.5447147E-4, + -0.023246884, + 0.013775897, + -0.005627052, + -0.0036288933, + -0.01911556, + 0.008309743, + -0.026986498, + -6.0064846E-4, + 0.007892248, + 0.015557356, + 0.0037324035, + 0.0034683647, + -0.0059698955, + -0.00188482, + -0.011544104, + -0.008117033, + -0.012018492, + 0.013661606, + 0.010762194, + 0.017486202, + -0.0030054566, + 0.021065785, + -0.007331146, + 0.00893813, + -0.013738966, + 3.3263984E-4, + 0.0070737856, + -0.023470461, + -0.013476418, + -0.0034450013, + -0.015981214, + 0.0017067239, + -0.0029149628, + 0.020579223, + -0.004195269, + -0.023252182, + -0.0032593294, + 0.0037885236, + 0.0050415345, + 0.0074114, + -0.015884036, + 0.0013039041, + -0.04203727, + 0.006257271, + -0.0048470856, + 0.0017760798, + 0.006840004, + 0.003947793, + 0.014275529, + 0.0040366086, + 0.007785831, + -0.005633851, + 0.008788411, + 0.012019666, + -0.024621852, + 0.009426837, + 0.0032359364, + -4.340533E-4, + 0.015268333, + -0.011187748, + -0.0082748495, + -0.0045766016, + 0.014715918, + 0.004847597, + -0.0065482273, + 0.019572807, + -0.018031426, + 0.014175798, + 0.039315823, + -0.0016549818, + 4.2348923E-4, + 0.016358575, + -0.007912274, + 0.018235348, + 0.008885349, + -0.022605876, + 0.0075723804, + 0.025881475, + -0.016340258, + 0.0016260741, + 0.011726859, + 0.014690785, + 0.03610966, + -0.0076404107, + -0.0014732997, + 0.017426785, + 0.0017102916, + 0.01996636, + 0.017711442, + -0.02313563, + -0.006943386, + 0.0111145945, + 3.7311696E-4, + 0.002558761, + -0.018620823, + -0.010998034, + -0.003528777, + -0.0036031725, + 0.003456592, + 0.023327526, + 7.400396E-4, + 0.010680919, + 0.013406084, + 0.011097715, + -0.014914691, + -0.024894662, + -0.039039113, + -0.011992915, + 0.0053480584, + 0.0063786446, + -0.03467028, + -0.036065925, + -0.015766228, + -0.011065496, + -0.01660346, + 0.015566492, + -0.013426984, + 0.02801816, + -0.017474728, + -0.006144188, + -0.00458925, + 0.028878968, + -0.0011357678, + 0.001957773, + 0.0173968, + -0.026194077, + -0.0041255476, + 0.0069017787, + 0.0062688254, + 0.018787526, + 0.0033072557, + 0.025138699, + -0.0034784423, + 0.0153812785, + -0.013532362, + 0.010725855, + -0.0079357615, + 0.005752016, + -3.84531E-4, + -0.023910431, + 0.003075147, + -0.02101325, + -0.0016695164, + 0.008599806, + -0.024215218, + -0.010930928, + 7.2522316E-4, + 0.005209189, + 0.014360283, + 0.03169705, + 0.020983618, + 0.007092708, + -0.025224185, + -3.7898927E-4, + 0.031916097, + -0.014345767, + -0.008354736, + 0.017263522, + 0.018712204, + 0.017153546, + -0.019893985, + 0.011975442, + -0.02702298, + 0.0041843783, + -0.0036512131, + -0.008756071, + 0.02038965, + -0.013262109, + 5.09597E-5, + 0.01530679, + -0.022021778, + 0.007948415, + 5.6858815E-4, + 0.0023947924, + -0.025027633, + -0.0025131314, + 0.025867503, + 0.0032116137, + -0.0032013801, + 0.0025900984, + 0.014418596, + 6.8279874E-4, + -0.018264076, + -0.0046242746, + 0.02452641, + -0.022657245, + 0.029333169, + -0.04099385, + 0.012482506, + 0.020971324, + -0.004916245, + 0.0053247516, + -0.0069756717, + 0.021878006, + -0.01703475, + 0.0049204617, + -0.018081047, + -0.030826138, + -0.018694628, + 0.02343403, + -0.013188159, + 0.006166304, + -0.014446313, + -0.021558437, + -0.005020238, + -0.01259918, + -0.010048139, + -0.006148898, + -0.018520737, + -0.005299858, + 9.084691E-4, + 0.020883085, + 0.02646795, + 0.020978646, + -0.0050444496, + -0.018898426, + -0.0056577655, + -0.022159135, + -0.006229749, + 0.018210765, + -0.00695525, + 0.0035257083, + -0.0046669426, + 0.013407013, + -0.013682174, + -0.00473718, + 0.025144178, + -0.026083516, + 0.030255506, + 0.013633757, + 0.0024779416, + -0.012400942, + -0.0019800712, + 0.011520392, + 0.022649618, + -0.004549487, + -0.004717211, + -0.0234455, + -0.020676794, + 1.6265882E-4, + -0.0048631513, + 0.005623227, + 0.00730499, + -0.01713196, + 0.0011567323, + 0.013520051, + -0.006107723, + 0.011612763, + 0.026544238, + 0.013089517, + 0.009727036, + -0.0075591365, + -0.0014543328, + 0.020312915, + 0.0011904286, + 0.0032254015, + -0.0048440853, + 0.033799242, + 0.0085896505, + 0.0038297982, + -0.019118972, + 0.009734403, + 0.011847865, + -0.016743468, + -0.013693155, + 0.032658815, + -9.694617E-4, + 0.007713115, + 0.012153974, + 0.0033311038, + 0.034303926, + 0.011888132, + -0.0018651013, + 3.315612E-4, + 0.013221631, + -0.021574892, + -0.0049364967, + 7.6775014E-4, + -0.01530066, + 0.011592006, + 0.0045445906, + -0.012037524, + -0.012525408, + 0.029165858, + 0.0070229466, + 0.006379723, + -0.020220922, + -0.0042034015, + -0.02677659, + -0.024821445, + -0.016631361, + -0.014641571, + 0.015007329, + 0.021644676, + 0.0013269774, + 0.014632718, + -0.017399851, + -0.01164251, + 0.016454574, + 0.00230048, + 0.004755445, + -0.018525947, + -0.0039991876, + 0.005865059, + -0.006324598, + 0.0036081923, + 0.026130367, + 5.516628E-4, + -0.024865143, + 0.021532482, + -7.533783E-4, + -0.014320998, + 0.0018307006, + -0.0063010417, + 0.005145341, + 0.007315678, + -0.0052150437, + -0.0040416108, + 0.0033324058, + -0.008894988, + -0.0024276597, + 0.014964807, + 0.0019124459, + 0.029910604, + 2.9676664E-4, + 0.015017686, + 0.023698537, + -0.0069971685, + 0.011673903, + 0.01802286, + -0.001028312, + -0.01283555, + -0.0064576543, + 0.0035797474, + 0.020340927, + 0.009418294, + 0.015214775, + 0.032038286, + -0.0042331363, + -0.0067582475, + 0.009851668, + 0.016569225, + -0.033837248, + 0.033406224, + 0.022663265, + 0.023030432, + -0.031888157, + -0.009767638, + 0.008119362, + 0.005781284, + -0.015553719, + 0.018300066, + 0.0112061575, + 0.0011407651, + 0.008660466, + 0.034252632, + 0.006610694, + -0.033815086, + -0.0025013871, + 0.0054753944, + 0.004835445, + -0.004492187, + -0.02562869, + 0.0037672606, + -0.010599342, + 0.014659242, + 0.0059576323, + -0.0019898445, + -0.015070204, + -0.006903391, + -0.0063942135, + -0.013625417, + 0.008715188, + 8.815854E-4, + -0.005981496, + 1.2123119E-4, + 0.006408965, + -0.00229388, + -0.008654226, + 0.0072203265, + -0.006189786, + -0.009168378, + 0.021888351, + 0.01816448, + -0.0064838477, + -0.036505405, + -0.008946444, + 0.013314777, + 0.021960642, + -0.0046400926, + -0.0066318824, + 0.0020998113, + 0.006094128, + -0.027519895, + 0.018598635, + 0.030570127, + 0.011526447, + 0.031546112, + -0.022201266, + 0.014335515, + 0.00496094, + -0.010623275, + -0.027972516, + -0.00702116, + -0.0012928663, + 0.0073321103, + -0.0076569994, + -0.0028030814, + 0.0010738537, + -0.00923112, + -0.013087202, + -0.01964365, + -0.009031513, + 0.021493345, + 0.013504489, + 0.0072409334, + -0.022597566, + 0.012831957, + 0.01586554, + -0.0011938105, + -0.025714602, + -6.970914E-4, + 0.009581739, + -0.0032224448, + -0.010532631, + 0.03910569, + 0.0012530314, + -0.0039948174, + 0.016560929, + 0.00977009, + 0.012358586, + 0.015847776, + -0.0030808803, + 0.035146818, + -0.0076221735, + -0.0013199593, + 0.009491406, + -0.011556915, + 0.02126906, + 0.009367205, + -0.014678685, + -0.015820898, + 0.020714812, + 0.03852164, + -0.02258108, + 0.0034210607, + -0.019361448, + 0.021519165, + -0.019516952, + -0.02855925, + -0.029392315, + -0.011756438, + 0.003156784, + 8.9660485E-4, + -0.0026762935, + -6.7072094E-4, + 0.0029851226, + -0.009974954, + -0.022277499, + 0.011404612, + 0.032780033, + -0.012046204, + 0.028378397, + -0.014835837, + 0.017251266, + 0.0047368603, + 0.017631896, + -0.0052690194, + -0.0027575004, + -0.021603007, + 0.004304498, + -0.019341234, + -0.007258037, + 0.020602668, + -0.0056731277, + 0.014219502, + 0.015517739, + 0.015439518, + 0.013614137, + 0.013240152, + -0.02001495, + -0.008864231, + 0.0042938297, + -0.017906366, + -0.017820502, + -0.02284937, + -0.016879858, + 0.015878316, + -0.022465607, + 0.004402458, + -8.319697E-4, + -0.0096939495, + -0.019263845, + 0.020818222, + -0.005628382, + 0.0051796236, + 0.020799585, + -0.012752725, + 0.0061446824, + 0.017206365, + 0.009189753, + 0.011113409, + -0.004572435, + -0.004354879, + 0.02173238, + -0.006838738, + -0.004024818, + -0.025206916, + -0.0037838598, + 0.003931403, + 0.014717501, + 0.0327864, + 0.020155536, + -0.002924998, + 0.0014557013, + 0.004714617, + 0.019874413, + 0.007775873, + 0.006588379, + 0.009687313, + -0.01435337, + 0.0046250736, + -0.0071259122, + -0.003627624, + 0.0072200736, + 0.0064897384, + 0.018794274 ], - "paletteEmbedding": [ - -0.016566806, -0.009802661, 0.021407021, -0.012189993, 0.034732793, - 0.029665783, 0.010217426, 0.019328274, 0.036477953, -0.038518883, - -0.06910178, 0.010640737, 0.05216712, -0.0524348, -0.011573253, - -0.009150977, 0.026101975, 0.03255949, 0.03047892, 0.016257934, - -0.002240681, 0.006107183, 0.031929236, 0.008927594, -0.0032746843, - -0.0048685134, -0.0352912, -0.023450362, 0.041239727, -0.059991043, - -0.03547189, 0.014235812, -0.038786434, -0.0064480007, 0.021095367, - -0.025243256, -0.06536233, 0.011284236, 0.0062890407, -0.026928393, - 0.0046265093, 0.017482636, -0.03579991, -0.013330443, -0.030231291, - -0.019935062, 0.0056466633, 0.019202655, -0.0019966546, -0.0058182944, - 0.03679215, -0.0016990851, 0.047131874, 0.031287808, -0.009527178, - 0.057920214, 0.0035879759, 0.0064244154, 0.019462647, 0.050843965, - -0.06626998, 0.005618263, 0.046643212, -0.02044767, 0.015074074, - -0.01369513, 0.018094692, -0.03877243, -0.038198993, -0.01333082, - -0.01882777, -0.015223969, -0.022869699, 0.02408481, -0.025520341, - -0.019946268, -0.011495722, 0.022248019, 0.0015065031, 0.027573744, - 0.013178208, 0.00895659, 0.046426985, -0.022870116, 0.04185303, - 0.0018745037, -0.038955074, 0.026372831, -0.0236752, 0.07158392, - 0.028462682, 0.021219892, 0.03669188, 0.044637993, 0.0075138565, - -0.012146112, -0.051125914, -0.026699234, 0.016971154, 0.033548016, - -0.032123763, -0.043175843, 0.0022030468, 0.0034042764, 0.008109492, - 0.030874856, 0.0053082756, -0.023994181, -0.019544061, 0.009899454, - 0.03913604, 0.01799001, -0.012472618, -0.0016556898, -0.027014364, - 0.023971383, -0.020127287, 0.022288034, -0.03929863, -0.041056182, - -0.025529629, -0.056432586, -0.027980123, -0.022663916, -0.013167601, - -0.037569877, -0.04963539, -0.061982404, 0.021155767, -0.0032227698, - -0.023479505, -0.056454208, -0.008894133, 0.046138227, 0.014080041, - 0.0074057262, -0.034719806, 0.05572466, 0.026991514, -0.009235278, - -0.001530789, -0.029313033, 0.019927539, 0.006036849, 0.026449304, - -0.011927877, 0.02150082, -0.064101085, 0.046201553, -0.012096913, - 0.008003071, 0.02371623, 0.02615147, 8.993178e-4, -0.010015362, - 8.84133e-4, 0.001149144, -0.04658157, 0.008813063, 0.030085616, - 0.015431844, 0.0065647108, -0.019617438, 0.04378108, -0.0032674372, - -0.05224322, -0.026463771, -0.004138627, -0.0017085203, 0.0022602838, - -0.0034209432, 0.022349646, 0.007343749, -0.047543082, 0.022690626, - -0.0058075264, 0.0012534084, -0.011883488, 0.010161339, -0.02614556, - 0.009791996, -0.037784737, -0.050942928, 0.031618927, -0.050718885, - -0.028887233, 0.045355044, 0.0050938586, -0.009155598, 0.024987673, - 0.015345868, -0.035884727, -0.032838117, 0.0020934325, -0.021112658, - -0.009048669, -0.0238549, 0.034291863, -0.025138594, 0.043787792, - 0.055969242, 0.03221835, -0.027122937, -0.029520597, -0.026511192, - -0.02314931, -0.0034201765, -0.006415457, -0.051924985, 0.0058272495, - 0.033857264, 0.025655597, -0.04638677, 0.010781695, 0.016400253, - 0.004331979, 0.021252979, 0.13713112, -0.024762858, 0.0158877, - 0.019185483, -0.033225335, 0.0061750896, 0.00714978, -0.042884994, - -0.0198708, 0.036128942, -0.010347294, 0.009613192, -0.036679707, - -0.036296334, 0.03876591, -0.04516838, -9.824951e-4, 0.029738601, - 0.011117226, -0.006063552, 0.06114998, -0.044764496, -0.013163787, - 0.034541477, -0.07421769, 0.028018987, 0.018009137, 0.020904439, - -0.07557171, 0.021750376, 0.040070646, -0.053958293, -0.043302655, - 0.06926395, -0.016604865, 0.026704647, 0.022710396, -0.04784435, - -0.02398288, 0.032687403, 0.02706034, 0.033821158, 0.023054712, - 0.031033453, 0.010011703, 0.014280895, 0.011005037, -0.018182995, - 4.0797197e-4, -0.07502605, 0.0037703523, -0.009324087, -0.024713155, - 0.048669975, -0.040329468, 0.06126594, -0.035370782, 0.041961275, - 0.023041794, -0.0012467857, 0.0039126566, 0.042691346, 0.01573199, - 0.03585958, -0.015878696, -0.006980008, -0.05647178, -0.057461184, - -0.020031102, 0.01836034, 0.05332326, -0.043989744, -0.0131316455, - -0.039278764, 0.006826638, -0.010747489, 0.02826678, 0.030838137, - 0.0035149255, 0.0053252657, 0.0053552664, 0.011785544, -0.02612304, - 0.02247844, 0.04525898, -0.006698305, 0.002151191, -0.030089878, - 0.041897196, -0.024769174, 0.021446176, -0.01743417, 0.019093815, - 0.012416037, 0.0075813085, -0.017005064, -0.04815078, 0.04683374, - -0.072381504, -0.036769524, -0.047687765, 0.028600957, -0.01620896, - -0.014452906, 0.0027361524, -0.017095894, 0.0061196405, -0.04073703, - -0.037709646, -0.013544265, 0.031463522, 0.0027093529, 0.017470375, - -0.010410838, -0.016572801, 0.02540057, 0.013096467, -0.009126657, - -0.004570843, 0.05390833, -0.03464728, 0.0038976076, 0.034174737, - 0.07099125, 0.079894505, -0.0746345, -0.030113496, 0.0413787, - 0.04370631, -0.022133874, 0.0151806595, 0.020363772, 0.0024924772, - 0.04464517, 0.02393236, -0.041379128, 0.015110918, -0.019918047, - 0.03879737, -0.017517542, 0.0071464484, -0.026926056, -0.004756658, - -0.06210246, 0.0029611182, -0.016946528, 0.056546703, 0.037752267, - -0.043620497, 0.039772503, 0.0130076725, -0.053934302, -0.013014944, - 0.039630726, 0.018192045, 0.03793346, -0.023524655, -0.0011362324, - -0.008490443, -0.011054839, -0.01683561, -0.019215591, 0.04198431, - -0.057446886, 0.039420087, -0.0034350874, -0.022624174, -0.009275782, - -0.025886074, 0.052449197, -0.016083833, 0.0018136337, 0.03984507, - -0.058492206, 0.009396718, -0.09028605, 0.001799481, 0.066723056, - 0.018246489, -0.0194385, -0.0067928215, -0.02215136, -0.019621037, - 0.04652499, -0.0014956606, 0.010681703, 0.0024963305, 0.021833844, - -0.025148986, -0.027504386, 0.007504419, 0.01992796, 0.0125467405, - 0.042244535, 0.010214813, -0.032536782, 0.05382601, 0.043482557, - -0.026976354, -0.0025351797, 0.019464754, 0.03257805, 0.008189408, - 0.032954846, -0.03990959, -0.0047761775, -0.009176033, -0.03310623, - 0.013051027, -0.009824162, -0.08683909, -0.023913, 0.043625247, - 0.05474497, 0.016270759, 0.0128045045, 0.006111976, 0.020395147, - 0.06626834, -0.0025768627, 0.011278999, -8.9400547e-4, 0.012742712, - 0.0052750837, -0.0082327, 0.056862697, 0.05002838, -0.0054338253, - -0.035484105, 0.06854438, 0.011859911, -0.04470155, -0.0057210503, - 0.0017039311, 0.0030068653, 0.035317704, -0.009201548, 0.024869226, - 0.045416795, 0.022206988, 0.05907991, 0.011960935, -0.046127904, - -0.054876853, 0.024360385, 0.012600463, 0.053779382, 0.039692417, - -0.0056161783, -0.052103702, -0.033904213, 0.06786624, -0.036109414, - -0.022812955, -0.004086171, -0.009433198, -0.026031325, -0.0057519134, - -0.004811801, -5.987169e-4, -0.02839101, 0.031216407, 0.02257903, - -0.014699403, 0.026783403, -0.01700621, -0.02827304, 0.040961, - -0.024524547, 2.9897148e-5, -0.01771616, 0.013973123, 0.06503985, - -0.0073125362, -0.0023289495, -0.002432929, -0.025231054, 0.0018133885, - 0.011607004, 0.04583008, -0.008730152, -0.018703548, -0.009092214, - -0.002606286, -0.04845973, 0.016566861, -0.042992588, 0.0063947295, - 0.025735792, 0.026293773, 0.008589952, -0.012867394, -0.026379768, - -0.01539337, 0.008662237, -0.007097403, -0.023168815, 0.057145182, - 0.033173233, -0.0065911086, 0.039479595, -0.015869869, -0.015799645, - -0.07123025, -0.02384246, -0.043068323, 0.006342741, -0.014733059, - 0.07540287, -0.014674103, 0.033188444, -0.0071214875, -0.009698857, - -0.059121408, 0.020112282, -0.013430024, 0.032046136, -0.030885415, - 0.0021510525, -0.0015551136, -0.059052896, -0.012540753, 0.022776978, - -0.08268511, 0.007564511, 0.010158347, 0.0461848, -0.0030542947, - 0.03728177, 0.019955773, 0.029339643, -0.02733284, 0.030626718, - 0.00618181, 0.01959603, 0.006465586, -0.00978671, 0.029292524, - -0.03228539, 0.0012873234, -0.040492915, -0.036949396, 0.040491574, - 0.015548541, -0.028273463, -0.03438906, 6.545061e-4, -0.004650357, - 0.033974364, -0.042116288, -0.01050048, 0.02584953, -0.008129156, - -0.023391083, -0.010142575, 0.0056072017, 0.035037696, -0.022793725, - 0.03448558, 0.019768413, -0.022406388, 0.0051741903, 0.057702508, - -0.028149653, -0.028852683, -0.024189724, 0.017090872, -0.01456867, - -0.017521134, -0.034142323, 0.03615278, 0.019574892, 0.013248901, - -0.02879006, 0.009659252, 0.023396641, -0.0020668209, -0.02521624, - 0.021021534, 0.030467663, 0.018884398, 0.031876676, -0.01177479, - -4.0143618e-4, 0.028431123, -0.004515312, 0.03957999, 0.014519171, - -0.0093579795, 0.004876017, -0.0077821272, 0.02369594, -0.048043508, - 0.010410841, -0.008820265, -0.013198903, -1.3764056e-4, -1.8057514e-4, - 0.014963899, -0.020210309, -0.03799342, 0.023412406, 0.012763174, - 0.027460122, 0.03044616, -0.0026028906, 0.008301127, -0.063879505, - -0.016342752, 0.01653559, 0.010676079, 0.007404253, -0.0675817, - -0.04143917, 0.07354548, 0.039989512, 0.07586827, -0.06417484, - -0.037094034, 0.012872776, -0.0014764972, -0.026410442, 0.013538408, - 0.007680554, 0.030816207, -0.013207779, 0.011168438, -0.007986891, - 0.017797671, -0.011531919, 0.020258019, -0.007677012, -0.014277316, - -0.021237839, -0.03600627, -0.005398442, -0.05497718, -0.01761481, - -0.016727969, 0.013243225, -0.017897712, 0.00405335, -0.014668017, - -0.07251223, 0.0071981573, -7.344628e-4, 0.04170102, -5.946233e-4, - 0.016821474, 0.04467891, 0.016666546, -0.029400373, 0.028801821, - -0.010925659, 1.0581265e-4, 0.010849157, -0.019204658, 0.010522299, - -0.01706238, 0.019532716, 0.012944388, -0.04222358, 0.03546966, - -0.033547964, 0.006959106, 0.034588948, 0.016299589, 0.0031489749, - -0.0019995223, 0.043375835, -0.054988332, -0.057424802, 0.0036802571, - 0.0040037497, 0.013363965, -0.051343888, 0.0029608868, 0.05448492, - 0.05485255, -0.010457213, 0.014315399, -0.041681606, 0.08061883, - 0.0028646383, -0.028452406, -0.0045577935, -0.022317013, 0.10323484, - -0.008967559, -0.012504702, 0.027440213, 0.006477693, 0.03063496, - 0.0083738845, 0.0064691347, -0.014237036, 0.027599977, -0.024682034, - 0.018230084, -0.018218374, 0.035913583, -0.02088112, -0.0073604356, - 0.0033715642, -0.007910474, 0.0042606294, 0.022317182, 0.028142495, - 0.015355374, -0.01877124, -0.011590527, -0.034138154, 0.042016402, - -0.051089156, -0.012502157, 0.03357476, -0.0025451377, -0.019092586, - 0.03854198, -0.020125395, -0.0133978585, 0.040251814, 0.040998522, - -0.010397184, -0.046350375, -0.001494613, 0.005474609, -0.010123731, - 0.020652736, -0.02061379, -0.0485264, -0.049092937, -0.06726995, - -0.016959067, -0.005102192, 0.018611478, -0.016171945, 0.05932494, - 0.04251909, -0.03277743, 1.5778994e-4, -0.018107582, 0.08606833, - -0.074022084, 0.05741747, 0.03846218, -0.02068404, -0.0445176, - 0.014959251, -0.016526867, 0.028269734, -0.010163957, -0.0093301395, - 0.0064124656, -0.067669354, -0.020388078, -0.060022056, 0.0076123443, - 0.035393007, -0.0014925057, -0.010275406, -0.015143568, -0.023037648, - -0.0036855994, 0.038636584, 0.027645633, -0.026882434, 0.010909186, - -0.025355563, 0.01111362, -0.019441506, -0.0054011643, -0.0068489783, - 0.06704417, 0.03552504, 0.054948658, 0.05708305, 0.019656006, - 0.026966609, -0.0155902095, -0.04314176, -5.205426e-4, 0.014565191, - 0.011005592, 0.027572466, -0.020805655, -0.012542709, -0.03283169, - -0.013261272, -0.060178023, 0.011913054, -0.02927538, 0.022152962, - -0.005048, -0.013492781, 0.05093246, 0.008743338, 0.109815404, - -0.029994346, 0.032288544, 0.045770474, -0.024430992, -0.017785944, - 0.007627195, -0.010704523, 0.046792697, 0.035230126, -0.022567702, - -0.003921627, -0.03276637, 0.011579099, 0.006048114, 0.010598998, - 0.029710868, -0.015464555, 0.056156944, -0.05419251, 3.5112596e-4, - 0.07126723, 0.041468184, 0.052710816, 0.06907683, 0.008869509, - -0.03940748, 0.0048642377, 0.0069182706, 0.005004438, 0.020317202, - -0.002053436, -0.01603872, 0.016586099, -3.6516992e-4, 0.026253758, - 0.009164398, -3.1952545e-4, 0.008423533, 0.013762709, 0.010887964, - 0.01990276, 0.016461095, 0.02199458, 0.03653854, 0.081544325, - -0.0058034644, 0.054793917, -0.013679065, 0.007520118, 0.006310847, - -0.011626529, -0.02717561, 0.009365822, -0.04908902, -0.010646033, - -0.026467169, 0.0036589382, -0.0026424532, -0.013201283, 0.027064972, - 0.023853926, -0.008354612, -0.005952681, 0.009081649, 0.016586369, - -0.034679696, 2.707067e-4, 0.033970695, 0.056599338, 0.03209654, - 0.007163408, 0.04183994, 0.049461517, -0.01051821, -0.027633699, - 0.050577335, -0.004177999, -0.0706253, 0.055497132, 0.0139004355, - 0.021761075, 0.013494554, 0.0026858938, 0.02242892, 0.055877946, - 0.080238625, -0.031469587, -0.033019416, -0.025687214, 0.03492651, - 0.027452635, 0.020050569, 0.020089418, 0.028829377, -0.017741576, - 0.031663783, -0.023054538, -0.026351945, 0.06238733, -0.019576529, - -0.025720904, -0.0072200475, 0.007730365, -1.617182e-4, 0.037197337, - 0.023793925, 0.0072057107, 0.06347773, 0.048282787, -0.048736505, - 0.08611546, 0.02269781, -0.017245287, 0.02237982, 0.0025528898, - -0.024988608, 0.054013647, 0.01660655, -0.004192117, -0.019657021, - -0.0060970075, 0.016483316, -0.003900128, 0.00575858, 0.003005797, - -0.03325378, 0.07185785, -0.06583126, 0.0024940975, -0.0010913714, - 0.01810148, -9.622369e-4, 0.014585112, -0.01605543, -0.025412591, - -0.008057006, 0.013036136, -0.011280468, -0.008339381, -0.027882615, - 0.048343547, -0.02729817, -0.050276887, 0.014089849, -0.015357928, - 0.0029937692, -0.026359523, 0.015960993, 0.030175088, 0.017582282, - -0.016703092, 0.011701717, 0.042645615, 0.03227985, -0.01449323, - 0.030275736, -0.017585458, -0.009039111, 0.041542742, -0.044529743, - -0.020944666, 0.10038941, 0.041062012, 0.004784152, -0.06792133, - 0.030775256, -0.007429343, 0.0069352193, 0.06773507, 0.013708799, - -0.02719276, -0.0043258322, -0.0059730415, -7.870643e-4, -0.01146331, - 0.03357232, 0.02841985, 0.024761701, -0.04351656, 0.028711451, - -0.022396985, -0.013224912, -0.0056448965, 0.045664195, -0.034641303 + "paletteEmbedding" : [ + 0.038086556, + 0.0054109017, + 0.024496745, + 0.01652866, + 0.03694591, + 0.01624203, + 0.01684398, + 0.0013074087, + 0.029662427, + 0.012295807, + -0.013229823, + -0.037571143, + -0.008119775, + -0.057743713, + 0.027504208, + -0.003831283, + 0.056429215, + 6.1393046E-5, + -0.032493237, + -0.022831053, + 0.02083263, + 0.014297925, + -0.02985334, + -0.028448073, + 0.058760636, + 0.044207774, + -0.0014355116, + 0.02380252, + 0.019134853, + 0.01777615, + 0.0022502611, + 0.023896698, + 0.038700815, + -0.010129773, + -0.02955645, + -0.03256409, + -0.0069337706, + 0.03471578, + -0.02013307, + 0.019189974, + -0.01701787, + -0.010861459, + 0.0442497, + 0.019766573, + -0.010683334, + 0.0026651658, + -0.012118943, + 0.0045686895, + -0.016691327, + -0.006225132, + 0.023466969, + -0.0039889887, + 0.0063931723, + -0.022927323, + 0.014904811, + -0.0013817983, + 0.041928887, + -0.0070504253, + 0.014697501, + 0.041191835, + 0.035425257, + -0.020612169, + 0.033765525, + 0.026140904, + 0.0013326027, + -0.03406869, + -0.00815688, + 0.010834193, + 0.038995195, + 0.029203812, + 0.026220853, + -0.066723324, + 0.010987427, + -0.010073274, + -0.029966917, + -0.0222067, + -0.05107583, + 0.020007284, + 0.028297447, + 0.023169132, + -0.030505477, + -0.03807757, + 0.023375565, + -0.02882052, + -0.0024543935, + -0.027842594, + 0.030111674, + 0.010300562, + -0.09021035, + 0.01679607, + -0.01050529, + -0.038513415, + -0.049372952, + 0.011074611, + -0.0034163187, + -0.03134896, + 0.039062113, + -0.004424953, + 0.05821186, + 0.014757317, + 0.052962687, + 0.02555846, + -0.033717223, + 1.1924213E-4, + 0.03643679, + -0.013289871, + 0.005585428, + 0.039738335, + 0.047379375, + -0.02749797, + -0.058499895, + -0.009605062, + -0.05411038, + 0.0046039075, + -6.7075726E-4, + -0.01637428, + -0.030116092, + -0.030596375, + -0.01156331, + 0.056704924, + 0.016404705, + 0.042547088, + 0.005943603, + -0.010441618, + -0.016326465, + -4.5669533E-4, + 1.9048233E-4, + -0.037307415, + -0.0033047926, + -0.00945988, + 0.029894153, + -0.044000737, + -0.033467513, + -0.028142735, + 0.04840563, + -0.014417865, + -0.03317386, + -0.015981779, + -9.828238E-4, + 0.016189866, + 0.027223513, + -0.053906325, + 0.05827004, + -0.03919542, + 0.012981444, + 0.020614058, + 0.011306658, + -0.032481395, + 0.04120259, + 0.014301905, + -0.048132304, + -0.026387336, + 0.060650975, + -0.02688534, + -0.009470694, + -0.029107431, + 0.023048501, + 0.056200743, + 0.10105363, + -0.044679463, + -0.021332774, + -0.0017020295, + 0.02954378, + -0.0043749367, + 0.003319357, + 0.027817925, + 0.03456334, + -0.040588215, + 0.05251297, + -0.008904531, + -0.018253535, + -0.015372169, + -0.03939205, + 0.0059599765, + 0.0103986235, + 0.008024092, + -0.06225467, + 0.038653072, + -0.011064576, + 0.0045941314, + 0.07098236, + 0.07271759, + 0.01858314, + 0.025857152, + 0.009046137, + 0.03509556, + 0.07107031, + 0.0097391745, + -0.019021882, + 0.03450935, + 0.022995448, + -0.025835559, + 0.0077122147, + -0.003695965, + 0.049203597, + -0.026555713, + 0.00408293, + -0.020378012, + -0.037243966, + 0.053678356, + -0.02381785, + 0.0023377975, + 0.00679799, + -0.04166246, + 0.022894768, + 0.061390575, + -0.030017741, + 0.005506886, + -0.02237979, + -0.009974105, + -0.032147814, + -0.008681159, + -0.03526763, + -0.013760106, + 0.046875313, + 0.048965182, + 0.047082398, + 0.019861227, + 0.03988493, + -0.01167827, + 0.004954734, + -0.051496007, + -0.0076216743, + 0.0057762805, + 0.014001536, + 0.0052861283, + -0.013716558, + 0.03997126, + -0.009854859, + 0.010298987, + 0.04102148, + 0.015427366, + -0.0073671164, + 0.026953142, + -0.028787004, + -0.012817107, + -0.035497934, + -0.02325402, + -0.051520623, + -0.027469346, + -0.054170802, + -0.017670246, + -0.033416823, + -0.008670107, + 0.023045711, + -0.039818447, + -0.0064108684, + -0.01860218, + 0.0108217355, + 0.0025155703, + 0.0033477528, + 0.043681208, + 0.018192977, + 0.0053468924, + -0.05726469, + 0.029811341, + 0.002654167, + -0.016542505, + 0.05616862, + 0.032264188, + -0.037955318, + 0.057100374, + 0.034041073, + -0.03270832, + -0.043913238, + 0.010909546, + 0.041266043, + 0.010826141, + 0.008410328, + -0.033968046, + 0.0016736264, + -3.9546154E-4, + 0.03149643, + -0.01612807, + -0.029833242, + -0.120051526, + 0.003947327, + -0.0117213875, + 0.035922784, + 0.048006907, + 0.005429243, + -0.008939579, + -0.028011048, + 0.009915381, + -0.014721804, + -0.02524147, + -0.0355545, + 0.018629432, + -0.01171158, + -0.027469074, + -0.0050737145, + -0.037658174, + 0.012816292, + 0.02174245, + -0.02561717, + -0.01989048, + -0.041094463, + 0.049723808, + -0.03967906, + -0.001301047, + -0.007511915, + 0.04405121, + 0.012590739, + 0.03127614, + -0.020151721, + -0.03230134, + 0.024353025, + 0.029274184, + -0.001762952, + 0.030182097, + -0.013197588, + 0.012603745, + 0.041848373, + -0.03319051, + 0.020641537, + -0.018603733, + 0.076038614, + -0.012651752, + -0.0067516356, + -0.009147396, + -0.0019367067, + 0.02000691, + -0.013056573, + -0.015913758, + -0.021722447, + -0.023560997, + 0.011675502, + 0.013177175, + 0.040993948, + -0.015503704, + -0.011383653, + -0.0039964486, + 0.038805485, + 0.023273474, + 0.023579594, + 0.056590866, + 0.040303543, + -0.032030687, + 0.07319744, + -0.009042768, + -0.010987415, + 0.0057786177, + 0.05637736, + -0.039035413, + 0.02583195, + 0.014651856, + -0.027493086, + -0.013387054, + 0.051344033, + 0.07122598, + 0.02459251, + -1.9691778E-4, + -0.014134511, + 0.04466935, + 0.030687192, + 0.014499321, + 0.029601997, + 0.004401913, + -0.023829779, + 0.024137583, + 0.010426873, + 0.029039275, + -0.02177619, + -0.031474546, + -0.054773577, + -0.02483958, + 0.04063372, + 0.062562965, + 0.067103066, + -8.197547E-5, + 0.031156983, + 0.03729657, + 0.0067304904, + 0.047621686, + -0.017363425, + 0.0047775204, + 0.0070080203, + 0.006623065, + -0.02574358, + 0.02018282, + -0.019570231, + 0.02729222, + 0.026576819, + 0.046626475, + 0.05441173, + 0.011800981, + -0.0360945, + 0.023511868, + -0.0059986003, + 0.021795122, + 0.031340007, + 0.03940902, + 0.041088283, + 0.051214583, + -0.06610286, + -0.03747242, + 0.043244254, + 0.038768448, + -0.0109133115, + -0.03612229, + 0.059240635, + -0.02301823, + -0.05317078, + 0.028955227, + 0.015247422, + 0.01165182, + 0.02311856, + -0.020339279, + -0.02964876, + -0.002584449, + -0.058276825, + -0.010142261, + -0.008905672, + -0.027641498, + -0.015529869, + -0.027654853, + -0.026469612, + 0.013834625, + -0.015081591, + 0.022160081, + 0.0025040729, + -0.014689444, + -0.014293863, + -0.0049498244, + -0.043149248, + 0.001599881, + 0.06628523, + -0.021986663, + -0.017973116, + 0.05703202, + 0.07174237, + -0.0044601765, + -0.009032372, + -0.015369549, + 0.0213816, + 0.021611264, + 0.028124865, + -0.057390828, + 0.029609928, + 0.023670321, + -0.023398535, + -0.048155863, + -0.012722883, + -0.02055555, + 0.0038213937, + -0.038993265, + 0.041193355, + 0.025859628, + 0.009450045, + 0.06527509, + 0.018323762, + 0.02299679, + -0.012156349, + -0.053915117, + -0.009042942, + 0.040932555, + 0.036423158, + -0.034758728, + 0.07793846, + -0.014233182, + -0.059082605, + 0.041602664, + -0.062328964, + 0.01571211, + -3.1126133E-4, + 0.005538523, + -0.01708668, + -0.01767514, + -0.010475553, + 0.05519202, + -0.0051333364, + 0.025193155, + 0.004943835, + 0.024932256, + -0.022289308, + -0.052091274, + 0.060305588, + -0.044962958, + 0.002322414, + -0.004552973, + -0.036127813, + 0.029788861, + 0.03810817, + 0.0077612777, + -0.025886942, + 0.006730074, + 0.022428732, + -0.0573318, + -0.00604046, + 0.01882757, + -0.07426132, + -0.05975783, + 0.05136738, + 0.0042388025, + -0.032819226, + 0.033085577, + -0.023795191, + 0.0125101, + 0.010071321, + 0.086204685, + -0.0017333318, + -4.089979E-4, + 0.04469471, + 0.043433778, + -0.017822726, + -0.0017467574, + -0.033168606, + 0.0115952715, + -0.033925418, + -0.009342624, + 0.015901865, + 0.026333427, + 0.0019364834, + -0.030339811, + 0.028156243, + -0.037988544, + -0.00321905, + 0.04109409, + 0.0012059733, + 0.01785289, + -0.018316314, + -0.02192666, + -0.058322284, + -0.09391697, + -0.04231613, + 0.011431697, + 0.07708164, + 0.021343913, + -0.030007288, + -0.052453693, + 0.025287852, + 0.06004946, + 0.054622397, + -0.04334941, + -0.013223709, + 0.0024613247, + 0.008682201, + 0.009822084, + 0.014435769, + 0.0018663381, + 0.018370965, + 0.029670928, + -0.06739153, + -0.007433258, + 0.0723932, + 0.033329334, + -0.055057954, + -0.0670162, + 0.0443274, + -0.03169909, + 0.04294492, + 0.032829426, + -0.0379357, + -0.01627346, + 0.028417733, + -0.021876926, + 0.035441432, + 0.04377355, + 0.026053632, + -0.021859815, + 0.024233384, + 0.006591403, + 0.005469206, + 0.026275806, + -0.019938534, + 0.008915777, + 0.042731013, + -0.030153248, + 0.014248584, + -0.0024084393, + 0.03971764, + 0.01919033, + 0.026948, + -0.059335742, + 0.038997356, + 0.026668375, + -0.010939411, + 0.025732659, + -0.047644768, + 0.0131045515, + -0.01206634, + -0.038112905, + 0.020792395, + -0.011025603, + -0.029019734, + 0.013705665, + -0.007467082, + -0.023746887, + 0.030451898, + -0.020357294, + 0.040804613, + -0.0830733, + -0.023960602, + 0.0029920868, + -0.009125696, + 0.012409042, + 0.04047738, + 0.0037801384, + 0.028601004, + 0.010153943, + -0.0060393703, + 0.0027129254, + -0.0018500913, + -0.023374999, + 0.009799509, + -0.021326415, + -0.010658878, + 0.023930939, + 0.041280903, + -0.021324648, + -0.071294524, + 0.0012217605, + 0.028621687, + 0.015356607, + -0.032421734, + 0.045924626, + 0.038815334, + 7.446852E-4, + -0.041616775, + 0.0024992924, + -0.032934066, + -0.0010051443, + -0.014136495, + 0.01020357, + 0.00252098, + -0.040763654, + 0.06654612, + -0.0147537505, + -0.02208573, + 0.015166375, + -0.023423744, + -0.03537185, + 0.018680807, + -0.038162217, + -0.007960067, + -0.018285621, + -0.027660346, + -0.010891763, + -0.056036882, + 0.0056397156, + -0.021154955, + -0.0019514877, + 0.0012586403, + 0.049315404, + 0.06764242, + -0.04979361, + 0.016168458, + -0.0053145834, + 0.008884633, + -0.016346928, + 0.01088329, + -0.03060267, + -0.0039643794, + 0.0109452875, + 0.039474726, + -0.0044489796, + -0.0053354935, + -0.027843611, + -0.024113908, + 0.03975968, + -2.5534577E-4, + 0.05778881, + 0.037134934, + -0.011912796, + 0.012721201, + -0.010269353, + -0.02301947, + -0.022629956, + -0.0070371344, + -0.09290926, + -0.022396728, + 0.0044070254, + 0.017117992, + 0.030966729, + -0.008658468, + -0.004295025, + -7.2629954E-4, + 0.035877917, + -0.03088082, + -0.037741564, + 0.012207478, + -0.0117615545, + 0.0041182293, + -0.086987466, + 0.011732412, + 0.01124036, + -0.004729379, + 0.018345587, + 0.008621337, + 0.03998398, + -0.04873149, + -0.004183515, + 0.06029666, + -0.034591373, + 0.012569295, + 0.0039473083, + 0.061255857, + -4.0178208E-4, + 0.006950304, + -0.024153605, + 0.0012968193, + 0.029046314, + 0.01640482, + 0.0025501526, + -0.006287887, + 0.039154787, + 0.022800593, + -0.013277818, + 0.0026560759, + 0.011950817, + -0.021813069, + -0.033220764, + 0.024984848, + 0.017067635, + 0.016132018, + -0.005398583, + 0.05515658, + -0.0053933715, + 0.06314449, + 0.022246242, + -0.036574274, + -0.012556038, + 0.0415885, + 0.004051248, + 0.008615073, + -0.036777046, + -0.0067276773, + 0.08003739, + -0.02368443, + 0.012773131, + -0.004421303, + -0.0066531776, + -0.0032769782, + -0.02166974, + -0.06275979, + -0.017282063, + -0.03953476, + -0.028968718, + 0.011664949, + 0.010923166, + -0.033967737, + -0.020285565, + 0.011860276, + -0.062022757, + -0.033079736, + -0.018928237, + -0.0066122403, + -0.017215505, + 0.03856971, + -0.022456242, + -0.026699033, + 0.011756799, + 0.021448579, + 0.025580661, + -0.04407118, + -0.017942635, + 0.009381542, + -0.014897806, + 0.041796204, + 0.037711326, + 0.02012008, + 0.045845617, + 0.0010795356, + -0.008314611, + 0.021238469, + -0.0767092, + 0.027333543, + -0.022693427, + -0.015678395, + -0.0048217536, + -0.040032618, + -0.019261943, + -0.024667244, + -0.025200093, + -0.020919794, + 0.008884193, + -0.011036179, + 0.025980279, + -0.017263537, + -0.016449746, + -0.0038386295, + 0.044673517, + 0.0045019034, + 0.015818285, + -0.030344179, + 0.020510403, + -0.0028978165, + -0.06470312, + -0.019351581, + -0.05357248, + -0.0069453963, + 0.01356901, + -0.07106499, + -0.0038352644, + -1.7074762E-4, + 0.025334114, + 0.008165178, + 0.017859636, + 0.045684926, + 0.036419455, + 0.032058332, + 0.020924436, + -0.0434996, + 0.009376743, + 0.014884209, + -0.047792, + 0.016570866, + 0.020164492, + 0.0017925546, + 0.015913095, + -0.0035758282, + -0.0032234022, + -0.017453529, + -0.016933216, + -0.048890553, + -0.029220909, + -0.01149627, + 0.04433078, + 0.037407428, + 0.010025314, + 0.09537706, + -0.057326492, + 0.0043765777, + -0.008324304, + -0.01028401, + 0.03540567, + 0.0057850536, + 0.040735815, + 0.006577401, + 0.010047986, + 0.03495652, + 0.002597418, + 0.0033025774, + -0.04646992, + 0.06819928, + -0.022270726, + -0.0018986018, + -0.035361614, + -0.0056734122, + -0.027664345, + -0.058513507, + -0.05784441, + 0.0072024534, + -0.043777633, + 1.9366814E-4, + -0.0125989355, + -0.02465804, + -0.021163236, + 0.0065448643, + -0.06819126, + -0.030503258, + 0.03186992, + 0.008571024, + -0.08011084, + 0.016766123, + -0.03945671, + 0.0145481285, + 0.011776813, + 0.023049278, + 0.04073527, + -0.017400216, + -0.050779764, + -0.008442828, + 0.02420189, + -0.03258153, + -0.014579141, + -0.049524937, + 0.020066438, + -0.036145195, + 0.020531002, + -9.871585E-4, + -0.06426429, + -0.016024237, + 0.012842623, + 0.01370981, + -0.016936325, + 0.002918822, + -0.053652573, + -0.040754322, + -0.031480733, + -0.02338312, + -0.025434082, + -0.011977578, + 0.022438766, + -0.023895588, + -0.008729006, + -0.018027775, + -0.02189067, + -0.010723285, + -0.0020998674, + 0.007610326, + 0.009492697, + -0.019712364, + -0.008194474, + 0.017665857, + -0.010862775, + -0.01626131, + 0.008400399, + 0.03555048, + -6.0169754E-4, + 0.004116567, + 0.028667567, + 0.043815356, + -0.00640813, + -7.3708367E-4, + 0.010417315, + 0.012148666, + -0.015790895, + -0.0064783026, + 0.03966875, + 0.003460582, + 0.014376277, + 0.02338375, + -0.016421331, + -0.054796908, + -0.03024767, + 0.01046178, + 0.013023226, + -0.019235741, + -0.03597162, + -0.020780757, + 0.0024590828, + 0.014309963, + -0.03917186, + -0.06286523, + -0.043469265, + -0.05894637, + 0.018415177, + 0.016598435, + -0.0015433831, + -0.03103217, + -0.022910716, + -0.03251804, + -0.031701695, + -0.018616356, + -0.017656077, + -0.04043539, + -0.030590398, + -0.044484694, + -0.02886303, + 0.013950182, + 0.05781872, + -0.002126391, + 0.04352738, + -0.02765156, + 0.010500675, + -0.022701357, + 0.03151014, + -0.01388269, + -0.025710931, + 0.013334054, + 0.017551262, + 0.0060504163, + -0.06556785, + -5.8318593E-4, + -0.017727284, + -0.012671977, + 0.041720312, + 0.015870553, + -0.03075012, + -0.01502509, + -0.016945036, + -0.004716814, + -0.016460253, + 0.03468292, + 4.4994734E-4, + 0.0073153377, + -0.04754392, + -0.024389021, + -0.026913885, + 0.04091575, + -0.030147688, + -0.034119193, + 0.02519213, + -0.04573807, + -0.01551355, + -0.03534086, + 0.09838643, + -0.038540177, + -0.047934245, + -0.0442927, + 0.029531235, + 0.017788608, + -0.023215152, + 0.013573227, + 0.025942575, + 0.0105527975, + -0.03654486, + 0.028542792, + 0.040913567, + -0.008332102, + -0.0069334195, + -0.013741105, + 0.008471377, + -0.008711884, + 0.046243373, + -0.042942148, + 0.03779331, + 0.047368083, + 1.4558487E-4 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.genres.2.json b/common/search/src/test/resources/test_documents/images.genres.2.json index bcdde05b8..b4a2faafe 100644 --- a/common/search/src/test/resources/test_documents/images.genres.2.json +++ b/common/search/src/test/resources/test_documents/images.genres.2.json @@ -1,1365 +1,5273 @@ { - "description": "images with different genres", - "createdAt": "2023-11-21T14:25:43.955777Z", - "id": "kcqsym0i", - "document": { - "modifiedTime": "2006-06-11T06:02:02Z", - "display": { - "id": "kcqsym0i", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different genres", + "createdAt" : "2024-11-14T14:37:56.409135Z", + "id" : "5j2tl5et", + "document" : { + "modifiedTime" : "2050-09-28T06:48:13Z", + "display" : { + "id" : "5j2tl5et", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/DXN.jpg/info.json", - "credit": "Credit line: dQ3VLftk6X", - "linkText": "Link text: feLDYn", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", + "linkText" : "Link text: QKqnpKFmm", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/DXN.jpg/info.json", - "credit": "Credit line: dQ3VLftk6X", - "linkText": "Link text: feLDYn", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", + "linkText" : "Link text: QKqnpKFmm", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#A61128", - "source": { - "id": "kvufnsr9", - "title": "title-xWMYssh27X", - "contributors": [], - "languages": [], - "genres": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#1FA828", + "source" : { + "id" : "nxptdctw", + "title" : "title-IHV2HD3bJD", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ { - "label": "Emu entrepreneurship", - "concepts": [], - "type": "Genre" + "label" : "Emu entrepreneurship", + "concepts" : [ + ], + "type" : "Genre" }, { - "label": "Falcon finances", - "concepts": [], - "type": "Genre" + "label" : "Falcon finances", + "concepts" : [ + ], + "type" : "Genre" }, { - "label": "Carrot counselling", - "concepts": [], - "type": "Genre" + "label" : "Carrot counselling", + "concepts" : [ + ], + "type" : "Genre" } ], - "subjects": [], - "type": "Work" + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "kcqsym0i", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kvufnsr9", - "sourceIdentifier.value": "jvwRXNZSiu", - "identifiers.value": ["jvwRXNZSiu"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-xWMYssh27X" + "query" : { + "id" : "5j2tl5et", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "nxptdctw", + "sourceIdentifier.value" : "mCfQjGql5i", + "identifiers.value" : [ + "mCfQjGql5i" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-IHV2HD3bJD" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ "{\"label\":\"Emu entrepreneurship\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Falcon finances\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label": [] + "source.subjects.label" : [ + ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [ + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ + ], + "source.genres.label" : [ "Emu entrepreneurship", "Falcon finances", "Carrot counselling" ], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.019281106, -0.0102947485, -0.018352024, -0.027277159, 2.2511966e-4, - 0.023441589, 0.002164124, 0.0066388818, -0.0064643626, 0.01508348, - -0.022090815, -0.016633872, -0.02066871, 0.0014423907, 0.020797048, - 0.0012574844, -0.0069011794, 0.0069061685, 0.018647967, 0.010550106, - -0.011131485, -0.017265921, -0.012628217, -0.009554643, 0.018570513, - -0.004525497, -0.006297675, -0.023232015, 0.0022227832, -0.022302218, - 0.0069883373, -0.010861416, 0.024312658, 0.0013043806, 0.010455465, - 0.033512767, -6.7151577e-4, 0.0100483205, -0.03452483, 0.0040497347, - 0.00562421, 0.0016252509, -0.0152966045, -0.02672785, 0.013488609, - -0.00629771, -0.0024691664, 0.023931284, -0.0111757, 0.02195951, - -0.008182018, 7.914176e-4, -0.004831456, -0.007444976, 0.009976411, - 0.014794264, -0.031316753, -0.012703088, -0.0026290107, -0.028622331, - 0.016922388, -0.0054857824, 0.026451454, -0.029131958, -0.0019246364, - 0.010161816, -0.007837443, -0.009867519, -0.0012844058, -0.016651992, - 0.010652543, 0.015337576, -0.026833225, 0.012589285, -0.004250695, - -0.0067065186, -0.005663038, 0.018560711, -0.026326995, -0.015385453, - -0.016596561, 0.032630417, -0.011104607, 0.018824063, 0.030363988, - 0.013729104, -0.015346741, 0.0074032675, -0.0314951, 0.013709362, - -0.015136662, 0.004175125, -0.00723273, 0.0088191535, -0.008901734, - 0.01003633, 0.018811338, 0.031543564, 0.027659718, -0.010102818, - 0.006722289, -0.008122359, -0.0118793445, 0.003081519, 0.021619163, - 0.0015180875, -0.009798511, -0.02571069, 0.0019239302, -0.027286192, - -0.014850421, -0.004514771, 0.017707588, 0.012279468, 0.011907974, - -0.008821781, -0.006914433, -0.013729644, 0.014167898, 0.022885509, - -0.010855654, 0.002083086, -0.020429203, 0.021033557, 0.055410005, - -0.021926852, -0.0014297541, -0.019053059, 0.014947184, 0.019104375, - -0.003023789, -5.139622e-4, -0.008391317, -0.007242043, -0.011609556, - -0.01122854, 0.003014918, -0.017586393, -0.00790786, -0.005182275, - -0.003085266, -0.020232717, 0.0054411534, 0.012924243, -0.03623326, - -0.005004446, -0.011869219, -0.022996351, 0.009066743, 0.0067721815, - -0.0021893843, 0.0051258826, 0.007136758, -0.005017425, -0.006089658, - -0.027222555, 0.015274971, -0.014644435, 8.293549e-4, -0.0016532899, - -0.039195646, -0.02027014, -0.0057800156, -0.017157724, 0.004644266, - 0.006249178, -0.010482461, -0.031994212, 0.008265787, -0.00647305, - 0.022156328, -0.004556903, 0.023532258, 0.008898447, 0.005639069, - -0.0020885814, -0.00837315, -0.006878195, -0.015611014, 0.02483054, - 0.014612086, -0.025064284, -0.015788823, -0.007964546, -6.6407706e-4, - -0.02424226, -0.016461538, 0.0065472755, 8.734668e-4, -0.0074861767, - -0.010011668, -0.02974075, 0.0025139477, -0.009133932, 0.012156964, - -0.02474281, 0.0021391117, -0.022469386, -0.002223183, -0.018843684, - -0.018208766, -0.02626725, 0.01730428, -0.004658662, -0.0027617116, - 0.003469199, -0.009152355, -0.01571849, -0.0061440854, -0.0016836354, - -0.028303599, -0.0025523074, -0.026859501, -0.0019730015, 0.014618014, - -0.0031677373, -0.008202889, -0.004422109, 0.02785739, 0.026204446, - -0.01702721, -0.0027193846, -0.0127340285, -0.011481579, 0.0016307378, - 0.029910045, 0.015449713, 0.023361443, -0.021995055, 0.011504668, - -0.020600023, 0.015257282, 0.010317679, 0.011340647, 0.023885868, - 0.0063393875, 0.0012017355, 0.018924676, -0.018886445, -0.038125616, - 0.010820581, 0.017744608, 0.026576983, 0.0039429953, 0.010028299, - 0.007980202, -0.010551942, 0.0027687154, 8.491043e-4, 0.01842477, - 0.0038334937, -0.025221042, -0.016757809, -0.006899735, 0.033300806, - -0.01761251, -0.0057353005, 0.0124264695, 0.004569844, 0.0061737886, - 0.013587189, -0.01723045, -0.0017546603, -0.0021145388, 0.011750537, - 0.003002603, -0.024746867, 0.025040554, 0.034283612, 0.01892336, - 0.020081913, -0.0075160903, -0.008999584, -0.021029418, 0.0023782528, - 0.013194592, 0.012690375, 0.040753607, -0.004615573, -0.021655228, - -0.005807784, -0.018819619, -0.022894572, -0.014055215, -0.010457832, - 0.019004976, -0.005538827, -0.011095248, 0.014627375, 0.00319426, - -0.019938422, -0.0027647126, -0.011404971, -0.015073851, 0.0046946695, - 0.014872086, -0.008790742, -0.007600059, 0.02536178, -3.9563258e-4, - -0.005784998, 0.016754078, -0.034680024, -0.006925327, 0.034395557, - 0.011091763, 0.016493069, -0.011869599, -0.0014187287, -0.022195913, - -0.0011663623, 0.011940078, -0.021266142, -0.0359223, 0.009372191, - 0.012205164, 0.009892969, 0.026309168, -9.1739214e-4, -0.009971138, - 0.00875563, -0.016029986, 0.0025114648, -0.0018148271, -0.010614482, - 0.0061814324, 0.001472833, 0.03373244, -0.03016152, 0.008339938, - -0.03831557, 0.019427003, 0.001699889, 0.015009766, -0.0027869607, - -0.03150693, 0.0064377035, 0.012144393, 0.006885133, 0.028262582, - -0.009009653, -0.0032170983, 0.029993597, -0.016261283, -0.0021914311, - 0.01753345, 0.00874997, -0.010909496, -0.0035809267, 0.0026930936, - 0.005451561, -0.015721584, 0.0028794112, -0.018444542, -0.0063322573, - 0.036024682, 0.00234464, 7.6451263e-4, -0.01830619, 0.026624165, - 0.016271396, -0.0050755013, -0.019051148, -0.020381372, -0.0051399297, - -0.026335912, -0.012963645, -0.006118469, -0.012792012, 0.009514604, - 0.008321331, -0.01072789, 0.008448629, -0.02051993, -0.016828438, - 0.0113348905, -0.015375587, 0.007136313, 0.009101055, 0.008981575, - 0.0052790698, -0.0032768862, -0.0250317, 0.0064723287, 0.003985966, - -2.9213616e-4, -0.004422764, -0.00871474, 0.0062080785, 0.017993435, - 0.008533413, 0.025054146, 0.008320042, 0.010577982, -5.661258e-4, - -0.010070021, -0.008232723, -5.964397e-4, 0.01087621, -2.8018173e-4, - 0.009412712, 0.0032257922, -0.013115062, -0.016276227, 0.0012676314, - 0.015421954, 0.012451954, 0.019461388, -0.008420952, 0.01832353, - -0.007657612, -0.0096667055, -0.044140637, 0.018054606, -0.01073337, - 0.012081387, 0.009251545, 8.494382e-4, -0.006293453, 0.011528535, - -0.0028120177, 6.801817e-4, -0.020174816, -0.017350093, 0.018567847, - -0.008964532, -0.0096948845, -0.016079128, -0.012896032, -0.021733344, - -0.010240832, 0.011157387, -0.03390245, -0.003613103, -7.876418e-4, - 0.0072692567, 0.016437542, -0.03178378, -0.0027891186, 0.025282219, - 0.008542474, 0.023194948, -0.009976163, -0.017778626, 0.024552763, - 0.009363805, 0.009944519, -0.0077868323, -0.011005781, 0.005376096, - -0.01636331, 0.013259034, 0.0033814714, 0.012005571, 0.006013334, - 0.0038416546, 0.007829811, -0.0063170507, 0.0020052386, 0.015064161, - -0.0060834126, 0.009001741, 0.014267961, -0.0057346546, 0.004549143, - -0.018210895, -0.014868665, 0.021047525, -0.008002618, -0.010799321, - -0.03569479, 0.018384533, -0.0018460794, 0.017202834, 0.0038844317, - 2.2615066e-4, 0.018600432, 0.020280324, 0.019650182, 0.009791854, - -0.008750043, -0.0055036936, 0.009289499, -0.005583477, -0.01981928, - -0.02427281, 0.016820932, 0.0142883975, 0.03813876, -0.01856222, - 0.016481254, -0.027021354, 0.003435517, -0.02595046, 0.0035582592, - 0.0039534396, 0.007032433, -0.010778058, -0.016252778, 0.007835573, - 0.018627884, -0.0074108397, -5.816e-4, -0.023300834, -0.0066350996, - -0.015777817, -0.020703489, -0.02987826, -0.009183184, -0.026124783, - 0.017669253, 4.8359152e-4, 0.013412891, 0.014004182, -0.024002748, - 0.004573984, -0.036706347, 0.003185994, -0.044172216, 0.020995554, - 0.0065475255, 0.012060972, -0.003786361, -0.019048356, -0.03303327, - -0.0036514685, 0.0013739376, 0.003905361, -0.016706655, -0.0021690687, - -0.025582314, 4.039526e-5, 9.166763e-4, -0.008227295, -0.012759299, - -0.0019479224, 0.010089854, 0.028107038, 0.0304466, -0.016634535, - 0.013174401, -0.001978937, -0.013233003, 0.008117694, -0.015529598, - -0.0018794825, 0.022648595, 0.0066309352, 0.005294752, 0.0318441, - -0.0040661385, -0.010631635, -0.02305747, 0.005108294, 0.0056316336, - 0.0037666326, -0.022827348, 0.004066223, -0.017969945, -0.0040903073, - -0.0068101157, 0.024299834, 0.019039225, -0.009676423, -0.010624576, - -0.0091133695, 0.010029285, -0.012431431, 0.020800484, -0.0012423601, - 0.013370236, -0.001705707, -0.013768705, 0.014237371, 0.022992412, - 0.0020318022, -0.012514197, -0.00920826, 0.012867314, -0.02225227, - -0.008385758, 0.02520236, -0.021120874, 0.0036331106, 0.009397134, - -0.017438669, 0.012745152, -0.010440437, -0.015059005, 0.0137056, - -0.0012030702, 0.009736733, -7.639746e-4, 0.0099184485, 0.0050157905, - -0.0075849257, 0.004936577, -0.01245501, -6.57638e-5, -0.0020121492, - 7.657494e-4, 0.022269769, -0.013268961, -0.016924696, 0.010549109, - -0.0038891372, 0.0015902095, -0.0040173684, 0.016982628, -0.008776771, - 0.011184007, -0.01494312, -0.004467728, -0.008191362, 0.01292977, - -0.011284386, 0.026345758, 0.028371954, 0.01586565, -0.0020105117, - -0.0047490913, -0.015204521, -0.0030174165, 0.01611037, 0.019916935, - -0.009050583, 0.010359875, 0.0042746575, 0.009645334, -0.0169432, - 0.017664958, 0.004918942, -0.015118754, -0.0018163123, 2.9717988e-4, - 0.033913683, -0.023092957, 0.019462638, -0.0019986895, -0.006516941, - -0.009299679, -0.0010734003, 0.03592784, 0.0073324908, -0.011667924, - -0.020156853, 0.003930016, -0.023853187, 0.026274534, 0.0018009172, - -0.02863498, 0.0032313769, -0.0077501456, -0.0050947987, -0.05806759, - 0.011556287, -0.008909048, -0.0064231968, -0.00871003, 0.009555446, - -0.031012993, 0.0023497012, -0.039523367, 0.007884146, -0.024987856, - 0.0135087855, 0.0077438056, 0.0319143, -0.011991746, 0.006152931, - 0.015245436, -0.0013269684, -0.01608258, 0.0059475745, 0.039709292, - 0.0039207884, 0.0015536608, -0.0122751845, 0.007609712, -0.00786915, - 0.007712363, -0.021440567, 5.227347e-4, 0.0010375783, -0.0070135286, - 0.02891395, 0.01625478, 0.009496247, 0.0012869596, -0.014212003, - 0.008019032, 0.0225856, -7.485811e-4, 0.012198092, 0.0065029063, - 0.019824931, 0.014333138, -0.011882797, -0.014745144, 0.011798667, - 0.015793128, -0.006196874, 0.003921748, 0.025123898, 0.009746382, - 8.043927e-4, -0.009121432, 0.011289389, -0.0057921917, 0.009978639, - -0.020016698, -0.0028172436, -0.010814834, -0.007006451, -0.0021275291, - -0.019115511, 0.021330116, 0.0056328047, -0.020463167, -0.011160694, - 0.023036413, 0.022555398, 6.346817e-4, 0.0271522, 0.009404886, - -1.8780607e-4, -0.008987313, 1.4839463e-4, 3.4914254e-5, -0.017652633, - 0.0025190662, -0.025212502, 5.810391e-4, -0.008156956, 0.004822422, - -0.0043221554, 0.019635178, 0.001507921, 0.015800947, -0.025502067, - 0.030128084, -1.5802705e-4, -0.027095148, 0.015417585, -0.017940283, - 0.017194219, 0.0058678184, -0.0028661094, -0.019922577, -0.0025111868, - -0.014561801, -0.0022131347, -0.017083382, -0.0129620815, -0.0015347153, - -0.014118767, 0.023498612, -0.0048361965, -0.01237251, -0.009335807, - 0.011486889, 0.018032407, 0.006603675, -0.018580664, -0.0180003, - -0.020537205, 0.024178892, -0.0014685182, -0.008999656, 4.6950427e-5, - 0.0019866808, 0.0044515077, -5.854099e-5, 0.021431264, -0.011077544, - -0.0041792896, 0.027788838, -0.010451866, 0.03919844, -8.128717e-4, - 0.012892026, 0.010004824, -0.0023476894, 0.01702951, 0.016480872, - 0.0023792107, -0.022982126, -0.0046742647, 0.030579403, -0.0124734985, - -0.026860466, 0.0033062364, -0.007956238, 0.029861368, 0.009415193, - -0.011091869, 0.018811706, -0.01154627, -0.03129692, 7.3858e-4, - -0.017370868, -0.0071463375, 0.0066938456, 0.017754769, 0.023146378, - 0.013397703, -0.01560558, -0.011991155, 0.012200663, -0.03229189, - -0.021474436, -0.016859539, -0.016513772, 0.024483837, -7.9000375e-4, - 0.0053123333, 0.018181458, 0.001127529, -0.012609767, 0.0061197467, - -0.0042884266, 0.018319864, 0.03935971, -0.005497455, 0.016019417, - 0.01785795, 0.007672838, -0.02686062, 0.011764981, -0.005692539, - -0.005464595, -0.013794126, -0.025847733, -0.03350504, -0.02536394, - 0.031751785, -0.0046559586, 0.0219508, -0.014880728, -0.012185228, - 0.004533768, -0.0117353685, 0.0016439859, -0.0042635263, -0.008027567, - 0.018797252, 0.004314491, 0.003752652, -0.019904215, -0.015219176, - 0.0024523127, 0.022144366, 0.002873571, 0.009255647, -0.012712796, - -0.030997861, 0.0028907186, -0.008223929, -0.02420276, 0.010241614, - 0.0101110125, 0.018948844, -0.0016923323, 0.01155044, 0.02531687, - 0.022331228, 0.03335973, -0.01075323, -0.0019800721, -0.0059187487, - -5.5745256e-4, 5.948849e-4, -0.0154091, -0.021001577, -0.015800146, - 0.025410531, 0.015532114, 0.023205407, -0.005504224, -0.015283572, - -0.0019740332, 0.014564422, 0.020714529, -0.013058317, 0.012979337, - 0.013114309, 0.0041096685, -0.009773292, 0.0017512593, 0.005763534, - 0.016918298, -3.7009293e-5, -0.0024515651, -0.016707614, -0.009256724, - 0.004408534, -0.031704936, -0.016070748, -0.0012884467, 0.008669015, - -0.01247784, 0.009442746, 0.020571604, -0.007898664, -0.0047336733, - -0.010619472, 0.003249731, -0.0091332495, 0.02103983, -0.015579513, - 0.016790312, 0.0059436047, -0.01054995, 0.01843813, 0.031156281, - -0.023605509, 0.011042587, 0.0059868693, 0.018318105, 0.00830854, - -0.013537704, -0.026049808, 0.013119392, -0.016126337, 0.0134825865, - -0.027753068, -0.016785178, -0.019122839, -0.008164555, 0.019997971, - 0.0019251503, -0.011698339, -0.01903277, -0.009661033, 0.0064601037, - 0.014459413, -0.0024494852, 4.7859928e-4, 0.014508459, 7.2011346e-4, - -0.021320881, -0.009091518, -0.012474424, -2.2270293e-4, 0.013430553, - -0.031140901, -0.025522776, 0.016221926, -0.002632786, -0.010308224, - 0.0021013059, -0.0077092936, 0.004020233, -0.007841598, 0.007903071, - 0.0091481805, 0.00964648, -0.012544854, 0.0037603148, -0.018495806, - -0.0072582713, 0.027153796, 0.0024857586, 0.041976985, -0.005817283, - -0.0059372247, -0.011454199, -0.0041989842, -0.020591713, 0.0085225, - 0.005162446, -0.005871769, 0.017605525, 0.010918383, -0.018969348, - -9.098482e-4, 0.0042267586, -0.026948083, -0.006312181, 0.022084635, - -0.008596875, 0.016621511, -0.019006394, -0.012631546, 0.012917627, - -0.01840745, 0.030541422, 7.046987e-4, -0.020675423, -0.004455177, - -0.002683177, -0.0050476207, 0.013147589, 0.0041972096, -0.028825972, - 0.0017083402, -0.00458098, 0.005699504, -0.033516474, -0.01478704, - 0.0044762027, 0.0071719894, -0.022168145, -0.0067690704, -0.0058701704, - -0.005815359, 0.025386814, -0.012955896, -0.020161357, -0.001493503, - -7.09443e-4, -0.0046421993, -0.02607012, -0.004831771, -0.016733522, - -0.0071199345, -0.011730665, -0.01674455, -0.0010204543, -0.010298669, - -0.027238363, -0.009012157, -0.012167046, 0.022995397, -0.009226947, - 0.019646807, 0.0016635844, 0.017639479, 0.020869736, 0.006210445, - 0.017835818, 0.044602677, -0.0052346736, 9.742513e-4, 0.020140816, - 0.016594106, 0.013365054, 0.03494853, 0.0015745912, 0.021124607, - 0.026073927, -0.008039866, -0.024761701, -0.004783803, 0.0154439425, - 0.034988694, 0.0040134923, 0.021710414, -0.0062188758, -0.016351325, - 0.0018067983, -0.029206729, -0.011915563, 0.002249364, 0.005620883, - -0.005574169, 0.002667943, -0.004956975, -0.0071192808, 0.02125252, - 0.013119567, 0.0013020227, 0.017782697, 0.033414103, -0.009615273, - -0.0011581874, -0.0029833906, 0.003945799, -0.006625818, -0.004987824, - -0.0045602066, -0.02513796, -0.01702457, 0.033678878, 0.018332059, - -0.011244718, 0.0022343025, 0.023149623, 0.007325978, 0.01805639, - -0.004315103, -0.004173527, -0.02972366, 0.0052627963, 0.008477308, - 0.028429313, -6.4817385e-4, 0.02764514, 0.007450898, -0.007953367, - -0.02492661, 0.002506337, -0.0015035437, 0.029546764, -0.038871847, - -0.004659683, 0.007804295, 0.028568601, 0.029734401, -0.003709952, - 0.01646583, 0.0025621078, 0.0014050339, -0.011383077, 0.007841448, - -0.016560908, 0.012538138, -0.002648427, 0.012770699, 0.0074350997, - -0.011839319, -0.0027984113, 0.009034909, -0.0051691807, -0.020092437, - 0.02568414, 0.020113088, 0.025569355, -0.01658892, -0.010373078, - -0.0073803994, 0.0053376327, -0.0031972283, 0.01587766, -0.005367325, - 0.0053269556, -0.012352799, 0.014265701, 0.015735509, 0.022896677, - 0.019654404, 0.033953957, 0.011482943, 0.0060669063, -0.018669704, - -0.003749395, 0.031958953, -0.0031616825, -0.018606689, 0.030723745, - 3.0221556e-5, 0.011232464, -0.0028364696, 0.0017040165, -0.013416481, - -0.033107422, -0.011987703, -0.0343934, 0.02356457, 0.02532628, - -0.017710082, -0.010779501, 0.020152256, -0.026084907, -0.04125316, - 0.011665404, -0.01370065, -0.011353928, -0.033961862, -0.0013661968, - -0.01847188, 0.0028199581, 0.0017568746, 0.008688149, -0.0068479097, - -0.0103738215, -0.0051119514, -0.011633023, -0.00627735, -0.0028041054, - 0.020529458, 0.009234822, -0.006492351, -0.013693278, 0.0041231266, - 0.010477778, 0.012273478, -0.0057961284, 0.0074623837, -0.014926173, - 0.010496381, -0.0037977875, -0.0266454, 0.0068857074, 0.004682275, - 0.021092445, 0.0032766175, 0.010891342, 0.0312572, 0.0071287053, - -0.007422002, 0.009343913, -0.006476483, 0.011433534, 0.015801823, - -0.005775747, -0.008046174, -0.0011965162, -0.00584587, -0.019097269, - -0.0227063, -0.025352834, -0.0014548436, 0.004836309, -0.0146170845, - -0.021835547, -0.011086258, -0.021869086, 0.02487186, -0.0016764671, - 0.0071426155, 0.027277661, 0.0033604836, -0.020939404, -0.024422498, - 0.006263427, -0.011752721, -0.015467167, -0.021361915, -0.011936226, - 0.01288653, 0.010460292, 0.028098004, -0.006804688, -0.013133619, - -0.025909128, 0.01148389, -0.0066474457, -0.0094231395, 0.005858306, - -0.019090177, -0.008438544, -0.015950603, 0.004517479, -0.0046927202, - -0.015670992, -0.007143078, -0.0049164733, 0.02892093, 0.014160926, - -0.020293513, -5.3077046e-4, 0.00375434, -0.021397525, 0.0072486075, - 0.0010623111, 0.028691744, -0.013275734, 0.006004553, 0.011898955, - 0.0053995913, -0.013316116, -0.009119079, -9.17623e-5, 0.004411985, - 0.022133522, -0.008103044, -0.023930121, -0.010327259, 1.7773011e-4, - 0.007930109, -0.002937722, 0.0066841803, 0.03301656, -0.0015006148, - -0.006807183, -0.0048717973, 0.01624098, -6.9415313e-4, -0.0013220522, - 0.0057977056, -0.0020243535, 0.0045378595, -0.012891917, -0.0146619305, - -0.0037474467, 0.015330686, -0.0011129606, -0.004366399, 0.012861949, - 0.006994742, -0.024848575, -0.019765206, 0.0025161149, 0.017068716, - -0.017533535, 0.023040837, -0.005159818, -0.008642344, 0.007914356, - -0.004756089, 0.010298063, 0.006623507, -0.013017444, -0.0030622545, - 0.010336757, 0.023648826, 0.016676735, -0.0151601415, -0.030484175, - 0.036755532, 0.0025004013, -0.013602163, -0.0026589285, -0.0155461915, - 2.0524106e-4, -0.013686079, -0.027697442, -0.02810907, -0.033910207, - 0.018692788, -0.011152058, 0.015853869, -0.0055640144, 0.00745972, - -0.018678218, -0.0035777702, 0.001273049, 0.0062926924, -0.015372469, - -0.020075038, 0.009411202, 0.0048329346, -0.014478066, -0.019935783, - -0.0067425757, -0.0054644276, -0.01005581, 0.020635255, 0.009035677, - 0.025783626, 0.032461844, -0.029995704, 0.010649936, 0.0045805983, - -0.014074654, -0.010368764, 0.0076439576, -5.9074064e-4, -0.016988875, - 0.008681804, -0.006992741, -0.007720104, -0.007930056, -0.008520672, - 0.0073900702, -0.0015230565, -0.010209631, 0.027509524, -0.008990248, - -0.00176738, -0.03152491, 0.005815736, 0.023349635, 0.015613264, - -0.01625708, -0.022337852, -0.0067241057, 6.7670847e-4, 0.0024902462, - 0.00507894, 0.023421647, 0.0030370017, 0.016010478, 0.004189164, - 0.0020999599, 0.009998299, -0.0073181596, -0.037224315, -0.0022667637, - -0.013875465, -0.0033827554, 0.006531806, -0.010459789, 0.026085341, - -0.006052598, -0.0021688128, 0.01705753, -0.013104437, -0.027706265, - -0.024401776, 1.1295453e-4, -0.013933535, -0.0059481952, -0.020785961, - 0.014058572, -0.0066044666, -0.029452411, -0.019799499, 0.008578937, - 0.015908137, -0.0193968, 0.0054761944, -0.001529162, 0.021708619, - -0.0052221688, -0.02445699, 0.0030926964, 0.017182315, -0.012047483, - 0.0010350388, -0.0075652637, 0.0152350385, -0.0040321923, -3.7969075e-4, - 0.019615337, -0.0025776895, -0.036852263, -0.015070504, 0.021165036, - -0.0012865325, -0.0028736747, -0.012507801, -0.01449783, 0.018190978, - 0.003789151, 4.3182724e-4, -0.010821412, 0.024100462, -0.011531131, - 0.019916408, 0.0060793483, -0.014726082, -0.020633306, 0.0014388614, - -0.04785825, -0.012150712, 0.0054791323, -0.013378883, 0.00583052, - 0.0048887758, -0.005065166, 0.006958611, -4.6681875e-5, -0.0070631006, - 0.004434634, 0.00857181, 0.017499728, 0.022991864, -0.0211625, - 8.401341e-4, -0.002918483, -0.015926296, 0.001015535, 0.0015308824, - -0.030942287, -0.031206649, -0.006068811, 0.001315337, 0.02168793, - -0.0011274205, -0.0035134987, -5.8994e-4, 0.022490252, -0.010790352, - -0.01879131, -0.005343053, 0.01618591, -0.008508077, 0.008135692, - -4.1332183e-4, -0.020977434, -0.00126867, -0.0022393067, -0.0051730894, - 0.015351805, 0.0046274527, -0.0142165935, 0.002541338, 0.01089231, - -0.010820686, 0.0011856802, 0.01265954, -0.0014651952, -0.012591591, - -0.0037360922, 0.019457204, 0.025047477, 0.0032543575, -0.0056834477, - 0.040421214, -0.0098643415, -0.015952384, -0.020457722, 0.007860253, - 0.032085653, -0.009923192, 0.014365272, -0.030990414, -0.0042609074, - -0.015981646, 0.005248335, 0.014680366, 9.818944e-4, -0.0031621987, - 0.011897723, 0.0050280895, 0.01035096, -0.0065532266, -0.022464616, - -0.003940327, 0.011548421, -0.046481576, 0.0067939716, -0.007706255, - 0.025410196, -0.012583788, -0.009575, -0.020151787, 0.02101086, - -0.0012813433, 0.0059433086, -0.020130573, 0.016057964, -0.011281423, - 0.008637672, 0.0016083168, -3.8949042e-4, -0.0051918705, 0.008439746, - -0.014374475, -7.2937843e-4, 0.014758843, -0.006644576, -0.0045042466, - -0.0076372926, 0.006140467, 0.022973735, -0.035297148, -0.0051232115, - 0.007346924, 0.025444144, -0.0058747157, 0.008677289, 0.010714701, - -0.0032360973, 0.012982434, -0.011643174, -0.027441375, -0.0014713238, - -0.005291558, -0.01159114, 0.010855567, -0.001435805, 0.05617757, - -0.024815219, 0.013288173, -0.009415934, 0.011230164, -1.3512216e-4, - -0.0057673375, -0.009760648, -0.03015976, -0.0257148, -0.014223322, - -0.021319602, -0.015418805, -0.008053163, -0.010911666, 0.007011745, - -0.033513866, 0.021651914, 0.009429476, -0.008718739, -0.016647926, - -0.004859573, -0.0017108228, 0.03064873, -0.0062897494, -0.012919849, - 0.014699412, 0.009290931, 0.005840374, 0.01457152, 0.008382441, - -0.0025985078, -0.0051956293, 0.013510523, 0.010289121, 0.050780617, - -0.001303969, -0.011133991, 0.034523662, 0.014382151, 0.015926287, - 0.014702004, 0.018203862, 0.005881252, 0.015109154, -0.01302665, - -0.005591788, -0.014562025, 0.0046062064, -0.021285813, -0.011674858, - -3.8564348e-4, -0.0030031009, 0.022925915, 0.019023327, -0.0075084115, - -0.004459973, 0.01208078, 0.0010913955, -0.011269401, -0.03783491, - 0.03218926, 0.013124013, 0.014810116, 0.031508263, -0.028988425, - -0.011560163, -0.0044118054, 0.02315638, -0.009339914, 0.0032995413, - -0.0106911855, -0.028746236, 0.02242075, 0.002600641, 0.00444864, - -0.018472107, 0.018015247, -0.0021420133, 0.029030984, -0.018177131, - -0.027942792, 0.02478946, -0.025319753, 0.03279683, 8.6838513e-4, - 0.004264437, -0.0016600306, -0.01907018, 0.0045745503, 0.025866829, - 0.0042300937, 0.020149566, 0.0027805453, 0.0032150284, -0.013784491, - 0.01402071, 0.028867794, -0.007169436, -0.016665969, -0.002454029, - 0.025842218, -0.016119607, 0.0264428, -0.016561145, 0.00549907, - 0.009017013, -0.0020280187, -0.016886638, 9.0145455e-5, 0.011196942, - 0.025979703, 1.662822e-4, -0.008824067, -0.011003225, 0.005693799, - -0.033049226, -0.026853664, 0.0040108915, -9.4900955e-4, -0.0062094266, - -5.6386495e-4, -0.01918799, -0.0026243157, -0.0033462571, 0.020510675, - 0.004030291, 0.005602762, 0.0021817416, 0.031836245, -0.0035566848, - -0.0117968675, 0.0077525247, 0.007546498, -0.012311561, -0.011400122, - -0.011375874, 0.011984353, -0.011144133, 0.022523697, 0.0055839173, - 0.01014679, -0.0052745948, 0.0051023504, -0.012365959, -0.009279916, - -0.025008194, 0.011691645, 0.0032702708, 0.017834855, 0.0056084553, - 0.002253479, -0.011328776, 0.037076946, 0.023447784, -0.0021746738, - -0.003647316, 0.03493732, -0.011947865, -0.0086166095, 0.013455244, - 0.008410402, -0.013218852, -0.02015362, 0.0052828295, 0.005726772, - -0.01107447, 0.0028858678, 0.024901051, -0.0026639109, 0.015347888, - -0.0026258652, -4.0854388e-4, 0.010043278, 0.017885063, -0.008587677, - -0.029744241, -0.01435615, 0.011761362, -0.027551541, 0.006689635, - -0.03308848, -0.014619682, 0.008275259, -0.0065247244, -0.015992714, - -0.014050612, 0.014163976, 0.014497151, 0.0084069185, 4.4238367e-4, - -0.00396354, 0.017494187, 0.0043531912, -0.0061160396, -0.023043346, - 0.0012208079, 0.016375193, -0.0028067625, 0.00967203, 0.0069776885, - -0.0022762166, 0.005742457, -0.034747906, -0.011615116, 0.036281288, - 0.022807254, 0.011353081, -0.010549687, 0.010483078, 0.015752353, - 0.0037481026, 0.009900139, -0.016935922, -0.0026402825, -0.007540665, - -2.0606276e-4, 0.0055486145, -0.010308009, -0.009558368, 0.012600665, - 0.036995113, 0.010123815, -0.013022375, 0.012629766, -0.00191761, - -0.0062176306, 0.027576454, 0.017892111, 0.008338744, 0.029464532, - -0.021485128, -0.0038377354, -0.0056088483, -0.0013537449, 0.027577557, - 0.0140919555, -0.010063969, 0.017318932, -0.014802149, 0.028349165, - -0.009380714, 0.0058604768, 0.011721571, 0.013172053, 0.004820061, - -0.008905985, 0.02210786, -0.047479622, 0.015999172, -0.0103712985, - -0.0126662655, -0.009582896, 0.003837883, 0.0044365614, 0.007275852, - 0.002400297, 0.019874735, 0.012778959, 0.025493527, -0.013035999, - -0.012032648, 0.01125026, 0.015701052, -0.021622473, -0.0010086669, - -0.005398173, 0.024718555, 0.0053276666, 0.016771628, 0.029492503, - -0.0183147, 0.0014699608, 0.009228427, -0.0013918396, 0.015125331, - 0.0054624807, -7.8981626e-4, 0.0021394053, -0.024815084, -0.005911186, - 0.003705558, 0.0055477256, -0.012587512, 0.0032035904, 9.808337e-4, - -0.018249795, 0.014884933, 0.01523831, -0.014217736, 0.027215632, - 0.0017502401, 0.007410391, -0.0019933064, -0.005724258, -0.01606078, - 0.007469205, 0.033799507, -0.0039435844, 0.008592553, 0.0071892934, - 0.0040291706, 0.009285133, 0.0065040025, 0.01541332, -0.013978651, - -0.009674286, -0.016438551, 0.007859233, -0.02835557, 0.030820357, - -0.015618563, 0.025927031, 0.0017562936, 0.0010807385, -0.0035793863, - 0.010436011, 0.013163659, 0.018500682, -0.008576329, 0.0043338374, - -0.025488779, 0.025016915, -1.1593614e-4, 0.0034221562, 0.0063381293, - -0.0022829329, 0.0019082045, 0.023378644, 0.014571218, -0.0027399636, - 0.026041713, -0.010603967, 0.010513915, -0.0075407582, 0.011066219, - -0.032213327, 0.015033348, -0.0104955025, -0.021493295, 0.013425975, - -0.026518801, 0.014077918, 0.0028596942, -0.008913911, 0.01518061, - 0.021979457, -0.014276064, 0.010039736, -0.0012726731, 0.0023577884, - 0.023822876, -0.030970534, 0.016115922, 7.131791e-4, 0.022802133, - 0.0016910571, 0.028375648, -0.0054636304, 0.017054437, 0.017826756, - -0.013822628, -0.0022669737, -0.00513267, 0.008889166, 0.0031856124, - -0.021543797, -0.0028869396, 0.009221258, 0.008484681, -0.014229787, - 0.013813386, -0.03131496, 1.01366844e-4, 0.0072536636, 0.0022190495, - 0.002849987, -0.006166316, -0.015922658, 0.0016292947, 0.021368222, - -0.046099424, -7.2855136e-4, -0.009350591, -5.6987634e-4, -0.020592507, - -0.0035877568, 0.026131196, 0.00624236, -0.014792945, 0.0073973318, - 0.011053595, 0.03442084, -0.010431054, -0.018851973, 0.009963856, - -0.024449881, 0.003930924, -0.028118802, -0.034761727, 0.0033080585, - 0.031160347, -0.01970837, 0.018002706, 0.0026914738, 0.013093201, - -0.021017466, 0.0021040153, -0.025943251, 0.0011575688, 0.009971388, - 0.010048265, 0.03198462, -0.013772744, -0.012791384, -0.027093243, - 0.014497684, 1.1507376e-4, -0.001969245, -0.028046915, 0.011858737, - 0.013661128, -0.012604253, -0.021780072, -0.013722583, -3.0238042e-4, - -0.012595922, -0.00989566, -0.011618133, -0.035599742, -0.0056396164, - 0.0076107634, 0.005714539, 0.007006365, 0.011484627, -0.0046666083, - -0.011796349, -0.0047664903, -0.011750207, 0.009103408, 0.011906107, - -0.023439905, -0.0041248063, 0.013302974, -0.0072235554, 0.009678999, - 0.0064933035, -0.0050026863, -0.009925984, 0.0028950316, -0.01750396, - 0.011077134, -0.004450117, 0.011246035, -0.00920033, -0.008064798, - 0.004337052, 0.004585653, -0.0242289, -0.02065006, -0.01927353, - 0.010054494, 0.011470821, -0.008293939, -0.0021816918, -0.010434544, - 0.0010069952, 0.021572694, 0.011844042, -0.019555988, -0.008876868, - 0.002003426, -0.0038599614, -0.012229476, 0.002067376, 0.031897373, - 0.010325934, -0.0066799317, 0.0070127216, 0.010788451, 8.028209e-4, - -0.0036781086, -0.007873079, -4.6180634e-4, 0.021545667, -0.010990384, - 0.0042033447, -0.0046454305, -0.010721731, -0.0053578177, 0.015015483, - 0.008337728, 0.0040706107, 0.012781546, 0.010446651, -0.011226347, - 0.035748012, 0.01237553, -0.002533833, 0.0022729172, 0.01774954, - -0.014362065, 0.0028643264, -0.053643566 + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ ], - "features2": [ - -0.019583398, 0.005025873, -0.012817031, 0.01453009, 0.009476473, - -0.0045809364, 0.0047555626, 0.019067133, -0.0057957075, 0.01701907, - -0.017464885, -0.006365494, 0.018295739, 0.0025404764, 0.027090142, - 0.024646198, -0.020729538, 0.004422557, 0.005347639, -0.007882102, - -0.033660974, 0.002213661, 0.012535483, -0.017801266, 0.0025786355, - -0.0035059904, 0.017325195, -0.020925077, 0.022733293, -0.021171622, - 0.011745969, 0.011827435, -0.013478254, -0.018326381, 0.00806253, - 0.0053586457, -0.0032701741, 0.009726768, -0.030347725, 0.023226568, - -0.025683962, 5.3062366e-4, -0.008384717, 0.0011879419, -0.0060978597, - 0.015132055, -0.0013375931, 0.009754826, 0.021105219, 0.0038746302, - -0.0027782037, -0.06023599, -0.030652517, 0.017125191, -0.0061033075, - 0.019282179, 0.016992291, -0.0060120234, -0.0167973, 0.022546662, - 0.014428394, -0.014779267, -0.02012238, 0.015063832, -0.0018791528, - -0.03623915, -0.021932496, 0.0025702515, -0.0044100853, -0.0018040102, - -0.017227484, 0.010977108, 0.0014427918, -9.61679e-4, 0.024262708, - -0.01750024, 9.953496e-4, 0.02817597, 0.009115388, 5.4270113e-5, - 0.029224519, 0.028302409, -0.003985478, -0.019451268, 0.019795379, - -0.023560487, -0.005593534, 0.019045798, 0.01096833, 0.010668697, - 0.014331124, -0.021241654, 0.0015077847, -0.009600543, 0.018591687, - 0.002427324, -0.024132496, -0.009179615, 0.003554419, -0.0060855, - 0.0017176539, -0.020412438, -0.016569179, -0.007889822, -0.011395774, - 0.0027736516, -0.029722033, -0.011221856, -0.013854242, 9.581548e-4, - -0.004311166, -1.8290943e-4, 0.0021944821, 0.011473596, -0.011466553, - 0.0018170574, -0.011385426, 0.014096084, 0.015976293, 0.0038445944, - 0.023801783, -0.012453676, -0.026317284, -0.0010572751, -0.0038059882, - -0.0077675595, 0.00312023, -0.012743703, -0.0025950617, 0.0059288917, - 0.00310882, -1.7212033e-4, 0.028903373, -0.010432179, -0.02263726, - 0.014733019, -0.016863357, -0.014217433, -0.0055868607, 0.014466528, - 0.013960059, -0.008121914, -0.025621608, 0.023217706, -0.03563545, - 0.0046927673, -0.0031623978, -0.010886778, 0.0059783356, -0.025444865, - -0.0032491698, 0.0027013386, -0.011284482, 0.021559333, -0.011552673, - 0.008328371, 0.012786551, 0.0026705775, 0.012093177, 0.022358129, - -0.005721948, 0.02557492, -0.015805107, 0.0038142435, 0.001400004, - -0.030094847, -0.019568045, 0.008095618, 0.020815438, 0.031540636, - -0.025988478, 0.02371257, -0.0032383972, -0.0045090923, -0.015361536, - 0.006865748, -0.0027199257, -0.0013015665, -0.0268149, 0.02356966, - -0.011201761, -0.008380054, -0.0050839637, 0.0068542324, 0.030563267, - -0.027626162, -0.0064332597, 0.0054088165, 0.0071148155, -0.012833369, - 0.0069708275, 0.004861451, -0.020396605, 0.015180199, 0.015805813, - -0.013358606, -0.03061622, -0.016435804, 0.0050713606, -0.014269043, - 0.014859077, 0.015374106, -0.001160084, 0.01497746, 0.022021458, - -0.013179007, 0.025066586, -0.007051772, -0.02827201, -0.0018020844, - 0.008398259, 0.012666535, -0.008260006, 0.0069096037, -0.002887716, - 9.732515e-4, 0.004323946, -0.0238788, 0.016411914, -0.0033254258, - 0.014984424, -0.022139614, 0.03214304, -0.016434645, 0.0018528689, - -0.0020148177, 0.0031931058, 0.017365994, 7.585672e-4, 0.0040753866, - -0.019608907, -0.0033746902, -0.010672927, -0.003735752, 0.0019502521, - 0.019322803, 0.015962716, 0.012742416, 0.0058206003, -0.0042939265, - -0.00341586, -0.0025706391, 0.0017528469, 0.0025552136, 0.018717103, - 0.0028625573, 0.02433736, -0.020615956, -0.012120859, 0.037803307, - 0.013300461, 0.009020988, 0.019341256, 0.013600371, -0.012256857, - -0.008295526, 0.019457247, 0.0075063407, -0.017587088, -0.011347714, - -0.0021007517, 0.007506116, -0.0059245923, -0.0078074937, -0.0039149937, - 0.008654896, -0.0064218184, -0.0049499893, -0.023525035, -0.023962913, - 0.0058805696, 0.0023744446, -0.0039562997, -0.008304747, -0.024093052, - 0.0037254689, -0.005385586, 0.027941037, -0.013261355, -0.006301245, - 0.014527915, -0.036526527, -0.010212244, -0.023420794, 0.0031405834, - 0.021095764, -0.0010970389, 0.0050018956, -0.02705386, -0.024687255, - 0.011298406, 0.0028897645, -0.009373477, 0.01785479, -0.0015407011, - -0.010862943, -0.022503128, 0.008907784, -0.024869606, 0.021626424, - -0.011920634, -0.013192944, 4.7710558e-4, -0.011373583, 0.034624036, - 0.012157186, -0.023652866, -0.022388194, -0.016686846, -0.0065522706, - 0.00257581, 0.018018596, 0.012476551, 0.0034394427, -0.014559095, - 0.0019141907, 0.029281491, -0.0041891993, 0.01042873, 0.0021086358, - -0.010764685, -0.010064215, -0.010164196, -0.019114222, 0.0036424813, - 0.010608507, 0.018491967, -0.008772664, 0.0039134305, 0.030115873, - 0.009141167, 0.020532127, 0.009169614, -0.0013569272, -0.011800856, - -0.014449605, -0.005364548, 0.02160093, 0.009638156, 0.024842137, - 0.002145661, -0.0040228935, 0.035197996, -0.007850537, -0.018177211, - 0.026868025, -0.007681601, 0.012937503, 0.010425198, -0.010873736, - 0.02802708, -0.0075002885, -0.0064067873, -0.031864755, 0.026009178, - 0.013463864, 0.013055643, 0.005376229, -0.008547707, 0.008398747, - -0.018744389, -0.0055812784, -0.006509685, 0.008134774, 0.017991325, - 0.011286025, -0.013437881, -0.0031694535, 0.0023492079, -0.0017064813, - -0.023639152, -0.0038110963, -0.012244452, 8.557086e-5, -0.013941874, - 0.010729831, -0.0052886005, 0.0038693564, -0.008945185, -0.018806826, - 0.0071331793, -0.013164111, 0.0022744301, -0.0063704527, 0.0065617864, - -0.006022989, -0.0071987608, -0.009071498, -4.1595244e-4, -0.010207757, - -0.012653852, 0.015381855, 0.0053689773, 0.021238167, -0.0059142243, - 0.023756329, -0.0063123684, -0.015077555, 5.4073526e-4, 0.0028976293, - 0.011700088, 0.015252498, -0.014254286, -0.022505138, 0.004766159, - -0.0030915865, 0.010154538, -0.0029214532, -0.033981863, 0.02650206, - 0.010985434, -0.0064740498, 0.0041387854, -0.01182474, -0.0075709284, - -0.018778352, 0.0069665965, 0.012998371, -0.02952347, -0.0058921967, - 0.0053495113, 0.0016184514, 0.018142976, -0.0075983275, 0.010998056, - -0.02059273, 0.020157594, 0.024859551, -0.01696611, 2.75169e-4, - 0.02355202, 0.0012563645, -0.013634274, -0.013487553, -0.025928752, - 0.022763707, 0.056655034, 0.019229956, -0.0027345142, 0.0041525974, - 0.022587342, -0.0072559193, 0.018485278, 0.0102185095, -0.013861369, - -0.0067722173, 0.015758323, -0.0041606347, -0.011954032, 3.9549943e-4, - -0.007746927, 0.034742273, -0.030107534, 0.008951324, 0.026149882, - -0.0018034636, 0.0104115745, -0.006681801, -0.0012338841, -0.010182399, - -0.0047915336, -0.0015056209, -9.16971e-4, 0.008140835, -3.376066e-4, - 0.0256368, 0.014224205, -0.004239972, -0.0055544954, 0.0053697713, - 1.246805e-4, 0.00905731, 0.008351456, -0.027344324, -0.01289516, - 0.0049831225, -0.016311329, -0.006116661, -0.026260369, -0.0035747176, - -0.017652504, -0.017562136, 0.022838978, -7.4299634e-4, 0.010693823, - 0.0060435566, 0.022917144, 0.031712826, -0.015420372, -0.018652696, - -9.63651e-4, -0.008248726, -0.013151107, 0.015950002, 0.0037371404, - 0.012735033, -0.024256652, 0.013868781, -2.8245605e-4, 0.00792065, - 0.004846095, 0.016503384, -0.020661948, 0.0035833146, 0.044290382, - 0.019163579, -0.041204367, -0.009257265, 0.02028598, 0.018932631, - 0.016041989, 0.029064622, -0.0066904845, 0.0065618004, -0.014024044, - -0.014182787, -0.03067154, -0.018482223, 0.023627305, 0.017823359, - 0.023382314, -0.015531066, 0.011098334, -0.022390995, -0.008895807, - -0.023392666, -0.023837171, 0.008097212, -0.0043497956, -0.0042407303, - -0.016613495, 0.011183645, -0.0034056106, 0.03253551, 0.029566085, - 0.0039482205, -0.011357753, 0.0010811426, 0.025892282, 0.011956436, - -0.008484584, -0.009172004, -0.0023842216, 0.0013169247, -0.012496213, - 0.0062768436, 0.0058799745, -0.015879378, -0.031909406, 0.019216407, - 0.020378515, 0.0038801942, -0.00558656, 0.010221377, 0.009977109, - 0.0042923414, -0.0062537245, -0.011801242, 0.009821502, -0.01706941, - -0.017047228, 0.008559096, 0.0036852576, 0.005891106, 0.0061167157, - -0.009461224, -0.0019434898, -0.006531529, -0.0023824594, -0.021875536, - 5.646916e-4, 0.015999615, 0.01652492, 0.022224875, 0.0021671688, - -0.021958342, -0.029696029, 0.00810904, -0.008943709, 0.0022780471, - -0.00799868, -0.0019065257, -0.012311319, -0.031317357, -0.009676451, - -0.0075774426, 0.022706196, 0.022020714, 0.0100014, -0.022280041, - -0.0020150014, -0.002102931, 0.004920258, -0.010411964, 0.008592191, - 0.026970575, -0.029423209, -0.00314722, -0.02127855, 0.02192126, - 0.009474519, 0.018144513, 0.007323999, 4.6121317e-4, 0.017231792, - 0.00824697, 0.0052855336, 0.010117171, 0.014672707, 0.0060804896, - -0.007342342, -0.014114467, 0.009555871, -0.007220532, 0.012941925, - -0.027054459, -0.0031715864, -0.0022331327, 0.013808562, -0.017527012, - -0.02526183, -0.017685652, 0.0074465727, -0.0026038254, 0.013582112, - 0.002936274, 4.2414526e-4, 4.281945e-4, -0.011829712, 0.014126099, - -0.017182, -0.0042178226, 0.012429476, 0.041531876, 0.0022450527, - -0.0022367656, -0.0077386512, -0.01335393, 0.017416716, 0.023316326, - 0.007399277, -0.0066822954, -0.016038047, -0.0016625546, -0.0035591093, - -0.00525847, 0.008640737, -0.014079557, 0.022251911, -0.013256631, - 0.0055419737, 0.0058345115, -0.010718842, 0.0063994806, 0.0030159578, - 0.0032008032, 0.004608455, 0.0060924483, -0.020570245, 8.538732e-4, - -0.006504548, -0.010141601, -0.008574805, 0.005881072, 0.0137711335, - 6.053665e-4, 0.0038607714, -0.0122581655, -0.0022134434, 0.01006659, - 0.011421904, 0.0051905345, 0.0065483926, 0.014256617, -0.0037299793, - 0.0048744064, -0.0016271962, -0.016645132, -0.00804092, -0.008200952, - 0.013651293, -0.0034171965, -0.008223441, 0.011939624, 0.01099154, - 0.009645733, 0.009448876, 2.0131665e-4, 0.0043046596, 0.0014431789, - -0.016972138, -0.015856968, -0.005713098, 0.013331905, 2.8461317e-4, - -0.008101982, -0.0018795528, 0.018064901, 0.015743569, 0.01308961, - 0.0043022786, -2.1637611e-4, -0.006332888, 0.0055076545, 0.024301615, - 0.004207699, 0.01815999, 0.006133013, -0.002991675, 0.009210821, - -2.7513586e-4, 0.025036423, -0.010895514, -0.015981417, -0.0028668519, - 0.01222524, -0.031952024, -0.026510734, -0.0029315047, -0.027197214, - 0.022508569, -0.0028745632, -0.0149137415, 0.009328421, 0.0029141302, - 0.023349054, 0.029886547, -0.0036749432, -0.0043577435, 0.023098426, - 0.0022307895, 0.0073987357, 0.020652048, 6.824369e-4, -0.016780188, - -0.006155786, 0.026036184, 0.0092064515, 0.0074701356, -0.018386446, - -0.011758419, -0.0180031, 0.014473996, -0.0027648257, -0.0046631293, - -0.0023905959, -0.003950602, -0.0028386714, 0.0033740546, 0.007291976, - -0.007380381, -0.0039538024, -0.009549447, -0.006813751, 0.013315103, - -0.010618139, -0.010167398, -0.00446611, -0.016809635, -0.012050809, - 0.016232008, 0.0126394965, 0.009831563, -7.1746175e-4, 0.0107246535, - 3.315053e-4, -0.012480999, -0.008942289, 8.974832e-4, 0.015350681, - 0.016242694, 0.0041582272, -0.0024863766, 0.004824901, 0.012876951, - -0.011344836, -0.023716113, -0.0010782316, -0.0041801594, -0.005861594, - 0.011333846, -0.006380301, 0.021995505, -0.02146578, -0.029951695, - -0.004322696, -0.017022913, 0.013499213, 0.0012668176, -0.022849752, - 0.018960457, -0.014635759, 0.0064234515, 0.029890375, 0.009685874, - 0.0081148, 0.02049457, 0.0065550767, -0.027424585, -2.0305146e-4, - -2.6434832e-4, -0.010202983, 0.019961901, 0.024430806, -0.048406094, - -0.023401631, 0.00685192, -0.02081111, 0.0050673205, 0.014650792, - -0.0103822565, 0.0030067754, 0.019693745, 0.014704799, -0.018393982, - -0.011869808, -0.015769545, -0.014495204, 0.004509541, 0.010850204, - -0.0037890996, 0.003366198, 0.007831298, 0.006756961, -0.011200513, - 0.01628578, -0.0070556677, 0.0030599681, -0.003943235, -0.0013377052, - -0.028209398, -0.0089874165, -0.0061197514, -0.0020263277, 0.015655125, - -8.476397e-5, -0.01883081, -0.009416721, -0.02960671, -6.334052e-4, - 0.014634248, -0.008570911, -0.0121363085, 0.024679104, -0.014282431, - -0.03337958, 0.012843828, 0.0025584942, -0.024056654, 0.0010985868, - 0.01162317, -0.021013461, -0.02092563, -0.0045371493, -0.014914076, - -0.02471067, -0.0073894663, -0.016001685, 0.019355873, 0.0129528865, - 0.011834173, 0.025730914, -0.008226344, 0.031136878, 4.864783e-4, - -0.010057344, -0.028828386, 0.014637889, 0.002966372, 0.015003534, - -0.003764203, -0.031658653, 0.026739415, -0.012397922, 0.009995247, - 0.017428184, -0.030240199, 0.0055057164, -0.0037787794, -0.025919195, - 0.022309292, -0.00819923, 0.019239048, 0.005367893, 0.0035100817, - 0.005025282, -0.017133297, 1.6658186e-4, -0.004549301, -0.011098935, - -0.019538617, -0.010325676, -0.009254374, 0.0018238344, -0.017744888, - -0.00782804, 0.040890723, 0.012683538, 0.005586436, -0.01203238, - -0.023675896, 0.018403754, -0.0077876267, -8.22339e-4, 6.883137e-4, - -0.0023853625, 0.020814633, -0.03440629, 0.0065884152, 0.016955651, - 0.0071306657, -0.020391999, 0.024256948, 0.0036828106, -7.5601455e-4, - -0.011938213, 0.020775864, 0.01061136, 0.008551598, 0.0019655437, - -0.032871943, 0.012314648, -0.009560741, -0.00334942, -0.0015268209, - -0.017460221, -0.03185943, 0.015433093, 0.0075888773, -0.01110668, - 0.0016683125, -0.0018659267, -0.011417809, -0.0092416825, -0.02038505, - -0.00547548, -0.017762683, -0.012247797, 0.013840373, -0.005635173, - 0.012903463, 0.038619064, 0.009408855, -0.0049405214, 0.018327657, - -0.029150818, -0.0077269813, -0.012723649, 0.013064047, -0.009233989, - 0.020127904, -0.014973758, -0.0011705642, 0.014505633, -0.010123899, - 0.030317124, -0.017223423, 0.015173226, -0.010075494, -0.017559554, - 0.020716662, 0.025374794, -0.009573842, -0.020419847, 0.03150683, - 0.012411037, -0.0122301495, -0.0062104836, -0.0070487293, -0.01727522, - -0.0014442027, 0.0058010924, -0.012624094, 0.023704834, 0.01759466, - -0.020412188, 0.005096727, 0.019157821, -0.010029956, -0.0064897095, - -0.0037052296, 0.0015866602, -0.00932474, -0.0057454836, 0.0023449503, - -0.0038598387, -0.02020594, -0.017690064, 0.02271255, -0.002666082, - -0.015997058, 0.023718754, -0.0065202457, -0.00969196, 0.02232192, - -0.0050345715, 0.03254985, -0.011175036, 0.0123228235, -0.008482788, - -0.0024219877, 0.007103601, 0.005971418, 0.013565242, 0.03471239, - -0.0025866611, -0.028846102, 0.0027786756, 0.014630301, -0.00263823, - 0.02884396, -0.032736663, 0.018586557, -0.02617151, 0.009883242, - -0.007864391, 0.017932119, -0.015922632, 0.038982637, -0.01814664, - -0.011120592, -0.0060535786, -0.007412823, -0.016653353, -0.0074969307, - -0.007054817, -0.007875085, -0.022293566, 0.008200812, 0.02487273, - -0.002006697, 0.036188938, -0.008190094, 3.6316877e-4, -0.015478519, - 0.012575437, -0.008508566, 0.003863753, 0.012633066, 0.009920151, - -9.0983405e-4, 0.0168959, -0.019340232, -0.017908823, -0.0374153, - 0.013450075, 0.010557772, 0.017801395, 0.0029024754, -0.0042274906, - 0.01391454, -0.0010493938, -0.008950708, -0.01976371, -0.001502368, - -0.009952782, 0.0057194643, -0.012535067, 0.0093012145, 0.0018947771, - -0.024298377, -0.017881831, 0.0136952605, -0.018549573, -0.024398936, - 0.021359757, -0.03865023, 4.6322265e-4, 0.01943307, -0.007656948, - 0.015643198, 0.009276257, -0.013721862, 0.010109793, -0.014769842, - -0.001243579, -0.017290814, 0.026302721, -0.0061566653, -0.0034590086, - -0.01541297, 0.014729544, 0.023421895, -0.03216974, -0.008101246, - 0.0044662296, -0.009501773, 0.007066102, 0.005894909, -0.007700261, - 0.027362179, 6.2053715e-4, -0.0032553885, 0.015252015, -0.028808502, - -0.0043416377, 0.013345934, -0.007966951, -0.013616797, 0.0028156338, - 0.020787418, -0.021228902, -0.009253296, -0.012002853, 0.020725096, - 0.01138425, -0.004016442, 0.009949945, -0.01998782, 0.010763024, - -0.015525957, -0.01023277, 0.016275758, 0.02950872, -0.03562763, - -0.0047508087, 9.4597763e-4, 0.0019383235, -0.009668596, 0.02550792, - -0.006305814, 0.0067291916, 0.0056679077, 0.01657912, 0.015861785, - -0.028272245, 0.013542146, -0.011653656, -5.129215e-4, -0.004736533, - -0.011251213, 0.032677498, -0.010119018, -0.038148094, 0.0059535345, - 0.010940343, -0.0076529547, 0.017847484, -0.0019865849, 0.009647877, - -0.041891538, 0.038679454, 0.005499585, -0.0038348273, 0.015702296, - 0.0035558515, 0.017772714, -0.02013494, -0.0033850784, 0.008075409, - 0.0020427576, 0.007944583, 0.01830984, 0.015628092, 0.02351882, - 0.017719515, 0.0093057975, 0.016099745, 9.3961303e-4, 0.0019078583, - -0.01991253, -0.008736012, 0.0063048354, -3.152022e-4, 0.014894508, - -0.004745505, 8.313072e-4, 0.0037521587, -0.013610429, 0.002771955, - 0.0071093696, 0.007826457, -0.0049099107, 0.008608376, 0.025964452, - 0.010348206, 0.017826827, -0.0039876183, -0.01217644, -0.010705363, - -0.027659668, -0.0103058405, 0.0019280125, -0.008307207, -0.012668863, - -0.004492234, -0.022128118, 0.014993444, 0.014368507, -0.0052606366, - 0.02490915, 0.0012887007, 0.007873641, 0.005119589, -0.004505108, - -0.003850025, 0.011004261, 0.01059119, -0.02367201, -0.02428866, - -0.005854059, -0.005390652, -0.011978433, 0.002696086, -0.021989804, - 0.002278869, -0.01270739, -0.0056293667, 0.0273945, 0.015522696, - -0.0022703945, 0.001054123, 0.018473502, -0.026796453, -0.0039601955, - 0.010170503, -0.014264106, -0.0075966795, -0.006307264, -7.1414927e-4, - 0.037814844, 0.004035104, 0.0017008209, -0.0088508185, -0.001177048, - 0.0114711765, 0.0056629446, 0.019138917, 0.015148686, 0.014911856, - 0.014877997, 0.019467501, 0.021069119, -0.006768796, -0.02593416, - 0.0076486086, 0.0072525605, 0.019582912, 0.011872506, -0.019807627, - 0.012999584, -0.012371645, -0.005372612, -0.0308082, 0.0046048993, - 0.014411232, -0.02634657, 0.0044763996, -0.0032571468, 0.004724511, - 0.010047185, -0.014458329, -0.024774157, 0.008016304, 0.011622175, - -0.001725079, 0.015741788, -0.0012438596, -0.032899242, -0.008232936, - 0.0029246542, -0.013820786, -0.032467872, 0.014756654, 0.0040451116, - -0.0048150555, -0.013494888, 0.013556468, -0.01789622, 0.009260361, - -9.239656e-4, -0.0019904675, -0.012278671, -0.0022034456, -0.014810532, - -0.0014468092, -0.011008868, -0.014240902, 0.019437756, 0.019346638, - 0.020829124, -0.011664435, 0.019938273, 0.021306822, 0.015700452, - -0.0078066024, -0.010481983, -0.008311333, -0.016767304, 0.006811874, - 0.0061997967, -0.015162863, 0.017769588, 0.021517022, 0.0050649066, - -0.029248806, 0.027389824, 7.3520717e-4, -0.008316427, 0.006007646, - -0.022189891, 0.008257636, -0.022778267, 0.009812772, -0.01274398, - -0.006951172, -0.015375354, 0.021370906, 0.036706995, 0.005571058, - 0.012865213, -0.010823424, -0.007886596, 0.010054295, 0.0037720974, - 0.0019592203, 0.015093011, 0.02960822, 0.009979308, -0.0104660215, - 0.004392665, 0.009757477, 0.00793671, -0.006264182, -0.01958577, - 0.0030797154, 0.005294736, -0.047511626, 0.018375115, -0.032778554, - 0.014305191, -0.016553253, -0.010517469, -0.0015006479, 0.008202367, - 0.01018694, 0.0028068847, 0.001867067, -0.015724238, 0.0063437186, - 0.013518703, -0.005775766, 0.008886944, 0.02304099, -0.004370772, - -0.0028592893, -0.02946091, -0.014830394, 0.0046629044, 0.002678983, - -0.023363689, 0.0029668463, -0.016111372, -0.013272687, 0.004691429, - 8.1720314e-4, 0.005260225, -0.037609246, 4.6506923e-4, 0.008085121, - -5.276292e-5, 0.006404877, -0.01722425, 0.020573517, -0.00816919, - 0.0021529526, -0.012446269, 0.020300524, -0.006907905, 0.019620704, - -0.017567841, 1.397047e-4, 0.012441181, -0.012714982, 0.005953724, - -0.002623786, 0.023498604, 0.019590026, -0.0098602595, -1.0870612e-4, - -0.0031946977, 0.01151484, -0.0032678135, 0.028365187, 0.00965397, - -0.012470217, 0.026155077, 0.0036943727, -0.0050711124, 0.03115492, - 0.0058704447, 0.02663298, -0.0053638923, -0.011009818, -0.001751473, - -0.004847197, -0.0025306721, -0.03072456, 0.006668576, 0.002164835, - -0.0047197854, 0.010811839, -0.008081418, -0.0054839947, -0.008363449, - -0.009821813, 0.0035597144, 0.0030535534, 0.010250499, 0.009400438, - 0.022231637, 0.018262953, 0.01989324, 0.014353943, 0.008808316, - 0.0127141215, -0.0061838534, -0.005671062, -0.009300689, -0.0042892033, - -0.01258113, 0.0024523498, 0.02622238, -0.028148185, -0.022957202, - -0.0212473, -0.028708369, 0.015353499, -0.02455863, 7.7601935e-4, - 0.006836037, 0.008863511, -0.011528495, 0.009027087, -0.02617893, - 0.016145464, 0.0026143051, 0.017994536, 0.047904503, -0.008411455, - 0.023953326, -1.1956042e-4, 0.004553103, 0.019465702, 0.006536455, - 0.0017453223, -0.013091678, -0.044829667, -0.013524902, -0.0030117356, - 0.008577027, 7.2260137e-4, -0.020240868, -0.023972953, -0.005726349, - 0.01439799, 0.0014866103, -0.0037595523, 0.028230358, 0.005652454, - -0.039699893, 0.0014987983, 0.021609161, 0.00678601, 0.019381305, - 0.012925883, 0.003491821, 0.0119750835, 0.032776315, 0.009317185, - -0.012557975, 0.0069409665, -0.01014576, -0.0062299687, -0.0076592998, - -0.008486506, -0.03177448, 0.022863952, 0.007309386, -0.03126314, - -0.022268381, -0.0016392977, 0.014415937, 0.0047625345, 0.010082706, - -0.007826196, -0.0012648256, 0.0052410364, -0.010537066, -0.002925535, - -0.026977038, 0.023380222, -0.011368631, -0.027348764, 0.014104358, - -0.01699872, 0.0055916756, 0.012174737, 0.008051876, -0.024840211, - -0.001682692, -0.023930412, -0.013092521, 0.016302746, 0.0032629028, - -0.0022843387, -0.013019861, -0.008240329, 0.005126692, -0.0071943346, - -0.012997999, 0.014423483, 0.008497345, -0.0015709546, 0.004690041, - 9.2642196e-4, -0.005057667, -0.024915444, 0.0024870154, -0.014955243, - 0.0020543407, 0.0045960383, -0.032585125, 0.015827559, -0.02298205, - 0.018153895, -0.0063812863, -0.02666765, 0.029401017, -0.0026502016, - 0.014454268, -0.013722945, 0.0010697137, -0.0132825775, 0.010232625, - 0.016317695, -0.0076686908, 0.010069779, -0.0013579576, 0.00213392, - 0.013551268, -0.0013922254, 0.0061288974, -0.020439409, -0.019163793, - 0.003399454, 0.0021612346, 0.019286476, -0.005104821, -0.014476774, - 0.0061984016, -0.008731786, -0.026425486, 0.015360101, 0.022231301, - 0.001669651, -0.015755124, 0.0016306876, 0.005939091, -0.028504234, - -0.012092421, -0.026500568, 0.013816033, 0.003501498, 0.0122756725, - 0.0023486547, -0.028354773, -0.012505298, 0.0017989025, -0.022208385, - 0.01824073, -6.947587e-4, 0.028728835, 0.009526457, 0.0027651652, - -0.012926236, -0.0019151715, -0.012022098, 0.0053428942, -0.013412284, - 0.010958478, 0.0011792846, -0.009353289, 0.005258889, -0.022770602, - -0.011425206, -0.008573295, -0.0036223964, 0.029585026, -0.0072593144, - -0.013172454, -0.027950957, 5.8268453e-4, -0.025063934, -0.0072596846, - 0.015452409, -0.0011954674, -0.029151617, 0.032877374, -0.008529279, - -0.0119284075, 0.024304176, 0.0064265616, 0.007714188, -6.048544e-4, - 0.0094589945, -0.023805141, 0.007271339, -0.0114864, -0.022066044, - -0.010359864, 0.033560086, -0.007132071, 0.0107619045, 0.011978617, - -0.008784721, 0.029521262, 0.024664389, -0.018168861, -0.023283573, - -0.03141618, -0.0077558085, -0.019638581, -0.011842307, 0.011303914, - -0.0011017346, 0.010763779, 0.012651481, 0.008589381, 0.021372557, - 0.0111829005, -0.00947379, -0.024665272, -0.010488839, -0.0029082636, - -0.006436143, 0.011051899, -0.015397534, -0.033679128, -0.01604184, - -0.005788298, 0.02775041, 0.018861763, 0.020455226, -0.004642751, - 0.009249622, 0.010016236, 0.003855114, -0.011517719, 0.0085523315, - 0.009339813, 0.002500569, 0.0014996793, -0.0011167999, 0.02250451, - -0.009993975, 0.01433751, -0.017456628, -0.014454635, -0.021318113, - -0.007831591, 0.02955013, -0.0049361777, -0.00967098, 0.013995044, - 0.004686329, 0.0100862, -0.010523365, -0.012669168, 0.010996037, - -0.009634118, -0.015359241, -0.0024019817, -6.582358e-4, -0.010769612, - -0.0030650466, 0.0098239565, -7.1481295e-4, 0.018005561, 0.010529402, - 0.00418872, 0.0028830848, 0.013894985, 0.0025710445, 0.003018861, - 0.019090159, 0.019844413, -0.0029018926, 0.0064018406, 0.0072981114, - 0.023583125, -0.019217188, -0.02376659, -0.00894275, -0.018797688, - -0.02123344, -0.020315968, -0.029755281, -9.6639467e-4, 0.012879849, - 0.014279471, -0.019842383, -0.006084334, 0.010564275, -0.008922831, - 0.007684884, -0.0012579169, -0.017791545, 0.0023277712, -0.0019999593, - 0.042694364, 0.030895956, 0.0212967, -0.002839234, 0.0031900224, - -0.006126861, -0.0127331, -0.0021275552, -0.016497888, -0.019137038, - -0.0025562823, -0.03005891, -0.010013855, 0.014233052, 0.015439126, - 0.0074156728, 0.030673465, 0.037462823, 0.021745387, 0.010350004, - -2.7796061e-4, -0.015338105, 0.0012556318, -0.019423896, -0.017192503, - -0.030233279, -0.015427027, 0.03935427, 0.005290437, -0.00132722, - -0.024354588, 0.014299675, 0.020965593, -0.0030596291, -0.011082694, - 0.003258951, -0.015537163, -0.017592229, 0.009967062, -2.2428103e-4, - 0.0035736437, 0.01992518, -0.011336699, -0.018394431, -0.054033745, - -0.014754312, -0.007104572, 0.011965154, -3.091312e-4, -0.0012209634, - 2.2908002e-4, 0.004318149, -0.009243902, 0.0010056205, -0.018962676, - 0.011860167, 9.173605e-4, 0.02398078, -0.0067951456, -0.01357034, - -0.023075914, -6.041499e-4, -7.916557e-4, 0.008408552, -0.018835906, - 0.0017218802, -0.0049336567, 0.00669123, -0.017246895, -0.004377603, - -0.009111738, -0.016743204, 1.5231452e-4, 0.024584813, 0.02357892, - 0.0058125337, 0.0046959496, 0.0020557884, -0.015519114, 0.0049555446, - 0.0039821505, 0.026474517, 0.020431833, 8.6124096e-4, 0.016664565, - 0.003540456, 0.015349783, 0.008822771, 0.019231277, -0.0027120663, - 6.9373363e-4, 0.006221074, -0.0029287927, 0.011514801, -0.011924659, - 0.010404174, -0.0010961039, 0.03309888, 0.008528528, -0.016562562, - -0.0073892046, 0.0041299313, 0.013732901, -0.016452903, 0.0056701684, - -0.009764134, 7.682668e-4, 0.037061676, 0.017653411, 0.019199464, - -0.0058229915, -0.022298591, -0.0055787265, 0.010477859, 0.022217683, - 0.010422817, 0.0049093543, -0.0040628025, -0.021871177, -0.018286115, - -0.0049464866, -0.0059616594, -0.0016959297, 0.015129061, 0.009688598, - 0.016329842, 0.010922697, 0.006098776, 0.018778479, 0.009129451, - 0.007058107, -0.0020942641, -0.032869086, -0.044169925, -0.015338162, - -0.00497609, 0.008021768, 0.011156205, -0.01744765, 0.025226166, - 0.004425064, 0.016328577, -0.0013027762, 3.9939274e-4, -0.0073856064, - 0.01088249, -0.004852117, 0.01180846, 0.010944856, -0.02662349, - -0.0090370225, -0.004242058, -0.004354557, 0.0056559094, -0.010843866, - -0.015791621, -0.0025455554, 0.018913632, 0.013405035, -0.0077668345, - 0.0073106354, -0.028811838, -0.010725262, -0.0021153921, 0.0038346155, - -0.0027129618, 0.0012229417, -0.0069897054, -0.029403713, 0.0076951836, - 0.007993412, -0.018987898, 0.028333293, -0.007214803, -0.0047902022, - -0.0013522499, -0.008735942, 8.751742e-4, 0.03828863, -0.009665935, - -0.020075794, -0.034511313, 0.003064202, -0.010860011, -0.015923351, - 0.007980292, -0.02460596, 5.33429e-4, 0.016965551, -0.012692043, - 0.015093257, -0.00509976, -0.0012739749, 0.03477081, 0.0041090744, - -0.0033046023, -0.0043202466, 0.014459475, 0.006866184, 0.006726936, - -0.003043638, -0.015219346, 0.014479956, 0.012181295, 0.010831944, - -0.0037361314, -6.226494e-4, -0.011108476, 0.00821501, 0.0016909024, - -0.054518137, 0.0139520075, -0.015673902, 0.0033958766, -0.0062140445, - -0.008789276, 0.01832229, 0.01037113, -0.0016737125, 0.004275825, - -0.020848203, -0.019734075, 6.2241574e-4, 0.02643609, -0.025878832, - 0.009825311, 0.018480161, 0.003514141, -0.0053802268, 0.015867118, - 0.0027200098, 1.9816302e-4, 0.01678544, 5.443476e-4, -0.01723943, - 0.0018619257, -0.016834764, 0.011205409, -0.027463412, 0.0011090738, - 0.006386339, -0.007229646, 0.0143076815, 0.0013240483, -0.0097325025, - -0.010091793, 0.0100789135, -0.020421904, 0.007867478, 0.017435288, - 0.015741847, -0.0015142258, 0.00612153, -0.010838328, -0.022373639, - -7.760787e-4, -0.043963373, 0.007551479, 0.016173655, -0.035818785, - 0.023249855, -0.02287887, -0.0052499925, -0.0082143415, -0.030417247, - 0.012963398, 0.016418852, -0.014575598, 5.6513515e-4, 0.0074308836, - -0.023077168, 0.0361407, -0.0090423105, -0.009209593, 0.011720802, - 0.003116096, -0.014603425, 0.016055064, 0.008989606, 0.026135774, - -0.0043440275, -0.02713777, 0.034102138, 0.010346595, -0.0024790033, - -0.018522816, 0.035737146, 0.025067346, -0.014785954, -0.0064883274, - -0.026240164, -0.017716305, -0.029349359, 0.021355692, 0.0013586963, - -0.019043043, 0.008769754, -0.012001036, 3.2162468e-4, 0.008083079, - -0.004182277, 0.007050929, -0.010295296, 0.008835513, -0.023314726, - 0.0032623913, 0.013507781, -0.006072998, 0.0018913355, 0.016759295, - -0.005730063, -0.014157673, 0.0038243888, 0.008113027, 0.024612987, - -7.485473e-5, -0.0064453627, -0.019613812, -0.028612394, 0.009966172, - -0.0011167176, 0.0073117916, -0.011873657, -0.001007771, -0.0028132512, - -0.022227315, 0.0016476671, 0.011504141, -0.002195207, 0.023358766, - -0.0048584803, -0.0035808887, 0.0057751467, 0.0020536978, 0.015059946, - 0.008877263, 0.009958391, 8.8548445e-4 + "source.subjects.concepts.id" : [ ], - "reducedFeatures": [ - 0.046511617, 0.005269119, -0.039517634, 0.08368456, -0.0019331117, - 0.01717451, 0.0030616545, -0.017165544, 0.014026343, -0.03567886, - -0.004202272, 0.010376166, 0.009857488, 9.3409745e-4, 0.024559405, - 0.013082014, 0.011642109, -0.0042017563, 0.01551569, -0.0585659, - -0.023056041, -0.03764223, 0.0013047042, 0.033921354, -0.007981476, - 0.04232978, -0.026692687, 0.020279368, -0.06691683, 0.062493563, - 0.032905895, 0.02746432, -0.03559781, 0.0061725564, -0.012555542, - 0.002939718, -0.008236676, 0.011168004, -0.031561833, -0.0161933, - -0.0652138, -0.017507955, -0.013366176, 0.010068313, -0.0139743835, - -0.021123774, -7.2800275e-4, -0.023862233, 0.030248607, 0.060566846, - -0.022210473, 0.037659846, -0.027487343, -0.0011277582, -0.02460719, - -0.046775606, -0.028882755, -0.054045774, 0.0057418183, 0.030945629, - 0.0128217675, 0.005173056, 0.025455475, 0.04908065, -0.013320943, - 0.013900228, -0.024316177, -0.03348944, 0.05496172, 0.042583052, - 0.012134871, 0.041397296, 0.021892829, 0.026918694, 0.008873258, - 0.011575686, -0.04667925, 0.0111572435, -0.022711402, -0.03573961, - 0.01210563, 0.0014966052, 0.010177371, 0.04709392, 0.026626736, - 0.0053574503, 0.05130997, -0.030481305, -0.041369922, -0.01817361, - 0.03555799, 0.012199336, 0.017551877, -0.007308651, 0.0110258525, - -0.03955195, -0.012990213, -0.0017091644, -0.006243714, 0.04038959, - 0.003058601, -0.012213429, -0.025423806, -0.017034145, 7.8976824e-4, - -0.025905833, -0.023470955, 0.0047885114, 0.0020011698, 0.0042709718, - 4.8725787e-4, 0.028059565, -0.001449918, -0.0342454, -0.0118569955, - -0.010399049, -0.010846092, -0.04913037, -0.05446912, -0.02204154, - 0.030220151, -0.036315694, -0.007893055, 0.0016541299, 0.055390608, - 0.02111386, -0.014914688, 3.825502e-4, 0.028716527, 0.0032100568, - 0.027818173, -0.013266715, 0.028126065, 0.004755298, -0.0033310119, - -0.06407607, 0.017924547, 0.020945631, 0.03999141, -0.007528192, - -0.032017447, -0.014207815, -0.02440743, -0.034565825, 0.031172156, - -7.0029295e-5, 0.018794522, -0.005645552, -0.00223866, -0.028718986, - 0.021926824, 0.014434831, -0.0074560354, -0.023625297, 0.035848852, - 4.703294e-4, -0.04829756, 0.058207247, -0.06664095, 0.018477954, - 0.033682864, -0.008608982, -0.020459568, -0.010050957, 0.012970127, - 0.032684695, -0.021594949, 0.006736628, -0.006446932, 0.04987639, - -0.004997715, -0.06464642, -0.06378427, -0.006173761, -0.037095517, - -0.035149604, -0.02484452, 0.07099467, -0.0356414, -0.006583216, - -0.0038373033, 0.026120285, 0.039057832, -0.025221871, 0.03689831, - 0.013789711, 0.040463574, -0.01875272, -0.045554, -0.013015168, - 0.021375021, 0.058036774, -0.001798143, -0.04172126, -0.005746896, - -0.021732628, 0.001995386, -0.0046951436, -0.036422938, 0.02465749, - -0.035609014, 0.0051889285, 0.033914637, -0.019490486, -0.012062161, - -0.049446557, 0.02050666, 0.012495849, -0.007871765, -0.050700746, - -0.014390088, -0.026600432, -0.0036517351, -0.009562263, -0.0169407, - -0.018238049, 0.002910221, -0.011778264, -0.0035959342, -0.049866028, - 0.006140319, 0.032011308, 0.0513097, -4.5629997e-5, -0.03569363, - 0.009611176, 0.0044557797, 0.0014945876, -0.013978658, 0.08326684, - -0.042992916, 0.011320696, 0.02945843, -0.019167848, 0.040312298, - -0.010691483, -0.034598228, 0.0141951805, -0.007123768, 0.035798773, - 0.03087772, -0.015850192, -0.0028679634, -0.03115929, -0.07734196, - -0.0097004175, 0.010086751, -0.043017406, 0.030652497, 0.020330315, - -0.031186415, 0.008235842, -0.06779059, 0.009614345, -0.009275238, - 0.0045868745, -0.0066330405, 0.044861406, -0.027502168, -0.02845969, - -0.01845043, -0.019962186, 0.018190283, 0.00799497, -0.01977372, - -0.05618989, 0.060718596, 0.07428119, 0.037073575, 0.0017186205, - -0.04777104, -0.013198314, -0.0114823105, 0.048929095, -0.017864455, - -0.058337416, -0.076610416, 0.021390907, -0.0179529, 0.08056783, - 0.047648296, -0.007572971, -0.0021060605, -0.020102708, -0.0030132083, - 0.004854601, -0.045947652, -0.009453045, -0.013553376, -0.001622325, - -0.011119698, -0.0012008762, -0.0074828737, -0.011560295, 0.0011225695, - -0.008906519, 0.007763807, -0.03067753, 0.045221254, 0.025335828, - -0.009638612, 6.297875e-4, 0.024943795, -0.049975928, 0.03439727, - -0.018585581, -0.029829497, 0.042719174, -0.01181527, -0.0076846457, - 0.035468563, -0.030824393, -0.0515083, -0.013369968, -0.02658561, - 0.03275381, -0.0022596717, -0.041205373, 0.06108731, 0.061139226, - -0.049118165, 0.012212734, 0.022962306, 8.982721e-5, -0.02694679, - 0.031105783, -0.018655071, -0.023729894, -0.008681337, 0.037954297, - -0.009285013, -0.024463534, 0.015745547, -0.06350186, 0.01751659, - 0.011698118, 0.028557975, 0.012581712, 0.059221562, 0.0061466475, - -0.0031397105, 0.0030852384, -0.051741432, -0.037888773, 0.056859586, - -0.04852742, 0.0054601035, -0.0012988589, 0.025153201, -0.070909925, - 0.03562269, 0.0026930347, 0.05699628, 0.02495179, -0.038154572, - -0.0063399854, 0.009758422, 0.017749526, -0.020637227, -0.053560864, - 0.0057332716, 0.027666222, 0.027140537, -0.0458086, -0.018188402, - -0.012403639, -0.023810718, 0.008087455, 0.028913032, 0.011717866, - -0.025294723, -0.05251515, -0.010230672, -0.010837, 0.027977265, - 0.04188719, 0.0038548782, -0.0069209924, -0.028502397, 0.0023836552, - 0.03880627, -0.006576885, -0.03327821, -5.900242e-4, -0.057999667, - -0.058242343, 0.005315953, 0.07569828, -0.023135282, -0.01514271, - 0.0073414654, -0.016600247, 0.040670436, 0.020920597, 0.0024646213, - -0.044741828, 0.01270107, 0.022103127, 0.04128436, 0.019712886, - -0.05312177, 0.014622681, -0.008480892, -0.009205521, 0.017306965, - 0.004600661, 0.019402014, 0.031621806, 0.084295884, 0.04239392, - -0.006254718, -0.037204795, 0.009328817, -0.0037352596, 0.01514152, - -0.056020502, 0.031819332, -0.041251227, -0.007208415, -0.035993367, - 0.024868, -0.014020515, 0.01579584, 0.044715796, 0.001436304, - -0.015648773, -0.05413309, -0.0024054388, 0.03646215, -0.006219903, - 0.038924757, 0.031910572, -0.0129961595, -0.051138822, -0.015591664, - -0.004516543, 0.0029520302, -0.049853727, -0.0011323858, -0.016866427, - 0.014673945, -0.021422932, 0.042398617, -0.04198345, 0.04143477, - -0.025400423, -0.0176952, 0.022842228, 0.05630179, 0.054844253, - 0.00914039, 0.07275196, -0.0366356, -0.01910867, -0.020677406, - 0.004306172, -0.04412628, 0.013412644, 0.0035729464, -0.047073334, - -0.016891886, 0.05615689, 0.01772988, 0.011034564, -0.017744448, - 0.017929714, -0.05769321, -0.018429963, 0.0030740006, 0.050432764, - 0.029422672, -0.027202899, 0.052693717, 0.028585596, 0.0076675196, - -0.006082908, -0.0181179, -0.02332378, 0.041272026, -0.057219032, - 0.0013267903, -0.020625228, -0.011319627, 0.055384774, -0.004837652, - 0.0609359, 0.034053504, -0.004660308, -0.026082566, 0.020621164, - 0.045300074, -0.0059601488, 0.031076353, 0.009537239, 0.028858656, - -0.014845424, -0.010841484, -0.073864445, 0.05968101, 0.029708555, - -0.004570765, -0.027518407, -0.01566706, -0.04838748, -0.014690353, - 0.03114733, 0.006031352, 0.026190676, -0.0035398838, -0.020143293, - 0.0061010662, 0.102273956, 0.022630531, 0.001253121, -0.014754706, - -0.031577233, 0.042607915, -0.009449324, -0.03565405, 0.039040152, - -0.02253588, 0.03960197, 0.012485073, 0.0034816687, 0.023352798, - -0.045280185, 0.011862172, 0.011045093, 0.0013628609, 0.022215627, - -0.035826795, -0.0014714932, -0.016106704, -0.011978795, 0.012210654, - 0.02308179, -0.04699985, -0.0062130187, 0.022129426, -0.0323249, - 0.081368394, 0.0012925735, 0.047408104, -8.77635e-4, -0.0032225822, - 0.029594522, -5.4542697e-4, -0.00349829, 0.005064518, 0.019640263, - 0.03936022, 0.044501077, 0.05301954, 0.019626152, -0.024399666, - -0.0035556965, 0.003649163, 0.03278296, -0.037390765, 0.01596648, - -0.005385378, -4.344991e-4, 0.017240025, 0.03329768, -0.020959385, - 0.038197473, 0.053481735, 0.005116898, 0.054811783, -0.019655844, - 0.019238174, -0.028324477, 0.048181083, 0.08827919, 0.020008283, - -0.025239997, 0.012583291, -0.005847258, 0.02154053, -0.022534236, - 0.021340115, 0.07852923, 0.025223935, 0.05942709, -0.045175552, - -0.009709007, -0.0079155415, 0.028334811, 0.042701013, 0.052324865, - -0.041741535, 0.03603861, -0.03697506, -0.014716867, 0.007246841, - -0.03406676, -0.012445551, -0.018294781, -0.0036122268, 0.0029155354, - 0.017056238, -0.06231292, 0.0070775617, 0.007096673, 0.026807688, - 0.0104582785, -0.003993392, 0.0048434506, -0.01564236, -0.014035795, - -4.4526957e-4, 0.014640026, 0.01536273, 0.04662474, -0.017073786, - -0.0331443, -0.03716612, -0.0163086, 0.024448656, -0.079616226, - 0.0061387834, 0.026819559, -0.023164606, 0.051766574, -0.032508373, - 0.008385361, 0.036262188, 0.04066778, -0.003613236, -0.010880751, - 0.054994594, 0.037164435, -0.010094466, -0.015564062, 0.04623515, - 0.026462642, -0.02944984, 0.025592629, -0.0027514275, -0.015929163, - -0.0129882535, 0.002008932, -0.021830132, -0.033924293, -0.03241163, - 0.0140534155, -0.015234442, 0.0012109888, 0.010156913, 0.022069603, - -0.03071003, 0.0046488885, -0.041568495, -0.05010422, -9.001182e-4, - 0.046838522, -0.021319814, 0.009150759, 0.0039926083, 0.09681181, - 0.030016586, 0.024329856, 0.012387039, 0.010042073, 0.0020547973, - -0.0016842341, 0.015795203, -0.03606165, -0.015358989, 0.031286553, - -0.006853949, 0.023525584, 0.017307738, -0.030737245, -0.010757896, - -0.01273538, -0.007846896, 0.006681324, 0.01859913, 0.013134843, - 1.4309588e-4, 0.03465357, 0.042994983, -0.060760643, -0.01822551, - -0.033304967, 0.042900417, 0.02665955, -0.019620316, -0.03321512, - -0.023293782, -0.023422638, 0.009113796, -0.01740082, 0.025053238, - -0.017152973, -0.013478709, -0.010892123, -0.020165922, 0.018312449, - -0.032986484, -0.036858834, -0.001750193, -0.019102864, 0.015784642, - -0.03770965, 0.008632025, 0.01682589, -0.056365374, 0.01444967, - 0.0032709176, 0.006586808, -0.027549554, 0.035260115, 0.029469619, - 0.042013355, 0.040018566, 0.0070622996, 0.051468678, 0.045982752, - -0.02873397, 0.03282223, -0.02514129, -0.012707164, -0.018062158, - -0.019208236, 0.02144884, -0.010342138, 0.002773236, -0.0063316682, - -0.0018317674, 0.07100679, 0.09327632, -0.010513011, 0.0025477172, - -0.05566795, 0.028224254, -0.0035117664, -0.011932214, 0.01832603, - 0.027657395, 0.046090096, -6.177147e-4, -0.00396744, 8.4345153e-4, - -0.043750964, 0.0584853, 0.030784221, 0.033514094, 0.02412986, - -0.041048307, -0.03478916, -0.030331396, -0.006726693, 0.017225996, - 0.02056346, 0.005426849, -0.014250862, -0.010850086, -0.0370073, - 0.019265912, 0.023895448, 0.02371798, 0.0681225, 0.019666998, - -0.024841774, -0.016083438, -0.047701627, 0.007882018, 7.0674473e-4, - 0.011762373, -0.027886106, -0.014235925, -0.0016361583, 0.015658366, - 0.007612877, -0.018872177, 0.02006991, 0.045621227, 0.025933502, - 0.009190488, -0.058956984, 0.032470044, -0.033011656, -0.021683432, - 0.041320965, 0.04909389, 0.02741424, -0.019288959, -0.053628836, - 0.059290722, 0.0036165759, -0.0021499582, 0.01058938, 0.018367162, - 0.014864083, 0.017457271, 0.016968036, 0.0033174802, 0.02624757, - -0.03861024, -0.052171897, -0.03567209, 0.062213194, -0.046294015, - 0.0044512446, -0.005103426, -0.0020125655, -0.006716477, 0.046301007, - -0.021029096, 0.006709231, 0.036764216, -0.01355644, 0.032207917, - -0.019295383, 0.050562695, -0.023177493, 0.0032532243, -0.01494154, - 0.024894284, 0.011249049, 0.005230851, -0.06329373, 0.04918704, - -0.01655172, -0.04569261, 0.025207534, 0.05455652, -0.039320305, - -0.046586562, 0.078260615, 0.031372264, -0.01885136, -0.005434689, - 0.010282613, -0.028271705, -0.0023673156, 0.05353951, 0.015022301, - -0.049687937, -0.017098267, 0.043667264, -0.02099739, 0.012633698, - 0.03066116, -0.02657718, -0.034149002, -0.020760732, 0.012192221, - 0.040629584, -0.0017315646, -0.045960333, 0.028712612, -0.009229906, - -0.033098888, -0.045832552, -0.016994225, -0.011982543, -0.008884981, - -0.008640824, 0.032533478, 0.056562155, -0.0136304395, 0.021966659, - -0.024396624, -0.03135106, 0.016785154, 0.011792639, 0.01644684, - 0.051935714, -0.012514668, 0.032306205, 0.0018523871, 0.086996965, - -0.0055156206, -0.014833703, -3.0256406e-4, -0.05888321, -0.014224833, - 0.00612774, 0.033229712, 0.032402243, -0.008475996, 0.009728195, - 0.031600025, -0.019649005, -0.014070946, -0.05695862, 0.0018072232, - 0.023944117, -0.0075652683, -0.037188847, 0.057175964, 0.022529226, - -0.051066596, -0.009097267, 0.0074009784, 0.011954024, -0.03749328, - -0.011672447, -0.024287585, 0.014112304, -0.031196708, -0.017068543, - 0.016158076, -0.04723165, -0.030863095, -0.034484092, -0.0013543288, - 0.025770172, -0.032672014, -0.013021056, -0.030513844, -0.036220506, - 0.0063585606, 0.045632035, -0.024778398, 0.028493572, -0.0055945436, - -0.020388076, -0.033196848, -0.015239167, 0.0368916, 0.035181224, - 0.0015741151, 0.022671055, -0.044076383, 0.0043789307, -0.02213001, - 0.018858999, 0.0036304516, 0.055935226, -0.036788993, -0.023180537, - -0.04068357, -0.037910465, -0.058418397, 0.013764553, -0.01900047, - -0.016302483, 0.039776914, 0.008923498, -0.012464047, 0.004051575, - 0.018413713, -0.013233159, 0.029844439, -0.047473047, 1.08386776e-4, - -0.020495586, -0.020947125, 0.0314144, 0.0012779081, -0.022057515, - -0.028940042, 0.044722363, -0.034652047, -0.032408047, -0.010149399, - -1.9978032e-4, 1.2423092e-4, 0.053341, 0.011742296, 0.047723718, - -0.0103524225, 0.0035115976, -0.030758474, -0.002838788, -0.04803148, - -0.02157896, -0.006663088, -0.002344017, -0.014078673, 0.037399463, - -0.021660345, -0.005956916, 0.026105901, 0.0022310324, -0.024634797, - -0.009228591, 0.0042947186, -0.04594216, -0.013634646, 0.0069924053, - 0.056410596, -0.0032356014, -0.06119888, -0.023053076, 0.022897037, - 0.015540685, -0.014275808, 0.00901437, -0.019748054, -0.045364827, - -0.014600688, 1.8155323e-4, 0.003302215, -0.026402848, -0.009479056, - -0.055214416, -0.063276544, 0.009707675, -0.035232563, -0.015691072, - -0.025401656, -0.075409584, -0.055868767, -0.007245871, 0.03821205, - -0.068114534, -0.024366446, -0.015499949, 0.055533584, 0.041258913, - -0.0020386032, 0.048691988, -0.087030895, 0.057062563, 0.04658792, - 0.068162665, -0.03783483, 0.056245808, 0.05494724 + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.0051083555, + -5.218896E-4, + 0.0018558142, + 0.017917879, + 0.030758834, + -0.01775354, + 0.018284613, + -0.0029242018, + -0.007735471, + -0.013560354, + -0.003934924, + 0.037577163, + -0.033596694, + 0.019275177, + -0.026266875, + 0.003438714, + -0.019346438, + -0.036159594, + 0.014968836, + 0.022952178, + -0.031939115, + 0.0064000185, + 0.009564375, + -0.027915124, + 0.012845276, + -0.021374514, + -0.006511355, + 0.030533182, + 0.019084122, + -0.01761738, + 0.014367985, + -0.0034898082, + 0.0012408046, + 0.012904969, + 0.008376603, + 0.010922355, + 0.009727241, + -0.014925122, + -0.009773074, + 0.015338736, + -0.008151913, + -0.0055847126, + 0.012246912, + 5.4044265E-4, + -0.0023810733, + 0.010499403, + 0.022637168, + -0.018833984, + 0.0067734485, + 0.009471526, + -9.99809E-4, + -0.010171938, + 0.0179962, + 0.005869028, + -0.012936439, + 0.0025358563, + 8.304536E-4, + -0.019862285, + 0.02061884, + -0.007033571, + -0.0064441455, + 0.008615618, + -0.01148176, + 0.0029064487, + 0.021367164, + 7.4257463E-4, + 0.002986086, + 0.002562652, + -0.0111677265, + 0.028007288, + -0.016815413, + 0.0058761155, + 0.0238905, + -0.0013903441, + -0.016731504, + -0.0013362832, + 0.003517114, + 0.008157114, + 0.019710511, + 0.0036339955, + -0.013577463, + 0.01760351, + -0.005300247, + -0.029583046, + -0.004424736, + -0.0144501515, + -0.006508096, + 0.0077412073, + 0.0077093407, + -4.1796008E-4, + 0.039881855, + -0.030467909, + 0.0035661163, + -0.0046741045, + 0.009859983, + 0.0028245626, + 0.053320505, + 5.7139684E-4, + -0.027557733, + -0.007214061, + 0.017940564, + -0.004983056, + 0.0040714704, + 0.02664283, + 0.010748231, + -0.025575653, + -0.017741412, + 0.006314351, + 0.021035451, + 0.008020982, + 0.004273038, + -0.014162532, + -0.0135212075, + -0.009510539, + -0.010944663, + -0.0049083033, + -0.0064085103, + -0.016314724, + -0.0019182985, + -0.0093943095, + -0.020834276, + -0.002117248, + -8.3165744E-4, + 0.03437472, + -0.0016911214, + 0.015920619, + -0.0014717283, + 0.033358242, + 0.003329941, + -0.008649938, + 0.01491685, + 0.006146392, + 0.0017742408, + -0.011500922, + 0.020247826, + 0.012623724, + -0.01857032, + 0.01001992, + -0.0031830985, + 0.005276323, + -0.024368253, + 0.01277203, + 0.022373937, + -0.015617644, + -0.005480719, + -0.012156576, + 0.022493768, + 0.005348256, + -0.030753404, + -0.008312869, + 0.017915804, + -0.0040769726, + 0.0045099584, + 0.011996189, + -0.02424685, + 0.005678212, + -0.0059177517, + -0.012227907, + -0.00771645, + -0.0111736925, + -0.0011989883, + 0.008601162, + -0.007939175, + 0.016359588, + 0.011827559, + -0.0049741687, + -0.004452377, + -0.0071057677, + -0.024448516, + 0.008949177, + -0.004616068, + -0.0038445506, + 0.002651562, + -0.015209176, + -0.019356567, + -0.007142608, + -0.013936441, + -0.0029434315, + 0.017669294, + 0.0016349872, + -0.0055656917, + -0.017980453, + 0.0046335054, + 0.035285797, + -2.7117212E-4, + -0.0073282374, + 0.020877259, + 0.018563125, + -0.008711704, + -0.015179713, + -0.013434764, + -0.006601782, + -5.932932E-4, + 0.0076884576, + 0.006882007, + 0.027715646, + -0.008025002, + -0.007317862, + 0.0037615385, + -0.0076745413, + -0.005052067, + -0.01338274, + 0.002921046, + 0.0035610332, + 0.0036634454, + 0.022090232, + 5.0522934E-4, + -0.012589312, + 9.3651796E-4, + -0.009348418, + 0.020491993, + -0.002522566, + 0.0077911015, + 0.004242756, + -0.0027380642, + 0.013988647, + -0.033827707, + 0.005293139, + -0.04393681, + 0.030720556, + 0.013572234, + 0.008600854, + -0.01032508, + 0.0035123974, + -0.032183766, + -0.0068775313, + -0.0052018454, + -0.033443764, + 0.011326466, + -0.013970736, + -0.004330746, + 0.0054371534, + -0.012867428, + 0.0032940884, + -0.0022556817, + -0.00552712, + -0.019988824, + -0.03652763, + -0.030350618, + -0.003046863, + 0.013688542, + 0.014908603, + 0.006888585, + -0.009680795, + -0.0147142345, + -0.017459713, + -0.018087612, + -0.003196804, + 1.9305284E-4, + -0.008710066, + -0.012724308, + 0.017948108, + 0.021091657, + 0.0070876987, + -0.0058862497, + -0.0063010813, + 0.017242245, + -0.002358652, + 0.01307511, + -0.008412679, + 0.02987411, + 0.019687824, + -0.0071632536, + -0.0038004385, + 0.01444929, + -0.021473508, + -0.01461505, + 0.007659383, + 0.0062902896, + 0.0013333907, + 0.022538785, + -0.019552242, + 0.015232635, + 0.009478427, + -0.013900472, + -0.0058087218, + -0.025973344, + 0.014512088, + -0.001813641, + -0.023416394, + 0.011977526, + 0.0018620738, + -0.0120480815, + 0.007962666, + 0.039220635, + -0.0033567904, + -0.006075615, + 0.009025025, + 0.015317883, + 0.006211282, + 0.0018463386, + -0.0073512, + 0.024466662, + 0.019039525, + 0.004911746, + 0.014738991, + -0.004938829, + 0.0023513222, + 0.008510826, + -0.03298943, + 1.4818434E-4, + -0.033112336, + 0.0055671902, + -0.03137438, + 5.899411E-4, + 1.519749E-4, + -0.018038712, + 0.006158193, + -0.0020452326, + 0.01328693, + -0.02692452, + -0.009818596, + -0.0018735953, + 0.03474861, + -0.0124136945, + -0.024177859, + -0.0061658076, + -0.008627286, + -0.006774798, + 0.004557274, + -0.016415719, + -0.021627441, + -0.009588583, + 0.013925796, + 0.001488251, + 0.02729167, + 0.0034364664, + 0.0023959423, + 0.017745376, + -0.012457724, + -8.201687E-5, + 0.0011021526, + 0.007930676, + 0.021557756, + -0.010221364, + 0.021458734, + 0.0061724805, + 0.012553862, + 0.016010724, + -4.5638275E-4, + 0.01026611, + 0.0051992116, + 0.010904123, + 0.0036339671, + 0.021305798, + -0.005701276, + -0.013928767, + -0.016818672, + -0.010008699, + -0.009394211, + -0.0015241049, + 0.011892518, + 0.0024760342, + 0.0084489, + 0.013030443, + 0.0033730974, + 0.029746158, + 0.03802285, + -9.0810074E-4, + 0.014528771, + 0.011943583, + 0.0015535479, + 6.946801E-4, + -5.660616E-4, + 0.002081411, + 0.008131125, + -0.007934695, + -0.011605628, + 0.016797513, + 0.007123753, + 3.1208005E-4, + -0.0013506346, + 0.0021032407, + -0.018034013, + -0.021239184, + 7.888286E-4, + 0.004260961, + 0.012351237, + -0.0013974151, + 0.0018988571, + -0.020319192, + -0.010043569, + 0.02989036, + 0.0018728448, + -5.4037065E-4, + 0.0054462044, + 0.021619106, + 0.010639691, + 7.458526E-4, + 0.013748629, + -0.014177547, + -0.010584862, + 0.021462938, + -1.8264799E-4, + -0.028158044, + 0.019710477, + 0.0058306665, + -0.006279285, + 0.0428776, + 0.016981646, + 0.013514422, + 0.03529299, + 0.005249778, + 0.0074898275, + -0.0057446067, + 0.017581908, + 3.8465453E-4, + 0.021396061, + 0.008057465, + -0.023191694, + -0.010190231, + 0.011795563, + -0.018459925, + 0.005063344, + -0.003937533, + 0.0022838733, + -0.0072442973, + 0.005888854, + 0.006393924, + 0.0021746452, + -0.007047495, + 0.0017642132, + 0.020853313, + -0.014216942, + -0.010187076, + -0.018809995, + -0.0054668467, + 0.008574557, + -0.018962627, + -0.013305925, + 0.031931914, + -0.028139075, + 0.010980587, + -0.024055475, + -0.01319501, + -0.008012064, + 0.029421242, + -0.007827715, + -0.011247697, + -0.0022969518, + 0.008294977, + -0.022276865, + -0.024219044, + -0.015002597, + 0.011988908, + 0.01898803, + -0.005891275, + 0.008416619, + 0.004550795, + 0.014922293, + 0.009846949, + -0.0032158063, + 0.0027827714, + -0.0020442451, + -0.0142861465, + -0.0012983899, + 0.008788685, + -0.00996418, + -0.02901208, + 0.01227439, + 0.02526775, + -0.0037242027, + 0.01368255, + -0.006710052, + 0.018496774, + 0.005541168, + -5.7643873E-4, + -0.004738116, + -0.0071984953, + -0.021367062, + -0.005284207, + -0.01310998, + 0.0072230827, + 0.017477123, + 0.0073249, + 0.007768004, + 0.016375847, + 0.009626079, + 0.0039548934, + -0.046317194, + -0.010870147, + -0.017431771, + 0.0025994554, + 0.021742232, + 0.0075920615, + -2.926478E-4, + -0.010740213, + -0.029377274, + -0.016833538, + 0.012278362, + 0.021332271, + -0.013327797, + -0.0019146125, + 0.0015364195, + 0.026177254, + 0.011012042, + -0.022388555, + -0.003022303, + -0.04861684, + 0.004485229, + -4.6600483E-4, + -0.010325547, + 0.008183746, + 0.023459343, + 0.016730329, + 0.0042954637, + -0.015241086, + 0.023514567, + -0.027029833, + 0.032281883, + 0.009368988, + -0.02867989, + -0.015044089, + 0.005864551, + -0.014243503, + 0.018137574, + 0.021905845, + -2.351633E-6, + 0.009873456, + -0.018056026, + -0.012096465, + 0.0059293373, + 0.0023629526, + 0.0036909748, + 0.03502856, + 0.0056104604, + 0.008747125, + 0.019988015, + 0.0056971973, + -0.027798949, + 0.032621667, + 0.016508719, + -0.027255096, + 0.015996076, + -0.0076224743, + 0.016665421, + 0.004066004, + 0.001520646, + 0.014528432, + 0.014735775, + -0.0082135275, + 0.014330698, + -0.0017014602, + -0.02043989, + 0.0021179426, + 0.024511497, + 0.016271705, + 0.012679849, + 0.009986813, + 0.010870387, + -0.005951381, + -0.004681942, + -0.0077163028, + 0.018836359, + -0.0029991579, + 0.009557302, + 0.0033343125, + -0.014068136, + -0.017307146, + -0.020081094, + 0.024340127, + -5.3626817E-4, + -0.002926808, + 0.0065054344, + 5.7580165E-4, + -0.037765265, + -8.325811E-4, + 0.018378112, + 0.006039719, + -0.0237015, + -0.021323131, + 0.010707541, + -0.008390386, + -9.079742E-4, + 0.02104423, + -0.016208712, + 0.006730296, + 0.018710168, + -0.011226578, + -0.015204136, + -0.016144183, + 0.013279825, + -0.030404912, + -0.0070550498, + 0.014927451, + -0.04029715, + 0.02044677, + 0.018728351, + 0.023279667, + 0.0020997452, + -0.017172733, + 0.01317498, + 0.018444205, + -0.00369608, + 0.0046306835, + 0.02733672, + -0.01540721, + -0.020200523, + 0.020767905, + 0.011211302, + 0.0048667397, + 0.015914543, + -0.002147227, + 0.0061324365, + -1.3353981E-4, + 0.009803032, + 0.016975295, + 5.787885E-4, + -0.0032343916, + 0.0018502051, + 0.02823344, + 0.012440286, + 0.008449883, + -0.0091708405, + -0.014427344, + 0.016531406, + -0.0054762415, + -0.011345564, + -0.0070539303, + 7.6846353E-4, + -0.017427096, + -0.024924252, + 0.011089681, + 0.0047674123, + 0.0019989833, + -0.0032356265, + 0.018051665, + 0.0033384452, + 0.018002778, + -0.012783267, + 0.010123048, + -0.0019994078, + -0.004019465, + 0.008612516, + -5.940154E-4, + 0.029884787, + 0.0062937336, + 0.0037241697, + 0.0020862531, + 0.024135888, + -0.007110793, + 0.011336439, + 0.0153597435, + 0.0355911, + 0.0053240033, + -0.03584448, + 0.008037881, + 0.010928548, + -0.014679599, + -0.01331012, + 0.029770853, + -0.010438505, + 0.034008585, + -0.011673948, + 0.035888866, + -0.0025763146, + -0.009552843, + -0.026740797, + -0.017520975, + -0.020512678, + -0.0062182844, + 0.005039125, + -0.0034068264, + -0.020619923, + 0.014450946, + 0.003841024, + 0.008289479, + -0.017036302, + -0.017973192, + -0.02917595, + -0.018736804, + 0.0028963173, + -0.011664684, + -0.02167775, + -0.023832737, + 0.027745904, + 0.0038588636, + 0.009003119, + 0.0013227613, + -0.009769699, + 0.015927486, + 0.00822564, + 0.009441107, + 0.00426353, + 7.067456E-4, + 0.0140306195, + -0.01902868, + -0.0077811354, + -0.012632287, + -0.009598317, + 0.0032815645, + 0.0010697679, + -0.006271563, + -0.010397399, + 0.0024026826, + 0.012681583, + -0.037692964, + 0.020734603, + 0.01978827, + 5.4067915E-4, + 0.011942544, + 0.012921785, + -0.017783333, + -0.0022451764, + 0.003805675, + 8.374487E-4, + -0.012897868, + 0.0064092516, + -0.008179533, + -0.013699129, + 0.009880506, + -0.03541831, + 0.013079021, + 0.02832118, + 0.02083284, + 0.0044064345, + 0.007122215, + -0.0030159578, + -0.015456422, + -0.0120880585, + 0.0019136261, + 0.005981195, + -0.015362101, + -0.0035361256, + 0.008281293, + -0.020839522, + 7.665138E-4, + -0.012888784, + 0.0055709574, + 0.011017856, + -0.0048268517, + -0.005583343, + 4.3889583E-4, + -0.022879394, + 0.011004063, + -0.0020336306, + -0.02850566, + 0.024013806, + -0.0071771196, + -0.016933322, + 0.0020293782, + 0.014656448, + 0.01971433, + -0.010666116, + 0.007573794, + -0.02324958, + -0.028235128, + -0.036441814, + -0.0087974155, + 0.022319242, + -0.016918292, + 0.010375182, + 0.017117597, + -0.0064185737, + 0.019725576, + 0.012809247, + -0.013752977, + -0.0035038367, + 0.016251596, + 0.040379733, + 0.010166068, + -0.0038880196, + -0.014959906, + -0.0060608364, + -0.022712583, + 0.0028762138, + 3.6013348E-4, + -8.6353597E-4, + 0.008535995, + 0.0058559976, + 0.014648157, + -0.018038852, + -0.022409402, + -0.0074114413, + 0.018757615, + 0.0366951, + 0.015072206, + -0.012735736, + 3.0908422E-4, + -0.017922236, + -0.019537661, + -0.0060986546, + -0.0037430387, + -0.010958462, + 0.011566658, + -0.010237078, + 0.033147216, + 0.03178299, + -7.91843E-4, + -0.007710552, + 0.00752118, + 0.010009297, + -0.028902585, + 0.015837261, + -0.012712632, + -0.004314738, + -0.023886334, + -0.019188683, + 0.0033023504, + -9.65872E-4, + 0.013977332, + 0.029947458, + 0.021135846, + 0.02404969, + -0.017734509, + 0.0044703824, + 0.016699845, + -0.022762127, + -0.010943019, + 0.011173453, + 0.020678688, + -0.01392533, + 0.012720581, + -0.0022962405, + 0.0088439975, + -0.0013729112, + 0.009918705, + -0.0057588443, + 4.3556723E-4, + 0.016469365, + -0.03328804, + -0.0020922944, + 0.045523793, + 0.008058596, + 0.0036365942, + -0.029368017, + 0.014775712, + 0.02347309, + 0.009118743, + 0.013397478, + -0.006174024, + 0.005612215, + 9.7617303E-4, + -0.0070031327, + 0.0011205213, + -0.011599484, + -9.4989E-4, + -0.017518828, + -0.0019734967, + 0.03602876, + -0.032772064, + -0.011271113, + -0.011144395, + -0.0062619187, + 0.031857613, + 0.017088227, + -0.006084857, + 0.009456121, + 0.0036179621, + 0.018025247, + -0.006868357, + -0.010640223, + -0.0039206287, + 0.0075291744, + -0.020167382, + 0.0031690763, + -0.015013978, + 0.029363858, + 0.0041990643, + -0.009333792, + -0.012413736, + -0.026462039, + -0.017004779, + -0.010283581, + -0.004476276, + -0.0038557006, + -0.012941044, + 0.0028939408, + 0.0012693525, + 0.0082845455, + 0.013253302, + 0.009671203, + -0.005592223, + 0.0038660706, + -0.008879325, + -0.02595252, + -0.024576887, + -0.013989108, + -0.035228353, + -0.020110207, + 9.153707E-4, + -0.0069510085, + -0.010186104, + 0.008532549, + -0.003893998, + 0.0038286555, + 0.01584531, + -0.005990478, + -0.025966356, + 0.0091406405, + -0.009401327, + 0.012630533, + -0.0050705927, + -0.0078524165, + -0.01079808, + 0.0052974457, + -0.009299491, + 0.0032029387, + 0.011030089, + -0.016512023, + 0.0043385476, + 0.0022036682, + -0.022202637, + -0.010675896, + -0.005477416, + -0.020191243, + 0.010408218, + 0.023361154, + -0.010133789, + -0.0069014877, + 7.305769E-5, + 0.0057570585, + 0.008130361, + 0.004192821, + -0.015601114, + -0.0017921746, + -0.0056691216, + 0.032788247, + 0.002482722, + -0.006554897, + 0.004866761, + 0.01965394, + 0.015186274, + 0.018167278, + 0.010967743, + -0.026994029, + 0.009863075, + 0.032584667, + 0.010186155, + 0.0030263527, + -0.011973927, + -0.0025751716, + 0.018089231, + -0.005142218, + -0.0036124783, + -0.0041499576, + -0.013054247, + 0.0026185135, + 0.010187135, + -0.015294579, + 0.0072240783, + 0.005021056, + 0.011614491, + 0.020579118, + -0.022525376, + -9.2490856E-4, + 0.0037769997, + 0.024699586, + 0.0048745093, + 0.008660972, + -0.017008604, + -0.02747776, + 0.013114463, + -0.009107761, + -0.013443241, + -0.013412394, + 0.018660188, + 0.00769304, + 5.391785E-4, + 0.022847304, + 0.014811303, + 0.024447648, + 0.011405609, + -0.020735575, + 0.012945926, + -0.009699713, + 0.011196516, + -0.010415046, + -0.014062211, + 0.011227747, + -0.010630396, + -0.014846315, + 0.015440951, + 0.0036817077, + 0.018657012, + -0.0056095, + -0.014178374, + 0.010429103, + 0.007280668, + -0.0056228517, + 0.005849826, + 0.019836133, + -9.829242E-4, + -0.019558106, + -0.006912868, + -0.01451041, + -0.012203546, + -0.016327422, + 0.001475165, + 0.021713717, + 0.0024421692, + 0.020368636, + 0.018746896, + 0.03000875, + -0.0019623544, + -0.004258554, + 0.02093866, + 0.005997516, + 0.010333466, + 0.03496819, + 0.008717829, + 0.0021519111, + -0.0017189102, + -0.0073229326, + 0.0043540564, + -0.021198358, + -0.004280172, + -0.002189718, + 0.015353533, + 0.022529686, + 0.005843972, + 0.018434238, + 0.01837039, + 0.003454002, + -0.014953418, + -0.012701401, + -0.017561587, + 0.008454746, + -0.014290509, + -0.0016543634, + -0.040083766, + -0.005469247, + -0.006368553, + -0.010192644, + -0.028563336, + -0.017855573, + 0.0010469554, + 0.015507449, + 0.0040362524, + 0.012992416, + -0.017836625, + -0.0033541159, + -0.0059213303, + -0.0024364719, + 0.012682709, + -0.022867763, + -0.023710351, + -0.01015933, + 0.03636905, + 0.019648092, + -0.021981748, + -1.645847E-4, + 0.009385292, + 0.004000305, + 0.010779575, + 0.017338753, + -0.0025266116, + 0.014915881, + -0.005027402, + -0.0042347526, + -0.0044852435, + -0.008579152, + -0.016280401, + 0.010075099, + -0.026291845, + -0.04054075, + 0.02204116, + 0.025372969, + 0.011769722, + 0.018124942, + -0.014251636, + 0.022043657, + -0.011611844, + 0.017853253, + -8.900053E-4, + -0.0072843996, + 0.01211762, + 0.049580403, + -0.015193102, + 0.021222921, + 0.012098718, + -0.013285305, + -0.010326457, + -0.006094746, + -0.021234635, + 0.002783401, + 0.0043030074, + 0.019603737, + -0.004451551, + 0.011212848, + -0.009311994, + -0.025921112, + 0.020103345, + -0.010391904, + -0.010566267, + -0.0028169511, + 0.018536214, + 0.016157947, + -0.008191465, + 0.019355841, + 0.0112491725, + 0.004109586, + 0.003190852, + 0.036512494, + 0.033220448, + 0.0016470922, + 0.006349719, + -0.009328054, + -0.0030770935, + 0.0075827064, + -0.004049717, + -0.018460345, + 0.0021068237, + 0.010813202, + 0.004295669, + 0.015261518, + 0.009252481, + -0.01811774, + -0.0058017303, + 3.8204584E-5, + -0.02977355, + -0.013673948, + -0.01818446, + 0.014391206, + -0.013984741, + 0.008765795, + 0.030041602, + -0.017936558, + -0.011567209, + 0.012682753, + 0.011813127, + 0.010267866, + -0.013302896, + 0.008679584, + -4.032645E-4, + 0.024293408, + 0.016325938, + -0.011894711, + -0.0029105074, + -0.029208852, + 0.0064827236, + 0.003384878, + 0.016977606, + 0.0068530515, + -0.0017178291, + -0.015955575, + 0.0025775214, + 0.005123946, + 0.011879358, + -0.017718406, + 0.0058940668, + -0.026797883, + -0.024650773, + -0.013478987, + -0.006342873, + 0.011649066, + 0.01944617, + 0.0028379578, + -0.015417701, + -0.0053302255, + 0.0051512425, + -0.004366322, + -0.0029105798, + 0.016074454, + 0.013348287, + -0.008868298, + -0.014738112, + 0.013285937, + -0.0020639838, + -0.0028128494, + 0.015131156, + 0.0034616913, + -0.0015618352, + -0.008691515, + -0.03643655, + 0.006516547, + -0.004417696, + -0.015837805, + 0.009369113, + 0.0133930035, + -0.0036147395, + -0.008509824, + 0.023321668, + -0.007999069, + 0.025185961, + 0.012213739, + -0.020719491, + 0.036949635, + -0.035286073, + 0.017883433, + 0.0026913441, + -0.022657134, + -0.0051725823, + -0.019582726, + -0.0028435544, + -0.0063784965, + 0.010584327, + -0.002077728, + -0.02737085, + 0.019116815, + 4.701738E-4, + -0.011413319, + 0.011847462, + 0.016473958, + -0.017797511, + 0.0016032394, + -0.015470415, + 0.0016586035, + -0.007601536, + 0.01773557, + 0.008908809, + 0.026029129, + -0.0041292585, + 0.01095846, + 0.025302155, + -0.007212384, + 0.0044598193, + -0.0067152656, + -0.0027318643, + -0.0075557893, + 2.9962996E-4, + 0.02352497, + -8.8747934E-4, + -0.021008516, + -0.023902366, + -0.006799997, + 0.010468931, + 0.013383173, + -0.008345765, + 4.229567E-4, + 0.007245597, + -0.03446853, + -0.030409755, + -0.005407918, + -0.010522821, + -0.04554278, + 0.007536735, + -0.012579647, + 0.021566411, + 0.02157935, + 0.03211758, + 0.010459224, + -0.008858636, + 0.021855403, + 0.006919219, + -0.0044985153, + -0.015979042, + -0.006660706, + 9.158362E-5, + -0.012326163, + -0.0074980343, + 0.009199222, + -0.0041418653, + 0.005609349, + -0.00419347, + -0.0036001576, + 0.0020411296, + -0.0038819464, + 0.031448103, + -0.0024057082, + -0.009964112, + 0.015028123, + 0.015479326, + -0.014908079, + 0.013295396, + -0.005522752, + 0.0077237873, + 0.013704514, + -0.019442704, + -0.016164333, + 0.025329566, + 0.01745666, + 0.010000502, + 6.571191E-5, + 0.006379696, + -0.004645031, + 0.0023560063, + 0.029545581, + 8.398747E-4, + 0.0077793715, + 9.203996E-4, + 0.0028204808, + -2.6150187E-4, + 0.0067488374, + 0.008752593, + -0.01619794, + 0.012863116, + -0.016468875, + -0.0059246263, + 0.0037619066, + -0.012863674, + 0.027738454, + 0.013139936, + 0.004064922, + -4.0776355E-5, + 0.014791492, + -0.021521114, + -0.0072049038, + 0.0060530193, + 0.018992158, + 0.017800907, + -0.007266669, + 0.011352627, + 0.00453829, + 0.022543961, + 0.0016358754, + 0.01584956, + 0.016334156, + -0.0076111844, + 0.0052714017, + -0.016463786, + -0.032095388, + -0.026690228, + -0.013241884, + -0.0051160813, + 0.03060086, + 0.018680077, + -0.0035173518, + 0.029531842, + -0.0039842217, + -0.022658424, + -0.020725649, + 0.0038836708, + -0.01624374, + -0.012117891, + 0.012080076, + -0.013633953, + 0.010176326, + 0.038345315, + 0.0025573645, + -0.0049321856, + 0.0036288106, + 0.018440038, + 0.02657741, + 0.0041106474, + -0.002287618, + -0.025303336, + 0.00890353, + -0.015127567, + -0.005492476, + 0.018722856, + -0.0036399306, + 0.0134997545, + -0.011434693, + 0.0041335374, + -0.026107743, + 0.017497376, + -0.02869548, + 0.006165943, + 0.0023477061, + 5.9157057E-4, + -0.009510356, + 0.0020903812, + 0.021892127, + 0.012930617, + 0.0024857612, + 0.0103307115, + -0.025043974, + -0.013135356, + 0.007494337, + 0.021123052, + -0.023214506, + -0.025829408, + 0.010236087, + 0.014586664, + -0.021960964, + 0.0075787436, + 0.0013786714, + -0.016555931, + -0.0032556443, + 0.006443269, + 0.008299468, + 0.008487551, + -0.0012356812, + 0.0064097084, + 0.0016362821, + 0.010359323, + 0.02025884, + 0.024849312, + -0.03381888, + 0.020914827, + -0.007309014, + -0.015642716, + 0.014029048, + -0.00671931, + -0.009296444, + -0.01546808, + -0.009031763, + 3.2393762E-4, + 0.033806287, + 0.027724877, + 0.0052106315, + -0.00742019, + -0.014135497, + -0.01228085, + 0.029104948, + -0.00950724, + -0.008302325, + -0.0049148537, + 0.0019215271, + -0.005729089, + -0.008060803, + 0.025523383, + 0.008858197, + -0.016073035, + 0.0032783162, + -0.011151165, + 0.008475383, + 0.012295577, + -0.023638548, + 0.008485128, + -0.021612301, + 0.030915199, + 0.012698666, + 0.018528912, + 0.03882403, + -0.018997384, + -0.021134755, + -0.01349122, + 0.0034743124, + -0.015992258, + -0.028463548, + 0.0071031917, + -0.002476097, + -0.0053985575, + -0.0022317802, + -0.0025780487, + -0.005516334, + -5.4955348E-5, + -0.028723544, + 0.027255675, + -0.0045530773, + 0.0018129915, + 0.019102745, + 0.030674653, + -0.027042497, + 0.0103921695, + -0.0063931337, + -0.05326831, + 0.0035295442, + -0.019363787, + 0.009987124, + 0.014443678, + 0.03888117, + 0.016265962, + 0.019322943, + -0.015259221, + 0.0036639387, + 5.8518833E-4, + -0.002058347, + 0.01961451, + -0.023754116, + -0.01914202, + 0.0033449666, + -0.004286153, + -0.014745157, + -0.0018124724, + -0.017318685, + -0.006061095, + -0.011598995, + -9.633234E-4, + -8.957959E-4, + -0.006219776, + -0.012847633, + 0.01605336, + 0.010341709, + -0.022389902, + -0.002718928, + -0.030200874, + -0.011020894, + -0.009626767, + 0.01700688, + 0.0014698105, + 0.0134965135, + -5.067564E-4, + -0.031369183, + -0.0022098932, + 0.0070780083, + 0.037792977, + 8.170914E-4, + 0.0085980585, + 6.521851E-4, + 0.006884592, + 0.014365282, + 0.016379582, + 0.003279871, + -0.015642338, + -0.03467928, + -0.014384493, + 0.0067931004, + -0.0014643887, + 0.023791606, + -0.0092056785, + 0.029155597, + 5.8362825E-4, + 0.0042212, + -0.031754643, + -0.01388819, + -0.004232203, + 0.023921683, + 0.024331672, + 0.013759752, + -2.4509244E-4, + 0.018153038, + 5.7373365E-4, + 0.009245937, + 0.014483591, + 0.01516026, + -0.0021105646, + -0.004323562, + 0.005811234, + -0.0052402704, + 0.004586413, + -0.025163459, + 0.013447266, + -0.0052863453, + -0.0060102125, + -0.018234858, + -0.012688124, + 0.011817522, + 0.01635198, + 0.021892752, + 0.016507156, + -0.0455199, + 0.022671139, + -0.013286191, + -0.0020096332, + -0.03396423, + -0.0110174455, + -0.009770841, + -0.0078026187, + -0.053335544, + -0.0025222073, + 0.01258759, + -0.0122529855, + -0.0010145816, + 0.013483113, + -0.010408228, + 0.010898625, + -0.003008694, + 0.027062947, + 0.01156541, + -0.03354235, + 0.0015699123, + 0.0047865454, + 0.015750712, + 0.008789782, + 0.014926108, + 0.017341683, + 0.017158167, + -0.007345973, + -0.0073105106, + 0.009187033, + -0.004752855, + -0.0047188364, + -0.017612318, + -0.020807648, + -0.008904058, + 0.01044813, + 0.002629273, + -0.0046834257, + 0.011044114, + 0.018640028, + 0.0071275164, + 0.026286928, + 0.0032152694, + 0.003286024, + -0.024203159, + -0.005762091, + -0.0018548133, + 0.016750732, + 0.0019162648, + -0.0023848598, + 0.0034526463, + -0.0065089166, + 0.010654393, + 4.2686338E-4, + 0.019870946, + 0.015535124, + -0.011914497, + -0.016831113, + -0.0060301814, + -0.015344195, + 0.020116804, + 0.003898484, + 0.018723113, + -0.004794522, + -0.00968979, + 0.023113469, + -0.018962443, + -0.008017586, + 0.002275979, + -0.019871065, + -0.0023137685, + -0.015662586, + -0.016339319, + -0.005526831, + 0.0091740135, + 0.02913767, + 0.020496035, + -0.014431899, + 0.0036362375, + 0.02772783, + 0.008338498, + -0.021965671, + 0.027545474, + -0.011386572, + 0.035577595, + -0.010948231, + -7.288285E-4, + -0.011306369, + -0.0130336685, + 0.013982806, + 0.0064728097, + 7.245836E-4, + 0.0112074725, + -0.0048285546, + -0.006304153, + -0.02048005, + -0.0015079853, + 0.028377652, + 0.0061218673, + -0.0064446377, + -0.014263158, + -0.0062418384, + 0.011120593, + 0.017245194, + 0.027440831, + -0.011956858, + -0.0067113126, + -0.0030246223, + -0.014801032, + -0.0071203588, + 0.0030996087, + -0.0042463765, + -0.0057470105, + 0.0026561334, + -1.3954606E-4, + -0.007981663, + -3.038012E-4, + -0.008183192, + -0.004263578, + -0.009932523, + -0.0026293015, + -0.01871929, + -0.0115678925, + -0.0038230347, + 0.008921307, + -0.022292923, + -0.009063891, + 0.013649986, + -0.008895739, + 0.025292056, + 0.001040209, + 0.009496473, + 0.011059893, + -2.2788974E-4, + 0.01329318, + -0.010314817, + -0.015496145, + 0.004659299, + 0.01075022, + 0.013134112, + 0.0049110665, + -0.01600888, + -0.03824231, + -0.0066120494, + 0.02715669, + 0.002388869, + 0.015928125, + 0.008647411, + -0.020100152, + -0.012247623, + -0.005928039, + 0.0030612524, + -0.0027891947, + -0.002008489, + 0.0085810665, + 0.017896999, + -0.010119942, + 0.024453135, + 0.015195029, + -0.0035670423, + 0.010174055, + 0.0052103894, + 0.016247569, + 0.010123295, + -0.015740467, + 0.0017078599, + -0.00546497, + 0.015180967, + 0.0017537611, + -0.024260843, + -0.00594471, + -0.023346072, + -0.0038277078, + 0.01652456, + -0.007912015, + -0.006116415, + 0.00783399, + -0.0025201158, + -0.004176936, + -0.026698954, + 0.019382711, + 0.008558453, + 0.023677995, + 0.02597934, + 0.0067980923, + 0.023364397, + -0.009009957, + 0.026194856, + 0.0022805375, + -0.013920726, + 0.002120538, + -0.017823057, + -0.004445314, + 0.01811935, + 0.012442232, + -0.030419754, + 0.0043142005, + -0.0056211655, + -0.011420101, + -7.896E-4, + -0.004181732, + -0.012481768, + -0.02016303, + 0.014464368, + 0.0074285637, + 0.008510432, + -0.0038468859, + 0.021879349, + -0.018976498, + 0.0068530203, + 0.0031540382, + 0.00964313, + 0.020026438, + 0.013440372, + 0.010276737, + 0.024941452, + 0.0023937235, + -0.013547343, + 0.0061038574, + 0.02030058, + -0.0043043126, + 0.017639397, + 0.013218131, + 0.014558984, + 0.012483705, + 0.006929316, + 0.02910984, + -0.012274472, + 0.01797346, + -0.021272583, + -0.006502369, + 0.02087697, + -0.0133212395, + -0.0106850285, + 0.024827741, + 0.009000723, + -0.003528402, + -0.0043633156, + 0.010891685, + -0.018712455, + -9.372155E-4, + -3.593729E-4, + -0.007261176, + 0.0093645165, + 0.008536349, + -0.01856774, + -0.025211502, + -0.008613724, + -0.008337074, + -0.01613793, + -0.029013315, + -0.04115971, + 0.019668935, + -0.0030894857, + 0.016132787, + -0.0154746715, + 0.0055782646, + 0.037412144, + -0.0033812968, + 0.018617455, + 0.011515218, + 0.0064745992, + 0.007175245, + -0.01619725, + 0.009511796, + -0.004168356, + 0.0038822605, + -5.9486247E-5, + -0.0049033496, + 0.018012002, + -0.014186493, + -0.012505362, + -0.0020748465, + -0.029232776, + 0.0064015933, + 0.028165733, + 0.010352862, + -6.1991764E-4, + -0.007463062, + 0.034483824, + 0.01676254, + 0.0035726402, + -0.0049337223, + 0.012775145, + 0.008068419, + 0.0049157776, + 0.0038017358, + -0.006445465, + 0.018598942, + 0.007485361, + -0.008304702, + 0.022805458, + -0.008196389, + 0.015912829, + -4.5537733E-4, + 0.019697309, + 0.014551307, + -0.009464215, + 0.0061950455, + -0.016098754, + -0.015029847, + -0.012152473, + -0.011954087, + 0.019793432, + 0.003564073, + -0.002536782, + -0.014935844, + 0.025689859, + 0.0017698156, + -0.018422196, + 0.020414246, + -0.016441314, + -0.0033713744, + -0.01308174, + -0.028715126, + -0.009528796, + -0.0040120203, + -0.014552046, + -0.018100465, + -0.014548248, + -0.013527038, + 9.5656945E-4, + 0.03804868, + 0.014491721, + -0.016725445, + 0.014731573, + -0.0059429766, + 0.0049875313, + -0.023547122, + 0.028637296, + 0.0023142875, + 0.0016574016, + -0.0038427275, + -0.00807436, + 0.0071760886, + 0.012746645, + -0.0018675929, + -9.939328E-4, + -0.017272687, + 0.011237845, + 0.020919543, + 0.01047443, + -0.0015552349, + -0.012388603, + -0.010554706, + -0.0010211854, + -0.011583299, + -0.0128371315, + 0.00903959, + -0.0076382607, + 0.022175714, + -7.6240295E-4, + 0.0064446772, + -0.023149036, + 0.0076711522, + 0.015823243, + -0.014605302, + 0.019868644, + -0.018034182, + 0.011779594, + -0.0018609504, + 0.030497456, + -0.020810962, + -0.017845586, + -0.014230054, + 0.008448237, + -0.010293648, + 0.02503907, + 0.002431665, + -0.01437712, + -0.008641797, + 0.010289349, + -0.028795838, + 0.032712083, + -0.0058349413, + -0.0030117354, + 0.02013012, + 0.009907545, + -0.004841392, + 0.021266732, + -0.0016343079, + -0.002282393, + -0.02701196, + 0.016270883, + 0.009478355, + 0.019238504, + 0.010817745, + 0.014901106, + 0.008649158, + 0.005467607, + -0.011527181, + 0.038461205, + -0.00831513, + 0.0076755555, + 0.008990382, + -8.4600435E-4, + -0.003016177, + -0.0061425683, + -0.01373727, + -0.007700455, + -0.02463624, + 0.0013232948, + 0.002316775, + 0.0078932885, + 0.011410966, + -0.029080411, + -0.030104581, + 0.024773182, + 1.7190402E-4, + -0.015181848, + 0.00975749, + 0.019081062, + 0.010783045, + 0.015612517, + -0.008983144, + -0.023952872, + -0.012188221, + 0.009848464, + 0.012205146, + 0.003886952, + 0.0037417586, + -0.010686361, + 0.017697541, + 0.007865541, + 0.0145233525, + -0.008858627, + 3.234781E-4, + -0.006080993, + 0.0010679868, + 0.047016073, + -0.0055083637, + 0.0055436566, + -0.014262467, + 0.015483573, + 0.02777308, + 0.014012972, + -0.012834772, + 0.019582884, + -0.012475151, + 0.016422031, + 0.0075698486, + 0.03219798, + 0.028094934, + -0.018875744, + 0.015569663, + 0.023208907, + -0.018367458, + -0.03201329, + 0.015554476, + 0.0026866873, + -0.018534258, + -0.004266354, + -2.4098853E-4, + 0.015098668, + 0.011599432, + 7.119173E-5, + -0.012593712, + 0.015615265, + -0.007505396, + 0.013581998, + -0.010630676, + -0.014124345, + -0.005739466, + -0.014371307, + 0.031640995, + -0.0028426652, + 0.021320121, + 0.0052805278, + -0.011980734, + -0.0022840968, + 0.016337011, + -0.011569323, + -0.0021028034, + -0.0233635, + -0.013559383, + -0.0025191593, + 0.0046264087, + 0.016399741, + 0.011590392, + 9.796353E-4, + 0.012966534, + 0.015038549, + -0.028381059, + 0.02411102, + 0.016848791, + 0.005198329, + -0.024133394, + 0.0033740173, + 0.014680316, + 0.007300551, + -0.009493303, + 0.04819752, + 0.017303301, + -0.0060971226, + -0.013807564, + 0.006006319, + -0.016919099, + 0.013632288, + 0.0063565215, + -0.001924807, + -6.278505E-5, + -0.030508721, + -0.015138936, + 0.0038458656, + -0.013072076, + -0.0076237516, + 0.019027667, + 3.1935127E-4, + -0.01543321, + 0.0019785794, + 0.016084496, + -0.008478478, + -0.01908679, + -0.020408742, + -0.0060108756, + 0.018592028, + -0.003924473, + 0.023341853, + -0.020775942, + 0.004154454, + 0.0020402404, + 0.0042529185, + 0.0046004867, + -0.017339952, + -0.045897387, + -0.007646731, + 0.009454707, + -0.0039271815, + 0.008306955, + -0.013127001, + 0.0024721033, + 0.02207461, + 0.010122402, + -0.012552215, + 0.01984445, + 0.027925361, + -0.0015804819, + -0.0153913135, + -0.010314804, + -0.021812476, + -0.023015477, + 0.012314676, + 0.015464223, + 0.022667954, + 0.016950266, + -0.021745963, + -0.015018293, + -0.014071248, + 0.0039372533, + 0.020956999, + 0.002823468, + -0.0014906324, + -0.011705184, + -0.016026556, + 0.015062437, + 0.0011863655, + -0.005827952, + -0.009248108, + 0.033895034, + 0.013875929, + 0.007767772, + 0.0014275637, + -0.0048907697, + -0.012761455, + 0.0053972346, + -0.0025221757, + 0.01881533, + -0.020493407, + 0.0151738385, + -0.026532803, + -6.918427E-4, + 0.007610162, + 0.010910771, + 0.033468403, + -0.015156751, + -0.02242265, + -0.0138102565, + 0.008759916, + 0.011821579, + 7.0627517E-4, + -0.024222171, + 0.015407634, + -0.0029687155, + -0.010670488, + -9.3230826E-4, + -0.0017744297, + -0.004289543, + -0.0063192695, + -0.04556387, + 0.0038159036, + 0.0027307211, + 0.014250463, + -0.016980786, + -0.005851371, + -0.010791973, + -0.0028254774, + -0.011785773, + -0.029186772, + 0.016811471, + 0.02474141, + 0.01426376, + 0.0029326072, + -0.0032749549, + 0.013363369, + 0.01663556, + -0.007123376, + 0.016577015, + 0.01195943, + -0.001553149, + -0.003305721, + -0.025110073, + -0.007983412, + -0.005273784, + -0.0060369982, + 0.0065296493, + -5.9073884E-4, + -0.010693995, + -0.014872904, + -0.006289541, + 0.028361235, + -0.024529476, + -0.018126132, + 0.013291905, + -0.0017772766, + -0.0016377373, + -0.004111703, + -0.0015358726, + -0.017793166, + 0.001293412, + -0.033892144, + -0.0022552107, + -0.039704908, + 0.004516538, + 0.009205351, + -0.020717625, + 0.0048301006, + -0.0054889545, + -0.014894513, + -0.032973465, + 8.2704175E-4, + -0.0011998385, + 0.001455395, + -0.009042957, + -0.011276788, + 0.0048058163, + -0.011048042, + -0.0021210895, + -0.0024173297, + 0.021385735, + 0.0063410196, + -0.039675236, + -0.0020419247, + 0.011761208, + 0.004350445, + 0.0086683, + 0.0032627946, + 0.0034847904, + 0.028873151, + 0.009950473, + -0.019410634, + 0.0074791894, + -0.01965526, + 0.014425331, + -5.9113407E-4, + 4.3844065E-4, + -9.146191E-4, + 0.005924841, + 0.01065434, + -0.016006904, + -0.030128883, + 0.013323555, + 0.0011008987, + 0.012161762, + 0.008103549, + 0.004354521, + -8.4937946E-4, + -0.008850097, + 0.013746663, + -0.014742168, + -0.012886638, + 0.034041576, + -0.002255811, + -6.653485E-4, + -0.0016421282, + -0.031608924, + 0.017790714, + 9.898489E-4, + -0.023637904, + 0.0063311546, + 0.004359448, + -0.01977417, + -0.011354503, + 0.007894469, + -0.012352975, + 0.0017983415, + -0.01359162, + -0.012255506, + -0.015551595, + -0.0027790628, + -0.022412276, + 0.011075387, + -0.011548564, + 0.027331935, + -0.00891924, + 0.0106881205, + 0.0031016374, + 0.026797445, + 0.0022643162, + 0.03688363, + 0.006501083, + 0.003142306, + -0.011752917, + 0.0077891494, + -0.024668453, + -0.015143998, + -0.024053788, + -0.0013835465, + -0.016178941, + 0.017639548, + 0.007853897, + -0.017957948, + 0.014899492, + -0.016438711, + 0.015970316, + -0.013596742, + 0.013492348, + -0.0044398857, + -0.023471376, + -0.0141009195, + -0.0024982654, + 0.013462451, + -0.008458277, + 0.009221946, + 0.01195922, + -0.0075162463, + -0.0065800194, + 0.0012873779, + -0.005082172, + 0.012479355, + 0.021790188, + 0.0025042235, + 0.0063916612, + -0.009798052, + 0.014080793, + -0.01259254, + 0.011182955, + -0.011710116, + 0.00570655, + 0.0048232554, + 0.0033985453, + -0.0017947129, + 0.001800745, + 0.014294613, + 0.008173768, + -0.009108446, + -2.5571694E-4, + -0.03132952, + -0.009391498, + 0.018199058, + 0.017263222, + 0.019531868, + -0.011894899, + -0.035664044, + 0.0053320434, + 0.0046291985, + 0.004283904, + -0.036218826, + -0.0012939872, + -0.012507823, + -0.018515524, + 0.034165382, + 0.007766708, + 9.1835344E-4, + -0.028575797, + -0.024981989, + -0.008001687, + -0.03642247, + 0.0129914535, + 3.8838162E-4, + 0.012821963, + -0.019914538, + 0.021320214, + 0.012950263, + -0.020837752, + -0.0045880163, + 3.9509014E-6, + -0.011395266, + 0.02649089, + 0.015420545, + 0.0062434454, + 0.0020090782, + -0.004658692, + 0.0047887345, + -0.011621791, + 0.01400096, + -0.016721567, + -5.902093E-4, + 0.0151712, + 0.00614235, + 0.024522776, + -0.009062707, + 0.0035699478, + 0.02345336, + -0.042701807, + -0.018286234, + 0.03064486, + 0.016478501, + 0.013434165, + 0.0012431891, + -0.016074272, + -0.03331333, + -0.018943682, + -0.01640343, + 1.4435411E-4, + 0.0102315, + 0.050464373, + 0.017014867, + 0.0030244759, + -0.010032335, + 0.010483639, + 0.0025462427, + 0.018749012, + 0.014395824, + -7.9464115E-4, + 0.013007604, + 0.015505297, + -0.008262212, + -0.0017368448, + -0.012430789, + 0.0012391564, + 0.0018541339, + 0.0010587553, + 0.021202499, + 0.014997697, + -0.0060723904, + 0.009230379, + -0.0061906944, + 0.0014103125, + 0.0020111343, + -0.0026609977, + -0.0060239513, + -0.016398236, + -0.019513102, + -0.019507762, + 0.009894186, + -0.0012933578, + 0.015403148, + -0.0023455522, + -0.0078640925, + -0.008535491, + -0.008741755, + 0.0037996576, + -0.011198802, + 0.007160506, + 0.008628488, + -0.0116264215, + 0.002507768, + 0.0044568414, + 0.0140587585, + -0.0029661963, + 0.008340305, + 0.0052445317, + 0.0052689933, + -0.014494399, + 0.009410046, + -0.0045543346, + -0.020909488, + -0.03749268, + 0.0011401719, + -0.0010606588, + 0.0012361583, + 0.007606334, + 0.003517722, + -0.019303804, + -0.0058166347, + 0.0015235941, + 0.019694025, + -0.0014824327, + -0.012993826, + 0.02876556, + 0.010578205, + 0.007545435, + 0.014993787, + -0.005565725, + 0.005393628, + 0.020946788, + 0.023321547, + 0.0065515465, + -0.016202342, + 0.008889454, + 0.011114595, + 2.818623E-4, + 0.0028030195, + -0.006990502, + 0.013596902, + -0.0235285, + -0.0069195353, + 0.010098548, + -0.010048056, + 0.009993132, + -0.007144446, + 0.002566369, + -0.007640162, + -0.008702405, + 2.8879568E-4, + -0.013048359, + 0.018150892, + -0.016384512, + -0.006611464, + 0.017482826, + 0.009672152, + -0.0037780204, + -0.03471777, + 0.015629932, + -0.011029562, + 0.016829392, + 0.0031355256, + -0.0034863453, + 0.0014857237, + 0.0078722425, + -0.018780574, + -0.011603259, + 0.0017618285, + 0.0195055, + -0.0018552701, + 0.003065561, + 0.012503266, + 7.697755E-4, + -0.031780764, + 0.00479054, + -0.013941409, + 0.011235856, + 0.00583577, + -0.013298687, + 0.014022177, + 0.010045024, + 0.026900344, + 0.017573446, + -0.0122381775, + -0.010968852, + 0.019616399, + 0.0011222597, + 0.023942117, + -0.009845711, + 6.223349E-4, + 0.0043758606, + -0.010973832, + -0.010003805, + 0.008502106, + -0.0025952281, + 0.014508344, + 0.005684629, + 0.019748185, + 9.301727E-4, + 0.004182941, + -0.007971597, + 0.03554204, + -0.03157604, + 0.003342217, + -0.008250122, + 2.0167729E-4, + 0.018299637, + 0.025482744, + -0.009808847, + 0.028324353, + 0.02510424, + -0.013959027, + -0.013949002, + 0.017437598, + 0.020067113, + 0.017637618, + -0.024271466, + 0.033920996, + 0.0071864612, + 0.04298873, + -0.018267367, + 6.242403E-4, + -0.0029770723, + -0.003927965, + -0.031718723, + -0.0054537514, + 0.0071242945, + -0.0017811725, + 0.004782638, + 0.0061005955, + -0.0017226067, + 0.003901842, + -0.0047656195, + 0.029743673, + -0.0014701475, + 0.0076499553, + -0.003952362, + 0.013559102, + -0.002985702, + -0.009260862, + 0.008907983, + -0.011117268, + -0.0029127102, + -0.004161701, + 0.008479372, + 0.0044399817, + 0.019476473, + 0.0010203102, + 1.3009692E-4, + 0.042683296, + -0.015665347, + -0.013727183, + -0.014157838, + -0.008959633, + -0.031747565, + -0.010427821, + 0.00142546, + -0.014332318, + 0.0010582054, + -0.0067588957, + -0.007670489, + -0.0060742646, + -0.005887901, + 0.0251446, + -0.011514563, + -0.018038483, + 0.015041112, + 0.014590243, + 0.03657779, + -0.0054432405, + 0.0055040536, + -0.019390525, + -0.005486906, + 0.020394204, + 0.024551077, + 0.017329589, + -0.013599839, + -0.007377136, + -0.01222917, + -0.029649084, + -0.038595583, + 0.013127975, + -0.0018788527, + 0.0063397316, + 0.010971275, + -0.02995444, + 3.543097E-4, + 0.006270172, + -8.7233883E-4, + 0.010048842, + 0.016321836, + 0.0068382295, + -0.0042749443, + -0.012209796, + -0.0267044, + 0.0046323054, + 0.0024197719, + -0.018871378, + 0.011454225, + -0.0053383824, + -0.008056215, + -8.381026E-5, + 0.003858981, + -0.0016657567, + -0.019608209, + 0.013047286, + 0.010604297, + -0.034492828, + 0.002426225, + -3.9391167E-4, + 0.0011377615, + -0.009208331, + 0.030199839, + -0.029755061, + 8.8230876E-4, + -0.012159601, + -0.008864722, + 0.020990316, + 0.0032122042, + 0.015017935, + -0.0050575733, + 0.025257317, + -0.0069135134, + 0.01273096, + -0.026568906, + 0.0027922469, + -0.012954719, + 0.019974316, + -0.007285671, + -0.017634263, + 0.006848067, + -0.009996277, + -0.0070331423, + -0.03632527, + 0.0026294873, + -9.063995E-4, + 0.0018217239, + -0.008114329, + 0.026681203, + 0.004096984, + -0.0032735786, + 0.0062900023, + 0.023488702, + -0.0059044035, + -0.0025056435, + -0.018131005, + -0.00806452, + -0.007877458, + 0.0128264045, + 0.017747756, + 7.197437E-4, + 0.0013239456, + 0.01928393, + -0.0077572223, + 0.002324656, + -0.009797506, + -0.009872098, + -0.020566024, + -0.01500076, + 0.011204852, + 0.015018685, + 0.019403135, + -0.029979248, + 0.009969859, + 0.012270718, + -0.030250061, + 0.007908215, + -0.02745895, + 0.0014884446, + -5.39617E-4, + -0.009437446, + 0.008601696, + -0.01544198, + 0.018741949, + 0.007235861, + 9.318382E-4, + 0.010093949, + 0.017385855, + 0.030496612, + -0.0015175793, + 0.041043974, + 0.008225662, + 0.006955333, + -0.008683103, + -0.0020772847, + -0.0338973, + 0.001663343, + 0.013341492, + -0.012380621, + 0.005181934, + 0.009056876, + 0.02951407, + -0.0030492523, + -0.0025374957, + -0.019635666, + -0.011146839, + -0.010645591, + -0.0029218711, + -0.004217305, + 0.008002353, + 0.022863097, + -0.01013941, + -0.003481267, + 0.00650679, + -0.013474592, + 7.1126624E-4, + -0.00516027, + 0.011987571, + -0.023845697, + -0.005353124, + 0.026598813, + 0.016336525, + -0.016687075, + -0.015360255, + -3.8847944E-4, + -0.0064364667, + 0.009395364, + -0.01606436, + -0.018092824, + -0.01905563, + -0.0048228544, + -0.017617248, + 0.015034153, + 0.02253044, + 0.013900828, + 0.013428013, + -0.018060062, + -0.009676837, + 0.029167404, + -0.0061654244, + 0.028993562, + -0.0099849375, + -0.0064577246, + 0.0044920756, + -0.0077938223, + 0.0043363473, + 0.019480305, + -0.01752232, + 0.010560173, + 0.00971134, + 0.0129392715, + -0.032064326, + -0.0010145127, + 0.00864955, + 0.004810138, + -0.022643097, + -0.0012220708, + 0.013200259, + -0.03870853, + -0.0059399246, + 0.010250008, + 0.005665156, + 9.808945E-4, + -0.0052464954, + -0.010602253, + -0.0041184155, + 0.010465672, + -0.011279541, + -0.010112576, + 9.498716E-4, + 0.005007911, + 0.01997695, + -0.0024095818, + -0.007862855, + 0.02062015, + -0.028684016, + 0.0026284868, + -0.016477313, + 0.034500327, + -0.0023344827, + -0.0056912843, + -3.8447967E-4, + -0.015801918, + -0.0047750273, + -0.010062902, + -0.0028644006, + -0.017673856, + -0.015885761, + 0.0033100261, + 0.032482192, + 0.027767673, + 0.011485768, + 0.016158901, + 0.028167708, + 0.016724307, + -0.010457679, + 0.026161393, + -0.0018308174, + 0.011764545, + -0.0050360714, + 0.003812762, + -0.0061817546, + -0.012955237, + 0.012072918, + -0.033282693, + -0.024394887, + -0.011414888, + 0.03132838, + 6.466755E-4, + 0.016798493, + 0.052965276, + 0.029283278, + -0.033051487, + -0.031324822, + 0.006003801, + -0.0038828065, + 0.02320729, + -0.006099272, + -0.0013032554, + -0.002393815, + -0.020094085, + -0.004027408, + -0.03881729, + -0.013040865, + 0.011884388, + -0.015305777, + -0.03446267, + 0.0046255155, + 0.019152697, + -0.0013444864, + -0.010883039, + -0.008335759, + -0.017995015, + 0.034622848, + -0.007151264, + 0.010585038, + -6.935009E-4, + -0.0074583613, + -0.0074978587, + -0.022174828, + -0.02859762, + -0.005848175, + 0.007146157, + 0.041371033, + 0.025729802, + 0.006106786, + -0.012510485, + 0.01986059, + -0.013524868, + 0.019190203, + -0.0018379588, + -0.0023305782, + -0.01690835, + 0.045604743, + -0.01737687, + 5.624267E-4, + -0.0043761707, + -0.0031398882, + 0.021347081, + -0.026128279, + 0.013660256, + 0.0063495357, + -0.004029712, + -0.012762686, + 0.0019860454, + 0.008604324, + -0.033572685, + -0.0057702092, + 0.017037889, + 0.0069756163, + 0.006350665, + -0.025424069, + 0.008103841, + -0.018526187, + 0.009294739, + -7.763894E-4, + 0.014884067, + 0.014865604, + -0.018233633, + -0.030948108, + -0.011690742, + 0.0067746434, + 0.031178502, + 0.013259302, + 0.020658327, + 0.02313792, + -0.018711744, + -0.0068262583, + 0.0016547919, + 0.015044096, + 0.0045849076, + 0.0018731508, + -0.022978209, + 0.010322565, + 0.013581833, + -0.008198782, + 0.005382144, + -0.00648123, + 0.009452601, + 0.006035175, + 0.013759466, + -0.004368241, + -0.0013868232, + -0.01220805, + 0.0023947218, + 0.0020823246, + -0.018513711, + -0.005177086, + 6.293753E-4, + 0.017414954, + -0.00523735, + -0.052016504, + 0.01191763, + 0.023277268, + 0.030558452, + -0.01146323, + -0.023845298, + 0.041639652, + 0.019245839, + -0.025345296, + 0.0018451008, + -9.1307546E-4, + 0.0058629033, + -0.009337024, + 0.010291283, + -0.012795321, + -0.028658655, + -0.033282205, + -0.011626193, + 0.044286698, + -0.003654136, + -0.013006729, + 0.0041254954, + 7.123005E-4, + 0.002289491, + 7.425154E-4, + -0.016848886, + -0.014137513, + -0.01855823, + -0.004084425, + 0.033614587, + 0.02089522, + -0.021227323, + 0.018118326, + 0.02047278, + -0.009547106, + -0.015810743, + 0.014740939, + 0.0035363412, + 0.012940773, + 0.0025226297, + 0.010559215, + -0.0071819625, + -0.004455253, + 0.014283096, + 0.0074508125, + -0.0058519035, + 0.031053426, + -0.008087913, + 0.015742425, + -0.002511591, + -0.030555012, + -6.211462E-4, + -0.0066523347, + 0.0012792151, + 0.02140555, + -0.014615709, + -0.010572244, + 0.010942885, + 0.0066232225, + 0.016775955, + -0.017047202, + -0.012819185, + -0.0066085355, + 0.02451929, + -0.014918003, + 0.0018352052, + 0.01676595, + -0.03164519, + 0.016147224, + -0.009553375, + -0.019894904, + 0.013014016, + 0.011171268, + -0.0070385663, + -0.009784479, + 0.011124964, + 0.00870751, + -0.018834032, + 0.015026113, + -0.012537407, + -5.4756337E-4, + -0.01121805, + 0.014793274, + 0.0023637242, + -0.02509337, + 0.031022884, + 0.013169486, + 0.0091746, + -0.013273487, + 0.0027118993, + 0.009895305, + 0.0064365263, + 0.014582491, + 0.007883504, + 0.01037468, + 0.04385401, + -0.022247847, + 0.009934816, + 0.0029527692, + 0.026186435, + 0.0115167815, + 4.565881E-5, + -0.007008869, + -0.03835092, + 0.01269419, + -0.014949947, + -0.006203419, + -0.013892132, + -0.009304576, + 0.015380191, + 0.0025737986, + 0.0122738285, + 0.014179498, + -0.0075675454, + 0.0065102624, + -0.012077808, + 0.0023038678, + 0.008046663, + -0.034871798, + 0.0058833156, + -0.023172718, + -0.0064144433, + -0.0033393195, + 0.021342393, + -0.019898826, + -0.0061325384, + 0.032133076, + -0.0036052358, + 0.002839164, + -0.001458113, + 0.021045076, + -0.0060011377, + 0.0063877273, + 0.0017319378, + 0.011113259, + -0.017866105, + -0.01899279, + 0.013518727, + -0.009501977, + 0.015485191, + 0.0058139963, + 0.016345846, + -0.026571108, + 0.0017282683, + 0.0067079826, + 0.012434828, + 0.0293626, + -0.00714825, + 0.020196913, + -0.0033108408, + -0.022617618, + -0.017723871, + 0.025809862, + -0.0082732, + -0.0038573928, + -0.003923341, + -0.005593981, + 3.8614185E-4, + 0.014107664, + 0.011082437, + -0.003308451, + 0.0014586991, + -0.022266032, + -0.001598367, + 0.013225723, + 0.026612036, + 0.001261587, + 0.012642981, + 0.00965381, + 0.015866613, + -0.0037770052, + -0.012800664, + 0.0016350992, + -0.007974343, + 0.005119483, + -0.013006033, + -0.01253923, + 0.017939547, + -0.0059167827, + 0.0075520105, + 0.0127322385, + 0.020533005, + 0.0013523808, + -0.026508788, + -0.013831881, + 0.004882697, + -0.01254879, + 0.017882464, + 0.020670911, + -0.0077343727, + -0.018612878, + -0.031016393, + -0.030356636, + 0.018528426, + -0.0150025375, + -0.0032174902, + -0.013246197, + -0.0044963844, + -0.016291566, + 0.013043318, + -0.008721451, + -0.010909689, + 0.018943414, + -0.01905434, + -0.002506723, + 0.0046443413, + -0.019950775, + -0.022079032, + -0.025464775, + 0.013922979, + -0.005826026, + 0.008483611, + -0.029391285, + -0.02045397, + -0.005297311, + -0.0022910822, + 0.0066189873, + -0.005528756, + -9.7803015E-5, + 0.019860936, + -0.017946575, + 0.024907164, + -0.0102178175, + 0.016740149, + -0.0016943953, + -0.01611344, + 0.001104137, + 0.0026250947, + -0.0019938545, + -0.0058565694, + -0.032326546, + -0.007274514, + -0.0062013133, + 9.831772E-4, + 0.016963966, + -0.012773674, + 0.016289672, + 0.003726516, + -0.0057113725, + 0.012482875, + 0.01812539, + -0.007183412, + -0.009428925, + -0.008835929, + -0.0022331597, + 0.02669096, + 0.0019955775, + -0.015596434, + 0.0052764253, + 0.009399926, + 0.017458364, + -0.001861386, + 0.0019883034, + 0.0029533156, + 0.008137608, + 0.00975408, + 0.003208949, + -0.015132531, + 0.0041465615, + 0.0066311234, + 0.019009069, + -0.009744263, + 0.014412056, + -0.0047983145, + -0.0016986516, + -0.010274212, + 0.012836821, + 0.013390173, + -0.025811875, + -0.008243752, + 0.007427664, + -0.009983246, + -3.2049685E-4, + 0.0068758987, + -0.011398948, + 0.0053215995, + -0.016091764, + -0.03726853, + 0.022545734, + -0.006980826, + -0.025019892, + -0.03334524, + 0.027631715, + 0.020834347, + 0.012921016, + 0.03194302, + -0.0074374643, + 0.0044299075, + -0.02332779, + -0.01998667, + 0.0019116416, + 0.04043582, + 9.597542E-4, + 0.0021610514, + 0.00913306, + 0.012131311, + 0.015486976, + 0.009544347, + -0.0069023343, + 0.005485902, + 0.027199047, + -0.016114375, + -0.0051218905, + -0.0035770037, + -0.01540187, + 0.011730779, + -0.004473338, + -3.012449E-4, + -0.010516665, + -2.0731085E-4, + 0.0032877487, + 0.0016408797, + 0.031099483, + -0.0022645004, + 0.010217762, + 0.0010403034, + -5.939268E-4, + -0.0012464846, + 0.025014812, + 0.03230742, + 0.006717174, + -0.0045738253, + -0.015002313, + -0.0030342513, + -0.012173598, + -0.0055770683, + -0.011663387, + 0.005287465, + 0.013010778, + -0.022785874, + 0.016731776, + 0.0077356165, + 0.01084819, + -0.0036844553, + -0.0050382954, + -0.019272214, + -0.0102654025, + -0.003416092, + 0.027883116, + 0.019070618, + 0.012905525, + -0.0057815495, + -0.0012958102, + 0.0016096756, + -0.0450066, + 0.008417661, + 0.026367348, + 0.029366639, + 0.01942502, + -0.004501099, + -8.6688437E-4, + 0.009017425, + -0.013551937, + 0.0123910345, + 7.4638013E-4, + 0.0016256471, + -0.010068951, + -0.015012819, + -0.014124744, + -0.019037005, + 0.009008993, + -0.021642929, + 0.0010092545, + -0.02960543, + -0.017996155, + 0.010147462, + -0.019546662, + -0.023194103, + -0.03219379, + -0.0015281171, + 0.01793782, + -0.031837173, + 0.0021252977, + 0.012802334, + -0.008558285, + -0.0027795867, + -0.004545108, + -0.020770328, + 0.015027193, + -0.011904794, + -0.012572865, + 8.4049907E-4, + 0.007170873, + 0.0095755365, + -0.015193913, + -9.700058E-4, + -0.014831028, + 1.3544936E-6, + -0.02784041, + 0.0063764215, + 0.012537591, + -0.0019745126, + -0.020667948, + -0.037315127, + 0.0017024687, + 8.866848E-4, + 0.0238653, + -0.02563044, + -0.005346255, + -0.016215006, + 0.016941525, + 0.02048752, + -0.023157142, + -0.015067026, + 0.03711863, + -0.005463592, + -0.0111054685, + -0.034296617, + -0.009336542, + -0.011303896, + -0.007806109, + 0.010843709, + 0.017757213, + -0.011893236, + -0.011043687, + -0.011277589, + -0.024371993, + 0.036719147, + -0.010647173, + 0.005811115, + -0.019965228, + -0.023754187, + 0.0013862461, + 0.020714289, + -0.007288332, + 0.010001075, + -0.010435437, + -0.011743345, + -0.008750011, + 0.0185036, + 0.012033717, + -0.0026392676, + -0.012002544, + -0.0045626587, + -0.008496562, + 0.0030594796, + -0.008348471, + -0.010062686, + -0.021796618, + -0.0135587305, + 0.011276264, + -0.004165337, + -0.014496139, + -0.0063279127, + 0.0047009625, + 0.01619762, + 0.023553465, + -0.022497494, + 0.012974381, + 0.0053882785, + 0.0013484262, + -0.026407218, + 0.007774073, + 0.015371833, + 0.004752074, + 0.011090956, + 3.179832E-4, + -2.3680921E-5, + -0.01848553, + 0.007235317, + -0.020700179, + -0.025766946, + -0.0014301563, + -0.028149478, + -0.014439443, + -0.026434435, + 1.9305038E-4, + 0.017257439, + -0.007752627, + -0.007392372, + 0.012908176, + 0.006285528, + -0.018292174, + -0.0051033334, + -0.0036614977, + -0.024537262, + -0.007824403, + 0.013429618, + 0.010206676, + 0.009619231, + 0.0028600942, + -0.010596559, + 0.024405269, + 0.004367384, + -0.0046543838, + 2.194878E-5, + 0.004788162, + 0.010097488, + 0.0028704873, + 0.012814898, + 0.007286608, + -0.019861916, + 0.016593691, + -0.02475053, + -0.026631499, + -0.013336183, + -0.016063433, + 0.029617393, + 0.018851886, + -0.011227762, + 0.020968892, + 0.043999158, + 0.0013000388, + -0.025419185, + -0.016564634, + 0.005903887, + -0.0052933795, + -0.0048526265, + 0.011695378, + 0.006600508, + 0.015431413, + 0.012638376, + -0.005373587, + -0.017868863, + -0.01372867, + 0.0025043369, + -0.014676499, + 0.01135935, + 0.039499234, + -0.0035832406, + -0.0058534406, + -0.015574687, + 0.021362284, + -0.0033965362, + -0.016646909, + 0.0010440754, + 0.010951563, + 0.01902779, + -0.012136039, + 0.0060199588, + -0.0052655824, + 0.0010275687, + -0.006505647, + -0.00998341, + 0.0051340065, + -0.010665709, + 0.0044723554, + 0.0035778834, + -0.008375492, + -0.01807156, + -0.0047891825, + -0.0075531704, + -0.005851508, + -0.010344166, + 0.008732973, + 0.005388894, + 0.0028202739, + -0.007429099, + -0.017235281, + 9.755951E-4, + 0.020362804, + -0.007177097, + 0.026633719, + 0.027817186, + -0.015194382, + 0.0023891935, + -1.240308E-4, + 0.018395277, + -0.01673933, + 0.027275076, + 0.01962622, + 0.01582566, + 0.0030711277, + 0.0051020174, + -0.026112542, + 0.019928435, + -0.04543858, + -2.1061962E-4, + 0.012592485, + 0.005902862, + 0.0092412485, + -0.006050585, + -0.018818757, + 0.0051832823, + 0.015410392, + 0.007916938, + 0.006159233, + -0.0023817099, + -0.021982241, + 0.00875237, + 0.0070105325, + 0.017162932, + -0.0045814905, + 4.939274E-4, + 0.017435977, + 0.0060427976, + -0.0057001947, + -0.0022793973, + -0.0060373824, + 0.027472112, + -0.052280076, + -0.016707279, + -0.010661844, + -0.010828991, + -0.0064929025, + 0.02075127, + -0.011560593, + 0.013690838, + -0.0017978451, + 0.03713153, + -0.0021059928, + -0.008589667, + 0.00380889, + 0.032532196, + 0.014261726, + 0.005317557, + 0.024433766, + -0.018859074, + -0.0018135918, + 0.02270168, + -0.012371246, + 0.0018085476, + -0.01804699, + -0.012434132, + 0.009880043, + 0.017517872, + -0.008804945, + -0.0118222255, + -0.0112230275, + -0.022832977, + 0.041506838, + 0.005313343, + 0.0069244206, + 2.933335E-4, + 0.0012286479, + 0.011343673, + -0.02099268, + -0.0025447397, + -0.012352319, + 0.011378848, + 0.019811992, + 0.0027581316, + -0.0035771043, + 0.013504655, + -0.010805985, + -0.014996234, + -1.582486E-4, + 0.013271194, + -0.020612957, + 0.010283935, + -0.012392825, + 0.0029773926, + -0.00795456, + -0.01514626, + -0.0036673977, + 0.0077626305, + -0.014393661, + 0.0068748645, + 0.02705172, + -0.013005316, + -0.016245732, + 0.016015122, + -0.036362905, + 0.0050311536, + -0.014921761, + -0.0047598155, + 0.0071334387, + 0.017269459, + 0.013079665, + -0.0031795073, + 0.005050423, + -0.013351656, + 0.018365882, + 0.016534464, + -0.01487755, + 0.032904394, + 0.0132336, + -0.007397629, + 0.007867751, + -0.02026001, + -0.013576452, + 9.525554E-4, + -0.010972952, + -0.0010214422, + 0.02420577, + 0.02921942, + -0.032742526, + -0.012086223, + 5.744455E-4, + 0.0030541061, + -0.006706366, + -0.001580846, + -0.016271275, + 0.0142043065, + 0.018608002, + 0.0029745216, + 0.010229607, + 0.0190379, + 0.0131075615, + 0.009342176, + -0.007972927, + -0.02871515, + -0.029187905, + -0.020926626, + -0.0249866, + -0.023337744, + -0.009772087, + 0.001075859, + 0.0013211324, + -0.01740746, + -0.007195502, + -0.010553217, + 0.0012696108, + -0.005471354, + 0.0029943988, + 0.010033337, + -0.018606486, + 0.004662645, + 0.015989395, + 0.022705395, + 0.001851016, + -0.029282605, + 0.0057466286, + 0.013310718, + -0.0013553993, + 0.012384581, + 0.0028981888, + -0.014711051, + 0.022874366, + 0.05547525, + -0.02265586, + 0.012498966, + 0.027520675, + 0.036933064, + -0.007441668, + 0.005304819, + 0.026059244, + 0.006040546, + 0.013607769, + 0.019783529, + -0.014480913, + -0.011442135, + 5.533243E-4, + -0.0068906373, + 0.026511602, + 0.0027900194, + -0.022669721, + -0.01974346, + -0.0059396876, + -9.76719E-4, + 0.0047098887, + 4.985056E-4, + -0.006202799, + -0.0052753086, + -0.020143358, + 0.025743734, + -0.0038749382, + 0.0030689873, + -0.015598606, + -0.0318566, + 0.015725128, + -0.0037243827, + 0.02269582, + -0.014751525, + -0.006877763, + -0.027758334, + -0.009893096, + -0.0024992276, + 0.010906568, + -0.012246351, + 0.015019693, + 0.012931173, + -0.018999254, + -0.026482938, + -0.004284728, + 0.006586467, + 0.02907632, + 0.015491966, + -0.019420816, + -0.0053896247, + -0.005019542, + 0.009844017, + -0.03471225, + -0.013066568, + -7.632425E-4, + 0.03295592, + 0.0061028735, + -0.024758266, + 0.010312763, + -0.015577461, + -0.028311972, + 0.0071731843, + 0.03733253, + 0.033640854, + 0.006030925, + 0.011901488, + -0.011485235, + -0.014353735, + 0.009761337, + 0.0018957378, + -0.0120944, + 0.0028863014, + 0.012777477, + -0.010137589, + 0.010343457, + 0.007027864, + 0.012513491, + -0.0041025733, + 0.0018288298, + 0.007966438, + -0.0023392427, + -0.0011435667, + 0.014059844, + 0.013980305, + -0.011747304, + 0.014915945, + 0.0011079018, + 0.024388235, + 0.010559114, + -0.032167155, + -0.017719312, + 0.0046136915, + -0.008658591, + -0.017802507, + -0.021267207, + 0.0010497665, + 0.01839309, + 0.008460964, + 0.0063456544, + 0.011530863, + 0.0060627176, + -0.012293823, + -0.002270205, + 0.011167234, + -0.025224179, + -0.0062084305, + -0.018534562, + 0.0057171113, + 0.0058002183, + -0.004866763, + -0.010666841, + 0.007128432, + 0.024975877, + 0.0051916176, + -8.735283E-4, + -0.017163629, + 0.028056182, + 0.029466974, + 0.011756966, + 0.0062875343, + 0.01185321, + 0.006634781, + 0.008526718, + 0.0015941163, + -0.005709037, + 0.026138514, + 0.02244656, + 0.009767238, + -0.016803045, + 0.00886155, + 0.0051510977, + 0.007443972, + -0.026344096, + 0.004940711, + -0.0037641386, + 0.03636506, + -0.0020850773, + -0.01080599, + -4.938845E-4, + 3.7964538E-4, + -0.013956482, + -0.0040118005, + -0.019278657, + -0.018519863, + -0.005691289, + 7.443564E-4, + 0.0033965753, + 0.03572031, + 0.0062859654, + 0.011987546, + -0.003781245, + -0.0025728052, + 0.013109583, + 0.011289835, + -2.8437775E-4, + -0.016735632, + 0.0074642324, + -0.010890526, + 0.007955424, + 0.02288795, + -0.013694842, + 0.026204064, + -0.006099574, + 0.023218477, + 0.030078618, + -0.008107927, + 0.020006921, + -0.009889728, + 0.021366678, + 0.0055458923, + -0.0036125393, + -0.018059386, + 0.005447995, + -0.0065435623, + -0.033570345, + 0.0027261882, + -0.0051951976, + -0.020761214, + 0.016944148, + -0.005510504, + 0.037475467, + -0.007285351, + -0.008297917, + 0.021573687, + 0.013954734, + -0.0034213334, + 0.00969564, + -0.013339441, + -0.0132787, + 0.004850934, + 0.049732458, + -9.900923E-5, + -0.018002985, + 0.017666705, + -0.009106839, + -0.018578786, + -0.00628136, + 0.013825436, + -0.02730351, + 0.0073111895, + 0.0073000737, + 0.023942415, + -0.007635612, + -0.0074043577, + 0.011813133, + 0.02825548, + 0.0012052972, + 0.024360206, + -0.0070987567, + 0.013771114, + -0.01152324, + -0.005248767, + -0.007064018, + -0.0107911285, + -0.018387297, + 0.0032086866, + 0.0141805075, + -0.017790433, + -0.0021920984, + 0.0059407884, + -0.0028602167, + 0.024113001, + -0.031035993, + 0.005262386, + 0.015707461, + -0.0013566205, + -0.023670245, + -0.014232964, + 0.0073633683, + 0.013201499, + -0.012960859, + 0.020772588, + 0.0020484112, + 0.014429684, + -0.0149419075, + -0.014322034, + -0.00651194, + -0.007230128, + -6.599759E-4, + -0.028855763, + 0.018898038, + 0.0067269313, + -0.0040946617, + -0.015101711, + -0.004790507, + -0.0017441576, + 0.035030432, + -0.021431528, + 0.011108641, + -0.0043241833, + 0.02936823, + 0.0025730047, + -0.0011758385, + -0.0027379459, + -0.011992979, + 0.004344063, + 0.03498361, + 0.016645128, + -0.011462399, + 4.6439766E-4, + -0.01649072, + -4.0920376E-4, + -0.013749487, + -1.8150208E-4, + 0.0040384224, + 0.01321331, + -0.005912364, + 0.010090452, + 0.009698189, + 0.006029493, + 0.017549362, + -0.0048424425, + -0.014390181, + -0.0056826365, + -0.013505798, + 0.013440708, + -0.016736621, + 0.0012932396, + 0.0066528567, + 0.008439942, + -0.011083572, + -5.4034207E-4, + -0.021983119, + 0.0020541758, + -0.001452614, + -0.012462675, + 0.004817725, + -0.009778512, + -0.012693702, + -0.015699875, + 0.0054827663, + -0.017611729, + -0.00320225, + -0.0033290263, + -0.034518585, + 0.0071453894, + 0.002646745, + -0.0037657581, + 0.013822668, + -0.01568689, + 7.6789205E-4, + -0.031773426, + -0.008082696, + 0.0030526018, + -0.01159297, + -0.007656393, + -0.005885832, + 0.0087780915, + 0.009043941, + 0.004888494, + 0.004422111, + 0.011466987, + 0.011627638, + 0.017078925, + 0.0067516034, + -0.0072362754, + -0.024779784, + 0.014040746, + -0.0011904063, + 0.0015737267, + 0.004745813, + -2.0530379E-4, + 0.025443682, + -0.015373331, + 0.014838538, + -0.03570752, + -0.0087939715, + 0.0051386803, + 0.018840922, + 0.020116847, + -0.025273187, + -0.034100495, + -0.021895435, + -0.0070153833, + 0.0016128056, + -0.0025089148, + -0.008611372, + -9.350953E-5, + -0.014447815, + 0.010563312, + 0.023152126, + -0.033142958, + 0.038084723, + -0.0021910165, + 0.014102892, + 0.016766552, + -0.008312741, + -0.009803054, + -0.0067062997, + -0.037905227, + -0.010739789, + -0.0015784019, + -0.00633356, + 0.010065996, + -0.004957793, + 0.005220305, + 0.01980464, + -0.024221083, + -0.018618286, + -0.003507759, + -0.007241976, + 2.9895524E-4, + -1.8038269E-4, + -0.007346379, + 0.009611393, + 0.022240778, + -0.010448096, + 0.010977581, + 0.008066401, + 0.011434653, + -0.0023902443, + -0.008699735, + -0.0070518195, + 0.005483714, + -0.010235631, + -0.013924237, + 0.0066103484, + 0.00583407, + -0.00649473, + -0.0035324423, + -0.015262744, + 0.012702469, + 0.009657495, + -0.0070235766, + -0.009780972, + -0.029536784, + 0.011890156, + -0.02070152, + -0.038363524, + -0.005606459, + 0.0050483467, + -0.013796464, + -0.019282017, + 0.003205954, + -0.01547475, + -0.03673579, + -0.00795039, + 0.016516985, + 0.009391922, + -0.0117844725, + -0.017199287, + 0.032921378, + 0.01047034, + -0.0049065137, + -0.015565479, + 0.010154586, + 0.0065665464, + -0.0017467239, + -0.0024686325, + -0.024036517, + 0.016069045, + 0.017031502, + 0.009431252, + -0.008523275, + -0.028828137, + 0.008584755, + 0.025214331, + 0.0030082606, + 0.007033646, + -0.0018377037, + -0.024319291, + 0.006868427, + 0.013611962, + 0.018640356, + -0.0056628687, + 0.0042582173, + 0.018166075, + -0.015508138, + -6.194072E-4, + -0.015712027, + -0.032409605, + 0.016661258, + 0.018905064, + -0.010483822, + 0.0068948558, + -0.025453279, + -0.03204357, + -0.025269646, + -0.001752544, + 0.016857719, + 0.013909777, + 0.018317474, + -0.006230541, + -0.02147131, + 0.020253502, + 0.0141657395, + 0.012228163, + -0.02272952, + 0.011505113, + 7.4934633E-4, + -0.011482509, + 0.03042206, + -0.024457322, + -0.011077934, + -0.024683263, + -0.019577265, + 0.02015821, + -0.005966481, + 0.0017973793, + -0.021756431, + 0.029131182, + -0.003744951, + 0.009683585, + -0.03514869, + -0.0016250536, + -0.01508279, + -0.020149104, + 0.0049011437, + -0.01950368, + 0.0029513773, + -9.0576295E-4, + -0.0028995094, + -4.7124975E-4, + 0.0016642709, + 0.013682906, + -0.004895379, + 0.0043348605, + 0.013225938, + -0.0203472, + 0.017264146, + -0.005071617, + -9.075685E-5, + 0.015775042, + 0.0011613403, + 0.008700233, + -0.004633898, + -0.026021516, + -0.017881583, + 0.011001041, + 0.007878513, + -0.014593732, + -0.0060747396, + -0.008796894, + 0.007096221, + 0.01929968, + -0.024476329, + 0.020715255, + 0.0376204, + 0.007100962, + 0.002194145, + 0.004282736, + -0.0142786335, + 0.016738141, + -0.029927824, + 0.009354872, + 0.02486561, + -0.006447049 ], - "paletteEmbedding": [ - -0.021005075, -0.021710334, 0.00905001, -0.002600137, -0.110262856, - 0.014912403, -0.037538555, -0.025471449, -0.009485343, -0.010566806, - -0.06781326, -0.0065470366, -0.007416544, 0.005953414, 0.034610324, - -0.008425575, -0.027446976, -0.018354474, 0.01044917, 0.018881634, - -0.0068988116, 0.010512946, 0.010234744, -0.018853843, 0.01060683, - 0.04398914, -0.013208457, 0.024109406, -0.09136793, -0.038981922, - 0.01591828, 0.040279623, 0.0584797, 0.0016286867, 0.008291575, - -0.047491, 0.008967316, -0.020739296, 0.0066222926, -0.039807398, - -0.03696178, -0.018277202, 0.018054947, -0.020397695, 0.017309148, - -0.010472335, -0.022951724, -0.02751841, 0.052142933, 0.015572856, - 0.017447041, 0.032008123, -0.030080777, -0.004295902, -0.040697765, - -0.028941294, -0.021771582, -0.04203795, -0.060255203, 0.0015151681, - 0.014387234, -0.019279938, 0.036101237, 0.00941949, -0.027153648, - -0.008209, -0.029390924, -0.0028257333, -0.070687436, -0.034796752, - -0.066279374, 0.003217191, -0.0034434376, 0.013740781, -0.016962167, - 0.030134602, -0.060854826, 0.06956171, 0.036457226, 0.015846858, - -0.015860405, -0.036376897, -0.00808162, -0.030710645, -0.062893555, - 0.035344414, 0.003317782, 0.03299722, -0.012575403, -0.05128749, - -0.027169239, 0.02742811, -0.047265798, 0.050125398, 0.003350546, - 0.010236109, 0.05114911, -0.044057034, -0.032563698, 0.0023554654, - -0.03022935, 0.0045059104, -0.035614073, 0.030965747, -0.039542582, - 0.010858542, 0.017553039, 0.014332522, -0.03194932, -0.06860759, - 0.016558236, 0.047095563, 0.0020426253, 0.057622273, 0.012468106, - -0.012405283, 0.026149374, -0.004637354, -0.022048743, 0.032961767, - 0.008409666, 0.017713826, -0.028490286, 0.0017810371, 0.0034760502, - -0.04302528, 0.032134622, 0.038498294, -0.06954989, -0.027720949, - 0.03231047, -0.0049547916, 0.001887638, -0.03715541, 0.019356586, - -0.013713401, 0.006424148, -0.017948274, -0.018369392, -0.027063837, - -0.0070735626, 0.033221483, -0.003269346, -0.0035967014, -0.048512176, - 0.015381802, -0.021203065, -0.033383682, 0.015999908, 0.02582704, - -0.028601045, -0.02713687, -0.013098558, 0.0021140815, 0.039391052, - -0.025785208, -0.046314567, 0.040316366, -0.0056398944, -0.0034991137, - 0.051303376, 0.039965753, 9.336305e-6, -0.0044895834, 0.026737021, - -8.3354453e-4, 0.041750476, -0.052758735, 0.022636294, -0.009891292, - 0.0127604585, -0.020287257, 0.027091818, 0.011458894, 0.014219941, - 0.034419008, -0.013901568, -0.010408622, 0.006221849, 0.06721271, - -0.04126703, 0.03591751, 0.002266229, 0.01442107, -0.03646271, - -0.03554955, 0.011968539, -0.027927453, 0.010460923, 0.042378023, - -0.0032678319, -0.06794546, -0.010426681, 0.005745322, -0.04416585, - -0.020792458, -0.042458683, -0.04169735, 0.05917001, -0.03683261, - 0.046237014, -0.030226672, 0.01751481, -0.0088923015, 0.032128703, - 0.0035196412, 0.0146011645, -0.014343709, -0.044370703, 0.0871225, - 0.004786369, -0.011479966, -0.032761168, 0.09920676, -0.009495554, - 0.0050671236, -0.016546754, -0.041769546, -0.04311975, 0.018098045, - 0.01526878, 0.025258487, -0.062118903, -0.025184773, -0.042671684, - 0.048454557, 0.0017151295, 0.0650119, -0.034046452, 0.06021748, - 0.039449465, -0.03671893, -0.0150632085, -0.032297686, 0.016181452, - -0.010162055, 0.03576816, 0.017658204, -0.03580955, 0.033831865, - -0.052629437, 0.04499928, 0.024718698, -0.020221291, -0.033077877, - 0.026603954, 0.010733069, 0.024001783, -0.011767932, 0.029587815, - -0.0029204239, -0.023203978, -0.0062480364, 0.014062737, 0.021170119, - 0.04589211, 0.025227865, 0.03268211, -0.025612606, -0.03382985, - 0.015210297, 0.02536223, 0.0045726285, 0.021727426, -0.047434147, - 0.046637774, -0.027821105, 0.032462634, 0.006140034, 0.054739367, - -0.004625423, 0.060996015, 0.009717144, -0.050607957, -0.028472105, - 0.011270933, 0.04546712, -0.0031040735, -0.011453741, 0.053180523, - -0.01145527, 0.015252413, -0.015733626, -0.033516258, 0.038720224, - 0.026145298, 0.036104303, -0.02721313, 0.035877798, 0.001991481, - 0.031397913, 0.02711147, -0.031982668, -0.030953154, 0.044539, - 0.023450067, -0.0010414287, 0.002723938, 0.020473272, 0.016530404, - -0.0044991034, -0.026196228, 0.03148351, 0.0077468175, -0.02916771, - 0.041783452, 0.0027406123, 0.0023817697, 0.0015639185, -0.026410284, - -0.02419567, 0.011643285, -2.3465705e-5, 0.033308294, -0.035559513, - -0.027468057, -0.006661168, 0.026685616, -0.010639013, -0.04338521, - 0.030709999, -0.009048111, -0.019237274, -0.031138701, -0.04772055, - 0.01662313, 0.006622401, -0.019485291, 0.024512062, 0.041042425, - 0.02451135, -0.004611536, 0.034277152, -0.008790552, 0.046740487, - -0.0076449947, -0.026351493, -0.014228445, 0.05055338, 0.01828003, - 0.014077616, 0.010448419, -0.012015839, -0.0060635395, -0.058257528, - -0.002641548, -0.023084763, -0.03459616, -0.031534277, 0.0029588782, - -0.0035241523, -0.075302094, -0.013186444, 0.029305588, -0.014241819, - 0.0050675008, 0.037844032, 0.011959278, 0.01057029, -0.017601445, - -0.030169066, 0.03392779, 0.046104394, -0.010812705, 0.030033734, - -0.017268851, -0.042849604, 0.006809701, 0.025114331, -0.007732223, - -0.071368314, 0.011036492, 0.008202246, -0.006651916, -0.0103233615, - -0.04772923, -0.045175575, 0.020522654, -0.030365905, 0.032184295, - -0.04413752, -0.03436895, -0.017190728, -0.0230392, 0.02606779, - 0.0070751025, -0.0028120868, 0.05588756, -0.009688222, -0.01709251, - -0.034628123, 0.00910122, 0.0570345, 0.038965635, 0.03709621, - -0.027783744, 0.014615064, 0.015955396, 0.018248377, -0.066686824, - 0.0038977163, 0.030484337, 0.017191818, 0.04061118, 0.033121902, - 0.017876914, -0.0077162553, -0.012057745, -0.013081044, -0.008461278, - 0.0108468905, 0.0016783817, -0.0518592, 0.02962388, -0.011666698, - 0.008223281, 0.0151755875, 0.010080946, -7.149447e-4, -0.03934084, - -0.033175208, -0.022319041, 0.0032992042, -0.042719413, -0.036658894, - -0.03255818, -0.0411021, -0.04705312, 0.023160802, -0.02150956, - 0.0093533555, -0.022889636, 0.0375095, -0.036324512, -0.01941192, - -0.032612514, -0.013523413, -0.04447784, 0.04579309, 0.0086656865, - 0.046393458, -0.004684299, 0.009208395, -0.017881082, 0.044319067, - -0.06287198, 0.02077117, 0.017921112, 0.039642975, -0.0028504315, - -0.040587973, 0.027048709, -0.034713354, 0.040859256, -0.010769803, - 0.014830899, -0.0140724685, 0.01613596, -0.10796871, 0.08275502, - -0.052956685, 0.007473777, 0.059305094, 0.022147572, -0.008999131, - 0.009869979, -0.018211192, -0.06361369, 0.018602123, -4.8986054e-4, - 0.042776328, -0.008402627, 0.045530174, -0.0077676405, -0.06484712, - -0.028449498, 0.031263005, 0.003099642, 0.036487676, 0.02877323, - -0.028178742, -0.026911706, -0.03965096, 0.025241118, -0.022917503, - 0.014261027, -0.015262173, 0.07308154, 0.0023613207, 0.032292105, - 0.020198628, -0.024829814, -0.044425435, -0.008766184, 0.0033504541, - -0.039160468, -0.011357619, 0.037985317, -0.011906507, 0.01624689, - -0.043978855, -0.026930615, -0.051312666, 0.03038201, 0.05160299, - -0.016586931, 0.0040091323, 0.042375553, 0.051806908, -0.025992064, - -0.03343832, 0.02005357, -0.023719959, 0.020322159, 0.02528283, - 0.07599771, 0.006599978, -0.008007739, -0.03996897, -0.013076616, - 0.01217113, 0.024563815, -0.025505055, 0.03745176, 0.03401549, - 0.03976977, -0.003903778, -0.06171251, 0.002347052, 0.030201845, - 0.020034892, 4.685436e-5, 5.2160147e-4, 0.034642123, 0.00949358, - 0.028289424, -0.030742, -0.025951073, 0.023615552, 0.011125536, - -0.021247761, 0.021448001, -0.01245387, -0.006812295, 0.021526821, - 0.012544977, -0.012160881, 0.03778404, -0.02097874, -0.03527784, - 0.008197532, -0.045167252, -0.041585386, -0.056215726, 0.029004214, - 0.023085723, -0.007843125, 0.014545572, -0.019972743, 0.016342735, - -0.016462248, 0.022158643, 0.031439815, -0.03292787, 0.03317915, - -0.04093769, 0.025247626, -0.025153182, 0.03343613, 0.024508381, - 0.036689673, -0.037041374, 0.035859864, -0.028493045, -0.006552758, - -0.0032822595, -0.058230747, 0.020662965, 0.03145048, 0.005571129, - -0.046089415, 0.005986891, -0.035768036, -0.045159757, -0.016470687, - -0.019500975, 0.0012950858, -0.008116024, 0.010896377, 0.012704875, - -0.067280546, 0.059543002, 0.019977875, -0.02412334, 0.011152879, - 0.0049587814, 0.008946683, -0.033399742, 0.016956765, -0.018500743, - 0.064317584, 0.034064528, -0.037090186, -0.0028653473, 0.010925395, - -0.05064329, -0.0063896584, -0.07467071, -0.059739113, -2.7401642e-5, - -0.011846757, 0.021423258, 0.022889532, 0.028098738, -0.010387184, - 0.035976276, 0.03918169, -0.0040731635, -0.025420804, -0.009912737, - -0.009738283, -0.06496663, 0.0061392654, 0.0030162183, 0.0058644456, - 0.011471379, 0.008872009, -0.019776765, -0.045586575, -0.027710626, - -0.03399233, 6.415031e-4, -0.0029846693, 0.0027517783, -0.042990085, - -0.029554665, 0.031740665, -0.068179466, -0.019452455, 0.008750365, - -0.037765607, -0.0010593531, -0.0062969276, -0.0530018, -0.049499962, - 0.06352758, -0.049388707, -0.0069487887, -0.032425486, 0.004001481, - -0.033000298, -0.018573826, -0.012177344, -0.024342986, 0.04978734, - -0.019463345, -0.011642139, -0.008868763, -0.024251318, -0.0071786284, - -0.009688129, 0.0028492128, 0.06136355, -0.013143733, 0.020644128, - -0.006144623, -0.067764364, 0.0108956015, -0.029602747, -0.032574177, - 0.051545106, -0.06204724, -0.004545127, 0.0040655686, -0.07093037, - 0.01380979, 0.013465666, 0.014993011, -0.059103113, -0.02313049, - -0.024586078, 0.009397435, -0.01736488, 0.014942313, 0.020727072, - -0.04296112, -0.018989136, -0.020423537, 0.027211327, -0.0076109692, - 0.015493027, 0.04753128, 0.050846998, 0.050677672, 0.0010986238, - 0.033430252, 0.035644554, 0.026473835, 0.002595903, -0.059841033, - -0.011513733, 0.019431774, 0.021347933, 0.044316188, -0.034970563, - -0.015180658, 0.040154304, 0.008297147, 0.014433555, 0.0044172076, - -0.0024656865, 0.014782204, 0.001378252, 0.023908917, -0.0015876536, - -0.011269032, 0.03601663, -0.048565917, -0.03794908, -0.014219385, - -0.043491613, 0.028198147, -0.004140707, 0.00991746, 0.0045197397, - 0.0063856808, -0.024718016, -0.042234726, -0.07179598, 0.05679996, - 0.009148229, 0.03911898, -0.007643948, 0.054620262, 0.0022310666, - -0.0039035617, -0.015011764, 0.019904181, -0.029833457, 0.017201731, - -0.056499816, -0.013019845, 0.01257076, 0.024948705, -0.04148309, - 0.030524198, -0.07020472, 0.015320106, -0.04485496, 0.0046572024, - 0.02191052, -0.045023125, 0.018110296, 0.026414668, 0.05837521, - -0.023176625, -0.019516688, -0.043875016, 0.002701878, -0.008482862, - -0.037592158, 0.03398333, 0.04574658, 0.018544504, 0.017690036, - -0.035983633, 0.0011274911, 0.026227592, 0.020385021, -0.019658877, - -9.525723e-5, -0.03317298, 0.015659353, 0.030607115, -0.012000619, - -0.02909382, -0.005545045, -0.039183564, -0.006283415, 0.053326763, - 0.037805807, 0.014289095, 0.057238616, 0.045903657, 0.031068113, - -0.0057677124, 0.009646213, -0.037734788, -0.01658488, -0.04965081, - -0.018370066, -0.014191672, 0.07096682, -0.025894662, 0.015212387, - -0.005911909, -0.018872246, 0.019498697, 0.028724095, 0.020765753, - 0.0031942348, 0.0029991944, -4.3080896e-4, 0.050626814, -0.030314011, - 0.0060510235, 0.02309057, 0.010943365, -0.010045175, 0.0016700417, - 0.065588124, -0.04732771, 0.009373162, 0.0032634516, -0.003636231, - 0.004353454, -0.03438001, 0.045872834, 0.039327953, -0.042916734, - 0.008618717, 0.03261156, 0.040912963, 0.029934725, -0.0030787906, - -0.002623951, 0.017888183, 0.004582697, 0.03391603, -0.04549127, - 0.016447203, 0.007995391, -0.041314088, -0.00410706, -0.04908646, - 0.030851837, -9.0099795e-4, -0.019276606, -0.04377846, -0.0223159, - 0.03581907, -5.494986e-4, -0.046000335, -0.031034144, 0.01761034, - -0.038875137, -0.033698283, -0.027500084, -0.0054593445, -0.014346575, - 0.017849019, -0.022651736, 0.022421742, 0.042609867, 0.032143727, - 0.013538885, 0.00390199, 0.045090444, 0.03164108, 0.010532962, - 0.035856057, -0.022133244, -0.0134211695, 0.024465801, -0.002368056, - 0.007735457, -0.020910818, -0.025743803, -0.030599749, -0.032528296, - -0.04969413, 0.026648702, 0.015967961, -0.021365544, 0.049979657, - 0.0084407395, -0.05482773, -0.05680448, 0.046259683, 0.036932893, - 0.025767993, -0.008627389, -0.032274023, 0.016902013, -0.01747898, - 0.012044044, -0.05492263, -0.05645249, -0.013722001, 0.026630135, - -9.560804e-4, 0.009163435, 0.00496725, -0.004162824, 0.014757567, - 0.03473948, 0.02327418, 0.0012929393, -0.052652515, 0.021820853, - -0.054129582, 0.004232478, -0.01957022, -0.007888743, -0.0018370952, - -0.053847253, 0.011851244, -0.026727073, -0.060485538, 0.030010171, - -0.010109579, 0.02951054, 0.01050448, 0.016290648, -0.021761268, - 0.0063310205, 0.029175142, -3.8500276e-4, 0.010063761, 0.006466743, - -0.03462282, -0.0385122, 0.056687403, 0.009588156, -0.008258693, - 0.023462662, 0.036693677, -0.025215123, 0.006743988, -0.062301446, - 0.02131511, 0.043200146, -0.01294851, -0.009774688, 0.05247705, - 0.023898879, 0.027111053, 0.00577726, -0.03995486, 0.0020804154, - -0.062048562, 0.02883579, 0.032533184, -0.02872036, -0.055211805, - 0.038202737, -0.043138586, 0.035569012, -0.09807928, -0.016987283, - 0.023141555, 0.014442046, -0.029885327, 0.01959541, 0.0792314, - 7.481549e-4, -0.046511985, -0.04347093, 0.0023869136, 0.011711449, - 0.009911727, -5.311394e-4, 0.031509355, -0.061171517, 0.0036198755, - 0.03420719, 0.0074376124, 0.006909913, -0.014245479, 0.0048684413, - -0.003419613, 0.04095319, -0.07731767, 0.018469928, -0.024896065, - 0.061877545, 0.05644366, -0.011993133, 0.039505333, 0.0056998516, - -0.007882727, -0.04982119, -0.007164249, 0.017605882, 0.015636886, - -0.0052143703, 0.021710422, 0.05199407, 0.029364074, -0.004271301, - -0.0593924, -0.020330705, 0.040911373, 0.012803567, 0.0030375824, - -0.0014003, -0.04201201, 0.05467412, 0.027538564, 0.026590066 + "paletteEmbedding" : [ + 0.015579665, + 0.08296932, + -0.061539963, + -0.053429402, + -0.06985266, + 0.0384201, + -0.010718244, + 0.02397318, + 0.016289994, + 0.0059159915, + 0.05688437, + -0.019272707, + 0.049743928, + 0.08277814, + 0.012985556, + 0.019290196, + -0.011636481, + 0.005581892, + 0.029698191, + -0.028233686, + -0.008526118, + 0.0052919397, + 0.030013343, + -0.027562466, + 0.014938269, + 0.031824358, + 0.042378813, + -0.006919892, + -0.03688699, + -0.021401886, + -0.024422675, + -0.040645495, + 0.011191185, + 0.026302297, + 0.03219158, + -0.005381779, + 0.018139426, + 0.050237305, + 0.0029556095, + 0.014049867, + -0.009097984, + -0.02548756, + 0.044480067, + 0.006391638, + -0.04806724, + -0.027003586, + -0.0077002514, + -0.020124277, + -0.023996392, + 0.043773152, + 0.024489677, + 0.035672583, + -0.01138298, + -0.019150117, + -0.02994736, + -0.026773747, + 0.012895305, + -0.042966336, + 0.012059395, + 0.033540107, + 0.008514344, + -0.033949517, + 0.0014369879, + 0.0052261027, + 0.013281922, + 0.01569409, + 0.017265908, + 0.019384304, + 0.022047611, + 0.016429257, + -0.023015074, + -0.017194979, + 0.007996437, + 0.010645345, + -0.016410947, + -0.013577392, + -0.016577689, + -0.040127724, + -0.031666122, + -0.022748357, + 0.023429722, + -0.020785686, + 0.03542357, + -0.026389742, + 0.013903455, + -0.05468948, + 7.516227E-5, + 0.027517457, + -0.0061483257, + 0.04965154, + 0.023172446, + -0.05490571, + 0.055833165, + -0.069900654, + 0.0016192057, + -0.0048291385, + -0.027425446, + -0.05101658, + -0.020455865, + 0.0048719826, + -0.019976774, + -0.046581976, + 0.046429753, + -0.02271166, + 0.012118, + -0.043681957, + -0.030139955, + 0.079746924, + -0.0313517, + 0.030182667, + 0.012512423, + -0.016538536, + -0.0080168275, + -0.043610133, + -0.001170618, + 0.0031002813, + 0.088037804, + 0.0040271482, + 0.03357177, + -0.044314563, + 0.030116426, + 0.02049854, + 0.036604244, + 0.008402343, + 0.036361147, + 0.023864996, + 0.054915067, + -0.013611248, + -0.028631954, + 0.0044192304, + -0.03038134, + 0.006477192, + -1.414399E-4, + -0.02598153, + 0.041744713, + 0.059415095, + 0.03479828, + 0.017844714, + 0.013372243, + 0.022958241, + 0.04527815, + -0.041935332, + -0.05302432, + 0.035846416, + -0.015902916, + 0.004573589, + -0.024681695, + -0.012981202, + -0.004522307, + 0.050672557, + 0.009520965, + 0.025742466, + -0.026429616, + -0.015344474, + 0.03158249, + -5.9036596E-4, + 0.02417648, + 0.020331703, + 0.04170853, + 0.0320592, + 0.021816026, + -0.001155582, + 0.005435812, + -0.013325673, + -0.02354589, + -0.0133868875, + 0.038598772, + 0.023379022, + -0.030558042, + -0.0035412137, + -0.03945188, + 0.01445224, + -0.03292098, + -0.056660406, + -0.011905491, + -0.02054419, + -0.0128069855, + -0.011731571, + -0.07168342, + -0.01719357, + -0.030971762, + -0.0043787113, + -0.0092197545, + 0.019034803, + -0.03150256, + 0.027283259, + -0.05853614, + -0.03295451, + 0.01619141, + -0.06110198, + -0.0043800594, + -0.0014997505, + 0.08663282, + -0.028718991, + -0.0013149844, + 0.008864252, + -0.021532664, + -0.012333739, + 0.0012808479, + 0.048265386, + 0.008002551, + -3.933364E-4, + 0.017408544, + 0.017472982, + -0.024693249, + 0.03494539, + -0.041721325, + -0.04322269, + -0.027733903, + 0.015089419, + -0.012670652, + 0.017887468, + -0.008462642, + -0.019312635, + -0.013316013, + -0.047689572, + -0.02451586, + 0.005160245, + 0.029573059, + 0.0023450274, + 0.004835846, + -0.0020498752, + 0.024153374, + 0.0100764185, + -0.0037791475, + -0.026446542, + -0.013046291, + -0.025067143, + -0.016482342, + -0.013848305, + 0.041648943, + 0.08968584, + 0.0061559468, + 0.029357607, + -0.05059472, + 0.006295801, + 0.03402041, + 0.0011122401, + 0.015571444, + -0.014237114, + 0.014890864, + -0.04084076, + -0.0357905, + -0.0121657485, + 0.031097192, + 0.009851352, + 0.018405646, + -0.003069777, + 0.029803874, + -0.007969755, + -0.0013006135, + -0.0019961768, + -0.0572683, + -0.057472583, + -0.025329258, + -5.197052E-5, + 0.0069348966, + 0.022813438, + 0.040426575, + 0.032107364, + -0.03962071, + -0.010094902, + -0.020056674, + -0.0480318, + -0.0027843397, + -0.023370693, + -0.014874303, + -0.0249257, + -9.5909147E-4, + -0.04605883, + -0.013548713, + -0.08537153, + 0.0071537686, + 0.008378458, + -0.042105477, + -0.0278965, + -0.033676133, + -0.07441362, + 0.0065657045, + 0.07793224, + 0.018504811, + -0.014770829, + -0.05134797, + -0.0069939066, + 0.0220782, + 0.009205985, + -0.02518711, + 0.024654167, + -0.02161132, + 0.068368025, + 0.008887382, + -0.0120716365, + 0.05457155, + -0.012926525, + 0.010121144, + 0.031861298, + -0.029899929, + 3.8606205E-4, + -0.013820634, + 0.0076662605, + -0.019892551, + 0.006376622, + 0.04239893, + 0.027008696, + 0.059195075, + 0.016162021, + 0.036113847, + -0.010754563, + 0.011337705, + 0.049336933, + 0.016219666, + 0.053237427, + 0.028435154, + -0.050089333, + -0.010295588, + -0.036890097, + -0.048139162, + -0.0014490905, + -0.07397566, + -0.017564353, + 0.020087762, + -0.028576942, + 0.0326716, + 0.022596417, + -0.02819664, + -9.888766E-4, + -0.069044605, + 0.0116040455, + -0.019075284, + -0.0040845107, + 0.021427352, + -0.010552357, + -0.013253936, + -0.03083645, + 0.048529908, + -0.015651297, + 0.0120219765, + 0.009598667, + -0.007431912, + 0.020639338, + 0.009597624, + -0.0051694894, + -0.0024152626, + -0.03529427, + -0.03599171, + -0.021992376, + -0.0049714185, + -0.022444792, + -0.0011489586, + 0.021858156, + -0.022391772, + -0.012256376, + 0.03482239, + -0.015484984, + 0.04251333, + 0.038787387, + -0.024273109, + 5.889934E-4, + 0.009237893, + 0.006724404, + 0.026956502, + 0.0058072344, + -0.05476901, + -0.0027089857, + 2.6677255E-4, + -0.020954883, + -0.04462033, + 0.020176131, + 0.031882133, + 0.0035997534, + 0.0080994945, + -0.019172028, + -0.044586737, + 0.010006824, + -0.010803315, + 0.053486273, + 0.0430615, + -0.0481904, + -0.019955713, + -0.040238537, + 0.0042374413, + -0.035939757, + -0.060396157, + -0.04325638, + 0.01038391, + 0.016472733, + 0.05110443, + -0.04193206, + -0.024605876, + 0.0100611625, + 0.044021454, + -0.03504685, + -0.041968375, + -0.012553882, + 0.0042638816, + 0.019911455, + -0.031012172, + 0.013651811, + -0.0074920687, + -0.013682667, + 0.020848261, + -0.035375066, + 0.018575655, + 0.069762215, + 0.0034214987, + 0.026864275, + -0.009822872, + 0.066551834, + -0.019679828, + 0.04341681, + 0.034777123, + 0.0040124618, + -0.01719898, + -0.04269423, + 0.03659969, + -0.016005464, + -0.024454203, + 0.018747197, + -0.10326501, + 0.049522974, + 0.027113784, + 0.017380971, + -0.014731688, + -0.021579776, + 0.021053499, + 0.011887727, + -0.0035745658, + 0.019467883, + -1.9295876E-4, + 0.016426232, + -0.04813911, + -0.029264463, + 0.025018556, + -0.0018605092, + -0.01159148, + 0.0115785785, + -0.052349586, + -0.058102813, + -0.024297977, + -0.012751246, + 0.058016695, + 0.033919215, + 0.053895548, + -0.017768484, + -0.060303878, + -0.049685985, + 0.013162641, + -0.09018077, + 0.0028981867, + 0.028069945, + 0.072205715, + 0.021790821, + -0.0011308732, + 0.023607913, + 0.030979455, + -0.043235727, + -0.014797885, + -8.2642713E-4, + -0.0052927793, + -0.013562328, + 0.011304385, + 0.0065407488, + 0.067395486, + 0.03278565, + 0.011994052, + 0.034736097, + -0.046143986, + -0.025878455, + -0.029525695, + -0.07459978, + -0.0018592277, + 0.012160403, + 0.017500455, + 0.05386701, + 0.03565065, + -0.05261932, + -0.033161186, + 0.0018014272, + 0.010718895, + 0.040430102, + -0.0352205, + 0.012651319, + 0.01074188, + -0.005634601, + 0.0085598575, + -0.0061174845, + -0.03628959, + 0.016221521, + -0.019248622, + -0.067722775, + -0.0036910782, + 0.0036872965, + -0.009927077, + -0.045691036, + 0.015797578, + 0.05501698, + 0.0086506065, + 0.017753208, + 0.014969819, + -0.05481247, + 0.025575511, + -0.026767744, + 0.011138009, + 0.0018249708, + 0.003670725, + 0.0072315796, + 0.018785492, + -0.047628157, + 6.857675E-4, + 0.03104868, + 0.015230194, + 0.02717048, + -0.052029792, + 0.067221746, + -0.025041819, + 0.016880939, + -0.010412324, + 0.020853654, + -0.0051763733, + -0.021275017, + 0.0032407262, + 0.045500595, + -0.05761788, + -0.0044716946, + -0.059298247, + -0.021961922, + -0.014423127, + -0.0018572735, + -0.021479575, + 0.05224004, + 0.038691882, + 0.005994063, + -0.009874199, + 0.026187342, + -0.009776805, + -0.0025587585, + -0.0020682553, + -0.014054854, + 0.079918176, + 0.050670885, + -0.05115112, + -0.010541955, + 0.02099483, + 0.015385, + -0.0028115825, + 0.01613253, + 0.013526825, + 0.0050176466, + -0.043546923, + 0.0034239653, + 0.010491126, + 0.028473534, + 0.033324283, + 0.0070371134, + 0.017134229, + 0.013442621, + 0.021326788, + -0.018768342, + 0.039895773, + 0.0030010766, + -0.022935972, + -0.06626391, + 0.01883669, + 0.017904522, + -0.059784498, + 9.343542E-5, + -0.035439465, + 0.013726465, + -0.049952716, + -0.02261874, + -0.033351738, + -0.0043954602, + -0.026885772, + -0.010162096, + 0.034341905, + -0.011826428, + 0.049617223, + -0.005108765, + -0.0024062984, + 0.0146758985, + 0.042827908, + -0.018242938, + 0.01622197, + -0.036892984, + 0.024755737, + -0.014564267, + 0.0032298109, + -0.02597103, + 0.0051792627, + -0.011114436, + 0.007421153, + -0.03839731, + 0.041193537, + -0.018038338, + 0.0037638205, + -0.010827792, + 0.022538273, + 0.026101816, + -0.018346453, + 0.023989923, + 0.036502745, + 0.028788589, + 0.04314926, + 0.003144719, + 0.030487534, + -0.034603458, + 0.021611797, + -0.03826407, + 0.036717713, + -0.0011659847, + -0.0032141053, + 0.0010135898, + -0.045674827, + 0.017569138, + -0.009200158, + 0.009346411, + -0.03601109, + -0.009702339, + -0.008672605, + -0.041945957, + 0.027818857, + -0.016442263, + 0.025719833, + 0.004094627, + 0.037085194, + 0.07709925, + 0.003353806, + -0.020847589, + -0.045645803, + 0.009429051, + 0.00438135, + 0.031960975, + -0.009229982, + 0.0493877, + 0.005698585, + -0.09725908, + -0.002408112, + -0.022827879, + 0.013829851, + 0.026555186, + -0.003058626, + -0.004108607, + -0.014767641, + -0.0012903189, + -0.049266133, + -0.030968374, + -0.029743183, + -0.05149506, + -0.039659142, + -0.04057157, + 0.10206373, + -0.017342761, + -0.0045081293, + 0.05886977, + -0.032852154, + 0.017563455, + 0.044512235, + 0.021917105, + 0.008761437, + 0.007670678, + 0.054691304, + 0.034262564, + 0.0393421, + -0.06559765, + 0.04059344, + 0.033410046, + 0.08652961, + -0.0070788558, + 0.034477226, + 0.016393315, + 0.018469634, + -0.0042429436, + 0.028110769, + 0.023916831, + 0.0058550113, + -0.008712499, + 0.05179176, + -0.06278391, + -0.009026869, + -0.005944623, + 0.038286526, + 0.0012986017, + -0.016123211, + 0.011958211, + -0.011461552, + -0.036179222, + -0.01902412, + 0.014714103, + 0.023025861, + 8.3405664E-4, + 0.016573658, + -0.02860454, + 0.028008442, + -0.018279573, + 0.069528475, + 0.0038811308, + 0.05628892, + 0.019772885, + 0.065033786, + 0.05835448, + -0.010914206, + -0.012643674, + -0.001720512, + -0.0063476083, + 0.0027982022, + 0.017027372, + -0.024164792, + 0.024286697, + -5.3333334E-4, + 0.006828138, + -0.013727732, + 0.025264883, + -0.016902545, + 0.04453451, + 0.0145059945, + -0.03371857, + 0.008028216, + 0.05151189, + -0.0056566745, + -3.1599906E-4, + -0.04128203, + 0.03314964, + 0.008023896, + 0.027140414, + 0.004082904, + 0.035843175, + 0.00805155, + -0.0033928184, + -0.0042544045, + 0.017839761, + 0.0026603006, + 0.0661411, + -0.03622926, + 0.01151025, + -0.069018535, + -0.06620021, + 0.02070612, + 0.015111553, + -0.01320258, + -0.024289504, + 0.030033417, + 0.06250582, + -0.043839995, + 0.025111504, + -0.010194947, + 0.026072728, + 0.008187348, + 0.024130182, + -0.012740803, + -0.04702144, + 0.008589342, + 0.02569755, + 0.015018928, + 0.0014858703, + -0.0023702676, + 0.039300766, + 0.01839995, + 0.013351954, + -0.015097133, + 0.00873275, + -0.009067401, + -0.03058254, + 0.022175176, + -0.020027244, + 0.043040447, + -0.023042357, + -0.04228158, + 0.075790845, + 0.018456046, + 0.0065227165, + 0.05153463, + 0.03507821, + -0.03734628, + -0.038549494, + 0.007851639, + -0.029283201, + -0.030878859, + 0.03494883, + -0.016624315, + -0.047342114, + 0.006899922, + -0.029306823, + 0.023078987, + 0.025457997, + -0.022605725, + -0.010292916, + -0.02238709, + -0.011759332, + -0.031496473, + 0.028972887, + 0.053735994, + 0.012013313, + 0.0240182, + -0.05078837, + 0.056383926, + 2.6134058E-4, + -0.010918979, + -0.010554377, + 2.0924326E-4, + 0.026376223, + 0.020958772, + 0.013662167, + 0.003069693, + -0.0130481785, + 0.047565687, + -0.04101269, + 0.026016625, + 0.017211728, + -0.010625425, + -0.025944185, + -0.028527753, + 0.009902569, + -0.017847838, + -0.021860277, + -0.010954466, + 0.038288884, + 0.006717214, + -0.017435106, + -0.036984485, + 4.865565E-5, + -0.017292488, + -0.02365891, + -0.0052574934, + 0.026128603, + 0.0010796189, + 0.014249402, + 6.3354947E-4, + -0.022884069, + 0.012665496, + -0.0010411827, + -0.005756887, + -0.024612406, + -0.0032517945, + -0.0081072375, + -0.051388208, + -0.010711802, + 0.03408289, + 0.020110317, + -0.023500567, + 0.0024227998, + -0.011662799, + -0.028198982, + -0.0042385836, + -0.0035011936, + -0.0136772925, + 0.032302745, + -0.028699085, + -0.0132711185, + 0.003487218, + -0.039042577, + -0.0063446164, + 0.011424649, + -0.0457779, + 0.02580171, + 0.03292976, + -0.018113151, + -0.025911149, + -0.03480732, + 0.025548078, + -0.07084703, + 0.04803517, + 0.053031877, + -0.035756823, + -0.03408875, + -0.020835837, + 0.024872115, + 0.0055873003, + -0.0109760165, + 0.031887922, + -0.05980019, + -0.014364657, + -0.051054593, + 0.012671299, + -0.017657783, + 0.012555712, + 0.004583226, + 0.045399256, + -0.026396919, + -0.0028236858, + -0.06250655, + -0.025569186, + 0.030764712, + -0.049231566, + -0.056210764, + 0.018745946, + -0.037504844, + -0.01650327, + -0.02668816, + 0.0060285004, + -0.012064067, + 0.047760714, + 0.033143673, + -0.0416806, + 0.05284248, + 0.07161358, + 0.036768764, + 0.022494875, + -0.039887335, + 0.005295869, + 0.020554332, + -0.009809437, + 0.04523122, + 0.03703621, + -0.04849408, + 0.055716917, + 0.06330154, + -0.010316403, + -0.021245368, + 0.030804826, + 0.031224206, + -0.0689145, + -0.020030407, + 0.014197624, + -0.021299506, + 0.06490895, + 0.012907598, + -0.020864932, + 0.0056103566, + -0.03598346, + 0.030193266, + -0.03954231, + 0.013132909, + 0.02968136, + 0.0120869605, + -0.007291437, + 0.056829125, + 0.03158986, + 0.057147477, + 0.01057841, + -0.034387033, + -0.036331587, + -0.027156135, + -0.061617132, + -0.021106506, + 0.015827207, + 0.0363844, + 0.03809254, + 0.028928088, + -0.01101559, + -0.024333987, + 0.008721016, + -0.086635195, + 0.003818323, + 0.07002506, + 0.00201774, + -0.02539023, + -0.01912601, + 0.05087149, + 0.046505246, + 0.022314545, + 0.007888255, + -0.056789663, + -0.037977308, + 0.014635149, + -0.008957163, + -0.03905503, + -0.06418812, + -0.02672433, + -0.038130388, + -0.006605144, + 0.009699038, + -0.051431052, + 0.026721321, + 0.032695215, + 0.0059470576, + -0.052373666, + 0.0109950155, + -0.023783574, + -0.0015758816, + -0.01695742, + -3.1366813E-4, + -0.03445093, + -0.0028620258, + 0.024712313, + -0.018149352, + 0.0039732256, + 0.012297794, + -0.027091993, + 0.0224878, + -0.014616292, + 0.011350485, + 0.010093928, + -0.0077114524, + 0.019194735, + -0.0306317, + -0.031399522, + -0.045119733, + -0.034749813, + -5.289443E-4, + 0.010963737, + 0.030750314, + 0.0059022363, + 0.0010574003, + -0.041782036, + -0.023012867, + 0.02810423, + 0.049063813, + -0.062905155, + -0.03353899, + 0.043635976 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.inferred-data.none.json b/common/search/src/test/resources/test_documents/images.inferred-data.none.json index eedda2add..d8e187301 100644 --- a/common/search/src/test/resources/test_documents/images.inferred-data.none.json +++ b/common/search/src/test/resources/test_documents/images.inferred-data.none.json @@ -1,112 +1,155 @@ { - "description": "an image without any inferred data", - "createdAt": "2023-11-21T14:25:43.984089Z", - "id": "ufcikdvs", - "document": { - "modifiedTime": "1993-08-20T09:44:34Z", - "display": { - "id": "ufcikdvs", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "an image without any inferred data", + "createdAt" : "2024-11-14T14:37:56.423442Z", + "id" : "gtanwhoe", + "document" : { + "modifiedTime" : "2033-11-17T21:40:10Z", + "display" : { + "id" : "gtanwhoe", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/OGW.jpg/info.json", - "credit": "Credit line: 8iiZ9XU0", - "linkText": "Link text: rlvl17FE", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", + "linkText" : "Link text: O63XqJ", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/OGW.jpg/info.json", - "credit": "Credit line: 8iiZ9XU0", - "linkText": "Link text: rlvl17FE", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", + "linkText" : "Link text: O63XqJ", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 1.0, - "averageColor": "#ffffff", - "source": { - "id": "1dxubvgl", - "title": "title-mMQJoSsmZw", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [], - "type": "Work" + "aspectRatio" : 1.0, + "averageColor" : "#ffffff", + "source" : { + "id" : "4nevz1ct", + "title" : "title-LU07b2voqu", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ + ], + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "ufcikdvs", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "1dxubvgl", - "sourceIdentifier.value": "2qrsqf64ot", - "identifiers.value": ["2qrsqf64ot", "Hk07S36Yqb", "hr8ZyzBT1J"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-mMQJoSsmZw" + "query" : { + "id" : "gtanwhoe", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "4nevz1ct", + "sourceIdentifier.value" : "Vu82EGkZo1", + "identifiers.value" : [ + "Vu82EGkZo1", + "5ONYuMkgt1", + "beQTH6WifJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-LU07b2voqu" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [] + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ + ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": [], - "source.production.dates.range.from": [] + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ + ], + "source.contributors.agent.sourceIdentifier" : [ + ], + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] }, - "vectorValues": { - "features1": [], - "features2": [], - "reducedFeatures": [], - "paletteEmbedding": [] + "vectorValues" : { + "features" : [ + ], + "paletteEmbedding" : [ + ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json b/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json index 4179672fc..7fc2b81dd 100644 --- a/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json +++ b/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json @@ -70,7 +70,7 @@ "cc-by" ], "inferredData" : { - "features1" : [ + "features" : [ -0.0038104886, -0.004290749, 0.015628112, @@ -2118,9 +2118,7 @@ 0.016929116, 0.01642473, 0.017184496, - 0.0049588257 - ], - "features2" : [ + 0.0049588257, -0.006573633, -0.011648598, -0.011027767, @@ -4170,1032 +4168,6 @@ 0.009221715, 0.0042489874 ], - "reducedFeatures" : [ - 0.022266503, - -0.005983966, - 0.008598283, - 0.012908194, - -0.006544138, - -0.0064450875, - 0.062000465, - 0.02349643, - -0.023313263, - 0.008032449, - 0.009580275, - -0.005259737, - 0.0064073335, - -0.014047141, - 0.013014633, - 0.023564141, - -0.041532412, - -0.05564138, - 0.002307697, - 0.0013227842, - 0.030708328, - 0.060612243, - -0.0058658584, - -0.055004112, - -0.07410741, - -0.03317929, - -0.035403114, - -0.016055401, - 0.008974816, - -0.014304739, - 0.020270156, - -0.059607092, - -0.06148739, - -0.021623308, - 0.0064127324, - -0.021297578, - 0.02970945, - 0.008715019, - 0.007473301, - -0.0031052148, - -0.0063456516, - -0.036121346, - -0.055258863, - 0.020247355, - 0.035264004, - -0.02395827, - 0.038115475, - -0.042948805, - 0.01888173, - -0.017637584, - -0.02343775, - -0.005153623, - 8.18866E-4, - 0.025785122, - 0.0072632553, - 0.0065793716, - -0.065720305, - 0.035570476, - 0.0087845065, - 0.05400504, - -0.05286625, - -0.017119298, - 0.06640377, - -0.039207622, - 0.012625129, - 0.073003456, - 0.0317444, - 0.025266442, - -0.03738352, - 0.0018210703, - 0.06093437, - 0.004761919, - -9.7084885E-5, - -0.040790886, - -0.019926263, - 0.021111034, - 0.010317847, - -0.067262106, - 0.027266964, - -0.015453145, - -0.039222285, - 0.011948949, - 0.02880447, - 0.035515133, - 0.01782683, - 0.019132275, - 0.023270052, - -0.018578686, - 0.049640756, - -0.03823595, - -0.016218081, - 0.04225976, - -0.03540159, - -0.061780993, - 0.05573368, - -0.059608493, - -0.018691944, - 0.043477, - 0.01269994, - 0.022961447, - 0.035441265, - 0.022160517, - -0.012578842, - 0.05594302, - -0.007629557, - -0.0017372046, - 0.054870255, - -0.0520548, - -0.021005368, - 0.021602627, - -0.008385654, - -0.030764518, - -0.046501927, - -0.017881887, - -0.018685613, - 0.008154392, - -0.04383683, - 0.036568746, - 0.014623358, - -0.0030685067, - 0.0028445683, - -0.005329406, - -0.0036636437, - 0.010779175, - 0.03678755, - 0.041796666, - 0.02270241, - 0.05041026, - 0.023351926, - 0.041793827, - -0.061930303, - 0.047464073, - 0.0066849934, - -0.00716431, - 0.053400934, - 0.004989594, - 0.0037129424, - 0.0058727595, - 0.01845577, - -0.016744805, - -0.048127826, - -0.03105881, - 0.0327647, - 0.022088135, - -0.0035552636, - 0.0126845185, - 0.0030897006, - 0.05997344, - 0.0023855474, - 0.018385708, - 0.006967796, - -0.015151996, - -0.015347442, - -0.00773752, - -0.018044425, - -0.024984257, - -0.0040193535, - -0.016184706, - 0.025714273, - -0.033883765, - 0.045631547, - 0.0019064347, - 0.013471723, - 0.020561518, - 0.026460968, - 0.006503011, - -0.015119978, - -0.040979147, - -0.014886616, - 0.040876973, - -0.026162822, - -0.030107921, - 0.03088103, - 0.033383194, - 0.015685223, - 0.022908155, - -0.0074037216, - -0.03583771, - 0.012683935, - 0.02192684, - -0.021062326, - 0.010605193, - -0.022839008, - -0.01269739, - 0.025588647, - 0.049752176, - -0.00752277, - 0.018555118, - -0.008978799, - -0.03260509, - -1.6334356E-4, - -0.013252059, - -0.05292722, - -0.014940985, - -0.009477968, - -0.029300451, - -0.041351475, - -0.021271395, - 0.10438595, - 0.01980343, - -9.5099467E-4, - 0.019806618, - 0.0339018, - 0.019288383, - -0.024347082, - -0.059461758, - -0.0023853506, - 0.019645331, - -0.031724293, - -0.010787415, - -0.03016785, - -9.1616635E-4, - 0.048731185, - 0.035694204, - -0.022143837, - -0.041040953, - -0.02497686, - 0.058088124, - 0.02680172, - -0.036909603, - 0.0014477755, - 0.041990187, - -0.012736278, - -0.012649377, - -9.6331845E-4, - 0.014275095, - -0.058695596, - 0.006359947, - 0.06457571, - 0.017958192, - -0.0039077397, - 0.012373249, - -0.013621783, - -0.0229637, - 0.043074876, - -0.0066574146, - 0.014544319, - 0.0178743, - 0.0412324, - 0.031254448, - 0.032633662, - 0.0732372, - -0.0028757968, - -0.010608822, - -0.05233961, - 0.060291536, - -0.018059436, - 0.039068237, - -5.21243E-4, - 0.0203782, - -0.038989116, - -0.0018454411, - -0.06066829, - -0.03561018, - -0.012527831, - -0.017496407, - 0.0077959653, - 0.05280639, - -0.0024735085, - 6.1055867E-4, - -0.0016669832, - 0.039450973, - -0.010080896, - -0.037711352, - 0.023718238, - 0.018358726, - -0.026974889, - 0.038581565, - 0.036546323, - 5.2268826E-4, - 0.022434013, - 0.013558683, - -0.018813083, - -0.0020018287, - 0.05189203, - -0.019609889, - -0.05712788, - -0.008834863, - -0.05320119, - -7.4495556E-4, - -5.982279E-4, - 0.018482737, - 0.04214306, - 0.020145115, - -0.043434612, - -0.013430199, - -0.046868198, - 0.047170047, - 0.022257205, - 0.008549225, - 0.040244047, - 0.011581636, - -0.026145022, - -0.03617235, - 0.03906206, - -0.007738836, - -0.016968453, - 0.007906651, - -0.027555749, - 0.034690037, - 0.0033728846, - -0.019800734, - 0.017394619, - -0.07061638, - -0.012636599, - -0.0358352, - 0.015384861, - 0.01855325, - -0.019210279, - -1.7921062E-4, - 0.012014066, - -0.0011101693, - -2.512422E-4, - -0.03411344, - 0.05524685, - -0.036506593, - -0.024432682, - -8.005952E-4, - -0.014462326, - 0.051639695, - -0.03922854, - 0.040986847, - 0.040299177, - -0.017733702, - -0.009437698, - -0.05797164, - -0.0038625824, - 0.010218911, - 0.021783449, - -0.02242619, - 0.029157823, - -0.010045729, - -0.02881365, - -0.02400728, - -0.04289504, - -0.07413378, - -0.052556835, - -0.012935907, - -0.015303473, - -0.0216729, - -0.04025831, - -0.009644745, - 0.03346577, - -0.022199767, - -0.01410268, - -0.013167551, - -0.024307113, - -0.0076184184, - -0.0055475477, - 0.0031213053, - 0.044305626, - -0.03125369, - -0.023924448, - -0.0335826, - 0.0035315906, - 0.023228621, - 0.00656572, - -0.008705045, - -0.0050870003, - -0.07206932, - 0.06263897, - 0.0071239457, - 3.662805E-4, - 0.059434358, - -0.033236448, - 0.002577737, - 0.024362983, - 0.0034778158, - -0.020089805, - -0.03136763, - 0.03201922, - 0.038165517, - 0.031337645, - 0.012434404, - 0.020905314, - 0.019102257, - 0.014930534, - -0.05856463, - -0.0037301672, - 0.064431585, - -0.0011068954, - -0.029795293, - -0.009047249, - -0.042757776, - 0.004940943, - -0.002694191, - -0.02180908, - 0.02585949, - 0.03549334, - -0.02600893, - -0.064476274, - 0.018619463, - -0.016749183, - -0.026520351, - 0.032554455, - -0.033133093, - -0.003575453, - 9.82037E-4, - 0.038010377, - 0.031800944, - -7.7794824E-4, - -0.011225335, - 0.04178934, - 0.028167756, - 0.01633045, - 0.05266522, - -0.010431709, - -0.03631837, - -0.04837531, - -0.015028375, - 0.033226818, - -0.0032719437, - -0.0044745263, - 0.0112336185, - -0.009054535, - -0.006313669, - 0.01726555, - -0.007898697, - 0.038939007, - -0.04201391, - -0.04207537, - -0.020353297, - -0.028423648, - -0.046861015, - -0.0066914684, - 0.009598492, - 0.053510025, - -0.031857878, - -0.010500457, - -0.03890141, - -0.009074589, - -0.023686824, - -0.021040054, - -0.040514227, - 0.063469104, - -0.0023158705, - -0.002712063, - -0.027717207, - -0.033852007, - 0.03145292, - -0.0089340415, - 0.0020449325, - -0.016679915, - -0.050917506, - -0.01918161, - 0.004049674, - 0.09411109, - -0.01986531, - 0.02671216, - 0.037545305, - -0.005298651, - -0.00913102, - 0.03350489, - -0.018848987, - -0.0081269825, - -0.07887057, - -0.029344227, - 0.05137059, - -0.0013805495, - 0.025804633, - 0.022576272, - 0.015564914, - 0.046374205, - 0.025245763, - 0.010732708, - 6.577827E-4, - 0.044405065, - -0.040961478, - 0.025613584, - 0.028913036, - 0.032218054, - 0.023671325, - -0.009508033, - 0.018025534, - 0.0025016742, - -0.008415264, - -0.014175919, - 0.036259383, - 0.0050147674, - 0.016470421, - 0.014032184, - -0.0044053323, - -0.047047697, - 0.02264473, - -0.0012495151, - -0.035259612, - 0.0061644204, - 0.015067067, - 0.049430896, - 0.015312583, - 0.0078580445, - -0.016034972, - -0.00448143, - 0.057378616, - 0.008867257, - 0.016063835, - 0.022379445, - 0.0059534265, - 0.03459928, - -0.010454033, - -0.026719341, - -0.032811172, - -0.006878874, - -0.006716808, - 0.017002309, - -0.015370046, - 0.018665057, - -0.02636862, - 0.01795784, - -0.007804542, - -0.007122001, - 0.033156298, - 0.032779094, - 0.022201266, - -0.0026532144, - 0.0139564555, - 0.0050184913, - -0.024060557, - 0.033028502, - -0.021294352, - 0.028284209, - 0.04125352, - -0.039099246, - -0.038732667, - 0.03853988, - -0.04202998, - -0.019626653, - -0.012029084, - 0.067526, - -0.051630802, - 0.035324935, - 0.01868961, - 0.0016379221, - 0.02132962, - -0.02946924, - -0.020020425, - 0.01001791, - 0.0014131621, - 0.031667113, - -0.020120895, - -0.019722568, - 0.009623325, - 0.004145865, - 0.021064166, - -0.03390351, - -0.057814408, - 0.035994448, - 0.030111162, - -0.07050591, - -0.03214207, - 0.0155708045, - -0.0025557561, - -0.0032504986, - -0.0111555625, - -0.05440651, - -0.027088862, - -0.026500653, - -0.031085301, - -0.0976316, - 0.024371266, - -0.02009752, - 0.021200482, - -0.0015207577, - -0.031483047, - 0.002130122, - -0.021703232, - -0.021978332, - 0.077344015, - -0.011816574, - -0.010714339, - -0.021860464, - 0.0044155256, - -0.019464513, - -0.03603885, - 0.015274792, - -0.004065295, - 0.026433796, - 0.0523971, - -0.064545095, - -0.022264019, - 0.0133870235, - 0.031323846, - 0.030333752, - -0.0029818215, - -0.02189961, - -3.4137195E-4, - -0.044669718, - -0.013975041, - 0.025652736, - 0.06590117, - 0.028830007, - -0.066896066, - 0.027099168, - 0.007593899, - -0.002945197, - 0.027041608, - -0.026355274, - -0.056601614, - 0.0047034337, - 0.033748128, - -0.00805056, - 0.0072275465, - 0.034877997, - -0.0028567454, - -0.059180915, - -0.021739686, - 0.030427095, - 0.05965004, - -0.025459364, - 0.0014305095, - -0.01572385, - 0.045699332, - -0.0034244326, - 0.04516102, - -0.048002988, - -0.004853093, - -0.001824428, - 0.04322322, - 0.00760915, - 0.0029669993, - 0.064922534, - -0.052170437, - -1.21185636E-4, - 0.0373771, - 0.009675091, - 0.032902453, - 0.021580642, - -0.018231312, - -0.013205894, - 0.011999064, - 0.034522735, - 0.03226475, - 0.03733738, - 0.031408455, - 0.035103694, - -0.009294938, - -0.02435523, - 0.01602297, - -0.0036789386, - 0.0061184345, - -0.025299113, - 0.011725995, - 0.037548583, - 0.001963398, - 0.027091315, - -0.030941648, - 0.009584754, - -0.008453375, - -0.010485574, - -0.01790483, - 0.017570248, - 0.03451033, - 0.033246446, - 0.025740163, - 0.019159695, - 0.048729777, - 0.057542734, - -0.024334751, - 0.041340526, - -0.032686792, - 0.028608028, - 0.0027064749, - 0.019215954, - 0.01609649, - -0.018612945, - 0.030877525, - -0.020413794, - 0.042886045, - -0.06770749, - 0.0138623305, - 0.008166461, - 0.015503369, - -0.09583782, - 0.02526755, - 0.0052671516, - -0.02939319, - 0.006589974, - -0.0579062, - -0.02934388, - 0.01390254, - 0.026687348, - 0.016328407, - -0.016519802, - -0.08102281, - -0.046822123, - -0.026714254, - -0.04929091, - 0.0313726, - 0.033316858, - -0.009816958, - 0.026627999, - -0.017465394, - -0.043700013, - -4.901652E-4, - -0.010523893, - -0.024116507, - 0.04045612, - 0.058717977, - 0.009519743, - 0.004966428, - 0.022648107, - -0.0027624723, - -0.001984083, - 0.011814928, - 0.023828112, - 0.008258217, - -0.0066794567, - -0.008527811, - -0.009223878, - -0.019572116, - -0.03775947, - 0.010132122, - 0.0053621093, - -0.021631617, - -0.02018503, - 0.024900367, - 0.008939124, - 0.0021043534, - 0.017713392, - 0.06435289, - 0.049975157, - -0.0013838249, - 0.0075162523, - 0.022903897, - 0.032774273, - -0.0044649728, - 0.012289955, - -0.02443082, - 0.031915985, - -0.010915416, - 0.0035936912, - 6.9136365E-4, - 0.02698218, - 0.016033955, - -0.04356708, - -0.02770653, - 0.043556966, - 0.017330745, - 0.03327395, - 0.002093197, - -0.04469053, - 0.0061286194, - 0.030058896, - 0.036454618, - 0.063752465, - 0.0055880765, - -0.057640616, - -0.0083518755, - 0.026220644, - 0.056693994, - 0.032248344, - -0.0023948846, - 0.029977389, - -0.04512444, - 0.021218004, - -0.022587646, - 0.016041722, - -0.046072807, - -0.013984202, - -0.06920097, - -0.020510085, - -0.0024226776, - -0.011150227, - 0.07485091, - -0.011381882, - 0.02815989, - 0.04508494, - -0.03411887, - 0.015977655, - -0.033807337, - -0.0017488828, - -0.02775476, - -0.011595911, - -0.023187784, - 0.030319287, - -0.009716269, - 0.0012209633, - -0.01342592, - 0.011821794, - -0.0072883232, - -0.025111482, - -0.0065392344, - 0.0100074755, - -0.037794128, - 0.035859555, - 0.02470233, - 0.02310084, - 0.028475277, - 0.021986593, - -0.02990328, - -0.007959468, - -0.0037190374, - -0.041167617, - -0.009568535, - 0.0034098423, - -0.017935967, - -0.019917818, - -0.06013767, - 0.039349224, - 0.017192641, - -0.028185364, - 0.008956498, - 0.01836761, - -0.030492185, - -7.606067E-4, - 0.0069753346, - 0.0211559, - -0.03270427, - -0.025069347, - -0.04586742, - -0.08732553, - 0.02282791, - -0.027994564, - 0.053320747, - -0.0038198342, - 0.05436284, - 0.018820487, - 0.043504715, - -0.020048324, - -0.05289293, - 8.852753E-4, - 0.00920763, - 0.007873884, - -0.02325456, - 0.022457253, - 0.02774221, - -0.037766688, - 0.011316257, - 0.03821533, - -0.026264615, - -0.013653246, - -0.0034287837, - -0.04520317, - -0.038743857, - -0.017242316, - 0.023566814, - -0.039712984, - -6.179004E-5, - 0.024751509, - -0.01550843, - -0.028886257, - -0.006488996, - 0.05514498, - 0.03127011, - -0.044440106, - -0.050165463, - 0.030909132, - 0.03932085, - -0.047802057, - -0.037432887, - -0.0033669816, - -0.0321122, - -0.01157139, - 0.009661551, - -0.029348882, - -0.022848947, - 0.0043600122, - -0.045422707, - 0.0486109, - 0.004224376, - 0.022575902, - -0.015500124, - 0.0027518268, - -0.047309387, - -2.7283246E-4, - -0.05225469, - -0.006562016, - -0.049586847, - 0.047442082, - 0.029749004, - 0.021268645, - -0.012555053, - 0.041133046, - 0.045615382, - -0.06899556, - 0.04164226, - -0.019988902, - -0.014235202, - -0.001631164, - 0.030525139, - -0.0067804516, - 0.07997342, - -0.012932288, - -0.032885693, - -0.07557726, - -0.029707436, - 0.05423505, - -0.048090704, - -0.037386045, - 0.012952774, - 0.034544498, - -0.035693526, - 0.047636848, - -0.011791175, - 0.036239453, - -0.010560466, - -0.0061447853, - 0.031120097, - 0.06181324, - -0.027774343, - -0.012995268, - 0.010909762, - -0.0126592945, - 0.016226271, - 0.039977662, - -0.062774785, - 0.030975427, - 0.023736496, - 0.0076396, - -0.024889603, - -0.03275202, - 0.044184245, - 0.04574447, - -0.016907988, - 0.0095418235, - -0.022041425, - -0.03763406, - 0.016542071, - -0.057371017, - -0.027518377, - 0.014363715, - 0.015642146, - -0.091080956, - -0.030200876, - 0.039430615, - 0.031415768, - 0.004785055, - 0.02441715, - 0.0053003673, - 0.010672676, - 0.011082699, - -0.022780864, - -0.04809457, - 0.013544654, - 0.023385394, - 0.025489757, - 0.015433646, - -0.01933716, - 0.015204127, - 0.015418751, - -0.07500904, - 0.06256879, - 0.0013502707, - 0.03591237, - 0.052766826, - -0.02663397, - 0.014477828, - 0.043005418, - -0.027673189, - 0.032268066, - 6.416713E-4, - -0.008912311, - 0.0156841, - 0.022720626, - 0.04063016, - -0.0054383418, - 0.026239423, - -0.04467932, - 0.022396294, - -0.025012417, - -3.0933498E-4, - 0.060429923, - 0.034668934, - -0.015610366, - 0.028240731, - -0.04299076, - 0.03523772, - -0.02242342, - 0.0143562555, - -0.05929958, - 0.013694317, - -0.025789648, - 0.019439613, - -0.032429393, - -0.016070781, - -0.0017154323, - -0.0124931075, - 0.02684031, - 0.022593485, - -0.0072753965, - -0.054788195, - 0.027045615, - 0.013225182, - 0.054340333, - 7.566061E-4, - -0.00416218, - -0.0040917527, - 0.0644117, - -0.026675953, - -0.021466475, - -0.01652849, - 0.032141525, - -0.0145345135, - -0.029210988, - -0.0039086533, - 0.019667774, - 0.021314614, - 0.05867576, - -0.01885046, - -0.0055386988, - -0.035636894, - -0.016179113, - 0.038175676, - -0.0035707753, - -0.020528615, - -0.057910774, - -0.04502381, - -0.018283725, - -0.0127037885, - 0.039288078, - 0.0018267158, - 0.045381837, - -0.012790281, - 0.016628273, - -0.030904263, - 0.0142834885, - -0.017153013, - 0.01783494, - 0.001250043, - -0.017540123, - 0.032045834, - 0.030110078, - 0.03233735, - 0.013769603 - ], "palette" : [ "4/0", "9/0", @@ -5389,4 +4361,4 @@ "indexedTime" : "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.0.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.0.json deleted file mode 100644 index b472fff1e..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.0.json +++ /dev/null @@ -1,5404 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.678765Z", - "id" : "yvhu0n8f", - "document" : { - "modifiedTime" : "2051-06-03T17:43:47Z", - "display" : { - "id" : "yvhu0n8f", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/pfv.jpg/info.json", - "linkText" : "Link text: P5ZmStmOl", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/pfv.jpg/info.json", - "linkText" : "Link text: P5ZmStmOl", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#A43B97", - "source" : { - "id" : "snifpuhw", - "title" : "title-457iJqhTxo", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "yvhu0n8f", - "sourceIdentifier.value" : "j7MMzfubnx", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.080671854, - 0.011845302, - -0.030262867, - -0.06529479, - 0.020973748, - -0.053630605, - -0.015310281, - 0.12987322, - -0.058271322, - 0.11107268, - -0.24964403, - -0.08637124, - -0.06924384, - 0.076740295, - -0.05360142, - -0.072016336, - 0.13782106, - 0.0072351308, - 0.003258425, - 0.0042747785, - -0.09139239, - 0.008921237, - -0.006973991, - -0.044311207, - 0.052893534, - 0.0724204, - 0.020994741, - 0.08633619, - 0.08679715, - -0.18249802, - -0.11092189, - 0.08796879, - 0.04186959, - 0.05181719, - -0.021633748, - 0.021901777, - -0.1209424, - -0.031573623, - -0.035079774, - -0.06062637, - -0.032140903, - -0.011727367, - 0.13105626, - -0.116511665, - -0.061121568, - 0.062527716, - 0.06978906, - -0.07303436, - 0.0569174, - 0.11660618, - 0.1421781, - -0.001737994, - 0.11133619, - -0.08613467, - -0.07421697, - -0.116171665, - 0.041749004, - 0.06273318, - -0.07984391, - -0.15528487, - 0.088404946, - 0.16044584, - -0.07791724, - -0.07279746, - 0.05265933, - -0.025384402, - 0.08753846, - -0.010287732, - -0.074712425, - 0.04312675, - 0.025896592, - 0.01611219, - -0.13702056, - 0.059784185, - -2.3954175E-4, - -0.05811707, - -0.0032951215, - -0.0033336002, - -0.083053894, - -0.12959889, - 0.05917142, - 0.059223566, - 0.005441514, - -0.00959724, - 0.096181504, - 0.09170728, - -0.21312782, - -0.028871486, - 0.052996907, - 0.1017223, - 0.06792394, - 0.20104821, - -0.085314944, - 0.061619688, - 0.110046096, - 0.01750885, - -0.07658175, - -0.03725715, - -0.037391458, - -0.062474206, - -0.11639877, - -0.15242596, - -0.120691136, - 0.11270376, - 0.08905401, - -0.12849861, - -0.02093556, - 0.03171374, - -0.05039466, - -0.065531135, - 0.09512744, - -0.054149028, - 0.10739502, - 0.029005835, - -0.021984927, - 0.068122484, - -0.043389603, - -0.202635, - 0.057433836, - 0.060673807, - -0.022423038, - -0.13960692, - -0.06102202, - 0.049894087, - -0.048048474, - -0.00254914, - 0.009670279, - -0.004936839, - 0.06262965, - -0.03395656, - 0.01767504, - -0.0353275, - 0.011469004, - -0.08648586, - 0.12423257, - 0.0020382332, - 0.090355694, - 0.097935684, - 0.016999269, - -0.15555348, - 0.010277988, - -0.0024878653, - 0.14312007, - 0.040571187, - -0.030572776, - 0.050128862, - -0.007172042, - 0.0863952, - -0.06352221, - -0.04206038, - 0.08739207, - -0.055777304, - -0.043559205, - -0.03637486, - -0.02395024, - 0.0952095, - 0.053745728, - 0.00940147, - -0.027966047, - -0.097410195, - 0.0022903192, - 0.052758664, - 0.0015339656, - 0.045817517, - 0.14122008, - -0.12897025, - -0.020054227, - 0.011848059, - 0.031874135, - -0.042543422, - -0.13065124, - 0.017693017, - -0.04196613, - -0.1347923, - -0.056466874, - 0.066835165, - 0.11943599, - -0.017306976, - -0.234075, - -0.114717826, - -0.09448274, - -0.0312459, - 0.0063681565, - 0.09737622, - 0.013088854, - -0.11661672, - -0.09216715, - -0.025758173, - -0.042530645, - -0.086564414, - -0.14635856, - -0.109083764, - 0.107208185, - 0.04536723, - -0.10232203, - 0.076009355, - -0.10885584, - 0.013718389, - 0.038126186, - 0.0638725, - -0.07238748, - 0.011069302, - 0.02713792, - 0.2348004, - -0.00796907, - -0.03003057, - 0.051430278, - -0.10403346, - -0.07139058, - -0.06185564, - 0.0061654244, - -0.040269505, - 0.12555471, - -0.08606252, - 0.10184202, - 0.10898278, - 0.13863496, - -0.06831543, - 0.04565253, - -0.045361146, - 1.982268E-4, - 0.20403694, - 0.05285739, - 0.20581791, - 0.07301829, - 0.033290375, - -0.026107129, - 0.12714656, - -0.046178598, - -0.044777058, - 0.09267922, - 0.053914465, - -0.09414625, - 0.006908679, - 0.23108348, - 0.10315688, - -0.124217086, - -0.11390946, - -0.07114702, - -0.009465082, - 0.11671046, - 0.024575135, - -0.18380587, - 0.009061903, - 0.07464535, - -0.07541291, - -0.09528379, - 0.053128228, - 0.10608086, - -0.1826531, - -0.23064448, - -0.050634984, - -0.11999371, - -0.107180044, - 0.2735642, - -0.14614317, - 0.095150195, - 0.0639067, - -0.07383973, - -0.08098838, - 0.007412868, - -0.06341899, - 0.016896429, - -0.111974865, - -0.032401945, - -0.0027730532, - 0.0061641913, - -0.069122195, - -0.046027496, - -0.08329534, - 0.0011254696, - 0.08974547, - -0.058017723, - 0.013067729, - -0.051212512, - 0.051730692, - 0.07486742, - -0.06025648, - 0.04156488, - -0.07058029, - -0.3528842, - 0.022647748, - 0.13795227, - -0.0046405173, - -0.1235725, - 0.20549855, - 0.068846196, - -0.068441935, - -0.02198928, - 0.052786358, - -0.05682149, - 0.057758387, - -0.17554, - -0.14447069, - -0.07169489, - 0.055357665, - 0.12420584, - -0.1275339, - 0.17963842, - 0.1010891, - -0.12276755, - -0.066312015, - -0.113487385, - 0.1054709, - -0.0059619094, - -0.100134455, - 0.10997886, - -0.015184254, - 0.0041661845, - -0.083978064, - 0.035158865, - 0.0020404235, - -0.008302563, - 0.016323898, - 0.0291613, - -0.078157924, - -0.012362159, - -0.040675208, - -0.19686913, - 0.10015907, - -0.019300854, - 0.06276292, - 0.042283297, - 0.081012584, - -0.004862361, - 0.02781241, - -0.061081495, - 0.029577354, - -0.061929043, - 0.051231522, - 0.14875679, - -0.14266086, - 0.09086737, - -0.016714368, - 0.23433171, - -0.092553, - 0.06933158, - -0.12353228, - 0.10543004, - -0.010080718, - -0.03220527, - -0.014524264, - 0.041612886, - 0.055218734, - -0.010473557, - -0.019700782, - 0.07054002, - 0.08718653, - -0.042257916, - 0.14652893, - -0.09664899, - -0.018249264, - -0.014922984, - -0.081876315, - 0.03738212, - -0.1417639, - -0.010860342, - -0.18458435, - -0.02960175, - -0.1440616, - 0.0042832843, - -0.0058060694, - 0.15059105, - -0.097365536, - -0.1117725, - -0.06391465, - 0.16251758, - 0.04153287, - 0.08104399, - -0.00808179, - -0.010094632, - -0.034535106, - 0.15561967, - 0.11486765, - 0.019618792, - 0.09746497, - -0.047069293, - 0.08959223, - -0.019490767, - -0.048667144, - -0.17489213, - 0.11077723, - -0.13021223, - -0.13198157, - 0.18453701, - 0.016206663, - 0.03686285, - 0.005127686, - -0.05097749, - -0.010024514, - -0.09101605, - 0.08855482, - -0.1439191, - -0.07569147, - 0.06753228, - 0.05972854, - -0.010029946, - -0.02545783, - 0.06889879, - 0.039856523, - 0.13137227, - 0.128609, - 0.11705124, - -0.13695362, - -0.011636579, - -0.13813564, - -0.16914494, - -0.029645283, - 0.08524418, - 0.123086385, - -0.06753109, - 0.002899429, - -0.075098895, - 0.019895796, - 0.02149281, - -0.043212943, - 0.074749954, - 0.06304789, - 0.012406458, - -0.08983481, - -0.04579075, - -0.19882087, - 0.052529126, - -0.084988944, - 0.007550219, - -0.17592373, - 0.079121105, - 0.19268379, - 0.05495936, - 0.06580899, - -0.04593015, - 0.13869293, - -0.11862686, - 0.008953149, - 0.06990431, - 0.104566775, - -0.03937721, - -0.04867557, - 0.088574946, - -0.055093378, - -0.032353893, - -0.05690863, - -0.073844016, - -0.05580633, - -0.082737826, - 0.11295362, - 0.08182137, - 0.04728148, - -0.020572683, - 0.078764595, - 0.11011635, - -0.09922137, - -0.065731585, - -0.13994546, - -0.11189089, - 0.06648076, - -0.00911022, - -0.105286986, - -0.039154105, - -0.040129684, - 0.012713584, - 0.07535625, - 0.18048877, - -0.086624496, - -0.067572676, - -0.08251356, - -0.023523353, - 0.027738255, - -0.04482441, - 0.07793681, - 0.028709468, - -0.05894061, - 0.010454462, - 0.09347912, - -0.022364117, - 0.042911198, - 0.063194476, - 0.036418155, - -0.064018205, - 0.21695638, - -0.080346845, - 0.023497902, - 0.028154798, - 0.09697884, - 0.16921583, - 0.025362436, - 0.013261122, - -0.14290716, - -0.07177387, - 0.10060673, - -2.3695023E-4, - 0.10311753, - 0.0015263675, - 0.027448287, - -0.117808, - 0.037921865, - 0.040557478, - -0.10766778, - -0.046881, - 0.029874312, - -0.12229335, - -0.123138465, - 0.019974003, - 0.07236173, - 0.15672107, - -8.3286426E-4, - -0.14066377, - 0.12490432, - -0.056518365, - -0.044614013, - -0.10629528, - -0.114830256, - 0.03253372, - -0.2177734, - -0.09217276, - 0.13960798, - -0.24775219, - 0.1257447, - 0.06952535, - 0.027381087, - 0.044448018, - 0.08269193, - 0.11305135, - -0.042140104, - -0.06000725, - -0.21553457, - -0.047795143, - 0.14519401, - 0.093491875, - -0.042068493, - -0.068108104, - -0.056340877, - 0.0778396, - -0.2031484, - -0.02861131, - 0.21381605, - 0.02065446, - -0.07992093, - 0.17210941, - 0.23619914, - -8.918296E-4, - 0.021001253, - 0.07988524, - 0.091047324, - -0.010453873, - -0.11450817, - 0.08066799, - 0.023783771, - -0.19106309, - 0.024555186, - 0.10868244, - 0.060340315, - 0.06511109, - 0.00830623, - -0.008156415, - -0.022604175, - -0.17224959, - 0.1402136, - 0.053207945, - 0.149085, - -0.22466859, - -0.007632857, - -0.046244558, - 0.0034434542, - 0.25076735, - 0.01756836, - 0.062288143, - -0.041178636, - -0.07084353, - -0.07962577, - -0.05102148, - 0.007251053, - -0.13221377, - 0.15336356, - -0.089667626, - 0.0683749, - -0.06348112, - -0.04617111, - -0.032075256, - 0.07201168, - 0.038144857, - 0.1048038, - -0.1533652, - 0.009734414, - -0.044247113, - -0.04024414, - 0.049603168, - 0.024983836, - -0.008448876, - 0.098640494, - -0.16585852, - -0.0013015916, - 0.07219512, - 0.07925735, - -0.0049257223, - 0.02291054, - 0.12341903, - -0.104369946, - -0.016012553, - -0.10496391, - 0.0071027786, - -0.028078431, - 0.019625276, - -0.1020489, - -0.0097321775, - -0.09024482, - -0.07708627, - 0.14582312, - 0.0030635712, - 0.12598175, - 0.038420033, - -0.06707851, - -0.15045209, - 0.093418136, - 0.18300463, - 0.092805006, - -0.08809762, - -0.10337162, - 0.046286635, - -0.016619764, - -0.004244008, - 0.0018552463, - -0.111780204, - -0.049861334, - -0.11739281, - -0.1156645, - -0.031820692, - -0.06455555, - 0.016275128, - 0.0695333, - 0.054360185, - -0.113868624, - 0.017985668, - -0.04888875, - 0.11464697, - -0.09483356, - -0.02044723, - -0.058490727, - 0.014043384, - 0.02170483, - 0.036383867, - 0.025422212, - -0.0863301, - -0.056093633, - -0.06642411, - -0.009122916, - -0.09047082, - -0.20478004, - -0.12228839, - -0.11486165, - 0.13601126, - -0.07944355, - 0.014367047, - -0.14846888, - 0.04544631, - 0.013907482, - 0.100877754, - -0.025379555, - -0.06759186, - 0.006201274, - -0.09915863, - -0.13467303, - 0.029703202, - 0.09010314, - -0.041584164, - -0.23284058, - -0.14136271, - -0.1369004, - -0.047514904, - 0.0544794, - 0.10246007, - -0.033535372, - -0.02787096, - -0.08186873, - 0.0598541, - 0.05653317, - -0.15371768, - 0.08292553, - 0.048424564, - 0.08339923, - -0.09967059, - 0.19296815, - 0.05610428, - -0.10812882, - 0.062802635, - 0.013146333, - -0.14232923, - 0.026911, - -0.039315835, - -0.006539309, - -0.06242946, - -0.10378589, - -0.011621813, - 0.15880528, - -0.0043962505, - -0.02880816, - -0.09038766, - -0.082055435, - -0.2697699, - 0.046208493, - 0.0302058, - -0.12357536, - 0.06593499, - 0.096825354, - 0.066405684, - 0.04637908, - -0.18125981, - -0.104086496, - -0.087515704, - 0.030397646, - -0.07036427, - -0.11064151, - 0.03948263, - -0.034809764, - -0.015530186, - 0.056611836, - 0.0485184, - 0.090274855, - 0.07482977, - 0.040690415, - -0.08853832, - -0.05587257, - 0.043891463, - -0.13091555, - -0.008709777, - 0.042072717, - -0.03387159, - -0.23662, - -0.05076432, - -0.07074129, - 0.20209353, - 0.112151116, - 0.0057209134, - -0.102428764, - 0.1611627, - 0.004666994, - 0.099415086, - -0.089894414, - 0.15106459, - -0.038064566, - 0.038176216, - 0.20473936, - 0.016708864, - 0.020010738, - 0.06891871, - -0.052761644, - -0.19220467, - 0.07317607, - -0.063817024, - -0.10806208, - 0.043373097, - 0.01895341, - -0.14362429, - 0.011417638, - 0.08020721, - -0.22871421, - -0.02949624, - -0.07976931, - 0.10527921, - 0.119233586, - -0.115988865, - -0.07555377, - -0.07099252, - 0.15465203, - 0.14507219, - -0.09725359, - -0.0663833, - 0.14885047, - 0.006512584, - 0.06855632, - 0.02491453, - 0.039349765, - 0.09053733, - 0.17042519, - 0.11954604, - -0.0643811, - -0.09098035, - -0.03763716, - 0.0030778502, - -0.121054865, - -0.03339519, - -0.057186507, - 0.005609126, - -0.07621391, - 0.057543393, - -0.0055043153, - -0.033779062, - -0.11861184, - 0.06165812, - -0.055829946, - -0.12627588, - 0.024957152, - -0.104667544, - 0.056092303, - -0.06954871, - -0.20302872, - -0.0849357, - -0.030814657, - -0.036013003, - 0.02421469, - -0.02202848, - -0.14710659, - -0.057986356, - -0.22399221, - 0.015069475, - -0.019107368, - -0.021163419, - -0.030882692, - 0.12726368, - 0.0769018, - -0.029290056, - 0.26385215, - -0.0056315325, - -0.052772086, - 0.16251287, - -0.020772314, - 0.011202739, - 0.018083302, - 0.06975679, - 0.06857232, - -0.16154967, - 0.090209715, - 0.022268118, - -0.1738793, - 0.107875735, - -0.084144704, - -0.06870172, - -0.04036567, - -0.040698994, - 0.08210092, - -0.04484397, - -6.5817527E-4, - -0.2550086, - -0.028016148, - 0.23103833, - 0.12119743, - 0.024007848, - 0.06871737, - -0.013511763, - -0.063559115, - 0.07991921, - 0.009306075, - -0.0354477, - 0.13803259, - 0.051337786, - -0.011202491, - -0.10763178, - -0.061602287, - 0.004049993, - -0.091844544, - -0.07665494, - -0.041047413, - 0.09464828, - 0.015236914, - -0.027559804, - 0.053228848, - -0.14951947, - -0.0047326693, - 0.13612749, - 0.11486412, - -0.010217775, - 0.0022373374, - 0.07322178, - -0.11635983, - 0.13497502, - 0.18017994, - 0.13248134, - -0.008021278, - 0.10410717, - 0.050846245, - 0.031083444, - -0.1354097, - 0.04794909, - 0.027998583, - 0.05729909, - -0.18871295, - 0.0984094, - -0.12902442, - -0.08206213, - 0.10900583, - -0.10592784, - -0.043355912, - 0.057713047, - 0.09564098, - -0.0326267, - -0.14841986, - 0.06931683, - -0.041901067, - -0.035728596, - -0.05219722, - 0.01795686, - -0.02649783, - 0.08113526, - 0.05619874, - 0.038403183, - -0.23553216, - -0.09865506, - 0.13885508, - -0.029448792, - -0.20775412, - -0.035506163, - -0.05926018, - -0.042839624, - 0.049794354, - -0.07133244, - 0.14641649, - -0.032667905, - 0.05029026, - 0.02781043, - 0.06618932, - -0.045143794, - 0.056172647, - 0.111286536, - -0.133087, - 0.09898882, - -0.0069189877, - -0.08987678, - 0.107679315, - 0.052946225, - -0.030892128, - 0.08777043, - 0.08372896, - 0.032267187, - -0.09819086, - 0.051518045, - -0.054724548, - -0.09278662, - -0.025860904, - -0.10433941, - 0.041933805, - 0.12941961, - 0.09744674, - 0.053106662, - -0.034708165, - 0.2136114, - 0.09662103, - 0.084698915, - 0.02542443, - 0.16340029, - 0.09938855, - 0.23592727, - 0.0036545258, - -0.017924638, - -0.03287525, - 0.101542, - -0.13307135, - -0.1920692, - 0.10451723, - 0.029944336, - -0.20346561, - -0.21118627, - -0.124066874, - -0.055238627, - 0.19933067, - -0.14872095, - 0.07295926, - 0.116477355, - -0.04049592, - 0.16063824, - 0.048212558, - -0.1498176, - 0.22540423, - -0.014028764, - -0.084705874, - -0.059125304, - 0.029620774, - 0.13338833, - -0.14109889, - -0.046637855, - -0.1112983, - -0.016913174, - 0.009906066, - 0.06414606, - -0.18670574, - -0.052622132, - -0.078767255, - 0.109048426, - -0.10038219, - -0.044889368, - 0.17309146, - -0.083142765, - 0.063280575, - 0.05557096, - 0.06088907, - 0.074624, - 0.17872219, - -0.20880178, - -0.04988574, - 0.19742046, - 0.2559397, - 0.14051466, - -0.03435933, - -0.015608921, - 0.034602493, - 0.07869774, - 0.09077238, - -0.189842, - -0.012600076, - 0.11731915, - 0.051876448, - 0.11733932, - 0.025990428, - -0.13377033, - 0.051963534, - 0.08111567, - 0.10009946, - 0.014136618, - 0.049587645, - 0.0767905, - 0.075247936, - 0.008889197, - -0.053861894, - 0.08509773, - 0.04618215, - -0.007522682, - -0.085713275, - -0.10779466, - 0.029244706, - 0.036565896, - 0.0129132215, - -0.119771235, - -0.080512926, - 0.0054989224, - -0.05014005, - -0.05976198, - -0.22120097, - -0.08397208, - -0.18851236, - -0.1366741, - -0.031086255, - 0.093841694, - 0.07018528, - 0.0022312384, - -0.01247574, - 5.067192E-5, - -0.010298194, - -0.034995135, - 0.034012794, - -0.036935274, - 0.07053645, - 0.07632544, - -0.14730383, - 0.0040375846, - 0.15307237, - 0.0072516543, - 0.05272525, - -0.033524066, - -0.036170747, - -0.0102876555, - -0.06299466, - 0.13600048, - 0.10324524, - -0.055169515, - -0.036995273, - 0.14111987, - -0.15051031, - -0.13946413, - -0.06976448, - 0.08229711, - 0.16311541, - -0.1995375, - -0.1524493, - 0.003561188, - 0.08497082, - -0.08449704, - 0.076678455, - -0.089094564, - -0.0074216793, - -0.03775768, - 0.16141418, - -0.12705493, - 0.04343877, - -0.032792147, - 0.06265709, - -0.101071216, - -0.14319634, - -0.10956604, - -0.14410244, - 0.012510396, - 0.012580561, - -0.057086956, - -0.04387694, - -0.09504888, - 0.04691042, - 0.037394162, - -0.1453001, - -0.096507214, - 0.0025226776, - -0.022420108, - 0.04553017, - 0.04409893, - 0.034429647, - -0.033383697, - -0.056082323, - 0.0033944903, - 0.01656278, - -0.07070134, - -0.03895195, - -0.09749026, - 0.04379568, - -0.043415237, - 0.08442598, - 0.014086915, - -0.008308125, - -0.11560628, - -0.09901397, - 0.03698621, - -0.16113552, - -0.13800721, - 0.027887236, - 0.042214077, - 0.19871658, - -0.15485305, - -0.032847427, - -0.075916186, - 0.029103022, - -0.040235497, - -0.14982662, - -0.07415206, - -0.084350646, - -0.07690248, - 0.073807895, - 0.08776666, - 0.15549867, - 0.014110626, - 0.08069032, - 0.046956684, - 0.18173404, - -0.053940758, - -0.05465692, - 0.009313128, - -0.0053735785, - 0.04338318, - 0.031212281, - 0.117965035, - -0.139346, - -0.06528254, - 0.013653969, - -0.14410731, - 0.007512381, - -0.007811441, - 0.07927421, - 0.14755563, - -0.0035489793, - -0.008508152, - 0.09159205, - -0.032804422, - 4.3701514E-4, - -0.14019883, - 0.17588437, - 0.10870153, - -0.0051301625, - 0.046396066, - 0.026102439, - -0.038665704, - -0.012942907, - 0.10548176, - 0.0039871894, - 0.16367394, - 0.024970932, - 0.068182886, - 0.15850928, - 0.13189851, - -0.17932114, - -0.17353448, - 0.17150974, - 0.00241778, - 0.09885805, - -0.080773816, - -0.05290113, - 0.072227, - -0.06632003, - 0.075803205, - 0.068557605, - -0.019413803, - -0.07778184, - 0.1682552, - -0.017529465, - -0.07059811, - -0.010795227, - 0.10003522, - -0.041670017, - 0.15612312, - -0.04253509, - 0.08912299, - -0.09133564, - -0.12433229, - -0.20605075, - 0.048940282, - 0.01881845, - 0.17479262, - 0.09580645, - -0.03408063, - 0.10160259, - -0.11166022, - -0.03560263, - -0.031060077, - -0.12175299, - 0.058078747, - -0.031155538, - -0.15301985, - 0.1782606, - 0.0732615, - -0.039799854, - -0.12879446, - -0.034488447, - -0.058003534, - 0.16129832, - -0.09240703, - 0.16795601, - 0.028932922, - -0.21345471, - 0.019457268, - 0.025012732, - 0.09155352, - -0.1551763, - 0.04454148, - -0.064950675, - -0.040184744, - 0.058312234, - 0.038042482, - -0.08369015, - -0.005379046, - -0.1623171, - -0.104268305, - 0.037120093, - -0.010764502, - 0.06833616, - -0.050692804, - -0.026510376, - 0.14711753, - -0.18430461, - 0.06492277, - -0.10047871, - -0.025379913, - 0.010604467, - 0.019947026, - 0.14809024, - 0.17138764, - 0.06050761, - 0.15341441, - -0.08980552, - 0.02252822, - 0.0677456, - 0.015097541, - 0.13451242, - -0.12778911, - 0.066393875, - 0.2071994, - 0.081765994, - -0.08945456, - 0.10120052, - 0.32507485, - -0.018193154, - 0.0054167015, - -0.06505024, - -0.0027833758, - -0.15424992, - -0.009769079, - 0.0025568344, - -0.10619503, - 0.022068081, - 0.042571153, - -0.09785782, - 0.026988478, - -0.10043898, - 0.030843306, - 0.08272578, - 0.061409626, - 0.05367213, - 0.0014032526, - -0.031113556, - -0.04101259, - -0.2673478, - 0.043029323, - -0.1063299, - -0.06802114, - 0.076977246, - 0.0071881427, - -0.06984689, - -0.0247008, - 0.055537242, - -0.087331764, - 0.11026849, - 0.11677821, - -0.21918875, - 0.10659348, - 3.829982E-4, - 0.028222742, - 0.018209776, - -0.067373954, - -0.13779747, - -0.010871143, - 0.03716618, - -0.047476508, - -0.008432887, - -0.0064731645, - -0.08526972, - 0.029062541, - 0.03275085, - 0.010366094, - -0.016211804, - -0.043444004, - -0.0057890997, - -0.026328608, - -0.12412389, - -0.025527403, - -0.019513953, - 0.008956609, - 0.13475464, - 0.20615764, - 0.020815892, - 0.0768243, - -0.07186169, - -0.034392215, - 0.096086375, - -0.13884462, - 0.01186262, - 0.08793861, - -0.10568501, - -0.2072401, - -0.023546673, - -0.116430774, - -0.08139687, - 0.05567977, - 0.12778199, - -0.18283491, - 0.060490344, - -0.08846122, - -0.07071088, - -0.06890768, - 0.10641522, - 0.04438465, - 0.06121932, - -0.08564367, - -0.075689085, - -0.1658841, - 0.06572906, - 0.0965318, - -0.07125144, - -0.114571355, - 0.09509894, - 0.055414487, - -0.03635996, - 0.131479, - -0.13506992, - -0.13375981, - 0.056025743, - -0.055279527, - -0.13840836, - 0.16915129, - -0.0077589354, - 0.0730285, - -0.07879182, - -0.040485628, - -0.044420928, - -0.16086361, - -0.041399844, - -0.046221845, - -0.11213348, - -0.05614791, - 0.058543522, - 0.016807249, - -0.033108905, - -0.06457736, - -0.030648882, - -0.21397781, - -4.8947637E-4, - 0.11475749, - -0.025055166, - -0.11844194, - -0.046813395, - 0.028440438, - 0.14857863, - -0.07808438, - 0.035187215, - -0.077322274, - -0.15497245, - -0.11414291, - -0.16281646, - -0.028315, - -0.05096313, - 0.14087354, - -0.101335295, - -0.013915149, - -0.107966036, - 0.05195398, - 0.104120165, - -0.06327778, - -0.0036162725, - -0.0954474, - 0.05066189, - -0.045257576, - -0.056487013, - 0.0026360406, - -0.010124652, - -0.05656683, - -0.00660574, - 0.10426131, - -0.034798235, - 0.045665655, - 0.09911331, - -0.031572975, - 0.10097391, - 0.16914411, - -0.029962016, - 0.026934158, - 0.065203086, - -0.09636322, - 0.05092824, - 0.042696208, - -0.21857013, - -0.010243474, - -0.07651537, - -0.038634293, - 0.05472127, - 0.058349397, - -0.009985359, - 0.013843315, - 0.03319013, - -0.06903602, - -2.2069976E-4, - -0.09695799, - 0.013213384, - -0.054594085, - 0.012757086, - 0.21345402, - -0.0048374212, - 0.048653517, - -0.06085502, - -0.10299963, - -0.03700928, - 0.09905354, - -0.008956002, - 0.027074983, - 0.11904163, - 0.0087333955, - 0.13040376, - -9.243114E-4, - 0.028007722, - 0.035852965, - 0.03419235, - 0.10581532, - 0.13487154, - -0.010927502, - -0.012563211, - -0.10885116, - 0.30693793, - 0.026921999, - -0.0151283825, - 0.09171971, - -0.0024780312, - 0.03554751, - 0.064606786, - -0.03830194, - 0.03507676, - -0.15175536, - -0.047204323, - -0.07401808, - -0.03836445, - 0.09723602, - 0.21362963, - -0.1641719, - -0.06496592, - -0.20792954, - 0.06966926, - -0.08331442, - -0.058959387, - 0.11123375, - -0.054305665, - -0.055958346, - 0.03707083, - -0.1295722, - -0.033865016, - 0.017407322, - 0.039685354, - 0.21198599, - -0.022472331, - 0.16400138, - -0.09447808, - 0.014180713, - -0.06857254, - 0.033057805, - 0.16540329, - 0.014006725, - 0.04127487, - -0.114181265, - -0.11335489, - 0.06345663, - -0.09411051, - -0.13935415, - 0.120250136, - -0.009854588, - -0.02875553, - 0.10006651, - -0.124629095, - 0.04850589, - -0.050609063, - -0.20719612, - -0.083184816, - 0.13425247, - -0.0647622, - 0.061909206, - 0.030706948, - 8.7157736E-5, - -0.016781067, - 0.10966843, - -0.11299463, - -0.0076195733, - -0.13790344, - 0.046092484, - 0.17568512, - 0.021799494, - 0.11630037, - -0.10957106, - 0.2224386, - 0.060538318, - -0.2087698, - -0.0034343295, - -0.014606894, - -0.14974062, - 0.08007303, - 0.032705344, - -0.1145929, - 0.18048964, - 0.14197883, - -0.06709515, - 0.087200835, - 0.002450694, - 0.022084352, - -0.08977554, - -0.088916376, - 0.14382197, - 0.10115554, - 0.20625661, - -8.075545E-5, - -0.017363932, - -0.16006306, - 0.18155007, - 0.14089395, - -0.046033185, - 0.04330773, - 0.016150583, - 0.042214803, - 0.11585378, - -0.015438641, - 0.09694743, - 0.03944313, - 0.16216156, - -0.10139393, - 0.15567674, - -0.012829891, - 0.0024048956, - -0.017366078, - -0.18780188, - -0.016845075, - 0.19306685, - -0.09936343, - 0.016443603, - -0.019976888, - -0.051342167, - -0.08852879, - 0.034202814, - -0.027789963, - 0.09239014, - 0.015729958, - -0.055292748, - 0.16377144, - 0.08172705, - -0.08412783, - 0.016713643, - -0.16501348, - -0.18407257, - 0.15706415, - -0.09456227, - 0.047918025, - -0.11472155, - 0.010788589, - 0.07380368, - 0.014546311, - 0.097572334, - -0.08893486, - 0.014008967, - -0.063098975, - -0.033226356, - 0.05659987, - -0.06844097, - -0.021254677, - 0.025148204, - 0.1061188, - 0.024385711, - 0.101268984, - -0.08690086, - 0.009946702, - 0.09200334, - -0.016420059, - 0.042518172, - 0.082596645, - 0.02156708, - -0.01948793, - -0.020800844, - 0.009229402, - -0.104285024, - 0.03607874, - 0.16307974, - 0.0034293688, - 0.008071115, - 0.048809793, - -0.082281694, - 0.05006531, - 0.14440952, - -0.05437622, - 0.13544028, - 0.08863422, - -0.061618373, - 0.017617049, - -0.04381056, - -0.09844681, - 0.14086471, - -0.08995765, - 0.042975582, - 0.024733009, - 0.051749244, - 0.104996875, - -0.10641891, - 0.0350676, - -0.02116712, - -0.069760986, - -0.04516739, - 0.058570962, - 0.007001602, - 0.057678945, - 0.1721547, - -0.031125251, - -0.09779746, - 0.00790429, - -0.06253977, - -0.14306697, - -0.06866154, - 0.006066711, - -0.05894524, - 0.076038584, - -0.12829009, - 0.0335901, - 0.0120887775, - 0.07808895, - 0.024293834, - -0.04852565, - 0.0015062246, - 0.035128683, - 0.077361785, - 0.0014004268, - 0.065981075, - 0.078552864, - -0.001678473, - 0.021468036, - 0.008021742, - 0.12587278, - 0.08802745, - -0.07850104, - 0.08406093, - -0.026282474, - -0.11901997, - -0.005274382, - 0.08850878, - 0.064733274, - 0.04270061, - -0.071305506, - -0.07109976, - -0.062267106, - -0.069282874, - 0.005120667, - 0.055506863, - 0.029575508, - 0.0059052277, - 0.12663, - -0.025469607, - -0.016866475, - -0.101398714, - -0.20492233, - 0.059304334, - -0.15484872, - 0.043668196, - 0.08464981, - -0.08395785, - -0.030222949, - 0.025001623, - -0.03814982, - 0.018215455, - -0.094863236, - 0.10566876, - 0.087887034, - -0.07428637, - 0.059193164, - 0.10448209, - -0.055294957, - -0.056400053, - -0.15962479, - 0.11579522, - 0.0637018, - 0.050071016, - -0.09732451, - -0.12059686, - -0.120898925, - -0.01706851, - -0.09401351, - 0.017920652, - -0.16509993, - 0.08161278, - -0.22397505, - 0.09038165, - -0.098829545, - -9.669838E-4, - -0.07583403, - 0.09940158, - 0.07011776, - 0.02453811, - 0.2142933, - 0.03881297, - 0.1137857, - -0.027106168, - -0.07531158, - -0.1380505, - 0.108338065, - -0.09025556, - 0.10769828, - -0.087573096, - -0.029249638, - -0.20129609, - -0.008803773, - 0.06530801, - 0.14052854, - -0.00986521, - -0.11275869, - 0.018352441, - -0.04058392, - -0.030715873, - 0.0391779, - -0.0019685933, - 0.039120693, - 0.11068227, - -0.06291358, - -0.015747687, - -0.103054196, - -0.03918663, - 0.0722664, - 0.38681117, - -0.09319011, - -0.11286969, - -0.10578183, - 0.059466355, - -0.012767305, - 0.20119327, - -0.09212052, - -0.11080801, - -0.102598965, - 0.18196699, - 0.029559119, - 0.107011266, - -0.060169253, - 0.071450755, - 0.004092497, - -0.005118595, - -0.053350084, - -0.043731816, - -0.037169043, - -0.06069588, - 0.016833745, - 0.041872323, - 0.0062151384, - 0.064706996, - -0.043562252, - 0.07816965, - 0.06127898, - -0.056420527, - 0.033916872, - -0.07502891, - 0.047722626, - -0.3235699, - 0.08686474, - -0.14057207, - -0.053811856, - -0.17031273, - 0.081682146, - 0.15122312, - -0.11107677, - -0.15281872, - -0.053555597, - -0.16319497, - 0.0010178586, - -0.02740255, - -0.0427652, - -0.10353535, - 0.060345862, - -0.031306293, - -0.025512422, - -0.042638037, - -0.076105595, - -0.1691421, - -0.069546014, - 0.19300534, - 0.09293343, - 0.09458111, - -0.05142276, - -0.07756726, - -0.16969085, - -0.14137866, - 0.032462206, - 0.030262599, - 0.07329384, - -0.06690311, - 0.19699962, - 0.076861784, - -0.037060276, - -0.0037319877, - -0.13694537, - -0.0050542457, - -8.9658954E-4, - -0.04903269, - -0.022966014, - -0.09665686, - 0.035952065, - 0.06246033, - -0.16127571, - 0.03647567, - -0.1394088, - -0.10999231, - 0.10376469, - 0.12515125, - -0.0289052, - -0.056056958, - -0.0011030588, - -0.09816978, - 0.06742184, - -0.049597442, - 0.14449899, - -0.2057604, - -0.005979935, - -0.13141915, - -0.0028399243, - -0.14161849, - -0.13766176, - 0.008621514, - -0.0645008, - -0.027780034, - -0.14629108, - -0.018723795, - -0.0022639527, - 0.011373292, - -0.12932512, - 0.012705451, - 0.005946833, - -0.12307304, - 0.05380591, - 0.119841516, - 0.00548355, - 0.088683076, - 0.021113751, - 0.12701331, - 0.17413078, - -0.1365135, - -0.04095909, - -0.10314606, - -0.06347032, - 0.12157654, - 0.04096562, - -0.26477924, - 0.023905586, - -0.088177845, - 0.1506017, - 0.020432051, - 0.096950136, - -0.07840566, - -0.08144657, - 0.07638667, - -0.082129, - 0.024216888, - -0.0701202, - 0.13039435, - 0.17091429, - -0.11651998, - 0.11360377, - -0.13476908, - -0.0054147453, - -0.033310503, - 0.20991641, - -0.08119303, - 0.096331276, - 0.009946426, - 0.059591603, - -0.013694192, - 0.031332735, - 0.10833261, - 0.24475056, - -0.13806818, - 0.030649848, - 0.104267076, - -0.095951475, - -0.09154837, - 0.0045430497, - -0.091718055, - 0.077352785, - 0.08060949, - 0.04889813, - 0.05673721, - 0.027990486, - 0.14067334, - -0.074512556, - 0.03507053, - 0.06717713, - 0.01514481, - 0.08814976, - 0.079418615, - 0.107548095, - -0.12125862, - -0.069817804, - -0.009298753, - 0.03772686, - -0.10972737, - -0.023824537, - -0.096063256, - 0.0039530164, - 0.046083674, - 0.043790057, - 0.078412786, - 0.02440266, - -0.0322602, - 0.058947425, - -0.006978552, - 0.06188075, - 0.09627855, - -0.015636286, - 0.2239576, - -0.1438739, - 0.035153925, - -0.13105579, - 0.180439, - 0.023487665, - -0.18269123, - 0.008651732, - 0.21731016, - 0.055189632, - 0.022524409, - 0.06644842, - -0.010749369, - -0.05681373, - -0.02284438, - -0.16747826, - 0.088120304, - 0.013818443, - 0.15377823, - -0.106295936, - -0.041333955, - -0.09397321, - 0.04509682, - -0.23498017, - -0.0799851, - -0.06703974, - -0.12744196, - -0.09826855, - -0.026319304, - 0.043749932, - -0.12215367, - -0.045475274, - 0.006829667, - -0.0083946055, - 0.12329712, - 0.1368258, - -0.020665135, - -3.3018444E-4, - -0.07140848, - -0.007625215, - 0.030801507, - 9.085875E-5, - -0.011588597, - -0.024541026, - 0.18255381, - -0.103389814, - -0.0031885232, - -0.18344893, - -0.09037018, - 0.052015822, - -0.058303326, - 0.07738332, - -0.012265981, - -0.037824556, - -0.0530449, - 0.05353272, - -0.10242765, - -0.115307204, - -0.060511474, - 0.0061657582, - -0.02312691, - -0.076740086, - -0.038745474, - 0.046851847, - -0.17332369, - 0.12974556, - 0.14058056, - -0.021168118, - 0.044745516, - -0.10400798, - -0.007037802, - 0.0909858, - 0.044508774, - 0.008404697, - 0.10598304, - -0.21300288, - 0.0054156696, - 0.0048964173, - -0.052813668, - 0.043895848, - -0.084850535, - 0.113875985, - 0.15507248, - 0.16796716, - 0.009754874, - -0.13928719, - -0.06211915, - 0.0122785065, - -0.04375418, - -0.16469456, - 0.06381018, - 0.050974753, - -0.15896024, - -0.10750672, - -0.03434871, - 0.07554268, - -0.014971456, - -0.04654961, - 0.07975819, - 0.07616646, - 0.077474125, - -0.010312932, - -0.0058573503, - -0.0097624585, - -0.023802722, - -0.18400565, - 0.12583943, - -0.033599842, - 0.18097337, - 0.0725327, - 0.03776986, - 0.12925455, - 0.06350482, - 0.09788388, - 3.7862363E-4, - 0.14202224 - ], - "features2" : [ - 0.07020941, - 0.052575354, - -0.051635318, - -0.08088042, - 0.059808474, - 0.022996858, - 0.02521997, - -0.14601953, - -0.0543745, - -0.18084085, - 0.10913444, - -0.06165991, - 0.15992805, - 0.07753707, - -0.18558262, - 0.082680464, - -0.012923551, - 0.02554521, - 0.022992311, - 0.05259566, - -0.055699542, - 0.0545941, - -0.0469969, - -0.025816742, - -0.06180745, - 0.08827713, - 0.14677252, - -0.020598985, - -0.04688335, - 0.12098839, - 0.029746203, - 0.0389065, - -0.17676777, - 0.113407955, - 0.010596073, - 0.019725109, - 0.054525644, - -0.026358731, - -0.111912325, - -0.070891194, - -0.027812084, - -0.11110542, - -0.012196528, - -0.03695186, - 0.014370862, - -0.052471794, - 0.03426082, - -0.008726523, - 0.0018891039, - 0.0058209975, - 0.0016288601, - 0.14105538, - -0.04200507, - -0.052488483, - 0.15664552, - 0.09675961, - 0.07351414, - -0.11155405, - -0.14573206, - -0.015720027, - -0.110256314, - 0.07549757, - 0.03116669, - 0.11597635, - 0.0062984154, - -0.026287971, - -0.034337018, - -0.12665753, - -0.16700296, - 0.16746883, - 0.052254755, - -0.11244681, - 0.20155916, - -0.008010712, - -0.039891962, - 0.06257752, - -0.011274452, - -0.1508032, - -0.11755597, - -0.03011275, - -0.039989296, - 0.04216688, - 0.004751228, - 0.0881435, - 0.137091, - 0.09628103, - -0.15767443, - -0.09069583, - 0.09000031, - 0.17125003, - -0.060328774, - -0.01128283, - 0.11305467, - -0.1410292, - 0.08914826, - -0.06536972, - -0.061942436, - 0.036102943, - -0.04642167, - 0.10626679, - 0.075559616, - 0.029944593, - -0.08306458, - 0.10425695, - 0.1305927, - 0.07614408, - -0.1587129, - 0.20753016, - 0.07177697, - 0.08188207, - -0.0132571235, - 0.12325377, - -0.022473028, - 0.025029581, - -0.116482355, - 0.10038111, - -0.008542772, - -0.06483578, - 0.064865135, - 0.061700303, - -0.121930696, - 0.056039616, - 0.12670553, - -0.038330525, - -0.06266789, - -0.10887413, - 0.10448654, - -0.13295668, - -0.08138477, - -0.018067302, - -0.079024725, - -0.12116902, - 0.02012466, - 0.03371472, - -0.06892313, - -0.020102806, - 0.015567087, - 0.14177534, - -0.24146338, - -0.15068185, - 0.028983777, - 0.13717513, - 3.0514464E-4, - -0.07773884, - -0.14500351, - 0.014225509, - 0.015230323, - -0.1765008, - -0.058089644, - 0.11849174, - -0.0707341, - 0.06296076, - 0.063437626, - -0.08820502, - 0.09114648, - -0.008356837, - -0.059444238, - -0.046776563, - -0.023552774, - 0.09092684, - 0.034472942, - 0.01583114, - -0.06358203, - 0.0074581364, - 7.8036106E-4, - -0.17101133, - -0.15920752, - 0.011291062, - -0.036834132, - -0.20232107, - -0.07988195, - -0.1254737, - 0.03731963, - 0.116458245, - -0.035042815, - 0.028065205, - -0.0025983024, - -0.13061231, - 0.14944321, - 0.14889266, - -0.044299316, - 0.14112405, - 0.13069315, - -0.04817489, - 0.0115548475, - -0.1134733, - 0.0026592028, - 0.0344504, - 0.003438949, - -0.07955191, - 0.038208112, - -0.031654425, - 0.13669166, - 0.0013978251, - -0.105366796, - 0.0037355947, - -0.07083009, - -0.043525096, - -0.017881483, - 0.068344615, - -0.031179655, - -0.20496498, - -0.07883437, - -0.003928789, - -0.07085954, - -0.059737507, - 0.14974192, - 0.012985924, - -0.0068778503, - 0.12505455, - 0.08739412, - 0.052428797, - -0.022173153, - 0.082953766, - 0.0469278, - -0.06659898, - -0.06046759, - -0.042348653, - -0.01170272, - 0.15480758, - -0.03614238, - -0.082457535, - 0.09565699, - 0.20524424, - -0.18745568, - 0.036840495, - -0.091406874, - -0.0044994224, - -0.04888131, - -0.066626996, - 0.031973924, - 0.07548958, - 0.026469676, - 0.07453737, - -0.057043727, - 0.08154901, - 0.04048187, - -0.0025020214, - 0.14471087, - 0.04102046, - 0.03910194, - -0.095900245, - -0.09014619, - -0.06978665, - -0.046810646, - 0.07880767, - -0.07366726, - -0.08064574, - 0.050004445, - -0.10228787, - -0.12100605, - 0.09372106, - -0.006518682, - -0.099612094, - 0.03765168, - 0.04301388, - -0.089507826, - -0.023071876, - 0.17541529, - -0.0049849376, - -0.041766956, - -0.074718125, - 0.0021562006, - -0.05577421, - 0.045134146, - 0.05256414, - 0.14540395, - 0.022528388, - -0.12570167, - -0.083846115, - -0.068241775, - 0.17260392, - -0.16407485, - 0.022358142, - 0.063741855, - -0.027065305, - -0.15573913, - 0.054941505, - 0.012211928, - -0.008392691, - 0.1560324, - -0.018233117, - -0.15119451, - 0.059953433, - 0.111330464, - 0.08766332, - 0.022051618, - 0.080034435, - -0.1332987, - 0.026656631, - -0.015238163, - 0.04929044, - 0.057268374, - -0.10561998, - 0.12202929, - 0.055481, - 0.019137168, - -0.10521662, - 0.056048643, - 0.009187783, - -0.051958445, - -0.012078299, - -0.023685887, - -0.14230432, - 0.05973269, - 0.019570727, - -0.17270885, - 0.020827582, - 0.054898754, - -0.068902336, - 0.025532546, - 0.0019756753, - -0.15353076, - 0.14453645, - -0.17949888, - -0.007569632, - -0.11197972, - -0.037423033, - 0.049057387, - 0.06787564, - 0.057736818, - -0.015033655, - 0.20105585, - 0.021809993, - 0.12855501, - 0.10498659, - -0.0020087569, - 0.12069367, - -0.09434208, - -0.01980872, - -0.05243766, - 0.08056371, - -0.1667322, - 0.180744, - 0.012984591, - 0.01322558, - 0.104051925, - 0.108022265, - 0.027855957, - 0.03688222, - 0.0795886, - 0.06607306, - -0.13792965, - -0.02066115, - -0.005657035, - 0.061660312, - -0.020973582, - -0.007519798, - -0.0031871432, - -0.019833753, - 0.1228722, - -0.081369795, - -0.018316677, - -0.17053789, - 0.046316084, - -0.21047217, - 0.012282681, - -0.050457854, - -0.1456603, - -0.0924385, - -0.115273565, - 0.019799268, - -0.05790495, - -0.020130573, - -0.176348, - 0.09977175, - -0.061923902, - -0.11426171, - 0.051484864, - -0.05729164, - -0.013903656, - -0.13126117, - 0.07706705, - 0.1070173, - 0.09794431, - 4.8179177E-4, - 0.13256578, - -0.09232261, - -0.056303054, - -0.059478, - -0.028790131, - -0.14801234, - -0.024358984, - 0.11374551, - 0.08526333, - 0.044864565, - 0.090181105, - -0.03533321, - -0.09946197, - 0.04831861, - 0.062280048, - -0.05603473, - -0.04036557, - -0.0671618, - 0.039346524, - 0.05290854, - 0.08622241, - -0.024440141, - -0.012703688, - 0.085162126, - -0.008748866, - -0.06273628, - 0.102048755, - -0.015718088, - -0.042677354, - -0.13271935, - 0.1474405, - 0.023984458, - -0.06544664, - -0.10987217, - 0.01106317, - -0.044209532, - 0.030441495, - 0.017515616, - 0.08669827, - 0.07863142, - 0.013066084, - -0.17445903, - 0.03678448, - -0.15620719, - -0.05728971, - -0.07513968, - 0.12780799, - 0.030356737, - 0.028381893, - 0.14308968, - 0.01412504, - 0.032477483, - -0.031044956, - 0.01769368, - -0.22149916, - -0.12411381, - -0.03334272, - 0.09328289, - 0.06514666, - -0.031383753, - 0.03911938, - -0.083211266, - -0.1486285, - 0.16232185, - 0.07905136, - 0.02986744, - 0.014922193, - 0.087065, - 0.10597095, - 0.08357359, - 0.057137623, - 0.050968185, - -0.10803072, - -0.011893095, - -0.14702931, - 0.06865012, - 0.017661374, - 0.11480434, - 0.007852194, - 0.046935778, - 0.1526073, - 0.059500974, - 0.08791187, - 0.082738146, - -0.011077333, - 0.052464835, - 0.042702973, - 0.0048777396, - 0.10101055, - 0.021286644, - 0.025577528, - -0.18144304, - -0.00408593, - -0.05292307, - 0.002150003, - 0.11012957, - 0.17854752, - -0.058373984, - -0.1761963, - 0.017492747, - -0.18597732, - 0.021987429, - 0.07175609, - -0.18051444, - -0.08041223, - -0.101956956, - 0.108341254, - 0.05144224, - -0.024245575, - 0.043437053, - 0.004868797, - 0.18964794, - 0.085652865, - -0.013094295, - -0.12559511, - -0.07087077, - 0.1287797, - 0.084597856, - 0.21873459, - -0.2134585, - -0.022649646, - -0.016252263, - 0.05309537, - 0.08259566, - -0.10241074, - 0.09645147, - -0.14499664, - 0.04989065, - -0.09957714, - -0.13129061, - -0.017566068, - 0.07515741, - 0.10246906, - 0.09418785, - -0.17087224, - 0.15361117, - 0.25530705, - -0.14363997, - 0.03631745, - -0.0117626665, - 0.12636638, - -0.08930397, - 0.0320343, - -0.26050156, - -0.1848839, - -0.048434727, - -0.050284963, - 0.16012925, - 0.09106827, - -0.005297293, - 0.0078765405, - -0.19228221, - -0.16409577, - 0.015985254, - 0.10450614, - -0.060076922, - 0.074587606, - -0.06524629, - -0.17327611, - 0.13264085, - -0.13168871, - -0.044238765, - -0.012147568, - -0.11450505, - 0.16097042, - 0.14871842, - -0.018634105, - -0.08751999, - 0.004758448, - 0.097772434, - 0.0099524995, - 0.0060378658, - -0.0156093715, - 0.0099093355, - 0.110163055, - 0.0012332128, - 0.0041513345, - -0.03121051, - -0.0066834623, - 0.109158285, - 0.0036729188, - 0.06897361, - 0.19344743, - 0.079107136, - 0.08056381, - 0.1008239, - -0.08259457, - -0.10199292, - 0.049698714, - 0.10531524, - -0.0493834, - -0.035359252, - 0.0501694, - -1.5589685E-4, - 0.07544909, - -0.05307085, - -0.08439449, - -0.018780395, - -0.024424741, - -0.11228105, - 0.0881948, - -0.049345333, - 0.02890069, - 0.033140328, - -0.008479768, - -0.14138713, - 0.045815207, - 0.015160433, - -0.007507229, - 0.095632404, - 0.04399917, - 0.14066453, - -0.04625398, - -0.07475675, - -0.03559452, - -0.026028164, - -0.11031143, - 0.004645804, - -0.018176945, - 0.06637466, - 0.0133567015, - 0.061843626, - 0.3073071, - -0.17513643, - 0.03437215, - -0.0052500735, - 0.088056445, - 0.024412986, - -0.036183443, - -0.011683726, - -0.13648778, - 0.02391713, - 0.19244172, - -0.026068244, - -0.0121372845, - -0.081833564, - -0.05313185, - -0.100818224, - 0.10989211, - 0.04249969, - 0.041145194, - 0.042341042, - -0.03294121, - 0.069606826, - -0.09825155, - -0.04562396, - 0.11735252, - -0.04786289, - 0.07642005, - 0.06536186, - 0.09641448, - 0.20626883, - -0.06498512, - 0.030715851, - -0.060825594, - 0.053554136, - 0.00867634, - 0.033316907, - 0.10560872, - -0.07394857, - 0.112617575, - -0.02432563, - 0.030398298, - -0.040464975, - -0.0039878003, - -0.010010799, - -0.21568333, - -0.103112645, - 0.20160408, - 0.071164995, - -0.034655232, - -0.030764408, - -0.0074042575, - 0.09963285, - 0.039244648, - 0.08449168, - 0.13600607, - 0.07381786, - -0.012147773, - 0.06103555, - 0.049466617, - 0.009611087, - -0.104928434, - -0.18649837, - 0.0085359765, - 0.0885485, - -0.020032618, - -0.016729077, - 0.1449848, - -0.025969496, - -0.053108145, - -0.16812399, - 0.08907689, - 0.07621987, - -0.08821207, - 0.25234577, - -0.005530802, - 0.18658921, - 0.0037040773, - -0.047814466, - 0.007871466, - 0.03759758, - -0.042441268, - -0.18274201, - 0.21546966, - -0.10194059, - -0.046660766, - 0.021621406, - 0.032385767, - 0.06598114, - 0.035620715, - -0.009348699, - -0.0013245615, - -0.08626117, - -0.08128632, - 0.08463884, - -0.0010611879, - -0.079198174, - 0.0062099043, - -0.06374822, - -0.087351, - 0.028332328, - -0.034521192, - -0.19236098, - 0.09982685, - 0.041637618, - 0.039515045, - 0.024191301, - -0.025694754, - 0.04382081, - 0.09878588, - 0.05097701, - 0.08888577, - 0.0076739513, - -0.019267712, - 0.010288149, - -0.04756329, - 0.057217784, - 0.12576796, - -0.063205056, - -0.09929732, - 0.036932223, - 0.014846018, - 0.0062791957, - -0.078535035, - -0.14537564, - -0.14220424, - 0.05567433, - 0.06393421, - 0.15448903, - 0.18868734, - 0.02650905, - -0.03449714, - -0.005245405, - -0.0897321, - 0.090545155, - -0.29583398, - 0.12717833, - -0.010442649, - 0.045234215, - -0.06277217, - 0.0744669, - 0.03259676, - -0.03043345, - -0.12365388, - -0.025054978, - -0.09088026, - -0.1274219, - 0.005710918, - 0.10935498, - -0.011989048, - 0.14162819, - -0.059084814, - -0.16665813, - 0.048348848, - -0.15375647, - 0.011026452, - 0.09839156, - 0.06687568, - -0.02339769, - 0.08031472, - -0.0038212244, - -0.015386373, - 0.0053845365, - 0.0013323141, - -0.13543816, - -0.113358915, - 0.07357196, - 0.04824329, - -0.18457104, - -0.091639824, - 0.098655686, - 0.15440239, - 0.018388787, - 0.020692905, - 0.020008285, - -0.11888351, - -0.09510746, - -0.04010003, - 0.09258894, - 0.060540643, - -0.048923187, - -0.055731572, - -0.009545203, - 0.06456718, - -0.03496579, - -0.048478868, - 0.0061656022, - 0.16450307, - -0.063757904, - 0.026713338, - -0.18030693, - 0.06378294, - -0.07053191, - -0.041287217, - -0.03889101, - -0.03152138, - 0.1377678, - -0.15266412, - -0.025995595, - 0.011376684, - -0.06749294, - -0.07353474, - 0.03355097, - -0.07300624, - 0.040451795, - -0.03227132, - 0.1437139, - -0.05802474, - -0.0435552, - 0.008875823, - -0.082549125, - 0.03528253, - 0.04561481, - -0.05986755, - -0.07637923, - 0.017329553, - 0.097584195, - -0.014334095, - 0.010149277, - 0.019089624, - 0.049166407, - 0.079434134, - -0.07473862, - 0.013637335, - -0.20067553, - 0.069471546, - 0.03249404, - -0.21438666, - -0.11030966, - -0.08074247, - -0.11076687, - 0.22250085, - 0.15890321, - -6.180417E-4, - -0.037171286, - -0.041144248, - -0.08974566, - -0.09624351, - -0.038383435, - 0.04743528, - -0.14948547, - -0.04233123, - -0.048283964, - 0.099713296, - -0.021718755, - 0.046118237, - 0.006573235, - -0.0155326845, - -0.0629128, - -0.019666841, - -0.17089038, - 0.058404487, - 0.006216512, - -0.11121834, - -0.1462312, - 0.045984242, - -0.100166336, - -0.07081361, - 0.062021848, - -0.06801877, - 0.039249703, - -0.08827372, - -0.1113231, - -0.06594143, - -0.110628076, - -0.08003417, - 0.042826265, - -0.114696, - -0.07706079, - 0.060936045, - 0.09247232, - -0.064571664, - -0.112069435, - -0.1967471, - -0.16106659, - -0.07876516, - 0.058731418, - -0.0073979218, - 0.19150628, - -0.028120687, - 0.027755482, - 0.09989679, - 0.06805214, - 0.012745451, - 0.074484065, - -0.033699434, - 0.029856453, - -0.06852489, - -0.01976787, - 0.061009858, - -0.053460322, - 0.023236549, - 0.013472771, - 0.055960033, - -0.1244485, - 0.036768652, - 0.16456325, - 0.07667443, - -0.18575452, - -0.009479912, - -0.043109417, - -0.07494676, - -0.038689617, - -0.128058, - 0.05067144, - 0.0453234, - -0.010948744, - -0.14290084, - 0.06698632, - -0.0020018192, - -0.058534797, - 0.1993581, - 0.07071347, - -0.021285573, - 0.04908965, - -0.05391432, - -0.17098261, - 0.050958145, - 0.026685214, - 0.075256005, - -0.36821774, - -0.08201211, - -0.07690374, - -0.04404165, - -0.15310001, - -0.08884344, - 0.095127806, - -0.024529587, - 0.08062359, - -0.12871158, - 0.1596327, - 0.11302466, - 0.14788355, - 0.09184022, - -0.2113689, - -0.08163659, - 0.022093484, - -0.025209995, - 0.099500686, - 0.19123118, - -0.22969192, - -0.23793206, - 0.11355759, - -0.06664907, - -0.014297642, - 0.009125138, - -0.038696565, - -0.15084428, - -0.08722625, - -0.053870462, - -0.014481535, - 0.07013622, - 0.09541268, - -0.025554284, - 0.02770794, - -0.007296114, - -0.027721828, - -0.007024423, - -0.07021618, - -0.04838725, - 0.047365796, - -0.09058472, - -0.16725391, - 0.009371414, - -0.012276851, - 0.13041185, - 0.0053167557, - -0.09975935, - 0.053692315, - -0.05912538, - 0.10176964, - -0.0014335408, - 0.22517978, - -0.020713223, - -0.10695478, - 0.07132544, - 0.048339296, - -0.06968096, - -0.0035236496, - 0.045453083, - -0.0028328816, - 0.035913654, - 0.02820246, - 0.15381403, - 0.0046890504, - -0.02066996, - -0.009647444, - 0.10104737, - -2.846497E-4, - 0.02733552, - 0.08224035, - 0.027555767, - -0.27721983, - 0.13793775, - 0.067564815, - -0.040392134, - 0.033585764, - -3.8150698E-4, - -0.0059402618, - -0.14580487, - -0.078401715, - -0.16123813, - 0.06422838, - -0.0808723, - -0.22202754, - 0.100850634, - 0.067108326, - -0.050684847, - -7.263303E-4, - 0.012271948, - -0.02478545, - -0.08145208, - 0.11887631, - -0.08207186, - 0.026824594, - 0.16901028, - -0.051098395, - -0.10588313, - -0.02052831, - -0.008076256, - 0.002196488, - 0.09785232, - -0.051135134, - 0.23926787, - -0.11537993, - 0.0078025255, - -0.048455637, - 0.032235708, - -0.046067882, - -0.07820953, - 0.037303053, - -0.035133258, - 0.052541077, - 0.12020684, - -0.076379135, - -0.027076311, - -0.013479847, - -0.20124155, - -0.045358576, - -0.15381926, - 0.0037232358, - -0.16308439, - 0.020131845, - 0.16028987, - 0.021468366, - 0.022553148, - -0.21794304, - 0.014086406, - 0.11609281, - -0.109889396, - 0.06254466, - -0.10338031, - -0.11380827, - -0.0014785302, - -0.106189474, - -0.15981366, - 0.058088336, - 0.04153124, - -0.08063793, - -0.060808815, - 0.067673884, - -0.018772008, - -0.16733827, - 0.032738045, - 0.05291559, - -0.08992358, - 0.10320619, - 0.010012233, - -0.062435474, - 0.015584267, - 0.18721643, - 0.009111464, - 0.12148005, - 0.09845602, - -0.030250775, - -0.059503168, - 0.11396528, - 0.02171607, - 0.15339594, - 0.062123787, - -0.0408896, - 0.11036273, - -0.07560069, - 0.08050205, - -0.083706826, - -0.04187854, - -0.13637479, - 0.10849245, - 0.30177373, - 0.05013879, - 0.11740983, - 0.05716184, - 0.019332001, - 0.016690336, - -0.054304127, - 0.10373807, - 0.040329114, - -0.10330447, - -0.13196664, - -0.08862715, - -0.042244215, - 0.070964016, - -0.07747118, - 0.06823902, - -0.028871393, - -0.039143424, - -0.040749736, - -0.15349708, - 0.030878516, - -0.011393486, - -0.10821547, - -0.075835705, - 0.12932156, - 0.12903956, - -0.11179596, - -0.110623695, - -0.06649356, - 0.0028569205, - -0.03280117, - 0.046436977, - 0.011072663, - 0.04301451, - -0.051139355, - -0.03873396, - -0.0068631307, - 0.0892359, - -0.18937261, - 0.009708394, - 0.0012250744, - 0.0040006572, - 0.10452303, - 0.09152379, - -0.1254098, - 0.008235882, - -0.012630256, - 0.019066917, - 0.07006037, - 0.03381884, - -0.09157967, - -0.10251631, - -0.18657851, - 0.07116581, - 0.030378982, - 0.032808125, - -0.016565375, - -0.013700446, - -0.04410193, - 0.07191256, - -0.18695793, - -0.1635131, - 0.15812956, - 0.05184283, - 0.112460755, - -0.067193165, - -0.025631782, - -0.24584621, - -0.021830836, - -0.13849285, - -0.062548414, - 0.24810572, - -0.09051132, - 0.0042351494, - 0.009166845, - 0.07624159, - 0.004729056, - 0.024686063, - -0.11703532, - 0.18348803, - 0.049936857, - -0.039004743, - -0.12085992, - 0.12225845, - -0.1440502, - -0.024847114, - 0.09811434, - 0.2168697, - 0.103342645, - -0.016317056, - 0.015782483, - 0.11720885, - -0.08860037, - -0.013426292, - -0.13012266, - 0.0114027215, - 0.101492316, - -0.11562787, - -0.10449896, - 0.0426989, - 0.0502629, - -0.052553795, - -0.123216465, - 0.09366721, - 0.025226384, - 0.059888445, - -0.070213124, - 0.0982827, - -0.0510231, - 0.034404285, - -0.057664387, - 1.4880385E-4, - -0.04481901, - 0.25053325, - -0.07838749, - 0.0684512, - -0.059691615, - -0.11095246, - 0.1689415, - 0.02429527, - -0.13623722, - -0.032138195, - -0.056693077, - -0.089658365, - -0.14499511, - 0.1604361, - 0.03277487, - 0.05823712, - -0.06082037, - 0.030179815, - -0.07134051, - 0.1500939, - 0.09172006, - -0.05989854, - -0.018035693, - 0.109315135, - 0.0800171, - 0.033800047, - -0.12882382, - 0.09201473, - 0.063744664, - -0.024625532, - -0.10222981, - 0.16083749, - -0.09668179, - -0.1499793, - -0.116428375, - 0.067163095, - -0.122724205, - 0.2152294, - 0.03566133, - 0.060098223, - -0.039844386, - 0.117842145, - 0.10042427, - -0.038511287, - 0.16265923, - 0.14337422, - -0.19930795, - -0.0077683157, - -0.14061779, - 0.021191083, - 0.090040326, - -0.14232351, - 0.060492508, - 0.09419918, - -0.041902434, - -0.04381457, - -0.13249543, - 0.019271238, - -0.07122559, - 0.1160543, - 0.027849412, - 0.022869496, - 0.041523248, - 0.1762903, - -0.08691551, - 0.049482826, - 0.21424145, - -0.024260849, - -0.1455753, - 0.022284674, - 0.073118486, - -0.006175295, - 0.13933836, - -0.0662873, - -0.0032623194, - -0.036923874, - -0.004092566, - 0.103967346, - -0.03441504, - -0.07530769, - 0.024176916, - 0.1463788, - -0.026279751, - -0.08508832, - 0.05919812, - -0.0070568104, - 0.10671508, - 0.1563501, - 0.028777242, - -7.492096E-4, - -0.0016473453, - 0.15205468, - 0.07311948, - 0.09787458, - 0.15957688, - -0.039774343, - -0.028824285, - -0.10962525, - 0.10084476, - 0.042562664, - 0.1660978, - -0.097284846, - -0.14580397, - 0.111913495, - -0.106841415, - 0.062262874, - -0.17507829, - 0.013515441, - 0.05640857, - 0.10549412, - 0.19325414, - -0.013956129, - -0.001717096, - -0.05781555, - 0.012660639, - -0.028867843, - -0.19061856, - 0.014628455, - 0.13325778, - 0.06279137, - -0.19916692, - -0.13347934, - 0.06847659, - 0.06923757, - -0.019759055, - 0.13805301, - -0.114067, - 0.17356372, - -0.05030902, - 0.03876946, - 0.027514093, - 0.029127624, - -0.04466054, - 0.16328374, - -0.0013006314, - 0.07485433, - 0.10901942, - -0.015166081, - -0.02760725, - 0.0035839088, - -0.24294344, - 0.03681504, - -0.036716543, - -0.026937144, - -0.121742114, - 0.01561508, - -0.08107428, - 0.0746883, - -0.05239764, - 0.0037245855, - 0.07786354, - -0.023896495, - -0.14169548, - -0.020685244, - -0.06311346, - -0.050921433, - -0.034724157, - 0.20389365, - -0.016923597, - 0.029326627, - 0.16686831, - 0.09918338, - 0.009201085, - -0.023687813, - -0.113483034, - 0.07326746, - 0.056564264, - 0.13255543, - -0.26469123, - -0.0048568645, - 0.06525271, - 0.032511994, - -0.11243465, - 0.055959553, - -0.05811432, - 0.0015100879, - 0.18172945, - -0.07488957, - -0.0041949465, - -0.027830888, - 0.021375699, - -0.02728527, - 0.29790804, - -0.019257717, - -0.07390801, - -0.018629877, - -0.21172962, - 0.1166017, - 0.14407438, - -0.030409303, - 0.054066624, - -0.027581697, - 0.05404229, - -0.04861296, - -0.0017637678, - -0.12988316, - -0.1256248, - 0.11686976, - -0.102134526, - 0.057451066, - -0.20610587, - 0.0036375439, - 0.054788325, - -0.22991489, - 0.022966547, - 0.082542345, - 0.013194278, - -0.004313407, - -0.1315714, - -0.04944229, - 0.055376176, - 0.11648215, - 0.16787684, - -0.026360475, - 0.08270705, - -0.042491164, - 0.083588846, - -0.02383046, - -0.05552906, - -0.022342222, - -0.09575608, - -0.1198921, - 0.09588717, - -0.030181529, - -0.010234595, - -0.0863299, - -0.0016403977, - 0.01101081, - 0.05766859, - 0.029451972, - -0.0069861733, - -0.110858455, - -0.06925523, - -0.009861968, - 0.19797659, - 0.049074315, - 0.05042446, - 0.07510882, - 0.03233604, - 0.011824442, - 0.10108389, - -0.14117198, - -0.08156287, - -0.026237318, - 0.120604485, - -0.06627133, - -0.10031777, - 0.0031500675, - -0.12994882, - 0.07146491, - 0.02870336, - 0.068803295, - -0.062250223, - 0.008387611, - -0.16613428, - -0.061030414, - 0.02318007, - 0.017613431, - -0.008866113, - -0.029139068, - 0.10642387, - 0.15292075, - -0.04955368, - -0.10438387, - 0.13564737, - 0.10183435, - 0.00427559, - 0.05180843, - 0.05373417, - -0.043647658, - 0.13584447, - -0.24169096, - 0.08505278, - 0.007981802, - 0.026153753, - 0.043616477, - -4.9047475E-4, - 0.025667815, - -0.055120867, - 0.010559824, - 0.084970966, - -0.123921104, - 0.06625659, - 0.036393963, - -0.059979495, - -0.2011916, - -0.16572307, - -0.11712724, - -0.07446745, - 0.018114975, - -0.0076627485, - 0.05043285, - 0.0112694185, - -0.07188737, - 0.090118565, - 0.036032204, - -0.06230179, - 0.006063755, - 0.1723824, - -0.037603546, - 0.05627696, - -0.006605219, - 0.16655383, - -0.04309768, - 0.051688567, - 0.15417281, - -0.010882014, - 0.15248422, - 0.11830808, - 0.0058745057, - -0.01138321, - -0.07216422, - 0.07445943, - -0.020110356, - -0.05627935, - 0.0028252269, - 0.08271105, - -0.2127769, - 0.12278832, - -0.054242946, - 0.1276385, - -0.13331252, - 0.017564332, - -0.11739519, - 0.0266811, - 0.030078812, - 0.034269206, - -0.12866318, - 0.14099127, - 0.078142874, - 0.080028035, - -0.056664042, - -0.15537602, - -0.11950328, - 0.039032593, - -0.015742633, - -0.15395601, - -0.07289295, - 0.1344912, - 0.06749015, - -0.14273338, - -0.027609413, - -0.14592916, - -0.13225415, - -0.1284753, - 0.0023557753, - -0.0806195, - 0.13757476, - -0.012307994, - -0.028587064, - -0.031481907, - -0.060507584, - 0.12755527, - -0.07225932, - -0.0015405148, - 0.0532549, - 0.11359151, - 0.020080397, - 0.040896814, - 0.007130394, - 0.15291642, - -0.07103642, - 0.027621679, - -0.062517054, - -0.16688403, - -0.12592365, - 0.09609735, - -0.08044423, - -0.092031576, - 0.079050176, - 0.07459083, - 0.042764932, - 8.2531804E-4, - -0.03065281, - -0.01933868, - -0.06807367, - -0.06800296, - -0.026363058, - 0.1827576, - 0.012014224, - 0.018447878, - -0.04592217, - -0.26288334, - -0.085568435, - 0.10482219, - 0.06550816, - 0.015765337, - 0.05802973, - 0.107438885, - 0.013895559, - 0.03171229, - 0.1754146, - -0.032846477, - 0.06326906, - -0.037229728, - 0.06354993, - -0.10773239, - -0.011810223, - -0.13230467, - 0.11880312, - -0.045643102, - 0.010382915, - -0.0026516458, - 0.0454746, - -0.0059293583, - -0.005131665, - 0.13614987, - -0.03865237, - 0.05725509, - -0.05993749, - -0.02132952, - 0.067266114, - -0.15509708, - 0.05644943, - -0.08836544, - -0.060835943, - 0.001655392, - -0.059859972, - 0.059932962, - -0.04282441, - 0.07082511, - 0.06806369, - 0.09406946, - -0.14980759, - 0.036526456, - 0.10096192, - 0.04283786, - 0.1391168, - -0.066100396, - -0.019664418, - -0.06860451, - -0.009864181, - -0.09952908, - 0.059552576, - -0.030632019, - 0.06637552, - 0.019001812, - 0.0043498343, - 0.005545663, - 0.15641056, - -0.0050984593, - -0.12063988, - -0.054641917, - -0.13302584, - -0.0957664, - 0.16442166, - 0.1142789, - 0.113532424, - -0.061221927, - -0.07010907, - 0.037136234, - 0.04442448, - -0.023514392, - 0.08395138, - -0.12717871, - 0.04202502, - -0.0659739, - -0.008233892, - 0.0011360098, - 0.09081285, - -0.021406835, - -0.1328253, - 0.1471357, - 0.09566901, - -0.054375973, - 0.024329804, - 0.014177215, - 0.071135804, - 0.033659387, - -0.023391213, - 0.040174402, - -0.11204881, - -0.066179805, - 0.1348038, - 0.008917157, - 0.045082506, - -0.12893832, - -0.033167686, - -0.039834958, - -0.1672003, - -0.08871713, - -0.0028640993, - 0.0023145268, - 0.14577515, - -0.030870458, - 0.11768606, - -0.01799277, - -0.05458909, - -0.02107954, - 0.0064913584, - -0.11440923, - 0.07313747, - -0.012106991, - -0.077185735, - 0.12704389, - -0.06741812, - 0.050853528, - -0.021749813, - 0.01881137, - 0.17750742, - 0.13686849, - 0.09577454, - 0.022253972, - 0.15510397, - 0.001483332, - -0.09341694, - 0.06079843, - 0.123547055, - -0.037422054, - 0.008714425, - 0.04808317, - 0.19196354, - 0.12212927, - -0.10111263, - 0.14257112, - 0.06885865, - -0.118741274, - 0.05577462, - -0.16796854, - -0.07723871, - 0.018794185, - 0.18132038, - -0.1589941, - -0.003172167, - 0.0110238, - -0.031735383, - -0.15474634, - -0.121365875, - -0.14207366, - 0.029194241, - 0.053577587, - 0.121217504, - 0.12799609, - -0.18648645, - -0.06724387, - -0.029935842, - 0.009377622, - 0.1150719, - -0.008621432, - 0.008728646, - 0.013094141, - 0.19409361, - -0.1799439, - -0.16940095, - 0.15500766, - 0.07925165, - 0.033674773, - 0.09785737, - 0.03492253, - -0.10139494, - 0.028134089, - -0.13928361, - 0.2893535, - 0.07898025, - 0.053312603, - -0.13893862, - -0.017874615, - 0.007657186, - 0.10406182, - -0.08023188, - 0.114023976, - 0.023240166, - 0.095664546, - -0.15331435, - -8.530127E-4, - -0.12099588, - 0.07067927, - 0.030637639, - -0.06391653, - -0.09558246, - 0.017997984, - -0.025828581, - -0.082618706, - 0.08031201, - -0.24648131, - 0.017478917, - 0.09939677, - 0.1558921, - 0.01747523, - 0.09950131, - 0.110242926, - -0.016853146, - -0.024355521, - -0.025583994, - 0.08806827, - -0.108116955, - 0.1619916, - -0.031624198, - -0.05676625, - 0.02769135, - -0.018852612, - 0.09198734, - 0.09056334, - 0.18971244, - 0.020279303, - 0.04765995, - 0.0075510894, - 0.046988394, - 0.039394535, - -0.0548254, - -0.2008695, - -0.07473962, - 0.054632295, - -0.046281185, - -0.15455444, - 0.05777966, - -0.023999823, - 0.03773037, - 0.015160037, - 0.13413309, - -0.08884604, - 0.039009627, - -0.09007511, - 0.100822, - -0.16714585, - -0.1614972, - -0.015782272, - -0.067378744, - 0.058061473, - 0.0873821, - -0.07328428, - -0.11033222, - -0.054634757, - 0.10874804, - 0.17863089, - 0.082782224, - 0.10007849, - 0.09143414, - 0.036713775, - 0.08580684, - -0.031074889, - 0.14160132, - -0.04344607, - -0.032873437, - 0.18456514, - 0.028908264, - 0.007807851, - 0.0665482, - -0.0033642922, - -0.10963408, - 0.14787778, - 0.030412287, - -0.010957481, - 0.06948267, - -0.015854508, - 0.12212148, - -0.07881813, - 0.056162864, - -0.20437123, - -0.032302316, - -0.04825413, - 0.10169922, - -0.005199279, - -0.109975465, - 0.047296826, - 0.074192785, - 0.09288801, - -0.026419906, - 0.020707171, - 0.122276664, - -0.016648386, - -0.049292766, - -0.0056056147, - 0.003382659, - -0.08553485, - -0.067240044, - 0.10066474, - 0.10737457, - -0.014099815, - 0.08019976, - 0.14520125, - -0.06092423, - 0.05332274, - 0.12983963, - -0.024401369, - 0.15848769, - -0.085425526, - -0.16952492, - -0.07579987, - -0.07082438, - 0.09076811, - 0.13396661, - 0.03542341, - 0.010316541, - 0.021732287, - -0.004120402, - -0.020916866, - -0.09140883, - 0.067199625, - 0.107604064, - 0.14103368, - 5.503793E-4, - -0.06955734, - -0.106294766, - -0.064447396, - -0.096609406, - 0.04582171, - -0.11053011, - -0.039897192, - 0.04966106, - 0.022222422, - 0.012179674, - -0.09709505, - 0.12582295, - -0.13185145, - -0.2141001, - 0.08595199, - 0.12702473, - 0.04191748, - 0.20113358, - -0.10733508, - 0.04265982, - 0.04095155, - 0.17330463, - -0.17408657, - -0.029087538, - 0.062744245, - -0.07854951, - -0.0013439726, - 0.1227908, - 0.0035236238, - 0.07667589, - 0.19966523, - -0.05883069, - -0.05335139, - 0.07788367, - 0.09973525, - -3.3351345E-4, - 0.11366285, - 0.006437618, - 0.03872296, - -5.74515E-4, - 2.7343744E-4, - 0.0059751514, - 0.024626432, - 0.0394844, - 0.024263697, - 0.15572268, - 0.11236007, - -0.013584014, - -0.079349704, - 0.009058278, - 0.05309495, - 0.07584498, - 0.09261873, - -0.017950818, - -0.08840482, - 0.09148421, - -0.11492399, - -0.14541884, - 0.1934318, - -0.0066845743, - 0.083039835, - -0.01860887, - 0.014797817, - 0.12452631, - -0.030656125, - 0.03299197, - 0.09280114, - -0.15464576, - 0.1176072, - -0.035791982, - -0.20120235, - -0.04613885, - -0.120096155, - 0.09495145, - -0.07618702, - 0.06371827, - 0.13959907, - -0.084982924, - -0.032907516, - -0.23930198, - 0.06586571, - -0.010426733, - -0.109809555, - 0.053960428, - 0.102610216, - 0.05156155, - -0.072190076, - 0.056868147, - 0.072732784, - -0.1404132, - -0.05710373, - 0.016667156, - 0.086134605, - -0.08848222, - 0.17503385, - 0.04230001, - 0.007993952, - 0.01258787, - -0.07247018, - 0.01681058, - 0.06510894, - 0.08363938, - -0.009284693, - 0.09612663, - 0.05499325, - 0.023276668, - -0.0066367444, - -0.14645766, - 0.12016956, - -0.06734839, - 0.00343969, - 0.200102, - 0.05535826, - -0.1438057, - -0.22075264, - 0.05942854, - 0.00306031, - -0.110806234, - -0.09780394, - -0.028273799, - 0.035122175, - -0.04177159, - 0.04121147, - -0.0014048524, - -0.13426474, - 0.051395085, - 0.085296236, - -0.013263832, - -0.12068949, - -0.062027942, - -0.03215338, - -2.6513968E-4, - 0.09579848, - -0.13488318, - -0.010475226, - 0.12183196, - 0.05598959, - -0.022465762, - 0.09611163, - -0.030550707, - -0.016219374, - 0.09038154, - 0.09448503, - -0.04623374, - -0.0788149, - 0.021846911, - -0.03940193, - -0.07400254, - 0.15969445, - -0.011602769, - 0.038246937, - -0.06575767, - 0.06250986, - -0.06849961, - -0.019618709, - 0.03553474, - 0.11234761, - 0.11597896, - -0.078283735 - ], - "reducedFeatures" : [ - 0.0014462079, - 0.016500179, - -0.030146567, - -0.01913964, - 0.044345908, - -0.055019945, - -0.015219277, - 0.038773928, - -0.047141463, - 0.046707194, - 0.0078655295, - -0.016625397, - 0.0025888737, - -0.04120464, - -0.005009772, - 0.033327937, - 0.0023422325, - -0.063333, - -0.07396303, - -0.016391428, - -0.012212664, - 0.016357282, - -0.001148274, - 0.014009858, - -0.005491131, - -0.02357801, - 0.017211389, - 0.0068395007, - 5.97863E-4, - -0.006348147, - 0.021222373, - 0.02828191, - 0.008216096, - -0.02533087, - -0.01862623, - -0.028644696, - 0.021716375, - 0.026359344, - -0.0016304388, - -0.022805946, - -3.3060284E-4, - -0.03353046, - 0.009191799, - -0.04076807, - 0.012131605, - 0.06701257, - 0.006278178, - 0.0068515856, - 0.01360184, - 0.042798616, - -0.0402525, - 0.040656164, - -0.022788433, - 0.0062882067, - -0.027489169, - 0.023419337, - -0.010558794, - -0.007162109, - 0.033906452, - -0.06294359, - 0.014331426, - 0.027065193, - -0.028028237, - -0.0035825982, - 0.0043001305, - 0.045739014, - -0.037182786, - -0.022647649, - -0.014757521, - -0.039014824, - -0.074131735, - 0.0426751, - -0.056155894, - 0.042516146, - 0.0050847162, - 0.027613828, - -0.008124554, - -0.015364425, - 0.0018093785, - 0.04789036, - 0.044079125, - -0.022733387, - -0.03920776, - 0.05354071, - -0.0066009513, - 0.0037297108, - 0.014438438, - 0.0094517665, - 0.046343178, - -0.041220017, - 0.030128408, - -0.0477035, - 0.023694536, - 0.027625628, - -0.021435061, - 0.019799493, - 0.0046091266, - -0.005992744, - -0.021911008, - -0.032584187, - -0.006223279, - 0.0015138873, - -0.019564576, - -0.027542824, - 0.016804969, - -0.034713667, - 0.018951321, - 0.012371022, - -0.0013338043, - 0.01916392, - 0.021740511, - -0.008786272, - -0.019563291, - 0.0053517, - -0.05603684, - -0.06869725, - 0.014204365, - 0.00573452, - 7.490564E-4, - 0.04599408, - -0.035190605, - -0.042768948, - -0.017989079, - 0.027266167, - -0.03614145, - -0.0040073013, - 0.033758298, - 0.0038261092, - -0.052110445, - 0.0014398841, - -0.02907994, - -0.006467352, - 0.025059113, - 0.04379674, - 0.02574875, - -1.7609632E-4, - -0.014093238, - 0.009491621, - -0.006237837, - -0.042704478, - 0.009790412, - 0.006060512, - 0.009752391, - 0.04761101, - 0.01896964, - -0.041850552, - 0.034269795, - -0.016476808, - -0.0064205388, - -0.0061391736, - 0.0028126466, - 0.03195461, - 0.03153663, - -0.017940871, - -0.03149931, - -0.012587582, - 0.017783148, - 0.017285658, - 0.025978303, - -0.0019410161, - -0.07641627, - -0.03018401, - 0.028893722, - 0.061895482, - 0.0365311, - 0.04727066, - 0.025271697, - 0.027183823, - -0.0025051655, - 0.03256647, - -0.021238714, - 0.013320469, - 0.03271793, - -0.017569674, - -0.021115888, - -0.039851885, - -0.0010084874, - 0.024720356, - 0.032647952, - -0.008236574, - 0.013888292, - -0.03221954, - 0.028823333, - -0.019551676, - -0.03920666, - 0.05283907, - -0.031124644, - 0.019261526, - 0.041314293, - 0.046375155, - -0.03866108, - -0.041309617, - 0.030200226, - -0.007815144, - -0.004734079, - 0.03837979, - -0.007210968, - -0.01621682, - 0.041341454, - -0.016104741, - -0.0043027075, - -0.015690845, - 0.046012152, - 0.023178954, - 0.014923002, - 0.04281583, - 0.017892405, - 0.011996746, - -0.05856208, - 0.019235548, - -0.049750783, - -0.024987573, - 0.028320689, - -0.020000452, - 0.019823225, - 0.008150045, - 0.032388505, - -0.0030404765, - -0.005825795, - -0.013554673, - -0.015091803, - -0.06233423, - -0.011115378, - -0.07705231, - -0.025693059, - -0.0053905724, - 0.018290006, - -0.029970579, - -0.013330258, - 0.066920534, - -0.043730386, - 0.048589658, - -0.030068045, - -0.046205323, - -0.03683782, - 0.03051735, - 0.07168116, - 0.029650385, - 0.017529879, - 0.027890654, - -0.012792687, - -0.019153118, - -0.010112189, - 0.07269591, - 0.05222409, - -0.005049008, - -0.019112783, - -0.028684633, - -0.0032217468, - 0.0079700835, - -0.014620528, - -0.025077365, - -0.005870171, - -0.0068023894, - 0.019716656, - 0.013362302, - -0.026331542, - -0.04720596, - 0.00574691, - 0.009717734, - -0.0033612882, - -0.0347573, - -0.009494286, - -0.01591286, - -0.04932408, - -0.025447914, - 0.0044562533, - -0.007868513, - 0.03288367, - -0.02781714, - -0.003503685, - -0.03097691, - 0.010116551, - 0.0037031882, - -0.005801126, - 0.0067422353, - 0.028835714, - 0.033430144, - 0.007156507, - 0.029996246, - 0.04435411, - 0.0038910066, - 0.020081991, - -0.031126395, - -0.027913814, - 0.02657232, - -0.0024692272, - -0.0047841044, - -0.011934623, - 0.04781787, - -0.02921773, - 0.0023201455, - 0.013661082, - 0.014057136, - -0.046072006, - 0.015059377, - 0.0088636, - -0.03922422, - 0.02709674, - -0.011615718, - 0.017330708, - 0.015362491, - -0.027467825, - 0.030099314, - -0.022513926, - -0.0011685485, - 0.013640476, - 0.013892079, - -0.035203937, - -0.019019118, - -0.06975846, - 0.009573041, - -4.8169016E-4, - 0.0038473175, - 0.021199169, - 0.001874002, - 0.028603556, - 0.018712033, - -0.038429793, - 0.05884795, - -0.013681075, - 0.03596165, - 0.011776223, - -0.052460574, - -0.0076549742, - 0.010972598, - 0.0027489602, - -0.016110456, - -0.03704576, - -0.057859905, - -0.025657916, - -0.020304192, - 0.019594397, - -0.014144346, - 0.0044451137, - -0.07368646, - -0.006447677, - -0.004107172, - -0.008564516, - 0.036124974, - 0.03477879, - 0.07575085, - -0.038760167, - -0.024026422, - -0.01569978, - 0.022731543, - 0.01175258, - -0.025756054, - 0.046136424, - -0.02795231, - -0.012771786, - 0.011708892, - -0.05350763, - -0.07346599, - 0.034135975, - 0.05107219, - -0.005225097, - -0.028526757, - 0.0024403615, - -0.009580669, - 0.041932635, - 0.0487595, - 0.014748314, - 0.009984531, - -0.009552644, - -0.021648342, - -0.019535758, - -0.02250857, - 0.015339387, - -0.00952914, - -0.0025436447, - -0.0092899725, - 0.0068017207, - 0.021985019, - -0.011638142, - -0.033408504, - 0.0356865, - -0.0019227162, - -0.015086456, - 0.05127764, - -0.01692312, - 0.0579516, - 0.03731189, - -0.009738708, - -0.022503067, - -0.052715875, - 0.06352072, - -0.008957883, - -0.014269257, - 0.046118155, - 0.038417242, - -0.03956585, - 0.018055713, - 0.021633586, - 0.00872337, - -0.008520446, - 0.039485276, - 4.276066E-4, - -0.02588947, - -0.026155176, - -0.052475616, - -2.4931697E-4, - -0.034955516, - 0.004168193, - 0.0515013, - 0.018667044, - 0.04898176, - -0.021851938, - -0.034418438, - 0.02613882, - -0.014153181, - 0.06564187, - -0.0043243715, - -0.017743992, - 0.0058452687, - -0.032359365, - -0.041647796, - 0.0016758329, - 0.005591088, - -0.03811888, - -0.04465271, - -0.021366253, - -0.014796466, - -8.937869E-5, - -0.034426652, - -0.06603801, - 0.0032248865, - 0.076221734, - -0.055854153, - -0.0013792531, - -0.0022608861, - 3.2521042E-4, - -0.023305055, - -0.032835513, - -0.019766968, - -0.013361037, - -0.019634055, - 0.0016191802, - 0.029441193, - -0.018112129, - 0.050611455, - -0.04677126, - -0.017752642, - -0.01651658, - 0.08950018, - 0.045597117, - 0.02288044, - 0.073092505, - 0.031257924, - 0.026007092, - 0.053965166, - -0.054355647, - 0.014850083, - -0.020337086, - -0.036456265, - -0.012707425, - -0.03646662, - 0.010050921, - 0.0013519083, - 0.048688445, - -0.030662954, - 0.05338392, - -0.038622353, - -0.062329646, - -0.006145024, - -0.017106242, - -0.04183015, - -0.077743545, - -0.019040432, - 0.041468628, - 0.04665724, - 0.04811842, - -0.019865239, - 0.02506494, - -0.007312395, - 0.024440926, - 0.04483572, - 0.03619529, - -0.004029722, - -0.0056989375, - 0.037723295, - -0.0010604289, - 5.202454E-4, - -0.023569383, - -0.019139301, - 0.017050534, - -0.013522416, - 0.017223071, - -0.069047436, - -0.050727956, - 0.02633273, - -0.010614968, - -0.03284553, - -0.002910928, - -0.0013958967, - -0.0013659924, - 0.0189828, - 0.031796392, - 0.010484119, - -0.016952442, - 0.035289414, - 0.007153332, - 0.024693323, - -0.039658457, - -0.012882951, - 0.0327157, - 0.08776711, - 0.018880064, - -8.993121E-4, - 0.007934057, - 0.002712564, - 0.035871495, - -0.024445994, - -0.020928573, - -0.0016029702, - -0.023448037, - -0.0026086913, - 5.769394E-4, - 0.05534262, - -0.04986712, - -0.012991826, - -0.02321707, - 0.0065983967, - -0.030382974, - -0.026290884, - -0.0031991424, - 0.006038945, - 0.015652223, - -0.008896052, - 0.021229833, - 0.0057747406, - -0.052211724, - 0.0040984503, - -0.025278863, - -0.053360306, - 0.009887459, - 0.0671934, - 0.026983757, - -0.029331166, - -0.015154508, - 1.6971456E-4, - -0.029757354, - 0.049751427, - -0.028808277, - -0.014146651, - 0.011800591, - -0.033404235, - 0.0040109204, - -0.009198946, - 0.005579677, - -0.028306577, - -0.04456116, - 0.014795487, - -0.029562308, - 0.025476236, - 0.039285813, - 0.044546615, - -8.2171784E-4, - -0.059526138, - 0.032580093, - 0.04082724, - 0.005177824, - 0.062050268, - 0.018110847, - -0.04135549, - -0.021214975, - -0.031651873, - 0.023766922, - -0.07473352, - -0.0020592057, - -0.006464492, - 0.027362058, - 0.022187997, - -0.018684607, - -0.0032068293, - -0.017134367, - 0.010960836, - -0.03464101, - 0.0091783, - -0.027528381, - -0.007808166, - 0.0436956, - 0.035027433, - -0.021717839, - -0.02759914, - 0.025389785, - -0.02158694, - 0.025564937, - 0.005935999, - -0.003371406, - -0.03643049, - 0.003223056, - 0.046501417, - 0.021716736, - -0.0034275216, - -0.068409786, - 0.009875047, - -0.01579821, - 0.0516623, - -0.047713965, - -0.027095348, - -0.043061182, - -0.0129697975, - 0.06614436, - -0.016264012, - -0.033552416, - -0.01101882, - -0.015347613, - -0.06980595, - -0.033647895, - 0.038419716, - 0.001328924, - 0.016913988, - 0.032893505, - -0.03798562, - -0.022291586, - -0.043464802, - 0.02538592, - -0.013351011, - -0.023569183, - 0.03124095, - -0.020043014, - -0.06595376, - -0.002845311, - -0.016032342, - 0.019464877, - 0.0040263706, - -0.0072329347, - -0.014005145, - -0.013056212, - -0.005217736, - 0.0108583905, - 0.0012548767, - 0.024617705, - -0.031769603, - 0.010547911, - -0.04600275, - -0.013604443, - -0.060851883, - 0.027489472, - 0.036470264, - 0.0113721285, - -0.011580548, - -0.029510893, - -0.024133097, - -0.055744328, - 0.01797659, - -0.0026006044, - 0.026545152, - 0.02494482, - -0.01589115, - -0.006215697, - -0.050246343, - -0.04475391, - 0.01714684, - 0.018322194, - -0.008537882, - -0.016381519, - -0.038220417, - -0.0063006, - 0.018142141, - 0.04054532, - 0.02803234, - -0.019407874, - -0.017715076, - 0.04199261, - 0.017747574, - 0.031541303, - -0.06072645, - 0.015370469, - 0.02863869, - -0.015826192, - 0.03878528, - -0.028407712, - 0.010862141, - 0.053952336, - -0.036020823, - -0.06735242, - 0.0357275, - -0.059608426, - 0.052227937, - 0.03302852, - -0.019070117, - 0.017891057, - -0.022706388, - -0.03100635, - -0.0153918825, - 0.03708342, - 0.023718353, - 0.010926942, - 0.017346533, - -0.10519445, - 0.0079448465, - 0.02644502, - -0.012011229, - 0.024391033, - -0.007883896, - -0.0027274727, - 0.025062416, - 0.04829575, - -0.040109497, - 0.014305288, - 8.2608935E-4, - 0.03922747, - 0.026433792, - -0.009910892, - -0.029391646, - 0.03312903, - 0.016973376, - 0.0110082105, - 0.03274176, - -0.022400225, - 0.033770226, - 0.031749524, - -0.008937984, - -0.010244658, - 0.008782887, - 0.022610616, - -0.049677607, - 0.0016270214, - -0.009741291, - 0.01774589, - 0.006334965, - -0.04508591, - -0.059498552, - -0.0011736209, - -0.01977073, - 0.008757307, - -0.030400693, - 0.038023792, - -0.030417522, - 0.04164633, - -0.049358808, - 0.026862752, - -0.02586581, - 0.082935296, - -0.029979303, - 0.02012269, - 0.026033692, - -0.03416877, - -0.012763114, - -0.045681912, - -7.3018693E-4, - 0.001626877, - 0.010110146, - 0.0044064606, - 0.009806533, - 0.002443729, - 0.008339599, - -0.022773797, - -0.024895966, - -0.008142843, - -0.0079533085, - -0.022355756, - 0.0029633432, - -0.048124515, - -0.059091438, - -0.026695646, - -0.0029746753, - -0.004780454, - 0.0013196203, - -0.0137686, - 0.0166721, - 0.015561752, - 0.015622397, - -0.011133559, - 0.00806972, - 0.03342068, - 0.0072595333, - 0.021740884, - -0.023548562, - -0.04648101, - -0.035312764, - 0.037519902, - 0.0043646474, - 0.013519257, - 0.002131214, - -0.01526606, - 0.02113816, - -0.035222642, - 0.030957514, - -0.03787373, - 0.013326183, - -0.051816233, - -0.023313096, - 0.062590264, - -0.019589016, - 0.04588723, - 0.013411448, - -0.04048517, - 0.03280217, - -0.0036450482, - -0.0043758475, - 0.036203627, - -0.04490502, - -0.017164206, - -0.0045540305, - -0.025690792, - -0.0060749636, - -0.059756298, - -0.0968617, - 0.027694639, - 0.04034949, - -0.06352247, - 0.024874499, - 0.017490529, - -0.07041957, - 0.015075536, - 0.009619641, - 0.0064552976, - 0.044935614, - 0.068791926, - -0.0019698434, - -0.015877353, - -0.013740314, - 0.029336546, - 0.0444956, - 0.031503882, - -0.054968063, - -0.059723057, - -0.031094436, - -0.020275595, - 0.0055060773, - 0.02172903, - -0.0038211264, - -0.062796004, - -0.017689534, - 0.047440086, - 0.0037693353, - -0.007932039, - -0.026680643, - 0.022237847, - -0.029436586, - -0.0072464086, - -0.020399474, - 0.004348229, - -0.007720545, - -0.032159872, - 0.0041689435, - 0.043108348, - -0.006833849, - 0.011959108, - 0.043250483, - -0.02875751, - -0.014314678, - 0.009069515, - -0.06336272, - 0.03895587, - 0.028500237, - 0.070187025, - -0.009028111, - 0.0145521145, - 0.026692081, - -0.0065137316, - -0.018701112, - -0.0066192555, - -0.052057564, - -0.01925022, - 0.06592815, - -0.03505694, - -0.0436359, - -0.015408032, - 0.05280523, - -0.058293413, - 0.039156232, - -0.06886661, - -0.044991035, - -0.046297774, - 0.0064078085, - 0.006903186, - 0.036696576, - 0.027052864, - -0.005981102, - 0.017007772, - 0.012110963, - -0.031513315, - -0.06641944, - -0.031186687, - 0.0019542752, - -0.028481528, - 0.010336148, - -0.021053953, - 0.01136428, - 0.0061054495, - -0.03420169, - -0.028842475, - 0.01669865, - -0.011543499, - -0.008569444, - 0.01699446, - 0.014583145, - 0.011325154, - -0.046864785, - 0.07907317, - 0.017755387, - -0.039892536, - -0.0026894328, - 0.06177214, - -0.0022386005, - 0.003076261, - 0.039046954, - 0.030347578, - -0.0018720102, - 0.0024896387, - 0.02312883, - 0.06102502, - 0.018626006, - -0.030627908, - -0.025745744, - -0.04858033, - 0.010820594, - 0.032607142, - -0.009348961, - 0.017435808, - 0.011271967, - -0.0446528, - 0.055068746, - 0.016224116, - 0.029508637, - 0.009361873, - 0.038578007, - -0.034563165, - -0.040709294, - 0.002145276, - 0.02204933, - 0.02105185, - 0.0068314355, - -0.038299464, - 0.005247107, - -0.027933748, - 0.03872671, - -0.048470926, - 0.052205406, - -0.0070015774, - -0.045703247, - -0.02715334, - 9.0787106E-4, - 0.04269196, - 0.032051858, - 0.07579035, - 0.03132379, - -0.06982343, - -0.0043436396, - -0.004364313, - -7.253755E-4, - -0.046426278, - -0.035544187, - 0.016289411, - -0.016325908, - 0.02189822, - 0.0063632675, - -0.010987277, - 0.060366888, - -0.0066831773, - 0.056177147, - 0.04021567, - -0.01187578, - 0.004733353, - -0.021251628, - 0.007227346, - 0.03412671, - 0.004791416, - -0.031841986, - -0.048642356, - 0.035915434, - 0.019072803, - 0.0074855043, - 0.032551534, - 0.027878935, - -0.01587281, - -0.008539834, - 0.027280565, - 0.012901756, - -0.009571685, - 0.00651003, - 0.0013695334, - 2.3843657E-4, - 0.004940879, - 0.038748287, - 0.010120641, - -7.309854E-4, - -0.05029102, - 0.019795286, - 0.048833728, - -3.9605828E-5, - 0.015910517, - 0.057747617, - 0.01445802, - -0.0029042866, - -0.017776541, - 0.020610966, - -0.037452832, - -0.044344604, - 0.04288452, - 6.6228694E-4, - -0.01765156, - 0.010223696, - -0.007553053, - 0.020444917, - -0.0055063707, - 0.04398978, - 0.026074598, - 0.033879194, - 0.022305075, - -0.05161997, - -0.006672875, - 0.025764674, - 0.0138414325, - -0.016766079, - -0.047475565, - -0.016680434, - -0.013980217, - -0.020988118, - -0.010095181, - -0.014139629, - -0.028162468, - -0.05080934, - 0.017959092, - 3.678376E-4, - -0.032022905, - 0.007201945, - -0.007901259, - 0.010301675, - 0.06729819 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "3/0", - "3/0", - "7/0", - "8/0", - "2/0", - "1/0", - "5/0", - "2/0", - "3/0", - "6/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "5/1", - "62/1", - "64/1", - "39/1", - "62/1", - "45/1", - "74/1", - "2/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "10/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "11/1", - "260/2", - "274/2", - "30/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "145/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "176/2", - "257/2", - "116/2", - "90/2", - "218/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "36/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#A43B97", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "snifpuhw", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "MtR6hlunjA", - "jb5RHwOnqL", - "ERmPfUfhSc" - ], - "title" : "title-457iJqhTxo", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.1.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.1.json deleted file mode 100644 index f7a649968..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.1.json +++ /dev/null @@ -1,5404 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.680023Z", - "id" : "dvxnimsc", - "document" : { - "modifiedTime" : "2053-09-14T04:08:15Z", - "display" : { - "id" : "dvxnimsc", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/GHO.jpg/info.json", - "linkText" : "Link text: NrorKmH2", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/GHO.jpg/info.json", - "linkText" : "Link text: NrorKmH2", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#ABCE3D", - "source" : { - "id" : "h3g8weqi", - "title" : "title-DFojYr8zj8", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "dvxnimsc", - "sourceIdentifier.value" : "bsUOk12n94", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.08088006, - 0.010792395, - -0.03134479, - -0.06683393, - 0.024685105, - -0.054112036, - -0.015288066, - 0.12867014, - -0.05896434, - 0.11134275, - -0.25111413, - -0.08597783, - -0.06923632, - 0.07814088, - -0.054613005, - -0.07396779, - 0.13466422, - 0.008448631, - 0.0016394651, - 0.0044018757, - -0.09406291, - 0.008033636, - -0.01065426, - -0.043200213, - 0.05396205, - 0.074878514, - 0.020204788, - 0.08996926, - 0.087881766, - -0.18238685, - -0.107886635, - 0.087249495, - 0.044690836, - 0.050994683, - -0.020595392, - 0.021658806, - -0.1202675, - -0.033346336, - -0.034688875, - -0.05874227, - -0.029695524, - -0.010664091, - 0.13270085, - -0.118079655, - -0.06534116, - 0.060008947, - 0.07136292, - -0.07056844, - 0.057108894, - 0.115555644, - 0.14056176, - 2.2967497E-4, - 0.11210519, - -0.08904255, - -0.07442272, - -0.115425505, - 0.040569, - 0.06368281, - -0.07941296, - -0.15443134, - 0.08545341, - 0.16157524, - -0.07875422, - -0.07441911, - 0.05062628, - -0.02362708, - 0.08824019, - -0.010887956, - -0.073772155, - 0.0416019, - 0.026818262, - 0.017961584, - -0.13411695, - 0.056418553, - -3.9657223E-4, - -0.05763938, - -1.0824483E-4, - -0.0035721036, - -0.0813803, - -0.13005424, - 0.06042504, - 0.062382255, - 0.004889611, - -0.010179544, - 0.09608592, - 0.09355602, - -0.21126859, - -0.026929747, - 0.05031279, - 0.10204167, - 0.066874966, - 0.19926637, - -0.087244555, - 0.06353248, - 0.110139064, - 0.018399552, - -0.07648035, - -0.038332574, - -0.035567284, - -0.062564366, - -0.11672815, - -0.15406524, - -0.12063877, - 0.11371056, - 0.08895892, - -0.12997776, - -0.01956448, - 0.032054417, - -0.051085852, - -0.06470962, - 0.091920875, - -0.053619377, - 0.108010165, - 0.028955316, - -0.020475538, - 0.06860068, - -0.044317856, - -0.2053505, - 0.05780621, - 0.060012195, - -0.022642553, - -0.13866, - -0.059566382, - 0.049718995, - -0.047272548, - -0.0018368589, - 0.010778743, - -0.0060818214, - 0.0625704, - -0.032844607, - 0.016475206, - -0.03541996, - 0.012227919, - -0.08589039, - 0.12259026, - 0.002379433, - 0.09033886, - 0.09787537, - 0.019443134, - -0.15498833, - 0.0094875675, - -0.0035014115, - 0.1444708, - 0.04158538, - -0.029365215, - 0.048903473, - -0.006069829, - 0.08876883, - -0.060874056, - -0.043081924, - 0.09068835, - -0.056372482, - -0.04242136, - -0.035962418, - -0.022498513, - 0.0962246, - 0.0533572, - 0.007493964, - -0.030346218, - -0.09474478, - 0.003893911, - 0.055516545, - 1.4598388E-4, - 0.048075296, - 0.14220881, - -0.1301544, - -0.019785501, - 0.011060774, - 0.03095475, - -0.041748356, - -0.13007802, - 0.017833473, - -0.04092385, - -0.13352324, - -0.05979596, - 0.067300536, - 0.12211604, - -0.013754644, - -0.23355566, - -0.115785494, - -0.091975376, - -0.031368006, - 0.0037166004, - 0.09602021, - 0.01283432, - -0.11869852, - -0.093143865, - -0.026633188, - -0.04181603, - -0.087309256, - -0.14449584, - -0.10844357, - 0.10752746, - 0.045363694, - -0.10171257, - 0.076429844, - -0.11023929, - 0.012544421, - 0.038233332, - 0.063669235, - -0.07510336, - 0.009748079, - 0.029108202, - 0.23395379, - -0.006862584, - -0.029949833, - 0.051226743, - -0.103722185, - -0.0674547, - -0.061616722, - 0.0078064753, - -0.03901657, - 0.12664557, - -0.083330005, - 0.10063548, - 0.11168599, - 0.14163664, - -0.06936566, - 0.045268722, - -0.045425713, - 0.002726503, - 0.20302105, - 0.050605543, - 0.20636939, - 0.07072269, - 0.03460984, - -0.024383165, - 0.12534308, - -0.045668513, - -0.04429852, - 0.091706105, - 0.054044142, - -0.08999059, - 0.0067467806, - 0.23403281, - 0.103655785, - -0.12301834, - -0.115104154, - -0.07117851, - -0.010135198, - 0.11731365, - 0.023199061, - -0.1860764, - 0.010285753, - 0.07669538, - -0.075277306, - -0.09691961, - 0.04953574, - 0.10570652, - -0.18262483, - -0.22854285, - -0.05280557, - -0.12176038, - -0.10454362, - 0.27453315, - -0.14551765, - 0.097752914, - 0.06365866, - -0.07482501, - -0.07968593, - 0.0072821267, - -0.060831524, - 0.017269911, - -0.11324445, - -0.032852814, - -0.003132024, - 0.0042534894, - -0.06894223, - -0.042761605, - -0.08147402, - 0.0012240219, - 0.08960779, - -0.05652871, - 0.01335043, - -0.051240638, - 0.05299721, - 0.07263824, - -0.060938578, - 0.040121283, - -0.071829885, - -0.35334775, - 0.024093287, - 0.13859013, - -0.0019820263, - -0.125586, - 0.20527197, - 0.064879864, - -0.07102238, - -0.022397393, - 0.05218133, - -0.057693362, - 0.058676478, - -0.1746799, - -0.14459057, - -0.07227629, - 0.055071197, - 0.1251693, - -0.12822464, - 0.17490953, - 0.09927629, - -0.123780675, - -0.0667593, - -0.11781554, - 0.10850279, - -0.0027609332, - -0.10354767, - 0.11283865, - -0.014198475, - 0.0044346773, - -0.084374964, - 0.038373914, - 8.237355E-4, - -0.010784833, - 0.018036887, - 0.027487233, - -0.08092799, - -0.010932994, - -0.040431798, - -0.19816363, - 0.10126863, - -0.017026098, - 0.061779343, - 0.03948009, - 0.08000096, - -0.0030792858, - 0.02691646, - -0.060819924, - 0.027381886, - -0.06311132, - 0.0498197, - 0.14923114, - -0.14262141, - 0.09033565, - -0.015601399, - 0.23270927, - -0.0918475, - 0.071015894, - -0.12235574, - 0.10498856, - -0.005453046, - -0.032755014, - -0.01777561, - 0.041968912, - 0.053284187, - -0.010173311, - -0.021238517, - 0.07163275, - 0.0823109, - -0.041976642, - 0.14574505, - -0.09691254, - -0.01904023, - -0.01311468, - -0.08177078, - 0.037852824, - -0.14204347, - -0.008459439, - -0.18647982, - -0.030361397, - -0.14403307, - 0.0020384132, - -0.0013357098, - 0.15097523, - -0.09791776, - -0.11122165, - -0.0638672, - 0.16364506, - 0.039994787, - 0.08041542, - -0.0078929225, - -0.009464892, - -0.035931643, - 0.1566105, - 0.11362247, - 0.018055324, - 0.09646409, - -0.045813475, - 0.088160135, - -0.02072916, - -0.046930436, - -0.17412087, - 0.10936546, - -0.12929568, - -0.13050474, - 0.18557912, - 0.01603275, - 0.03556444, - 0.004141355, - -0.052746546, - -0.009918348, - -0.09266345, - 0.08351213, - -0.14396428, - -0.07735973, - 0.069472976, - 0.061775908, - -0.010967678, - -0.02792783, - 0.06751167, - 0.04009801, - 0.1306109, - 0.12923333, - 0.1164476, - -0.1413086, - -0.012265038, - -0.13738094, - -0.1680083, - -0.030563587, - 0.084217735, - 0.12272951, - -0.06806399, - 0.0018155174, - -0.0762567, - 0.020197144, - 0.021725459, - -0.045117423, - 0.07168176, - 0.06163568, - 0.011242135, - -0.09027648, - -0.045225285, - -0.19806138, - 0.052002586, - -0.08646581, - 0.011043748, - -0.17859142, - 0.07848828, - 0.19587201, - 0.053907786, - 0.06695908, - -0.0468258, - 0.14165045, - -0.12081566, - 0.009736684, - 0.06986135, - 0.10354522, - -0.03980243, - -0.04812984, - 0.08592076, - -0.05331763, - -0.032653775, - -0.056452457, - -0.07512782, - -0.05602719, - -0.08302619, - 0.111502185, - 0.07928772, - 0.04833083, - -0.020681644, - 0.07924999, - 0.10868583, - -0.09814061, - -0.06563909, - -0.13753366, - -0.10924361, - 0.06563327, - -0.010585583, - -0.10333804, - -0.037595514, - -0.036999237, - 0.01097948, - 0.072389975, - 0.18100078, - -0.08796883, - -0.07046795, - -0.08398158, - -0.02397256, - 0.02766124, - -0.044432018, - 0.07809504, - 0.028705033, - -0.059034657, - 0.00725154, - 0.09485887, - -0.02499441, - 0.041437402, - 0.060762446, - 0.036740392, - -0.062285043, - 0.2156298, - -0.082036324, - 0.02601864, - 0.027315194, - 0.100168705, - 0.17119686, - 0.026112348, - 0.01317836, - -0.14250512, - -0.07241246, - 0.0987847, - -7.225395E-4, - 0.106478855, - 0.001165157, - 0.02580982, - -0.118884675, - 0.035210475, - 0.040686946, - -0.10744437, - -0.046977542, - 0.030468605, - -0.1197841, - -0.12334533, - 0.020006403, - 0.074144, - 0.15570514, - -9.59085E-4, - -0.13948482, - 0.1257199, - -0.05570901, - -0.04416799, - -0.10735031, - -0.112369224, - 0.034813564, - -0.215139, - -0.09408001, - 0.13861422, - -0.24716102, - 0.12468506, - 0.069191426, - 0.027873699, - 0.042661786, - 0.08336117, - 0.11182155, - -0.042191543, - -0.059666593, - -0.21328385, - -0.04776934, - 0.1447192, - 0.094531946, - -0.042951364, - -0.06946848, - -0.05515911, - 0.077841796, - -0.20202458, - -0.029410267, - 0.2149543, - 0.020344742, - -0.079232894, - 0.16984054, - 0.23345187, - 0.0014477461, - 0.02017104, - 0.08023634, - 0.092414916, - -0.012821635, - -0.113624066, - 0.08242271, - 0.022850482, - -0.19315743, - 0.022791067, - 0.110073335, - 0.06018055, - 0.064122975, - 0.007378572, - -0.00694199, - -0.02080604, - -0.17412648, - 0.13846672, - 0.05373536, - 0.14980878, - -0.22656028, - -0.010133599, - -0.045225907, - 0.0020769543, - 0.25055647, - 0.016458293, - 0.06441122, - -0.044619434, - -0.07317997, - -0.07910636, - -0.05162239, - 0.0072744917, - -0.13184753, - 0.15347862, - -0.091335446, - 0.06574176, - -0.062369198, - -0.044951975, - -0.033704575, - 0.07122856, - 0.038133655, - 0.10737597, - -0.1538688, - 0.01325948, - -0.042859554, - -0.040557515, - 0.049552456, - 0.025541184, - -0.0092606, - 0.09529558, - -0.16236454, - -0.0025022859, - 0.07030434, - 0.07768516, - -0.0039502108, - 0.024383549, - 0.124221176, - -0.10706912, - -0.016231492, - -0.105408795, - 0.0077021327, - -0.026347283, - 0.02125837, - -0.1020979, - -0.0104945, - -0.09075198, - -0.07812031, - 0.14598304, - 0.0040041474, - 0.12716526, - 0.038888734, - -0.06791135, - -0.1514908, - 0.09178519, - 0.18608552, - 0.09058943, - -0.086625785, - -0.10427025, - 0.04488102, - -0.0153983785, - -0.0049630827, - 0.005429364, - -0.11090564, - -0.052513577, - -0.1184645, - -0.11598165, - -0.032137726, - -0.064046144, - 0.017022673, - 0.07365297, - 0.054730225, - -0.11583458, - 0.017690595, - -0.04922827, - 0.11398249, - -0.092232116, - -0.018878426, - -0.058054734, - 0.014301698, - 0.019871129, - 0.03742458, - 0.021812992, - -0.08905752, - -0.05507646, - -0.06954837, - -0.007997955, - -0.089267515, - -0.20560583, - -0.12322736, - -0.11471392, - 0.13590665, - -0.08201116, - 0.015666889, - -0.14769675, - 0.0472835, - 0.015191101, - 0.10099294, - -0.02773004, - -0.06969365, - 0.0057151443, - -0.09968739, - -0.13512865, - 0.029111829, - 0.08921642, - -0.04072192, - -0.23413143, - -0.14133364, - -0.13517067, - -0.047561746, - 0.055188634, - 0.10237627, - -0.035306893, - -0.02871133, - -0.08114429, - 0.059690587, - 0.057716638, - -0.15611216, - 0.08376917, - 0.05106864, - 0.08264305, - -0.098862775, - 0.19314504, - 0.055206425, - -0.10695763, - 0.062256414, - 0.012962456, - -0.13934377, - 0.02654799, - -0.039982148, - -0.0060708933, - -0.062466893, - -0.104554445, - -0.01275701, - 0.16092211, - -0.0026305234, - -0.027496781, - -0.089501776, - -0.08142014, - -0.27195603, - 0.045564257, - 0.029807681, - -0.12519021, - 0.06561257, - 0.09559885, - 0.066803396, - 0.046217106, - -0.18327898, - -0.102439046, - -0.08622714, - 0.028684415, - -0.071198, - -0.111137904, - 0.04028568, - -0.035316058, - -0.014853876, - 0.057482466, - 0.05087267, - 0.09196295, - 0.07206468, - 0.041575328, - -0.08794539, - -0.05588538, - 0.041885607, - -0.13299516, - -0.007197701, - 0.041001327, - -0.034807924, - -0.2334467, - -0.05007805, - -0.070651546, - 0.2038848, - 0.11190235, - 0.0053265644, - -0.103291586, - 0.15893003, - 0.007280998, - 0.10003732, - -0.08950939, - 0.1515265, - -0.038406182, - 0.03859314, - 0.20420706, - 0.0178442, - 0.020325584, - 0.06916852, - -0.05372622, - -0.1940934, - 0.07502791, - -0.06620709, - -0.10831506, - 0.040565945, - 0.018058388, - -0.14486286, - 0.008376852, - 0.07909312, - -0.23378727, - -0.03166559, - -0.082234554, - 0.10498837, - 0.12073731, - -0.11299616, - -0.07678665, - -0.069711275, - 0.1570432, - 0.146241, - -0.09672175, - -0.067965604, - 0.14634393, - 0.005325201, - 0.06924337, - 0.025187857, - 0.04300918, - 0.08815352, - 0.16900882, - 0.120406, - -0.06448803, - -0.09192393, - -0.040084694, - 0.0016047214, - -0.11838804, - -0.032350548, - -0.058705267, - 0.007665772, - -0.0753018, - 0.055600848, - -0.0054628076, - -0.03195022, - -0.116681784, - 0.06117811, - -0.05600219, - -0.12599115, - 0.023975406, - -0.10483906, - 0.05456268, - -0.070294574, - -0.20442021, - -0.085278034, - -0.02995886, - -0.035298165, - 0.026326235, - -0.022203851, - -0.1494275, - -0.054468956, - -0.22719307, - 0.012907585, - -0.020926312, - -0.020181505, - -0.029382791, - 0.12772214, - 0.07609317, - -0.027800117, - 0.26391375, - -0.0069157197, - -0.053830545, - 0.16006638, - -0.017814837, - 0.011774631, - 0.019706327, - 0.06964518, - 0.0668831, - -0.15981303, - 0.088752806, - 0.023468683, - -0.17473987, - 0.10707918, - -0.085225254, - -0.06642358, - -0.039758682, - -0.04099007, - 0.07961016, - -0.046085063, - -0.00215045, - -0.25640106, - -0.02926481, - 0.229396, - 0.12258305, - 0.02334814, - 0.067224495, - -0.01315571, - -0.062196627, - 0.078622036, - 0.007254637, - -0.03638866, - 0.13777675, - 0.05175509, - -0.01125176, - -0.10789315, - -0.062165454, - 0.004255484, - -0.08960388, - -0.077641696, - -0.041963823, - 0.09494035, - 0.011858491, - -0.028987134, - 0.050830506, - -0.15306395, - -0.0034393987, - 0.13744648, - 0.11595252, - -0.01010413, - 0.0019304935, - 0.07162425, - -0.11848462, - 0.13630623, - 0.17851804, - 0.13020177, - -0.009069144, - 0.10638365, - 0.051259305, - 0.031886626, - -0.13493472, - 0.047797136, - 0.028934617, - 0.055796288, - -0.18811776, - 0.09804287, - -0.12763412, - -0.082052864, - 0.10503158, - -0.108146474, - -0.044388387, - 0.057724353, - 0.093485735, - -0.033748228, - -0.14991198, - 0.07274115, - -0.041726485, - -0.0345402, - -0.05288435, - 0.016624985, - -0.028294025, - 0.082880564, - 0.056288883, - 0.038020704, - -0.23585477, - -0.099602886, - 0.13759091, - -0.028422207, - -0.2091826, - -0.03595685, - -0.057214715, - -0.043067954, - 0.050673403, - -0.07106216, - 0.14723177, - -0.03353184, - 0.051794253, - 0.03062645, - 0.067079626, - -0.04438794, - 0.056397457, - 0.11181588, - -0.13340771, - 0.09868333, - -0.0068800002, - -0.08921167, - 0.108343, - 0.0543947, - -0.032324526, - 0.08440412, - 0.08190179, - 0.03477421, - -0.0980665, - 0.051606104, - -0.057456534, - -0.093169644, - -0.026380697, - -0.10645126, - 0.04155389, - 0.13058397, - 0.09702452, - 0.052103136, - -0.03618782, - 0.21167748, - 0.09822731, - 0.08707507, - 0.0269725, - 0.16288926, - 0.10063537, - 0.23331784, - 0.0020817574, - -0.015382623, - -0.03338082, - 0.09862843, - -0.13133937, - -0.19111137, - 0.10287588, - 0.03206986, - -0.20712392, - -0.21045372, - -0.12655842, - -0.05449119, - 0.19931787, - -0.14827912, - 0.07212065, - 0.11723226, - -0.04062318, - 0.15967596, - 0.045663323, - -0.1482596, - 0.22450696, - -0.015945496, - -0.08517929, - -0.05890254, - 0.027066056, - 0.13043892, - -0.14143817, - -0.046556268, - -0.11038577, - -0.015720863, - 0.0081221415, - 0.06434145, - -0.18788889, - -0.051698588, - -0.07785107, - 0.11018081, - -0.10143631, - -0.044702765, - 0.17367549, - -0.08180156, - 0.06262524, - 0.056566384, - 0.057260826, - 0.07565982, - 0.17637242, - -0.20712064, - -0.04845705, - 0.1982644, - 0.25576806, - 0.13805382, - -0.03566797, - -0.012483387, - 0.036393575, - 0.08184643, - 0.089746855, - -0.18740207, - -0.01360211, - 0.11412306, - 0.052881375, - 0.11911979, - 0.025854597, - -0.13272291, - 0.052495737, - 0.08119782, - 0.101041235, - 0.014308286, - 0.04820335, - 0.07528895, - 0.07519983, - 0.00656204, - -0.055195168, - 0.08542488, - 0.04666592, - -0.006421569, - -0.08243062, - -0.106443495, - 0.029891353, - 0.035135962, - 0.013187664, - -0.1174057, - -0.08270869, - 0.0056821904, - -0.049520753, - -0.0580031, - -0.22150084, - -0.08464008, - -0.19042584, - -0.13530454, - -0.029386826, - 0.0980468, - 0.068992816, - -6.387532E-4, - -0.011645246, - -0.0013652605, - -0.009049898, - -0.03575129, - 0.03273175, - -0.037542406, - 0.06958295, - 0.07756823, - -0.14874943, - 0.0059672147, - 0.15225345, - 0.0068170694, - 0.053549446, - -0.03395879, - -0.036993735, - -0.0094364295, - -0.06422514, - 0.13633828, - 0.10086892, - -0.056317702, - -0.04037513, - 0.14288163, - -0.15168035, - -0.14094953, - -0.06760844, - 0.08093104, - 0.16351365, - -0.20045716, - -0.1507756, - 0.003640367, - 0.08493123, - -0.08215914, - 0.07604172, - -0.089757994, - -0.009080467, - -0.03822376, - 0.16154219, - -0.12426026, - 0.042047843, - -0.03210469, - 0.06285548, - -0.10354467, - -0.14310962, - -0.108475715, - -0.14458193, - 0.013834348, - 0.013128625, - -0.05695165, - -0.044713613, - -0.09530496, - 0.047300417, - 0.036147397, - -0.14439711, - -0.095888466, - 0.0014952444, - -0.020834, - 0.046864223, - 0.04418411, - 0.034671687, - -0.03558955, - -0.055273212, - 0.0025723835, - 0.02021331, - -0.071797386, - -0.036540814, - -0.09814473, - 0.0457918, - -0.043567322, - 0.08496792, - 0.011860181, - -0.0072099245, - -0.1157954, - -0.09738945, - 0.039477363, - -0.15970702, - -0.13951203, - 0.028245829, - 0.0411033, - 0.19582155, - -0.15402214, - -0.035575867, - -0.07673006, - 0.030292932, - -0.041892067, - -0.14884281, - -0.07224323, - -0.08594938, - -0.077794634, - 0.07300606, - 0.08812258, - 0.1565319, - 0.014194633, - 0.080285944, - 0.049590997, - 0.18302704, - -0.052066594, - -0.049634643, - 0.0072687403, - -0.0065950407, - 0.043179456, - 0.03194798, - 0.11792003, - -0.138423, - -0.068366915, - 0.013356782, - -0.14123802, - 0.007834165, - -0.0079171015, - 0.079583436, - 0.14615509, - -0.006142312, - -0.009897304, - 0.09260772, - -0.03234662, - 0.0010344308, - -0.13825274, - 0.17732483, - 0.10933425, - -0.0038438793, - 0.045793094, - 0.024961438, - -0.037057865, - -0.01447149, - 0.10616003, - 0.002518335, - 0.16130356, - 0.0251396, - 0.06827514, - 0.1601961, - 0.13215734, - -0.18180418, - -0.17426693, - 0.16931982, - -6.87486E-4, - 0.09843551, - -0.08117456, - -0.051092096, - 0.06959874, - -0.064947836, - 0.07997869, - 0.067462556, - -0.018783841, - -0.07761402, - 0.16707845, - -0.016096571, - -0.06929825, - -0.0097655, - 0.09969934, - -0.042960092, - 0.15932569, - -0.04235027, - 0.086787716, - -0.09053838, - -0.12800556, - -0.2085822, - 0.046331376, - 0.018821042, - 0.17315616, - 0.093967006, - -0.036779385, - 0.10224279, - -0.10957289, - -0.033852533, - -0.033087987, - -0.12337683, - 0.057353135, - -0.034165375, - -0.15309896, - 0.17939393, - 0.07390477, - -0.03856809, - -0.13288881, - -0.030315045, - -0.05847631, - 0.16112126, - -0.095591344, - 0.17027064, - 0.029169142, - -0.21233632, - 0.021672925, - 0.024840094, - 0.09423984, - -0.15744062, - 0.043850884, - -0.06577531, - -0.03902017, - 0.058874514, - 0.03867395, - -0.083564065, - -0.004569735, - -0.16303872, - -0.10274773, - 0.03868855, - -0.010317805, - 0.06975699, - -0.04878858, - -0.027440906, - 0.14802845, - -0.1858963, - 0.0657131, - -0.100865446, - -0.026536882, - 0.0107818805, - 0.019709082, - 0.14701076, - 0.16939193, - 0.061498653, - 0.15322822, - -0.09125494, - 0.021995123, - 0.06960482, - 0.015573819, - 0.1325691, - -0.12785193, - 0.066593096, - 0.2089638, - 0.07978567, - -0.09026997, - 0.10033975, - 0.3243383, - -0.018352227, - 0.0028849992, - -0.066475585, - -0.0025472343, - -0.15139051, - -0.009903076, - 3.1710695E-4, - -0.10625659, - 0.020024886, - 0.04058913, - -0.09895308, - 0.02432418, - -0.10060159, - 0.03322809, - 0.08395979, - 0.06466585, - 0.05186495, - 0.0019515727, - -0.03205647, - -0.04010256, - -0.2692302, - 0.043383706, - -0.1072717, - -0.06767877, - 0.07721878, - 0.0066811, - -0.06703849, - -0.024189891, - 0.0518192, - -0.08927585, - 0.110187165, - 0.117322564, - -0.21873969, - 0.10653356, - -0.0027244897, - 0.029594224, - 0.018878685, - -0.06778345, - -0.13885425, - -0.007518626, - 0.03826925, - -0.048037395, - -0.0069121714, - -0.007561443, - -0.08322439, - 0.027229559, - 0.0312698, - 0.008137756, - -0.016449248, - -0.039367, - -0.0027588494, - -0.025098862, - -0.12258071, - -0.02465891, - -0.019610666, - 0.010346797, - 0.1335927, - 0.2061235, - 0.020274842, - 0.07798932, - -0.072461106, - -0.03254858, - 0.09725088, - -0.13840987, - 0.008430895, - 0.08715333, - -0.106149666, - -0.2062254, - -0.024124486, - -0.11478442, - -0.07999069, - 0.05616408, - 0.12869816, - -0.18110584, - 0.058664527, - -0.09173668, - -0.07020651, - -0.06643493, - 0.10392978, - 0.043836072, - 0.060785558, - -0.08440642, - -0.07414575, - -0.1644394, - 0.066499695, - 0.09642559, - -0.07096195, - -0.11305789, - 0.09552211, - 0.055259265, - -0.03659073, - 0.12980618, - -0.13618149, - -0.13180502, - 0.053182133, - -0.056960914, - -0.13773358, - 0.16731279, - -0.008064575, - 0.07402843, - -0.07998837, - -0.04358384, - -0.043886047, - -0.16056551, - -0.042676266, - -0.046002544, - -0.11130479, - -0.057844847, - 0.057911653, - 0.015374268, - -0.03405384, - -0.06430971, - -0.029738665, - -0.21407245, - -7.652669E-4, - 0.116501465, - -0.025135703, - -0.11620786, - -0.045330334, - 0.027988844, - 0.15132408, - -0.077914305, - 0.035491735, - -0.076399736, - -0.15256241, - -0.11728414, - -0.16255015, - -0.026104085, - -0.05193236, - 0.14158806, - -0.10198445, - -0.01305745, - -0.10980387, - 0.050143324, - 0.103488274, - -0.06417023, - -0.0043378975, - -0.096531436, - 0.051803526, - -0.046467256, - -0.057432476, - 0.0020911368, - -0.009070083, - -0.05649542, - -0.005298729, - 0.104885966, - -0.034373686, - 0.047866322, - 0.09802925, - -0.029589117, - 0.10106277, - 0.16729762, - -0.028711928, - 0.02581194, - 0.06859621, - -0.095014066, - 0.051934075, - 0.044435423, - -0.21645427, - -0.009887313, - -0.077091105, - -0.04105769, - 0.05345571, - 0.05915384, - -0.008395164, - 0.01232063, - 0.031143572, - -0.068931594, - -5.93351E-5, - -0.09657359, - 0.01467687, - -0.05434247, - 0.011619749, - 0.21252762, - -0.0043681813, - 0.05050859, - -0.060002282, - -0.10359084, - -0.03708776, - 0.097773045, - -0.007819745, - 0.026120938, - 0.12009809, - 0.006870618, - 0.12845767, - -0.0021344305, - 0.025332784, - 0.03452669, - 0.033118065, - 0.10519117, - 0.1330907, - -0.013280248, - -0.015501212, - -0.10784836, - 0.30678517, - 0.025809057, - -0.017804345, - 0.091298126, - -2.9105274E-4, - 0.03621491, - 0.06495782, - -0.03994768, - 0.03771814, - -0.15047595, - -0.047642082, - -0.074090645, - -0.039753906, - 0.0981806, - 0.21391578, - -0.1629182, - -0.065531306, - -0.20691039, - 0.06663083, - -0.08112444, - -0.059532788, - 0.1116131, - -0.053181503, - -0.05471875, - 0.037113458, - -0.13004693, - -0.033823106, - 0.017461792, - 0.03747736, - 0.21240373, - -0.021046257, - 0.16473286, - -0.094166905, - 0.013250835, - -0.066497296, - 0.032902926, - 0.16292693, - 0.012752326, - 0.041078698, - -0.11426225, - -0.11324775, - 0.06329448, - -0.09305113, - -0.13900606, - 0.117996566, - -0.008779039, - -0.029030811, - 0.100125924, - -0.12519237, - 0.048987545, - -0.051848378, - -0.20673198, - -0.08497583, - 0.13183776, - -0.06326344, - 0.0595051, - 0.029337676, - 0.002237013, - -0.016539617, - 0.10923445, - -0.1118102, - -0.0068921703, - -0.13960439, - 0.04453594, - 0.17578435, - 0.02079874, - 0.11587145, - -0.1107018, - 0.22406405, - 0.059346735, - -0.20669423, - -7.813552E-4, - -0.013079726, - -0.15102626, - 0.078673735, - 0.0314487, - -0.115690194, - 0.18032752, - 0.14167473, - -0.06955643, - 0.08747705, - 0.004055548, - 0.023300441, - -0.0919743, - -0.08840532, - 0.14459935, - 0.10136088, - 0.20726402, - 0.0064193383, - -0.018537706, - -0.15930997, - 0.18245947, - 0.13931905, - -0.04574048, - 0.043646634, - 0.014117809, - 0.041272916, - 0.11756631, - -0.015929108, - 0.0974031, - 0.037704494, - 0.16044109, - -0.0995564, - 0.15353572, - -0.012876462, - 0.0038145226, - -0.016839115, - -0.1880893, - -0.013946531, - 0.19094498, - -0.0999874, - 0.018080888, - -0.023494849, - -0.050014053, - -0.08767515, - 0.035193697, - -0.031372108, - 0.093421124, - 0.01762933, - -0.0578504, - 0.16171886, - 0.0850102, - -0.08491491, - 0.01797946, - -0.16393699, - -0.18634042, - 0.15592735, - -0.09301287, - 0.049200702, - -0.11311841, - 0.011881395, - 0.07527468, - 0.015020872, - 0.09824926, - -0.088413216, - 0.013147083, - -0.06307963, - -0.036782634, - 0.056778587, - -0.068882935, - -0.022426095, - 0.027455188, - 0.10420716, - 0.027289752, - 0.09959239, - -0.08491187, - 0.011038897, - 0.09194424, - -0.016234597, - 0.044541765, - 0.08334235, - 0.023266844, - -0.02024059, - -0.0211317, - 0.006552607, - -0.10700872, - 0.035129253, - 0.16395003, - 0.005956922, - 0.005985976, - 0.048187345, - -0.08414353, - 0.050388895, - 0.14390008, - -0.05303636, - 0.13690202, - 0.08880083, - -0.06136595, - 0.017870892, - -0.04325192, - -0.09968506, - 0.14193021, - -0.08781234, - 0.04265808, - 0.024834976, - 0.05032297, - 0.10698283, - -0.10759298, - 0.03608416, - -0.02199351, - -0.06885593, - -0.04457886, - 0.058930323, - 0.006195552, - 0.05539657, - 0.17437464, - -0.034556177, - -0.09954036, - 0.0056438623, - -0.06118407, - -0.14383529, - -0.069346614, - 0.006196406, - -0.059755594, - 0.07632866, - -0.13022104, - 0.031802643, - 0.011446771, - 0.07958034, - 0.02442226, - -0.047697544, - 0.0010127448, - 0.034343123, - 0.078565784, - 0.002021207, - 0.065548465, - 0.0783362, - 8.7681285E-4, - 0.019825734, - 0.008206491, - 0.12749268, - 0.09139247, - -0.07471399, - 0.08052321, - -0.027709872, - -0.1170586, - -0.0032026775, - 0.08745962, - 0.065452844, - 0.043665867, - -0.07118736, - -0.068983555, - -0.0611327, - -0.07124427, - 0.0058369334, - 0.054562736, - 0.031414527, - 0.005074886, - 0.12696874, - -0.026745917, - -0.017091943, - -0.10434241, - -0.20478198, - 0.058501057, - -0.15216838, - 0.045457676, - 0.082582176, - -0.08207261, - -0.029606378, - 0.022445105, - -0.038766734, - 0.020093974, - -0.09400092, - 0.10746683, - 0.08677195, - -0.07434023, - 0.058790714, - 0.103958085, - -0.056092974, - -0.057310883, - -0.1576347, - 0.1130722, - 0.06557034, - 0.04990819, - -0.09839691, - -0.121036544, - -0.12212594, - -0.014582388, - -0.09477589, - 0.018006619, - -0.16321126, - 0.07884022, - -0.22352964, - 0.08610204, - -0.09874425, - 0.0021957273, - -0.074969135, - 0.09848018, - 0.06979577, - 0.023488121, - 0.21336326, - 0.04101828, - 0.11371481, - -0.026599849, - -0.07519325, - -0.13701557, - 0.10714599, - -0.09155928, - 0.10805399, - -0.0866285, - -0.028654916, - -0.19929367, - -0.008319585, - 0.06376575, - 0.14307992, - -0.0078041116, - -0.11403738, - 0.018232273, - -0.03966128, - -0.029171655, - 0.03956608, - -4.0651474E-4, - 0.037228957, - 0.11045588, - -0.06334853, - -0.017316941, - -0.10243557, - -0.039652303, - 0.06815018, - 0.38567767, - -0.09112225, - -0.11027475, - -0.105010584, - 0.060073294, - -0.0124775935, - 0.20216002, - -0.08897936, - -0.11093015, - -0.102064334, - 0.18192461, - 0.03016313, - 0.10726131, - -0.06055949, - 0.07414608, - 0.006463871, - -0.0053761615, - -0.055032052, - -0.040482774, - -0.036606878, - -0.06281476, - 0.016562564, - 0.04195309, - 0.0063576656, - 0.066381074, - -0.04399841, - 0.07934847, - 0.06343176, - -0.055367902, - 0.036717296, - -0.07446196, - 0.045536138, - -0.3261711, - 0.08801944, - -0.1399748, - -0.05126268, - -0.16843128, - 0.08141594, - 0.14875337, - -0.11268385, - -0.14960183, - -0.055267204, - -0.16427632, - 8.2417176E-4, - -0.02784969, - -0.0439991, - -0.10380799, - 0.06011778, - -0.031334672, - -0.026858171, - -0.041158363, - -0.07503533, - -0.16983886, - -0.068276465, - 0.19219923, - 0.09159327, - 0.09652269, - -0.052585237, - -0.07756584, - -0.1705306, - -0.14071633, - 0.035545133, - 0.029915981, - 0.07318345, - -0.06701843, - 0.19580366, - 0.07694774, - -0.0365101, - -0.0015596156, - -0.13735919, - -0.0059408047, - -0.0013275656, - -0.049156226, - -0.025263034, - -0.09587158, - 0.033914194, - 0.062763445, - -0.16005582, - 0.03772201, - -0.13900162, - -0.11060223, - 0.102514274, - 0.12442159, - -0.028494604, - -0.056393377, - -0.002201274, - -0.09546107, - 0.06899427, - -0.049909864, - 0.14637035, - -0.20651264, - -0.0067288475, - -0.1347955, - -0.0039700707, - -0.14365995, - -0.13736111, - 0.007923159, - -0.06092666, - -0.028475594, - -0.14471793, - -0.019061359, - -0.002723684, - 0.008570903, - -0.12837179, - 0.01206886, - 0.0074658385, - -0.12453703, - 0.05390787, - 0.1197678, - 0.0026844088, - 0.08808864, - 0.022193393, - 0.12309399, - 0.17448935, - -0.13603199, - -0.038769905, - -0.10329083, - -0.06170314, - 0.12252246, - 0.042356335, - -0.26607484, - 0.02535731, - -0.08788482, - 0.15153056, - 0.020738523, - 0.09648624, - -0.07701718, - -0.08297692, - 0.07644769, - -0.08404839, - 0.022465466, - -0.06820088, - 0.13113137, - 0.16957411, - -0.11815004, - 0.113634795, - -0.13498951, - -0.003804341, - -0.035306837, - 0.20941868, - -0.079967745, - 0.09594595, - 0.008837676, - 0.05911084, - -0.013428408, - 0.03299354, - 0.10725217, - 0.2463852, - -0.13713115, - 0.029587772, - 0.104512334, - -0.093216345, - -0.09288268, - 0.003175416, - -0.09286466, - 0.0781629, - 0.07991893, - 0.04806762, - 0.055118844, - 0.02970415, - 0.1416012, - -0.073884554, - 0.033705864, - 0.067634985, - 0.016253825, - 0.088051796, - 0.07822335, - 0.10854453, - -0.11981443, - -0.06892267, - -0.00778778, - 0.03716873, - -0.1097464, - -0.022476885, - -0.09627728, - 0.0058291308, - 0.04677189, - 0.043346483, - 0.07864391, - 0.024033781, - -0.031136997, - 0.056670137, - -0.006485072, - 0.061462663, - 0.095652916, - -0.01564281, - 0.22394904, - -0.1431646, - 0.034195945, - -0.1328567, - 0.18154876, - 0.024092646, - -0.1813896, - 0.010094897, - 0.21718678, - 0.055583112, - 0.019496484, - 0.06567376, - -0.0099655725, - -0.05630768, - -0.022493415, - -0.17068167, - 0.08615606, - 0.017304542, - 0.15567376, - -0.102699734, - -0.044375878, - -0.09573149, - 0.045706995, - -0.23505016, - -0.081236966, - -0.06639802, - -0.12707789, - -0.096807845, - -0.02694536, - 0.044279322, - -0.122532256, - -0.044631653, - 0.006283047, - -0.007434364, - 0.122933224, - 0.13614905, - -0.02167182, - -0.0020369026, - -0.07166437, - -0.010231165, - 0.029966556, - -7.0205657E-4, - -0.01096086, - -0.025389388, - 0.18274595, - -0.10408509, - -0.0066256444, - -0.18310773, - -0.090404995, - 0.053992476, - -0.058331512, - 0.07818066, - -0.010148175, - -0.037034553, - -0.054438494, - 0.05489794, - -0.10294553, - -0.11530219, - -0.059997216, - 0.0052554463, - -0.022628147, - -0.077548854, - -0.037819613, - 0.047465418, - -0.17532511, - 0.13142684, - 0.13899037, - -0.020838253, - 0.046385054, - -0.10323537, - -0.006888539, - 0.09089102, - 0.046564814, - 0.005798219, - 0.103261076, - -0.21282843, - 0.00560545, - 0.005529877, - -0.055247396, - 0.044036195, - -0.08226792, - 0.11647603, - 0.15457681, - 0.16864571, - 0.0077791414, - -0.13546582, - -0.06198336, - 0.010929846, - -0.04397022, - -0.1657524, - 0.06870357, - 0.050549686, - -0.15955296, - -0.10620604, - -0.034041665, - 0.0769948, - -0.014574529, - -0.04624297, - 0.079083346, - 0.07747471, - 0.07630418, - -0.009448815, - -0.0067209117, - -0.008060134, - -0.0247925, - -0.18435454, - 0.12599924, - -0.033974804, - 0.18117532, - 0.07359055, - 0.039103832, - 0.1299824, - 0.06261505, - 0.09733448, - -0.0012395446, - 0.14401384 - ], - "features2" : [ - 0.06778775, - 0.051982746, - -0.050043855, - -0.08100106, - 0.058903474, - 0.02482377, - 0.024266014, - -0.1466546, - -0.05246654, - -0.1788975, - 0.10864161, - -0.063856944, - 0.15985721, - 0.07779656, - -0.1860625, - 0.08365942, - -0.013900656, - 0.023245031, - 0.020665277, - 0.049407028, - -0.05650341, - 0.054352254, - -0.046114706, - -0.0265833, - -0.058995415, - 0.09029256, - 0.14521885, - -0.020591507, - -0.04774166, - 0.12506808, - 0.026237514, - 0.041628122, - -0.17494464, - 0.11242752, - 0.008485913, - 0.020434186, - 0.05374226, - -0.02501873, - -0.1123941, - -0.071333446, - -0.02750813, - -0.114312984, - -0.013162934, - -0.039796937, - 0.014731692, - -0.050794147, - 0.034190074, - -0.009213584, - 0.0011712901, - 0.004729, - 0.0014541605, - 0.14288677, - -0.04069465, - -0.053762726, - 0.15716262, - 0.09555774, - 0.074040934, - -0.11247559, - -0.14598808, - -0.016044673, - -0.10707838, - 0.07718147, - 0.033771288, - 0.118682116, - 0.007230121, - -0.025009738, - -0.035076004, - -0.12870248, - -0.16702764, - 0.16815923, - 0.052776426, - -0.11113986, - 0.20057295, - -0.008605244, - -0.041448202, - 0.061948933, - -0.014126925, - -0.15023851, - -0.11894364, - -0.029062688, - -0.040228575, - 0.041527316, - 0.0071654557, - 0.088557936, - 0.14229631, - 0.09485928, - -0.15614393, - -0.08852628, - 0.088842265, - 0.17040697, - -0.059967242, - -0.01179023, - 0.11527267, - -0.13935927, - 0.088078536, - -0.0655556, - -0.063495584, - 0.036651798, - -0.046134986, - 0.10676919, - 0.076967925, - 0.029211564, - -0.08040271, - 0.10168819, - 0.13060935, - 0.079522185, - -0.15674728, - 0.21002868, - 0.075051256, - 0.08230249, - -0.01512506, - 0.123484336, - -0.022145098, - 0.025266794, - -0.11551931, - 0.10028378, - -0.009303017, - -0.06404959, - 0.06484783, - 0.06294475, - -0.1214963, - 0.05602447, - 0.1271048, - -0.037678163, - -0.062151797, - -0.10793073, - 0.1052668, - -0.13191412, - -0.07965282, - -0.014202055, - -0.079299815, - -0.11857176, - 0.019476265, - 0.034071177, - -0.06862399, - -0.020653911, - 0.014278947, - 0.14221929, - -0.24379022, - -0.15118648, - 0.027729219, - 0.13734856, - 1.7989083E-4, - -0.07836459, - -0.14372061, - 0.015356199, - 0.01483431, - -0.17678295, - -0.057659168, - 0.11927794, - -0.072377935, - 0.06297359, - 0.06504785, - -0.085522175, - 0.09266787, - -0.008017287, - -0.057461, - -0.04443206, - -0.024051342, - 0.089616984, - 0.036870338, - 0.0156331, - -0.06692971, - 0.0100887325, - 0.0014392497, - -0.16997984, - -0.15856788, - 0.011418375, - -0.03577099, - -0.19967242, - -0.076078594, - -0.12696537, - 0.03575449, - 0.115240656, - -0.033387277, - 0.029366475, - -0.0016478938, - -0.12966007, - 0.15080974, - 0.1480517, - -0.042798433, - 0.14003126, - 0.12944406, - -0.045217697, - 0.010626908, - -0.11469249, - 0.0023169683, - 0.034816824, - 0.0034312834, - -0.07778874, - 0.03933596, - -0.03131287, - 0.13970055, - 0.003686457, - -0.10767694, - 0.007817517, - -0.069754206, - -0.044342533, - -0.016820667, - 0.06846562, - -0.03236413, - -0.20240471, - -0.07804721, - -0.004127498, - -0.07179129, - -0.060026508, - 0.15052323, - 0.012801056, - -0.0066048903, - 0.12519702, - 0.08581787, - 0.0558349, - -0.025293592, - 0.083071984, - 0.046876065, - -0.06574096, - -0.0605132, - -0.04165731, - -0.012463757, - 0.15360302, - -0.036524285, - -0.08183961, - 0.09512229, - 0.20484895, - -0.18877734, - 0.039132006, - -0.092700824, - -0.006882576, - -0.048213445, - -0.06735497, - 0.032115832, - 0.074240126, - 0.027226236, - 0.075967684, - -0.056210317, - 0.080757275, - 0.04103654, - -4.8059458E-4, - 0.14624095, - 0.040333472, - 0.040537026, - -0.09673381, - -0.09057465, - -0.0678175, - -0.04892138, - 0.07781488, - -0.06890874, - -0.07869938, - 0.05023122, - -0.10550738, - -0.119547285, - 0.09336891, - -0.0061899484, - -0.096401416, - 0.038301487, - 0.041724924, - -0.08971287, - -0.023355002, - 0.17537798, - -0.005528305, - -0.04017561, - -0.07337101, - 0.0033299194, - -0.05783692, - 0.046495084, - 0.05150251, - 0.14477709, - 0.022260817, - -0.12353715, - -0.08548813, - -0.069068916, - 0.17114241, - -0.16635843, - 0.022228679, - 0.06474631, - -0.025919752, - -0.15508315, - 0.055730097, - 0.012358034, - -0.010589023, - 0.1550486, - -0.017932674, - -0.1498407, - 0.057519663, - 0.10984117, - 0.08785371, - 0.021100985, - 0.080170415, - -0.1318965, - 0.028740084, - -0.014588777, - 0.049502157, - 0.05612313, - -0.10368078, - 0.12206022, - 0.056542072, - 0.01701588, - -0.10213029, - 0.057594106, - 0.009247542, - -0.051221795, - -0.010384911, - -0.023446433, - -0.14585519, - 0.06099529, - 0.01912082, - -0.17243838, - 0.021797359, - 0.057961743, - -0.06816657, - 0.025837833, - 0.0055217035, - -0.15386917, - 0.14453621, - -0.17910998, - -0.0063636657, - -0.11072146, - -0.03693428, - 0.047631342, - 0.06664729, - 0.059525818, - -0.013756865, - 0.20149644, - 0.022831686, - 0.12605597, - 0.10404249, - -9.040127E-5, - 0.1196694, - -0.096168, - -0.022522636, - -0.052415263, - 0.08289601, - -0.16651689, - 0.18140453, - 0.012341425, - 0.014726296, - 0.10185402, - 0.10636729, - 0.025799543, - 0.03702573, - 0.08165778, - 0.06619817, - -0.13861628, - -0.019974027, - -0.0038016727, - 0.06270999, - -0.022081098, - -0.0092376545, - -0.004443576, - -0.020784384, - 0.12471986, - -0.081820056, - -0.018943258, - -0.17284934, - 0.046537235, - -0.2126911, - 0.012977979, - -0.0515385, - -0.14324133, - -0.092308715, - -0.11423331, - 0.023133589, - -0.057971764, - -0.019130824, - -0.17978302, - 0.10017468, - -0.061364327, - -0.11410001, - 0.04996294, - -0.059950903, - -0.012561619, - -0.13188775, - 0.07682138, - 0.10939832, - 0.096832395, - 0.0026666324, - 0.13175172, - -0.09224387, - -0.056783754, - -0.06021873, - -0.027797537, - -0.1465404, - -0.027474815, - 0.11248163, - 0.08500176, - 0.04201681, - 0.09186478, - -0.035879012, - -0.09683021, - 0.04542015, - 0.062088557, - -0.05502369, - -0.041145347, - -0.06814356, - 0.03921873, - 0.051251765, - 0.08728228, - -0.022914143, - -0.015373435, - 0.08641469, - -0.009171785, - -0.06340354, - 0.10148532, - -0.013871407, - -0.045296732, - -0.13425012, - 0.14578924, - 0.027230991, - -0.06655148, - -0.10799929, - 0.014084206, - -0.04284357, - 0.028914586, - 0.018252198, - 0.0835647, - 0.07999542, - 0.011560076, - -0.17404363, - 0.036064867, - -0.15532973, - -0.058175378, - -0.07414112, - 0.1296796, - 0.033495136, - 0.031133872, - 0.14208451, - 0.014793867, - 0.031669356, - -0.03222688, - 0.018000273, - -0.21934818, - -0.123962775, - -0.034317613, - 0.09072483, - 0.06533808, - -0.034098566, - 0.037641853, - -0.08366046, - -0.14686671, - 0.16354358, - 0.08023614, - 0.028989725, - 0.014234249, - 0.08569898, - 0.10738057, - 0.08585056, - 0.05605755, - 0.05117544, - -0.11006331, - -0.009800381, - -0.14151634, - 0.06646853, - 0.017519122, - 0.112908676, - 0.00933935, - 0.04883655, - 0.15230645, - 0.059449837, - 0.08707698, - 0.08201761, - -0.012232415, - 0.05134766, - 0.04300294, - 0.0031279977, - 0.100223765, - 0.020771038, - 0.025270563, - -0.18345606, - -0.0035445676, - -0.051637184, - -0.0014549913, - 0.10963166, - 0.1773666, - -0.060661983, - -0.17529422, - 0.018166538, - -0.18619515, - 0.022497423, - 0.07246615, - -0.18101364, - -0.08101811, - -0.104665436, - 0.10986102, - 0.049985204, - -0.02416306, - 0.04327256, - 9.690628E-4, - 0.18763119, - 0.085077785, - -0.014801387, - -0.12513304, - -0.07024901, - 0.12773675, - 0.081414625, - 0.21955699, - -0.21410252, - -0.020445222, - -0.016705647, - 0.05543669, - 0.08348101, - -0.10184969, - 0.096243665, - -0.14582972, - 0.04920631, - -0.10113034, - -0.12882012, - -0.016112253, - 0.072663665, - 0.10089816, - 0.09339543, - -0.17093831, - 0.1511992, - 0.25366923, - -0.14298855, - 0.036404353, - -0.012507496, - 0.12537028, - -0.092263, - 0.032284424, - -0.26141033, - -0.18367437, - -0.050896488, - -0.050072134, - 0.15789367, - 0.090847075, - -0.0071721277, - 0.0060648764, - -0.19489565, - -0.1623741, - 0.015521745, - 0.104231365, - -0.05973176, - 0.073677, - -0.06681019, - -0.17388742, - 0.13247333, - -0.13450475, - -0.044492703, - -0.014819929, - -0.11470135, - 0.16242483, - 0.14840324, - -0.019450244, - -0.08795996, - 0.0075300927, - 0.10037962, - 0.008258393, - 0.005767303, - -0.016876332, - 0.008766986, - 0.11032531, - 0.0042090844, - 0.0056884894, - -0.028886186, - -0.008871839, - 0.11030293, - 0.0016233388, - 0.07049162, - 0.19447397, - 0.08023547, - 0.08294032, - 0.10145463, - -0.08247501, - -0.100110024, - 0.047819626, - 0.10152197, - -0.048306815, - -0.03359377, - 0.052813653, - 2.3640774E-4, - 0.076446846, - -0.05227687, - -0.085444346, - -0.018504925, - -0.02434026, - -0.11044789, - 0.08857621, - -0.051854677, - 0.027233388, - 0.032453846, - -0.005166536, - -0.14313948, - 0.04524458, - 0.016396793, - -0.007052557, - 0.09624666, - 0.045351014, - 0.1389502, - -0.046428557, - -0.07496713, - -0.03442541, - -0.025729423, - -0.1127736, - 0.0071371906, - -0.014765929, - 0.06825742, - 0.015354732, - 0.06109582, - 0.30641168, - -0.17722873, - 0.034608774, - -0.00393729, - 0.089319065, - 0.028467728, - -0.036642663, - -0.013838292, - -0.13706562, - 0.022044688, - 0.19016384, - -0.027466655, - -0.013177777, - -0.07994268, - -0.05368293, - -0.10192213, - 0.111347444, - 0.0428175, - 0.03916144, - 0.04206597, - -0.03407594, - 0.06810707, - -0.09778446, - -0.044144277, - 0.1164779, - -0.04861905, - 0.078943394, - 0.065322496, - 0.095838904, - 0.20793577, - -0.06843557, - 0.030026821, - -0.05740344, - 0.0546577, - 0.010317302, - 0.032135952, - 0.10546756, - -0.07615693, - 0.11250153, - -0.023137663, - 0.028282443, - -0.04403903, - -0.003055323, - -0.008796458, - -0.21469903, - -0.10049504, - 0.20151281, - 0.07017293, - -0.0337841, - -0.0323593, - -0.007154382, - 0.09945229, - 0.03818857, - 0.08510669, - 0.13615261, - 0.07717403, - -0.015148666, - 0.061865326, - 0.045654446, - 0.011543958, - -0.104759306, - -0.185005, - 0.00825869, - 0.08541375, - -0.019392105, - -0.015520782, - 0.14566983, - -0.023157537, - -0.05400455, - -0.16844407, - 0.09206107, - 0.07460197, - -0.08843011, - 0.25409025, - -0.004660232, - 0.18550378, - 0.0033477964, - -0.04754652, - 0.008413863, - 0.036033377, - -0.04215478, - -0.18457714, - 0.21483964, - -0.098356344, - -0.04642749, - 0.02169747, - 0.030564409, - 0.06863009, - 0.037239622, - -0.009853682, - -0.0032200376, - -0.08828899, - -0.08179771, - 0.08201858, - -0.0023509937, - -0.079806924, - 0.004937175, - -0.06280157, - -0.08652308, - 0.027264968, - -0.033680603, - -0.19440259, - 0.09815252, - 0.04276537, - 0.037985265, - 0.024901321, - -0.024789253, - 0.044714425, - 0.09931111, - 0.05065098, - 0.08639526, - 0.008317909, - -0.018871132, - 0.0102590835, - -0.048003327, - 0.05635072, - 0.12638563, - -0.061414815, - -0.0984483, - 0.03942496, - 0.015673812, - 0.0073316423, - -0.07859136, - -0.14637755, - -0.14302334, - 0.055614986, - 0.06501632, - 0.15446115, - 0.18962385, - 0.026829997, - -0.035802014, - -0.0068647927, - -0.08960598, - 0.09207955, - -0.2945951, - 0.12911461, - -0.011280484, - 0.047057297, - -0.06353406, - 0.07350512, - 0.028205028, - -0.028637124, - -0.12472179, - -0.023852952, - -0.089959785, - -0.12733738, - 0.0050847568, - 0.110502005, - -0.012268826, - 0.14169587, - -0.06109209, - -0.16838436, - 0.050196238, - -0.1546484, - 0.0100618685, - 0.09679178, - 0.0655926, - -0.025560029, - 0.079295814, - -0.0027111308, - -0.018759465, - 0.0050250543, - 0.0012539484, - -0.13471492, - -0.111723475, - 0.07040966, - 0.04796579, - -0.1820556, - -0.0907899, - 0.10096344, - 0.15340982, - 0.016619919, - 0.023135759, - 0.020939928, - -0.11789409, - -0.0958822, - -0.04119504, - 0.09312383, - 0.05891259, - -0.04760399, - -0.055395138, - -0.008350721, - 0.06516547, - -0.03458357, - -0.047699846, - 0.005537093, - 0.16470258, - -0.062259108, - 0.026108075, - -0.1794113, - 0.06520251, - -0.07110248, - -0.040834606, - -0.040702887, - -0.033000723, - 0.13986191, - -0.15346034, - -0.027070064, - 0.007825264, - -0.065663785, - -0.07371841, - 0.03526255, - -0.072619766, - 0.040474296, - -0.030420685, - 0.14573167, - -0.056069665, - -0.04258097, - 0.008005246, - -0.08309671, - 0.03620678, - 0.045059286, - -0.06183945, - -0.07879423, - 0.019003136, - 0.0990058, - -0.010539515, - 0.008302446, - 0.020729411, - 0.046477944, - 0.079775944, - -0.07732054, - 0.013991361, - -0.20028219, - 0.07017123, - 0.031421684, - -0.21600372, - -0.10953007, - -0.07888911, - -0.111504205, - 0.22244298, - 0.15658492, - -0.0012781948, - -0.038741086, - -0.04320412, - -0.09271837, - -0.09715718, - -0.040982697, - 0.049193267, - -0.14943735, - -0.040996727, - -0.04689063, - 0.09732517, - -0.021263672, - 0.042466175, - 0.0068902224, - -0.019927558, - -0.060823865, - -0.019015402, - -0.16969039, - 0.058027767, - 0.0043213135, - -0.114504956, - -0.14659451, - 0.04612094, - -0.09977777, - -0.07247582, - 0.061806038, - -0.07056406, - 0.039253723, - -0.08818252, - -0.11214167, - -0.067210905, - -0.11082188, - -0.07903028, - 0.045622747, - -0.11166675, - -0.07871582, - 0.062246818, - 0.09227543, - -0.06588827, - -0.11126177, - -0.1982922, - -0.16125359, - -0.07651176, - 0.059391156, - -0.0068711257, - 0.19467458, - -0.028525244, - 0.026697697, - 0.09760271, - 0.068560384, - 0.013305766, - 0.07485882, - -0.03597062, - 0.030261017, - -0.07031279, - -0.020174831, - 0.06033229, - -0.05104263, - 0.025130838, - 0.012510025, - 0.054902952, - -0.12535523, - 0.037766505, - 0.1633264, - 0.07874396, - -0.18587813, - -0.008149653, - -0.043279126, - -0.07631666, - -0.037273083, - -0.12577039, - 0.050873592, - 0.044078313, - -0.011864911, - -0.14162062, - 0.06477235, - -0.0028361522, - -0.05602731, - 0.1972567, - 0.07107494, - -0.020350615, - 0.04735461, - -0.052646253, - -0.17202137, - 0.049459863, - 0.02804884, - 0.075136304, - -0.36724898, - -0.08208812, - -0.07591691, - -0.04354261, - -0.15385467, - -0.088352285, - 0.0938886, - -0.024536131, - 0.08042339, - -0.12863539, - 0.16184841, - 0.111704476, - 0.14619964, - 0.09288979, - -0.21175586, - -0.08147838, - 0.02169378, - -0.023520324, - 0.09862745, - 0.19234392, - -0.23117867, - -0.23837657, - 0.1127426, - -0.06536264, - -0.015420372, - 0.011746384, - -0.035873722, - -0.14926574, - -0.08742628, - -0.054342967, - -0.015994295, - 0.069836006, - 0.09701557, - -0.023572668, - 0.026807461, - -0.0062653683, - -0.027296524, - -0.00606477, - -0.071901925, - -0.046629693, - 0.047855202, - -0.092088945, - -0.16743462, - 0.0094009815, - -0.008902641, - 0.12811424, - 0.007253173, - -0.099958204, - 0.053043917, - -0.06005064, - 0.101662844, - 0.002141066, - 0.22590932, - -0.021874113, - -0.10896027, - 0.07171646, - 0.045966044, - -0.067066796, - -0.003344469, - 0.042604074, - -0.0025113788, - 0.03514256, - 0.027695557, - 0.14803666, - 0.0058388324, - -0.021556357, - -0.010286514, - 0.10018077, - 6.6606037E-4, - 0.024249911, - 0.082474135, - 0.023623427, - -0.2764354, - 0.13545161, - 0.06890886, - -0.039621674, - 0.03676105, - -0.0015746144, - -0.0053280815, - -0.14428803, - -0.07853374, - -0.16283825, - 0.064820126, - -0.076921456, - -0.22163744, - 0.10100521, - 0.06588702, - -0.049927726, - -0.001509264, - 0.0130392825, - -0.026918659, - -0.08140007, - 0.11897954, - -0.08276967, - 0.02970136, - 0.17062753, - -0.050153576, - -0.10575508, - -0.021942321, - -0.0072784103, - 0.0044436213, - 0.09777784, - -0.049921498, - 0.23991486, - -0.11340746, - 0.009228587, - -0.049637906, - 0.030768653, - -0.044893984, - -0.07663821, - 0.036686502, - -0.034743067, - 0.055040754, - 0.12117655, - -0.0762991, - -0.02798384, - -0.01235662, - -0.20181784, - -0.04436576, - -0.1558108, - 0.0034429368, - -0.1641604, - 0.019434744, - 0.1600782, - 0.019566486, - 0.024675367, - -0.21738261, - 0.012050442, - 0.11498239, - -0.10759741, - 0.06478879, - -0.103317164, - -0.11110678, - -5.428E-4, - -0.10620816, - -0.16070785, - 0.0581031, - 0.04153471, - -0.082394265, - -0.06055818, - 0.06516539, - -0.018714199, - -0.16814983, - 0.033217847, - 0.052485563, - -0.087969996, - 0.10335622, - 0.011584333, - -0.06497278, - 0.018581832, - 0.18720071, - 0.0064156577, - 0.123014, - 0.09667107, - -0.028540052, - -0.058919355, - 0.11368012, - 0.01973389, - 0.15314609, - 0.060674973, - -0.041109793, - 0.10866304, - -0.07689034, - 0.080349356, - -0.08511156, - -0.039540567, - -0.13685596, - 0.10726146, - 0.30084488, - 0.05128167, - 0.11920395, - 0.057818867, - 0.017483335, - 0.014899413, - -0.056347456, - 0.10614373, - 0.040183004, - -0.10419988, - -0.13196197, - -0.08842949, - -0.041801315, - 0.07095819, - -0.0753389, - 0.06713687, - -0.029287208, - -0.0363786, - -0.041789636, - -0.14959708, - 0.03079764, - -0.010110806, - -0.10722005, - -0.07606929, - 0.1310159, - 0.13067931, - -0.11155924, - -0.11291028, - -0.06695863, - 0.0058993893, - -0.03404221, - 0.04376452, - 0.011401613, - 0.042222913, - -0.048168328, - -0.037797205, - -0.007966706, - 0.091107555, - -0.1905214, - 0.006594537, - 0.0012985588, - 0.002272359, - 0.10381202, - 0.09218979, - -0.1236433, - 0.010538809, - -0.011297264, - 0.017514255, - 0.068867326, - 0.035032734, - -0.09479252, - -0.10465289, - -0.18825594, - 0.06952278, - 0.03281498, - 0.032729525, - -0.016036829, - -0.011891499, - -0.043989748, - 0.07065796, - -0.18634905, - -0.16393977, - 0.15995228, - 0.05575889, - 0.11191379, - -0.06559933, - -0.023855021, - -0.24508281, - -0.02450331, - -0.1373223, - -0.063114785, - 0.24756202, - -0.091883756, - 0.0016634534, - 0.0058332924, - 0.07371803, - 0.00788817, - 0.024222823, - -0.11485135, - 0.18200748, - 0.0487245, - -0.03855366, - -0.122027524, - 0.12242202, - -0.14447439, - -0.02564581, - 0.09998456, - 0.21729897, - 0.10371601, - -0.018297408, - 0.014268265, - 0.117452845, - -0.086397134, - -0.013140389, - -0.12920178, - 0.010137874, - 0.098408215, - -0.11534026, - -0.10531719, - 0.04029087, - 0.051281877, - -0.05154781, - -0.12133117, - 0.09349883, - 0.026375584, - 0.062407322, - -0.0679913, - 0.101601794, - -0.05209298, - 0.03420728, - -0.058253266, - 9.334064E-5, - -0.04475982, - 0.24900013, - -0.08047702, - 0.06687918, - -0.057163417, - -0.109407105, - 0.1712503, - 0.023747632, - -0.13775784, - -0.0323346, - -0.055244002, - -0.08759739, - -0.14629434, - 0.16172746, - 0.034079663, - 0.05864601, - -0.061792754, - 0.030354055, - -0.070767075, - 0.15177716, - 0.09171638, - -0.060142457, - -0.019698001, - 0.108394146, - 0.08045572, - 0.030645594, - -0.13042276, - 0.091886535, - 0.06460718, - -0.025867004, - -0.101290315, - 0.16288424, - -0.09746766, - -0.15045026, - -0.11748495, - 0.06748642, - -0.12363291, - 0.21732275, - 0.03411126, - 0.06176876, - -0.039253034, - 0.116792485, - 0.10225875, - -0.03541142, - 0.16031063, - 0.1444729, - -0.19871229, - -0.005945773, - -0.13979113, - 0.019844161, - 0.08744852, - -0.14101821, - 0.058888033, - 0.09554062, - -0.0446637, - -0.045484595, - -0.13439804, - 0.018458914, - -0.06923591, - 0.116245836, - 0.026685497, - 0.020975849, - 0.040562034, - 0.17693305, - -0.08547688, - 0.049239118, - 0.21428907, - -0.022817343, - -0.14550366, - 0.020163372, - 0.07221393, - -0.007416426, - 0.1393162, - -0.06495104, - -0.006360654, - -0.03946324, - -0.002478581, - 0.1037054, - -0.035440646, - -0.07509862, - 0.023409886, - 0.14677879, - -0.027059944, - -0.08430201, - 0.060108308, - -0.006097043, - 0.10546695, - 0.15672423, - 0.02693702, - -0.0014713645, - 0.0010542963, - 0.152302, - 0.07729594, - 0.0972958, - 0.15898617, - -0.04091397, - -0.02924206, - -0.111674, - 0.1016927, - 0.043076295, - 0.1655136, - -0.0955332, - -0.14471766, - 0.11002616, - -0.10693194, - 0.06268341, - -0.17775947, - 0.012887416, - 0.05860586, - 0.10463878, - 0.19490789, - -0.015847152, - -0.0029738597, - -0.056530323, - 0.0108292075, - -0.025829153, - -0.19054845, - 0.012571373, - 0.13281451, - 0.06252441, - -0.19966914, - -0.13217123, - 0.068894185, - 0.066369556, - -0.019589085, - 0.13759723, - -0.11349994, - 0.17022903, - -0.051780242, - 0.039214816, - 0.028227663, - 0.026922025, - -0.045334022, - 0.16269968, - -0.001879225, - 0.077380165, - 0.10773039, - -0.017172016, - -0.027755843, - 0.0035133234, - -0.24340531, - 0.034221217, - -0.037197277, - -0.02860203, - -0.12245051, - 0.014447948, - -0.08274026, - 0.07458677, - -0.053422295, - 0.0010145302, - 0.07696688, - -0.025107043, - -0.13940758, - -0.021603271, - -0.061158717, - -0.050755914, - -0.032969132, - 0.20597006, - -0.016305694, - 0.031101186, - 0.17130601, - 0.09866256, - 0.009298017, - -0.021683922, - -0.11183202, - 0.0745972, - 0.060041435, - 0.13271208, - -0.26258945, - -0.0022626636, - 0.06445279, - 0.030048352, - -0.112910606, - 0.057496134, - -0.05463315, - 0.0019094065, - 0.18388951, - -0.07550831, - -0.0058218064, - -0.027651122, - 0.018469803, - -0.028470797, - 0.29813182, - -0.018698473, - -0.07446261, - -0.018364433, - -0.2122228, - 0.11589337, - 0.14618888, - -0.029103983, - 0.054196168, - -0.025812425, - 0.057366796, - -0.04956962, - -0.0018790006, - -0.13017999, - -0.12523222, - 0.116210535, - -0.10263079, - 0.05699735, - -0.20860694, - 0.0019437004, - 0.05813917, - -0.22809096, - 0.021847764, - 0.08276465, - 0.015497528, - -0.0035845158, - -0.1297749, - -0.04987162, - 0.054960936, - 0.113524824, - 0.16840045, - -0.025517033, - 0.08553559, - -0.042555653, - 0.08633937, - -0.02308914, - -0.056320373, - -0.024822272, - -0.09550671, - -0.12004169, - 0.0988269, - -0.034049045, - -0.010698206, - -0.085553415, - 0.0012020086, - 0.013969206, - 0.057299472, - 0.031090224, - -0.0067312587, - -0.11071866, - -0.07038778, - -0.009081791, - 0.19632888, - 0.050321784, - 0.05016096, - 0.076379426, - 0.03307579, - 0.0106465, - 0.10080546, - -0.14027306, - -0.082077175, - -0.028236397, - 0.12315991, - -0.0642702, - -0.09777377, - 0.0014995683, - -0.13098088, - 0.070730604, - 0.029234422, - 0.06848519, - -0.06067049, - 0.007853595, - -0.16560428, - -0.062259443, - 0.024599422, - 0.019179022, - -0.006588029, - -0.027183572, - 0.10980209, - 0.15406324, - -0.04895006, - -0.1062414, - 0.13527434, - 0.10501408, - 0.0039610215, - 0.04995718, - 0.056791, - -0.04364465, - 0.13696203, - -0.24197318, - 0.08522232, - 0.0066469423, - 0.022859761, - 0.042423774, - -0.003912414, - 0.02801235, - -0.05260105, - 0.008797776, - 0.08389847, - -0.12191607, - 0.0636613, - 0.03228952, - -0.058818854, - -0.20255473, - -0.16685271, - -0.12050624, - -0.07460338, - 0.016277133, - -0.0073821796, - 0.050607648, - 0.012133838, - -0.07256869, - 0.08908643, - 0.035523593, - -0.0634592, - 0.0054391962, - 0.1721034, - -0.035560988, - 0.057195768, - -0.0072511695, - 0.16519143, - -0.042687453, - 0.052731045, - 0.15539394, - -0.011458695, - 0.15322669, - 0.11682302, - 0.0069188336, - -0.011761067, - -0.07481528, - 0.07514452, - -0.019644497, - -0.05418078, - 0.0031512307, - 0.083794676, - -0.209667, - 0.12349758, - -0.054981392, - 0.12856817, - -0.1339569, - 0.018701902, - -0.11582301, - 0.026106447, - 0.029278265, - 0.03415016, - -0.1292448, - 0.13909121, - 0.07588373, - 0.07750558, - -0.056808792, - -0.15489483, - -0.1209576, - 0.036860086, - -0.016845651, - -0.15613185, - -0.07041834, - 0.1343244, - 0.068200804, - -0.14001942, - -0.027275065, - -0.1480125, - -0.13468404, - -0.12785213, - 0.0011864493, - -0.08215839, - 0.13544938, - -0.0134955775, - -0.02730493, - -0.03044117, - -0.057712, - 0.12687825, - -0.07356604, - -0.004118319, - 0.05439748, - 0.11293013, - 0.019142851, - 0.04147968, - 0.005231035, - 0.15207683, - -0.07262341, - 0.02807114, - -0.06298395, - -0.1684432, - -0.12663434, - 0.09560819, - -0.07756677, - -0.09062265, - 0.07703109, - 0.07453802, - 0.043138467, - -0.0013036088, - -0.029931616, - -0.019232986, - -0.06521901, - -0.069323815, - -0.02576564, - 0.18394148, - 0.012551451, - 0.017123003, - -0.046829466, - -0.26289245, - -0.08512947, - 0.10702434, - 0.06470195, - 0.013384432, - 0.057002228, - 0.107456565, - 0.014684558, - 0.031420004, - 0.17607965, - -0.029561525, - 0.063119754, - -0.037907, - 0.063065216, - -0.10611651, - -0.011879287, - -0.1324362, - 0.11937996, - -0.045844514, - 0.010834405, - -0.003934315, - 0.044015825, - -0.006302207, - -0.003606353, - 0.13603914, - -0.039086804, - 0.05853478, - -0.059241552, - -0.023801805, - 0.06529959, - -0.15484674, - 0.058147665, - -0.09010992, - -0.058543514, - 0.0011420208, - -0.060719833, - 0.06072039, - -0.04329761, - 0.071849704, - 0.06872269, - 0.0927743, - -0.15011226, - 0.0375549, - 0.10331484, - 0.044497095, - 0.13760845, - -0.06913339, - -0.01600746, - -0.06835573, - -0.011217516, - -0.09979363, - 0.05800582, - -0.030611599, - 0.06501383, - 0.01624608, - 0.0015531487, - 0.0021717988, - 0.15827039, - -0.006208023, - -0.11906252, - -0.055195503, - -0.13228364, - -0.09762477, - 0.16406569, - 0.11440556, - 0.11415851, - -0.0627514, - -0.07210641, - 0.038072594, - 0.04490533, - -0.024954874, - 0.08196788, - -0.12784956, - 0.041481342, - -0.066974394, - -0.0061808066, - 0.002035006, - 0.093378164, - -0.018177075, - -0.13580969, - 0.14819531, - 0.09612475, - -0.055776317, - 0.023298174, - 0.014937744, - 0.07107703, - 0.031969097, - -0.022527425, - 0.039478667, - -0.112816915, - -0.0669688, - 0.13395604, - 0.009652425, - 0.044930972, - -0.12995411, - -0.030430652, - -0.040729433, - -0.16737615, - -0.09185367, - -0.0022854682, - 0.004637677, - 0.14732859, - -0.03248794, - 0.11546358, - -0.018661778, - -0.05452176, - -0.020831775, - 0.006996683, - -0.11207891, - 0.073439635, - -0.010514044, - -0.076768935, - 0.12725282, - -0.06642335, - 0.050125416, - -0.025453411, - 0.01858584, - 0.17612688, - 0.13653193, - 0.096424416, - 0.021213284, - 0.1576993, - 8.811345E-4, - -0.09363272, - 0.062495552, - 0.12224324, - -0.040178664, - 0.006286593, - 0.04809441, - 0.19057724, - 0.12153746, - -0.10318071, - 0.14396986, - 0.06820155, - -0.12167162, - 0.05380469, - -0.16711499, - -0.075655945, - 0.016864318, - 0.18186523, - -0.15914623, - -0.0010122885, - 0.010504225, - -0.03416871, - -0.15443863, - -0.11965634, - -0.14327231, - 0.029297221, - 0.05282489, - 0.1227333, - 0.1275949, - -0.18652423, - -0.065292254, - -0.030192306, - 0.0057110405, - 0.11357248, - -0.006515636, - 0.008600644, - 0.012808228, - 0.19284916, - -0.18138635, - -0.16759105, - 0.15538466, - 0.079294614, - 0.032598108, - 0.10025522, - 0.03377525, - -0.09941337, - 0.028738948, - -0.14074877, - 0.2873006, - 0.07912341, - 0.048550993, - -0.14014754, - -0.017329475, - 0.006326067, - 0.10464192, - -0.07974548, - 0.11352002, - 0.023932505, - 0.095659904, - -0.15401709, - -4.1179292E-4, - -0.12014303, - 0.07242039, - 0.032925192, - -0.06602207, - -0.095498875, - 0.017707612, - -0.027413152, - -0.08251767, - 0.080464326, - -0.2495599, - 0.01437404, - 0.09879296, - 0.15602297, - 0.019633051, - 0.09938914, - 0.10989335, - -0.016911842, - -0.022117876, - -0.02665757, - 0.08619864, - -0.10864855, - 0.163602, - -0.0324707, - -0.055956796, - 0.027650226, - -0.020939741, - 0.091861114, - 0.09034055, - 0.18919775, - 0.021806717, - 0.048120353, - 0.0061366227, - 0.04724124, - 0.040478256, - -0.055901993, - -0.20075153, - -0.07348007, - 0.054486517, - -0.047533974, - -0.15492617, - 0.059715535, - -0.021507747, - 0.03805416, - 0.014594568, - 0.13815476, - -0.089827485, - 0.03742246, - -0.09211054, - 0.10160405, - -0.16395351, - -0.1624845, - -0.014353014, - -0.07046211, - 0.05763754, - 0.08579202, - -0.0727621, - -0.10887161, - -0.054537065, - 0.10843342, - 0.17981464, - 0.083282486, - 0.10110835, - 0.090782136, - 0.03447868, - 0.0854148, - -0.02992589, - 0.13697669, - -0.04277011, - -0.033640165, - 0.1870933, - 0.027656252, - 0.006855195, - 0.06454322, - -0.0012738365, - -0.109761566, - 0.1484691, - 0.028409414, - -0.00935981, - 0.06836023, - -0.01499511, - 0.1222815, - -0.07885688, - 0.055646304, - -0.20353152, - -0.033732492, - -0.048326697, - 0.10316764, - -0.0058603752, - -0.11042361, - 0.04653696, - 0.074803725, - 0.09517376, - -0.029931763, - 0.020197442, - 0.12300764, - -0.014116844, - -0.049877264, - -0.004742276, - 0.004448708, - -0.08585682, - -0.06594837, - 0.09950632, - 0.10464432, - -0.014246203, - 0.07967328, - 0.144048, - -0.059844162, - 0.053179886, - 0.13542897, - -0.026870336, - 0.15980978, - -0.086362354, - -0.16840759, - -0.07581331, - -0.07139819, - 0.08979698, - 0.13096589, - 0.03286494, - 0.008901405, - 0.019611113, - -0.0056544817, - -0.021718107, - -0.09249447, - 0.06789725, - 0.10426963, - 0.14318791, - 0.0014885562, - -0.0704248, - -0.107951134, - -0.06493089, - -0.09677962, - 0.048871078, - -0.1111559, - -0.04118264, - 0.051123563, - 0.023146814, - 0.012760757, - -0.09564527, - 0.12665695, - -0.13210998, - -0.21461703, - 0.08729621, - 0.12804843, - 0.04696985, - 0.20100383, - -0.10844285, - 0.04609472, - 0.04238249, - 0.1748892, - -0.17262381, - -0.027276361, - 0.06332939, - -0.07704624, - -0.002640047, - 0.12223445, - 0.0020747888, - 0.077134185, - 0.19754742, - -0.05999227, - -0.05338976, - 0.07758488, - 0.10201625, - 0.0015591946, - 0.11291581, - 0.005993877, - 0.039924923, - -4.6592765E-4, - -8.47801E-4, - 0.0022108029, - 0.027829072, - 0.040790163, - 0.025737215, - 0.15885757, - 0.10947589, - -0.014734182, - -0.079788655, - 0.011362201, - 0.052165683, - 0.07617327, - 0.09155502, - -0.020810898, - -0.086174086, - 0.09174296, - -0.114481375, - -0.1472567, - 0.19522421, - -0.006897692, - 0.08592825, - -0.020417387, - 0.012017675, - 0.12699272, - -0.03317529, - 0.03625506, - 0.092887536, - -0.15422148, - 0.117442034, - -0.03768935, - -0.2007472, - -0.043565255, - -0.119675286, - 0.096956216, - -0.075910375, - 0.06403814, - 0.1382276, - -0.083587945, - -0.030035341, - -0.2400153, - 0.06420755, - -0.010670894, - -0.107238404, - 0.052356623, - 0.10524112, - 0.049913812, - -0.07164295, - 0.057765286, - 0.07253101, - -0.14209332, - -0.05709476, - 0.017781185, - 0.08871943, - -0.088465676, - 0.1741559, - 0.041205253, - 0.008560452, - 0.009299668, - -0.07514196, - 0.01720964, - 0.06501452, - 0.08302158, - -0.009340794, - 0.09421754, - 0.054732144, - 0.022943735, - -0.0045960536, - -0.14605667, - 0.120727, - -0.06713132, - 0.0066072075, - 0.19974813, - 0.05418454, - -0.14303437, - -0.22000182, - 0.05820361, - 0.0019260654, - -0.11193807, - -0.096611574, - -0.029382573, - 0.03736315, - -0.041216023, - 0.042221017, - -0.0019296433, - -0.13375708, - 0.050164744, - 0.08437294, - -0.015751999, - -0.11952624, - -0.061702568, - -0.030378917, - 2.928683E-4, - 0.09602269, - -0.13601032, - -0.0067862896, - 0.12416488, - 0.05577322, - -0.022828648, - 0.09958769, - -0.031739447, - -0.017076675, - 0.09172026, - 0.09532181, - -0.04754894, - -0.08082007, - 0.022372521, - -0.03883215, - -0.075104386, - 0.15998158, - -0.0091252625, - 0.037981894, - -0.06423064, - 0.0622486, - -0.06854026, - -0.018619463, - 0.0373142, - 0.111493185, - 0.113019586, - -0.079712085 - ], - "reducedFeatures" : [ - 0.001738381, - 0.016193628, - -0.029118003, - -0.01894658, - 0.044875555, - -0.054605916, - -0.01522967, - 0.039124086, - -0.04632287, - 0.046531584, - 0.008526874, - -0.01628321, - 0.0026922396, - -0.04109181, - -0.004985746, - 0.03263758, - 0.0026155408, - -0.06315533, - -0.07331627, - -0.015371217, - -0.012765242, - 0.016040377, - -0.0013030157, - 0.0142387105, - -0.0055525596, - -0.023940202, - 0.017040601, - 0.006548644, - 7.0089685E-5, - -0.005981078, - 0.021392161, - 0.028166471, - 0.007968758, - -0.025704226, - -0.018977469, - -0.028213214, - 0.02155572, - 0.026084267, - -0.0020395098, - -0.02338977, - -7.603553E-4, - -0.032925177, - 0.008912334, - -0.040949743, - 0.012097146, - 0.06733799, - 0.006283344, - 0.007149152, - 0.0126632545, - 0.042866006, - -0.039883897, - 0.03979829, - -0.023051066, - 0.00649736, - -0.027866371, - 0.02290819, - -0.010566786, - -0.0066850106, - 0.03410108, - -0.063060865, - 0.014156987, - 0.027368993, - -0.027544785, - -0.0034211176, - 0.0037652054, - 0.044933412, - -0.037262566, - -0.02353666, - -0.013710469, - -0.038903832, - -0.07457799, - 0.04301825, - -0.05718867, - 0.04273943, - 0.0053629056, - 0.028104058, - -0.007773264, - -0.014984249, - 0.0021530502, - 0.04703193, - 0.043764662, - -0.024739554, - -0.039479773, - 0.05358032, - -0.0054041524, - 0.0035463222, - 0.014288182, - 0.010800294, - 0.045651264, - -0.040899593, - 0.0305627, - -0.04690248, - 0.024083458, - 0.026961507, - -0.021894831, - 0.019131515, - 0.0039509716, - -0.0054646307, - -0.02170808, - -0.032366354, - -0.005680632, - 0.0011682771, - -0.020130152, - -0.028206822, - 0.016754402, - -0.035002824, - 0.01861749, - 0.011748671, - -0.0013371902, - 0.018481607, - 0.021202967, - -0.009516817, - -0.01956087, - 0.00605957, - -0.056870777, - -0.06911389, - 0.01432078, - 0.00599355, - 0.001262418, - 0.045903422, - -0.03528315, - -0.042327523, - -0.017745603, - 0.02648253, - -0.0360057, - -0.002791239, - 0.03339701, - 0.0033914798, - -0.052729126, - 3.7880515E-4, - -0.02936996, - -0.0070026484, - 0.025372516, - 0.043653518, - 0.025327282, - 1.1375102E-4, - -0.013156186, - 0.010013757, - -0.0052399957, - -0.042895906, - 0.010897494, - 0.0062087923, - 0.009500862, - 0.047502756, - 0.019875934, - -0.040885616, - 0.034794495, - -0.01649521, - -0.005819785, - -0.0054454585, - 0.0023267567, - 0.032878976, - 0.032084547, - -0.018289654, - -0.03146119, - -0.012305299, - 0.01828465, - 0.017230177, - 0.025533192, - -0.0014758797, - -0.076444454, - -0.029821023, - 0.029113105, - 0.06260195, - 0.036533456, - 0.046126336, - 0.025057359, - 0.027036026, - -0.0025853864, - 0.032283317, - -0.021029988, - 0.012631369, - 0.032209862, - -0.01681658, - -0.021397308, - -0.039784934, - -8.808866E-4, - 0.025775185, - 0.032177974, - -0.008411898, - 0.01393173, - -0.03240656, - 0.028413482, - -0.018440431, - -0.039398015, - 0.05282778, - -0.03169952, - 0.020249914, - 0.041910734, - 0.0465374, - -0.039035168, - -0.04092482, - 0.031510573, - -0.008726041, - -0.004825275, - 0.038411222, - -0.007130871, - -0.015938975, - 0.041376587, - -0.015829474, - -0.004951716, - -0.015959103, - 0.046030987, - 0.022743767, - 0.013787954, - 0.042551868, - 0.017349415, - 0.011815433, - -0.05831218, - 0.02010244, - -0.04989347, - -0.024804397, - 0.028147703, - -0.020118233, - 0.019474585, - 0.0077412925, - 0.03210986, - -0.0038435794, - -0.006956952, - -0.013342213, - -0.0149981165, - -0.06186163, - -0.012008322, - -0.07668042, - -0.026134275, - -0.0061758338, - 0.01804934, - -0.029741067, - -0.013873869, - 0.06739372, - -0.044818386, - 0.04832525, - -0.030256657, - -0.04620036, - -0.036315948, - 0.029826524, - 0.07231082, - 0.029058136, - 0.016802918, - 0.028130107, - -0.0120207295, - -0.019909423, - -0.010784638, - 0.07300354, - 0.05227726, - -0.005622277, - -0.019868758, - -0.029206662, - -0.0038361456, - 0.0077403737, - -0.014400951, - -0.02511116, - -0.005165758, - -0.0062825913, - 0.01929358, - 0.012749745, - -0.026674304, - -0.04710807, - 0.005885125, - 0.00955084, - -0.0031591523, - -0.035123546, - -0.009922959, - -0.015424802, - -0.0496013, - -0.025559893, - 0.004122811, - -0.007246749, - 0.03251836, - -0.029006887, - -0.0030588731, - -0.031578258, - 0.009850525, - 0.0039026055, - -0.006296182, - 0.007792301, - 0.028722888, - 0.034089316, - 0.0070798905, - 0.03011926, - 0.04419613, - 0.0038460095, - 0.02030335, - -0.031024262, - -0.02805051, - 0.026600705, - -0.0024893086, - -0.0040894463, - -0.011900971, - 0.048317015, - -0.030407729, - 0.0030571858, - 0.013062039, - 0.015213266, - -0.046580702, - 0.015462621, - 0.007878806, - -0.03886007, - 0.02703545, - -0.012182537, - 0.01730969, - 0.015377285, - -0.026756823, - 0.029664855, - -0.022724843, - -0.0013960113, - 0.01295635, - 0.013681757, - -0.035978217, - -0.018777141, - -0.06878241, - 0.009539527, - -4.6025048E-4, - 0.003928609, - 0.021256693, - 0.0010092941, - 0.028716573, - 0.01843829, - -0.038074344, - 0.05933875, - -0.014491274, - 0.035880424, - 0.012202638, - -0.052634407, - -0.008581915, - 0.010467749, - 0.0029573136, - -0.015009054, - -0.036648244, - -0.057444822, - -0.025935024, - -0.021485215, - 0.01881034, - -0.014323974, - 0.004218038, - -0.073556416, - -0.0058925324, - -0.0050266786, - -0.009114953, - 0.03693921, - 0.034118842, - 0.075448215, - -0.037888285, - -0.024812857, - -0.01568913, - 0.022296151, - 0.011800916, - -0.025681147, - 0.046230357, - -0.027845478, - -0.013011978, - 0.012353248, - -0.053497173, - -0.07336052, - 0.03428147, - 0.050740436, - -0.0056621963, - -0.029768858, - 0.0025655208, - -0.0099378005, - 0.041400902, - 0.048246063, - 0.015667396, - 0.010213704, - -0.009559352, - -0.021552354, - -0.019378366, - -0.022892397, - 0.015583353, - -0.009920263, - -0.0021583566, - -0.008873592, - 0.0064318064, - 0.022199716, - -0.01154155, - -0.034808222, - 0.036038212, - -0.0021184946, - -0.015137913, - 0.05191634, - -0.016327588, - 0.058881268, - 0.03688181, - -0.010435199, - -0.02289999, - -0.052365214, - 0.06409156, - -0.0097153615, - -0.0146967, - 0.045578066, - 0.038696446, - -0.040180843, - 0.017108526, - 0.021972394, - 0.009488984, - -0.009253157, - 0.039455034, - 6.168088E-4, - -0.025372546, - -0.02551115, - -0.052116673, - -3.016141E-4, - -0.034826, - 0.004147972, - 0.051783968, - 0.018190272, - 0.049539365, - -0.021633696, - -0.03378363, - 0.026265915, - -0.014489852, - 0.066260606, - -0.003414567, - -0.017947825, - 0.0055576223, - -0.032367613, - -0.04043202, - 0.0014562439, - 0.005199246, - -0.037229635, - -0.044142153, - -0.021524368, - -0.0141124865, - -2.8943873E-4, - -0.03403434, - -0.06600767, - 0.0032367478, - 0.07669788, - -0.055970557, - -0.0015896794, - -0.001739436, - 0.0012737657, - -0.023596926, - -0.033358976, - -0.019872664, - -0.013541683, - -0.019295229, - 0.0014757714, - 0.029786004, - -0.018002335, - 0.05068114, - -0.046697706, - -0.017062651, - -0.015892997, - 0.09000245, - 0.046379253, - 0.02305725, - 0.07282328, - 0.030928891, - 0.026167262, - 0.053914625, - -0.054250896, - 0.01474293, - -0.020364132, - -0.036465988, - -0.012181498, - -0.037279706, - 0.010806251, - 0.0020890825, - 0.049619496, - -0.030568218, - 0.053313468, - -0.03826239, - -0.062119186, - -0.005997844, - -0.016484382, - -0.04177326, - -0.0778923, - -0.018828018, - 0.041378703, - 0.046042476, - 0.047656246, - -0.020532621, - 0.026086818, - -0.007475039, - 0.024156682, - 0.044316586, - 0.03690755, - -0.0038488961, - -0.0051952642, - 0.037244823, - -0.0017964302, - 9.4181456E-4, - -0.023137229, - -0.019108769, - 0.017587444, - -0.01330714, - 0.016906887, - -0.069332965, - -0.050404165, - 0.027048057, - -0.010883459, - -0.032877136, - -0.0026800625, - -0.0013283838, - -0.0010474775, - 0.018847577, - 0.031684063, - 0.01052448, - -0.01751088, - 0.034568366, - 0.0077868886, - 0.024735982, - -0.039939452, - -0.012019844, - 0.03306809, - 0.08708449, - 0.018106926, - -0.0011201486, - 0.0074828467, - 0.0021345988, - 0.036975335, - -0.024252158, - -0.019536188, - -0.0019342592, - -0.023466585, - -0.0021330633, - 6.8816845E-4, - 0.055756748, - -0.049523093, - -0.012315707, - -0.022709887, - 0.0069685257, - -0.029859856, - -0.02662281, - -0.004038745, - 0.006665313, - 0.016704554, - -0.0086086895, - 0.020916536, - 0.005564134, - -0.052114524, - 0.0036685865, - -0.024810765, - -0.054208815, - 0.009773008, - 0.066344805, - 0.027525675, - -0.02898493, - -0.015347326, - 2.5401596E-4, - -0.029045971, - 0.05003512, - -0.02862947, - -0.01458673, - 0.0114434175, - -0.033265885, - 0.0034361219, - -0.009280849, - 0.0061031603, - -0.028534777, - -0.045682315, - 0.014748384, - -0.029095637, - 0.025243409, - 0.039300717, - 0.04407409, - -9.5233857E-4, - -0.05936855, - 0.03327135, - 0.04047971, - 0.004965109, - 0.062376484, - 0.017663525, - -0.040833294, - -0.021903172, - -0.031786572, - 0.024413846, - -0.07476449, - -0.0013971992, - -0.0066897287, - 0.02722734, - 0.021564445, - -0.018328182, - -0.0027665987, - -0.016464792, - 0.010235071, - -0.033876915, - 0.009429334, - -0.026947467, - -0.008070333, - 0.04313011, - 0.034947444, - -0.021607682, - -0.027326409, - 0.025089204, - -0.020875046, - 0.02629842, - 0.0054037026, - -0.0031591228, - -0.035336778, - 0.0034335877, - 0.045974076, - 0.02228639, - -0.0034155576, - -0.06896674, - 0.010288032, - -0.016199883, - 0.051953223, - -0.04848499, - -0.02691328, - -0.04360305, - -0.013700016, - 0.06556833, - -0.015974406, - -0.034007445, - -0.010850481, - -0.0153000355, - -0.069720455, - -0.03287093, - 0.038031854, - 0.0010301863, - 0.017774858, - 0.03314096, - -0.0376377, - -0.021619657, - -0.044036243, - 0.025820343, - -0.013616134, - -0.023873702, - 0.03280499, - -0.01988303, - -0.06683798, - -0.0016823703, - -0.01644483, - 0.020315377, - 0.003976116, - -0.0073216646, - -0.013389046, - -0.013486829, - -0.0054082293, - 0.011659519, - 0.0014965258, - 0.02430114, - -0.032658875, - 0.0110867, - -0.04584827, - -0.013808817, - -0.061482426, - 0.027124405, - 0.036379203, - 0.011780759, - -0.011182202, - -0.029936263, - -0.023991825, - -0.056593034, - 0.019345995, - -0.0023564224, - 0.025268255, - 0.02525042, - -0.015598988, - -0.0062143477, - -0.050140977, - -0.044917013, - 0.017807541, - 0.01750291, - -0.008323015, - -0.016038883, - -0.039054405, - -0.0070072482, - 0.018310566, - 0.04030367, - 0.028016144, - -0.019515181, - -0.01731245, - 0.042281155, - 0.01700509, - 0.032056183, - -0.06061887, - 0.015088316, - 0.028615998, - -0.015361773, - 0.039106857, - -0.028408945, - 0.01133317, - 0.05446059, - -0.036030315, - -0.067352705, - 0.035579808, - -0.059504077, - 0.052244987, - 0.033561938, - -0.018671228, - 0.017855775, - -0.021658575, - -0.030691875, - -0.015199051, - 0.037381653, - 0.024001697, - 0.010786403, - 0.017710548, - -0.105286375, - 0.0076254955, - 0.026418913, - -0.012070692, - 0.02454389, - -0.007271659, - -0.0034404383, - 0.024654776, - 0.04784672, - -0.040189452, - 0.014417872, - 0.0011075796, - 0.039469372, - 0.02576881, - -0.009182448, - -0.028914372, - 0.033857472, - 0.017437696, - 0.011683267, - 0.032910377, - -0.022589166, - 0.03308438, - 0.031914964, - -0.009071178, - -0.010543209, - 0.008721605, - 0.022169694, - -0.05030782, - 0.001767734, - -0.010318918, - 0.016732397, - 0.005654772, - -0.04586333, - -0.05923459, - -0.0019620222, - -0.01973304, - 0.009585442, - -0.030176457, - 0.03781482, - -0.030313898, - 0.04147452, - -0.049387906, - 0.026827443, - -0.024697302, - 0.08349682, - -0.029334083, - 0.020180758, - 0.025997158, - -0.033322215, - -0.012781862, - -0.044200152, - 5.077139E-4, - 0.0014901466, - 0.010046602, - 0.003909196, - 0.009749982, - 0.0027057822, - 0.008443609, - -0.02197251, - -0.024708312, - -0.008178859, - -0.008644219, - -0.023090634, - 0.0023798812, - -0.047695898, - -0.058919672, - -0.026618212, - -0.0024359596, - -0.0059996615, - 0.0013196835, - -0.013638111, - 0.017050471, - 0.015997322, - 0.01588455, - -0.010335699, - 0.008166797, - 0.03345485, - 0.008066807, - 0.022348357, - -0.023144394, - -0.046320293, - -0.035120506, - 0.03843713, - 0.0045760223, - 0.013107246, - 0.0017734079, - -0.015718816, - 0.020470578, - -0.03536036, - 0.032176666, - -0.037024133, - 0.012994507, - -0.05237209, - -0.023321692, - 0.062111482, - -0.01918268, - 0.04554994, - 0.013450297, - -0.040281076, - 0.032052167, - -0.003965431, - -0.0044186367, - 0.036000352, - -0.04448697, - -0.017243035, - -0.0035930336, - -0.026535694, - -0.0062113022, - -0.06003949, - -0.096281774, - 0.02800624, - 0.03969638, - -0.06300931, - 0.02539545, - 0.017586023, - -0.07130314, - 0.014989917, - 0.009070379, - 0.0060556484, - 0.045042492, - 0.06897174, - -0.0022312005, - -0.016172703, - -0.0141363535, - 0.02983952, - 0.044134073, - 0.03128531, - -0.054842904, - -0.059531964, - -0.031106424, - -0.020088153, - 0.006660677, - 0.021107417, - -0.0046594306, - -0.06253811, - -0.018073987, - 0.047307096, - 0.004125492, - -0.008976113, - -0.025550451, - 0.021755813, - -0.029796015, - -0.006753908, - -0.020454612, - 0.005251928, - -0.008641084, - -0.032003935, - 0.003848937, - 0.043219876, - -0.0067789876, - 0.012024512, - 0.04336867, - -0.028828803, - -0.013981408, - 0.008805622, - -0.063346, - 0.038690533, - 0.029035764, - 0.07027887, - -0.009174123, - 0.014735053, - 0.027924493, - -0.0057119355, - -0.019108327, - -0.0067504672, - -0.052315988, - -0.019036092, - 0.066399485, - -0.035273902, - -0.043388296, - -0.014696397, - 0.052805178, - -0.05880757, - 0.04020675, - -0.0677041, - -0.045779992, - -0.04655232, - 0.006230855, - 0.0072678546, - 0.036771372, - 0.027443988, - -0.005513296, - 0.016044512, - 0.011824289, - -0.031480115, - -0.06658556, - -0.030921657, - 0.0018730765, - -0.02739722, - 0.011069036, - -0.019952238, - 0.010896992, - 0.0060255555, - -0.034515753, - -0.028707549, - 0.016752759, - -0.012062867, - -0.0085377395, - 0.01703924, - 0.014298948, - 0.011164779, - -0.04711608, - 0.0783278, - 0.017132076, - -0.03924917, - -0.0033793745, - 0.06053289, - -0.0033531878, - 0.0031151092, - 0.03837759, - 0.02993479, - -0.0022785778, - 0.0024803577, - 0.022385342, - 0.061499048, - 0.018595416, - -0.030358696, - -0.026494993, - -0.048855115, - 0.01117497, - 0.03309485, - -0.008706631, - 0.017371798, - 0.011326505, - -0.04466074, - 0.055195607, - 0.016887454, - 0.02922374, - 0.00928594, - 0.037644304, - -0.034698807, - -0.04027876, - 0.0014057985, - 0.022070082, - 0.021067323, - 0.0059869583, - -0.037994314, - 0.0052629914, - -0.028058534, - 0.039298955, - -0.048662014, - 0.051507704, - -0.0076773427, - -0.04581554, - -0.028011281, - 8.065846E-4, - 0.042963613, - 0.031878844, - 0.07662162, - 0.032005105, - -0.069520585, - -0.0040167863, - -0.0039874334, - -0.0012410787, - -0.04682619, - -0.035929456, - 0.015402309, - -0.01653189, - 0.021984093, - 0.00563951, - -0.011244677, - 0.059207384, - -0.007681976, - 0.056848586, - 0.040695507, - -0.011330424, - 0.0040582493, - -0.020970633, - 0.006679117, - 0.034138568, - 0.004847777, - -0.03169618, - -0.04818053, - 0.035465743, - 0.019404158, - 0.0069934344, - 0.033377204, - 0.027142322, - -0.01630675, - -0.009494462, - 0.027042111, - 0.013445866, - -0.010189799, - 0.0068157087, - 0.0020472724, - -1.1727744E-4, - 0.0045924922, - 0.039309688, - 0.009664, - -7.9578004E-4, - -0.050367143, - 0.019710386, - 0.049078435, - -7.9237485E-5, - 0.016388165, - 0.057535823, - 0.0145701915, - -0.0027531583, - -0.017387567, - 0.020709753, - -0.037270255, - -0.04319541, - 0.0436582, - 8.771153E-4, - -0.017431859, - 0.010101004, - -0.006809217, - 0.02096778, - -0.005277018, - 0.04358486, - 0.025301004, - 0.033267874, - 0.021354385, - -0.052581485, - -0.0071086776, - 0.024499226, - 0.013451491, - -0.016416386, - -0.047321726, - -0.017201029, - -0.014500235, - -0.020881398, - -0.010172249, - -0.013864578, - -0.028159771, - -0.050484467, - 0.017571904, - -3.264171E-4, - -0.031959463, - 0.007234306, - -0.0071504624, - 0.0101247635, - 0.0681881 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "3/0", - "3/0", - "7/0", - "8/0", - "2/0", - "1/0", - "5/0", - "2/0", - "3/0", - "6/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "5/1", - "62/1", - "64/1", - "39/1", - "62/1", - "45/1", - "74/1", - "2/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "10/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "11/1", - "260/2", - "274/2", - "31/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "145/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "176/2", - "257/2", - "116/2", - "90/2", - "218/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "36/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#ABCE3D", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "h3g8weqi", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "904C4oWJKo", - "cwWBbXoQx8", - "BjsRIgaI5J" - ], - "title" : "title-DFojYr8zj8", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.2.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.2.json deleted file mode 100644 index 3e58b0834..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.2.json +++ /dev/null @@ -1,5406 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.681315Z", - "id" : "ux8r74li", - "document" : { - "modifiedTime" : "1934-06-23T02:21:17Z", - "display" : { - "id" : "ux8r74li", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/jLx.jpg/info.json", - "credit" : "Credit line: x9uPIF3", - "linkText" : "Link text: iTm4EhC4uN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/jLx.jpg/info.json", - "credit" : "Credit line: x9uPIF3", - "linkText" : "Link text: iTm4EhC4uN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#386C63", - "source" : { - "id" : "velmkcja", - "title" : "title-WlSmtleyir", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "ux8r74li", - "sourceIdentifier.value" : "eNAjgroLIg", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.081088275, - 0.009739489, - -0.03242671, - -0.06837306, - 0.028396461, - -0.054593466, - -0.015265851, - 0.12746707, - -0.059657354, - 0.11161282, - -0.25258425, - -0.08558442, - -0.069228806, - 0.07954147, - -0.05562459, - -0.07591925, - 0.1315074, - 0.009662131, - 2.0505162E-5, - 0.0045289733, - -0.09673343, - 0.0071460353, - -0.01433453, - -0.042089224, - 0.05503056, - 0.077336624, - 0.019414835, - 0.09360234, - 0.08896638, - -0.18227565, - -0.10485139, - 0.0865302, - 0.047512084, - 0.05017218, - -0.019557036, - 0.021415835, - -0.11959261, - -0.035119053, - -0.034297977, - -0.05685817, - -0.027250145, - -0.009600817, - 0.13434544, - -0.11964765, - -0.06956075, - 0.057490177, - 0.07293678, - -0.06810253, - 0.057300393, - 0.114505105, - 0.13894543, - 0.0021973439, - 0.112874195, - -0.09195044, - -0.07462847, - -0.11467935, - 0.039388996, - 0.06463243, - -0.07898201, - -0.15357782, - 0.08250187, - 0.16270463, - -0.079591185, - -0.07604077, - 0.04859323, - -0.02186976, - 0.08894192, - -0.011488181, - -0.072831884, - 0.040077053, - 0.027739935, - 0.01981098, - -0.13121334, - 0.053052925, - -5.536027E-4, - -0.05716169, - 0.0030786318, - -0.0038106067, - -0.07970671, - -0.13050959, - 0.06167866, - 0.06554094, - 0.0043377085, - -0.010761849, - 0.09599034, - 0.09540475, - -0.20940934, - -0.024988009, - 0.04762867, - 0.10236103, - 0.06582599, - 0.19748454, - -0.08917417, - 0.06544527, - 0.110232025, - 0.019290254, - -0.076378964, - -0.039407995, - -0.03374311, - -0.062654525, - -0.11705753, - -0.15570453, - -0.12058641, - 0.114717364, - 0.08886383, - -0.1314569, - -0.0181934, - 0.032395095, - -0.051777042, - -0.0638881, - 0.0887143, - -0.053089723, - 0.1086253, - 0.028904796, - -0.01896615, - 0.06907886, - -0.045246106, - -0.208066, - 0.05817858, - 0.059350584, - -0.022862066, - -0.13771307, - -0.058110744, - 0.0495439, - -0.046496622, - -0.0011245777, - 0.011887208, - -0.007226804, - 0.06251115, - -0.031732652, - 0.015275373, - -0.035512418, - 0.012986834, - -0.08529492, - 0.12094796, - 0.0027206328, - 0.090322025, - 0.09781507, - 0.021887, - -0.15442318, - 0.008697146, - -0.004514958, - 0.14582154, - 0.042599566, - -0.028157655, - 0.047678083, - -0.004967616, - 0.09114247, - -0.0582259, - -0.044103473, - 0.09398463, - -0.05696766, - -0.041283514, - -0.035549976, - -0.021046784, - 0.097239695, - 0.05296867, - 0.0055864574, - -0.032726392, - -0.09207936, - 0.005497503, - 0.05827443, - -0.0012419978, - 0.05033307, - 0.14319754, - -0.13133857, - -0.019516775, - 0.01027349, - 0.030035365, - -0.040953293, - -0.12950478, - 0.01797393, - -0.039881572, - -0.1322542, - -0.063125044, - 0.0677659, - 0.124796085, - -0.010202313, - -0.23303631, - -0.11685316, - -0.08946802, - -0.03149011, - 0.0010650442, - 0.09466419, - 0.012579786, - -0.12078033, - -0.09412058, - -0.027508203, - -0.04110141, - -0.0880541, - -0.14263313, - -0.107803375, - 0.10784674, - 0.04536016, - -0.10110311, - 0.07685034, - -0.11162274, - 0.011370453, - 0.038340483, - 0.063465975, - -0.077819236, - 0.008426854, - 0.031078484, - 0.23310718, - -0.005756098, - -0.029869096, - 0.051023204, - -0.10341091, - -0.06351882, - -0.06137781, - 0.009447526, - -0.037763637, - 0.1277364, - -0.08059749, - 0.09942894, - 0.1143892, - 0.1446383, - -0.070415884, - 0.04488491, - -0.04549028, - 0.005254779, - 0.20200518, - 0.048353694, - 0.20692088, - 0.06842709, - 0.0359293, - -0.022659203, - 0.123539604, - -0.045158427, - -0.04381998, - 0.09073299, - 0.05417382, - -0.085834935, - 0.0065848823, - 0.23698214, - 0.10415469, - -0.12181959, - -0.116298854, - -0.07121001, - -0.010805314, - 0.117916845, - 0.021822987, - -0.18834692, - 0.011509604, - 0.07874542, - -0.07514171, - -0.09855543, - 0.045943256, - 0.10533218, - -0.18259658, - -0.22644122, - -0.05497615, - -0.123527065, - -0.101907186, - 0.27550212, - -0.14489213, - 0.10035563, - 0.063410625, - -0.07581028, - -0.078383476, - 0.007151386, - -0.058244053, - 0.017643396, - -0.11451404, - -0.03330368, - -0.0034909952, - 0.0023427878, - -0.06876225, - -0.03949571, - -0.0796527, - 0.0013225742, - 0.08947011, - -0.055039696, - 0.013633131, - -0.051268764, - 0.05426373, - 0.07040907, - -0.06162067, - 0.03867769, - -0.073079474, - -0.3538113, - 0.025538826, - 0.13922799, - 6.7646476E-4, - -0.12759952, - 0.2050454, - 0.06091354, - -0.07360282, - -0.022805506, - 0.0515763, - -0.058565233, - 0.059594564, - -0.17381981, - -0.14471047, - -0.07285769, - 0.05478473, - 0.12613279, - -0.1289154, - 0.17018066, - 0.09746348, - -0.1247938, - -0.067206584, - -0.12214369, - 0.11153467, - 4.4004293E-4, - -0.10696089, - 0.115698434, - -0.013212696, - 0.00470317, - -0.08477187, - 0.041588962, - -3.9295247E-4, - -0.013267103, - 0.019749878, - 0.025813166, - -0.083698064, - -0.00950383, - -0.040188387, - -0.1994581, - 0.102378175, - -0.014751345, - 0.06079576, - 0.036676884, - 0.078989334, - -0.0012962103, - 0.02602051, - -0.060558353, - 0.02518642, - -0.06429359, - 0.04840788, - 0.14970547, - -0.14258197, - 0.089803934, - -0.014488431, - 0.23108684, - -0.091142006, - 0.07270022, - -0.1211792, - 0.10454708, - -8.2537346E-4, - -0.03330476, - -0.021026956, - 0.042324934, - 0.051349644, - -0.009873066, - -0.022776254, - 0.07272549, - 0.07743526, - -0.041695368, - 0.1449612, - -0.0971761, - -0.019831195, - -0.011306374, - -0.08166524, - 0.03832353, - -0.14232303, - -0.006058536, - -0.18837531, - -0.031121045, - -0.14400455, - -2.0645792E-4, - 0.0031346497, - 0.15135941, - -0.09846998, - -0.110670805, - -0.063819736, - 0.16477256, - 0.03845671, - 0.079786845, - -0.0077040545, - -0.008835151, - -0.03732818, - 0.15760134, - 0.112377286, - 0.016491855, - 0.09546321, - -0.044557657, - 0.08672804, - -0.021967553, - -0.045193724, - -0.17334963, - 0.1079537, - -0.1283791, - -0.12902792, - 0.18662123, - 0.015858836, - 0.034266032, - 0.003155024, - -0.0545156, - -0.009812181, - -0.09431086, - 0.07846943, - -0.14400944, - -0.07902799, - 0.07141367, - 0.063823275, - -0.01190541, - -0.030397832, - 0.06612454, - 0.040339496, - 0.12984951, - 0.12985767, - 0.11584395, - -0.14566357, - -0.012893496, - -0.13662624, - -0.16687165, - -0.031481892, - 0.08319129, - 0.122372635, - -0.0685969, - 7.316058E-4, - -0.077414505, - 0.020498492, - 0.021958107, - -0.0470219, - 0.06861356, - 0.06022347, - 0.010077814, - -0.09071816, - -0.044659823, - -0.19730186, - 0.051476046, - -0.08794268, - 0.014537277, - -0.1812591, - 0.07785545, - 0.19906023, - 0.052856214, - 0.06810918, - -0.04772145, - 0.14460799, - -0.12300445, - 0.010520219, - 0.069818385, - 0.10252366, - -0.04022765, - -0.04758411, - 0.08326657, - -0.051541876, - -0.032953653, - -0.055996288, - -0.07641163, - -0.05624805, - -0.08331457, - 0.110050745, - 0.07675408, - 0.049380172, - -0.020790607, - 0.07973538, - 0.10725531, - -0.09705985, - -0.0655466, - -0.13512187, - -0.106596336, - 0.06478576, - -0.012060946, - -0.101389095, - -0.036036924, - -0.033868786, - 0.009245375, - 0.0694237, - 0.18151279, - -0.08931316, - -0.07336322, - -0.08544959, - -0.024421766, - 0.027584227, - -0.044039626, - 0.07825327, - 0.0287006, - -0.0591287, - 0.004048618, - 0.09623862, - -0.027624706, - 0.039963603, - 0.05833042, - 0.037062626, - -0.060551886, - 0.21430324, - -0.08372581, - 0.028539376, - 0.026475592, - 0.10335857, - 0.1731779, - 0.026862262, - 0.013095597, - -0.14210309, - -0.07305106, - 0.09696266, - -0.0012081288, - 0.10984017, - 8.0394646E-4, - 0.024171354, - -0.11996136, - 0.032499082, - 0.040816415, - -0.10722095, - -0.047074087, - 0.0310629, - -0.11727486, - -0.123552196, - 0.020038804, - 0.07592626, - 0.15468922, - -0.0010853057, - -0.13830587, - 0.12653549, - -0.054899663, - -0.04372197, - -0.108405344, - -0.10990819, - 0.03709341, - -0.21250461, - -0.09598726, - 0.13762046, - -0.24656983, - 0.12362542, - 0.0688575, - 0.028366312, - 0.040875554, - 0.08403041, - 0.110591754, - -0.042242978, - -0.059325933, - -0.21103314, - -0.04774354, - 0.14424437, - 0.095572025, - -0.04383424, - -0.07082886, - -0.053977348, - 0.077844, - -0.20090078, - -0.030209227, - 0.21609257, - 0.020035023, - -0.07854485, - 0.16757168, - 0.2307046, - 0.0037873217, - 0.019340828, - 0.08058744, - 0.09378251, - -0.015189397, - -0.112739965, - 0.084177434, - 0.021917192, - -0.1952518, - 0.021026948, - 0.11146423, - 0.060020786, - 0.06313485, - 0.006450914, - -0.0057275645, - -0.019007906, - -0.17600337, - 0.13671982, - 0.05426278, - 0.15053256, - -0.22845198, - -0.012634341, - -0.044207256, - 7.1045454E-4, - 0.25034562, - 0.015348229, - 0.0665343, - -0.048060227, - -0.0755164, - -0.07858695, - -0.052223302, - 0.007297931, - -0.1314813, - 0.15359369, - -0.09300326, - 0.06310862, - -0.06125727, - -0.043732844, - -0.035333898, - 0.07044543, - 0.03812245, - 0.10994814, - -0.1543724, - 0.016784545, - -0.041471995, - -0.040870886, - 0.04950174, - 0.02609853, - -0.010072324, - 0.09195067, - -0.15887056, - -0.00370298, - 0.068413556, - 0.07611298, - -0.0029746997, - 0.025856556, - 0.12502332, - -0.109768294, - -0.01645043, - -0.10585367, - 0.008301487, - -0.024616135, - 0.022891464, - -0.102146894, - -0.011256823, - -0.09125915, - -0.079154365, - 0.14614294, - 0.0049447236, - 0.12834877, - 0.03935743, - -0.06874419, - -0.15252948, - 0.09015225, - 0.18916643, - 0.08837385, - -0.08515395, - -0.10516889, - 0.043475404, - -0.014176993, - -0.0056821574, - 0.009003481, - -0.110031076, - -0.055165824, - -0.1195362, - -0.11629882, - -0.032454763, - -0.06353674, - 0.017770216, - 0.07777263, - 0.055100262, - -0.11780053, - 0.017395522, - -0.04956779, - 0.11331802, - -0.08963066, - -0.017309623, - -0.057618737, - 0.01456001, - 0.018037427, - 0.03846529, - 0.01820377, - -0.09178494, - -0.05405929, - -0.07267263, - -0.0068729944, - -0.088064216, - -0.20643161, - -0.12416632, - -0.11456619, - 0.13580205, - -0.08457877, - 0.01696673, - -0.14692461, - 0.049120687, - 0.01647472, - 0.10110813, - -0.030080523, - -0.07179544, - 0.005229015, - -0.10021616, - -0.13558428, - 0.028520456, - 0.08832969, - -0.03985967, - -0.23542227, - -0.14130458, - -0.13344094, - -0.047608584, - 0.05589787, - 0.10229247, - -0.037078414, - -0.029551698, - -0.08041985, - 0.059527073, - 0.058900107, - -0.15850665, - 0.08461282, - 0.053712714, - 0.08188687, - -0.09805496, - 0.19332193, - 0.05430857, - -0.10578643, - 0.061710194, - 0.012778577, - -0.13635829, - 0.026184982, - -0.040648464, - -0.0056024776, - -0.06250432, - -0.10532301, - -0.013892207, - 0.16303894, - -8.6479634E-4, - -0.026185403, - -0.088615894, - -0.08078484, - -0.27414218, - 0.04492002, - 0.029409565, - -0.12680507, - 0.065290146, - 0.09437233, - 0.067201115, - 0.04605513, - -0.18529816, - -0.100791596, - -0.08493858, - 0.026971186, - -0.072031744, - -0.11163431, - 0.04108873, - -0.035822347, - -0.014177565, - 0.058353093, - 0.053226937, - 0.093651034, - 0.06929959, - 0.042460244, - -0.087352455, - -0.055898182, - 0.039879747, - -0.13507476, - -0.0056856247, - 0.03992994, - -0.035744254, - -0.23027341, - -0.049391784, - -0.070561804, - 0.20567606, - 0.11165358, - 0.0049322154, - -0.10415441, - 0.15669738, - 0.0098950025, - 0.10065956, - -0.08912436, - 0.1519884, - -0.0387478, - 0.039010063, - 0.20367476, - 0.018979536, - 0.020640433, - 0.06941833, - -0.054690797, - -0.19598214, - 0.076879755, - -0.068597145, - -0.10856803, - 0.03775879, - 0.017163364, - -0.14610143, - 0.0053360667, - 0.07797903, - -0.23886032, - -0.033834938, - -0.084699795, - 0.104697526, - 0.12224102, - -0.110003464, - -0.07801954, - -0.06843003, - 0.15943438, - 0.14740978, - -0.09618992, - -0.06954791, - 0.1438374, - 0.004137818, - 0.06993043, - 0.025461184, - 0.046668593, - 0.085769705, - 0.16759245, - 0.12126596, - -0.06459496, - -0.09286751, - -0.042532228, - 1.3159262E-4, - -0.11572122, - -0.03130591, - -0.060224026, - 0.009722417, - -0.074389696, - 0.053658303, - -0.0054213, - -0.030121377, - -0.11475172, - 0.060698103, - -0.05617443, - -0.12570642, - 0.02299366, - -0.10501057, - 0.053033058, - -0.07104044, - -0.20581171, - -0.085620366, - -0.029103061, - -0.034583326, - 0.028437778, - -0.022379223, - -0.1517484, - -0.05095156, - -0.23039395, - 0.010745694, - -0.022745255, - -0.01919959, - -0.02788289, - 0.12818061, - 0.07528454, - -0.026310176, - 0.26397538, - -0.008199907, - -0.054889005, - 0.15761988, - -0.014857359, - 0.012346524, - 0.021329353, - 0.06953357, - 0.065193884, - -0.1580764, - 0.0872959, - 0.024669247, - -0.17560042, - 0.10628263, - -0.0863058, - -0.06414544, - -0.03915169, - -0.041281145, - 0.0771194, - -0.047326155, - -0.0036427246, - -0.25779352, - -0.030513471, - 0.22775368, - 0.12396867, - 0.022688432, - 0.065731615, - -0.012799656, - -0.06083414, - 0.07732486, - 0.005203199, - -0.037329625, - 0.13752092, - 0.05217239, - -0.0113010295, - -0.10815452, - -0.06272862, - 0.0044609746, - -0.08736321, - -0.07862845, - -0.042880233, - 0.09523242, - 0.008480068, - -0.030414466, - 0.04843216, - -0.15660842, - -0.002146128, - 0.13876547, - 0.11704093, - -0.009990485, - 0.0016236496, - 0.07002671, - -0.1206094, - 0.13763744, - 0.17685613, - 0.12792222, - -0.010117009, - 0.108660124, - 0.05167237, - 0.032689806, - -0.13445975, - 0.04764518, - 0.02987065, - 0.054293487, - -0.18752256, - 0.09767633, - -0.12624384, - -0.0820436, - 0.101057336, - -0.1103651, - -0.045420863, - 0.057735663, - 0.09133048, - -0.03486976, - -0.1514041, - 0.076165475, - -0.041551903, - -0.033351805, - -0.053571485, - 0.015293111, - -0.030090218, - 0.08462588, - 0.056379024, - 0.03763822, - -0.23617738, - -0.10055072, - 0.13632673, - -0.027395621, - -0.21061109, - -0.036407534, - -0.055169247, - -0.04329629, - 0.051552452, - -0.070791885, - 0.14804704, - -0.034395777, - 0.053298242, - 0.03344247, - 0.06796994, - -0.043632086, - 0.05662227, - 0.11234522, - -0.13372841, - 0.09837783, - -0.0068410127, - -0.08854657, - 0.10900668, - 0.055843174, - -0.033756923, - 0.081037804, - 0.08007461, - 0.037281234, - -0.09794214, - 0.05169416, - -0.060188517, - -0.09355267, - -0.02690049, - -0.1085631, - 0.041173972, - 0.13174835, - 0.09660231, - 0.051099613, - -0.037667476, - 0.20974356, - 0.09983358, - 0.089451216, - 0.028520573, - 0.16237822, - 0.10188219, - 0.2307084, - 5.08989E-4, - -0.012840609, - -0.033886388, - 0.09571485, - -0.12960741, - -0.19015354, - 0.10123454, - 0.03419538, - -0.21078224, - -0.20972116, - -0.12904996, - -0.053743746, - 0.19930507, - -0.1478373, - 0.07128204, - 0.11798717, - -0.040750444, - 0.15871368, - 0.043114092, - -0.14670157, - 0.22360967, - -0.017862227, - -0.08565271, - -0.05867977, - 0.024511337, - 0.12748952, - -0.14177746, - -0.04647468, - -0.10947324, - -0.014528552, - 0.0063382173, - 0.06453683, - -0.18907204, - -0.050775047, - -0.07693489, - 0.111313194, - -0.10249043, - -0.044516157, - 0.17425953, - -0.080460355, - 0.061969895, - 0.057561804, - 0.05363258, - 0.076695636, - 0.17402266, - -0.20543951, - -0.047028355, - 0.19910835, - 0.25559646, - 0.13559298, - -0.036976613, - -0.009357854, - 0.03818466, - 0.08499512, - 0.08872133, - -0.18496215, - -0.014604144, - 0.11092697, - 0.0538863, - 0.12090027, - 0.025718767, - -0.13167548, - 0.053027943, - 0.08127997, - 0.10198302, - 0.014479955, - 0.046819054, - 0.0737874, - 0.07515172, - 0.0042348835, - -0.05652844, - 0.085752025, - 0.047149695, - -0.005320455, - -0.079147965, - -0.10509234, - 0.030538002, - 0.03370603, - 0.013462106, - -0.11504015, - -0.08490445, - 0.0058654584, - -0.048901457, - -0.056244224, - -0.2218007, - -0.08530807, - -0.19233933, - -0.13393496, - -0.027687395, - 0.1022519, - 0.06780034, - -0.0035087448, - -0.010814753, - -0.0027811928, - -0.0078016017, - -0.036507443, - 0.031450704, - -0.03814954, - 0.068629436, - 0.07881102, - -0.15019502, - 0.007896844, - 0.15143451, - 0.0063824845, - 0.05437364, - -0.03439351, - -0.037816722, - -0.008585203, - -0.06545562, - 0.13667606, - 0.09849259, - -0.05746589, - -0.043754984, - 0.1446434, - -0.15285039, - -0.14243495, - -0.0654524, - 0.07956496, - 0.16391186, - -0.2013768, - -0.1491019, - 0.0037195457, - 0.08489165, - -0.079821244, - 0.07540499, - -0.090421416, - -0.010739254, - -0.03868984, - 0.16167021, - -0.121465586, - 0.04065692, - -0.031417232, - 0.06305387, - -0.10601812, - -0.1430229, - -0.1073854, - -0.14506143, - 0.015158301, - 0.013676688, - -0.056816347, - -0.045550283, - -0.09556104, - 0.047690414, - 0.03490063, - -0.1434941, - -0.09526971, - 4.6781125E-4, - -0.019247893, - 0.048198275, - 0.044269294, - 0.03491373, - -0.037795402, - -0.0544641, - 0.0017502768, - 0.02386384, - -0.072893426, - -0.034129683, - -0.098799214, - 0.047787923, - -0.043719407, - 0.08550987, - 0.009633446, - -0.0061117243, - -0.11598453, - -0.09576493, - 0.041968517, - -0.15827851, - -0.14101687, - 0.02860442, - 0.03999252, - 0.19292653, - -0.15319122, - -0.038304303, - -0.07754393, - 0.03148284, - -0.043548636, - -0.14785902, - -0.0703344, - -0.08754812, - -0.07868678, - 0.07220424, - 0.08847848, - 0.15756513, - 0.014278639, - 0.079881564, - 0.05222531, - 0.18432005, - -0.050192434, - -0.044612363, - 0.0052243527, - -0.007816503, - 0.042975735, - 0.03268368, - 0.11787504, - -0.13749999, - -0.0714513, - 0.013059594, - -0.13836873, - 0.008155949, - -0.008022763, - 0.079892665, - 0.14475454, - -0.008735646, - -0.011286454, - 0.0936234, - -0.031888824, - 0.0016318464, - -0.13630664, - 0.17876531, - 0.10996697, - -0.0025575964, - 0.045190126, - 0.02382044, - -0.035450026, - -0.016000072, - 0.1068383, - 0.0010494806, - 0.15893319, - 0.025308268, - 0.06836739, - 0.16188292, - 0.13241617, - -0.18428724, - -0.17499939, - 0.16712989, - -0.003792752, - 0.09801298, - -0.0815753, - -0.04928306, - 0.066970475, - -0.06357564, - 0.08415418, - 0.06636751, - -0.01815388, - -0.0774462, - 0.1659017, - -0.014663678, - -0.0679984, - -0.008735772, - 0.09936347, - -0.044250168, - 0.16252828, - -0.04216545, - 0.08445244, - -0.089741126, - -0.13167885, - -0.21111363, - 0.043722473, - 0.018823633, - 0.1715197, - 0.092127554, - -0.039478146, - 0.10288299, - -0.10748555, - -0.032102436, - -0.035115894, - -0.12500067, - 0.056627523, - -0.037175216, - -0.15317807, - 0.18052727, - 0.07454804, - -0.03733633, - -0.13698314, - -0.026141642, - -0.058949083, - 0.16094421, - -0.098775655, - 0.17258525, - 0.029405361, - -0.21121794, - 0.023888582, - 0.024667457, - 0.09692617, - -0.15970494, - 0.043160286, - -0.06659996, - -0.0378556, - 0.05943679, - 0.039305415, - -0.08343798, - -0.003760424, - -0.16376033, - -0.10122716, - 0.04025701, - -0.009871108, - 0.07117782, - -0.046884358, - -0.028371433, - 0.14893939, - -0.187488, - 0.066503435, - -0.101252176, - -0.027693853, - 0.010959294, - 0.019471139, - 0.14593127, - 0.1673962, - 0.062489696, - 0.15304205, - -0.09270436, - 0.021462027, - 0.07146404, - 0.016050097, - 0.13062578, - -0.12791476, - 0.06679232, - 0.21072818, - 0.07780533, - -0.09108538, - 0.09947897, - 0.32360172, - -0.018511303, - 3.5329675E-4, - -0.06790093, - -0.002311093, - -0.14853108, - -0.010037072, - -0.0019226205, - -0.10631815, - 0.017981691, - 0.03860711, - -0.10004834, - 0.021659883, - -0.1007642, - 0.03561287, - 0.085193805, - 0.06792207, - 0.050057776, - 0.0024998928, - -0.032999385, - -0.03919253, - -0.27111256, - 0.043738086, - -0.10821349, - -0.067336395, - 0.07746032, - 0.0061740573, - -0.06423009, - -0.023678984, - 0.048101157, - -0.09121995, - 0.11010584, - 0.11786692, - -0.21829063, - 0.10647364, - -0.005831978, - 0.030965708, - 0.019547597, - -0.06819296, - -0.13991104, - -0.004166109, - 0.039372325, - -0.04859828, - -0.005391456, - -0.008649722, - -0.08117907, - 0.025396576, - 0.029788747, - 0.005909418, - -0.016686693, - -0.035289995, - 2.714009E-4, - -0.023869116, - -0.12103753, - -0.02379042, - -0.019707378, - 0.011736985, - 0.13243076, - 0.20608936, - 0.01973379, - 0.07915433, - -0.07306052, - -0.030704947, - 0.09841538, - -0.13797513, - 0.004999171, - 0.086368054, - -0.106614314, - -0.2052107, - -0.0247023, - -0.113138065, - -0.07858452, - 0.056648392, - 0.12961432, - -0.17937675, - 0.05683871, - -0.09501215, - -0.069702126, - -0.06396218, - 0.10144434, - 0.043287493, - 0.060351796, - -0.08316918, - -0.072602406, - -0.16299467, - 0.06727033, - 0.096319385, - -0.07067247, - -0.11154443, - 0.09594529, - 0.055104043, - -0.0368215, - 0.12813336, - -0.13729304, - -0.12985024, - 0.05033852, - -0.0586423, - -0.1370588, - 0.1654743, - -0.008370213, - 0.07502836, - -0.08118491, - -0.046682052, - -0.04335117, - -0.1602674, - -0.043952685, - -0.045783248, - -0.11047611, - -0.059541784, - 0.05727978, - 0.013941287, - -0.03499877, - -0.064042054, - -0.028828448, - -0.2141671, - -0.0010410574, - 0.11824543, - -0.025216242, - -0.11397378, - -0.043847274, - 0.02753725, - 0.15406953, - -0.07774424, - 0.035796255, - -0.07547719, - -0.15015239, - -0.12042538, - -0.16228385, - -0.02389317, - -0.052901592, - 0.14230257, - -0.10263361, - -0.012199751, - -0.111641705, - 0.04833267, - 0.10285639, - -0.06506267, - -0.0050595226, - -0.09761547, - 0.05294516, - -0.047676932, - -0.05837794, - 0.0015462327, - -0.008015513, - -0.056424014, - -0.0039917175, - 0.105510615, - -0.03394914, - 0.050066985, - 0.0969452, - -0.02760526, - 0.101151615, - 0.16545112, - -0.027461842, - 0.024689721, - 0.07198932, - -0.09366492, - 0.05293991, - 0.04617464, - -0.21433839, - -0.0095311515, - -0.077666834, - -0.04348109, - 0.05219015, - 0.059958283, - -0.0068049687, - 0.010797945, - 0.029097011, - -0.06882717, - 1.0202956E-4, - -0.0961892, - 0.016140357, - -0.054090854, - 0.01048241, - 0.21160123, - -0.0038989414, - 0.05236366, - -0.059149545, - -0.10418205, - -0.03716624, - 0.096492544, - -0.0066834874, - 0.025166893, - 0.12115456, - 0.00500784, - 0.12651159, - -0.0033445496, - 0.022657847, - 0.033200417, - 0.032043785, - 0.10456702, - 0.13130988, - -0.015632994, - -0.018439215, - -0.106845565, - 0.3066324, - 0.024696115, - -0.020480307, - 0.090876535, - 0.0018959257, - 0.036882315, - 0.065308854, - -0.041593418, - 0.040359523, - -0.14919654, - -0.048079837, - -0.074163206, - -0.04114336, - 0.09912518, - 0.21420193, - -0.16166449, - -0.06609669, - -0.20589124, - 0.063592404, - -0.07893446, - -0.060106188, - 0.11199245, - -0.05205734, - -0.053479157, - 0.037156086, - -0.13052167, - -0.0337812, - 0.017516263, - 0.03526937, - 0.21282148, - -0.01962018, - 0.16546433, - -0.09385574, - 0.012320957, - -0.06442205, - 0.032748047, - 0.16045058, - 0.011497929, - 0.040882524, - -0.11434323, - -0.11314061, - 0.06313232, - -0.09199174, - -0.13865796, - 0.115743, - -0.0077034906, - -0.029306091, - 0.100185335, - -0.12575567, - 0.0494692, - -0.053087693, - -0.20626782, - -0.086766854, - 0.12942302, - -0.061764687, - 0.057100996, - 0.027968405, - 0.0043868683, - -0.016298164, - 0.10880047, - -0.11062577, - -0.0061647673, - -0.14130536, - 0.042979393, - 0.17588358, - 0.01979799, - 0.115442544, - -0.11183254, - 0.22568952, - 0.05815515, - -0.20461866, - 0.0018716191, - -0.011552557, - -0.1523119, - 0.07727444, - 0.030192053, - -0.116787486, - 0.18016541, - 0.14137064, - -0.0720177, - 0.087753266, - 0.005660402, - 0.024516532, - -0.09417306, - -0.08789426, - 0.14537673, - 0.10156622, - 0.20827141, - 0.012919432, - -0.01971148, - -0.15855688, - 0.18336888, - 0.13774416, - -0.045447778, - 0.04398554, - 0.012085035, - 0.04033103, - 0.11927884, - -0.016419576, - 0.09785877, - 0.035965852, - 0.15872063, - -0.09771888, - 0.15139472, - -0.012923033, - 0.0052241497, - -0.016312152, - -0.18837671, - -0.011047987, - 0.18882312, - -0.100611374, - 0.019718174, - -0.02701281, - -0.048685934, - -0.086821504, - 0.03618458, - -0.03495425, - 0.094452105, - 0.019528702, - -0.060408056, - 0.1596663, - 0.08829335, - -0.08570199, - 0.019245274, - -0.16286051, - -0.18860827, - 0.15479055, - -0.09146347, - 0.050483376, - -0.11151527, - 0.012974203, - 0.07674569, - 0.015495433, - 0.09892618, - -0.08789157, - 0.012285198, - -0.0630603, - -0.04033891, - 0.056957304, - -0.0693249, - -0.023597512, - 0.029762173, - 0.10229552, - 0.030193793, - 0.09791579, - -0.08292288, - 0.012131091, - 0.09188514, - -0.016049135, - 0.04656536, - 0.08408806, - 0.02496661, - -0.02099325, - -0.021462556, - 0.003875812, - -0.10973241, - 0.03417977, - 0.16482031, - 0.008484475, - 0.0039008367, - 0.047564898, - -0.08600537, - 0.05071248, - 0.14339066, - -0.051696494, - 0.13836376, - 0.08896744, - -0.061113533, - 0.018124735, - -0.04269328, - -0.1009233, - 0.1429957, - -0.085667044, - 0.042340577, - 0.024936944, - 0.04889669, - 0.10896878, - -0.108767055, - 0.03710072, - -0.022819899, - -0.06795087, - -0.043990336, - 0.05928968, - 0.0053895027, - 0.053114194, - 0.17659459, - -0.0379871, - -0.10128325, - 0.0033834348, - -0.059828367, - -0.1446036, - -0.070031695, - 0.0063261017, - -0.06056595, - 0.07661873, - -0.132152, - 0.030015184, - 0.010804766, - 0.08107173, - 0.024550684, - -0.04686944, - 5.192652E-4, - 0.033557564, - 0.07976979, - 0.002641987, - 0.065115854, - 0.078119546, - 0.0034320988, - 0.018183434, - 0.00839124, - 0.12911259, - 0.0947575, - -0.07092695, - 0.07698549, - -0.029137269, - -0.115097225, - -0.001130973, - 0.08641046, - 0.06617242, - 0.04463112, - -0.07106922, - -0.066867344, - -0.059998292, - -0.073205665, - 0.0065531996, - 0.05361861, - 0.033253543, - 0.0042445445, - 0.12730749, - -0.028022228, - -0.017317412, - -0.107286096, - -0.20464161, - 0.057697784, - -0.14948803, - 0.047247153, - 0.080514535, - -0.08018737, - -0.028989807, - 0.01988859, - -0.03938365, - 0.021972494, - -0.093138605, - 0.109264895, - 0.08565687, - -0.074394085, - 0.05838826, - 0.10343408, - -0.05689099, - -0.058221713, - -0.15564463, - 0.110349186, - 0.06743887, - 0.049745366, - -0.09946931, - -0.12147622, - -0.12335295, - -0.012096266, - -0.09553828, - 0.018092588, - -0.16132258, - 0.07606766, - -0.22308423, - 0.08182243, - -0.09865895, - 0.0053584385, - -0.07410424, - 0.09755879, - 0.06947379, - 0.022438135, - 0.2124332, - 0.04322359, - 0.11364391, - -0.02609353, - -0.075074926, - -0.13598062, - 0.10595391, - -0.09286301, - 0.1084097, - -0.085683905, - -0.028060192, - -0.19729125, - -0.007835397, - 0.062223487, - 0.14563131, - -0.005743013, - -0.11531608, - 0.018112104, - -0.03873864, - -0.027627436, - 0.039954264, - 0.0011555639, - 0.035337217, - 0.110229485, - -0.06378348, - -0.018886195, - -0.101816945, - -0.04011797, - 0.064033955, - 0.3845442, - -0.08905439, - -0.1076798, - -0.104239345, - 0.060680237, - -0.012187882, - 0.20312676, - -0.085838206, - -0.1110523, - -0.1015297, - 0.18188223, - 0.030767143, - 0.10751135, - -0.060949724, - 0.07684141, - 0.008835245, - -0.0056337276, - -0.056714017, - -0.03723373, - -0.03604471, - -0.064933635, - 0.016291384, - 0.04203386, - 0.0065001925, - 0.06805515, - -0.04443457, - 0.08052728, - 0.06558455, - -0.05431528, - 0.039517716, - -0.073895, - 0.043349646, - -0.32877228, - 0.08917413, - -0.13937753, - -0.04871351, - -0.16654985, - 0.08114973, - 0.14628363, - -0.11429093, - -0.14638492, - -0.05697881, - -0.16535766, - 6.304849E-4, - -0.028296828, - -0.045233, - -0.10408063, - 0.059889697, - -0.03136305, - -0.028203921, - -0.039678685, - -0.07396508, - -0.17053562, - -0.067006916, - 0.19139314, - 0.090253115, - 0.098464265, - -0.053747714, - -0.077564426, - -0.17137036, - -0.14005399, - 0.038628057, - 0.029569361, - 0.07307305, - -0.067133754, - 0.19460769, - 0.0770337, - -0.035959918, - 6.1275647E-4, - -0.13777299, - -0.0068273637, - -0.0017585418, - -0.049279768, - -0.027560052, - -0.0950863, - 0.03187632, - 0.06306656, - -0.15883593, - 0.03896835, - -0.13859446, - -0.11121216, - 0.10126386, - 0.12369194, - -0.02808401, - -0.0567298, - -0.0032994892, - -0.09275235, - 0.0705667, - -0.050222285, - 0.1482417, - -0.20726489, - -0.00747776, - -0.13817187, - -0.0051002167, - -0.14570142, - -0.13706045, - 0.007224803, - -0.057352524, - -0.029171156, - -0.14314477, - -0.01939892, - -0.0031834156, - 0.005768514, - -0.12741846, - 0.01143227, - 0.008984844, - -0.12600102, - 0.054009832, - 0.11969409, - -1.1473242E-4, - 0.0874942, - 0.023273036, - 0.11917467, - 0.1748479, - -0.13555048, - -0.03658072, - -0.10343561, - -0.059935965, - 0.12346837, - 0.043747053, - -0.26737043, - 0.026809035, - -0.087591805, - 0.15245943, - 0.021044996, - 0.096022345, - -0.0756287, - -0.084507264, - 0.07650871, - -0.08596778, - 0.020714043, - -0.06628155, - 0.13186838, - 0.16823393, - -0.1197801, - 0.11366582, - -0.13520995, - -0.0021939364, - -0.037303176, - 0.20892096, - -0.07874247, - 0.095560625, - 0.007728925, - 0.058630075, - -0.013162623, - 0.03465435, - 0.10617174, - 0.24801983, - -0.13619411, - 0.028525697, - 0.10475759, - -0.090481214, - -0.09421699, - 0.0018077823, - -0.09401127, - 0.07897302, - 0.079228364, - 0.047237106, - 0.05350048, - 0.031417813, - 0.14252906, - -0.073256545, - 0.0323412, - 0.06809284, - 0.017362839, - 0.08795383, - 0.07702809, - 0.10954096, - -0.11837025, - -0.06802754, - -0.0062768073, - 0.036610596, - -0.109765425, - -0.021129234, - -0.096491314, - 0.007705245, - 0.04746011, - 0.04290291, - 0.078875035, - 0.023664905, - -0.030013796, - 0.054392844, - -0.005991592, - 0.061044578, - 0.095027275, - -0.015649334, - 0.22394048, - -0.14245531, - 0.033237964, - -0.1346576, - 0.18265852, - 0.024697628, - -0.18008798, - 0.011538062, - 0.2170634, - 0.05597659, - 0.016468558, - 0.06489911, - -0.009181776, - -0.055801626, - -0.022142448, - -0.17388509, - 0.08419182, - 0.020790638, - 0.15756927, - -0.09910354, - -0.047417805, - -0.09748977, - 0.04631717, - -0.23512013, - -0.082488835, - -0.06575628, - -0.12671383, - -0.09534714, - -0.027571417, - 0.04480871, - -0.122910835, - -0.043788034, - 0.0057364274, - -0.006474122, - 0.12256933, - 0.1354723, - -0.022678507, - -0.0037436206, - -0.07192026, - -0.012837116, - 0.029131602, - -0.0014949718, - -0.010333124, - -0.02623775, - 0.18293807, - -0.10478036, - -0.010062765, - -0.18276653, - -0.090439804, - 0.055969127, - -0.058359697, - 0.07897801, - -0.008030369, - -0.03624455, - -0.055832088, - 0.056263164, - -0.10346341, - -0.115297176, - -0.059482962, - 0.004345135, - -0.022129383, - -0.07835762, - -0.03689375, - 0.04807899, - -0.17732653, - 0.13310812, - 0.13740018, - -0.020508386, - 0.048024587, - -0.10246276, - -0.0067392755, - 0.09079624, - 0.048620854, - 0.0031917403, - 0.1005391, - -0.21265398, - 0.0057952297, - 0.0061633363, - -0.05768113, - 0.044176545, - -0.0796853, - 0.11907607, - 0.15408112, - 0.16932428, - 0.005803409, - -0.13164443, - -0.06184758, - 0.009581186, - -0.044186264, - -0.16681024, - 0.07359696, - 0.05012462, - -0.1601457, - -0.10490536, - -0.03373462, - 0.07844691, - -0.014177602, - -0.04593633, - 0.0784085, - 0.07878297, - 0.07513424, - -0.008584699, - -0.007584473, - -0.0063578095, - -0.025782276, - -0.18470342, - 0.12615906, - -0.034349766, - 0.18137728, - 0.074648395, - 0.040437803, - 0.13071026, - 0.06172529, - 0.09678508, - -0.0028577128, - 0.14600544 - ], - "features2" : [ - 0.0653661, - 0.051390134, - -0.048452392, - -0.0811217, - 0.057998475, - 0.026650682, - 0.023312058, - -0.14728966, - -0.050558582, - -0.17695415, - 0.108148776, - -0.06605398, - 0.15978636, - 0.07805607, - -0.18654236, - 0.084638365, - -0.014877762, - 0.02094485, - 0.018338244, - 0.04621839, - -0.05730728, - 0.054110404, - -0.04523251, - -0.027349861, - -0.05618338, - 0.09230799, - 0.14366518, - -0.020584026, - -0.04859997, - 0.12914777, - 0.022728823, - 0.04434974, - -0.17312151, - 0.11144708, - 0.006375754, - 0.021143263, - 0.052958876, - -0.023678727, - -0.11287588, - -0.071775705, - -0.027204175, - -0.117520556, - -0.014129341, - -0.04264202, - 0.015092522, - -0.049116496, - 0.03411933, - -0.009700644, - 4.534762E-4, - 0.0036370018, - 0.0012794611, - 0.14471817, - -0.03938423, - -0.05503697, - 0.15767972, - 0.094355874, - 0.07456773, - -0.11339713, - -0.1462441, - -0.016369317, - -0.10390045, - 0.07886538, - 0.036375884, - 0.121387884, - 0.008161827, - -0.023731505, - -0.035814986, - -0.13074742, - -0.16705231, - 0.16884963, - 0.053298097, - -0.109832905, - 0.19958675, - -0.009199776, - -0.043004446, - 0.06132034, - -0.016979398, - -0.14967382, - -0.12033131, - -0.028012624, - -0.04046785, - 0.04088775, - 0.009579684, - 0.088972375, - 0.14750162, - 0.09343753, - -0.15461344, - -0.08635674, - 0.08768422, - 0.1695639, - -0.059605706, - -0.01229763, - 0.11749067, - -0.13768934, - 0.08700882, - -0.065741494, - -0.065048724, - 0.037200656, - -0.045848303, - 0.10727159, - 0.07837624, - 0.028478535, - -0.07774083, - 0.09911944, - 0.130626, - 0.08290029, - -0.15478167, - 0.2125272, - 0.07832553, - 0.08272291, - -0.016992997, - 0.12371491, - -0.021817168, - 0.025504008, - -0.11455626, - 0.100186445, - -0.010063262, - -0.0632634, - 0.06483052, - 0.06418919, - -0.1210619, - 0.056009326, - 0.12750408, - -0.037025806, - -0.0616357, - -0.10698732, - 0.10604707, - -0.13087158, - -0.07792088, - -0.010336806, - -0.0795749, - -0.11597449, - 0.01882787, - 0.034427635, - -0.06832486, - -0.021205015, - 0.012990807, - 0.14266323, - -0.24611707, - -0.15169111, - 0.026474658, - 0.137522, - 5.463703E-5, - -0.07899033, - -0.14243773, - 0.016486889, - 0.014438297, - -0.17706512, - -0.057228692, - 0.12006415, - -0.07402177, - 0.06298642, - 0.06665809, - -0.08283933, - 0.094189264, - -0.007677737, - -0.055477764, - -0.042087555, - -0.024549913, - 0.088307135, - 0.039267734, - 0.015435061, - -0.07027739, - 0.012719328, - 0.0020981384, - -0.16894835, - -0.15792823, - 0.011545688, - -0.034707844, - -0.19702378, - -0.072275236, - -0.12845704, - 0.03418935, - 0.11402307, - -0.03173174, - 0.030667746, - -6.974853E-4, - -0.12870781, - 0.15217626, - 0.14721073, - -0.04129755, - 0.13893846, - 0.12819496, - -0.0422605, - 0.00969897, - -0.11591168, - 0.001974734, - 0.035183247, - 0.003423618, - -0.07602556, - 0.040463805, - -0.030971315, - 0.14270942, - 0.005975089, - -0.10998707, - 0.01189944, - -0.06867831, - -0.04515997, - -0.01575985, - 0.06858663, - -0.033548605, - -0.19984442, - -0.07726005, - -0.0043262066, - -0.072723046, - -0.060315512, - 0.15130456, - 0.012616187, - -0.0063319304, - 0.12533951, - 0.08424162, - 0.059241004, - -0.028414031, - 0.08319021, - 0.046824336, - -0.06488294, - -0.06055881, - -0.040965967, - -0.013224794, - 0.15239844, - -0.036906194, - -0.08122169, - 0.09458759, - 0.20445366, - -0.19009899, - 0.04142352, - -0.093994774, - -0.009265729, - -0.04754558, - -0.06808294, - 0.032257736, - 0.07299067, - 0.027982796, - 0.077398, - -0.055376906, - 0.07996554, - 0.041591205, - 0.0015408322, - 0.14777103, - 0.039646484, - 0.041972116, - -0.097567365, - -0.09100311, - -0.06584835, - -0.05103212, - 0.07682209, - -0.06415023, - -0.07675301, - 0.050457988, - -0.1087269, - -0.11808852, - 0.09301675, - -0.0058612153, - -0.09319073, - 0.03895129, - 0.040435974, - -0.08991792, - -0.023638127, - 0.17534068, - -0.006071673, - -0.038584262, - -0.07202389, - 0.0045036385, - -0.05989963, - 0.047856025, - 0.05044088, - 0.14415021, - 0.021993244, - -0.12137265, - -0.08713015, - -0.069896065, - 0.16968091, - -0.16864201, - 0.022099214, - 0.06575076, - -0.024774201, - -0.15442717, - 0.05651869, - 0.01250414, - -0.012785355, - 0.15406477, - -0.017632233, - -0.14848687, - 0.055085897, - 0.108351864, - 0.08804409, - 0.020150354, - 0.080306396, - -0.13049431, - 0.030823536, - -0.01393939, - 0.049713876, - 0.05497789, - -0.10174158, - 0.12209114, - 0.057603143, - 0.01489459, - -0.09904396, - 0.059139565, - 0.009307301, - -0.050485145, - -0.008691522, - -0.023206977, - -0.14940605, - 0.062257882, - 0.018670913, - -0.17216791, - 0.022767134, - 0.061024733, - -0.067430794, - 0.026143122, - 0.009067732, - -0.15420756, - 0.14453597, - -0.17872106, - -0.005157699, - -0.1094632, - -0.03644552, - 0.046205297, - 0.06541894, - 0.061314814, - -0.012480075, - 0.201937, - 0.02385338, - 0.123556934, - 0.103098385, - 0.0018279543, - 0.11864514, - -0.09799392, - -0.02523655, - -0.052392863, - 0.08522831, - -0.16630158, - 0.18206507, - 0.011698259, - 0.016227013, - 0.09965611, - 0.10471232, - 0.02374313, - 0.03716924, - 0.083726965, - 0.06632329, - -0.1393029, - -0.019286904, - -0.0019463107, - 0.063759655, - -0.023188615, - -0.010955512, - -0.005700009, - -0.021735013, - 0.12656751, - -0.08227032, - -0.01956984, - -0.17516078, - 0.04675839, - -0.21491005, - 0.013673277, - -0.052619148, - -0.14082237, - -0.09217894, - -0.11319305, - 0.02646791, - -0.058038574, - -0.018131077, - -0.18321803, - 0.1005776, - -0.06080475, - -0.1139383, - 0.048441023, - -0.062610164, - -0.0112195825, - -0.13251434, - 0.07657571, - 0.11177934, - 0.09572048, - 0.004851473, - 0.13093765, - -0.09216513, - -0.057264455, - -0.060959462, - -0.026804945, - -0.14506845, - -0.030590646, - 0.111217745, - 0.084740184, - 0.039169062, - 0.09354846, - -0.036424816, - -0.09419845, - 0.042521697, - 0.06189707, - -0.05401265, - -0.04192513, - -0.06912532, - 0.039090943, - 0.04959499, - 0.08834214, - -0.021388145, - -0.01804318, - 0.08766724, - -0.009594703, - -0.0640708, - 0.10092188, - -0.012024727, - -0.047916114, - -0.13578087, - 0.14413798, - 0.030477524, - -0.06765632, - -0.106126405, - 0.017105242, - -0.041477606, - 0.027387675, - 0.018988779, - 0.08043112, - 0.08135942, - 0.010054069, - -0.17362823, - 0.035345253, - -0.15445228, - -0.059061047, - -0.073142566, - 0.13155122, - 0.03663353, - 0.033885848, - 0.14107934, - 0.015462696, - 0.03086123, - -0.033408806, - 0.018306866, - -0.21719721, - -0.12381173, - -0.035292506, - 0.08816677, - 0.0655295, - -0.036813382, - 0.036164325, - -0.08410965, - -0.1451049, - 0.16476531, - 0.081420906, - 0.028112011, - 0.013546303, - 0.08433296, - 0.10879019, - 0.08812753, - 0.054977477, - 0.051382694, - -0.11209589, - -0.007707667, - -0.13600338, - 0.06428693, - 0.01737687, - 0.11101301, - 0.010826506, - 0.05073732, - 0.15200561, - 0.0593987, - 0.086242095, - 0.08129706, - -0.0133874975, - 0.05023049, - 0.043302905, - 0.0013782561, - 0.09943698, - 0.020255433, - 0.024963597, - -0.1854691, - -0.0030032052, - -0.0503513, - -0.0050599854, - 0.10913375, - 0.17618568, - -0.062949985, - -0.17439213, - 0.018840332, - -0.18641299, - 0.023007419, - 0.07317622, - -0.18151285, - -0.081624, - -0.10737392, - 0.11138079, - 0.048528172, - -0.024080543, - 0.04310807, - -0.0029306714, - 0.18561442, - 0.08450271, - -0.016508479, - -0.12467095, - -0.06962726, - 0.12669381, - 0.07823139, - 0.22037938, - -0.21474655, - -0.0182408, - -0.017159032, - 0.05777801, - 0.084366344, - -0.10128863, - 0.09603587, - -0.1466628, - 0.04852197, - -0.102683544, - -0.12634963, - -0.014658436, - 0.07016992, - 0.099327266, - 0.092603, - -0.17100438, - 0.14878725, - 0.2520314, - -0.14233714, - 0.03649126, - -0.013252327, - 0.12437417, - -0.095222026, - 0.032534547, - -0.26231912, - -0.18246482, - -0.053358253, - -0.049859304, - 0.15565811, - 0.09062588, - -0.0090469625, - 0.0042532124, - -0.19750908, - -0.16065243, - 0.015058236, - 0.103956595, - -0.059386592, - 0.07276639, - -0.06837408, - -0.1744987, - 0.13230583, - -0.13732079, - -0.044746645, - -0.01749229, - -0.11489765, - 0.16387923, - 0.14808807, - -0.020266382, - -0.08839993, - 0.010301737, - 0.102986805, - 0.0065642865, - 0.0054967403, - -0.018143293, - 0.0076246373, - 0.11048755, - 0.007184956, - 0.007225644, - -0.02656186, - -0.011060217, - 0.11144758, - -4.262412E-4, - 0.07200962, - 0.19550052, - 0.08136379, - 0.085316814, - 0.10208537, - -0.08235544, - -0.098227136, - 0.045940537, - 0.09772869, - -0.047230233, - -0.031828284, - 0.055457905, - 6.2871235E-4, - 0.0774446, - -0.051482886, - -0.0864942, - -0.018229455, - -0.024255779, - -0.108614735, - 0.08895762, - -0.054364022, - 0.025566086, - 0.03176736, - -0.001853304, - -0.14489181, - 0.04467395, - 0.017633153, - -0.0065978845, - 0.096860915, - 0.046702858, - 0.13723588, - -0.046603136, - -0.07517752, - -0.033256304, - -0.025430681, - -0.11523577, - 0.009628577, - -0.011354913, - 0.07014018, - 0.017352764, - 0.06034801, - 0.30551627, - -0.17932104, - 0.034845393, - -0.0026245064, - 0.09058168, - 0.03252247, - -0.037101887, - -0.01599286, - -0.13764346, - 0.02017225, - 0.18788597, - -0.028865065, - -0.014218269, - -0.0780518, - -0.05423401, - -0.10302605, - 0.11280278, - 0.04313531, - 0.037177686, - 0.0417909, - -0.035210665, - 0.06660731, - -0.09731737, - -0.042664595, - 0.11560327, - -0.049375214, - 0.08146674, - 0.065283135, - 0.09526333, - 0.2096027, - -0.07188603, - 0.029337794, - -0.053981286, - 0.055761266, - 0.011958265, - 0.030954998, - 0.10532641, - -0.078365296, - 0.11238548, - -0.021949695, - 0.026166588, - -0.047613084, - -0.0021228455, - -0.007582117, - -0.21371475, - -0.097877435, - 0.20142153, - 0.06918086, - -0.032912966, - -0.033954185, - -0.0069045057, - 0.09927172, - 0.03713249, - 0.08572171, - 0.13629915, - 0.08053021, - -0.018149558, - 0.0626951, - 0.041842274, - 0.01347683, - -0.10459018, - -0.18351161, - 0.007981405, - 0.08227899, - -0.018751591, - -0.014312487, - 0.14635485, - -0.020345578, - -0.05490096, - -0.16876416, - 0.09504526, - 0.07298407, - -0.08864814, - 0.25583473, - -0.003789662, - 0.18441835, - 0.0029915154, - -0.047278572, - 0.008956262, - 0.034469172, - -0.0418683, - -0.18641226, - 0.21420962, - -0.0947721, - -0.04619421, - 0.021773536, - 0.028743051, - 0.071279034, - 0.03885853, - -0.010358663, - -0.0051155137, - -0.09031682, - -0.082309105, - 0.079398304, - -0.0036407993, - -0.08041567, - 0.0036644458, - -0.061854925, - -0.085695155, - 0.026197607, - -0.032840017, - -0.1964442, - 0.096478194, - 0.04389313, - 0.036455486, - 0.025611343, - -0.023883753, - 0.045608036, - 0.09983635, - 0.05032495, - 0.08390476, - 0.008961868, - -0.018474553, - 0.010230018, - -0.048443366, - 0.055483654, - 0.1270033, - -0.059624575, - -0.097599275, - 0.0419177, - 0.016501607, - 0.008384089, - -0.07864769, - -0.14737946, - -0.14384246, - 0.055555645, - 0.066098444, - 0.15443327, - 0.19056036, - 0.027150944, - -0.037106883, - -0.008484181, - -0.089479856, - 0.09361394, - -0.29335618, - 0.13105091, - -0.012118318, - 0.04888038, - -0.06429594, - 0.07254334, - 0.023813296, - -0.026840799, - -0.12578969, - -0.022650925, - -0.08903931, - -0.12725288, - 0.0044585955, - 0.11164902, - -0.012548606, - 0.14176354, - -0.06309936, - -0.1701106, - 0.052043628, - -0.1555403, - 0.009097286, - 0.09519201, - 0.06430952, - -0.027722366, - 0.07827692, - -0.0016010371, - -0.022132557, - 0.0046655717, - 0.0011755828, - -0.13399166, - -0.11008804, - 0.06724736, - 0.04768829, - -0.17954019, - -0.089939974, - 0.1032712, - 0.15241726, - 0.014851051, - 0.025578614, - 0.02187157, - -0.11690467, - -0.09665695, - -0.04229005, - 0.093658715, - 0.057284538, - -0.046284795, - -0.0550587, - -0.007156237, - 0.065763764, - -0.034201346, - -0.04692083, - 0.004908584, - 0.16490209, - -0.060760316, - 0.02550281, - -0.17851569, - 0.06662209, - -0.07167304, - -0.04038199, - -0.042514764, - -0.03448007, - 0.14195602, - -0.15425655, - -0.028144533, - 0.0042738444, - -0.06383464, - -0.07390209, - 0.03697413, - -0.07223329, - 0.040496796, - -0.028570054, - 0.14774945, - -0.054114588, - -0.04160674, - 0.007134668, - -0.08364429, - 0.03713103, - 0.044503763, - -0.063811354, - -0.081209235, - 0.020676719, - 0.10042742, - -0.0067449356, - 0.006455615, - 0.022369199, - 0.04378948, - 0.08011776, - -0.079902455, - 0.014345386, - -0.19988884, - 0.07087091, - 0.030349333, - -0.21762076, - -0.10875048, - -0.07703574, - -0.112241544, - 0.22238511, - 0.15426663, - -0.0019383478, - -0.040310882, - -0.045264, - -0.095691085, - -0.09807085, - -0.043581955, - 0.05095125, - -0.14938924, - -0.039662223, - -0.0454973, - 0.094937034, - -0.020808587, - 0.03881411, - 0.00720721, - -0.024322432, - -0.058734935, - -0.018363962, - -0.16849038, - 0.057651047, - 0.002426115, - -0.11779157, - -0.1469578, - 0.04625764, - -0.09938922, - -0.07413804, - 0.06159023, - -0.07310935, - 0.039257742, - -0.088091314, - -0.112960234, - -0.06848038, - -0.11101569, - -0.07802641, - 0.04841923, - -0.10863749, - -0.080370866, - 0.063557595, - 0.09207854, - -0.06720488, - -0.11045411, - -0.1998373, - -0.16144058, - -0.07425836, - 0.060050897, - -0.006344329, - 0.19784288, - -0.0289298, - 0.025639914, - 0.095308624, - 0.06906863, - 0.013866079, - 0.07523358, - -0.038241804, - 0.030665582, - -0.0721007, - -0.020581791, - 0.059654724, - -0.048624944, - 0.027025128, - 0.011547278, - 0.053845868, - -0.12626195, - 0.03876436, - 0.16208954, - 0.08081348, - -0.18600173, - -0.0068193935, - -0.043448832, - -0.07768657, - -0.03585655, - -0.123482786, - 0.051075745, - 0.042833224, - -0.012781078, - -0.1403404, - 0.06255838, - -0.0036704852, - -0.053519826, - 0.19515531, - 0.07143641, - -0.019415654, - 0.045619562, - -0.051378187, - -0.17306013, - 0.04796158, - 0.029412465, - 0.07501661, - -0.36628023, - -0.08216413, - -0.07493009, - -0.043043565, - -0.15460932, - -0.08786112, - 0.09264941, - -0.024542674, - 0.080223195, - -0.1285592, - 0.16406412, - 0.11038429, - 0.14451574, - 0.09393937, - -0.2121428, - -0.08132016, - 0.021294076, - -0.021830654, - 0.09775421, - 0.19345666, - -0.23266542, - -0.23882107, - 0.111927606, - -0.0640762, - -0.016543102, - 0.014367631, - -0.033050884, - -0.1476872, - -0.087626316, - -0.054815475, - -0.017507054, - 0.06953579, - 0.09861845, - -0.02159105, - 0.025906982, - -0.0052346224, - -0.026871221, - -0.0051051164, - -0.07358767, - -0.044872135, - 0.04834461, - -0.09359317, - -0.16761534, - 0.009430549, - -0.0055284305, - 0.12581663, - 0.00918959, - -0.10015706, - 0.052395523, - -0.060975906, - 0.10155605, - 0.005715673, - 0.22663885, - -0.023035001, - -0.11096576, - 0.07210747, - 0.043592796, - -0.06445264, - -0.0031652886, - 0.03975506, - -0.002189876, - 0.034371465, - 0.027188655, - 0.14225927, - 0.0069886143, - -0.022442754, - -0.010925584, - 0.099314176, - 0.0016167704, - 0.021164304, - 0.08270791, - 0.019691087, - -0.27565098, - 0.13296548, - 0.0702529, - -0.03885121, - 0.03993633, - -0.002767722, - -0.004715902, - -0.1427712, - -0.07866576, - -0.16443838, - 0.06541187, - -0.07297062, - -0.22124735, - 0.101159796, - 0.06466571, - -0.049170606, - -0.0022921977, - 0.013806617, - -0.029051868, - -0.08134806, - 0.11908277, - -0.08346747, - 0.032578126, - 0.17224479, - -0.049208753, - -0.10562704, - -0.02335633, - -0.006480564, - 0.006690754, - 0.09770336, - -0.048707858, - 0.24056187, - -0.111435, - 0.01065465, - -0.05082017, - 0.029301599, - -0.04372009, - -0.07506688, - 0.03606995, - -0.034352876, - 0.057540435, - 0.122146256, - -0.07621907, - -0.028891368, - -0.011233393, - -0.20239413, - -0.043372944, - -0.15780234, - 0.0031626378, - -0.16523641, - 0.018737644, - 0.15986651, - 0.017664606, - 0.026797587, - -0.21682218, - 0.010014478, - 0.11387196, - -0.105305426, - 0.06703292, - -0.10325401, - -0.1084053, - 3.9293023E-4, - -0.10622685, - -0.16160202, - 0.058117867, - 0.041538186, - -0.0841506, - -0.06030755, - 0.062656894, - -0.018656388, - -0.1689614, - 0.03369765, - 0.052055534, - -0.08601642, - 0.103506245, - 0.013156434, - -0.06751008, - 0.021579398, - 0.18718499, - 0.0037198514, - 0.124547966, - 0.09488612, - -0.02682933, - -0.058335543, - 0.11339496, - 0.017751712, - 0.15289624, - 0.059226163, - -0.041329987, - 0.106963344, - -0.07817999, - 0.08019666, - -0.08651629, - -0.037202597, - -0.13733713, - 0.106030464, - 0.299916, - 0.052424546, - 0.12099807, - 0.058475893, - 0.015634669, - 0.01310849, - -0.058390785, - 0.10854938, - 0.040036894, - -0.10509529, - -0.1319573, - -0.088231824, - -0.04135842, - 0.07095237, - -0.07320662, - 0.06603472, - -0.029703021, - -0.033613775, - -0.042829532, - -0.14569706, - 0.030716764, - -0.008828126, - -0.106224634, - -0.07630286, - 0.13271023, - 0.13231905, - -0.11132253, - -0.11519687, - -0.06742369, - 0.008941859, - -0.03528325, - 0.041092064, - 0.011730565, - 0.041431315, - -0.045197297, - -0.036860447, - -0.009070281, - 0.09297921, - -0.19167018, - 0.003480679, - 0.001372043, - 5.4406095E-4, - 0.103101, - 0.09285578, - -0.121876806, - 0.012841737, - -0.009964272, - 0.015961591, - 0.06767427, - 0.036246628, - -0.09800537, - -0.10678947, - -0.18993336, - 0.067879766, - 0.035250977, - 0.032650925, - -0.015508284, - -0.010082552, - -0.043877568, - 0.069403365, - -0.18574017, - -0.16436644, - 0.161775, - 0.059674945, - 0.11136682, - -0.064005494, - -0.02207826, - -0.24431941, - -0.02717578, - -0.13615176, - -0.06368116, - 0.24701834, - -0.09325619, - -9.0824254E-4, - 0.00249974, - 0.07119447, - 0.011047283, - 0.023759583, - -0.112667374, - 0.18052694, - 0.04751214, - -0.03810258, - -0.12319512, - 0.12258558, - -0.1448986, - -0.026444504, - 0.10185477, - 0.21772823, - 0.10408938, - -0.020277759, - 0.012754047, - 0.11769684, - -0.0841939, - -0.012854485, - -0.1282809, - 0.008873026, - 0.09532411, - -0.11505265, - -0.10613543, - 0.03788284, - 0.05230086, - -0.050541826, - -0.11944587, - 0.09333046, - 0.027524784, - 0.0649262, - -0.06576948, - 0.104920894, - -0.053162865, - 0.034010276, - -0.05884215, - 3.787742E-5, - -0.044700634, - 0.24746703, - -0.08256656, - 0.06530716, - -0.054635223, - -0.10786175, - 0.1735591, - 0.023199996, - -0.13927847, - -0.032531004, - -0.05379493, - -0.08553642, - -0.14759356, - 0.16301882, - 0.03538446, - 0.059054896, - -0.06276514, - 0.030528296, - -0.07019363, - 0.15346044, - 0.0917127, - -0.060386375, - -0.02136031, - 0.10747316, - 0.08089434, - 0.027491141, - -0.13202171, - 0.09175835, - 0.0654697, - -0.027108474, - -0.10035082, - 0.16493098, - -0.098253526, - -0.15092124, - -0.118541524, - 0.06780975, - -0.12454161, - 0.21941608, - 0.03256119, - 0.063439295, - -0.03866168, - 0.11574283, - 0.10409324, - -0.03231156, - 0.15796201, - 0.14557156, - -0.19811663, - -0.0041232305, - -0.13896449, - 0.01849724, - 0.084856726, - -0.1397129, - 0.057283558, - 0.09688205, - -0.047424965, - -0.04715462, - -0.13630065, - 0.017646588, - -0.067246236, - 0.116437376, - 0.02552158, - 0.0190822, - 0.039600816, - 0.17757578, - -0.08403826, - 0.04899541, - 0.21433668, - -0.021373838, - -0.14543201, - 0.01804207, - 0.07130938, - -0.008657557, - 0.13929404, - -0.06361478, - -0.009458989, - -0.042002603, - -8.645959E-4, - 0.10344345, - -0.036466256, - -0.074889556, - 0.022642858, - 0.14717878, - -0.027840136, - -0.0835157, - 0.061018497, - -0.0051372754, - 0.1042188, - 0.15709837, - 0.025096796, - -0.0021935194, - 0.0037559378, - 0.15254931, - 0.0814724, - 0.096717015, - 0.15839544, - -0.04205359, - -0.029659832, - -0.11372276, - 0.10254064, - 0.043589927, - 0.16492939, - -0.09378155, - -0.14363134, - 0.10813882, - -0.107022464, - 0.06310395, - -0.18044063, - 0.012259392, - 0.06080315, - 0.10378344, - 0.19656162, - -0.017738175, - -0.0042306236, - -0.055245098, - 0.008997776, - -0.022790462, - -0.19047834, - 0.010514291, - 0.13237125, - 0.06225745, - -0.20017134, - -0.13086313, - 0.06931178, - 0.063501544, - -0.019419115, - 0.13714145, - -0.11293287, - 0.16689435, - -0.053251468, - 0.03966017, - 0.028941233, - 0.024716426, - -0.046007503, - 0.16211565, - -0.0024578187, - 0.079906, - 0.10644135, - -0.01917795, - -0.027904438, - 0.003442738, - -0.24386717, - 0.031627394, - -0.037678007, - -0.030266916, - -0.123158894, - 0.013280816, - -0.08440625, - 0.07448524, - -0.05444695, - -0.0016955251, - 0.07607023, - -0.026317593, - -0.13711968, - -0.022521297, - -0.05920398, - -0.0505904, - -0.03121411, - 0.20804648, - -0.015687792, - 0.032875743, - 0.17574371, - 0.098141745, - 0.009394949, - -0.01968003, - -0.110181004, - 0.075926945, - 0.063518606, - 0.13286875, - -0.26048768, - 3.3153733E-4, - 0.063652866, - 0.02758471, - -0.11338657, - 0.059032712, - -0.051151987, - 0.0023087251, - 0.18604957, - -0.07612705, - -0.007448666, - -0.027471356, - 0.015563907, - -0.029656326, - 0.29835564, - -0.018139228, - -0.0750172, - -0.018098988, - -0.212716, - 0.115185045, - 0.14830337, - -0.027798664, - 0.05432571, - -0.024043152, - 0.0606913, - -0.050526284, - -0.0019942333, - -0.13047682, - -0.12483964, - 0.1155513, - -0.10312704, - 0.056543637, - -0.21110803, - 2.4985685E-4, - 0.06149002, - -0.22626702, - 0.020728981, - 0.08298694, - 0.017800778, - -0.0028556243, - -0.12797838, - -0.050300945, - 0.054545693, - 0.110567495, - 0.16892408, - -0.02467359, - 0.08836414, - -0.042620145, - 0.0890899, - -0.02234782, - -0.057111688, - -0.027302321, - -0.09525734, - -0.12019128, - 0.10176662, - -0.037916563, - -0.011161817, - -0.08477694, - 0.004044415, - 0.016927604, - 0.056930352, - 0.032728475, - -0.0064763445, - -0.11057887, - -0.07152033, - -0.008301614, - 0.19468117, - 0.051569253, - 0.049897455, - 0.07765003, - 0.033815537, - 0.009468558, - 0.10052704, - -0.13937414, - -0.082591474, - -0.030235475, - 0.12571533, - -0.06226906, - -0.095229775, - -1.5093083E-4, - -0.13201295, - 0.0699963, - 0.029765485, - 0.06816708, - -0.059090756, - 0.007319577, - -0.16507429, - -0.063488476, - 0.026018774, - 0.02074461, - -0.0043099457, - -0.025228076, - 0.1131803, - 0.15520573, - -0.048346438, - -0.10809892, - 0.13490129, - 0.1081938, - 0.003646453, - 0.04810592, - 0.059847828, - -0.043641645, - 0.1380796, - -0.24225539, - 0.08539186, - 0.005312082, - 0.019565769, - 0.041231066, - -0.0073343534, - 0.030356884, - -0.05008124, - 0.0070357285, - 0.08282597, - -0.119911045, - 0.061066, - 0.028185073, - -0.057658218, - -0.20391788, - -0.16798237, - -0.123885244, - -0.07473931, - 0.01443929, - -0.0071016103, - 0.050782446, - 0.012998257, - -0.07325002, - 0.0880543, - 0.035014987, - -0.06461662, - 0.004814637, - 0.17182441, - -0.033518426, - 0.058114577, - -0.00789712, - 0.16382903, - -0.042277224, - 0.05377352, - 0.15661508, - -0.012035375, - 0.15396915, - 0.11533795, - 0.007963161, - -0.012138925, - -0.07746634, - 0.07582961, - -0.019178638, - -0.052082203, - 0.0034772349, - 0.084878296, - -0.20655708, - 0.12420685, - -0.055719838, - 0.12949783, - -0.13460127, - 0.01983947, - -0.11425082, - 0.025531795, - 0.028477719, - 0.034031115, - -0.12982644, - 0.13719115, - 0.07362459, - 0.07498312, - -0.05695354, - -0.15441366, - -0.12241191, - 0.03468758, - -0.017948667, - -0.1583077, - -0.067943744, - 0.13415761, - 0.06891145, - -0.13730545, - -0.026940716, - -0.15009585, - -0.13711394, - -0.12722895, - 1.7123297E-5, - -0.08369728, - 0.133324, - -0.014683161, - -0.026022797, - -0.029400432, - -0.054916415, - 0.12620121, - -0.074872755, - -0.0066961236, - 0.055540055, - 0.112268746, - 0.018205304, - 0.042062547, - 0.0033316754, - 0.15123725, - -0.074210405, - 0.028520603, - -0.06345085, - -0.17000237, - -0.12734504, - 0.09511903, - -0.074689314, - -0.08921372, - 0.075012006, - 0.07448521, - 0.043512, - -0.0034325356, - -0.029210422, - -0.019127293, - -0.06236435, - -0.07064468, - -0.025168223, - 0.18512535, - 0.013088679, - 0.01579813, - -0.04773676, - -0.2629016, - -0.084690504, - 0.109226495, - 0.06389575, - 0.011003527, - 0.05597473, - 0.10747425, - 0.015473557, - 0.031127717, - 0.17674468, - -0.026276574, - 0.06297045, - -0.038584277, - 0.062580496, - -0.10450063, - -0.011948351, - -0.13256775, - 0.1199568, - -0.046045925, - 0.0112858955, - -0.005216984, - 0.04255705, - -0.0066750557, - -0.0020810405, - 0.1359284, - -0.039521232, - 0.059814464, - -0.05854562, - -0.026274092, - 0.06333307, - -0.1545964, - 0.059845902, - -0.09185441, - -0.05625109, - 6.286495E-4, - -0.061579697, - 0.061507825, - -0.043770816, - 0.0728743, - 0.06938169, - 0.091479145, - -0.15041694, - 0.03858335, - 0.10566776, - 0.046156332, - 0.13610011, - -0.07216638, - -0.012350503, - -0.06810696, - -0.012570851, - -0.100058176, - 0.05645907, - -0.030591179, - 0.06365215, - 0.013490349, - -0.0012435368, - -0.0012020655, - 0.1601302, - -0.007317587, - -0.11748515, - -0.05574909, - -0.13154145, - -0.09948315, - 0.16370973, - 0.11453222, - 0.1147846, - -0.06428087, - -0.074103765, - 0.039008953, - 0.045386177, - -0.026395354, - 0.07998439, - -0.1285204, - 0.040937662, - -0.06797489, - -0.0041277213, - 0.0029340023, - 0.09594348, - -0.014947314, - -0.1387941, - 0.14925492, - 0.09658049, - -0.05717666, - 0.022266543, - 0.015698273, - 0.071018256, - 0.030278804, - -0.021663638, - 0.03878293, - -0.11358502, - -0.06775779, - 0.13310829, - 0.010387693, - 0.044779435, - -0.13096991, - -0.027693618, - -0.04162391, - -0.16755198, - -0.094990216, - -0.0017068369, - 0.006960827, - 0.148882, - -0.034105424, - 0.1132411, - -0.019330787, - -0.05445443, - -0.020584011, - 0.0075020073, - -0.1097486, - 0.07374179, - -0.008921096, - -0.07635214, - 0.12746176, - -0.06542858, - 0.0493973, - -0.029157009, - 0.01836031, - 0.17474636, - 0.13619536, - 0.09707429, - 0.020172598, - 0.16029464, - 2.7893693E-4, - -0.093848504, - 0.064192675, - 0.120939426, - -0.04293527, - 0.0038587614, - 0.04810565, - 0.18919092, - 0.12094565, - -0.10524879, - 0.1453686, - 0.067544445, - -0.12460195, - 0.051834755, - -0.16626143, - -0.07407318, - 0.014934452, - 0.18241008, - -0.15929838, - 0.0011475901, - 0.009984651, - -0.036602035, - -0.15413094, - -0.117946796, - -0.14447096, - 0.029400202, - 0.05207219, - 0.12424909, - 0.12719373, - -0.186562, - -0.06334065, - -0.030448772, - 0.0020444593, - 0.11207305, - -0.004409841, - 0.008472641, - 0.012522314, - 0.1916047, - -0.1828288, - -0.16578116, - 0.15576166, - 0.079337575, - 0.03152144, - 0.10265308, - 0.03262797, - -0.09743181, - 0.029343806, - -0.14221393, - 0.2852477, - 0.07926657, - 0.04378938, - -0.14135647, - -0.016784333, - 0.0049949475, - 0.105222024, - -0.079259075, - 0.11301607, - 0.024624847, - 0.095655255, - -0.15471983, - 2.9426883E-5, - -0.11929019, - 0.07416151, - 0.035212748, - -0.06812761, - -0.09541529, - 0.01741724, - -0.028997725, - -0.082416624, - 0.08061664, - -0.25263846, - 0.011269164, - 0.09818915, - 0.15615384, - 0.021790871, - 0.09927697, - 0.10954378, - -0.016970538, - -0.019880228, - -0.027731145, - 0.084329024, - -0.10918016, - 0.1652124, - -0.033317205, - -0.055147342, - 0.027609102, - -0.023026872, - 0.09173489, - 0.090117745, - 0.18868305, - 0.02333413, - 0.04858076, - 0.004722156, - 0.04749409, - 0.041561976, - -0.056978587, - -0.20063357, - -0.07222052, - 0.05434074, - -0.048786763, - -0.15529788, - 0.061651412, - -0.019015674, - 0.038377948, - 0.014029099, - 0.14217642, - -0.09080893, - 0.035835292, - -0.09414595, - 0.1023861, - -0.16076118, - -0.1634718, - -0.012923754, - -0.07354547, - 0.057213604, - 0.08420194, - -0.07223993, - -0.107411005, - -0.054439373, - 0.1081188, - 0.1809984, - 0.083782755, - 0.102138214, - 0.09013013, - 0.032243583, - 0.08502276, - -0.02877689, - 0.13235204, - -0.042094152, - -0.03440689, - 0.18962146, - 0.02640424, - 0.0059025395, - 0.06253823, - 8.1661926E-4, - -0.10988905, - 0.14906043, - 0.026406541, - -0.007762137, - 0.0672378, - -0.014135714, - 0.122441515, - -0.07889563, - 0.055129744, - -0.20269182, - -0.035162665, - -0.048399266, - 0.10463605, - -0.006521471, - -0.110871755, - 0.045777094, - 0.075414665, - 0.09745951, - -0.03344362, - 0.019687712, - 0.12373862, - -0.011585303, - -0.050461765, - -0.003878937, - 0.0055147572, - -0.086178795, - -0.0646567, - 0.09834789, - 0.10191406, - -0.014392591, - 0.0791468, - 0.14289474, - -0.0587641, - 0.053037032, - 0.1410183, - -0.029339302, - 0.16113189, - -0.08729918, - -0.16729026, - -0.07582676, - -0.07197201, - 0.08882585, - 0.12796518, - 0.03030647, - 0.007486269, - 0.01748994, - -0.0071885614, - -0.02251935, - -0.09358012, - 0.06859488, - 0.100935206, - 0.14534216, - 0.0024267328, - -0.071292266, - -0.1096075, - -0.06541439, - -0.09694984, - 0.051920444, - -0.111781694, - -0.04246809, - 0.052586067, - 0.024071207, - 0.0133418385, - -0.09419549, - 0.12749095, - -0.13236852, - -0.21513397, - 0.08864042, - 0.12907214, - 0.05202222, - 0.2008741, - -0.10955062, - 0.04952962, - 0.043813426, - 0.17647377, - -0.17116104, - -0.025465185, - 0.063914545, - -0.07554297, - -0.0039361212, - 0.1216781, - 6.2595354E-4, - 0.07759247, - 0.19542961, - -0.061153848, - -0.05342813, - 0.07728609, - 0.104297236, - 0.003451903, - 0.11216876, - 0.0055501363, - 0.041126892, - -3.5734026E-4, - -0.0019690394, - -0.0015535457, - 0.031031713, - 0.042095922, - 0.027210735, - 0.16199245, - 0.10659172, - -0.01588435, - -0.0802276, - 0.013666123, - 0.051236417, - 0.07650155, - 0.09049132, - -0.023670979, - -0.08394335, - 0.09200171, - -0.114038765, - -0.14909457, - 0.19701661, - -0.0071108094, - 0.08881666, - -0.022225903, - 0.009237533, - 0.12945911, - -0.035694458, - 0.03951815, - 0.09297394, - -0.15379718, - 0.11727687, - -0.039586723, - -0.20029207, - -0.040991656, - -0.11925442, - 0.09896097, - -0.07563373, - 0.06435802, - 0.13685612, - -0.08219297, - -0.027163167, - -0.24072862, - 0.06254938, - -0.010915055, - -0.10466726, - 0.05075282, - 0.10787202, - 0.04826608, - -0.071095824, - 0.058662426, - 0.07232923, - -0.14377344, - -0.057085793, - 0.018895214, - 0.09130426, - -0.088449135, - 0.17327797, - 0.0401105, - 0.009126951, - 0.006011466, - -0.077813745, - 0.017608698, - 0.0649201, - 0.08240378, - -0.009396895, - 0.09230845, - 0.054471042, - 0.022610802, - -0.0025553633, - -0.14565568, - 0.12128444, - -0.06691425, - 0.009774725, - 0.19939427, - 0.053010825, - -0.14226304, - -0.21925098, - 0.056978684, - 7.9182093E-4, - -0.1130699, - -0.0954192, - -0.030491348, - 0.039604124, - -0.040660456, - 0.043230563, - -0.002454434, - -0.13324943, - 0.048934408, - 0.08344964, - -0.018240165, - -0.11836299, - -0.061377198, - -0.028604455, - 8.5087627E-4, - 0.09624689, - -0.13713747, - -0.003097354, - 0.12649779, - 0.055556856, - -0.023191534, - 0.10306375, - -0.03292819, - -0.017933976, - 0.09305897, - 0.0961586, - -0.048864134, - -0.08282523, - 0.022898132, - -0.03826237, - -0.07620623, - 0.1602687, - -0.0066477554, - 0.03771685, - -0.062703624, - 0.06198734, - -0.0685809, - -0.017620215, - 0.039093655, - 0.11063877, - 0.110060215, - -0.081140436 - ], - "reducedFeatures" : [ - 0.0020296418, - 0.015883064, - -0.028082922, - -0.018748574, - 0.045392025, - -0.05417743, - -0.015235842, - 0.039462924, - -0.0454927, - 0.04634339, - 0.009184885, - -0.015937034, - 0.002794709, - -0.040967803, - -0.0049603786, - 0.03193923, - 0.002887723, - -0.06296049, - -0.07265022, - -0.014348273, - -0.013313479, - 0.015719512, - -0.0014571688, - 0.014463294, - -0.0056123645, - -0.024295248, - 0.01686536, - 0.0062564085, - -4.569221E-4, - -0.0056129, - 0.02155579, - 0.02804343, - 0.007719586, - -0.026069932, - -0.019322949, - -0.027774576, - 0.02138935, - 0.025802394, - -0.0024474123, - -0.02396627, - -0.001189262, - -0.0323117, - 0.008630822, - -0.041119844, - 0.012059397, - 0.067644335, - 0.0062867664, - 0.007444304, - 0.011722563, - 0.04292146, - -0.03950483, - 0.03893069, - -0.023306945, - 0.00670441, - -0.028235318, - 0.022391474, - -0.010571849, - -0.0062067723, - 0.034286004, - -0.063160546, - 0.013978897, - 0.027664784, - -0.027054448, - -0.003258931, - 0.0032300325, - 0.044116598, - -0.037331942, - -0.024417855, - -0.01266118, - -0.038782265, - -0.075003, - 0.043349016, - -0.058204126, - 0.042950578, - 0.0056392015, - 0.0285858, - -0.007420348, - -0.014600496, - 0.0024956185, - 0.046161786, - 0.04343858, - -0.026735924, - -0.039740484, - 0.053605083, - -0.0042076316, - 0.0033622256, - 0.014134203, - 0.012143844, - 0.044947773, - -0.040568348, - 0.030987909, - -0.046089694, - 0.024465155, - 0.026290927, - -0.022347873, - 0.018459242, - 0.0032926986, - -0.004935789, - -0.02149946, - -0.03213991, - -0.0051372186, - 8.2285574E-4, - -0.020689331, - -0.028862046, - 0.016699284, - -0.035281893, - 0.018279016, - 0.011123997, - -0.0013402016, - 0.0177952, - 0.020660363, - -0.010243651, - -0.01955305, - 0.0067647193, - -0.057687778, - -0.06951081, - 0.014433066, - 0.006250542, - 0.0017746715, - 0.045800216, - -0.035365812, - -0.041875068, - -0.017497588, - 0.02569274, - -0.035860203, - -0.0015762054, - 0.033027038, - 0.0029565573, - -0.05333233, - -6.8080844E-4, - -0.029651444, - -0.0075352187, - 0.02567845, - 0.043498456, - 0.024899444, - 4.031381E-4, - -0.012216888, - 0.010532357, - -0.004242184, - -0.0430752, - 0.011999929, - 0.0063551394, - 0.00924708, - 0.047381554, - 0.020775398, - -0.039910816, - 0.035308808, - -0.016509028, - -0.0052183126, - -0.0047512655, - 0.0018409432, - 0.0337929, - 0.03262279, - -0.018632872, - -0.031414438, - -0.012020037, - 0.018780364, - 0.01717002, - 0.025081685, - -0.001011024, - -0.076451495, - -0.029450338, - 0.029324124, - 0.06329008, - 0.036525723, - 0.044970974, - 0.024836421, - 0.026880983, - -0.0026647747, - 0.031991675, - -0.020815764, - 0.011939802, - 0.031693656, - -0.01605996, - -0.021672402, - -0.0397071, - -7.5323146E-4, - 0.026821338, - 0.031699806, - -0.008584641, - 0.013971257, - -0.032584358, - 0.027996391, - -0.017325737, - -0.039578207, - 0.052801922, - -0.0322648, - 0.021231249, - 0.042494714, - 0.046686552, - -0.039397925, - -0.040529292, - 0.03281028, - -0.00963318, - -0.0049150046, - 0.038432006, - -0.0070489235, - -0.015657138, - 0.041400246, - -0.015550244, - -0.0055983975, - -0.016222557, - 0.046037093, - 0.022302942, - 0.012650779, - 0.042276543, - 0.016802438, - 0.011631127, - -0.058046546, - 0.020962501, - -0.050022162, - -0.02461464, - 0.027967202, - -0.020230286, - 0.019121084, - 0.0073310076, - 0.031822763, - -0.004644433, - -0.008084514, - -0.013126384, - -0.014900428, - -0.061372653, - -0.012896631, - -0.0762879, - -0.026567623, - -0.0069582285, - 0.017804049, - -0.02950368, - -0.014412843, - 0.0678476, - -0.045892406, - 0.0480479, - -0.030436637, - -0.04618265, - -0.035784822, - 0.029128479, - 0.07291958, - 0.028458737, - 0.016072394, - 0.028361432, - -0.011246596, - -0.020659115, - -0.011453115, - 0.07329054, - 0.05231592, - -0.0061931456, - -0.020618126, - -0.029719852, - -0.0044485764, - 0.0075088674, - -0.014177722, - -0.025137972, - -0.0044609606, - -0.0057618273, - 0.018865805, - 0.0121345725, - -0.027009195, - -0.04699732, - 0.0060215113, - 0.009381557, - -0.002956443, - -0.03547955, - -0.0103482595, - -0.014933205, - -0.04986441, - -0.02566465, - 0.0037887236, - -0.0066239033, - 0.032144617, - -0.030186865, - -0.0026138749, - -0.032169994, - 0.009582172, - 0.00410065, - -0.0067887674, - 0.00883866, - 0.028602302, - 0.0347381, - 0.0070014326, - 0.030233778, - 0.044026185, - 0.0038000168, - 0.020518778, - -0.030913716, - -0.028179258, - 0.026621705, - -0.0025086731, - -0.0033946868, - -0.01186408, - 0.048802085, - -0.03158757, - 0.0037922917, - 0.0124602765, - 0.016363483, - -0.047075782, - 0.015860999, - 0.006893295, - -0.038485736, - 0.02696679, - -0.012745154, - 0.017283924, - 0.015387812, - -0.026039485, - 0.02922285, - -0.022929173, - -0.0016227523, - 0.012269661, - 0.013467969, - -0.036741413, - -0.018530339, - -0.06778881, - 0.009503429, - -4.3871548E-4, - 0.0040086964, - 0.021308262, - 1.4558694E-4, - 0.028821494, - 0.018159864, - -0.03770891, - 0.05981244, - -0.015296271, - 0.03578942, - 0.0126250535, - -0.052793454, - -0.0095051145, - 0.009960756, - 0.0031645417, - -0.013905138, - -0.0362412, - -0.0570145, - -0.026204562, - -0.022658557, - 0.018022245, - -0.014499383, - 0.0039901338, - -0.07340626, - -0.0053365813, - -0.005943436, - -0.00966206, - 0.03774204, - 0.03345045, - 0.075125195, - -0.037007235, - -0.025591275, - -0.015674168, - 0.021855246, - 0.011845924, - -0.025599262, - 0.046311382, - -0.027731117, - -0.013248223, - 0.012993239, - -0.053471956, - -0.073234946, - 0.034417283, - 0.05039516, - -0.006097085, - -0.031000903, - 0.0026897863, - -0.010291658, - 0.04085853, - 0.047720056, - 0.016580792, - 0.010439717, - -0.009563411, - -0.021450559, - -0.01921586, - -0.023269333, - 0.015822656, - -0.010308069, - -0.0017730425, - -0.008455378, - 0.0060606636, - 0.02240797, - -0.011441914, - -0.03619626, - 0.036379457, - -0.0023133985, - -0.015185113, - 0.052539755, - -0.015728427, - 0.0597933, - 0.036442176, - -0.011127779, - -0.023290003, - -0.05200061, - 0.06464387, - -0.010469036, - -0.015119453, - 0.045026187, - 0.038964555, - -0.040783834, - 0.016158016, - 0.022304632, - 0.010250846, - -0.009982229, - 0.03941394, - 8.055607E-4, - -0.024849381, - -0.024861032, - -0.051743876, - -3.5375063E-4, - -0.034687053, - 0.004126636, - 0.052051917, - 0.017709183, - 0.05008247, - -0.021409802, - -0.033140432, - 0.02638557, - -0.014822024, - 0.06686013, - -0.002505166, - -0.018146401, - 0.0052688676, - -0.032366913, - -0.03920688, - 0.0012365778, - 0.0048065484, - -0.03633143, - -0.04362016, - -0.021676306, - -0.013425623, - -4.891229E-4, - -0.03363321, - -0.06595913, - 0.0032476983, - 0.07715215, - -0.056071337, - -0.0017993557, - -0.0012182771, - 0.002220566, - -0.023881847, - -0.033872455, - -0.01997272, - -0.013718322, - -0.018951572, - 0.0013321674, - 0.03012208, - -0.017887734, - 0.050736733, - -0.04661137, - -0.01636897, - -0.015265949, - 0.09047913, - 0.047147427, - 0.023227433, - 0.072534345, - 0.030591808, - 0.02631997, - 0.053849272, - -0.054131325, - 0.014631866, - -0.020385515, - -0.03646563, - -0.011652986, - -0.038081296, - 0.011557482, - 0.002824589, - 0.050535463, - -0.030465186, - 0.0532284, - -0.03789239, - -0.061891887, - -0.0058492254, - -0.015858889, - -0.04170492, - -0.07801934, - -0.018610721, - 0.041277487, - 0.045415908, - 0.04718159, - -0.021193344, - 0.027099982, - -0.0076353783, - 0.023866186, - 0.04378598, - 0.037608568, - -0.0036672752, - -0.004690902, - 0.036756776, - -0.0025308463, - 0.0013624998, - -0.022699326, - -0.019073004, - 0.018118702, - -0.013088508, - 0.016586505, - -0.06959892, - -0.05006694, - 0.027754853, - -0.011148549, - -0.03289961, - -0.0024487986, - -0.0012606039, - -7.2914455E-4, - 0.01870735, - 0.03156316, - 0.010561875, - -0.018063655, - 0.033838842, - 0.008417358, - 0.024771748, - -0.040209, - -0.011154696, - 0.033410832, - 0.08637883, - 0.017329931, - -0.0013403491, - 0.0070302375, - 0.0015568992, - 0.038067333, - -0.024051912, - -0.01814047, - -0.002264524, - -0.023478623, - -0.0016575498, - 7.9904305E-4, - 0.056154866, - -0.04916591, - -0.011637189, - -0.022197183, - 0.0073361825, - -0.029329265, - -0.026946895, - -0.00487599, - 0.0072889132, - 0.017750716, - -0.008319376, - 0.02059793, - 0.005352303, - -0.05200308, - 0.003238346, - -0.024336511, - -0.055041093, - 0.009656027, - 0.065479144, - 0.028059196, - -0.028631201, - -0.01553562, - 3.3812248E-4, - -0.028327618, - 0.05030458, - -0.028443027, - -0.015022132, - 0.011083614, - -0.033118557, - 0.0028612255, - -0.00936007, - 0.0066241845, - -0.028754761, - -0.046789203, - 0.014697278, - -0.028621621, - 0.025003955, - 0.039304756, - 0.043590084, - -0.001082503, - -0.059194803, - 0.0339524, - 0.04012151, - 0.0047513377, - 0.06268499, - 0.017211987, - -0.0403006, - -0.022584304, - -0.031912297, - 0.025053073, - -0.07477477, - -7.3578657E-4, - -0.006912785, - 0.027085304, - 0.020935861, - -0.017967224, - -0.0023262561, - -0.015791662, - 0.009507554, - -0.0331046, - 0.0096773915, - -0.026359972, - -0.008329884, - 0.04255355, - 0.034857925, - -0.021491718, - -0.027046539, - 0.02478214, - -0.020158442, - 0.027023558, - 0.0048707025, - -0.0029462816, - -0.034234926, - 0.0036428599, - 0.045434814, - 0.02284905, - -0.0034026685, - -0.069503814, - 0.010697564, - -0.01659649, - 0.052229375, - -0.04924148, - -0.02672405, - -0.044132084, - -0.014425371, - 0.06497505, - -0.01568082, - -0.034452412, - -0.010679394, - -0.015248303, - -0.069615826, - -0.032086037, - 0.037634067, - 7.3160627E-4, - 0.018629543, - 0.033378903, - -0.037279904, - -0.020942753, - -0.044594675, - 0.026246991, - -0.013877106, - -0.024171177, - 0.03435766, - -0.01971779, - -0.06770243, - -5.206859E-4, - -0.01685217, - 0.021159008, - 0.0039248387, - -0.0074082417, - -0.012770164, - -0.013913086, - -0.005596948, - 0.012456243, - 0.0017374041, - 0.023978334, - -0.03353781, - 0.01162163, - -0.04568136, - -0.014009075, - -0.06209506, - 0.026752386, - 0.03627823, - 0.012185533, - -0.010781359, - -0.03035274, - -0.02384414, - -0.057424854, - 0.02070803, - -0.0021119511, - 0.023986269, - 0.025548596, - -0.015302952, - -0.0062112845, - -0.050021928, - -0.045067474, - 0.018462349, - 0.016680004, - -0.0081061665, - -0.015692327, - -0.039876375, - -0.0077109165, - 0.018473685, - 0.040051255, - 0.02799224, - -0.019616941, - -0.016905641, - 0.0425576, - 0.016259007, - 0.032561447, - -0.060494717, - 0.014802416, - 0.028585436, - -0.014893801, - 0.039417163, - -0.028402336, - 0.011800374, - 0.054953057, - -0.03602985, - -0.06733439, - 0.035422504, - -0.05938345, - 0.052247588, - 0.0340853, - -0.018267771, - 0.017815616, - -0.02060633, - -0.030369394, - -0.015002311, - 0.037669126, - 0.024277996, - 0.010643093, - 0.018069131, - -0.1053491, - 0.007304512, - 0.026385548, - -0.012126734, - 0.024689747, - -0.00665832, - -0.0041513992, - 0.02424093, - 0.047385145, - -0.04025819, - 0.014526309, - 0.0013883476, - 0.039700016, - 0.0250977, - -0.008452545, - -0.028429825, - 0.03457549, - 0.017896516, - 0.012354096, - 0.033069663, - -0.02277159, - 0.032390412, - 0.03207134, - -0.009201669, - -0.010838407, - 0.008658006, - 0.021723308, - -0.05092321, - 0.0019077501, - -0.010892842, - 0.015715783, - 0.0049740234, - -0.04662694, - -0.058954667, - -0.0027487152, - -0.019689957, - 0.010409705, - -0.029944222, - 0.037595715, - -0.030202055, - 0.041291516, - -0.049403325, - 0.026784781, - -0.023523705, - 0.084034465, - -0.028681714, - 0.02023317, - 0.0259535, - -0.032467708, - -0.012797052, - -0.042708382, - 0.0017436428, - 0.0013532069, - 0.009980379, - 0.0034115876, - 0.009690821, - 0.0029667008, - 0.008545134, - -0.021166343, - -0.02451411, - -0.0082125645, - -0.00933172, - -0.023818051, - 0.0017966252, - -0.047254737, - -0.058731895, - -0.026533544, - -0.0018973686, - -0.007215409, - 0.0013193822, - -0.013504049, - 0.017423574, - 0.016427832, - 0.01614193, - -0.009536165, - 0.008261477, - 0.03347973, - 0.008870658, - 0.022948762, - -0.022734433, - -0.046147022, - -0.034918837, - 0.03934239, - 0.00478582, - 0.012692226, - 0.0014156419, - -0.016166562, - 0.019798333, - -0.035488106, - 0.03338513, - -0.036165573, - 0.012659734, - -0.052912664, - -0.023323834, - 0.061616264, - -0.018771647, - 0.04520057, - 0.013485374, - -0.040066164, - 0.031294428, - -0.004284245, - -0.004460143, - 0.03578744, - -0.044057254, - -0.017316984, - -0.0026324661, - -0.027372016, - -0.0063457238, - -0.060305685, - -0.09567613, - 0.028309649, - 0.039033275, - -0.062479492, - 0.02590862, - 0.01767652, - -0.072165705, - 0.014900286, - 0.008519425, - 0.0056549185, - 0.045136776, - 0.069132246, - -0.002491555, - -0.016463153, - -0.014527904, - 0.030333508, - 0.043760896, - 0.031058418, - -0.05470279, - -0.059324715, - -0.031109804, - -0.019895442, - 0.0078117303, - 0.020480895, - -0.005495208, - -0.062263325, - -0.01845288, - 0.04716124, - 0.0044799824, - -0.010016164, - -0.024414876, - 0.021268481, - -0.030146684, - -0.006260271, - -0.020504022, - 0.006152841, - -0.009557874, - -0.031839393, - 0.0035283412, - 0.043319296, - -0.006722336, - 0.0120865, - 0.043474708, - -0.028892031, - -0.013644774, - 0.008539688, - -0.063311815, - 0.038414907, - 0.029562479, - 0.070351176, - -0.009317388, - 0.014913652, - 0.029147368, - -0.0049097477, - -0.019509666, - -0.00687962, - -0.052559588, - -0.018817026, - 0.06685178, - -0.0354808, - -0.04312907, - -0.013981758, - 0.052790545, - -0.05930474, - 0.04124461, - -0.06652462, - -0.046555147, - -0.04679363, - 0.006052443, - 0.007629976, - 0.036835905, - 0.02782696, - -0.0050446587, - 0.015078247, - 0.011534777, - -0.03143827, - -0.066733055, - -0.030648481, - 0.0017914812, - -0.026306951, - 0.011797785, - -0.018846644, - 0.0104273865, - 0.005944115, - -0.03481982, - -0.028564896, - 0.016802164, - -0.012578135, - -0.008503724, - 0.017079247, - 0.014011225, - 0.01100156, - -0.04735399, - 0.07756189, - 0.016504953, - -0.03859592, - -0.0040673623, - 0.059278764, - -0.0044652005, - 0.0031530398, - 0.03769862, - 0.029514348, - -0.0026839145, - 0.0024704055, - 0.021636771, - 0.061955396, - 0.018559739, - -0.030081503, - -0.02723582, - -0.049116004, - 0.011525737, - 0.0335727, - -0.008062849, - 0.017303085, - 0.011377835, - -0.044656336, - 0.05530704, - 0.017545145, - 0.028931193, - 0.009207556, - 0.036701586, - -0.034824662, - -0.03983774, - 6.670268E-4, - 0.022084711, - 0.021076955, - 0.0051420773, - -0.037679132, - 0.0052773994, - -0.02817539, - 0.039859504, - -0.048839383, - 0.050796807, - -0.008349989, - -0.045915008, - -0.02886022, - 7.052253E-4, - 0.043222997, - 0.03169728, - 0.07743051, - 0.032676578, - -0.069199, - -0.003689308, - -0.00361001, - -0.0017556761, - -0.047212582, - -0.036304235, - 0.014512267, - -0.016733006, - 0.02206377, - 0.0049152677, - -0.011498592, - 0.058033247, - -0.008677177, - 0.057503335, - 0.041163396, - -0.010782745, - 0.0033830241, - -0.020684263, - 0.0061298558, - 0.034140978, - 0.0049027163, - -0.031541843, - -0.047706082, - 0.035006925, - 0.019729666, - 0.0065001613, - 0.034192435, - 0.026399303, - -0.016735548, - -0.010445056, - 0.026796544, - 0.013985458, - -0.010804184, - 0.0071190535, - 0.0027234433, - -4.7243276E-4, - 0.0042433525, - 0.039859403, - 0.0092053665, - -8.6025917E-4, - -0.05042924, - 0.019620173, - 0.04930923, - -1.1878863E-4, - 0.016860582, - 0.05730845, - 0.014678175, - -0.002601493, - -0.016994365, - 0.02080268, - -0.037077658, - -0.04203599, - 0.044418678, - 0.0010913835, - -0.01720767, - 0.009975704, - -0.006064601, - 0.02148408, - -0.005046549, - 0.0431685, - 0.024521573, - 0.032648277, - 0.020399204, - -0.053527065, - -0.0075418735, - 0.023228886, - 0.013058413, - -0.016062673, - -0.04715505, - -0.017716102, - -0.015015481, - -0.02076907, - -0.010246392, - -0.013586106, - -0.028149305, - -0.050146136, - 0.017180437, - -0.0010195546, - -0.03188729, - 0.0072646216, - -0.006398803, - 0.009945318, - 0.06905786 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "3/0", - "3/0", - "7/0", - "8/0", - "2/0", - "1/0", - "6/0", - "2/0", - "3/0", - "6/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "5/1", - "63/1", - "64/1", - "39/1", - "62/1", - "45/1", - "74/1", - "2/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "10/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "11/1", - "260/2", - "274/2", - "30/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "145/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "176/2", - "257/2", - "116/2", - "90/2", - "218/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "36/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#386C63", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "velmkcja", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "QNcOh7drsg", - "rp4jpZ2fXw", - "CRueOugk7o" - ], - "title" : "title-WlSmtleyir", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.3.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.3.json deleted file mode 100644 index 73185f6b5..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.3.json +++ /dev/null @@ -1,5404 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.682917Z", - "id" : "cu6p92or", - "document" : { - "modifiedTime" : "2034-01-03T15:38:18Z", - "display" : { - "id" : "cu6p92or", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/5uR.jpg/info.json", - "linkText" : "Link text: 2twr1s", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/5uR.jpg/info.json", - "linkText" : "Link text: 2twr1s", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#AA0EFD", - "source" : { - "id" : "m4wjxsqu", - "title" : "title-gbgpGn9EOm", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "cu6p92or", - "sourceIdentifier.value" : "qVemtWF22z", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.08129648, - 0.008686583, - -0.033508632, - -0.0699122, - 0.03210782, - -0.055074897, - -0.0152436355, - 0.12626399, - -0.060350373, - 0.11188289, - -0.25405437, - -0.08519101, - -0.069221295, - 0.08094205, - -0.056636173, - -0.0778707, - 0.12835056, - 0.010875631, - -0.0015984548, - 0.0046560704, - -0.09940395, - 0.0062584346, - -0.0180148, - -0.04097823, - 0.056099072, - 0.079794735, - 0.01862488, - 0.09723541, - 0.090050995, - -0.18216448, - -0.10181613, - 0.08581091, - 0.050333336, - 0.049349673, - -0.018518683, - 0.021172864, - -0.11891771, - -0.036891766, - -0.033907074, - -0.05497407, - -0.024804767, - -0.008537542, - 0.13599002, - -0.12121564, - -0.07378034, - 0.054971408, - 0.07451064, - -0.06563661, - 0.057491887, - 0.113454565, - 0.13732909, - 0.004165013, - 0.1136432, - -0.09485832, - -0.07483422, - -0.11393319, - 0.03820899, - 0.06558206, - -0.07855106, - -0.1527243, - 0.07955034, - 0.16383404, - -0.08042816, - -0.07766242, - 0.046560183, - -0.02011244, - 0.08964364, - -0.012088405, - -0.07189161, - 0.038552202, - 0.028661605, - 0.021660374, - -0.12830973, - 0.049687296, - -7.1063323E-4, - -0.056684, - 0.006265509, - -0.00404911, - -0.07803312, - -0.13096493, - 0.06293228, - 0.06869963, - 0.003785806, - -0.0113441525, - 0.095894754, - 0.09725349, - -0.20755011, - -0.02304627, - 0.044944555, - 0.1026804, - 0.06477702, - 0.1957027, - -0.091103785, - 0.067358054, - 0.110324994, - 0.020180957, - -0.07627757, - -0.04048342, - -0.031918935, - -0.062744685, - -0.117386915, - -0.1573438, - -0.12053405, - 0.11572416, - 0.088768736, - -0.13293605, - -0.01682232, - 0.032735772, - -0.05246823, - -0.06306659, - 0.085507736, - -0.052560072, - 0.10924044, - 0.028854277, - -0.01745676, - 0.069557056, - -0.04617436, - -0.21078151, - 0.058550958, - 0.058688972, - -0.02308158, - -0.13676615, - -0.056655105, - 0.049368806, - -0.045720696, - -4.122965E-4, - 0.0129956715, - -0.008371786, - 0.062451903, - -0.030620696, - 0.014075539, - -0.035604876, - 0.013745749, - -0.084699444, - 0.11930565, - 0.0030618329, - 0.090305194, - 0.097754754, - 0.024330866, - -0.15385804, - 0.007906725, - -0.005528504, - 0.14717227, - 0.043613758, - -0.026950095, - 0.046452697, - -0.0038654031, - 0.09351611, - -0.055577744, - -0.04512502, - 0.09728091, - -0.057562843, - -0.04014567, - -0.035137534, - -0.019595057, - 0.09825479, - 0.052580137, - 0.0036789505, - -0.035106566, - -0.08941394, - 0.007101095, - 0.06103231, - -0.0026299795, - 0.05259085, - 0.14418627, - -0.13252272, - -0.019248052, - 0.009486206, - 0.02911598, - -0.040158227, - -0.12893157, - 0.018114388, - -0.03883929, - -0.13098514, - -0.066454135, - 0.06823127, - 0.12747613, - -0.0066499813, - -0.23251697, - -0.11792083, - -0.08696065, - -0.031612217, - -0.0015865127, - 0.09330818, - 0.012325251, - -0.12286212, - -0.095097296, - -0.028383218, - -0.040386796, - -0.08879895, - -0.14077039, - -0.10716318, - 0.10816601, - 0.045356628, - -0.100493655, - 0.07727083, - -0.11300619, - 0.010196485, - 0.03844763, - 0.06326271, - -0.080535114, - 0.007105631, - 0.033048768, - 0.23226057, - -0.004649612, - -0.029788358, - 0.050819665, - -0.10309963, - -0.059582945, - -0.06113889, - 0.011088577, - -0.036510706, - 0.12882726, - -0.077864975, - 0.09822239, - 0.117092416, - 0.14763997, - -0.07146612, - 0.0445011, - -0.04555485, - 0.007783055, - 0.20098929, - 0.046101842, - 0.20747235, - 0.066131495, - 0.037248764, - -0.020935241, - 0.121736124, - -0.044648346, - -0.04334144, - 0.08975988, - 0.054303497, - -0.08167928, - 0.0064229844, - 0.23993146, - 0.1046536, - -0.12062085, - -0.11749355, - -0.071241505, - -0.011475431, - 0.118520044, - 0.020446913, - -0.19061746, - 0.012733454, - 0.08079545, - -0.07500611, - -0.10019124, - 0.04235077, - 0.10495784, - -0.18256831, - -0.22433959, - -0.057146735, - -0.12529375, - -0.09927076, - 0.27647108, - -0.1442666, - 0.10295835, - 0.06316259, - -0.07679556, - -0.07708102, - 0.0070206444, - -0.055656586, - 0.018016879, - -0.115783624, - -0.03375455, - -0.003849966, - 4.320857E-4, - -0.06858228, - -0.03622982, - -0.07783138, - 0.0014211265, - 0.08933243, - -0.053550683, - 0.013915833, - -0.051296894, - 0.055530246, - 0.06817989, - -0.06230277, - 0.03723409, - -0.07432907, - -0.35427484, - 0.026984366, - 0.13986586, - 0.0033349558, - -0.12961303, - 0.20481884, - 0.05694721, - -0.07618326, - -0.02321362, - 0.050971277, - -0.059437104, - 0.060512654, - -0.17295972, - -0.14483035, - -0.07343909, - 0.054498266, - 0.12709625, - -0.12960614, - 0.16545178, - 0.095650665, - -0.12580691, - -0.06765387, - -0.12647185, - 0.11456656, - 0.003641019, - -0.11037411, - 0.11855822, - -0.012226916, - 0.004971663, - -0.08516877, - 0.044804014, - -0.0016096404, - -0.015749373, - 0.021462869, - 0.024139097, - -0.08646813, - -0.008074665, - -0.039944977, - -0.2007526, - 0.10348773, - -0.0124765895, - 0.05981218, - 0.033873677, - 0.07797771, - 4.8686517E-4, - 0.025124561, - -0.06029678, - 0.022990951, - -0.065475866, - 0.046996057, - 0.15017982, - -0.14254251, - 0.089272216, - -0.013375461, - 0.2294644, - -0.09043651, - 0.07438453, - -0.12000266, - 0.10410561, - 0.0038022986, - -0.033854507, - -0.024278302, - 0.04268096, - 0.049415097, - -0.009572821, - -0.024313988, - 0.07381822, - 0.07255963, - -0.041414093, - 0.14417732, - -0.09743965, - -0.020622162, - -0.009498069, - -0.081559695, - 0.038794234, - -0.14260261, - -0.003657633, - -0.19027078, - -0.03188069, - -0.14397603, - -0.0024513295, - 0.00760501, - 0.1517436, - -0.0990222, - -0.110119954, - -0.06377228, - 0.16590004, - 0.036918625, - 0.07915828, - -0.0075151864, - -0.008205409, - -0.038724717, - 0.15859218, - 0.11113211, - 0.014928387, - 0.09446233, - -0.04330184, - 0.08529594, - -0.023205943, - -0.043457016, - -0.17257838, - 0.10654193, - -0.12746255, - -0.1275511, - 0.18766333, - 0.015684925, - 0.032967623, - 0.002168693, - -0.056284655, - -0.009706015, - -0.095958255, - 0.07342673, - -0.14405462, - -0.080696255, - 0.07335437, - 0.06587064, - -0.012843143, - -0.032867834, - 0.064737424, - 0.040580984, - 0.12908813, - 0.130482, - 0.11524031, - -0.15001856, - -0.013521954, - -0.13587154, - -0.16573502, - -0.0324002, - 0.082164854, - 0.12201576, - -0.0691298, - -3.5230583E-4, - -0.07857231, - 0.02079984, - 0.022190753, - -0.04892638, - 0.065545365, - 0.05881126, - 0.008913491, - -0.09115983, - -0.044094358, - -0.19654237, - 0.050949506, - -0.08941955, - 0.018030804, - -0.18392678, - 0.07722263, - 0.20224844, - 0.05180464, - 0.06925927, - -0.048617102, - 0.14756551, - -0.12519325, - 0.0113037545, - 0.069775425, - 0.1015021, - -0.04065287, - -0.04703838, - 0.08061239, - -0.049766123, - -0.033253536, - -0.055540115, - -0.07769543, - -0.056468908, - -0.083602935, - 0.10859931, - 0.07422043, - 0.05042952, - -0.020899568, - 0.08022078, - 0.1058248, - -0.095979095, - -0.06545411, - -0.13271007, - -0.103949055, - 0.06393827, - -0.01353631, - -0.09944014, - -0.034478333, - -0.030738339, - 0.0075112707, - 0.06645742, - 0.1820248, - -0.09065749, - -0.076258495, - -0.08691761, - -0.024870973, - 0.027507212, - -0.043647233, - 0.07841149, - 0.028696164, - -0.059222747, - 8.4569585E-4, - 0.09761838, - -0.030255001, - 0.038489807, - 0.05589839, - 0.037384864, - -0.058818724, - 0.21297666, - -0.08541529, - 0.031060115, - 0.025635988, - 0.10654843, - 0.17515892, - 0.027612174, - 0.013012835, - -0.14170106, - -0.07368965, - 0.09514062, - -0.001693718, - 0.11320149, - 4.4273585E-4, - 0.022532886, - -0.121038035, - 0.029787693, - 0.040945884, - -0.106997535, - -0.047170628, - 0.031657193, - -0.11476561, - -0.12375906, - 0.020071207, - 0.07770853, - 0.15367329, - -0.0012115265, - -0.13712692, - 0.12735109, - -0.05409031, - -0.04327595, - -0.10946038, - -0.107447155, - 0.039373256, - -0.2098702, - -0.09789451, - 0.1366267, - -0.24597865, - 0.122565776, - 0.06852356, - 0.028858924, - 0.039089322, - 0.08469965, - 0.109361954, - -0.042294417, - -0.058985278, - -0.20878242, - -0.047717735, - 0.14376956, - 0.096612096, - -0.04471711, - -0.072189234, - -0.05279558, - 0.0778462, - -0.19977696, - -0.031008184, - 0.21723083, - 0.019725304, - -0.07785681, - 0.16530283, - 0.22795734, - 0.0061268974, - 0.018510615, - 0.08093854, - 0.0951501, - -0.017557159, - -0.111855865, - 0.08593216, - 0.0209839, - -0.19734614, - 0.019262828, - 0.11285513, - 0.05986102, - 0.06214673, - 0.0055232556, - -0.004513139, - -0.017209772, - -0.17788026, - 0.13497294, - 0.054790195, - 0.15125634, - -0.23034367, - -0.015135083, - -0.04318861, - -6.560453E-4, - 0.25013474, - 0.014238163, - 0.06865738, - -0.051501025, - -0.07785284, - -0.07806753, - -0.052824214, - 0.0073213694, - -0.13111506, - 0.15370876, - -0.09467108, - 0.06047548, - -0.060145345, - -0.04251371, - -0.036963217, - 0.06966232, - 0.038111247, - 0.11252031, - -0.154876, - 0.020309612, - -0.040084437, - -0.04118426, - 0.049451027, - 0.026655879, - -0.010884048, - 0.088605754, - -0.15537658, - -0.004903674, - 0.06652278, - 0.074540794, - -0.0019991882, - 0.027329564, - 0.12582546, - -0.11246747, - -0.016669368, - -0.10629855, - 0.008900842, - -0.022884987, - 0.024524558, - -0.10219589, - -0.012019146, - -0.09176631, - -0.08018841, - 0.14630286, - 0.0058852998, - 0.12953228, - 0.039826132, - -0.06957703, - -0.15356818, - 0.08851931, - 0.19224732, - 0.08615827, - -0.08368212, - -0.106067516, - 0.042069785, - -0.012955606, - -0.0064012315, - 0.012577599, - -0.10915651, - -0.057818066, - -0.1206079, - -0.11661597, - -0.032771796, - -0.06302734, - 0.01851776, - 0.0818923, - 0.055470303, - -0.11976648, - 0.01710045, - -0.049907304, - 0.11265354, - -0.08702922, - -0.01574082, - -0.057182744, - 0.014818324, - 0.016203724, - 0.039506003, - 0.01459455, - -0.09451236, - -0.053042118, - -0.07579688, - -0.0057480335, - -0.08686091, - -0.2072574, - -0.12510528, - -0.114418454, - 0.13569745, - -0.08714638, - 0.018266572, - -0.14615248, - 0.050957873, - 0.01775834, - 0.101223305, - -0.03243101, - -0.07389723, - 0.004742885, - -0.10074492, - -0.1360399, - 0.027929084, - 0.087442964, - -0.038997427, - -0.2367131, - -0.14127551, - -0.13171121, - -0.047655426, - 0.0566071, - 0.10220867, - -0.038849935, - -0.030392066, - -0.07969541, - 0.05936356, - 0.060083576, - -0.16090113, - 0.08545646, - 0.05635679, - 0.08113069, - -0.09724715, - 0.19349883, - 0.053410713, - -0.104615234, - 0.061163973, - 0.0125947, - -0.13337283, - 0.025821973, - -0.041314777, - -0.005134062, - -0.06254175, - -0.10609157, - -0.015027404, - 0.16515577, - 9.009307E-4, - -0.024874024, - -0.08773001, - -0.080149546, - -0.2763283, - 0.044275783, - 0.029011447, - -0.1284199, - 0.064967714, - 0.093145825, - 0.06759883, - 0.04589316, - -0.18731733, - -0.09914415, - -0.083650015, - 0.025257954, - -0.072865486, - -0.1121307, - 0.041891776, - -0.03632864, - -0.013501256, - 0.059223723, - 0.055581205, - 0.09533913, - 0.066534504, - 0.043345157, - -0.08675952, - -0.05591099, - 0.03787389, - -0.13715437, - -0.0041735484, - 0.03885855, - -0.036680587, - -0.22710012, - -0.048705515, - -0.07047206, - 0.20746735, - 0.111404814, - 0.0045378665, - -0.10501723, - 0.1544647, - 0.012509007, - 0.10128179, - -0.088739336, - 0.15245031, - -0.039089415, - 0.039426986, - 0.20314245, - 0.020114873, - 0.02095528, - 0.06966815, - -0.05565537, - -0.19787088, - 0.0787316, - -0.07098721, - -0.108821005, - 0.034951635, - 0.01626834, - -0.14734, - 0.0022952808, - 0.07686494, - -0.24393338, - -0.03600429, - -0.087165035, - 0.104406685, - 0.12374474, - -0.10701076, - -0.07925242, - -0.06714878, - 0.16182557, - 0.14857858, - -0.095658086, - -0.0711302, - 0.14133087, - 0.0029504348, - 0.070617475, - 0.025734512, - 0.05032801, - 0.0833859, - 0.16617607, - 0.12212592, - -0.06470189, - -0.093811095, - -0.044979762, - -0.0013415362, - -0.11305439, - -0.030261269, - -0.061742786, - 0.011779063, - -0.07347759, - 0.051715758, - -0.0053797923, - -0.028292535, - -0.11282165, - 0.060218092, - -0.056346674, - -0.1254217, - 0.022011913, - -0.10518209, - 0.05150343, - -0.0717863, - -0.2072032, - -0.0859627, - -0.028247261, - -0.033868488, - 0.030549323, - -0.022554595, - -0.15406932, - -0.04743416, - -0.2335948, - 0.008583803, - -0.0245642, - -0.018217675, - -0.026382988, - 0.12863907, - 0.07447591, - -0.024820236, - 0.26403698, - -0.009484095, - -0.055947464, - 0.15517339, - -0.011899882, - 0.012918416, - 0.022952378, - 0.069421954, - 0.063504666, - -0.15633976, - 0.08583899, - 0.025869811, - -0.176461, - 0.10548607, - -0.08738635, - -0.061867293, - -0.038544703, - -0.04157222, - 0.074628636, - -0.048567247, - -0.0051349998, - -0.25918594, - -0.031762134, - 0.22611135, - 0.12535429, - 0.022028722, - 0.06423874, - -0.012443603, - -0.059471652, - 0.076027684, - 0.0031517614, - -0.038270585, - 0.13726509, - 0.052589692, - -0.011350298, - -0.10841589, - -0.06329179, - 0.004666466, - -0.08512255, - -0.079615206, - -0.043796644, - 0.09552449, - 0.0051016454, - -0.031841796, - 0.04603382, - -0.1601529, - -8.528575E-4, - 0.14008446, - 0.118129335, - -0.009876842, - 0.0013168058, - 0.06842918, - -0.12273419, - 0.13896865, - 0.17519423, - 0.12564266, - -0.011164874, - 0.110936604, - 0.05208543, - 0.033492986, - -0.13398477, - 0.047493227, - 0.030806683, - 0.052790686, - -0.18692736, - 0.0973098, - -0.12485356, - -0.082034335, - 0.097083084, - -0.112583734, - -0.046453338, - 0.05774697, - 0.08917524, - -0.03599129, - -0.15289623, - 0.0795898, - -0.04137732, - -0.032163408, - -0.054258615, - 0.013961237, - -0.031886414, - 0.08637118, - 0.05646917, - 0.03725574, - -0.2365, - -0.101498544, - 0.13506256, - -0.026369037, - -0.21203957, - -0.03685822, - -0.053123783, - -0.04352462, - 0.0524315, - -0.07052161, - 0.14886233, - -0.035259712, - 0.054802235, - 0.036258493, - 0.06886025, - -0.04287623, - 0.05684708, - 0.11287456, - -0.13404913, - 0.098072335, - -0.0068020253, - -0.08788146, - 0.109670356, - 0.05729165, - -0.03518932, - 0.07767149, - 0.078247435, - 0.039788257, - -0.097817786, - 0.051782217, - -0.0629205, - -0.09393569, - -0.027420284, - -0.110674955, - 0.04079406, - 0.13291271, - 0.096180096, - 0.050096087, - -0.039147135, - 0.20780964, - 0.101439856, - 0.09182737, - 0.030068643, - 0.16186719, - 0.103129014, - 0.22809897, - -0.0010637797, - -0.010298595, - -0.03439196, - 0.09280128, - -0.12787543, - -0.18919569, - 0.09959319, - 0.0363209, - -0.21444055, - -0.2089886, - -0.1315415, - -0.052996308, - 0.19929226, - -0.14739546, - 0.07044343, - 0.11874208, - -0.040877704, - 0.1577514, - 0.040564857, - -0.14514357, - 0.2227124, - -0.01977896, - -0.086126134, - -0.058457006, - 0.021956619, - 0.12454011, - -0.14211674, - -0.046393096, - -0.10856071, - -0.013336241, - 0.0045542936, - 0.064732224, - -0.1902552, - -0.049851503, - -0.0760187, - 0.11244557, - -0.103544556, - -0.044329554, - 0.17484356, - -0.07911915, - 0.061314553, - 0.058557227, - 0.050004337, - 0.077731445, - 0.17167288, - -0.20375836, - -0.045599665, - 0.19995229, - 0.25542483, - 0.13313214, - -0.03828526, - -0.0062323203, - 0.039975744, - 0.08814381, - 0.0876958, - -0.18252222, - -0.015606178, - 0.10773088, - 0.054891225, - 0.122680746, - 0.025582936, - -0.13062806, - 0.053560145, - 0.08136211, - 0.102924794, - 0.014651623, - 0.045434758, - 0.07228585, - 0.0751036, - 0.0019077263, - -0.057861716, - 0.08607917, - 0.04763347, - -0.004219341, - -0.07586531, - -0.10374118, - 0.03118465, - 0.032276098, - 0.013736548, - -0.11267462, - -0.08710021, - 0.0060487264, - -0.04828216, - -0.05448535, - -0.22210057, - -0.085976064, - -0.19425282, - -0.1325654, - -0.025987964, - 0.10645701, - 0.06660788, - -0.0063787363, - -0.0099842595, - -0.0041971253, - -0.0065533053, - -0.037263595, - 0.030169658, - -0.038756672, - 0.06767593, - 0.080053814, - -0.15164062, - 0.009826475, - 0.15061559, - 0.0059479, - 0.055197835, - -0.03482823, - -0.03863971, - -0.0077339774, - -0.0666861, - 0.13701385, - 0.09611627, - -0.05861408, - -0.04713484, - 0.14640516, - -0.15402043, - -0.14392036, - -0.06329635, - 0.07819889, - 0.1643101, - -0.20229645, - -0.14742821, - 0.0037987246, - 0.08485207, - -0.07748334, - 0.074768245, - -0.091084845, - -0.012398042, - -0.03915592, - 0.16179822, - -0.11867091, - 0.039265994, - -0.030729776, - 0.06325226, - -0.10849157, - -0.14293617, - -0.10629507, - -0.14554092, - 0.016482254, - 0.014224752, - -0.05668104, - -0.046386957, - -0.09581712, - 0.04808041, - 0.033653866, - -0.1425911, - -0.09465096, - -5.596222E-4, - -0.017661786, - 0.049532328, - 0.04435448, - 0.03515577, - -0.040001255, - -0.053654995, - 9.2817005E-4, - 0.027514372, - -0.07398947, - -0.03171855, - -0.09945369, - 0.049784042, - -0.043871492, - 0.08605181, - 0.0074067106, - -0.0050135246, - -0.116173655, - -0.09414041, - 0.04445967, - -0.15685001, - -0.1425217, - 0.028963013, - 0.03888174, - 0.1900315, - -0.15236032, - -0.04103274, - -0.0783578, - 0.03267275, - -0.045205206, - -0.14687522, - -0.068425566, - -0.08914687, - -0.079578936, - 0.07140241, - 0.0888344, - 0.15859838, - 0.014362646, - 0.07947719, - 0.054859623, - 0.18561305, - -0.04831827, - -0.039590083, - 0.003179965, - -0.009037964, - 0.04277201, - 0.033419378, - 0.11783004, - -0.13657698, - -0.074535675, - 0.012762405, - -0.13549942, - 0.0084777335, - -0.008128423, - 0.080201894, - 0.143354, - -0.011328978, - -0.012675606, - 0.09463907, - -0.031431023, - 0.0022292621, - -0.13436055, - 0.18020578, - 0.1105997, - -0.0012713133, - 0.044587154, - 0.022679439, - -0.033842187, - -0.017528653, - 0.10751657, - -4.1937362E-4, - 0.1565628, - 0.025476936, - 0.068459645, - 0.16356973, - 0.132675, - -0.18677028, - -0.17573184, - 0.16493997, - -0.006898018, - 0.09759043, - -0.08197604, - -0.047474027, - 0.064342216, - -0.06220345, - 0.088329665, - 0.06527246, - -0.017523918, - -0.077278376, - 0.16472495, - -0.013230783, - -0.066698544, - -0.007706045, - 0.09902759, - -0.045540243, - 0.16573085, - -0.04198063, - 0.08211717, - -0.08894387, - -0.13535213, - -0.21364507, - 0.041113567, - 0.018826226, - 0.16988324, - 0.09028811, - -0.042176902, - 0.10352319, - -0.105398215, - -0.030352343, - -0.037143804, - -0.1266245, - 0.05590191, - -0.040185053, - -0.15325718, - 0.18166061, - 0.07519131, - -0.036104567, - -0.14107749, - -0.021968238, - -0.05942186, - 0.16076715, - -0.10195996, - 0.17489988, - 0.029641582, - -0.21009955, - 0.026104238, - 0.024494817, - 0.09961249, - -0.16196926, - 0.04246969, - -0.067424595, - -0.036691025, - 0.05999907, - 0.03993688, - -0.08331189, - -0.002951113, - -0.16448195, - -0.09970658, - 0.04182547, - -0.009424412, - 0.07259865, - -0.04498013, - -0.029301962, - 0.14985031, - -0.1890797, - 0.06729376, - -0.10163891, - -0.028850822, - 0.011136707, - 0.019233197, - 0.14485177, - 0.16540049, - 0.06348074, - 0.15285586, - -0.094153784, - 0.020928929, - 0.07332326, - 0.016526375, - 0.12868246, - -0.12797758, - 0.06699154, - 0.21249259, - 0.075825006, - -0.09190079, - 0.098618194, - 0.32286513, - -0.018670376, - -0.0021784059, - -0.06932628, - -0.0020749515, - -0.14567167, - -0.010171069, - -0.0041623483, - -0.10637971, - 0.015938498, - 0.036625084, - -0.101143606, - 0.018995583, - -0.10092681, - 0.03799765, - 0.086427815, - 0.071178295, - 0.048250597, - 0.0030482127, - -0.0339423, - -0.038282502, - -0.2729949, - 0.04409247, - -0.10915529, - -0.06699403, - 0.07770185, - 0.005667014, - -0.061421696, - -0.023168076, - 0.044383116, - -0.093164034, - 0.11002453, - 0.11841127, - -0.21784157, - 0.106413715, - -0.0089394655, - 0.032337192, - 0.020216506, - -0.06860246, - -0.14096782, - -8.135922E-4, - 0.0404754, - -0.049159165, - -0.0038707405, - -0.009738, - -0.07913374, - 0.023563594, - 0.028307697, - 0.0036810804, - -0.016924137, - -0.031212993, - 0.0033016517, - -0.022639371, - -0.11949434, - -0.022921927, - -0.01980409, - 0.013127173, - 0.13126881, - 0.20605524, - 0.01919274, - 0.080319345, - -0.07365994, - -0.028861312, - 0.099579886, - -0.13754037, - 0.0015674466, - 0.08558278, - -0.10707897, - -0.20419599, - -0.02528011, - -0.11149171, - -0.077178344, - 0.057132702, - 0.1305305, - -0.17764768, - 0.055012893, - -0.09828761, - -0.06919775, - -0.061489422, - 0.0989589, - 0.042738914, - 0.059918035, - -0.08193193, - -0.07105907, - -0.16154996, - 0.06804097, - 0.09621317, - -0.07038298, - -0.110030964, - 0.09636846, - 0.05494882, - -0.03705227, - 0.12646052, - -0.13840461, - -0.12789544, - 0.047494914, - -0.060323693, - -0.13638401, - 0.16363579, - -0.008675853, - 0.076028295, - -0.08238146, - -0.049780264, - -0.04281629, - -0.1599693, - -0.045229107, - -0.045563947, - -0.10964742, - -0.06123872, - 0.05664791, - 0.012508307, - -0.035943706, - -0.0637744, - -0.02791823, - -0.21426174, - -0.001316848, - 0.1199894, - -0.02529678, - -0.1117397, - -0.042364214, - 0.027085658, - 0.15681498, - -0.07757416, - 0.03610078, - -0.07455465, - -0.14774235, - -0.12356661, - -0.16201754, - -0.021682255, - -0.053870823, - 0.1430171, - -0.103282765, - -0.011342052, - -0.11347954, - 0.046522014, - 0.1022245, - -0.065955125, - -0.0057811476, - -0.09869951, - 0.054086793, - -0.048886612, - -0.059323408, - 0.0010013288, - -0.0069609447, - -0.056352604, - -0.002684706, - 0.10613527, - -0.03352459, - 0.052267652, - 0.09586114, - -0.025621401, - 0.10124047, - 0.16360463, - -0.026211753, - 0.023567503, - 0.07538244, - -0.09231577, - 0.053945743, - 0.047913857, - -0.21222253, - -0.0091749905, - -0.07824257, - -0.045904487, - 0.05092459, - 0.060762726, - -0.005214773, - 0.00927526, - 0.027050452, - -0.06872275, - 2.6339423E-4, - -0.0958048, - 0.01760384, - -0.05383924, - 0.009345072, - 0.21067482, - -0.0034297016, - 0.05421873, - -0.05829681, - -0.10477325, - -0.037244722, - 0.09521205, - -0.00554723, - 0.024212848, - 0.122211024, - 0.0031450624, - 0.1245655, - -0.004554669, - 0.01998291, - 0.031874143, - 0.030969502, - 0.10394286, - 0.12952904, - -0.01798574, - -0.021377215, - -0.10584277, - 0.30647966, - 0.023583172, - -0.023156269, - 0.09045495, - 0.004082904, - 0.037549715, - 0.065659896, - -0.043239158, - 0.043000903, - -0.14791712, - -0.048517596, - -0.07423577, - -0.042532817, - 0.100069754, - 0.21448809, - -0.16041076, - -0.06666208, - -0.20487209, - 0.060553975, - -0.07674448, - -0.06067959, - 0.1123718, - -0.050933175, - -0.05223956, - 0.037198715, - -0.1309964, - -0.03373929, - 0.017570732, - 0.033061374, - 0.21323922, - -0.018194105, - 0.16619581, - -0.093544565, - 0.011391079, - -0.062346797, - 0.03259317, - 0.15797421, - 0.01024353, - 0.04068635, - -0.11442422, - -0.11303347, - 0.06297017, - -0.090932354, - -0.13830987, - 0.11348943, - -0.0066279415, - -0.029581372, - 0.10024475, - -0.12631895, - 0.049950853, - -0.054327007, - -0.20580368, - -0.08855787, - 0.1270083, - -0.060265932, - 0.05469689, - 0.026599133, - 0.0065367236, - -0.016056713, - 0.10836649, - -0.10944134, - -0.0054373643, - -0.14300631, - 0.041422848, - 0.17598282, - 0.018797237, - 0.11501363, - -0.11296327, - 0.22731496, - 0.056963567, - -0.2025431, - 0.004524594, - -0.0100253895, - -0.15359755, - 0.07587515, - 0.028935406, - -0.11788478, - 0.18000329, - 0.14106654, - -0.07447898, - 0.08802948, - 0.007265256, - 0.025732622, - -0.09637182, - -0.0873832, - 0.14615412, - 0.101771556, - 0.20927882, - 0.019419527, - -0.020885253, - -0.1578038, - 0.18427828, - 0.13616925, - -0.04515508, - 0.04432444, - 0.010052262, - 0.03938914, - 0.12099138, - -0.016910044, - 0.09831444, - 0.034227215, - 0.15700015, - -0.09588135, - 0.14925371, - -0.012969604, - 0.0066337762, - -0.01578519, - -0.18866412, - -0.008149442, - 0.18670127, - -0.101235345, - 0.021355461, - -0.030530771, - -0.04735782, - -0.08596786, - 0.03717546, - -0.038536392, - 0.09548309, - 0.021428073, - -0.06296571, - 0.15761372, - 0.0915765, - -0.08648907, - 0.02051109, - -0.16178402, - -0.19087613, - 0.15365374, - -0.08991406, - 0.051766053, - -0.10991213, - 0.014067009, - 0.07821669, - 0.015969994, - 0.0996031, - -0.087369926, - 0.011423314, - -0.06304096, - -0.043895192, - 0.05713602, - -0.069766864, - -0.02476893, - 0.032069158, - 0.10038388, - 0.033097833, - 0.096239194, - -0.08093389, - 0.013223285, - 0.091826044, - -0.015863672, - 0.048588954, - 0.08483376, - 0.026666375, - -0.021745909, - -0.021793414, - 0.0011990173, - -0.112456106, - 0.033230282, - 0.16569062, - 0.011012029, - 0.0018156972, - 0.04694245, - -0.0878672, - 0.051036067, - 0.14288121, - -0.050356634, - 0.13982551, - 0.08913405, - -0.06086111, - 0.018378576, - -0.042134635, - -0.10216155, - 0.1440612, - -0.08352174, - 0.04202307, - 0.025038911, - 0.047470413, - 0.11095473, - -0.109941125, - 0.038117282, - -0.02364629, - -0.067045815, - -0.043401808, - 0.05964904, - 0.004583453, - 0.05083182, - 0.17881453, - -0.041418027, - -0.10302615, - 0.0011230074, - -0.058472667, - -0.14537191, - -0.07071677, - 0.006455797, - -0.061376303, - 0.076908804, - -0.13408296, - 0.028227724, - 0.01016276, - 0.08256312, - 0.02467911, - -0.046041332, - 2.5785412E-5, - 0.032772, - 0.08097379, - 0.003262767, - 0.06468325, - 0.07790288, - 0.005987385, - 0.016541133, - 0.008575989, - 0.13073248, - 0.09812252, - -0.0671399, - 0.07344778, - -0.030564666, - -0.113135844, - 9.4073126E-4, - 0.0853613, - 0.06689199, - 0.045596376, - -0.070951074, - -0.06475114, - -0.058863882, - -0.07516706, - 0.007269466, - 0.052674484, - 0.035092562, - 0.003414203, - 0.12764624, - -0.029298538, - -0.01754288, - -0.11022979, - -0.20450126, - 0.056894507, - -0.14680769, - 0.049036633, - 0.078446895, - -0.07830213, - -0.028373236, - 0.017332071, - -0.040000565, - 0.023851013, - -0.0922763, - 0.11106297, - 0.08454179, - -0.074447945, - 0.05798581, - 0.10291007, - -0.05768901, - -0.059132542, - -0.15365455, - 0.10762617, - 0.0693074, - 0.04958254, - -0.10054171, - -0.1219159, - -0.124579966, - -0.009610144, - -0.09630066, - 0.018178554, - -0.1594339, - 0.07329509, - -0.22263882, - 0.07754282, - -0.098573655, - 0.00852115, - -0.07323935, - 0.09663739, - 0.069151804, - 0.021388147, - 0.21150316, - 0.045428902, - 0.113573015, - -0.02558721, - -0.074956596, - -0.13494569, - 0.10476184, - -0.09416673, - 0.108765416, - -0.084739305, - -0.02746547, - -0.19528885, - -0.0073512085, - 0.060681224, - 0.14818269, - -0.0036819149, - -0.11659478, - 0.017991934, - -0.037816, - -0.026083218, - 0.040342446, - 0.0027176426, - 0.03344548, - 0.11000309, - -0.06421843, - -0.02045545, - -0.101198316, - -0.040583644, - 0.05991773, - 0.3834107, - -0.08698653, - -0.10508486, - -0.1034681, - 0.061287176, - -0.011898171, - 0.2040935, - -0.08269705, - -0.11117444, - -0.10099507, - 0.18183987, - 0.031371154, - 0.10776139, - -0.06133996, - 0.07953673, - 0.011206619, - -0.005891294, - -0.058395986, - -0.033984687, - -0.035482544, - -0.06705252, - 0.016020201, - 0.042114623, - 0.0066427197, - 0.06972923, - -0.044870727, - 0.0817061, - 0.067737326, - -0.053262655, - 0.042318135, - -0.07332805, - 0.041163158, - -0.33137348, - 0.09032883, - -0.13878027, - -0.046164334, - -0.1646684, - 0.08088352, - 0.1438139, - -0.11589801, - -0.14316803, - -0.058690418, - -0.16643901, - 4.3679803E-4, - -0.028743967, - -0.0464669, - -0.10435328, - 0.059661616, - -0.03139143, - -0.029549673, - -0.03819901, - -0.07289482, - -0.17123237, - -0.06573737, - 0.19058703, - 0.08891296, - 0.100405835, - -0.054910194, - -0.077563, - -0.17221011, - -0.13939166, - 0.041710984, - 0.029222744, - 0.072962664, - -0.067249075, - 0.19341172, - 0.07711965, - -0.03540974, - 0.0027851288, - -0.13818681, - -0.0077139228, - -0.002189518, - -0.049403306, - -0.029857071, - -0.09430102, - 0.029838445, - 0.06336967, - -0.15761603, - 0.040214688, - -0.13818729, - -0.111822076, - 0.10001344, - 0.12296228, - -0.027673416, - -0.05706622, - -0.0043977043, - -0.090043634, - 0.07213913, - -0.05053471, - 0.15011306, - -0.20801713, - -0.008226672, - -0.14154822, - -0.006230363, - -0.14774288, - -0.1367598, - 0.0065264474, - -0.053778384, - -0.029866716, - -0.14157163, - -0.019736484, - -0.003643147, - 0.0029661246, - -0.12646513, - 0.010795678, - 0.010503849, - -0.127465, - 0.054111794, - 0.119620375, - -0.0029138736, - 0.08689976, - 0.024352677, - 0.11525534, - 0.17520647, - -0.13506897, - -0.03439153, - -0.103580385, - -0.058168788, - 0.12441429, - 0.04513777, - -0.26866603, - 0.028260758, - -0.08729878, - 0.15338829, - 0.021351468, - 0.09555845, - -0.074240215, - -0.08603761, - 0.07656973, - -0.08788717, - 0.01896262, - -0.06436223, - 0.13260539, - 0.16689375, - -0.12141016, - 0.11369684, - -0.13543037, - -5.835318E-4, - -0.03929951, - 0.20842323, - -0.07751718, - 0.095175296, - 0.006620174, - 0.05814931, - -0.012896839, - 0.036315158, - 0.1050913, - 0.24965447, - -0.13525708, - 0.02746362, - 0.10500286, - -0.08774608, - -0.0955513, - 4.4014864E-4, - -0.09515788, - 0.079783134, - 0.0785378, - 0.046406597, - 0.051882114, - 0.033131473, - 0.14345692, - -0.07262854, - 0.030976534, - 0.06855069, - 0.018471854, - 0.08785586, - 0.07583282, - 0.110537395, - -0.11692606, - -0.06713241, - -0.004765834, - 0.036052465, - -0.109784454, - -0.019781582, - -0.09670534, - 0.00958136, - 0.048148327, - 0.042459335, - 0.07910617, - 0.023296028, - -0.028890595, - 0.052115556, - -0.005498112, - 0.060626492, - 0.09440164, - -0.015655858, - 0.22393192, - -0.14174601, - 0.032279983, - -0.13645852, - 0.18376829, - 0.025302611, - -0.17878635, - 0.0129812285, - 0.21694003, - 0.056370065, - 0.013440632, - 0.06412445, - -0.00839798, - -0.055295575, - -0.021791482, - -0.1770885, - 0.08222758, - 0.024276737, - 0.1594648, - -0.09550734, - -0.050459728, - -0.09924805, - 0.046927348, - -0.23519012, - -0.08374071, - -0.06511456, - -0.12634978, - -0.093886435, - -0.028197473, - 0.0453381, - -0.12328942, - -0.042944416, - 0.005189808, - -0.0055138804, - 0.122205436, - 0.13479555, - -0.023685193, - -0.005450339, - -0.07217615, - -0.015443066, - 0.02829665, - -0.0022878873, - -0.009705387, - -0.027086113, - 0.1831302, - -0.105475634, - -0.013499888, - -0.18242534, - -0.09047462, - 0.05794578, - -0.058387883, - 0.07977536, - -0.0059125624, - -0.035454545, - -0.057225686, - 0.05762839, - -0.103981294, - -0.115292154, - -0.058968704, - 0.003434823, - -0.02163062, - -0.07916638, - -0.035967886, - 0.04869256, - -0.17932796, - 0.1347894, - 0.13580999, - -0.020178521, - 0.049664125, - -0.10169015, - -0.0065900125, - 0.09070146, - 0.050676893, - 5.8526173E-4, - 0.09781714, - -0.21247953, - 0.00598501, - 0.0067967963, - -0.060114857, - 0.04431689, - -0.07710268, - 0.12167611, - 0.15358545, - 0.17000283, - 0.0038276766, - -0.12782305, - -0.061711792, - 0.008232526, - -0.044402305, - -0.16786808, - 0.07849035, - 0.04969955, - -0.16073842, - -0.103604674, - -0.033427574, - 0.07989903, - -0.013780675, - -0.045629688, - 0.07773366, - 0.08009122, - 0.0739643, - -0.007720582, - -0.0084480345, - -0.004655485, - -0.026772054, - -0.18505232, - 0.12631887, - -0.034724727, - 0.18157923, - 0.07570624, - 0.041771773, - 0.1314381, - 0.060835518, - 0.096235685, - -0.004475881, - 0.14799704 - ], - "features2" : [ - 0.06294444, - 0.050797526, - -0.04686093, - -0.08124234, - 0.057093475, - 0.028477594, - 0.022358103, - -0.14792474, - -0.048650622, - -0.17501079, - 0.10765594, - -0.068251014, - 0.15971552, - 0.07831556, - -0.18702224, - 0.08561732, - -0.015854867, - 0.018644672, - 0.01601121, - 0.043029755, - -0.05811115, - 0.05386856, - -0.044350315, - -0.02811642, - -0.05337134, - 0.09432342, - 0.14211151, - -0.020576548, - -0.049458276, - 0.13322745, - 0.019220134, - 0.047071364, - -0.17129838, - 0.11046665, - 0.004265594, - 0.02185234, - 0.052175496, - -0.022338726, - -0.113357656, - -0.072217956, - -0.02690022, - -0.12072812, - -0.015095748, - -0.0454871, - 0.015453351, - -0.04743885, - 0.034048583, - -0.010187704, - -2.6433764E-4, - 0.002545004, - 0.0011047616, - 0.14654957, - -0.03807381, - -0.056311212, - 0.15819682, - 0.093154006, - 0.07509451, - -0.11431866, - -0.14650011, - -0.016693963, - -0.100722514, - 0.08054929, - 0.038980484, - 0.12409366, - 0.009093533, - -0.022453273, - -0.03655397, - -0.13279237, - -0.16707699, - 0.16954003, - 0.053819768, - -0.108525954, - 0.19860056, - -0.009794307, - -0.044560686, - 0.060691748, - -0.019831872, - -0.14910914, - -0.12171898, - -0.026962562, - -0.04070713, - 0.040248185, - 0.011993911, - 0.08938681, - 0.15270694, - 0.09201578, - -0.15308295, - -0.08418719, - 0.08652618, - 0.16872084, - -0.059244175, - -0.012805032, - 0.11970867, - -0.13601941, - 0.085939094, - -0.06592738, - -0.06660187, - 0.03774951, - -0.045561615, - 0.10777398, - 0.07978455, - 0.027745508, - -0.075078964, - 0.09655068, - 0.13064264, - 0.0862784, - -0.15281604, - 0.21502572, - 0.08159982, - 0.08314332, - -0.018860936, - 0.123945475, - -0.021489238, - 0.025741221, - -0.11359321, - 0.10008911, - -0.010823506, - -0.06247721, - 0.064813204, - 0.06543364, - -0.1206275, - 0.05599418, - 0.12790337, - -0.036373444, - -0.061119605, - -0.10604392, - 0.10682733, - -0.12982902, - -0.07618893, - -0.0064715575, - -0.07984999, - -0.113377236, - 0.018179474, - 0.034784093, - -0.068025716, - -0.021756118, - 0.011702668, - 0.14310718, - -0.24844392, - -0.15219574, - 0.0252201, - 0.13769543, - -7.061681E-5, - -0.079616085, - -0.14115483, - 0.017617578, - 0.0140422825, - -0.17734727, - -0.056798216, - 0.12085035, - -0.07566561, - 0.062999256, - 0.068268314, - -0.08015649, - 0.09571066, - -0.0073381877, - -0.053494524, - -0.03974305, - -0.025048481, - 0.08699728, - 0.041665126, - 0.015237022, - -0.07362507, - 0.015349925, - 0.002757027, - -0.16791686, - -0.15728858, - 0.011673002, - -0.033644702, - -0.19437513, - -0.06847188, - -0.12994872, - 0.03262421, - 0.11280548, - -0.030076206, - 0.03196902, - 2.5292323E-4, - -0.12775557, - 0.1535428, - 0.14636977, - -0.039796673, - 0.13784567, - 0.12694585, - -0.039303306, - 0.008771031, - -0.11713086, - 0.0016324995, - 0.03554967, - 0.0034159522, - -0.07426239, - 0.041591648, - -0.03062976, - 0.1457183, - 0.008263721, - -0.112297215, - 0.015981363, - -0.067602426, - -0.045977406, - -0.014699033, - 0.06870764, - -0.03473308, - -0.19728415, - -0.076472886, - -0.0045249155, - -0.0736548, - -0.060604513, - 0.15208587, - 0.012431319, - -0.0060589705, - 0.12548198, - 0.08266538, - 0.062647104, - -0.03153447, - 0.08330843, - 0.046772603, - -0.06402492, - -0.06060442, - -0.040274624, - -0.013985829, - 0.15119387, - -0.0372881, - -0.08060377, - 0.09405289, - 0.20405836, - -0.19142064, - 0.04371503, - -0.09528872, - -0.011648882, - -0.04687771, - -0.06881092, - 0.032399643, - 0.07174121, - 0.028739357, - 0.07882832, - -0.054543495, - 0.0791738, - 0.042145874, - 0.003562259, - 0.14930111, - 0.0389595, - 0.0434072, - -0.09840093, - -0.091431566, - -0.06387921, - -0.053142853, - 0.0758293, - -0.05939171, - -0.07480665, - 0.05068476, - -0.111946404, - -0.11662976, - 0.0926646, - -0.0055324817, - -0.08998005, - 0.039601095, - 0.03914702, - -0.09012297, - -0.023921253, - 0.17530337, - -0.00661504, - -0.036992915, - -0.070676774, - 0.0056773573, - -0.06196234, - 0.049216963, - 0.049379252, - 0.14352335, - 0.021725673, - -0.119208135, - -0.08877217, - -0.070723206, - 0.1682194, - -0.17092559, - 0.02196975, - 0.06675522, - -0.023628648, - -0.15377119, - 0.05730728, - 0.012650247, - -0.014981687, - 0.15308097, - -0.01733179, - -0.14713305, - 0.052652128, - 0.10686257, - 0.08823448, - 0.019199722, - 0.08044237, - -0.12909211, - 0.032906987, - -0.013290004, - 0.04992559, - 0.053832646, - -0.099802375, - 0.122122064, - 0.058664218, - 0.012773301, - -0.09595762, - 0.060685027, - 0.00936706, - -0.049748495, - -0.006998134, - -0.022967523, - -0.15295692, - 0.063520476, - 0.018221006, - -0.17189743, - 0.02373691, - 0.06408772, - -0.06669503, - 0.02644841, - 0.01261376, - -0.15454596, - 0.14453572, - -0.17833215, - -0.003951732, - -0.10820493, - -0.035956766, - 0.044779252, - 0.06419059, - 0.06310382, - -0.011203284, - 0.20237759, - 0.024875073, - 0.1210579, - 0.102154285, - 0.00374631, - 0.11762087, - -0.09981983, - -0.027950468, - -0.052370466, - 0.08756061, - -0.16608626, - 0.1827256, - 0.011055093, - 0.017727729, - 0.09745821, - 0.10305735, - 0.021686716, - 0.03731275, - 0.08579615, - 0.0664484, - -0.13998953, - -0.01859978, - -9.094877E-5, - 0.06480933, - -0.024296131, - -0.012673369, - -0.0069564413, - -0.022685643, - 0.12841517, - -0.08272058, - -0.020196421, - -0.17747223, - 0.046979547, - -0.21712898, - 0.014368575, - -0.05369979, - -0.1384034, - -0.09204916, - -0.11215279, - 0.029802231, - -0.058105387, - -0.017131329, - -0.18665305, - 0.10098053, - -0.060245175, - -0.1137766, - 0.0469191, - -0.065269426, - -0.009877546, - -0.13314092, - 0.07633004, - 0.11416037, - 0.09460856, - 0.007036314, - 0.1301236, - -0.09208639, - -0.05774516, - -0.06170019, - -0.02581235, - -0.14359652, - -0.03370648, - 0.109953865, - 0.08447862, - 0.03632131, - 0.09523214, - -0.036970615, - -0.09156668, - 0.03962324, - 0.061705578, - -0.05300161, - -0.042704906, - -0.07010708, - 0.03896315, - 0.047938216, - 0.089402005, - -0.019862149, - -0.020712927, - 0.0889198, - -0.010017622, - -0.06473806, - 0.10035844, - -0.010178046, - -0.050535493, - -0.13731164, - 0.14248672, - 0.033724055, - -0.06876116, - -0.10425352, - 0.02012628, - -0.04011164, - 0.025860766, - 0.01972536, - 0.077297546, - 0.082723424, - 0.00854806, - -0.17321283, - 0.034625642, - -0.15357482, - -0.059946716, - -0.07214402, - 0.13342284, - 0.03977193, - 0.036637828, - 0.14007416, - 0.016131524, - 0.030053103, - -0.03459073, - 0.018613458, - -0.21504623, - -0.12366069, - -0.0362674, - 0.08560871, - 0.06572092, - -0.039528195, - 0.034686796, - -0.084558845, - -0.1433431, - 0.16598706, - 0.08260568, - 0.027234295, - 0.012858358, - 0.08296694, - 0.11019982, - 0.0904045, - 0.053897403, - 0.05158995, - -0.11412848, - -0.005614953, - -0.1304904, - 0.062105343, - 0.017234618, - 0.109117344, - 0.012313662, - 0.052638095, - 0.15170476, - 0.059347566, - 0.085407205, - 0.080576524, - -0.014542579, - 0.049113315, - 0.043602873, - -3.7148548E-4, - 0.0986502, - 0.019739827, - 0.024656631, - -0.18748213, - -0.0024618427, - -0.04906541, - -0.0086649805, - 0.108635835, - 0.17500477, - -0.065237984, - -0.17349005, - 0.019514123, - -0.18663082, - 0.023517413, - 0.07388628, - -0.18201205, - -0.08222988, - -0.1100824, - 0.11290056, - 0.047071137, - -0.023998028, - 0.042943574, - -0.0068304054, - 0.18359767, - 0.08392763, - -0.01821557, - -0.124208875, - -0.069005504, - 0.12565087, - 0.075048156, - 0.22120178, - -0.21539058, - -0.016036376, - -0.017612416, - 0.06011933, - 0.08525169, - -0.10072758, - 0.095828064, - -0.14749588, - 0.04783763, - -0.104236744, - -0.12387914, - -0.013204621, - 0.06767617, - 0.09775637, - 0.09181058, - -0.17107046, - 0.14637528, - 0.25039357, - -0.14168572, - 0.036578164, - -0.013997157, - 0.123378076, - -0.098181054, - 0.03278467, - -0.26322788, - -0.18125527, - -0.055820014, - -0.04964648, - 0.15342253, - 0.09040469, - -0.010921797, - 0.0024415478, - -0.20012252, - -0.15893075, - 0.014594726, - 0.10368182, - -0.05904143, - 0.07185579, - -0.06993798, - -0.17511001, - 0.13213831, - -0.14013684, - -0.045000583, - -0.02016465, - -0.11509396, - 0.16533364, - 0.14777291, - -0.021082522, - -0.08883991, - 0.013073383, - 0.105593994, - 0.0048701805, - 0.005226178, - -0.019410253, - 0.0064822882, - 0.1106498, - 0.010160828, - 0.008762799, - -0.024237536, - -0.0132485945, - 0.11259222, - -0.002475821, - 0.073527634, - 0.19652706, - 0.08249212, - 0.08769332, - 0.102716096, - -0.08223588, - -0.09634424, - 0.044061445, - 0.09393542, - -0.046153646, - -0.030062802, - 0.058102157, - 0.001021017, - 0.07844236, - -0.050688904, - -0.08754406, - -0.017953983, - -0.024171298, - -0.10678158, - 0.08933903, - -0.056873366, - 0.023898782, - 0.03108088, - 0.0014599282, - -0.14664416, - 0.04410332, - 0.018869512, - -0.0061432123, - 0.09747517, - 0.048054703, - 0.13552155, - -0.046777714, - -0.0753879, - -0.032087192, - -0.02513194, - -0.11769793, - 0.012119963, - -0.007943897, - 0.072022945, - 0.019350795, - 0.059600208, - 0.3046209, - -0.18141334, - 0.035082016, - -0.0013117227, - 0.0918443, - 0.036577214, - -0.03756111, - -0.018147426, - -0.13822131, - 0.018299809, - 0.18560809, - -0.030263476, - -0.015258761, - -0.076160915, - -0.05478509, - -0.104129955, - 0.11425812, - 0.04345312, - 0.03519393, - 0.041515823, - -0.036345392, - 0.06510755, - -0.096850276, - -0.04118491, - 0.114728644, - -0.050131373, - 0.08399009, - 0.065243766, - 0.09468776, - 0.21126963, - -0.075336486, - 0.028648764, - -0.050559133, - 0.05686483, - 0.013599226, - 0.029774044, - 0.10518525, - -0.080573656, - 0.11226944, - -0.020761728, - 0.024050733, - -0.051187143, - -0.0011903683, - -0.006367775, - -0.21273045, - -0.09525983, - 0.20133026, - 0.06818879, - -0.032041833, - -0.035549074, - -0.00665463, - 0.09909116, - 0.036076415, - 0.086336724, - 0.13644569, - 0.083886385, - -0.021150451, - 0.06352487, - 0.038030103, - 0.0154097015, - -0.10442105, - -0.18201822, - 0.0077041183, - 0.07914424, - -0.018111078, - -0.013104192, - 0.14703989, - -0.017533619, - -0.055797365, - -0.16908424, - 0.09802945, - 0.07136617, - -0.088866174, - 0.2575792, - -0.0029190918, - 0.18333292, - 0.0026352345, - -0.047010627, - 0.0094986595, - 0.032904968, - -0.041581813, - -0.18824738, - 0.2135796, - -0.091187865, - -0.045960933, - 0.021849599, - 0.026921693, - 0.07392798, - 0.040477436, - -0.010863646, - -0.00701099, - -0.09234464, - -0.0828205, - 0.07677804, - -0.004930605, - -0.08102443, - 0.0023917165, - -0.06090828, - -0.08486723, - 0.025130244, - -0.031999428, - -0.19848582, - 0.09480386, - 0.045020882, - 0.034925707, - 0.026321363, - -0.022978252, - 0.04650165, - 0.100361586, - 0.049998917, - 0.08141425, - 0.009605826, - -0.018077971, - 0.010200951, - -0.048883405, - 0.05461659, - 0.12762097, - -0.057834335, - -0.09675025, - 0.044410437, - 0.017329402, - 0.009436535, - -0.078704014, - -0.14838137, - -0.14466156, - 0.0554963, - 0.06718056, - 0.1544054, - 0.19149686, - 0.027471893, - -0.038411755, - -0.010103568, - -0.08935374, - 0.09514833, - -0.2921173, - 0.1329872, - -0.012956154, - 0.050703462, - -0.06505783, - 0.07158156, - 0.019421566, - -0.025044471, - -0.1268576, - -0.021448899, - -0.08811884, - -0.12716836, - 0.0038324343, - 0.112796046, - -0.0128283845, - 0.14183122, - -0.06510664, - -0.17183682, - 0.053891018, - -0.15643223, - 0.008132702, - 0.09359223, - 0.06302644, - -0.029884705, - 0.07725801, - -4.909432E-4, - -0.02550565, - 0.0043060896, - 0.0010972171, - -0.13326842, - -0.1084526, - 0.06408507, - 0.04741079, - -0.17702475, - -0.08909005, - 0.10557897, - 0.15142468, - 0.013082184, - 0.028021468, - 0.022803213, - -0.115915254, - -0.09743169, - -0.04338506, - 0.09419361, - 0.055656485, - -0.044965602, - -0.054722264, - -0.0059617544, - 0.06636205, - -0.033819124, - -0.046141807, - 0.004280075, - 0.1651016, - -0.05926152, - 0.024897547, - -0.17762007, - 0.06804167, - -0.0722436, - -0.03992938, - -0.044326637, - -0.03595941, - 0.14405012, - -0.15505277, - -0.029219002, - 7.2242506E-4, - -0.062005483, - -0.074085765, - 0.03868571, - -0.071846806, - 0.040519297, - -0.026719421, - 0.14976722, - -0.05215951, - -0.040632505, - 0.0062640905, - -0.08419188, - 0.03805528, - 0.04394824, - -0.065783255, - -0.08362424, - 0.022350302, - 0.10184903, - -0.0029503554, - 0.0046087843, - 0.024008986, - 0.041101016, - 0.08045957, - -0.08248437, - 0.0146994125, - -0.1994955, - 0.071570605, - 0.02927698, - -0.21923782, - -0.10797088, - -0.07518238, - -0.112978876, - 0.22232725, - 0.15194833, - -0.0025985008, - -0.041880682, - -0.04732387, - -0.09866379, - -0.098984525, - -0.046181217, - 0.052709237, - -0.14934112, - -0.03832772, - -0.044103965, - 0.09254891, - -0.020353504, - 0.035162047, - 0.0075241975, - -0.028717306, - -0.056646, - -0.017712522, - -0.16729039, - 0.057274327, - 5.3091673E-4, - -0.121078186, - -0.1473211, - 0.046394337, - -0.099000655, - -0.07580025, - 0.06137442, - -0.07565463, - 0.039261762, - -0.088000104, - -0.11377881, - -0.069749855, - -0.1112095, - -0.07702252, - 0.051215716, - -0.10560824, - -0.0820259, - 0.06486837, - 0.09188165, - -0.06852148, - -0.10964645, - -0.2013824, - -0.16162759, - -0.07200496, - 0.060710635, - -0.0058175325, - 0.20101118, - -0.029334357, - 0.024582129, - 0.093014546, - 0.069576874, - 0.014426393, - 0.075608335, - -0.04051299, - 0.031070149, - -0.0738886, - -0.020988753, - 0.05897716, - -0.046207253, - 0.02891942, - 0.010584531, - 0.052788787, - -0.12716869, - 0.039762214, - 0.16085269, - 0.08288301, - -0.18612534, - -0.005489134, - -0.04361854, - -0.07905647, - -0.034440015, - -0.121195175, - 0.0512779, - 0.041588135, - -0.013697245, - -0.13906017, - 0.060344417, - -0.0045048185, - -0.05101234, - 0.1930539, - 0.071797885, - -0.018480696, - 0.04388452, - -0.05011012, - -0.1740989, - 0.0464633, - 0.03077609, - 0.07489691, - -0.3653115, - -0.08224014, - -0.07394326, - -0.042544525, - -0.15536398, - -0.08736996, - 0.091410205, - -0.024549216, - 0.080023, - -0.12848301, - 0.16627982, - 0.10906411, - 0.14283183, - 0.09498894, - -0.21252975, - -0.081161946, - 0.020894371, - -0.020140983, - 0.09688097, - 0.19456941, - -0.23415218, - -0.23926559, - 0.11111262, - -0.06278977, - -0.01766583, - 0.016988877, - -0.030228041, - -0.14610866, - -0.08782635, - -0.05528798, - -0.019019814, - 0.06923557, - 0.100221336, - -0.019609435, - 0.025006503, - -0.004203876, - -0.026445918, - -0.004145463, - -0.075273424, - -0.043114576, - 0.04883401, - -0.09509739, - -0.16779605, - 0.009460117, - -0.00215422, - 0.12351901, - 0.011126006, - -0.10035592, - 0.051747125, - -0.061901167, - 0.10144925, - 0.00929028, - 0.2273684, - -0.02419589, - -0.112971246, - 0.072498485, - 0.041219544, - -0.061838478, - -0.002986108, - 0.036906052, - -0.0018683732, - 0.033600375, - 0.026681753, - 0.1364819, - 0.008138397, - -0.023329152, - -0.011564653, - 0.098447576, - 0.0025674806, - 0.018078696, - 0.082941696, - 0.015758745, - -0.27486655, - 0.13047932, - 0.07159695, - -0.038080744, - 0.043111615, - -0.003960829, - -0.0041037216, - -0.14125438, - -0.07879779, - -0.1660385, - 0.06600362, - -0.06901978, - -0.22085725, - 0.10131437, - 0.0634444, - -0.048413485, - -0.0030751314, - 0.014573951, - -0.031185078, - -0.08129605, - 0.11918601, - -0.084165275, - 0.03545489, - 0.17386204, - -0.048263934, - -0.10549899, - -0.02477034, - -0.005682718, - 0.008937888, - 0.097628884, - -0.04749422, - 0.24120887, - -0.10946254, - 0.012080712, - -0.05200244, - 0.027834546, - -0.04254619, - -0.07349556, - 0.035453398, - -0.033962686, - 0.060040113, - 0.123115964, - -0.07613904, - -0.029798897, - -0.010110166, - -0.20297042, - -0.04238013, - -0.15979388, - 0.0028823386, - -0.16631243, - 0.018040543, - 0.15965484, - 0.015762726, - 0.028919809, - -0.21626174, - 0.007978515, - 0.11276154, - -0.10301343, - 0.06927704, - -0.10319087, - -0.105703816, - 0.0013286606, - -0.10624553, - -0.16249621, - 0.05813263, - 0.04154166, - -0.08590693, - -0.060056917, - 0.060148403, - -0.018598579, - -0.16977297, - 0.034177452, - 0.051625505, - -0.08406283, - 0.10365628, - 0.014728533, - -0.070047386, - 0.024576964, - 0.18716927, - 0.001024045, - 0.12608193, - 0.09310116, - -0.025118606, - -0.05775173, - 0.1131098, - 0.015769536, - 0.1526464, - 0.05777735, - -0.041550178, - 0.10526364, - -0.07946964, - 0.080043964, - -0.08792102, - -0.034864623, - -0.1378183, - 0.10479947, - 0.29898715, - 0.05356742, - 0.122792184, - 0.059132922, - 0.013786003, - 0.011317567, - -0.060434118, - 0.11095504, - 0.03989079, - -0.10599071, - -0.13195263, - -0.08803416, - -0.04091552, - 0.070946544, - -0.07107433, - 0.06493257, - -0.030118836, - -0.03084895, - -0.043869432, - -0.14179705, - 0.030635888, - -0.007545445, - -0.105229214, - -0.07653645, - 0.13440457, - 0.1339588, - -0.11108581, - -0.11748345, - -0.06788875, - 0.011984328, - -0.03652429, - 0.038419604, - 0.012059515, - 0.040639717, - -0.04222627, - -0.035923693, - -0.010173856, - 0.09485086, - -0.19281897, - 3.6682095E-4, - 0.0014455274, - -0.0011842372, - 0.10238998, - 0.09352178, - -0.12011032, - 0.015144664, - -0.00863128, - 0.014408929, - 0.066481225, - 0.03746052, - -0.10121822, - -0.10892604, - -0.19161078, - 0.06623674, - 0.037686974, - 0.03257232, - -0.014979738, - -0.008273604, - -0.043765385, - 0.06814877, - -0.1851313, - -0.16479312, - 0.16359772, - 0.063591, - 0.11081986, - -0.062411655, - -0.020301502, - -0.24355601, - -0.029848253, - -0.13498122, - -0.06424753, - 0.24647464, - -0.094628625, - -0.0034799385, - -8.338131E-4, - 0.068670906, - 0.014206398, - 0.023296341, - -0.1104834, - 0.17904639, - 0.046299785, - -0.037651494, - -0.12436272, - 0.12274915, - -0.14532278, - -0.0272432, - 0.10372499, - 0.2181575, - 0.10446274, - -0.02225811, - 0.0112398295, - 0.11794083, - -0.08199067, - -0.012568582, - -0.12736002, - 0.007608178, - 0.092240006, - -0.11476504, - -0.10695366, - 0.035474807, - 0.053319838, - -0.049535837, - -0.11756057, - 0.093162075, - 0.028673984, - 0.06744508, - -0.06354765, - 0.108239986, - -0.054232746, - 0.033813268, - -0.059431028, - -1.75858E-5, - -0.044641446, - 0.2459339, - -0.08465609, - 0.06373514, - -0.052107025, - -0.1063164, - 0.1758679, - 0.022652358, - -0.14079909, - -0.03272741, - -0.052345857, - -0.08347545, - -0.14889279, - 0.16431019, - 0.03668926, - 0.059463784, - -0.06373753, - 0.030702535, - -0.0696202, - 0.15514371, - 0.09170901, - -0.060630288, - -0.023022618, - 0.10655217, - 0.08133297, - 0.024336688, - -0.13362065, - 0.09163015, - 0.06633221, - -0.028349945, - -0.09941132, - 0.16697775, - -0.0990394, - -0.1513922, - -0.1195981, - 0.06813308, - -0.12545031, - 0.22150943, - 0.031011121, - 0.065109834, - -0.038070325, - 0.11469317, - 0.10592772, - -0.029211693, - 0.15561341, - 0.14667024, - -0.19752097, - -0.0023006871, - -0.13813783, - 0.01715032, - 0.08226492, - -0.1384076, - 0.055679083, - 0.09822349, - -0.05018623, - -0.048824646, - -0.13820326, - 0.016834263, - -0.06525655, - 0.11662892, - 0.024357665, - 0.017188553, - 0.0386396, - 0.17821853, - -0.08259963, - 0.048751697, - 0.2143843, - -0.019930333, - -0.14536037, - 0.01592077, - 0.07040483, - -0.009898689, - 0.13927189, - -0.06227852, - -0.012557324, - -0.04454197, - 7.4938964E-4, - 0.1031815, - -0.03749186, - -0.074680485, - 0.021875829, - 0.14757878, - -0.028620329, - -0.08272939, - 0.06192869, - -0.004177508, - 0.10297067, - 0.15747249, - 0.023256574, - -0.0029156744, - 0.00645758, - 0.15279664, - 0.08564886, - 0.096138224, - 0.15780473, - -0.043193217, - -0.030077606, - -0.11577151, - 0.10338858, - 0.044103563, - 0.16434519, - -0.092029914, - -0.14254503, - 0.10625148, - -0.10711299, - 0.063524485, - -0.18312182, - 0.011631368, - 0.06300044, - 0.1029281, - 0.19821537, - -0.019629199, - -0.005487387, - -0.05395987, - 0.0071663437, - -0.019751772, - -0.19040821, - 0.00845721, - 0.13192798, - 0.06199049, - -0.20067355, - -0.12955502, - 0.06972938, - 0.06063353, - -0.019249147, - 0.13668567, - -0.112365805, - 0.16355965, - -0.05472269, - 0.04010553, - 0.029654805, - 0.022510827, - -0.046680987, - 0.1615316, - -0.0030364124, - 0.08243184, - 0.10515232, - -0.021183886, - -0.028053032, - 0.0033721526, - -0.24432905, - 0.029033573, - -0.03815874, - -0.031931803, - -0.12386729, - 0.012113685, - -0.08607223, - 0.07438371, - -0.055471607, - -0.0044055814, - 0.07517357, - -0.02752814, - -0.13483177, - -0.023439324, - -0.057249237, - -0.05042488, - -0.029459087, - 0.2101229, - -0.01506989, - 0.034650303, - 0.18018141, - 0.09762093, - 0.009491882, - -0.017676137, - -0.10852999, - 0.07725669, - 0.06699578, - 0.13302541, - -0.25838593, - 0.0029257387, - 0.06285295, - 0.025121067, - -0.11386253, - 0.060569294, - -0.04767082, - 0.002708044, - 0.18820962, - -0.07674579, - -0.009075526, - -0.02729159, - 0.01265801, - -0.030841853, - 0.29857942, - -0.017579984, - -0.0755718, - -0.017833544, - -0.21320918, - 0.11447672, - 0.15041788, - -0.026493344, - 0.054455254, - -0.02227388, - 0.064015806, - -0.051482946, - -0.0021094661, - -0.13077365, - -0.124447055, - 0.11489207, - -0.1036233, - 0.056089927, - -0.2136091, - -0.0014439868, - 0.06484087, - -0.2244431, - 0.019610198, - 0.08320925, - 0.020104028, - -0.0021267328, - -0.12618189, - -0.050730273, - 0.054130454, - 0.10761017, - 0.16944769, - -0.02383015, - 0.09119269, - -0.042684633, - 0.09184043, - -0.0216065, - -0.057903, - -0.029782372, - -0.09500798, - -0.12034088, - 0.104706354, - -0.04178408, - -0.011625428, - -0.08400045, - 0.0068868217, - 0.019885998, - 0.056561235, - 0.034366727, - -0.00622143, - -0.11043908, - -0.07265288, - -0.0075214356, - 0.19303346, - 0.052816726, - 0.049633954, - 0.07892065, - 0.034555286, - 0.008290616, - 0.10024861, - -0.13847522, - -0.08310578, - -0.032234553, - 0.12827075, - -0.06026793, - -0.092685774, - -0.00180143, - -0.133045, - 0.06926199, - 0.03029655, - 0.06784898, - -0.057511024, - 0.0067855604, - -0.16454428, - -0.0647175, - 0.027438127, - 0.022310201, - -0.0020318623, - -0.023272578, - 0.11655852, - 0.15634821, - -0.047742818, - -0.10995644, - 0.13452825, - 0.11137353, - 0.0033318843, - 0.046254665, - 0.062904656, - -0.04363864, - 0.13919716, - -0.2425376, - 0.0855614, - 0.0039772214, - 0.016271777, - 0.040038362, - -0.010756292, - 0.032701418, - -0.047561422, - 0.00527368, - 0.08175348, - -0.11790601, - 0.05847071, - 0.02408063, - -0.056497578, - -0.205281, - -0.16911201, - -0.12726425, - -0.074875236, - 0.012601447, - -0.006821041, - 0.050957244, - 0.013862677, - -0.073931344, - 0.08702216, - 0.034506377, - -0.06577404, - 0.004190078, - 0.17154543, - -0.031475868, - 0.05903339, - -0.00854307, - 0.16246663, - -0.041867, - 0.054815996, - 0.15783623, - -0.012612055, - 0.15471162, - 0.11385289, - 0.009007488, - -0.012516783, - -0.0801174, - 0.07651469, - -0.01871278, - -0.04998363, - 0.0038032387, - 0.08596192, - -0.20344718, - 0.12491611, - -0.056458283, - 0.1304275, - -0.13524564, - 0.020977039, - -0.11267863, - 0.02495714, - 0.027677171, - 0.033912066, - -0.13040806, - 0.13529107, - 0.071365446, - 0.07246067, - -0.057098288, - -0.15393247, - -0.12386622, - 0.03251507, - -0.019051684, - -0.16048354, - -0.06546914, - 0.13399081, - 0.0696221, - -0.13459149, - -0.02660637, - -0.1521792, - -0.13954383, - -0.12660578, - -0.0011522027, - -0.08523618, - 0.13119861, - -0.015870744, - -0.024740664, - -0.028359696, - -0.05212083, - 0.1255242, - -0.076179475, - -0.009273929, - 0.056682635, - 0.111607365, - 0.017267758, - 0.042645413, - 0.0014323159, - 0.15039766, - -0.075797394, - 0.028970066, - -0.06391775, - -0.17156155, - -0.12805574, - 0.09462987, - -0.07181185, - -0.087804794, - 0.07299292, - 0.0744324, - 0.043885536, - -0.005561462, - -0.02848923, - -0.019021599, - -0.059509695, - -0.07196553, - -0.024570806, - 0.18630923, - 0.013625906, - 0.014473254, - -0.048644055, - -0.26291072, - -0.08425154, - 0.11142865, - 0.06308954, - 0.008622622, - 0.054947227, - 0.10749193, - 0.016262555, - 0.030835433, - 0.17740971, - -0.022991624, - 0.06282115, - -0.03926155, - 0.062095784, - -0.10288475, - -0.012017415, - -0.13269928, - 0.12053363, - -0.046247337, - 0.011737385, - -0.0064996537, - 0.041098274, - -0.0070479047, - -5.557281E-4, - 0.13581768, - -0.039955664, - 0.061094154, - -0.057849683, - -0.028746378, - 0.06136655, - -0.15434606, - 0.061544135, - -0.09359889, - -0.05395866, - 1.1527818E-4, - -0.062439557, - 0.062295258, - -0.044244017, - 0.0738989, - 0.07004069, - 0.09018398, - -0.15072161, - 0.039611794, - 0.10802068, - 0.047815565, - 0.13459176, - -0.07519938, - -0.008693546, - -0.06785818, - -0.013924185, - -0.10032272, - 0.054912314, - -0.030570759, - 0.062290467, - 0.010734619, - -0.0040402226, - -0.00457593, - 0.16199003, - -0.008427151, - -0.11590779, - -0.056302678, - -0.13079925, - -0.101341516, - 0.16335376, - 0.11465888, - 0.11541068, - -0.06581034, - -0.07610111, - 0.03994531, - 0.045867026, - -0.027835837, - 0.0780009, - -0.12919125, - 0.040393986, - -0.06897538, - -0.002074636, - 0.0038329985, - 0.0985088, - -0.011717553, - -0.14177848, - 0.15031452, - 0.097036235, - -0.058577005, - 0.021234913, - 0.0164588, - 0.07095948, - 0.028588511, - -0.02079985, - 0.038087193, - -0.11435313, - -0.06854679, - 0.13226053, - 0.011122961, - 0.0446279, - -0.13198571, - -0.024956584, - -0.042518385, - -0.16772783, - -0.098126754, - -0.0011282056, - 0.009283978, - 0.15043543, - -0.035722908, - 0.11101861, - -0.019999797, - -0.054387104, - -0.020336246, - 0.008007332, - -0.107418284, - 0.07404396, - -0.007328149, - -0.07593534, - 0.12767069, - -0.064433806, - 0.04866919, - -0.032860607, - 0.01813478, - 0.17336583, - 0.1358588, - 0.09772417, - 0.01913191, - 0.16288997, - -3.2326067E-4, - -0.09406429, - 0.0658898, - 0.11963561, - -0.04569188, - 0.0014309296, - 0.048116885, - 0.18780462, - 0.12035384, - -0.10731687, - 0.14676735, - 0.066887334, - -0.12753229, - 0.049864825, - -0.16540788, - -0.07249041, - 0.013004585, - 0.18295494, - -0.15945052, - 0.0033074692, - 0.009465076, - -0.03903536, - -0.15382323, - -0.11623726, - -0.14566962, - 0.029503182, - 0.05131949, - 0.12576489, - 0.12679255, - -0.18659979, - -0.061389036, - -0.030705236, - -0.0016221218, - 0.11057362, - -0.0023040455, - 0.008344639, - 0.0122364005, - 0.19036026, - -0.18427125, - -0.16397126, - 0.15613866, - 0.07938054, - 0.030444775, - 0.10505093, - 0.031480692, - -0.095450245, - 0.029948667, - -0.14367908, - 0.2831948, - 0.079409726, - 0.03902777, - -0.1425654, - -0.016239192, - 0.0036638281, - 0.105802126, - -0.07877267, - 0.11251211, - 0.025317186, - 0.09565061, - -0.15542257, - 4.7064672E-4, - -0.11843735, - 0.075902626, - 0.0375003, - -0.07023316, - -0.0953317, - 0.01712687, - -0.030582298, - -0.08231559, - 0.08076896, - -0.25571704, - 0.008164288, - 0.09758534, - 0.1562847, - 0.023948692, - 0.0991648, - 0.10919421, - -0.017029233, - -0.017642582, - -0.028804721, - 0.0824594, - -0.10971176, - 0.1668228, - -0.034163706, - -0.05433789, - 0.02756798, - -0.025114002, - 0.091608666, - 0.08989495, - 0.18816836, - 0.024861544, - 0.04904116, - 0.0033076894, - 0.047746938, - 0.042645697, - -0.05805518, - -0.2005156, - -0.070960976, - 0.05419496, - -0.050039552, - -0.1556696, - 0.063587286, - -0.016523598, - 0.03870174, - 0.013463629, - 0.1461981, - -0.09179037, - 0.034248125, - -0.09618138, - 0.103168145, - -0.15756886, - -0.1644591, - -0.011494495, - -0.076628834, - 0.056789666, - 0.08261187, - -0.07171775, - -0.10595039, - -0.054341678, - 0.10780418, - 0.18218215, - 0.08428302, - 0.10316807, - 0.08947812, - 0.030008487, - 0.08463072, - -0.02762789, - 0.1277274, - -0.04141819, - -0.035173617, - 0.19214964, - 0.025152227, - 0.0049498836, - 0.060533248, - 0.0029070752, - -0.11001654, - 0.14965175, - 0.024403669, - -0.0061644646, - 0.066115364, - -0.013276316, - 0.12260154, - -0.07893439, - 0.054613184, - -0.20185211, - -0.03659284, - -0.048471835, - 0.10610447, - -0.0071825664, - -0.1113199, - 0.04501723, - 0.076025605, - 0.099745266, - -0.036955476, - 0.019177984, - 0.12446959, - -0.009053761, - -0.051046263, - -0.0030155985, - 0.0065808063, - -0.086500764, - -0.06336502, - 0.09718946, - 0.09918381, - -0.014538979, - 0.07862033, - 0.1417415, - -0.057684034, - 0.05289418, - 0.14660764, - -0.03180827, - 0.16245398, - -0.08823601, - -0.16617292, - -0.0758402, - -0.07254583, - 0.08785473, - 0.12496446, - 0.027748, - 0.0060711326, - 0.015368765, - -0.008722641, - -0.023320591, - -0.094665766, - 0.06929251, - 0.09760077, - 0.14749639, - 0.00336491, - -0.07215973, - -0.11126388, - -0.06589789, - -0.097120054, - 0.05496981, - -0.11240748, - -0.04375354, - 0.05404857, - 0.024995599, - 0.013922921, - -0.092745714, - 0.12832496, - -0.13262706, - -0.2156509, - 0.08998464, - 0.13009584, - 0.05707459, - 0.20074436, - -0.110658385, - 0.052964516, - 0.045244366, - 0.17805834, - -0.16969828, - -0.02365401, - 0.06449969, - -0.0740397, - -0.005232196, - 0.12112175, - -8.2288147E-4, - 0.07805076, - 0.1933118, - -0.062315427, - -0.0534665, - 0.0769873, - 0.10657823, - 0.0053446107, - 0.11142172, - 0.005106395, - 0.042328857, - -2.487529E-4, - -0.003090278, - -0.0053178947, - 0.034234352, - 0.043401685, - 0.028684253, - 0.16512734, - 0.10370754, - -0.017034518, - -0.08066655, - 0.015970044, - 0.05030715, - 0.076829836, - 0.089427605, - -0.02653106, - -0.081712626, - 0.09226046, - -0.11359615, - -0.15093243, - 0.19880903, - -0.0073239272, - 0.09170507, - -0.02403442, - 0.006457391, - 0.13192552, - -0.03821362, - 0.04278124, - 0.09306034, - -0.1533729, - 0.11711171, - -0.04148409, - -0.19983692, - -0.038418062, - -0.11883355, - 0.10096574, - -0.07535708, - 0.064677894, - 0.13548465, - -0.08079799, - -0.024290994, - -0.24144194, - 0.060891215, - -0.011159217, - -0.10209611, - 0.049149014, - 0.11050292, - 0.046618342, - -0.0705487, - 0.059559565, - 0.072127454, - -0.14545356, - -0.057076823, - 0.020009244, - 0.09388909, - -0.08843259, - 0.17240003, - 0.03901574, - 0.00969345, - 0.0027232645, - -0.08048552, - 0.018007759, - 0.06482568, - 0.08178598, - -0.009452997, - 0.090399355, - 0.054209936, - 0.02227787, - -5.1467307E-4, - -0.14525469, - 0.121841885, - -0.06669718, - 0.012942242, - 0.1990404, - 0.051837105, - -0.14149171, - -0.21850015, - 0.055753756, - -3.4242356E-4, - -0.11420173, - -0.09422683, - -0.031600125, - 0.0418451, - -0.040104892, - 0.044240106, - -0.002979225, - -0.13274178, - 0.047704067, - 0.08252635, - -0.020728333, - -0.11719974, - -0.061051823, - -0.026829991, - 0.0014088843, - 0.0964711, - -0.13826461, - 5.915826E-4, - 0.1288307, - 0.055340488, - -0.02355442, - 0.1065398, - -0.03411693, - -0.018791279, - 0.094397694, - 0.09699538, - -0.050179332, - -0.084830396, - 0.02342374, - -0.03769259, - -0.07730807, - 0.16055582, - -0.0041702488, - 0.037451807, - -0.061176598, - 0.061726082, - -0.06862155, - -0.01662097, - 0.04087311, - 0.10978434, - 0.10710084, - -0.08256879 - ], - "reducedFeatures" : [ - 0.0023197571, - 0.01556878, - -0.027042259, - -0.018545842, - 0.045895036, - -0.053734984, - -0.015237834, - 0.03979028, - -0.044651773, - 0.046142895, - 0.0098390505, - -0.0155872, - 0.0028962062, - -0.04083284, - -0.004933706, - 0.031233558, - 0.003158563, - -0.06274882, - -0.07196564, - -0.0133234775, - -0.01385696, - 0.015394996, - -0.0016106108, - 0.0146834655, - -0.005670513, - -0.024642928, - 0.01668586, - 0.005963055, - -9.827405E-4, - -0.0052439338, - 0.02171319, - 0.027912963, - 0.007468807, - -0.026427764, - -0.019662444, - -0.027329234, - 0.021217467, - 0.025514038, - -0.0028538185, - -0.024535047, - -0.001616974, - -0.031690627, - 0.00834752, - -0.04127835, - 0.012018426, - 0.06793155, - 0.006288463, - 0.007736821, - 0.01078057, - 0.042965066, - -0.039115723, - 0.0380542, - -0.023555929, - 0.006909206, - -0.028595796, - 0.02186968, - -0.010574008, - -0.005727805, - 0.034461174, - -0.06324275, - 0.013797344, - 0.02795241, - -0.0265577, - -0.003096182, - 0.0026950606, - 0.043289363, - -0.037390962, - -0.025290586, - -0.011610554, - -0.03865033, - -0.07540662, - 0.043667253, - -0.059201602, - 0.043149553, - 0.0059133954, - 0.029058749, - -0.0070661176, - -0.0142135285, - 0.00283681, - 0.045280773, - 0.043101273, - -0.028720928, - -0.03998979, - 0.053615127, - -0.0030123855, - 0.0031775828, - 0.01397667, - 0.013481348, - 0.044233408, - -0.04022668, - 0.03140378, - -0.04526595, - 0.024839386, - 0.025614513, - -0.022793885, - 0.01778328, - 0.0026348599, - -0.004406669, - -0.021285383, - -0.031905126, - -0.004593502, - 4.779094E-4, - -0.021241715, - -0.029508049, - 0.01663971, - -0.03555074, - 0.017936224, - 0.010497545, - -0.0013428404, - 0.017105317, - 0.020113207, - -0.01096621, - -0.019539898, - 0.007466588, - -0.058487345, - -0.06988792, - 0.014541179, - 0.0065053026, - 0.002285401, - 0.0456847, - -0.03543863, - -0.04141207, - -0.017245289, - 0.024897527, - -0.035705194, - -3.6320387E-4, - 0.03264878, - 0.0025217077, - -0.053919718, - -0.0017380879, - -0.029924244, - -0.008064649, - 0.025976738, - 0.043331802, - 0.024465661, - 6.918283E-4, - -0.011276152, - 0.011047022, - -0.0032452345, - -0.04324235, - 0.013096846, - 0.00649945, - 0.008991284, - 0.04724763, - 0.021667354, - -0.03892708, - 0.035812426, - -0.016518304, - -0.0046166326, - -0.0040571797, - 0.0013556109, - 0.03469573, - 0.033151023, - -0.018970296, - -0.031359192, - -0.011732064, - 0.019269934, - 0.017105287, - 0.024624236, - -5.46834E-4, - -0.0764376, - -0.029072346, - 0.029526694, - 0.06395951, - 0.036508005, - 0.043805648, - 0.024609135, - 0.026718898, - -0.0027432733, - 0.03169187, - -0.02059628, - 0.011246369, - 0.03116982, - -0.015300479, - -0.02194101, - -0.039618555, - -6.25629E-4, - 0.027858034, - 0.031213935, - -0.008754684, - 0.014006882, - -0.032752883, - 0.027572485, - -0.016208563, - -0.039747205, - 0.05276167, - -0.032820098, - 0.022204785, - 0.043065887, - 0.04682263, - -0.039749168, - -0.040123474, - 0.034098372, - -0.010535845, - -0.005003207, - 0.038442235, - -0.0069652144, - -0.015371591, - 0.04141253, - -0.015267325, - -0.006242236, - -0.01648104, - 0.046030585, - 0.021856913, - 0.011512448, - 0.041990213, - 0.016251972, - 0.011444012, - -0.057765573, - 0.021815082, - -0.050136913, - -0.024418535, - 0.027779413, - -0.020336576, - 0.018763069, - 0.006919549, - 0.031527545, - -0.005442392, - -0.00920758, - -0.0129074, - -0.01479886, - -0.06086788, - -0.013779609, - -0.07587531, - -0.026992824, - -0.007737133, - 0.017554382, - -0.029258708, - -0.014946782, - 0.068282, - -0.046951693, - 0.047757965, - -0.030607928, - -0.046152346, - -0.035244983, - 0.028423883, - 0.07350716, - 0.02785277, - 0.0153389545, - 0.028584534, - -0.010470956, - -0.021401634, - -0.012117104, - 0.07355693, - 0.05234019, - -0.006761163, - -0.021360336, - -0.030223873, - -0.0050585484, - 0.0072757755, - -0.013951069, - -0.025157852, - -0.0037563716, - -0.0052405433, - 0.018433735, - 0.011517328, - -0.027336016, - -0.04687394, - 0.0061559733, - 0.009210049, - -0.0027533362, - -0.035825126, - -0.010769866, - -0.014438521, - -0.050113354, - -0.02576217, - 0.0034542773, - -0.006000508, - 0.031762835, - -0.031356193, - -0.0021690638, - -0.03275173, - 0.009311741, - 0.0042971713, - -0.0072784973, - 0.009880481, - 0.028474132, - 0.035376064, - 0.0069212182, - 0.030339789, - 0.043844536, - 0.0037530782, - 0.020728152, - -0.030794937, - -0.028300038, - 0.026635382, - -0.0025273117, - -0.002700407, - -0.011824021, - 0.049272817, - -0.03275638, - 0.00452487, - 0.011856324, - 0.017506892, - -0.04755698, - 0.01625423, - 0.0059078955, - -0.03810163, - 0.026890887, - -0.013303143, - 0.01725348, - 0.015394108, - -0.025316479, - 0.02877375, - -0.023126816, - -0.0018485894, - 0.011581005, - 0.01325093, - -0.037493017, - -0.018278968, - -0.06677868, - 0.009464804, - -4.1710405E-4, - 0.004087524, - 0.021353899, - -7.164093E-4, - 0.028918318, - 0.017877035, - -0.0373339, - 0.060268812, - -0.016095454, - 0.0356888, - 0.013043158, - -0.052937735, - -0.010423842, - 0.009452066, - 0.0033704843, - -0.012799656, - -0.035825066, - -0.056569446, - -0.026466383, - -0.023823323, - 0.01723082, - -0.014670468, - 0.0037616, - -0.073236324, - -0.004780298, - -0.0068567107, - -0.010205413, - 0.038532924, - 0.032774266, - 0.07478228, - -0.036117848, - -0.026361117, - -0.015654946, - 0.021409256, - 0.011887598, - -0.02551054, - 0.046379577, - -0.027609402, - -0.013480364, - 0.0136283785, - -0.053432163, - -0.07308959, - 0.034543406, - 0.050036803, - -0.006529424, - -0.03222197, - 0.002813064, - -0.010641985, - 0.040306076, - 0.04718207, - 0.017487798, - 0.010662415, - -0.009564844, - -0.021343099, - -0.019048423, - -0.023639139, - 0.016057147, - -0.010692269, - -0.0013880245, - -0.008035699, - 0.005688615, - 0.022609668, - -0.011339351, - -0.03757158, - 0.036710054, - -0.0025072743, - -0.015228066, - 0.053147536, - -0.015126177, - 0.06068713, - 0.035993468, - -0.01181591, - -0.023672855, - -0.051622525, - 0.065177366, - -0.011218321, - -0.015537213, - 0.044463117, - 0.039221458, - -0.04137444, - 0.015205014, - 0.022630095, - 0.011008359, - -0.0107070925, - 0.039362147, - 9.937097E-4, - -0.024320481, - -0.02420543, - -0.05135768, - -4.0568464E-4, - -0.034538906, - 0.004104214, - 0.052305087, - 0.017224222, - 0.050610773, - -0.021180507, - -0.03248947, - 0.026497766, - -0.015149468, - 0.06744015, - -0.0015969229, - -0.018339612, - 0.004979256, - -0.03235736, - -0.037973497, - 0.0010170187, - 0.004413332, - -0.035425108, - -0.043087296, - -0.021822004, - -0.012736479, - -6.882684E-4, - -0.033223696, - -0.06589266, - 0.0032577377, - 0.07758439, - -0.05615657, - -0.0020081145, - -6.978414E-4, - 0.0031648392, - -0.02415966, - -0.034375627, - -0.020067105, - -0.01389085, - -0.018603433, - 0.0011884901, - 0.030449238, - -0.01776847, - 0.05077833, - -0.04651245, - -0.015672216, - -0.014635997, - 0.09093008, - 0.047901142, - 0.023390913, - 0.07222615, - 0.030247036, - 0.026465168, - 0.05376932, - -0.05399718, - 0.014517022, - -0.020401277, - -0.036455296, - -0.011122357, - -0.038870845, - 0.012304028, - 0.003557832, - 0.051435757, - -0.030354023, - 0.05312894, - -0.037512776, - -0.061648116, - -0.0056993077, - -0.015230325, - -0.041625313, - -0.07812478, - -0.01838877, - 0.041165184, - 0.044778183, - 0.04669499, - -0.021846931, - 0.02810368, - -0.0077933045, - 0.023569753, - 0.043244477, - 0.03829788, - -0.0034850186, - -0.0041862787, - 0.036259666, - -0.0032630814, - 0.0017819596, - -0.0222561, - -0.019032095, - 0.018643927, - -0.012866737, - 0.016262231, - -0.069845304, - -0.0497167, - 0.028452625, - -0.011410051, - -0.032913044, - -0.0022173338, - -0.0011926166, - -4.1125747E-4, - 0.01856229, - 0.03143386, - 0.010596303, - -0.01861037, - 0.03310154, - 0.009044247, - 0.024800668, - -0.040467, - -0.01028825, - 0.03374374, - 0.08565097, - 0.016549772, - -0.0015597363, - 0.006576623, - 9.79945E-4, - 0.039146706, - -0.023845494, - -0.016742619, - -0.0025935, - -0.023484215, - -0.0011825468, - 9.094742E-4, - 0.05653682, - -0.04879599, - -0.010956862, - -0.021679446, - 0.0077010877, - -0.028791727, - -0.027262948, - -0.005710204, - 0.007909255, - 0.018789902, - -0.008028373, - 0.020274332, - 0.0051394375, - -0.05187763, - 0.0028080915, - -0.023856558, - -0.055856634, - 0.009536641, - 0.06459733, - 0.028583955, - -0.028270358, - -0.015719283, - 4.2196605E-4, - -0.027602974, - 0.05055973, - -0.02824918, - -0.0154525405, - 0.010721507, - -0.032962464, - 0.0022867115, - -0.009436569, - 0.00714234, - -0.028966434, - -0.04788105, - 0.014642256, - -0.028140737, - 0.024758147, - 0.039298028, - 0.043095145, - -0.0012121076, - -0.059005212, - 0.034622785, - 0.03975306, - 0.0045367, - 0.06297573, - 0.016756656, - -0.03975796, - -0.023257878, - -0.032029036, - 0.02568415, - -0.07476459, - -7.551346E-5, - -0.0071334983, - 0.026936147, - 0.020302823, - -0.017602084, - -0.0018861694, - -0.015115578, - 0.00877891, - -0.032324787, - 0.0099222995, - -0.025766456, - -0.00858663, - 0.041966513, - 0.03475905, - -0.021370111, - -0.026759833, - 0.024468921, - -0.019437775, - 0.027739834, - 0.0043374496, - -0.0027330657, - -0.033125944, - 0.0038507113, - 0.044884223, - 0.023404317, - -0.0033888745, - -0.070020795, - 0.011103341, - -0.016987754, - 0.052490674, - -0.049982972, - -0.026527895, - -0.04464797, - -0.01514531, - 0.06436519, - -0.015383538, - -0.03488705, - -0.010505734, - -0.015192504, - -0.06949237, - -0.031293955, - 0.037226785, - 4.3343144E-4, - 0.0194774, - 0.03360723, - -0.03691263, - -0.02026149, - -0.045139782, - 0.026665598, - -0.014133753, - -0.024461437, - 0.03589778, - -0.019547492, - -0.06854661, - 6.3878624E-4, - -0.017254073, - 0.021995144, - 0.003872591, - -0.007492617, - -0.0121490415, - -0.014334671, - -0.0057837525, - 0.013247944, - 0.001977319, - 0.023649624, - -0.034405787, - 0.012152297, - -0.04550229, - -0.014205096, - -0.06268947, - 0.026373805, - 0.036167536, - 0.012586152, - -0.0103783775, - -0.030760067, - -0.02369023, - -0.05823928, - 0.022061639, - -0.0018673978, - 0.022700323, - 0.025839176, - -0.015003332, - -0.0062065283, - -0.049889434, - -0.0452053, - 0.019110778, - 0.015854204, - -0.00788754, - -0.01534218, - -0.04068577, - -0.008411049, - 0.018631421, - 0.03978839, - 0.027960723, - -0.019713126, - -0.01649503, - 0.042821847, - 0.01550999, - 0.03305678, - -0.060354266, - 0.014513047, - 0.028547117, - -0.014422703, - 0.039716057, - -0.028387967, - 0.012263401, - 0.05542949, - -0.036019526, - -0.0672977, - 0.03525583, - -0.059246823, - 0.052235883, - 0.034598276, - -0.017860137, - 0.017770663, - -0.019550584, - -0.030039255, - -0.014801864, - 0.03794571, - 0.024547094, - 0.010497162, - 0.018422047, - -0.105382875, - 0.006982181, - 0.026345035, - -0.012179345, - 0.02482855, - -0.0060444023, - -0.0048597828, - 0.023821292, - 0.046911538, - -0.040315777, - 0.014630552, - 0.0016681666, - 0.039919335, - 0.024421081, - -0.0077218087, - -0.027938478, - 0.035282593, - 0.018349508, - 0.013020188, - 0.033219576, - -0.022947414, - 0.031688992, - 0.032218635, - -0.00932938, - -0.011130042, - 0.008592167, - 0.02127188, - -0.051523417, - 0.0020469609, - -0.01146262, - 0.01469693, - 0.0042932946, - -0.047376238, - -0.058659177, - -0.0035330616, - -0.019641574, - 0.01122945, - -0.029704265, - 0.037366774, - -0.030082181, - 0.041097585, - -0.049405202, - 0.026734876, - -0.022346051, - 0.08454802, - -0.028022826, - 0.020279938, - 0.02590283, - -0.031606056, - -0.012808712, - -0.04120795, - 0.0029765896, - 0.0012161748, - 0.009911559, - 0.002914055, - 0.00962913, - 0.0032262788, - 0.008644115, - -0.02035602, - -0.024313597, - -0.008243954, - -0.0100152735, - -0.024537474, - 0.0012140601, - -0.04680155, - -0.058528423, - -0.026441786, - -0.0013593503, - -0.0084267175, - 0.0013187206, - -0.013366563, - 0.017791156, - 0.016852973, - 0.016394373, - -0.008735643, - 0.008353705, - 0.033495404, - 0.009670455, - 0.023541672, - -0.022319086, - -0.04596148, - -0.034708023, - 0.04023505, - 0.004993884, - 0.012274574, - 0.0010582138, - -0.01660898, - 0.019122034, - -0.03560589, - 0.03458201, - -0.035298858, - 0.012322177, - -0.05343767, - -0.023319593, - 0.0611052, - -0.018356312, - 0.044839546, - 0.013516692, - -0.039840728, - 0.03052966, - -0.0046012406, - -0.0045003444, - 0.03556517, - -0.043616362, - -0.017386047, - -0.0016731258, - -0.028199155, - -0.0064781373, - -0.060554847, - -0.09504554, - 0.028604697, - 0.038360838, - -0.061933666, - 0.02641366, - 0.017761998, - -0.07300678, - 0.01480676, - 0.007967257, - 0.0052534537, - 0.045218512, - 0.06927351, - -0.0027507, - -0.016748508, - -0.014914686, - 0.0308182, - 0.043376494, - 0.030823493, - -0.054548, - -0.05910165, - -0.031104667, - -0.019697681, - 0.008958313, - 0.01985004, - -0.006327787, - -0.061972063, - -0.018825958, - 0.047002777, - 0.004832529, - -0.011051366, - -0.023274926, - 0.020776322, - -0.030488398, - -0.0057659233, - -0.020547722, - 0.007050243, - -0.010470192, - -0.031666476, - 0.00320743, - 0.043406673, - -0.00666396, - 0.012145056, - 0.043568637, - -0.028947225, - -0.0133050885, - 0.008271957, - -0.06326038, - 0.03812933, - 0.030080039, - 0.0704041, - -0.009457813, - 0.015087809, - 0.030359793, - -0.004107843, - -0.019904852, - -0.0070066294, - -0.05278831, - -0.018593254, - 0.067284875, - -0.03567757, - -0.042858582, - -0.013264742, - 0.052761503, - -0.05978467, - 0.042269085, - -0.06532933, - -0.04731599, - -0.047021654, - 0.0058727367, - 0.007989277, - 0.036890227, - 0.028201537, - -0.004575592, - 0.014109816, - 0.011242693, - -0.03138791, - -0.066861995, - -0.030367475, - 0.0017095609, - -0.025211696, - 0.012521828, - -0.017738136, - 0.009955879, - 0.0058612144, - -0.035113744, - -0.028414717, - 0.016846871, - -0.013088918, - -0.008467451, - 0.017114501, - 0.013720251, - 0.010835661, - -0.047578465, - 0.07677633, - 0.015874587, - -0.03793343, - -0.0047528427, - 0.058010954, - -0.0055737365, - 0.0031900313, - 0.037010714, - 0.029086683, - -0.0030876952, - 0.002459798, - 0.020883802, - 0.06239387, - 0.018519055, - -0.02979664, - -0.027967695, - -0.049362928, - 0.01187264, - 0.03404039, - -0.007418165, - 0.017229779, - 0.01142595, - -0.044639733, - 0.055403117, - 0.018196706, - 0.028631324, - 0.009126811, - 0.035750743, - -0.03494074, - -0.03938672, - -7.0429705E-5, - 0.022093266, - 0.021080803, - 0.0042975023, - -0.037354276, - 0.005290335, - -0.028284296, - 0.040408008, - -0.049003027, - 0.05007346, - -0.0090189865, - -0.046001717, - -0.029699543, - 6.038785E-4, - 0.043470033, - 0.031507418, - 0.078216575, - 0.033337746, - -0.06885913, - -0.0033614836, - -0.0032323645, - -0.0022687502, - -0.04758528, - -0.036668327, - 0.013620057, - -0.016929133, - 0.022137249, - 0.0041911476, - -0.011748847, - 0.056845613, - -0.009667986, - 0.058141027, - 0.04161908, - -0.010233226, - 0.002708242, - -0.020392817, - 0.0055800304, - 0.03413405, - 0.004956203, - -0.03137919, - -0.04721955, - 0.034539465, - 0.020049116, - 0.00600611, - 0.03499666, - 0.02565057, - -0.017158898, - -0.011390866, - 0.026544143, - 0.014520131, - -0.01141437, - 0.007419836, - 0.0033974987, - -8.267389E-4, - 0.0038937596, - 0.0403971, - 0.008745144, - -9.243721E-4, - -0.050477423, - 0.019524772, - 0.04952607, - -1.5822709E-4, - 0.01732743, - 0.057065863, - 0.014781923, - -0.0024494235, - -0.016597312, - 0.020889726, - -0.036875308, - -0.040867414, - 0.04516547, - 0.0013049188, - -0.016979227, - 0.00984793, - -0.005319835, - 0.02199346, - -0.0048151654, - 0.04274118, - 0.02373701, - 0.032020997, - 0.01944038, - -0.05445608, - -0.007972127, - 0.02195477, - 0.012662559, - -0.015705287, - -0.04697581, - -0.018225286, - -0.015525574, - -0.020651286, - -0.010317584, - -0.013304481, - -0.028131157, - -0.049794775, - 0.016785063, - -0.0017110079, - -0.031806543, - 0.0072928886, - -0.0056469166, - 0.009763516, - 0.06990697 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "3/0", - "4/0", - "7/0", - "8/0", - "2/0", - "1/0", - "5/0", - "2/0", - "3/0", - "6/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "5/1", - "62/1", - "64/1", - "39/1", - "62/1", - "45/1", - "74/1", - "2/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "10/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "11/1", - "260/2", - "274/2", - "30/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "145/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "177/2", - "257/2", - "116/2", - "90/2", - "218/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "37/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#AA0EFD", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "m4wjxsqu", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "NJdlKaMs1f", - "lkAn533sbV", - "6LiD7Q3hbv" - ], - "title" : "title-gbgpGn9EOm", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.4.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.4.json deleted file mode 100644 index c535e8a16..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.4.json +++ /dev/null @@ -1,5402 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.683973Z", - "id" : "xctlvvat", - "document" : { - "modifiedTime" : "1996-08-28T19:25:27Z", - "display" : { - "id" : "xctlvvat", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/gGq.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/gGq.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#BD95D7", - "source" : { - "id" : "p2askkzv", - "title" : "title-MMucguH4mC", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "xctlvvat", - "sourceIdentifier.value" : "saTeXp9UVV", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.081504695, - 0.0076336768, - -0.034590557, - -0.07145134, - 0.035819177, - -0.055556327, - -0.015221421, - 0.12506092, - -0.06104339, - 0.11215296, - -0.25552446, - -0.0847976, - -0.06921378, - 0.08234263, - -0.057647757, - -0.07982215, - 0.12519373, - 0.012089131, - -0.0032174147, - 0.0047831675, - -0.10207447, - 0.005370834, - -0.021695066, - -0.03986724, - 0.057167586, - 0.082252845, - 0.017834926, - 0.100868486, - 0.09113561, - -0.1820533, - -0.098780885, - 0.08509161, - 0.053154584, - 0.048527166, - -0.017480327, - 0.020929895, - -0.118242815, - -0.03866448, - -0.033516176, - -0.053089976, - -0.022359388, - -0.0074742674, - 0.1376346, - -0.12278363, - -0.077999935, - 0.05245264, - 0.0760845, - -0.063170694, - 0.057683382, - 0.11240403, - 0.13571274, - 0.006132682, - 0.1144122, - -0.097766206, - -0.075039975, - -0.11318704, - 0.03702899, - 0.06653169, - -0.07812011, - -0.15187077, - 0.07659881, - 0.16496342, - -0.08126514, - -0.07928407, - 0.044527136, - -0.018355118, - 0.090345375, - -0.012688629, - -0.07095134, - 0.037027355, - 0.029583275, - 0.02350977, - -0.1254061, - 0.046321664, - -8.6766365E-4, - -0.05620631, - 0.009452385, - -0.004287613, - -0.076359525, - -0.13142028, - 0.0641859, - 0.07185832, - 0.0032339033, - -0.011926457, - 0.09579918, - 0.099102214, - -0.20569088, - -0.02110453, - 0.042260434, - 0.10299977, - 0.06372805, - 0.19392087, - -0.093033396, - 0.06927084, - 0.11041796, - 0.02107166, - -0.07617618, - -0.04155884, - -0.030094763, - -0.06283484, - -0.1177163, - -0.15898308, - -0.120481685, - 0.116730966, - 0.08867364, - -0.13441518, - -0.015451241, - 0.03307645, - -0.05315942, - -0.062245067, - 0.08230117, - -0.05203042, - 0.10985558, - 0.028803758, - -0.015947372, - 0.07003525, - -0.04710261, - -0.21349701, - 0.05892333, - 0.058027364, - -0.023301093, - -0.13581923, - -0.055199467, - 0.049193714, - -0.04494477, - 2.999846E-4, - 0.014104135, - -0.009516768, - 0.062392656, - -0.02950874, - 0.012875706, - -0.035697337, - 0.014504665, - -0.084103964, - 0.11766334, - 0.0034030327, - 0.090288356, - 0.09769445, - 0.02677473, - -0.15329288, - 0.007116304, - -0.00654205, - 0.148523, - 0.04462795, - -0.025742535, - 0.045227308, - -0.0027631903, - 0.09588975, - -0.052929588, - -0.046146564, - 0.10057719, - -0.05815802, - -0.039007828, - -0.034725092, - -0.01814333, - 0.09926989, - 0.052191608, - 0.001771444, - -0.03748674, - -0.08674852, - 0.008704687, - 0.063790195, - -0.004017961, - 0.054848626, - 0.14517501, - -0.13370688, - -0.018979326, - 0.008698922, - 0.028196596, - -0.03936316, - -0.12835835, - 0.018254844, - -0.03779701, - -0.12971608, - -0.06978322, - 0.06869664, - 0.13015617, - -0.0030976506, - -0.23199762, - -0.1189885, - -0.084453285, - -0.03173432, - -0.004238068, - 0.09195217, - 0.012070716, - -0.12494393, - -0.09607401, - -0.02925823, - -0.039672177, - -0.08954379, - -0.13890767, - -0.106522985, - 0.10848528, - 0.045353092, - -0.0998842, - 0.077691324, - -0.114389636, - 0.009022517, - 0.03855478, - 0.06305945, - -0.08325099, - 0.005784407, - 0.035019048, - 0.23141396, - -0.003543126, - -0.029707622, - 0.05061613, - -0.10278835, - -0.055647068, - -0.060899973, - 0.012729628, - -0.03525777, - 0.12991811, - -0.07513246, - 0.09701585, - 0.11979563, - 0.15064165, - -0.072516344, - 0.044117287, - -0.045619417, - 0.010311331, - 0.19997342, - 0.043849993, - 0.20802385, - 0.063835904, - 0.03856823, - -0.019211277, - 0.119932644, - -0.04413826, - -0.0428629, - 0.088786766, - 0.054433174, - -0.07752362, - 0.006261086, - 0.24288078, - 0.1051525, - -0.1194221, - -0.11868825, - -0.07127301, - -0.012145547, - 0.119123235, - 0.01907084, - -0.19288799, - 0.013957305, - 0.082845494, - -0.07487052, - -0.10182706, - 0.03875828, - 0.1045835, - -0.18254006, - -0.22223796, - -0.05931732, - -0.12706041, - -0.096634336, - 0.27744007, - -0.1436411, - 0.10556106, - 0.06291455, - -0.07778084, - -0.07577857, - 0.006889903, - -0.053069115, - 0.018390361, - -0.11705321, - -0.034205418, - -0.004208937, - -0.0014786157, - -0.06840231, - -0.032963928, - -0.07601006, - 0.0015196789, - 0.08919475, - -0.05206167, - 0.014198534, - -0.05132502, - 0.056796763, - 0.06595071, - -0.06298486, - 0.03579049, - -0.07557866, - -0.35473838, - 0.028429903, - 0.14050372, - 0.005993447, - -0.13162653, - 0.20459227, - 0.05298088, - -0.0787637, - -0.023621732, - 0.05036625, - -0.060308974, - 0.061430745, - -0.17209962, - -0.14495024, - -0.07402049, - 0.0542118, - 0.12805973, - -0.1302969, - 0.1607229, - 0.09383786, - -0.12682004, - -0.06810115, - -0.13080001, - 0.117598444, - 0.0068419953, - -0.11378732, - 0.12141801, - -0.011241136, - 0.0052401563, - -0.08556567, - 0.048019063, - -0.0028263284, - -0.018231642, - 0.023175858, - 0.02246503, - -0.0892382, - -0.006645501, - -0.039701566, - -0.2020471, - 0.10459728, - -0.010201835, - 0.0588286, - 0.03107047, - 0.07696609, - 0.0022699405, - 0.02422861, - -0.06003521, - 0.020795483, - -0.06665814, - 0.04558424, - 0.15065417, - -0.14250307, - 0.088740505, - -0.012262492, - 0.22784194, - -0.08973101, - 0.076068856, - -0.11882612, - 0.10366414, - 0.0084299715, - -0.03440425, - -0.027529648, - 0.043036982, - 0.04748055, - -0.009272575, - -0.025851723, - 0.07491095, - 0.067683995, - -0.04113282, - 0.14339346, - -0.0977032, - -0.021413129, - -0.007689765, - -0.08145416, - 0.03926494, - -0.14288218, - -0.0012567304, - -0.19216625, - -0.032640338, - -0.14394751, - -0.0046962, - 0.012075368, - 0.15212779, - -0.099574424, - -0.1095691, - -0.06372482, - 0.16702753, - 0.035380542, - 0.0785297, - -0.0073263184, - -0.0075756684, - -0.04012125, - 0.15958302, - 0.10988692, - 0.0133649185, - 0.09346145, - -0.04204602, - 0.08386385, - -0.024444336, - -0.04172031, - -0.17180714, - 0.105130166, - -0.126546, - -0.12607427, - 0.18870544, - 0.015511012, - 0.031669214, - 0.001182362, - -0.058053706, - -0.009599848, - -0.09760566, - 0.06838404, - -0.14409979, - -0.082364514, - 0.07529507, - 0.06791801, - -0.013780875, - -0.035337836, - 0.063350305, - 0.04082247, - 0.12832674, - 0.13110633, - 0.114636675, - -0.15437354, - -0.014150412, - -0.13511685, - -0.16459838, - -0.0333185, - 0.08113841, - 0.121658884, - -0.069662705, - -0.0014362175, - -0.079730116, - 0.02110119, - 0.022423401, - -0.050830856, - 0.06247717, - 0.05739905, - 0.0077491687, - -0.0916015, - -0.043528896, - -0.19578286, - 0.050422963, - -0.09089642, - 0.021524332, - -0.18659446, - 0.07658981, - 0.20543666, - 0.05075307, - 0.070409365, - -0.04951275, - 0.15052305, - -0.12738204, - 0.012087289, - 0.069732465, - 0.10048054, - -0.04107809, - -0.046492647, - 0.077958204, - -0.047990374, - -0.033553418, - -0.055083945, - -0.07897923, - -0.056689765, - -0.0838913, - 0.10714787, - 0.07168678, - 0.051478863, - -0.021008529, - 0.08070617, - 0.10439428, - -0.094898336, - -0.06536162, - -0.13029827, - -0.10130178, - 0.06309077, - -0.015011673, - -0.0974912, - -0.032919742, - -0.027607892, - 0.0057771667, - 0.06349114, - 0.18253683, - -0.09200182, - -0.079153776, - -0.08838562, - -0.02532018, - 0.0274302, - -0.04325484, - 0.07856972, - 0.02869173, - -0.05931679, - -0.0023572259, - 0.09899813, - -0.032885294, - 0.03701601, - 0.05346636, - 0.0377071, - -0.057085566, - 0.2116501, - -0.087104775, - 0.03358085, - 0.024796385, - 0.10973829, - 0.17713995, - 0.028362086, - 0.012930073, - -0.14129902, - -0.074328244, - 0.09331859, - -0.0021793074, - 0.11656281, - 8.152542E-5, - 0.02089442, - -0.12211472, - 0.027076304, - 0.041075353, - -0.10677412, - -0.04726717, - 0.032251485, - -0.11225636, - -0.123965934, - 0.020103607, - 0.07949079, - 0.15265737, - -0.0013377472, - -0.13594797, - 0.12816668, - -0.05328096, - -0.042829923, - -0.110515416, - -0.104986124, - 0.0416531, - -0.20723581, - -0.09980176, - 0.13563295, - -0.24538746, - 0.12150613, - 0.068189636, - 0.029351538, - 0.03730309, - 0.085368894, - 0.10813216, - -0.042345855, - -0.05864462, - -0.2065317, - -0.047691934, - 0.14329475, - 0.09765217, - -0.045599986, - -0.07354961, - -0.051613815, - 0.0778484, - -0.19865316, - -0.031807143, - 0.2183691, - 0.019415585, - -0.07716876, - 0.16303396, - 0.22521007, - 0.008466473, - 0.017680405, - 0.081289634, - 0.09651769, - -0.01992492, - -0.110971764, - 0.08768688, - 0.020050611, - -0.1994405, - 0.01749871, - 0.11424602, - 0.059701253, - 0.06115861, - 0.0045955973, - -0.0032987138, - -0.015411638, - -0.17975715, - 0.13322605, - 0.05531761, - 0.15198013, - -0.23223536, - -0.017635824, - -0.04216996, - -0.002022545, - 0.24992387, - 0.013128098, - 0.07078046, - -0.054941818, - -0.08018927, - -0.077548124, - -0.053425126, - 0.007344808, - -0.13074884, - 0.15382381, - -0.0963389, - 0.05784234, - -0.05903342, - -0.04129458, - -0.038592536, - 0.068879195, - 0.038100045, - 0.11509248, - -0.15537958, - 0.023834677, - -0.038696874, - -0.041497633, - 0.049400315, - 0.027213225, - -0.011695772, - 0.08526084, - -0.1518826, - -0.0061043683, - 0.06463199, - 0.07296861, - -0.001023677, - 0.028802572, - 0.12662761, - -0.11516665, - -0.016888307, - -0.106743425, - 0.009500195, - -0.021153841, - 0.026157651, - -0.102244884, - -0.01278147, - -0.092273474, - -0.08122246, - 0.14646278, - 0.006825876, - 0.13071579, - 0.04029483, - -0.07040987, - -0.15460686, - 0.08688637, - 0.19532822, - 0.08394269, - -0.08221029, - -0.106966145, - 0.04066417, - -0.01173422, - -0.007120306, - 0.016151715, - -0.10828195, - -0.060470313, - -0.12167959, - -0.11693314, - -0.03308883, - -0.06251794, - 0.019265305, - 0.08601195, - 0.055840343, - -0.12173243, - 0.016805379, - -0.050246824, - 0.11198906, - -0.08442777, - -0.014172016, - -0.05674675, - 0.015076637, - 0.014370023, - 0.040546715, - 0.010985331, - -0.09723978, - -0.052024946, - -0.07892114, - -0.004623073, - -0.085657604, - -0.2080832, - -0.12604424, - -0.114270724, - 0.13559285, - -0.08971398, - 0.019566413, - -0.14538035, - 0.052795064, - 0.019041957, - 0.10133849, - -0.034781493, - -0.07599902, - 0.004256755, - -0.101273686, - -0.13649552, - 0.027337711, - 0.08655623, - -0.038135182, - -0.23800394, - -0.14124645, - -0.12998149, - -0.047702264, - 0.057316337, - 0.10212487, - -0.040621456, - -0.031232435, - -0.07897097, - 0.059200045, - 0.061267044, - -0.16329561, - 0.086300105, - 0.059000865, - 0.08037451, - -0.09643934, - 0.19367573, - 0.052512858, - -0.10344404, - 0.060617752, - 0.012410821, - -0.13038737, - 0.025458964, - -0.04198109, - -0.004665646, - -0.062579185, - -0.10686013, - -0.0161626, - 0.1672726, - 0.0026666578, - -0.023562644, - -0.08684414, - -0.07951425, - -0.27851444, - 0.04363155, - 0.028613329, - -0.13003476, - 0.06464529, - 0.09191932, - 0.06799655, - 0.045731187, - -0.1893365, - -0.0974967, - -0.08236145, - 0.023544723, - -0.07369922, - -0.112627104, - 0.042694826, - -0.036834933, - -0.012824945, - 0.06009435, - 0.057935473, - 0.09702722, - 0.063769415, - 0.044230074, - -0.08616659, - -0.055923793, - 0.035868034, - -0.13923398, - -0.0026614722, - 0.037787165, - -0.03761692, - -0.22392683, - -0.048019245, - -0.07038231, - 0.20925862, - 0.11115605, - 0.0041435175, - -0.105880044, - 0.15223204, - 0.015123012, - 0.10190403, - -0.088354304, - 0.1529122, - -0.03943103, - 0.03984391, - 0.20261015, - 0.021250209, - 0.021270126, - 0.06991796, - -0.05661995, - -0.19975962, - 0.08058343, - -0.07337727, - -0.10907398, - 0.032144483, - 0.015373318, - -0.14857857, - -7.4550416E-4, - 0.07575086, - -0.24900645, - -0.03817364, - -0.08963027, - 0.10411584, - 0.12524846, - -0.104018055, - -0.080485314, - -0.065867536, - 0.16421674, - 0.14974739, - -0.09512626, - -0.0727125, - 0.13882433, - 0.0017630518, - 0.07130452, - 0.026007839, - 0.05398742, - 0.08100209, - 0.1647597, - 0.122985885, - -0.06480882, - -0.09475467, - -0.047427297, - -0.002814665, - -0.11038756, - -0.029216629, - -0.063261546, - 0.01383571, - -0.07256548, - 0.049773213, - -0.0053382847, - -0.026463693, - -0.110891595, - 0.059738085, - -0.056518916, - -0.12513697, - 0.021030167, - -0.1053536, - 0.04997381, - -0.07253217, - -0.20859468, - -0.08630503, - -0.027391464, - -0.033153653, - 0.032660868, - -0.022729967, - -0.15639022, - -0.043916762, - -0.23679566, - 0.0064219125, - -0.026383143, - -0.01723576, - -0.024883088, - 0.12909755, - 0.07366728, - -0.023330297, - 0.26409858, - -0.010768281, - -0.057005927, - 0.15272689, - -0.008942405, - 0.013490308, - 0.024575403, - 0.069310345, - 0.061815448, - -0.15460312, - 0.08438209, - 0.027070375, - -0.17732155, - 0.10468952, - -0.0884669, - -0.059589148, - -0.037937716, - -0.041863292, - 0.07213788, - -0.04980834, - -0.006627274, - -0.2605784, - -0.033010796, - 0.22446904, - 0.1267399, - 0.021369014, - 0.06274587, - -0.012087549, - -0.058109168, - 0.07473051, - 0.0011003232, - -0.03921155, - 0.13700925, - 0.053006995, - -0.011399568, - -0.10867726, - -0.06385495, - 0.0048719565, - -0.08288188, - -0.08060196, - -0.04471305, - 0.09581656, - 0.0017232224, - -0.033269126, - 0.043635473, - -0.16369736, - 4.4041313E-4, - 0.14140347, - 0.119217746, - -0.009763197, - 0.0010099619, - 0.06683165, - -0.124858975, - 0.14029986, - 0.17353234, - 0.1233631, - -0.012212739, - 0.11321308, - 0.052498493, - 0.034296166, - -0.1335098, - 0.047341272, - 0.031742714, - 0.051287886, - -0.18633217, - 0.09694327, - -0.12346327, - -0.08202507, - 0.09310883, - -0.11480236, - -0.047485813, - 0.05775828, - 0.087019995, - -0.03711282, - -0.15438835, - 0.08301412, - -0.041202743, - -0.03097501, - -0.05494575, - 0.012629362, - -0.033682607, - 0.08811649, - 0.05655931, - 0.03687326, - -0.2368226, - -0.10244637, - 0.13379839, - -0.025342451, - -0.21346806, - -0.037308905, - -0.05107832, - -0.04375295, - 0.05331055, - -0.07025133, - 0.1496776, - -0.03612365, - 0.056306228, - 0.03907451, - 0.069750555, - -0.042120375, - 0.05707189, - 0.1134039, - -0.13436985, - 0.09776684, - -0.0067630378, - -0.087216355, - 0.11033404, - 0.05874012, - -0.036621716, - 0.07430518, - 0.07642026, - 0.04229528, - -0.09769343, - 0.051870275, - -0.06565249, - -0.09431872, - -0.027940078, - -0.1127868, - 0.040414143, - 0.13407709, - 0.09575789, - 0.04909256, - -0.04062679, - 0.20587572, - 0.10304613, - 0.09420352, - 0.031616714, - 0.16135615, - 0.10437583, - 0.22548954, - -0.002636548, - -0.0077565797, - -0.034897525, - 0.0898877, - -0.12614346, - -0.18823786, - 0.09795185, - 0.03844642, - -0.21809886, - -0.20825605, - -0.13403304, - -0.052248865, - 0.19927946, - -0.14695364, - 0.06960482, - 0.11949699, - -0.041004967, - 0.15678911, - 0.038015623, - -0.14358555, - 0.22181511, - -0.02169569, - -0.08659955, - -0.058234237, - 0.0194019, - 0.12159071, - -0.14245601, - -0.04631151, - -0.10764819, - -0.01214393, - 0.0027703694, - 0.064927615, - -0.19143835, - -0.04892796, - -0.075102516, - 0.113577954, - -0.10459868, - -0.044142947, - 0.17542759, - -0.077777945, - 0.06065921, - 0.059552647, - 0.04637609, - 0.07876726, - 0.16932312, - -0.20207722, - -0.044170976, - 0.20079622, - 0.25525323, - 0.1306713, - -0.0395939, - -0.0031067869, - 0.04176683, - 0.09129249, - 0.086670265, - -0.1800823, - -0.016608212, - 0.10453479, - 0.05589615, - 0.12446122, - 0.025447106, - -0.12958065, - 0.05409235, - 0.08144426, - 0.10386657, - 0.014823291, - 0.044050463, - 0.0707843, - 0.075055495, - -4.1943043E-4, - -0.05919499, - 0.08640633, - 0.048117243, - -0.0031182277, - -0.072582655, - -0.10239002, - 0.031831298, - 0.030846167, - 0.01401099, - -0.11030908, - -0.08929597, - 0.0062319944, - -0.04766286, - -0.052726474, - -0.22240043, - -0.08664405, - -0.1961663, - -0.13119583, - -0.024288535, - 0.11066212, - 0.06541541, - -0.009248728, - -0.009153766, - -0.0056130574, - -0.005305009, - -0.03801975, - 0.028888613, - -0.039363805, - 0.06672243, - 0.08129661, - -0.15308622, - 0.011756104, - 0.14979665, - 0.005513315, - 0.05602203, - -0.035262953, - -0.039462697, - -0.0068827514, - -0.06791659, - 0.13735163, - 0.09373994, - -0.059762266, - -0.050514698, - 0.14816692, - -0.15519048, - -0.14540577, - -0.061140306, - 0.076832816, - 0.16470832, - -0.20321609, - -0.14575452, - 0.0038779033, - 0.084812485, - -0.07514544, - 0.07413151, - -0.091748275, - -0.014056828, - -0.039622, - 0.16192625, - -0.11587624, - 0.03787507, - -0.03004232, - 0.06345066, - -0.11096502, - -0.14284945, - -0.105204746, - -0.14602041, - 0.017806206, - 0.014772816, - -0.056545738, - -0.047223628, - -0.0960732, - 0.048470408, - 0.0324071, - -0.1416881, - -0.09403221, - -0.0015870552, - -0.016075678, - 0.05086638, - 0.044439662, - 0.035397813, - -0.042207107, - -0.052845884, - 1.06063206E-4, - 0.0311649, - -0.07508552, - -0.029307414, - -0.10010816, - 0.051780164, - -0.044023577, - 0.086593755, - 0.005179976, - -0.0039153243, - -0.11636277, - -0.092515886, - 0.046950825, - -0.1554215, - -0.14402653, - 0.029321603, - 0.037770964, - 0.18713647, - -0.1515294, - -0.04376118, - -0.07917167, - 0.033862665, - -0.046861775, - -0.14589141, - -0.066516735, - -0.090745606, - -0.08047109, - 0.07060058, - 0.08919031, - 0.15963161, - 0.014446653, - 0.07907282, - 0.057493936, - 0.18690605, - -0.046444107, - -0.034567807, - 0.0011355774, - -0.010259427, - 0.04256829, - 0.03415508, - 0.117785044, - -0.13565397, - -0.07762005, - 0.012465217, - -0.13263012, - 0.0087995175, - -0.008234084, - 0.08051112, - 0.14195345, - -0.013922311, - -0.014064757, - 0.09565475, - -0.030973226, - 0.0028266779, - -0.13241446, - 0.18164624, - 0.111232415, - 1.4969613E-5, - 0.043984182, - 0.021538438, - -0.03223435, - -0.019057237, - 0.10819485, - -0.0018882281, - 0.15419243, - 0.025645604, - 0.0685519, - 0.16525654, - 0.13293384, - -0.18925333, - -0.17646427, - 0.16275005, - -0.010003284, - 0.097167894, - -0.082376786, - -0.045664992, - 0.061713956, - -0.060831252, - 0.09250516, - 0.064177416, - -0.016893957, - -0.07711055, - 0.1635482, - -0.011797889, - -0.06539869, - -0.0066763177, - 0.09869172, - -0.04683032, - 0.16893344, - -0.041795813, - 0.0797819, - -0.08814661, - -0.1390254, - -0.21617651, - 0.038504664, - 0.018828819, - 0.16824676, - 0.088448666, - -0.04487566, - 0.10416338, - -0.103310876, - -0.028602246, - -0.03917171, - -0.12824833, - 0.055176303, - -0.04319489, - -0.15333629, - 0.18279395, - 0.07583459, - -0.034872808, - -0.14517184, - -0.017794836, - -0.059894633, - 0.1605901, - -0.10514427, - 0.1772145, - 0.0298778, - -0.20898117, - 0.028319895, - 0.02432218, - 0.10229881, - -0.16423357, - 0.041779097, - -0.06824924, - -0.035526454, - 0.06056135, - 0.040568348, - -0.08318581, - -0.002141802, - -0.16520357, - -0.09818601, - 0.04339393, - -0.008977715, - 0.07401948, - -0.043075908, - -0.030232491, - 0.15076123, - -0.1906714, - 0.06808409, - -0.10202565, - -0.03000779, - 0.01131412, - 0.018995253, - 0.14377229, - 0.16340478, - 0.06447178, - 0.15266967, - -0.0956032, - 0.020395832, - 0.07518247, - 0.017002653, - 0.12673916, - -0.12804039, - 0.06719076, - 0.21425699, - 0.07384468, - -0.092716195, - 0.097757414, - 0.32212856, - -0.01882945, - -0.004710108, - -0.07075162, - -0.00183881, - -0.14281225, - -0.010305066, - -0.0064020753, - -0.106441274, - 0.013895302, - 0.03464306, - -0.10223886, - 0.016331285, - -0.101089425, - 0.040382437, - 0.087661825, - 0.07443451, - 0.046443418, - 0.0035965329, - -0.034885217, - -0.037372474, - -0.27487728, - 0.044446852, - -0.11009708, - -0.06665166, - 0.07794339, - 0.0051599713, - -0.058613297, - -0.022657167, - 0.04066507, - -0.09510812, - 0.1099432, - 0.11895563, - -0.2173925, - 0.1063538, - -0.012046954, - 0.033708673, - 0.020885415, - -0.069011964, - -0.1420246, - 0.002538925, - 0.04157847, - -0.04972005, - -0.0023500253, - -0.0108262785, - -0.077088416, - 0.02173061, - 0.026826646, - 0.0014527421, - -0.017161582, - -0.02713599, - 0.0063319015, - -0.021409625, - -0.117951155, - -0.022053435, - -0.019900803, - 0.014517361, - 0.13010688, - 0.2060211, - 0.01865169, - 0.081484355, - -0.074259356, - -0.027017677, - 0.1007444, - -0.13710561, - -0.0018642778, - 0.0847975, - -0.10754362, - -0.20318128, - -0.025857924, - -0.109845355, - -0.075772166, - 0.057617016, - 0.13144667, - -0.17591861, - 0.053187076, - -0.10156307, - -0.06869338, - -0.05901667, - 0.09647346, - 0.042190336, - 0.059484273, - -0.080694675, - -0.06951573, - -0.16010523, - 0.0688116, - 0.09610696, - -0.0700935, - -0.1085175, - 0.09679163, - 0.0547936, - -0.03728304, - 0.1247877, - -0.13951616, - -0.12594067, - 0.044651303, - -0.06200508, - -0.13570923, - 0.1617973, - -0.008981491, - 0.07702823, - -0.083578, - -0.052878477, - -0.04228141, - -0.15967119, - -0.04650553, - -0.045344647, - -0.10881873, - -0.06293566, - 0.05601604, - 0.011075325, - -0.03688864, - -0.063506745, - -0.027008014, - -0.21435638, - -0.0015926384, - 0.12173337, - -0.025377316, - -0.10950563, - -0.040881153, - 0.026634064, - 0.15956044, - -0.07740409, - 0.0364053, - -0.07363211, - -0.14533232, - -0.12670785, - -0.16175123, - -0.01947134, - -0.054840054, - 0.14373161, - -0.103931926, - -0.010484353, - -0.115317374, - 0.044711363, - 0.10159261, - -0.06684757, - -0.006502772, - -0.09978355, - 0.055228427, - -0.050096292, - -0.06026887, - 4.564249E-4, - -0.0059063756, - -0.056281194, - -0.0013776948, - 0.10675993, - -0.033100046, - 0.05446832, - 0.09477708, - -0.023637544, - 0.10132932, - 0.16175814, - -0.024961667, - 0.022445286, - 0.07877556, - -0.09096663, - 0.05495158, - 0.049653072, - -0.21010666, - -0.008818829, - -0.0788183, - -0.048327886, - 0.049659032, - 0.06156717, - -0.003624578, - 0.0077525754, - 0.025003891, - -0.06861832, - 4.2475888E-4, - -0.09542041, - 0.019067328, - -0.053587623, - 0.008207735, - 0.20974842, - -0.0029604617, - 0.0560738, - -0.057444073, - -0.105364464, - -0.037323203, - 0.093931556, - -0.0044109733, - 0.023258803, - 0.123267494, - 0.001282285, - 0.12261941, - -0.005764788, - 0.017307974, - 0.030547868, - 0.02989522, - 0.10331871, - 0.1277482, - -0.020338487, - -0.024315216, - -0.10483997, - 0.3063269, - 0.02247023, - -0.02583223, - 0.09003336, - 0.0062698824, - 0.03821712, - 0.06601093, - -0.044884898, - 0.045642287, - -0.14663771, - -0.048955355, - -0.07430833, - -0.043922268, - 0.10101433, - 0.21477424, - -0.15915705, - -0.06722747, - -0.20385294, - 0.057515547, - -0.074554496, - -0.06125299, - 0.11275115, - -0.049809013, - -0.050999966, - 0.037241343, - -0.13147113, - -0.03369738, - 0.017625203, - 0.03085338, - 0.21365696, - -0.016768029, - 0.1669273, - -0.09323339, - 0.010461202, - -0.06027155, - 0.032438293, - 0.15549785, - 0.008989133, - 0.04049018, - -0.1145052, - -0.112926334, - 0.062808014, - -0.089872964, - -0.13796176, - 0.11123586, - -0.005552393, - -0.029856652, - 0.100304164, - -0.12688223, - 0.050432503, - -0.055566322, - -0.20533954, - -0.09034889, - 0.12459358, - -0.058767177, - 0.052292787, - 0.025229862, - 0.008686579, - -0.01581526, - 0.10793251, - -0.10825691, - -0.0047099614, - -0.14470726, - 0.039866302, - 0.17608204, - 0.017796485, - 0.11458472, - -0.114094004, - 0.22894043, - 0.055771984, - -0.20046753, - 0.007177568, - -0.008498222, - -0.15488319, - 0.074475855, - 0.027678762, - -0.11898206, - 0.17984118, - 0.14076245, - -0.07694025, - 0.0883057, - 0.00887011, - 0.026948713, - -0.09857058, - -0.086872146, - 0.1469315, - 0.101976894, - 0.21028623, - 0.02591962, - -0.022059027, - -0.15705071, - 0.18518768, - 0.13459435, - -0.044862375, - 0.044663344, - 0.008019489, - 0.038447253, - 0.12270391, - -0.017400512, - 0.09877011, - 0.032488573, - 0.1552797, - -0.09404382, - 0.14711271, - -0.013016175, - 0.008043403, - -0.015258226, - -0.18895155, - -0.005250898, - 0.1845794, - -0.101859316, - 0.022992745, - -0.034048732, - -0.0460297, - -0.08511422, - 0.038166344, - -0.042118534, - 0.09651406, - 0.023327446, - -0.06552336, - 0.15556115, - 0.09485965, - -0.087276146, - 0.021776907, - -0.16070753, - -0.19314396, - 0.15251695, - -0.08836466, - 0.05304873, - -0.108308986, - 0.015159816, - 0.07968769, - 0.016444553, - 0.100280024, - -0.08684828, - 0.010561429, - -0.06302162, - -0.047451466, - 0.05731474, - -0.07020883, - -0.025940347, - 0.034376144, - 0.09847224, - 0.036001876, - 0.094562605, - -0.07894491, - 0.014315479, - 0.091766946, - -0.01567821, - 0.05061255, - 0.08557947, - 0.02836614, - -0.022498569, - -0.02212427, - -0.001477778, - -0.1151798, - 0.032280795, - 0.1665609, - 0.0135395825, - -2.6944187E-4, - 0.046320003, - -0.08972904, - 0.051359653, - 0.14237177, - -0.049016774, - 0.14128725, - 0.08930066, - -0.06060869, - 0.01863242, - -0.041575994, - -0.1033998, - 0.14512669, - -0.08137644, - 0.041705567, - 0.02514088, - 0.046044134, - 0.11294068, - -0.1111152, - 0.039133843, - -0.024472678, - -0.066140756, - -0.042813282, - 0.060008395, - 0.0037774032, - 0.048549447, - 0.18103448, - -0.044848952, - -0.10476904, - -0.0011374205, - -0.057116963, - -0.14614023, - -0.07140184, - 0.006585492, - -0.06218666, - 0.077198885, - -0.13601393, - 0.026440267, - 0.009520753, - 0.0840545, - 0.024807533, - -0.045213226, - -4.6769425E-4, - 0.03198644, - 0.08217779, - 0.0038835471, - 0.06425064, - 0.07768622, - 0.00854267, - 0.014898832, - 0.008760737, - 0.13235238, - 0.10148755, - -0.06335285, - 0.06991006, - -0.031992063, - -0.11117447, - 0.003012436, - 0.08431214, - 0.06761156, - 0.04656163, - -0.07083292, - -0.06263493, - -0.057729475, - -0.077128455, - 0.007985732, - 0.051730357, - 0.036931578, - 0.0025838614, - 0.12798497, - -0.030574849, - -0.01776835, - -0.113173485, - -0.2043609, - 0.056091234, - -0.14412734, - 0.050826114, - 0.07637926, - -0.076416895, - -0.027756665, - 0.014775555, - -0.04061748, - 0.025729531, - -0.09141398, - 0.11286103, - 0.08342671, - -0.074501805, - 0.05758336, - 0.10238607, - -0.058487028, - -0.060043372, - -0.15166447, - 0.104903154, - 0.07117594, - 0.049419716, - -0.10161411, - -0.12235557, - -0.12580699, - -0.0071240216, - -0.09706304, - 0.01826452, - -0.15754521, - 0.070522524, - -0.2221934, - 0.07326321, - -0.09848836, - 0.011683861, - -0.072374456, - 0.09571599, - 0.06882982, - 0.02033816, - 0.2105731, - 0.047634214, - 0.113502115, - -0.025080893, - -0.074838266, - -0.13391075, - 0.10356976, - -0.09547045, - 0.10912113, - -0.08379471, - -0.026870748, - -0.19328643, - -0.006867021, - 0.059138965, - 0.15073408, - -0.0016208161, - -0.11787347, - 0.017871765, - -0.036893357, - -0.024539, - 0.04073063, - 0.004279721, - 0.03155374, - 0.1097767, - -0.06465338, - -0.022024704, - -0.100579694, - -0.041049313, - 0.055801507, - 0.38227722, - -0.08491866, - -0.10248992, - -0.10269686, - 0.06189412, - -0.01160846, - 0.20506024, - -0.07955589, - -0.11129659, - -0.10046044, - 0.18179749, - 0.031975165, - 0.10801143, - -0.06173019, - 0.08223205, - 0.013577993, - -0.006148861, - -0.06007795, - -0.030735645, - -0.034920376, - -0.0691714, - 0.01574902, - 0.04219539, - 0.006785247, - 0.07140331, - -0.045306887, - 0.082884915, - 0.06989011, - -0.052210033, - 0.04511856, - -0.07276109, - 0.03897667, - -0.33397466, - 0.091483526, - -0.138183, - -0.043615162, - -0.16278696, - 0.08061731, - 0.14134414, - -0.11750509, - -0.13995112, - -0.060402025, - -0.16752036, - 2.4311116E-4, - -0.029191107, - -0.0477008, - -0.104625925, - 0.059433535, - -0.03141981, - -0.030895423, - -0.036719333, - -0.07182456, - -0.17192914, - -0.06446782, - 0.18978092, - 0.0875728, - 0.10234741, - -0.05607267, - -0.07756159, - -0.17304987, - -0.13872932, - 0.04479391, - 0.028876126, - 0.07285227, - -0.067364395, - 0.19221576, - 0.077205606, - -0.03485956, - 0.004957501, - -0.13860062, - -0.008600482, - -0.002620494, - -0.049526844, - -0.03215409, - -0.09351575, - 0.027800571, - 0.06367279, - -0.15639615, - 0.04146103, - -0.13778013, - -0.112431996, - 0.09876303, - 0.12223263, - -0.02726282, - -0.05740264, - -0.0054959194, - -0.08733492, - 0.07371156, - -0.05084713, - 0.15198441, - -0.20876937, - -0.008975584, - -0.14492457, - -0.0073605096, - -0.14978434, - -0.13645916, - 0.005828092, - -0.050204244, - -0.030562278, - -0.13999847, - -0.020074045, - -0.0041028783, - 1.6373582E-4, - -0.12551178, - 0.010159087, - 0.012022855, - -0.12892899, - 0.054213755, - 0.11954666, - -0.005713015, - 0.08630532, - 0.025432318, - 0.11133602, - 0.17556503, - -0.13458745, - -0.032202344, - -0.103725165, - -0.05640161, - 0.1253602, - 0.046528485, - -0.2699616, - 0.029712483, - -0.08700576, - 0.15431716, - 0.021657942, - 0.095094554, - -0.07285173, - -0.087567955, - 0.07663075, - -0.08980655, - 0.017211197, - -0.062442906, - 0.1333424, - 0.16555358, - -0.12304022, - 0.11372787, - -0.1356508, - 0.0010268725, - -0.04129585, - 0.2079255, - -0.0762919, - 0.09478997, - 0.005511423, - 0.057668548, - -0.012631054, - 0.037975963, - 0.104010865, - 0.2512891, - -0.13432005, - 0.026401546, - 0.105248116, - -0.085010946, - -0.09688561, - -9.2748506E-4, - -0.09630448, - 0.08059325, - 0.07784724, - 0.045576084, - 0.050263748, - 0.034845136, - 0.14438479, - -0.07200053, - 0.029611869, - 0.06900855, - 0.019580867, - 0.08775789, - 0.074637555, - 0.11153383, - -0.115481876, - -0.06623728, - -0.0032548616, - 0.035494335, - -0.10980348, - -0.01843393, - -0.09691937, - 0.011457475, - 0.04883654, - 0.04201576, - 0.07933729, - 0.02292715, - -0.027767394, - 0.049838267, - -0.0050046323, - 0.060208406, - 0.093776, - -0.015662383, - 0.22392336, - -0.1410367, - 0.031322002, - -0.13825943, - 0.18487804, - 0.025907593, - -0.17748474, - 0.014424394, - 0.21681665, - 0.056763545, - 0.010412707, - 0.0633498, - -0.0076141832, - -0.05478952, - -0.021440517, - -0.1802919, - 0.08026335, - 0.027762834, - 0.16136032, - -0.09191114, - -0.05350165, - -0.10100633, - 0.047537528, - -0.23526011, - -0.08499258, - -0.06447283, - -0.12598571, - -0.092425734, - -0.02882353, - 0.045867495, - -0.123668, - -0.042100795, - 0.0046431883, - -0.0045536384, - 0.121841535, - 0.1341188, - -0.02469188, - -0.007157057, - -0.07243204, - -0.018049015, - 0.027461698, - -0.0030808025, - -0.0090776505, - -0.027934473, - 0.18332234, - -0.10617091, - -0.016937008, - -0.18208414, - -0.09050944, - 0.059922434, - -0.05841607, - 0.08057271, - -0.0037947567, - -0.03466454, - -0.05861928, - 0.05899361, - -0.104499176, - -0.11528714, - -0.058454446, - 0.0025245112, - -0.021131858, - -0.07997515, - -0.035042025, - 0.049306132, - -0.18132938, - 0.13647069, - 0.1342198, - -0.019848656, - 0.05130366, - -0.10091754, - -0.0064407494, - 0.09060668, - 0.052732933, - -0.0020212168, - 0.095095165, - -0.21230508, - 0.0061747897, - 0.007430256, - -0.062548585, - 0.04445724, - -0.07452007, - 0.124276154, - 0.15308976, - 0.17068139, - 0.0018519443, - -0.124001674, - -0.061576005, - 0.006883865, - -0.044618346, - -0.16892593, - 0.08338374, - 0.04927448, - -0.16133116, - -0.102304, - -0.033120524, - 0.08135114, - -0.013383748, - -0.045323048, - 0.077058814, - 0.08139948, - 0.072794355, - -0.0068564657, - -0.009311596, - -0.0029531606, - -0.02776183, - -0.1854012, - 0.12647869, - -0.035099685, - 0.18178119, - 0.076764084, - 0.043105744, - 0.13216597, - 0.05994575, - 0.09568629, - -0.006094049, - 0.14998865 - ], - "features2" : [ - 0.060522784, - 0.050204918, - -0.045269467, - -0.081362985, - 0.056188475, - 0.030304506, - 0.021404149, - -0.1485598, - -0.046742663, - -0.17306744, - 0.10716312, - -0.07044805, - 0.15964468, - 0.07857507, - -0.1875021, - 0.08659627, - -0.016831972, - 0.016344491, - 0.013684177, - 0.039841123, - -0.05891502, - 0.053626712, - -0.04346812, - -0.02888298, - -0.050559305, - 0.096338846, - 0.14055784, - -0.020569067, - -0.050316587, - 0.13730714, - 0.015711445, - 0.049792983, - -0.16947524, - 0.109486215, - 0.0021554343, - 0.022561416, - 0.051392112, - -0.020998724, - -0.11383943, - -0.07266021, - -0.026596267, - -0.123935685, - -0.016062154, - -0.048332177, - 0.015814181, - -0.045761198, - 0.033977836, - -0.0106747635, - -9.821515E-4, - 0.0014530062, - 9.3006203E-4, - 0.14838096, - -0.036763392, - -0.057585455, - 0.15871392, - 0.09195214, - 0.07562131, - -0.1152402, - -0.14675613, - -0.017018609, - -0.09754459, - 0.0822332, - 0.04158508, - 0.12679943, - 0.01002524, - -0.02117504, - -0.037292957, - -0.13483731, - -0.16710165, - 0.17023042, - 0.05434144, - -0.107219, - 0.19761436, - -0.010388839, - -0.046116926, - 0.060063157, - -0.022684343, - -0.14854445, - -0.12310665, - -0.025912497, - -0.04094641, - 0.03960862, - 0.0144081395, - 0.08980125, - 0.15791225, - 0.09059403, - -0.15155245, - -0.08201764, - 0.085368134, - 0.16787778, - -0.05888264, - -0.013312432, - 0.12192667, - -0.13434948, - 0.08486937, - -0.06611327, - -0.06815501, - 0.03829837, - -0.045274932, - 0.10827638, - 0.081192866, - 0.027012479, - -0.072417095, - 0.09398193, - 0.13065928, - 0.08965651, - -0.15085043, - 0.21752425, - 0.08487409, - 0.083563745, - -0.020728873, - 0.12417604, - -0.021161309, - 0.025978435, - -0.112630166, - 0.099991776, - -0.011583751, - -0.061691016, - 0.0647959, - 0.06667808, - -0.12019311, - 0.055979032, - 0.12830265, - -0.035721082, - -0.060603507, - -0.10510052, - 0.1076076, - -0.12878646, - -0.07445698, - -0.00260631, - -0.08012508, - -0.11077997, - 0.017531078, - 0.03514055, - -0.06772658, - -0.022307223, - 0.010414528, - 0.14355113, - -0.25077078, - -0.15270036, - 0.023965541, - 0.13786887, - -1.9587058E-4, - -0.08024183, - -0.13987193, - 0.018748268, - 0.013646269, - -0.17762944, - -0.056367744, - 0.121636555, - -0.077309445, - 0.063012086, - 0.06987855, - -0.077473655, - 0.09723205, - -0.0069986377, - -0.051511288, - -0.037398547, - -0.02554705, - 0.08568743, - 0.04406252, - 0.015038982, - -0.07697275, - 0.01798052, - 0.0034159156, - -0.16688538, - -0.15664892, - 0.011800314, - -0.032581557, - -0.19172648, - -0.06466852, - -0.1314404, - 0.031059073, - 0.11158789, - -0.028420668, - 0.03327029, - 0.0012033319, - -0.12680331, - 0.15490933, - 0.14552881, - -0.03829579, - 0.13675286, - 0.12569676, - -0.03634611, - 0.007843092, - -0.118350044, - 0.0012902651, - 0.035916097, - 0.0034082867, - -0.072499216, - 0.042719495, - -0.030288206, - 0.14872718, - 0.010552352, - -0.11460735, - 0.020063285, - -0.06652653, - -0.046794843, - -0.013638217, - 0.06882865, - -0.035917554, - -0.19472387, - -0.07568573, - -0.004723624, - -0.074586555, - -0.060893513, - 0.1528672, - 0.012246451, - -0.00578601, - 0.12562446, - 0.081089124, - 0.06605321, - -0.03465491, - 0.083426654, - 0.046720874, - -0.0631669, - -0.060650032, - -0.03958328, - -0.014746866, - 0.14998929, - -0.037670005, - -0.07998586, - 0.09351819, - 0.20366308, - -0.19274229, - 0.04600654, - -0.09658267, - -0.014032036, - -0.046209842, - -0.06953889, - 0.03254155, - 0.07049175, - 0.029495917, - 0.08025863, - -0.053710088, - 0.07838207, - 0.04270054, - 0.005583686, - 0.15083121, - 0.03827251, - 0.044842288, - -0.09923449, - -0.091860026, - -0.061910056, - -0.055253588, - 0.07483651, - -0.054633193, - -0.072860286, - 0.05091153, - -0.11516591, - -0.11517099, - 0.09231244, - -0.0052037486, - -0.08676937, - 0.0402509, - 0.03785807, - -0.090328015, - -0.024204379, - 0.17526606, - -0.0071584075, - -0.035401568, - -0.06932966, - 0.006851076, - -0.064025044, - 0.0505779, - 0.04831762, - 0.14289647, - 0.021458102, - -0.11704363, - -0.09041419, - -0.071550354, - 0.1667579, - -0.17320918, - 0.021840287, - 0.06775967, - -0.022483096, - -0.15311521, - 0.058095872, - 0.012796353, - -0.01717802, - 0.15209717, - -0.017031347, - -0.14577922, - 0.05021836, - 0.10537327, - 0.08842486, - 0.01824909, - 0.08057835, - -0.12768991, - 0.03499044, - -0.012640618, - 0.05013731, - 0.052687403, - -0.097863175, - 0.122152984, - 0.05972529, - 0.010652012, - -0.092871286, - 0.06223049, - 0.009426819, - -0.04901184, - -0.0053047454, - -0.022728067, - -0.15650779, - 0.064783074, - 0.017771099, - -0.17162696, - 0.024706686, - 0.06715071, - -0.06595925, - 0.026753698, - 0.016159788, - -0.15488435, - 0.14453548, - -0.17794324, - -0.0027457657, - -0.10694667, - -0.03546801, - 0.043353207, - 0.062962234, - 0.06489281, - -0.009926494, - 0.20281816, - 0.025896765, - 0.11855886, - 0.101210184, - 0.0056646653, - 0.1165966, - -0.10164575, - -0.030664383, - -0.052348066, - 0.0898929, - -0.16587093, - 0.18338612, - 0.0104119275, - 0.019228447, - 0.09526031, - 0.10140238, - 0.019630302, - 0.03745626, - 0.08786533, - 0.06657351, - -0.14067616, - -0.017912658, - 0.0017644134, - 0.065859005, - -0.025403649, - -0.014391225, - -0.008212874, - -0.023636274, - 0.13026282, - -0.08317084, - -0.020823002, - -0.17978367, - 0.0472007, - -0.21934792, - 0.015063873, - -0.05478044, - -0.13598444, - -0.091919385, - -0.111112535, - 0.033136554, - -0.0581722, - -0.01613158, - -0.19008806, - 0.10138345, - -0.0596856, - -0.113614894, - 0.045397177, - -0.067928694, - -0.00853551, - -0.13376752, - 0.076084375, - 0.116541386, - 0.09349665, - 0.009221154, - 0.12930954, - -0.092007644, - -0.05822586, - -0.062440924, - -0.024819756, - -0.14212458, - -0.036822308, - 0.108689986, - 0.08421704, - 0.03347356, - 0.09691581, - -0.03751642, - -0.08893492, - 0.036724783, - 0.061514087, - -0.05199057, - -0.043484684, - -0.071088836, - 0.03883536, - 0.046281442, - 0.09046187, - -0.01833615, - -0.023382675, - 0.090172365, - -0.010440541, - -0.06540532, - 0.099795, - -0.008331366, - -0.053154875, - -0.1388424, - 0.14083545, - 0.03697059, - -0.06986601, - -0.10238064, - 0.023147315, - -0.038745675, - 0.024333857, - 0.020461941, - 0.07416397, - 0.084087424, - 0.007042052, - -0.17279743, - 0.033906028, - -0.15269737, - -0.06083239, - -0.07114546, - 0.13529445, - 0.042910323, - 0.039389804, - 0.139069, - 0.016800351, - 0.029244978, - -0.03577265, - 0.018920051, - -0.21289524, - -0.12350965, - -0.037242293, - 0.08305065, - 0.06591234, - -0.04224301, - 0.033209268, - -0.08500804, - -0.1415813, - 0.16720879, - 0.08379045, - 0.026356582, - 0.0121704135, - 0.08160093, - 0.11160944, - 0.092681475, - 0.05281733, - 0.051797204, - -0.116161056, - -0.0035222387, - -0.12497744, - 0.059923753, - 0.017092366, - 0.10722168, - 0.0138008185, - 0.054538865, - 0.1514039, - 0.05929643, - 0.08457232, - 0.079855986, - -0.015697662, - 0.047996145, - 0.043902837, - -0.0021212273, - 0.09786341, - 0.01922422, - 0.024349665, - -0.18949518, - -0.0019204803, - -0.047779527, - -0.012269975, - 0.10813792, - 0.17382385, - -0.06752598, - -0.17258796, - 0.020187914, - -0.18684864, - 0.024027409, - 0.074596345, - -0.18251126, - -0.08283577, - -0.11279088, - 0.11442033, - 0.0456141, - -0.02391551, - 0.042779084, - -0.01073014, - 0.1815809, - 0.08335256, - -0.01992266, - -0.1237468, - -0.068383746, - 0.12460792, - 0.07186492, - 0.22202417, - -0.21603462, - -0.0138319535, - -0.018065803, - 0.06246065, - 0.086137034, - -0.10016653, - 0.09562026, - -0.14832896, - 0.04715329, - -0.10578995, - -0.12140865, - -0.011750805, - 0.06518242, - 0.09618548, - 0.09101815, - -0.17113653, - 0.14396332, - 0.24875575, - -0.1410343, - 0.036665067, - -0.014741987, - 0.12238197, - -0.10114008, - 0.03303479, - -0.26413664, - -0.18004572, - -0.05828178, - -0.04943365, - 0.15118697, - 0.0901835, - -0.012796631, - 6.298837E-4, - -0.20273596, - -0.15720908, - 0.014131217, - 0.10340705, - -0.058696263, - 0.07094519, - -0.07150188, - -0.17572132, - 0.13197081, - -0.14295287, - -0.04525452, - -0.022837013, - -0.11529026, - 0.16678804, - 0.14745773, - -0.02189866, - -0.08927988, - 0.015845027, - 0.10820118, - 0.003176074, - 0.0049556154, - -0.020677213, - 0.0053399396, - 0.11081205, - 0.0131367, - 0.010299954, - -0.021913212, - -0.015436972, - 0.11373687, - -0.004525401, - 0.075045645, - 0.19755362, - 0.083620444, - 0.09006982, - 0.103346825, - -0.08211631, - -0.09446135, - 0.042182356, - 0.090142146, - -0.045077063, - -0.02829732, - 0.06074641, - 0.0014133215, - 0.07944011, - -0.04989492, - -0.088593915, - -0.017678512, - -0.024086818, - -0.104948424, - 0.08972044, - -0.059382707, - 0.02223148, - 0.030394398, - 0.0047731604, - -0.14839649, - 0.043532692, - 0.020105872, - -0.00568854, - 0.09808943, - 0.049406547, - 0.13380723, - -0.046952292, - -0.075598285, - -0.030918084, - -0.024833199, - -0.1201601, - 0.014611349, - -0.004532881, - 0.07390571, - 0.021348827, - 0.0588524, - 0.30372548, - -0.18350564, - 0.03531864, - 1.0607764E-6, - 0.09310691, - 0.040631954, - -0.03802033, - -0.020301992, - -0.13879915, - 0.016427368, - 0.18333022, - -0.031661887, - -0.016299253, - -0.07427003, - -0.05533617, - -0.10523387, - 0.115713455, - 0.04377093, - 0.033210173, - 0.04124075, - -0.03748012, - 0.06360779, - -0.096383184, - -0.039705224, - 0.11385401, - -0.050887533, - 0.08651343, - 0.065204404, - 0.09411219, - 0.21293655, - -0.07878695, - 0.027959736, - -0.047136977, - 0.057968393, - 0.015240189, - 0.028593088, - 0.1050441, - -0.082782015, - 0.11215339, - -0.019573763, - 0.021934878, - -0.054761197, - -2.578909E-4, - -0.005153434, - -0.21174616, - -0.09264222, - 0.20123899, - 0.06719672, - -0.0311707, - -0.03714396, - -0.0064047542, - 0.09891059, - 0.035020337, - 0.08695174, - 0.13659222, - 0.087242566, - -0.024151342, - 0.06435465, - 0.03421793, - 0.017342573, - -0.10425192, - -0.18052484, - 0.0074268323, - 0.07600949, - -0.017470565, - -0.011895897, - 0.14772491, - -0.01472166, - -0.056693774, - -0.16940431, - 0.10101363, - 0.06974827, - -0.08908421, - 0.25932366, - -0.0020485218, - 0.18224749, - 0.0022789536, - -0.046742678, - 0.010041058, - 0.031340767, - -0.04129533, - -0.1900825, - 0.21294957, - -0.08760362, - -0.045727655, - 0.021925664, - 0.025100337, - 0.076576926, - 0.042096343, - -0.011368628, - -0.008906466, - -0.09437247, - -0.08333189, - 0.074157774, - -0.006220411, - -0.08163318, - 0.0011189873, - -0.059961632, - -0.08403931, - 0.024062883, - -0.031158838, - -0.20052743, - 0.09312953, - 0.046148635, - 0.033395927, - 0.027031384, - -0.022072751, - 0.047395263, - 0.10088682, - 0.049672887, - 0.07892375, - 0.010249784, - -0.017681392, - 0.010171886, - -0.049323443, - 0.053749524, - 0.12823863, - -0.056044098, - -0.09590123, - 0.046903178, - 0.018157197, - 0.010488981, - -0.07876034, - -0.14938326, - -0.14548066, - 0.05543696, - 0.06826268, - 0.15437752, - 0.19243337, - 0.02779284, - -0.039716624, - -0.011722957, - -0.08922762, - 0.09668273, - -0.2908784, - 0.1349235, - -0.013793988, - 0.052526545, - -0.06581972, - 0.07061978, - 0.015029835, - -0.023248145, - -0.1279255, - -0.020246873, - -0.08719836, - -0.12708384, - 0.0032062733, - 0.11394306, - -0.013108164, - 0.14189889, - -0.06711391, - -0.17356306, - 0.055738408, - -0.15732414, - 0.0071681184, - 0.09199245, - 0.061743367, - -0.032047044, - 0.07623911, - 6.1915023E-4, - -0.028878743, - 0.0039466075, - 0.0010188513, - -0.13254517, - -0.10681716, - 0.060922768, - 0.04713329, - -0.17450932, - -0.088240124, - 0.107886724, - 0.15043211, - 0.0113133155, - 0.030464321, - 0.023734856, - -0.11492583, - -0.09820643, - -0.04448007, - 0.0947285, - 0.054028433, - -0.043646406, - -0.054385826, - -0.004767271, - 0.06696034, - -0.033436902, - -0.04536279, - 0.003651566, - 0.1653011, - -0.057762727, - 0.024292285, - -0.17672445, - 0.06946125, - -0.07281417, - -0.039476767, - -0.046138514, - -0.037438754, - 0.14614423, - -0.15584898, - -0.030293468, - -0.0028289948, - -0.06017633, - -0.07426944, - 0.04039729, - -0.07146033, - 0.040541798, - -0.024868788, - 0.15178499, - -0.050204434, - -0.039658275, - 0.0053935135, - -0.08473946, - 0.03897953, - 0.043392718, - -0.067755155, - -0.08603923, - 0.024023885, - 0.103270635, - 8.442234E-4, - 0.002761954, - 0.025648773, - 0.03841255, - 0.08080139, - -0.08506629, - 0.015053438, - -0.19910216, - 0.07227029, - 0.028204627, - -0.22085488, - -0.10719129, - -0.07332902, - -0.11371621, - 0.22226939, - 0.14963004, - -0.003258654, - -0.043450482, - -0.049383745, - -0.1016365, - -0.0998982, - -0.04878048, - 0.054467224, - -0.149293, - -0.036993217, - -0.042710632, - 0.09016077, - -0.019898418, - 0.031509984, - 0.007841185, - -0.03311218, - -0.05455707, - -0.01706108, - -0.1660904, - 0.056897607, - -0.0013642819, - -0.1243648, - -0.1476844, - 0.046531036, - -0.09861209, - -0.077462465, - 0.06115861, - -0.07819992, - 0.039265778, - -0.0879089, - -0.11459737, - -0.07101933, - -0.1114033, - -0.07601865, - 0.054012198, - -0.10257898, - -0.083680935, - 0.06617914, - 0.09168475, - -0.069838084, - -0.10883879, - -0.2029275, - -0.16181459, - -0.06975156, - 0.061370373, - -0.0052907364, - 0.20417948, - -0.029738914, - 0.023524344, - 0.09072046, - 0.07008512, - 0.014986708, - 0.07598309, - -0.042784177, - 0.031474713, - -0.0756765, - -0.021395715, - 0.058299594, - -0.043789566, - 0.030813709, - 0.009621785, - 0.051731706, - -0.1280754, - 0.04076007, - 0.15961584, - 0.08495253, - -0.18624896, - -0.0041588754, - -0.043788247, - -0.08042638, - -0.03302348, - -0.11890757, - 0.051480047, - 0.04034305, - -0.014613412, - -0.13777995, - 0.058130447, - -0.0053391512, - -0.048504855, - 0.1909525, - 0.07215936, - -0.017545737, - 0.042149477, - -0.04884205, - -0.17513765, - 0.044965018, - 0.03213972, - 0.07477721, - -0.36434275, - -0.08231615, - -0.07295643, - -0.04204548, - -0.15611863, - -0.0868788, - 0.09017101, - -0.02455576, - 0.0798228, - -0.12840684, - 0.16849554, - 0.10774393, - 0.14114793, - 0.09603852, - -0.21291669, - -0.081003726, - 0.020494666, - -0.018451313, - 0.09600774, - 0.19568214, - -0.23563893, - -0.2397101, - 0.11029763, - -0.061503332, - -0.01878856, - 0.019610122, - -0.0274052, - -0.14453012, - -0.08802638, - -0.055760488, - -0.020532575, - 0.06893536, - 0.101824224, - -0.017627817, - 0.024106024, - -0.00317313, - -0.026020616, - -0.0031858096, - -0.07695917, - -0.041357018, - 0.049323417, - -0.09660162, - -0.16797677, - 0.009489684, - 0.0012199897, - 0.1212214, - 0.013062423, - -0.10055478, - 0.051098727, - -0.06282643, - 0.101342455, - 0.012864886, - 0.22809793, - -0.02535678, - -0.114976734, - 0.0728895, - 0.038846295, - -0.05922432, - -0.0028069273, - 0.03405704, - -0.0015468705, - 0.03282928, - 0.02617485, - 0.1307045, - 0.009288179, - -0.02421555, - -0.012203723, - 0.097580984, - 0.0035181905, - 0.014993086, - 0.08317547, - 0.011826407, - -0.27408212, - 0.12799318, - 0.07294099, - -0.037310284, - 0.046286896, - -0.005153937, - -0.0034915414, - -0.13973755, - -0.07892982, - -0.16763861, - 0.06659537, - -0.065068945, - -0.22046717, - 0.10146896, - 0.062223095, - -0.04765636, - -0.003858065, - 0.015341286, - -0.033318285, - -0.081244044, - 0.11928924, - -0.08486308, - 0.038331658, - 0.1754793, - -0.047319114, - -0.105370946, - -0.02618435, - -0.0048848717, - 0.01118502, - 0.0975544, - -0.04628058, - 0.24185587, - -0.10749008, - 0.013506774, - -0.053184707, - 0.026367491, - -0.04137229, - -0.07192424, - 0.034836844, - -0.033572495, - 0.06253979, - 0.12408567, - -0.076059006, - -0.030706424, - -0.008986939, - -0.2035467, - -0.041387316, - -0.16178544, - 0.0026020398, - -0.16738844, - 0.017343443, - 0.15944317, - 0.013860846, - 0.031042028, - -0.21570133, - 0.0059425514, - 0.111651115, - -0.10072145, - 0.07152117, - -0.10312772, - -0.10300234, - 0.0022643907, - -0.10626422, - -0.1633904, - 0.058147393, - 0.041545134, - -0.08766326, - -0.059806287, - 0.057639908, - -0.018540768, - -0.17058454, - 0.034657255, - 0.051195476, - -0.08210925, - 0.1038063, - 0.016300634, - -0.07258469, - 0.027574528, - 0.18715353, - -0.0016717613, - 0.12761588, - 0.09131621, - -0.023407884, - -0.057167917, - 0.11282463, - 0.013787357, - 0.15239654, - 0.056328535, - -0.041770373, - 0.10356395, - -0.080759294, - 0.079891264, - -0.08932576, - -0.03252665, - -0.13829948, - 0.10356849, - 0.2980583, - 0.0547103, - 0.1245863, - 0.05978995, - 0.011937337, - 0.009526644, - -0.062477447, - 0.113360696, - 0.03974468, - -0.10688612, - -0.13194795, - -0.087836504, - -0.04047262, - 0.07094072, - -0.06894205, - 0.06383042, - -0.030534651, - -0.028084125, - -0.044909332, - -0.13789704, - 0.030555012, - -0.0062627653, - -0.104233794, - -0.07677003, - 0.1360989, - 0.13559856, - -0.11084909, - -0.119770035, - -0.06835381, - 0.015026797, - -0.037765324, - 0.035747148, - 0.012388466, - 0.03984812, - -0.03925524, - -0.034986936, - -0.011277432, - 0.09672251, - -0.19396776, - -0.0027470365, - 0.0015190117, - -0.0029125353, - 0.10167896, - 0.09418778, - -0.11834382, - 0.01744759, - -0.007298288, - 0.012856266, - 0.06528818, - 0.038674414, - -0.10443107, - -0.11106262, - -0.1932882, - 0.06459372, - 0.04012297, - 0.03249372, - -0.014451193, - -0.0064646574, - -0.0436532, - 0.066894166, - -0.1845224, - -0.16521978, - 0.16542043, - 0.06750706, - 0.1102729, - -0.06081782, - -0.018524742, - -0.2427926, - -0.032520726, - -0.13381067, - -0.06481391, - 0.24593094, - -0.09600106, - -0.0060516344, - -0.004167365, - 0.06614734, - 0.017365512, - 0.022833101, - -0.10829943, - 0.17756584, - 0.045087427, - -0.03720041, - -0.12553032, - 0.12291271, - -0.14574698, - -0.028041895, - 0.1055952, - 0.21858676, - 0.104836114, - -0.02423846, - 0.009725612, - 0.11818481, - -0.07978743, - -0.012282679, - -0.12643914, - 0.0063433307, - 0.089155905, - -0.11447743, - -0.10777189, - 0.03306678, - 0.054338817, - -0.048529852, - -0.11567528, - 0.0929937, - 0.029823186, - 0.069963954, - -0.061325826, - 0.111559086, - -0.05530263, - 0.033616263, - -0.060019907, - -7.3049014E-5, - -0.04458226, - 0.2444008, - -0.08674562, - 0.062163122, - -0.049578827, - -0.10477105, - 0.1781767, - 0.02210472, - -0.14231972, - -0.032923814, - -0.050896782, - -0.081414476, - -0.150192, - 0.16560157, - 0.037994053, - 0.059872672, - -0.06470991, - 0.030876774, - -0.06904676, - 0.15682697, - 0.09170533, - -0.060874205, - -0.024684926, - 0.10563118, - 0.08177159, - 0.021182235, - -0.13521959, - 0.09150196, - 0.06719472, - -0.029591417, - -0.09847182, - 0.1690245, - -0.09982527, - -0.15186319, - -0.12065467, - 0.06845641, - -0.12635902, - 0.22360276, - 0.029461052, - 0.066780366, - -0.037478972, - 0.11364351, - 0.1077622, - -0.026111826, - 0.15326479, - 0.14776891, - -0.19692531, - -4.7814474E-4, - -0.13731119, - 0.015803399, - 0.07967312, - -0.1371023, - 0.054074608, - 0.09956493, - -0.0529475, - -0.05049467, - -0.14010587, - 0.016021939, - -0.06326687, - 0.11682046, - 0.02319375, - 0.015294906, - 0.037678387, - 0.17886128, - -0.08116101, - 0.04850799, - 0.21443191, - -0.018486828, - -0.1452887, - 0.013799469, - 0.069500275, - -0.011139819, - 0.13924973, - -0.060942262, - -0.015655657, - -0.047081333, - 0.0023633745, - 0.10291956, - -0.038517468, - -0.07447142, - 0.0211088, - 0.14797875, - -0.029400522, - -0.08194309, - 0.062838875, - -0.0032177405, - 0.10172253, - 0.15784661, - 0.021416351, - -0.0036378293, - 0.00915922, - 0.15304396, - 0.08982532, - 0.09555944, - 0.157214, - -0.044332843, - -0.030495381, - -0.11782026, - 0.10423651, - 0.044617195, - 0.16376098, - -0.09027827, - -0.14145872, - 0.10436414, - -0.10720351, - 0.063945025, - -0.18580298, - 0.011003342, - 0.06519773, - 0.10207277, - 0.19986911, - -0.021520222, - -0.006744151, - -0.052674644, - 0.005334912, - -0.016713083, - -0.1903381, - 0.006400128, - 0.13148472, - 0.06172353, - -0.20117576, - -0.12824692, - 0.07014698, - 0.057765514, - -0.019079177, - 0.13622989, - -0.11179873, - 0.16022496, - -0.05619391, - 0.040550884, - 0.030368375, - 0.020305227, - -0.047354467, - 0.16094755, - -0.0036150059, - 0.084957674, - 0.103863284, - -0.023189822, - -0.028201628, - 0.0033015674, - -0.24479093, - 0.026439752, - -0.038639475, - -0.033596687, - -0.12457568, - 0.010946553, - -0.087738216, - 0.074282184, - -0.056496263, - -0.007115636, - 0.07427691, - -0.02873869, - -0.13254386, - -0.02435735, - -0.055294495, - -0.050259367, - -0.027704064, - 0.2121993, - -0.014451987, - 0.03642486, - 0.18461911, - 0.0971001, - 0.009588814, - -0.015672248, - -0.10687897, - 0.07858644, - 0.07047295, - 0.13318208, - -0.25628415, - 0.005519939, - 0.062053032, - 0.022657424, - -0.11433849, - 0.062105875, - -0.04418965, - 0.0031073624, - 0.19036968, - -0.077364534, - -0.010702386, - -0.027111825, - 0.009752114, - -0.032027382, - 0.29880324, - -0.01702074, - -0.0761264, - -0.017568098, - -0.21370238, - 0.11376839, - 0.15253238, - -0.025188027, - 0.054584797, - -0.020504607, - 0.067340314, - -0.05243961, - -0.002224699, - -0.13107048, - -0.12405447, - 0.114232846, - -0.10411956, - 0.055636212, - -0.21611018, - -0.0031378302, - 0.068191715, - -0.22261916, - 0.018491415, - 0.08343154, - 0.022407278, - -0.0013978416, - -0.12438538, - -0.051159598, - 0.05371521, - 0.104652844, - 0.1699713, - -0.022986706, - 0.09402124, - -0.04274912, - 0.094590954, - -0.02086518, - -0.058694314, - -0.032262422, - -0.094758615, - -0.12049047, - 0.10764608, - -0.0456516, - -0.012089038, - -0.083223976, - 0.009729227, - 0.022844397, - 0.056192115, - 0.03600498, - -0.0059665153, - -0.11029928, - -0.073785424, - -0.0067412583, - 0.19138575, - 0.054064196, - 0.04937045, - 0.080191255, - 0.035295036, - 0.0071126744, - 0.09997019, - -0.1375763, - -0.08362008, - -0.03423363, - 0.13082616, - -0.058266796, - -0.09014177, - -0.0034519292, - -0.13407706, - 0.06852769, - 0.030827612, - 0.06753088, - -0.055931292, - 0.0062515433, - -0.16401428, - -0.065946534, - 0.02885748, - 0.023875792, - 2.462212E-4, - -0.021317082, - 0.119936734, - 0.15749069, - -0.047139198, - -0.11181397, - 0.1341552, - 0.11455325, - 0.0030173156, - 0.04440341, - 0.06596149, - -0.04363563, - 0.14031473, - -0.24281982, - 0.08573094, - 0.0026423614, - 0.012977785, - 0.03884566, - -0.014178231, - 0.03504595, - -0.04504161, - 0.0035116323, - 0.08068098, - -0.115900986, - 0.055875417, - 0.019976186, - -0.05533694, - -0.20664413, - -0.17024167, - -0.13064325, - -0.075011164, - 0.010763605, - -0.006540472, - 0.051132046, - 0.014727095, - -0.07461267, - 0.08599003, - 0.033997767, - -0.06693146, - 0.003565519, - 0.17126644, - -0.02943331, - 0.0599522, - -0.009189021, - 0.16110423, - -0.041456774, - 0.055858474, - 0.15905736, - -0.013188736, - 0.15545407, - 0.11236782, - 0.010051817, - -0.01289464, - -0.082768455, - 0.07719978, - -0.01824692, - -0.04788506, - 0.0041292426, - 0.08704554, - -0.20033728, - 0.12562537, - -0.057196725, - 0.13135716, - -0.13589, - 0.022114607, - -0.11110644, - 0.024382489, - 0.026876625, - 0.03379302, - -0.1309897, - 0.13339101, - 0.0691063, - 0.06993821, - -0.057243034, - -0.15345128, - -0.12532054, - 0.030342564, - -0.0201547, - -0.16265939, - -0.06299454, - 0.133824, - 0.07033274, - -0.13187751, - -0.026272021, - -0.15426254, - -0.14197373, - -0.1259826, - -0.0023215287, - -0.086775064, - 0.12907323, - -0.017058328, - -0.023458531, - -0.027318958, - -0.049325246, - 0.12484716, - -0.07748619, - -0.011851733, - 0.057825215, - 0.110945985, - 0.01633021, - 0.04322828, - -4.6704337E-4, - 0.14955808, - -0.07738438, - 0.029419528, - -0.06438465, - -0.17312072, - -0.12876642, - 0.09414071, - -0.06893439, - -0.08639586, - 0.07097384, - 0.0743796, - 0.04425907, - -0.007690389, - -0.027768036, - -0.018915907, - -0.056655034, - -0.073286384, - -0.023973389, - 0.1874931, - 0.014163133, - 0.0131483795, - -0.04955135, - -0.26291984, - -0.08381257, - 0.1136308, - 0.062283337, - 0.0062417164, - 0.053919725, - 0.10750962, - 0.017051555, - 0.030543147, - 0.17807475, - -0.01970667, - 0.06267185, - -0.039938826, - 0.061611068, - -0.101268865, - -0.012086479, - -0.13283081, - 0.12111047, - -0.04644875, - 0.012188875, - -0.0077823224, - 0.0396395, - -0.007420753, - 9.695841E-4, - 0.13570693, - -0.040390093, - 0.06237384, - -0.057153746, - -0.031218663, - 0.05940003, - -0.15409572, - 0.063242376, - -0.09534337, - -0.051666237, - -3.9809302E-4, - -0.06329942, - 0.06308269, - -0.04471722, - 0.07492349, - 0.07069969, - 0.088888824, - -0.1510263, - 0.04064024, - 0.110373594, - 0.049474802, - 0.13308342, - -0.07823238, - -0.0050365888, - -0.06760941, - -0.015277519, - -0.10058727, - 0.053365562, - -0.030550338, - 0.060928784, - 0.007978887, - -0.006836908, - -0.007949794, - 0.16384985, - -0.009536713, - -0.11433042, - -0.056856263, - -0.13005705, - -0.10319989, - 0.1629978, - 0.114785545, - 0.116036765, - -0.06733981, - -0.07809846, - 0.040881667, - 0.046347875, - -0.029276319, - 0.07601741, - -0.1298621, - 0.039850306, - -0.069975875, - -2.1550804E-5, - 0.0047319946, - 0.101074114, - -0.008487794, - -0.14476287, - 0.15137413, - 0.09749198, - -0.05997735, - 0.020203281, - 0.01721933, - 0.0709007, - 0.026898218, - -0.01993606, - 0.037391458, - -0.11512123, - -0.06933578, - 0.13141277, - 0.011858229, - 0.044476364, - -0.1330015, - -0.02221955, - -0.043412864, - -0.16790368, - -0.1012633, - -5.495744E-4, - 0.011607127, - 0.15198886, - -0.037340388, - 0.10879613, - -0.020668805, - -0.054319777, - -0.02008848, - 0.008512656, - -0.10508797, - 0.074346125, - -0.0057352018, - -0.07551855, - 0.12787962, - -0.063439034, - 0.047941074, - -0.03656421, - 0.017909251, - 0.17198531, - 0.13552223, - 0.09837404, - 0.018091224, - 0.16548531, - -9.2545815E-4, - -0.09428007, - 0.06758692, - 0.1183318, - -0.048448488, - -9.969026E-4, - 0.048128124, - 0.18641832, - 0.119762026, - -0.10938495, - 0.1481661, - 0.06623023, - -0.13046263, - 0.04789489, - -0.16455433, - -0.070907645, - 0.011074719, - 0.18349978, - -0.15960266, - 0.0054673473, - 0.0089455005, - -0.041468687, - -0.15351552, - -0.114527725, - -0.14686827, - 0.029606162, - 0.050566792, - 0.12728068, - 0.12639137, - -0.18663757, - -0.059437428, - -0.030961702, - -0.0052887034, - 0.1090742, - -1.982497E-4, - 0.008216636, - 0.011950487, - 0.1891158, - -0.1857137, - -0.16216137, - 0.15651566, - 0.0794235, - 0.029368108, - 0.10744878, - 0.030333413, - -0.09346868, - 0.030553525, - -0.14514424, - 0.28114194, - 0.07955288, - 0.03426616, - -0.14377432, - -0.01569405, - 0.0023327088, - 0.10638223, - -0.07828627, - 0.11200816, - 0.026009528, - 0.095645964, - -0.15612529, - 9.118665E-4, - -0.117584504, - 0.077643745, - 0.039787855, - -0.0723387, - -0.09524811, - 0.016836496, - -0.03216687, - -0.08221455, - 0.08092127, - -0.25879562, - 0.0050594117, - 0.09698153, - 0.15641558, - 0.02610651, - 0.09905262, - 0.10884464, - -0.017087929, - -0.015404935, - -0.029878298, - 0.08058977, - -0.110243365, - 0.1684332, - -0.03501021, - -0.053528436, - 0.027526857, - -0.027201131, - 0.09148244, - 0.08967215, - 0.18765368, - 0.026388958, - 0.049501564, - 0.0018932228, - 0.047999784, - 0.043729417, - -0.059131775, - -0.20039763, - -0.069701426, - 0.054049183, - -0.051292337, - -0.15604132, - 0.06552316, - -0.014031522, - 0.039025526, - 0.01289816, - 0.15021977, - -0.09277181, - 0.032660957, - -0.0982168, - 0.103950195, - -0.15437652, - -0.1654464, - -0.010065235, - -0.0797122, - 0.056365732, - 0.081021786, - -0.07119557, - -0.10448978, - -0.054243986, - 0.10748956, - 0.1833659, - 0.084783286, - 0.10419793, - 0.08882611, - 0.027773391, - 0.084238686, - -0.02647889, - 0.12310276, - -0.040742233, - -0.03594034, - 0.1946778, - 0.023900215, - 0.003997228, - 0.058528267, - 0.004997531, - -0.11014403, - 0.15024307, - 0.022400796, - -0.004566793, - 0.064992934, - -0.01241692, - 0.122761555, - -0.07897314, - 0.054096624, - -0.2010124, - -0.038023017, - -0.048544403, - 0.10757288, - -0.007843662, - -0.111768045, - 0.044257365, - 0.076636545, - 0.102031015, - -0.040467333, - 0.018668255, - 0.12520057, - -0.0065222206, - -0.05163076, - -0.0021522597, - 0.0076468554, - -0.08682274, - -0.062073343, - 0.09603103, - 0.096453555, - -0.014685367, - 0.07809385, - 0.14058825, - -0.056603972, - 0.052751325, - 0.15219697, - -0.034277238, - 0.16377607, - -0.08917284, - -0.16505559, - -0.075853646, - -0.07311964, - 0.0868836, - 0.12196374, - 0.02518953, - 0.004655997, - 0.013247592, - -0.010256721, - -0.024121834, - -0.09575141, - 0.069990136, - 0.09426634, - 0.14965063, - 0.0043030865, - -0.07302719, - -0.11292025, - -0.06638139, - -0.09729027, - 0.05801918, - -0.11303328, - -0.045038983, - 0.055511076, - 0.025919992, - 0.014504004, - -0.09129593, - 0.12915896, - -0.13288559, - -0.21616782, - 0.09132886, - 0.13111955, - 0.06212696, - 0.20061463, - -0.111766145, - 0.056399416, - 0.046675306, - 0.17964292, - -0.16823553, - -0.021842834, - 0.065084845, - -0.072536424, - -0.00652827, - 0.1205654, - -0.0022717167, - 0.078509055, - 0.19119398, - -0.063477, - -0.05350487, - 0.076688506, - 0.10885922, - 0.007237319, - 0.11067468, - 0.0046626544, - 0.04353082, - -1.4016553E-4, - -0.0042115166, - -0.009082243, - 0.037436992, - 0.044707447, - 0.030157771, - 0.16826221, - 0.100823365, - -0.018184684, - -0.0811055, - 0.018273968, - 0.049377885, - 0.07715812, - 0.08836389, - -0.029391138, - -0.07948189, - 0.0925192, - -0.11315354, - -0.1527703, - 0.20060143, - -0.0075370446, - 0.09459348, - -0.025842937, - 0.003677249, - 0.13439192, - -0.040732786, - 0.04604433, - 0.093146734, - -0.15294862, - 0.11694655, - -0.04338146, - -0.19938178, - -0.035844464, - -0.11841268, - 0.102970496, - -0.07508043, - 0.06499777, - 0.13411316, - -0.07940301, - -0.02141882, - -0.24215524, - 0.05923305, - -0.011403378, - -0.09952497, - 0.047545206, - 0.11313382, - 0.044970606, - -0.07000158, - 0.060456704, - 0.07192568, - -0.14713368, - -0.057067856, - 0.021123273, - 0.09647391, - -0.08841605, - 0.17152208, - 0.037920985, - 0.010259949, - -5.649375E-4, - -0.0831573, - 0.01840682, - 0.064731255, - 0.08116818, - -0.009509098, - 0.08849026, - 0.053948835, - 0.021944936, - 0.0015260177, - -0.1448537, - 0.12239932, - -0.06648011, - 0.01610976, - 0.19868653, - 0.05066339, - -0.14072038, - -0.21774931, - 0.05452883, - -0.001476668, - -0.115333565, - -0.09303445, - -0.0327089, - 0.044086073, - -0.039549325, - 0.045249652, - -0.003504016, - -0.13223413, - 0.046473727, - 0.08160305, - -0.023216499, - -0.11603649, - -0.060726453, - -0.02505553, - 0.0019668923, - 0.09669531, - -0.13939176, - 0.004280518, - 0.13116363, - 0.055124123, - -0.023917306, - 0.110015854, - -0.03530567, - -0.01964858, - 0.09573641, - 0.09783217, - -0.051494528, - -0.08683556, - 0.023949351, - -0.037122812, - -0.07840992, - 0.16084296, - -0.0016927421, - 0.037186764, - -0.059649576, - 0.061464824, - -0.068662204, - -0.015621722, - 0.04265257, - 0.10892992, - 0.10414146, - -0.08399714 - ], - "reducedFeatures" : [ - 0.002608489, - 0.015251031, - -0.025996845, - -0.018338539, - 0.046384152, - -0.053278927, - -0.015235639, - 0.040105868, - -0.04380074, - 0.045930248, - 0.010488831, - -0.015233987, - 0.0029966473, - -0.040687017, - -0.0049057477, - 0.03052113, - 0.0034278396, - -0.06252046, - -0.071263075, - -0.012297659, - -0.014395241, - 0.01506709, - -0.0017632158, - 0.01489904, - -0.005726954, - -0.024982948, - 0.01650224, - 0.005668818, - -0.0015069367, - -0.0048744767, - 0.021864224, - 0.027775168, - 0.007216623, - -0.026777426, - -0.019995665, - -0.026877534, - 0.021040201, - 0.025219414, - -0.0032583962, - -0.025095625, - -0.002043142, - -0.031062454, - 0.008062654, - -0.041425116, - 0.011974261, - 0.06819938, - 0.0062884283, - 0.008026462, - 0.009838042, - 0.042996757, - -0.03871688, - 0.03716952, - -0.023797804, - 0.0071115787, - -0.028947495, - 0.021343224, - -0.0105732605, - -0.0052484977, - 0.03462643, - -0.06330738, - 0.01361247, - 0.02823162, - -0.026054943, - -0.0029330016, - 0.0021607247, - 0.04245238, - -0.037439566, - -0.026154127, - -0.010559442, - -0.038508125, - -0.075788505, - 0.043972682, - -0.060180258, - 0.043336168, - 0.006185261, - 0.029522503, - -0.006710858, - -0.013823654, - 0.0031763453, - 0.044389598, - 0.042753, - -0.030692946, - -0.04022748, - 0.053610433, - -0.0018193868, - 0.0029925425, - 0.013815706, - 0.01481171, - 0.043508735, - -0.039874848, - 0.03180996, - -0.0444319, - 0.025205836, - 0.024932805, - -0.023232492, - 0.017104177, - 0.00197799, - -0.0038777008, - -0.02106601, - -0.031662192, - -0.0040499223, - 1.3371922E-4, - -0.02178685, - -0.030144287, - 0.01657572, - -0.03580914, - 0.017589392, - 0.009869823, - -0.0013451037, - 0.016412511, - 0.019561939, - -0.0116839, - -0.019521415, - 0.008164602, - -0.059268795, - -0.07024488, - 0.014645021, - 0.0067576226, - 0.0027941896, - 0.04555693, - -0.03550154, - -0.0409389, - -0.016988903, - 0.02409752, - -0.035540782, - 8.4677764E-4, - 0.03226253, - 0.002087284, - -0.054490797, - -0.0027921703, - -0.030188126, - -0.008590503, - 0.026267128, - 0.043153685, - 0.024026275, - 9.795859E-4, - -0.01033474, - 0.011557334, - -0.0022499587, - -0.0433972, - 0.014187347, - 0.0066416063, - 0.008733679, - 0.04710108, - 0.022551069, - -0.037935182, - 0.03630491, - -0.01652302, - -0.004015233, - -0.0033637662, - 8.7115495E-4, - 0.035586707, - 0.033668794, - -0.019301645, - -0.031295475, - -0.011441612, - 0.019752953, - 0.017036024, - 0.024161203, - -8.3687926E-5, - -0.07640276, - -0.028687349, - 0.029720634, - 0.06460966, - 0.03648032, - 0.04263129, - 0.024375679, - 0.026549896, - -0.0028208164, - 0.031384137, - -0.020371705, - 0.010551632, - 0.03063878, - -0.014538749, - -0.022202903, - -0.039519366, - -4.98183E-4, - 0.028884413, - 0.030720744, - -0.008921887, - 0.014038569, - -0.03291198, - 0.027142102, - -0.015089815, - -0.039904855, - 0.05270704, - -0.033364963, - 0.023169722, - 0.04362377, - 0.0469455, - -0.040088598, - -0.03970769, - 0.035373792, - -0.011433295, - -0.0050898097, - 0.03844188, - -0.006879808, - -0.015082558, - 0.04141341, - -0.014980942, - -0.0068827053, - -0.016734334, - 0.04601146, - 0.02140603, - 0.010373885, - 0.041693095, - 0.01569846, - 0.011254238, - -0.057469465, - 0.022659484, - -0.050237607, - -0.024216231, - 0.027584484, - -0.02043701, - 0.018400824, - 0.006507249, - 0.03122443, - -0.006236805, - -0.010325229, - -0.012685437, - -0.014693492, - -0.06034769, - -0.014656535, - -0.07544296, - -0.027409522, - -0.00851191, - 0.01730054, - -0.029006328, - -0.015475245, - 0.068696536, - -0.047995362, - 0.047455665, - -0.030770373, - -0.046109445, - -0.03469686, - 0.027713297, - 0.074073054, - 0.027240712, - 0.014603188, - 0.028799215, - -0.009694434, - -0.022136368, - -0.012776057, - 0.07380243, - 0.052350022, - -0.007325863, - -0.022094775, - -0.0307183, - -0.0056655626, - 0.0070412867, - -0.013721166, - -0.025170771, - -0.0030525639, - -0.004719161, - 0.017997714, - 0.010898511, - -0.027654497, - -0.046738006, - 0.0062884, - 0.009036455, - -0.0025499957, - -0.03615998, - -0.011187431, - -0.0139411455, - -0.05034789, - -0.02585237, - 0.0031197425, - -0.0053770696, - 0.031373315, - -0.032513905, - -0.0017248013, - -0.033322982, - 0.00903945, - 0.004492007, - -0.00776497, - 0.01091691, - 0.028338479, - 0.036002677, - 0.006839311, - 0.0304372, - 0.043651316, - 0.0037052296, - 0.0209313, - -0.03066801, - -0.028412735, - 0.026641708, - -0.002545209, - -0.0020071715, - -0.011780817, - 0.049728815, - -0.03391319, - 0.0052543213, - 0.011250671, - 0.018642556, - -0.048023883, - 0.016641987, - 0.004923409, - -0.037708048, - 0.0268078, - -0.013856045, - 0.01721838, - 0.015396162, - -0.024588382, - 0.0283179, - -0.023317602, - -0.0020733385, - 0.010890942, - 0.013030811, - -0.03823239, - -0.018023225, - -0.06575282, - 0.00942368, - -3.9543374E-4, - 0.004165027, - 0.021393554, - -0.0015759914, - 0.029006956, - 0.017590022, - -0.036949605, - 0.06070746, - -0.016888162, - 0.035578646, - 0.013456607, - -0.05306711, - -0.011337345, - 0.00894209, - 0.003574972, - -0.011693503, - -0.035400167, - -0.05611001, - -0.026720267, - -0.02497855, - 0.0164367, - -0.014837086, - 0.0035326213, - -0.07304672, - -0.0042241327, - -0.007765752, - -0.010744568, - 0.03931119, - 0.03209082, - 0.074419715, - -0.03522083, - -0.027121741, - -0.015631475, - 0.02095854, - 0.011925902, - -0.02541504, - 0.046434857, - -0.02748042, - -0.013708208, - 0.014258143, - -0.053377807, - -0.07292455, - 0.03465972, - 0.049665622, - -0.0069588595, - -0.033431046, - 0.0029352526, - -0.010988488, - 0.03974398, - 0.046632506, - 0.018387673, - 0.010881615, - -0.009563648, - -0.021230059, - -0.01887619, - -0.024001502, - 0.016286625, - -0.011072544, - -0.0010036158, - -0.007614893, - 0.0053159622, - 0.022804644, - -0.011233938, - -0.03893305, - 0.03702973, - -0.002699963, - -0.015266726, - 0.053739164, - -0.014521325, - 0.061561998, - 0.035536032, - -0.012499029, - -0.024048224, - -0.05123123, - 0.0656916, - -0.011962596, - -0.015949631, - 0.043889284, - 0.039466936, - -0.04195217, - 0.014250288, - 0.022948513, - 0.011760902, - -0.011427152, - 0.03929968, - 0.0011811018, - -0.023786264, - -0.02354487, - -0.050958373, - -4.5737377E-4, - -0.03438165, - 0.004080723, - 0.05254325, - 0.016735783, - 0.05112382, - -0.020945985, - -0.03183127, - 0.026602399, - -0.01547191, - 0.06800017, - -6.9057784E-4, - -0.018527288, - 0.004689023, - -0.03233895, - -0.03673286, - 7.9774496E-4, - 0.004019915, - -0.034511387, - -0.042543974, - -0.021961337, - -0.012045612, - -8.8671263E-4, - -0.03280611, - -0.06580827, - 0.0032668572, - 0.07799422, - -0.056226164, - -0.0022157852, - -1.785527E-4, - 0.004105815, - -0.024430124, - -0.034868065, - -0.02015574, - -0.014059121, - -0.01825108, - 0.0010448559, - 0.030767191, - -0.017644636, - 0.050805878, - -0.046401024, - -0.014972953, - -0.014003646, - 0.09135492, - 0.04863977, - 0.023547554, - 0.07189892, - 0.02989485, - 0.026602728, - 0.053674813, - -0.05384856, - 0.01439849, - -0.020411398, - -0.036434982, - -0.01059004, - -0.039647687, - 0.013045274, - 0.004288212, - 0.05231961, - -0.030234817, - 0.05301515, - -0.037123837, - -0.061388046, - -0.0055482113, - -0.014599198, - -0.04153448, - -0.07820849, - -0.018162346, - 0.04104187, - 0.044129808, - 0.046196826, - -0.02249284, - 0.02909708, - -0.0079486845, - 0.02326761, - 0.042692494, - 0.0389749, - -0.0033022745, - -0.0036818038, - 0.035753876, - -0.003992537, - 0.0021998514, - -0.021807907, - -0.018986065, - 0.019162683, - -0.012642005, - 0.015934328, - -0.07007187, - -0.04935371, - 0.029140793, - -0.011667749, - -0.032917403, - -0.0019858554, - -0.0011244769, - -9.407521E-5, - 0.018412508, - 0.031296268, - 0.010627735, - -0.019150566, - 0.032357045, - 0.00966704, - 0.0248227, - -0.040713232, - -0.009421208, - 0.034066524, - 0.084901474, - 0.015767073, - -0.0017781315, - 0.006122369, - 4.0420558E-4, - 0.040212553, - -0.023633057, - -0.015343768, - -0.0029209177, - -0.023483345, - -7.084411E-4, - 0.0010193717, - 0.05690227, - -0.048413634, - -0.010275278, - -0.021157091, - 0.00806294, - -0.028247666, - -0.02757071, - -0.0065407054, - 0.008525832, - 0.019821256, - -0.007735915, - 0.019946001, - 0.004925708, - -0.051738266, - 0.002378173, - -0.023371292, - -0.05665474, - 0.009414945, - 0.06370005, - 0.02909952, - -0.027902685, - -0.015898159, - 5.0547806E-4, - -0.026872616, - 0.050800346, - -0.028048076, - -0.015877599, - 0.010357388, - -0.032797724, - 0.0017130476, - -0.009510281, - 0.0076572015, - -0.029169606, - -0.048956934, - 0.014583357, - -0.027653368, - 0.024506176, - 0.039280526, - 0.042589646, - -0.0013410461, - -0.05879991, - 0.035281934, - 0.03937465, - 0.004321369, - 0.06324843, - 0.016297895, - -0.0392058, - -0.02392333, - -0.032136682, - 0.026306553, - -0.0747339, - 5.8308226E-4, - -0.007351685, - 0.026779976, - 0.019665841, - -0.017233048, - -0.001446697, - -0.014437082, - 0.008049732, - -0.03153811, - 0.010163853, - -0.025167393, - -0.008840358, - 0.04136947, - 0.034650885, - -0.021242952, - -0.026466522, - 0.024149787, - -0.018713625, - 0.028446648, - 0.0038043777, - -0.002519648, - -0.032010723, - 0.004056971, - 0.044322725, - 0.02395173, - -0.0033741859, - -0.07051722, - 0.011505025, - -0.017373348, - 0.05273689, - -0.050708827, - -0.026324958, - -0.04515027, - -0.01585924, - 0.06373924, - -0.015082796, - -0.035310995, - -0.010329635, - -0.015132679, - -0.06935015, - -0.030495321, - 0.03681034, - 1.3590447E-4, - 0.020317731, - 0.033825744, - -0.036536172, - -0.01957642, - -0.045671094, - 0.027075807, - -0.0143858595, - -0.024744235, - 0.037424088, - -0.019372268, - -0.0693698, - 0.0017951004, - -0.017650206, - 0.022823086, - 0.003819415, - -0.007574717, - -0.01152618, - -0.014751238, - -0.0059684888, - 0.014033972, - 0.0022160737, - 0.023315264, - -0.035262085, - 0.012678263, - -0.045311186, - -0.014396714, - -0.06326514, - 0.025988959, - 0.036047198, - 0.0129822865, - -0.009973585, - -0.031157903, - -0.023530211, - -0.05903563, - 0.02340571, - -0.0016229607, - 0.021411449, - 0.02612192, - -0.0147003615, - -0.0062000803, - -0.049743585, - -0.04533036, - 0.019752294, - 0.015026175, - -0.0076673115, - -0.014988722, - -0.041481916, - -0.009107071, - 0.018783635, - 0.039515283, - 0.027921613, - -0.019803654, - -0.01608095, - 0.043073654, - 0.014758641, - 0.033541765, - -0.060197607, - 0.014220437, - 0.02850106, - -0.013948857, - 0.040003277, - -0.028365843, - 0.012721873, - 0.05588948, - -0.03599934, - -0.06724262, - 0.035079908, - -0.05909428, - 0.052209876, - 0.035100434, - -0.017448647, - 0.017720947, - -0.018492185, - -0.029701719, - -0.0145978695, - 0.038211163, - 0.02480876, - 0.010348724, - 0.018768998, - -0.10538763, - 0.006658762, - 0.026297392, - -0.012228476, - 0.02496018, - -0.005430405, - -0.0055650105, - 0.023396194, - 0.046426274, - -0.04036215, - 0.014730512, - 0.0019468078, - 0.040127125, - 0.023739498, - -0.0069908337, - -0.027440727, - 0.03597819, - 0.018796299, - 0.013680991, - 0.033359986, - -0.023116486, - 0.030980675, - 0.032356698, - -0.009454201, - -0.011417871, - 0.0085241385, - 0.020815777, - -0.05210794, - 0.0021852513, - -0.012027788, - 0.013676663, - 0.003613138, - -0.048110608, - -0.05834835, - -0.0043144207, - -0.019587925, - 0.012044003, - -0.029456774, - 0.037128158, - -0.029954353, - 0.04089287, - -0.049393505, - 0.026677763, - -0.02116529, - 0.08503705, - -0.027357934, - 0.02032102, - 0.02584518, - -0.03073794, - -0.012816824, - -0.039700065, - 0.0042055477, - 0.0010791612, - 0.009840195, - 0.0024170019, - 0.009564955, - 0.0034843036, - 0.008740469, - -0.019542191, - -0.024106925, - -0.008273, - -0.01069432, - -0.025248313, - 6.3266035E-4, - -0.046336677, - -0.058309413, - -0.026343005, - -8.223427E-4, - -0.009632598, - 0.0013176987, - -0.013225763, - 0.018152906, - 0.017272396, - 0.016641665, - -0.007934782, - 0.008443401, - 0.03350184, - 0.010465538, - 0.024126593, - -0.021898678, - -0.045763798, - -0.034488223, - 0.04111437, - 0.0052000415, - 0.011854626, - 7.014144E-4, - -0.017045697, - 0.018442225, - -0.03571359, - 0.035766322, - -0.03442468, - 0.011982105, - -0.05394665, - -0.023308959, - 0.060578667, - -0.017937005, - 0.044467136, - 0.013544219, - -0.03960493, - 0.02975848, - -0.0049161576, - -0.0045392076, - 0.03533371, - -0.043164622, - -0.01745016, - -7.157939E-4, - -0.029016428, - -0.0066084317, - -0.06078674, - -0.09439048, - 0.028891135, - 0.037679598, - -0.061372243, - 0.026910152, - 0.01784238, - -0.07382565, - 0.01470941, - 0.0074143223, - 0.0048515797, - 0.045287635, - 0.0693954, - -0.0030084234, - -0.017028533, - -0.015296378, - 0.031293184, - 0.04298118, - 0.030580709, - -0.054378625, - -0.05886294, - -0.031091005, - -0.01949502, - 0.0100994855, - 0.019215358, - -0.0071564885, - -0.06166454, - -0.019192908, - 0.04683182, - 0.0051828423, - -0.012080872, - -0.022131518, - 0.020279724, - -0.03082086, - -0.0052712634, - -0.02058567, - 0.007943402, - -0.011377289, - -0.031485308, - 0.0028864637, - 0.0434819, - -0.006603905, - 0.012200128, - 0.043650366, - -0.028994333, - -0.012962624, - 0.008002643, - -0.06319171, - 0.03783402, - 0.03058801, - 0.07043754, - -0.0095952805, - 0.015257376, - 0.031560764, - -0.0033068738, - -0.02029356, - -0.0071313884, - -0.053001955, - -0.018364955, - 0.06769838, - -0.035864044, - -0.042577017, - -0.012545928, - 0.052718047, - -0.060246952, - 0.043279316, - -0.064119175, - -0.04806189, - -0.04723618, - 0.0056918813, - 0.0083454605, - 0.036934286, - 0.028567411, - -0.0041064755, - 0.013140002, - 0.010948275, - -0.03132906, - -0.06697224, - -0.030078858, - 0.0016273821, - -0.02411234, - 0.013240572, - -0.01662761, - 0.009482852, - 0.005776917, - -0.035397273, - -0.028257126, - 0.016886838, - -0.013594795, - -0.008428947, - 0.017144967, - 0.013426259, - 0.010667212, - -0.047789294, - 0.075971715, - 0.015241484, - -0.03726224, - -0.005435255, - 0.056730483, - -0.0066778916, - 0.0032260513, - 0.036314417, - 0.028652135, - -0.00348959, - 0.002448542, - 0.020127036, - 0.06281409, - 0.018473392, - -0.029504333, - -0.02869001, - -0.04959567, - 0.012215391, - 0.03449754, - -0.006773103, - 0.017151931, - 0.011470802, - -0.04461091, - 0.05548374, - 0.018841594, - 0.028324367, - 0.009043768, - 0.034792524, - -0.035046924, - -0.038926046, - -8.0597005E-4, - 0.022095738, - 0.021078853, - 0.0034539201, - -0.03702, - 0.0053017843, - -0.02838516, - 0.040944014, - -0.049152803, - 0.04933822, - -0.009683788, - -0.046075575, - -0.030528555, - 5.0262664E-4, - 0.043704495, - 0.031309392, - 0.07897915, - 0.033988066, - -0.068501234, - -0.0030335798, - -0.0028548026, - -0.0027798815, - -0.047943946, - -0.037021413, - 0.012726406, - -0.01712011, - 0.02220446, - 0.0034677403, - -0.011995231, - 0.055645432, - -0.010653592, - 0.058761116, - 0.042062163, - -0.009682313, - 0.0020344523, - -0.02009652, - 0.005030087, - 0.034117766, - 0.0050081913, - -0.031208338, - -0.0467213, - 0.03406372, - 0.020362243, - 0.0055116806, - 0.03578921, - 0.024896719, - -0.017576447, - -0.012331115, - 0.026285106, - 0.015049443, - -0.01201985, - 0.0077178073, - 0.004068888, - -0.0011799067, - 0.0035439972, - 0.040922325, - 0.008283705, - -9.880665E-4, - -0.05051162, - 0.019424258, - 0.04972875, - -1.9752068E-4, - 0.017788317, - 0.056808233, - 0.014881346, - -0.002297073, - -0.016196724, - 0.020970812, - -0.036663357, - -0.039690632, - 0.04589794, - 0.0015175467, - -0.016746711, - 0.009717781, - -0.0045755254, - 0.02249549, - -0.0045830556, - 0.04230322, - 0.022947948, - 0.031386543, - 0.018478684, - -0.055367757, - -0.008399086, - 0.0206779, - 0.012264247, - -0.015344506, - -0.046784136, - -0.018728154, - -0.016030092, - -0.020528138, - -0.010385759, - -0.01301993, - -0.028105337, - -0.049430646, - 0.016386097, - -0.002400213, - -0.031717267, - 0.0073190806, - -0.004895414, - 0.009579501, - 0.07073471 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "3/0", - "3/0", - "7/0", - "8/0", - "2/0", - "1/0", - "5/0", - "2/0", - "3/0", - "6/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "5/1", - "62/1", - "65/1", - "39/1", - "62/1", - "45/1", - "74/1", - "2/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "11/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "11/1", - "260/2", - "274/2", - "30/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "146/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "176/2", - "257/2", - "116/2", - "90/2", - "219/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "36/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#BD95D7", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "p2askkzv", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "SSksaIkoAl", - "jFYdCLIXCj", - "wS3htCK0XN" - ], - "title" : "title-MMucguH4mC", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.5.json b/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.5.json deleted file mode 100644 index bef63259e..000000000 --- a/common/search/src/test/resources/test_documents/images.similar-features-and-palettes.5.json +++ /dev/null @@ -1,5404 +0,0 @@ -{ - "description" : "images with similar features and palettes", - "createdAt" : "2023-03-17T09:13:02.684934Z", - "id" : "ej0cb179", - "document" : { - "modifiedTime" : "2062-01-01T01:59:37Z", - "display" : { - "id" : "ej0cb179", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/2Ja.jpg/info.json", - "linkText" : "Link text: lEreivQGOv", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - }, - "locations" : [ - { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" - }, - "url" : "https://iiif.wellcomecollection.org/image/2Ja.jpg/info.json", - "linkText" : "Link text: lEreivQGOv", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" - }, - "accessConditions" : [ - ], - "type" : "DigitalLocation" - } - ], - "aspectRatio" : 0.8347602, - "averageColor" : "#2A2A13", - "source" : { - "id" : "hynzvq65", - "title" : "title-AtMwgf6PRE", - "contributors" : [ - ], - "languages" : [ - ], - "genres" : [ - ], - "subjects" : [ - ], - "type" : "Work" - }, - "type" : "Image" - }, - "query" : { - "id" : "ej0cb179", - "sourceIdentifier.value" : "BZQQ3MVP45", - "locations.license.id" : [ - "cc-by" - ], - "inferredData" : { - "features1" : [ - -0.0817129, - 0.0065807705, - -0.03567248, - -0.07299048, - 0.03953053, - -0.05603776, - -0.015199206, - 0.12385784, - -0.061736405, - 0.112423025, - -0.25699458, - -0.084404185, - -0.06920626, - 0.083743215, - -0.05865934, - -0.08177361, - 0.1220369, - 0.013302632, - -0.004836375, - 0.0049102646, - -0.104744986, - 0.004483233, - -0.025375336, - -0.038756248, - 0.0582361, - 0.084710956, - 0.017044973, - 0.10450156, - 0.09222023, - -0.1819421, - -0.09574563, - 0.08437232, - 0.055975832, - 0.047704663, - -0.016441971, - 0.020686924, - -0.11756792, - -0.040437195, - -0.033125278, - -0.051205877, - -0.019914009, - -0.0064109927, - 0.1392792, - -0.12435163, - -0.082219526, - 0.04993387, - 0.07765836, - -0.06070478, - 0.05787488, - 0.111353494, - 0.1340964, - 0.00810035, - 0.11518121, - -0.100674085, - -0.07524572, - -0.11244088, - 0.035848986, - 0.06748132, - -0.07768917, - -0.15101725, - 0.073647276, - 0.16609283, - -0.082102105, - -0.08090572, - 0.04249409, - -0.016597796, - 0.09104711, - -0.013288854, - -0.07001107, - 0.035502505, - 0.030504946, - 0.025359165, - -0.12250249, - 0.04295603, - -0.0010246942, - -0.055728618, - 0.012639262, - -0.0045261164, - -0.07468593, - -0.13187563, - 0.06543952, - 0.075017005, - 0.0026820009, - -0.012508761, - 0.095703594, - 0.10095095, - -0.20383164, - -0.019162793, - 0.039576318, - 0.10331913, - 0.062679075, - 0.19213903, - -0.09496301, - 0.07118363, - 0.11051092, - 0.021962361, - -0.07607479, - -0.042634264, - -0.028270591, - -0.062924996, - -0.11804568, - -0.16062237, - -0.12042932, - 0.11773776, - 0.088578545, - -0.13589433, - -0.014080161, - 0.033417128, - -0.05385061, - -0.06142355, - 0.0790946, - -0.051500767, - 0.11047072, - 0.028753238, - -0.014437985, - 0.07051344, - -0.048030864, - -0.21621251, - 0.059295703, - 0.057365753, - -0.023520608, - -0.1348723, - -0.053743824, - 0.04901862, - -0.044168845, - 0.0010122657, - 0.015212599, - -0.010661751, - 0.06233341, - -0.028396785, - 0.011675872, - -0.035789795, - 0.01526358, - -0.08350849, - 0.11602104, - 0.0037442325, - 0.090271525, - 0.09763414, - 0.029218597, - -0.15272774, - 0.0063258824, - -0.007555596, - 0.14987375, - 0.045642138, - -0.024534976, - 0.04400192, - -0.0016609775, - 0.09826338, - -0.05028143, - -0.047168113, - 0.10387348, - -0.0587532, - -0.037869982, - -0.03431265, - -0.016691603, - 0.100284986, - 0.05180308, - -1.360625E-4, - -0.03986691, - -0.0840831, - 0.010308279, - 0.06654808, - -0.005405943, - 0.057106405, - 0.14616373, - -0.13489103, - -0.0187106, - 0.007911637, - 0.02727721, - -0.038568098, - -0.12778513, - 0.018395301, - -0.03675473, - -0.12844703, - -0.0731123, - 0.069162, - 0.13283622, - 4.54681E-4, - -0.23147829, - -0.12005617, - -0.081945926, - -0.03185643, - -0.0068896245, - 0.090596154, - 0.011816182, - -0.12702572, - -0.09705073, - -0.030133246, - -0.038957562, - -0.09028863, - -0.13704495, - -0.10588279, - 0.10880456, - 0.045349557, - -0.09927474, - 0.07811181, - -0.11577308, - 0.007848549, - 0.038661927, - 0.06285618, - -0.08596687, - 0.004463183, - 0.03698933, - 0.23056735, - -0.0024366402, - -0.029626884, - 0.050412595, - -0.10247708, - -0.051711194, - -0.060661055, - 0.014370679, - -0.034004837, - 0.13100897, - -0.072399944, - 0.0958093, - 0.12249884, - 0.15364331, - -0.07356657, - 0.043733478, - -0.045683984, - 0.012839606, - 0.19895753, - 0.041598145, - 0.20857532, - 0.061540302, - 0.03988769, - -0.017487314, - 0.11812917, - -0.043628175, - -0.04238436, - 0.08781365, - 0.05456285, - -0.07336796, - 0.006099188, - 0.2458301, - 0.10565141, - -0.118223354, - -0.11988294, - -0.0713045, - -0.012815664, - 0.11972643, - 0.017694766, - -0.19515853, - 0.015181155, - 0.08489553, - -0.07473492, - -0.10346288, - 0.035165794, - 0.10420916, - -0.18251179, - -0.22013633, - -0.061487906, - -0.1288271, - -0.09399791, - 0.27840903, - -0.14301558, - 0.10816378, - 0.06266651, - -0.07876612, - -0.074476115, - 0.0067591616, - -0.050481647, - 0.018763846, - -0.1183228, - -0.034656286, - -0.0045679077, - -0.0033893175, - -0.068222344, - -0.029698035, - -0.07418875, - 0.0016182312, - 0.089057066, - -0.050572652, - 0.014481235, - -0.051353145, - 0.058063284, - 0.06372153, - -0.06366696, - 0.034346897, - -0.076828256, - -0.35520193, - 0.029875442, - 0.14114158, - 0.008651938, - -0.13364005, - 0.2043657, - 0.049014553, - -0.08134414, - -0.024029845, - 0.04976122, - -0.061180845, - 0.06234883, - -0.17123953, - -0.14507012, - -0.074601896, - 0.05392533, - 0.1290232, - -0.13098764, - 0.15599403, - 0.09202505, - -0.12783316, - -0.06854844, - -0.13512816, - 0.120630324, - 0.010042971, - -0.11720054, - 0.1242778, - -0.010255357, - 0.005508649, - -0.08596257, - 0.05123411, - -0.004043016, - -0.020713912, - 0.024888847, - 0.020790963, - -0.09200826, - -0.005216337, - -0.039458156, - -0.20334157, - 0.10570683, - -0.007927081, - 0.05784502, - 0.028267264, - 0.07595447, - 0.0040530157, - 0.02333266, - -0.05977364, - 0.018600017, - -0.06784041, - 0.044172417, - 0.1511285, - -0.14246362, - 0.08820879, - -0.011149524, - 0.2262195, - -0.08902551, - 0.07775317, - -0.11764958, - 0.10322266, - 0.013057643, - -0.034953997, - -0.030780993, - 0.04339301, - 0.045546003, - -0.00897233, - -0.027389457, - 0.07600369, - 0.062808365, - -0.040851545, - 0.14260958, - -0.09796675, - -0.022204095, - -0.0058814604, - -0.08134862, - 0.039735645, - -0.14316176, - 0.0011441726, - -0.19406173, - -0.033399984, - -0.14391899, - -0.0069410712, - 0.016545728, - 0.15251197, - -0.10012665, - -0.10901825, - -0.06367737, - 0.16815501, - 0.03384246, - 0.07790113, - -0.007137451, - -0.0069459276, - -0.041517787, - 0.16057386, - 0.10864174, - 0.01180145, - 0.092460565, - -0.040790208, - 0.08243175, - -0.025682729, - -0.0399836, - -0.17103589, - 0.1037184, - -0.12562944, - -0.12459745, - 0.18974756, - 0.015337098, - 0.030370805, - 1.960313E-4, - -0.05982276, - -0.009493682, - -0.099253066, - 0.06334134, - -0.14414497, - -0.084032774, - 0.077235766, - 0.06996538, - -0.014718607, - -0.037807837, - 0.06196318, - 0.041063957, - 0.12756537, - 0.13173068, - 0.114033036, - -0.15872851, - -0.01477887, - -0.13436216, - -0.16346173, - -0.034236807, - 0.080111966, - 0.121302, - -0.07019561, - -0.0025201289, - -0.08088792, - 0.021402538, - 0.02265605, - -0.052735336, - 0.059408978, - 0.055986837, - 0.0065848464, - -0.09204318, - -0.04296343, - -0.19502336, - 0.049896423, - -0.09237329, - 0.025017861, - -0.18926214, - 0.07595698, - 0.20862488, - 0.049701493, - 0.07155946, - -0.0504084, - 0.15348057, - -0.12957084, - 0.012870824, - 0.0696895, - 0.099458985, - -0.04150331, - -0.04594692, - 0.07530402, - -0.046214625, - -0.033853296, - -0.054627772, - -0.08026304, - -0.056910627, - -0.08417968, - 0.10569644, - 0.06915314, - 0.05252821, - -0.021117492, - 0.08119157, - 0.10296376, - -0.09381758, - -0.06526913, - -0.12788647, - -0.0986545, - 0.06224327, - -0.016487036, - -0.09554225, - -0.03136115, - -0.024477443, - 0.004043062, - 0.060524862, - 0.18304884, - -0.09334615, - -0.08204905, - -0.08985364, - -0.025769386, - 0.027353184, - -0.04286245, - 0.078727946, - 0.028687295, - -0.059410833, - -0.0055601476, - 0.10037788, - -0.035515588, - 0.035542212, - 0.05103433, - 0.038029335, - -0.055352405, - 0.21032353, - -0.088794254, - 0.036101587, - 0.023956781, - 0.11292815, - 0.17912099, - 0.029111998, - 0.01284731, - -0.14089699, - -0.07496683, - 0.09149656, - -0.0026648967, - 0.119924136, - -2.7968513E-4, - 0.019255953, - -0.123191394, - 0.024364913, - 0.04120482, - -0.1065507, - -0.047363713, - 0.03284578, - -0.10974711, - -0.1241728, - 0.020136008, - 0.08127306, - 0.15164144, - -0.0014639678, - -0.13476902, - 0.12898226, - -0.052471608, - -0.0423839, - -0.11157045, - -0.10252509, - 0.043932945, - -0.20460142, - -0.10170901, - 0.1346392, - -0.24479629, - 0.120446496, - 0.06785571, - 0.02984415, - 0.035516858, - 0.086038135, - 0.10690236, - -0.04239729, - -0.05830396, - -0.20428099, - -0.047666132, - 0.14281994, - 0.098692246, - -0.046482857, - -0.07490999, - -0.050432052, - 0.077850595, - -0.19752935, - -0.0326061, - 0.21950735, - 0.019105867, - -0.076480724, - 0.1607651, - 0.2224628, - 0.010806048, - 0.016850192, - 0.081640735, - 0.09788528, - -0.022292683, - -0.11008766, - 0.089441605, - 0.019117322, - -0.20153484, - 0.01573459, - 0.115636915, - 0.059541486, - 0.06017049, - 0.003667939, - -0.0020842887, - -0.013613504, - -0.18163402, - 0.13147917, - 0.055845026, - 0.15270391, - -0.23412706, - -0.020136565, - -0.041151308, - -0.003389045, - 0.249713, - 0.012018032, - 0.07290354, - -0.058382615, - -0.08252571, - -0.077028714, - -0.054026037, - 0.0073682466, - -0.1303826, - 0.15393887, - -0.09800671, - 0.055209197, - -0.05792149, - -0.040075444, - -0.040221855, - 0.06809607, - 0.03808884, - 0.11766465, - -0.15588318, - 0.027359743, - -0.037309315, - -0.041811008, - 0.0493496, - 0.027770573, - -0.012507496, - 0.08191592, - -0.14838862, - -0.0073050624, - 0.06274121, - 0.071396425, - -4.8165675E-5, - 0.03027558, - 0.12742975, - -0.11786582, - -0.017107246, - -0.10718831, - 0.01009955, - -0.019422693, - 0.027790744, - -0.10229388, - -0.013543793, - -0.09278064, - -0.0822565, - 0.1466227, - 0.007766452, - 0.13189931, - 0.04076353, - -0.071242705, - -0.15564556, - 0.085253425, - 0.19840911, - 0.0817271, - -0.080738455, - -0.10786478, - 0.039258555, - -0.010512834, - -0.007839381, - 0.019725833, - -0.10740739, - -0.063122556, - -0.12275128, - -0.11725029, - -0.033405866, - -0.062008534, - 0.020012848, - 0.09013162, - 0.05621038, - -0.12369838, - 0.016510306, - -0.050586343, - 0.11132458, - -0.08182632, - -0.012603213, - -0.056310754, - 0.01533495, - 0.012536322, - 0.041587427, - 0.00737611, - -0.0999672, - -0.05100777, - -0.0820454, - -0.0034981128, - -0.084454305, - -0.20890898, - -0.12698321, - -0.114122994, - 0.13548824, - -0.092281595, - 0.020866256, - -0.14460821, - 0.054632254, - 0.020325577, - 0.10145368, - -0.037131976, - -0.07810081, - 0.0037706257, - -0.101802446, - -0.13695115, - 0.026746338, - 0.08566951, - -0.037272934, - -0.23929478, - -0.14121738, - -0.12825176, - -0.047749106, - 0.05802557, - 0.102041066, - -0.042392977, - -0.032072805, - -0.078246534, - 0.05903653, - 0.062450513, - -0.1656901, - 0.08714375, - 0.06164494, - 0.079618335, - -0.095631525, - 0.19385262, - 0.051615003, - -0.102272846, - 0.06007153, - 0.012226944, - -0.1274019, - 0.025095955, - -0.042647403, - -0.0041972306, - -0.06261661, - -0.10762869, - -0.017297797, - 0.16938943, - 0.004432385, - -0.022251265, - -0.08595826, - -0.078878954, - -0.28070056, - 0.042987313, - 0.02821521, - -0.13164961, - 0.06432287, - 0.0906928, - 0.06839426, - 0.04556921, - -0.19135566, - -0.09584925, - -0.08107289, - 0.021831494, - -0.074532956, - -0.1131235, - 0.043497875, - -0.037341222, - -0.012148635, - 0.06096498, - 0.06028974, - 0.09871531, - 0.061004326, - 0.045114987, - -0.08557366, - -0.0559366, - 0.033862177, - -0.14131358, - -0.001149396, - 0.036715776, - -0.038553253, - -0.22075354, - -0.047332976, - -0.07029257, - 0.21104988, - 0.11090728, - 0.0037491685, - -0.10674287, - 0.14999938, - 0.017737014, - 0.10252626, - -0.08796928, - 0.1533741, - -0.039772645, - 0.04026083, - 0.20207785, - 0.022385545, - 0.021584973, - 0.07016777, - -0.057584524, - -0.20164834, - 0.08243527, - -0.07576733, - -0.10932695, - 0.029337332, - 0.014478296, - -0.14981712, - -0.0037862891, - 0.074636765, - -0.2540795, - -0.040342987, - -0.09209551, - 0.103824995, - 0.12675217, - -0.10102535, - -0.0817182, - -0.06458628, - 0.16660792, - 0.15091617, - -0.09459442, - -0.074294806, - 0.1363178, - 5.7566864E-4, - 0.07199158, - 0.026281167, - 0.057646837, - 0.07861827, - 0.16334333, - 0.123845845, - -0.064915754, - -0.09569825, - -0.049874827, - -0.0042877938, - -0.10772074, - -0.028171986, - -0.06478031, - 0.015892355, - -0.07165337, - 0.047830667, - -0.005296777, - -0.02463485, - -0.10896154, - 0.059258074, - -0.05669116, - -0.12485224, - 0.02004842, - -0.10552511, - 0.048444185, - -0.07327803, - -0.20998617, - -0.08664736, - -0.026535666, - -0.032438815, - 0.03477241, - -0.022905339, - -0.15871114, - -0.04039936, - -0.23999654, - 0.004260022, - -0.028202087, - -0.016253846, - -0.023383187, - 0.12955602, - 0.07285865, - -0.021840358, - 0.26416022, - -0.012052469, - -0.058064386, - 0.1502804, - -0.0059849275, - 0.014062201, - 0.026198428, - 0.069198735, - 0.06012623, - -0.15286648, - 0.08292518, - 0.02827094, - -0.17818213, - 0.10389297, - -0.08954744, - -0.057311006, - -0.037330724, - -0.042154368, - 0.06964712, - -0.05104943, - -0.008119549, - -0.26197085, - -0.034259457, - 0.2228267, - 0.12812552, - 0.020709306, - 0.061252993, - -0.011731496, - -0.05674668, - 0.07343333, - -9.511141E-4, - -0.04015251, - 0.13675343, - 0.053424295, - -0.011448837, - -0.10893863, - -0.064418115, - 0.0050774473, - -0.08064122, - -0.081588715, - -0.04562946, - 0.09610862, - -0.0016552005, - -0.034696456, - 0.04123713, - -0.16724184, - 0.0017336835, - 0.14272246, - 0.12030615, - -0.009649552, - 7.0311804E-4, - 0.06523412, - -0.12698376, - 0.14163107, - 0.17187043, - 0.12108354, - -0.013260605, - 0.11548956, - 0.052911554, - 0.03509935, - -0.13303481, - 0.047189318, - 0.03267875, - 0.049785085, - -0.18573698, - 0.096576735, - -0.12207299, - -0.082015805, - 0.08913458, - -0.117020994, - -0.048518293, - 0.057769585, - 0.08486475, - -0.03823435, - -0.15588048, - 0.08643845, - -0.04102816, - -0.029786615, - -0.055632878, - 0.011297489, - -0.035478804, - 0.0898618, - 0.056649454, - 0.03649078, - -0.23714522, - -0.1033942, - 0.1325342, - -0.024315866, - -0.21489654, - -0.03775959, - -0.049032856, - -0.04398128, - 0.0541896, - -0.06998105, - 0.15049289, - -0.036987588, - 0.05781022, - 0.04189053, - 0.07064086, - -0.04136452, - 0.057296705, - 0.11393324, - -0.13469055, - 0.09746135, - -0.0067240503, - -0.08655125, - 0.11099772, - 0.060188595, - -0.038054112, - 0.07093886, - 0.07459309, - 0.0448023, - -0.09756907, - 0.05195833, - -0.068384476, - -0.094701745, - -0.028459871, - -0.114898644, - 0.040034227, - 0.13524145, - 0.09533567, - 0.04808904, - -0.042106446, - 0.2039418, - 0.104652405, - 0.09657967, - 0.033164784, - 0.16084512, - 0.10562266, - 0.22288011, - -0.0042093163, - -0.0052145654, - -0.035403095, - 0.08697413, - -0.124411486, - -0.18728003, - 0.096310504, - 0.04057194, - -0.22175717, - -0.20752351, - -0.13652459, - -0.051501427, - 0.19926666, - -0.14651181, - 0.068766214, - 0.1202519, - -0.041132227, - 0.15582684, - 0.035466388, - -0.14202754, - 0.22091784, - -0.023612421, - -0.08707297, - -0.058011472, - 0.016847184, - 0.1186413, - -0.1427953, - -0.04622992, - -0.106735654, - -0.01095162, - 9.864457E-4, - 0.065123, - -0.1926215, - -0.04800442, - -0.07418633, - 0.11471034, - -0.1056528, - -0.043956343, - 0.17601162, - -0.07643674, - 0.06000387, - 0.06054807, - 0.042747848, - 0.07980308, - 0.16697335, - -0.20039609, - -0.042742286, - 0.20164016, - 0.2550816, - 0.12821047, - -0.040902544, - 1.8746592E-5, - 0.043557912, - 0.09444118, - 0.08564474, - -0.17764238, - -0.017610244, - 0.1013387, - 0.05690108, - 0.1262417, - 0.025311274, - -0.12853323, - 0.054624554, - 0.08152641, - 0.10480835, - 0.014994959, - 0.042666167, - 0.069282755, - 0.07500739, - -0.0027465876, - -0.060528267, - 0.086733475, - 0.048601016, - -0.0020171143, - -0.0693, - -0.10103886, - 0.032477945, - 0.029416233, - 0.014285432, - -0.10794354, - -0.09149173, - 0.0064152624, - -0.047043566, - -0.050967596, - -0.2227003, - -0.08731205, - -0.1980798, - -0.12982626, - -0.022589106, - 0.114867225, - 0.06422295, - -0.0121187195, - -0.008323273, - -0.0070289895, - -0.0040567126, - -0.038775906, - 0.027607568, - -0.039970938, - 0.06576893, - 0.082539394, - -0.1545318, - 0.013685735, - 0.14897773, - 0.00507873, - 0.056846224, - -0.035697676, - -0.040285684, - -0.006031526, - -0.069147065, - 0.13768943, - 0.09136362, - -0.060910452, - -0.05389455, - 0.14992869, - -0.15636052, - -0.14689119, - -0.058984265, - 0.07546674, - 0.16510655, - -0.20413575, - -0.14408082, - 0.003957082, - 0.0847729, - -0.07280754, - 0.07349478, - -0.0924117, - -0.015715616, - -0.04008808, - 0.16205427, - -0.113081574, - 0.036484145, - -0.029354863, - 0.06364904, - -0.11343847, - -0.14276272, - -0.10411443, - -0.1464999, - 0.01913016, - 0.0153208785, - -0.05641043, - -0.0480603, - -0.09632928, - 0.048860405, - 0.031160334, - -0.1407851, - -0.093413465, - -0.0026144884, - -0.014489572, - 0.05220043, - 0.044524845, - 0.035639852, - -0.04441296, - -0.052036773, - -7.160434E-4, - 0.03481543, - -0.07618157, - -0.026896281, - -0.100762635, - 0.053776287, - -0.044175662, - 0.087135695, - 0.0029532416, - -0.0028171241, - -0.1165519, - -0.09089137, - 0.04944198, - -0.153993, - -0.14553136, - 0.029680196, - 0.036660187, - 0.18424144, - -0.1506985, - -0.04648962, - -0.079985544, - 0.035052575, - -0.048518345, - -0.14490762, - -0.0646079, - -0.09234434, - -0.08136324, - 0.06979875, - 0.08954622, - 0.16066484, - 0.014530661, - 0.078668445, - 0.06012825, - 0.18819906, - -0.044569947, - -0.029545529, - -9.088097E-4, - -0.011480888, - 0.042364564, - 0.03489078, - 0.11774004, - -0.13473096, - -0.080704436, - 0.012168029, - -0.12976083, - 0.009121302, - -0.008339745, - 0.080820344, - 0.14055291, - -0.016515644, - -0.015453908, - 0.09667042, - -0.030515425, - 0.0034240936, - -0.13046837, - 0.18308672, - 0.11186514, - 0.0013012527, - 0.043381214, - 0.02039744, - -0.03062651, - -0.020585818, - 0.10887312, - -0.0033570821, - 0.15182206, - 0.025814272, - 0.06864415, - 0.16694336, - 0.13319267, - -0.19173637, - -0.17719673, - 0.16056012, - -0.01310855, - 0.09674536, - -0.08277753, - -0.043855958, - 0.059085693, - -0.05945906, - 0.09668064, - 0.06308237, - -0.016263995, - -0.07694273, - 0.16237146, - -0.010364995, - -0.064098835, - -0.00564659, - 0.09835584, - -0.048120394, - 0.17213601, - -0.041610993, - 0.077446625, - -0.08734935, - -0.14269869, - -0.21870795, - 0.035895757, - 0.018831411, - 0.1666103, - 0.08660922, - -0.04757442, - 0.10480358, - -0.10122354, - -0.02685215, - -0.04119962, - -0.12987217, - 0.05445069, - -0.04620473, - -0.1534154, - 0.18392728, - 0.076477855, - -0.033641044, - -0.14926618, - -0.013621435, - -0.06036741, - 0.16041306, - -0.10832858, - 0.17952913, - 0.030114021, - -0.20786278, - 0.030535553, - 0.024149543, - 0.10498513, - -0.16649789, - 0.041088503, - -0.06907388, - -0.03436188, - 0.06112363, - 0.041199815, - -0.08305972, - -0.0013324912, - -0.16592517, - -0.09666544, - 0.044962384, - -0.008531019, - 0.07544031, - -0.041171685, - -0.031163018, - 0.15167215, - -0.1922631, - 0.06887442, - -0.10241238, - -0.031164762, - 0.011491533, - 0.01875731, - 0.1426928, - 0.16140905, - 0.06546283, - 0.1524835, - -0.09705262, - 0.019862736, - 0.077041686, - 0.017478932, - 0.12479584, - -0.12810321, - 0.06738998, - 0.21602139, - 0.071864344, - -0.0935316, - 0.09689664, - 0.321392, - -0.018988524, - -0.0072418107, - -0.07217697, - -0.0016026687, - -0.13995282, - -0.010439062, - -0.008641803, - -0.10650283, - 0.011852108, - 0.03266104, - -0.10333413, - 0.013666988, - -0.101252034, - 0.04276722, - 0.08889584, - 0.077690735, - 0.04463624, - 0.004144853, - -0.035828132, - -0.03646245, - -0.27675965, - 0.044801235, - -0.11103888, - -0.06630928, - 0.078184925, - 0.0046529286, - -0.0558049, - -0.02214626, - 0.03694703, - -0.09705222, - 0.10986188, - 0.11949998, - -0.21694344, - 0.10629387, - -0.015154441, - 0.035080157, - 0.021554325, - -0.06942146, - -0.14308138, - 0.0058914414, - 0.042681545, - -0.050280936, - -8.2931016E-4, - -0.011914557, - -0.07504309, - 0.019897629, - 0.025345597, - -7.755952E-4, - -0.017399024, - -0.023058988, - 0.009362152, - -0.020179879, - -0.116407976, - -0.021184944, - -0.019997515, - 0.015907548, - 0.12894493, - 0.20598696, - 0.018110638, - 0.08264937, - -0.07485877, - -0.025174044, - 0.1019089, - -0.13667087, - -0.005296002, - 0.084012225, - -0.10800827, - -0.20216657, - -0.026435737, - -0.108199, - -0.074365996, - 0.058101326, - 0.13236284, - -0.17418952, - 0.05136126, - -0.10483854, - -0.068188995, - -0.05654392, - 0.09398802, - 0.041641757, - 0.05905051, - -0.07945743, - -0.06797239, - -0.15866052, - 0.06958224, - 0.09600075, - -0.06980402, - -0.10700403, - 0.09721481, - 0.05463838, - -0.03751381, - 0.123114884, - -0.14062773, - -0.12398588, - 0.041807692, - -0.06368647, - -0.13503444, - 0.1599588, - -0.00928713, - 0.07802816, - -0.08477455, - -0.05597669, - -0.04174653, - -0.15937309, - -0.04778195, - -0.04512535, - -0.10799004, - -0.064632595, - 0.05538417, - 0.009642346, - -0.03783357, - -0.06323909, - -0.026097797, - -0.21445103, - -0.0018684289, - 0.12347734, - -0.025457855, - -0.10727155, - -0.039398093, - 0.026182469, - 0.16230589, - -0.07723402, - 0.03670982, - -0.072709575, - -0.14292228, - -0.12984908, - -0.16148493, - -0.017260425, - -0.055809285, - 0.14444613, - -0.10458108, - -0.009626655, - -0.11715522, - 0.042900708, - 0.100960724, - -0.067740016, - -0.007224397, - -0.100867584, - 0.05637006, - -0.051305972, - -0.061214335, - -8.8478904E-5, - -0.004851807, - -0.056209784, - -7.068366E-5, - 0.107384585, - -0.032675497, - 0.056668982, - 0.093693025, - -0.021653686, - 0.101418175, - 0.15991165, - -0.023711579, - 0.021323066, - 0.08216868, - -0.089617476, - 0.055957414, - 0.051392287, - -0.2079908, - -0.008462667, - -0.079394035, - -0.050751284, - 0.048393473, - 0.06237161, - -0.002034383, - 0.006229891, - 0.022957332, - -0.06851389, - 5.8612355E-4, - -0.095036015, - 0.020530812, - -0.05333601, - 0.007070396, - 0.20882203, - -0.002491222, - 0.05792887, - -0.056591336, - -0.105955675, - -0.037401684, - 0.092651054, - -0.003274716, - 0.022304758, - 0.12432396, - -5.8049243E-4, - 0.12067332, - -0.006974907, - 0.014633036, - 0.029221596, - 0.028820936, - 0.10269456, - 0.12596737, - -0.022691233, - -0.027253218, - -0.10383718, - 0.30617413, - 0.021357289, - -0.028508192, - 0.089611776, - 0.008456861, - 0.03888452, - 0.066361964, - -0.046530634, - 0.048283666, - -0.1453583, - -0.04939311, - -0.07438088, - -0.045311723, - 0.10195891, - 0.21506038, - -0.15790334, - -0.06779286, - -0.20283379, - 0.054477118, - -0.07236452, - -0.06182639, - 0.1131305, - -0.04868485, - -0.04976037, - 0.037283972, - -0.13194586, - -0.033655472, - 0.017679673, - 0.028645387, - 0.21407472, - -0.015341954, - 0.16765876, - -0.092922226, - 0.009531324, - -0.058196303, - 0.032283414, - 0.1530215, - 0.0077347346, - 0.040294006, - -0.11458619, - -0.112819195, - 0.06264586, - -0.08881358, - -0.13761367, - 0.10898229, - -0.0044768443, - -0.03013193, - 0.100363575, - -0.12744552, - 0.050914157, - -0.056805637, - -0.20487538, - -0.09213991, - 0.12217885, - -0.057268422, - 0.049888685, - 0.02386059, - 0.010836434, - -0.015573808, - 0.107498534, - -0.10707248, - -0.0039825584, - -0.14640822, - 0.038309757, - 0.17618127, - 0.016795732, - 0.11415581, - -0.11522474, - 0.23056588, - 0.054580398, - -0.19839196, - 0.009830542, - -0.006971053, - -0.15616883, - 0.07307656, - 0.026422115, - -0.12007935, - 0.17967905, - 0.14045835, - -0.07940152, - 0.08858191, - 0.010474964, - 0.028164802, - -0.10076934, - -0.08636108, - 0.14770888, - 0.10218223, - 0.21129364, - 0.03241971, - -0.0232328, - -0.15629762, - 0.18609709, - 0.13301945, - -0.04456967, - 0.04500225, - 0.0059867157, - 0.037505366, - 0.12441644, - -0.01789098, - 0.09922579, - 0.030749936, - 0.15355922, - -0.0922063, - 0.1449717, - -0.013062745, - 0.00945303, - -0.014731263, - -0.18923897, - -0.0023523541, - 0.18245754, - -0.10248329, - 0.024630032, - -0.03756669, - -0.044701587, - -0.084260575, - 0.039157227, - -0.045700677, - 0.09754504, - 0.025226817, - -0.06808102, - 0.15350857, - 0.0981428, - -0.08806323, - 0.023042722, - -0.15963104, - -0.19541182, - 0.15138014, - -0.08681526, - 0.054331403, - -0.10670584, - 0.016252622, - 0.0811587, - 0.016919114, - 0.10095695, - -0.08632664, - 0.009699545, - -0.06300228, - -0.051007748, - 0.057493456, - -0.0706508, - -0.027111765, - 0.036683127, - 0.0965606, - 0.038905915, - 0.09288601, - -0.076955914, - 0.015407674, - 0.09170785, - -0.0154927485, - 0.052636143, - 0.08632517, - 0.030065905, - -0.023251228, - -0.022455126, - -0.0041545723, - -0.117903486, - 0.031331312, - 0.16743119, - 0.016067134, - -0.002354581, - 0.045697555, - -0.091590874, - 0.051683243, - 0.14186233, - -0.04767691, - 0.142749, - 0.08946727, - -0.06035627, - 0.018886263, - -0.041017354, - -0.10463805, - 0.14619216, - -0.079231136, - 0.041388065, - 0.025242846, - 0.044617858, - 0.11492663, - -0.11228927, - 0.040150404, - -0.025299069, - -0.0652357, - -0.042224754, - 0.060367756, - 0.0029713535, - 0.04626707, - 0.18325442, - -0.048279874, - -0.10651194, - -0.0033978475, - -0.055761263, - -0.14690854, - -0.07208692, - 0.0067151873, - -0.06299701, - 0.07748896, - -0.13794488, - 0.024652807, - 0.008878747, - 0.08554589, - 0.024935959, - -0.04438512, - -9.611739E-4, - 0.031200882, - 0.083381794, - 0.004504327, - 0.06381803, - 0.077469565, - 0.0110979555, - 0.013256531, - 0.0089454865, - 0.13397229, - 0.10485257, - -0.059565812, - 0.066372335, - -0.03341946, - -0.1092131, - 0.0050841398, - 0.08326299, - 0.06833114, - 0.047526885, - -0.07071478, - -0.060518723, - -0.05659507, - -0.07908985, - 0.008701999, - 0.050786227, - 0.038770597, - 0.0017535198, - 0.12832372, - -0.031851158, - -0.017993817, - -0.11611717, - -0.20422053, - 0.055287957, - -0.141447, - 0.05261559, - 0.07431163, - -0.07453165, - -0.027140092, - 0.012219038, - -0.041234396, - 0.027608052, - -0.09055167, - 0.1146591, - 0.08231162, - -0.074555665, - 0.057180904, - 0.101862065, - -0.059285045, - -0.060954202, - -0.14967439, - 0.10218014, - 0.07304448, - 0.04925689, - -0.10268651, - -0.122795254, - -0.127034, - -0.0046379, - -0.09782543, - 0.01835049, - -0.15565653, - 0.06774996, - -0.221748, - 0.0689836, - -0.09840307, - 0.014846572, - -0.071509555, - 0.0947946, - 0.068507835, - 0.019288173, - 0.20964307, - 0.049839526, - 0.11343122, - -0.024574574, - -0.07471994, - -0.13287582, - 0.10237768, - -0.096774176, - 0.10947684, - -0.08285011, - -0.026276024, - -0.19128402, - -0.006382833, - 0.057596702, - 0.15328546, - 4.4028182E-4, - -0.11915216, - 0.017751597, - -0.035970718, - -0.02299478, - 0.04111881, - 0.0058417995, - 0.029662006, - 0.109550305, - -0.06508833, - -0.023593958, - -0.099961065, - -0.041514985, - 0.051685285, - 0.38114372, - -0.0828508, - -0.09989497, - -0.10192561, - 0.06250106, - -0.011318749, - 0.20602699, - -0.076414734, - -0.11141873, - -0.09992581, - 0.18175511, - 0.032579176, - 0.10826147, - -0.062120426, - 0.08492738, - 0.015949367, - -0.0064064274, - -0.06175992, - -0.027486602, - -0.03435821, - -0.07129028, - 0.01547784, - 0.04227616, - 0.0069277743, - 0.073077396, - -0.045743044, - 0.08406373, - 0.07204289, - -0.051157407, - 0.047918983, - -0.07219414, - 0.03679018, - -0.33657587, - 0.092638224, - -0.13758573, - -0.041065987, - -0.16090551, - 0.08035109, - 0.1388744, - -0.119112164, - -0.13673423, - -0.06211363, - -0.1686017, - 4.94243E-5, - -0.029638246, - -0.048934698, - -0.104898565, - 0.05920545, - -0.03144819, - -0.032241173, - -0.03523966, - -0.0707543, - -0.1726259, - -0.06319827, - 0.18897481, - 0.08623264, - 0.10428899, - -0.057235148, - -0.07756017, - -0.17388962, - -0.13806699, - 0.04787684, - 0.028529506, - 0.07274187, - -0.067479715, - 0.19101979, - 0.07729156, - -0.034309383, - 0.007129873, - -0.13901444, - -0.00948704, - -0.0030514703, - -0.049650386, - -0.03445111, - -0.09273046, - 0.0257627, - 0.0639759, - -0.15517625, - 0.04270737, - -0.13737296, - -0.11304192, - 0.09751261, - 0.12150297, - -0.026852224, - -0.057739064, - -0.0065941345, - -0.08462621, - 0.07528399, - -0.051159553, - 0.15385577, - -0.2095216, - -0.009724497, - -0.14830093, - -0.008490656, - -0.1518258, - -0.13615851, - 0.005129737, - -0.046630107, - -0.031257838, - -0.13842532, - -0.020411609, - -0.00456261, - -0.002638653, - -0.124558456, - 0.009522497, - 0.0135418605, - -0.13039297, - 0.054315716, - 0.11947295, - -0.008512156, - 0.08571088, - 0.02651196, - 0.107416704, - 0.1759236, - -0.13410595, - -0.030013159, - -0.10386994, - -0.054634433, - 0.12630612, - 0.0479192, - -0.2712572, - 0.031164207, - -0.08671274, - 0.15524602, - 0.021964414, - 0.09463066, - -0.07146325, - -0.089098305, - 0.07669177, - -0.09172594, - 0.015459775, - -0.06052358, - 0.1340794, - 0.1642134, - -0.12467028, - 0.11375889, - -0.13587123, - 0.002637277, - -0.043292183, - 0.20742777, - -0.07506662, - 0.094404645, - 0.0044026724, - 0.057187784, - -0.0123652695, - 0.03963677, - 0.102930434, - 0.25292373, - -0.13338302, - 0.02533947, - 0.105493374, - -0.082275815, - -0.098219916, - -0.0022951188, - -0.09745109, - 0.08140337, - 0.07715668, - 0.044745572, - 0.04864538, - 0.0365588, - 0.14531265, - -0.07137253, - 0.028247204, - 0.069466405, - 0.020689882, - 0.08765992, - 0.073442295, - 0.11253026, - -0.11403769, - -0.06534214, - -0.001743889, - 0.0349362, - -0.10982251, - -0.017086279, - -0.0971334, - 0.013333589, - 0.049524758, - 0.04157219, - 0.079568416, - 0.022558272, - -0.026644193, - 0.047560975, - -0.0045111524, - 0.05979032, - 0.09315037, - -0.015668906, - 0.2239148, - -0.14032741, - 0.030364024, - -0.14006034, - 0.1859878, - 0.026512574, - -0.1761831, - 0.01586756, - 0.21669327, - 0.057157025, - 0.0073847817, - 0.06257514, - -0.006830387, - -0.05428347, - -0.02108955, - -0.18349531, - 0.078299105, - 0.031248933, - 0.16325586, - -0.088314936, - -0.056543577, - -0.10276461, - 0.048147704, - -0.2353301, - -0.08624445, - -0.0638311, - -0.12562165, - -0.090965025, - -0.029449586, - 0.046396885, - -0.12404659, - -0.041257173, - 0.0040965686, - -0.0035933969, - 0.12147764, - 0.13344203, - -0.025698565, - -0.008863775, - -0.072687924, - -0.020654965, - 0.026626747, - -0.0038737177, - -0.008449914, - -0.028782835, - 0.18351448, - -0.10686617, - -0.020374129, - -0.18174294, - -0.090544246, - 0.061899085, - -0.058444254, - 0.081370056, - -0.0016769506, - -0.033874538, - -0.060012873, - 0.060358834, - -0.10501706, - -0.115282126, - -0.057940193, - 0.0016141995, - -0.020633094, - -0.08078392, - -0.034116164, - 0.049919706, - -0.1833308, - 0.13815197, - 0.1326296, - -0.01951879, - 0.052943196, - -0.10014493, - -0.006291486, - 0.0905119, - 0.05478897, - -0.0046276953, - 0.0923732, - -0.21213065, - 0.00636457, - 0.008063715, - -0.06498232, - 0.04459759, - -0.07193745, - 0.1268762, - 0.15259409, - 0.17135994, - -1.2378767E-4, - -0.120180294, - -0.061440222, - 0.005535205, - -0.04483439, - -0.16998376, - 0.08827713, - 0.048849415, - -0.16192389, - -0.10100331, - -0.03281348, - 0.08280326, - -0.012986821, - -0.045016408, - 0.07638397, - 0.08270773, - 0.07162441, - -0.0059923492, - -0.010175157, - -0.0012508361, - -0.028751608, - -0.1857501, - 0.1266385, - -0.035474647, - 0.18198314, - 0.07782193, - 0.044439714, - 0.13289382, - 0.059055984, - 0.09513689, - -0.007712217, - 0.15198025 - ], - "features2" : [ - 0.05810113, - 0.049612306, - -0.043678004, - -0.081483625, - 0.055283476, - 0.03213142, - 0.020450193, - -0.14919487, - -0.044834703, - -0.17112409, - 0.10667028, - -0.07264508, - 0.15957382, - 0.07883456, - -0.18798198, - 0.08757522, - -0.017809078, - 0.014044314, - 0.0113571435, - 0.03665249, - -0.059718892, - 0.053384867, - -0.042585924, - -0.029649539, - -0.04774727, - 0.09835428, - 0.13900417, - -0.020561589, - -0.051174898, - 0.14138684, - 0.0122027565, - 0.052514605, - -0.16765212, - 0.10850578, - 4.5274384E-5, - 0.023270493, - 0.050608728, - -0.019658722, - -0.11432121, - -0.07310247, - -0.026292311, - -0.12714325, - -0.01702856, - -0.05117726, - 0.01617501, - -0.04408355, - 0.033907093, - -0.011161824, - -0.0016999653, - 3.6100857E-4, - 7.553625E-4, - 0.15021236, - -0.035452977, - -0.0588597, - 0.15923104, - 0.09075027, - 0.0761481, - -0.11616174, - -0.14701214, - -0.017343255, - -0.094366655, - 0.0839171, - 0.04418968, - 0.1295052, - 0.010956945, - -0.019896807, - -0.038031943, - -0.13688225, - -0.16712633, - 0.17092082, - 0.05486311, - -0.10591205, - 0.19662815, - -0.01098337, - -0.047673166, - 0.059434563, - -0.025536817, - -0.14797977, - -0.124494314, - -0.024862435, - -0.04118569, - 0.038969055, - 0.016822368, - 0.09021569, - 0.16311756, - 0.08917228, - -0.15002196, - -0.079848096, - 0.08421009, - 0.16703472, - -0.058521107, - -0.013819832, - 0.12414467, - -0.13267955, - 0.08379965, - -0.066299155, - -0.06970816, - 0.038847223, - -0.04498825, - 0.10877878, - 0.082601175, - 0.02627945, - -0.06975522, - 0.09141317, - 0.13067593, - 0.09303462, - -0.14888482, - 0.22002277, - 0.08814838, - 0.08398417, - -0.02259681, - 0.124406606, - -0.020833379, - 0.026215646, - -0.11166712, - 0.09989444, - -0.012343995, - -0.060904827, - 0.06477859, - 0.06792252, - -0.11975871, - 0.05596389, - 0.12870193, - -0.035068724, - -0.060087413, - -0.10415711, - 0.108387865, - -0.1277439, - -0.07272503, - 0.0012589376, - -0.08040016, - -0.108182706, - 0.016882684, - 0.03549701, - -0.06742744, - -0.022858327, - 0.0091263885, - 0.14399506, - -0.25309762, - -0.15320499, - 0.022710983, - 0.1380423, - -3.211244E-4, - -0.08086758, - -0.13858904, - 0.019878957, - 0.013250256, - -0.1779116, - -0.055937268, - 0.122422755, - -0.07895329, - 0.063024916, - 0.071488775, - -0.07479081, - 0.09875345, - -0.006659088, - -0.04952805, - -0.035054043, - -0.02604562, - 0.08437757, - 0.046459917, - 0.014840943, - -0.08032043, - 0.020611115, - 0.0040748045, - -0.16585389, - -0.15600927, - 0.011927627, - -0.031518415, - -0.18907784, - -0.060865164, - -0.13293208, - 0.029493935, - 0.1103703, - -0.02676513, - 0.03457156, - 0.0021537403, - -0.12585106, - 0.15627585, - 0.14468785, - -0.03679491, - 0.13566007, - 0.124447666, - -0.033388916, - 0.006915154, - -0.119569235, - 9.4803073E-4, - 0.03628252, - 0.0034006212, - -0.070736036, - 0.04384734, - -0.029946651, - 0.15173607, - 0.012840984, - -0.11691749, - 0.024145206, - -0.065450646, - -0.04761228, - -0.0125774015, - 0.068949655, - -0.03710203, - -0.19216359, - -0.07489857, - -0.0049223327, - -0.07551831, - -0.061182514, - 0.15364851, - 0.012061583, - -0.00551305, - 0.12576693, - 0.07951288, - 0.06945931, - -0.03777535, - 0.08354487, - 0.04666914, - -0.062308878, - -0.06069564, - -0.03889194, - -0.015507903, - 0.14878473, - -0.03805191, - -0.079367936, - 0.092983484, - 0.20326778, - -0.19406395, - 0.048298053, - -0.097876616, - -0.01641519, - -0.045541976, - -0.07026687, - 0.03268346, - 0.0692423, - 0.030252477, - 0.08168895, - -0.052876677, - 0.07759033, - 0.04325521, - 0.007605112, - 0.15236129, - 0.037585523, - 0.046277378, - -0.10006805, - -0.09228849, - -0.059940904, - -0.057364322, - 0.07384372, - -0.04987468, - -0.070913926, - 0.051138304, - -0.11838543, - -0.11371222, - 0.09196029, - -0.004875015, - -0.08355869, - 0.040900707, - 0.036569115, - -0.09053306, - -0.024487503, - 0.17522876, - -0.007701775, - -0.03381022, - -0.06798254, - 0.008024795, - -0.06608776, - 0.051938843, - 0.04725599, - 0.14226961, - 0.021190532, - -0.11487912, - -0.0920562, - -0.072377495, - 0.16529638, - -0.17549275, - 0.021710822, - 0.06876413, - -0.021337545, - -0.15245922, - 0.058884464, - 0.0129424585, - -0.019374352, - 0.15111335, - -0.016730906, - -0.1444254, - 0.04778459, - 0.103883974, - 0.088615246, - 0.017298458, - 0.08071433, - -0.12628773, - 0.03707389, - -0.011991232, - 0.050349027, - 0.051542163, - -0.095923975, - 0.12218391, - 0.06078636, - 0.008530724, - -0.08978496, - 0.06377595, - 0.009486578, - -0.04827519, - -0.003611357, - -0.022488613, - -0.16005865, - 0.06604567, - 0.017321192, - -0.17135648, - 0.025676463, - 0.0702137, - -0.065223485, - 0.027058987, - 0.019705817, - -0.15522276, - 0.14453524, - -0.17755432, - -0.0015397994, - -0.10568841, - -0.034979254, - 0.041927163, - 0.061733883, - 0.06668181, - -0.008649705, - 0.20325874, - 0.026918458, - 0.11605982, - 0.10026608, - 0.007583021, - 0.11557233, - -0.10347167, - -0.033378296, - -0.05232567, - 0.0922252, - -0.16565561, - 0.18404666, - 0.009768762, - 0.020729162, - 0.0930624, - 0.099747404, - 0.01757389, - 0.03759977, - 0.08993451, - 0.06669862, - -0.14136279, - -0.017225536, - 0.0036197752, - 0.06690868, - -0.026511164, - -0.016109081, - -0.009469306, - -0.024586905, - 0.13211048, - -0.08362109, - -0.021449583, - -0.18209513, - 0.04742185, - -0.22156686, - 0.01575917, - -0.055861086, - -0.13356547, - -0.0917896, - -0.110072285, - 0.036470875, - -0.05823901, - -0.015131832, - -0.19352308, - 0.101786375, - -0.059126027, - -0.113453194, - 0.04387526, - -0.070587955, - -0.007193473, - -0.1343941, - 0.07583871, - 0.118922405, - 0.09238473, - 0.011405995, - 0.12849547, - -0.09192891, - -0.05870656, - -0.06318165, - -0.023827164, - -0.14065263, - -0.039938137, - 0.1074261, - 0.083955474, - 0.030625805, - 0.09859949, - -0.038062222, - -0.08630316, - 0.033826325, - 0.0613226, - -0.05097953, - -0.044264466, - -0.0720706, - 0.03870757, - 0.044624668, - 0.09152173, - -0.016810153, - -0.026052421, - 0.09142492, - -0.010863461, - -0.066072576, - 0.09923156, - -0.0064846855, - -0.055774253, - -0.14037316, - 0.13918419, - 0.04021712, - -0.07097085, - -0.10050776, - 0.026168352, - -0.037379712, - 0.022806946, - 0.021198522, - 0.07103039, - 0.085451424, - 0.0055360445, - -0.17238203, - 0.033186413, - -0.15181991, - -0.061718058, - -0.0701469, - 0.13716607, - 0.046048723, - 0.04214178, - 0.13806383, - 0.017469179, - 0.02843685, - -0.036954578, - 0.019226644, - -0.21074426, - -0.12335861, - -0.038217187, - 0.080492586, - 0.066103764, - -0.044957824, - 0.03173174, - -0.08545723, - -0.1398195, - 0.16843052, - 0.08497523, - 0.025478866, - 0.011482468, - 0.08023491, - 0.11301906, - 0.09495845, - 0.051737256, - 0.05200446, - -0.11819364, - -0.0014295252, - -0.11946448, - 0.057742164, - 0.016950114, - 0.10532601, - 0.015287974, - 0.05643964, - 0.15110306, - 0.059245292, - 0.08373743, - 0.07913545, - -0.016852742, - 0.04687897, - 0.044202805, - -0.0038709687, - 0.097076625, - 0.018708616, - 0.0240427, - -0.1915082, - -0.0013791178, - -0.046493642, - -0.015874969, - 0.10764001, - 0.17264293, - -0.06981398, - -0.17168587, - 0.020861706, - -0.18706648, - 0.024537403, - 0.075306416, - -0.18301046, - -0.08344165, - -0.11549937, - 0.1159401, - 0.04415707, - -0.023832995, - 0.04261459, - -0.014629873, - 0.17956415, - 0.08277748, - -0.021629753, - -0.12328472, - -0.067761995, - 0.12356498, - 0.06868169, - 0.22284658, - -0.21667865, - -0.011627531, - -0.018519187, - 0.06480197, - 0.08702237, - -0.09960547, - 0.09541246, - -0.14916204, - 0.04646895, - -0.10734315, - -0.118938155, - -0.010296989, - 0.06268867, - 0.09461459, - 0.09022573, - -0.1712026, - 0.14155136, - 0.24711792, - -0.14038289, - 0.036751974, - -0.015486817, - 0.12138587, - -0.10409911, - 0.033284914, - -0.26504543, - -0.17883618, - -0.06074354, - -0.04922082, - 0.1489514, - 0.0899623, - -0.014671466, - -0.0011817804, - -0.20534939, - -0.1554874, - 0.013667708, - 0.10313227, - -0.0583511, - 0.07003458, - -0.07306577, - -0.17633261, - 0.13180329, - -0.14576891, - -0.045508463, - -0.025509372, - -0.11548656, - 0.16824245, - 0.14714256, - -0.0227148, - -0.089719854, - 0.018616673, - 0.110808365, - 0.001481968, - 0.0046850527, - -0.021944173, - 0.0041975905, - 0.1109743, - 0.016112572, - 0.011837108, - -0.019588886, - -0.017625349, - 0.114881516, - -0.0065749804, - 0.07656366, - 0.19858016, - 0.084748775, - 0.09244633, - 0.10397756, - -0.08199675, - -0.092578456, - 0.040303268, - 0.08634888, - -0.04400048, - -0.026531838, - 0.06339066, - 0.0018056261, - 0.08043787, - -0.049100935, - -0.08964377, - -0.017403042, - -0.024002336, - -0.10311527, - 0.09010185, - -0.06189205, - 0.020564178, - 0.029707914, - 0.008086393, - -0.15014884, - 0.042962067, - 0.021342233, - -0.005233868, - 0.09870368, - 0.05075839, - 0.1320929, - -0.04712687, - -0.07580867, - -0.029748976, - -0.024534458, - -0.12262227, - 0.017102735, - -0.0011218656, - 0.07578847, - 0.023346856, - 0.058104593, - 0.30283007, - -0.18559794, - 0.035555262, - 0.0013138442, - 0.09436953, - 0.044686697, - -0.03847955, - -0.022456558, - -0.13937698, - 0.014554928, - 0.18105234, - -0.033060297, - -0.017339746, - -0.07237915, - -0.055887252, - -0.10633778, - 0.11716879, - 0.04408874, - 0.03122642, - 0.04096568, - -0.038614847, - 0.062108032, - -0.09591609, - -0.03822554, - 0.11297939, - -0.051643696, - 0.08903678, - 0.06516504, - 0.093536615, - 0.21460348, - -0.0822374, - 0.027270706, - -0.043714825, - 0.059071958, - 0.016881151, - 0.027412133, - 0.10490294, - -0.084990375, - 0.112037346, - -0.018385796, - 0.019819025, - -0.058335252, - 6.745863E-4, - -0.0039390926, - -0.21076187, - -0.09002461, - 0.2011477, - 0.06620465, - -0.030299567, - -0.03873885, - -0.006154878, - 0.09873003, - 0.033964258, - 0.087566756, - 0.13673876, - 0.09059874, - -0.027152233, - 0.06518442, - 0.03040576, - 0.019275445, - -0.10408279, - -0.17903146, - 0.0071495464, - 0.07287473, - -0.016830051, - -0.010687602, - 0.14840995, - -0.011909701, - -0.05759018, - -0.1697244, - 0.10399781, - 0.06813037, - -0.08930224, - 0.26106814, - -0.0011779517, - 0.18116206, - 0.0019226726, - -0.046474732, - 0.010583456, - 0.029776562, - -0.041008845, - -0.19191763, - 0.21231955, - -0.08401938, - -0.045494378, - 0.022001728, - 0.02327898, - 0.079225875, - 0.04371525, - -0.01187361, - -0.010801942, - -0.0964003, - -0.08384328, - 0.07153751, - -0.0075102164, - -0.08224193, - -1.537418E-4, - -0.059014983, - -0.083211385, - 0.022995522, - -0.03031825, - -0.20256904, - 0.09145521, - 0.04727639, - 0.031866148, - 0.027741404, - -0.021167248, - 0.048288878, - 0.10141206, - 0.049346857, - 0.07643324, - 0.010893743, - -0.017284812, - 0.01014282, - -0.049763482, - 0.05288246, - 0.1288563, - -0.054253858, - -0.095052205, - 0.049395915, - 0.018984992, - 0.011541428, - -0.07881667, - -0.15038517, - -0.14629978, - 0.055377617, - 0.069344796, - 0.15434964, - 0.19336988, - 0.028113786, - -0.041021496, - -0.013342345, - -0.08910149, - 0.09821712, - -0.2896395, - 0.13685979, - -0.014631823, - 0.054349627, - -0.06658161, - 0.069658004, - 0.010638103, - -0.02145182, - -0.1289934, - -0.019044846, - -0.08627789, - -0.12699933, - 0.002580112, - 0.11509009, - -0.013387943, - 0.14196657, - -0.06912118, - -0.17528929, - 0.0575858, - -0.15821606, - 0.006203535, - 0.09039267, - 0.060460288, - -0.03420938, - 0.075220205, - 0.0017292439, - -0.032251835, - 0.003587125, - 9.404857E-4, - -0.13182192, - -0.105181724, - 0.05776047, - 0.04685579, - -0.17199388, - -0.0873902, - 0.11019448, - 0.14943954, - 0.009544448, - 0.032907177, - 0.0246665, - -0.11393641, - -0.09898118, - -0.04557508, - 0.095263384, - 0.05240038, - -0.04232721, - -0.05404939, - -0.003572788, - 0.06755863, - -0.033054683, - -0.044583768, - 0.003023057, - 0.16550061, - -0.05626393, - 0.02368702, - -0.17582883, - 0.07088082, - -0.07338473, - -0.03902415, - -0.04795039, - -0.0389181, - 0.14823833, - -0.1566452, - -0.031367935, - -0.0063804137, - -0.05834718, - -0.07445311, - 0.042108867, - -0.07107385, - 0.0405643, - -0.023018155, - 0.15380277, - -0.04824936, - -0.038684044, - 0.004522936, - -0.08528705, - 0.03990378, - 0.042837195, - -0.069727056, - -0.08845423, - 0.025697466, - 0.10469225, - 0.004638803, - 9.1512315E-4, - 0.02728856, - 0.03572409, - 0.0811432, - -0.087648205, - 0.015407464, - -0.19870882, - 0.07296997, - 0.027132275, - -0.22247194, - -0.106411695, - -0.071475655, - -0.11445355, - 0.22221151, - 0.14731173, - -0.003918807, - -0.045020282, - -0.051443618, - -0.10460921, - -0.10081187, - -0.05137974, - 0.05622521, - -0.14924489, - -0.035658713, - -0.0413173, - 0.087772645, - -0.019443335, - 0.02785792, - 0.0081581725, - -0.03750705, - -0.052468136, - -0.016409641, - -0.1648904, - 0.056520883, - -0.00325948, - -0.12765141, - -0.1480477, - 0.046667736, - -0.09822354, - -0.079124674, - 0.0609428, - -0.08074521, - 0.039269798, - -0.0878177, - -0.11541594, - -0.072288804, - -0.111597106, - -0.07501476, - 0.05680868, - -0.099549726, - -0.08533598, - 0.06748992, - 0.09148786, - -0.07115469, - -0.108031124, - -0.2044726, - -0.16200158, - -0.067498155, - 0.06203011, - -0.0047639403, - 0.20734778, - -0.03014347, - 0.022466559, - 0.08842638, - 0.070593365, - 0.015547021, - 0.07635786, - -0.04505536, - 0.031879276, - -0.0774644, - -0.021802675, - 0.057622027, - -0.041371875, - 0.032707997, - 0.008659039, - 0.05067462, - -0.12898213, - 0.041757923, - 0.15837899, - 0.08702205, - -0.18637256, - -0.0028286162, - -0.043957956, - -0.08179628, - -0.031606946, - -0.11661996, - 0.0516822, - 0.03909796, - -0.0155295795, - -0.13649973, - 0.05591648, - -0.0061734845, - -0.04599737, - 0.1888511, - 0.07252083, - -0.016610779, - 0.04041443, - -0.047573984, - -0.17617643, - 0.04346674, - 0.033503342, - 0.074657515, - -0.363374, - -0.08239216, - -0.071969606, - -0.04154644, - -0.15687329, - -0.08638764, - 0.08893181, - -0.024562303, - 0.079622604, - -0.12833065, - 0.17071125, - 0.10642374, - 0.13946402, - 0.09708809, - -0.21330364, - -0.08084551, - 0.020094963, - -0.016761642, - 0.095134504, - 0.19679488, - -0.23712568, - -0.24015462, - 0.10948263, - -0.060216896, - -0.01991129, - 0.02223137, - -0.02458236, - -0.1429516, - -0.08822642, - -0.056232993, - -0.022045333, - 0.06863514, - 0.10342711, - -0.0156462, - 0.023205545, - -0.0021423842, - -0.025595313, - -0.0022261562, - -0.07864492, - -0.03959946, - 0.049812824, - -0.09810585, - -0.16815747, - 0.009519252, - 0.0045941994, - 0.11892379, - 0.01499884, - -0.100753635, - 0.05045033, - -0.06375169, - 0.10123566, - 0.016439494, - 0.22882748, - -0.026517669, - -0.11698222, - 0.07328051, - 0.036473043, - -0.05661016, - -0.0026277467, - 0.03120803, - -0.0012253677, - 0.032058187, - 0.025667949, - 0.12492713, - 0.01043796, - -0.025101947, - -0.012842793, - 0.096714385, - 0.0044689, - 0.011907478, - 0.08340926, - 0.007894067, - -0.2732977, - 0.12550704, - 0.07428504, - -0.036539823, - 0.04946218, - -0.0063470444, - -0.0028793614, - -0.13822071, - -0.07906184, - -0.16923875, - 0.06718712, - -0.061118104, - -0.22007707, - 0.101623535, - 0.061001785, - -0.04689924, - -0.0046409983, - 0.016108619, - -0.035451494, - -0.08119203, - 0.11939247, - -0.08556089, - 0.041208424, - 0.17709655, - -0.046374295, - -0.10524291, - -0.02759836, - -0.0040870258, - 0.0134321535, - 0.097479925, - -0.045066945, - 0.24250287, - -0.10551761, - 0.0149328355, - -0.054366976, - 0.024900436, - -0.040198397, - -0.07035291, - 0.034220293, - -0.033182304, - 0.06503947, - 0.12505537, - -0.07597897, - -0.031613953, - -0.007863712, - -0.20412299, - -0.0403945, - -0.16377698, - 0.0023217406, - -0.16846445, - 0.016646344, - 0.15923148, - 0.011958967, - 0.033164248, - -0.2151409, - 0.003906588, - 0.110540695, - -0.098429464, - 0.0737653, - -0.103064574, - -0.100300856, - 0.003200121, - -0.106282905, - -0.16428457, - 0.058162156, - 0.041548606, - -0.089419596, - -0.059555653, - 0.055131413, - -0.018482959, - -0.1713961, - 0.035137057, - 0.050765447, - -0.08015566, - 0.103956334, - 0.017872734, - -0.075122, - 0.030572094, - 0.18713781, - -0.0043675676, - 0.12914984, - 0.08953126, - -0.021697162, - -0.0565841, - 0.11253948, - 0.0118051795, - 0.1521467, - 0.05487972, - -0.041990567, - 0.101864256, - -0.082048945, - 0.07973857, - -0.090730496, - -0.030188678, - -0.13878065, - 0.102337494, - 0.29712945, - 0.055853177, - 0.12638041, - 0.060446974, - 0.010088672, - 0.007735721, - -0.064520776, - 0.115766354, - 0.03959857, - -0.10778153, - -0.13194329, - -0.08763884, - -0.040029723, - 0.07093489, - -0.066809766, - 0.06272827, - -0.030950464, - -0.025319302, - -0.045949228, - -0.13399702, - 0.030474136, - -0.0049800854, - -0.103238374, - -0.07700361, - 0.13779324, - 0.1372383, - -0.11061238, - -0.12205662, - -0.068818875, - 0.018069265, - -0.039006364, - 0.033074692, - 0.012717417, - 0.03905652, - -0.036284212, - -0.03405018, - -0.012381006, - 0.09859417, - -0.19511653, - -0.005860894, - 0.0015924961, - -0.0046408335, - 0.10096794, - 0.09485378, - -0.11657733, - 0.019750517, - -0.005965296, - 0.011303604, - 0.064095125, - 0.039888307, - -0.107643925, - -0.113199204, - -0.19496563, - 0.06295069, - 0.042558964, - 0.03241512, - -0.013922647, - -0.0046557104, - -0.043541018, - 0.06563957, - -0.18391353, - -0.16564646, - 0.16724315, - 0.07142311, - 0.10972594, - -0.05922398, - -0.016747981, - -0.2420292, - -0.035193197, - -0.13264012, - -0.06538028, - 0.24538724, - -0.09737349, - -0.00862333, - -0.0075009177, - 0.063623786, - 0.020524625, - 0.022369862, - -0.10611545, - 0.17608531, - 0.04387507, - -0.03674933, - -0.12669791, - 0.12307628, - -0.14617117, - -0.02884059, - 0.107465416, - 0.21901603, - 0.10520948, - -0.026218813, - 0.008211395, - 0.118428804, - -0.07758421, - -0.011996776, - -0.12551825, - 0.005078483, - 0.086071804, - -0.114189826, - -0.10859012, - 0.030658748, - 0.055357795, - -0.047523867, - -0.113789976, - 0.09282532, - 0.030972386, - 0.07248284, - -0.059104003, - 0.11487818, - -0.056372512, - 0.03341926, - -0.06060879, - -1.2851223E-4, - -0.04452307, - 0.24286768, - -0.08883515, - 0.0605911, - -0.047050633, - -0.10322569, - 0.1804855, - 0.021557081, - -0.14384034, - -0.03312022, - -0.049447708, - -0.079353504, - -0.15149124, - 0.16689293, - 0.039298847, - 0.06028156, - -0.06568229, - 0.031051015, - -0.068473324, - 0.15851025, - 0.09170165, - -0.061118122, - -0.026347235, - 0.10471019, - 0.08221021, - 0.018027782, - -0.13681854, - 0.091373764, - 0.06805724, - -0.030832887, - -0.097532324, - 0.17107125, - -0.10061114, - -0.15233415, - -0.12171125, - 0.06877974, - -0.12726772, - 0.2256961, - 0.027910983, - 0.068450905, - -0.03688762, - 0.11259386, - 0.10959669, - -0.023011964, - 0.15091619, - 0.14886758, - -0.19632965, - 0.0013443981, - -0.13648453, - 0.014456477, - 0.07708132, - -0.135797, - 0.052470133, - 0.100906365, - -0.055708762, - -0.052164696, - -0.14200848, - 0.015209614, - -0.061277196, - 0.117012, - 0.022029836, - 0.013401258, - 0.03671717, - 0.179504, - -0.07972238, - 0.04826428, - 0.21447954, - -0.017043322, - -0.14521706, - 0.011678169, - 0.06859572, - -0.01238095, - 0.13922757, - -0.059606, - -0.018753992, - -0.0496207, - 0.0039773597, - 0.102657616, - -0.039543077, - -0.07426235, - 0.02034177, - 0.14837874, - -0.030180713, - -0.081156775, - 0.06374907, - -0.002257973, - 0.10047439, - 0.15822075, - 0.019576129, - -0.004359984, - 0.011860862, - 0.15329127, - 0.09400178, - 0.09498066, - 0.15662329, - -0.045472465, - -0.030913156, - -0.119869016, - 0.10508446, - 0.045130827, - 0.16317677, - -0.08852662, - -0.1403724, - 0.102476805, - -0.10729404, - 0.06436556, - -0.18848416, - 0.010375318, - 0.06739502, - 0.10121743, - 0.20152286, - -0.023411244, - -0.008000915, - -0.051389415, - 0.00350348, - -0.013674392, - -0.190268, - 0.004343046, - 0.13104145, - 0.06145657, - -0.20167796, - -0.1269388, - 0.070564575, - 0.054897502, - -0.018909207, - 0.1357741, - -0.11123167, - 0.15689027, - -0.057665132, - 0.04099624, - 0.031081945, - 0.01809963, - -0.04802795, - 0.1603635, - -0.0041936, - 0.08748352, - 0.102574244, - -0.025195757, - -0.028350223, - 0.003230982, - -0.24525279, - 0.02384593, - -0.039120205, - -0.035261575, - -0.12528408, - 0.009779422, - -0.089404196, - 0.074180655, - -0.05752092, - -0.009825692, - 0.073380254, - -0.029949239, - -0.13025595, - -0.025275376, - -0.053339757, - -0.05009385, - -0.02594904, - 0.21427572, - -0.013834085, - 0.038199417, - 0.18905681, - 0.09657928, - 0.009685746, - -0.0136683555, - -0.10522796, - 0.07991618, - 0.07395012, - 0.13333873, - -0.25418237, - 0.0081141405, - 0.06125311, - 0.020193782, - -0.114814445, - 0.06364246, - -0.040708482, - 0.003506681, - 0.19252974, - -0.077983275, - -0.012329245, - -0.026932059, - 0.0068462184, - -0.033212908, - 0.29902703, - -0.016461495, - -0.076680996, - -0.017302655, - -0.21419556, - 0.113060065, - 0.15464687, - -0.023882708, - 0.05471434, - -0.018735334, - 0.070664816, - -0.053396273, - -0.0023399317, - -0.1313673, - -0.12366189, - 0.11357362, - -0.10461582, - 0.055182498, - -0.21861126, - -0.0048316736, - 0.07154256, - -0.22079523, - 0.017372634, - 0.083653845, - 0.024710529, - -6.689504E-4, - -0.12258888, - -0.051588926, - 0.05329997, - 0.101695515, - 0.17049493, - -0.022143265, - 0.096849784, - -0.04281361, - 0.09734148, - -0.02012386, - -0.059485625, - -0.03474247, - -0.09450925, - -0.12064007, - 0.11058581, - -0.049519118, - -0.012552649, - -0.08244749, - 0.012571633, - 0.025802791, - 0.055823, - 0.03764323, - -0.005711601, - -0.110159494, - -0.07491797, - -0.005961081, - 0.18973804, - 0.055311665, - 0.049106948, - 0.08146186, - 0.03603478, - 0.0059347325, - 0.09969176, - -0.13667738, - -0.084134385, - -0.03623271, - 0.13338158, - -0.056265663, - -0.08759777, - -0.0051024286, - -0.13510913, - 0.067793384, - 0.031358674, - 0.06721277, - -0.05435156, - 0.005717526, - -0.16348428, - -0.06717557, - 0.030276831, - 0.02544138, - 0.0025243042, - -0.019361585, - 0.123314954, - 0.15863317, - -0.046535574, - -0.1136715, - 0.13378216, - 0.11773298, - 0.002702747, - 0.04255216, - 0.06901832, - -0.043632623, - 0.14143229, - -0.24310203, - 0.08590048, - 0.0013075015, - 0.009683793, - 0.03765295, - -0.017600171, - 0.03739049, - -0.042521793, - 0.0017495845, - 0.079608485, - -0.11389595, - 0.053280123, - 0.01587174, - -0.0541763, - -0.20800728, - -0.17137131, - -0.13402227, - -0.07514709, - 0.008925763, - -0.0062599033, - 0.051306844, - 0.015591515, - -0.075293995, - 0.0849579, - 0.03348916, - -0.068088874, - 0.00294096, - 0.17098744, - -0.02739075, - 0.06087101, - -0.009834971, - 0.15974182, - -0.041046545, - 0.05690095, - 0.1602785, - -0.013765416, - 0.15619653, - 0.11088275, - 0.011096144, - -0.013272497, - -0.08541952, - 0.07788487, - -0.017781064, - -0.045786485, - 0.004455247, - 0.08812917, - -0.19722737, - 0.12633464, - -0.05793517, - 0.13228682, - -0.13653438, - 0.023252176, - -0.109534256, - 0.023807837, - 0.026076078, - 0.033673976, - -0.13157132, - 0.13149095, - 0.06684716, - 0.06741575, - -0.057387784, - -0.15297009, - -0.12677485, - 0.028170057, - -0.021257717, - -0.16483523, - -0.060519937, - 0.13365722, - 0.071043395, - -0.12916355, - -0.025937673, - -0.15634589, - -0.14440362, - -0.12535943, - -0.0034908545, - -0.08831395, - 0.12694785, - -0.018245913, - -0.022176398, - -0.026278222, - -0.046529662, - 0.12417014, - -0.07879291, - -0.014429537, - 0.05896779, - 0.1102846, - 0.015392665, - 0.043811146, - -0.0023664027, - 0.14871849, - -0.07897137, - 0.02986899, - -0.064851545, - -0.17467989, - -0.12947711, - 0.09365155, - -0.06605693, - -0.08498693, - 0.06895476, - 0.07432679, - 0.044632606, - -0.009819316, - -0.027046843, - -0.018810213, - -0.053800378, - -0.074607246, - -0.023375971, - 0.18867698, - 0.014700361, - 0.011823505, - -0.050458644, - -0.262929, - -0.083373606, - 0.115832955, - 0.061477132, - 0.0038608117, - 0.052892227, - 0.1075273, - 0.017840553, - 0.03025086, - 0.17873979, - -0.01642172, - 0.062522545, - -0.0406161, - 0.061126355, - -0.09965299, - -0.012155543, - -0.13296235, - 0.12168731, - -0.046650156, - 0.012640365, - -0.009064991, - 0.038180724, - -0.0077936016, - 0.0024948963, - 0.1355962, - -0.040824525, - 0.06365353, - -0.05645781, - -0.033690948, - 0.057433512, - -0.15384538, - 0.06494061, - -0.09708785, - -0.04937381, - -9.1146433E-4, - -0.06415928, - 0.06387012, - -0.045190424, - 0.07594809, - 0.07135869, - 0.08759367, - -0.15133096, - 0.041668687, - 0.11272651, - 0.05113404, - 0.13157508, - -0.08126537, - -0.0013796315, - -0.06736063, - -0.016630853, - -0.10085182, - 0.051818807, - -0.030529918, - 0.059567098, - 0.005223157, - -0.009633593, - -0.011323659, - 0.16570967, - -0.010646277, - -0.112753056, - -0.05740985, - -0.12931485, - -0.10505826, - 0.16264182, - 0.114912204, - 0.11666285, - -0.06886928, - -0.080095805, - 0.041818026, - 0.046828724, - -0.0307168, - 0.074033916, - -0.13053295, - 0.03930663, - -0.07097637, - 0.002031534, - 0.0056309905, - 0.10363944, - -0.005258033, - -0.14774728, - 0.15243374, - 0.09794772, - -0.061377697, - 0.019171651, - 0.017979857, - 0.07084193, - 0.025207926, - -0.019072274, - 0.036695722, - -0.11588933, - -0.070124775, - 0.13056502, - 0.012593497, - 0.04432483, - -0.1340173, - -0.019482516, - -0.04430734, - -0.16807951, - -0.10439984, - 2.9056799E-5, - 0.013930277, - 0.1535423, - -0.03895787, - 0.10657364, - -0.021337813, - -0.054252446, - -0.019840717, - 0.00901798, - -0.102757655, - 0.07464829, - -0.0041422546, - -0.07510175, - 0.12808855, - -0.062444262, - 0.047212962, - -0.040267803, - 0.017683722, - 0.17060478, - 0.13518567, - 0.099023916, - 0.017050536, - 0.16808064, - -0.0015276558, - -0.094495855, - 0.069284044, - 0.11702798, - -0.0512051, - -0.0034247339, - 0.048139364, - 0.18503202, - 0.11917022, - -0.11145303, - 0.14956485, - 0.065573126, - -0.13339297, - 0.045924958, - -0.16370077, - -0.06932488, - 0.009144853, - 0.18404463, - -0.15975481, - 0.007627226, - 0.008425926, - -0.04390201, - -0.15320781, - -0.11281818, - -0.14806692, - 0.029709142, - 0.049814094, - 0.12879649, - 0.1259902, - -0.18667534, - -0.05748582, - -0.031218166, - -0.008955284, - 0.107574776, - 0.0019075451, - 0.008088634, - 0.011664573, - 0.18787135, - -0.18715614, - -0.16035147, - 0.15689266, - 0.07946647, - 0.028291442, - 0.10984664, - 0.029186133, - -0.09148712, - 0.031158384, - -0.1466094, - 0.27908903, - 0.079696044, - 0.029504545, - -0.14498323, - -0.01514891, - 0.0010015895, - 0.10696233, - -0.077799864, - 0.111504205, - 0.026701868, - 0.09564132, - -0.15682803, - 0.0013530862, - -0.11673166, - 0.07938486, - 0.042075407, - -0.07444424, - -0.09516452, - 0.016546125, - -0.03375144, - -0.082113504, - 0.08107358, - -0.26187417, - 0.001954536, - 0.09637772, - 0.15654644, - 0.028264333, - 0.098940454, - 0.108495064, - -0.017146625, - -0.013167288, - -0.030951872, - 0.07872015, - -0.110774964, - 0.1700436, - -0.035856713, - -0.052718986, - 0.027485734, - -0.029288262, - 0.09135622, - 0.08944935, - 0.18713897, - 0.02791637, - 0.04996197, - 4.7875615E-4, - 0.048252635, - 0.044813134, - -0.06020837, - -0.20027965, - -0.068441875, - 0.053903405, - -0.052545127, - -0.15641303, - 0.06745904, - -0.011539447, - 0.039349318, - 0.012332691, - 0.15424144, - -0.09375326, - 0.03107379, - -0.10025222, - 0.104732245, - -0.15118419, - -0.16643369, - -0.008635976, - -0.08279555, - 0.055941798, - 0.079431705, - -0.07067339, - -0.10302918, - -0.054146294, - 0.10717494, - 0.18454966, - 0.08528355, - 0.10522779, - 0.088174105, - 0.025538296, - 0.08384664, - -0.025329892, - 0.11847812, - -0.040066272, - -0.03670707, - 0.19720596, - 0.022648204, - 0.0030445722, - 0.056523282, - 0.007087987, - -0.110271506, - 0.1508344, - 0.020397924, - -0.0029691206, - 0.0638705, - -0.011557522, - 0.12292157, - -0.07901189, - 0.05358006, - -0.2001727, - -0.03945319, - -0.04861697, - 0.1090413, - -0.008504759, - -0.1122162, - 0.0434975, - 0.077247486, - 0.10431676, - -0.04397919, - 0.018158525, - 0.12593155, - -0.003990679, - -0.052215263, - -0.0012889211, - 0.0087129045, - -0.08714471, - -0.06078167, - 0.09487261, - 0.093723305, - -0.014831755, - 0.07756737, - 0.13943501, - -0.055523906, - 0.05260847, - 0.1577863, - -0.036746204, - 0.16509816, - -0.090109676, - -0.16393825, - -0.07586709, - -0.073693454, - 0.08591247, - 0.118963026, - 0.02263106, - 0.0032408605, - 0.011126419, - -0.0117908, - -0.024923075, - -0.09683706, - 0.07068776, - 0.090931915, - 0.15180486, - 0.0052412637, - -0.07389465, - -0.114576615, - -0.066864885, - -0.09746049, - 0.061068546, - -0.11365907, - -0.046324432, - 0.05697358, - 0.026844384, - 0.015085086, - -0.08984615, - 0.12999296, - -0.13314413, - -0.21668476, - 0.09267308, - 0.13214326, - 0.06717933, - 0.20048489, - -0.11287391, - 0.059834316, - 0.048106242, - 0.18122749, - -0.16677275, - -0.020031657, - 0.06566999, - -0.07103316, - -0.007824345, - 0.12000905, - -0.0037205515, - 0.07896734, - 0.18907617, - -0.064638585, - -0.053543236, - 0.076389715, - 0.111140214, - 0.009130027, - 0.10992763, - 0.0042189136, - 0.044732787, - -3.157818E-5, - -0.005332755, - -0.012846591, - 0.04063963, - 0.046013206, - 0.03163129, - 0.1713971, - 0.097939186, - -0.019334853, - -0.081544444, - 0.020577889, - 0.04844862, - 0.0774864, - 0.08730019, - -0.032251216, - -0.07725116, - 0.09277795, - -0.11271092, - -0.15460816, - 0.20239384, - -0.0077501624, - 0.097481884, - -0.027651452, - 8.9710765E-4, - 0.13685833, - -0.04325195, - 0.04930742, - 0.09323313, - -0.15252432, - 0.116781384, - -0.04527883, - -0.19892664, - -0.03327087, - -0.117991805, - 0.10497526, - -0.074803784, - 0.065317646, - 0.13274169, - -0.07800804, - -0.018546645, - -0.24286856, - 0.057574887, - -0.011647539, - -0.09695382, - 0.0459414, - 0.11576472, - 0.04332287, - -0.069454454, - 0.061353844, - 0.07172391, - -0.1488138, - -0.057058886, - 0.0222373, - 0.09905873, - -0.0883995, - 0.17064413, - 0.03682623, - 0.010826448, - -0.0038531385, - -0.08582908, - 0.018805878, - 0.064636834, - 0.08055038, - -0.009565199, - 0.08658118, - 0.05368773, - 0.021612005, - 0.0035667075, - -0.1444527, - 0.12295677, - -0.06626304, - 0.019277278, - 0.19833265, - 0.04948967, - -0.13994905, - -0.21699849, - 0.053303905, - -0.0026109123, - -0.1164654, - -0.091842085, - -0.033817675, - 0.046327047, - -0.038993757, - 0.0462592, - -0.0040288065, - -0.13172647, - 0.045243386, - 0.08067975, - -0.025704667, - -0.114873245, - -0.06040108, - -0.023281068, - 0.0025249003, - 0.096919514, - -0.1405189, - 0.007969454, - 0.13349654, - 0.054907754, - -0.024280194, - 0.11349191, - -0.036494415, - -0.020505881, - 0.09707513, - 0.098668955, - -0.052809726, - -0.08884073, - 0.024474962, - -0.036553033, - -0.07951176, - 0.16113009, - 7.8476407E-4, - 0.03692172, - -0.058122553, - 0.061203565, - -0.06870285, - -0.014622476, - 0.04443203, - 0.1080755, - 0.10118209, - -0.085425496 - ], - "reducedFeatures" : [ - 0.0028956144, - 0.014930134, - -0.024947632, - -0.018126903, - 0.046859153, - -0.052809823, - -0.015229315, - 0.040409587, - -0.04294047, - 0.045705795, - 0.0111337425, - -0.0148777375, - 0.0030959623, - -0.0405306, - -0.0048765442, - 0.029802633, - 0.0036953473, - -0.06227585, - -0.07054335, - -0.0112716975, - -0.014927939, - 0.014736113, - -0.0019148672, - 0.0151098985, - -0.005781666, - -0.025315128, - 0.016314715, - 0.005373959, - -0.0020290918, - -0.004504846, - 0.022008855, - 0.027630264, - 0.006963265, - -0.027118726, - -0.020322422, - -0.026419941, - 0.020857776, - 0.024918864, - -0.0036608293, - -0.025647644, - -0.002467428, - -0.030427802, - 0.007776487, - -0.041560177, - 0.011926983, - 0.06844786, - 0.0062866863, - 0.008313023, - 0.008895776, - 0.04301668, - -0.03830877, - 0.036277507, - -0.02403247, - 0.0073113907, - -0.02929024, - 0.020812612, - -0.010569644, - -0.004769258, - 0.034781776, - -0.06335463, - 0.013424476, - 0.028502299, - -0.025546676, - -0.0027695328, - 0.001627466, - 0.04160648, - -0.03747786, - -0.027007883, - -0.009508738, - -0.03835591, - -0.07614863, - 0.04426523, - -0.061139535, - 0.043510437, - 0.006454601, - 0.029976798, - -0.0063548833, - -0.013431239, - 0.0035139604, - 0.04348915, - 0.042394213, - -0.032650493, - -0.040453512, - 0.05359119, - -6.296082E-4, - 0.0028072658, - 0.013651492, - 0.01613391, - 0.042774513, - -0.039513286, - 0.03220624, - -0.04358838, - 0.025564304, - 0.024246454, - -0.023663426, - 0.016422546, - 0.0013226278, - -0.0033493263, - -0.020841602, - -0.031411417, - -0.0035069361, - -2.0943579E-4, - -0.02232437, - -0.030770361, - 0.01650743, - -0.036057014, - 0.017238865, - 0.009241376, - -0.0013469948, - 0.01571741, - 0.019007074, - -0.012396184, - -0.01949769, - 0.008858226, - -0.06003172, - -0.070581645, - 0.014744563, - 0.0070073223, - 0.0033006356, - 0.045417197, - -0.03555461, - -0.040456086, - -0.016728705, - 0.023293464, - -0.035367236, - 0.002052762, - 0.031868726, - 0.0016536465, - -0.05504531, - -0.0038422134, - -0.030442994, - -0.009112387, - 0.026549485, - 0.04296441, - 0.023581738, - 0.0012661818, - -0.0093934545, - 0.012062917, - -0.0012571705, - -0.043539785, - 0.0152706, - 0.006781517, - 0.008474504, - 0.0469422, - 0.02342591, - -0.036936074, - 0.03678601, - -0.016523238, - -0.0034146153, - -0.002671598, - 3.8797068E-4, - 0.036465254, - 0.034175813, - -0.019626724, - -0.031223461, - -0.011148958, - 0.020229109, - 0.016962355, - 0.023693053, - 3.7803903E-4, - -0.076347284, - -0.028295761, - 0.029905906, - 0.06524024, - 0.036442813, - 0.041449025, - 0.024136331, - 0.026374212, - -0.0028973527, - 0.031068841, - -0.0201423, - 0.009856194, - 0.030101076, - -0.0137754455, - -0.022457954, - -0.039409757, - -3.7099858E-4, - 0.02989976, - 0.03022075, - -0.009086147, - 0.014066348, - -0.03306165, - 0.026705692, - -0.013970452, - -0.040051185, - 0.052638266, - -0.033899073, - 0.024125366, - 0.044168074, - 0.04705525, - -0.040416084, - -0.03928242, - 0.03663564, - -0.012324848, - -0.0051747607, - 0.038431097, - -0.0067927996, - -0.01479033, - 0.041403055, - -0.0146913845, - -0.007519312, - -0.016982295, - 0.0459799, - 0.02095074, - 0.00923605, - 0.04138558, - 0.015142412, - 0.011061998, - -0.05715867, - 0.023495106, - -0.050324347, - -0.024007984, - 0.027382674, - -0.020531584, - 0.018034711, - 0.006094466, - 0.030913783, - -0.007027052, - -0.011436596, - -0.012460721, - -0.014584463, - -0.059812743, - -0.015526752, - -0.07499147, - -0.02781748, - -0.009281965, - 0.017042791, - -0.028746864, - -0.01599786, - 0.069091134, - -0.049022764, - 0.04714142, - -0.030923959, - -0.046054162, - -0.03414102, - 0.026997397, - 0.07461707, - 0.026623169, - 0.01386575, - 0.029005408, - -0.0089177005, - -0.022862803, - -0.013429492, - 0.074027136, - 0.052345622, - -0.007886817, - -0.022820929, - -0.03120285, - -0.006269149, - 0.0068056155, - -0.013488256, - -0.025176821, - -0.0023501187, - -0.004198121, - 0.017558167, - 0.010278661, - -0.027964475, - -0.046589807, - 0.006418707, - 0.0088609485, - -0.0023465962, - -0.036483973, - -0.011600661, - -0.013441534, - -0.050568037, - -0.025935272, - 0.0027854028, - -0.004754112, - 0.030976491, - -0.03365919, - -0.0012814535, - -0.03388341, - 0.008765554, - 0.0046850177, - -0.00824782, - 0.0119471485, - 0.02819555, - 0.036617566, - 0.0067558014, - 0.030526046, - 0.04344685, - 0.0036565245, - 0.021128133, - -0.030533152, - -0.028517373, - 0.026640784, - -0.0025623592, - -0.0013155497, - -0.011734551, - 0.05016989, - -0.035057195, - 0.005980076, - 0.010643849, - 0.019769624, - -0.0484763, - 0.01702402, - 0.0039406507, - -0.03730546, - 0.026717693, - -0.014403466, - 0.017178714, - 0.01539403, - -0.023855876, - 0.027855786, - -0.023501463, - -0.002296825, - 0.01020007, - 0.0128078405, - -0.038959086, - -0.017763386, - -0.06471229, - 0.009380126, - -3.7372357E-4, - 0.0042411583, - 0.021427281, - -0.0024324697, - 0.029087441, - 0.01729913, - -0.03655648, - 0.061128266, - -0.017673818, - 0.035459176, - 0.013865116, - -0.053181678, - -0.012244927, - 0.008431274, - 0.0037778525, - -0.01058762, - -0.034966983, - -0.05563677, - -0.026966104, - -0.026123403, - 0.01564059, - -0.014999158, - 0.0033033965, - -0.07283788, - -0.003668553, - -0.008669856, - -0.011279128, - 0.040076364, - 0.031400792, - 0.07403808, - -0.034317046, - -0.027872635, - -0.015603835, - 0.020503532, - 0.011960849, - -0.025312942, - 0.04647737, - -0.02734438, - -0.013931621, - 0.014882076, - -0.053309128, - -0.07274023, - 0.034766264, - 0.049282122, - -0.0073850686, - -0.034627285, - 0.0030562638, - -0.0113309305, - 0.039172843, - 0.046072, - 0.019279754, - 0.011097178, - -0.00955986, - -0.021111608, - -0.018699368, - -0.024356224, - 0.016510969, - -0.011448631, - -6.201313E-4, - -0.0071933297, - 0.004943026, - 0.02299282, - -0.011125804, - -0.040279713, - 0.03733835, - -0.002891319, - -0.015301121, - 0.05431436, - -0.013914415, - 0.06241743, - 0.035070375, - -0.0131766265, - -0.024415893, - -0.050827257, - 0.06618639, - -0.012701307, - -0.016356438, - 0.043305326, - 0.039700933, - -0.042516716, - 0.013294667, - 0.023259707, - 0.012507909, - -0.012141868, - 0.03922674, - 0.0013675899, - -0.023247253, - -0.022879977, - -0.05054648, - -5.0877774E-4, - -0.03421556, - 0.0040561976, - 0.0527664, - 0.01624432, - 0.051621396, - -0.02070651, - -0.031166468, - 0.026699482, - -0.01578915, - 0.06853998, - 2.1313332E-4, - -0.018709352, - 0.0043984205, - -0.032311816, - -0.035486113, - 5.789375E-4, - 0.0036266318, - -0.033591144, - -0.04199079, - -0.022094276, - -0.011353624, - -0.0010842985, - -0.032380924, - -0.06570627, - 0.0032750613, - 0.078381605, - -0.056280285, - -0.0024222077, - 3.391677E-4, - 0.0050427467, - -0.024693117, - -0.03534951, - -0.020238629, - -0.014223052, - -0.017894868, - 9.0138544E-4, - 0.031075807, - -0.017516399, - 0.05081955, - -0.046277348, - -0.014271802, - -0.013369462, - 0.09175363, - 0.049362898, - 0.023697315, - 0.07155319, - 0.029535644, - 0.026732635, - 0.05356603, - -0.053685788, - 0.014276419, - -0.020415947, - -0.036404837, - -0.010056506, - -0.040411353, - 0.013780672, - 0.0050151544, - 0.053186506, - -0.030107774, - 0.052887328, - -0.036726035, - -0.061112124, - -0.0053960793, - -0.013966072, - -0.041432653, - -0.07827071, - -0.017931694, - 0.040907796, - 0.043471474, - 0.04568767, - -0.023130633, - 0.030079486, - -0.008101422, - 0.022960093, - 0.042130638, - 0.039639235, - -0.003119203, - -0.0031779003, - 0.035239957, - -0.004718638, - 0.002615845, - -0.021355188, - -0.018935027, - 0.01967462, - -0.01241454, - 0.01560312, - -0.07027872, - -0.048978455, - 0.029818906, - -0.011921477, - -0.032912817, - -0.0017545585, - -0.0010562439, - 2.2214514E-4, - 0.018258194, - 0.031150607, - 0.010656185, - -0.019683884, - 0.031606082, - 0.01028527, - 0.024837928, - -0.040947646, - -0.008554308, - 0.034379058, - 0.08413127, - 0.014982535, - -0.0019953635, - 0.0056678676, - -1.6985099E-4, - 0.041264165, - -0.023414869, - -0.013945105, - -0.0032465232, - -0.023476105, - -2.3561908E-4, - 0.0011286504, - 0.057251137, - -0.048019323, - -0.009593025, - -0.020630617, - 0.008421477, - -0.027697632, - -0.027870025, - -0.007366845, - 0.009138173, - 0.02084402, - -0.0074422667, - 0.019613277, - 0.004711307, - -0.051585287, - 0.0019489471, - -0.022881193, - -0.05743498, - 0.009291071, - 0.06278827, - 0.029605579, - -0.027528578, - -0.016072161, - 5.885929E-4, - -0.026137237, - 0.05102642, - -0.027839983, - -0.016297026, - 0.009991591, - -0.032624595, - 0.0011407046, - -0.009581181, - 0.008168383, - -0.029364232, - -0.050016183, - 0.01452068, - -0.027160006, - 0.024248336, - 0.039252423, - 0.042074155, - -0.0014692189, - -0.058579285, - 0.035929453, - 0.038986728, - 0.0041055353, - 0.06350312, - 0.01583614, - -0.038644716, - -0.02458022, - -0.03223527, - 0.026919877, - -0.07468302, - 0.001239469, - -0.007567197, - 0.026617022, - 0.019025503, - -0.016860485, - -0.0010082001, - -0.01375678, - 0.007320638, - -0.030745322, - 0.010401896, - -0.024563365, - -0.009090897, - 0.040763058, - 0.034533653, - -0.021110423, - -0.026166938, - 0.023825094, - -0.017986652, - 0.029143546, - 0.0032719327, - -0.0023062108, - -0.030890284, - 0.0042614876, - 0.043750945, - 0.024490938, - -0.0033586267, - -0.07099296, - 0.011902335, - -0.017753026, - 0.05296803, - -0.051418666, - -0.02611551, - -0.04563875, - -0.016566642, - 0.063097924, - -0.014778898, - -0.035724033, - -0.010151281, - -0.0150689315, - -0.06918955, - -0.029690897, - 0.03638519, - -1.6073305E-4, - 0.02114993, - 0.034034394, - -0.036150966, - -0.018888168, - -0.046188354, - 0.027477385, - -0.014633276, - -0.025019435, - 0.03893548, - -0.019192329, - -0.07017159, - 0.0029473277, - -0.018040314, - 0.023642257, - 0.0037653674, - -0.0076545062, - -0.010902131, - -0.015162502, - -0.0061510294, - 0.0148137435, - 0.0024534836, - 0.022975616, - -0.03610615, - 0.01319915, - -0.045108385, - -0.014583825, - -0.06382184, - 0.025598254, - 0.03591745, - 0.013373663, - -0.009567345, - -0.03154604, - -0.023364304, - -0.059813462, - 0.024739245, - -0.001378844, - 0.020120777, - 0.02639669, - -0.014394344, - -0.006191969, - -0.049584687, - -0.04544273, - 0.020386448, - 0.014196648, - -0.0074456865, - -0.014632296, - -0.04226432, - -0.009798454, - 0.018930277, - 0.0392323, - 0.027875045, - -0.019888526, - -0.01566379, - 0.04331299, - 0.014005626, - 0.034016132, - -0.0600251, - 0.013924877, - 0.02844741, - -0.0134727, - 0.040278744, - -0.028336087, - 0.013175462, - 0.05633287, - -0.035969447, - -0.06716947, - 0.03489501, - -0.058926176, - 0.052169774, - 0.035591498, - -0.017033702, - 0.017666575, - -0.01743206, - -0.029357173, - -0.014390547, - 0.03846542, - 0.025062878, - 0.010197939, - 0.019109773, - -0.10536377, - 0.0063345423, - 0.026242761, - -0.012274136, - 0.025084628, - -0.004816845, - -0.006266532, - 0.022966068, - 0.045929912, - -0.04039742, - 0.01482616, - 0.0022240533, - 0.04032338, - 0.023053594, - -0.006260236, - -0.026937075, - 0.036661856, - 0.019236594, - 0.014336023, - 0.0334909, - -0.023278758, - 0.03026615, - 0.032485552, - -0.009576066, - -0.011701704, - 0.008454008, - 0.02035544, - -0.0526765, - 0.002322518, - -0.012587931, - 0.012655861, - 0.002934118, - -0.048829634, - -0.058022644, - -0.0050921757, - -0.019529125, - 0.01285275, - -0.029202053, - 0.036880206, - -0.029818792, - 0.040677693, - -0.049368437, - 0.026613582, - -0.01998246, - 0.08550148, - -0.026687691, - 0.020356458, - 0.025780693, - -0.029864185, - -0.012821433, - -0.0381861, - 0.0054295384, - 9.422813E-4, - 0.009766382, - 0.0019208404, - 0.009498382, - 0.0037405791, - 0.008834151, - -0.018725593, - -0.023894353, - -0.008299709, - -0.01136835, - -0.025950085, - 5.289887E-5, - -0.045860674, - -0.058075257, - -0.026237383, - -2.8678364E-4, - -0.010832109, - 0.0013163224, - -0.01308181, - 0.018508602, - 0.017685821, - 0.01688367, - -0.0071342606, - 0.008530527, - 0.033499166, - 0.011255305, - 0.024703145, - -0.021473635, - -0.04555431, - -0.034259744, - 0.041979793, - 0.005404145, - 0.01143277, - 3.4553558E-4, - -0.017476428, - 0.017759526, - -0.035811264, - 0.036937237, - -0.033543885, - 0.011639839, - -0.054439403, - -0.02329203, - 0.06003733, - -0.017514136, - 0.04408382, - 0.013567982, - -0.03935912, - 0.02898162, - -0.00522876, - -0.0045767175, - 0.03509338, - -0.042702574, - -0.017509336, - 2.387519E-4, - -0.029823275, - -0.0067365263, - -0.061001413, - -0.09371184, - 0.029168837, - 0.03699025, - -0.060795903, - 0.02739779, - 0.017917668, - -0.07462193, - 0.014608369, - 0.0068610962, - 0.00444964, - 0.045344245, - 0.06949807, - -0.0032645278, - -0.017303063, - -0.01567273, - 0.031758193, - 0.04257543, - 0.03033038, - -0.054195017, - -0.058608994, - -0.031068945, - -0.019287696, - 0.011234365, - 0.018577438, - -0.007980666, - -0.061341237, - -0.019553503, - 0.04664868, - 0.0055306577, - -0.013103894, - -0.020985661, - 0.01977917, - -0.03114392, - -0.0047767125, - -0.020617908, - 0.008831624, - -0.012278473, - -0.03129616, - 0.0025657131, - 0.043545097, - -0.0065422435, - 0.012251715, - 0.043719992, - -0.029033422, - -0.012617707, - 0.0077319955, - -0.063106105, - 0.037529357, - 0.031086098, - 0.07045177, - -0.009729715, - 0.015422274, - 0.03274943, - -0.0025075004, - -0.020675546, - -0.007253823, - -0.053200554, - -0.018132381, - 0.06809223, - -0.036040198, - -0.042284776, - -0.011825948, - 0.052660417, - -0.06069144, - 0.04427466, - -0.06289539, - -0.048792414, - -0.047437217, - 0.005510043, - 0.00869827, - 0.03696818, - 0.02892439, - -0.003637705, - 0.012169641, - 0.010651802, - -0.031261895, - -0.06706397, - -0.029782971, - 0.0015450174, - -0.023009857, - 0.013953484, - -0.015516026, - 0.009008724, - 0.005691315, - -0.03567031, - -0.028092353, - 0.016922098, - -0.014095405, - -0.008388274, - 0.017170683, - 0.013129537, - 0.010496396, - -0.047986504, - 0.07514898, - 0.014606216, - -0.036583018, - -0.006114067, - 0.055438604, - -0.007776797, - 0.003261084, - 0.035610426, - 0.02821116, - -0.003889286, - 0.0024366567, - 0.01936716, - 0.06321595, - 0.018422857, - -0.029204922, - -0.029402286, - -0.049814217, - 0.012553759, - 0.0349439, - -0.006128211, - 0.01706967, - 0.011512402, - -0.044570066, - 0.055549044, - 0.019479362, - 0.028010678, - 0.008958529, - 0.03382785, - -0.03514326, - -0.03845624, - -0.0015390016, - 0.022092203, - 0.021071186, - 0.0026120266, - -0.03667672, - 0.005311759, - -0.028478006, - 0.041467234, - -0.04928877, - 0.048591882, - -0.010343891, - -0.046136696, - -0.031346697, - 4.0155358E-4, - 0.04392637, - 0.031103484, - 0.079717904, - 0.034627132, - -0.06812585, - -0.0027058737, - -0.0024776412, - -0.0032886672, - -0.048288487, - -0.037363347, - 0.01183208, - -0.017305845, - 0.022265438, - 0.0027456435, - -0.012237593, - 0.05443388, - -0.011633238, - 0.059363317, - 0.042492446, - -0.009130485, - 0.0013622079, - -0.01979569, - 0.0044804914, - 0.03409227, - 0.0050586583, - -0.031029548, - -0.04621192, - 0.033580214, - 0.020668864, - 0.0050172945, - 0.036569573, - 0.024138458, - -0.017987926, - -0.01326509, - 0.026019739, - 0.01557302, - -0.012620184, - 0.008012756, - 0.0047370815, - -0.0015316547, - 0.0031943615, - 0.041434806, - 0.007821454, - -0.0010512943, - -0.050532, - 0.019318784, - 0.049917307, - -2.3663833E-4, - 0.018242942, - 0.056535985, - 0.01497642, - -0.002144573, - -0.015792988, - 0.021045953, - -0.036442112, - -0.03850674, - 0.046615664, - 0.0017291006, - -0.016510371, - 0.009585398, - -0.0038322904, - 0.022989849, - -0.0043504243, - 0.041855145, - 0.022155117, - 0.030745544, - 0.017514966, - -0.05626157, - -0.0088224355, - 0.019399393, - 0.011863847, - -0.014980685, - -0.046580356, - -0.019224375, - -0.01652869, - -0.020399801, - -0.010450903, - -0.012732728, - -0.028071964, - -0.049054235, - 0.015983926, - -0.003086621, - -0.031619664, - 0.0073432047, - -0.0041449224, - 0.009393459, - 0.07154066 - ], - "palette" : [ - "2/0", - "4/0", - "4/0", - "4/0", - "3/0", - "5/0", - "0/0", - "2/0", - "8/0", - "1/0", - "6/0", - "0/0", - "4/0", - "4/0", - "3/0", - "7/0", - "8/0", - "2/0", - "1/0", - "5/0", - "2/0", - "3/0", - "7/0", - "6/0", - "9/0", - "9/0", - "7/0", - "0/0", - "2/0", - "0/0", - "3/0", - "3/0", - "7/0", - "38/1", - "48/1", - "6/1", - "62/1", - "64/1", - "39/1", - "62/1", - "45/1", - "74/1", - "3/1", - "10/1", - "36/1", - "69/1", - "53/1", - "53/1", - "20/1", - "43/1", - "57/1", - "3/1", - "40/1", - "35/1", - "55/1", - "3/1", - "10/1", - "68/1", - "42/1", - "25/1", - "27/1", - "37/1", - "6/1", - "4/1", - "60/1", - "12/1", - "260/2", - "274/2", - "30/2", - "90/2", - "12/2", - "254/2", - "153/2", - "130/2", - "105/2", - "145/2", - "85/2", - "248/2", - "193/2", - "219/2", - "222/2", - "176/2", - "257/2", - "116/2", - "90/2", - "218/2", - "3/2", - "110/2", - "81/2", - "38/2", - "135/2", - "237/2", - "153/2", - "54/2", - "35/2", - "169/2", - "36/2", - "71/2", - "229/2" - ], - "averageColorHex" : "#2A2A13", - "binSizes" : [ - [ - 5, - 8, - 7 - ], - [ - 0, - 5, - 7 - ], - [ - 1, - 0, - 5 - ] - ], - "binMinima" : [ - 0.8381151, - 0.09599775, - 0.33494365 - ], - "aspectRatio" : 0.8347602 - }, - "source" : { - "id" : "hynzvq65", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ - "u4cyYzIwhD", - "YxCH7vbw2h", - "yO9uEp78LG" - ], - "title" : "title-AtMwgf6PRE", - "alternativeTitles" : [ - ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ - ], - "lettering" : null, - "images.id" : [ - ], - "images.identifiers.value" : [ - ], - "items.id" : [ - ], - "items.identifiers.value" : [ - ], - "items.locations.accessConditions.status.id" : [ - ], - "items.locations.license.id" : [ - ], - "items.locations.locationType.id" : [ - ], - "subjects.id" : [ - ], - "subjects.label" : [ - ], - "subjects.concepts.label" : [ - ], - "genres.label" : [ - ], - "genres.concepts.label" : [ - ], - "genres.concepts.id" : [ - ], - "languages.id" : [ - ], - "languages.label" : [ - ], - "contributors.agent.id" : [ - ], - "contributors.agent.label" : [ - ], - "production.label" : [ - ], - "production.dates.range.from" : [ - ], - "partOf.id" : [ - ], - "partOf.title" : [ - ], - "availabilities.id" : [ - ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null - } - }, - "aggregatableValues" : { - "locations.license" : [ - ], - "source.contributors.agent.label" : [ - ], - "source.genres.label" : [ - ], - "source.subjects.label" : [ - ] - }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" - } - } -} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.similar-features.0.json b/common/search/src/test/resources/test_documents/images.similar-features.0.json index 7bd33259f..6a7f4fc10 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.0.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.0.json @@ -141,18 +141,36 @@ "id": "hqnskj6m", "source": { "alternativeTitles": [], - "contributors.agent.label": ["Robinson, W. R"], - "genres.concepts.label": ["Etchings"], + "contributors.agent.label": [ + "Robinson, W. R" + ], + "genres.concepts.label": [ + "Etchings" + ], "id": "t8yukfjt", "sourceIdentifier.value": "b11802844", - "identifiers.value": ["b11802844", "1180284", "22423i", "V0014401"], + "identifiers.value": [ + "b11802844", + "1180284", + "22423i", + "V0014401" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["kkr6t6wm"], - "items.identifiers.value": ["i12020631", "1202063"], - "languages.label": ["English"], + "items.id": [ + "kkr6t6wm" + ], + "items.identifiers.value": [ + "i12020631", + "1202063" + ], + "languages.label": [ + "English" + ], "lettering": "Hospital of St. Nicholas, near Richmond, Yorkshire. Drawn and engraved by W.R. Robinson.", - "notes.contents": ["Wellcome Collection 22423i"], + "notes.contents": [ + "Wellcome Collection 22423i" + ], "partOf.title": [], "physicalDescription": "1 print : etching ; platemark 12.2 x 18.9 cm", "production.label": [ @@ -184,1113 +202,5126 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], - "source.contributors.agent.label": ["Robinson, W. R"], - "source.genres.label": ["Etchings"], - "source.genres.concepts.id": ["yfqryj26"], - "source.subjects.label": ["Hospitals", "Richmond (Yorkshire, England)"], - "source.production.dates.range.from": [-4604688000000] - }, - "vectorValues": { - "features1": [ - -0.72437084, -2.547782, -1.8524656, -0.75903565, -0.6231447, -1.9976485, - -1.9041662, 0.42863923, -0.4273576, -0.02508542, -0.23555931, 1.9251884, - -1.1152124, -0.23487127, -0.2672787, -1.1216958, -0.82875615, - 0.27910933, -1.0646175, 0.98666024, -2.0989342, -1.1069676, -0.7155603, - -0.079648435, 1.2071965, -0.51161087, 1.0153984, 0.04400861, -1.8006449, - -1.0636125, -0.62975246, -0.25526014, -1.7835208, -0.9336784, 0.5075573, - -1.3524055, 0.7271831, 1.3959912, -0.36159292, -1.0275575, -1.0579417, - -1.2630632, -0.14546175, 1.5199461, -0.87252915, -0.72803515, 1.3780203, - 2.156646, -1.3511609, -1.3059306, 0.2031771, 0.3006064, -0.2967677, - 0.2999602, -0.89753157, -2.545957, 0.07493283, -0.82211167, -0.66673434, - -0.5188657, -0.021333385, -0.37581936, -0.4803652, 0.12370308, - 1.2637457, -0.96873033, -0.95474786, -0.8851275, 0.3057696, -0.5982041, - 0.26814556, -0.6497447, -1.2507939, 0.49271184, 0.60355866, -0.16011114, - -0.36757538, -1.7040119, 0.26681438, -0.8191456, 1.0979451, -0.12514617, - 0.15595165, -0.4677508, 0.6359274, -0.3292858, -0.89081854, -0.9459938, - 1.0251034, -0.7938798, -0.83346975, 0.36237058, 0.04281216, 0.65326494, - 1.0029724, -0.82870346, -1.6796744, -0.6681484, -0.39775246, -0.5940392, - -1.2569314, 1.5070181, 0.32332477, -0.505732, -0.48490027, 0.077418916, - 0.34352, 0.7112255, 1.5938196, -3.0967557, 0.12708995, 0.17313278, - -0.59307563, 1.1693674, -0.75170076, 0.18783024, -0.519602, -3.4766433, - -0.057841957, -1.283874, 0.75264585, 2.2487407, 0.21505368, -0.5212863, - -1.6938986, -0.046536326, 0.3197346, -0.17608088, -0.19786894, - -1.1486331, -0.66949886, -1.2997684, -0.016534414, -0.18497013, - -0.15682605, -0.078570426, -0.51789314, -1.8102342, -0.6108225, - -0.17708111, -1.0840151, -1.0181698, 0.7785302, -0.8506362, -1.4557563, - -1.0007333, -1.0470251, 0.0235431, -1.6599879, -0.2726106, -1.3047824, - 0.41729295, -0.7273505, 0.05456343, 2.1369855, 0.09666557, -1.0280204, - -0.21863943, -1.5271584, -0.5311243, -0.8192731, 0.29034907, - -0.29954377, 1.1372747, 0.090123236, -1.4412868, -0.4269799, -0.834455, - 0.03665153, 1.1342627, -0.82709515, -1.750663, -0.9881084, -0.053388864, - -0.29396188, 0.6401284, 0.21386895, 0.46566477, 1.6567655, -1.8571211, - -0.38332868, 0.63806134, -0.30926922, -0.26762596, -0.25870872, - -0.9129602, -0.835811, -1.0907193, -1.1436065, 0.047726624, 0.6489529, - 0.8204591, -0.51235795, -1.6660681, -0.36561024, 0.28017336, 2.0052295, - 1.8509043, 0.85399014, -0.18158759, 0.17096981, -0.5224186, -1.4263473, - 0.006230179, -0.89570785, -0.09760269, -0.74459434, -0.59628105, - -0.65296793, 0.15607113, 1.3393258, -1.2945334, -0.3509232, -1.448191, - -0.38228163, -0.94202405, 1.858997, -0.4080874, -1.4518204, 0.3129645, - -1.8260609, 0.7938851, -0.26916838, -1.4200704, 0.7446742, -1.811122, - -0.8239137, 0.58018017, -0.36492074, -0.07679688, 0.1834941, - -0.31394204, 0.26338348, -0.5327969, -0.7664753, -0.44369557, -0.918716, - 0.08414314, -1.4677337, 0.49147302, -0.29702488, -0.46744686, - -0.8316732, -0.79882526, 0.15842536, 1.336014, -0.40523311, -0.47933078, - 0.44524962, -0.71863824, -1.5439271, -0.22201446, -0.17194295, 0.671218, - -0.7557738, -0.99474484, -0.84517574, 0.79392916, -0.39938703, - 0.062965564, -1.8720578, -0.79714334, -0.2545986, -0.23149328, - -1.2739941, -0.6410358, -0.55806255, -0.9231398, -0.58306956, - 0.37781325, 1.7327414, -1.7384737, -0.4603268, -0.93060637, -0.49200258, - 0.20235077, -1.2461687, -2.2622776, -0.4770061, -1.5140481, 0.26091713, - -1.2922723, 0.09614663, -1.4724125, -0.11037949, 0.33520472, - -0.32185325, -1.5852323, -0.90702915, 0.20123976, 0.20381871, - 0.46937695, -0.17302318, 0.124985814, -1.7191869, 0.7810603, 0.8893534, - -0.4113317, 1.3502239, -0.35478234, 1.2304112, -1.5974888, -1.1315846, - 0.10807263, -1.3698474, -2.041228, 0.7388343, -0.53746176, -0.6639433, - 0.87618244, 1.0956986, -0.40609062, -0.7873404, 0.15595561, 1.7649503, - -0.4588901, -0.39663795, 0.45985454, 0.023950972, 0.3429253, 0.7648049, - 1.3029052, -0.41857406, 1.6463327, -1.2257384, -3.2209775, 0.30263722, - -1.4243764, -0.5703057, -1.9259175, 0.28669667, -1.5031656, -0.8912912, - 0.07421622, -0.8057632, 0.518802, 1.0783716, 2.221904, -0.10497914, - -1.9006299, 1.3158947, -0.5311367, -0.6504123, 0.62770635, -0.85546076, - -0.59708923, 0.94636446, -1.8625656, 0.51191133, -0.89405876, - -1.5245839, 1.202492, 1.1674837, -0.8350438, 1.2255923, -0.6046768, - -0.5907319, 1.1229011, -0.57297885, -0.79649806, -1.3411759, 0.7612015, - -0.7276946, -0.51592064, -1.6253958, 0.65656704, -1.0309732, -0.7083866, - -1.6869648, -1.425093, -0.57040405, 1.5332944, -0.28348792, -0.47820967, - 1.7489182, -0.26802668, -1.3912041, -1.4698483, -0.833873, 0.1586902, - 0.025435906, -0.82088405, 0.6996874, 0.15960762, 1.081825, 1.3529088, - 1.26979, -0.18891239, 1.0768942, 0.15744418, 0.116067804, -0.8790705, - -0.33870593, -0.09283358, -1.6499294, -1.1828966, 0.09443362, - -0.008348942, -0.38279456, -0.00640456, -0.23201555, -0.6692286, - -0.21386391, -0.56615025, -1.3670903, -1.4855481, -0.634539, - -0.54308987, -2.0009131, -0.35819584, 1.2675234, 0.5755763, -0.7428722, - 0.16658236, -0.03022243, 0.22197883, 0.040020347, -0.57126343, - -0.10627591, -0.36749664, -0.98532164, 0.05913751, 0.042745322, - -0.04298473, -0.778841, -1.5283039, -1.5990608, 0.80970204, 0.27254552, - 0.36373657, -0.057212975, 0.20112826, -0.75977904, -0.24376033, - 0.45886806, 0.16945747, 0.27565747, 1.1449653, -0.37670922, -0.40115082, - -2.2249413, -0.8204758, -0.48413074, 0.21663718, -1.3814629, 1.9073411, - -1.1769922, -0.8207865, 0.502639, 0.24246591, -1.0863396, -1.4381803, - -0.6459253, -0.4531547, -1.5449173, -1.3839039, 0.94562465, 0.40729007, - -2.3604403, 1.0282782, -0.21380451, -2.2819703, -1.0173302, -0.466917, - -1.5196898, 0.7954133, -0.28356963, -1.5373638, -0.31505418, - -0.035983913, -1.4285595, -1.9136093, 0.45936477, -0.5263113, - -0.35195133, -0.5964371, -0.69129306, 0.29209477, -1.473136, 1.0741287, - -0.8838027, -0.67364657, -0.4214399, 0.9723767, -0.91200215, -1.3030686, - 0.33754528, 1.3448921, 0.37999964, -0.4675318, -1.4999485, -1.0122524, - -1.5798323, -0.19988593, -1.2885313, -0.13138387, 0.40939033, - 0.088169426, -0.65808237, -0.23996657, -0.08986169, -2.3303337, - -0.8235173, -1.2664851, 1.2264253, -0.16178012, 0.50610703, 0.5415925, - -1.4442512, 1.0946708, -1.1998938, -0.22131835, -0.6183436, -0.78931665, - -1.3522325, 0.8891044, 0.12079379, -1.2347589, -1.3020039, -0.3754979, - 1.5355713, -1.0575323, 1.111374, 0.27598464, -0.41545212, 0.63898444, - 0.10394453, -1.9616554, 0.4914591, -1.2755101, 0.23128055, 0.8466178, - -0.79643756, -0.5837326, 0.19678804, -0.26731977, -1.0985485, - -2.3314822, -0.28904188, -0.42812794, -0.3348429, -0.2722853, -0.735771, - -0.3069381, -0.27752388, 1.1937444, 0.734435, 0.1049197, -0.46794054, - -0.977445, 0.74283206, 0.07206982, -0.03229609, 0.26904297, -1.0645635, - 0.24810675, 0.3520395, -0.624454, 0.30114806, -1.9222416, 0.82458615, - -0.56697667, -0.13845575, -1.4502294, 0.26288489, -0.08454884, - 0.33898294, 0.20762709, -1.8277072, -0.508933, -0.4353478, -1.3840961, - -0.83433586, 0.44223788, -1.1616085, -1.297945, 0.24219547, -1.4318211, - -0.50010026, 0.27313018, 0.23085538, -0.29602912, -0.54721266, - -0.057047956, -3.006758, -1.5277674, -0.65058875, -0.30445945, - 0.45785776, 0.32510453, -0.76577705, -0.21832965, 1.7154975, - -0.09135562, -0.15310039, -0.2728716, 0.15317473, 0.21990967, - -1.8768617, 1.2038271, -1.0749899, 0.32402593, -0.26731515, -0.03861797, - 1.3491908, -1.9053255, -2.3223403, -2.1511848, -0.31528458, -1.3062826, - -0.5700362, 0.10559707, -0.44093022, -1.2073828, -1.565834, 0.04812015, - 1.7858092, -0.2583461, -0.89882684, 0.35213313, -2.1721597, -0.03030847, - 0.32049325, 0.8413189, -0.37032422, -1.0831491, -0.95715463, 1.4948208, - -0.16633904, 0.79184705, -0.5940932, -0.75817114, -1.0249894, - -0.5933541, -0.9158734, -0.5667839, -0.37364417, -0.41678897, - -0.9205219, -1.133548, -2.2343328, 1.4734166, -0.85197604, -1.6756849, - -0.5956209, 1.8741736, -1.5678037, 0.038084004, -1.3290111, -1.109033, - 1.0424986, -1.0829536, -0.8092473, -1.8414944, -0.5986977, 0.33468527, - -0.64558303, 0.3559481, -0.24858828, 0.5283308, 0.61370766, -1.251447, - -2.233815, -1.0876487, 0.22346745, -1.2974501, 1.8827513, -0.38116324, - -0.0256868, 1.9763125, 0.29314157, 0.7477408, -0.45926017, 1.1110259, - -0.84754205, -0.11009476, -2.0736704, -0.35265097, -1.277943, - -0.33665764, -0.5931733, -0.03792616, -0.3571853, 0.36132416, - 0.25505564, 0.10975133, -1.3304662, -0.3357571, -0.93772024, -1.83518, - 0.8344577, 1.9689608, -1.0156801, -1.3529851, -2.3385446, -0.48880672, - -0.27721483, -0.88719535, 1.6892308, -0.9869811, 0.57317144, - -0.27798018, -0.6995194, 0.3279368, -0.2666653, 0.28294933, 0.19791207, - 0.17799458, -0.31870812, 0.40794557, -0.64656734, 0.8154681, -1.4834142, - -0.15521248, -0.08920564, -1.0695839, 0.18648243, 1.0871967, -1.9573407, - 0.46995065, -0.008282721, 0.69339895, 0.1174072, 0.07428883, 1.2227542, - 0.67475486, -1.064513, 0.6160011, -0.5298724, 0.10782871, -0.48318046, - -0.6684598, -0.9091273, 1.2968587, 1.5295426, -1.6703168, 1.5741161, - -0.98276436, 0.12677938, -1.4361329, -1.0406361, -0.68827534, - -0.8956785, -0.9560062, 0.27734548, 0.9799688, -0.7122192, -0.2893436, - -1.121658, -1.0967984, 1.515163, -1.0182556, 1.1638823, -0.6842738, - 0.89678687, 1.0738544, -1.4326948, 0.6905749, -0.877841, -2.4620802, - -1.2236627, -1.3377988, -1.3389902, 0.5243194, -1.2546687, 0.5331284, - 0.10221539, -0.3390624, -0.45401004, 0.50641483, -1.331598, -0.78408086, - 1.0903108, -1.0473323, -1.1972837, -0.17097282, -1.8654016, -1.5344825, - -0.9893357, 1.8123672, -1.7162273, -0.8887884, 0.7476531, -0.8103797, - 0.3685652, -1.1950004, -1.81517, -0.09686516, -0.7769686, -1.7445793, - -0.48967367, 0.3507785, -0.31793338, -2.2022243, 0.48880166, -1.9249125, - -1.5948517, -3.845347, -0.65090597, -1.7272795, 2.600394, -0.005123362, - 0.7854533, -0.46861166, 0.97915035, 0.7577987, -0.07189494, -0.7536321, - -1.8767887, 0.75368476, -0.003507752, -0.96176904, -0.8988557, - -1.3201795, 1.3904439, -0.92886406, 0.16897362, 0.51132846, -0.5343947, - -0.43376395, 0.7085917, -1.0078592, 0.49699602, -1.6944442, -0.16038331, - -0.8683637, 1.0214438, -1.4112289, -0.59954894, -2.2127411, -0.33793145, - -2.210342, -1.111805, 1.1114082, 0.47220823, -0.5668151, -0.77528846, - -0.61595976, -0.24651217, 0.04118605, -1.7074243, -0.2143063, - -0.9913887, -0.76354, 0.32300693, -1.3764321, 0.06812416, -1.6241035, - -0.70721275, -0.6837602, -0.8383213, 0.053447496, -1.0988845, - -1.0110195, -1.2496309, 0.6488628, 1.2855867, -0.070136786, -1.466931, - -0.4109918, -0.22695151, -0.76221955, -2.9519114, 0.5160061, - -0.09818507, -0.59675574, -0.85999984, -1.3813179, -1.9291055, - 0.014459185, -1.7330817, 0.091857314, 1.2504781, -2.101408, 0.5243666, - 0.16951558, -0.6894522, -1.2723813, -1.2008891, -0.48290622, -1.9625508, - 0.98421985, 0.10576073, -0.20680979, -0.40667593, 0.32517123, -1.032994, - 0.4184874, 0.5606914, -0.3766839, 0.61392653, 0.64898944, -1.3212827, - -0.6793053, -0.61680967, 0.57219523, -1.4933866, 0.0166297, 1.0614153, - -0.6704875, -0.43351582, -1.7652853, -0.8988236, -0.6051376, - -0.54623127, -0.2993373, -0.09735375, -0.28336602, 1.5870843, - -0.9319736, -2.539095, 0.57188874, -2.0135102, -0.06123846, -0.34190822, - 1.1070515, -0.35793942, 0.7773523, 1.7046497, -0.4477992, -0.6382738, - 0.6186221, -0.96406275, -1.1226839, -0.47692633, -0.97214574, - -0.72357017, -1.1150403, -2.0438128, -0.29633108, -1.391669, - -0.15011036, -1.1518418, 0.6244906, -1.2368499, -0.080713436, - -0.86816627, -1.6931182, -0.3478506, -0.8215397, -0.24722254, - -1.5407774, -1.511669, -0.37393153, -1.8681269, 1.0921667, 1.3934841, - -0.6156729, -0.33778936, 0.9610343, -1.1515422, -0.63740766, -0.1802005, - -1.6816233, -1.3037947, 0.4555779, 0.5296052, -1.016422, -2.043159, - -1.3164539, -0.45087135, -1.2519299, -0.07710843, 0.28977624, 0.9160218, - 0.5158095, -1.542602, -0.2142106, 1.0575083, -0.4759332, 0.13357422, - -1.3931869, 0.7647275, 0.87633896, -2.5421283, 0.9588363, -0.91733736, - 0.7092274, 1.04869, -0.48590904, 0.12831163, -0.42230383, -0.20421228, - -1.5243233, -0.4938036, -0.31183812, 0.8771952, 1.0573747, -0.5014227, - 0.27952743, -1.2508965, -1.7746037, -1.0076414, -2.5041895, 0.20744704, - -0.058465905, -1.301083, 1.7105584, -1.9404511, 1.39943, -1.1205072, - -0.895392, -1.1258761, 0.37992665, -1.3122123, -0.66243356, -1.1175692, - -0.63934094, -1.5563262, 0.18546742, 1.5107974, -0.028874964, - 0.060899574, -0.58817655, 0.9729708, -2.3884583, -0.40107837, 0.4641965, - 0.8862838, -0.72929907, -1.6788131, -0.2572584, -0.37844127, 0.20148513, - -1.4347961, -0.4888491, -1.7332872, -0.5626912, -0.89785844, -0.9908066, - 0.77488446, 0.39716396, 0.93701553, 0.8470905, 0.3943411, -1.1317832, - -0.8758357, -1.770026, 0.46123308, 0.17054144, -0.02214671, -1.4520308, - -1.2853433, -1.1881373, -1.3298515, -0.7232145, 1.2581644, -0.025832273, - -0.6695413, -0.628632, -0.5333516, -2.2500808, -0.11497008, 0.047375336, - 0.3146564, -0.72448593, -0.99912256, -0.14282933, 0.45309067, - -0.020589672, 0.47936577, -0.89546657, -1.6228703, -1.2671337, - 0.44926453, 0.1377508, 1.3243167, -0.91812336, -1.4065939, 0.61620855, - -1.0596759, -2.2265089, 0.28927705, 0.9681505, 0.6691022, -1.6559298, - -1.6146826, -0.7792447, -1.5071692, 1.5011926, 0.24365774, -1.5994993, - -1.1666892, 0.50790834, -0.0024385303, -1.9431425, -0.2561555, - -0.84333384, -0.16083841, 0.75232214, -0.3104334, -0.000734549, - 0.69873184, -0.78494805, 0.016144805, -0.004285764, -1.6095036, - -0.5990904, -0.87467694, -0.103344396, -0.6854551, -0.6852209, - -2.161953, -1.4029043, -0.5076576, -0.90334105, -1.2451856, -1.044915, - -1.5971122, 1.6636611, -0.5514266, -0.8534714, 1.0751748, -0.3631298, - 0.36628628, -0.4503156, 1.2978827, -0.5368325, 0.9996094, -0.051933922, - 0.7992957, -0.3386359, 0.78736025, 0.09915287, -1.3071254, -0.18691428, - 0.2260701, -0.1811053, -0.46065572, -0.2704997, -0.7693076, -2.1626792, - 0.192066, -0.7583882, -1.3515233, 0.061050918, -0.8654951, 0.91595006, - 0.98493344, -0.438341, -1.5529222, 0.16719714, 0.44510576, -0.30157533, - -3.2342126, -2.0816982, 1.7645462, -1.1744009, -1.0952429, 0.2766492, - 0.15238552, -0.4561932, 0.015846264, 0.11564982, -0.7734009, -1.5181724, - -1.7160066, 0.09506771, 0.08633474, -1.2510968, -0.842528, -1.6551077, - -0.5703919, -1.3631816, 0.49389547, 0.14220226, -0.3201591, -0.7459153, - -1.6967533, 0.28326508, -0.84731764, -0.24529216, -2.1495223, 0.7511644, - -0.19364856, -0.3998034, -1.2977841, 0.19381215, 0.3959105, -1.3688235, - 1.2521415, -1.0004556, -0.66712594, -1.4709735, 0.8737284, 0.6596263, - 0.7519996, 0.8830754, 0.290105, -0.09177927, 0.9804219, -0.4833156, - -0.6497484, -0.17562938, -0.8213605, -0.84618837, -1.6266062, - -0.2820996, -2.0770936, -1.0634379, -2.0349677, -1.0238521, -0.8948397, - -0.5817837, 0.40591657, -1.8383163, 0.89331126, -0.60832375, - -0.14612252, -0.2227462, -1.9047168, -1.9764607, -0.9368365, -1.0145328, - 0.18864346, -1.150648, 0.48853144, 0.96641487, -1.3110615, -1.1761336, - -0.5430697, -1.0816301, -0.07664202, 0.25581962, -0.10910085, - -1.4039177, -0.021222003, -0.67152524, 0.24787378, 1.8039852, - -1.6772156, -2.4959679, -0.6035142, 0.015300799, 0.10018757, -1.8553602, - -0.68078667, 1.023537, 0.030677486, 0.9073732, -0.6122229, 0.714813, - -0.8457492, -1.3466973, -0.15236455, 0.21096, -0.4024481, -0.6994169, - -1.1129997, -0.7811157, -0.1617198, -1.058832, 0.31677723, 2.1815398, - 0.32271492, -1.4577587, -1.0224464, 1.022913, -0.92564064, 1.4361371, - -1.3949499, -0.38469148, 1.5495924, 0.76177853, 1.9122528, -1.3749145, - -1.1905761, -0.92031074, -0.37471297, 0.869377, 0.9131881, -0.48385936, - 0.17469372, 0.20451091, -0.5958492, 0.43644175, -0.18541592, - -0.36463007, -0.60493714, -0.5475803, -0.115105025, -1.1146698, - -0.8855118, -0.39867362, -0.52988625, -1.8015004, 0.03313756, - -1.2386613, 0.86721283, 0.10278944, 0.6258825, 0.414381, -1.029258, - -1.4495487, -0.11925194, 1.0359459, -0.8063746, -0.4456089, -1.2311206, - -0.40895614, -0.03622887, -1.4898583, 0.1602541, -0.0674504, -1.1591748, - 0.015249044, -1.2745837, -0.39721507, -0.5827045, -1.2187194, 1.5901712, - -0.5161943, -0.7958152, -2.0592666, -0.74167424, -0.50864434, - -0.82991195, 0.38241142, -0.050100323, -1.9901884, -0.034639902, - 0.50222915, -1.3089042, 0.15887743, 0.4217269, -0.02988021, -0.3416877, - -0.2698764, 0.17764977, 0.41038245, 0.7273167, -1.039326, -1.8948399, - -1.8277302, -0.22938079, -1.0418786, -0.6324099, -1.6305767, 0.3147189, - -1.5479527, -0.96894425, -0.6180547, -1.8134675, -1.3264002, -1.0252571, - -0.6532634, -0.6011001, 0.012836657, -0.62693924, 0.28350824, - -0.47983783, -1.0869116, -0.59170055, 0.33203587, -0.6914393, - 0.07889405, -1.2259401, -1.5033102, -1.5585966, -1.043099, -0.36695912, - -0.94482076, -0.7274685, -1.4492146, 1.1583465, 1.0175202, -0.1705824, - -0.7368105, 0.55645424, 0.6466629, 0.03886597, 0.36775607, -0.8160278, - -1.118682, -0.1381743, -1.828268, 0.38404477, -0.26774788, -0.26329726, - 1.1685711, 0.6161512, 1.056397, 0.35873023, -0.81556946, 0.2676394, - -0.47174105, 0.0516575, -0.18100157, 0.53653795, -1.5527203, - 0.058371164, -0.4880627, -0.26698363, -0.555099, -1.8715446, -0.7563145, - -2.0374515, 0.6814089, 0.61986834, -0.024801508, -0.06128735, - -0.28098387, 0.7764181, 0.16739203, -0.99055266, -0.45624134, - -0.2601293, -0.412535, -0.87486005, -0.48093846, -2.077071, 0.10203222, - 0.22320901, -1.9366083, -1.7161843, 0.61903507, 1.3088692, -0.9722816, - 0.044250954, 0.26650792, -0.5944785, -0.2526667, 0.6180512, -0.9191548, - -0.40523157, 0.17733097, 0.55981135, -2.450489, -1.3293777, -0.6058975, - -0.77671343, -0.54231447, -0.56943274, -0.68882155, 0.591046, - -0.121079594, -0.5466717, 0.26753333, -1.1147038, -0.29620665, - -0.8822353, -0.41821367, -0.16889957, -1.6269655, -0.7465503, - -1.3917286, -0.6653068, -0.128863, 0.20452163, 0.06407727, 0.7073247, - -0.4480788, -1.0081913, -0.6888287, -0.9661603, -0.16527241, -1.4720867, - -0.13940334, -0.5201297, -0.5787243, -0.64984727, -1.0610482, 1.0147924, - -0.5636246, -0.08336401, -0.16653565, 0.3272927, -1.1625757, 0.15500762, - -0.58831733, -0.21237212, 0.5750308, 1.418912, 1.1396987, 0.32948524, - -1.0480794, -0.28734136, 0.36116284, 0.5865313, -1.0346459, -0.44781208, - -0.92305726, -0.7357383, 0.9330716, 1.2871542, -0.15136786, -1.5536442, - -1.0812985, -0.75621694, -0.6385426, -0.20442945, -1.4529331, - -0.65860564, -0.17325483, 0.12592444, -0.5777098, -0.68404174, - 0.3302105, -1.322147, -0.9997744, 0.30373412, -1.2047205, -0.58222574, - -0.35342252, -0.24634062, -0.14859053, 1.5166017, -0.13552573, - -0.051168427, -0.9523829, -0.3352379, 0.024584975, -0.11114688, - -0.9332891, -0.32720935, 0.6862793, -0.1917718, 0.81534594, 0.17465599, - -1.5025632, -1.4635017, -0.107038245, -0.030433372, -1.6186988, - -0.39436784, -1.5862491, -1.1486853, -1.387951, 0.5701527, -1.4480274, - -1.8738321, 0.83783394, -0.10905501, -1.8462616, 0.9411102, -1.4799925, - 0.49946386, 0.45871148, -0.4327958, -0.77108693, -1.2132678, - -0.34925196, -1.2061188, -1.1067338, -0.2813941, 0.16820827, -1.043629, - 2.0921478, -0.91240925, 0.4170553, -0.63904274, -1.2651701, 0.09294315, - 1.1126505, 1.4039761, 0.09308995, -0.35650054, 0.2399962, -1.6638188, - -0.72279644, -0.2533966, -1.394222, -0.6513301, -0.6036019, -1.0582311, - 0.5667483, -0.6587623, 1.0256807, 0.88651544, 1.0593996, -0.8066531, - -0.66791, -1.5611633, -1.7614976, 0.88467145, -2.3077781, 0.33520195, - 0.5593603, -2.374319, -0.4114443, -0.42284936, -0.17680135, -1.1723417, - -0.24356583, -1.1268982, -0.8961138, -2.584423, 0.2136858, -0.53211254, - -0.012728982, -0.42727947, -0.92762583, -0.29705656, -0.09602596, - -0.93590987, 1.6637392, -0.95819074, 0.10374638, 0.16204643, - -0.22365987, -1.0212028, -0.40766805, -0.07135864, -1.2170948, - 0.57573146, -1.9765391, -1.1489003, -1.3121521, -1.4681945, 0.55826974, - -0.7782367, -0.84906894, -1.8293426, 0.63022846, 0.29803854, -1.1444743, - -0.929549, -1.0407451, -2.0710983, 1.1253566, 0.37845215, 0.38847482, - -1.1306561, -1.2300597, -0.1262814, -0.5318024, 0.5358553, 0.021205468, - 0.37516597, 0.29653904, -1.8035979, -0.88307977, -0.8963089, -0.498931, - -0.35772425, 0.34686232, -0.63705784, -1.2611427, -1.035422, - -0.97816503, -0.052216314, -1.9161756, 0.59910494, -0.16942763, - 0.89866513, 0.08907194, 0.037256606, 1.2194066, -0.59500885, 0.80461174, - -0.8943558, -1.700171, 0.51026905, -0.48904073, -0.37036076, 0.3134571, - -1.9528244, 0.10180977, -0.6248209, -1.7901282, -1.1031016, -0.62876666, - 0.61403984, -0.055509023, -1.05448, -0.56692755, -0.02828534, - -1.2118325, -0.437257, -0.21157554, 1.8535625, -1.2372316, -0.783554, - -2.001706, -0.89871377, -0.53479385, -0.26479727, -0.5120063, -1.287687, - -0.24688323, -1.7360809, -0.18202087, 0.3180908, -1.1407416, 0.76864505, - -0.80387706, 0.07145298, -0.11272481, 2.1574287, -0.4155909, -1.4525392, - -1.884056, -0.7378095, 1.1226689, -0.6442313, -2.4745688, -0.9185979, - -0.072256744, -0.3938742, -0.13820383, 0.10676262, 0.7296271, - -0.81360555, 0.07263178, -0.36415398, -1.6779635, 1.1695653, -0.6005375, - -1.4376948, -1.381003, 0.42702407, -0.29702643, -1.2194314, -0.99443704, - 2.4852152, -0.13239506, -0.18228418, -0.6021116, -0.8181295, -0.6903802, - -1.3634987, -0.5144499, -0.9991517, -1.6814001, 0.013758834, - 0.096886314, 0.49322778, 0.40738043, -0.03639456, -1.0797672, - -0.81954974, -0.31142494, 1.0608228, 0.39961994, 0.3609831, -1.3573549, - -1.5723851, -0.7545542, -1.8059975, 0.040185712, -0.40631437, 1.9716657, - 0.13700807, -0.98167694, 0.1316362, -0.61763525, -0.29662904, - -1.0602657, 1.084979, -1.5049967, -0.47818664, -1.5549718, 0.38011557, - -0.042337134, -1.0322199, 0.018155769, -0.15782243, -1.6601936, - 0.013085801, 0.085383326, -1.8141341, 0.58386797, 1.5106831, - -0.31637096, -0.67573225, -0.68387485, -0.75386894, -1.054435, - 1.6224079, -0.65168726, -0.5078553, -0.033939086, -1.0944384, - -0.2451143, 0.123969406, 0.4516027, 0.1866927, -0.501356, 1.2375585, - -0.3736113, -1.1390505, 0.2536387, -0.15882507, -1.1296171, -0.46616358, - 0.551915, -0.117718376, -1.1129355, -1.0789685, -0.63598704, - 0.011992369, -0.89321667, -0.46611792, 0.2838654, -1.6714903, - -0.6161467, -0.3405397, -0.6014333, -0.12809962, -0.8867203, -0.8541002, - 0.7705676, -1.3601731, -1.340001, -0.019938517, -1.4963431, -1.6862311, - -1.3668983, -2.1772335, -0.7828525, 0.8558873, 0.29387352, -1.4488398, - -1.8469095, -0.32510775, 0.3576589, 0.75308293, -0.40610683, -1.0903726, - 0.6961898, -0.25156954, -0.22344568, -0.85146683, -0.6494393, - -1.3956618, 0.44555464, -1.5951164, -0.46933863, 0.56244934, 0.16160062, - -0.9099649, -0.43720126, 1.1989014, -0.28035122, 0.7418878, 0.4716352, - -0.7806303, 0.28860426, -1.1519829, -0.47346848, -0.8617878, -1.4340206, - -0.5049158, -1.0652133, -0.370166, -0.3052611, 0.4001078, -0.26738086, - -0.66112953, 1.5346879, -2.0614269, 0.8901618, -0.02727639, -0.37529957, - -0.48058787, 0.08407548, -2.9214082, 0.68870497, -0.8045403, -0.6879807, - -1.0634849, -0.74395645, -1.6163001, -2.3026226, -2.078372, -0.9619734, - 0.4960907, -0.16566588, -0.65024805, 0.35342366, -0.6801468, - -0.13431437, -1.3709579, -0.6602445, 0.65057397, -0.60128385, 1.0774819, - 0.16359688, -0.17678651, -1.6068904, -0.3726482, 0.35546154, - -0.084733486, -0.04311522, -0.92467326, 0.21565877, 1.4266337, - 0.22100592, -1.7270803, -0.91509414, -0.3510507, 0.2632171, - -0.008931559, 1.4234412, -1.5804113, -0.71254677, -0.66688645, - 0.7971829, 1.2230527, -1.3990251, -0.8765615, 0.92011607, 0.24782547, - 0.7398691, 0.16406047, -0.3820498, -2.044102, 0.9267454, -1.2306367, - 1.560014, -1.2196478, -1.8387365, -0.6577931, -0.37334383, -0.41778487, - 0.24148555, -0.27976656, -0.7958103, 1.0161573, -1.6246806, 0.41199633, - -0.8909899, -2.2282298, -0.7392658, 0.09104715, 0.0029592756, - -0.31967595, -0.43323758, 0.046772614, -1.4863633, 0.4924388, - 0.31193966, 0.22218989, 0.93488246, 0.6429677, -1.3470017, -3.0562649, - -2.80534, 2.1331496, -1.526589, -0.39055037, -0.032319464, 0.024037238, - -2.3235893, -0.20260267, 0.4324367, -0.2395361, -1.1818669, -0.0736345, - -0.09091672, -1.1437892, -0.43290985, -1.5019838, -1.0237699, - 0.16562143, -0.045181103, -1.529244, -1.2560666, -0.09923984, - -1.1326917, -1.0698042, 0.7156668, -1.9463016, -1.147084, 0.4417152, - 1.4033517, -1.8233241, -0.07070853, -0.8266517, 0.76693124, -1.0460421, - -0.21459875, -0.5068145, -0.981311, 2.227705, -0.3820125, -0.37934119, - -0.594057, -1.4801816, -0.2921834, -0.61752594, -0.73654073, 0.9335594, - -2.465542, -0.6402002, 0.028449994, -0.61614484, 0.051046394, - 0.56954503, -0.6346119, 0.9240643, 1.3492721, -0.2485716, -0.52654326, - -0.73015624, 0.16702281, 1.1097572, 0.7269917, -0.93567276, -0.7920607, - 1.6282569, 0.45736328, -0.5654705, -0.7899073, -0.3304912, 0.8502902, - 0.3772348, -0.37837896, -0.75860083, -0.17676222, -0.3140947, - 0.44604695, 0.20341717, 0.112888485, -1.3063813, -1.5293366, -0.8616818, - 1.6166073, -0.049976777, -1.7680838, -0.64320904, -1.0022259, - -0.8501445, -2.2381625, -0.29844427, 2.06979, 0.1255776, 0.37259853, - -0.367616, -0.38119605, 0.19093865, 0.9514201, -1.0516095, -2.0082474, - -0.9507238, -0.572021, -0.0020561144, 1.0441796, -0.06352124, 0.3886797, - -1.5981433, 0.004292533, -1.163537, -0.23141776, 0.70819646, 0.6246343, - -0.95651096, 0.6059305 + "locations.license.id": [ + "pdm" ], - "features2": [ - -1.5501652, -0.067673855, -0.8502622, 0.6538442, -0.056744963, - 0.45862308, -0.134358, -0.44879004, -1.3512851, -0.36359867, -0.3855587, - 0.08535676, -0.6536143, 1.5120403, -0.14469302, -1.6423403, 0.5937876, - -0.31543514, -1.3100141, -0.5231111, -0.14147572, -0.93769526, - -0.39906165, 1.3928111, -0.6824046, -0.66795975, 0.7008431, -1.7044536, - 0.09443264, 0.4626248, 1.7081901, 0.29066062, 0.59245, -1.2045324, - -0.49662942, -0.79567564, 1.1255267, -0.21950074, 0.67404765, - -0.3752201, 0.50854415, -1.3804058, -0.105853714, -0.7044335, - -0.6875937, -1.3773721, -0.77765036, -0.52092856, -0.31579745, - 0.10093504, -0.13442981, -0.7820148, 0.36944345, 1.1720736, 0.53542775, - 0.8886372, -0.81671464, -1.975946, -2.1070857, -0.21098274, -1.348055, - 0.08516027, -1.440055, -0.17058256, -0.93842286, -0.52074814, - 0.10545775, -0.1465601, -0.49104807, -1.644381, 0.4261647, -1.0731286, - -1.543056, -0.35514894, 1.3669814, -0.19889566, -0.39255783, - 0.056092054, -1.8172599, 0.6746691, -0.03388115, -0.4798659, 0.20045555, - -1.7890869, -1.187044, -1.5723798, -0.06738653, -0.32508302, -1.9061538, - -0.26901153, -1.8765892, -0.3604612, -0.81135994, 0.19745012, - -0.36586097, 1.3422229, -1.4843823, -0.25444746, 0.46614498, 0.00403177, - -0.9661865, 0.25010726, -0.21886928, -0.31447, -0.026822053, -0.6285295, - 0.18451022, -0.6047267, -0.53312045, 0.43170118, -2.5374472, 0.12967105, - -2.1897278, -0.352303, -0.7698498, -0.6397362, -0.3245132, 0.8790006, - 0.9228651, 0.33414114, -0.05892551, 0.20778823, -1.74585, -1.338245, - -0.904767, -0.6377802, -1.9606369, -0.20656586, -0.4234931, -0.06111542, - -0.5740465, 0.29344052, -0.2645173, 0.871401, -0.29049543, 0.78051454, - -1.8370181, -1.5156507, 0.3639433, 0.13832586, 1.9760668, 0.6214601, - -0.15437397, -0.75834775, -0.32607752, -0.76146895, -0.18196967, - -0.37061056, 0.6548994, 0.5935624, -0.3062187, -0.59589815, -0.46080932, - 0.4905344, -0.5696368, -0.6187282, -0.17557198, -0.038713142, - -0.49840057, -1.4432317, 1.3434825, 0.04222651, -0.47890383, 0.26117697, - -0.82951546, 0.4196057, -0.4243651, 0.14081722, -0.6800957, -1.4208323, - -0.3923989, -1.5973426, -1.0338093, -0.0048032403, -0.3784896, - -0.34886062, -0.8410042, 0.49823254, 0.9008176, 0.0130375065, - -0.12142561, -0.51425266, -0.21364427, 0.07584492, -1.3117335, - 1.5369458, 1.4926436, -0.47870722, -0.8021359, -0.19832787, -0.8431362, - -0.7136564, -1.5510346, -0.7816246, -0.90265656, -0.71786934, 0.6661458, - -0.87287444, -0.93839955, -0.3046339, 0.44094694, -0.753504, 0.36764264, - 0.7473034, -1.7232401, -1.1879832, 0.37822968, -0.995506, -1.4840711, - 0.5766121, -1.0761056, -0.17047906, -0.81575733, 0.011488043, - -0.52245134, -0.3568681, 0.5400447, -0.54005915, 0.07195785, - -0.34837344, 0.43241215, -0.51610357, -1.163242, -0.69885474, - 0.13762209, -0.032770164, -1.1766534, -1.0217628, -0.6903227, - -0.49046397, -0.12358798, -1.1323988, -1.5200471, -0.95756465, - 0.0017176196, 1.1935396, -0.6642775, -1.2235752, -1.794608, - -0.009209845, -0.80283904, -0.30620766, -0.5849349, 0.80380625, - 1.046532, 0.5497218, -1.4473348, 0.79936147, -1.061694, 0.056345504, - 0.21759227, -0.96980935, -1.5296121, -0.47874779, -1.8446594, - -1.3918515, -0.12890285, -1.1193565, 0.54136, 0.4094744, -1.384236, - -1.5483825, 0.2404103, -1.8021277, 0.4016811, -0.43415564, -0.58024746, - -0.6763281, -1.6877292, 0.20243981, 0.56532836, -1.9714425, -0.65000874, - 1.3758266, 0.053587552, -1.0933414, -1.212695, 0.6027296, 0.42818546, - 0.36537418, -1.0662665, -0.37235656, 1.1942027, 0.6778461, -2.0307188, - -1.0783333, 0.17205372, -2.3616939, -0.7893746, 0.1934052, 0.18231387, - -1.5813328, -0.3299224, 0.84566563, 0.21758762, -1.6011251, 0.3950308, - 0.49903274, -1.4011616, -0.5165357, -0.05535938, 1.0223535, -0.04392024, - -1.8631166, -2.1081374, -1.6970884, 0.24046865, -1.0578114, 2.71713, - 0.3515069, 1.1311384, -0.6717384, -0.34398517, -0.6063329, -0.51268584, - -0.07776366, -1.8794479, -1.8538406, -1.3573314, -0.4319643, -0.7059009, - -2.0767274, -1.063299, -1.4173695, -0.51946074, 0.32922825, -1.9828593, - 0.35092044, -0.9622867, -2.0500267, -0.82922214, 0.16487408, 1.1701136, - 0.34201053, -0.89580923, 0.2626447, 0.16712052, 0.16694039, 0.3371375, - -1.6696328, -1.6426823, -1.4592506, 0.7191196, -0.5200603, -3.7313442, - 0.27119046, -0.72654396, -0.6725735, -1.6555281, -0.70026296, - -0.6277556, -0.77978826, -0.5496883, -0.23839569, -0.63072664, - -0.8675961, -0.60344625, -0.6559533, -0.1646524, -0.62781537, - 0.08152631, 0.74649626, -0.7785602, -1.0668793, -1.020331, -0.12349942, - -1.2153623, -1.121211, -0.5972297, -0.6771468, 1.2202237, -0.5872424, - 0.13094029, 0.4533709, 0.3141994, -1.0994368, -1.8649, 1.01281, - -0.9879095, -0.83356994, -1.1592318, -1.6600676, -1.8029157, - -0.05259767, -0.46184886, -1.5930568, 0.35251164, -0.43033683, - -1.3366514, -0.6570954, -0.89432126, 0.13012326, 2.1285975, -1.0378236, - 1.6023421, -0.12693459, -0.8348132, -0.8337657, -0.43299177, -1.3090264, - -0.83084756, -1.0986981, 0.5086026, -1.6023078, 1.0036248, -0.5249964, - -0.041673213, -0.4926879, -0.75599265, 0.8446243, 0.795798, 0.17506334, - -0.5077543, -0.94034606, -0.12088227, -0.5076322, -1.3104562, - -0.34346664, -2.2885222, -0.90765846, 0.25226802, 1.0606476, -0.6499078, - -0.7392825, -1.7030399, -0.9171863, -1.9187379, -1.2525778, -0.3542946, - -1.0579828, -1.3145274, 0.67000973, 1.2417399, -2.7863555, 0.75931144, - 0.93108475, -1.422799, 2.1878788, -1.0458483, -1.3375539, 0.60784864, - -0.5095872, -0.05352503, -0.77392983, -0.56816393, 0.47985008, - -1.6332939, 0.023686593, -0.9503749, 0.5956775, 0.6284238, 2.6907012, - -0.53929114, 0.82237935, -1.653826, -0.06722024, 0.24693206, - -0.006968025, -1.2442672, 0.22802228, -2.0613313, 0.07579458, - -0.26126793, -1.0109869, -0.18624267, -0.76332, -1.7527463, -0.13134533, - 0.07598798, -1.984904, 0.5964838, 1.0655636, -0.9067506, -0.8387443, - -0.007006079, -0.07535432, -0.95069563, -0.99458635, -0.25065148, - -0.8521703, 0.19081007, -0.11339864, -1.4755117, 1.0240631, 0.44545045, - 0.706809, -0.7166955, -1.011977, -0.22156724, 0.4710628, -1.3479527, - -2.4675536, -0.20604491, -2.5107164, 0.78356546, -1.4389194, - -0.068040326, 0.5087786, 0.6014416, -0.65052754, -0.37911004, - -0.46437204, -0.5600692, 0.23563117, -0.20168617, -0.35859168, - -1.6847811, 1.9779565, -1.7723502, -0.90550625, 0.94873995, -0.29957548, - -0.83713883, -1.5792919, -0.13164756, -1.7892301, -0.12430223, - 1.6482258, 1.1345168, 0.7170052, -2.097599, -1.2846615, 0.014867619, - -0.08864187, -0.573864, 0.098916486, -0.9106768, -0.06600631, - -0.28620902, -0.41319707, -0.38662836, -0.34245035, -0.6784416, - 0.2688635, -1.2377052, 0.008913394, 0.9732083, -0.1627484, -1.0910294, - 0.93355066, -3.0641234, 0.87807065, -0.95069593, 0.08363951, - -0.55193317, -0.85081613, -0.7549804, -0.015934274, -1.7030848, - -1.585176, -0.7992667, 0.9682764, -1.0089452, -0.53227603, -1.0485761, - -0.79358816, -1.2457494, -0.1852505, -0.15646642, 0.71372485, - -0.38560763, -0.18562281, -0.9272543, -0.48020837, -0.99689287, - -0.40149206, -0.05599395, -0.3656822, -1.780218, -1.0988864, 1.0081606, - -1.18251, -0.07491046, -0.65035915, -0.3195142, -1.1500653, -0.41348574, - -0.73200864, -0.3094435, -0.113398634, -0.22819921, -0.59868985, - -1.0454673, 0.19429183, -1.8690238, -1.1775832, 0.2888714, 1.3720458, - -0.49654746, 0.25775784, -1.983639, -1.493637, 0.5745239, -0.98091316, - -0.5312433, -0.87512887, -0.5203234, -0.8638656, -0.036231652, - 0.34177184, -1.559383, -0.81753474, -0.2072463, -0.91260254, -1.2406766, - -1.3995426, 1.1459491, -0.11420361, -1.9313815, -0.43412268, -1.6666268, - 0.40961972, 1.2435426, 0.15292406, -0.03352444, 0.4534989, 1.1399393, - 0.09360598, -0.46495464, 2.1104953, -2.0976453, 0.84877944, -0.65113455, - 1.5696305, -0.13364777, 2.1489935, -0.26282117, 0.5759113, -0.40201938, - -1.316538, 0.13042843, -1.2316612, -0.3873002, -0.0059447326, - -2.5262897, 0.30474696, 0.0497125, 0.16436775, -0.4925111, -1.0527871, - 0.35021368, 0.1918556, -0.69194555, 0.33689994, 0.93082047, -0.28849685, - -1.4740385, -1.6102662, 0.24042079, -2.6435568, 0.19917575, -1.1863365, - -0.048232608, -0.095257774, -0.2911106, 0.048569225, -0.42490506, - -0.6706554, 0.4839334, -0.24449974, -0.16283873, 0.54979056, - -0.40897086, -1.6336472, 0.11922561, -0.14461584, 0.07361789, - -0.25627798, -0.09069099, 0.98561555, -1.4777796, -1.8850726, - -0.65897864, -1.0843723, -0.4087917, 0.26266265, -0.4751868, -1.0846665, - 0.04966503, -0.9841367, -1.2457427, -1.9227339, 0.7822126, -0.64222544, - -0.567872, -0.6146191, 0.34497657, 0.087843284, 0.12559263, 0.72660285, - 0.4717142, 0.99790454, 0.8231093, -1.0793568, -0.7385785, -1.3620664, - -0.22604325, -1.0163547, -0.639079, -0.24992421, -0.7589005, - -0.09300244, -0.0378667, -1.1330894, -0.6713917, 1.8186839, 0.883936, - -0.117886424, -1.262816, -0.4144014, 0.90710926, -0.25896, 0.7659925, - -1.7227755, 1.1862538, -0.9901609, -0.64611304, 1.751958, -0.6973096, - 0.7132184, 0.5406406, -0.7223862, -0.037404574, 0.32591164, -0.646045, - -1.8075007, 0.6773415, 0.19515875, 0.4993102, 1.7871286, -0.70874834, - -1.1951485, 0.26318416, -1.0293386, -0.9350033, -0.34437966, -0.6843565, - -0.49036986, -1.4147034, 0.9597153, -0.4409911, -1.6775479, 0.18500161, - 1.2130271, -1.0249475, -1.3682138, -0.6006574, 1.4493332, 0.59713644, - 0.32059592, 0.0060758665, -0.90414125, -1.3774683, -1.3239571, - -0.92656136, -0.9766584, -0.45028925, -0.39281404, -0.5058252, - -0.7835541, -1.412745, -0.8375413, -1.0269318, 0.36220795, 2.135048, - 0.40716726, -1.0122883, 0.8135606, -0.56656075, -0.6063921, -0.30924737, - -0.96360505, -0.25621995, -1.3640488, -1.206744, 0.53708214, -2.8571541, - -0.010292269, -1.2193372, -0.45046508, -0.573618, -0.015457571, - -1.2925062, 0.4619946, -1.4085084, -1.2654995, 1.4902755, -0.96587545, - -0.38123798, 0.8002032, -0.1269044, 0.27327955, -1.1200353, -1.1961495, - -0.18063442, -0.40397257, -1.2325222, 0.2602991, -1.8780278, -1.0877899, - -0.41248387, 0.36431152, -0.5164577, 1.0502583, 2.0444846, -0.23541643, - 0.049049556, 0.30154303, 0.3044953, -0.26483402, -0.33421254, - -0.37447703, -0.03848467, 0.22392839, -1.2730929, -0.06767799, - -0.17975703, -1.2735808, -1.0596538, -1.432125, -0.009360388, - 0.40397015, 0.068867356, 0.98533934, 0.36425167, -2.055558, 0.97899854, - 0.19537947, -1.772618, 1.4859114, -1.4870696, -1.1899331, -0.4787406, - -0.56510323, -0.97469044, -1.4918642, -0.54087734, 0.7900875, - -1.1444664, 0.049895953, -0.020267092, -0.9478845, 0.74819094, - -1.1681035, -0.3161515, 0.5871846, -0.65263736, -0.5623166, -1.62985, - -0.52248436, -0.5971103, 0.22014101, 0.22607128, -0.19700319, - -0.96340805, 0.54001516, 0.63361496, -0.27435073, -1.2750843, 0.7460599, - -1.3969795, -0.3202017, 0.057359703, -0.65491974, 0.59489435, - -0.99326324, 0.20152229, -1.2796623, 1.1808836, 0.30218005, -0.97323686, - 1.3539321, -0.50017595, -3.4367244, -0.21699154, -0.86309767, - -0.1154768, -1.9479618, 2.3337526, 0.46805596, -0.29834342, -0.65409553, - 0.58756673, -1.35062, -1.3682361, -0.8238676, 0.14932397, -0.14134066, - 0.3028574, 2.910988, -2.4709704, 0.30120283, -0.9721323, -0.011786189, - -0.69760966, -2.6051657, 0.21448573, -1.0407953, 0.77080756, -0.4512262, - 0.2053354, 0.35346645, 0.7272328, -2.249317, 0.57496744, -0.45114478, - -0.6060372, 1.4148868, -0.3394056, 0.47625032, 1.8262008, 0.14260963, - -0.3951993, -0.6428433, 0.5276314, -1.2494503, 0.23404023, 1.2700856, - -0.6838664, 0.3602355, -1.1463822, -0.32626882, -0.9974598, -1.4042189, - 0.118844494, 1.499135, -0.25171193, 0.27877373, 1.1638832, -0.39179364, - 0.41247237, 1.0875826, -0.6730171, -0.86891, -0.77795494, -1.4609401, - 0.0029514655, 0.12636717, -0.22954158, -1.0329714, -1.0926716, - 0.18427455, 1.2096432, -0.17915566, 0.6814949, -0.5829436, -0.42815384, - -2.1804152, -0.6907959, -0.7058997, -0.58720106, -2.8761907, 0.38488567, - -0.34974524, 1.0349557, 0.949188, -0.23045012, -0.41835657, -0.43840516, - 1.636328, -1.6822892, 0.44891158, 0.12730892, -0.37587947, -0.88895583, - 1.7742702, 1.985128, -0.61524254, -2.4774868, 0.50232565, -0.9737681, - -0.30417255, 0.7943005, -0.4781394, -0.47753242, -0.7574119, 1.992805, - -1.1787922, -0.20347342, 0.9050194, 0.75297916, 0.30467504, -0.23791555, - -0.7119689, 0.061438702, 0.28341317, -0.38030863, 0.4125216, -1.2543592, - -0.00917967, -1.5098644, 1.162576, -1.0153661, -0.4336624, -1.7218451, - 0.15486331, -1.1507124, -0.8504975, 0.65688556, -1.4926877, 1.0865334, - 0.20490113, 1.2369409, -1.3575268, 1.4540974, -1.2296265, 0.46997592, - -1.7681197, -0.27537656, -1.0840048, -0.8306254, -0.070169546, - -1.1856521, -0.5843646, -1.2198523, -0.70173717, 0.3170397, 0.039406694, - -0.18590719, -1.9283099, -0.3839789, -1.2449327, -1.0917568, - -0.67846215, -1.4629897, -0.4528238, -1.295667, 0.29052776, 1.219526, - 0.59710914, -1.1580259, 0.6396545, -0.68769455, -1.0482461, -0.39156157, - -1.2057115, -0.69438815, -0.80768514, 0.35663533, -0.8113825, - -1.6729625, -0.37138617, -1.5146381, -1.0508411, -0.045692988, - 0.24628401, -1.1765428, -2.9182384, -0.054674886, -0.61968184, - 0.036808286, 0.3097551, 1.4767551, -0.81860054, 0.7371186, 0.65643567, - 0.27082193, 1.888999, -2.1527455, 0.29248357, -1.4202152, -1.9196908, - -0.03641516, -0.5852378, -0.46961382, -0.4183104, -0.9524999, 1.6688203, - -1.9717263, -0.40569958, 0.6048639, 1.0675317, -0.21279153, -0.6472185, - -0.63871264, -1.6392844, -0.23918611, -1.5372556, 1.3105284, 0.42896488, - -0.3527683, -0.20991428, -0.4939395, -0.6692176, 0.42728373, -0.735753, - -1.5317191, 0.0775721, -0.8045828, -1.241388, -0.634139, 0.30918422, - -0.79706657, -1.2519274, -0.4632554, 0.5816452, -1.2942299, 0.68930185, - -1.0520908, -1.6682882, 0.36904013, 0.073060274, -0.88803166, - 0.22052328, -0.9712618, -0.29814178, -0.11213875, -0.27336046, - 0.37642708, -1.961268, 0.46415845, -0.6579206, -1.4326943, -0.6270783, - -0.27134234, 0.41962215, -1.1662774, -1.3038198, -0.017128209, - -1.3788376, 0.25973457, 0.062006094, -1.7808003, -0.7986962, -2.15712, - 0.55728453, -1.5702486, 0.038826175, -1.7978847, 1.0081012, -0.3249743, - 0.7105399, -1.1978041, -1.2405391, -1.5861245, -0.6762025, 0.859107, - -1.5332191, 0.41510904, 0.34728515, -0.8889308, -2.343899, -0.91591716, - -1.1744949, -0.7478108, -0.042710338, -1.459835, -1.909791, -0.87403387, - -0.72348565, 1.1493714, 0.44811842, 0.28991425, -1.0155191, -0.58602005, - -0.09519243, 0.14571838, -0.64186525, -1.4424721, 0.061422538, - -1.8610706, -1.7992992, -1.4163023, -0.4480929, -0.42451578, 0.7453568, - -2.582663, -0.909885, -1.5091223, -0.53820735, -1.1744888, -0.1085228, - 0.07560244, -2.4953766, -1.5399472, -0.57990617, -2.494453, -0.7718862, - -1.6291786, -0.051418193, -1.2246643, -2.0650334, -1.2808669, - -0.3855257, -0.75625825, -0.93995273, 0.08377013, -0.32537356, - 0.24729574, -0.28749526, -1.2659596, 0.49207598, 0.15493198, -0.9343357, - -0.61268365, -0.7085668, -0.16596487, -1.094764, -0.07156123, - -1.1532654, -0.4935184, -0.25761378, -1.1630052, -0.4972852, - -0.27133548, -1.407608, -0.053886145, -0.83190596, 1.4733951, - 0.22614568, -0.59049314, 1.0783526, 0.083877414, -0.51962984, - 0.65362096, -0.91655046, 0.011763215, -0.7911031, 1.4207089, - -0.58347654, -1.9252473, 0.3294337, 0.08091215, 0.49281028, 0.07050707, - 0.34369648, -1.4689775, 3.381789, 0.70125306, -0.43977827, 0.4078325, - -0.48716334, -0.75895655, 0.28724265, -0.5553357, 0.397008, -0.7306451, - -0.20324785, -0.6967965, -0.087967165, 0.11466241, 0.06745988, - 0.80676013, 0.26750004, -1.6723492, -0.13324633, -1.0345173, -0.5754122, - 1.0441492, 0.54249763, -1.1056409, -0.61821866, -1.1017423, -0.09587912, - -1.8251412, 0.90882206, -1.3483537, 0.0011803359, -0.093764685, - -0.7798407, 1.0330065, -0.55299044, -0.045669958, 0.7878223, -1.2465526, - -0.97326696, -0.07301383, -1.293049, 1.0832963, 0.18111117, -0.6513871, - -1.6116906, 0.29729393, 1.3005847, 1.123219, -0.32413268, -0.4651831, - -0.8378949, -0.16442598, 0.16651875, -0.24083923, -2.200631, - -0.55244905, -0.30537543, 0.10005232, -0.7831145, -0.718102, -1.0783122, - -0.73635465, -0.13093686, -1.9005773, -1.6421537, 0.16160914, - -1.7450504, 0.3553639, -2.1754928, -0.97588986, -0.53659624, -1.7947526, - -0.5473692, -0.3393191, -0.64016396, -0.35916105, -1.0511221, 0.6339277, - 0.94675696, -0.23634252, -0.54023653, 0.46491432, 0.41810215, - 0.57109535, -0.48594752, 0.23216835, -0.05702409, -0.42807326, - -1.2427777, -0.5986557, 0.5196041, -0.6257418, -1.2505728, -1.704987, - 1.6208625, 0.42976794, -1.1879286, -0.9845306, 0.14805532, -0.77632004, - -1.6904436, -0.68467534, -0.03197962, -0.24987453, 1.5806363, - 0.67470276, -0.8002026, -0.23021719, -0.9306692, -0.5605657, 1.2844814, - -0.65430325, -0.7850591, 1.9396306, 0.55093026, -0.58153754, - -0.97919714, 0.9326729, 0.05969558, -1.4847484, 1.2561686, -1.8831873, - 2.3620856, -0.22988401, -2.2524784, -0.7067443, -0.76035666, 0.77675563, - -1.391288, -0.9105691, 0.8293476, -0.03941167, -0.3341086, -1.7162739, - 0.8418797, -0.85945344, 0.12976256, -1.1360439, -0.6838547, -0.681179, - -0.8001493, -0.52397746, -0.42341834, -0.6625663, 0.41710585, - -0.6242938, -0.55541396, -1.4118099, -1.008721, -1.1350168, 0.22448297, - -0.09776222, -1.063142, -1.0198339, -0.55076814, -0.86585385, - -0.00021509826, -1.8385608, -1.0621855, -1.852673, -1.4431208, - -0.97734696, -0.5948823, -0.28365684, -1.332777, -1.7342726, 0.31271136, - 1.1706957, -0.12090222, -1.3959566, -1.743476, -0.37599188, -1.9694508, - -0.74305433, 1.0749384, -1.8116242, -0.28715476, -1.081395, -0.17963128, - 1.2340796, -0.5067538, -1.4782594, 0.9552755, 0.34770465, -0.35777175, - -1.746831, -0.49702224, 1.2340304, -0.40347868, -0.21923405, -0.5900657, - 0.78237176, -0.85393196, 0.16769058, -0.24330816, -1.0327688, - 0.08552688, -0.89592916, -1.2139553, -0.52486277, -1.4738485, 1.3136126, - -0.9514621, -0.38788867, 1.0149677, -0.5791759, -1.5030141, -0.9540239, - -0.8261678, -1.6113399, 0.457626, -0.7056892, 1.0266886, 0.42980438, - -0.8592521, -1.8550931, -1.1055243, -0.77002466, -1.2940767, -0.6293826, - -1.7430099, -0.9346766, -0.07908209, -1.7070147, -1.8878757, -0.5418015, - -1.3036088, 0.70747036, 0.5283764, 0.96600276, -0.35961586, 1.3212528, - -0.20443211, -0.5451541, -1.1440434, -0.4950384, -0.7829761, -1.3344303, - -1.6220453, -0.016660012, -1.3370297, 0.15025844, 0.0023520514, - -1.5159278, 1.3736207, -1.0765547, -1.1328865, -0.100315295, -0.1045713, - -1.7693768, 0.81565666, -0.07300995, 0.5694663, -0.79493356, -0.8663573, - -0.9974154, -1.8078855, -0.56173325, -0.92452705, -0.16970626, - -1.2041733, -0.14798859, 1.5747905, -0.18287638, 0.01240921, -0.6798106, - 0.27477297, -0.07726544, 0.26973414, -1.5963112, 0.73609364, 0.10566359, - 0.130763, 0.68714917, 0.7458861, -1.0671171, -1.6693172, -0.016755503, - 0.2342562, 0.80762786, -1.387521, -1.2169669, -0.98235506, -0.57815135, - -0.57794845, -0.43706167, 0.5932144, -0.86581755, 0.61027265, - -1.2921194, -1.012972, 0.16018482, 0.26847512, -0.8589974, -1.292082, - 0.7838793, -0.88997465, -1.5373334, 1.1090814, 2.8142517, 0.8790058, - 0.030020904, 1.325002, -2.644222, 0.25869712, -0.63414216, 1.3399416, - 0.11242905, -0.9494131, -1.0343028, -1.9311152, -0.55767775, 0.94751346, - -0.4694202, -1.0992104, 0.22013852, -1.4380172, 0.38541225, -0.9737577, - -1.6091478, -0.06971151, -0.24453445, -0.085288204, 0.49808362, - -0.41504678, -0.70909387, -1.2508534, -0.65134144, 0.32972968, - 2.0044117, -1.3872565, -1.2264562, 2.664755, -1.5679394, 0.56455624, - -0.48265445, -1.1110878, -0.25018668, 0.1573174, -0.444817, -0.633351, - 0.23193975, 1.5595361, -0.32335612, 0.020666042, -0.037643384, - 1.8329784, -1.2574368, 2.0349748, -0.34084603, -1.1411273, -1.9610214, - -1.2541766, -0.8858196, 0.48442134, -0.33840954, -1.4105297, 0.15528059, - -2.1151578, 1.9808208, 0.3485513, 0.8151716, 1.116439, -0.54579717, - -0.5915168, -2.394706, -0.53161794, -1.3088186, 0.7846905, 0.3371915, - -0.540243, 0.1867936, -0.15572318, -0.15752128, 0.4746792, 1.1225533, - -0.80373174, -0.8130479, -1.5348489, -0.6517941, -0.962743, 0.031553, - -1.0979306, 0.5401933, -0.22528034, -0.06671791, 0.07576728, - -0.02786193, -1.0822747, 0.38475522, -1.8540992, -0.8773046, 1.1842793, - -1.2577866, -1.3989927, -0.3392869, 0.34171522, -0.31977716, 0.63113075, - -0.6589408, -0.302502, -0.49524504, -1.6978801, -0.91660285, -1.2037263, - -0.45549464, -0.8820417, -0.45898062, -2.2584393, -1.1320748, - -1.2977073, 1.4603152, 0.12623826, -0.93105793, -1.2640988, 0.6709289, - -0.2119298, -1.1795453, -0.8241842, 0.5371672, 1.3024396, -0.08571481, - -1.5663278, -0.37021208, -0.39489678, -0.938223, -1.2222263, 0.03603241, - -0.91602707, 1.3563777, 1.3100569, 1.6030034, -1.1975449, 0.9173651, - -1.6060276, -0.86248606, -2.4656124, -0.0023516156, -1.0578288, - 1.5311705, -1.5483396, -1.8821747, -0.7403594, -2.0594997, -0.6595656, - -0.35014418, -0.2585061, 0.46282914, 0.086853914, -1.0341535, - -0.32882583, -1.4285914, -0.3579224, -1.087978, -0.28490555, 0.4917249, - -1.3424137, -2.2698913, 0.5629495, -1.9573312, -1.6491756, 0.5182725, - 0.46136165, -0.27669156, -1.7207835, 0.9424644, -2.0084152, -0.3909835, - -0.07250191, 1.7959526, 1.336377, -0.1217823, -1.1247691, -0.735331, - -0.7928909, 0.59922564, -0.59041536, 1.5340598, -0.5580205, -1.4048705, - -0.10883531, -0.69583917, -0.29528493, -0.664474, 1.0543137, -1.1211805, - -0.428912, -1.6304771, -1.6985278, -1.2263628, -2.245383, 0.7442406, - -2.1624897, -1.8682715, 1.0259305, 1.3131614, -0.1526933, -1.3602301, - 0.56377184, -1.0324948, -0.7734165, -0.015556172, -0.76965594, 1.756234, - -0.25640365, -0.84133816, -1.1506641, -0.23446755, -0.074555025, - 1.3389927, -0.58888525, -0.9097901, -1.4972867, -3.1094537, 0.4981756, - -1.3764377, -1.9270151, -0.10359639, -0.28147015, 0.24237497, - -0.0973707, -0.8094078, 0.031222735, -1.5621015, -0.5524147, -0.5946765, - -3.5084286, -0.2670948, -0.0064199977, 0.5469092, 0.026831858, - -1.0432717, 0.18401524, -1.4903024, -0.84878826, -0.31963417, - 0.64338654, -0.21804968, -0.32576424, 1.2547129, -0.14168137, - -0.23031548, -1.3158942, 0.16907567, 0.2509269, -0.98179996, - -0.81846434, -1.1792408, -0.30541387, -0.98176306, 1.126183, - 0.065490834, -1.07518, -0.48445806, 0.5006409, 0.6703291, 0.17932136, - -1.9072589, -1.3291626, -0.44036496, 1.836477, -0.87178636, 0.9363456, - -0.61255664, -0.6571331, -0.4966536, -0.8212717, -1.004481, -0.31394738, - 0.0024190284, -1.819389, 1.0027565, -1.1843243, -1.5793931, -0.36717328, - -1.1561704, -0.7537412, -1.2999407, -0.8877484, -1.0472597, -1.3818328, - 0.8311704, -0.88614756, -1.1376342, 0.8416879, -0.8544413, -0.6561598, - -0.35632235, -1.6080517, -2.2576513, -0.44033572, 1.4815072, -0.4054821, - -1.5228108, -0.79999053, 0.18361753, 0.3615058, 1.4915705, -1.0297904, - 0.14693227, 0.45049676, 0.8061257, -0.7153662, -0.4015957, -0.37008294, - -0.50412333, -1.0050789, -0.8537965, 0.42129058, -0.6976158, - -0.29460263, -1.2194421, -0.7944329, -0.7031452, -2.3815365, -1.625026, - -0.8940377, -0.5521514, 0.2555146, 1.3859154, -2.8461907, -1.9200224, - -0.14661065, -1.058566, 0.9779141, -2.1976638, 0.058775783, -1.5615735, - 0.3678096, -1.6570536, -1.7620071, -0.51654696, -0.7621114, -0.1471288, - -0.99385095, -0.31580696, -0.65917695, -1.0977364, -1.5490532, - 0.06520248, 0.6872199, -1.2317091, -0.35727355, 0.7662197, -2.0476885, - -0.9998179, -0.37688297, -1.0754883, 0.120100245, -0.21077898, - 0.015663795, -1.4216839, -0.13297583, -1.248277, 0.10848713, 0.17423368, - -0.116747, -1.4253763, -0.7743968, -0.16653946, -1.0944303, -0.19213575, - 0.271946, 1.4545845, -1.1925982, -1.5083749, 0.1859497, 0.20636998, - -1.8127186, -1.3575395, 0.9832127, -0.22996634, -0.5034012, -0.35963342, - 0.63594764, -0.5525176, 0.42151275, -1.2383435, -0.4284579, 0.111769736, - -0.036715105, -1.7529514, -0.3517274, -0.7777532, 0.43498576, - -0.8840049, 0.5536445, -0.60624295, -0.95212394, -0.7563969, -0.905923, - 0.08476806, 1.1579185, -1.807137, 1.0895451, -0.954479, -0.32014126, - -0.17858738, 0.4072512, -1.5490313, -1.1148108, -0.5123278, - -0.016865749, -0.23926692, 1.3765543, -0.62489533, -0.30740446, - -0.9192868, -0.6249382, -0.034740046, 2.11629, 0.39469415, 0.23835197, - 0.017605124, -0.98021406, -0.8233854, -0.41401353, -0.53298795, - -0.99839187, -0.3373314, -0.917674, 0.10643448, -0.9255949, 0.145465, - -0.10387759, -0.814852, -2.8339188, -1.1746421, 1.254157, -1.2652266, - -1.5843447, -1.4696755, 1.5528402, 0.29293674, -0.26079172, -1.2077104, - 0.8902738, 0.46846563, -0.18765289, -0.7962727, -0.9278995, 1.4419615, - 0.3594715, 0.55985576, -1.6095271, 0.8374118, -0.17009598, 0.79414034, - -0.32782048, -0.8393516, 1.093514, -1.698074, -2.1778033, -1.250349, - 0.8838397, 0.6928097, -1.3577802, -0.44525194, -1.266258, 0.17206845, - 0.7576769, -0.28537685, 1.1731514, 0.2804841, -0.8370386, -0.9318939, - 1.5004418, -1.4259156, -0.75172454, -1.7269337, -1.0448984, -0.308728, - 0.66422963, -1.0202359, -0.21305132, -0.27664486, 1.2071242, -1.7090722, - -0.84661436, -0.18474413, 0.39501476, -0.40826038, 1.0607219, - -0.8513247, 0.17782855, -0.2437471, -1.0729142, -0.3215006, -0.26246354, - 0.0020061554, -0.30858308, -0.4157846, -0.60613227, -0.024002574, - 0.13273329, -1.4395262, 0.07863779, -0.28605592, 0.14199123, 0.4836341, - -0.98716486, -0.6608251, -0.4322104, 1.6264708, -0.17042118, 0.65848947, - 0.05437681, 1.5483705, 0.8375529, 0.5834565, 1.1248751, 0.2995164, - 0.19634551, -0.38395375, -1.8197166, -1.6273229, -0.21202692, 1.094505, - -0.8954931, -0.16413903, -0.72207516 + "source.contributors.agent.label": [ + "Robinson, W. R" + ], + "source.genres.label": [ + "Etchings" ], - "reducedFeatures": [ - -0.022121422, -0.07780623, -0.05657209, -0.023180043, -0.019030096, - -0.061005805, -0.058150966, 0.013090132, -0.013050992, -0.0007660788, - -0.007193701, 0.05879296, -0.03405726, -0.007172689, -0.008162373, - -0.03425525, -0.025309226, 0.008523666, -0.03251215, 0.030131428, - -0.06409895, -0.03380547, -0.02185236, -0.0024323682, 0.03686634, - -0.015623986, 0.031009056, 0.0013439704, -0.05498955, -0.032481458, - -0.01923189, -0.0077953404, -0.0544666, -0.028513426, 0.015500194, - -0.04130085, 0.022207305, 0.04263191, -0.011042617, -0.03138038, - -0.032308277, -0.038572446, -0.0044422285, 0.04641734, -0.026646001, - -0.022233326, 0.042083096, 0.0658614, -0.041262843, -0.039881565, - 0.0062047862, 0.009180161, -0.009062932, 0.009160426, -0.027409544, - -0.0777505, 0.0022883592, -0.02510631, -0.020361273, -0.01584554, - -0.0006514962, -0.0114770755, -0.014669781, 0.0037777445, 0.038593285, - -0.02958387, -0.029156862, -0.027030738, 0.009337839, -0.01826844, - 0.008188846, -0.01984243, -0.038197756, 0.015046832, 0.018431962, - -0.0048896037, -0.011225314, -0.052038494, 0.008148193, -0.02501573, - 0.033529934, -0.0038218147, 0.0047625774, -0.014284552, 0.019420464, - -0.010055996, -0.027204536, -0.028889522, 0.031305436, -0.024244143, - -0.025453173, 0.011066366, 0.0013074324, 0.019949934, 0.03062958, - -0.025307616, -0.051295254, -0.020404456, -0.012146886, -0.01814125, - -0.038385186, 0.046022538, 0.009873953, -0.015444453, -0.014808277, - 0.0023642813, 0.010490691, 0.02171998, 0.04867335, -0.09457123, - 0.0038811755, 0.0052872687, -0.018111823, 0.035711087, -0.022956045, - 0.0057361117, -0.015868027, -0.10617255, -0.0017664244, -0.039207984, - 0.022984907, 0.06867386, 0.006567483, -0.015919462, -0.05172964, - -0.0014211639, 0.009764314, -0.0053773, -0.0060426816, -0.03507789, - -0.020445697, -0.039693378, -0.00050494133, -0.005648767, -0.0047892807, - -0.0023994471, -0.01581584, -0.055282395, -0.018653791, -0.005407846, - -0.03310453, -0.03109369, 0.023775384, -0.025977416, -0.044457063, - -0.030561201, -0.031974897, 0.00071897823, -0.050694052, -0.008325203, - -0.0398465, 0.0127436295, -0.022212416, 0.0016663021, 0.06526099, - 0.0029520513, -0.03139452, -0.0066769877, -0.0466376, -0.016219903, - -0.025019625, 0.008866915, -0.009147709, 0.034731016, 0.002752256, - -0.04401518, -0.013039458, -0.025483262, 0.001119294, 0.03463903, - -0.0252585, -0.053463165, -0.030175652, -0.0016304323, -0.008977246, - 0.019548757, 0.006531303, 0.014220847, 0.05059564, -0.056714267, - -0.011706401, 0.019485634, -0.009444714, -0.008172978, -0.007900656, - -0.027880715, -0.025524672, -0.03330927, -0.03492438, 0.0014575142, - 0.019818248, 0.025055844, -0.0156468, -0.05087973, -0.011165301, - 0.00855616, 0.061237317, 0.056524415, 0.026079841, -0.0055454685, - 0.005221214, -0.015954042, -0.043558944, 0.00019026225, -0.02735385, - -0.0029806697, -0.022739023, -0.018209713, -0.019940862, 0.0047662263, - 0.040901415, -0.039533507, -0.010716776, -0.044226028, -0.011674426, - -0.028768292, 0.056771554, -0.012462503, -0.044336863, 0.009557563, - -0.055765722, 0.024244305, -0.008220081, -0.04336726, 0.022741463, - -0.055309504, -0.025161343, 0.017718012, -0.011144244, -0.0023452851, - 0.005603691, -0.0095874155, 0.008043418, -0.016270982, -0.023407243, - -0.013549934, -0.028056493, 0.0025696312, -0.04482284, 0.015009, - -0.009070786, -0.0142752705, -0.025398308, -0.024395172, 0.0048381216, - 0.040800277, -0.012375336, -0.014638191, 0.0135973925, -0.021946356, - -0.04714969, -0.0067800567, -0.0052509326, 0.020498198, -0.02308043, - -0.030378321, -0.02581066, 0.02424565, -0.012196804, 0.0019228933, - -0.057170413, -0.024343807, -0.0077751377, -0.007069529, -0.03890626, - -0.01957647, -0.017042566, -0.028191589, -0.017806249, 0.011537966, - 0.052915856, -0.053090915, -0.014057832, -0.02841961, -0.015025172, - 0.006179551, -0.038056508, -0.06908726, -0.014567198, -0.046237223, - 0.007968098, -0.039464455, 0.0029362035, -0.04496572, -0.003370858, - 0.010236752, -0.009829015, -0.048411105, -0.02769959, 0.0061456226, - 0.0062243803, 0.014334213, -0.0052839215, 0.0038169178, -0.05250192, - 0.02385265, 0.027159793, -0.01256158, 0.04123423, -0.01083463, - 0.03757529, -0.048785403, -0.034557246, 0.0033004093, -0.04183351, - -0.062336672, 0.02256312, -0.01641344, -0.020276036, 0.026757568, - 0.03346133, -0.012401523, -0.024044437, 0.0047626984, 0.05389948, - -0.014013957, -0.01211285, 0.014043409, 0.00073143415, 0.0104725305, - 0.02335623, 0.039789174, -0.012782753, 0.05027704, -0.03743259, - -0.098364815, 0.00924218, -0.04349876, -0.017416457, -0.058815226, - 0.008755375, -0.045904886, -0.027218971, 0.0022664748, -0.024607047, - 0.015843594, 0.032932185, 0.0678543, -0.0032059378, -0.05804297, - 0.040185858, -0.01622028, -0.019862818, 0.019169403, -0.026124753, - -0.018234393, 0.028900843, -0.056880534, 0.015633162, -0.027303489, - -0.046558976, 0.03672267, 0.03565356, -0.025501242, 0.037428126, - -0.018466108, -0.01804025, 0.03429206, -0.01749809, -0.024324102, - -0.040957913, 0.023246186, -0.022222925, -0.015755601, -0.04963765, - 0.020050775, -0.031484693, -0.021633282, -0.051517893, -0.043520644, - -0.01741946, 0.046824984, -0.008657383, -0.014603954, 0.05340988, - -0.008185215, -0.042485714, -0.044887416, -0.025465487, 0.0048462097, - 0.0007767822, -0.025068821, 0.02136762, 0.0048742266, 0.033037648, - 0.041316222, 0.038777877, -0.005769159, 0.032887064, 0.0048081577, - 0.0035445725, -0.026845766, -0.0103436755, -0.002835027, -0.050386876, - -0.03612425, 0.0028838902, -0.00025496673, -0.0116900895, - -0.00019558764, -0.0070854784, -0.020437444, -0.0065311487, - -0.017289555, -0.04174931, -0.04536687, -0.019378064, -0.016585317, - -0.061105505, -0.010938874, 0.038708653, 0.017577415, -0.022686431, - 0.0050872266, -0.000922957, 0.006778969, 0.0012221737, -0.017445704, - -0.0032455395, -0.011222909, -0.030090548, 0.0018059891, 0.0013053912, - -0.0013127024, -0.023784876, -0.04667258, -0.04883341, 0.024727335, - 0.008323215, 0.011108082, -0.0017472161, 0.006142217, -0.023202747, - -0.0074441503, 0.014013284, 0.005175029, 0.008418251, 0.034965876, - -0.011504251, -0.012250668, -0.06794705, -0.025056353, -0.014784776, - 0.0066158413, -0.04218823, 0.058247924, -0.03594394, -0.025065841, - 0.015349996, 0.00740462, -0.033175517, -0.043920312, -0.019725788, - -0.013838805, -0.047179934, -0.042262774, 0.02887825, 0.012438154, - -0.07208503, 0.03140239, -0.006529335, -0.069688655, -0.031068051, - -0.014259089, -0.046409514, 0.024290975, -0.008659879, -0.046949256, - -0.009621379, -0.0010989058, -0.043626506, -0.058439348, 0.014028452, - -0.01607292, -0.010748174, -0.018214477, -0.021111267, 0.008920226, - -0.044987816, 0.03280261, -0.026990281, -0.020572364, -0.012870272, - 0.029695226, -0.027851459, -0.039794162, 0.01030823, 0.041071404, - 0.011604736, -0.014277864, -0.04580664, -0.030912984, -0.048246197, - -0.0061042784, -0.03935021, -0.0040123067, 0.012502293, 0.002692589, - -0.02009705, -0.0073282933, -0.0027442689, -0.071165614, -0.025149237, - -0.038676944, 0.037453566, -0.004940572, 0.015455905, 0.016539589, - -0.04410571, 0.03342994, -0.036643326, -0.006758799, -0.018883476, - -0.02410479, -0.04129557, 0.02715219, 0.0036888984, -0.037708063, - -0.039761648, -0.011467258, 0.046894517, -0.032295775, 0.03394004, - 0.008428242, -0.012687413, 0.019513823, 0.0031743422, -0.059906617, - 0.015008575, -0.03895256, 0.0070630326, 0.0258547, -0.024322255, - -0.017826498, 0.0060096723, -0.008163627, -0.033548363, -0.07120068, - -0.008826994, -0.013074517, -0.010225703, -0.008315269, -0.022469569, - -0.009373524, -0.008475249, 0.03645553, 0.02242877, 0.0032041227, - -0.014290347, -0.029850006, 0.022685206, 0.0022009262, -0.0009862841, - 0.008216252, -0.0325105, 0.0075768842, 0.0107508665, -0.019070081, - 0.009196702, -0.058702968, 0.025181878, -0.017314792, -0.0042282734, - -0.044288278, 0.0080281915, -0.0025820208, 0.010352135, 0.006340684, - -0.055816, -0.015542207, -0.013295003, -0.042268645, -0.025479622, - 0.013505418, -0.035474136, -0.039637696, 0.007396361, -0.04372611, - -0.015272466, 0.00834107, 0.007050048, -0.009040376, -0.016711222, - -0.0017421766, -0.0918228, -0.046656195, -0.019868204, -0.009297829, - 0.01398243, 0.009928305, -0.023385918, -0.0066675274, 0.05238925, - -0.0027898918, -0.0046755034, -0.008333174, 0.0046777735, 0.006715779, - -0.05731712, 0.036763445, -0.032828912, 0.009895366, -0.008163486, - -0.0011793467, 0.04120268, -0.05818637, -0.0709215, -0.06569462, - -0.009628415, -0.039892316, -0.017408226, 0.0032248087, -0.013465484, - -0.036872033, -0.047818705, 0.001469532, 0.054536484, -0.007889583, - -0.027449101, 0.010753726, -0.066335164, -0.0009255846, 0.009787482, - 0.025692876, -0.0113092605, -0.033078082, -0.029230362, 0.045650046, - -0.005079796, 0.024182064, -0.018142898, -0.023153642, -0.031301953, - -0.018120328, -0.027969683, -0.017308906, -0.011410648, -0.0127282385, - -0.028111642, -0.034617204, -0.06823386, 0.044996385, -0.026018333, - -0.051173422, -0.018189551, 0.05723503, -0.047878858, 0.00116304, - -0.040586416, -0.033868548, 0.031836666, -0.03307211, -0.02471345, - -0.056237046, -0.018283514, 0.010220889, -0.019715337, 0.01087023, - -0.00759159, 0.016134594, 0.0187419, -0.038217697, -0.068218045, - -0.033215497, 0.0068244296, -0.03962258, 0.057496984, -0.011640271, - -0.0007844443, 0.06035423, 0.008952194, 0.022835113, -0.014025258, - 0.033929408, -0.025882924, -0.003362163, -0.063327424, -0.01076954, - -0.039026856, -0.010281123, -0.018114807, -0.0011582198, -0.010908013, - 0.0110344095, 0.007789095, 0.0033516749, -0.04063085, -0.010253622, - -0.028636858, -0.05604421, 0.025483344, 0.060129717, -0.03101766, - -0.041318554, -0.07141636, -0.014927574, -0.008465811, -0.02709389, - 0.051587094, -0.030141227, 0.017503973, -0.008489183, -0.02136249, - 0.010014799, -0.008143641, 0.008640936, 0.0060439985, 0.0054357424, - -0.009732966, 0.012458172, -0.019745396, 0.024903422, -0.045301702, - -0.004740004, -0.0027242338, -0.03266382, 0.005694951, 0.03320169, - -0.059774853, 0.014351733, -0.00025294442, 0.021175578, 0.003585476, - 0.0022686922, 0.037341457, 0.020606209, -0.032508958, 0.018811941, - -0.016181672, 0.00329296, -0.014755756, -0.020413965, -0.027763665, - 0.03960452, 0.046710405, -0.051009484, 0.04807163, -0.030012453, - 0.0038716912, -0.043857787, -0.031779785, -0.021019109, -0.027352955, - -0.02919529, 0.0084698, 0.029927079, -0.021750325, -0.008836209, - -0.034254096, -0.033494916, 0.046271272, -0.031096313, 0.035543576, - -0.020896906, 0.027386801, 0.032794233, -0.043752793, 0.021089334, - -0.026808217, -0.075188994, -0.037369203, -0.040854782, -0.040891167, - 0.01601209, -0.038316086, 0.016281106, 0.003121536, -0.010354562, - -0.013864925, 0.015465305, -0.040665418, -0.023944896, 0.033296794, - -0.03198428, -0.03656362, -0.0052213063, -0.056967143, -0.046861265, - -0.030213134, 0.055347536, -0.052411538, -0.027142538, 0.022832435, - -0.02474803, 0.011255542, -0.03649389, -0.05543313, -0.0029581466, - -0.023727695, -0.053277373, -0.01495405, 0.010712357, -0.009709307, - -0.06725331, 0.01492742, -0.058784533, -0.04870487, -0.11743231, - -0.019877892, -0.05274906, 0.07941294, -0.00015646136, 0.023986809, - -0.014310841, 0.029902086, 0.023142269, -0.002195586, -0.023015028, - -0.05731489, 0.023016633, -0.00010712256, -0.02937128, -0.027449982, - -0.04031671, 0.0424625, -0.028366402, 0.005160253, 0.015615362, - -0.016319776, -0.013246634, 0.021639546, -0.03077882, 0.015177666, - -0.051746305, -0.0048979153, -0.026518792, 0.031193677, -0.04309725, - -0.01830951, -0.06757448, -0.010320024, -0.06750121, -0.033953197, - 0.033941083, 0.014420677, -0.017309858, -0.023676386, -0.018810676, - -0.007528188, 0.0012577729, -0.052142702, -0.006544659, -0.03027583, - -0.023317603, 0.0098642465, -0.042034596, 0.0020804307, -0.049598187, - -0.021597434, -0.020881223, -0.025601335, 0.0016322228, -0.033558622, - -0.030875329, -0.03816224, 0.019815495, 0.039260287, -0.0021418938, - -0.044798326, -0.0125512, -0.0069308286, -0.023277277, -0.09014786, - 0.01575821, -0.002998455, -0.01822421, -0.02626337, -0.0421838, - -0.058912583, 0.00044156628, -0.05292625, 0.002805213, 0.03818811, - -0.064174496, 0.016013531, 0.0051768036, -0.021055048, -0.03885701, - -0.03667372, -0.01474738, -0.05993396, 0.030056901, 0.0032298067, - -0.0063157245, -0.012419398, 0.0099303415, -0.031546406, 0.012780107, - 0.017122848, -0.011503477, 0.018748585, 0.019819364, -0.0403504, - -0.020745175, -0.018836632, 0.01747416, -0.045606248, 0.0005078512, - 0.032414358, -0.02047589, -0.013239057, -0.053909708, -0.027449002, - -0.01848018, -0.016681252, -0.009141404, -0.0029730676, -0.00865366, - 0.048467662, -0.028461363, -0.077540934, 0.0174648, -0.061490204, - -0.0018701496, -0.010441469, 0.033808034, -0.010931043, 0.023739412, - 0.05205797, -0.013675254, -0.01949212, 0.018891983, -0.029441327, - -0.034285426, -0.014564762, -0.029688172, -0.022096971, -0.034052003, - -0.062415607, -0.009049598, -0.042499915, -0.004584192, -0.035175875, - 0.019071199, -0.03777192, -0.002464892, -0.026512763, -0.05170581, - -0.010622943, -0.025088843, -0.007549882, -0.04705351, -0.046164572, - -0.011419423, -0.05705037, 0.033353467, 0.042555343, -0.018801916, - -0.010315685, 0.029348843, -0.035166726, -0.01946567, -0.0055031087, - -0.051354773, -0.03981634, 0.013912806, 0.016173512, -0.031040318, - -0.06239564, -0.040202934, -0.013769073, -0.038232446, -0.0023547995, - 0.008849421, 0.027974214, 0.015752207, -0.047109224, -0.0065417364, - 0.032295045, -0.014534432, 0.0040791975, -0.04254627, 0.023353865, - 0.026762348, -0.07763357, 0.029281719, -0.02801439, 0.021658959, - 0.032025743, -0.014839083, 0.0039184843, -0.012896655, -0.0062363995, - -0.04655102, -0.0150801735, -0.0095231645, 0.026788495, 0.032290965, - -0.015312851, 0.008536435, -0.03820089, -0.054194283, -0.030772168, - -0.076474965, 0.0063351854, -0.001785479, -0.03973352, 0.052238416, - -0.059259064, 0.042736925, -0.034218956, -0.027344204, -0.034382913, - 0.011602507, -0.040073402, -0.020229932, -0.034129232, -0.01952471, - -0.047528345, 0.005663954, 0.04613795, -0.00088180695, 0.0018598004, - -0.017962212, 0.029713368, -0.07294067, -0.012248456, 0.014176008, - 0.027066052, -0.022271924, -0.05126895, -0.007856364, -0.011557145, - 0.0061531155 + "source.genres.concepts.id": [ + "yfqryj26" + ], + "source.subjects.label": [ + "Hospitals", + "Richmond (Yorkshire, England)" + ], + "source.production.dates.range.from": [ + -4604688000000 + ] + }, + "vectorValues": { + "features": [ + -0.012170487, + -0.037819404, + -0.0296417, + -0.012736738, + -0.0077731265, + -0.026636256, + -0.028598337, + 0.0063784923, + -0.0029614961, + 0.0049836016, + -0.006437183, + 0.030662505, + -0.01903995, + -0.0030880435, + -0.0005976097, + -0.018787423, + -0.0131709175, + 0.0042317756, + -0.014787702, + 0.02133434, + -0.030955564, + -0.015126538, + -0.010786913, + -0.0022334112, + 0.015684804, + -0.009141219, + 0.017348474, + -0.004732766, + -0.030443026, + -0.016475657, + -0.006397692, + -0.0053888066, + -0.027245147, + -0.011410099, + 0.010942655, + -0.018020842, + 0.0108172605, + 0.018917017, + -0.004895804, + -0.01667998, + -0.013514886, + -0.017319346, + -0.0018630617, + 0.024473213, + -0.012329258, + -0.0112422975, + 0.02179998, + 0.035580784, + -0.021271588, + -0.019480333, + 0.0057266587, + 0.0065698237, + -0.0059002335, + 0.0040398813, + -0.01239621, + -0.03563831, + -0.0016904343, + -0.015973357, + -0.009057126, + -0.010726199, + -0.0011170902, + -0.010627615, + -0.011297751, + -0.00072662847, + 0.021057297, + -0.016887145, + -0.017351214, + -0.0139301745, + 0.0029121216, + -0.010461578, + 0.0013558868, + -0.006644037, + -0.014106512, + 0.010765244, + 0.009711609, + -0.0015941268, + -0.006655775, + -0.024615256, + 0.0022131552, + -0.008810796, + 0.023473836, + -0.004089999, + 0.0010908231, + -0.006133276, + 0.0156818, + -0.006714518, + -0.014779849, + -0.016973853, + 0.014896706, + -0.008874226, + -0.008505946, + 0.0065593617, + -0.0020557703, + 0.010173398, + 0.007850382, + -0.0151090985, + -0.027261844, + -0.012050715, + -0.006330961, + -0.0072277975, + -0.023246463, + 0.023637714, + 0.002606988, + -0.0066941874, + -0.0022088913, + 0.0019140042, + 0.0076448903, + 0.01152167, + 0.029906677, + -0.049929783, + 0.0021669324, + 0.0036856916, + -0.011411303, + 0.013269454, + -0.010982867, + 0.0013301602, + -0.007437167, + -0.05082382, + -0.0032925187, + -0.019139802, + 0.014716312, + 0.03615561, + 0.006373305, + -0.0095722405, + -0.026845105, + -0.0017291567, + 0.008518327, + -0.0064834235, + -0.004358484, + -0.020106135, + -0.012572386, + -0.01550003, + 2.5346051e-05, + -0.00357049, + 0.0058018924, + -0.0025649776, + -0.008191836, + -0.025362277, + -0.004296034, + -0.00064727716, + -0.019701956, + -0.014319464, + 0.004189107, + -0.012366042, + -0.01912539, + -0.012887652, + -0.0109455995, + 0.0014451863, + -0.026928727, + -0.010172619, + -0.024566963, + 0.0052259015, + -0.014149091, + 0.0029737137, + 0.032152735, + 0.0007014987, + -0.016899591, + -0.004556589, + -0.023158232, + -0.0069922465, + -0.016837953, + 0.0042324807, + -0.0065135905, + 0.020180264, + 0.0028698668, + -0.013514842, + -0.0020895565, + -0.013360259, + 0.0031429152, + 0.019038742, + -0.017140104, + -0.024895469, + -0.015038955, + -0.001221051, + -0.006499997, + 0.009470005, + 0.00064023485, + 0.005928254, + 0.026180139, + -0.02512707, + -0.0019163932, + 0.003913113, + -0.0045023356, + -0.006395921, + -0.003210171, + -0.014084445, + -0.015841125, + -0.014231168, + -0.020659653, + 0.000978862, + 0.0059737368, + 0.013568917, + -0.0056339735, + -0.025013888, + -0.0066864034, + 0.0038639244, + 0.029130047, + 0.028239211, + 0.008813917, + -0.00313365, + 0.0023324343, + -0.008248473, + -0.01671622, + 0.0026629895, + -0.013076941, + 0.0006454552, + -0.006299371, + -0.011183392, + -0.01011101, + -0.001579727, + 0.021478752, + -0.022626024, + -0.007407985, + -0.023770044, + -0.0029209058, + -0.015175605, + 0.032594673, + -0.008012026, + -0.020517407, + 0.001726877, + -0.030883914, + 0.014962586, + -0.007019329, + -0.020896727, + 0.007638679, + -0.03047744, + -0.0095445765, + 0.010241047, + -0.0019696085, + 0.00049946306, + 0.0001534927, + -0.00401562, + 0.004923778, + -0.0074650417, + -0.012469651, + -0.002628621, + -0.011901431, + 0.0009347418, + -0.021636201, + 0.008348938, + -0.0056840843, + -0.003257026, + -0.012770408, + -0.016128078, + 0.0021730398, + 0.02257139, + -0.0020314301, + -0.0052461647, + 0.0066355444, + -0.0087703625, + -0.023272568, + -0.0025981714, + -0.0043312404, + 0.007326368, + -0.011816782, + -0.016471576, + -0.013472697, + 0.013673207, + -0.0037094117, + 0.0032318304, + -0.031816766, + -0.007066275, + -0.0066700918, + -0.0060387687, + -0.015422262, + -0.009606478, + -0.0055676354, + -0.011828513, + -0.0052153934, + 0.009498892, + 0.024842152, + -0.020798676, + -0.0068366644, + -0.0099591855, + -0.009640699, + 0.004965397, + -0.016822921, + -0.032028675, + -0.004170038, + -0.02058713, + 0.003666473, + -0.013202157, + 0.0018198867, + -0.023153288, + 0.0021061583, + 0.0028616572, + -0.0021821603, + -0.027536344, + -0.008669773, + -0.0008848307, + 0.004255533, + 0.014351541, + -0.005716862, + 0.002457521, + -0.024404297, + 0.010680239, + 0.017781453, + -0.0069724377, + 0.016729826, + -0.0052332133, + 0.019709043, + -0.028506136, + -0.01840236, + 0.0030007293, + -0.02231334, + -0.028985692, + 0.01302739, + -0.008388756, + -0.00855379, + 0.013017537, + 0.021638563, + -0.0033584228, + -0.009181496, + 0.0033916717, + 0.026545076, + -0.0077195144, + -0.007249201, + 0.008393548, + -0.00023704857, + 0.0055171996, + 0.006142855, + 0.017273849, + -0.0057193683, + 0.02593021, + -0.015634894, + -0.049263556, + 0.008776334, + -0.024124695, + -0.009434114, + -0.032059535, + 0.006204095, + -0.02535583, + -0.015599442, + 0.0037349418, + -0.0138601465, + 0.0067744455, + 0.021786312, + 0.037473075, + -0.004906631, + -0.02651803, + 0.016092949, + -0.0074498807, + -0.014002627, + 0.009375062, + -0.014454371, + -0.00738477, + 0.016084192, + -0.026103035, + 0.0047132513, + -0.016481986, + -0.020364016, + 0.01684313, + 0.017336542, + -0.014914292, + 0.01794756, + -0.012224552, + -0.0072742365, + 0.017306365, + -0.008343912, + -0.012759552, + -0.022805264, + 0.0135876285, + -0.01030776, + -0.008178216, + -0.023198696, + 0.00479807, + -0.015393448, + -0.011835673, + -0.028304502, + -0.018190265, + -0.0071438733, + 0.024260161, + -0.0037692003, + -0.0026776074, + 0.026482748, + 0.0020173176, + -0.02267405, + -0.018677749, + -0.011721881, + 0.00019632165, + 0.005038584, + -0.010659799, + 0.013585194, + 0.0013603303, + 0.019584177, + 0.018088344, + 0.022084365, + -0.0058162804, + 0.021616865, + 0.0013938997, + 0.004762617, + -0.012182579, + -0.00419351, + -0.0028367394, + -0.02979976, + -0.020024754, + 0.003607722, + 0.004310569, + -0.0091845775, + -0.0011807163, + -0.0050605545, + -0.01058971, + -0.0031178817, + -0.012329278, + -0.023202097, + -0.022925764, + -0.008615232, + -0.008704655, + -0.027009519, + -0.0060494104, + 0.029773435, + 0.019206533, + -0.010889147, + 0.0033369565, + 8.443299e-06, + -0.0029931366, + 0.0035188685, + -0.012674657, + -0.0013522108, + -0.010875208, + -0.015546021, + 0.0045371396, + -0.0030758842, + -0.00011894028, + -0.014469598, + -0.022558834, + -0.024352996, + 0.012985918, + 0.0011726316, + 0.0057727783, + -0.002238616, + 0.0034171038, + -0.01096163, + -0.0042841192, + 0.0083818035, + 0.005654153, + 0.005218359, + 0.013671129, + -0.005664598, + -6.110908e-05, + -0.034712687, + -0.019086173, + -0.007511191, + 0.0034062858, + -0.02015957, + 0.03228071, + -0.017104495, + -0.012603757, + 0.0066815456, + 0.0042718635, + -0.021056455, + -0.023539832, + -0.00868913, + -0.009836525, + -0.023680434, + -0.023283314, + 0.016689183, + 0.006919674, + -0.030124612, + 0.017855205, + -0.0035364702, + -0.034821384, + -0.018782353, + -0.009714101, + -0.028875874, + 0.015330853, + -0.0035541435, + -0.025475413, + -0.003085881, + 0.0019143499, + -0.02359849, + -0.02999425, + 0.0028737844, + -0.0060989545, + -0.001645495, + -0.008503165, + -0.009705555, + 0.0060789105, + -0.022610027, + 0.016307617, + -0.013872332, + -0.011652393, + -0.0065857093, + 0.012244325, + -0.018681556, + -0.026375137, + 0.0016300554, + 0.023854027, + 0.006766076, + -0.008171673, + -0.022910452, + -0.016798006, + -0.021795684, + -0.0005232251, + -0.019055398, + 0.00052890636, + 0.0017573471, + -0.0010523984, + -0.009003226, + -0.0022445247, + -0.0018122261, + -0.035796583, + -0.01011516, + -0.026925197, + 0.018462447, + -0.005097009, + 0.012704032, + 0.0059347656, + -0.026790237, + 0.01726874, + -0.020890186, + 0.0063872086, + -0.006261821, + -0.010362692, + -0.012688198, + 0.018276159, + 0.0028139537, + -0.018145792, + -0.02158591, + -0.0068864687, + 0.021787127, + -0.01255209, + 0.01827306, + 0.007920086, + -0.0026867792, + 0.006399107, + 0.0025913385, + -0.029757401, + 0.005437708, + -0.020770052, + 0.0025995858, + 0.010953409, + -0.00941616, + -0.0047606407, + -0.00024043985, + -0.0075288275, + -0.016868494, + -0.03902168, + -0.0020737725, + -0.007170475, + -0.0068171136, + -7.2084236e-05, + -0.0146137895, + -0.0037085416, + -0.00040819903, + 0.021059217, + 0.009713198, + -0.0003622193, + -0.005230575, + -0.01413077, + 0.013500266, + 0.002074294, + -0.0015573183, + 0.0012185614, + -0.015525697, + 0.0025802664, + 0.0041743657, + -0.008990683, + 0.005042078, + -0.02962579, + 0.01494364, + -0.015067949, + -0.0038734383, + -0.022549024, + 0.004463431, + -0.0042553036, + 0.0043677418, + 0.005787431, + -0.028773952, + -0.0071234433, + -0.006209625, + -0.023157064, + -0.010069609, + 0.010495107, + -0.016256224, + -0.021737248, + -0.0012590579, + -0.018752025, + -0.011466836, + -0.0013750306, + 0.0013707248, + -0.0027102516, + -0.009446952, + 0.0005573471, + -0.048588593, + -0.022773726, + -0.011579475, + -0.0079383915, + 0.005756967, + 0.00487199, + -0.013017963, + -0.004308668, + 0.027153397, + -0.0029801372, + -0.00032735246, + -0.0036035716, + 0.0009363208, + 0.00044651522, + -0.02767205, + 0.01789087, + -0.01833879, + 0.0013283361, + 0.00020621935, + 0.0012174966, + 0.025545552, + -0.027808314, + -0.035222363, + -0.034278527, + -0.0037732292, + -0.022446945, + -0.00916579, + 0.007010463, + -0.002408178, + -0.020352166, + -0.023296285, + 0.0031110367, + 0.02523496, + -0.006224758, + -0.016009117, + 0.005591964, + -0.034723185, + -0.0017689718, + 0.007877351, + 0.009494825, + -0.006697838, + -0.015649641, + -0.01342115, + 0.021733081, + -0.003992339, + 0.011177976, + -0.009269068, + -0.014848041, + -0.012300628, + -0.009148263, + -0.011230412, + -0.010558854, + -0.008203093, + -0.0061203656, + -0.013236115, + -0.018767275, + -0.0315722, + 0.02373866, + -0.016139872, + -0.028698225, + -0.009261132, + 0.029227205, + -0.025044676, + 0.0018738084, + -0.024017256, + -0.015340456, + 0.015280796, + -0.0122634275, + -0.016182616, + -0.028103527, + -0.010449037, + 0.006264596, + -0.0065077855, + 0.0068740537, + -0.0011517286, + 0.011149475, + 0.008922301, + -0.015263889, + -0.035897568, + -0.016982408, + 0.003480095, + -0.023563739, + 0.024271907, + -0.0052104015, + 0.0014428827, + 0.02993664, + 0.007854282, + 0.013116505, + -0.011002974, + 0.023360545, + -0.01481448, + -0.0063579436, + -0.03238146, + 0.0010996676, + -0.017008198, + -0.006679721, + -0.007906767, + 0.0005666116, + -0.0064961268, + 0.007451323, + 0.00039628195, + 0.0041593416, + -0.02298197, + -0.009763496, + -0.014742158, + -0.02779402, + 0.013834273, + 0.033341687, + -0.013685184, + -0.017142238, + -0.035560783, + -0.00879696, + -0.0074173743, + -0.012944391, + 0.032460753, + -0.012294024, + 0.011576701, + -0.000695251, + -0.013669853, + 0.0050804047, + -0.006122306, + 0.005541373, + 0.0042030364, + 0.0029811752, + -0.0028244874, + 0.0061868704, + -0.009823899, + 0.016070995, + -0.02435607, + 0.0010210292, + -0.0025074086, + -0.011655205, + 0.0016263846, + 0.0114226835, + -0.031189675, + 0.013718926, + -0.0045276694, + 0.016236184, + -0.0010472614, + 0.00047230907, + 0.016072689, + 0.013089982, + -0.021806749, + 0.009241143, + -0.003999062, + -0.0021968137, + -0.009538629, + -0.012237771, + -0.015747147, + 0.019943688, + 0.025531804, + -0.023180556, + 0.02907896, + -0.019179612, + 0.0042263633, + -0.01964695, + -0.0156093575, + -0.0100213485, + -0.0093766255, + -0.011841654, + 0.008285363, + 0.0168471, + -0.010621302, + -0.008300811, + -0.015304458, + -0.020703232, + 0.021786207, + -0.011090857, + 0.020534959, + -0.009514341, + 0.01647715, + 0.016969563, + -0.022185404, + 0.013104719, + -0.012494459, + -0.03998496, + -0.024367373, + -0.01874883, + -0.020435441, + 0.005974549, + -0.017923238, + 0.0044757393, + 0.0028951494, + -0.00799435, + -0.0071945405, + 0.006647561, + -0.017070657, + -0.010386439, + 0.018826364, + -0.007520486, + -0.018461842, + -0.0017752858, + -0.028698182, + -0.024119798, + -0.017721225, + 0.034259804, + -0.024772549, + -0.010532979, + 0.016625239, + -0.0080155935, + 0.010404455, + -0.018105946, + -0.033710133, + -0.0025359364, + -0.0055146255, + -0.024738442, + -0.008085348, + 0.0028060619, + -0.005316051, + -0.029427495, + 0.0052964375, + -0.031860936, + -0.025617434, + -0.052958854, + -0.012305906, + -0.027159335, + 0.039121766, + 0.004182184, + 0.015241099, + -0.0076266387, + 0.0108359875, + 0.016035639, + -0.002005276, + -0.010835083, + -0.02730971, + 0.0040981886, + 0.0006037194, + -0.015934465, + -0.01411731, + -0.022817237, + 0.023144638, + -0.013637393, + 0.006266905, + 0.0072070872, + -0.01032362, + -0.008163205, + 0.012800647, + -0.016196905, + 0.009082124, + -0.028584193, + -0.0032150678, + -0.0129269045, + 0.020821529, + -0.02007925, + -0.014780256, + -0.03182185, + -0.005977312, + -0.036235806, + -0.020392664, + 0.020438809, + 0.008748803, + -0.0130248545, + -0.0097408565, + -0.009708707, + -0.0069572567, + 0.0023193248, + -0.025899913, + -0.0009750379, + -0.008172644, + -0.011263774, + 0.0068101995, + -0.019811725, + 0.0015340917, + -0.024013922, + -0.0081555, + -0.013579059, + -0.014774437, + 0.0013902766, + -0.016379058, + -0.015629467, + -0.022621078, + 0.008759471, + 0.018469138, + -0.0025177838, + -0.018985005, + -0.0044248784, + -0.0016207137, + -0.010246437, + -0.043758593, + 0.005478793, + -0.0005767837, + -0.012903435, + -0.012305958, + -0.019097535, + -0.029357621, + 0.0023290333, + -0.024395177, + -0.0007459009, + 0.019277355, + -0.038180742, + 0.008738097, + 0.0012944096, + -0.006531684, + -0.020449318, + -0.022814726, + -0.007873186, + -0.02829983, + 0.014840304, + 0.0013225239, + -0.0044456595, + -0.0026193187, + 0.0069661643, + -0.014036945, + 0.005331811, + 0.0065046595, + -0.0061599496, + 0.003952764, + 0.013005524, + -0.019608729, + -0.008960675, + -0.011388027, + 0.006333704, + -0.018557448, + -0.0014239288, + 0.012657935, + -0.011952715, + -0.007913821, + -0.025838286, + -0.0145616075, + -0.010696066, + -0.011296316, + -0.0042208657, + -0.0024779364, + -0.0062348805, + 0.024610072, + -0.0102553675, + -0.037798844, + 0.008677711, + -0.032868546, + -0.0010843462, + -0.0077091516, + 0.01872886, + -0.010144082, + 0.0116119, + 0.02454109, + -0.006505537, + -0.008329718, + 0.005475171, + -0.012658892, + -0.017073086, + -0.0047125993, + -0.0179365, + -0.013406282, + -0.019770766, + -0.029854488, + -0.00436731, + -0.022287145, + -0.0057875505, + -0.01915403, + 0.010148436, + -0.019906709, + 0.002274884, + -0.0077018933, + -0.030693498, + -0.004707294, + -0.010981691, + -0.005550486, + -0.021779649, + -0.02269067, + -0.0040104934, + -0.0239738, + 0.01928057, + 0.021937596, + -0.007269336, + -0.0073160357, + 0.015071282, + -0.016566908, + -0.013336558, + -0.0045429203, + -0.024971427, + -0.016648572, + 0.013616762, + 0.008182158, + -0.015342237, + -0.028380537, + -0.019700393, + 0.0014938703, + -0.01944416, + -0.0035800268, + 0.008521992, + 0.015524672, + 0.0068489905, + -0.023607139, + -0.0017783317, + 0.015730256, + -0.0039038567, + 0.0006554145, + -0.016272744, + 0.012447403, + 0.014236942, + -0.040416595, + 0.015848927, + -0.015294568, + 0.013674469, + 0.013153567, + -0.0056604533, + 0.001577302, + -0.0062003853, + -0.008491826, + -0.02406743, + -0.010677441, + -0.0034807532, + 0.014860816, + 0.019071281, + -0.0072524673, + 0.0056797923, + -0.015786624, + -0.02337257, + -0.01891973, + -0.039689023, + 0.0049089314, + 0.00079907104, + -0.019968474, + 0.019991852, + -0.032058697, + 0.025560731, + -0.015187497, + -0.006205788, + -0.01956052, + 0.009745277, + -0.019346239, + -0.015503716, + -0.013415407, + -0.00926443, + -0.019784965, + 0.008024442, + 0.019762468, + -0.00032925923, + 0.0003402985, + -0.0074282414, + 0.01516209, + -0.03738327, + -0.0042810123, + 0.008522179, + 0.009937468, + -0.01527859, + -0.024359556, + -0.0020682816, + -0.010305244, + 0.006521949, + -0.02164511, + -0.008424059, + -0.028602676, + -0.009487283, + -0.014585389, + -0.017741108, + 0.0136535065, + 0.004745597, + 0.018134927, + 0.014372417, + 0.00094543316, + -0.015473429, + -0.012704847, + -0.02231966, + 0.009841838, + 0.00010183215, + 0.0029146585, + -0.022496685, + -0.014774644, + -0.015750103, + -0.018994255, + -0.013503325, + 0.021117914, + 0.003014046, + -0.0145040685, + -0.009136118, + -0.0090175355, + -0.033836573, + 0.0034508442, + 0.00013634974, + 0.00308384, + -0.007978065, + -0.017123766, + -0.0026220132, + 0.0030123503, + -0.0014388689, + 0.003514351, + -0.013985636, + -0.029371513, + -0.019393297, + 0.0036941455, + 0.0005389449, + 0.025469748, + -0.01624938, + -0.02255738, + 0.009572868, + -0.01276208, + -0.035701852, + 0.0059345844, + 0.0132258255, + 0.008564468, + -0.027752362, + -0.028344136, + -0.01645601, + -0.026367748, + 0.02641734, + 0.003965307, + -0.023589, + -0.019054445, + 0.010039885, + -0.0027695028, + -0.030734256, + -0.0057533593, + -0.009323869, + -1.5658768e-06, + 0.008690389, + -0.0029437214, + -0.003087917, + 0.008562861, + -0.008339917, + 0.00045241066, + 0.0013088656, + -0.027539972, + -0.0079185385, + -0.011664516, + 0.0012311672, + -0.010983842, + -0.005703773, + -0.030399263, + -0.022683274, + -0.012334467, + -0.012874444, + -0.017867936, + -0.009926777, + -0.029384747, + 0.030872423, + -0.0025027285, + -0.015927749, + 0.02345789, + -0.0005189039, + 0.00653464, + -0.00484528, + 0.019116243, + -0.009913978, + 0.015947431, + -0.0007016721, + 0.010556813, + -0.008082498, + 0.01307652, + 0.0056149014, + -0.019824455, + -0.00456923, + -0.0006090549, + -0.0012155811, + -0.0037209522, + -0.0021684456, + -0.011443001, + -0.029355714, + 0.005649886, + -0.009421202, + -0.022186749, + -0.0023092504, + -0.010962127, + 0.010463878, + 0.016929219, + -0.0075737652, + -0.02805856, + 0.008246265, + 0.0037348864, + -0.004623037, + -0.054088145, + -0.034806263, + 0.025738014, + -0.020844763, + -0.013093219, + 0.0024265542, + 1.1233876e-05, + -0.0034301726, + 0.0031870508, + 0.003825101, + -0.014626251, + -0.027671685, + -0.029500803, + 0.005414818, + 0.0056110793, + -0.017535873, + -0.012309663, + -0.023164744, + -0.009196639, + -0.019524217, + 0.0091646435, + 0.00064809393, + -0.001306716, + -0.009547542, + -0.027712326, + 0.00023487721, + -0.012539337, + -0.004054141, + -0.03375009, + 0.013176167, + -0.00080636895, + -0.0014557274, + -0.015525391, + 0.004173624, + 0.007098347, + -0.015204678, + 0.023950795, + -0.012490158, + -0.0068750177, + -0.02409651, + 0.011553027, + 0.013016775, + 0.008526896, + 0.013200642, + 7.153181e-05, + 0.0030864242, + 0.018386168, + -0.008419615, + -0.012056108, + -0.004775541, + -0.014333918, + -0.017446402, + -0.028790584, + -0.00030811134, + -0.028837988, + -0.011550886, + -0.02704679, + -0.017833607, + -0.012358479, + -0.008790366, + 0.010359793, + -0.028884986, + 0.014241811, + -0.0051161335, + 0.0030366918, + -0.0038213118, + -0.030161938, + -0.026602492, + -0.016953267, + -0.016071908, + 0.0019089772, + -0.014682211, + 0.0116054425, + 0.014086448, + -0.022584092, + -0.015155867, + -0.010021171, + -0.018675767, + 0.0015718308, + 0.011039683, + -0.0035572117, + -0.018533947, + -0.0010660841, + -0.008019853, + 0.003151024, + 0.029660411, + -0.026183035, + -0.037283067, + -0.01097656, + 0.005312792, + 3.057706e-05, + -0.02546487, + -0.010539828, + 0.020391375, + 0.004419938, + 0.019831158, + -0.0073931217, + 0.01084403, + -0.012348679, + -0.019140696, + -0.00341868, + 0.0042786966, + -0.00864095, + -0.0107186325, + -0.013742251, + -0.012358321, + -0.0036416184, + -0.01176861, + 0.0063875723, + 0.04084246, + 0.006967728, + -0.02385094, + -0.01627423, + 0.0143107455, + -0.017386027, + 0.02070852, + -0.02317094, + -0.0055506127, + 0.027598243, + 0.0084421085, + 0.021590656, + -0.017584134, + -0.017243875, + -0.010346246, + -0.0028073362, + 0.014328972, + 0.008254146, + -0.0035976714, + 0.0019485061, + 0.0041214274, + -0.01262967, + 0.0076674395, + -0.0005408272, + -0.0032500997, + -0.009621473, + -0.0046617514, + -0.0038867358, + -0.018670395, + -0.012372221, + -0.0060765487, + -0.008537475, + -0.028455133, + 0.00024210614, + -0.016745776, + 0.01613583, + 0.0039851475, + 0.0058039315, + 0.0054332726, + -0.016516382, + -0.023754593, + 0.001417341, + 0.019925214, + -0.009257622, + -0.00454224, + -0.021955686, + -0.008851643, + -0.0017086619, + -0.022757953, + 0.002689758, + -0.0010944039, + -0.018660411, + -8.28021e-05, + -0.01897015, + -0.010648098, + -0.010719253, + -0.018101836, + 0.028512638, + -0.0069324574, + -0.010999842, + -0.029062236, + -0.0076054344, + -0.0048015295, + -0.015770335, + 0.005962323, + 0.0017280444, + -0.029329743, + 0.00046971632, + 0.0116592385, + -0.022277467, + -0.0016175521, + 0.010896874, + -0.0031935042, + -0.006729394, + -0.004367753, + 0.0009340659, + 0.0024850657, + 0.011465769, + -0.016063739, + -0.028002672, + -0.02972498, + -0.0056840014, + -0.011383699, + -0.0065107797, + -0.025603885, + 0.00014338283, + -0.02732722, + -0.009791067, + -0.004504579, + -0.026965914, + -0.022532362, + -0.015871117, + -0.0059000533, + -0.0075636804, + 0.0059247874, + -0.008470882, + 0.005367528, + -0.008584157, + -0.016164664, + -0.010493328, + 0.0037193447, + -0.010478508, + 0.000480053, + -0.017233578, + -0.019903412, + -0.02449253, + -0.015208793, + -0.007698422, + -0.013592089, + -0.009819439, + -0.022869451, + 0.017716758, + 0.015898425, + -0.0037972373, + -0.01228, + 0.013169095, + 0.011580395, + -0.0021266777, + 0.00017252522, + -0.011073279, + -0.0188188, + -0.0025237391, + -0.025316585, + 0.0020319116, + -0.0007449148, + -0.009829475, + 0.015064624, + 0.007346169, + 0.016974479, + 0.008393602, + -0.017294988, + 0.0015901383, + -0.0037859522, + 0.0030145769, + -0.0056006815, + 0.011955553, + -0.02135208, + 0.0023446172, + -0.0077915885, + -0.007365826, + -0.008549501, + -0.030074632, + -0.008513297, + -0.03285387, + 0.011277478, + 0.010839066, + 0.008665903, + 0.0011917227, + -0.0023740253, + 0.011963554, + 0.0026479654, + -0.015292169, + -0.005609834, + -0.0044122543, + -0.0043411064, + -0.018176014, + -0.008071268, + -0.03102744, + -0.0003168715, + 0.0033767025, + -0.03292072, + -0.021898257, + 0.008961394, + 0.021514371, + -0.010335285, + 0.004252283, + 0.00013244602, + -0.005932617, + -0.0026622904, + 0.004288984, + -0.017877305, + -0.0011966699, + 0.001411183, + 0.010422612, + -0.03825457, + -0.020597108, + -0.004647321, + -0.010897235, + -0.011112658, + -0.0072115436, + -0.0131650595, + 0.012701377, + -0.0017543344, + -0.010207873, + 0.003644771, + -0.01542863, + -0.008300695, + -0.012726921, + -0.0076699937, + 0.0006657818, + -0.025006965, + -0.0085536465, + -0.022317626, + -0.009671007, + -0.0006699663, + 0.007258245, + 0.0023094406, + 0.006897435, + -0.0033540719, + -0.01716724, + -0.012446709, + -0.021564066, + -6.7543995e-05, + -0.01880627, + -0.006607283, + -0.0071490286, + -0.0067513613, + -0.01032387, + -0.017238218, + 0.015360838, + -0.0065905987, + -0.002625936, + -0.0030962154, + 0.0075872685, + -0.015250676, + 0.0031126211, + -0.0059016263, + -0.00422151, + 0.007771739, + 0.024152571, + 0.01590861, + -0.00046493666, + -0.014650222, + -0.0010862617, + 0.0024523437, + 0.011664816, + -0.017148245, + -0.009261907, + -0.01408484, + -0.011775449, + 0.011040594, + 0.024417598, + 0.003087518, + -0.03004122, + -0.017614271, + -0.014011465, + -0.0035082088, + -0.0045411694, + -0.020667227, + -0.009920302, + -0.0024093937, + 0.00078371546, + -0.0048206113, + -0.010166363, + 0.00576883, + -0.024092358, + -0.019382467, + 0.009118522, + -0.01733943, + -0.011802962, + -0.0034086043, + -0.0015756064, + -0.0031639086, + 0.024353793, + -0.0075625847, + 0.0042921547, + -0.013563298, + -0.0015258074, + 0.0025259696, + -0.0022365556, + -0.010776408, + -0.010067361, + 0.01082339, + -0.0016750286, + 0.010969762, + 0.00392189, + -0.021298524, + -0.021987239, + -0.0036932852, + 0.00023602242, + -0.024755914, + -0.007048713, + -0.02550441, + -0.015028167, + -0.02311623, + 0.010635221, + -0.027394297, + -0.028843472, + 0.010401136, + -0.0016440697, + -0.029026868, + 0.015563526, + -0.024129262, + 0.002606961, + 0.010664115, + -0.0052522244, + -0.0072734943, + -0.02306786, + -0.004435922, + -0.019721579, + -0.010514948, + -0.0004383304, + 0.0017303044, + -0.00902203, + 0.03480194, + -0.015511166, + 0.010097632, + -0.007820236, + -0.020150943, + 0.0029279748, + 0.016129699, + 0.024059724, + 0.0016121323, + -0.007179344, + 0.0044847834, + -0.025826214, + -0.018610533, + 0.0006539517, + -0.019541457, + -0.008927976, + -0.012548669, + -0.01602993, + 0.008968803, + -0.0058815153, + 0.022717802, + 0.01398296, + 0.017514903, + -0.00928865, + -0.007233511, + -0.0245173, + -0.027806237, + 0.024706466, + -0.03641013, + 0.006113062, + 0.0068064216, + -0.03786891, + -0.0057894476, + -0.011176594, + -0.0072579654, + -0.016590226, + -0.00191891, + -0.014070667, + -0.017902864, + -0.03550594, + 0.0024042765, + -0.00891755, + -0.0043892167, + -0.0073242835, + -0.01770206, + -0.005004579, + 0.003092718, + -0.013342233, + 0.02793849, + -0.0103680035, + 0.0014130556, + 0.008040667, + -0.0036428883, + -0.0145287635, + -0.006832601, + 0.00058439915, + -0.019473465, + 0.010825565, + -0.029814543, + -0.016602885, + -0.019412884, + -0.021708125, + 0.01256888, + -0.019727753, + -0.018267082, + -0.025128027, + 0.013191009, + 0.005981765, + -0.019406551, + -0.012082142, + -0.0188898, + -0.027383398, + 0.017745426, + 0.0074245105, + 0.0042551737, + -0.02088739, + -0.016018564, + 0.00309107, + -0.00532261, + 0.010019826, + 0.00046683298, + 0.0063512893, + 0.0045788074, + -0.029980754, + -0.017454598, + -0.013130898, + -0.0038316047, + 0.0010791689, + 0.0061959205, + -0.010976899, + -0.013116914, + -0.020561146, + -0.013541554, + -0.0010850314, + -0.032760866, + 0.010228012, + 0.0031193353, + 0.01698378, + 0.00025004733, + 0.0011534936, + 0.018866401, + -0.00938269, + 0.0160946, + -0.0143568395, + -0.028150806, + 0.008700247, + -0.009957833, + -0.0062919655, + 0.003996904, + -0.032751273, + -0.0008687151, + -0.00928464, + -0.025375085, + -0.01865728, + -0.008215426, + 0.012551261, + -0.0022292058, + -0.019993074, + -0.012205508, + -0.00096512574, + -0.015409933, + -0.006999834, + -0.0038360234, + 0.032794867, + -0.017019778, + -0.011907512, + -0.026620984, + -0.012382917, + -0.009462888, + -0.0031122824, + -0.004864172, + -0.02384366, + -0.0053082597, + -0.026306232, + -0.002261748, + 0.005450074, + -0.01622137, + 0.015167661, + -0.009586354, + 0.0054490506, + -0.0030479343, + 0.03980126, + -0.0051680272, + -0.022449244, + -0.024851125, + -0.007709714, + 0.016639432, + -0.00943564, + -0.036347613, + -0.015192739, + -0.0034812067, + -0.010436978, + -0.0022552866, + -0.006167738, + 0.013634445, + -0.0140996445, + -0.0029306193, + -0.0055568856, + -0.021089714, + 0.021089058, + -0.012200634, + -0.028321087, + -0.01957382, + 0.008464877, + 0.00069342426, + -0.017808467, + -0.014809699, + 0.042009, + -0.005405814, + -0.0009224394, + -0.0058926395, + -0.010090905, + -0.0059680524, + -0.023595123, + -0.004760111, + -0.013263474, + -0.02410864, + -0.0020602774, + 0.00030689107, + 0.00971275, + 0.008546861, + -0.002530453, + -0.0155328205, + -0.016964631, + -0.0011478815, + 0.015556917, + 0.0063123005, + 0.009579344, + -0.021323333, + -0.025422728, + -0.016306145, + -0.02976119, + 0.001912679, + -0.009578647, + 0.031020328, + 0.0018378337, + -0.01825967, + 0.0017344255, + -0.011811058, + -0.008380158, + -0.015555296, + 0.02235735, + -0.021106727, + -0.0079988595, + -0.023594974, + 0.0038016643, + 0.00075881433, + -0.009081511, + -0.0018195102, + -0.0004138717, + -0.028131992, + 0.0020039263, + 0.0032658812, + -0.0265884, + 0.0074007837, + 0.02526274, + -0.0044562747, + -0.0100165345, + -0.004243783, + -0.00845156, + -0.015018525, + 0.026131498, + -0.0042474987, + -0.008575264, + 0.0002743745, + -0.017222919, + -0.0045588156, + 0.00064213644, + 0.004083718, + 0.0074650478, + -0.0050953575, + 0.017946938, + -0.0054258257, + -0.014393437, + 0.0052839853, + -0.00049596577, + -0.014330969, + -0.002023447, + 0.009447303, + -0.0057275263, + -0.018753862, + -0.01631546, + -0.011815007, + 0.002880792, + -0.0111454325, + -0.005314372, + 0.00538162, + -0.024249585, + -0.007792749, + 0.001245324, + -0.0095656, + 0.0026253178, + -0.015117292, + -0.01289076, + 0.012070855, + -0.023455983, + -0.020039827, + 0.001832257, + -0.021577243, + -0.024358932, + -0.018705806, + -0.03407132, + -0.01016201, + 0.01189475, + 0.006150418, + -0.02337772, + -0.030042214, + -0.005754465, + 0.0029426704, + 0.013861835, + -0.004348953, + -0.02287422, + 0.008531821, + 0.0016627702, + 0.00058062375, + -0.016430663, + -0.014166031, + -0.018453617, + 0.0043237517, + -0.022773063, + -0.011340832, + 0.016419752, + 0.0006349811, + -0.009646372, + -0.010008712, + 0.014251587, + -0.0058829747, + 0.009933723, + 0.010083678, + -0.014841487, + 0.0030312145, + -0.016413843, + -0.004909249, + -0.0120076025, + -0.021949425, + -0.006007851, + -0.014876609, + -0.010429504, + -0.00754112, + 0.0035734084, + -0.008003574, + -0.006584969, + 0.030475013, + -0.029300043, + 0.012689948, + -0.0013263138, + -0.005636643, + -0.006908579, + 0.007200592, + -0.04510724, + 0.010216431, + -0.011673602, + -0.010985538, + -0.01746335, + -0.009229889, + -0.021206766, + -0.037346557, + -0.031254202, + -0.015533698, + 0.005296127, + -0.0025050826, + -0.0060201455, + 0.006287215, + -0.011624637, + -0.0015615912, + -0.0219192, + -0.009157568, + 0.0074030454, + -0.004928146, + 0.015363534, + -0.0039535463, + 0.0019406931, + -0.028606528, + -0.0015053628, + 0.0019322853, + 0.0040065516, + -0.003381922, + -0.013301152, + -0.001743583, + 0.021707794, + 0.0013751804, + -0.02406572, + -0.0139030535, + -0.003918083, + 0.0066711376, + -0.0069640926, + 0.0240182, + -0.02414904, + -0.010225147, + -0.013642519, + 0.011198312, + 0.021434797, + -0.022105314, + -0.015043187, + 0.014003055, + 0.004718798, + 0.009482942, + 0.006243399, + -0.0051494357, + -0.03104929, + 0.016675888, + -0.021514187, + 0.026739744, + -0.017016428, + -0.025854178, + -0.013885429, + -0.00751657, + -0.008400665, + 0.0053684697, + -0.0033443018, + -0.010201348, + 0.015454577, + -0.025027568, + 0.0070104767, + -0.016330909, + -0.036632277, + -0.012492654, + 0.0011511657, + -0.00095318176, + -0.008850822, + -0.00569607, + 0.000141449, + -0.019810827, + 0.006090205, + 0.0054459283, + 0.0039686705, + 0.013053965, + 0.008227548, + -0.020432372, + -0.03769719, + -0.046377417, + 0.03274197, + -0.024131006, + -0.006495288, + -0.004983028, + 0.00108534, + -0.041524027, + -0.0010184785, + 0.0011838436, + -0.0021844325, + -0.01398392, + 0.003231457, + -0.000884313, + -0.01744113, + -0.006895416, + -0.018270982, + -0.016589317, + 0.0014488577, + -0.00036487082, + -0.026339013, + -0.016480006, + -0.00017157299, + -0.0139369285, + -0.01648485, + 0.011342147, + -0.029936599, + -0.019135356, + 0.005908127, + 0.028098706, + -0.029978568, + -0.0023245686, + -0.016558142, + 0.008807306, + -0.015993528, + -0.012748063, + -0.0083791055, + -0.010811117, + 0.035718203, + -0.0043044128, + -0.008847423, + -0.010133114, + -0.02425413, + -0.006068145, + -0.011286984, + -0.013269616, + 0.008960214, + -0.0389956, + -0.01103843, + 0.004806869, + -0.007162688, + 0.0036572434, + 0.01121354, + -0.0091594085, + 0.011130516, + 0.02023668, + -0.0019002382, + -0.0074395156, + -0.010006997, + 0.00847497, + 0.014971748, + 0.010647148, + -0.011124849, + -0.0093978625, + 0.02976264, + 0.008364997, + -0.0062506543, + -0.013059897, + -0.0013037017, + 0.00969301, + 0.0028651683, + -0.0064227674, + -0.0113363145, + 0.00080578466, + -0.0018882295, + 0.009997381, + 0.005708035, + 0.0006851556, + -0.018311104, + -0.028585307, + -0.013274292, + 0.027263992, + 0.0037719342, + -0.021888774, + -0.010195744, + -0.010613393, + -0.01078607, + -0.032366127, + -0.0043696226, + 0.035649557, + 0.0073064147, + 0.0065590176, + -0.012059748, + -0.0039934544, + -0.0004137329, + 0.014065707, + -0.012603711, + -0.030177515, + -0.015323757, + -0.0044270395, + 0.0017243755, + 0.01752658, + -0.002581781, + 0.0054427255, + -0.025340423, + -0.00043657934, + -0.01800174, + 0.0017116056, + 0.013841918, + 0.008838029, + -0.0122781275, + 0.009002863, + -0.023316387, + 0.0018719443, + -0.0104719065, + 0.007440184, + 0.0024378218, + 0.008127658, + 0.0057592187, + -0.009135557, + -0.01820154, + -0.007260127, + -0.0033777365, + 0.0013344481, + -0.011606792, + 0.021594113, + -0.0027568275, + -0.025206996, + 0.01400236, + -0.0055229007, + -0.022777073, + -0.008146722, + 0.0020107331, + -0.011758918, + -0.006346117, + 0.024299197, + -0.009666863, + -0.006591111, + 0.012816136, + -0.022010367, + 0.0030622717, + 0.0055192313, + 0.027904017, + 0.008374869, + 0.008563893, + -0.020292692, + -0.0065445933, + -0.011224037, + 0.022841107, + -0.0011273369, + 0.0102462955, + -0.0030769608, + 0.0065651415, + -0.021463998, + -0.00072702044, + -0.010770199, + -0.009285053, + -0.021693802, + -0.010966786, + -0.0069167824, + -0.008584741, + 0.001342927, + -0.0012574828, + -0.0077459943, + 0.006988133, + 0.018406171, + 0.009961801, + 0.012622271, + -0.013142472, + -0.033471618, + -0.032053635, + -0.0057360246, + -0.021827271, + 0.0028710412, + -0.023234978, + -0.0050165355, + -0.015583736, + -0.0059389663, + 0.00234057, + -0.002381227, + -0.0071888636, + -0.027411366, + 0.0035242827, + -0.012353753, + -0.020494845, + -0.0006530503, + 0.023829533, + 0.001278093, + -0.007927374, + 0.005233299, + -0.029925901, + 0.010414961, + -0.0022485578, + -0.008651504, + -0.0007886474, + -0.025957119, + -0.021676417, + -0.016514085, + -0.0016033772, + -0.0074373507, + -0.033025205, + -0.0054415814, + -0.03387136, + -0.011854952, + -0.007873509, + -0.0003302564, + -0.001581084, + 0.016703218, + -0.017700596, + -0.0016391702, + 0.007730228, + 0.001523142, + -0.013896362, + 0.0024209386, + -0.0035667005, + -0.0057212734, + 0.0010729436, + -0.006654951, + 0.004349652, + -0.0074010063, + -0.011353565, + 0.006114098, + -0.036107276, + 0.0009084375, + -0.031656828, + -0.008217739, + -0.012461575, + -0.008439255, + -0.004089356, + 0.012616245, + 0.018144455, + 0.00618512, + 0.0014359641, + 0.01013183, + -0.023490427, + -0.019846061, + -0.014413807, + -0.004918994, + -0.030251218, + 0.0008253657, + -0.01249188, + -0.001427401, + -0.007892388, + 0.0011863853, + -0.001146378, + 0.01324404, + -0.0031797593, + 0.012139791, + -0.031377204, + -0.022617174, + 0.0030955002, + -0.0019442477, + 0.031263705, + 0.0037453356, + -0.005261996, + -0.0063816872, + -0.008192071, + -0.005902096, + -0.0004326246, + -0.0014784951, + 0.010692192, + 0.011625363, + -0.0041380962, + -0.012611232, + -0.005055815, + 0.009758296, + -0.008833748, + -0.010698165, + -0.004341894, + -0.0012347349, + -0.008494847, + -0.02369113, + 0.020462185, + 0.002419933, + -0.010282526, + 0.00407226, + -0.010208407, + 0.0068585323, + -0.008389313, + 0.0029372165, + -0.012868442, + -0.02419548, + -0.003906545, + -0.027881702, + -0.014682854, + -0.0010352818, + -0.0055005834, + -0.0064008944, + -0.013872742, + 0.015925208, + 0.01983742, + -0.0031152787, + -0.0051018265, + -0.01054014, + -0.0066201896, + -0.00027776806, + -0.020565286, + 0.020607058, + 0.022430612, + -0.0023731808, + -0.011045703, + -0.0029409267, + -0.012301149, + -0.0113198245, + -0.027028358, + -0.012363332, + -0.01499527, + -0.011135585, + 0.0130732525, + -0.014568703, + -0.0122101735, + -0.0029540618, + 0.0025641783, + -0.0133616, + 0.005518001, + 0.0183716, + -0.023834765, + -0.024032915, + 0.007870485, + -0.010867516, + -0.024954444, + 0.008522362, + -0.015030558, + -0.002196025, + -0.015445122, + -0.0036399122, + -0.008754529, + -0.008022229, + 0.008640477, + -0.00658384, + -0.0026993183, + -0.0025257173, + 0.012788784, + -0.009944243, + -0.011842163, + -0.0073347236, + -0.00037494683, + -0.00041970698, + -0.013615088, + -0.015375571, + -0.012502637, + -0.008633335, + 0.0016395455, + -0.017678065, + -0.02829616, + -0.013305018, + 0.0038945542, + 0.022475334, + -0.009969474, + -0.020555168, + -0.024104219, + -0.0056036366, + -0.016342899, + -0.0031965082, + -0.01332404, + 0.0074587916, + 0.014063558, + 0.007734176, + -0.022943282, + 0.009172003, + -0.01540343, + 0.0034378462, + 0.005854435, + -0.010947791, + -0.024761783, + -0.0074506807, + -0.031583853, + -0.02078053, + -0.006713131, + -0.015478443, + 0.010128641, + 0.005692929, + -0.022276817, + -0.023015143, + 0.0075500216, + -0.027459066, + 0.0056078583, + -0.004175381, + -0.007544157, + -0.008466621, + -0.02326595, + 0.0035671128, + 0.007423121, + -0.030552499, + -0.006322614, + 0.02869637, + 0.0044899536, + -0.014792063, + -0.016804446, + 0.012896709, + 0.006620033, + 0.0054149646, + -0.013371958, + -0.0048363223, + 0.019977188, + 0.009719683, + -0.029787745, + -0.015155175, + 0.0027631924, + -0.03800795, + -0.012154628, + 0.00983112, + 0.007703396, + -0.024343105, + -0.00034461985, + 0.00933869, + 0.004921537, + -0.02235065, + 0.006354906, + 0.0071929386, + -0.015114639, + -0.008750608, + -0.0018310347, + 0.01893181, + -0.00028051712, + -0.028455334, + -0.03480541, + -0.026153883, + 0.0073089125, + -0.0153108, + 0.041916743, + 0.007843997, + 0.018635113, + -0.010375449, + -0.007075694, + -0.011822236, + -0.008158862, + -0.0023965938, + -0.029117927, + -0.028121883, + -0.024223553, + -0.00797259, + -0.009373029, + -0.03257454, + -0.015378213, + -0.020800035, + -0.0044175796, + 0.0024548196, + -0.029722102, + 0.0014573768, + -0.014524538, + -0.03263214, + -0.008263634, + 0.00803915, + 0.013687196, + 0.010955984, + -0.014430571, + 0.009837857, + 0.0031252534, + 0.002793221, + 0.0029019536, + -0.02728685, + -0.019636545, + -0.020328416, + 0.015828425, + -0.009884235, + -0.05461583, + 0.004727241, + -0.01273034, + -0.014063649, + -0.027824283, + -0.006319551, + -0.008455807, + -0.014462521, + -0.010294845, + -0.005074358, + -0.007788156, + -0.008952798, + -0.00931734, + -0.005640561, + -0.007758993, + -0.007344731, + -0.0023499716, + 0.008284862, + -0.010849241, + -0.01978227, + -0.016896114, + -0.0005977261, + -0.01940478, + -0.017920867, + -0.010628356, + -0.01173425, + 0.021685805, + -0.0040374715, + 0.0003259282, + 0.013021062, + 0.004249509, + -0.0141235115, + -0.031935003, + 0.017753744, + -0.014757508, + -0.008803798, + -0.01951048, + -0.02718708, + -0.026196389, + -0.0031460389, + -0.0012804484, + -0.019205363, + 0.005776, + -0.009249105, + -0.020099098, + -0.0050190664, + -0.011477429, + -0.006045116, + 0.031807687, + -0.013623479, + 0.025984822, + -0.0013796225, + -0.013088391, + -0.013129957, + -0.010725859, + -0.02010523, + -0.00677951, + -0.017095936, + 0.0046506887, + -0.020021794, + 0.011763098, + -0.0026066208, + -0.0046740277, + -0.003685508, + -0.012046107, + 0.013232611, + 0.013649507, + 0.0023576592, + -0.011320117, + -0.007989633, + -0.0007978767, + -0.0003550215, + -0.021372372, + -0.0028128214, + -0.03435676, + -0.01695567, + 0.003804714, + 0.010914344, + -0.013352747, + -0.0069306977, + -0.022564694, + -0.012624072, + -0.028176805, + -0.018285593, + -0.0051699104, + -0.012505944, + -0.021341257, + 0.010770288, + 0.021283465, + -0.041110683, + 0.017121343, + 0.013994938, + -0.025169803, + 0.03781658, + -0.017131072, + -0.022295324, + 0.009009742, + -0.0077346517, + 0.0018064276, + -0.009338755, + -0.007846219, + 0.008499304, + -0.025820486, + 0.0035465762, + -0.015772454, + 0.006121495, + 0.015101667, + 0.039775677, + -0.009888011, + 0.011158902, + -0.023001663, + -0.0018045551, + 0.0073788953, + 0.0006123264, + -0.017293269, + 0.004831354, + -0.029270364, + 0.0010859012, + -0.002161733, + -0.014826983, + -0.0025887126, + -0.0126425475, + -0.029850807, + -0.0034017544, + 0.0012017264, + -0.03449812, + 0.007635538, + 0.017190732, + -0.00926375, + -0.009443035, + -0.0015466738, + -0.0007377449, + -0.015330035, + -0.014252576, + -0.0032672372, + -0.01740814, + 0.0035747527, + 0.0020991717, + -0.028085617, + 0.013251197, + 0.007483279, + 0.010481458, + -0.012350184, + -0.012136482, + -0.0037769694, + 0.0039199474, + -0.020108376, + -0.03600889, + -0.0067209955, + -0.037209798, + 0.012764212, + -0.025289798, + 0.00015524113, + 0.0091714505, + 0.00529817, + -0.009376881, + -0.008707634, + -0.008433774, + -0.009505937, + 0.009099233, + -0.002692014, + -0.006968227, + -0.028762408, + 0.028677743, + -0.027664527, + -0.009012149, + 0.020003939, + -0.0051843636, + -0.012915649, + -0.022622403, + -0.0069798273, + -0.031328678, + -0.0021649448, + 0.026281541, + 0.018433992, + 0.007849914, + -0.030122172, + -0.017196784, + 0.00014804085, + -0.0039308704, + -0.007426776, + 0.005643557, + -0.018301481, + 0.002389812, + 0.0023260484, + 0.0014754697, + -0.00426583, + -0.0061811623, + -0.010861576, + 0.0034173285, + -0.020537864, + -0.0002365455, + 0.017704306, + -5.179072e-05, + -0.01459081, + 0.013628564, + -0.049468517, + 0.007948998, + -0.014929005, + 0.0026658562, + -0.004631075, + -0.009275914, + -0.012699005, + 0.0022388725, + -0.027850835, + -0.025329005, + -0.014913085, + 0.0129733365, + -0.014340048, + -0.01024945, + -0.01639413, + -0.011722617, + -0.017930353, + -0.0071524214, + -0.006787794, + 0.0038888748, + -0.00952121, + -0.0013814862, + -0.011651332, + -0.006799241, + -0.016293922, + -0.0049830307, + 0.0013629498, + -0.009356756, + -0.028551113, + -0.018873764, + 0.015494224, + -0.01243934, + -0.003978773, + -0.010187331, + -0.004716081, + -0.014821845, + -0.0050605475, + -0.012752836, + -0.0074675907, + -0.0008434701, + -9.774842e-06, + -0.00830367, + -0.019374501, + 0.006489335, + -0.025763312, + -0.017185224, + 0.006300164, + 0.030389853, + -0.008192259, + -0.0020433795, + -0.029474238, + -0.027771397, + 0.009548687, + -0.008782542, + -0.00609173, + -0.009985485, + -0.006848008, + -0.01657685, + 0.00017680741, + 0.010902532, + -0.02144884, + -0.0094759045, + -0.00705353, + -0.014642568, + -0.012648074, + -0.022365889, + 0.015793055, + -0.00027948423, + -0.030679964, + -0.010252302, + -0.026285926, + 0.00960134, + 0.018168388, + 0.0016560156, + -0.00033495415, + 0.0063581215, + 0.01789781, + -0.00016925878, + -0.007129389, + 0.031207437, + -0.035178766, + 0.010825927, + -0.012483288, + 0.022252265, + 0.00044932475, + 0.03616343, + -0.000655752, + 0.0073291715, + -0.0056841816, + -0.01976758, + 0.005557226, + -0.015589384, + -0.009440123, + -0.00287678, + -0.0352067, + 0.003290995, + 0.0069474173, + 0.0037024824, + -0.006664924, + -0.016469678, + 0.009109319, + 0.0011863894, + -0.011145954, + 0.008765128, + 0.012873973, + -0.004982086, + -0.019620128, + -0.027146438, + 0.0054993606, + -0.034744587, + 0.0060361614, + -0.01786286, + -0.0031893132, + -0.0037222735, + -0.0026705023, + -0.0014063623, + -0.0049079685, + -0.013906425, + 0.0110681, + -0.0073309527, + -0.0019524281, + 0.011144348, + -0.0057569803, + -0.03036941, + 0.002512126, + -0.0010359158, + 0.0018482357, + -0.0040667024, + -0.00077642035, + 0.018288255, + -0.024103466, + -0.029967144, + -0.0089932, + -0.01617617, + -0.0059540444, + 0.004113118, + -0.0078369845, + -0.015673196, + 7.7056386e-05, + -0.01719957, + -0.020727322, + -0.029187186, + 0.007925296, + -0.008363501, + -0.004189367, + -0.0055757547, + 0.0045836694, + -0.0013728249, + 0.0035413876, + 0.012133015, + 0.01270002, + 0.015487213, + 0.016287675, + -0.013615027, + -0.015040969, + -0.02170683, + -0.001793732, + -0.014994113, + -0.011200415, + -0.0038375, + -0.013049521, + 0.0029812753, + 0.0028610711, + -0.013920074, + -0.012177434, + 0.028685426, + 0.011340867, + 0.002438783, + -0.020795133, + -0.0044655856, + 0.01473674, + -0.004452549, + 0.011950418, + -0.021575866, + 0.015967038, + -0.015668841, + -0.011819911, + 0.02711641, + -0.010299729, + 0.008638232, + 0.012287019, + -0.0076125967, + 0.00019439943, + 0.005216039, + -0.00944388, + -0.027102249, + 0.010315697, + 0.0066339555, + 0.0043210927, + 0.023571825, + -0.008069559, + -0.02005845, + 0.0031547323, + -0.018229805, + -0.010288726, + -0.0076357517, + -0.009965955, + -0.008976732, + -0.019954296, + 0.012975064, + -0.0041487245, + -0.026038194, + -0.0002687579, + 0.020419952, + -0.015149323, + -0.020324036, + -0.0077725328, + 0.023354074, + 0.0053326013, + 0.0036330072, + 0.0063441196, + -0.013707616, + -0.019788587, + -0.022228705, + -0.012227522, + -0.0151251955, + -0.006931885, + -0.007756833, + -0.0041693323, + -0.0130252745, + -0.023066722, + -0.011222925, + -0.019967612, + 0.0037436609, + 0.035644807, + 0.0049164374, + -0.015398161, + 0.011559105, + -0.00547187, + -0.011661911, + -0.0051175933, + -0.018809758, + -0.0033202558, + -0.020190703, + -0.020774176, + 0.006631247, + -0.043788224, + 0.0003400383, + -0.019992705, + -0.0076843193, + -0.00988355, + 0.0035627407, + -0.022509307, + 0.008327834, + -0.016829623, + -0.020071764, + 0.023587437, + -0.014097047, + 0.0030298273, + 0.013709431, + -0.003360709, + 0.0012738854, + -0.017430983, + -0.015206799, + 0.0007219823, + 0.00019744242, + -0.02124056, + 0.0007021347, + -0.024662498, + -0.01888004, + -0.003105417, + 0.006852325, + -0.0076477397, + 0.017341454, + 0.029591639, + -0.0058283433, + 0.0034310895, + 0.0015584847, + 0.005680402, + -0.0018292131, + -0.0060931505, + -0.006514799, + 0.002522763, + 0.0063769077, + -0.01767699, + -0.0025988996, + -0.0050161798, + -0.02528818, + -0.018203339, + -0.018087326, + 0.0022132949, + 0.0074156504, + 0.0010085476, + 0.015763568, + 0.0008874263, + -0.033664778, + 0.0154970605, + 0.0021559875, + -0.026680144, + 0.023514053, + -0.020418782, + -0.020673908, + -0.0073204967, + -0.009858796, + -0.011261514, + -0.023457857, + -0.010749876, + 0.010987743, + -0.02092189, + 0.0014391963, + 0.0006062074, + -0.008964865, + 0.01470339, + -0.018548148, + -0.007503662, + 0.017834213, + -0.01214139, + -0.0075744907, + -0.0239853, + -0.0050790976, + -0.009800284, + 0.0060769534, + 0.005281144, + -0.0021991264, + -0.009746224, + 0.0043221, + 0.005389029, + -0.0072793243, + -0.012596259, + 0.015750501, + -0.024992378, + -0.009307117, + 0.0013228912, + -0.007112462, + 0.012069292, + -0.012721899, + 0.00398808, + -0.01818997, + 0.010813711, + 0.0054617985, + -0.016506527, + 0.01625936, + -0.005847102, + -0.052506067, + -0.0006021179, + -0.019765656, + -0.0015609184, + -0.028895522, + 0.03724406, + 0.0027734987, + -0.0056598564, + -0.008538192, + 0.007731798, + -0.022462683, + -0.017926862, + -0.013360072, + 0.0031664278, + -0.0017822166, + 0.00699213, + 0.042826965, + -0.041340347, + 0.0033703544, + -0.01091412, + -0.00477616, + -0.014534492, + -0.039615095, + 0.0060812836, + -0.013003822, + 0.012892041, + -0.006111688, + 0.00448615, + 0.007112146, + 0.009762406, + -0.03657073, + 0.008849902, + -0.011311813, + -0.0072317785, + 0.020143684, + -0.009682337, + 0.011632239, + 0.030034302, + 0.0036940933, + -0.0025527335, + -0.0076251775, + 0.013764101, + -0.02156093, + 0.010007997, + 0.02121244, + -0.009463275, + 0.008367478, + -0.018583884, + -0.0021033206, + -0.015111881, + -0.023558108, + 0.008196012, + 0.020913554, + -0.0017810079, + 0.008159197, + 0.019064156, + -0.0063286126, + 0.006866439, + 0.018494105, + -0.0045664874, + -0.014829333, + -0.013025807, + -0.021783974, + 0.0030323137, + 0.0018388326, + -0.0015633175, + -0.013847376, + -0.014299511, + 0.0034798696, + 0.019387523, + -0.00013766972, + 0.013771787, + -0.010348159, + -0.0061384207, + -0.032294627, + -0.013302581, + -0.0075078714, + -0.009561452, + -0.04179194, + 0.008261259, + -0.008284201, + 0.016862437, + 0.011124021, + 0.0017767957, + -0.0026672224, + -0.013496818, + 0.022604642, + -0.025053743, + 0.006851933, + -0.004171532, + -0.0085087335, + -0.008064477, + 0.031104539, + 0.030872254, + -0.011613443, + -0.038953956, + 0.007230147, + -0.01643466, + 0.00062758185, + 0.017367493, + -0.0063298796, + -0.0053612646, + -0.012102908, + 0.029308457, + -0.022204028, + -0.0033169384, + 0.013887192, + 0.013000731, + 0.005107141, + -0.00084573135, + -0.009792578, + -0.0013419966, + 0.006464843, + -0.004736372, + 0.004612404, + -0.023807377, + -7.717582e-05, + -0.023807976, + 0.018430797, + -0.019298544, + -0.0078221625, + -0.028513728, + 0.000661038, + -0.016366858, + -0.01195509, + 0.0043960856, + -0.021014499, + 0.017539052, + 0.0061316015, + 0.022952806, + -0.024933541, + 0.021531396, + -0.02002187, + 0.0070825103, + -0.02491012, + 0.00012160777, + -0.014603575, + -0.008324636, + -0.0010732636, + -0.018983789, + -0.008293119, + -0.013066519, + -0.00835304, + 0.0037892098, + 0.003707009, + -0.003811208, + -0.032891724, + -0.006246259, + -0.018373491, + -0.017285516, + -0.008770321, + -0.020699503, + -0.007835687, + -0.018629117, + 0.010275912, + 0.01493468, + 0.012292674, + -0.01612496, + 0.009270855, + -0.011300144, + -0.018649131, + -0.000894668, + -0.017420407, + -0.010089454, + -0.0147656975, + 0.0037664187, + -0.011930646, + -0.02572956, + -0.003598575, + -0.027982019, + -0.022001676, + -0.00041708976, + 0.0076336004, + -0.016766, + -0.043363214, + -0.0041230367, + -0.00771684, + -0.0050900965, + 0.006307565, + 0.021515751, + -0.016203128, + 0.01027003, + 0.010734164, + 0.004176181, + 0.029351214, + -0.033169925, + 0.0014739442, + -0.023994736, + -0.03782554, + -0.00012531446, + -0.0056681274, + 0.0013232398, + -0.011274073, + -0.010272026, + 0.02761217, + -0.030270554, + -0.0065149455, + 0.012653582, + 0.018519254, + -0.001808436, + -0.007157404, + -0.009771112, + -0.023998562, + -0.00782503, + -0.023935411, + 0.019522794, + 0.0074430895, + -0.0011940596, + -0.0054243123, + -0.012044984, + -0.0052081426, + 0.005087248, + -0.01163905, + -0.019178145, + 0.00037705567, + -0.006502891, + -0.016822858, + -0.009573598, + 3.9295806e-05, + -0.01696629, + -0.016530624, + -0.005918583, + 0.0076971087, + -0.018988838, + 0.013594111, + -0.018208466, + -0.022191485, + 0.009536969, + -0.0008535936, + -0.00574452, + 0.0038681577, + -0.012462456, + -0.003688686, + -0.0029117977, + 0.0030541695, + 0.0021175877, + -0.027480943, + 0.007881941, + -0.010684181, + -0.026725918, + -0.0085377, + -0.0015810663, + 0.0056003216, + -0.016103253, + -0.019840172, + 0.00065979053, + -0.018326458, + 0.008334397, + 0.007174121, + -0.026410973, + -0.014435076, + -0.028764397, + 0.010927049, + -0.02334877, + 0.00030027152, + -0.02881866, + 0.017319568, + -0.0025437623, + 0.009514991, + -0.015539859, + -0.012625055, + -0.024237536, + -0.010531459, + 0.015632423, + -0.023816902, + 0.0072232527, + 0.0023523578, + -0.012495638, + -0.03630881, + -0.011747712, + -0.01781601, + -0.009135579, + -0.00059281354, + -0.023740634, + -0.027715169, + -0.014898731, + -0.010468869, + 0.024339868, + 0.00023176079, + 0.0108531695, + -0.011150867, + -0.00840451, + -0.0031181339, + 0.0027346348, + -0.013723163, + -0.021316368, + 0.0051557957, + -0.025422528, + -0.026822148, + -0.023194557, + -0.008914731, + -0.008741169, + 0.010303425, + -0.038556527, + -0.011911822, + -0.020172197, + -0.008557475, + -0.014007264, + 0.0032238425, + 0.0038431708, + -0.033003405, + -0.020623462, + -0.0116897905, + -0.038725056, + -0.008063406, + -0.025056893, + -0.003576496, + -0.015743116, + -0.026080921, + -0.02123067, + -0.0051350556, + -0.013561491, + -0.012590992, + 9.351158e-05, + -0.0042019333, + 0.0039243666, + -0.004662255, + -0.01945725, + 0.009640501, + 0.0062336344, + -0.009237857, + -0.0079809055, + -0.006455764, + -0.0041513913, + -0.0178515, + -0.002565472, + -0.018597709, + -0.011662947, + 8.020984e-05, + -0.016964516, + -0.007839346, + -0.003543928, + -0.021772943, + -0.0042515006, + -0.012405342, + 0.022336626, + 0.0029593948, + -0.008938826, + 0.01740232, + -0.0015108284, + -0.006172088, + 0.00953251, + -0.0143578695, + -0.005950774, + -0.014225818, + 0.017517043, + -0.0058981255, + -0.031633414, + 0.0074561676, + 0.0027869493, + 0.007980107, + 0.0004334203, + 0.0073432033, + -0.02202821, + 0.051138856, + 0.007845923, + -0.0072776834, + 0.008593704, + -0.008407686, + -0.012143801, + 0.0012906573, + -0.013056685, + 0.007062406, + -0.010482336, + -0.00356263, + -0.005649216, + 0.0031072302, + -0.00014323845, + -0.0029112904, + 0.011753407, + 0.0055485847, + -0.030189212, + 0.0014789014, + -0.019190045, + -0.007662453, + 0.020049093, + 0.00820144, + -0.015454278, + -0.007930288, + -0.017056974, + -0.0029258025, + -0.032894086, + 0.012673715, + -0.021206934, + -0.0050224876, + -0.0011315359, + -0.007249362, + 0.0152367195, + -0.0071839076, + -0.0024216748, + 0.012646242, + -0.020588415, + -0.011794329, + -0.004332922, + -0.019683095, + 0.024352314, + 0.0031684777, + -0.010025834, + -0.022173436, + 0.011393904, + 0.025758041, + 0.021144895, + -0.00626835, + -0.007123675, + -0.009267579, + 0.001256906, + 0.00436682, + -0.0031533611, + -0.03244301, + -0.012130167, + -0.0020079166, + 0.0018086333, + -0.01002695, + -0.009270068, + -0.015163968, + -0.0147746205, + 0.0038683643, + -0.028153794, + -0.02538989, + 0.006008574, + -0.028680388, + 0.0039182384, + -0.03538336, + -0.014104834, + -0.0098441355, + -0.027886169, + -0.008176299, + 3.0515253e-05, + -0.007254972, + -0.009709466, + -0.012347184, + 0.008985302, + 0.010612337, + -0.004060839, + -0.015739746, + 0.009546685, + 0.008308923, + 0.015164857, + -0.0034819227, + 0.0081612095, + 0.0018692735, + -0.00023672037, + -0.021274066, + -0.0025772946, + 0.007682439, + -0.008847317, + -0.016426964, + -0.028493445, + 0.030684965, + 0.010693768, + -0.017419614, + -0.015896238, + 0.0050090495, + -0.008037662, + -0.027923454, + -0.011666546, + -0.0038604008, + -0.0052396776, + 0.027367387, + 0.0076598185, + -0.014627617, + 0.0010930687, + -0.016558517, + -0.0023589628, + 0.026054429, + -0.009967416, + -0.012495885, + 0.024557455, + 0.015309061, + -0.008395521, + -0.014752199, + 0.01326555, + 0.0022629707, + -0.022262372, + 0.019371767, + -0.026659548, + 0.035121657, + -0.00031828939, + -0.029566864, + -0.012202219, + -0.01363088, + 0.014359, + -0.022995513, + -0.01358302, + 0.01875156, + -0.0033604894, + -0.0066078915, + -0.0306631, + 0.0132754855, + -0.014096969, + 0.0063731954, + -0.021027884, + -0.009107999, + -0.012771986, + -0.008598328, + -0.005436984, + -0.0053369845, + -0.007976414, + 0.0031232864, + -0.004865028, + -0.008209687, + -0.024312861, + -0.018047176, + -0.0123214945, + -0.0006542741, + -0.0020639517, + -0.020760389, + -0.013740277, + -0.010713534, + -0.011041909, + 0.00035237314, + -0.028957907, + -0.014722376, + -0.02765221, + -0.025820546, + -0.015791405, + -0.009237704, + -0.003320859, + -0.019803146, + -0.027919788, + 0.005294721, + 0.021749394, + -0.007090175, + -0.020989325, + -0.02595991, + -0.008408846, + -0.028836694, + -0.007986588, + 0.016325314, + -0.025536526, + -0.0014629884, + -0.012858816, + -0.00289314, + 0.021130517, + -0.010434805, + -0.019134456, + 0.01175425, + 0.007000621, + -0.00073296326, + -0.027083868, + -0.0037505855, + 0.020370351, + -0.005854361, + -0.0003319348, + -0.0076601887, + 0.013103607, + -0.013290161, + 0.004534694, + -0.0010432792, + -0.024140468, + 0.00022397152, + -0.01777269, + -0.016979503, + -0.009159222, + -0.021401048, + 0.021486746, + -0.012791915, + -0.0034474318, + 0.016511977, + -0.018169118, + -0.01484026, + -0.016205514, + -0.012429003, + -0.024426844, + 0.0046014404, + -0.010241501, + 0.017011853, + 0.00801516, + -0.015128901, + -0.026459746, + -0.012978258, + -0.013942107, + -0.01787248, + -0.012725041, + -0.028360039, + -0.011966448, + -0.002947825, + -0.024831211, + -0.028412677, + -0.010642931, + -0.017802985, + 0.013118589, + 0.007003493, + 0.012923044, + -0.0055068103, + 0.021513153, + -0.004237034, + -0.009204562, + -0.020034146, + -0.01008768, + -0.007895897, + -0.020723272, + -0.028537262, + -0.00078430393, + -0.02027047, + 0.0014205063, + -0.0020134274, + -0.02125527, + 0.018201273, + -0.01585755, + -0.018482676, + -0.0012483879, + -0.002092878, + -0.030626716, + 0.009003447, + 0.0024550005, + 0.0055444217, + -0.010183259, + -0.012287448, + -0.01296451, + -0.02839578, + -0.008458125, + -0.011582128, + 0.00019207809, + -0.020145172, + -0.0016182875, + 0.022541907, + -0.0010547838, + -0.0027959417, + -0.009929563, + 0.0048843916, + -0.00096220133, + 0.0046190484, + -0.02811264, + 0.010682417, + 0.0024188922, + 0.0009869898, + 0.0054911263, + 0.013613111, + -0.014607331, + -0.026613291, + -0.0048828702, + 0.0011714984, + 0.015444313, + -0.022393016, + -0.016619904, + -0.012233054, + -0.007335517, + -0.005014447, + -0.0017315805, + 0.01233137, + -0.012545608, + 0.013014588, + -0.019906756, + -0.016154245, + 0.002515165, + 0.004576479, + -0.012248854, + -0.020273585, + 0.010698319, + -0.0133200465, + -0.022391131, + 0.020890797, + 0.047703084, + 0.013756939, + 0.0020729369, + 0.019891623, + -0.03837915, + 0.0015083082, + -0.008532627, + 0.01671607, + 0.0065324777, + -0.013683596, + -0.01881935, + -0.029976133, + -0.0071211597, + 0.012326195, + -0.010665461, + -0.01949413, + 0.001255616, + -0.024148965, + 0.007492821, + -0.01519658, + -0.027652288, + 0.0017321315, + -0.0010808012, + 0.0028353087, + 0.009434456, + -0.004019384, + -0.011413626, + -0.021039851, + -0.008232044, + 0.008053723, + 0.032063562, + -0.020383602, + -0.021705583, + 0.042772762, + -0.027397232, + 0.00815761, + -0.0060903546, + -0.011186524, + -0.0019420902, + 0.00026051648, + -0.0058423434, + -0.013274853, + 0.008561913, + 0.023169724, + 0.00081907946, + -0.0011950677, + -0.0018291301, + 0.026112568, + -0.016481929, + 0.033510163, + -0.0013860951, + -0.012981207, + -0.027565658, + -0.019966831, + -0.014184019, + 0.012054186, + 0.0017458714, + -0.020388354, + 0.003591697, + -0.031040909, + 0.03484731, + 0.005181942, + 0.013159813, + 0.015273637, + 0.0012676588, + -0.009591322, + -0.040223096, + -0.0044842265, + -0.024358703, + 0.012221816, + 0.0039337412, + -0.0074064196, + 0.004853152, + -0.0047831, + 0.0023965281, + 0.007457825, + 0.017206872, + -0.011814736, + -0.0054375436, + -0.020880463, + -0.0077852304, + -0.009077425, + 0.00072737405, + -0.016250506, + 0.01048407, + -0.00055658905, + 0.0022587709, + -2.6461257e-05, + -0.0012002323, + -0.015370963, + 0.007597522, + -0.0311319, + -0.011575752, + 0.018701257, + -0.023458349, + -0.014997579, + -0.008753957, + 0.012738451, + -0.0054202834, + 0.009942407, + -0.010530923, + -0.0032729784, + -0.008958022, + -0.023743361, + -0.012830834, + -0.022759994, + -0.013273576, + -0.018527253, + -0.0062090573, + -0.03425513, + -0.01786422, + -0.016506685, + 0.025446765, + 0.00033813715, + -0.01504728, + -0.023602232, + 0.009114968, + -0.0063505354, + -0.015367589, + -0.012824747, + 0.009593105, + 0.026930781, + -0.0034074218, + -0.02359284, + -0.0027403526, + -0.0072625275, + -0.01539982, + -0.019045226, + -0.00069293997, + -0.011920699, + 0.022692237, + 0.025036598, + 0.027839677, + -0.016565962, + 0.014883061, + -0.023850996, + -0.015655758, + -0.03727518, + -0.0053049093, + -0.009502905, + 0.025258794, + -0.027151596, + -0.028931256, + -0.016550902, + -0.031914398, + -0.006849482, + -0.00283671, + -0.0041097575, + 0.0038783327, + 0.003942091, + -0.022698287, + -0.0034603968, + -0.026558328, + -0.003998366, + -0.014548181, + -0.0031442826, + 0.010724784, + -0.017209033, + -0.03803433, + 0.009103611, + -0.029036984, + -0.027377581, + 0.007098779, + 0.006084557, + -0.004763862, + -0.027702872, + 0.010250658, + -0.03137994, + -0.01146052, + 0.001996713, + 0.026010305, + 0.023274908, + -0.0022965728, + -0.015330108, + -0.008727001, + -0.011182313, + 0.0089376075, + -0.015120778, + 0.017555775, + -0.014787666, + -0.021384688, + -0.0009653496, + -0.009692083, + -0.00239592, + -0.0046997033, + 0.011692373, + -0.016798304, + -0.0046170335, + -0.027731482, + -0.027991617, + -0.012057196, + -0.032495037, + 0.014459435, + -0.032262143, + -0.027968166, + 0.018357687, + 0.017107973, + -0.00043376524, + -0.020709233, + 0.011876917, + -0.018674355, + -0.015069855, + -0.00249946, + -0.0081354985, + 0.028988957, + -0.003705726, + -0.009891806, + -0.018175155, + -0.0009359527, + -0.003487519, + 0.022751184, + -0.01008273, + -0.012445679, + -0.021420345, + -0.043779258, + 0.00512279, + -0.022670725, + -0.02804883, + -0.0040841117, + -0.0037698105, + 0.0067237527, + 0.00029343995, + -0.011792921, + 0.0023345053, + -0.025764078, + -0.0064704204, + -0.00893483, + -0.051925305, + -0.0059895273, + -0.0030863408, + 0.0107064685, + 0.0006792445, + -0.017193938, + 0.008580108, + -0.023918511, + -0.011666776, + -0.0061236853, + 0.008929752, + -0.0031773676, + -0.0058761807, + 0.021696908, + -0.001352535, + -0.0021882562, + -0.01555506, + 0.0050882087, + 0.006278724, + -0.018753396, + -0.017730018, + -0.018348556, + -0.005307424, + -0.013468319, + 0.017557133, + 0.0025440645, + -0.01840368, + -0.007175484, + 0.006240941, + 0.010435191, + 0.0068291337, + -0.0250741, + -0.020177472, + -0.0045759752, + 0.027331201, + -0.008778851, + 0.01680527, + -0.008202444, + -0.010520965, + -0.005208536, + -0.0131523935, + -0.01224371, + -0.0040666885, + 0.003611685, + -0.024333186, + 0.012796235, + -0.016144592, + -0.027189208, + -0.009178071, + -0.017997986, + -0.011051002, + -0.020193191, + -0.0059903637, + -0.014363657, + -0.022173565, + 0.016634181, + -0.012669483, + -0.01995181, + 0.0144848395, + -0.0096855145, + -0.01531053, + -0.0031676108, + -0.026949044, + -0.03327462, + -0.008946027, + 0.022732606, + -0.0041194437, + -0.023413695, + -0.011227374, + 0.0077940165, + 0.0016479073, + 0.02553015, + -0.012913445, + -0.0013640127, + 0.0053547034, + 0.012818507, + -0.012623037, + -0.0065570315, + -0.0044073067, + -0.00883182, + -0.014718244, + -0.018862208, + 0.00475916, + -0.013661277, + -0.00568401, + -0.016943553, + -0.012226544, + -0.0084878225, + -0.037563063, + -0.029093258, + -0.012329168, + -0.01056638, + 0.0037760846, + 0.023064641, + -0.04490241, + -0.027954448, + -0.0024578446, + -0.018756622, + 0.024397148, + -0.0299564, + 0.0013091671, + -0.024725238, + 0.004229435, + -0.021434812, + -0.031161644, + -0.0074158795, + -0.009148053, + -0.003543462, + -0.014468242, + -0.0019588561, + -0.009482626, + -0.015565286, + -0.021604365, + 0.0009001661, + 0.01006205, + -0.017806845, + -0.0062035825, + 0.0138595225, + -0.035287555, + -0.012371709, + -0.0064232345, + -0.018655354, + -0.0014739938, + -0.005720876, + 0.00070551486, + -0.018223708, + -0.0033852807, + -0.013967385, + 0.006373294, + 0.00090429006, + 0.000524689, + -0.027227206, + -0.012306258, + -0.00032173863, + -0.01928793, + 0.0031025358, + -0.0014311105, + 0.024423137, + -0.023602916, + -0.02241992, + 0.004981222, + 0.0038769052, + -0.027932508, + -0.021676097, + 0.021683851, + -0.006217874, + -0.009994154, + -0.0047944468, + 0.013443332, + -0.010627565, + 0.006123689, + -0.01832576, + -0.0038085862, + 0.0036644435, + 0.0015414818, + -0.029301304, + -0.010219713, + -0.011821245, + 0.0035437644, + -0.01359508, + 0.014077467, + -0.0063943868, + -0.009273713, + -0.013655462, + -0.01163769, + 0.0023878259, + 0.0194601, + -0.023528593, + 0.0134451175, + -0.019168146, + -0.008848944, + -0.001300161, + 0.009045192, + -0.021546695, + -0.015665255, + -0.008283485, + 0.00077658345, + -0.0041429936, + 0.029885685, + -0.007202349, + 0.0025205908, + -0.010730779, + -0.008380213, + -0.0036040356, + 0.03074152, + 0.009049385, + 0.0020444111, + 0.0052821483, + -0.011530193, + -0.015330522, + -0.008065426, + -0.00815461, + -0.00651842, + -0.0059536407, + -0.01137514, + -0.0024830557, + -0.011631709, + 0.002234613, + -0.0021165267, + -0.013062355, + -0.0436315, + -0.016245387, + 0.016821096, + -0.024270067, + -0.025620047, + -0.022833059, + 0.029338542, + 0.004810078, + -0.004565599, + -0.020135937, + 0.014948312, + 0.004657914, + -0.0016647595, + -0.012929099, + -0.017246038, + 0.020700235, + 0.0075339936, + 0.010249936, + -0.021876348, + 0.0077119954, + -0.0011044357, + 0.014422361, + 0.0012468763, + -0.011199865, + 0.016374936, + -0.023121059, + -0.03318873, + -0.02358848, + 0.011015731, + 0.012701235, + -0.025350906, + -0.0029868302, + -0.01947445, + 0.002944419, + 0.010448642, + -0.0057065394, + 0.01918756, + 0.0031911253, + -0.013740074, + -0.013967249, + 0.03181151, + -0.024875222, + -0.012904515, + -0.024806188, + -0.016072037, + -0.0054410836, + 0.009920382, + -0.015224388, + -0.002707254, + 0.002596772, + 0.021590173, + -0.020761745, + -0.016533874, + -0.0022430427, + 0.0069664223, + -0.010441028, + 0.023872916, + -0.013714067, + 0.0069985315, + -0.0033445964, + -0.011932513, + 0.0016077552, + -0.0024787998, + -0.00018515263, + -0.004695601, + -0.0062775454, + -0.014711172, + -0.0002490772, + 0.005235201, + -0.02475333, + 0.005640454, + -0.006473274, + 5.6860026e-05, + 0.0075658276, + -0.010694567, + -0.009117708, + -0.0029119682, + 0.022827884, + -0.003062867, + 0.008011716, + 0.0031795823, + 0.02362759, + 0.018073918, + 0.008666444, + 0.019608764, + 0.0023236482, + -9.6072225e-05, + -0.006294599, + -0.025339853, + -0.02411393, + 0.0011603361, + 0.014475518, + -0.016545733, + 0.0012222069, + -0.012365004 ], "paletteEmbedding": [ - 0.013037933, 0.015657427, 0.011490051, 0.005298521, 0.0011311449, - 0.00023813576, 0.0, 0.0, 0.0, 0.0, 0.019288996, 0.024706585, - 0.020658277, 0.008572888, 0.002798095, 0.0002976697, 0.0, 0.0, 0.0, 0.0, - 0.013811874, 0.023515906, 0.020598743, 0.010537508, 0.002976697, - 0.0005358055, 5.953394e-5, 0.0, 0.0, 0.0, 0.006131996, 0.01178772, - 0.010597042, 0.00589386, 0.0018455521, 0.0007144073, 0.00011906788, 0.0, - 0.0, 0.0, 0.0019050861, 0.0032743667, 0.004167376, 0.002798095, - 0.0011906788, 0.00023813576, 0.0, 0.0, 0.0, 0.0, 0.00035720365, - 0.00035720365, 0.0005358055, 0.00035720365, 0.0002976697, 5.953394e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.00011906788, 0.00023813576, 5.953394e-5, - 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.020003404, 0.031017182, - 0.023396838, 0.010299372, 0.0025599594, 0.00041673757, 5.953394e-5, 0.0, - 0.0, 0.0, 0.033219937, 0.057747923, 0.046734143, 0.024111247, - 0.0064296657, 0.001071611, 5.953394e-5, 0.0, 0.0, 0.0, 0.034470152, - 0.056140505, 0.055842835, 0.031969726, 0.0077989465, 0.0015478824, - 0.00023813576, 0.0, 0.0, 0.0, 0.015955096, 0.0328032, 0.03583943, - 0.021789422, 0.0082156835, 0.0022622899, 0.00035720365, 0.0, 0.0, 0.0, - 0.0046436475, 0.01012077, 0.014764417, 0.009644498, 0.00559619, - 0.0013692806, 0.0002976697, 0.0, 0.0, 0.0, 0.0007739412, 0.0027385612, - 0.0031552988, 0.0034529686, 0.0018455521, 0.0005358055, 5.953394e-5, - 0.0, 0.0, 0.0, 0.00017860183, 0.00035720365, 0.00041673757, - 0.0006548734, 0.00035720365, 0.00035720365, 5.953394e-5, 5.953394e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00011906788, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.02113455, 0.034827355, 0.028338157, - 0.0136928065, 0.0048817834, 0.0007144073, 5.953394e-5, 0.0, 0.0, 0.0, - 0.037863586, 0.06554687, 0.065368265, 0.03685151, 0.011549585, - 0.0022027558, 0.0002976697, 0.0, 0.0, 0.0, 0.041495156, 0.0819187, - 0.085847944, 0.058819532, 0.022146625, 0.006072462, 0.00095254305, - 5.953394e-5, 0.0, 0.0, 0.026194934, 0.052508935, 0.06697568, - 0.055187963, 0.02732608, 0.007144073, 0.0017264843, 0.00011906788, 0.0, - 0.0, 0.0082156835, 0.022920568, 0.034529686, 0.0326246, 0.02071781, - 0.0057152584, 0.0015478824, 0.00023813576, 0.0, 0.0, 0.0016669503, - 0.005000851, 0.011013779, 0.011847254, 0.008930091, 0.0045841136, - 0.0014883485, 0.0002976697, 0.0, 0.0, 0.00017860183, 0.0011906788, - 0.0017860183, 0.002917163, 0.0023813576, 0.0015478824, 0.001071611, - 0.00023813576, 5.953394e-5, 0.0, 0.0, 0.0, 0.00035720365, 0.00041673757, - 0.00041673757, 0.0002976697, 0.00023813576, 5.953394e-5, 5.953394e-5, - 0.0, 0.0, 0.0, 0.0, 5.953394e-5, 5.953394e-5, 0.00017860183, - 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.011430517, 0.018634124, 0.020301074, 0.011251915, 0.0037506383, - 0.0011311449, 0.00011906788, 0.0, 0.0, 0.0, 0.02417078, 0.045841135, - 0.051556394, 0.03822079, 0.014823952, 0.0035125024, 0.0007739412, - 0.00017860183, 0.0, 0.0, 0.0294693, 0.06751149, 0.08382379, 0.06780916, - 0.033041336, 0.009227761, 0.0019050861, 0.0002976697, 0.0, 0.0, - 0.020360608, 0.05620004, 0.08316892, 0.08257358, 0.04804389, 0.02143222, - 0.004048308, 0.0007144073, 5.953394e-5, 0.0, 0.008751489, 0.028457224, - 0.052211266, 0.061736695, 0.045543466, 0.024349382, 0.007739412, - 0.0019050861, 0.00023813576, 5.953394e-5, 0.0025004256, 0.0082156835, - 0.020062938, 0.032148328, 0.03006464, 0.019467598, 0.0076203444, - 0.0023218237, 0.00047627153, 0.00011906788, 0.00035720365, 0.0022622899, - 0.00589386, 0.010597042, 0.012263992, 0.011311449, 0.0056557246, - 0.0026790274, 0.0005953394, 5.953394e-5, 0.0, 0.00011906788, - 0.00095254305, 0.0022027558, 0.0043459777, 0.0045245797, 0.0032148329, - 0.00095254305, 0.00017860183, 0.0, 0.0, 0.0, 0.0, 0.00017860183, - 0.0005358055, 0.0011311449, 0.00083347515, 0.00035720365, 0.00011906788, - 0.0, 0.0, 0.0, 0.0, 0.00011906788, 0.00011906788, 5.953394e-5, - 0.00017860183, 0.00023813576, 0.0, 0.0, 0.0032743667, 0.0065487335, - 0.009406363, 0.00589386, 0.0023218237, 0.0005953394, 5.953394e-5, 0.0, - 0.0, 0.0, 0.009763567, 0.020420142, 0.027207011, 0.02113455, - 0.010418439, 0.0033339006, 0.00047627153, 0.0, 0.0, 0.0, 0.014407214, - 0.03173159, 0.053104274, 0.052389868, 0.030183708, 0.012918865, - 0.0034529686, 0.0005953394, 0.0, 0.0, 0.0098826345, 0.034053415, - 0.06608267, 0.07697739, 0.057807457, 0.032148328, 0.0090491595, - 0.0027385612, 0.00017860183, 5.953394e-5, 0.0055366564, 0.02143222, - 0.05072292, 0.08001362, 0.076084375, 0.049472705, 0.022563364, - 0.0076203444, 0.0015478824, 0.00017860183, 0.0016074164, 0.008096616, - 0.024349382, 0.049353637, 0.06721382, 0.059712544, 0.03655384, - 0.013157001, 0.002798095, 0.00035720365, 0.00035720365, 0.0018455521, - 0.009704032, 0.021968024, 0.039828207, 0.047984358, 0.031612523, - 0.012323526, 0.002798095, 0.0006548734, 0.0, 0.00023813576, 0.00196462, - 0.0073226746, 0.016133698, 0.02024154, 0.016550435, 0.0073226746, - 0.002798095, 0.00083347515, 0.0, 5.953394e-5, 0.00017860183, - 0.0013692806, 0.00422691, 0.0066082673, 0.0066082673, 0.002976697, - 0.001071611, 0.00017860183, 0.0, 0.0, 5.953394e-5, 0.0, 0.00041673757, - 0.0007144073, 0.0013097468, 0.001071611, 0.0002976697, 5.953394e-5, - 0.00095254305, 0.002143222, 0.0022027558, 0.002083688, 0.0007144073, - 0.00035720365, 0.0, 0.0, 0.0, 0.0, 0.0015478824, 0.0051794527, - 0.008989625, 0.008930091, 0.004762715, 0.0017860183, 0.00023813576, - 5.953394e-5, 5.953394e-5, 0.0, 0.0036315704, 0.009823101, 0.023158703, - 0.029945573, 0.020658277, 0.010180304, 0.003988774, 0.0008930091, - 0.00011906788, 0.0, 0.0034529686, 0.01434768, 0.033041336, 0.05304474, - 0.0522708, 0.03667291, 0.017264843, 0.0033934347, 0.0005953394, - 5.953394e-5, 0.0028576292, 0.011073313, 0.033398543, 0.06709475, - 0.08906277, 0.082275905, 0.047567617, 0.017026708, 0.0033934347, - 0.00011906788, 0.0007739412, 0.006131996, 0.022861034, 0.06268924, - 0.11370983, 0.12591429, 0.08519307, 0.034529686, 0.009406363, - 0.0013692806, 0.00023813576, 0.002024154, 0.0098826345, 0.035779897, - 0.078644335, 0.11496004, 0.091503665, 0.04971084, 0.013097467, - 0.0023218237, 5.953394e-5, 0.0005953394, 0.0031552988, 0.015181155, - 0.03923287, 0.06346318, 0.060784154, 0.033934347, 0.012263992, - 0.0023813576, 0.0, 5.953394e-5, 0.00047627153, 0.0033934347, - 0.011073313, 0.02143222, 0.02476612, 0.01720531, 0.0073226746, - 0.002083688, 0.0, 0.0, 0.0, 0.00035720365, 0.0017860183, 0.0045841136, - 0.005834326, 0.005000851, 0.0031552988, 0.00041673757, 0.00011906788, - 0.00047627153, 0.0005358055, 0.00047627153, 0.00041673757, 5.953394e-5, - 0.0, 0.0, 0.0, 0.0, 0.0005953394, 0.001012077, 0.0017264843, - 0.0022027558, 0.0017860183, 0.00083347515, 0.00017860183, 5.953394e-5, - 0.0, 0.0, 0.0005953394, 0.0025004256, 0.0054175886, 0.009763567, - 0.0086324215, 0.006370132, 0.0032743667, 0.00047627153, 0.00011906788, - 5.953394e-5, 0.0006548734, 0.004048308, 0.012621195, 0.024230314, - 0.03125532, 0.029528834, 0.017860182, 0.0062510637, 0.0011906788, - 0.00011906788, 0.0005953394, 0.004167376, 0.0163123, 0.04107842, - 0.07340535, 0.08519307, 0.05947441, 0.024647051, 0.0054771225, - 0.0007144073, 0.00023813576, 0.002917163, 0.014288146, 0.049294103, - 0.1138289, 0.15377617, 0.12859331, 0.06661848, 0.018217387, 0.004048308, - 0.00023813576, 0.0011906788, 0.008334752, 0.036315706, 0.106268086, - 0.18205479, 0.17050521, 0.09906448, 0.03536316, 0.007918014, - 5.953394e-5, 0.00017860183, 0.0036315704, 0.01690764, 0.06262971, - 0.119603686, 0.1394285, 0.09573058, 0.036434773, 0.008751489, 0.0, 0.0, - 0.0007144073, 0.005953394, 0.020122472, 0.050246645, 0.06620174, - 0.051258724, 0.025897264, 0.0054771225, 0.0, 0.0, 0.00011906788, - 0.0005953394, 0.0046436475, 0.01238306, 0.017562512, 0.016609969, - 0.008870557, 0.002083688, 0.0, 0.0, 5.953394e-5, 0.00017860183, - 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 5.953394e-5, 0.00023813576, - 0.00041673757, 0.00023813576, 0.00023813576, 0.0005358055, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.00017860183, 0.00095254305, 0.0013692806, 0.00196462, - 0.002083688, 0.0014883485, 0.0007144073, 0.00011906788, 0.0, - 5.953394e-5, 0.00041673757, 0.0025599594, 0.007739412, 0.013395137, - 0.015181155, 0.010299372, 0.004286444, 0.0015478824, 0.00011906788, - 5.953394e-5, 0.0005953394, 0.004762715, 0.017919715, 0.038816128, - 0.055485632, 0.04512673, 0.024230314, 0.007441743, 0.00095254305, - 0.00017860183, 0.0007144073, 0.0051794527, 0.027385613, 0.07114306, - 0.12549755, 0.13002212, 0.071917, 0.02583773, 0.0054175886, 0.0, - 0.00041673757, 0.0037506383, 0.024408916, 0.081799634, 0.1662783, - 0.20039125, 0.14020243, 0.055723768, 0.011966323, 0.0, 0.00041673757, - 0.0023813576, 0.01375234, 0.06197483, 0.13686854, 0.1929495, 0.15234736, - 0.06757102, 0.015478824, 0.0, 0.0, 0.00047627153, 0.0057152584, - 0.026790274, 0.07036912, 0.105256006, 0.099124014, 0.048996434, - 0.012144924, 0.0, 0.0, 0.00011906788, 0.0011906788, 0.0073226746, - 0.017741114, 0.03333901, 0.030481378, 0.018038783, 0.0044650454, 0.0, - 0.0, 0.0, 0.0, 0.0, 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.953394e-5, 5.953394e-5, 0.0, 0.00017860183, 5.953394e-5, 5.953394e-5, - 0.0, 0.0, 0.0, 5.953394e-5, 5.953394e-5, 0.00023813576, 0.0007144073, - 0.00083347515, 0.0005953394, 0.00011906788, 0.0, 0.0, 0.0, - 0.00023813576, 0.00041673757, 0.0013692806, 0.0038101722, 0.0054175886, - 0.0045841136, 0.002798095, 0.0006548734, 0.00011906788, 0.0, - 0.00011906788, 0.0011906788, 0.0046436475, 0.01208539, 0.024885187, - 0.02446845, 0.014228612, 0.0056557246, 0.00083347515, 0.0, - 0.00011906788, 0.0018455521, 0.0075012767, 0.030183708, 0.05947441, - 0.072036065, 0.05322334, 0.020003404, 0.00392924, 0.0, 0.00011906788, - 0.0011311449, 0.011549585, 0.04286444, 0.10388672, 0.14431027, - 0.11269775, 0.048222493, 0.012561661, 0.0, 5.953394e-5, 0.00095254305, - 0.00815615, 0.035303626, 0.102160245, 0.15526451, 0.13954756, 0.0685831, - 0.018455522, 0.0, 5.953394e-5, 0.00041673757, 0.002798095, 0.018515056, - 0.056259573, 0.0978738, 0.0947185, 0.05060385, 0.013930942, 0.0, - 5.953394e-5, 5.953394e-5, 0.0007739412, 0.005358055, 0.01690764, - 0.032445997, 0.033874813, 0.019408064, 0.005834326, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.953394e-5, 0.00023813576, - 5.953394e-5, 0.0, 0.0, 0.0, 0.0, 5.953394e-5, 5.953394e-5, - 0.00023813576, 0.0006548734, 0.00047627153, 0.001012077, 0.0005358055, - 0.00023813576, 0.00011906788, 0.0, 0.0, 0.00017860183, 0.0008930091, - 0.0026194935, 0.00559619, 0.0066082673, 0.003869706, 0.0016669503, - 0.00035720365, 0.0, 0.0, 0.0002976697, 0.0014288146, 0.0072631408, - 0.017264843, 0.027266545, 0.02143222, 0.009763567, 0.0017860183, 0.0, - 0.0, 0.00041673757, 0.0027385612, 0.013157001, 0.036196638, 0.056973983, - 0.0491155, 0.025718663, 0.007977548, 0.0, 0.0, 0.0002976697, - 0.0023813576, 0.013454671, 0.04215003, 0.072988614, 0.069416575, - 0.037804052, 0.010418439, 0.0, 0.0, 0.00011906788, 0.0014288146, - 0.0073822085, 0.02810002, 0.049175035, 0.049829908, 0.030719513, - 0.008572888, 0.0, 0.0, 0.0, 0.0005358055, 0.0023218237, 0.009227761, - 0.01797925, 0.020360608, 0.012561661, 0.0041078418 + 0.013037933, + 0.015657427, + 0.011490051, + 0.005298521, + 0.0011311449, + 0.00023813576, + 0.0, + 0.0, + 0.0, + 0.0, + 0.019288996, + 0.024706585, + 0.020658277, + 0.008572888, + 0.002798095, + 0.0002976697, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013811874, + 0.023515906, + 0.020598743, + 0.010537508, + 0.002976697, + 0.0005358055, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.006131996, + 0.01178772, + 0.010597042, + 0.00589386, + 0.0018455521, + 0.0007144073, + 0.00011906788, + 0.0, + 0.0, + 0.0, + 0.0019050861, + 0.0032743667, + 0.004167376, + 0.002798095, + 0.0011906788, + 0.00023813576, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00035720365, + 0.00035720365, + 0.0005358055, + 0.00035720365, + 0.0002976697, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00011906788, + 0.00023813576, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.020003404, + 0.031017182, + 0.023396838, + 0.010299372, + 0.0025599594, + 0.00041673757, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.033219937, + 0.057747923, + 0.046734143, + 0.024111247, + 0.0064296657, + 0.001071611, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.034470152, + 0.056140505, + 0.055842835, + 0.031969726, + 0.0077989465, + 0.0015478824, + 0.00023813576, + 0.0, + 0.0, + 0.0, + 0.015955096, + 0.0328032, + 0.03583943, + 0.021789422, + 0.0082156835, + 0.0022622899, + 0.00035720365, + 0.0, + 0.0, + 0.0, + 0.0046436475, + 0.01012077, + 0.014764417, + 0.009644498, + 0.00559619, + 0.0013692806, + 0.0002976697, + 0.0, + 0.0, + 0.0, + 0.0007739412, + 0.0027385612, + 0.0031552988, + 0.0034529686, + 0.0018455521, + 0.0005358055, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.00017860183, + 0.00035720365, + 0.00041673757, + 0.0006548734, + 0.00035720365, + 0.00035720365, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00011906788, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02113455, + 0.034827355, + 0.028338157, + 0.0136928065, + 0.0048817834, + 0.0007144073, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.037863586, + 0.06554687, + 0.065368265, + 0.03685151, + 0.011549585, + 0.0022027558, + 0.0002976697, + 0.0, + 0.0, + 0.0, + 0.041495156, + 0.0819187, + 0.085847944, + 0.058819532, + 0.022146625, + 0.006072462, + 0.00095254305, + 5.953394e-05, + 0.0, + 0.0, + 0.026194934, + 0.052508935, + 0.06697568, + 0.055187963, + 0.02732608, + 0.007144073, + 0.0017264843, + 0.00011906788, + 0.0, + 0.0, + 0.0082156835, + 0.022920568, + 0.034529686, + 0.0326246, + 0.02071781, + 0.0057152584, + 0.0015478824, + 0.00023813576, + 0.0, + 0.0, + 0.0016669503, + 0.005000851, + 0.011013779, + 0.011847254, + 0.008930091, + 0.0045841136, + 0.0014883485, + 0.0002976697, + 0.0, + 0.0, + 0.00017860183, + 0.0011906788, + 0.0017860183, + 0.002917163, + 0.0023813576, + 0.0015478824, + 0.001071611, + 0.00023813576, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.00035720365, + 0.00041673757, + 0.00041673757, + 0.0002976697, + 0.00023813576, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 5.953394e-05, + 0.00017860183, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011430517, + 0.018634124, + 0.020301074, + 0.011251915, + 0.0037506383, + 0.0011311449, + 0.00011906788, + 0.0, + 0.0, + 0.0, + 0.02417078, + 0.045841135, + 0.051556394, + 0.03822079, + 0.014823952, + 0.0035125024, + 0.0007739412, + 0.00017860183, + 0.0, + 0.0, + 0.0294693, + 0.06751149, + 0.08382379, + 0.06780916, + 0.033041336, + 0.009227761, + 0.0019050861, + 0.0002976697, + 0.0, + 0.0, + 0.020360608, + 0.05620004, + 0.08316892, + 0.08257358, + 0.04804389, + 0.02143222, + 0.004048308, + 0.0007144073, + 5.953394e-05, + 0.0, + 0.008751489, + 0.028457224, + 0.052211266, + 0.061736695, + 0.045543466, + 0.024349382, + 0.007739412, + 0.0019050861, + 0.00023813576, + 5.953394e-05, + 0.0025004256, + 0.0082156835, + 0.020062938, + 0.032148328, + 0.03006464, + 0.019467598, + 0.0076203444, + 0.0023218237, + 0.00047627153, + 0.00011906788, + 0.00035720365, + 0.0022622899, + 0.00589386, + 0.010597042, + 0.012263992, + 0.011311449, + 0.0056557246, + 0.0026790274, + 0.0005953394, + 5.953394e-05, + 0.0, + 0.00011906788, + 0.00095254305, + 0.0022027558, + 0.0043459777, + 0.0045245797, + 0.0032148329, + 0.00095254305, + 0.00017860183, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00017860183, + 0.0005358055, + 0.0011311449, + 0.00083347515, + 0.00035720365, + 0.00011906788, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00011906788, + 0.00011906788, + 5.953394e-05, + 0.00017860183, + 0.00023813576, + 0.0, + 0.0, + 0.0032743667, + 0.0065487335, + 0.009406363, + 0.00589386, + 0.0023218237, + 0.0005953394, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.009763567, + 0.020420142, + 0.027207011, + 0.02113455, + 0.010418439, + 0.0033339006, + 0.00047627153, + 0.0, + 0.0, + 0.0, + 0.014407214, + 0.03173159, + 0.053104274, + 0.052389868, + 0.030183708, + 0.012918865, + 0.0034529686, + 0.0005953394, + 0.0, + 0.0, + 0.0098826345, + 0.034053415, + 0.06608267, + 0.07697739, + 0.057807457, + 0.032148328, + 0.0090491595, + 0.0027385612, + 0.00017860183, + 5.953394e-05, + 0.0055366564, + 0.02143222, + 0.05072292, + 0.08001362, + 0.076084375, + 0.049472705, + 0.022563364, + 0.0076203444, + 0.0015478824, + 0.00017860183, + 0.0016074164, + 0.008096616, + 0.024349382, + 0.049353637, + 0.06721382, + 0.059712544, + 0.03655384, + 0.013157001, + 0.002798095, + 0.00035720365, + 0.00035720365, + 0.0018455521, + 0.009704032, + 0.021968024, + 0.039828207, + 0.047984358, + 0.031612523, + 0.012323526, + 0.002798095, + 0.0006548734, + 0.0, + 0.00023813576, + 0.00196462, + 0.0073226746, + 0.016133698, + 0.02024154, + 0.016550435, + 0.0073226746, + 0.002798095, + 0.00083347515, + 0.0, + 5.953394e-05, + 0.00017860183, + 0.0013692806, + 0.00422691, + 0.0066082673, + 0.0066082673, + 0.002976697, + 0.001071611, + 0.00017860183, + 0.0, + 0.0, + 5.953394e-05, + 0.0, + 0.00041673757, + 0.0007144073, + 0.0013097468, + 0.001071611, + 0.0002976697, + 5.953394e-05, + 0.00095254305, + 0.002143222, + 0.0022027558, + 0.002083688, + 0.0007144073, + 0.00035720365, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0015478824, + 0.0051794527, + 0.008989625, + 0.008930091, + 0.004762715, + 0.0017860183, + 0.00023813576, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.0036315704, + 0.009823101, + 0.023158703, + 0.029945573, + 0.020658277, + 0.010180304, + 0.003988774, + 0.0008930091, + 0.00011906788, + 0.0, + 0.0034529686, + 0.01434768, + 0.033041336, + 0.05304474, + 0.0522708, + 0.03667291, + 0.017264843, + 0.0033934347, + 0.0005953394, + 5.953394e-05, + 0.0028576292, + 0.011073313, + 0.033398543, + 0.06709475, + 0.08906277, + 0.082275905, + 0.047567617, + 0.017026708, + 0.0033934347, + 0.00011906788, + 0.0007739412, + 0.006131996, + 0.022861034, + 0.06268924, + 0.11370983, + 0.12591429, + 0.08519307, + 0.034529686, + 0.009406363, + 0.0013692806, + 0.00023813576, + 0.002024154, + 0.0098826345, + 0.035779897, + 0.078644335, + 0.11496004, + 0.091503665, + 0.04971084, + 0.013097467, + 0.0023218237, + 5.953394e-05, + 0.0005953394, + 0.0031552988, + 0.015181155, + 0.03923287, + 0.06346318, + 0.060784154, + 0.033934347, + 0.012263992, + 0.0023813576, + 0.0, + 5.953394e-05, + 0.00047627153, + 0.0033934347, + 0.011073313, + 0.02143222, + 0.02476612, + 0.01720531, + 0.0073226746, + 0.002083688, + 0.0, + 0.0, + 0.0, + 0.00035720365, + 0.0017860183, + 0.0045841136, + 0.005834326, + 0.005000851, + 0.0031552988, + 0.00041673757, + 0.00011906788, + 0.00047627153, + 0.0005358055, + 0.00047627153, + 0.00041673757, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0005953394, + 0.001012077, + 0.0017264843, + 0.0022027558, + 0.0017860183, + 0.00083347515, + 0.00017860183, + 5.953394e-05, + 0.0, + 0.0, + 0.0005953394, + 0.0025004256, + 0.0054175886, + 0.009763567, + 0.0086324215, + 0.006370132, + 0.0032743667, + 0.00047627153, + 0.00011906788, + 5.953394e-05, + 0.0006548734, + 0.004048308, + 0.012621195, + 0.024230314, + 0.03125532, + 0.029528834, + 0.017860182, + 0.0062510637, + 0.0011906788, + 0.00011906788, + 0.0005953394, + 0.004167376, + 0.0163123, + 0.04107842, + 0.07340535, + 0.08519307, + 0.05947441, + 0.024647051, + 0.0054771225, + 0.0007144073, + 0.00023813576, + 0.002917163, + 0.014288146, + 0.049294103, + 0.1138289, + 0.15377617, + 0.12859331, + 0.06661848, + 0.018217387, + 0.004048308, + 0.00023813576, + 0.0011906788, + 0.008334752, + 0.036315706, + 0.106268086, + 0.18205479, + 0.17050521, + 0.09906448, + 0.03536316, + 0.007918014, + 5.953394e-05, + 0.00017860183, + 0.0036315704, + 0.01690764, + 0.06262971, + 0.119603686, + 0.1394285, + 0.09573058, + 0.036434773, + 0.008751489, + 0.0, + 0.0, + 0.0007144073, + 0.005953394, + 0.020122472, + 0.050246645, + 0.06620174, + 0.051258724, + 0.025897264, + 0.0054771225, + 0.0, + 0.0, + 0.00011906788, + 0.0005953394, + 0.0046436475, + 0.01238306, + 0.017562512, + 0.016609969, + 0.008870557, + 0.002083688, + 0.0, + 0.0, + 5.953394e-05, + 0.00017860183, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 0.00023813576, + 0.00041673757, + 0.00023813576, + 0.00023813576, + 0.0005358055, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00017860183, + 0.00095254305, + 0.0013692806, + 0.00196462, + 0.002083688, + 0.0014883485, + 0.0007144073, + 0.00011906788, + 0.0, + 5.953394e-05, + 0.00041673757, + 0.0025599594, + 0.007739412, + 0.013395137, + 0.015181155, + 0.010299372, + 0.004286444, + 0.0015478824, + 0.00011906788, + 5.953394e-05, + 0.0005953394, + 0.004762715, + 0.017919715, + 0.038816128, + 0.055485632, + 0.04512673, + 0.024230314, + 0.007441743, + 0.00095254305, + 0.00017860183, + 0.0007144073, + 0.0051794527, + 0.027385613, + 0.07114306, + 0.12549755, + 0.13002212, + 0.071917, + 0.02583773, + 0.0054175886, + 0.0, + 0.00041673757, + 0.0037506383, + 0.024408916, + 0.081799634, + 0.1662783, + 0.20039125, + 0.14020243, + 0.055723768, + 0.011966323, + 0.0, + 0.00041673757, + 0.0023813576, + 0.01375234, + 0.06197483, + 0.13686854, + 0.1929495, + 0.15234736, + 0.06757102, + 0.015478824, + 0.0, + 0.0, + 0.00047627153, + 0.0057152584, + 0.026790274, + 0.07036912, + 0.105256006, + 0.099124014, + 0.048996434, + 0.012144924, + 0.0, + 0.0, + 0.00011906788, + 0.0011906788, + 0.0073226746, + 0.017741114, + 0.03333901, + 0.030481378, + 0.018038783, + 0.0044650454, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.00017860183, + 5.953394e-05, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 5.953394e-05, + 0.00023813576, + 0.0007144073, + 0.00083347515, + 0.0005953394, + 0.00011906788, + 0.0, + 0.0, + 0.0, + 0.00023813576, + 0.00041673757, + 0.0013692806, + 0.0038101722, + 0.0054175886, + 0.0045841136, + 0.002798095, + 0.0006548734, + 0.00011906788, + 0.0, + 0.00011906788, + 0.0011906788, + 0.0046436475, + 0.01208539, + 0.024885187, + 0.02446845, + 0.014228612, + 0.0056557246, + 0.00083347515, + 0.0, + 0.00011906788, + 0.0018455521, + 0.0075012767, + 0.030183708, + 0.05947441, + 0.072036065, + 0.05322334, + 0.020003404, + 0.00392924, + 0.0, + 0.00011906788, + 0.0011311449, + 0.011549585, + 0.04286444, + 0.10388672, + 0.14431027, + 0.11269775, + 0.048222493, + 0.012561661, + 0.0, + 5.953394e-05, + 0.00095254305, + 0.00815615, + 0.035303626, + 0.102160245, + 0.15526451, + 0.13954756, + 0.0685831, + 0.018455522, + 0.0, + 5.953394e-05, + 0.00041673757, + 0.002798095, + 0.018515056, + 0.056259573, + 0.0978738, + 0.0947185, + 0.05060385, + 0.013930942, + 0.0, + 5.953394e-05, + 5.953394e-05, + 0.0007739412, + 0.005358055, + 0.01690764, + 0.032445997, + 0.033874813, + 0.019408064, + 0.005834326, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 0.00023813576, + 5.953394e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.953394e-05, + 5.953394e-05, + 0.00023813576, + 0.0006548734, + 0.00047627153, + 0.001012077, + 0.0005358055, + 0.00023813576, + 0.00011906788, + 0.0, + 0.0, + 0.00017860183, + 0.0008930091, + 0.0026194935, + 0.00559619, + 0.0066082673, + 0.003869706, + 0.0016669503, + 0.00035720365, + 0.0, + 0.0, + 0.0002976697, + 0.0014288146, + 0.0072631408, + 0.017264843, + 0.027266545, + 0.02143222, + 0.009763567, + 0.0017860183, + 0.0, + 0.0, + 0.00041673757, + 0.0027385612, + 0.013157001, + 0.036196638, + 0.056973983, + 0.0491155, + 0.025718663, + 0.007977548, + 0.0, + 0.0, + 0.0002976697, + 0.0023813576, + 0.013454671, + 0.04215003, + 0.072988614, + 0.069416575, + 0.037804052, + 0.010418439, + 0.0, + 0.0, + 0.00011906788, + 0.0014288146, + 0.0073822085, + 0.02810002, + 0.049175035, + 0.049829908, + 0.030719513, + 0.008572888, + 0.0, + 0.0, + 0.0, + 0.0005358055, + 0.0023218237, + 0.009227761, + 0.01797925, + 0.020360608, + 0.012561661, + 0.0041078418 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.similar-features.1.json b/common/search/src/test/resources/test_documents/images.similar-features.1.json index 619a4a2d4..db8ae6b38 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.1.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.1.json @@ -183,24 +183,40 @@ "Jones, H. Longueville (Harry Longueville), 1806-1870", "Le Keux, John, 1783-1846" ], - "genres.concepts.label": ["Viewbooks"], + "genres.concepts.label": [ + "Viewbooks" + ], "id": "mbszgbfz", "sourceIdentifier.value": "b12663190", - "identifiers.value": ["b12663190", "1266319", "b3309827x", "3309827"], + "identifiers.value": [ + "b12663190", + "1266319", + "b3309827x", + "3309827" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["fdm55mph", "n2u2uyk6"], + "items.id": [ + "fdm55mph", + "n2u2uyk6" + ], "items.identifiers.value": [ "i1260379x", "1260379", "i12603806", "1260380" ], - "languages.label": ["English"], + "languages.label": [ + "English" + ], "notes.contents": [], "partOf.title": [], "physicalDescription": "2 volumes : frontispiece, add. engr. title page, illustrations, plates, plan ; (8vo)", - "production.label": ["London", "D. Bogue", "1847"], + "production.label": [ + "London", + "D. Bogue", + "1847" + ], "subjects.concepts.label": [ "Architecture", "history", @@ -227,1118 +243,5128 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], + "locations.license.id": [ + "pdm" + ], "source.contributors.agent.label": [ "Wright, Thomas, 1810-1877", "Jones, H. Longueville (Harry Longueville), 1806-1870", "Le Keux, John, 1783-1846" ], - "source.genres.label": ["Viewbooks"], - "source.genres.concepts.id": ["gwr26qnc"], + "source.genres.label": [ + "Viewbooks" + ], + "source.genres.concepts.id": [ + "gwr26qnc" + ], "source.subjects.label": [ "Architecture - history", "Cambridge (England)", "University of Cambridge" ], - "source.production.dates.range.from": [-3881520000000] + "source.production.dates.range.from": [ + -3881520000000 + ] }, "vectorValues": { - "features1": [ - -0.96064323, -2.9635763, -0.61254483, -1.0801642, -1.3505843, - -2.1326683, -1.1972547, -0.15868744, 0.3301494, -0.6424842, -1.0608147, - 1.5831988, -1.0473446, -0.5343054, -1.2278874, -1.261796, -0.35973728, - 0.39184552, -0.79898155, 0.40824103, -1.2506745, -1.0019491, - -0.25134116, -0.106528774, 1.1678596, -0.93738574, 0.43666503, - 0.37576357, -1.4831433, -1.4696674, -1.0855408, -0.65550727, -1.0637217, - -0.64971846, -0.21414182, -0.43803972, 0.816738, 0.8696321, -0.77140594, - -1.0502264, -0.91060096, -1.6695486, 0.13784839, 2.4732823, -1.4560844, - -0.124220036, 0.35304862, 0.35090628, -0.8319408, -1.4376863, - -0.013024583, 0.8633408, 0.23878016, 0.5771847, -1.6181052, -2.2925286, - 0.4774149, -0.64327246, -0.543451, -0.6077053, -0.5614968, -1.01482, - 0.26586813, 0.032406714, 1.3542213, -1.2110237, -1.8140959, -1.672838, - -0.034860298, -0.9794728, -0.11696434, -0.9064295, -1.7373191, - -0.16487323, -0.20083505, 0.3008782, -0.0002823919, -1.326009, - 0.42053908, -1.0262804, 2.4460533, -1.1513729, 0.44370568, -0.6291456, - 0.7909002, 0.15259312, -0.8331111, -0.58716035, 1.2134169, -0.8202864, - -0.93576455, 0.34162775, 0.18330017, 1.2393339, 0.9940324, -1.3224169, - -1.7828434, -0.5816314, -0.31705588, -0.51503897, -1.1324437, 1.2632729, - -0.09570511, -0.40554, -0.8131452, -1.0166503, 0.038292352, 0.55545783, - 1.0817583, -2.3492236, -0.067498006, 0.44822648, -1.0153381, 0.70794994, - -0.75309104, 0.8026511, -0.50723875, -2.8871076, -0.11542545, -2.316704, - 0.66884947, 1.6601547, 0.013076138, -0.9433279, -1.9093192, - -0.052714936, -0.16324848, 0.5049742, -0.23433456, -0.87272465, - 0.42130503, -2.00035, -0.38173705, 0.014188517, -0.22162291, - -0.49742195, -0.5359167, -1.576203, -0.69738704, -0.049760263, - -1.1942977, -1.0362554, 0.61104494, -0.78773135, -0.85350204, - -0.73706347, -0.8043868, -0.44938803, -1.391728, -0.37916878, -2.028043, - 0.2561034, -0.64471024, -1.0015651, 2.4991703, -0.07207421, -0.85310256, - 0.7349084, -1.3430568, -1.4189111, -1.2603861, 0.36257574, -0.75193834, - 0.7490694, 0.48187128, -1.323472, -0.041968226, -0.5743949, -0.20797046, - 0.35842538, -0.60364807, -1.5548669, -0.16625404, -0.6935805, - -1.0771972, 0.40992537, -0.5299594, 0.5567776, 2.1604204, -1.2795659, - 0.115692645, -0.6733535, -0.0012149476, -0.9983332, 0.023107238, - -1.4363128, -1.5957421, -1.3665631, -1.1286575, -0.16945332, 0.4210264, - 0.24767588, -0.8344965, -1.4633086, -0.07616481, 0.3255415, 1.999828, - 1.03839, 0.5379528, -0.17673513, -0.556234, -0.7056997, -1.2795844, - -0.59272534, -1.4677215, 0.16278099, -1.0182359, -0.948318, 0.70108145, - -0.28561962, 0.40446702, -1.7633169, -0.73488766, -1.4097333, - -0.47140393, -0.8644783, 1.7820293, -0.13379475, -1.683948, 0.41902167, - -1.7651874, 0.118225925, 0.0834727, -1.9912372, 0.5110171, -2.674952, - -1.1151537, 0.8012698, 0.16011581, 0.16021827, 0.074064314, -0.34651053, - -0.2932634, 0.10069291, -1.3862681, 0.15496108, -1.4156263, 0.74604416, - -1.3119487, -0.20686007, -0.5686761, 0.15184861, -0.7839223, - -0.82419926, 0.1102173, 0.6275486, 0.17855872, 0.48002395, 0.25160503, - -0.5030858, -1.7795206, -0.05748155, -0.02007132, 0.4249758, - -0.39599192, -1.4740335, -1.3723049, 0.92588395, -0.49967223, - 0.73864883, -1.1541789, -1.032666, 0.1213904, -0.27365166, -1.2120798, - -0.214212, -0.234097, -1.003151, -0.79044527, 0.24245171, 1.8980603, - -2.1544938, -0.9249646, -0.9409972, -0.8966352, 0.59479266, -0.06227121, - -1.8030239, -0.28124088, -1.9302492, 0.34245342, -1.0108395, - -0.64259374, -1.4672009, -0.20167081, 0.42915523, -0.34108344, - -1.9134367, -0.56929404, -0.01757932, 0.9226765, 0.70772094, 0.14340904, - 0.5857218, -1.8681262, -0.07655188, 0.93535095, -0.22839719, 1.7866955, - 0.11889717, 2.517947, -2.1956167, -1.2137866, 0.7484422, -1.1717794, - -1.9782019, 1.0919018, -0.5156036, -0.84285986, 0.6404897, 0.82599825, - -0.34422407, -0.7914774, -0.5459493, 2.2849095, 0.124456435, 0.15497927, - 0.36330807, 1.0181712, 1.6121293, 0.42158604, 0.7021771, -0.6957105, - 0.4994417, -0.3249518, -2.3586454, -0.41964656, -1.6380054, -0.5548857, - -1.8108108, -0.10936772, -0.92951745, -0.315868, -0.5278487, - -0.73719925, 0.640394, 1.0503336, 1.9198046, -0.41373834, -0.9834647, - 1.282865, -0.9460363, -0.47208005, 0.5070219, -0.3563103, -0.9842767, - 0.47750443, -1.2931421, -0.09166697, -0.9531131, -1.1015275, 1.3349564, - 0.6504003, -0.18571958, 1.5349909, -0.4822663, 0.20837091, 1.2927438, - -0.06617834, -0.71340257, -1.2062814, 0.57779324, -0.32832035, - -0.3744312, -1.197986, 0.36481377, -0.54003364, -0.44339377, -1.0656173, - -0.27138835, -0.7400067, 1.8960146, -0.48386738, -0.5255254, 2.0805857, - -0.3686367, -0.29344133, -1.0335715, -0.66669613, -0.09235157, - -0.7330412, -1.1029783, 1.2795156, 0.71303463, 0.6381199, 0.52308124, - 1.4864953, -0.4110276, 0.89857566, 0.61181587, 0.17898142, -1.1954523, - -0.7156615, -0.06603889, -2.328631, -1.2343054, 0.5321866, -0.42187378, - -0.31233552, -0.23018752, -1.2516972, -0.28470045, -0.116390646, - -0.12266426, -0.92685413, -1.7981045, -0.41191205, -0.21842836, - -1.0502576, -0.227714, 0.8921685, 0.47703236, -0.33370966, 0.3924539, - -0.5124716, 0.24850191, -0.47750026, -0.6823467, 0.0008270126, - -0.14159232, -0.65206414, 0.36053097, 0.21281084, -0.30654627, - 0.8672298, -1.1588621, -1.4694018, 0.8028508, 0.3683363, -0.2626117, - -0.83663434, 0.7659424, -1.0150026, 0.16938205, -0.59171534, 0.4233023, - 0.04814071, 1.3121024, 0.400646, -0.81316984, -2.3556483, -1.2529153, - 0.03082826, 0.26174265, -1.2022456, 1.3352367, -2.038081, -0.4698605, - 0.5656323, -0.45244694, -1.3931518, -1.6521752, -0.62310857, 0.13190787, - -1.3174287, -1.4916114, 1.3564256, 0.12607403, -2.5337334, 1.133514, - -0.7722897, -1.4498311, -1.0400184, 0.15533127, -0.81195897, 0.46457306, - 0.4685513, -1.3385669, -0.6562405, -0.033524796, -1.4138151, -1.7378572, - 0.6109943, -0.6070392, -0.944141, -0.857939, -0.17075133, -0.5633612, - -0.9160895, 1.2955396, -0.18451169, -1.0235809, -0.35187623, 1.1766244, - -0.9206835, -1.0686426, 0.6422881, 1.5055091, 0.8315382, 0.3600861, - -1.6611768, -0.79211915, -1.0726433, 0.89419925, -1.0072348, -0.711099, - 0.9103383, 0.03742149, -1.5396819, -0.07027622, 0.19049549, -2.4878895, - -0.44219175, -0.6163861, 0.834387, -0.24072021, -0.28441465, 1.5770936, - -0.68012965, 0.30200598, 0.38674083, 0.6043839, 0.022344816, 0.08267465, - -1.563071, 1.0547457, 0.20393036, -1.2704195, -1.7200751, 0.4726634, - 1.2382259, -0.72930664, -0.43289337, 0.41008198, -0.59904766, - -0.3322245, 0.56987983, -1.6431665, 1.4725467, -0.9048267, 0.041991018, - 1.058561, -1.084695, -0.6493287, 0.8607338, -0.71389943, -0.96823686, - -1.5937738, -0.05657568, -0.5136431, 0.01690013, -0.4123869, - -0.92673117, -0.12092041, -0.22696246, 0.6360323, -0.0022167563, - 0.44046554, -0.39490208, -0.48061165, 0.6933083, 0.4795813, -0.22269258, - 0.66036904, -0.6894493, 0.009725526, -0.3986492, -0.18185931, 0.2703356, - -2.2824974, 0.0878976, -0.21114819, -0.9010112, -0.76116264, 0.7532022, - 0.7379807, 0.1634922, -0.7629181, -1.5798662, -1.3578287, -0.5815855, - -0.9581288, -1.0470695, 0.11871664, -0.92022085, -0.83404714, - 0.68555915, -1.409198, 0.0037902743, 0.6824323, -0.41160247, -0.945565, - -0.33353513, 0.13514155, -2.5655262, -1.6281666, -1.122571, - -0.029294685, 0.38277683, 0.22817639, -0.9115539, -0.81158435, - 1.5964687, 0.09594476, -0.31164736, -0.13953291, -0.081828244, - 0.5691014, -1.9127818, 0.5761872, -1.1042912, 0.24319959, -0.5293415, - 1.0077919, 0.8097436, -2.086752, -2.2346036, -2.0177128, -0.08134478, - -0.51362014, -0.7734085, -0.3258093, -0.46550012, -1.1329228, -1.292984, - -0.019739304, 0.9653293, -0.5955093, -0.83845484, 0.29096466, - -0.7174915, 0.004145831, 0.5503731, 1.0890813, -0.18148682, -1.0958188, - -1.3547833, 0.5662432, -0.46702257, 0.73051494, -1.0065658, -0.52191633, - -1.4190851, -0.019815516, -0.9003732, -0.9624062, -1.1712453, - -1.0709406, -1.1629515, -1.678102, -1.9070274, 0.50399303, -0.8301027, - -1.4820656, -0.63474643, 1.3874981, -2.2721474, -0.30568713, -1.2086074, - -1.8359174, 1.4985465, -0.79904747, -0.6132103, -1.7092874, -0.5437408, - 0.3949937, -0.56821305, -0.071300596, 0.50744116, 0.7183236, 0.25713438, - -1.2432523, -2.111744, -0.33145463, 0.09754476, -1.4599066, 1.5490447, - -0.69192916, -0.9731354, 0.71136457, 0.033889093, 0.75907105, - 0.08413713, 0.2557644, -0.52351165, -0.2639826, -1.8691435, -1.821547, - -0.24428937, -0.6568428, -0.17607176, 0.14957024, -0.7103105, - 0.32550678, 0.00984066, -0.019561913, -1.109301, -0.13352114, - -1.1700219, -1.2489249, 0.052265488, 1.4052243, -0.76107264, -1.2894711, - -0.8268095, -0.2530757, -0.13848881, -1.3614042, 1.5506161, -0.9467258, - 0.07247486, -0.14981984, -0.9564455, 0.28310624, -0.96239096, - 0.069128215, -0.04218425, 0.026785476, -0.69712543, -0.11351381, - -0.73567784, 0.63706475, -1.6533715, -0.64080125, 0.06371817, - -1.3483369, -0.23720345, 1.6660696, -1.0051299, -0.04046038, 0.3168236, - -0.14469598, -0.16848484, -0.11560947, 0.96866107, 0.1766229, - -1.1489503, 0.68752784, -0.089426205, 1.1119038, -1.113613, -0.9930029, - -0.9202908, 1.5670879, 0.670023, -1.3865213, 0.8343756, -0.4405547, - -0.6672914, -0.845316, -0.684435, -1.5307736, -1.8914527, -1.2569681, - 0.29085138, 0.5080417, -0.8924133, -0.19914871, -1.8004917, -1.483259, - 1.4730219, -1.0410552, 1.1411556, -1.3873891, 1.4324584, 1.2450544, - -1.7333305, 0.093896866, -0.9141043, -2.6205535, -0.29938185, - -1.4977108, -1.7145759, 0.5189966, -1.8940294, 0.39317277, 0.6067359, - 0.25448054, -0.98730254, 0.6111625, -1.084453, -0.92439723, 1.6636465, - -0.47899175, -1.4073619, -0.3364527, -1.9646143, -1.2709057, - -0.64253825, 1.317673, -1.2965772, -0.29165316, 0.48366952, -0.08982505, - 0.49251163, -1.907766, -0.69138145, -0.04184034, -0.4601176, -1.293708, - -0.824725, 0.7887868, -0.040620156, -1.5001411, 0.19314158, -1.2787896, - -1.5244838, -3.773229, 0.17343225, -1.7525698, 1.9642459, 0.11147257, - 0.994316, -1.0944664, 0.68496215, -0.06369538, -0.42910042, -0.14962912, - -1.8407793, 0.68841857, -1.0451964, -1.2425212, -1.2791266, -1.1718694, - 0.18605956, -1.1126044, 1.4316118, 0.3770203, -0.4414904, -1.3087442, - 0.9407676, -0.9016386, 1.0290382, -1.5506738, -0.5467624, 0.04011583, - 0.06848032, -1.0711589, -0.32710832, -1.3289894, -0.3969379, -2.2442822, - -1.2203509, 1.1088551, -0.8246946, -0.89213586, -1.0701401, -0.70435685, - -0.12345466, -0.010946792, -1.8710179, 0.11658116, -0.7671352, - -0.9401109, -0.8042921, -1.6635934, -0.1710093, -1.249309, -1.6323843, - -0.4633867, -1.7290603, -0.15803106, -1.5542878, -0.9706021, -1.3841988, - 1.3072495, 1.9962056, 0.7063892, -1.2337961, -0.9821862, -0.74584347, - -0.5436404, -3.2296999, 1.0419005, 0.5089604, -0.33036286, -0.6378782, - -1.8172387, -2.8157656, -0.69448704, -1.544089, -0.29187822, 0.9560931, - -1.9607129, -0.4632351, 0.42997387, -2.0042174, -1.9650534, -1.3562541, - -0.96660185, -1.455507, 1.0638069, 0.15546016, -0.6064119, -0.93633664, - 0.7466167, -1.0934862, 1.1187059, -0.066622, -0.47926682, 0.49267825, - 0.45102406, -1.1745642, -1.1324047, -0.38763288, 0.7151549, -1.5643754, - -0.15299611, 0.6897012, -1.021445, -0.06213381, -1.7323353, -0.93509316, - -0.8574189, -0.68456686, -0.31021136, 0.31539035, 1.0589421, 0.9677671, - -1.394235, -1.4162443, 0.30050272, -0.9297183, -0.6925332, -0.47106737, - 0.6574067, 0.030034382, 0.4226546, 1.0911882, -0.618994, -0.936178, - 0.3211211, 0.17383, -1.2874252, -0.13536301, -1.1236986, -0.91231143, - -1.4444268, -1.095593, -1.1549431, -1.0624434, -0.7132162, -0.3187185, - -0.09808195, -1.0999442, -0.38320857, -0.40528023, -0.8334522, - -0.94067234, -1.1366609, -0.4137447, -0.44918284, -1.7501212, - -0.4917944, -2.1663785, 0.7122425, 1.0587485, -0.7719945, -1.1803292, - 1.6872298, -1.4949833, -0.1891233, 0.11381095, -1.4205323, -1.3910105, - 0.6614302, 0.3948267, -1.2833234, -2.0705185, -0.90257806, 0.12508324, - -0.57049555, -0.89063567, 0.00019665435, 0.6572261, 1.1497487, - -0.6449869, -0.20274597, 1.1324981, -1.2378962, -0.4320404, -1.3692303, - 0.7102259, 0.8720409, -2.8093944, 0.40590197, -0.56954277, 0.84435976, - 0.1729781, -0.022500915, 0.14446376, -0.035891935, 0.09179749, - -1.1218722, -0.59576, -0.4070505, 0.5623758, 1.6290286, -0.954004, - 0.104757935, -1.2248982, -2.1931868, -0.8684146, -2.3624625, 0.20914586, - -0.2648971, -0.9376655, 0.6191341, -1.9103258, 1.4643774, -1.1055664, - -1.2115408, -1.2834904, -0.2300866, -1.4766915, -0.15964216, -1.4321275, - -0.1440492, -1.4201756, -0.5567831, 0.3733379, -0.07716824, 0.28464824, - -0.31339812, 0.6500235, -1.6752647, 0.082589656, 0.043804415, 0.8396358, - -1.0949911, -1.1288254, -0.41031876, 0.026487933, -0.30767143, - -0.8053941, 0.12250445, -1.2484988, 0.3533993, -0.5306299, -0.6187217, - 0.7403103, -0.14943549, 0.6370334, 0.66701394, -0.026506308, -0.3882553, - -1.213851, -0.83822244, -0.26536787, 0.10028833, 0.6244151, -0.53089106, - -1.0482699, -1.1209248, -0.939531, -0.41350532, 0.9931343, 0.30622816, - -0.9781777, -1.2289283, -0.87016237, -1.6770176, -0.87427753, - 0.34132752, -0.26818624, -0.27472112, 0.25311565, -0.3724025, - -0.111849025, -0.71879613, -0.11512589, -0.170369, -1.2429264, - -0.107870504, 0.35901088, -0.335351, 1.0604163, -0.06387178, -1.6311802, - 0.4773984, -1.0874703, -1.5892432, 0.07788828, 1.1669526, 0.72850305, - -1.0269519, -0.9230768, -1.4584448, -2.0338225, 1.4198674, -0.07800289, - -1.5265255, -0.72945917, 0.47476554, 0.70542645, -1.7507284, - -0.42508256, -0.9691695, -0.03719038, -0.33861083, -0.19942117, - -0.7415698, 0.53293395, -0.43873715, 0.31528872, -0.41514513, - -1.2744128, -0.14190792, -0.5195377, -0.64957356, -0.42900696, - -1.0628581, -1.3577744, -1.8104268, -0.23621033, -0.6411946, -1.2221873, - -0.67760664, -1.441453, 1.5905117, -0.2520141, -0.6676612, 1.6978097, - -0.793087, 0.016577445, -0.38964093, 1.4846892, -0.45576656, 0.99561733, - -0.17864619, 0.94926447, 0.5600935, 1.1928205, 0.035721, -1.6717232, - 0.7519324, 0.6641687, -0.25188947, -0.10581406, -0.2575297, -0.76857495, - -2.6139748, -0.16643351, -0.48508883, -1.3565148, -0.28536826, - -1.3519529, 1.6672406, 0.24717939, -0.75508815, -0.94352245, 0.34791952, - 0.36019424, -0.2870281, -2.1915827, -1.5713574, 1.7345352, -1.2723848, - -0.6294661, 0.4770695, 0.15439801, -0.48807555, 0.2342928, -0.19504356, - -0.7152152, -1.0391858, -1.8666552, 0.28473973, 0.4514127, -2.108195, - -0.30387533, -1.6590664, -1.6868165, -0.96356946, 0.41316825, - -0.035116605, -0.47233108, -1.0462795, -1.186508, 0.2318863, -1.6147218, - 0.16095507, -2.2601523, 0.9525394, -0.50114465, -0.6025893, -1.876412, - 1.8003417, 0.9171982, -1.7543685, 0.43211266, -1.4259169, -0.4470075, - -0.9073219, 0.48330867, 0.17871046, 0.028042391, 0.36641884, 0.9420477, - -0.18317446, 0.30855274, -0.35025156, -0.44106156, -0.18090338, - -1.2126262, -1.3997893, -1.2616149, 0.23350261, -1.0977966, -0.7530656, - -0.72522545, -0.15858048, -1.27739, -0.3919709, 0.41756117, -1.1399963, - 0.3741325, -0.26669538, 0.10781464, -0.056292735, -1.7987082, - -0.9679728, -0.6981724, -1.164394, -0.4363626, -0.43895742, -0.07647647, - 0.28281888, -0.711833, -0.5462559, -0.6359237, -0.7326505, -0.15924996, - 0.0069496855, 0.41181302, -1.2350717, -0.4080152, 0.11236121, 0.4657517, - 1.283697, -1.6339965, -1.5098177, -1.0607525, -0.1923758, -0.3710802, - -3.3964915, -0.9766978, 0.4616181, -0.76871073, 0.6308637, -0.52457184, - 0.71546566, -0.54483855, -1.0746505, 0.23048767, 0.015020069, - -0.7131343, -0.9682052, -0.51928836, -0.2635644, -0.14971158, - 0.32845253, 0.7727623, 2.2335937, 0.15776716, -1.381201, -0.3107953, - 0.5924469, -0.39529765, 1.4020735, -1.2201792, -0.7002035, 0.33913288, - 0.9882563, 1.2805312, -1.025128, -0.78659683, -1.2584033, 0.50865257, - 0.85547346, 0.7298345, -0.66637856, -0.86030716, -0.7591158, -1.0922266, - 0.5314383, -0.7209457, -0.02519235, -1.8491411, -0.38582468, 0.3466463, - -0.9432684, -0.80909294, -0.9974169, 0.23336613, -0.6662215, - -0.13595629, -1.343122, 0.38610643, 0.28209049, -0.036097642, - 0.23934788, -0.956675, -1.4534388, -0.4586775, 0.7842509, -1.0305961, - 0.15162703, -0.8313933, -0.06604656, -0.26582107, -0.9643905, - -0.4492861, -0.26926634, -0.8171541, 0.066594794, -0.056495257, - -0.40350628, -0.64281315, -0.80556387, 0.6701032, -1.0540185, - -0.69648266, -1.4918737, -0.9836874, -0.44147402, -0.41548473, - 0.76565385, -0.25099406, -1.438852, -0.16767097, -0.351711, -1.2812386, - 0.39606196, 0.5498436, 0.26432377, -0.69301146, -1.2242179, 0.21115826, - 0.35786954, 1.3732873, -0.6129404, -1.9632497, -1.3346304, 0.82336986, - -0.5294216, -0.36336175, -0.8964551, -0.32053155, -1.4291204, - -0.90345275, -0.6606481, -1.4927568, -1.5735463, -1.2510735, -0.7379159, - -0.59021246, -0.17010082, -0.3123202, -0.14332135, -0.6987985, - -0.6662197, -1.3083159, -0.3773557, -0.8773059, 0.018502314, -1.436317, - -1.956219, -1.3710213, -0.62507284, -0.908594, -0.91247255, -0.7687938, - -0.7212801, 0.2868309, -0.27450928, -0.5388708, -1.4836024, 0.3021864, - 0.58618474, 0.049505074, -0.34611475, -0.77995414, -0.9923838, - -0.32128066, -1.412022, -0.041714657, -0.5486757, -0.99425155, - 1.4808956, 1.9920518, 0.62553006, 0.10748903, -1.021275, -0.12529702, - 0.34042868, 0.5386203, -0.20549199, 1.426266, -1.9121709, -0.23818228, - 0.38715163, -0.21322861, -0.57663953, -2.242633, -0.8058758, -1.3421347, - 0.5617178, 0.6324663, -0.114366315, 0.98667103, -0.22012384, 0.7713553, - 0.64189106, -5.029142e-5, 0.01374872, -0.4018373, -0.6505242, - 0.32118028, -0.6157435, -1.6333667, 0.09101052, 0.23307426, -0.78932667, - -1.1755601, -0.6874307, 0.4765048, -1.4084831, -0.18851823, -0.26451546, - -0.8003051, 0.09944925, 0.816874, -1.0043705, -0.9271506, -0.34602094, - 0.0042059533, -2.1680033, -0.4091946, 0.055477627, -0.80142593, - 0.1573692, -1.0959499, -1.1097984, 1.3094909, -1.2111001, -0.13815531, - 0.2548116, -0.72137386, -0.27620465, -0.5609999, -0.7559497, 0.2601467, - -1.6578991, -0.5294764, -1.0941685, -0.69371754, 0.3974907, -0.3214544, - -0.131205, 1.6429008, -0.72590315, -1.0923727, -1.4538237, -0.7888151, - -0.4185687, -1.9334089, -0.27011746, -0.7576093, 0.17209241, -0.5425897, - -1.4750311, 1.1069043, -0.9191465, -0.7436567, 0.16729146, 0.6972374, - -1.0747399, 0.20783377, -0.7754462, -0.78316444, 0.5551221, 0.8839749, - 0.920462, -0.36574256, -1.672035, -0.2436846, 1.0085441, 0.580238, - -1.3541957, -0.64169717, -0.7577122, -0.09793624, 0.47934657, 1.0631734, - -0.615697, -1.1238458, -0.19516897, -0.3364683, -1.413204, -1.1655327, - -0.81167984, -0.013025165, -0.07341343, 0.041421004, -0.87640935, - -0.8612441, 0.3851949, -1.054095, -1.2767196, -1.0069953, -1.3051851, - -0.31807655, -0.11857061, -0.43237078, 0.2524423, 1.745091, 0.44373974, - 0.1122038, -0.085759036, -0.9493026, -0.6735912, -0.07167673, - -0.4524284, -0.89300716, 0.81889415, -1.2936616, 0.711621, -0.01327949, - -1.2418278, -1.4868317, 0.06355922, 0.07192039, -1.3825512, -0.6903199, - -1.5964684, -1.1960266, -1.0569016, 1.0055953, -2.3259182, -1.2747965, - 0.32388824, 0.18343966, -2.089714, 0.43478423, -0.64643234, 0.43334305, - 0.36181435, -0.20421672, -0.8859115, -1.2211869, -0.053949717, - -0.50849485, -1.3111217, -0.6437532, -0.7334899, -1.0572227, 1.7333038, - -1.0154932, -0.2962695, -0.12607223, -0.65822655, -1.1978947, 0.6437884, - 1.1937175, 0.25003314, 0.035847537, 0.3035981, -0.9203923, -0.82340044, - 0.15524003, -0.7043616, -0.41757017, -0.7078394, -1.0468512, 0.5719651, - -1.2935395, 1.4401299, 0.82848877, 0.08289497, -1.101442, -0.41324586, - -1.3667252, -1.5040044, 0.55336004, -1.9854779, 0.24944627, 0.6778976, - -2.592246, -0.35735664, -0.13961062, -0.2740195, 0.026343208, -0.506892, - -0.25330263, -0.23694739, -2.8768964, 0.5826165, -1.375952, - -0.064624004, -0.7136011, -0.3667506, -0.16093063, -1.1753688, - -0.53663254, 0.2707258, -0.81432545, -0.7857101, 0.10208605, - -0.24810815, -0.4480818, -0.2770399, -0.065084495, -2.1049423, - 0.22542714, -0.98154265, -1.3552092, -1.4923072, -0.9830778, - -0.04305461, -0.32265335, -0.9312069, -1.5545685, -0.36696392, - 0.3634873, -1.3393599, -1.3278224, -0.7062261, -2.2481823, 0.94570196, - 0.5798462, 0.2991392, -1.1369749, -1.5260774, -0.087289006, -0.55882764, - -0.08917187, -0.5792683, 0.0335759, 0.24819417, -0.7852561, -1.4004346, - -0.5709748, -1.2091124, -0.10007368, -0.45194498, -1.1150855, -2.013368, - -0.61242384, 0.28428215, -0.49410158, -1.5953364, -0.00065041333, - -0.39436275, 0.989526, 1.1196204, 0.7141381, -0.35596445, -0.8127194, - 0.17409995, -0.9180574, -2.1762495, 0.61797637, -0.07594233, - -0.21779215, 0.97935164, -1.7660923, 0.22628611, 0.08285989, -1.46541, - -1.074296, -0.77677345, 1.1901498, -0.097699255, -0.92084897, - -0.26680425, -0.727337, -0.47452983, -0.14370216, -0.45974407, 1.255477, - -1.2091938, -1.0579827, -1.690129, -0.572809, -0.30785397, -0.1638818, - -0.587554, -1.1365091, -0.3305003, -1.7457844, -0.48055848, 0.34413576, - -0.9637579, -0.18915084, -0.15556186, 0.5417997, 0.46599826, 1.3931881, - 0.3113426, -1.3867759, -1.8668518, -0.9901811, 1.4213254, -0.20044097, - -1.9564495, -0.86977506, -0.12506042, -0.4831188, 0.24684274, - -0.021370597, 0.53330714, -1.2712693, 0.39089075, 0.04473177, - -1.6961813, 0.56036866, -0.7153377, -1.1131738, -0.70380735, 0.08576594, - -1.0444741, -0.95851123, 0.113493584, 2.9107835, -0.34600133, - -0.119239144, -0.7488647, -1.7423038, 0.15298049, -1.0541221, - -0.17252062, -0.96456206, -1.233531, -0.5541518, -0.21502268, -0.701501, - 0.6483581, 0.2907429, -0.33221504, -0.66762954, 0.21106088, 0.36852142, - 0.24381597, 1.145886, -0.6557655, -1.1712877, -0.80743724, -0.590166, - -0.22215599, -0.75958306, 1.4571853, 0.4115895, -0.74707246, -0.6233196, - -0.58966076, -0.541785, -0.72801316, 0.43259388, -2.2069707, -0.1879465, - -1.6551845, 0.14613095, -1.1997579, -0.43066168, 0.22986718, 0.24807875, - -1.9116849, -0.2594322, 0.4318274, -1.4559816, 0.9943923, 1.7546376, - 0.27072453, -0.9985943, -1.2518454, -0.5417705, -0.67690027, 1.324526, - -0.6141249, -0.87207603, 0.45801565, -0.5122987, 0.24006185, - -0.76117206, 0.27922124, 0.33646804, -0.4317276, 2.0218356, -0.24086548, - -1.4329627, 0.4821063, -0.27066675, -1.297252, -1.0698606, 0.511637, - -0.15240008, -0.89468396, -0.92818916, -1.0290425, 0.23293132, - -0.86269075, -0.85665184, 0.2943678, -0.7329879, -0.98372877, -0.580854, - -0.24068111, -0.15549165, -0.22331366, -0.74718773, 0.24920608, - -1.0925858, -0.9481021, 0.06579153, -1.5285214, -1.2849826, -0.80948937, - -1.3563709, -0.64589405, 0.41067126, -0.14705247, -0.65054387, - -1.310365, -0.108496554, -0.21649358, -0.06739762, -0.68617773, - -1.2494785, 0.49951476, -0.83467156, -0.7807714, -0.4623056, - -0.30765402, -1.4457015, 1.2138152, -1.5108178, -0.55927706, - -0.111763835, -0.42050374, -0.47050002, -0.03220892, 1.5136018, - -0.9955916, -0.49058682, 1.2053186, -0.8002854, 0.33082944, -1.5436486, - -0.56696033, -0.52956486, -0.5909446, -0.696346, -0.47980598, - -0.42027026, -0.0025519617, 0.6900369, -1.2145042, -1.3378375, 1.4442, - -2.221475, 0.30068046, -0.12492461, 1.2886369, -1.0845027, -0.44135156, - -2.5889156, -0.22401854, -0.30613637, -0.99614996, -0.45427337, - -0.33196276, -1.1494232, -1.8509277, -1.8310153, -0.6918805, 0.6540534, - -0.08116079, -0.7079355, 0.36985627, 0.39820594, -0.3240361, -1.3864158, - -0.27990088, 0.93270314, -0.8072064, 1.3076583, -0.7609945, 0.057289794, - -1.6195849, -0.7882468, 0.91457117, -0.2194319, -0.7782602, -1.0003651, - 0.3523003, -0.05413877, 0.0036057308, -1.5421866, -1.4658661, - -0.4248816, 0.28583235, -0.26610625, 1.1430067, -1.8678219, 0.18395431, - -0.600369, 0.47096726, 0.7850319, -1.4590755, -0.311828, 0.7453793, - -0.20841733, 0.9751375, -0.55543137, -0.9728615, -1.4836742, - -0.25819337, -1.0824627, 1.4184468, -1.0624726, -1.5327396, -0.63312155, - -0.5178466, 0.81194997, 0.26512265, -0.14385484, -0.60142934, 1.1706427, - -1.4331771, 0.453747, -0.85569566, -1.5565726, -1.1650314, -0.11792792, - 0.7662172, -0.56616175, -0.47813565, -0.62419045, -1.3931149, 0.9662146, - -0.6991319, 0.20044911, 0.92267245, 0.4084546, -0.66909117, -2.467002, - -1.8397727, 1.1343844, -1.9415058, -1.205627, 0.47627443, 0.63386166, - -2.0930636, 0.02460761, -0.0814295, -0.25350523, -1.2834454, -0.5289549, - -0.0494879, -0.8307725, 0.05043547, -1.3315164, -0.7177784, -0.38711458, - 0.35973033, -1.8291829, -1.0779076, 0.18135472, -0.97712326, -0.7310529, - 0.64598835, -0.11211321, -0.43186355, 1.0109746, 0.8853877, -1.6348642, - 0.5249324, -0.3263679, 0.73780036, -1.621184, -0.4055857, -0.6492169, - -1.1737871, 2.6679964, -0.37206453, -0.45676404, -0.6860413, -1.1369148, - 0.010244429, -0.861611, -0.7409837, 1.1179259, -1.5268296, -1.0999779, - -0.28388166, -0.32663086, -0.07639141, 0.88519394, -0.4505996, - 0.58085895, 1.2906035, 0.03800239, -0.41653436, -1.134606, 0.2983837, - 1.7957679, 1.4448518, -0.4269291, -0.78315395, 1.8937323, 0.05788426, - -0.84834224, 0.32980436, -0.7427126, 1.1395428, 0.7979993, -0.34589058, - -0.77748907, 0.052908033, -0.60614383, -0.15119585, -0.4294997, - 0.26189184, -1.3918276, -1.4684416, -0.019596703, 0.530616, 0.58190465, - -1.3429593, -1.052824, -0.79722255, -0.059863355, -2.339315, - -0.27467996, 1.353613, 0.7986294, 0.31645352, -0.32509744, -0.29752085, - 0.25890544, 0.44621447, -1.2584177, -1.6661502, -0.4759983, -0.5959195, - -0.6230942, 1.2809106, 0.45708913, -0.42839283, -1.1064456, -0.04405786, - -0.613222, -0.5735787, -0.25947762, 0.46652442, -1.1356931, 1.0655848 - ], - "features2": [ - -0.96954703, -0.16179276, -1.6224717, -0.422548, 0.10131411, 0.28351483, - 0.7651847, -0.35218546, -1.3797274, 0.3179295, -0.48964202, 0.72568333, - -1.0001885, 1.9981896, -0.08573663, -0.9452596, 0.63933873, -0.96322757, - -0.88748837, -0.3656211, 0.37465727, -0.72819996, -0.044800766, - 0.4891705, -0.6480122, -0.8780494, 0.3925116, -1.3666416, 0.56482214, - 0.5452856, 1.1089863, 0.0738874, 1.371587, -0.8141855, -1.0111462, - -0.6370345, 0.30237302, -0.45163184, 0.4541335, -0.0033521615, - 0.52103883, -1.1667457, 0.029288106, -0.73141325, -0.98727053, - -1.4858282, -0.9474831, 0.46723402, -1.0133746, 0.5238081, 0.44705313, - -1.1083667, 0.9959668, 1.0715624, 0.52132267, 0.6420111, -0.3388351, - -1.1431062, -2.609333, -0.99277914, -1.4548229, -0.22716883, -1.58296, - 0.009046834, -1.4423647, -0.95519006, 0.07781047, -0.14207461, - -0.50698805, -1.5074022, 1.1588039, -0.9398348, -1.0578974, 0.74174535, - 0.8799876, -0.6300954, -0.5346632, 0.42470753, -0.8551279, -0.036935937, - 0.95086634, 0.3625478, -0.050123163, -1.4758157, -0.92628485, - -2.2553277, 0.30180684, 0.754341, -1.6689093, -1.0532815, -1.4924604, - -1.0893308, -0.49598452, -0.18793258, 0.044857245, 1.2279532, - -1.1258296, 0.102391645, 0.477616, 0.3345062, -1.0865777, -0.5683694, - -0.19692366, 0.4103061, -0.28200626, -0.8862707, -0.92915505, - -0.5630412, -0.034413766, 0.3694737, -1.7280436, 0.19870847, -1.9335916, - -0.56020874, -1.3927771, -0.83962995, -0.28249145, 0.24801372, - 0.66399604, -0.07902302, -0.0816059, -0.17570451, -1.7797623, - -1.9393252, -0.03935411, 0.109747976, -1.3857499, 0.48271284, 0.7191704, - 0.29673216, -0.9630103, 0.64538544, -0.035096735, 0.6212632, -0.5535902, - 0.70198226, -2.29299, -1.1495751, 0.6972311, 0.11697969, 2.0824873, - 0.22328603, 0.07791627, -0.47953704, -0.4776794, -1.2963271, 0.1515038, - -1.0468092, 0.09017364, 0.4723785, -0.5125576, -0.2201995, -0.46779552, - 0.64443535, -0.52936924, 0.22659901, 0.08660943, 0.107118845, - -0.73627317, -1.3090662, 1.0852762, 0.011340342, -0.44580305, - -0.5850304, -0.3237383, 0.028850555, 0.16799407, 0.01910808, - -0.48466566, -1.5923613, -0.32672787, -1.0241575, -1.3135375, 0.5389224, - -0.3746891, -1.0437942, -1.1444182, 0.5670724, 1.0250833, -0.81442285, - 0.49698973, -1.0958616, -0.6012498, 1.1355767, -0.80764234, 1.0679345, - 0.7229706, -0.28152028, -0.4366709, 0.13789007, -0.38369262, - -0.18453783, -0.7244923, -0.682308, -1.4671366, -1.2512796, 0.387435, - -1.0379043, -0.5387413, -0.6591103, 0.62218034, -1.0151825, -0.22741435, - 0.15368018, -2.064659, -0.78044075, 0.4935689, -0.27221954, -2.0831208, - 1.4483018, -1.1532053, -0.73451525, -0.28231063, -0.094558485, - 0.13986026, 0.23065662, 0.27559483, -0.16819762, 0.3081478, -0.32030344, - -0.26127797, -0.7160697, -2.0070274, -1.0681773, -0.8521722, 0.49120194, - -0.89374036, -0.4371865, 0.17007366, 0.230811, 0.46615016, -1.8147787, - -1.5864395, -1.2331706, 0.27727857, 0.28628734, -0.49890548, -1.1302722, - -0.93450046, -0.3162539, -0.8118613, -0.35568038, -0.29374102, - 0.07906056, 1.3332464, 0.5479911, -0.71466076, 0.74280155, -1.1981641, - 0.18711355, 0.6180599, -0.7946803, -1.104636, -0.3484867, -1.3726802, - -1.2577772, -0.21510842, -0.85640377, -0.16587318, -0.5251588, - -1.7332591, -0.92208815, 0.41703433, -1.8435462, 0.6269363, -0.1960282, - 0.00685649, 0.662206, -2.1302857, 0.01451666, -0.069765404, -1.6214885, - -0.84501815, 0.47397146, 0.0463671, -0.54106265, -1.1568483, 0.45767233, - 0.21249416, 0.20443127, 0.049903244, -0.83619124, -0.28363386, - 0.29381317, -1.7546096, -1.1510799, 0.21079716, -1.6331201, -0.99314743, - 0.3848797, -0.8790636, -0.8508899, -0.4073024, 0.59874606, 0.15931356, - -1.4028361, 0.063572876, 0.71246696, -1.2086581, -0.02131221, - -0.25518176, 1.2899874, -0.33117527, -1.5577922, -1.8836622, -1.2023059, - 0.14789902, -0.20521459, 1.6710929, 0.31686616, 0.5139259, -0.7594572, - -0.57123333, 0.20113994, -0.41004997, 0.07019495, -2.2339604, - -1.2592947, -0.50683606, -0.32659623, -0.71742344, -1.9939595, - -1.4310021, -0.960675, 0.048461165, -0.22529045, -1.550761, 0.6764561, - -0.628219, -1.9819576, -1.1748521, 0.8711073, 1.0512334, -0.23233509, - -0.56103766, -0.7010534, -0.26913038, -0.07870393, -0.03548789, - -1.3927109, -2.3389423, -2.2770712, 0.53903764, -0.60090274, -3.129045, - -0.25969213, -0.811512, -1.1162407, -1.6415956, -0.7572736, 0.035552073, - -0.017163917, -1.1842339, -0.3303333, -1.003216, -0.4701383, - -0.25507993, -0.6330871, -0.66667414, -0.46677878, 0.019806974, - 0.73435533, -0.60145485, -0.34364513, -0.47269034, -0.84715754, - -0.25173053, -0.47462928, 0.24781822, -0.8319135, 0.5633749, - -0.69322693, -0.30709532, 0.9726341, -0.13456717, -1.6045682, -1.694908, - 0.10860962, -1.1209, 0.10236241, -0.35934395, -1.7787715, -1.6247704, - 0.70932114, -0.9677697, -0.8569818, 0.29627544, -0.634659, -0.36757004, - 0.007384494, -0.52272266, -0.2936398, 2.9790616, -0.6713599, 1.1290448, - -0.080670275, -0.7872379, -0.8171095, -0.23958029, -1.3927312, - -0.5231849, -1.1645583, 1.4731123, -1.3801923, 0.4391257, -0.27899656, - 0.50768495, -0.8491857, -0.8171093, 0.61140394, 0.47510174, 0.108377, - 0.36235496, -1.1486307, -0.40086815, -0.11818108, -1.3872037, - -0.6484682, -2.2252352, -1.1107221, -0.4345171, 0.22681668, -0.91279113, - -1.4455199, -1.085891, -0.5522178, -2.1283574, -1.4285896, -1.0807213, - -1.2107455, -0.4444633, 0.7932068, 0.87054193, -2.1606457, 0.69770986, - 1.0450779, -0.23216502, 1.5382429, -0.6368239, 0.1989297, 1.0055327, - -0.6925311, -0.21642846, -0.5485687, -0.95589805, -0.86100304, - -1.9608307, 0.1421677, -1.4952344, -0.38035226, 0.93456846, 2.0163255, - -0.57295156, 0.9740061, -0.7365346, -0.18572882, -0.2050451, - -0.32430577, -1.7614903, 0.12690374, -1.7496291, 1.1867121, -0.74390244, - -0.97461975, -0.3824316, -0.67624825, -0.37503663, 0.3269943, - -0.10633129, -1.9502511, -0.18828371, -0.2366872, -1.0363753, - -0.38184446, -0.31465012, 0.43608496, -1.2846832, 0.5181778, -0.8093476, - -0.14477685, 0.08185303, -0.60927135, -1.3876451, 0.78742623, 0.6426787, - 0.85723424, -0.81780297, -0.6921432, 0.2107214, 0.51585495, -0.891113, - -1.2613785, 0.580693, -2.3039646, 0.12450555, -1.0427492, 0.05220224, - 1.2146213, 0.05102142, -0.14495176, 0.24899343, -0.0070972852, - -1.0026916, 0.29521573, -0.3063759, 0.04720639, -1.002834, 1.5736709, - -1.92427, -0.87666637, -0.09249322, -0.72656024, 0.123678446, - -1.6037383, 0.0989639, -2.1604683, -0.9448724, 1.2495441, 0.997452, - 0.55414957, -1.484404, -2.1326692, 0.039544724, 0.75614625, 0.34352863, - -0.24332082, -1.0084054, -0.27225515, 0.16927296, -0.13890478, - -1.154918, 0.032488078, -1.5036203, -0.56129086, -1.0249753, - -0.23488292, 1.2361845, 0.6473254, -1.3048584, 0.75064605, -2.7794464, - 1.109377, -0.6746211, 0.25237355, -1.3666131, 0.4599722, -1.5260601, - -0.17773458, -0.65139884, -1.4335499, -1.2363921, 1.0263575, - -0.96760494, 0.34656247, -0.5617069, -0.41550425, -0.8601731, - -0.3646882, -0.7769416, 1.0877182, -0.32648095, 0.42392203, -0.612447, - -0.44353908, -0.6224707, -0.71388876, 1.0892471, -0.44520336, - -0.99133354, -1.7143736, 0.6507952, -1.3314435, 0.10702488, -0.23974629, - -0.24640776, -1.3272105, 0.020821812, -1.0898436, -0.3460105, 0.6321014, - -0.12255484, -1.2526598, -0.6863032, -0.54180837, -1.4648012, - -0.4327684, 0.39263034, 1.2015507, -0.5485608, 0.8291888, -2.2548633, - -1.6961102, 0.22867015, -0.33577815, -0.26210934, -1.4112453, - -1.6432836, -0.6187242, -0.04053878, -0.189637, -1.7757499, -0.9584254, - 0.4447648, -0.6921449, -0.90245897, -0.60703623, 1.5679655, - -0.012952082, -1.6960306, -0.5831872, -1.7515372, 0.09873485, 0.5165602, - -0.1360743, -0.78014225, 0.16742648, 0.6914749, -0.24535266, 0.54832405, - 2.2244625, -1.9250656, 0.42955762, -0.48229566, 1.0501357, -0.2826142, - 2.380987, -0.31209695, 0.28633547, -1.0917531, -0.30002165, -0.76178664, - -0.8482671, -1.2729954, -0.14548543, -1.8431237, -0.17857563, - 0.0052169487, 0.024180107, -0.5505759, -1.5503436, -0.22252062, - -0.10419537, -1.2587731, 0.44436374, 0.5192122, -0.002061054, - -0.5942305, -1.7949228, 0.48447365, -1.6727338, 0.24395812, 0.33914816, - -0.069571435, -0.95113564, -0.3447377, -0.24291712, -0.47622573, - -1.1156332, -0.2330565, 0.4625037, -0.6754059, 1.2021546, -0.60879314, - -2.2528644, 0.3931793, 0.1380199, -0.08066023, 0.27760127, -0.3529456, - 0.18537849, -1.0574006, -0.7717815, -0.59235674, -0.7442168, - -0.31174168, 0.55546993, -0.5807848, -0.34278443, -0.0028865207, - -0.866249, -1.2909995, -1.3259169, 0.22700557, -0.76142955, -0.5971486, - -0.52796733, -0.085646495, -0.6156959, -0.41342402, 1.1366088, - 0.15944102, 1.0452592, 1.0467286, -2.015338, -0.7656574, -1.4556514, - 0.38081715, -0.7069505, 0.49379683, -0.6464887, -1.0505347, 0.11025251, - -0.16427976, -0.90693897, 0.80995464, 1.3123214, 0.7334112, -0.52749836, - -1.0150623, -0.14918771, 1.0476686, -0.67442614, 1.0712017, -1.630181, - 0.26215485, -1.6928693, -0.8194913, 0.5116635, -0.81901884, 0.28953525, - -0.15165758, -1.0868461, -0.67566144, -0.4775611, -0.83555496, - -0.636964, 0.50108427, 0.57865435, 0.19166595, 2.416012, -0.5536652, - -1.9093231, -0.63066334, -1.1402578, -0.7235783, -0.71224695, - -1.1647836, -0.5155953, -0.35961884, 0.8087906, 0.00040265918, - -1.6553963, 0.6469255, 0.47053006, -0.7819178, -0.63288134, -0.36938813, - 1.0977658, 0.85422176, -0.2150931, 0.4807247, -1.416002, -1.3508302, - -1.1633602, -0.9628454, -0.23778537, -0.37601727, -0.7707817, - -0.4257373, -1.1475232, -1.6077664, -0.395441, -0.8135364, -0.34772307, - 1.9122481, 0.9583245, -0.46146196, -0.24939346, -0.20363486, - -0.39299145, -0.78209925, -0.72715986, -0.7631966, -1.134336, - -1.5965799, 0.6829299, -2.3731065, -0.90224314, -0.33513346, - -0.09623246, -0.36068496, 0.25896046, -0.32482344, 0.6817966, - -1.0120476, -0.90757704, 0.20860985, -1.324126, -0.26831996, - 0.0042318664, -0.1363441, -0.6436989, -1.1026276, -1.1271454, 0.3302157, - -1.5363253, -0.9662085, -0.10447945, -1.8493767, -0.95142496, - 0.28741062, -0.301705, -0.91018176, 1.5691216, 1.7610687, -0.2681204, - 0.08971833, 0.29996055, -0.43635824, -0.6463055, -1.3135815, 0.272298, - -0.64333373, 0.05681774, -1.6018993, 0.3570624, 0.61264396, -0.8430054, - -1.1381992, -1.2129413, -0.25985688, 0.43714356, -0.02474434, 0.7699083, - 1.322027, -1.9056951, 1.1230762, -0.45404637, -1.9112633, 1.0476246, - -0.67838174, -1.466988, -0.5978962, 0.7685585, -0.7296148, -1.1053821, - -0.7796143, 1.254878, -2.0607014, 0.45280054, -0.60912675, -1.9218286, - 1.0176692, -2.2724915, -0.3385258, 0.5187166, -0.729832, -0.020735346, - -1.4744198, -0.7324617, -0.34359095, 0.4917954, 0.287943, -0.22077823, - -0.11211368, 0.4926157, 0.60738474, -0.29129866, -0.65613854, - -0.44198906, -1.6250417, -0.43992853, -0.15810683, -1.2311492, - 1.2924633, -0.31151462, 0.15490066, -0.07897427, 0.972011, 0.692749, - -0.81089765, 1.3186562, -1.7670776, -2.713231, -0.99341136, -1.5620836, - -0.012524907, -1.386354, 2.1046565, 0.25055712, 0.47613102, -1.1769416, - 0.80254894, -1.5990028, -1.446979, -0.796572, 0.3103553, -0.6188466, - -0.41408765, 2.5479212, -1.8836172, 0.76228434, -0.9830601, -0.22428635, - -0.41061908, -2.7935624, -0.46283984, -1.2614846, -0.022441197, - 0.12187822, -0.2145002, -0.2517584, 0.424816, -1.6619246, 0.99110967, - 0.4836471, 0.08189745, 0.90938044, -0.6263875, -0.17045702, 1.792333, - -0.7561314, -0.70141566, 0.037829414, 0.13956852, -0.86178285, - 0.49396032, 0.8018125, -1.0515, -0.5398761, -0.70541215, -1.427257, - 0.086870015, -1.400858, 0.37653685, 0.17173469, -0.39706466, - -0.12167326, 1.0454196, -0.5976269, -0.58382934, 0.28883427, - -0.53145725, -0.75020176, -0.69392234, -1.9414271, -0.43633327, - 0.19973913, -0.3483866, -1.0297503, -1.3720045, 0.6065826, 0.68011487, - -0.42868853, 0.7597029, -0.19965762, 0.64814246, -2.1321871, - -0.89893115, -1.3601748, -0.8350454, -2.8329954, -0.32844067, - -0.71575457, 0.7558943, 1.0137749, -0.38340566, -0.46442166, -0.7409694, - 1.759716, -1.3895433, -0.27251163, 0.75391644, -0.15609929, -1.4476464, - 2.600391, 1.0357475, 0.18768641, -2.820765, 0.37884226, -0.117451936, - -1.049084, 0.00071857125, 0.084426105, -1.2683892, -0.017488115, - 1.359789, -1.3260922, -0.53716034, 0.91619, 0.29307783, 0.9940136, - -0.5309191, -0.7723175, -0.25485635, -0.26002398, -0.289751, 0.12605125, - -1.2123723, -0.5078104, -1.0629864, 0.40795746, -1.5962461, -0.7990331, - -1.8288815, -0.01933834, -0.3028142, -0.9236911, 0.39430895, -1.3547431, - 0.3929589, 0.33324003, 0.28285193, -0.35793617, 1.5378172, -0.2656395, - 1.3428211, -2.5144763, -0.6235704, -0.33194512, -0.6053425, 0.039743416, - -1.2325355, -0.59601796, -0.70087546, -0.82413024, 0.9533109, - -0.51579183, -0.24969377, -2.1622062, 0.42941916, -1.1465287, - -1.3272438, -0.14165473, -1.1851623, -0.201067, -0.7423643, 0.07719597, - 0.77135724, 0.095795505, -1.442254, 1.4560359, -0.83889335, -0.975368, - -1.1020292, -0.10845765, -0.37222633, -0.36120474, -0.28927642, - -0.3641253, -1.2817599, -0.07210854, -1.1260207, -0.6037853, 0.1698522, - 1.0447615, -1.6413535, -2.619892, -0.35442862, -0.7727513, 0.41181505, - 0.9246688, 0.32973933, -1.046129, 0.34283704, 0.89300156, 0.13739496, - 1.2248924, -1.4381653, 0.12579808, -1.0063052, -1.2559994, -0.34582, - -0.7576068, -1.2823147, -1.0727763, -0.30548912, 1.3100259, -0.67364216, - -0.37563014, 0.93532544, 0.9765149, 0.08554761, -0.43175775, - -0.19280206, -1.6482528, 0.08581954, -0.001996141, 1.3296255, - 0.008955829, -1.2505925, -0.16912997, -1.6979461, -0.23127167, - 0.3507876, -0.73049104, -0.8399451, 0.38257688, 0.015056899, -1.2869769, - -0.089400396, 1.106053, -0.41628054, -1.8772296, -0.96854526, 0.6419523, - -1.1835713, 0.53098685, -1.6585944, -1.491372, 0.053532682, 0.45843932, - -1.3667686, 0.7567019, -1.2401192, 0.48302084, -0.016335092, 0.29460987, - -0.10623171, -2.2519953, 0.3271847, -0.6158457, -1.39703, -0.40342322, - -0.39900178, 0.4762772, -0.5993561, -1.8401321, 0.07358632, -0.8644329, - 0.27012467, 0.3695147, -2.0799656, -0.4916765, -1.8659945, 0.018004093, - -0.8850878, 0.13132352, -1.6941047, 1.4611317, -0.45751327, 0.47087035, - -1.1018294, -1.310693, -1.5490508, 0.4881807, 1.1379539, -0.6646907, - 0.41782698, -0.93158764, -1.0560002, -2.221318, -0.7911155, -1.1074812, - -1.2197143, 0.114465356, -1.5962104, -1.5368868, 0.08189003, -0.6257566, - 0.5031873, 0.31550816, -0.06785186, -0.8579384, -0.4852054, 0.15693985, - -0.38927636, -1.0391133, -1.9028766, -0.39456198, -1.2992435, -1.482957, - -1.9040593, -0.4014549, 0.02935467, 0.42284164, -1.6453087, -0.28545034, - -1.4179974, -0.523596, -1.3936971, -0.0219944, -0.45200232, -1.8525958, - -2.162806, -0.0699732, -1.8756758, 0.0431549, -1.5802124, -0.16244346, - -0.6825933, -1.6779535, -0.73171055, -1.0493481, -0.39035022, - -0.9470872, 0.037511155, -0.10438866, 0.30233568, -0.23604141, - -1.0920734, 0.37006354, -0.2422777, -0.37246433, -1.3365793, - -0.36713234, 0.15252644, -0.7007456, -0.4888441, -1.2022927, 0.48768026, - 0.038807526, -0.30651888, -0.18379316, -0.7076533, -1.3979968, - -1.0007731, -1.2127438, 1.0663447, -0.74074084, -0.039114896, 0.8557507, - 0.62458336, -0.33794543, 0.76822674, -0.8626575, 0.4821511, -0.5230006, - 1.5310467, -0.95397776, -1.1595229, 0.81350505, -0.39893216, 0.45286724, - -0.11904008, 0.09350687, -1.0508726, 3.0387485, 0.24952558, -0.14711308, - 0.10791349, -0.101287976, -0.3586565, 0.3069582, -1.1065134, 0.47430176, - 0.216, 0.74613047, -0.29934677, -0.8523136, 0.28096324, 0.7419994, - 0.48992586, 0.048778567, -1.7264658, -0.87861145, -1.0803062, - 0.032785386, 0.12830962, 0.6484433, -0.9629654, -0.26540646, -1.0701778, - -0.8240747, -1.7860732, 1.6740395, -0.5668637, 0.22673969, -0.3552435, - -0.84423256, 0.4966539, -1.3781583, 0.7122877, -0.024154384, -1.0413858, - -0.57328534, 0.038414806, -1.260714, 0.31250456, 0.13983826, - -0.17995815, -0.67053336, -0.36887917, 1.8448535, 1.1444544, -0.5415767, - -0.50902253, -0.7930187, -0.5157833, 0.32237867, -0.20536773, - -1.2709509, -0.3347945, -0.9497769, 0.023466285, -0.0013662986, - -1.5954776, -1.5242747, -0.4861699, 0.18309933, -2.047122, -1.9793535, - -0.09813217, -1.6319411, -0.0698316, -1.8575761, -1.2055107, -0.7581144, - -1.5518539, -1.1053184, 0.15763687, -0.65770483, -0.5289167, -0.4199778, - -0.5673314, -0.50356805, -0.51800555, -0.9892128, 2.099198, 0.9558226, - 0.9150136, 0.13571078, 0.058363512, -0.019787095, -0.38888595, - -1.9177439, -1.2296265, 0.5356242, -1.2923129, -1.2071707, -1.7635725, - 2.2537267, 1.4183675, -1.2526642, -0.6395832, -0.85997415, -0.4198374, - -1.5416107, -0.017322054, -0.33495253, -0.12555885, 0.9407884, - 0.87185454, -0.9673281, 0.080538474, -1.1638852, -0.33009088, - 0.71639943, -0.5372235, -0.7366705, 1.9076134, -0.7453085, -0.9444237, - -0.5887631, 1.125256, -0.1513293, -1.5004562, 0.8679789, -1.550852, - 1.3644887, -0.37002137, -0.96268344, -0.69647086, 0.38452733, - 0.086810485, -1.5552309, -0.7004927, 1.2209492, 0.2782794, -0.6082818, - -1.8280594, 0.9260218, -0.1646035, 0.1393562, -0.24475104, -0.6569959, - -0.99656975, -0.8654449, 0.089108795, -0.27100855, -0.08308542, - 0.40130317, 0.040359665, 0.18096116, -0.7417182, -0.7679465, - -0.85956293, -0.0315204, -0.47081122, -0.17429563, -1.0112982, - -1.2831112, -1.7935708, 0.38309067, -1.6711116, -0.882531, -1.9548503, - -1.7191701, -0.29709163, -0.35170045, -0.4736397, -0.74240565, - -1.6561073, 0.36951238, 0.20008203, 0.067941695, -0.6792235, -1.2677822, - 0.06037157, -2.3895378, 0.007600449, 0.6278472, -2.2616565, -0.88528115, - -1.0761322, -0.24641691, 0.9171446, 0.17421451, -1.6113403, 1.1394563, - -0.04891704, -0.54073393, -1.2678739, -0.050234005, 0.9052349, - -0.17785044, 0.01665352, -1.4734105, 1.0854512, -0.43240762, 1.2398226, - 0.109307006, -0.6756397, 0.020418283, -0.89359945, -1.8806863, - -0.50475436, -1.7216516, 0.03570126, -1.0562477, 0.054129504, 0.8679137, - -0.7569311, -1.4238232, -1.0992932, -0.67602324, -1.5478749, 0.87062716, - -1.1738193, 0.17971438, -0.5767958, -1.0705575, -2.1037416, -1.2027241, - -0.4054408, -1.2228471, -0.74728525, -0.6295724, -0.8144066, - -0.57415587, -1.1634905, -1.0127076, -0.54253036, -1.1847057, - 0.75484496, 0.57382244, 1.027925, 0.34880757, 1.5234643, -0.52752084, - 0.23753981, -1.2283599, -0.7897835, -0.73104876, -0.8996544, -1.6760277, - 0.1953342, -0.91299695, 0.7312325, -0.9692072, -1.7428523, 1.2983717, - -1.208425, -0.90609866, -0.56556684, 0.14408155, -1.1789021, 0.9294176, - -0.176691, 0.7235484, -0.9299343, -0.32192996, -1.0857657, -1.5705812, - -0.7325522, -0.9728032, -0.40433162, -1.0822682, -0.21715423, 1.4816225, - -0.0020663068, 0.87599593, -0.5224795, -0.2579278, -0.51095587, - 0.27741835, -0.6049967, -0.27829325, -0.0337352, -0.24454187, 1.5595539, - 0.55727655, -1.8954495, -1.2787215, 0.09077306, 0.14494926, 0.69243616, - -0.79722476, -1.282027, -1.0001416, -1.0422579, -0.1275768, -1.2611136, - 0.54833096, -0.931178, 0.46542755, -1.3041009, -1.2298238, 0.42045617, - 0.27321392, -0.38801205, -1.2944405, 1.1850677, -1.1023408, -1.6722997, - 1.319824, 2.3538954, 0.14826754, -0.09201647, 0.026387528, -2.9032044, - -0.12954299, -1.5650568, 1.0074227, -0.13853665, 0.32698035, -1.0488636, - -1.6415404, -0.76454705, 0.2031336, -0.6675333, -1.1044542, 0.56895864, - -0.960141, 0.11561235, -0.1974685, -1.2262316, 0.1739161, 0.50853664, - -0.16944215, 0.9194487, -0.663595, -0.68418664, -1.0834377, -0.30170432, - 0.41623977, 1.0075915, -0.42172477, -1.3772922, 1.7033395, -1.9620236, - 0.27363837, -0.8867009, -1.8332883, -0.20807943, 0.5829027, -0.5542051, - -1.2289972, -0.64067715, 1.4521877, -0.38421834, 0.7229028, - -0.033939112, 1.7219015, -1.4989768, 1.3399003, -0.31628674, -1.2939062, - -2.2220306, -1.2511903, -1.0616531, 0.7020019, -1.0533113, -0.9001862, - 0.06495982, -2.052299, 1.4838773, 0.12460408, 0.5046123, 1.5347513, - -0.2534848, -0.2222294, -2.0272267, -0.4407696, -1.5896434, 0.33188653, - 0.061128873, -1.0595312, -0.5834696, -0.7172899, 0.015034057, - 0.06273167, 1.0473949, -0.55166656, -1.0915661, -1.6803694, -0.66413003, - -0.33731464, 0.0438984, -0.8389322, 0.97870356, 0.2928023, -0.54998755, - 0.7203691, 0.7985579, -0.94158006, 0.93855786, -1.6033013, -1.0779476, - 0.761581, -0.859207, -1.0833044, 0.6455616, 0.47549802, 0.09709773, - 0.5235934, -0.09638952, 0.14677757, -0.3994969, -1.8859223, -0.77109134, - -0.20519093, -0.43205065, -0.4972432, -0.5002442, -1.4857072, - -0.8058563, -1.6082864, 0.5993372, 0.16993476, -0.6294696, -1.0571965, - 0.72545713, -0.65586585, -0.34334642, -1.1838299, 0.7998276, 1.0030217, - -0.1554273, -0.44533545, -0.69998723, 0.02665199, -0.85808635, - -0.8857159, -0.30042374, -1.8796575, 2.0172658, 1.2077798, 1.7298001, - -0.79344165, 0.27724466, -1.2364035, -1.1388279, -2.851122, 0.46701583, - -0.37555143, 1.0415151, -0.8381914, -1.074185, -1.0460129, -1.7527156, - -0.8933808, -0.26594555, -0.13087592, 0.14747098, 0.6323467, -1.3969722, - -1.2340691, -1.3711879, -0.45584786, -1.1457449, 0.32423538, 0.34911, - -1.3904682, -0.96741235, 0.9466364, -2.200893, -2.04717, 0.3311582, - 0.33748728, 0.50879776, -1.7954149, 0.801763, -1.0129505, -0.05978766, - -0.58652663, 0.8511207, 0.46346298, 0.0598685, -0.9281182, -1.3485749, - 0.095345385, -0.123016104, 0.4528332, 0.85881156, -0.528786, -1.7965748, - 0.037546296, -0.15043831, -0.7608826, -0.47468427, 0.88322204, - -0.47371197, 0.7347867, -0.973456, -1.2847677, -0.7638509, -1.6511314, - 0.50977, -0.57951325, -1.4464248, 1.2302836, 1.0481961, -0.042875435, - -1.4274124, 0.55633515, -1.0600553, 0.03475157, 0.15929776, 0.12202064, - 1.1775721, 0.8470885, -1.240522, -0.5465586, -0.17822821, 0.39509434, - 1.7604306, -0.5533386, -0.46018153, -1.8357438, -2.6286693, - -0.0086609535, -1.1925471, -1.4603486, -0.05848126, 0.35707504, - 0.7004811, 0.26162863, -0.88202703, 1.0851598, -0.90053123, -0.27220732, - -1.0345447, -3.2067251, -0.64117455, -0.1835494, 0.5460117, 0.09842397, - -0.962676, -0.62373084, -1.3388, -0.39855063, -0.11114316, 0.6526368, - -0.16180147, -0.74374413, 2.0513172, -0.48627126, 0.5680043, -1.2143619, - -0.59090346, 0.8061269, -1.1778482, -0.75456804, -1.0387342, - -0.21953362, -0.8177354, 0.5734993, 0.24841575, -0.8722967, -0.6800437, - 1.2749401, 0.94699734, 0.78672296, -2.307933, -1.2816601, 0.03281975, - 1.2376702, -0.22680843, 0.8700542, -0.8614658, -0.19669533, -1.2020445, - -0.069782615, -0.06764683, -0.066468194, 0.3612408, -1.1927506, - 1.0142113, -0.9943457, -1.0549116, -0.4350122, -1.1967548, -0.7196521, - -0.91213197, -0.78345597, -1.1249067, -1.0916593, 1.2627425, - -0.65954524, -0.7840736, 0.9075104, -0.6049496, -0.14134401, - -0.70823395, -1.4430295, -1.8858755, -0.32195345, 1.5719866, - -0.01978137, -0.8643106, -0.8127235, -0.106744334, 0.9979656, 1.2202495, - -0.59942067, 0.48218712, -0.25634947, 0.9089122, -0.63587284, - 0.09144295, 0.14067456, -0.8769007, -0.7970678, 0.19773835, -1.2798324, - 0.13443212, 0.12104492, -0.35555065, -0.51057744, -0.2216647, - -1.6216272, -1.2301226, -1.1164609, -0.76194423, 0.24279088, 1.7804124, - -2.5349138, -2.2568154, 0.57951605, -1.3752861, -0.33411267, -1.5937213, - -0.58993566, -2.2722774, 0.6353411, -1.0198433, -2.066114, 0.34582692, - -1.0232233, 0.6475707, -0.85027176, -0.45444316, -1.3996327, -1.0445442, - -1.6731527, -0.37081912, 0.8554528, -1.0782034, 0.3424018, 1.061395, - -1.6726123, -1.1145163, 0.25642735, -1.0641078, 0.05755464, -0.12901747, - -0.20228074, -1.2282765, 0.3397266, -0.47195408, 0.058008812, 0.8868556, - -0.042976685, -1.3149369, -0.059362013, 0.49676925, -0.07882565, - 0.5497687, 0.15553169, 0.5396319, -1.5045475, -1.3928386, 0.4989091, - 0.15322635, -1.2666404, -0.8691719, 0.6319524, 0.21106303, -0.48220062, - -0.071522206, 0.3486157, -0.73062956, 0.45739523, -1.3101478, -1.129211, - -0.24768963, -0.61334467, -1.0800952, -0.73763406, -0.37864527, - 0.008456584, -1.1977608, -0.017428644, -0.6347105, -0.62863284, - -0.24301213, 0.14712006, -0.16287315, 1.775914, -1.5496815, 0.7452467, - -0.6475119, -0.08971058, -0.414992, 0.58621544, -0.93676054, -0.5494776, - 0.10269562, -0.30637938, 0.8964141, 0.8182511, -0.22533743, 0.1790981, - -1.7794913, -1.3936102, -0.25227785, 1.3097692, 0.54996145, 0.05115851, - -0.0642954, -0.05693481, -1.9173688, -0.888621, -0.24742472, - -0.96644366, -0.26111472, -0.10684353, 0.0802498, -0.51973414, - 0.3750926, -0.14691219, -0.8724439, -1.7683604, -1.2490923, 1.6490942, - -1.3936547, -1.4850568, -1.867064, 1.4520319, 0.10403724, -0.46025845, - -0.9778608, 0.9842634, 0.36011136, -0.82962745, -1.0392213, -0.876431, - 1.0093957, 0.99431765, 0.35704902, -0.8543614, 1.1189297, 0.8076899, - 1.5337211, -0.29304412, -0.1441437, -0.14031851, -2.032191, -2.537104, - -1.0895625, 1.3581108, 0.6572908, -1.216773, -0.669875, -0.9312423, - 0.05649244, 0.62199533, -0.053496774, 0.21768226, 0.4377664, -0.8872438, - -1.080027, 1.9443202, -2.2469635, -0.48109955, -2.2279127, -0.9019221, - 0.3233625, 0.106123745, -0.43839654, -0.65289044, -0.05438628, - -0.230395, -1.1127926, -0.36085123, -0.76871294, 1.4167957, 0.99554557, - -0.365238, -0.10188131, 0.6466553, -0.13824259, -1.5009367, 0.15023416, - 0.11072377, -0.30806336, -0.06563504, -0.5259518, 0.16779411, - 0.26785666, -0.681397, -1.9663444, 0.64815885, -0.76564574, 0.8659884, - 0.69602007, -0.37993035, -0.3678426, -0.9198578, 1.7021643, -0.48806855, - 0.3680634, 0.5493684, 2.2645156, 1.6433289, -0.0994923, 0.8340041, - 0.5932402, 0.09503399, -0.022368569, -1.7812979, -1.0681627, 0.21442357, - 0.83502907, -0.8798803, -0.7690962, -0.30280948 - ], - "reducedFeatures": [ - -0.029522208, -0.09107576, -0.01882455, -0.03319529, -0.04150576, - -0.06554054, -0.036793683, -0.0048767366, 0.010146055, -0.019744636, - -0.03260065, 0.048654404, -0.032186687, -0.016420119, -0.03773508, - -0.038777146, -0.011055341, 0.012042083, -0.024554068, 0.012545945, - -0.038435366, -0.030791607, -0.0077241436, -0.0032738112, 0.03589032, - -0.028807467, 0.013419462, 0.011547857, -0.04557953, -0.045165394, - -0.033360522, -0.02014486, -0.032689985, -0.019966958, -0.006580944, - -0.013461709, 0.025099754, 0.026725281, -0.023706622, -0.032275256, - -0.027984325, -0.051308084, 0.004236317, 0.07600819, -0.04474796, - -0.003817494, 0.010849788, 0.01078395, -0.025566963, -0.044182558, - -0.00040026772, 0.026531938, 0.0073381225, 0.017737871, -0.049727138, - -0.07045332, 0.014671776, -0.019768862, -0.016701179, -0.018675823, - -0.017255757, -0.031187152, 0.008170582, 0.0009959138, 0.041617535, - -0.037216827, -0.055750266, -0.05140917, -0.0010713165, -0.030100875, - -0.003594514, -0.027856128, -0.053390786, -0.0050668363, -0.006172004, - 0.009246501, -8.678386e-6, -0.040750526, 0.012923885, -0.03153935, - 0.075171396, -0.035383657, 0.013635834, -0.01933472, 0.024305714, - 0.0046894476, -0.025602927, -0.018044442, 0.037290376, -0.025208803, - -0.028757645, 0.010498805, 0.0056331274, 0.038086846, 0.030548314, - -0.04064013, -0.054789823, -0.017874528, -0.009743669, -0.015828028, - -0.03480193, 0.038822535, -0.0029411814, -0.012462937, -0.024989342, - -0.031243403, 0.0011767894, 0.017070169, 0.033244282, -0.07219566, - -0.0020743292, 0.013774766, -0.031203074, 0.021756511, -0.023143774, - 0.02466684, -0.015588313, -0.08872575, -0.0035472214, -0.07119627, - 0.020554887, 0.051019393, 0.00040185207, -0.028990079, -0.05867664, - -0.0016200201, -0.005016905, 0.01551872, -0.0072015016, -0.02682032, - 0.012947423, -0.061474174, -0.011731432, 0.00043603737, -0.006810851, - -0.015286626, -0.016469635, -0.048439413, -0.021431895, -0.0015292179, - -0.036702808, -0.031845897, 0.018778456, -0.024208331, -0.026229577, - -0.02265122, -0.02472018, -0.013810462, -0.04277018, -0.011652505, - -0.062325228, 0.007870495, -0.019813048, -0.030779807, 0.07680377, - -0.0022149638, -0.0262173, 0.022584992, -0.041274432, -0.043605562, - -0.038733818, 0.011142572, -0.02310835, 0.023020184, 0.014808728, - -0.040672556, -0.0012897553, -0.017652137, -0.006391288, 0.011015025, - -0.018551137, -0.047783718, -0.005109271, -0.021314915, -0.03310411, - 0.012597707, -0.016286558, 0.017110728, 0.06639341, -0.039323248, - 0.0035554327, -0.020693304, -3.7337413e-5, -0.030680487, 0.0007101249, - -0.044140346, -0.04903988, -0.041996818, -0.034685574, -0.0052075903, - 0.012938861, 0.0076115034, -0.025645504, -0.044969972, -0.0023406749, - 0.010004447, 0.061458133, 0.0319115, 0.016532209, -0.0054313727, - -0.017094022, -0.021687357, -0.039323814, -0.018215463, -0.045105588, - 0.0050025377, -0.03129213, -0.029143434, 0.02154543, -0.008777579, - 0.012429963, -0.05418974, -0.022584355, -0.043323513, -0.014487049, - -0.026566895, 0.054764807, -0.0041117417, -0.0517506, 0.012877252, - -0.054247227, 0.0036332847, 0.0025652586, -0.06119412, 0.015704429, - -0.08220585, -0.034270577, 0.02462439, 0.0049206326, 0.0049237814, - 0.002276123, -0.010648861, -0.009012486, 0.0030944652, -0.04260239, - 0.004762219, -0.043504614, 0.022927212, -0.040318426, -0.006357163, - -0.01747639, 0.0046665673, -0.024091274, -0.025329052, 0.0033871662, - 0.01928564, 0.0054874145, 0.014751957, 0.0077322526, -0.015460687, - -0.054687712, -0.0017665062, -0.000616826, 0.013060234, -0.012169508, - -0.045299567, -0.042173274, 0.028453996, -0.015355782, 0.022699941, - -0.03546989, -0.03173559, 0.0037305346, -0.008409783, -0.037249282, - -0.006583101, -0.007194201, -0.030828547, -0.024291733, 0.0074509555, - 0.058330636, -0.066211276, -0.028425744, -0.028918453, -0.027555132, - 0.018278996, -0.0019137007, -0.05541001, -0.008643013, -0.059319858, - 0.010524179, -0.031064825, -0.019748004, -0.04508959, -0.0061976886, - 0.013188674, -0.0104820775, -0.05880318, -0.017495379, -0.0005402426, - 0.028355425, 0.021749474, 0.004407205, 0.018000232, -0.05741071, - -0.00235257, 0.028744934, -0.007019036, 0.054908205, 0.0036539133, - 0.07738081, -0.06747506, -0.037301738, 0.023000907, -0.036010783, - -0.060793526, 0.033556007, -0.01584538, -0.025902525, 0.019683342, - 0.025384339, -0.010578594, -0.024323452, -0.016777955, 0.070219174, - 0.003824759, 0.004762778, 0.011165078, 0.03129014, 0.04954349, - 0.01295606, 0.021579104, -0.021380372, 0.015348697, -0.009986324, - -0.07248521, -0.012896456, -0.050338704, -0.017052585, -0.05564931, - -0.003361057, -0.02856566, -0.009707163, -0.016221693, -0.022655392, - 0.019680401, 0.03227855, 0.058998875, -0.012714886, -0.030223552, - 0.039424635, -0.029073311, -0.014507827, 0.01558165, -0.010950025, - -0.030248506, 0.014674528, -0.039740466, -0.0028170827, -0.029290793, - -0.03385182, 0.041025493, 0.019987913, -0.00570748, 0.047172893, - -0.014820868, 0.0064035943, 0.039728228, -0.0020337733, -0.02192408, - -0.03707109, 0.017756574, -0.010089845, -0.01150691, -0.036816157, - 0.011211351, -0.016596157, -0.013626249, -0.03274824, -0.008340228, - -0.02274167, 0.05826777, -0.014870072, -0.016150294, 0.06393996, - -0.011328836, -0.009017954, -0.03176342, -0.020488711, -0.0028381217, - -0.022527609, -0.03389641, 0.039321702, 0.021912772, 0.019610515, - 0.01607518, 0.04568254, -0.012631581, 0.027614767, 0.018802147, - 0.005500405, -0.036738295, -0.021993501, -0.002029488, -0.07156281, - -0.037932314, 0.016355004, -0.012964902, -0.009598604, -0.0070740557, - -0.038466793, -0.008749331, -0.0035768836, -0.0037696823, -0.028483812, - -0.055258825, -0.012658762, -0.006712677, -0.03227621, -0.0069980407, - 0.027417863, 0.01466002, -0.010255468, 0.012060779, -0.015749129, - 0.0076368884, -0.014674399, -0.02096968, 2.5415511e-5, -0.004351374, - -0.020039046, 0.011079733, 0.006540041, -0.009420691, 0.026651455, - -0.035613813, -0.04515723, 0.024672978, 0.011319604, -0.008070506, - -0.025711203, 0.02353872, -0.031192765, 0.0052054, -0.018184423, - 0.013008803, 0.0014794463, 0.04032315, 0.012312536, -0.024990099, - -0.0723931, -0.038504228, 0.0009474051, 0.008043799, -0.03694706, - 0.041034106, -0.06263371, -0.014439616, 0.017382847, -0.013904468, - -0.042813934, -0.05077417, -0.019149192, 0.0040537543, -0.040486835, - -0.045839768, 0.04168528, 0.0038744705, -0.07786596, 0.034834825, - -0.023733782, -0.044555787, -0.031961545, 0.0047735954, -0.024952887, - 0.014277124, 0.014399382, -0.041136447, -0.020167394, -0.0010302743, - -0.043448955, -0.053407323, 0.0187769, -0.018655352, -0.029015066, - -0.026365932, -0.0052474802, -0.017313054, -0.028152995, 0.039814148, - -0.00567036, -0.031456392, -0.010813758, 0.03615968, -0.028294178, - -0.032841213, 0.01973861, 0.04626687, 0.02555459, 0.011066061, - -0.0510508, -0.024343176, -0.032964163, 0.02748027, -0.030954048, - -0.021853289, 0.027976252, 0.0011500263, -0.047317058, -0.0021597084, - 0.0058542523, -0.0764571, -0.013589309, -0.018942598, 0.025642138, - -0.0073977434, -0.008740548, 0.048466783, -0.020901546, 0.00928116, - 0.011885207, 0.01857375, 0.0006866944, 0.0025407334, -0.048035845, - 0.03241414, 0.0062671285, -0.039042164, -0.05286085, 0.014525754, - 0.0380528, -0.02241284, -0.013303553, 0.01260252, -0.018409759, - -0.010209827, 0.017513381, -0.050497316, 0.045253877, -0.02780687, - 0.0012904557, 0.032531388, -0.03333453, -0.019954981, 0.02645182, - -0.02193935, -0.029755574, -0.048979394, -0.0017386673, -0.01578513, - 0.00051936985, -0.012673354, -0.028480032, -0.003716091, -0.0069749444, - 0.01954636, -6.812471e-5, 0.013536259, -0.012136016, -0.014770018, - 0.021306548, 0.014738353, -0.006843724, 0.02029427, -0.021187956, - 0.00029888205, -0.012251171, -0.0055888477, 0.008307875, -0.07014505, - 0.0027012434, -0.006488945, -0.027689615, -0.02339183, 0.023147192, - 0.022679409, 0.005024395, -0.023445778, -0.048551988, -0.0417284, - -0.017873118, -0.029444937, -0.032178238, 0.0036483654, -0.02827996, - -0.025631694, 0.021068405, -0.043307066, 0.000116481606, 0.020972311, - -0.012649247, -0.029058829, -0.010250105, 0.004153131, -0.078843005, - -0.05003634, -0.034498524, -0.0009002757, 0.011763386, 0.0070122504, - -0.02801361, -0.024941374, 0.04906221, 0.0029485465, -0.009577456, - -0.004288085, -0.0025147218, 0.01748946, -0.058783054, 0.017707217, - -0.033936758, 0.007473939, -0.01626757, 0.030971168, 0.024884805, - -0.06412946, -0.068673186, -0.062007762, -0.0024998642, -0.015784426, - -0.023768164, -0.010012677, -0.014305614, -0.034816653, -0.039735608, - -0.00060662255, 0.029666219, -0.018301018, -0.025767151, 0.008941841, - -0.02204974, 0.00012740846, 0.016913906, 0.03346933, -0.0055774, - -0.033676382, -0.041634806, 0.01740162, -0.014352402, 0.022449972, - -0.030933488, -0.01603938, -0.04361091, -0.00060896465, -0.027670007, - -0.029576387, -0.03599437, -0.032911837, -0.035739485, -0.051570944, - -0.05860621, 0.015488568, -0.025510475, -0.04554641, -0.019506842, - 0.04264019, -0.069826975, -0.009394288, -0.03714257, -0.056420878, - 0.046052895, -0.024556095, -0.018845001, -0.052529324, -0.016710084, - 0.012138831, -0.017462159, -0.0021911892, 0.015594535, 0.022075312, - 0.007902179, -0.038207266, -0.0648975, -0.010186167, 0.0029977171, - -0.044865426, 0.04760479, -0.021264166, -0.029906115, 0.021861449, - 0.0010414697, 0.023327552, 0.0025856777, 0.007860077, -0.016088407, - -0.008112636, -0.057441976, -0.055979256, -0.00750743, -0.020185903, - -0.005410986, 0.004596549, -0.021829056, 0.01000338, 0.0003024203, - -0.000601171, -0.034090716, -0.0041033328, -0.035956774, -0.038381595, - 0.0016062078, 0.043184943, -0.023389064, -0.039627653, -0.02540927, - -0.0077774483, -0.004255998, -0.041838277, 0.047653083, -0.029094502, - 0.0022272763, -0.0046042195, -0.029393205, 0.008700338, -0.02957592, - 0.0021244283, -0.001296394, 0.0008231635, -0.021423856, -0.0034884736, - -0.022608638, 0.019578088, -0.05081093, -0.019692918, 0.0019581683, - -0.0414367, -0.0072896676, 0.05120117, -0.03088936, -0.0012434167, - 0.0097365305, -0.0044467547, -0.005177827, -0.0035528764, 0.02976861, - 0.0054279235, -0.035309207, 0.021128906, -0.0027482202, 0.034170702, - -0.034223232, -0.030516677, -0.02828211, 0.04815929, 0.020590954, - -0.042610172, 0.02564179, -0.0135389995, -0.020507006, -0.025978005, - -0.021033857, -0.04704329, -0.058127575, -0.03862878, 0.00893836, - 0.015612989, -0.027425386, -0.0061201802, -0.055332188, -0.045583084, - 0.04526848, -0.031993404, 0.035069663, -0.042636838, 0.044021893, - 0.03826265, -0.05326821, 0.0028856113, -0.028091988, -0.080534086, - -0.009200516, -0.046027213, -0.052691847, 0.015949652, -0.05820676, - 0.012082871, 0.018646032, 0.007820622, -0.030341495, 0.018782068, - -0.033327095, -0.028408308, 0.0511267, -0.014720235, -0.043250635, - -0.010339767, -0.060375955, -0.039057106, -0.019746298, 0.04049434, - -0.039846033, -0.008963, 0.014863991, -0.0027604774, 0.015135724, - -0.05862891, -0.021247335, -0.0012858252, -0.014140201, -0.03975786, - -0.025345208, 0.024240768, -0.0012483269, -0.0461019, 0.0059355707, - -0.03929939, -0.046849992, -0.115957774, 0.005329869, -0.053859465, - 0.060364634, 0.0034257425, 0.030557029, -0.033634823, 0.021050058, - -0.0019574678, -0.013186989, -0.0045983586, -0.056570295, 0.02115628, - -0.03212067, -0.0381848, -0.039309748, -0.03601355, 0.0057179285, - -0.034192234, 0.043995876, 0.011586478, -0.013567755, -0.040219948, - 0.028911397, -0.027708896, 0.0316241, -0.047654856, -0.016802944, - 0.001232828, 0.0021045173, -0.032918543, -0.010052598, -0.040842116, - -0.01219858, -0.06897063, -0.03750347, 0.034077015, -0.025344273, - -0.02741686, -0.032887235, -0.02164609, -0.0037939728, -0.00033641362, - -0.05749958, 0.003582738, -0.023575377, -0.028891215, -0.024717271, - -0.05112507, -0.005255408, -0.0383934, -0.05016596, -0.014240665, - -0.05313698, -0.0048565646, -0.04776592, -0.029828262, -0.042538796, - 0.04017401, 0.06134681, 0.021708548, -0.037916664, -0.030184262, - -0.022921044, -0.016706998, -0.0992542, 0.032019384, 0.015641224, - -0.010152616, -0.019603087, -0.05584685, -0.08653329, -0.021342773, - -0.047452495, -0.008969917, 0.029382374, -0.06025606, -0.014236007, - 0.013213832, -0.061593026, -0.06038945, -0.04168001, -0.029705327, - -0.04473022, 0.032692604, 0.0047775568, -0.018636074, -0.028775224, - 0.022944808, -0.0336047, 0.034379743, -0.002047408, -0.014728689, - 0.0151408445, 0.01386074, -0.036096368, -0.03480073, -0.011912621, - 0.021977931, -0.04807593, -0.004701832, 0.021195697, -0.031390753, - -0.0019094782, -0.053237624, -0.02873701, -0.026349949, -0.02103791, - -0.009533325, 0.0096924845, 0.0325431, 0.029741138, -0.042847224, - -0.043523606, 0.009234962, -0.028571833, -0.021282729, -0.014476705, - 0.02020323, 0.0009230079, 0.012988898, 0.03353408, -0.019022744, - -0.028770352, 0.0098686, 0.0053420933, -0.039564777, -0.0041599367, - -0.034533177, -0.02803689, -0.044389702, -0.033669446, -0.035493378, - -0.0326507, -0.021918353, -0.009794764, -0.0030142257, -0.033803165, - -0.011776654, -0.012454954, -0.025613412, -0.028908469, -0.034931533, - -0.012715082, -0.013804156, -0.053784218, -0.0151136825, -0.06657651, - 0.02188843, 0.03253715, -0.02372471, -0.036273535, 0.051851455, - -0.045943394, -0.0058120824, 0.003497605, -0.043655388, -0.04274813, - 0.02032688, 0.0121337, -0.03943872, -0.06363057, -0.027737767, - 0.0038440216, -0.017532304, -0.027370756, 6.043524e-6, 0.02019768, - 0.03533374, -0.01982155, -0.00623073, 0.034803603, -0.038042665, - -0.01327734, -0.042078786, 0.021826455, 0.026799308, -0.08633749, - 0.012474061, -0.017503023, 0.025948618, 0.005315913, -0.0006914916, - 0.0044396184, -0.0011030205, 0.002821094, -0.03447705, -0.018308723, - -0.012509357, 0.01728277, 0.05006283, -0.029318172, 0.0032193903, - -0.037643217, -0.06740038, -0.026687864, -0.07260251, 0.0064274096, - -0.008140741, -0.028816065, 0.01902705, -0.058707576, 0.04500282, - -0.033975944, -0.03723272, -0.039443854, -0.0070709544, -0.04538125, - -0.0049060765, -0.044011727, -0.004426878, -0.04364442, -0.017110895, - 0.011473312, -0.002371512, 0.008747727, -0.00963126, 0.019976335, - -0.051483747, 0.0025381213, 0.0013461845, 0.025803443, -0.03365095, - -0.034690734, -0.012609797, 0.00081401947, -0.009455269 + "features": [ + -0.016149437, + -0.048063755, + -0.011076443, + -0.016325409, + -0.020733874, + -0.034450643, + -0.018570963, + -0.0020820072, + 0.0049923384, + -0.009504104, + -0.015878972, + 0.02536117, + -0.017932203, + -0.008729932, + -0.020359272, + -0.019959182, + -0.006503505, + 0.0066296277, + -0.012752701, + 0.007739556, + -0.0200063, + -0.015128215, + -0.005883735, + -0.0019083148, + 0.019551652, + -0.014927661, + 0.0070161317, + 0.005394385, + -0.023501912, + -0.023377307, + -0.016914358, + -0.010509568, + -0.01707866, + -0.010618381, + -0.0024619298, + -0.0066402755, + 0.013020163, + 0.013942843, + -0.012238241, + -0.016953388, + -0.014202669, + -0.02707326, + 0.0031209674, + 0.038886614, + -0.023109546, + -0.0020700262, + 0.0059004817, + 0.005543831, + -0.014677503, + -0.022970824, + 0.0012403264, + 0.013461792, + 0.003193656, + 0.009320998, + -0.025398647, + -0.036566004, + 0.007528605, + -0.011362716, + -0.0086127315, + -0.010469504, + -0.008629314, + -0.015730161, + 0.004365809, + -0.001048386, + 0.021819836, + -0.01978, + -0.030821139, + -0.027952967, + -0.0009590271, + -0.015534817, + -0.0031133872, + -0.015297581, + -0.026837612, + -0.0024785867, + -0.0018259315, + 0.005504738, + -0.00021416215, + -0.02061626, + 0.006623825, + -0.017463138, + 0.039931845, + -0.019537335, + 0.0063183783, + -0.009467139, + 0.014549669, + 0.001546687, + -0.013303777, + -0.010038074, + 0.019809224, + -0.012030191, + -0.016482798, + 0.00526119, + 0.0005143816, + 0.018655214, + 0.016285527, + -0.021412298, + -0.026665054, + -0.010105193, + -0.0062134294, + -0.0075071165, + -0.019057509, + 0.021851383, + -0.0009488713, + -0.0057982085, + -0.01170739, + -0.016459603, + 0.0019159601, + 0.008254981, + 0.018460937, + -0.038194783, + -0.0010173284, + 0.007991294, + -0.017250862, + 0.009784151, + -0.010746793, + 0.012261595, + -0.0076821377, + -0.046791524, + -0.00083290646, + -0.036856808, + 0.011364552, + 0.027417626, + 0.00011610631, + -0.0145279225, + -0.03151407, + -0.00092128734, + -0.0016018988, + 0.007869893, + -0.0045503625, + -0.014027047, + 0.0047607226, + -0.030950561, + -0.0071195685, + -0.00052806915, + -0.0042414768, + -0.007705578, + -0.008126421, + -0.027301036, + -0.009917011, + 0.0004541798, + -0.019123161, + -0.015860412, + 0.009372981, + -0.0135434335, + -0.013915566, + -0.010839194, + -0.012908325, + -0.0077010556, + -0.022871275, + -0.0059093237, + -0.033419836, + 0.0050122696, + -0.010685758, + -0.015434206, + 0.039357763, + -0.0009418403, + -0.013419548, + 0.011648382, + -0.0218573, + -0.022005057, + -0.020970074, + 0.006028038, + -0.012210968, + 0.012233266, + 0.007955955, + -0.020948693, + 0.00038712588, + -0.008731175, + -0.0043378114, + 0.0050096633, + -0.008632456, + -0.02398295, + -0.002276462, + -0.012668971, + -0.017428525, + 0.007194365, + -0.008971114, + 0.007714816, + 0.033647284, + -0.020679966, + 0.0016905438, + -0.010235004, + 0.0003210066, + -0.016263757, + 0.0006968579, + -0.02377106, + -0.025775414, + -0.02286177, + -0.01824103, + -0.0015770337, + 0.0076589314, + 0.00349471, + -0.01368895, + -0.024620485, + -0.0010363257, + 0.0041344827, + 0.03196054, + 0.01722621, + 0.009078908, + -0.0027710441, + -0.008706563, + -0.01124036, + -0.019650636, + -0.009333591, + -0.02220327, + 0.0011720887, + -0.01630834, + -0.014913834, + 0.010531498, + -0.0054559573, + 0.0069880267, + -0.02837915, + -0.01303408, + -0.023940606, + -0.007916494, + -0.014300876, + 0.029949836, + -0.0014983021, + -0.026547162, + 0.006808987, + -0.029028354, + 0.0017303901, + 0.0016272935, + -0.032071147, + 0.0078594405, + -0.043514214, + -0.017471315, + 0.013009548, + 0.0029723528, + 0.0022342845, + 0.0015532161, + -0.004615582, + -0.0037239809, + 0.0012227258, + -0.022138085, + 0.002343591, + -0.02241062, + 0.010745659, + -0.021484038, + -0.0037941784, + -0.010468447, + 0.0011315113, + -0.0120056, + -0.015266029, + 0.0017803432, + 0.009205606, + 0.00170828, + 0.0065306686, + 0.0043694205, + -0.008102744, + -0.027976817, + -0.00028044384, + 0.0004909692, + 0.0067279884, + -0.0070560942, + -0.024201702, + -0.021995341, + 0.015558394, + -0.006208193, + 0.0132650165, + -0.019506223, + -0.016501993, + 0.0023728604, + -0.00490988, + -0.018659381, + -0.004699861, + -0.0047262465, + -0.016712215, + -0.012765963, + 0.0050316607, + 0.03004434, + -0.033801842, + -0.014249579, + -0.014613807, + -0.015172959, + 0.0076927287, + -0.0013209628, + -0.028195411, + -0.00557921, + -0.03082346, + 0.0042439373, + -0.016436351, + -0.010732681, + -0.02327065, + -0.0028845007, + 0.0064272415, + -0.004724542, + -0.031452376, + -0.009480354, + -0.0006931451, + 0.0142257335, + 0.0141085945, + 0.001558207, + 0.008130101, + -0.029962605, + -0.0012435578, + 0.017221898, + -0.004101824, + 0.029176237, + 0.0021168063, + 0.040641535, + -0.03574039, + -0.020002065, + 0.010983941, + -0.018778253, + -0.031436533, + 0.019147405, + -0.008571413, + -0.012973287, + 0.009888492, + 0.014104856, + -0.0060019963, + -0.012240867, + -0.008215363, + 0.038733725, + 0.0012528519, + 0.0017666175, + 0.0063870423, + 0.0160319, + 0.025068916, + 0.0065491437, + 0.009067084, + -0.010295357, + 0.008128743, + -0.005858784, + -0.03824073, + -0.0060386416, + -0.024814967, + -0.009662145, + -0.029719867, + -0.0009035837, + -0.014792591, + -0.005837157, + -0.00891336, + -0.010021869, + 0.009562799, + 0.01701669, + 0.033132862, + -0.0064457897, + -0.015192786, + 0.020756112, + -0.014830746, + -0.00773255, + 0.008258446, + -0.0068608443, + -0.01689466, + 0.0103797745, + -0.020510787, + -0.0020726738, + -0.016762633, + -0.0179095, + 0.020567853, + 0.0101453755, + -0.003985263, + 0.022735536, + -0.00793761, + 0.0021874837, + 0.020696916, + -0.00012685542, + -0.011223189, + -0.019438261, + 0.00925174, + -0.004938129, + -0.005593074, + -0.018771948, + 0.005295495, + -0.007616104, + -0.007114541, + -0.018862128, + -0.0040448424, + -0.011459872, + 0.031287473, + -0.008886466, + -0.0065486357, + 0.033230547, + -0.005667097, + -0.0044394885, + -0.016932545, + -0.0108629605, + -0.0012452101, + -0.010704102, + -0.01927332, + 0.019437967, + 0.0106630875, + 0.011843334, + 0.008256142, + 0.024015386, + -0.006729197, + 0.01595264, + 0.009173109, + 0.003559139, + -0.019126067, + -0.009772451, + -0.0015126574, + -0.038502898, + -0.02037924, + 0.00731703, + -0.007564759, + -0.00625911, + -0.0033915485, + -0.019736644, + -0.0048024524, + -0.00015795502, + -0.0030327935, + -0.014379645, + -0.029752066, + -0.007081359, + -0.0022172555, + -0.01682407, + -0.0042459164, + 0.014643854, + 0.009008097, + -0.006052935, + 0.0056510568, + -0.010027888, + 0.004199673, + -0.0073145484, + -0.009525604, + 0.0006094039, + -0.002574705, + -0.010556393, + 0.0056955675, + 0.0037180022, + -0.0044325455, + 0.013600952, + -0.018881315, + -0.022832291, + 0.013552473, + 0.00549985, + -0.004661338, + -0.013272109, + 0.013596097, + -0.016749706, + 0.0019864386, + -0.009200954, + 0.006901383, + 0.0007782957, + 0.02168974, + 0.0054385588, + -0.01351623, + -0.038728874, + -0.02126425, + 0.000934062, + 0.0037018065, + -0.021226918, + 0.020321101, + -0.032144077, + -0.007631133, + 0.008483602, + -0.0074404962, + -0.022980304, + -0.027006647, + -0.009578065, + 0.0020512054, + -0.022187792, + -0.024861744, + 0.022593187, + 0.0023840617, + -0.040944245, + 0.019090602, + -0.010773989, + -0.025626237, + -0.016947355, + 0.0021616744, + -0.0126699135, + 0.0071352255, + 0.007464753, + -0.02192227, + -0.00962474, + -0.0006430786, + -0.023723751, + -0.028047906, + 0.00897063, + -0.009721237, + -0.015882773, + -0.014408413, + -0.0021134266, + -0.009414667, + -0.014058476, + 0.021864109, + -0.0034583984, + -0.015559255, + -0.0045643626, + 0.018479437, + -0.015471245, + -0.017252227, + 0.009791184, + 0.024477966, + 0.012983145, + 0.0047075194, + -0.027091274, + -0.013741417, + -0.01832739, + 0.014159856, + -0.016031086, + -0.011973387, + 0.0146324085, + 7.4873366e-05, + -0.024912637, + 0.0006690241, + 0.0030897667, + -0.039282065, + -0.007287398, + -0.009772931, + 0.013107387, + -0.00442811, + -0.0039171274, + 0.024788935, + -0.011774719, + 0.0037511603, + 0.0066122226, + 0.011229847, + 0.00080108386, + -2.6729951e-05, + -0.022668814, + 0.016700823, + 0.004304638, + -0.020293511, + -0.0289433, + 0.007592029, + 0.020011693, + -0.013096165, + -0.0073567834, + 0.0068101385, + -0.009672631, + -0.0042405184, + 0.008679586, + -0.026316162, + 0.023142116, + -0.014282116, + 0.00016766926, + 0.017649991, + -0.01637203, + -0.0098722605, + 0.014024833, + -0.01227257, + -0.015723798, + -0.026100706, + -0.0014071855, + -0.00848558, + -0.0003885804, + -0.0075983317, + -0.015198643, + -0.0018716477, + -0.003268085, + 0.009854879, + -0.0010920796, + 0.007924674, + -0.006228213, + -0.006890836, + 0.011667524, + 0.008853847, + -0.0040664333, + 0.010440669, + -0.009938921, + 0.00016631544, + -0.007410221, + -0.0034759706, + 0.0036851857, + -0.03652749, + 0.002387889, + -0.0025103467, + -0.013893636, + -0.01366653, + 0.011800762, + 0.012017523, + 0.0025533608, + -0.012279095, + -0.025335213, + -0.021106957, + -0.009801904, + -0.015813349, + -0.016811134, + 0.0033479964, + -0.014821995, + -0.0141871795, + 0.011216656, + -0.02160285, + -0.0012605694, + 0.010527586, + -0.0057666292, + -0.014447773, + -0.005502762, + 0.002250579, + -0.04219369, + -0.026518336, + -0.01807485, + 7.631568e-05, + 0.006478534, + 0.0033588675, + -0.01428596, + -0.011568804, + 0.025554696, + 0.002544784, + -0.003877463, + -0.0026470362, + -0.0021806294, + 0.0093151005, + -0.028498894, + 0.009297313, + -0.017161023, + 0.004450661, + -0.0074913157, + 0.016160116, + 0.0136448685, + -0.033693083, + -0.035375033, + -0.033362325, + -0.0023540505, + -0.009003803, + -0.013301583, + -0.004397243, + -0.008401158, + -0.018790044, + -0.020316817, + -0.00081620447, + 0.016555514, + -0.009296407, + -0.0136808865, + 0.00443546, + -0.010874754, + -0.0005990376, + 0.009858674, + 0.018526718, + -0.004128682, + -0.018380828, + -0.02210723, + 0.008858118, + -0.0060855313, + 0.011342379, + -0.016547328, + -0.008262243, + -0.021875175, + 0.00016610541, + -0.01310406, + -0.016354714, + -0.018958576, + -0.016886767, + -0.017692527, + -0.026285855, + -0.030184736, + 0.009309536, + -0.013866451, + -0.02477795, + -0.010061825, + 0.021886457, + -0.036900684, + -0.005417718, + -0.019241093, + -0.029490257, + 0.023380512, + -0.012805382, + -0.009743875, + -0.027513396, + -0.009121913, + 0.006129085, + -0.009736189, + -0.0010141134, + 0.0076079587, + 0.010717272, + 0.0051079886, + -0.019569851, + -0.03450129, + -0.0068338495, + 9.575503e-05, + -0.022412887, + 0.024069129, + -0.009806593, + -0.015394315, + 0.011640915, + -5.387023e-05, + 0.012539942, + -0.00020760039, + 0.004192735, + -0.009204576, + -0.00418927, + -0.02965624, + -0.028420782, + -0.004061896, + -0.011744785, + -0.003847931, + 0.002392463, + -0.011333179, + 0.0054445597, + -0.0014919486, + 0.0010084138, + -0.017936064, + -0.0021573976, + -0.019393792, + -0.019230535, + 0.00019591281, + 0.022764223, + -0.013178961, + -0.020315286, + -0.013322633, + -0.0045292103, + -0.0014526318, + -0.022000825, + 0.025986193, + -0.015312975, + 0.0019906505, + -0.0019016459, + -0.015528452, + 0.0045380825, + -0.015231489, + 0.0003016541, + 0.00026514914, + 0.0004460693, + -0.010583058, + -0.0003821229, + -0.011390087, + 0.010476176, + -0.026382567, + -0.009661094, + 0.0026688783, + -0.020468168, + -0.004997081, + 0.0262903, + -0.017384779, + 0.0017952971, + 0.005099245, + -0.0018365653, + -0.0033950761, + -0.00030601735, + 0.015225748, + 0.0030889532, + -0.018155754, + 0.010086479, + -0.0010277905, + 0.017616592, + -0.017654108, + -0.016651947, + -0.014762745, + 0.026331225, + 0.011606595, + -0.021509409, + 0.01423509, + -0.007422142, + -0.010631088, + -0.014583521, + -0.011045885, + -0.022671467, + -0.029143885, + -0.019035269, + 0.0033110448, + 0.008422234, + -0.014394134, + -0.0031941093, + -0.027241092, + -0.02414911, + 0.023269465, + -0.017108435, + 0.017810399, + -0.023564212, + 0.023298336, + 0.02050731, + -0.028181002, + 0.0022200232, + -0.012482806, + -0.042123217, + -0.0051585194, + -0.024881914, + -0.027460173, + 0.007761834, + -0.029448876, + 0.005979738, + 0.010178739, + 0.0049729752, + -0.01721214, + 0.010329882, + -0.017975688, + -0.014564059, + 0.026580911, + -0.0076374314, + -0.023837708, + -0.005984069, + -0.031439472, + -0.020320669, + -0.010960887, + 0.021110386, + -0.021982405, + -0.005043304, + 0.0087620085, + -0.0006000952, + 0.009444962, + -0.029458666, + -0.01321993, + -0.0013877916, + -0.0052451408, + -0.019196238, + -0.0135496855, + 0.01214257, + -0.00095313747, + -0.024650173, + 0.0035313836, + -0.020989507, + -0.023975905, + -0.061170943, + 0.0021542043, + -0.027573464, + 0.031197196, + 0.0016875245, + 0.016707862, + -0.017884629, + 0.010588453, + 0.0003217257, + -0.008249043, + -0.0018713112, + -0.029239362, + 0.011545266, + -0.016285457, + -0.020066252, + -0.02025988, + -0.01973867, + 0.0028895421, + -0.018322702, + 0.023566721, + 0.005677677, + -0.007129119, + -0.021073507, + 0.015949585, + -0.014136114, + 0.016599808, + -0.025877994, + -0.009083039, + 0.0006602152, + 0.0012898447, + -0.017796261, + -0.005037906, + -0.0215578, + -0.007530269, + -0.036097307, + -0.020171914, + 0.017328352, + -0.013774854, + -0.0139682535, + -0.01696255, + -0.012740364, + -0.0021290404, + 0.0010209715, + -0.028809944, + 0.0012090637, + -0.011025946, + -0.014491997, + -0.01245421, + -0.026373347, + -0.0024808794, + -0.021722943, + -0.025398236, + -0.009186544, + -0.028041692, + -0.0029420133, + -0.024554333, + -0.01436823, + -0.021514114, + 0.020888489, + 0.03226376, + 0.012135875, + -0.019096289, + -0.01565662, + -0.011484992, + -0.0066811983, + -0.051553834, + 0.0153058525, + 0.007919783, + -0.005422279, + -0.010412547, + -0.030131988, + -0.045105573, + -0.011181071, + -0.024809, + -0.003744781, + 0.014909841, + -0.031448588, + -0.00768618, + 0.0057576266, + -0.031851426, + -0.03081338, + -0.022377385, + -0.0149473995, + -0.023685401, + 0.01736952, + 0.0019116767, + -0.009186693, + -0.014527931, + 0.012315672, + -0.0168948, + 0.019290743, + -0.0011078024, + -0.008343819, + 0.0076200645, + 0.008115009, + -0.019469067, + -0.017839674, + -0.0073810318, + 0.011557107, + -0.025441753, + -0.0042831614, + 0.010996593, + -0.014931194, + -0.00021821214, + -0.027937261, + -0.015950589, + -0.014122604, + -0.010402211, + -0.004986974, + 0.004055251, + 0.01576939, + 0.01502241, + -0.022389295, + -0.023552136, + 0.0042517916, + -0.015586986, + -0.010374644, + -0.0073572416, + 0.009447464, + -0.0008053382, + 0.0052248617, + 0.017754903, + -0.009665844, + -0.015191792, + 0.004551087, + 0.0025038358, + -0.020910956, + -0.002097485, + -0.019979503, + -0.014772585, + -0.02349736, + -0.019023024, + -0.017302256, + -0.017757835, + -0.011111174, + -0.0051349048, + -0.0016326045, + -0.018034175, + -0.007585132, + -0.0070743016, + -0.012169994, + -0.015141435, + -0.017489504, + -0.0063054576, + -0.007179904, + -0.0282238, + -0.007991642, + -0.036205817, + 0.011827049, + 0.016177837, + -0.010412179, + -0.018548572, + 0.028454332, + -0.02359403, + -0.0038985068, + 0.0011279259, + -0.02250899, + -0.02149538, + 0.011240545, + 0.008168777, + -0.0211529, + -0.03364551, + -0.014603747, + 0.0015003796, + -0.00952554, + -0.015502563, + 0.0006649221, + 0.011248496, + 0.01784925, + -0.009390784, + -0.002869008, + 0.019104201, + -0.018500552, + -0.0063149733, + -0.021372803, + 0.011992119, + 0.014065252, + -0.045038674, + 0.007251404, + -0.0095090065, + 0.012704142, + 0.0032662011, + -2.1020373e-05, + 0.0022971123, + 0.00013232463, + 0.0024000804, + -0.01921111, + -0.009561005, + -0.0058489665, + 0.007937154, + 0.025872126, + -0.015911538, + 0.0028948947, + -0.019246984, + -0.035152998, + -0.0145207215, + -0.038115125, + 0.0025850527, + -0.0042737527, + -0.015021308, + 0.009351208, + -0.031801965, + 0.023291692, + -0.018144827, + -0.018630596, + -0.019733625, + -0.0029539862, + -0.024636555, + -0.0036781172, + -0.0220343, + -0.004110679, + -0.023892798, + -0.008034992, + 0.0066196024, + -0.0015891255, + 0.0043219454, + -0.0051179705, + 0.009280977, + -0.026747543, + -0.0001879185, + 0.0005108771, + 0.013691732, + -0.018003015, + -0.018319277, + -0.006590301, + -0.00097066734, + -0.0046101185, + -0.012193476, + 0.0017623377, + -0.019890131, + 0.0058993883, + -0.009021555, + -0.011433174, + 0.012238488, + -0.0026607406, + 0.009850721, + 0.011028605, + -0.001164812, + -0.0059497016, + -0.019443864, + -0.013322747, + -0.0036208103, + 0.0009373545, + 0.010784454, + -0.008356045, + -0.017831868, + -0.018162267, + -0.015025988, + -0.006228898, + 0.016006438, + 0.005096322, + -0.015294758, + -0.01967268, + -0.014428188, + -0.02607263, + -0.01355589, + 0.0048832484, + -0.0039081336, + -0.0037498898, + 0.0030028042, + -0.006029829, + -0.002048152, + -0.0107712895, + -0.0032875142, + -0.0022387553, + -0.020398617, + -0.0022353502, + 0.0067932997, + -0.00613838, + 0.017376086, + -0.00075381756, + -0.025947245, + 0.008113367, + -0.017694002, + -0.02625653, + 0.0019224791, + 0.017219523, + 0.011197276, + -0.017120715, + -0.015914246, + -0.024213964, + -0.03270408, + 0.023322472, + -0.0020554725, + -0.025728384, + -0.013047682, + 0.007542984, + 0.012576542, + -0.02794779, + -0.007094931, + -0.014350949, + 0.00027274352, + -0.0058004665, + -0.00070577493, + -0.013063862, + 0.008369146, + -0.007472925, + 0.0031433757, + -0.0056944075, + -0.020723492, + -0.0017263051, + -0.008754327, + -0.009715414, + -0.006780191, + -0.016049607, + -0.022754954, + -0.02950265, + -0.0052818186, + -0.010302463, + -0.019739477, + -0.0101769185, + -0.023072282, + 0.0276796, + -0.003148521, + -0.009658301, + 0.026918638, + -0.012698322, + -0.00045176223, + -0.006360534, + 0.024828391, + -0.008018412, + 0.015707452, + -0.0011888365, + 0.014372334, + 0.0063263224, + 0.018075807, + 0.0005096416, + -0.0275673, + 0.010856778, + 0.010575295, + -0.002980972, + -0.0021702077, + -0.0057353927, + -0.011604805, + -0.0415221, + -0.0013468106, + -0.007135502, + -0.02149391, + -0.0056499518, + -0.020058217, + 0.02648867, + 0.004656269, + -0.012607649, + -0.015606563, + 0.006194055, + 0.0063236114, + -0.0044708494, + -0.035211693, + -0.024045886, + 0.028435566, + -0.02141966, + -0.010677742, + 0.007683127, + 0.0031241642, + -0.008023242, + 0.0030567688, + -0.0030210812, + -0.011008869, + -0.017816823, + -0.02987585, + 0.0054381993, + 0.00643989, + -0.033819765, + -0.0047755097, + -0.026865507, + -0.028140403, + -0.015976215, + 0.0074315076, + 2.0905412e-05, + -0.008876729, + -0.016576316, + -0.018056134, + 0.0014143884, + -0.025165144, + 0.0009011422, + -0.037792817, + 0.014257089, + -0.008022292, + -0.009389046, + -0.028930116, + 0.028425457, + 0.014716291, + -0.02746292, + 0.0067892442, + -0.022643274, + -0.007982713, + -0.016064432, + 0.009369349, + 0.0026525327, + 0.0012622033, + 0.0055886223, + 0.0153733175, + -0.0031955284, + 0.00452807, + -0.0061560078, + -0.0063422536, + -0.003971293, + -0.017111156, + -0.021866247, + -0.019838365, + 0.004003166, + -0.018149938, + -0.012263693, + -0.012471509, + -0.0042286706, + -0.020704271, + -0.0055879755, + 0.00739713, + -0.019378306, + 0.006722741, + -0.004366941, + 0.0031785518, + -0.00085832964, + -0.028869152, + -0.014633092, + -0.011794354, + -0.018520001, + -0.0056352173, + -0.0067553297, + -0.0014990753, + 0.00462334, + -0.011913861, + -0.008331674, + -0.009806948, + -0.011295129, + -0.0021999986, + 0.0019755855, + 0.00575719, + -0.019564066, + -0.007271393, + 0.001041801, + 0.008697099, + 0.020525405, + -0.025878191, + -0.02522826, + -0.016389553, + -0.0012402784, + -0.005939154, + -0.054500215, + -0.015222629, + 0.007582737, + -0.012348437, + 0.010198196, + -0.008116366, + 0.011425628, + -0.008147878, + -0.01666901, + 0.004175146, + 0.0002012883, + -0.011956124, + -0.015597596, + -0.01012467, + -0.0037425614, + -0.0029822178, + 0.005391091, + 0.012306519, + 0.037077814, + 0.0021442128, + -0.022219935, + -0.004255902, + 0.009389237, + -0.007861256, + 0.02294614, + -0.018884327, + -0.012099857, + 0.006346657, + 0.01606193, + 0.020337118, + -0.01673683, + -0.013303165, + -0.01988823, + 0.009056109, + 0.015692806, + 0.011756008, + -0.009430808, + -0.01348396, + -0.01171288, + -0.017588696, + 0.008573836, + -0.011962511, + 0.0003490073, + -0.029851705, + -0.006715209, + 0.0056668646, + -0.013989123, + -0.013344124, + -0.015961736, + 0.0023044192, + -0.012340781, + -0.001805749, + -0.021844285, + 0.00814489, + 0.004530844, + -0.00052617735, + 0.004731812, + -0.016064921, + -0.024418248, + -0.007074771, + 0.013806324, + -0.01680823, + 0.0025631788, + -0.012869256, + -0.0027017843, + -0.004979457, + -0.01534114, + -0.0072278376, + -0.004141934, + -0.013331202, + 0.002033351, + -0.0013660553, + -0.006687552, + -0.009171711, + -0.013104451, + 0.012034345, + -0.016785268, + -0.01167437, + -0.023496078, + -0.014862022, + -0.006421455, + -0.0068570925, + 0.01191121, + -0.0054661566, + -0.022918858, + -0.001985822, + -0.0049859677, + -0.021810547, + 0.0066665905, + 0.009318861, + 0.0029374436, + -0.011130026, + -0.018134706, + 0.0028715811, + 0.0054514655, + 0.022371113, + -0.010220105, + -0.03209899, + -0.022825059, + 0.011357336, + -0.009266299, + -0.0060063787, + -0.014305525, + -0.005637546, + -0.024105802, + -0.014448754, + -0.0119039845, + -0.023162637, + -0.026844515, + -0.019704675, + -0.011583089, + -0.009565511, + -0.0028374337, + -0.005430067, + -0.003043382, + -0.011023033, + -0.009518162, + -0.02178195, + -0.006533423, + -0.015402035, + -0.00085634965, + -0.023198057, + -0.030991992, + -0.023247045, + -0.009685689, + -0.015685657, + -0.014917587, + -0.013736862, + -0.011092115, + 0.0042617545, + -0.0032760145, + -0.009596822, + -0.023683032, + 0.0064124013, + 0.009796886, + -0.0005971891, + -0.004780948, + -0.012132384, + -0.014537827, + -0.0055073146, + -0.023345085, + -0.00090386963, + -0.008758921, + -0.015699316, + 0.023000967, + 0.031264283, + 0.008917689, + 0.0010866076, + -0.017392335, + -0.0033029192, + 0.005104074, + 0.008990698, + -0.003530363, + 0.022692697, + -0.030823024, + -0.0039160103, + 0.005114658, + -0.0033694676, + -0.009383119, + -0.036239963, + -0.012100081, + -0.022265758, + 0.009320207, + 0.011618115, + 0.0011414918, + 0.016187401, + -0.004863022, + 0.012207145, + 0.011052208, + 1.2601871e-05, + -0.00095832534, + -0.005291919, + -0.010231097, + 0.0048693647, + -0.010679579, + -0.025772443, + 0.00050831307, + 0.003506982, + -0.0138642145, + -0.018706225, + -0.009423947, + 0.0064649386, + -0.02202078, + -0.0041103787, + -0.0037224363, + -0.011723855, + 0.0020034707, + 0.012330279, + -0.01654891, + -0.01485977, + -0.0051656384, + 0.00032510245, + -0.03508825, + -0.0068022576, + 0.0025402547, + -0.013428452, + 0.0033043122, + -0.019109167, + -0.017564647, + 0.02106246, + -0.018700833, + -0.0020236282, + 0.004200884, + -0.012540741, + -0.0033041288, + -0.009393909, + -0.011688545, + 0.0042149024, + -0.026029952, + -0.007763478, + -0.017720444, + -0.010502764, + 0.0049668467, + -0.0064212214, + -0.0007826408, + 0.02670565, + -0.012521837, + -0.017757645, + -0.024048416, + -0.012893532, + -0.0073059727, + -0.030798463, + -0.003842224, + -0.01222163, + 0.0020708723, + -0.007445283, + -0.02436208, + 0.019307887, + -0.014516179, + -0.011027275, + 0.0037243627, + 0.010886321, + -0.017364563, + 0.0028892523, + -0.011291871, + -0.012909059, + 0.008124247, + 0.014064825, + 0.014041775, + -0.0072785686, + -0.027194113, + -0.0044519054, + 0.015377997, + 0.00885574, + -0.021656323, + -0.009923894, + -0.0122789005, + -0.0022296933, + 0.0063852393, + 0.018697869, + -0.00805937, + -0.019586924, + -0.0024442717, + -0.005722123, + -0.020560179, + -0.018671298, + -0.013685971, + 0.00015256715, + -0.0017424225, + -0.001480103, + -0.0132408375, + -0.015422889, + 0.007092285, + -0.018763166, + -0.021376975, + -0.015750855, + -0.021554714, + -0.004846995, + -0.0017535482, + -0.0065871314, + 0.0034575362, + 0.02666194, + 0.0054690996, + 0.0019263638, + -0.0017792078, + -0.0137522165, + -0.0099173635, + -0.0012659103, + -0.005156649, + -0.014409777, + 0.012387496, + -0.02073748, + 0.010511996, + 0.00093759096, + -0.018450027, + -0.024901971, + 0.0005054961, + 0.0015303025, + -0.024679022, + -0.011447455, + -0.025831468, + -0.01826838, + -0.018167851, + 0.01667118, + -0.0382475, + -0.020435756, + 0.004002674, + 0.0040391865, + -0.033557247, + 0.007378664, + -0.011598914, + 0.008079326, + 0.0058407746, + -0.0023262443, + -0.013269279, + -0.02052988, + -0.00045621782, + -0.0074364524, + -0.020986145, + -0.009009624, + -0.012459822, + -0.015974086, + 0.027518675, + -0.016011294, + -0.0040011844, + -0.0029259818, + -0.010569944, + -0.019422961, + 0.011490211, + 0.022068817, + 0.0038898874, + 0.0015059994, + 0.004413155, + -0.014970272, + -0.0144937495, + 0.0036902542, + -0.0116159255, + -0.007831709, + -0.010687308, + -0.017000064, + 0.009524929, + -0.020333795, + 0.024464507, + 0.013383116, + 0.0021701914, + -0.016686307, + -0.006176389, + -0.02291241, + -0.024340961, + 0.010649241, + -0.03339452, + 0.0056744143, + 0.011441912, + -0.04251557, + -0.0061125695, + -0.002545088, + -0.005054337, + 0.001157966, + -0.007125488, + -0.004521612, + -0.002664473, + -0.045755327, + 0.009294362, + -0.021948894, + -0.003742752, + -0.011462713, + -0.006415919, + -0.003509246, + -0.017456492, + -0.00897197, + 0.0061035417, + -0.013388794, + -0.013275792, + 0.0017911198, + -0.0040556514, + -0.007929496, + -0.002213351, + -0.0015980192, + -0.033623654, + 0.0021708352, + -0.01781102, + -0.02030536, + -0.02480246, + -0.016969733, + -0.00012135276, + -0.006391343, + -0.013842964, + -0.02594968, + -0.0051846774, + 0.007263656, + -0.022278404, + -0.022381537, + -0.011546507, + -0.036203526, + 0.015561715, + 0.0077054813, + 0.0050137085, + -0.019053176, + -0.026228797, + -0.001902496, + -0.009214122, + -0.001208603, + -0.008116783, + 0.00096908427, + 0.0039910995, + -0.013219144, + -0.022335513, + -0.009063969, + -0.018267587, + -0.0007120346, + -0.0063980487, + -0.016490027, + -0.03182209, + -0.010609336, + 0.004552421, + -0.008342656, + -0.026744563, + 0.0007543914, + -0.0067423354, + 0.0167566, + 0.015947243, + 0.01116507, + -0.0061726347, + -0.012830588, + 0.0029721002, + -0.014595632, + -0.035108488, + 0.0077490057, + -0.0017785216, + -0.002721108, + 0.015892483, + -0.027182417, + 0.003339979, + 0.00071544107, + -0.02331781, + -0.018146448, + -0.012655494, + 0.018275533, + -0.001948646, + -0.01474753, + -0.0055400403, + -0.011586013, + -0.0075813765, + -0.002431566, + -0.0076497328, + 0.0204741, + -0.020436605, + -0.016763704, + -0.026513834, + -0.009054836, + -0.0052715205, + -0.0025338295, + -0.008944665, + -0.019025447, + -0.006415061, + -0.027848115, + -0.0078439675, + 0.006756222, + -0.014157028, + -0.00090614293, + -0.0024381252, + 0.008209089, + 0.0070133, + 0.022650559, + 0.004880871, + -0.02062593, + -0.029443972, + -0.015468785, + 0.02300527, + -0.0031685205, + -0.030802932, + -0.013310063, + -0.002066921, + -0.008701558, + 0.0033636668, + -0.0014416723, + 0.006464233, + -0.02025999, + 0.0053224624, + 0.00087898684, + -0.026925068, + 0.008158848, + -0.011513876, + -0.016342701, + -0.012385633, + 0.0017625394, + -0.017348437, + -0.015360161, + 0.0011875741, + 0.047618818, + -0.0049550533, + -0.0012920954, + -0.010688249, + -0.027643977, + 0.0018152433, + -0.016298313, + -0.0022730427, + -0.015035827, + -0.019337468, + -0.0078098113, + -0.003956723, + -0.010538601, + 0.0107027665, + 0.0054722084, + -0.005178911, + -0.011542702, + 0.0011946873, + 0.0059932657, + 0.004630923, + 0.018524133, + -0.011264202, + -0.0200946, + -0.012891416, + -0.009179762, + -0.0038922406, + -0.013166134, + 0.024693154, + 0.0072164047, + -0.011577813, + -0.008952147, + -0.011330267, + -0.009195543, + -0.012412917, + 0.007989545, + -0.034786455, + -0.0034909209, + -0.02667961, + 0.0028405848, + -0.018193888, + -0.0071296724, + 0.0044171466, + 0.0036167616, + -0.030033465, + -0.00426223, + 0.006994182, + -0.02442158, + 0.015946811, + 0.028359516, + 0.005488941, + -0.016195517, + -0.018907534, + -0.008101218, + -0.012214035, + 0.021252327, + -0.009704241, + -0.012160393, + 0.0052405433, + -0.00916833, + 0.004878555, + -0.011332819, + 0.003364832, + 0.0059258975, + -0.008482758, + 0.032306936, + -0.004028693, + -0.023645995, + 0.007816991, + -0.0029139707, + -0.02026825, + -0.015875304, + 0.008560447, + -0.002827643, + -0.015528002, + -0.015145886, + -0.017255452, + 0.0033607883, + -0.013821884, + -0.013175115, + 0.004551498, + -0.012058282, + -0.014951615, + -0.008961619, + -0.0042397114, + -0.002187623, + -0.004555795, + -0.012695654, + 0.0046388935, + -0.017841842, + -0.015349533, + 0.0019707754, + -0.023743782, + -0.019574774, + -0.012210343, + -0.022068301, + -0.009679223, + 0.0061175046, + -0.0010741532, + -0.011142793, + -0.021743799, + -0.0016996642, + -0.0042892452, + -0.0012161323, + -0.01180559, + -0.021009397, + 0.007891723, + -0.0115955565, + -0.012958334, + -0.0086273, + -0.0038902543, + -0.024251383, + 0.01775439, + -0.023631442, + -0.010323871, + -0.00016481662, + -0.006679479, + -0.0072534243, + -0.0011488155, + 0.023913436, + -0.017856816, + -0.0075022834, + 0.0214544, + -0.014020111, + 0.005040638, + -0.023044525, + -0.0077573727, + -0.008262369, + -0.01105769, + -0.010917259, + -0.007443562, + -0.0072978134, + -0.00077672466, + 0.011178927, + -0.020335153, + -0.020237828, + 0.024976874, + -0.035057075, + 0.0048997123, + -0.002264139, + 0.01893232, + -0.016381418, + -0.0065383827, + -0.043356672, + -0.0039160177, + -0.005435939, + -0.016032236, + -0.0076035922, + -0.0052048317, + -0.019745948, + -0.030038698, + -0.030186081, + -0.012090257, + 0.010751974, + -0.001411735, + -0.012106645, + 0.0065157153, + 0.0066455137, + -0.005093555, + -0.023488004, + -0.0051107877, + 0.01406948, + -0.012788095, + 0.020647688, + -0.012944932, + 0.002216461, + -0.026806343, + -0.010695447, + 0.014429338, + -0.0032092072, + -0.013207866, + -0.016911564, + 0.0062149046, + -0.0017544775, + -0.0003034428, + -0.024232326, + -0.023108792, + -0.0076451874, + 0.0041781226, + -0.0060197073, + 0.019107692, + -0.028682947, + 0.0016150572, + -0.009016527, + 0.007248769, + 0.013333352, + -0.023969864, + -0.0048263366, + 0.012554195, + -0.0026629968, + 0.01604677, + -0.0072271326, + -0.016393486, + -0.02319221, + -0.0036933913, + -0.01718011, + 0.02358142, + -0.017637514, + -0.025130112, + -0.010230013, + -0.008995033, + 0.012655075, + 0.005126007, + -0.0021167097, + -0.010170102, + 0.02019526, + -0.022996603, + 0.007536235, + -0.012965355, + -0.02606583, + -0.017775677, + -0.0026680778, + 0.011492029, + -0.008646078, + -0.007663443, + -0.009382372, + -0.022259321, + 0.016447082, + -0.0108989375, + 0.0034752525, + 0.014486529, + 0.006216876, + -0.010893621, + -0.03905432, + -0.031493425, + 0.01913836, + -0.031455938, + -0.02064994, + 0.007939851, + 0.010381343, + -0.034262676, + 0.0014198071, + -0.0014532983, + -0.004002232, + -0.02123728, + -0.008708201, + -0.00029577705, + -0.013503611, + 0.0006510488, + -0.02040503, + -0.011747822, + -0.0049446896, + 0.004133945, + -0.0297947, + -0.018259134, + 0.0029627655, + -0.014393009, + -0.0125284195, + 0.010654658, + -0.0032995378, + -0.007574891, + 0.016014157, + 0.013807263, + -0.027424902, + 0.008317142, + -0.004577516, + 0.0100360215, + -0.026873799, + -0.006766318, + -0.010908122, + -0.01796519, + 0.043450966, + -0.006641065, + -0.007928098, + -0.011413494, + -0.01883019, + -6.114072e-05, + -0.0144496765, + -0.012656266, + 0.017881254, + -0.026710724, + -0.018010387, + -0.0034578363, + -0.004478023, + -0.0006725918, + 0.015244381, + -0.0072118035, + 0.0068504796, + 0.02061482, + 0.0003398795, + -0.005827474, + -0.018195158, + 0.006168969, + 0.027935889, + 0.023160178, + -0.007202969, + -0.011719085, + 0.029881889, + 0.0025682407, + -0.013336078, + 0.0051265056, + -0.010820024, + 0.018590324, + 0.0113820275, + -0.0052753743, + -0.01271333, + 0.001989258, + -0.009949389, + -0.0035730875, + -0.0063440376, + 0.0057301074, + -0.02290349, + -0.024100704, + -0.00059562933, + 0.009322452, + 0.009382888, + -0.021524755, + -0.015845833, + -0.012570352, + -0.0010221135, + -0.03718064, + -0.0044331425, + 0.022054084, + 0.01260156, + 0.0054611834, + -0.005227955, + -0.0048909294, + 0.004177917, + 0.0075321016, + -0.01965893, + -0.027116869, + -0.008214532, + -0.009226901, + -0.010502623, + 0.020855717, + 0.008562854, + -0.0074387854, + -0.017869141, + -0.00057300826, + -0.009523572, + -0.008289761, + -0.0033735374, + 0.0078028208, + -0.017874826, + 0.01681864, + -0.015757624, + -0.0034359877, + -0.02580881, + -0.0062520932, + 0.0010763232, + 0.0054379827, + 0.012494876, + -0.0053257295, + -0.021562506, + 0.003994311, + -0.0066813603, + 0.009332686, + -0.0166027, + 0.031588092, + -0.0004572195, + -0.015257538, + 0.010520593, + -0.015580805, + -0.014557063, + -0.0071817897, + 0.0066999863, + -0.011169973, + -0.0007315176, + 0.009121814, + -0.009939898, + -0.013016026, + 0.008189126, + -0.021192187, + 0.009432701, + 0.009197446, + 0.019493883, + 0.00120638, + 0.022421664, + -0.012317796, + -0.016406538, + -0.008924431, + 0.007328134, + -0.0067270007, + 0.007105497, + 0.00070522, + 0.0076226485, + -0.018824495, + -0.0007471588, + -0.010893903, + -0.014779755, + -0.024099747, + -0.01615422, + 0.0071953125, + -0.016829869, + 0.007510105, + 0.007319286, + -0.017591853, + 0.015086699, + 0.016611276, + 0.008319821, + 0.011210762, + -0.0063285017, + -0.018733371, + -0.042645294, + -0.014675339, + -0.024291532, + -0.0033829862, + -0.02579826, + 0.0002486735, + -0.023192307, + -0.01690639, + 0.0022680506, + -0.0029528057, + -0.008770935, + -0.023717843, + 0.018435774, + -0.015140729, + -0.016515547, + 0.012340567, + 0.014226401, + -0.009534353, + -0.010624, + 0.008016281, + -0.014955629, + 0.0005248277, + 0.01394805, + 0.0041234973, + -0.0015119642, + -0.023852505, + -0.015105871, + -0.034974508, + 0.0029265552, + 0.01090716, + -0.026337653, + -0.017069556, + -0.024609981, + -0.01776915, + -0.0074618547, + -0.0031428533, + 0.002065169, + 0.01909795, + -0.018624615, + 0.0021361068, + 0.007803035, + 0.006701194, + -0.01696611, + -0.009363294, + -0.004088332, + 0.0067945733, + -0.0048701987, + -0.014294925, + -0.013161467, + -0.010157216, + -0.0016793037, + 0.0071479096, + -0.028272456, + 0.0041376404, + -0.030759878, + -0.008643253, + -0.021423202, + -0.01239772, + -0.0037929162, + 0.0031567665, + 0.011929073, + -0.0010851229, + -0.0006828874, + -0.0014338655, + -0.028802922, + -0.030854538, + -0.0028101564, + 0.0013459462, + -0.022142608, + 0.008999556, + 0.011053035, + 0.0038177567, + -0.01641115, + 0.010364125, + -0.0019638604, + 0.010719195, + -0.008843248, + 0.01229672, + -0.037094507, + -0.017109457, + 0.010592533, + 0.0008575401, + 0.033432785, + 0.0029849256, + 0.0006420669, + -0.0056117624, + -0.0068411604, + -0.020173673, + 0.0019467243, + -0.015443168, + 0.0026420604, + 0.008112833, + -0.008030591, + -0.0039892443, + -0.007353643, + 0.010649823, + -0.01066151, + 0.004409575, + 0.0019685167, + 0.0015812252, + -0.012213081, + -0.022015627, + 0.018953016, + -0.00025066832, + -0.0068155346, + -0.010003597, + -0.004519364, + 0.0019916857, + 0.0021311054, + 0.0018675915, + -0.008461081, + -0.025440237, + -0.0052149966, + -0.015987337, + -0.020733794, + 0.008714415, + -0.0056986264, + -0.017224737, + -0.020626528, + 0.010067654, + 0.01616429, + -0.012997368, + 0.0074203215, + -0.01719102, + -0.008673112, + 0.01751923, + -0.013054153, + 0.017522382, + 0.011492295, + -0.0037545818, + -0.0079615675, + 0.0017281928, + -0.0074296496, + -0.0027836694, + -0.012324199, + -0.01182532, + -0.022715382, + -0.019356795, + 0.0069030053, + -0.016157765, + -0.0083453655, + -0.0115815895, + 0.010299191, + -0.016124856, + -0.0033103484, + 0.0047434084, + -0.03396783, + -0.012715533, + 0.007780788, + -0.003730864, + -0.033478495, + 0.022260835, + -0.017696965, + -0.011293784, + -0.0045606205, + -0.002221578, + 0.0017130449, + 0.0030179257, + 0.005015276, + -0.003886562, + 0.00586543, + -0.005255396, + -0.0036396866, + -0.010904603, + -0.031984415, + -0.01614787, + -0.0136814425, + 0.00841147, + -0.013134339, + -0.0074043334, + 0.0032166985, + 0.0017375206, + 0.006682084, + -0.028636115, + -0.02707973, + -0.020299312, + 0.0036609375, + 0.0056392485, + -0.0071104807, + -0.018094575, + -0.014444262, + -0.0048293513, + -0.013373309, + -0.005964297, + -0.0037066261, + 0.0019807373, + 0.02152432, + 0.008394232, + -0.010409559, + 0.011220191, + -0.018036118, + 0.0027405475, + 0.008609342, + -0.01302681, + -0.019159812, + -0.005543874, + -0.022027902, + -0.01950949, + -0.0027326276, + -0.014674498, + -0.0013454318, + -0.0087322695, + -0.028456671, + -0.014759988, + 0.006476016, + -0.03061325, + 0.010329955, + -0.0026884177, + -0.0011715699, + 0.010680769, + -0.03377622, + 0.0005434596, + 0.00038743316, + -0.02713559, + -0.012009862, + 0.008789388, + 0.0010790995, + -0.009649981, + -0.018916698, + 0.007248682, + 0.0031860461, + 0.004006503, + 0.0003044014, + -0.012683314, + -0.00430335, + 0.0056565613, + -0.02827535, + -0.01705246, + 0.0022637476, + -0.0284536, + -0.016986474, + 0.005541518, + -0.013730967, + -0.0145026, + -0.0058703586, + 0.008071489, + 0.003133511, + -0.02361489, + 0.0011654103, + 0.01094434, + -0.019525617, + -0.00024965967, + -0.004575112, + 0.020237394, + -0.0051538385, + -0.026293758, + -0.030164724, + -0.018645745, + 0.003305308, + -0.0041720327, + 0.026246496, + 0.0045102537, + 0.008074561, + -0.011602975, + -0.0092810765, + 0.0024595503, + -0.006647826, + 0.0009830139, + -0.036207918, + -0.01982535, + -0.008168553, + -0.0067513306, + -0.0120495325, + -0.03260226, + -0.023557369, + -0.016263016, + -0.001485406, + -0.0043041627, + -0.025277423, + 0.010078899, + -0.00981938, + -0.03099428, + -0.018221281, + 0.014388434, + 0.016387062, + -0.003931142, + -0.009564889, + -0.010098628, + -0.0037554835, + -0.0023463229, + -0.00014111173, + -0.023253944, + -0.0368149, + -0.035873506, + 0.009776287, + -0.010967533, + -0.049726583, + -0.0038789387, + -0.013179236, + -0.018620979, + -0.027142635, + -0.011663369, + 0.00039275835, + -0.0018271452, + -0.020127214, + -0.0060114986, + -0.015902942, + -0.007080253, + -0.004545451, + -0.0101943845, + -0.010597, + -0.0070094042, + 0.0008357698, + 0.012766109, + -0.010824433, + -0.005778888, + -0.0071063377, + -0.013403067, + -0.003491888, + -0.007815721, + 0.003358629, + -0.013129837, + 0.009243206, + -0.00980259, + -0.00502189, + 0.015842898, + -0.0036952156, + -0.026592366, + -0.028021941, + 0.0018157689, + -0.018597033, + 0.0021752026, + -0.0054294267, + -0.028198311, + -0.024661824, + 0.010836677, + -0.01553575, + -0.014714017, + 0.0047012335, + -0.01023141, + -0.005782889, + -0.00055589335, + -0.008070237, + -0.005105468, + 0.0472259, + -0.011819196, + 0.018376997, + -0.0012717012, + -0.0131359445, + -0.0128971515, + -0.0049134637, + -0.02240043, + -0.008732523, + -0.018489506, + 0.024439164, + -0.021720544, + 0.00667206, + -0.0033432483, + 0.0063333386, + -0.012109499, + -0.013573801, + 0.008884264, + 0.00808985, + 0.0018209206, + 0.0044969567, + -0.017945357, + -0.0068543814, + 0.00028514676, + -0.023765337, + -0.010399122, + -0.034869485, + -0.018100873, + -0.005862738, + 0.0026768313, + -0.015385262, + -0.022233704, + -0.016333206, + -0.009921145, + -0.033774275, + -0.023245482, + -0.017038397, + -0.020233206, + -0.0074717314, + 0.012519858, + 0.013270874, + -0.03594019, + 0.0123081, + 0.018352112, + -0.0026598722, + 0.024668444, + -0.010741194, + 0.0025140226, + 0.016016679, + -0.011864648, + -0.0043841423, + -0.009303034, + -0.015621326, + -0.013377893, + -0.03195623, + 0.0022700622, + -0.024245078, + -0.006263348, + 0.015208511, + 0.031548534, + -0.009383077, + 0.015073564, + -0.010565377, + -0.0036991737, + -0.0020722202, + -0.006524879, + -0.028311195, + 0.0014764641, + -0.028123394, + 0.021030288, + -0.011745138, + -0.016070308, + -0.006509539, + -0.01075979, + -0.0055017406, + 0.005980115, + -0.001429284, + -0.031898066, + -0.002933044, + -0.0024002164, + -0.01462137, + -0.006352446, + -0.0054026283, + 0.0071331947, + -0.021632908, + 0.0072174403, + -0.01242812, + -0.0030788623, + 0.0025485398, + -0.009498953, + -0.023137165, + 0.013633518, + 0.009521641, + 0.011996642, + -0.014407684, + -0.010334266, + 0.0019638713, + 0.008019261, + -0.015110718, + -0.021720475, + 0.008845946, + -0.036879476, + 0.0017405086, + -0.017385736, + 0.0023747468, + 0.017446868, + 0.0011682973, + -0.0024084833, + 0.0031179797, + -0.000674366, + -0.016564328, + 0.0056046294, + -0.0050191977, + 0.00030730251, + -0.015805928, + 0.025278669, + -0.031227393, + -0.01389875, + -0.0012744612, + -0.009962356, + 0.0016960545, + -0.024614489, + 0.0016501783, + -0.03498116, + -0.014286027, + 0.020489587, + 0.01608442, + 0.009156816, + -0.025113314, + -0.034155387, + 0.0007903813, + 0.011749933, + 0.0058667525, + -0.0024513565, + -0.016401049, + -0.0041011977, + 0.0044902544, + -0.00019981626, + -0.019388553, + -0.00035575544, + -0.024418183, + -0.009865658, + -0.017577441, + -0.0037194502, + 0.01871497, + 0.011604736, + -0.021974448, + 0.012413422, + -0.04563246, + 0.016903415, + -0.011401503, + 0.005948849, + -0.022862645, + 0.0073315045, + -0.025533995, + -0.0027762398, + -0.010823195, + -0.02283456, + -0.01957209, + 0.016255649, + -0.016224492, + 0.006214267, + -0.009076091, + -0.008022071, + -0.01444298, + -0.006598625, + -0.012854061, + 0.016489446, + -0.005435221, + 0.0068789143, + -0.010624147, + -0.0074602407, + -0.008529785, + -0.010620728, + 0.017057918, + -0.007568676, + -0.017172508, + -0.028241765, + 0.009938621, + -0.021361953, + 0.00091937394, + -0.0038804682, + -0.003716069, + -0.020134857, + 0.00032259544, + -0.0166674, + -0.0037151047, + 0.010275864, + -0.002327509, + -0.020197287, + -0.012314141, + -0.007632907, + -0.022696238, + -0.0071635097, + 0.0071245017, + 0.020988358, + -0.008237363, + 0.012221959, + -0.03615775, + -0.028105486, + 0.0037385158, + -0.0053221285, + -0.003695463, + -0.021872448, + -0.026888471, + -0.011430034, + 0.00036871474, + -0.0030728353, + -0.029022306, + -0.015903428, + 0.007969364, + -0.011687647, + -0.013086481, + -0.010099091, + 0.024827724, + 0.00039900953, + -0.02817717, + -0.009580492, + -0.028085424, + -2.2862294e-05, + 0.010158546, + -0.0018756471, + -0.01148734, + 0.0033228663, + 0.009906737, + -0.0034158558, + 0.008736589, + 0.034941975, + -0.03242102, + 0.0075717964, + -0.006607069, + 0.01720014, + -0.0038619998, + 0.039830912, + -0.00473424, + 0.0069351313, + -0.018709246, + -0.004952351, + -0.011116982, + -0.013298105, + -0.020810898, + -0.0025739705, + -0.029454045, + -0.0025092138, + 0.0010913528, + 0.00044136134, + -0.008516939, + -0.025728468, + -0.002323827, + -0.0010806383, + -0.019957999, + 0.0073667066, + 0.007081818, + 8.201208e-05, + -0.009846688, + -0.028785447, + 0.008043547, + -0.026294064, + 0.005033917, + 0.0039651743, + -0.0026502952, + -0.015540732, + -0.005782278, + -0.0037134741, + -0.0084123025, + -0.01840137, + -0.003839832, + 0.0059974613, + -0.010609034, + 0.018960722, + -0.009484285, + -0.035887517, + 0.0064411527, + 0.0027545523, + -0.00069258374, + 0.0056823725, + -0.006606477, + 0.0051188143, + -0.017446592, + -0.012654294, + -0.010290086, + -0.012106224, + -0.004503066, + 0.00931078, + -0.008669854, + -0.0058152014, + 2.216175e-05, + -0.0138883805, + -0.022020439, + -0.023482328, + 0.0022948089, + -0.011942372, + -0.008141509, + -0.008254686, + -0.00022125384, + -0.01057109, + -0.005995852, + 0.018950077, + 0.0035027831, + 0.015435777, + 0.017411752, + -0.030458275, + -0.013835972, + -0.02354726, + 0.006699096, + -0.010794279, + 0.007837616, + -0.009814737, + -0.016733196, + 0.0017509542, + -0.0031859677, + -0.0143038435, + 0.012773183, + 0.02199725, + 0.011622949, + -0.008088492, + -0.017126419, + -0.0001815584, + 0.015952256, + -0.010487938, + 0.016582828, + -0.02531915, + 0.0045654327, + -0.026569778, + -0.013248873, + 0.009034424, + -0.013791348, + 0.0046989378, + -0.0011582621, + -0.01695249, + -0.010891254, + -0.0067223273, + -0.013641392, + -0.01222753, + 0.009120915, + 0.010584913, + 0.0033612489, + 0.038296737, + -0.008144171, + -0.029359529, + -0.010024407, + -0.019422792, + -0.01133503, + -0.012097216, + -0.01751543, + -0.008138411, + -0.008050062, + 0.013447978, + -0.0012854422, + -0.02780723, + 0.0105755, + 0.008451527, + -0.013322364, + -0.00843222, + -0.004278594, + 0.017203463, + 0.014183146, + -0.004218642, + 0.009065021, + -0.02346586, + -0.021798458, + -0.019666443, + -0.016222967, + -0.0035970537, + -0.00578475, + -0.012205087, + -0.007314504, + -0.018500637, + -0.02719695, + -0.0060261404, + -0.015004616, + -0.005562409, + 0.031170052, + 0.014676815, + -0.00708561, + -0.004469556, + -0.0035486377, + -0.0071518887, + -0.012623875, + -0.01241273, + -0.0122340005, + -0.019040428, + -0.025597021, + 0.01081387, + -0.038653508, + -0.013655406, + -0.006864655, + -0.0018282312, + -0.005045283, + 0.0035224175, + -0.006645501, + 0.011714808, + -0.017227108, + -0.015084221, + 0.0023604746, + -0.02163905, + -0.0035406854, + 0.0013865688, + -0.0016374711, + -0.009489497, + -0.018607128, + -0.017757617, + 0.0053940485, + -0.025377868, + -0.01637791, + -0.0011695086, + -0.029384352, + -0.014218193, + 0.0048123267, + -0.005598503, + -0.014778224, + 0.02557446, + 0.02907024, + -0.005259597, + 0.0009376991, + 0.005701645, + -0.0066551436, + -0.009382322, + -0.019776832, + 0.004225444, + -0.011366108, + 0.0014334033, + -0.026438475, + 0.004582178, + 0.009835487, + -0.0149809215, + -0.018860983, + -0.019411527, + -0.0018816116, + 0.006617856, + -0.0004400694, + 0.01091372, + 0.020833975, + -0.031489927, + 0.017241897, + -0.008733035, + -0.02897778, + 0.017119633, + -0.01014844, + -0.024305787, + -0.0105638495, + 0.012441401, + -0.013137353, + -0.018491732, + -0.012778427, + 0.019393379, + -0.032713413, + 0.006465135, + -0.0095745325, + -0.029087275, + 0.017310465, + -0.035266135, + -0.0059941793, + 0.01003791, + -0.012109799, + -0.001123648, + -0.023048159, + -0.010977653, + -0.005803013, + 0.0074959523, + 0.005604388, + -0.0029547499, + -0.0017195224, + 0.008964537, + 0.010192938, + -0.005068099, + -0.008724248, + -0.0046917754, + -0.026549775, + -0.0075884676, + -0.0027275644, + -0.019384181, + 0.020761305, + -0.005871677, + 0.0027931589, + -0.0012523038, + 0.016144065, + 0.012154239, + -0.013000525, + 0.022824574, + -0.028898446, + -0.04461911, + -0.014256272, + -0.026542205, + -8.8317516e-05, + -0.02147229, + 0.033443745, + 0.0038512414, + 0.0056115836, + -0.01866253, + 0.01420273, + -0.026211428, + -0.023485756, + -0.012912888, + 0.005449184, + -0.009469763, + -0.0071171117, + 0.04096183, + -0.03088799, + 0.011940612, + -0.014893805, + -0.0034282869, + -0.005980573, + -0.045162007, + -0.007779071, + -0.021294886, + 0.00080488017, + 0.0021301568, + -0.0036917094, + -0.002809505, + 0.005490203, + -0.027091391, + 0.015366476, + 0.007085121, + 0.00031029517, + 0.014169871, + -0.011000899, + -0.0010749513, + 0.028180132, + -0.012234981, + -0.010525501, + -0.0004703474, + 0.0037971602, + -0.014895721, + 0.007572685, + 0.013869688, + -0.016676312, + -0.00740254, + -0.010921993, + -0.02228803, + 0.00020911885, + -0.022556776, + 0.006735066, + 0.0027546466, + -0.0049538165, + -0.001554214, + 0.016542349, + -0.00814459, + -0.008836087, + 0.0066434187, + -0.007282616, + -0.013384046, + -0.012188501, + -0.03069069, + -0.0078277, + 0.0032146915, + -0.0066572144, + -0.016738996, + -0.022536842, + 0.009580059, + 0.009890084, + -0.00740713, + 0.01277033, + -0.0042645223, + 0.011387221, + -0.03365389, + -0.015074069, + -0.02206841, + -0.01311073, + -0.04567244, + -0.0051711416, + -0.011777065, + 0.0113822855, + 0.016683659, + -0.0049860794, + -0.0071881986, + -0.012334147, + 0.027472658, + -0.020969134, + -0.005133866, + 0.011177172, + -0.0038976208, + -0.021539873, + 0.039307263, + 0.0157294, + 0.002510711, + -0.04511904, + 0.006345333, + -0.0031056853, + -0.016880793, + 0.00023847262, + 1.6101545e-05, + -0.021315167, + 7.5473465e-05, + 0.022321105, + -0.022314264, + -0.0071888603, + 0.0140780285, + 0.004448469, + 0.0151352165, + -0.009039834, + -0.012217924, + -0.0040160534, + -0.0025205954, + -0.0043695634, + -0.0001578762, + -0.019662749, + -0.006681385, + -0.017215582, + 0.006384591, + -0.024855364, + -0.013371314, + -0.030168843, + 0.00015630235, + -0.006652077, + -0.014163524, + 0.0059856754, + -0.021442348, + 0.0065887286, + 0.0055932263, + 0.0045380658, + -0.0067479005, + 0.024580145, + -0.0058300323, + 0.022354843, + -0.04051933, + -0.00954529, + -0.0054789176, + -0.008255667, + -0.00030225384, + -0.019454261, + -0.010337586, + -0.012212219, + -0.013048871, + 0.014543445, + -0.0074098953, + -0.0034912757, + -0.034813765, + 0.0059326934, + -0.018915452, + -0.019730637, + -0.0028736964, + -0.018657284, + -0.004081876, + -0.011974834, + 0.0016922009, + 0.010676532, + 0.0020550347, + -0.024738032, + 0.024153335, + -0.01281454, + -0.015776372, + -0.017283238, + -0.0015245883, + -0.0067819, + -0.006375558, + -0.0042744316, + -0.005860313, + -0.02083419, + -0.0021524364, + -0.018571928, + -0.009574172, + 0.002604187, + 0.017156782, + -0.02673988, + -0.042355184, + -0.0060358136, + -0.012452843, + 0.0051412745, + 0.015818693, + 0.006730506, + -0.01653015, + 0.00716844, + 0.015091845, + 0.0028354968, + 0.01894862, + -0.024203822, + 0.0027688565, + -0.01750667, + -0.020247016, + -0.006069953, + -0.011834525, + -0.019445594, + -0.017788924, + -0.005084112, + 0.02182403, + -0.010859667, + -0.0057531735, + 0.015839849, + 0.016328203, + 0.0021282975, + -0.0052218935, + -0.0021221272, + -0.027333872, + 0.00082924985, + 0.0016027701, + 0.02190722, + 0.0005616694, + -0.01967159, + -0.0019856016, + -0.027722092, + -0.0032863775, + 0.00493827, + -0.012506618, + -0.012734044, + 0.0070388853, + 0.0011258308, + -0.019516157, + -0.0018832304, + 0.017549373, + -0.008269462, + -0.029973429, + -0.015913056, + 0.009971563, + -0.019623121, + 0.0088556735, + -0.0273109, + -0.024009423, + 0.0015975004, + 0.0058734813, + -0.021204898, + 0.01053551, + -0.020756304, + 0.0084965555, + -0.0002324022, + 0.0052426294, + -0.0040852446, + -0.036882572, + 0.0031244815, + -0.010308103, + -0.022566274, + -0.0077489223, + -0.0077637043, + 0.0071238405, + -0.009176921, + -0.029061163, + 0.0017319565, + -0.01361306, + 0.00519686, + 0.0062927348, + -0.034157243, + -0.007606044, + -0.0296919, + -0.00048599826, + -0.0138799725, + 0.0028620183, + -0.027310176, + 0.023369493, + -0.005856022, + 0.0077897217, + -0.016707823, + -0.021310344, + -0.025997138, + 0.007259058, + 0.019079521, + -0.010868543, + 0.008142957, + -0.014707511, + -0.01701548, + -0.03667337, + -0.011500416, + -0.01842588, + -0.021493904, + 0.0009570271, + -0.025249733, + -0.024114653, + 0.0015212318, + -0.011260342, + 0.008818117, + 0.0036654915, + -0.0017743191, + -0.012955045, + -0.008446945, + 0.0013949593, + -0.0069971015, + -0.017985068, + -0.029053243, + -0.0063031106, + -0.019520326, + -0.025157232, + -0.030610686, + -0.00699125, + -0.0013152098, + 0.006108464, + -0.025924183, + -0.004412915, + -0.023259688, + -0.008249787, + -0.022506583, + 0.00010757234, + -0.0065595163, + -0.028980209, + -0.034240272, + -0.0016952053, + -0.030507164, + 0.000813692, + -0.026471067, + -0.004303174, + -0.011538035, + -0.026251901, + -0.012500042, + -0.014862449, + -0.0055283606, + -0.01654839, + 0.001088282, + -0.0019485952, + 0.0037696976, + -0.0038992078, + -0.017391745, + 0.00662907, + -0.003858531, + -0.0064436863, + -0.021102, + -0.0063295034, + 0.0028000085, + -0.01038637, + -0.007917383, + -0.01983417, + 0.008267127, + -0.00033674625, + -0.005701116, + -0.0029594952, + -0.011407507, + -0.022228211, + -0.015274349, + -0.019194184, + 0.017409144, + -0.010896868, + -0.00012271854, + 0.014125305, + 0.008651043, + -0.0045087, + 0.011242839, + -0.014850252, + 0.008764287, + -0.008758767, + 0.02432433, + -0.014846431, + -0.020612806, + 0.012601323, + -0.00644663, + 0.007845767, + -0.00199174, + 0.0021436238, + -0.017743984, + 0.04957807, + 0.0032706263, + -0.0023587556, + 0.001930846, + -0.0020493309, + -0.0054888087, + 0.0048509347, + -0.01757638, + 0.008116308, + 0.0047465414, + 0.0108668525, + -0.004641581, + -0.0148670385, + 0.0030208621, + 0.012865751, + 0.009959194, + 0.0009483176, + -0.028661616, + -0.012863135, + -0.018249534, + 0.00034306975, + 0.0030790698, + 0.010871478, + -0.015545678, + -0.0046381494, + -0.015744042, + -0.014095735, + -0.028724063, + 0.026506193, + -0.0098916, + 0.0027475602, + -0.0062166816, + -0.012871242, + 0.008030425, + -0.021793991, + 0.011204861, + 0.0005338931, + -0.017654827, + -0.008224153, + -0.00078723294, + -0.021656862, + 0.007912643, + 0.0021793053, + -0.002388488, + -0.01065333, + -0.006157573, + 0.029710785, + 0.017354611, + -0.009821257, + -0.008082006, + -0.014472236, + -0.008901087, + 0.0053005135, + -0.0035351876, + -0.021019386, + -0.0062398426, + -0.015641676, + 0.0004518842, + -0.0011648547, + -0.025053142, + -0.02515733, + -0.009202385, + 0.0019713077, + -0.03288064, + -0.031047612, + -0.0017382193, + -0.024931166, + -0.00044536352, + -0.0301805, + -0.018939165, + -0.012627299, + -0.024929458, + -0.01728903, + 0.0033104222, + -0.009951147, + -0.009035789, + -0.0063938685, + -0.009755969, + -0.00894659, + -0.007557297, + -0.01769969, + 0.03306876, + 0.015039508, + 0.014763164, + 0.0026179487, + 0.0019456254, + 1.9166666e-05, + -0.0061651953, + -0.03174846, + -0.018934764, + 0.008449914, + -0.021004345, + -0.017418548, + -0.028741498, + 0.03706454, + 0.02305429, + -0.02019347, + -0.009369257, + -0.0129660005, + -0.007101421, + -0.02433155, + -0.0026038236, + -0.006283338, + -0.0022475296, + 0.01570403, + 0.0131374635, + -0.01583143, + 0.00090832624, + -0.017967585, + -0.0039682356, + 0.013776928, + -0.008791175, + -0.010687228, + 0.030178664, + -0.011075136, + -0.016444106, + -0.010541808, + 0.017049199, + -0.002342896, + -0.02446037, + 0.012750268, + -0.025817696, + 0.021896614, + -0.0037434672, + -0.0156092895, + -0.010906348, + 0.006278854, + 0.0014673575, + -0.025684364, + -0.011843144, + 0.020163085, + 0.00491766, + -0.010510765, + -0.030942248, + 0.0153681785, + -0.0035804065, + 0.0021855307, + -0.0041963807, + -0.0099632265, + -0.01565742, + -0.014077777, + 0.0005756376, + -0.0046319333, + -0.0011215906, + 0.005493335, + 0.0015525154, + 0.003087601, + -0.012105857, + -0.014263493, + -0.015192183, + -0.0014133161, + -0.0068569626, + -0.0028404272, + -0.014443627, + -0.019646065, + -0.027810417, + 0.0058506597, + -0.026639193, + -0.014172573, + -0.031474028, + -0.029522803, + -0.004201269, + -0.0055234493, + -0.007945747, + -0.0108259, + -0.027055025, + 0.0058044223, + 0.0028982812, + 0.0017666821, + -0.011131195, + -0.021450717, + 0.0023132453, + -0.038593814, + -0.0002949031, + 0.00912155, + -0.036236145, + -0.013802008, + -0.016539294, + -0.0047178487, + 0.015025402, + 0.00131784, + -0.02483496, + 0.019125996, + -0.00086226244, + -0.0096045965, + -0.021088911, + -0.0016169376, + 0.01481364, + -0.0031751788, + -0.00072189106, + -0.024409229, + 0.018068356, + -0.0055611413, + 0.018551352, + 0.0019240838, + -0.011211165, + 0.0010588896, + -0.013335817, + -0.02887863, + -0.008044534, + -0.028255165, + 0.0002808262, + -0.017011976, + 0.0004470669, + 0.013484206, + -0.012122178, + -0.023326343, + -0.018578826, + -0.009088956, + -0.024403179, + 0.013775753, + -0.018798565, + 0.0034073165, + -0.008726111, + -0.017544543, + -0.034542672, + -0.019925764, + -0.006670602, + -0.01899211, + -0.01314366, + -0.009982366, + -0.012146081, + -0.009611616, + -0.017591218, + -0.017816266, + -0.008545861, + -0.019215943, + 0.011431907, + 0.009456419, + 0.016910719, + 0.0058535794, + 0.023301955, + -0.00914233, + 0.004652519, + -0.020546915, + -0.013105767, + -0.011494058, + -0.013291786, + -0.028613074, + 0.003603855, + -0.013962188, + 0.011728855, + -0.0147288, + -0.02800648, + 0.02101953, + -0.019831013, + -0.015268586, + -0.0097660255, + 0.0032171712, + -0.020091882, + 0.0150328325, + -0.0020950746, + 0.009477826, + -0.01384109, + -0.006216, + -0.018180229, + -0.024955086, + -0.013037927, + -0.015414558, + -0.0052071284, + -0.017506875, + -0.0041268854, + 0.024714574, + 0.00093690294, + 0.014165437, + -0.0081841815, + -0.00424981, + -0.0077476604, + 0.0047372896, + -0.0109597985, + -0.0043390524, + -0.0006364917, + -0.0033615052, + 0.02538908, + 0.011170126, + -0.02947827, + -0.02153472, + 0.0022893308, + 0.0033147554, + 0.012195965, + -0.01321873, + -0.021422263, + -0.016242264, + -0.01728179, + -0.0023752844, + -0.018902328, + 0.0077594225, + -0.013410761, + 0.007976665, + -0.022180852, + -0.018891504, + 0.007176247, + 0.0045498055, + -0.0068674157, + -0.020265575, + 0.017767416, + -0.017033778, + -0.02762072, + 0.020956626, + 0.039412674, + 0.0006337818, + -0.0021312868, + -0.001630989, + -0.04625558, + -0.0032122915, + -0.025366528, + 0.016262488, + -0.0024268061, + 0.0057232855, + -0.015986523, + -0.027730033, + -0.011256172, + 0.0033991812, + -0.010913501, + -0.017897971, + 0.0096981535, + -0.016200714, + 0.0024145453, + -0.0032962067, + -0.020563893, + 0.0015007888, + 0.008192528, + -0.0018111245, + 0.015013196, + -0.0104964515, + -0.011100751, + -0.01697883, + -0.004619371, + 0.007112537, + 0.016526492, + -0.007968968, + -0.02175471, + 0.028750492, + -0.03085147, + 0.0039379057, + -0.01520456, + -0.028871713, + -0.0029787617, + 0.00957905, + -0.008373683, + -0.019015277, + -0.010560748, + 0.023013454, + -0.005076644, + 0.011983863, + -0.0015215551, + 0.027319437, + -0.023387413, + 0.022162413, + -0.003938358, + -0.020403916, + -0.034609575, + -0.020344371, + -0.017148245, + 0.01149908, + -0.016226415, + -0.014569284, + 0.0014740778, + -0.0340015, + 0.02425184, + 0.001953445, + 0.009086819, + 0.02419789, + -0.0025908388, + -0.0048044827, + -0.033229355, + -0.005920419, + -0.026966874, + 0.0049230284, + 0.00032990114, + -0.016129972, + -0.008707309, + -0.0122479005, + -0.0001880758, + 0.0008033562, + 0.01740695, + -0.00977347, + -0.015883047, + -0.028023968, + -0.01008008, + -0.0045394497, + 0.00074329204, + -0.014435354, + 0.01722567, + 0.003724538, + -0.008642964, + 0.010565723, + 0.012301618, + -0.013754609, + 0.015141625, + -0.026820272, + -0.017773712, + 0.012776612, + -0.013528135, + -0.016558556, + 0.010793182, + 0.009264834, + 0.003184771, + 0.009260933, + -0.002795102, + 0.0018211177, + -0.0065486426, + -0.031077394, + -0.012855791, + -0.0026666925, + -0.0072622504, + -0.009667698, + -0.008411641, + -0.024427556, + -0.011704428, + -0.026137967, + 0.011300594, + 0.0025634873, + -0.011215541, + -0.017150547, + 0.011488219, + -0.0105256885, + -0.0052534165, + -0.018952735, + 0.013895165, + 0.017326176, + -0.0021393758, + -0.00852228, + -0.011070383, + -0.0010054546, + -0.014674483, + -0.01345473, + -0.005056485, + -0.02939902, + 0.031913407, + 0.01920252, + 0.028253146, + -0.0121428855, + 0.0047170375, + -0.020796413, + -0.018701192, + -0.046029065, + 0.0061845398, + -0.0058513107, + 0.017609863, + -0.013943196, + -0.01919912, + -0.017258026, + -0.028303085, + -0.014665077, + -0.0035681932, + -0.002214655, + 0.0024670956, + 0.009626449, + -0.023098977, + -0.019449137, + -0.022778409, + -0.008552678, + -0.017866582, + 0.004956226, + 0.006202368, + -0.022737386, + -0.01755249, + 0.015188865, + -0.035328183, + -0.034228757, + 0.00625685, + 0.005592061, + 0.007965239, + -0.028561758, + 0.012752021, + -0.015810117, + -0.003982546, + -0.0090856, + 0.013032336, + 0.0073246453, + 0.00097420363, + -0.013514467, + -0.02050869, + 0.0031788305, + -0.0023858787, + 0.0061731455, + 0.014017812, + -0.009182911, + -0.029050704, + 0.00027851504, + -0.0033282628, + -0.012470161, + -0.006371662, + 0.012743068, + -0.006479124, + 0.011570866, + -0.015690532, + -0.02130557, + -0.0118343225, + -0.025903963, + 0.008962517, + -0.009345834, + -0.022856763, + 0.019790301, + 0.016163545, + -0.00056733866, + -0.023798974, + 0.009856065, + -0.018194545, + -0.0006049069, + 0.0016220994, + 0.001111963, + 0.019082127, + 0.01176988, + -0.019658484, + -0.009086676, + -0.0015978297, + 0.0051717106, + 0.028817479, + -0.009185905, + -0.007871657, + -0.029379684, + -0.040705692, + -0.0006738611, + -0.019207463, + -0.022529999, + 0.00019680336, + 0.005417936, + 0.009712851, + 0.004456777, + -0.013998904, + 0.01798096, + -0.015300258, + -0.0054251743, + -0.016716752, + -0.05131552, + -0.010421592, + -0.0030251436, + 0.010348976, + 0.0016699526, + -0.016336663, + -0.009141206, + -0.02297214, + -0.005893212, + -0.0018999568, + 0.010667395, + -0.0036715313, + -0.01138419, + 0.031822845, + -0.0061618215, + 0.007890886, + -0.018940171, + -0.009333123, + 0.012622136, + -0.018788952, + -0.012505894, + -0.017658845, + -0.00391299, + -0.013105059, + 0.0110503705, + 0.0042858077, + -0.014032168, + -0.010203619, + 0.021919556, + 0.014890904, + 0.014134612, + -0.036845017, + -0.020685023, + 0.00052296824, + 0.019652894, + -0.0022693272, + 0.014075537, + -0.013117198, + -0.0014058765, + -0.017854737, + -0.0019507526, + -0.0017976174, + -0.0017701851, + 0.0078324, + -0.019344017, + 0.014803369, + -0.01692726, + -0.016719025, + -0.0074570887, + -0.019318227, + -0.011213373, + -0.014249686, + -0.012830129, + -0.018564215, + -0.018090911, + 0.02050927, + -0.011058823, + -0.012944363, + 0.016089361, + -0.008313189, + -0.0037242486, + -0.010666546, + -0.023130296, + -0.029429592, + -0.0058644577, + 0.025469748, + -0.0011061331, + -0.013654883, + -0.01315658, + -0.0011014944, + 0.01547613, + 0.019729545, + -0.010277466, + 0.0076532704, + -0.0050150286, + 0.014680319, + -0.009723929, + 0.0024081354, + 0.0021587666, + -0.014760462, + -0.01307507, + 0.0022174867, + -0.02065179, + 0.001821844, + 0.0015222857, + -0.006146642, + -0.008699238, + -0.0049917717, + -0.026419967, + -0.021426512, + -0.017290145, + -0.011638885, + 0.0037424765, + 0.027175514, + -0.04136992, + -0.035597432, + 0.0095572965, + -0.021499423, + -0.0050453227, + -0.026372261, + -0.0096839955, + -0.036560506, + 0.009360666, + -0.015418747, + -0.03273141, + 0.0054434845, + -0.015567585, + 0.010199416, + -0.01359029, + -0.0066179233, + -0.021180574, + -0.016685696, + -0.027566599, + -0.00551941, + 0.012261926, + -0.017999848, + 0.0047654565, + 0.01819222, + -0.028536055, + -0.017411236, + 0.00444985, + -0.01662546, + 0.000361952, + -0.0019220245, + -0.003511904, + -0.02022489, + 0.004873798, + -0.0067773475, + 0.0013895221, + 0.013527568, + -0.0001326011, + -0.023110446, + -0.0014559709, + 0.0062910737, + -0.0019158426, + 0.009799679, + 0.0019610305, + 0.010826768, + -0.025470555, + -0.02312976, + 0.008437012, + 0.002679519, + -0.020883815, + -0.014323998, + 0.011960295, + 0.002827462, + -0.007980643, + -0.0011527746, + 0.006933308, + -0.012514166, + 0.0064587113, + -0.021597955, + -0.0178481, + -0.0040824194, + -0.008665241, + -0.0184108, + -0.012111823, + -0.0067348937, + -0.00097620714, + -0.019851016, + -0.0008671433, + -0.011345692, + -0.01025407, + -0.004304791, + 0.0030285516, + -0.0020892583, + 0.029831791, + -0.023580184, + 0.011855887, + -0.011204622, + -0.0019452885, + -0.00634238, + 0.00901641, + -0.013489751, + -0.0090521835, + 0.0016791138, + -0.0052005206, + 0.015245284, + 0.014911558, + -0.0028207982, + 0.0030394355, + -0.028062418, + -0.022461584, + -0.004647852, + 0.022894753, + 0.0101203695, + 0.0010983051, + -0.00016421782, + -0.0018080813, + -0.03188614, + -0.0151747, + -0.0048129167, + -0.015407934, + -0.0053917686, + -0.0017065329, + 0.00090657646, + -0.0075006285, + 0.0063077523, + -0.0021623035, + -0.014428947, + -0.028826637, + -0.019669235, + 0.026453955, + -0.021306926, + -0.024778338, + -0.030737117, + 0.024682995, + 0.0009919703, + -0.00760532, + -0.017641641, + 0.01578988, + 0.0052414313, + -0.012575779, + -0.01732717, + -0.0150931245, + 0.01607032, + 0.015281249, + 0.0060115177, + -0.014184012, + 0.017823972, + 0.014084939, + 0.0258408, + -0.0031221898, + -0.003010823, + -0.0021566376, + -0.032601044, + -0.03991525, + -0.019201182, + 0.021629047, + 0.011190878, + -0.020500373, + -0.010638011, + -0.013719568, + -0.00091676053, + 0.0098350085, + -0.0011527896, + 0.0059580505, + 0.007159304, + -0.014488043, + -0.016862761, + 0.031864773, + -0.034360666, + -0.006714964, + -0.036049742, + -0.015240024, + 0.0053783497, + 0.002090593, + -0.006236354, + -0.009770456, + -0.00040246348, + -0.0029866472, + -0.018578185, + -0.005939091, + -0.012515376, + 0.023486465, + 0.015315699, + -0.0053751864, + -0.0028783872, + 0.010387677, + -0.003817663, + -0.023429919, + 0.0033702464, + 0.00028926082, + -0.004670313, + -0.0014615704, + -0.009463602, + 0.0035552534, + 0.0021319261, + -0.009747424, + -0.032601893, + 0.009548798, + -0.011969612, + 0.013653548, + 0.0102093285, + -0.0061381543, + -0.0066119134, + -0.016758258, + 0.028045936, + -0.0075288787, + 0.0062817987, + 0.0089110015, + 0.035692945, + 0.025954477, + -0.0013919441, + 0.013162652, + 0.009925416, + 0.0022005925, + -0.00027780666, + -0.028401792, + -0.017851517, + 0.0030900198, + 0.013705088, + -0.013694166, + -0.009975843, + -0.0054720086 ], "paletteEmbedding": [ - 0.006667874, 0.009617126, 0.008719527, 0.0044238777, 0.0014746259, - 0.00025645667, 0.0, 0.0, 0.0, 0.0, 0.008463071, 0.015643857, - 0.017503168, 0.011219979, 0.003782736, 0.0010258267, 0.0, 0.0, 0.0, 0.0, - 0.007116673, 0.015772086, 0.02231173, 0.015900314, 0.006796102, - 0.0012822833, 0.00019234252, 0.0, 0.0, 0.0, 0.0050650192, 0.011155865, - 0.015387401, 0.012822834, 0.0058343895, 0.0012181692, 0.00019234252, - 0.0, 0.0, 0.0, 0.0012822833, 0.0035262792, 0.005642047, 0.00461622, - 0.0029492518, 0.0010899409, 0.00032057083, 0.00012822833, 0.0, 0.0, - 0.00025645667, 0.0008975984, 0.0013463976, 0.001154055, 0.00096171256, - 0.00032057083, 0.00012822833, 0.0, 0.0, 0.0, 6.411417e-5, 0.00012822833, - 0.00019234252, 0.00012822833, 0.00025645667, 6.411417e-5, 6.411417e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.009488897, 0.017310826, 0.01705437, - 0.011732893, 0.003398051, 0.0008334842, 0.0, 0.0, 0.0, 0.0, 0.01647734, - 0.03417285, 0.043918207, 0.028530806, 0.013399862, 0.0029492518, - 0.00038468503, 0.0, 0.0, 0.0, 0.018721338, 0.043084722, 0.057446297, - 0.04699569, 0.021734703, 0.0057061613, 0.0008975984, 0.00012822833, 0.0, - 0.0, 0.010258267, 0.029556632, 0.049303796, 0.043918207, 0.0235299, - 0.0077578146, 0.0012822833, 0.00019234252, 0.0, 0.0, 0.0043597636, - 0.011219979, 0.019234251, 0.022568189, 0.014361574, 0.0058985036, - 0.0012822833, 6.411417e-5, 0.0, 0.0, 0.00096171256, 0.003333937, - 0.0062190746, 0.0073090154, 0.007180787, 0.0027569092, 0.00064114167, - 6.411417e-5, 6.411417e-5, 0.0, 0.00012822833, 0.00025645667, - 0.0008334842, 0.0014746259, 0.001154055, 0.0008975984, 0.00051291334, - 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00025645667, 0.00038468503, - 6.411417e-5, 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.00923244, 0.017631397, 0.02090122, 0.016605569, - 0.0050650192, 0.001154055, 0.00019234252, 6.411417e-5, 0.0, 0.0, - 0.017118484, 0.04180244, 0.060459662, 0.046675116, 0.020195963, - 0.0058343895, 0.0008975984, 6.411417e-5, 0.0, 0.0, 0.022952873, - 0.060908463, 0.09495308, 0.08546419, 0.04321295, 0.013976889, - 0.002628681, 0.00038468503, 0.00012822833, 0.0, 0.013720432, 0.04699569, - 0.08456659, 0.090272754, 0.054817617, 0.022760531, 0.0053855903, - 0.0012181692, 0.0, 0.0, 0.0058343895, 0.022375844, 0.04641866, - 0.05860035, 0.043597635, 0.021350019, 0.0069243303, 0.001154055, - 0.00012822833, 6.411417e-5, 0.0016669685, 0.0062190746, 0.014233346, - 0.02429927, 0.021093562, 0.011668779, 0.005000905, 0.00096171256, - 0.00019234252, 0.0, 0.00019234252, 0.001154055, 0.0032057085, - 0.0050650192, 0.006347303, 0.0054497044, 0.0023722243, 0.0008334842, - 0.00019234252, 0.0, 0.0, 0.0, 0.00051291334, 0.0008334842, 0.001154055, - 0.0012181692, 0.0005770275, 6.411417e-5, 0.00012822833, 0.00012822833, - 0.0, 0.0, 0.0, 0.00019234252, 0.00012822833, 0.00025645667, - 0.0004487992, 0.00019234252, 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 6.411417e-5, 6.411417e-5, 0.0, 0.0, 0.005193248, 0.011476437, - 0.014041003, 0.012822834, 0.004808563, 0.0019234251, 0.00025645667, 0.0, - 0.0, 0.0, 0.011091751, 0.031415943, 0.04276415, 0.042700037, - 0.023594014, 0.0074372436, 0.0014105118, 6.411417e-5, 0.0, 0.0, - 0.01615677, 0.047316257, 0.08104031, 0.091426805, 0.05629224, - 0.021350019, 0.006026732, 0.0010258267, 0.0, 6.411417e-5, 0.012181692, - 0.043405294, 0.09251675, 0.115726076, 0.085784756, 0.0393661, - 0.013399862, 0.002628681, 0.00019234252, 0.0, 0.0058343895, 0.024171041, - 0.055458758, 0.08847755, 0.082514934, 0.050714307, 0.019170137, - 0.0058985036, 0.0010258267, 0.00012822833, 0.00096171256, 0.0083348425, - 0.024491614, 0.041866552, 0.047765058, 0.035903934, 0.020131849, - 0.0057702754, 0.0008975984, 0.00012822833, 0.0004487992, 0.0008975984, - 0.0057061613, 0.012374035, 0.01936248, 0.019939506, 0.011668779, - 0.0051291334, 0.0019875392, 0.00032057083, 0.0, 0.00025645667, - 0.0008334842, 0.0021798818, 0.005257362, 0.006347303, 0.005642047, - 0.0035262792, 0.001154055, 0.00025645667, 0.0, 0.0, 6.411417e-5, - 0.00025645667, 0.0008334842, 0.0013463976, 0.0017951968, 0.0008334842, - 0.00051291334, 0.00012822833, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00012822833, - 0.00051291334, 0.00032057083, 0.00019234252, 6.411417e-5, 0.0014746259, - 0.003782736, 0.006347303, 0.006090846, 0.0025645667, 0.0013463976, 0.0, - 0.0, 0.0, 0.0, 0.0038468502, 0.013784546, 0.021414133, 0.022568189, - 0.015130944, 0.0057061613, 0.0014746259, 6.411417e-5, 0.0, 0.0, - 0.0058985036, 0.020260077, 0.04763683, 0.060074978, 0.04212301, - 0.021606475, 0.0061549605, 0.0015387401, 0.00025645667, 0.0, - 0.007886043, 0.022375844, 0.056997497, 0.089439265, 0.07898866, - 0.050521966, 0.017951967, 0.004808563, 0.0008334842, 0.00019234252, - 0.0031415944, 0.014746259, 0.045392834, 0.08424602, 0.09642771, - 0.07507769, 0.03814793, 0.012886948, 0.0028210236, 0.00038468503, - 0.0013463976, 0.0055138185, 0.022183502, 0.049303796, 0.07789872, - 0.07270547, 0.050201394, 0.021606475, 0.0057061613, 0.0013463976, - 0.00019234252, 0.0008334842, 0.008463071, 0.017823739, 0.038468502, - 0.051163107, 0.044495232, 0.025645668, 0.009168326, 0.0021157677, 0.0, - 0.00032057083, 0.0016028542, 0.004872677, 0.012438149, 0.02231173, - 0.02705618, 0.019618936, 0.008655413, 0.0023722243, 0.0, 0.0, 0.0, - 0.0005770275, 0.0025645667, 0.0059626177, 0.011219979, 0.008847755, - 0.004552106, 0.0014746259, 0.0, 0.0, 0.0, 0.00012822833, 0.0004487992, - 0.0014746259, 0.0021157677, 0.0020516533, 0.001154055, 0.00096171256, - 0.00032057083, 0.0007052559, 0.0016028542, 0.0016028542, 0.0010899409, - 0.00019234252, 0.00012822833, 6.411417e-5, 0.0, 0.0, 0.0012822833, - 0.0030774802, 0.0055779326, 0.008655413, 0.0062190746, 0.0025645667, - 0.0010258267, 0.0, 0.0, 0.0, 0.0010258267, 0.0062190746, 0.014553917, - 0.022696417, 0.020516533, 0.011925235, 0.006796102, 0.0012822833, - 6.411417e-5, 0.0, 0.00096171256, 0.0059626177, 0.02320933, 0.042956494, - 0.05090665, 0.0398149, 0.018336652, 0.006347303, 0.00076937006, - 0.00012822833, 0.00096171256, 0.0062831887, 0.019939506, 0.050970767, - 0.0701409, 0.077321686, 0.04962437, 0.021734703, 0.006796102, - 0.0010258267, 0.00032057083, 0.0024363385, 0.014169231, 0.040712498, - 0.07430832, 0.097966455, 0.084951274, 0.04847031, 0.01846488, - 0.0036545077, 0.0, 0.0008334842, 0.006026732, 0.018977795, 0.050714307, - 0.0895675, 0.095978916, 0.07578295, 0.03628862, 0.010194153, 0.0, - 0.00019234252, 0.001154055, 0.006411417, 0.021414133, 0.04981671, - 0.075270034, 0.06943565, 0.0380197, 0.012694606, 0.0, 0.0, - 0.00032057083, 0.0013463976, 0.006796102, 0.018849567, 0.038660843, - 0.03878907, 0.025966238, 0.010642952, 0.0, 6.411417e-5, 0.0, - 0.00012822833, 0.0012822833, 0.0042956495, 0.010899409, 0.013656318, - 0.010322382, 0.0047444487, 0.0, 6.411417e-5, 0.00012822833, - 0.00012822833, 0.00012822833, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00019234252, 0.00096171256, 0.0014105118, 0.0021157677, 0.0008334842, - 0.00032057083, 6.411417e-5, 6.411417e-5, 0.0, 0.00019234252, - 0.0016028542, 0.002628681, 0.006475531, 0.0062831887, 0.0054497044, - 0.002628681, 0.00064114167, 0.00012822833, 6.411417e-5, 0.00032057083, - 0.001154055, 0.0061549605, 0.011027637, 0.021798817, 0.019747164, - 0.012694606, 0.006026732, 0.0012181692, 0.00025645667, 0.00025645667, - 0.0010258267, 0.0057702754, 0.019298365, 0.036480963, 0.049239684, - 0.041481867, 0.02551744, 0.009617126, 0.0021157677, 0.00019234252, - 0.00032057083, 0.005642047, 0.018336652, 0.051996592, 0.08213025, - 0.09617125, 0.07341073, 0.03616039, 0.010835295, 0.0, 0.0004487992, - 0.0035262792, 0.014425688, 0.04167421, 0.10431375, 0.1452186, - 0.13681963, 0.07321838, 0.027120294, 0.0, 0.0, 0.00076937006, - 0.005000905, 0.025260983, 0.07379541, 0.13688375, 0.16034953, - 0.09976165, 0.042251237, 0.0, 0.0, 0.00025645667, 0.0018593109, - 0.0101300385, 0.035134565, 0.07943746, 0.10130039, 0.08104031, - 0.034813993, 0.0, 0.0, 0.0, 0.00038468503, 0.0017951968, 0.009360669, - 0.029748974, 0.039686672, 0.035839822, 0.018336652, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00012822833, 0.00019234252, - 0.00025645667, 6.411417e-5, 0.00012822833, 0.0, 0.0, 0.0, 6.411417e-5, - 0.00012822833, 0.00038468503, 0.0010258267, 0.0014105118, 0.001154055, - 0.0007052559, 0.00025645667, 0.00025645667, 6.411417e-5, 0.0, - 6.411417e-5, 0.00051291334, 0.003398051, 0.0042315354, 0.0059626177, - 0.004487992, 0.0042315354, 0.0016669685, 0.00038468503, 0.0, - 0.00025645667, 0.0012822833, 0.005257362, 0.0126304915, 0.02288876, - 0.024235155, 0.01814431, 0.007886043, 0.0026927951, 6.411417e-5, - 6.411417e-5, 0.001154055, 0.006796102, 0.023786357, 0.047252145, - 0.07591118, 0.068409815, 0.040648382, 0.013271634, 0.0, 0.00012822833, - 0.00064114167, 0.005321476, 0.026479153, 0.07264136, 0.13361393, - 0.15060419, 0.09649183, 0.04077661, 0.0, 6.411417e-5, 0.00019234252, - 0.003398051, 0.02000362, 0.068025135, 0.15393811, 0.20029266, - 0.15188646, 0.070012674, 0.0, 0.0, 0.0, 0.0010899409, 0.008206613, - 0.03782736, 0.10130039, 0.1574644, 0.13528089, 0.07065382, 0.0, 0.0, - 0.0, 0.00038468503, 0.0024363385, 0.013720432, 0.03878907, 0.06982033, - 0.0760394, 0.046226315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.00025645667, 0.00038468503, 0.00019234252, 6.411417e-5, - 6.411417e-5, 6.411417e-5, 0.0, 0.0, 6.411417e-5, 0.00032057083, - 0.00076937006, 0.0015387401, 0.0017951968, 0.0014746259, 0.0010258267, - 0.00032057083, 0.0, 0.0, 0.00025645667, 0.00032057083, 0.0026927951, - 0.0058985036, 0.009617126, 0.0075013577, 0.0058985036, 0.0012181692, - 0.0, 0.0, 0.00025645667, 0.0012822833, 0.006347303, 0.018657224, - 0.036993876, 0.040712498, 0.02705618, 0.010835295, 0.0, 0.0, - 0.00012822833, 0.0019234251, 0.009104212, 0.03353171, 0.08091208, - 0.09860759, 0.07629586, 0.037635017, 0.0, 0.0, 0.0, 0.0013463976, - 0.009104212, 0.03750679, 0.102005646, 0.15727206, 0.13399862, - 0.07597529, 0.0, 0.0, 0.00012822833, 0.00051291334, 0.005257362, - 0.025645668, 0.081360884, 0.13778135, 0.14233346, 0.08437425, 0.0, 0.0, - 0.0, 0.00019234252, 0.0016028542, 0.009873582, 0.03596805, 0.06949976, - 0.09161915, 0.06578114, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 6.411417e-5, 6.411417e-5, 6.411417e-5, 6.411417e-5, 0.0, 0.0, - 0.0, 6.411417e-5, 0.0, 6.411417e-5, 0.00038468503, 0.00038468503, - 0.00019234252, 6.411417e-5, 0.0, 0.0, 0.0, 0.0, 0.00019234252, - 0.00032057083, 0.0008975984, 0.0027569092, 0.003013366, 0.0017310826, - 0.0010258267, 0.0, 0.0, 0.0, 0.00032057083, 0.0005770275, 0.004808563, - 0.010258267, 0.013335748, 0.00968124, 0.0042956495, 0.0, 0.0, 0.0, - 6.411417e-5, 0.00230811, 0.010322382, 0.026927952, 0.04058427, - 0.037635017, 0.017310826, 0.0, 0.0, 6.411417e-5, 0.00025645667, - 0.0024363385, 0.015259173, 0.03737856, 0.07174376, 0.07097439, - 0.04847031, 0.0, 0.0, 0.0, 0.00012822833, 0.0017310826, 0.009488897, - 0.036801532, 0.072897814, 0.088990465, 0.066422276, 0.0, 0.0, 0.0, 0.0, - 0.00076937006, 0.0039109644, 0.017631397, 0.04520049, 0.06655051, + 0.006667874, + 0.009617126, + 0.008719527, + 0.0044238777, + 0.0014746259, + 0.00025645667, + 0.0, + 0.0, + 0.0, + 0.0, + 0.008463071, + 0.015643857, + 0.017503168, + 0.011219979, + 0.003782736, + 0.0010258267, + 0.0, + 0.0, + 0.0, + 0.0, + 0.007116673, + 0.015772086, + 0.02231173, + 0.015900314, + 0.006796102, + 0.0012822833, + 0.00019234252, + 0.0, + 0.0, + 0.0, + 0.0050650192, + 0.011155865, + 0.015387401, + 0.012822834, + 0.0058343895, + 0.0012181692, + 0.00019234252, + 0.0, + 0.0, + 0.0, + 0.0012822833, + 0.0035262792, + 0.005642047, + 0.00461622, + 0.0029492518, + 0.0010899409, + 0.00032057083, + 0.00012822833, + 0.0, + 0.0, + 0.00025645667, + 0.0008975984, + 0.0013463976, + 0.001154055, + 0.00096171256, + 0.00032057083, + 0.00012822833, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.00012822833, + 0.00019234252, + 0.00012822833, + 0.00025645667, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.009488897, + 0.017310826, + 0.01705437, + 0.011732893, + 0.003398051, + 0.0008334842, + 0.0, + 0.0, + 0.0, + 0.0, + 0.01647734, + 0.03417285, + 0.043918207, + 0.028530806, + 0.013399862, + 0.0029492518, + 0.00038468503, + 0.0, + 0.0, + 0.0, + 0.018721338, + 0.043084722, + 0.057446297, + 0.04699569, + 0.021734703, + 0.0057061613, + 0.0008975984, + 0.00012822833, + 0.0, + 0.0, + 0.010258267, + 0.029556632, + 0.049303796, + 0.043918207, + 0.0235299, + 0.0077578146, + 0.0012822833, + 0.00019234252, + 0.0, + 0.0, + 0.0043597636, + 0.011219979, + 0.019234251, + 0.022568189, + 0.014361574, + 0.0058985036, + 0.0012822833, + 6.411417e-05, + 0.0, + 0.0, + 0.00096171256, + 0.003333937, + 0.0062190746, + 0.0073090154, + 0.007180787, + 0.0027569092, + 0.00064114167, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.00012822833, + 0.00025645667, + 0.0008334842, + 0.0014746259, + 0.001154055, + 0.0008975984, + 0.00051291334, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00025645667, + 0.00038468503, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00923244, + 0.017631397, + 0.02090122, + 0.016605569, + 0.0050650192, + 0.001154055, + 0.00019234252, + 6.411417e-05, + 0.0, + 0.0, + 0.017118484, + 0.04180244, + 0.060459662, + 0.046675116, + 0.020195963, + 0.0058343895, + 0.0008975984, + 6.411417e-05, + 0.0, + 0.0, + 0.022952873, + 0.060908463, + 0.09495308, + 0.08546419, + 0.04321295, + 0.013976889, + 0.002628681, + 0.00038468503, + 0.00012822833, + 0.0, + 0.013720432, + 0.04699569, + 0.08456659, + 0.090272754, + 0.054817617, + 0.022760531, + 0.0053855903, + 0.0012181692, + 0.0, + 0.0, + 0.0058343895, + 0.022375844, + 0.04641866, + 0.05860035, + 0.043597635, + 0.021350019, + 0.0069243303, + 0.001154055, + 0.00012822833, + 6.411417e-05, + 0.0016669685, + 0.0062190746, + 0.014233346, + 0.02429927, + 0.021093562, + 0.011668779, + 0.005000905, + 0.00096171256, + 0.00019234252, + 0.0, + 0.00019234252, + 0.001154055, + 0.0032057085, + 0.0050650192, + 0.006347303, + 0.0054497044, + 0.0023722243, + 0.0008334842, + 0.00019234252, + 0.0, + 0.0, + 0.0, + 0.00051291334, + 0.0008334842, + 0.001154055, + 0.0012181692, + 0.0005770275, + 6.411417e-05, + 0.00012822833, + 0.00012822833, + 0.0, + 0.0, + 0.0, + 0.00019234252, + 0.00012822833, + 0.00025645667, + 0.0004487992, + 0.00019234252, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.0, + 0.005193248, + 0.011476437, + 0.014041003, + 0.012822834, + 0.004808563, + 0.0019234251, + 0.00025645667, + 0.0, + 0.0, + 0.0, + 0.011091751, + 0.031415943, + 0.04276415, + 0.042700037, + 0.023594014, + 0.0074372436, + 0.0014105118, + 6.411417e-05, + 0.0, + 0.0, + 0.01615677, + 0.047316257, + 0.08104031, + 0.091426805, + 0.05629224, + 0.021350019, + 0.006026732, + 0.0010258267, + 0.0, + 6.411417e-05, + 0.012181692, + 0.043405294, + 0.09251675, + 0.115726076, + 0.085784756, + 0.0393661, + 0.013399862, + 0.002628681, + 0.00019234252, + 0.0, + 0.0058343895, + 0.024171041, + 0.055458758, + 0.08847755, + 0.082514934, + 0.050714307, + 0.019170137, + 0.0058985036, + 0.0010258267, + 0.00012822833, + 0.00096171256, + 0.0083348425, + 0.024491614, + 0.041866552, + 0.047765058, + 0.035903934, + 0.020131849, + 0.0057702754, + 0.0008975984, + 0.00012822833, + 0.0004487992, + 0.0008975984, + 0.0057061613, + 0.012374035, + 0.01936248, + 0.019939506, + 0.011668779, + 0.0051291334, + 0.0019875392, + 0.00032057083, + 0.0, + 0.00025645667, + 0.0008334842, + 0.0021798818, + 0.005257362, + 0.006347303, + 0.005642047, + 0.0035262792, + 0.001154055, + 0.00025645667, + 0.0, + 0.0, + 6.411417e-05, + 0.00025645667, + 0.0008334842, + 0.0013463976, + 0.0017951968, + 0.0008334842, + 0.00051291334, + 0.00012822833, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012822833, + 0.00051291334, + 0.00032057083, + 0.00019234252, + 6.411417e-05, + 0.0014746259, + 0.003782736, + 0.006347303, + 0.006090846, + 0.0025645667, + 0.0013463976, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0038468502, + 0.013784546, + 0.021414133, + 0.022568189, + 0.015130944, + 0.0057061613, + 0.0014746259, + 6.411417e-05, + 0.0, + 0.0, + 0.0058985036, + 0.020260077, + 0.04763683, + 0.060074978, + 0.04212301, + 0.021606475, + 0.0061549605, + 0.0015387401, + 0.00025645667, + 0.0, + 0.007886043, + 0.022375844, + 0.056997497, + 0.089439265, + 0.07898866, + 0.050521966, + 0.017951967, + 0.004808563, + 0.0008334842, + 0.00019234252, + 0.0031415944, + 0.014746259, + 0.045392834, + 0.08424602, + 0.09642771, + 0.07507769, + 0.03814793, + 0.012886948, + 0.0028210236, + 0.00038468503, + 0.0013463976, + 0.0055138185, + 0.022183502, + 0.049303796, + 0.07789872, + 0.07270547, + 0.050201394, + 0.021606475, + 0.0057061613, + 0.0013463976, + 0.00019234252, + 0.0008334842, + 0.008463071, + 0.017823739, + 0.038468502, + 0.051163107, + 0.044495232, + 0.025645668, + 0.009168326, + 0.0021157677, + 0.0, + 0.00032057083, + 0.0016028542, + 0.004872677, + 0.012438149, + 0.02231173, + 0.02705618, + 0.019618936, + 0.008655413, + 0.0023722243, + 0.0, + 0.0, + 0.0, + 0.0005770275, + 0.0025645667, + 0.0059626177, + 0.011219979, + 0.008847755, + 0.004552106, + 0.0014746259, + 0.0, + 0.0, + 0.0, + 0.00012822833, + 0.0004487992, + 0.0014746259, + 0.0021157677, + 0.0020516533, + 0.001154055, + 0.00096171256, + 0.00032057083, + 0.0007052559, + 0.0016028542, + 0.0016028542, + 0.0010899409, + 0.00019234252, + 0.00012822833, + 6.411417e-05, + 0.0, + 0.0, + 0.0012822833, + 0.0030774802, + 0.0055779326, + 0.008655413, + 0.0062190746, + 0.0025645667, + 0.0010258267, + 0.0, + 0.0, + 0.0, + 0.0010258267, + 0.0062190746, + 0.014553917, + 0.022696417, + 0.020516533, + 0.011925235, + 0.006796102, + 0.0012822833, + 6.411417e-05, + 0.0, + 0.00096171256, + 0.0059626177, + 0.02320933, + 0.042956494, + 0.05090665, + 0.0398149, + 0.018336652, + 0.006347303, + 0.00076937006, + 0.00012822833, + 0.00096171256, + 0.0062831887, + 0.019939506, + 0.050970767, + 0.0701409, + 0.077321686, + 0.04962437, + 0.021734703, + 0.006796102, + 0.0010258267, + 0.00032057083, + 0.0024363385, + 0.014169231, + 0.040712498, + 0.07430832, + 0.097966455, + 0.084951274, + 0.04847031, + 0.01846488, + 0.0036545077, + 0.0, + 0.0008334842, + 0.006026732, + 0.018977795, + 0.050714307, + 0.0895675, + 0.095978916, + 0.07578295, + 0.03628862, + 0.010194153, + 0.0, + 0.00019234252, + 0.001154055, + 0.006411417, + 0.021414133, + 0.04981671, + 0.075270034, + 0.06943565, + 0.0380197, + 0.012694606, + 0.0, + 0.0, + 0.00032057083, + 0.0013463976, + 0.006796102, + 0.018849567, + 0.038660843, + 0.03878907, + 0.025966238, + 0.010642952, + 0.0, + 6.411417e-05, + 0.0, + 0.00012822833, + 0.0012822833, + 0.0042956495, + 0.010899409, + 0.013656318, + 0.010322382, + 0.0047444487, + 0.0, + 6.411417e-05, + 0.00012822833, + 0.00012822833, + 0.00012822833, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00019234252, + 0.00096171256, + 0.0014105118, + 0.0021157677, + 0.0008334842, + 0.00032057083, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.00019234252, + 0.0016028542, + 0.002628681, + 0.006475531, + 0.0062831887, + 0.0054497044, + 0.002628681, + 0.00064114167, + 0.00012822833, + 6.411417e-05, + 0.00032057083, + 0.001154055, + 0.0061549605, + 0.011027637, + 0.021798817, + 0.019747164, + 0.012694606, + 0.006026732, + 0.0012181692, + 0.00025645667, + 0.00025645667, + 0.0010258267, + 0.0057702754, + 0.019298365, + 0.036480963, + 0.049239684, + 0.041481867, + 0.02551744, + 0.009617126, + 0.0021157677, + 0.00019234252, + 0.00032057083, + 0.005642047, + 0.018336652, + 0.051996592, + 0.08213025, + 0.09617125, + 0.07341073, + 0.03616039, + 0.010835295, + 0.0, + 0.0004487992, + 0.0035262792, + 0.014425688, + 0.04167421, + 0.10431375, + 0.1452186, + 0.13681963, + 0.07321838, + 0.027120294, + 0.0, + 0.0, + 0.00076937006, + 0.005000905, + 0.025260983, + 0.07379541, + 0.13688375, + 0.16034953, + 0.09976165, + 0.042251237, + 0.0, + 0.0, + 0.00025645667, + 0.0018593109, + 0.0101300385, + 0.035134565, + 0.07943746, + 0.10130039, + 0.08104031, + 0.034813993, + 0.0, + 0.0, + 0.0, + 0.00038468503, + 0.0017951968, + 0.009360669, + 0.029748974, + 0.039686672, + 0.035839822, + 0.018336652, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012822833, + 0.00019234252, + 0.00025645667, + 6.411417e-05, + 0.00012822833, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.00012822833, + 0.00038468503, + 0.0010258267, + 0.0014105118, + 0.001154055, + 0.0007052559, + 0.00025645667, + 0.00025645667, + 6.411417e-05, + 0.0, + 6.411417e-05, + 0.00051291334, + 0.003398051, + 0.0042315354, + 0.0059626177, + 0.004487992, + 0.0042315354, + 0.0016669685, + 0.00038468503, + 0.0, + 0.00025645667, + 0.0012822833, + 0.005257362, + 0.0126304915, + 0.02288876, + 0.024235155, + 0.01814431, + 0.007886043, + 0.0026927951, + 6.411417e-05, + 6.411417e-05, + 0.001154055, + 0.006796102, + 0.023786357, + 0.047252145, + 0.07591118, + 0.068409815, + 0.040648382, + 0.013271634, + 0.0, + 0.00012822833, + 0.00064114167, + 0.005321476, + 0.026479153, + 0.07264136, + 0.13361393, + 0.15060419, + 0.09649183, + 0.04077661, + 0.0, + 6.411417e-05, + 0.00019234252, + 0.003398051, + 0.02000362, + 0.068025135, + 0.15393811, + 0.20029266, + 0.15188646, + 0.070012674, + 0.0, + 0.0, + 0.0, + 0.0010899409, + 0.008206613, + 0.03782736, + 0.10130039, + 0.1574644, + 0.13528089, + 0.07065382, + 0.0, + 0.0, + 0.0, + 0.00038468503, + 0.0024363385, + 0.013720432, + 0.03878907, + 0.06982033, + 0.0760394, + 0.046226315, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00025645667, + 0.00038468503, + 0.00019234252, + 6.411417e-05, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.0, + 6.411417e-05, + 0.00032057083, + 0.00076937006, + 0.0015387401, + 0.0017951968, + 0.0014746259, + 0.0010258267, + 0.00032057083, + 0.0, + 0.0, + 0.00025645667, + 0.00032057083, + 0.0026927951, + 0.0058985036, + 0.009617126, + 0.0075013577, + 0.0058985036, + 0.0012181692, + 0.0, + 0.0, + 0.00025645667, + 0.0012822833, + 0.006347303, + 0.018657224, + 0.036993876, + 0.040712498, + 0.02705618, + 0.010835295, + 0.0, + 0.0, + 0.00012822833, + 0.0019234251, + 0.009104212, + 0.03353171, + 0.08091208, + 0.09860759, + 0.07629586, + 0.037635017, + 0.0, + 0.0, + 0.0, + 0.0013463976, + 0.009104212, + 0.03750679, + 0.102005646, + 0.15727206, + 0.13399862, + 0.07597529, + 0.0, + 0.0, + 0.00012822833, + 0.00051291334, + 0.005257362, + 0.025645668, + 0.081360884, + 0.13778135, + 0.14233346, + 0.08437425, + 0.0, + 0.0, + 0.0, + 0.00019234252, + 0.0016028542, + 0.009873582, + 0.03596805, + 0.06949976, + 0.09161915, + 0.06578114, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 6.411417e-05, + 6.411417e-05, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.0, + 6.411417e-05, + 0.00038468503, + 0.00038468503, + 0.00019234252, + 6.411417e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00019234252, + 0.00032057083, + 0.0008975984, + 0.0027569092, + 0.003013366, + 0.0017310826, + 0.0010258267, + 0.0, + 0.0, + 0.0, + 0.00032057083, + 0.0005770275, + 0.004808563, + 0.010258267, + 0.013335748, + 0.00968124, + 0.0042956495, + 0.0, + 0.0, + 0.0, + 6.411417e-05, + 0.00230811, + 0.010322382, + 0.026927952, + 0.04058427, + 0.037635017, + 0.017310826, + 0.0, + 0.0, + 6.411417e-05, + 0.00025645667, + 0.0024363385, + 0.015259173, + 0.03737856, + 0.07174376, + 0.07097439, + 0.04847031, + 0.0, + 0.0, + 0.0, + 0.00012822833, + 0.0017310826, + 0.009488897, + 0.036801532, + 0.072897814, + 0.088990465, + 0.066422276, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00076937006, + 0.0039109644, + 0.017631397, + 0.04520049, + 0.06655051, 0.058856808 ] }, diff --git a/common/search/src/test/resources/test_documents/images.similar-features.2.json b/common/search/src/test/resources/test_documents/images.similar-features.2.json index e124d5d44..26ee8153b 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.2.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.2.json @@ -153,16 +153,32 @@ "id": "sbmh5uyx", "source": { "alternativeTitles": [], - "contributors.agent.label": ["Lambert, J., active 1812-1851"], - "genres.concepts.label": ["Engravings"], + "contributors.agent.label": [ + "Lambert, J., active 1812-1851" + ], + "genres.concepts.label": [ + "Engravings" + ], "id": "pqnzvxuz", "sourceIdentifier.value": "b11805729", - "identifiers.value": ["b11805729", "1180572", "22713i", "V0013055"], + "identifiers.value": [ + "b11805729", + "1180572", + "22713i", + "V0013055" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["hbyagrx2"], - "items.identifiers.value": ["i12023516", "1202351"], - "languages.label": ["English"], + "items.id": [ + "hbyagrx2" + ], + "items.identifiers.value": [ + "i12023516", + "1202351" + ], + "languages.label": [ + "English" + ], "lettering": "New Hall Christ's Hospital", "notes.contents": [ "B. Adams, London illustrated, London, 1983, number", @@ -170,7 +186,10 @@ ], "partOf.title": [], "physicalDescription": "1 print : engraving ; image 5.7 x 9.6 cm", - "production.label": ["London", "1812"], + "production.label": [ + "London", + "1812" + ], "referenceNumber": "22713i", "subjects.concepts.label": [ "Hospitals", @@ -197,1109 +216,5126 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], - "source.contributors.agent.label": ["Lambert, J., active 1812-1851"], - "source.genres.label": ["Engravings"], - "source.genres.concepts.id": ["z989z5fq"], + "locations.license.id": [ + "pdm" + ], + "source.contributors.agent.label": [ + "Lambert, J., active 1812-1851" + ], + "source.genres.label": [ + "Engravings" + ], + "source.genres.concepts.id": [ + "z989z5fq" + ], "source.subjects.label": [ "Hospitals", "Schools", "Christ's Hospital (London, England)" ], - "source.production.dates.range.from": [-4986057600000] + "source.production.dates.range.from": [ + -4986057600000 + ] }, "vectorValues": { - "features1": [ - -0.9865286, -3.203107, -2.4397078, -0.45973164, -1.5111827, -1.632599, - -1.5473661, 0.7682312, 0.08034594, 0.6005396, -0.9267129, 0.81558627, - -0.7434027, -0.7548425, -1.3904412, -0.7741067, -0.20027821, 0.27607545, - -0.12169294, 1.6920369, -2.0577855, -1.1507875, 0.3904145, -0.15481542, - 1.0991253, -0.9507493, 0.7980736, 1.5941607, -1.5941538, -1.0777678, - -0.791151, 0.28389335, -1.6274573, -0.7652587, 0.47925937, -1.2786702, - 0.67771477, 1.1434381, -0.68346524, -1.320899, -0.46173573, -1.7412951, - -0.285407, 2.2809024, -1.6900076, -0.28344527, 1.3579631, 1.5090404, - -0.43632585, -0.86828566, 0.27245548, 0.6912858, -0.22408807, - 0.76648843, -0.9674362, -1.6466454, -0.6706217, -0.75732595, -1.1645501, - -0.7160443, 0.07077934, -0.48260966, -0.23180878, 0.35522318, 1.2772782, - -1.9103483, -0.8422731, -1.1645852, -0.29469693, -0.7312723, 0.06432159, - -0.593743, -0.9549182, 0.58998084, 0.0020780228, 0.05952705, -1.112461, - -1.9737737, 0.13930589, -1.01481, 1.3887864, 0.8349584, -0.10585727, - -1.2897608, -0.30774194, -0.35113323, -0.63548374, -0.9951118, - 1.1859337, -0.8842117, -1.0388058, 0.28350672, -0.45278868, 0.2855027, - 2.0639045, -1.2772248, -2.072825, -0.37474373, -0.8359101, -0.06638767, - -0.9103499, 1.9708664, 1.3932323, -0.82106316, -0.62494224, 0.83410925, - 0.12497495, 0.119163275, 1.4639235, -2.7937162, -0.35271975, - -0.15528221, -0.4758878, -0.6736945, -1.5577769, 0.24476251, -0.6281514, - -3.7639842, -1.1341223, -1.3270509, 0.0083806105, 2.050297, 0.51783085, - -0.54644614, -1.9743816, -0.6745339, 1.1567917, -0.6869888, -0.18230072, - -0.7114423, -0.9898042, -1.0988381, 0.033802357, -0.2811503, -0.6607362, - -0.1719032, -0.3382223, -1.7386751, -1.3743532, 0.21178988, -2.10156, - -1.5873576, 0.41892624, -0.70876366, -1.820487, -1.2061099, -1.1374985, - 0.40302277, -2.02042, -0.6445486, -1.0445235, 0.22742504, -1.1251092, - -0.74373615, 1.3615848, 0.19515073, -0.9468965, -0.024021018, - -1.4573636, -0.56255275, -1.2913561, 0.45708135, -0.41787064, 0.6997367, - -0.8003233, -1.1780206, 0.11551058, -0.74025375, -0.44140685, 1.3642205, - -1.2821506, -1.6196492, -0.79136366, -0.2963455, -0.44823524, 0.3143815, - -0.15619802, -0.20752932, 1.1418004, -3.3581388, -0.45332193, 0.5419341, - -0.545067, 0.28538242, -1.0758638, -2.0122974, -0.35979432, -1.2061315, - -1.4519385, -0.7243405, 0.9189824, 0.86426735, -0.9923652, -1.3521687, - -0.73807657, -0.35292798, 1.7890288, 2.4283566, 0.754394, -0.20518796, - -1.0262612, -0.44193342, -1.6892393, -0.76868844, -0.58214915, - -0.5694505, -1.1491878, -0.23898631, -0.24434337, 0.2507845, 1.2629832, - -0.75992423, -1.1928352, -1.1807758, -0.15607709, -1.3712742, 1.6147906, - -0.07012102, -1.1084553, 0.9001235, -1.5309001, -0.3090262, 0.299465, - -1.7404183, 1.2246981, -1.5410963, -1.9102578, 0.7332861, -0.2431777, - -1.3680309, 1.1291833, -1.6096963, -0.26209968, -0.7095423, -0.72791195, - -0.5707971, -0.4309978, 0.39798817, -1.1284264, 0.52197087, 0.3653595, - -0.1952489, -1.9426103, -0.59587646, 0.26634282, 0.9330831, -0.8284836, - -0.7224103, 0.42047516, -1.0541342, -1.5674268, -0.16860801, - -0.062008925, -0.36558372, -1.7626724, -1.6420614, -0.67748445, - 0.78283817, -0.7498722, 0.43515205, -2.1235483, -0.4847399, - -0.019105505, -0.20610167, -0.94797844, 0.15144995, -0.88985145, - -0.7046679, -0.70917624, 2.232618, 1.1553497, -1.8477614, -0.13502438, - -1.7777581, -1.5742418, 0.85892165, -1.331895, -1.9869456, -0.42914662, - -2.2578497, 0.46951863, -0.8644997, -0.21983203, -1.5123374, - 0.049687758, -0.14697796, -0.20350291, -1.8248038, -1.0989491, - 0.6610152, -0.0012842603, 0.94465595, 0.19149798, 0.095715255, - -1.6868032, -0.029844813, -0.2145288, -0.25805622, 1.5461682, - -0.23754099, 1.3960701, -1.7799002, -1.858692, -0.042224057, -2.2180505, - -1.5309018, 0.24039176, -0.2336851, -1.2282292, 0.9428553, 2.2421358, - -0.6394368, -0.18123168, -0.024965294, 1.1553165, -0.29298273, - -0.44986004, -0.11975541, 0.16932204, 0.57176197, -0.69697976, - 0.04411506, -1.371019, 1.3550549, -0.99141645, -3.4686463, -0.29130077, - -1.2672253, -0.07464156, -1.6305982, 0.039132394, -1.1096659, - -1.2060963, -0.25927162, -1.2552847, -0.09439595, 1.1127071, 1.5346773, - -0.7254497, -1.7331591, 0.87761635, -1.5453607, -1.6185367, 0.3373385, - -0.96493304, -0.5672492, 1.070496, -2.0815341, 0.08068453, -1.1865268, - -1.4712209, 1.0137285, 1.704518, -0.335416, 0.64626366, -0.7314183, - -1.3548386, 1.1286734, -0.5991684, -0.98041815, -1.1001115, 1.4594518, - 0.07332196, -1.3169645, -1.3059403, 0.31227198, -0.8785798, -0.95350295, - -1.4697853, -1.640725, -0.00093891844, 1.5008786, -0.9028054, - 0.036911186, 1.496378, 0.13303812, -1.8611548, -1.5837364, -0.87451285, - 0.12452839, -0.5032981, -1.0904115, 1.5896674, -1.6701691, 1.0591975, - 1.3342297, 0.52188015, -0.40612933, 1.0683433, 0.17647105, -0.2581679, - -1.0777866, -0.34811386, -0.5794782, -2.666949, -0.6936663, -1.2860128, - -0.6304204, -0.38336986, -0.37042487, -1.0710529, -1.0364937, - -0.3339827, -0.97324586, -1.93508, -0.92503345, 0.4193969, -0.7207996, - -2.4191346, -0.89907247, 0.9063744, -0.042229567, -0.30125052, - 0.1279183, -0.4374838, -0.07882829, -0.300628, -1.1199596, 0.16239272, - -0.77550983, -0.43756616, -0.33525866, -0.0031616911, 0.22940487, - -1.5941802, -1.2451935, -2.2891428, 0.10646757, 0.41906038, 0.46633357, - 0.017650012, 0.52444875, -0.41049874, -0.27011186, 0.61268574, - -0.4811024, -0.86994314, 0.12792002, -0.61606616, -0.76230675, - -2.4318392, -1.1471226, -0.978613, -0.13001819, -1.9377675, 2.4104512, - -0.40494734, -1.0449, 0.5802389, 0.42044637, -1.3342844, -2.0119147, - -0.54308575, -0.77583253, -1.8308946, -1.9597063, 0.07589631, - 0.36881912, -1.6177173, 0.55783224, -1.8313609, -2.295434, -1.0185308, - -0.26363066, -1.2116231, 1.0208355, -0.16069892, -1.4916893, -0.5855467, - -0.3975535, -1.6378604, -1.9803416, -0.30059126, -0.5635182, - -0.73105675, -1.082823, -0.6811552, 0.6807254, -1.678288, 1.3358204, - -1.8659874, -0.3985543, -0.6033225, 0.8283183, -0.24355564, -1.4210442, - -0.4478237, 0.8033842, 0.2883582, -1.0039496, -2.3883893, -0.724492, - -1.5002185, 1.1668503, -1.3656646, -0.496213, 0.6821089, -0.41578716, - -1.1157109, -0.66050446, -0.15341349, -2.1688957, -0.9767167, - -1.1022807, 0.8683726, -0.34715962, 0.9932222, -0.4178667, -1.8463782, - 1.5395187, -0.8197516, -0.39741734, -0.6693815, -0.8089128, -3.0449076, - 0.92888004, 0.4390982, -1.7471685, -1.5025301, 0.1897726, 1.7934786, - -0.85062486, 1.3753448, -0.022129409, -0.5770478, 1.5317647, - -0.07038672, -1.9630792, 0.27395818, -1.0592673, 0.11835478, 0.22032036, - -0.60455453, -0.10037801, 0.030776728, -0.3746848, -2.6861706, - -2.6542895, -1.3747938, -1.4333272, 0.5063489, 2.1042848, -0.9109408, - 0.09138311, -0.48983544, 0.2590982, 0.40698594, 1.377506, -0.56722575, - -0.7457132, 0.04623256, -0.46191326, -0.41838306, 0.4064378, - -0.62028384, 0.34331128, -0.16654077, -1.2476875, -0.43451184, - -3.1108592, 0.61334854, -0.6274892, 0.10502545, -1.0805589, -0.05381347, - -0.44616392, 0.656016, 0.17002603, -2.3148828, -1.3226867, -0.5094491, - -2.311552, -1.226925, 0.08434066, -1.6280413, -1.7428617, 0.20597537, - -0.4321181, -0.46481088, -0.4337361, -0.28602278, -0.33439016, - 0.33274144, 0.08553248, -3.8825192, -1.0978531, -0.21072355, 0.18087813, - 0.59388846, -0.7217087, -0.85714775, -0.0693697, 1.4105709, 0.39081517, - 0.42220792, 0.117405064, -0.42230546, 0.6365657, -1.8607707, 0.45724767, - -2.0546374, 1.3426341, -0.27185035, -1.3043399, 0.04904776, -1.5295135, - -2.8920972, -1.3094748, 0.06582162, -0.6405171, -1.2058474, -0.06255034, - -0.5099973, -1.0537131, -1.4773096, -0.4383824, 1.6846474, -1.0968343, - -0.52905095, 0.40071276, -1.5445323, 0.1882712, -0.011335231, - 0.15196404, -1.1542001, -0.9179454, 0.01515428, 0.5239537, 0.76400715, - 0.19085136, -1.1374447, -0.3341207, -1.0744534, -0.5679857, -1.7611591, - -0.6959209, -1.2690471, -0.7855056, -0.26364577, -1.2946384, -1.8054897, - 1.4257618, -1.7717252, -2.1940238, -0.88058656, 2.2735534, -1.5381993, - 0.1141101, -2.2197278, -0.9941173, 1.2691303, -1.2709954, -0.9848173, - -1.2863464, -0.3123647, 0.9613598, -0.5749326, 0.34572816, -0.26009867, - 0.39545724, 0.3463569, -1.3107388, -2.5202649, -1.5101689, 0.30655813, - -1.469058, 1.3943117, -0.73329854, 0.5854466, 2.2874835, 0.32066634, - 1.537793, -2.1738584, 0.17424165, -0.6665703, -0.3750866, -1.2993337, - -0.5667403, 0.05242342, 0.31499916, 0.023748882, -0.2682474, - -0.41167092, -0.99422807, 0.43707433, -0.19967401, -1.8006972, - 0.0700991, -1.3783271, -2.464095, -0.06098806, 1.2774651, -0.6941389, - -1.3507231, -2.211812, 0.15318574, 0.20810248, -0.35211933, 0.9747518, - -1.0611367, -0.5075432, 0.67714596, -0.14718762, 0.22920558, 0.26687455, - 0.37887877, -0.14780514, 0.18475844, -0.3174454, 0.5060425, -1.1351641, - 0.8100386, -1.8870122, -0.748117, 0.055133093, -0.43245104, -0.76788783, - 1.0798324, -3.1364472, 0.3848382, 1.3066067, 0.11453085, -0.19508076, - 0.3493143, 1.3704947, 1.2726475, -0.66233546, 1.1395154, -1.8524721, - 0.16105181, -0.6511996, -0.51827514, 0.5126746, 0.41852778, 2.0793712, - -1.9478722, 0.86849797, -0.49114713, 0.2751097, -0.8829661, -1.1112676, - -0.9239472, -1.1497937, -1.465857, -0.4101267, 1.1497442, -0.87731093, - -0.84737146, -1.923755, -1.7411999, 1.0834595, -0.9998119, 0.90053034, - -0.89192283, 1.0567163, 0.9607073, -1.6332461, 0.512876, -0.58093816, - -2.0342884, -2.0359855, -1.8034563, -0.95307666, 0.21114856, -1.3983533, - 0.6614747, -0.8568732, -1.0116599, -0.59496737, 0.24153982, -1.8858987, - -2.0268588, 0.56992775, -1.6065518, -1.0979044, -0.9269304, -2.5153918, - -1.4078673, -0.7494863, 2.0857828, -1.9934087, -1.2079436, 1.196504, - -1.4452426, -0.3393224, -1.1316881, -2.528265, 0.10568397, -0.54739726, - -1.3257918, -1.8539943, 0.51771647, -1.0981504, -2.296682, 0.6940359, - -2.6905246, -1.9472361, -4.5081444, -0.7076655, -0.4727113, 2.5129633, - 0.26619408, 0.26225966, -0.42988527, 0.37020692, 0.8403865, -0.48547316, - -0.85818404, -2.2689579, 0.06061538, -0.12841237, -1.261842, -1.3546785, - -2.231467, 0.9232566, -0.6719474, -0.32794988, 0.21770558, 0.14083189, - -0.005066775, 0.57785857, -0.47754687, 0.40757084, -1.9442375, - -1.0183458, -1.0971804, 0.7251005, -1.5554677, -0.8126796, -1.5693913, - -1.5209463, -2.5747552, -1.4630849, 0.21566711, 0.77101797, -0.8900013, - -1.0385194, -1.1703045, -0.31933704, -0.5822617, -2.1701016, - -0.21405317, -0.9016399, -1.3115233, 0.5457524, -1.1893958, 0.63813466, - -1.7456754, -0.919043, -1.4742875, -0.22570156, -0.108012065, - -1.2212559, -0.8674215, -0.08639532, 1.5110584, 0.8910885, -0.25088102, - -1.1697687, -1.0573416, -1.5971445, -1.4994262, -2.7535005, 0.5493952, - -0.40320492, -0.53550535, -0.20325911, -2.2172174, -2.8931668, - -0.45168266, -2.0404491, 0.5115041, 0.6746288, -0.9007392, 0.41600657, - -0.4187731, -0.23611683, -1.5325794, -0.8619907, -0.58856326, - -1.2271745, 1.365963, 0.81555927, -0.4831139, -0.902966, -0.32681927, - -1.4191898, -0.42638698, 0.22183335, -0.43672138, 0.3126985, - 0.032476783, -2.2085197, -0.9654627, -1.0315216, 0.56128395, -1.9756869, - -0.2971861, 2.1574256, -0.82210684, -0.8970203, -1.6853081, -0.35080585, - -1.0787921, -0.426022, -0.42442495, 0.08104254, -0.8399083, 2.6884215, - -0.3766406, -2.4904935, 0.015342861, -1.7709979, -0.42932343, - -1.0510176, 0.8553244, -1.1994771, 0.94767326, 1.486032, 0.010262132, - -0.6624843, 0.342057, -0.8510272, -1.3675212, -0.32151407, -1.1265352, - -0.40570605, -0.4559012, -2.0586383, 0.83545417, -0.6798518, - 0.037351876, -0.8063817, 0.4641804, -0.95432484, 0.25010443, -1.2544075, - -1.7704275, -0.32390645, -0.9410212, -0.39623907, -1.7186245, - -1.5206534, -0.40465963, -2.380634, -0.29116422, 1.6893183, -0.51551056, - -0.002912484, 1.4308109, -0.11382823, -0.86940527, -1.1433047, - -1.4139696, -0.8917876, 0.17057726, -0.008913856, -1.3014326, - -1.4749233, -1.6153315, -1.2318976, -1.759244, 0.2980674, -0.09826495, - -0.7713587, 0.8714494, -2.137281, 0.09585454, 0.65410376, -0.692435, - -0.52466035, -1.6546504, -0.61655045, 0.1773375, -2.192567, 0.52691466, - -1.5982505, 0.3409459, 1.4653723, -0.8522967, -0.020719, -1.0421157, - 0.9351241, -1.8475109, -0.12350209, -0.2596381, 1.3908868, 1.4256184, - -1.5011941, -0.88065076, -1.1537852, -1.924694, -1.4463854, -2.8146791, - -0.8235884, 0.3905143, -1.4828925, -0.13129756, -2.0907886, 0.9130075, - -1.1602955, -0.26490355, -1.4976193, 1.0751343, -0.7487636, -1.5018263, - -1.5687531, -0.46767193, -1.5890934, 0.57545215, 1.7943931, 0.55532163, - 0.30755138, -0.50267965, 0.8544842, -2.6374176, -0.3768683, -0.32029033, - 0.69983065, -2.2060611, -0.7409835, -0.029571828, 0.13322516, - -0.25035736, -0.39608693, -0.5765417, -1.6282567, -0.88031846, - -1.5478413, -1.1060474, 1.7334259, -0.30803612, 1.3860358, 1.9422855, - -0.41278294, -1.3346066, -0.69484854, -1.3384359, 0.18999544, - -0.36120018, 0.12762728, -1.324612, -1.5266023, -0.6452675, -1.6500565, - -1.1215545, 1.9681237, 0.36479414, -0.8187146, 0.029388238, -1.4152623, - -2.8131907, -0.59433824, -0.68576133, 1.0655318, -1.1965351, - -0.69348556, -0.5228576, -0.17593162, 0.28059882, 1.0310279, -2.121543, - -1.1545029, -1.5475447, -0.38166285, 0.3822489, 2.2761655, -1.5121105, - -2.075782, 1.3822697, -1.471653, -2.7173498, 0.061715648, 0.47569025, - 0.460012, -1.98614, -0.9171283, -1.020536, -1.7594234, 1.8111489, - 0.36902997, -0.53513986, -1.7058107, -0.07165325, 0.082693785, - -2.1224039, -0.8989594, -0.5325402, 0.032016378, 0.5233298, 0.15621258, - -0.057529066, 0.63214874, -1.3855181, -0.068063654, 0.98707485, - -1.8246818, -1.7685375, -0.92423743, 0.55013335, -1.396359, -1.0647006, - -2.0053387, -2.1447976, 0.03612432, -1.0094528, -1.0412445, -0.39340788, - -1.4178581, 1.4753373, -0.47557005, -0.71101296, 0.84285766, - -0.10986015, 0.7961299, -0.3080453, 1.8110943, -0.3866877, 0.96077627, - 0.86787796, 0.47854552, 0.4698252, 1.4451201, -0.022680536, -0.75779796, - 1.1074722, 0.086322695, 0.17041685, -0.75229806, -0.24647626, - -0.76074433, -1.9631383, 0.8141451, -1.4830294, -1.510944, 0.43069515, - -0.72721505, -0.36507902, 0.030318446, -1.122173, -1.3010023, - 0.26990566, 0.1734633, -0.4136757, -3.474944, -1.8448145, 1.279074, - -1.1719975, -0.92543185, -0.2721194, 0.37503478, -0.96407425, 0.3108039, - -0.32307798, -1.0427921, -2.866692, -2.2875435, 0.46109456, -1.0860106, - -0.9385105, -0.5043046, -2.040611, -1.3759481, -1.2887737, 0.9402391, - -0.36567762, -0.4731628, -1.1456274, -1.7700835, 0.27307975, -1.6866156, - -0.26061654, -2.9463592, 1.2825987, -0.45011666, -0.87414604, - -1.4888351, 0.8083534, -0.5564366, -1.055682, 1.0828778, -0.6710712, - -0.8192908, -1.9135756, 1.6107427, 0.65417075, 1.2253104, 1.3408177, - -0.7003185, -0.82289225, 1.0131893, -0.519872, 0.20720203, -0.5485456, - 0.2894374, -0.11180567, -1.3432935, -0.79012495, -2.5585377, -1.4431148, - -2.7078817, -1.0090624, -0.95684344, -0.2089766, 0.30964702, -1.8830024, - 1.4716097, -0.3776347, -0.6416107, -0.24457815, -1.1796546, -1.1483353, - -0.591321, -1.0338538, 0.08806882, -1.6339587, 1.0324417, 0.7469884, - -0.5411146, -1.1409078, 0.62833923, -0.8367369, -0.047634274, - 0.36449343, 0.32441956, -2.0788257, -0.62385464, -0.81479144, - 0.050016753, 1.2498871, -1.6873292, -1.7856892, 0.40749028, 0.21397918, - 0.15208924, -1.638461, -0.8370151, 0.23995832, -1.5829952, 0.2782212, - -0.9734951, 0.7506664, -2.1634955, -2.2633884, -0.67307776, 1.3041385, - 0.034373302, 0.0021859333, -0.7576987, -1.4191002, -0.8674632, - -1.4295812, 0.53242505, 2.6598425, 1.1490263, -1.7347727, -2.0152407, - 0.80121887, 0.08322501, 1.9231095, -1.2389594, -0.5015754, 1.3190349, - -0.14761852, 0.8323368, -0.9778625, -1.3619511, -0.18549168, -1.3557518, - 0.11816305, 0.37682626, -0.62643164, -0.23959947, 0.48996764, - 0.31528065, -0.29627836, -0.45016575, -0.3307514, -0.7826361, - 0.19317454, 0.45741934, -1.2571374, -0.9344137, -0.20035744, 0.6103841, - -1.4115664, -0.53480697, -0.9818139, 0.4728421, -0.022633739, - -0.094172895, 0.46248534, -1.190213, -1.1334003, -0.8948269, - -0.28061023, -1.1889473, -0.087794386, -0.95847344, -0.1435442, - 0.89462537, -1.5136176, 0.114075795, -0.28584644, 0.1710383, - -0.33851898, -0.73976856, 0.32140726, -0.5874744, -0.4799774, 1.8286958, - -0.246972, -0.69734246, -1.1346459, -0.17288607, 0.22899348, -1.3265773, - 0.44400263, 0.12478188, -2.6522186, -0.04268206, -0.25937364, - -1.4507014, 0.47743747, 1.1328846, 0.7968699, -0.09471905, -0.15138684, - -0.14217333, 0.5678893, 0.3687946, -1.3635912, -2.323121, -2.3780224, - 0.45571008, -0.37514275, -0.34695727, -1.479061, -0.72386867, - -2.3939874, -1.5254158, -0.61665446, -2.0570633, -1.3508128, - -0.96957767, -1.0564274, -0.41615415, -0.35616067, -0.6959964, - -0.6867857, -0.6063982, -0.34866938, -0.9566277, 0.8579161, -0.88396156, - -0.4120054, -1.055765, -1.7596341, -1.6639729, -0.31152505, -0.1809999, - -1.4579241, -0.5269812, -2.1020968, 0.5242744, 0.65905106, 0.44695595, - -1.0334926, 0.23128748, 0.5695431, 0.34761533, -0.16874169, -1.2984345, - -0.42306188, 0.3521014, -1.8800353, -0.24261962, -0.19564173, - 0.0057411157, 1.0463245, 0.37248388, 0.5847107, 1.2474133, -0.90560025, - -0.32884964, -0.32096648, 0.036992367, 0.11047466, -0.46207988, - -2.3278825, -0.06744534, -1.3899328, -0.6086229, 0.2611766, -2.1493378, - -1.4306823, -1.7152463, 0.29487553, 1.2116276, 1.3715022, -0.05602739, - -0.9559711, -0.29598984, -0.7653662, -1.3037398, 0.33477846, -1.22147, - -0.21753971, -1.1830298, -0.48406962, -2.1063952, 0.03118287, - 0.15715271, -2.1951697, -1.3860087, 1.7825365, 1.5645918, -0.7762265, - 0.419989, 0.49435565, -0.58564615, -0.3034605, 0.3930292, -1.7191962, - -0.37734812, 0.50023323, 0.080641374, -2.284544, -1.6876259, -2.1680782, - -0.19309385, -0.6432859, -0.5711817, -0.84965706, 0.7409938, - -0.56603825, -0.58243114, 0.28130758, -0.5797265, -0.67071456, - -1.3255978, -0.9840635, 0.11173403, -1.33781, -0.46687436, -1.3725474, - -1.4000235, -0.7277759, -0.5481069, -0.8334718, 0.61386347, -1.3178325, - -0.5476269, -0.88380134, -0.3866978, 0.13805826, -2.074801, -0.70636666, - -1.0660503, -0.30800864, -1.349141, -1.07687, 0.14013048, -0.81312335, - -0.82262325, 0.5258452, -0.1441308, -1.571351, -0.2757763, -1.2405257, - -0.7675955, 0.18759911, 1.0473645, 0.8755763, 0.22301975, -1.5011195, - -0.23269756, -0.9207393, 1.0332958, 0.07647, -0.7269686, -1.1309164, - -0.6767013, 0.109045416, 0.58805794, 0.29310745, -1.7849915, -1.4714148, - -0.78460854, -0.9195407, -0.49823985, -0.90382767, -0.9120665, - -0.7030847, -0.07115863, -1.2105175, -0.6998388, 1.3886882, -1.0063165, - -1.8361062, 0.24923514, -1.3186266, -1.4786288, -0.33197725, - -0.48658282, -0.40659857, 1.1595193, 0.13180763, 0.14197654, -1.6066234, - 0.30422753, -0.5311647, -1.0865707, -1.0487515, -0.42986536, 1.3190423, - -0.64740103, 0.6036027, 1.5411466, -1.325474, -1.9759068, 0.57023317, - -0.75297433, -1.2518251, -0.090389706, -1.5757735, -1.3149359, - -1.2455094, 0.96438706, -1.34986, -1.0336912, 0.612372, 0.5883993, - -2.2078366, 0.76895, -2.0249918, 1.0675588, 1.023262, 0.40121633, - -0.5791474, -1.7878374, 0.009306904, -1.021075, -1.7889541, 0.38992918, - -0.20727104, -1.6833674, 2.094099, -1.3252525, 1.9542891, -0.67564416, - -1.2927852, 0.71569645, 1.3270146, 0.93164605, -0.25368363, -0.40138024, - 0.0084846765, -2.6964934, -0.3677399, -0.32375622, -1.6360943, - -0.8284352, -0.32746074, -1.9104843, 0.41073844, -0.548878, 1.246661, - 0.5267394, 2.033899, 0.035902802, -0.3322175, -2.0111017, -1.8917778, - 0.79852915, -2.3532283, -0.45217213, 0.2415895, -1.7244905, -0.6681036, - 0.34083796, -0.2645162, -1.2291425, -1.05131, -1.685461, -1.38773, - -2.9609518, -0.8612179, -0.29793033, -0.47216076, -0.79668725, - -0.64614946, -0.50487393, -0.28945613, -0.95494115, 1.9614595, - -0.9950678, -0.057146907, 0.48762688, -0.19245462, -1.2911942, - 0.050415084, -0.73505276, -1.3380857, 1.1926116, -1.7372723, -1.630845, - -1.4533938, -0.9886444, 0.76666236, -0.6075683, -1.785691, -2.0879548, - 1.0952243, 1.2199699, -1.0167783, -0.7580238, -0.5824568, -1.6433293, - 1.6763203, -0.1930198, 0.24683705, -1.0733757, -2.4186213, 0.14246888, - -1.3748806, 0.51423854, -0.7872599, -0.12728247, 0.15521571, -2.5632808, - -1.2413886, -0.4822883, -1.8039005, -0.48399645, 0.5035291, -0.5190278, - -1.6632034, -1.5775654, -0.8317542, -0.46220943, -1.631936, 2.0185037, - 0.4001559, 1.532805, -0.26466286, -0.38450384, 0.72887695, -0.12694731, - -0.4151211, -1.4113066, -1.4551734, 0.5194842, 1.2738532, -0.53613406, - 0.0049219653, -1.7123873, -0.62110204, -0.30677444, -2.6418147, - -0.9098107, -0.84384966, 0.9996668, -0.10993637, -1.3819551, 0.12337391, - -0.22343506, -1.1715299, -1.891192, 0.2667185, 0.9430173, -1.78234, - -0.73387593, -2.7237263, -0.0055359714, -0.5293973, -1.3193662, - -1.1267226, -1.979061, -0.5544891, -2.1744695, 0.33986703, 0.376202, - -0.97241247, 1.2608148, -1.296622, -0.32591218, -0.39527372, 2.10274, - -0.30583987, -0.56938374, -1.8882099, -0.19434491, 1.5908079, - -1.5471302, -2.0343497, -0.82598746, -0.1671346, -0.8661887, -1.5217868, - -1.0280637, 1.3478768, -0.95956993, -0.3614507, -0.18788798, -1.7195903, - 2.2395606, -0.6780103, -2.1012156, -0.62524736, -0.04641247, 1.4269495, - -1.4077924, -0.9160238, 2.7961943, -0.6221602, 0.30247197, -1.2730284, - -2.049305, -0.6244768, -1.1175566, -0.16405462, -1.5332377, -1.861736, - 0.37607533, 0.57665825, 0.3578093, 0.31689212, -0.1562345, -0.818227, - -2.0742743, -0.834539, 2.162705, -0.10240637, 0.25256333, -0.88749903, - -1.6547433, -0.25642163, -2.0415666, 0.38011798, 0.04482086, 1.4940643, - -0.110123456, -0.3429238, -0.56788975, -1.8927995, -1.0190839, - -0.7599876, 0.34684482, -1.8197408, -0.66872394, -1.8168052, - -0.61353505, 0.44904205, -1.9479066, 0.030113712, -0.22936592, - -1.796209, -0.59716654, -0.4483609, -2.1865342, 0.2176056, 0.7897301, - 0.28093326, -1.0170972, -1.0213654, -0.75811505, -2.0546248, 2.561645, - -1.1077918, -2.2225704, 0.3227609, -0.7319931, -0.5114401, -0.3490086, - 0.077809095, -0.12887488, -0.01505547, 0.75863934, -0.3903485, - -2.1906312, -0.41915274, -0.2990899, -1.8936906, -0.8918268, - 0.042483095, -0.64290655, -1.4381558, -1.2867951, -0.7204345, - -0.015735034, -0.53526396, -0.46336007, -0.7248609, -1.4851236, - -0.21399178, -0.23599093, -1.1189033, -0.9299305, -1.9777193, - -1.4789051, -0.2791704, -1.1050011, -1.0234187, -0.7486876, -0.980933, - -0.6603692, -1.8987575, -2.6546361, -0.4892147, 0.5227307, 0.40632725, - 0.21441194, -2.0752168, -0.5184338, 0.5021958, 0.3369321, -0.512351, - -1.4608682, 0.34664133, -0.5651094, 0.026218258, -1.4692457, - -0.56811243, -1.1898289, -0.5693312, -1.4907212, -0.653307, 0.60361004, - -0.27469367, -0.3011281, -1.0989158, 1.0529995, -0.85509336, 0.7226381, - 1.964527, -0.43218577, -1.2926704, -0.5394188, -1.4628897, -0.76763165, - -1.6532807, -0.9673757, -1.1603848, -0.6906697, 0.23535778, 0.43204576, - -0.2666793, -0.8847095, 1.0274411, -1.9360037, 1.0010316, -0.9145235, - -0.7692951, -0.9123812, 0.98069674, -3.5503452, 0.7404886, -1.4001181, - -0.42319477, -1.4222162, -1.2805517, -2.1655636, -2.7086954, -1.9878962, - -0.64953107, 0.039746933, -0.057876803, -0.49310887, -1.2382014, - -0.14573821, -0.48810354, -1.308198, -1.7283279, -0.060119703, - -0.20862186, 0.7351662, -0.3580439, 0.026370183, -1.7727932, -0.9156339, - 0.28132635, -0.85569453, 0.8790403, 0.059114538, 0.6132593, 1.0964849, - 0.20561889, -1.5370938, -2.6885736, 0.036109004, 0.76742953, - -0.53668994, 2.2047648, -1.2274226, -1.0078002, -0.896014, 0.45846236, - 1.6406716, -1.0057706, -1.7213736, 1.8364159, 0.8911119, 1.0826564, - -0.38480017, -1.4891409, -2.612118, 0.3366986, -0.6337333, 1.4186778, - -1.4458642, -0.861846, -1.003345, -0.88730055, -0.3878454, 0.20819883, - -0.6031843, -0.39805445, 0.46107495, -2.1689205, 0.50769174, -1.1980942, - -1.9116601, -0.39691538, 0.011959964, -0.28452915, -0.73756534, - -0.77970386, -0.6228974, -1.0146226, -0.24843374, 0.20204648, 0.5088583, - 0.21448632, 0.45026743, -1.3156346, -3.3230684, -2.7959642, 0.9873944, - -1.9331115, -0.4894135, -0.6685238, -0.123106286, -2.8118744, - -0.6948087, -0.65750057, -1.0662255, -0.77286875, 0.5288927, 0.14923799, - -1.0598241, -0.62265515, -0.86482185, -0.6429531, -0.48538464, - -0.23655069, -2.021938, -1.1215138, 0.42405358, -0.90928, -1.7243458, - -0.69946766, -2.0188975, -1.3251163, 0.33078766, 1.4806452, -1.4644525, - -0.6825079, -0.7318847, 0.8032666, -1.5835991, -1.0915017, -0.2631585, - -1.4102013, 1.681838, -0.8454553, -0.56040394, -1.3290535, -1.7956405, - -0.9198908, 0.23704797, -1.506906, 1.8545043, -2.9237692, -1.7604661, - 0.026914384, -0.7616933, -0.20469499, 0.12811388, 0.23041958, 1.4399714, - 0.5751786, 0.49644637, -1.1220896, -1.2515091, 0.3984563, 0.9664532, - 0.36944455, -1.0266651, -0.44538525, 1.6442341, 0.33842874, -1.4153131, - -0.32545432, -0.85418767, 0.6613838, 0.7749502, 0.2945053, -0.7625377, - -1.3200625, -0.54575586, 0.7002184, -0.35404053, 0.22433543, -1.4776345, - -1.1429695, -0.49818248, 2.0117612, 0.080777034, -2.226869, -0.5518937, - -0.56976616, -0.68565536, -2.5326667, -0.25855327, 1.3039501, -1.39761, - -0.37795475, -1.2294921, -0.16540447, 0.116687514, 1.5159787, - -0.98699397, -2.4424741, -0.10983872, -0.6177776, 0.07279615, 1.2184353, - 0.18305737, 0.1458238, -1.7858534, 0.9740956, -1.4920237, -0.9220358, - 0.54070896, 0.23941955, -1.1928835, 0.7726536 - ], - "features2": [ - -1.2314161, 0.27153575, -1.2921234, 0.21795774, -0.6785107, 0.9411926, - -0.19011025, -1.5450916, -1.2939696, -0.6551354, 0.22622195, 0.3049276, - -1.3299378, 1.6695569, -0.25601873, -0.9565777, -0.30398, -0.5981273, - -0.6056683, -0.74970007, -0.5658878, -1.3205231, -0.7609491, 0.84709203, - -1.3135008, -0.9494295, 1.0275034, -2.2326102, 0.12723894, 1.1608725, - 1.5316501, -0.58413506, 0.4980002, -0.62267816, -0.62436473, 0.65344805, - 0.38598675, -1.057303, -0.3530531, -0.61002105, 0.10479754, -1.4162217, - -0.6463563, -0.61109906, -1.7263249, -0.6617873, -1.2856559, -0.9868237, - 0.28133732, -0.2989449, 0.095696285, -0.44426832, -0.31418478, - 0.42167547, 1.0859839, 0.45747015, -0.5706321, -2.646933, -1.3819666, - -0.3324501, -0.75993615, -0.05252317, -0.88797694, -0.25358874, - -0.89627504, -0.018487751, 0.023468634, -0.48964944, -0.33674407, - -1.9982529, 0.0068506524, -0.294172, -1.4360874, -0.5251659, 0.5752593, - -1.2495757, -0.88670117, 0.933499, -2.2299256, -0.8195883, 0.7115196, - -0.12884665, 0.8604161, -1.8597447, -1.1700265, -1.3657029, -0.16508853, - -0.4743299, -2.115447, -1.4717959, -2.1371245, -0.1707739, -1.2895142, - 0.40287852, 0.25425926, 1.4632081, -1.119044, -0.1736722, 0.8609115, - 0.046852984, -0.5876715, 0.68604314, -0.12844314, -0.9484284, - -0.8955299, -0.79417884, 0.19529124, -0.9348916, -0.6351021, 0.22159036, - -2.4404106, -0.7884084, -2.4912734, -0.29732737, -0.9085933, -0.5267704, - -0.04387393, 0.064243734, 1.0864943, 0.20451383, -0.10666981, - 0.16625112, -1.5587449, -1.2219013, -0.77946657, -2.1804037, -1.4471766, - -0.33519983, -1.4339284, -0.07420681, -0.79734623, 0.7035578, - -0.49936718, 0.7292262, 0.4123792, 0.68157506, -1.7468208, -1.7658994, - -0.7223472, -0.5350647, 2.295031, 0.9621318, -0.87298787, -1.102639, - -1.1396606, -0.6764974, 0.03092146, -0.43087944, 1.1243129, 0.51063925, - -0.52324855, -0.7827358, -0.7745055, -0.34338626, -0.6614456, - -0.6230475, -0.73582196, 0.303792, -0.28821343, -1.7969903, 2.4437766, - -1.1575235, -1.9416711, -0.3644308, -1.6654799, 0.06819402, -0.75035584, - 0.6951693, -0.70614934, -1.5664067, -1.2898134, -1.8265886, -2.1747723, - 0.703665, -0.8518623, -0.58606607, -0.7429087, 0.12028247, 0.8643117, - -0.0025745109, 0.53551376, -0.46766448, -0.64025354, 0.6508887, - -1.1481206, 1.0930731, 1.7408047, -0.24170198, -1.0995702, -0.6193156, - -1.5162789, -0.22252637, -1.1001314, -1.9867122, -0.6603819, -0.8286366, - -0.7907425, -0.99339616, -1.5953662, -1.6681299, 0.6091563, -0.36720234, - -0.5318918, 0.81182593, -1.3467906, -0.43212828, 0.7367489, -1.4260472, - -1.8521225, 1.6522825, -1.2384106, 0.23813555, -0.23047873, - -0.022836871, -1.3387611, -0.37688807, 0.6540759, -0.27233192, - 0.21393716, -0.062343583, 0.5959953, -0.3869281, -1.0254968, - -0.93314666, -0.123610914, -0.28655267, -1.3467215, -1.2261825, - -1.6260357, -1.5718671, -1.5186538, -1.5068718, -1.1197054, -1.8298212, - 0.12700117, 0.9438741, -0.86947185, -1.119271, -2.3911207, 0.17559257, - -1.6249386, -0.25911242, -0.7990562, 0.39424545, -0.1733352, 0.72545767, - -0.6933985, -0.18893626, -1.1306459, 0.49390775, -0.60050374, - -0.62150085, -1.0115993, 0.60739565, -2.0779786, -1.0439075, - -0.117235065, -1.4125894, 0.31666762, 0.04871864, -1.0665146, - -1.3221612, 0.6298717, -2.3310657, 0.9930535, -0.7897941, -0.5438337, - -0.7804664, -2.217547, 0.36423993, 0.505367, -2.2545304, -0.52772266, - 2.481689, -0.7719399, -0.7996405, -1.9292791, -0.1394774, 0.3841484, - -0.768019, -0.4293926, -0.21381465, 1.915573, -0.4779722, -1.6451325, - -1.4808193, 0.28386727, -2.168189, -1.4722141, -1.0633329, -0.61903596, - -2.6864612, 0.048705067, 0.37571412, -0.57866454, -1.1529431, - -0.47707993, 0.22536613, -1.7774514, -0.31950596, -0.13104077, - 0.5879327, -0.058871947, -1.8091561, -1.071897, -1.1853685, - -0.046795428, -1.0877659, 2.709082, 0.25796643, 0.9292247, -1.2118742, - -0.6673305, -0.9251666, 0.092246205, -0.27806193, -3.0038917, - -1.3440852, -1.9969869, -1.012991, -0.7416375, -1.5911286, -1.0290406, - -1.273481, -0.7660371, 0.77248955, -1.8996203, 0.16384885, -1.4543538, - -2.6095297, -0.44753397, 0.29270422, 1.6672084, -0.26703608, - -0.18476617, -0.0044630654, 0.64022326, -0.7131947, -0.3125712, - -1.4258416, -1.4717715, -1.833993, 1.3713444, -0.8365354, -4.1176124, - -0.811685, -1.9514389, -1.0973302, -2.2345493, -0.0321383, -0.036018286, - -0.7932433, -1.4227757, -0.06093315, -0.4248514, -0.8791827, -1.0336424, - -0.15131101, 0.31937113, -0.19784719, -0.60904366, 0.7648689, - -0.9312511, -1.7502854, -0.900409, -0.50492156, 0.15066089, -1.0834812, - -0.82241297, -0.9874135, 1.2428643, -0.48790118, -1.107675, -0.07090916, - -1.0492474, -1.3721644, -2.672993, 0.6746624, -0.8688876, -0.9498399, - -1.3988544, -2.01746, -2.1104615, -0.24238595, 0.36618704, -1.5700336, - 0.3239428, -0.26076794, -1.0141385, -0.78039145, -1.2294346, 0.48142844, - 2.5840955, -1.3679533, 0.81577474, -0.25331238, -0.8898015, -0.7001586, - -0.3319307, -1.4621181, -0.61370283, -1.3676683, 0.3824777, -1.9904939, - 0.43541762, -0.982602, -0.31414554, -0.7406739, -0.51993597, 0.95507985, - 0.7520942, 0.15090758, -0.84125435, -1.7858311, -0.49262807, -0.8275978, - -1.0777043, -0.272338, -2.504665, -1.1864834, 0.5892153, 1.2718105, - -0.6131288, -1.0052456, -2.0271552, -1.803905, -1.7768431, -2.4535863, - -1.07193, -1.2054046, -1.2996768, 0.7575457, 0.510882, -2.571113, - 0.6066103, 0.8541983, -0.4803756, 2.010324, -1.1235979, -1.199557, - 1.5405985, -0.25460273, -0.07376288, -0.85542715, -0.77409625, - -0.40030137, -0.9788467, 0.3691334, -0.63920677, 1.2289296, 0.095656484, - 2.2217233, -0.41031116, 0.36066455, -1.2374556, -0.72791606, - -0.44977704, -0.09362593, -1.2334564, 0.23448971, -2.6850948, - -0.09617079, -0.89002323, -1.3108757, -0.39947063, -1.3047924, - -1.8531407, 0.37193465, 0.53875136, -2.2343893, 0.9589101, 0.32016683, - 0.010908999, -0.46234792, 0.3415699, -0.52551115, -1.2240955, - -1.1063802, -1.0961714, -1.1582557, 0.77716106, -0.87060416, -1.9387885, - 0.74830157, -0.56534666, 0.39124095, -0.6177628, -1.5777678, -0.6478078, - 0.39375344, -0.9777947, -1.7603128, 0.3702172, -2.4997685, 0.31987986, - -1.257986, -0.2825551, 0.3948443, 0.8059996, -0.5822369, 0.39394015, - -0.29192564, -0.65577155, 0.042151213, -0.02879709, -0.35889438, - -0.85899615, 1.7649907, -2.7112477, -1.5401608, 0.46344543, -0.31724358, - -1.2283334, -2.242728, -0.46640253, -2.5467982, -0.16412225, 1.4621673, - 1.0846444, 0.15384954, -3.1417546, -1.2256794, -0.07055215, -0.3782878, - -0.575454, -0.99120975, -0.07189878, -0.6557606, -0.79454035, - -0.24653035, -0.6314645, -0.627125, -0.63314813, 0.31077746, - -0.71776223, -0.28691137, 0.8051161, 0.43739226, -0.46033108, 1.7969644, - -3.1279163, 0.4602249, 0.09589765, 0.9624087, -1.0797385, -0.6677025, - -1.1122245, -1.0288942, -1.1896231, -2.5492203, -1.4970157, 1.147823, - -1.7139444, -0.93273526, -0.87603295, -0.4271394, -1.201904, - -0.61052245, 0.30385143, 0.6655208, -0.12919399, 0.014826773, - -1.5161018, -1.0088665, -0.7554744, -0.47690907, -0.37683782, - -0.7919048, -1.9950708, -1.489853, 0.9056853, -1.0574999, 0.9177056, - -0.20150249, -0.2178086, -1.2820314, -0.60069406, -1.874707, 0.46385762, - -0.8975912, -0.1981279, -1.2829126, -0.42961276, 0.50565064, -2.016287, - -1.4716637, -0.15673573, 1.8396485, -0.33597642, -0.346809, -2.1806965, - -0.97502863, 0.6383937, -1.5275525, -1.5857421, -0.005001232, - -1.7106025, -0.75892866, 0.360729, 0.48684505, -1.0727458, -1.6609627, - -0.3398726, -0.67183703, -0.057568938, -0.8585377, 1.6521877, - -0.76481736, -2.3452947, -1.2765203, -1.3677979, 0.22746855, 0.7304583, - 0.55427516, -0.14641759, 1.1174271, 1.9817976, 0.13962512, -0.953415, - 2.8780904, -1.2481571, 0.95755327, -0.40192345, 1.4822083, -0.60057676, - 2.8137646, -0.6511166, 0.8329464, -0.5326754, -1.5842538, -0.30245757, - -1.5044771, -0.5080386, -0.45971817, -2.1102047, -1.1655772, 0.7265536, - -0.46505564, -1.036457, -1.7548562, 0.6484411, -1.2792972, -1.3119552, - 0.8489528, 1.2694182, -0.37903804, -1.9909017, -0.91869676, -0.97601384, - -2.785959, 0.21261695, -0.24552901, -0.36352646, -1.0314769, -0.1434309, - -0.92146856, -0.41522527, -0.57583666, 0.51750076, -0.63084316, - -0.4608315, 0.072402686, 0.04491753, -1.0046055, 0.25873116, -1.3383595, - 0.45099792, -1.3167747, -0.51109964, 1.8773066, -1.8243728, -2.4584887, - 0.02477388, -1.2995831, -0.27120245, -0.16717187, -0.38575783, - -1.5980996, 0.036777064, -1.31137, -2.2367566, -1.4965001, 1.1416606, - -0.7305366, 0.2017903, -0.8099425, -0.7197556, -0.03351725, -1.3331565, - 1.2866453, 0.2921929, 0.4802232, 0.42393494, -1.6617031, -0.7171622, - -1.0128251, -0.699302, -1.6059729, -1.5116818, 0.07653086, -0.9276547, - -0.66527337, -0.6349576, -0.5344095, -0.55586195, 0.9529928, 0.47378477, - 0.20191278, -1.2919914, -0.81434494, 1.6533743, -0.39038002, 0.36276513, - -1.8266356, 0.8277843, -0.88903403, -0.59593254, 1.8428428, -1.6233292, - 0.6354242, -0.16926238, -1.3580357, 0.046203848, 0.6204743, -0.3816844, - -2.5872977, 1.9627649, 0.04969019, 0.1628831, 2.7922583, -0.6938596, - -1.616853, -0.3594273, -1.6577636, -0.9383123, 0.10199998, -0.354812, - -0.37231016, -0.8008358, -0.19397157, -0.40473634, -2.0112333, - 1.3620714, 0.5948751, -1.0290415, -1.545135, -0.391513, 0.9746748, - -0.11200059, 0.79012364, 0.5019513, -0.44291484, -1.9108567, -1.6159652, - -0.694148, -0.5886187, -0.5617286, -1.0703245, -1.0090684, -0.5119214, - -1.6467339, -0.94739926, -1.3776726, 0.07102482, 2.1910028, 0.12909742, - -1.1978714, 0.4410322, -0.6104164, -1.9039053, -0.5532597, -0.7325664, - -1.340512, -1.3506066, -1.5287675, 0.8705416, -3.148164, -0.31651622, - -1.0394626, -0.1991746, -0.007992573, -0.28447092, -1.3435954, - 0.94033307, -1.2681509, -1.2499224, 1.0407696, -1.8942977, -0.14878201, - 1.3860513, -0.6855404, -0.4416505, -1.9645363, -1.8458973, -0.7656655, - -0.30919003, -0.80677384, 0.6585673, -2.7461145, -1.32289, -0.5040835, - -0.5247015, -0.53974247, 0.9978574, 1.3151, -0.7491952, -0.12614772, - 0.09257131, 0.4868034, -0.76903087, -0.44299415, -0.60074437, - -0.7975302, -0.075977474, -0.8462811, -0.06135383, 0.043615866, - -1.1813736, -1.4219062, -1.3321038, -0.5967805, 0.38503787, -0.1967681, - 0.7896185, 0.9749437, -1.7486137, 0.42037886, 0.10393495, -2.0840192, - 1.9849076, -1.3573583, -1.2712973, -1.1934667, 0.041589458, -0.582774, - -1.2887472, -0.9461052, 0.018885542, -1.192268, -0.010943141, - -0.17044693, -0.46404144, 1.4223182, -1.531143, -0.29585004, - -0.054949068, -1.0048475, -0.44606876, -1.4533254, -1.104162, - -0.64920956, -0.080339834, 0.4418363, -1.0935779, 0.24454734, 0.2894311, - 1.0615054, -0.52044994, -0.71255535, 1.2457633, -1.3894042, -0.8024541, - -0.3997037, -0.89550227, 0.2871612, -0.6350275, -0.13206959, -1.0790565, - 1.5349196, -0.8421213, -1.2991382, 1.7819498, -1.4549469, -2.285612, - -0.64036185, -1.1608385, -1.0223606, -1.2714365, 1.2007754, 0.15333648, - -0.72364736, -0.6984812, 0.7586209, -2.0043974, -1.5175717, -1.2822261, - 1.1519159, -0.89519733, 0.37487414, 2.8363602, -2.7911704, -0.48290604, - -1.3173022, 0.19596955, -1.1517937, -3.1661034, 0.39680398, -1.4149518, - -0.16254908, -0.28960395, -0.19338693, -0.20848176, -0.093643695, - -1.5093658, 0.34204414, 0.28294793, -1.2355177, 1.0758307, -0.51057756, - -0.21256427, 2.3890421, -0.33701882, -0.63942254, -0.5066952, 1.543214, - -0.755987, 1.7337191, 0.8767346, -0.7502914, 1.6776427, -1.2914774, - -0.09426253, -0.5995542, -1.4623839, -0.25071782, 1.0654067, 0.26788327, - 0.05480615, 0.5520276, -0.6419745, -0.470328, 1.3840818, -0.711023, - -0.590142, -0.685848, -1.374392, -0.18723094, 0.14876711, -0.119470835, - -1.2836652, -0.8982955, 0.37702152, 0.27702394, -0.8089435, 0.8859507, - -2.1430671, -0.58524233, -2.1083667, 0.119099006, -0.69577414, - -0.08118753, -3.6793165, 1.4709998, -0.098502554, 0.8671955, 1.4880376, - -0.27741864, -0.07739551, -0.26401263, 2.5816834, -1.9983208, 0.6918013, - -1.1284902, -0.20734583, 0.13816318, 0.7747231, 2.0352936, -1.36874, - -2.8215418, 0.03053404, -0.32713693, -0.041908167, 1.178905, - -0.24599078, -1.0231622, -0.024124093, 1.218245, -0.8083997, 0.49328974, - 0.7890002, 0.78776914, 0.53770536, -0.78665626, -1.2354677, 0.40351206, - -0.4130699, -0.3264694, 0.75745803, -1.7250917, 0.44095543, -1.5555289, - 0.84211844, -0.88362896, -0.20183939, -2.1681926, -0.69403356, - -0.5452103, -0.31069106, 0.43116537, -1.2636405, 0.7434881, 0.07620332, - 1.6627, -1.6866696, 1.8961195, -1.0799819, 0.4044985, -2.021443, - -1.2336197, -1.046625, 0.20203845, -0.06983446, -1.3123584, -0.29066375, - -1.4052225, -1.1745043, -0.5582379, 0.29420853, 0.93790776, -1.5346249, - -0.8826161, -1.724391, -0.4601755, 0.39470702, -0.71979237, -0.76460594, - -1.2560924, -0.19564825, 1.8015652, 0.6386721, -1.8610973, 1.4656998, - -1.3819913, -1.443715, -0.8444967, -1.6749271, -1.3435565, -1.0657604, - -0.12721166, -0.7690458, -1.1955597, -0.72573274, -1.611796, -1.4389375, - -0.17132464, -0.0040138774, -2.0737703, -2.3053343, -0.7500043, - -1.0985018, -1.4824048, 0.8155386, 1.1310724, -1.3357977, 1.2694492, - -0.41314843, 0.0014530206, 0.23999053, -1.59957, 0.3490559, -2.4135525, - -2.1746395, -0.42126596, -0.15998334, -0.73418504, -0.47196433, - -1.134125, 1.596331, -2.0811536, -0.06957576, 0.3121116, 1.8415658, - -0.13820603, -0.37215498, -0.5715367, -2.118712, -0.6089301, -1.4243112, - 0.052474614, 0.44703558, -0.6664031, -0.71561277, -1.2203969, - -0.8971357, 0.20893559, -0.45967466, -1.6785128, -0.51193905, - -0.40720776, -0.82436466, 0.18240549, 0.16730344, -0.3693743, - -1.6440505, -1.286564, 0.7499908, -2.1986444, 2.2631602, -0.7305384, - -2.0952826, 0.7664998, 0.34821028, -0.46084064, 0.76510155, -1.0945181, - -0.42341453, -0.44919044, -0.9752703, -0.033450462, -1.6026729, - 0.58688474, -0.6754761, -1.2159703, -1.0600688, -0.620771, 0.5119748, - -1.4895961, -1.3215663, -0.051260628, -1.7217768, 0.29784045, 1.072253, - -2.8861985, -0.9988968, -1.9129065, -0.6733785, -1.3489308, -0.3418135, - -1.7165856, 0.33897063, -0.09352366, 1.4237348, -1.1463479, -1.987828, - -1.3756847, -0.8446764, 1.3215755, -0.5722552, 0.8939593, -0.693053, - -1.5180807, -2.3479824, -1.5259926, -0.45757726, -1.2681491, -1.4010651, - -0.7522231, -1.4614996, -1.141272, -0.31308943, 1.3417553, -0.3508161, - 1.0692958, -1.6271482, -1.6725177, 0.36797592, -0.18560523, -0.5783459, - -1.2682297, 0.32973406, -1.9205971, -2.2443972, -1.9348794, -1.0482091, - -0.739115, 0.6615248, -1.9738605, -0.6055196, -2.2103245, -0.36474654, - -0.75337815, 0.41290408, 0.78748596, -1.9047239, -1.8617036, -0.7411951, - -3.102937, -0.91865456, -1.2647218, 0.1628229, -0.7153207, -1.0315765, - -1.3942385, -0.7958276, -0.8147131, -1.3240633, 0.07571402, -0.66076493, - -0.602798, -0.3074624, -2.2579834, 0.8237919, 0.37809932, -1.5675724, - -0.7209258, -1.3374954, -0.729647, -0.6927763, -1.1627179, -2.1939034, - -0.24254653, -0.32232833, -1.6409149, -1.1903541, -0.62925607, - -1.1462458, -0.02878587, -0.47850525, 1.4135518, -0.100424975, - -0.7884368, 1.0748643, 0.5066176, -0.18961376, 0.2410893, -1.0243566, - 0.554268, -0.9293126, 0.9609185, -0.9119953, -1.648805, 0.46734187, - 0.44424814, 0.17835301, -0.06371803, 1.073893, -0.56677854, 2.4581943, - -0.0007101707, -0.32276136, 0.6583667, -0.3991185, -0.7223142, - 1.2360588, -0.86352897, 1.2420359, -1.2637314, 0.27045107, -1.2666799, - -0.331598, 0.6296966, 0.11014514, -0.6289639, -0.17420343, -0.2742746, - -0.33442256, -1.490867, -0.9745066, 1.0303179, 0.16942182, -0.89810646, - -0.6173101, -1.2188362, -0.5524216, -2.0748608, 1.8385417, -1.2898427, - -0.6111606, -0.4159174, -0.4502065, 1.0917177, -0.49101835, 0.56708825, - 0.32676214, -1.754768, -0.43502048, 0.29666823, -1.4954073, 0.4444477, - -0.021666078, -0.91472244, -2.2034533, 0.01335828, 1.8353513, 0.7894507, - -0.53219193, 0.093799725, -1.5492013, 0.32013512, 0.16029048, - -0.13174821, -2.3311048, -0.09473586, -0.31473124, 0.05599817, - -0.59881264, -1.6211005, -0.9775463, -0.46691182, 0.20768082, - -1.8986446, -1.6060075, 0.71047235, -1.7154992, 1.3287576, -2.6544013, - -1.6691962, -1.7992612, -2.5595212, -1.4734058, -1.1091877, -0.96953094, - -0.10972406, -0.46134165, 0.024135202, 1.5222081, 0.33263105, - -1.9465433, 0.9759298, 0.61084205, -0.013416909, -0.07757814, - 0.45680484, -1.393072, -0.4947864, -1.07054, -0.8966754, 1.1496946, - -0.59564793, -0.8768921, -1.8312981, 1.5581002, 0.47063068, -1.3577684, - -0.6054842, -1.3196603, -0.30625856, -1.0555409, -1.1691687, 0.08932494, - -0.22401345, 0.7840532, 0.8515944, -1.2799197, -0.43821767, -1.1777939, - 0.12737787, 0.9101092, -0.9619138, -0.9846921, 0.7627573, -0.039615057, - -0.79859054, -1.5193754, 0.8594657, 0.13220696, -1.8989707, 1.4728199, - -2.5286183, 1.9463274, -0.09096797, -1.6923583, -0.7489903, -1.1247376, - 0.5132599, -2.10132, -1.7448516, 0.35224125, -0.8340929, 0.10722217, - -1.5725627, 0.53789884, -0.4819297, -0.17426838, -0.40078387, - -1.0663363, -1.3605736, -0.6034226, -0.14975464, -1.0304594, -1.3606836, - 0.37461853, -0.25055572, -0.9269999, -1.585361, -1.2287036, -0.81456804, - 0.78448665, -0.8198967, -1.2589349, -0.56846607, 0.1302261, -0.8585814, - 0.49421272, -1.3902116, -1.2248625, -1.4882369, -1.416325, -0.49990755, - -0.95609075, -0.10896223, -1.804726, -1.7255063, -0.1340372, 0.90561795, - -0.47097322, -1.9202396, -1.6466583, -0.631444, -2.1310165, -0.31060722, - 0.39960936, -1.3912221, 0.67828476, -1.2505517, -0.4355172, 0.58427477, - -0.2845312, -1.0584147, 0.46526015, 0.5149554, -0.026822831, -1.8845121, - -0.6299062, 0.84537977, -0.3464161, 0.16505367, -1.3265897, 1.485494, - -1.0692807, 1.47272, -0.25214866, -1.4377406, -0.13653912, 0.007816788, - -0.9897085, -0.9165826, -2.1633456, 1.7244259, -1.1268978, -0.4387072, - 0.60772276, -0.73050606, -1.2865478, -0.9460613, -1.4822378, -1.3733248, - 0.21488133, -1.3113476, 0.89669544, 0.84156483, -1.315207, -1.6346741, - -1.3187824, -0.47502667, -1.3870454, -0.62715137, -1.8094981, - -1.2477301, 0.51180714, -1.1264912, -2.4107099, -1.0538381, -1.8849884, - 1.4897527, -0.48396984, 0.5104709, 0.40856168, 2.8818383, 0.03759886, - -0.6416264, -0.7220836, -0.116330355, -0.7218235, -2.014102, -1.7408774, - 0.8779608, -0.7220502, 0.14974502, 0.596154, -1.6297297, 1.0191483, - -1.128757, -1.317601, -0.5944741, 0.35411498, -1.3184539, 0.23751174, - -1.2222158, -0.22049032, -0.92940074, -0.440574, -1.0725031, -1.967707, - -0.89813656, -0.559754, -0.7325853, -1.7668209, 0.79846317, 2.1604993, - -0.0881568, -0.57872295, -1.1606023, 0.00451288, -0.50787604, - 0.16566592, -1.7552166, 0.2559322, 0.3169733, 0.7771529, 0.82311356, - 0.4404806, -1.2521391, -1.8172351, 0.10012168, -1.3438317, 0.6604049, - -0.74040604, -0.71937776, 0.11351538, -0.011380058, -0.6494123, - -0.65649945, -0.25202054, -1.008609, 0.59376407, -1.5178812, -1.0407422, - -0.2293029, 0.5701786, -0.24460255, -1.5016572, 0.66323954, -1.0424098, - -0.7584949, 0.43929467, 2.481495, 0.5159128, -0.14482124, 1.2205846, - -2.1693442, -0.83460534, -0.80460936, 1.3833578, 0.5163189, -1.8057231, - -0.70650464, -1.7661827, -0.39615083, 1.8971472, 0.5625581, -0.8086755, - 0.4253811, -0.87791026, 1.4607819, -0.98907596, -2.660575, 0.7956937, - 0.10322662, -0.6084831, -0.68107444, -0.24228288, -0.7112654, - -1.1970419, -0.81826377, 0.6598541, 2.9359734, -0.535084, -1.6105076, - 2.658811, -2.2045252, -0.39633167, -1.6890321, -0.8493937, 0.16282636, - -0.17420942, -0.8269501, -0.73577327, -0.81740975, 0.35284612, - 0.21081203, -0.7614606, 0.428133, 1.4820186, -1.2246644, 1.1172721, - -1.2487098, -1.6872084, -1.6659825, -1.5503851, -0.8033934, 0.20599018, - -0.047571152, -1.7688047, 0.38954842, -2.5366662, 1.9742519, 0.30902076, - 0.8625611, 0.22504182, -0.884607, -1.0320512, -2.1603398, -0.9443165, - -1.3529162, -0.31484348, -0.15984708, -0.2917227, 1.286453, 0.44097617, - 0.5245375, 0.22419429, 1.1812733, -1.3524201, -1.7034963, -2.1476862, - -0.52274454, -1.374268, 0.021258043, -0.73476946, 0.72974306, - -0.7427137, -0.2639178, 0.55762744, -0.6621622, -1.9626083, - -0.069759585, -1.9311756, -2.0321891, 2.015305, -0.9550504, -1.23235, - -0.41910535, 0.62283796, -0.15548605, 0.29986626, -0.31862512, - -0.72995895, -1.1724446, -2.3623414, -0.6115618, -2.4646184, - -0.58765244, -1.7569613, -0.4416464, -2.4584813, -1.6025326, -1.5193484, - 0.93907225, -0.38539958, -1.2299575, -1.7640996, 0.45326266, - -0.87935114, -1.3120786, -0.67607325, -0.28276217, 1.6611968, - 0.42112896, -1.7864063, -0.28431237, -1.605616, -1.3641562, -1.7088296, - -0.5989289, -1.0679752, 1.7195505, 1.1840054, 1.9786187, -0.7872269, - 1.767245, -1.3419502, -1.6356317, -3.2418694, -0.10570322, -1.1517196, - 0.68533933, -1.8753675, -1.8696413, -1.4242865, -2.1498058, -0.88592494, - 0.22245044, -0.23917726, 1.0173866, 0.4161609, -0.7088358, 0.52111435, - -2.029688, -0.42570496, -1.456626, -0.11865358, 0.3283801, -1.698001, - -2.3124287, 0.2892277, -2.0716162, -1.1860793, 0.48528096, 0.6859179, - -0.6815014, -1.8816637, -0.16555884, -2.4985476, -1.357347, -0.8689157, - 1.865164, 0.8528765, -0.8195554, -1.1096336, -0.29908875, -0.44179818, - 1.120866, -0.29072273, 1.1877491, -0.7472818, -2.2615783, 0.79156375, - -1.5499592, -0.9872687, -1.0948516, 0.63584363, -1.654393, 1.034521, - -1.4831948, -1.924703, -0.98890465, -1.8909154, 0.053508386, -1.4738061, - -2.2774444, 1.5280937, 0.745538, -0.3337357, -1.9928938, 1.1171157, - -0.8423368, -0.5715753, -0.49009025, -0.16151285, 2.0667, -0.026680097, - -0.5416554, -0.77369666, 0.33169222, -0.39018413, 0.93086976, - -1.4282337, -1.4134938, -2.0723734, -1.9267496, 0.06537112, -1.7223105, - -1.5974771, 0.19376664, -0.27087227, 0.41546613, 0.52859575, - -0.48070934, -0.1395588, -1.7966746, 0.20961809, -0.4702138, -3.9552727, - -0.74243546, 0.61135834, 1.4706874, 0.10674046, 0.26878092, -0.56271225, - -1.1258066, -0.59098494, -0.56196964, 0.48922983, -0.15818995, - 0.085851535, 1.164618, -0.6618468, -0.18660241, -0.31609103, 0.26975197, - 0.71907014, -1.2527599, -1.4349562, -2.050908, -0.256602, -1.4064233, - 1.2218332, 0.12128481, -0.9566503, -0.42962298, 0.9495033, 1.0907491, - 0.27765858, -1.6089226, -1.0581608, -0.24279231, 1.1244174, -0.57128596, - 1.3249732, -1.2111069, -1.0921279, -0.79757327, -0.5984162, -1.7058737, - 0.4428143, -0.005747687, -2.4036477, 1.6120902, -0.8275195, -2.2648938, - -0.7307667, -0.9157201, -1.0053911, -0.79366505, -0.50524545, - -0.6848262, -1.8722229, 0.37619254, -1.2999009, -1.9336969, 1.2110921, - 0.08899063, -1.5677367, -0.3884172, -0.8610121, -2.5513327, -0.6391056, - 1.9056288, -0.713753, -1.2081721, -0.31775331, -0.737007, -0.25935367, - 0.7848213, -1.4358087, -0.75758797, 0.5512272, 1.1023172, -1.365665, - -1.0568609, -1.1008713, -0.19515361, -0.56256807, -1.8603194, - -0.3034159, -0.83175164, -0.7066641, -0.97887087, -0.7174309, - -0.6705172, -1.9155381, -1.0493355, -1.0288533, -0.86304927, 0.13287845, - 1.314007, -2.5544617, -1.546095, -0.97850233, -1.0174639, 0.9274928, - -1.8894281, -0.484573, -1.4952615, 0.34537414, -2.226713, -0.8524118, - -1.5255505, -0.87389034, -0.31288356, -1.4788488, 0.18000835, - -0.2306481, -1.3350422, -1.80212, 0.079550184, 1.9659609, -0.8395561, - -1.0365762, 1.2490952, -2.2633066, -2.1718574, 0.059038945, -1.184064, - 0.16721529, -0.7096281, -0.30572027, -1.6623477, 0.663543, -0.6902222, - -0.03359972, 0.09120916, 0.1480521, -2.573684, -0.26819792, 0.13513163, - -1.1213697, 0.9357233, 0.8790144, 2.1226988, -1.8860637, -1.587508, - 0.5708331, 0.3246454, -1.8646314, -1.6086553, 1.1908473, 0.10344599, - -0.48839146, -0.24443288, 0.24893901, -0.370431, 0.4303325, -1.7630558, - -0.040175457, -0.7452504, -0.2777391, -1.5757798, -0.661353, - -0.31420487, 0.63160074, -1.0837069, 1.1296042, -0.7068413, -1.34638, - -1.4241252, -0.45755494, -0.7498167, 1.2658935, -1.4334571, 0.24108045, - -1.2486598, -0.2831505, -0.5022603, -0.30580446, -1.0983061, - -0.61355114, -0.13380489, 0.036852162, -0.4549809, 1.4583666, - -0.6664736, -0.8632864, -1.1106129, -0.18190384, 1.1977044, 2.0912979, - -0.43098867, 0.26024595, -0.6766633, -0.9608218, -0.7915753, -0.4926436, - -0.9306956, -0.9722705, -0.05212973, -1.0261762, -0.04694801, - -1.3449402, -0.28857762, -0.20942287, -0.31457055, -2.7900922, - -1.7303739, 0.86664367, -0.9813347, -1.3708925, -1.4635707, 2.1647, - -0.42896092, -0.92584693, -1.6170849, 0.6837689, -0.4390816, 0.09861037, - -1.2291453, -0.98428684, 1.6995299, -0.04009894, 0.5022016, -2.250042, - -0.49179465, -0.23043826, 1.1473107, 0.06876625, -0.9566551, 0.9849535, - -2.0342588, -2.1422331, -1.5121235, 0.7060118, 0.46777552, -1.6606057, - -0.035086922, -1.3143582, -0.7258918, 0.53845114, -0.17200848, - 1.8030111, 0.35561827, -1.4572921, -2.4803498, 1.8591666, -1.6008564, - -1.128008, -1.8723325, -1.0680839, -0.75240654, 0.3129906, -1.3816724, - -1.7502785, -0.2849864, 0.55690414, -1.7614609, -0.88783544, -1.4165816, - 0.0968875, 0.34020308, 0.726832, -0.38254553, 0.46275505, -0.03721038, - -1.7762451, -0.88180023, 0.00911095, -0.08803902, -0.014647427, - -0.78744876, -0.84929585, 0.36406794, 0.08580811, -0.8894817, - -0.8518088, -1.057799, -0.8440873, 0.25599176, -1.9980894, -0.7268163, - -1.2365336, 1.3106343, -0.09263501, 0.18103977, -0.0592217, 1.4174709, - 1.6293347, 0.025211811, 0.5286979, 0.08676487, -0.17942399, 0.3300321, - -2.2220995, -1.0073003, -0.9314669, 0.44846594, -0.57078654, 0.1594001, - 0.0577775 - ], - "reducedFeatures": [ - -0.026764484, -0.086900175, -0.066189185, -0.012472502, -0.04099833, - -0.04429235, -0.041979987, 0.020842085, 0.0021797824, 0.016292619, - -0.025141686, 0.022126826, -0.020168489, -0.02047885, -0.037722617, - -0.021001486, -0.0054335403, 0.007489917, -0.003301525, 0.045904897, - -0.055827644, -0.031220822, 0.010591931, -0.0042001368, 0.029819228, - -0.025793793, 0.021651708, 0.04324952, -0.04324933, -0.029239802, - -0.021463897, 0.007702016, -0.044152856, -0.020761441, 0.013002289, - -0.034690276, 0.018386377, 0.031021433, -0.018542387, -0.03583594, - -0.0125268735, -0.04724127, -0.0077430815, 0.061880797, -0.04584984, - -0.0076898597, 0.03684149, 0.04094021, -0.011837504, -0.023556558, - 0.007391707, 0.018754559, -0.006079501, 0.020794803, -0.026246509, - -0.044673428, -0.018193942, -0.020546226, -0.031594202, -0.019426256, - 0.0019202408, -0.013093182, -0.006288964, 0.009637192, 0.03465251, - -0.05182768, -0.022850838, -0.031595156, -0.0079951165, -0.01983939, - 0.0017450424, -0.016108226, -0.025906896, 0.016006159, 5.637668e-5, - 0.0016149667, -0.030181024, -0.053548407, 0.0037793636, -0.027531756, - 0.037677724, 0.02265239, -0.0028719038, -0.034991164, -0.0083490275, - -0.009526231, -0.017240651, -0.026997346, 0.032174338, -0.02398863, - -0.028182764, 0.007691527, -0.01228414, 0.0077456776, 0.055993654, - -0.03465106, -0.056235664, -0.010166784, -0.02267821, -0.001801095, - -0.02469776, 0.053469535, 0.03779834, -0.022275412, -0.01695466, - 0.022629352, 0.0033905657, 0.0032328952, 0.039716188, -0.075793415, - -0.009569274, -0.004212801, -0.012910819, -0.018277306, -0.04226243, - 0.006640398, -0.017041724, -0.10211675, -0.030768694, -0.03600284, - 0.00022736566, 0.05562448, 0.014048732, -0.014825064, -0.0535649, - -0.01830008, 0.031383716, -0.01863798, -0.004945812, -0.019301403, - -0.02685335, -0.029811436, 0.0009170567, -0.0076275975, -0.017925749, - -0.0046637272, -0.009175958, -0.047170192, -0.03728615, 0.0057458514, - -0.057015248, -0.043064956, 0.011365454, -0.019228732, -0.049389746, - -0.032721717, -0.030860292, 0.010933992, -0.05481392, -0.01748658, - -0.028337883, 0.006170033, -0.03052417, -0.020177534, 0.036939744, - 0.0052944324, -0.025689267, -0.00065168936, -0.03953822, -0.015262036, - -0.035034444, 0.0124006, -0.011336815, 0.018983832, -0.02171274, - -0.031959657, 0.0031337978, -0.020083057, -0.011975352, 0.03701125, - -0.0347847, -0.04394102, -0.021469668, -0.008039842, -0.012160606, - 0.008529158, -0.0042376467, -0.0056302627, 0.030977003, -0.091106184, - -0.012298607, 0.014702652, -0.014787648, 0.0077424147, -0.029188147, - -0.054593556, -0.009761207, -0.0327223, -0.039391037, -0.019651331, - 0.024931958, 0.023447542, -0.026922831, -0.036684286, -0.02002399, - -0.009574923, 0.048536286, 0.06588122, 0.020466682, -0.005566742, - -0.027842429, -0.011989637, -0.045828998, -0.020854488, -0.015793685, - -0.015449171, -0.031177422, -0.00648369, -0.0066290265, 0.006803774, - 0.034264687, -0.020616716, -0.032361574, -0.032034405, -0.0042343657, - -0.03720262, 0.04380921, -0.0019023807, -0.030072352, 0.024420317, - -0.041533265, -0.00838387, 0.008124474, -0.047217485, 0.033226013, - -0.041809887, -0.051825225, 0.019894024, -0.006597402, -0.037114628, - 0.030634701, -0.043671, -0.0071107545, -0.019249856, -0.019748224, - -0.015485704, -0.011692954, 0.010797405, -0.030614167, 0.01416105, - 0.009912189, -0.0052970955, -0.052702945, -0.016166106, 0.0072258706, - 0.02531451, -0.022476729, -0.019598965, 0.011407475, -0.028598623, - -0.04252423, -0.004574329, -0.0016822999, -0.0099182725, -0.04782124, - -0.044549063, -0.018380128, 0.02123837, -0.020344006, 0.011805659, - -0.057611786, -0.013150975, -0.00051833165, -0.005591531, -0.02571862, - 0.0041088313, -0.024141638, -0.019117614, -0.019239925, 0.060570847, - 0.031344596, -0.050129697, -0.0036632065, -0.04823051, -0.04270912, - 0.023302512, -0.03613426, -0.053905763, -0.011642732, -0.061255377, - 0.012738023, -0.023453845, -0.0059640347, -0.04102966, 0.001348027, - -0.0039875065, -0.0055210264, -0.04950686, -0.029814448, 0.017933318, - -3.4841934e-5, 0.025628481, 0.005195333, 0.0025967513, -0.045762908, - -0.00080968864, -0.0058201584, -0.007001056, 0.041947488, -0.0064444784, - 0.037875332, -0.048288625, -0.050426245, -0.0011455371, -0.060175627, - -0.04153331, 0.0065218196, -0.006339868, -0.033321813, 0.02557963, - 0.060829062, -0.017347896, -0.0049168086, -0.0006773075, 0.031343695, - -0.007948611, -0.012204686, -0.0032489598, 0.0045937006, 0.015511881, - -0.018909035, 0.00119684, -0.037195694, 0.036762588, -0.026897091, - -0.094104245, -0.007902979, -0.034379773, -0.0020250229, -0.04423807, - 0.0010616604, -0.030105194, -0.032721348, -0.0070340293, -0.034055825, - -0.0025609587, 0.030187704, 0.041635737, -0.019681424, -0.04702054, - 0.0238097, -0.04192558, -0.043910842, 0.009151981, -0.026178598, - -0.015389449, 0.029042516, -0.056471944, 0.0021889682, -0.032190427, - -0.03991417, 0.027502418, 0.046243507, -0.009099823, 0.017533109, - -0.019843351, -0.03675672, 0.03062087, -0.016255418, -0.026598709, - -0.029845985, 0.039594874, 0.0019892221, -0.0357292, -0.03543011, - 0.008471928, -0.023835838, -0.0258685, -0.03987522, -0.04451281, - -2.5472822e-5, 0.04071878, -0.024493076, 0.0010013991, 0.04059668, - 0.0036093192, -0.05049306, -0.042966712, -0.023725502, 0.0033784506, - -0.013654459, -0.029582825, 0.04312762, -0.045311626, 0.02873599, - 0.036197603, 0.014158589, -0.011018273, 0.028984115, 0.004787653, - -0.0070040855, -0.02924031, -0.009444316, -0.015721222, -0.07235423, - -0.01881914, -0.03488948, -0.01710328, -0.01040081, -0.010049613, - -0.029057626, -0.028120035, -0.009060939, -0.026404124, -0.05249865, - -0.025096124, 0.011378222, -0.019555267, -0.06563103, -0.024391802, - 0.024589904, -0.0011456866, -0.008172915, 0.0034704187, -0.011868919, - -0.0021386086, -0.008156027, -0.030384462, 0.0044057085, -0.021039553, - -0.0118711535, -0.009095555, -8.577656e-5, 0.0062237456, -0.04325005, - -0.033782054, -0.06210436, 0.002888461, 0.011369092, 0.012651612, - 0.00047884416, 0.014228275, -0.011136816, -0.0073281247, 0.016622141, - -0.01305229, -0.023601525, 0.0034704653, -0.016713852, -0.020681353, - -0.06597571, -0.031121394, -0.026549734, -0.0035273887, -0.05257156, - 0.06539545, -0.010986206, -0.028348098, 0.015741859, 0.011406695, - -0.036199085, -0.054583173, -0.014733897, -0.021048307, -0.0496721, - -0.05316676, 0.002059064, 0.010006049, -0.04388861, 0.015133968, - -0.049684756, -0.06227504, -0.027632704, -0.00715229, -0.032871287, - 0.02769523, -0.0043597557, -0.040469475, -0.01588586, -0.010785612, - -0.04443509, -0.053726595, -0.00815503, -0.015288228, -0.019833542, - -0.029376948, -0.018479716, 0.018468054, -0.04553189, 0.03624076, - -0.05062417, -0.010812763, -0.016368117, 0.022472246, -0.0066076554, - -0.038552877, -0.01214944, 0.021795783, 0.007823148, -0.027237117, - -0.06479692, -0.019655442, -0.04070087, 0.031656608, -0.03705043, - -0.01346224, 0.018505588, -0.01128029, -0.030269194, -0.017919462, - -0.0041621025, -0.05884206, -0.026498288, -0.029904835, 0.023558917, - -0.009418428, 0.02694608, -0.011336708, -0.050092172, 0.041767087, - -0.02223983, -0.010781918, -0.018160295, -0.021945775, -0.08260823, - 0.02520048, 0.011912718, -0.047400616, -0.040763587, 0.005148524, - 0.048657008, -0.02307742, 0.03731305, -0.00060037005, -0.015655287, - 0.04155672, -0.0019095892, -0.053258266, 0.007432475, -0.028737882, - 0.003210961, 0.005977283, -0.016401542, -0.0027232517, 0.0008349715, - -0.010165185, -0.07287571, -0.07201078, -0.037298106, -0.038886115, - 0.013737227, 0.05708917, -0.02471379, 0.0024792203, -0.013289218, - 0.007029325, 0.011041514, 0.037371688, -0.015388814, -0.02023117, - 0.0012542877, -0.012531689, -0.011350717, 0.011026643, -0.016828278, - 0.009314022, -0.004518245, -0.033849716, -0.01178829, -0.084397495, - 0.016640123, -0.017023759, 0.0028493365, -0.029315522, -0.0014599574, - -0.012104411, 0.01779769, 0.0046128, -0.06280268, -0.03588444, - -0.0138213355, -0.06271232, -0.03328643, 0.002288159, -0.0441687, - -0.047283776, 0.005588104, -0.011723348, -0.012610302, -0.011767244, - -0.0077597876, -0.009071993, 0.009027263, 0.002320493, -0.105332606, - -0.029784713, -0.005716922, 0.004907217, 0.016112171, -0.01957993, - -0.023254387, -0.0018819975, 0.038268734, 0.010602801, 0.011454485, - 0.0031851951, -0.011457131, 0.017270004, -0.050482642, 0.012405112, - -0.055742238, 0.036425613, -0.0073752897, -0.035386693, 0.0013306639, - -0.041495644, -0.07846249, -0.035526004, 0.001785738, -0.017377205, - -0.032714594, -0.0016969885, -0.013836208, -0.028587198, -0.040079355, - -0.011893298, 0.045704424, -0.029757073, -0.014353133, 0.010871322, - -0.041903105, 0.0051077907, -0.0003075244, 0.004122779, -0.031313404, - -0.024903825, 0.00041113506, 0.0142148435, 0.020727485, 0.0051777903, - -0.030858833, -0.009064682, -0.02914988, -0.015409431, -0.04778018, - -0.018880308, -0.034429204, -0.021310737, -0.0071527, -0.035123494, - -0.048982866, 0.038680866, -0.04806684, -0.059523787, -0.023890281, - 0.06168142, -0.04173129, 0.0030958026, -0.060221132, -0.026970366, - 0.03443146, -0.03448206, -0.026718058, -0.03489853, -0.008474443, - 0.026081655, -0.015597899, 0.009379592, -0.0070564672, 0.01072874, - 0.00939665, -0.035560295, -0.06837469, -0.04097083, 0.008316911, - -0.03985549, 0.037827622, -0.019894361, 0.015883144, 0.062059343, - 0.008699666, 0.041720267, -0.0589767, 0.0047271694, -0.018084027, - -0.010176086, -0.035250876, -0.015375643, 0.0014222455, 0.008545916, - 0.0006443063, -0.007277542, -0.011168617, -0.02697337, 0.01185781, - -0.0054171486, -0.04885285, 0.001901786, -0.037393965, -0.06685081, - -0.0016546039, 0.034657583, -0.018831963, -0.03664507, -0.06000638, - 0.0041559236, 0.0056458125, -0.0095529845, 0.026444979, -0.0287886, - -0.0137696285, 0.018370945, -0.0039931946, 0.006218339, 0.007240297, - 0.010278967, -0.004009948, 0.00501249, -0.008612282, 0.013728914, - -0.030796962, 0.021976318, -0.05119457, -0.020296387, 0.0014957588, - -0.011732381, -0.020832768, 0.029295813, -0.085091695, 0.010440646, - 0.03544819, 0.0031072176, -0.005292534, 0.009476884, 0.03718147, - 0.03452688, -0.017969137, 0.03091501, -0.0502575, 0.0043693297, - -0.01766702, -0.014060785, 0.0139088435, 0.011354643, 0.056413263, - -0.052845698, 0.023562318, -0.013324804, 0.0074637164, -0.023954839, - -0.030148648, -0.025066653, -0.031193862, -0.039768647, -0.011126722, - 0.031192517, -0.023801412, -0.022989156, -0.052191403, -0.04723869, - 0.029394217, -0.02712486, 0.024431355, -0.024197834, 0.028668676, - 0.026063954, -0.044309907, 0.013914307, -0.015760832, -0.05519017, - -0.05523621, -0.048927702, -0.025856934, 0.0057284525, -0.037937276, - 0.017945785, -0.023246938, -0.027446294, -0.016141443, 0.0065529663, - -0.051164363, -0.054988604, 0.015462119, -0.04358569, -0.029786106, - -0.025147589, -0.06824249, -0.038195387, -0.020333536, 0.056587208, - -0.054081105, -0.032771464, 0.03246111, -0.03920938, -0.009205804, - -0.030702656, -0.068591736, 0.002867202, -0.014850867, -0.035968684, - -0.050298795, 0.014045629, -0.029792778, -0.062308893, 0.018829169, - -0.07299383, -0.052828442, -0.12230579, -0.01919894, -0.01282464, - 0.068176605, 0.007221835, 0.007115095, -0.011662771, 0.0100437, - 0.022799656, -0.013170869, -0.023282502, -0.06155674, 0.001644493, - -0.0034838228, -0.034233727, -0.036752377, -0.060539618, 0.025047917, - -0.01822991, -0.008897268, 0.0059063444, 0.003820764, -0.00013746141, - 0.01567728, -0.012955829, 0.0110573815, -0.05274709, -0.027627684, - -0.029766463, 0.01967195, -0.042199783, -0.022047967, -0.042577527, - -0.041263215, -0.069853015, -0.03969344, 0.0058510406, 0.02091769, - -0.024145702, -0.028174993, -0.031750318, -0.008663602, -0.015796738, - -0.05887478, -0.0058072545, -0.024461456, -0.035581578, 0.014806243, - -0.032268263, 0.01731257, -0.04736011, -0.024933603, -0.039997365, - -0.006123275, -0.0029303634, -0.033132628, -0.023533113, -0.002343902, - 0.04099496, 0.024175197, -0.0068063927, -0.03173578, -0.028685639, - -0.043330472, -0.04067938, -0.07470237, 0.014905072, -0.010938934, - -0.01452824, -0.005514412, -0.060153026, -0.07849151, -0.012254134, - -0.05535731, 0.013877087, 0.018302655, -0.024437021, 0.011286243, - -0.011361299, -0.0064058406, -0.04157882, -0.023385776, -0.015967699, - -0.0332932, 0.037058525, 0.022126094, -0.013106863, -0.024497434, - -0.008866595, -0.038502567, -0.011567863, 0.0060183303, -0.011848235, - 0.008483499, 0.0008810939, -0.05991706, -0.026192967, -0.027985143, - 0.015227613, -0.05360031, -0.008062648, 0.05853088, -0.022303728, - -0.024336128, -0.045722347, -0.009517349, -0.02926759, -0.011557961, - -0.011514633, 0.0021986812, -0.02278668, 0.07293677, -0.010218245, - -0.067567, 0.00041625125, -0.048047107, -0.011647529, -0.02851407, - 0.023204919, -0.03254177, 0.02571034, 0.040315993, 0.00027841126, - -0.017973173, 0.009279993, -0.023088336, -0.0371008, -0.008722665, - -0.030562857, -0.01100679, -0.012368583, -0.05585078, 0.022665842, - -0.018444354, 0.001013355, -0.021877106, 0.012593198, -0.025890797, - 0.006785324, -0.03403203, -0.04803163, -0.00878757, -0.02552987, - -0.010749951, -0.046626218, -0.04125527, -0.010978401, -0.06458651, - -0.007899274, 0.045831144, -0.013985782, -7.901558e-5, 0.03881785, - -0.0030881555, -0.023586933, -0.031017814, -0.038360942, -0.024194164, - 0.004627755, -0.00024183259, -0.035307817, -0.040014613, -0.043823883, - -0.033421338, -0.047728222, 0.0080865575, -0.0026659244, -0.020926934, - 0.023642391, -0.057984352, 0.0026005302, 0.017745811, -0.018785737, - -0.014234016, -0.044890605, -0.016726991, 0.00481116, -0.059484266, - 0.014295175, -0.043360475, 0.009249849, 0.039755497, -0.023122778, - -0.0005621057, -0.02827256, 0.025369883, -0.0501229, -0.0033506071, - -0.007043972, 0.037734706, 0.038676973, -0.04072734, -0.023892023, - -0.03130215, -0.052216876, -0.039240383, -0.07636214, -0.022343922, - 0.010594639, -0.040230818, -0.003562098, -0.056723017, 0.02476986, - -0.031478774, -0.0071868235, -0.040630355, 0.029168352, -0.02031393, - -0.04074449, -0.042560216, -0.012687922, -0.043112047, 0.015611996, - 0.048681818, 0.015065855, 0.008343858, -0.013637681, 0.023182124, - -0.071553044, -0.010224423, -0.008689465, 0.01898638, -0.059850357, - -0.020102855, -0.0008022826, 0.0036143935, -0.006792186 + "features": [ + -0.015943697, + -0.044348877, + -0.029882602, + -0.007137047, + -0.019715136, + -0.020851104, + -0.023440272, + 0.011834498, + 0.00014994085, + 0.0053155855, + -0.012184465, + 0.006875164, + -0.0132894935, + -0.0078937905, + -0.015376577, + -0.0150563605, + -0.004528493, + 0.0041023986, + 0.0009837603, + 0.022745585, + -0.029417904, + -0.01672262, + 0.00052282476, + -0.0032217416, + 0.016982216, + -0.019716954, + 0.00995622, + 0.019880585, + -0.02441308, + -0.016549638, + -0.009703537, + 0.0026452306, + -0.023625473, + -0.009155078, + 0.0075872797, + -0.016101124, + 0.007847706, + 0.0142467525, + -0.0076571773, + -0.01868086, + -0.0059063733, + -0.025427194, + -0.006213308, + 0.032297477, + -0.020655114, + -0.007192565, + 0.014299153, + 0.015048219, + -0.009489505, + -0.01423142, + 0.0025751917, + 0.00747758, + -0.0007498828, + 0.014035929, + -0.01606068, + -0.023296367, + -0.011571547, + -0.008389141, + -0.013415146, + -0.012160437, + -0.001235764, + -0.0066429516, + -0.0023635952, + 0.0009987333, + 0.017184524, + -0.023904026, + -0.01226882, + -0.018659094, + -0.0029509938, + -0.012236129, + 0.0007304183, + -0.0037750213, + -0.01443589, + 0.0073891985, + -0.00128267, + 0.0017484672, + -0.013868304, + -0.027486542, + 0.004275714, + -0.013248728, + 0.018115966, + 0.010130606, + -0.002209975, + -0.01834732, + -0.0055164853, + -0.007437581, + -0.010629005, + -0.015284289, + 0.015344372, + -0.016084896, + -0.0132911885, + 0.0043392354, + -0.0073751207, + 0.0034222414, + 0.02146575, + -0.016820876, + -0.029845292, + -0.009113772, + -0.009512634, + -0.0037211352, + -0.016861135, + 0.026449576, + 0.0132932495, + -0.010313712, + -0.0065489123, + 0.010906695, + 0.0032044481, + -0.0005997164, + 0.023028065, + -0.039873797, + -0.0048999907, + -0.0041057486, + -0.0072698225, + -0.008753077, + -0.02050631, + 0.0047273636, + -0.0099580595, + -0.048168182, + -0.017054837, + -0.020458305, + 0.0017564964, + 0.031577956, + 0.0075706514, + -0.009610631, + -0.027707905, + -0.008326764, + 0.018833121, + -0.01380879, + -0.00064276485, + -0.010558897, + -0.011775792, + -0.012112057, + -0.0005093218, + -0.005299588, + -0.00668491, + -0.0062459, + -0.0078060427, + -0.026639877, + -0.013859151, + 0.0024007573, + -0.030490873, + -0.02557823, + 0.0007419768, + -0.010030376, + -0.023052534, + -0.01486696, + -0.016091458, + 0.0026490008, + -0.028917212, + -0.011027412, + -0.020022627, + 0.0025861019, + -0.01594938, + -0.010373061, + 0.018994411, + -0.00058467, + -0.012834354, + 0.00038039262, + -0.019272735, + -0.006925709, + -0.01772625, + 0.008641074, + -0.005090473, + 0.010071927, + -0.012117121, + -0.012456925, + -0.0016548467, + -0.014736326, + -0.009121404, + 0.01624293, + -0.021496776, + -0.020475999, + -0.011496092, + -0.0012169225, + -0.0041978504, + 0.004370616, + -0.0036439293, + -0.003662221, + 0.017399361, + -0.04222476, + -0.004333321, + 0.0027743643, + -0.0070013315, + -0.0010557242, + -0.013260871, + -0.026731357, + -0.006432367, + -0.015183701, + -0.020876627, + -0.0116649335, + 0.012924402, + 0.01178815, + -0.015927615, + -0.021233236, + -0.01194823, + -0.00646113, + 0.023868898, + 0.03244184, + 0.009140044, + -0.0033556463, + -0.013483307, + -0.006539087, + -0.02096532, + -0.013901766, + -0.004939371, + -0.0046993764, + -0.0140421, + -0.0048891315, + -0.0037015174, + -0.0032969199, + 0.016289191, + -0.013183959, + -0.018563243, + -0.020074503, + -0.0013461588, + -0.019620815, + 0.022654992, + -0.0018103477, + -0.018891081, + 0.011662029, + -0.018907838, + -0.0041538524, + 0.0022541503, + -0.021758601, + 0.014917459, + -0.022519616, + -0.026169747, + 0.010023589, + 0.0019316986, + -0.018341282, + 0.010670366, + -0.024012247, + -0.0017438402, + -0.008500835, + -0.010466885, + -0.0055141146, + -0.005338054, + 0.0020254878, + -0.01425968, + 0.0044537126, + -0.00031242397, + -0.0010877803, + -0.02519595, + -0.01438484, + 0.003681944, + 0.012765706, + -0.0095318295, + -0.0063952147, + 0.005587243, + -0.013100317, + -0.017273966, + -0.0019094428, + -0.0018788086, + -0.010167305, + -0.021388557, + -0.022857687, + -0.009915903, + 0.013665216, + -0.009051622, + 0.004633617, + -0.027848838, + -0.0050745388, + 0.0007335012, + -0.0032404913, + -0.01491288, + -0.0009995943, + -0.010085749, + -0.0109566655, + -0.007603315, + 0.03149419, + 0.014598944, + -0.023744054, + -0.00029233732, + -0.026873432, + -0.0218411, + 0.009859806, + -0.017759876, + -0.026948603, + -0.0015932283, + -0.031227453, + 0.0073665003, + -0.008990083, + -0.006403859, + -0.024321282, + 0.001186367, + -0.001549847, + -0.001271147, + -0.024698636, + -0.011871036, + 0.0074380287, + 0.0013731788, + 0.012612711, + -0.0012271015, + 0.0029354347, + -0.02429914, + -0.0016923491, + -0.001292307, + -0.0072629224, + 0.021608533, + -0.0029354123, + 0.023080764, + -0.02559639, + -0.026321337, + 0.0060961726, + -0.030218158, + -0.024226405, + 0.0018861034, + -0.0047826436, + -0.015582756, + 0.0083252555, + 0.026930729, + -0.009166581, + -0.00042776344, + 0.001103032, + 0.013713794, + -0.0035404384, + -0.0039736377, + -0.0029539445, + -0.0020240962, + 0.0097300615, + -0.008335659, + -0.0021496348, + -0.018771693, + 0.019740226, + -0.012733766, + -0.043497458, + -0.0021737174, + -0.019755717, + -0.0009357413, + -0.02250575, + 0.0026488525, + -0.014862314, + -0.020655554, + -0.00592956, + -0.016379127, + -0.0023935435, + 0.018316459, + 0.019195322, + -0.009118116, + -0.025558168, + 0.01424011, + -0.02052928, + -0.020524312, + 0.0027532086, + -0.010473312, + -0.0059417286, + 0.016179146, + -0.028543971, + 0.0008280896, + -0.01591408, + -0.017127328, + 0.010822619, + 0.020377718, + -0.0032257494, + 0.011625518, + -0.011456606, + -0.021227602, + 0.018215742, + -0.00841864, + -0.015023009, + -0.012055486, + 0.020965481, + -0.000108697444, + -0.021432089, + -0.014265141, + 0.00640301, + -0.013684695, + -0.013103888, + -0.022332074, + -0.018418364, + 0.0008438696, + 0.015187032, + -0.0106322365, + -4.7442572e-05, + 0.019511027, + 0.006943353, + -0.029028906, + -0.02297627, + -0.013277493, + -0.0015104366, + -0.0048937616, + -0.0148379905, + 0.022165062, + -0.025658859, + 0.014299318, + 0.018417856, + 0.006812504, + -0.006958104, + 0.015105313, + 0.0046969247, + -0.00020425046, + -0.013851906, + -0.004580434, + -0.0075644837, + -0.0384085, + -0.011500309, + -0.017683776, + -0.0069671655, + -0.011428145, + -0.007196218, + -0.015829438, + -0.017286692, + -0.0038184947, + -0.016851312, + -0.026524307, + -0.014466028, + 0.0038371063, + -0.006327195, + -0.031024454, + -0.011394715, + 0.013978654, + -0.0005590417, + -0.006240804, + 0.001760954, + -0.0064919894, + -0.0033703381, + -0.0033328428, + -0.01422577, + 0.002868363, + -0.012691039, + -0.007564918, + -0.0050805616, + 0.0011469194, + 0.00030959892, + -0.022528216, + -0.016394315, + -0.032117795, + 0.00038012982, + 0.005267472, + 0.009452905, + -0.0021093148, + 0.0031079703, + -0.0036359471, + -0.00083530607, + 0.008950425, + -0.0040819873, + -0.009682876, + 0.000121678044, + -0.0064504785, + -0.008916335, + -0.03138675, + -0.017146857, + -0.013654792, + -0.0046765036, + -0.029580392, + 0.032807663, + -0.0042057666, + -0.014480676, + 0.004677351, + 0.003943281, + -0.021587608, + -0.028746665, + -0.0073803, + -0.01091708, + -0.021031782, + -0.029499747, + 0.0010484864, + 0.002151781, + -0.022355465, + 0.006915835, + -0.028528243, + -0.032714263, + -0.01867379, + -0.009134797, + -0.02199919, + 0.009365674, + -0.0021017129, + -0.022331275, + -0.011118696, + -0.0032035836, + -0.020843228, + -0.026596004, + -0.0019068595, + -0.005828823, + -0.010381755, + -0.015332531, + -0.010823643, + 0.010598407, + -0.022228464, + 0.017848667, + -0.02577953, + -0.00930153, + -0.005758926, + 0.00782701, + -0.0047815964, + -0.020504382, + -0.009446071, + 0.010051786, + 0.0008416914, + -0.018993154, + -0.03334525, + -0.008506213, + -0.022784665, + 0.019321661, + -0.021987876, + -0.008814789, + 0.0077767335, + -0.007254361, + -0.010976579, + -0.01018942, + -0.0013972222, + -0.031737648, + -0.013459629, + -0.022573836, + 0.012498561, + -0.0062558292, + 0.010704626, + -0.0054307743, + -0.025862513, + 0.020758009, + -0.012364838, + -0.006051201, + -0.0075716497, + -0.011969632, + -0.04172707, + 0.011942184, + 0.0041290815, + -0.021423647, + -0.020316457, + 0.003154185, + 0.019740855, + -0.013414833, + 0.014332472, + 0.0015994539, + -0.007978129, + 0.016771827, + -0.0013978804, + -0.02796245, + 0.0047611026, + -0.013009736, + 0.00059970265, + 0.0013243749, + -0.0062411223, + -0.0011614558, + 0.00031582883, + -0.0089802705, + -0.036308795, + -0.039167695, + -0.02008388, + -0.020107806, + 0.0086118765, + 0.025235703, + -0.016287824, + 0.0023203096, + -0.004828554, + 0.0038989903, + 0.0018420564, + 0.017514134, + -0.009607929, + -0.0121548, + -0.000255034, + -0.0061832597, + -0.0058039026, + -0.00024211069, + -0.009378058, + 0.007905752, + -0.0050550196, + -0.016539222, + -0.0045424635, + -0.04035239, + 0.0056847115, + -0.012840328, + -0.0003142393, + -0.017600141, + -0.0011959135, + -0.004276947, + 0.001821369, + 0.0022237697, + -0.030687226, + -0.019966925, + -0.006323813, + -0.03221379, + -0.014390736, + 0.004402816, + -0.024821121, + -0.021280974, + -0.001879299, + -0.009677259, + -0.008263263, + -0.005603965, + -0.005158902, + -0.0073423875, + 0.0024140833, + -0.00236175, + -0.049490333, + -0.016353529, + -0.005088244, + 0.00059175, + 0.0074903234, + -0.008194417, + -0.013294825, + -0.0017863954, + 0.018510828, + 0.0044224034, + 0.0076067024, + 0.00239056, + -0.0057878057, + 0.0074182446, + -0.027067365, + 0.0062139765, + -0.029240606, + 0.013332992, + -0.0028916516, + -0.01572216, + 0.00059626537, + -0.016904587, + -0.03969949, + -0.021899924, + 0.0006067991, + -0.008475058, + -0.017843533, + -0.001020475, + -0.0045577763, + -0.020427486, + -0.021057803, + -0.0068660383, + 0.02140376, + -0.017028151, + -0.008566731, + 0.0066975183, + -0.02496116, + 0.0008293807, + -0.0022304016, + 0.003221461, + -0.0200514, + -0.010880909, + -0.0036774194, + 0.0036232457, + 0.009355081, + 0.0012065059, + -0.016543856, + -0.007173757, + -0.016503679, + -0.007976116, + -0.023471897, + -0.007617467, + -0.019310372, + -0.015218689, + -0.007373234, + -0.019756502, + -0.024172254, + 0.018380288, + -0.025003692, + -0.032817695, + -0.012809376, + 0.032297, + -0.019585585, + 0.0030784942, + -0.033937495, + -0.017390322, + 0.017307986, + -0.017957255, + -0.016066598, + -0.020325702, + -0.0016622408, + 0.011768441, + -0.00772897, + 0.0037208807, + -0.0023904853, + 0.004696344, + 0.0047067655, + -0.014363465, + -0.03454163, + -0.020485021, + 0.004975267, + -0.0211809, + 0.01759055, + -0.00948988, + 0.0095650675, + 0.029262017, + 0.00029498612, + 0.02353895, + -0.028830847, + 0.0012667307, + -0.008319403, + -0.0073652496, + -0.019578421, + -0.0075580543, + 0.0025022828, + 0.003594031, + 0.0005459354, + -0.0025966277, + -0.012270408, + -0.01009419, + 0.006230675, + -0.0010550434, + -0.024286771, + 0.00046272436, + -0.018875321, + -0.035695396, + -0.0024678938, + 0.016488267, + -0.0077543296, + -0.01670934, + -0.027434433, + 0.0020195553, + 0.0034342648, + -0.005789428, + 0.012858445, + -0.0127225425, + -0.0069805468, + 0.008897393, + -0.0016959027, + 0.0030411722, + 0.0033326189, + 0.003075023, + 0.0004937405, + 0.0024964078, + -0.005480804, + 0.008009786, + -0.01637553, + 0.008234426, + -0.026092527, + -0.010999876, + 0.00095455674, + -0.0031317833, + -0.00902176, + 0.010948854, + -0.040998675, + 0.0058289054, + 0.015980601, + 0.0015250859, + -0.0026342128, + 0.0028505516, + 0.014027334, + 0.016153084, + -0.013835752, + 0.016029513, + -0.020442411, + -0.0025663741, + -0.0112045035, + -0.009197114, + 0.002259275, + 0.009337124, + 0.026216598, + -0.026322251, + 0.009945854, + -0.009156453, + 0.004855109, + -0.011718667, + -0.015236738, + -0.012314424, + -0.015996687, + -0.021031585, + -0.005152593, + 0.012652317, + -0.013995619, + -0.012854084, + -0.021585735, + -0.022641454, + 0.01444916, + -0.013195108, + 0.015954962, + -0.01226418, + 0.012032506, + 0.012122061, + -0.019567413, + 0.005279981, + -0.006992434, + -0.03365193, + -0.028545326, + -0.026996948, + -0.01690162, + 0.0030700893, + -0.016492901, + 0.0095543405, + -0.012187835, + -0.013013691, + -0.007757214, + 0.0030227301, + -0.025358655, + -0.027489979, + 0.006991544, + -0.015210565, + -0.012751082, + -0.0069849263, + -0.034163944, + -0.019350808, + -0.011761108, + 0.028727379, + -0.024339182, + -0.016886171, + 0.01531509, + -0.015644168, + -0.00021986547, + -0.015052393, + -0.032385003, + -0.00049306813, + -0.007479161, + -0.014370333, + -0.025224535, + 0.009103319, + -0.013028542, + -0.027867211, + 0.00999423, + -0.038140237, + -0.026821146, + -0.057629067, + -0.011447949, + -0.0070463987, + 0.028672503, + 0.0019943004, + 0.009661811, + -0.009833148, + 0.004551968, + 0.012669163, + -0.005741672, + -0.0038161715, + -0.03268261, + -0.002824428, + 2.7251763e-05, + -0.02351679, + -0.017167611, + -0.029346308, + 0.014084085, + -0.00923542, + -0.0016455816, + 0.0023256897, + 0.004387105, + -0.004541256, + 0.008257721, + -0.0075329747, + 0.0040516607, + -0.029542482, + -0.011558095, + -0.018222755, + 0.008683844, + -0.017572135, + -0.006615749, + -0.023649614, + -0.020481817, + -0.036890518, + -0.021314306, + 0.0032406698, + 0.0066023213, + -0.013070782, + -0.012632481, + -0.015923051, + -0.00540338, + -0.00465065, + -0.030615717, + -0.0005546621, + -0.011030338, + -0.021442732, + 0.0028781737, + -0.017363084, + 0.0067667877, + -0.021528691, + -0.011546464, + -0.020871315, + -0.001652725, + -0.0018273554, + -0.014646681, + -0.016839502, + -0.0031370672, + 0.021463813, + 0.009448083, + -0.0064989477, + -0.018863581, + -0.016667487, + -0.02014058, + -0.019398367, + -0.03849044, + 0.007927269, + -0.0025715507, + -0.0059395833, + -0.0045012687, + -0.031077528, + -0.036090977, + -0.0075174165, + -0.025979036, + 3.6263962e-05, + 0.009611177, + -0.017643219, + 0.0041998103, + -0.0033048717, + -0.0067807906, + -0.019914068, + -0.015710432, + -0.006990791, + -0.016069522, + 0.016890828, + 0.010814817, + -0.0096693905, + -0.011159449, + -0.0046587023, + -0.017188217, + -0.00592014, + 0.00070324866, + -0.008090443, + 0.006309849, + -0.0011410499, + -0.027709965, + -0.014720705, + -0.01414464, + 0.005202662, + -0.02613548, + -0.0016610137, + 0.028260374, + -0.011895548, + -0.011989557, + -0.022191724, + -0.009417762, + -0.013272954, + -0.005389316, + -0.005807125, + -7.73927e-05, + -0.008977889, + 0.035418913, + 0.0009883731, + -0.031875048, + -0.0010566489, + -0.025948416, + -0.005158109, + -0.016280506, + 0.01240405, + -0.022511745, + 0.017232234, + 0.019281192, + 0.0014509759, + -0.011496796, + 0.0018065304, + -0.0106295, + -0.019109646, + -0.006516817, + -0.017426271, + -0.0069450047, + -0.007947538, + -0.028355565, + 0.010087395, + -0.010251992, + -0.0013208928, + -0.009430036, + 0.007259358, + -0.013462405, + 0.00067670504, + -0.022826418, + -0.028285516, + -0.0053388323, + -0.01476487, + -0.0077102156, + -0.024511488, + -0.022588575, + -0.007977466, + -0.02841505, + -0.0069319215, + 0.023811707, + -0.0049857823, + 0.0005628904, + 0.01874801, + -0.0006510782, + -0.012256766, + -0.016776813, + -0.015754385, + -0.009603813, + 0.008578841, + 0.00026448414, + -0.015797576, + -0.01847741, + -0.017947838, + -0.013051071, + -0.023212695, + 0.0006865691, + 0.0009965048, + -0.008154977, + 0.013668082, + -0.02643297, + 0.0058639864, + 0.004098983, + -0.0056313677, + -0.0056387563, + -0.020194503, + -0.010505278, + 0.0038116921, + -0.031685248, + 0.0046167066, + -0.020398911, + 0.008705189, + 0.016761886, + -0.011777252, + -0.0006209466, + -0.014482108, + 0.00872343, + -0.02625638, + -0.0034775035, + -0.0076748715, + 0.018894406, + 0.020922618, + -0.01898471, + -0.011071292, + -0.015583774, + -0.02665067, + -0.018932248, + -0.039461628, + -0.010835319, + 0.0047970694, + -0.021465542, + -0.007573005, + -0.030662898, + 0.009843993, + -0.012698402, + -0.0027657368, + -0.022255868, + 0.016078258, + -0.012435455, + -0.023207316, + -0.022441337, + -0.009527462, + -0.02089146, + 0.00834333, + 0.02386501, + 0.00661807, + 0.0022454797, + -0.0052586906, + 0.008046405, + -0.033459704, + -0.0071461336, + -0.0020123445, + 0.011453325, + -0.027169649, + -0.008532979, + -0.00091639976, + 0.0016169904, + -0.0016597821, + -0.004648099, + -0.004883006, + -0.02425401, + -0.012850977, + -0.023219137, + -0.015493268, + 0.026617091, + -0.005877943, + 0.01929373, + 0.024890967, + -0.0051909587, + -0.02113578, + -0.0061634737, + -0.014239355, + -0.00093700254, + -0.0064235027, + 0.0060484335, + -0.017092561, + -0.017019426, + -0.007811844, + -0.024392975, + -0.016753674, + 0.026831176, + 0.003247355, + -0.006756673, + 0.0023344748, + -0.021513823, + -0.032781586, + -0.0046157995, + -0.010503914, + 0.01200262, + -0.016484143, + -0.013088594, + -0.002599335, + 0.00017834673, + 0.00503033, + 0.01058981, + -0.028597599, + -0.015735699, + -0.022213671, + -0.0056234123, + 0.0044841976, + 0.03134533, + -0.020193836, + -0.030169131, + 0.017303452, + -0.01962984, + -0.03985672, + -0.00043841964, + 0.0040169633, + 0.008352838, + -0.02786199, + -0.013066565, + -0.014256358, + -0.02624073, + 0.023705242, + 0.0055527193, + -0.009270685, + -0.020101883, + 0.0017692319, + 0.0019295575, + -0.028427426, + -0.015172275, + -0.00923785, + 0.00048819697, + 0.004660914, + 0.001288443, + -0.0032119206, + 0.003980256, + -0.017624933, + 0.00036985253, + 0.01254319, + -0.028427133, + -0.021154605, + -0.010540755, + 0.0049601113, + -0.022165533, + -0.012745526, + -0.030039199, + -0.028486066, + -0.00031454756, + -0.011719481, + -0.016110359, + -0.002323131, + -0.023413312, + 0.017102517, + -0.0056906976, + -0.012800825, + 0.013108005, + 0.00021932705, + 0.009310609, + -0.0045572934, + 0.022254603, + -0.0113597, + 0.01638394, + 0.01475217, + 0.005482108, + 0.0067638955, + 0.020274198, + 0.001067841, + -0.009608896, + 0.020876415, + -0.0014658759, + 0.002793865, + -0.010583645, + -0.0019107804, + -0.011175652, + -0.02871277, + 0.013989788, + -0.017315645, + -0.020610722, + 0.0035758163, + -0.0060681803, + -0.004146727, + 0.0022009904, + -0.013727587, + -0.020582719, + 0.0055895387, + -0.0013860598, + -0.0059484807, + -0.04921595, + -0.021122994, + 0.017000439, + -0.012970483, + -0.012634405, + -0.008140257, + 0.00061015546, + -0.012421351, + 0.003591939, + -0.0048132907, + -0.013178794, + -0.039729986, + -0.031291418, + 0.008997188, + -0.014005935, + -0.014416327, + -0.0072657736, + -0.024596972, + -0.016694834, + -0.01789875, + 0.015037014, + -0.0016531285, + -0.006574353, + -0.016055949, + -0.023086382, + 0.0033871196, + -0.026172198, + -0.0032091413, + -0.038500432, + 0.014234904, + -0.0052388213, + -0.0076862955, + -0.021463467, + 0.008846856, + -0.008113365, + -0.013492846, + 0.015522809, + -0.00945948, + -0.00954179, + -0.027466191, + 0.01891805, + 0.011670611, + 0.014637636, + 0.01793827, + -0.012617215, + -0.010710479, + 0.011930834, + -0.010099665, + -0.0015022472, + -0.010179531, + 0.0068871668, + -0.0059280316, + -0.01929365, + -0.006055125, + -0.033577323, + -0.017300045, + -0.034619648, + -0.013052562, + -0.011359521, + -0.0018444862, + 0.007372751, + -0.022255596, + 0.018978855, + -0.0036138159, + -0.008170962, + -0.0006344296, + -0.019793835, + -0.013967628, + -0.010605763, + -0.013432089, + -0.00021612435, + -0.019620992, + 0.015151699, + 0.009859045, + -0.011411982, + -0.017431842, + 0.0056455927, + -0.009013326, + -0.0008763901, + 0.004237692, + 0.005191755, + -0.025257966, + -0.010044882, + -0.015428984, + -0.0044476143, + 0.01541284, + -0.023495004, + -0.021490531, + 0.0035714584, + 0.0039585996, + -0.0010352867, + -0.024953075, + -0.008143075, + 0.005963658, + -0.020337885, + 0.0046472307, + -0.014028886, + 0.010474834, + -0.030281466, + -0.031263698, + -0.009770366, + 0.020169193, + 0.0006454349, + -0.0027958523, + -0.010670826, + -0.020914294, + -0.009340346, + -0.01557665, + 0.008718343, + 0.034571417, + 0.012725643, + -0.025432274, + -0.02686291, + 0.006355007, + 0.0004626345, + 0.019733131, + -0.020676866, + -0.006819575, + 0.017366763, + -0.00022214834, + 0.009299788, + -0.010166753, + -0.019330336, + -0.0064526, + -0.019395351, + 0.0028936714, + 0.005650103, + -0.009593103, + -0.003215491, + 0.0043437993, + 0.0023479403, + -0.003967988, + -0.0067317993, + -0.0034004683, + -0.009607029, + 0.0022855292, + 0.005094833, + -0.016316187, + -0.013609433, + -0.0035826147, + 0.008338451, + -0.018421954, + -0.004630558, + -0.01489412, + 0.0051440196, + -0.0034738681, + -0.003860486, + 0.005348123, + -0.015425712, + -0.015881866, + -0.013884126, + -0.0065102247, + -0.012827933, + -0.0016028527, + -0.014215834, + -7.9335834e-05, + 0.010536212, + -0.019849924, + 5.2776886e-05, + -0.00095467136, + -0.0010749825, + -0.008480116, + -0.012036561, + 0.0023368227, + -0.010139694, + -0.005050555, + 0.026563607, + -0.002361976, + -0.009160873, + -0.014371304, + -0.0033108338, + 0.0063303686, + -0.017914884, + 0.006543158, + 0.0017257247, + -0.033334482, + -0.002948373, + -0.0039382093, + -0.016855665, + 0.0041825166, + 0.015054985, + 0.010866207, + 0.0014749047, + -0.0028956889, + -0.0056367563, + 0.0051582716, + 0.005330627, + -0.018724628, + -0.033532545, + -0.032840572, + 0.005652998, + -0.003687806, + -0.0012387211, + -0.020241894, + -0.008467953, + -0.032901607, + -0.017149778, + -0.008937834, + -0.029118942, + -0.015110761, + -0.01345203, + -0.01608723, + -0.0020909759, + -0.0027557474, + -0.0093736695, + -0.010462514, + -0.011286548, + -0.00836635, + -0.011703781, + 0.01373569, + -0.012443296, + -0.005136969, + -0.013032963, + -0.024106793, + -0.0237718, + -0.0047323694, + -0.006519175, + -0.018065928, + -0.010384965, + -0.03136864, + 0.0043411613, + 0.007935428, + 0.0050808326, + -0.017608399, + 0.0023747177, + 0.0075642564, + 4.463161e-05, + -0.007614501, + -0.019047944, + -0.002852989, + -0.00055031606, + -0.025255514, + -0.004064697, + 0.00019639127, + -0.0050690873, + 0.020596558, + 0.0035348195, + 0.0067066317, + 0.018704701, + -0.013907893, + -0.0023268377, + -0.0035919796, + -0.0022200649, + -0.0009666645, + 0.00024283594, + -0.029689102, + -0.0028989515, + -0.020654839, + -0.010130888, + 0.0037079537, + -0.026599506, + -0.019819815, + -0.024296878, + 0.0041267453, + 0.014652813, + 0.02315633, + -0.001641624, + -0.013911082, + -0.0040276526, + -0.011642658, + -0.021750163, + 0.0041087857, + -0.01636877, + -0.0068817516, + -0.01813319, + -0.0064810077, + -0.029915176, + -0.00030229654, + 0.002224101, + -0.03117925, + -0.025543312, + 0.020991473, + 0.02102439, + -0.012372502, + 0.0070697917, + 0.003809499, + -0.0107619725, + -0.004776398, + -0.0045941323, + -0.023898628, + -0.004121284, + 0.004521143, + 0.00021812558, + -0.032318365, + -0.024471873, + -0.028151443, + -0.003619098, + -0.008990975, + -0.009413341, + -0.013131234, + 0.013823462, + -0.01058325, + -0.007948704, + 0.004218883, + -0.005754559, + -0.012542568, + -0.01655698, + -0.013300677, + 0.005285217, + -0.018996125, + -0.007882236, + -0.016713634, + -0.020508371, + -0.011041816, + -0.0075318627, + -0.01029927, + 0.007168661, + -0.018124033, + -0.008522106, + -0.011154421, + -0.0036342551, + 0.0022194637, + -0.027144397, + -0.013450604, + -0.016032832, + -0.0014542774, + -0.021113288, + -0.016864348, + -0.0019917507, + -0.01040518, + -0.014112392, + 0.0050348747, + -0.002437684, + -0.019613275, + -0.0018203999, + -0.017446492, + -0.012489838, + 0.0033981476, + 0.01615107, + 0.010468161, + -0.00028325812, + -0.022104993, + -0.0040588784, + -0.012432254, + 0.014618971, + 0.0033673777, + -0.012316033, + -0.0136174, + -0.010289027, + 0.0035464938, + 0.00784679, + 0.00388923, + -0.025822708, + -0.021238154, + -0.008096471, + -0.011464762, + -0.009596503, + -0.010411641, + -0.014651847, + -0.006572461, + 0.0011289417, + -0.012954351, + -0.014380822, + 0.0168611, + -0.01825571, + -0.022844968, + 0.002417576, + -0.019122943, + -0.021515926, + -0.002953813, + -0.008329954, + -0.0074233576, + 0.014594556, + -0.00077982375, + 0.0033802066, + -0.023815311, + 0.005674326, + -0.010797231, + -0.012629496, + -0.013256624, + -0.0077084606, + 0.019586353, + -0.011228258, + 0.0063851825, + 0.018724669, + -0.019715449, + -0.02809828, + 0.0038636934, + -0.0079586385, + -0.018049218, + -0.001602665, + -0.02296712, + -0.01856764, + -0.01605667, + 0.011319532, + -0.019896317, + -0.015311899, + 0.009896504, + 0.010111917, + -0.028507702, + 0.008843809, + -0.031534817, + 0.013449624, + 0.013175354, + 0.0044932766, + -0.0043161144, + -0.025739415, + -0.0006001321, + -0.016313968, + -0.022175113, + 0.0065147826, + -0.00376458, + -0.024556726, + 0.026088053, + -0.018001957, + 0.024084248, + -0.006307286, + -0.01779977, + 0.0060523385, + 0.014852413, + 0.016677063, + -0.002167, + -0.0058894684, + -0.001370433, + -0.033887345, + -0.008256717, + -0.0036919806, + -0.022009643, + -0.012775921, + -0.008625808, + -0.020658664, + 0.0058047185, + -0.0064921468, + 0.016161006, + 0.006829547, + 0.023045346, + -0.0007241451, + -0.0055341264, + -0.02936188, + -0.026337039, + 0.012017016, + -0.031294547, + -0.008553696, + 0.0026708029, + -0.024738787, + -0.0074693365, + 0.0020312094, + -0.008202787, + -0.0191911, + -0.013345317, + -0.02135661, + -0.017999224, + -0.038711525, + -0.013907811, + -0.006096423, + -0.0082099745, + -0.014018392, + -0.011243048, + -0.007090694, + -0.0012703887, + -0.013151453, + 0.027738694, + -0.010923828, + -8.186739e-05, + 0.0075307507, + -0.002575104, + -0.013716535, + 0.00015125267, + -0.0070874062, + -0.021985354, + 0.012340084, + -0.020638844, + -0.021801427, + -0.021805495, + -0.015139309, + 0.0068553546, + -0.00909645, + -0.023586653, + -0.028707292, + 0.012294858, + 0.014875201, + -0.013089537, + -0.010832473, + -0.014096226, + -0.02372838, + 0.025900908, + -0.0012345978, + 0.0050633103, + -0.011818204, + -0.029999569, + 0.0016703483, + -0.018108152, + 0.008958196, + -0.010160106, + 0.00074115756, + 0.002332325, + -0.034695677, + -0.021372812, + -0.008180409, + -0.023483573, + -0.0019104581, + 0.0023809532, + -0.011092159, + -0.023751557, + -0.022662606, + -0.016739113, + -0.00879856, + -0.01948459, + 0.022387099, + 0.009657741, + 0.018801576, + -0.0044801272, + -0.0054513807, + 0.0030478209, + -0.0015677038, + -0.0061455565, + -0.01993831, + -0.023651758, + 0.005811663, + 0.016040258, + -0.007588866, + -0.003620142, + -0.02456001, + -0.009978514, + -0.0069872555, + -0.035317324, + -0.009994906, + -0.009520761, + 0.01598174, + -0.0032188674, + -0.019570827, + 0.0043945774, + -0.009488329, + -0.016486013, + -0.027833583, + 0.0010801044, + 0.010322594, + -0.024625732, + -0.01599008, + -0.037539, + -9.774637e-05, + -0.00902485, + -0.018492488, + -0.017811738, + -0.025451478, + -0.005947319, + -0.027858943, + 0.002512084, + 0.0037157005, + -0.013799321, + 0.014711363, + -0.021359682, + -0.006228832, + -0.0038262699, + 0.029542124, + -0.00387586, + -0.0086144265, + -0.026422458, + -0.001017869, + 0.021022998, + -0.021321993, + -0.027448032, + -0.010060607, + -0.0049121547, + -0.013890928, + -0.01952753, + -0.012988824, + 0.018568354, + -0.012445963, + -0.008415938, + -0.0032483295, + -0.024485806, + 0.029098123, + -0.010012899, + -0.029243954, + -0.008715753, + -0.0013849372, + 0.019070674, + -0.018550672, + -0.011095991, + 0.035896257, + -0.009052227, + 0.0022751556, + -0.01843645, + -0.026872268, + -0.0068754265, + -0.0149669, + -0.0012574953, + -0.018188953, + -0.023906847, + 0.0050347853, + 0.0072678425, + 0.0029500916, + 0.004681676, + -0.0053720064, + -0.009863497, + -0.02740281, + -0.009722692, + 0.02743176, + -0.0013724156, + 0.0055733635, + -0.016937422, + -0.02438641, + -0.0062825787, + -0.029189004, + 0.0024949647, + -0.0017316894, + 0.01725009, + -0.0018645208, + -0.007871351, + -0.0060559623, + -0.026834875, + -0.016183646, + -0.010680291, + 0.003301026, + -0.026765494, + -0.009398694, + -0.025572954, + -0.009807921, + 0.0039506624, + -0.025825404, + -0.0026465452, + -0.0018050977, + -0.02500144, + -0.008682522, + -0.0068117515, + -0.028885772, + 0.0013013638, + 0.013008859, + 0.0054321177, + -0.014322343, + -0.014187617, + -0.011438041, + -0.025835784, + 0.03511512, + -0.015189602, + -0.03046736, + 0.0028757078, + -0.016065145, + -0.008066603, + -0.0021912137, + 0.0007876848, + -0.001363424, + -0.0030081545, + 0.011183123, + -0.008443871, + -0.02754312, + -0.00403139, + -0.0029984093, + -0.023756625, + -0.016135698, + -0.00090673415, + -0.009607776, + -0.021783851, + -0.012866455, + -0.012324541, + 0.0022837282, + -0.0057709343, + -0.0069383234, + -0.012319373, + -0.025152197, + -0.0022357577, + -0.0048764534, + -0.014696266, + -0.012159587, + -0.027134873, + -0.019422002, + -0.0051515144, + -0.01736913, + -0.013633982, + -0.00820109, + -0.014757058, + -0.010814964, + -0.025008636, + -0.035776693, + -0.008244825, + 0.0053541693, + 0.0025685923, + 0.0011565593, + -0.029069422, + -0.0052209375, + 0.008717283, + 0.0058753164, + -0.0070401635, + -0.019232053, + 0.0038056725, + -0.0073490995, + 0.0019537827, + -0.023957536, + -0.0074986606, + -0.016600307, + -0.0089975605, + -0.020560317, + -0.011084313, + 0.013254684, + -0.0058906986, + -0.009573243, + -0.014576037, + 0.010905884, + -0.01366224, + 0.006112679, + 0.027563851, + -0.009431789, + -0.019316962, + -0.0127364565, + -0.019398114, + -0.013889781, + -0.020408679, + -0.010823003, + -0.01405225, + -0.0093350485, + 0.0022106932, + 0.0061382544, + -0.0046157357, + -0.010338792, + 0.016032862, + -0.028930226, + 0.013011152, + -0.011305396, + -0.0092953555, + -0.012630145, + 0.012485959, + -0.048940618, + 0.010250363, + -0.018483857, + -0.007910759, + -0.01981602, + -0.014260541, + -0.030121505, + -0.038121004, + -0.025053194, + -0.010036592, + -0.0010433516, + -0.0005108644, + -0.0050357445, + -0.015858497, + -0.004968257, + -0.0061686393, + -0.018106673, + -0.018183608, + -0.0040144385, + -0.0031977394, + 0.006558334, + -0.008313819, + -0.0017179237, + -0.020982629, + -0.011764439, + -0.00011599194, + -0.011715088, + 0.013296573, + 0.0017442233, + 0.006078005, + 0.015055715, + -0.00315389, + -0.019244257, + -0.036903836, + 0.0011727246, + 0.007836958, + -0.013191694, + 0.03112834, + -0.016423931, + -0.01138296, + -0.013713323, + 0.0054381234, + 0.025426237, + -0.013774774, + -0.0226065, + 0.019551743, + 0.013619416, + 0.015700396, + -0.0038483446, + -0.020591287, + -0.034458894, + 0.005318562, + -0.008936916, + 0.018687913, + -0.01875657, + -0.0071241427, + -0.015527817, + -0.01211917, + -0.007767017, + -0.0010278192, + -0.009657864, + -0.010141443, + 0.008828718, + -0.02660332, + 0.0087784, + -0.01915628, + -0.026061213, + -0.007463447, + 3.904342e-05, + -0.0040785857, + -0.011748895, + -0.008832343, + -0.010049878, + -0.012615845, + -0.0021945569, + 1.7383325e-05, + 0.0077157086, + 0.0012066675, + 0.006487092, + -0.019009493, + -0.039422486, + -0.039616466, + 0.015188182, + -0.027816633, + -0.00600735, + -0.014088697, + 0.0025376054, + -0.039730277, + -0.008813263, + -0.01136471, + -0.013620575, + -0.010741505, + 0.006798235, + 0.002092812, + -0.015457784, + -0.010088221, + -0.010931111, + -0.0085375225, + -0.0081446525, + -0.0038836785, + -0.02982403, + -0.011973545, + 0.0072415425, + -0.010675296, + -0.024626777, + -0.008661769, + -0.027655605, + -0.013838467, + 0.004854948, + 0.023132898, + -0.01976636, + -0.0075885835, + -0.011223933, + 0.008563807, + -0.02143602, + -0.01681627, + -0.0039615277, + -0.016484804, + 0.025826989, + -0.007563877, + -0.009128317, + -0.021678343, + -0.027487703, + -0.010865138, + 0.0026073216, + -0.023241319, + 0.021412635, + -0.041649785, + -0.023586381, + 0.0034963049, + -0.011157386, + -0.00011430564, + 0.004929463, + 0.0018859472, + 0.017529532, + 0.0121996, + 0.0038379256, + -0.0177372, + -0.018869244, + 0.009257964, + 0.0120366765, + 0.0033663956, + -0.014556653, + -0.006609448, + 0.020551434, + -0.00063605414, + -0.01672072, + -0.0042084935, + -0.010860204, + 0.004371139, + 0.005510477, + 0.0070307637, + -0.009574174, + -0.016469458, + -0.0048734252, + 0.008230882, + -0.0063571907, + 0.0017694446, + -0.019560592, + -0.020035595, + -0.00900855, + 0.028772756, + 0.0029927862, + -0.029195707, + -0.0070440224, + -0.009913281, + -0.011152221, + -0.03254685, + -0.003625029, + 0.02006495, + -0.020185864, + -0.0010146131, + -0.017584255, + 0.0018317044, + -0.00081335683, + 0.020882774, + -0.011588985, + -0.033370834, + -0.002442284, + -0.0044610826, + 0.0023197685, + 0.019358454, + 0.0035542522, + -0.0027527576, + -0.023166617, + 0.014359785, + -0.0196737, + -0.013857035, + 0.0097699305, + 0.0042848527, + -0.016907455, + 0.00832244, + -0.018539827, + 0.0035253589, + -0.018630678, + 0.0022449954, + -0.0048648734, + 0.010107517, + 0.00025006972, + -0.025439601, + -0.015481862, + -0.010522519, + 0.0012523012, + 0.0027599458, + -0.016717913, + 0.021652956, + -0.0050462377, + -0.012500805, + -0.0033063444, + -0.009271349, + -0.01120203, + -0.011910745, + -0.003994115, + -0.019767135, + -0.009260454, + 0.013484088, + -0.013540026, + -0.010904132, + 0.014198265, + -0.030413916, + 0.0010127965, + 0.011886388, + 0.022862371, + -0.0054045366, + 0.0064522694, + -0.012585699, + -0.008472769, + 0.0077192206, + 0.0075511117, + -0.01210133, + -0.006406275, + -0.007594802, + 0.0012830786, + -0.01793331, + -0.009032542, + -0.0074584605, + -0.019061837, + -0.008868136, + -0.017998984, + -0.014427345, + 0.0021033804, + -0.0013236032, + 0.0005678762, + -0.0035962455, + -0.005363187, + 0.007898922, + 0.017450182, + 0.005270744, + -0.00910685, + -0.034067653, + -0.021050597, + -0.006345432, + -0.00950872, + 0.0009031723, + -0.013782249, + -0.008028962, + -0.014636503, + -0.0017036081, + 0.0016618954, + -0.008107609, + -0.004659014, + -0.028028011, + -0.0039192014, + -0.0025805978, + -0.019551476, + -0.0029974934, + 0.0098465355, + -0.013183609, + -0.012933072, + 0.015560924, + -0.027965808, + -0.013196791, + 0.008401134, + -0.0054448615, + 0.01067334, + -0.024735084, + -0.012436521, + -0.016439123, + -0.0034811064, + -0.0076111075, + -0.032350935, + -0.02048084, + -0.029255744, + -0.007867196, + -0.013472942, + 0.0029879077, + 0.0021244697, + 0.016230077, + -0.013667909, + -0.00046974953, + 0.010207508, + 0.0039205886, + -0.007888814, + 0.003173367, + -0.002523437, + -0.011202787, + -0.0135239735, + -0.010783169, + 0.008093421, + -0.012666827, + -0.0068845064, + 0.0036870542, + -0.03132952, + -0.0136134215, + -0.032022078, + -0.0017508895, + -0.011634921, + -0.008103584, + -0.002075324, + 0.0036262756, + 0.013792771, + 0.0034668425, + -0.0042388206, + 0.0026897057, + -0.02448442, + -0.01449379, + -0.01130323, + -0.026131826, + -0.02228275, + -0.0060159224, + -0.021290403, + -0.0012524285, + -0.010263302, + 0.0072851945, + -0.010129968, + 0.013623569, + 0.0029908817, + 0.00895319, + -0.023504252, + -0.021744594, + -0.005983204, + -0.0060103824, + 0.036277924, + 0.005356024, + -0.010955472, + -0.01617126, + -0.016423684, + -0.007840614, + 0.0020738002, + -0.009730258, + 0.01577813, + 0.0076955534, + -0.010014706, + -0.012987904, + -0.00769784, + -0.004650894, + -0.007822046, + -0.009530665, + -0.007931193, + 0.0013726712, + -0.006123238, + -0.022838444, + 0.03078604, + -0.016845386, + -0.029988904, + -0.007228575, + -0.021425163, + -0.0019044939, + -0.012144952, + 0.00539537, + -0.008356007, + -0.020693524, + -0.015704805, + -0.026490418, + -0.027443007, + 0.012964632, + -0.01066325, + -0.009745486, + -0.009379006, + 0.006700377, + 0.012902169, + -0.0021315943, + 0.0062952535, + -0.011925309, + -0.010635128, + 0.008258293, + -0.024058875, + 0.013124526, + 0.021429256, + -0.0025919818, + -0.016138818, + -0.0072941203, + -0.018203922, + -0.0038502165, + -0.017897062, + -0.029461157, + -0.008583722, + -0.01290722, + -0.010924406, + -0.013757649, + -0.018930435, + -0.018807223, + 0.005282259, + -0.007067108, + -0.008163764, + 0.012420841, + -0.020306258, + -0.007654805, + 0.009542762, + -0.016662842, + -0.0259956, + 0.020669626, + -0.0142880045, + -0.001117173, + -0.008829428, + -0.00485853, + -0.018608615, + -0.0075784735, + 0.011959509, + -0.003987261, + 0.0015528668, + 3.425225e-05, + 0.010181434, + -0.008721238, + -0.014732998, + -0.009332076, + -0.0009829649, + -0.009145367, + -0.015256707, + -0.01705266, + -0.023653371, + -0.023767682, + -0.020229844, + -0.02306374, + -0.015525703, + -0.023495333, + 0.0027138814, + 0.011011926, + -0.007101525, + -0.016068095, + -0.031180872, + 5.7164165e-05, + -0.023383532, + -0.005481896, + -0.014160548, + 0.00073754904, + -0.0050177565, + 0.008039737, + -0.0082973195, + -0.0033044098, + -0.015442819, + 0.0067515615, + -0.009040915, + -0.0068132407, + -0.016559795, + 0.0020767287, + -0.027586961, + -0.018147008, + -0.003745011, + -0.022054192, + 0.0031479795, + 0.0053886883, + -0.019990249, + -0.016846009, + 0.0084915515, + -0.029916918, + 0.012866988, + -0.009682648, + -0.012204067, + -0.003435882, + -0.030445186, + 0.0050480077, + 0.004823539, + -0.028567446, + -0.0072726337, + 0.034160238, + -0.0075044027, + -0.012448045, + -0.028607972, + -0.0009106524, + 0.0054819635, + -0.007919721, + -0.006510123, + -0.0031144375, + 0.019498436, + -0.010484552, + -0.021863319, + -0.01946232, + -0.0015546585, + -0.034053482, + -0.019589059, + -0.016565429, + -0.00805725, + -0.03545432, + 0.0040283725, + 0.0058263745, + -0.008097531, + -0.018121405, + -0.006088946, + 0.0027707163, + -0.01927493, + -0.003474876, + -0.004038764, + 0.017223844, + -0.00043582084, + -0.02306543, + -0.019039204, + -0.01598603, + 0.0017463792, + -0.016342226, + 0.033415064, + 0.007876227, + 0.011580035, + -0.016401557, + -0.011348769, + -0.011250951, + 0.0010295617, + -0.0032236679, + -0.03735467, + -0.016505625, + -0.028771754, + -0.010487605, + -0.011206348, + -0.022738475, + -0.013144622, + -0.019101683, + -0.005601714, + 0.009678791, + -0.023377225, + -0.0010438779, + -0.01918758, + -0.03661106, + -0.00962232, + 0.005630563, + 0.021115862, + -0.0052819466, + -0.0053586094, + 0.0013134086, + 0.005640795, + -0.0123330755, + -0.0035110451, + -0.02300966, + -0.021099418, + -0.026103444, + 0.018334514, + -0.0116056865, + -0.05516749, + -0.013569476, + -0.02719629, + -0.0150079215, + -0.030398795, + -0.002977175, + -0.00030091166, + -0.011734311, + -0.020372305, + -0.0028415674, + -0.005335117, + -0.014732874, + -0.018940335, + -0.0032695744, + 0.0019937858, + -0.0016563952, + -0.008187727, + 0.009712908, + -0.011326426, + -0.025478292, + -0.012752372, + -0.0031433883, + 0.0001578605, + -0.013310333, + -0.01372268, + -0.011704546, + 0.017005019, + -0.006432006, + -0.014289544, + -0.0019723894, + -0.0109487455, + -0.018727044, + -0.038681503, + 0.009025047, + -0.012688617, + -0.015238323, + -0.020397717, + -0.026115907, + -0.030990701, + -0.004148837, + 0.008400851, + -0.015645813, + 0.0043565147, + -0.0066685206, + -0.0107735265, + -0.012815776, + -0.019076806, + 0.002706218, + 0.037927337, + -0.016670806, + 0.009678259, + -0.002131996, + -0.012146367, + -0.010922396, + -0.004151768, + -0.01853943, + -0.008387683, + -0.020320147, + 0.0014833586, + -0.023498906, + 0.005262493, + -0.013778863, + -0.004432726, + -0.014456926, + -0.009410961, + 0.007873885, + 0.007153075, + 0.0024174892, + -0.011517141, + -0.024081608, + -0.007924536, + -0.009780573, + -0.016702775, + -0.00136516, + -0.035022724, + -0.018072734, + 0.00704532, + 0.013850894, + -0.0066867745, + -0.013265098, + -0.023177588, + -0.0193342, + -0.026657427, + -0.033242114, + -0.012202939, + -0.0162336, + -0.01789793, + 0.009893787, + 0.0067135016, + -0.03295036, + 0.0056887926, + 0.0106317345, + -0.0070756576, + 0.031181443, + -0.016577546, + -0.01847716, + 0.01882836, + -0.0040442366, + 0.0027756828, + -0.013358543, + -0.012590112, + -0.003853679, + -0.014687083, + 0.0059371428, + -0.014716816, + 0.015355323, + 0.0022811468, + 0.025216162, + -0.006755046, + 0.006250086, + -0.016369168, + -0.01022939, + -0.0063399933, + -0.0012375711, + -0.018426908, + 0.0017651967, + -0.034132563, + -0.004368509, + -0.013050534, + -0.019540796, + -0.008460617, + -0.01797774, + -0.02833286, + 0.00024967434, + 0.0062802644, + -0.033384163, + 0.008074354, + 0.004091227, + 0.00091807096, + -0.002286966, + 0.006205768, + -0.004663845, + -0.01492072, + -0.0153275775, + -0.015923725, + -0.019562861, + 0.0107871555, + -0.013029418, + -0.026891489, + 0.0069000833, + -0.004374019, + 0.004050161, + -0.012848252, + -0.024670865, + -0.007235358, + 0.0036248453, + -0.009253487, + -0.02012887, + 0.0045515466, + -0.03578361, + 0.0037188313, + -0.018899672, + -0.0041746483, + 0.003856627, + 0.010908014, + -0.010868029, + 0.0034766076, + -0.004791091, + -0.011158286, + 0.002873182, + 0.00070986414, + -0.004077241, + -0.010556595, + 0.027148977, + -0.037564047, + -0.01862409, + 0.009508441, + -0.0057981615, + -0.01505493, + -0.02984589, + -0.011079569, + -0.03473217, + -0.003237315, + 0.020842774, + 0.012530181, + 0.0012630775, + -0.04015131, + -0.020353986, + -0.0012454748, + -0.007403848, + -0.008342924, + -0.011245529, + -0.0021377294, + -0.006056719, + -0.009185368, + -0.0009921631, + -0.009124583, + -0.010424005, + -0.008258443, + 0.0017893254, + -0.011550016, + -0.0021044863, + 0.01053467, + 0.0040688016, + -0.007262191, + 0.019105647, + -0.041041482, + 0.0018390696, + -0.0038919721, + 0.016061049, + -0.014065587, + -0.0075911535, + -0.015152752, + -0.017861798, + -0.015331986, + -0.035551492, + -0.023078794, + 0.011622064, + -0.022256766, + -0.013552497, + -0.01355624, + -0.007666386, + -0.017875416, + -0.011813842, + 0.0011399367, + 0.0034013102, + 0.0012171712, + -0.00014508922, + -0.01787512, + -0.014100289, + -0.007519694, + -0.0077956803, + -0.007310514, + -0.008720395, + -0.027226001, + -0.02292433, + 0.010344875, + -0.013208184, + 0.009601329, + -0.0005285248, + -0.0031564662, + -0.014917709, + -0.007175849, + -0.025818666, + 0.0021635643, + -0.011265667, + -0.003532877, + -0.014943144, + -0.004791394, + 0.00071398483, + -0.02471504, + -0.021354308, + -0.0021569266, + 0.021105465, + -0.005151984, + -0.0067217327, + -0.026153276, + -0.014973062, + 0.009076688, + -0.019173667, + -0.017528284, + -0.0021516061, + -0.020612482, + -0.0123464875, + 0.004321179, + 0.006282705, + -0.018282836, + -0.02199714, + -0.0065403036, + -0.010017305, + -0.0010605517, + -0.009891511, + 0.021240419, + -0.012627597, + -0.034045506, + -0.017474739, + -0.01934386, + 0.0031619046, + 0.010744938, + 0.0066231047, + -0.006542284, + 0.016501019, + 0.024840202, + 0.0019131651, + -0.012483195, + 0.037569053, + -0.017097417, + 0.013474258, + -0.007225843, + 0.020871045, + -0.008908385, + 0.03754658, + -0.007930901, + 0.007278751, + -0.0064132693, + -0.022817964, + -0.0009829878, + -0.018682396, + -0.0046734037, + -0.0063303714, + -0.029980283, + -0.018539349, + 0.014108168, + -0.005934935, + -0.013409031, + -0.024996346, + 0.008505222, + -0.020543262, + -0.01687981, + 0.010026117, + 0.016351504, + -0.00444121, + -0.026767066, + -0.016161518, + -0.01385037, + -0.035680436, + 0.0036954856, + -0.005537927, + -0.0065057804, + -0.015336017, + -0.0035293407, + -0.017267616, + -0.007622955, + -0.011568417, + 0.008629531, + -0.012176132, + -0.010574532, + -0.0002884176, + -0.002400231, + -0.0179496, + 0.0027789385, + -0.018091515, + 0.005722168, + -0.016729655, + -0.0075851968, + 0.02415313, + -0.024944335, + -0.034222692, + -0.0025145726, + -0.016825406, + -0.0045151124, + -0.0054886146, + -0.004762322, + -0.020392243, + 0.0005188936, + -0.017238505, + -0.031528294, + -0.019774184, + 0.016377512, + -0.010961673, + 0.0017992894, + -0.00804113, + -0.011731807, + -0.0035769413, + -0.018178064, + 0.018688334, + 0.005994101, + 0.007832272, + 0.004634015, + -0.021083979, + -0.013439603, + -0.012785991, + -0.0050053974, + -0.021316933, + -0.020758942, + 0.0025979434, + -0.013934088, + -0.010378391, + -0.005766594, + -0.007768111, + -0.008422807, + 0.012560496, + 0.011400616, + 0.003842042, + -0.018406462, + -0.01301112, + 0.022982946, + -0.005857974, + 0.0068941573, + -0.023754524, + 0.011466247, + -0.012233269, + -0.007576064, + 0.022949392, + -0.020116394, + 0.0076626735, + -0.0046219174, + -0.018837975, + -0.00030292137, + 0.00651226, + -0.0065524112, + -0.033941653, + 0.025686478, + -0.0026314114, + -0.0009526723, + 0.039023194, + -0.0063642655, + -0.023366781, + -0.0062854365, + -0.021724187, + -0.013395171, + -0.004971856, + -0.0065817637, + -0.0069672363, + -0.012721089, + -0.005834765, + -0.0042998944, + -0.026515799, + 0.015502675, + 0.008717092, + -0.010775575, + -0.022084223, + -0.005833728, + 0.013886903, + -0.0024807847, + 0.010839497, + 0.0066935094, + -0.0033447775, + -0.024567725, + -0.024750795, + -0.010385253, + -0.0060811397, + -0.006772285, + -0.011725758, + -0.017054107, + -0.01085114, + -0.02295375, + -0.011342237, + -0.020320214, + -0.0022506246, + 0.025880849, + 0.00068225275, + -0.019160194, + 0.0031310858, + -0.009140145, + -0.028913237, + -0.009147012, + -0.006883216, + -0.018951444, + -0.019506622, + -0.024769073, + 0.011549684, + -0.044710517, + -0.0066167107, + -0.014595137, + -0.0053230575, + -0.003857789, + -0.0015957044, + -0.0126405675, + 0.009207493, + -0.021150831, + -0.015309803, + 0.014927642, + -0.02381404, + -0.0011387016, + 0.013876533, + -0.01265721, + -0.009744755, + -0.028275385, + -0.024963394, + -0.011914271, + -0.0035620264, + -0.0103638545, + 0.0074893977, + -0.036980066, + -0.019001199, + -0.009594598, + -0.008029742, + -0.008188878, + 0.010233781, + 0.013825697, + -0.01323086, + -0.0013189142, + 0.0036993464, + 0.007881021, + -0.011710033, + -0.006784306, + -0.0064314646, + -0.011017775, + -0.001656671, + -0.011926283, + -0.002263448, + -0.0001620957, + -0.016668465, + -0.019600367, + -0.017654179, + -0.0101232305, + 0.0068633202, + -0.003337646, + 0.010253054, + 0.009934315, + -0.023757754, + 0.008967012, + 0.00035953085, + -0.02589969, + 0.027079737, + -0.018628731, + -0.020207485, + -0.016151566, + 0.0002577444, + -0.005424082, + -0.02028471, + -0.016733823, + 0.0026497648, + -0.019782078, + -0.0007557474, + -0.0024173039, + -0.006421748, + 0.019024486, + -0.022582758, + -0.004678493, + -0.0020980504, + -0.015858825, + -0.006454161, + -0.015110559, + -0.012729046, + -0.009623916, + -0.0018205835, + 0.0034038879, + -0.010436949, + 0.0052754553, + 0.0013006937, + 0.009731704, + -0.009011772, + -0.0113963485, + 0.016744759, + -0.022886934, + -0.011376994, + -0.0071049854, + -0.0154128345, + 0.0041483836, + -0.0077349115, + -0.00096506445, + -0.014362525, + 0.018614072, + -0.011702553, + -0.020760303, + 0.022139175, + -0.020104492, + -0.0330313, + -0.009133426, + -0.01774231, + -0.014567309, + -0.01809232, + 0.016198931, + 0.0029840455, + -0.011331901, + -0.01173562, + 0.009409038, + -0.030002175, + -0.02082243, + -0.017882962, + 0.018830989, + -0.01433205, + 0.0042055096, + 0.039904874, + -0.03654819, + -0.008394513, + -0.01873769, + -0.0026258621, + -0.014674102, + -0.039131965, + 0.005860613, + -0.017455189, + -0.0027576915, + -0.0063531273, + -0.0017201912, + -0.0024019994, + -0.00033839594, + -0.022505177, + -0.0013161439, + 0.00073388504, + -0.016946841, + 0.011741647, + -0.0120046465, + -0.00023957597, + 0.033527337, + -0.0033683025, + -0.0120062465, + -0.008493381, + 0.018599916, + -0.009446662, + 0.02731832, + 0.014368335, + -0.007749763, + 0.025939729, + -0.015656248, + -0.0017491184, + -0.008345685, + -0.022301193, + -0.0009363599, + 0.011392428, + 0.004929696, + 0.0024869938, + 0.005406262, + -0.011369697, + -0.0060540983, + 0.017891126, + -0.007156968, + -0.005886936, + -0.006314253, + -0.02235366, + 9.439497e-06, + 0.0018581811, + 0.0020562517, + -0.016093729, + -0.013669833, + 0.0044762264, + 0.00279271, + -0.008608463, + 0.0111003285, + -0.027744384, + -0.0065324046, + -0.02892323, + 0.003201432, + -0.010461613, + -0.003960809, + -0.04752115, + 0.019037021, + 0.001235672, + 0.010379964, + 0.01999151, + -0.0061274334, + -0.0011135492, + -0.0061742757, + 0.036882695, + -0.025297232, + 0.009192185, + -0.013473483, + -0.004805343, + -0.0006382245, + 0.018533938, + 0.028478827, + -0.019369923, + -0.037175853, + 0.00048259084, + -0.0054046335, + 0.0010172646, + 0.0133263655, + -0.0051213233, + -0.014592263, + -0.0041148076, + 0.01694217, + -0.013930697, + 0.0071842032, + 0.008288158, + 0.008074024, + 0.007330256, + -0.008722723, + -0.020132145, + 0.0063395826, + -0.0070067644, + -0.0044941762, + 0.0069919685, + -0.02163435, + 0.007218792, + -0.022842621, + 0.010571043, + -0.01593431, + -0.00422234, + -0.032762956, + -0.01213775, + -0.0065782107, + -0.0037610743, + 0.0045264033, + -0.016778342, + 0.012163613, + 0.00038411818, + 0.023708062, + -0.020599015, + 0.023472201, + -0.01763663, + 0.007066008, + -0.025899207, + -0.017041123, + -0.016691878, + 0.0030668261, + -0.0042343903, + -0.016641881, + -0.004998438, + -0.016919052, + -0.013850132, + -0.010588406, + 0.005382138, + 0.008832571, + -0.023439262, + -0.0130189825, + -0.01934663, + -0.007896369, + 0.0063591856, + -0.010095881, + -0.008746035, + -0.019305585, + 0.0026672988, + 0.025806217, + 0.008122508, + -0.022301866, + 0.019956036, + -0.019654335, + -0.019669585, + -0.009574348, + -0.021824267, + -0.018582951, + -0.017301146, + -0.0031230645, + -0.011125447, + -0.018611705, + -0.009201659, + -0.020825101, + -0.017904082, + -0.0019174642, + 0.001418985, + -0.026410049, + -0.028738732, + -0.009595168, + -0.012034075, + -0.019852705, + 0.012086759, + 0.011975465, + -0.019536382, + 0.015290001, + -0.003221166, + -0.00071475864, + 0.003280973, + -0.020126425, + 0.0059908996, + -0.031446807, + -0.035249785, + -0.0043046023, + -0.004143957, + -0.0068146964, + -0.010366554, + -0.016660836, + 0.016945887, + -0.0292355, + -0.003207771, + 0.006316874, + 0.028004734, + 0.00013876286, + -0.008882056, + -0.008844684, + -0.028088694, + -0.007634947, + -0.021073295, + 0.004211621, + 0.006078426, + -0.010621658, + -0.012016221, + -0.019014865, + -0.0115168, + 0.0010792199, + -0.0066397656, + -0.026088782, + -0.007681745, + -0.006413675, + -0.01038026, + 0.0034858966, + 0.0022590335, + -0.009044284, + -0.021437965, + -0.01902584, + 0.012071038, + -0.026643526, + 0.032951962, + -0.011895296, + -0.026324568, + 0.00840465, + 0.0063389097, + -0.0057538664, + 0.01335488, + -0.015401287, + -0.006322975, + -0.0061886115, + -0.0120637715, + -0.00234536, + -0.022994308, + 0.010334338, + -0.009501188, + -0.017584303, + -0.01376308, + -0.008835895, + 0.005907527, + -0.01978993, + -0.016997151, + -0.0016088414, + -0.022811903, + 0.0017965971, + 0.012740464, + -0.038160715, + -0.01183751, + -0.024543278, + -0.011209718, + -0.018597974, + -0.005325064, + -0.022772675, + 0.0032354426, + -0.0019400854, + 0.017163502, + -0.015878659, + -0.023459436, + -0.018754652, + -0.011045554, + 0.019423185, + -0.010460296, + 0.010965341, + -0.011128736, + -0.022518668, + -0.029959517, + -0.020776719, + -0.003992801, + -0.016865864, + -0.017143277, + -0.0134748425, + -0.016389234, + -0.01641742, + -0.007814826, + 0.019679675, + -0.005450778, + 0.014993607, + -0.018698767, + -0.022580799, + 0.0043932255, + -0.0012586594, + -0.007131749, + -0.020156993, + 0.005179288, + -0.029653449, + -0.03063226, + -0.026470628, + -0.014852665, + -0.007193148, + 0.008761388, + -0.026483515, + -0.0038055324, + -0.025634056, + -0.0052933744, + -0.011557707, + 0.0019667603, + 0.012200743, + -0.026541146, + -0.022557292, + -0.010035871, + -0.03994332, + -0.00983194, + -0.016924255, + 0.0017483097, + -0.005763002, + -0.01647097, + -0.018508416, + -0.0117943585, + -0.013986677, + -0.015214251, + -0.003529541, + -0.0076875724, + -0.005557099, + -0.0043572383, + -0.03024511, + 0.010325978, + 0.003203259, + -0.020482011, + -0.007839074, + -0.01836935, + -0.010794631, + -0.011838739, + -0.016517205, + -0.026067385, + -0.005833435, + -0.003329137, + -0.018851446, + -0.014855312, + -0.0061712926, + -0.015484221, + -0.0033784697, + -0.0064228307, + 0.019627225, + -0.0020507905, + -0.010529745, + 0.01644646, + 0.006894057, + -0.0023598142, + 0.0041029574, + -0.016301505, + 0.0036923806, + -0.010399768, + 0.011203236, + -0.009378295, + -0.020046825, + 0.00694749, + 0.0025629806, + 0.005378165, + -0.0013833353, + 0.016216751, + -0.007610376, + 0.031846564, + 0.0026767359, + -0.004396383, + 0.009418435, + -0.00504301, + -0.009827843, + 0.016520983, + -0.011890257, + 0.016987039, + -0.014575976, + 0.004012414, + -0.012779236, + -0.003384798, + 0.012161051, + 0.00041809023, + -0.007614875, + -0.0016272173, + -0.007838285, + -0.0039571254, + -0.018311571, + -0.010820488, + 0.012367333, + -0.0017351552, + -0.01503175, + -0.0085604135, + -0.017550332, + -0.007355913, + -0.03234657, + 0.027414348, + -0.017780934, + -0.010818554, + -0.008371042, + -0.010898194, + 0.011920141, + -0.0063799717, + 0.008830811, + 0.007241512, + -0.023806408, + -0.0055555403, + -0.00015832565, + -0.017490014, + 0.0022318445, + -0.00054193684, + -0.011065902, + -0.031108435, + 0.008355, + 0.028785966, + 0.013599094, + -0.008753607, + -0.00085473526, + -0.016811647, + 0.0053656586, + 0.0016836252, + -0.0023926978, + -0.030298144, + 0.00017628299, + -0.0025312563, + 0.0009783391, + -0.008048888, + -0.02424182, + -0.013719647, + -0.008633959, + -0.00019755444, + -0.02769598, + -0.019079536, + 0.009628466, + -0.024663772, + 0.0172635, + -0.034137372, + -0.021655153, + -0.022505997, + -0.034944266, + -0.022376975, + -0.014231932, + -0.012766945, + 0.00082426734, + -0.0034710919, + 0.00033206918, + 0.015645834, + 0.0025820897, + -0.028772708, + 0.01386526, + 0.0034437955, + 0.0025650056, + -0.0018033986, + 0.008330525, + -0.020898703, + -0.006352572, + -0.015372567, + -0.011509253, + 0.013493032, + -0.008985997, + -0.011863639, + -0.029264078, + 0.024246423, + 0.006406219, + -0.015921468, + -0.006815022, + -0.019184805, + -0.007380073, + -0.015806258, + -0.015718082, + -0.0011063197, + -0.005451841, + 0.01160252, + 0.011854237, + -0.015371569, + -0.0054655555, + -0.017538987, + -6.97283e-05, + 0.011995511, + -0.015564777, + -0.014515905, + 0.011114446, + -0.00024373621, + -0.013829945, + -0.022772813, + 0.010907247, + 0.00034279737, + -0.025170676, + 0.018065037, + -0.031665407, + 0.026946336, + -0.0022042603, + -0.025079891, + -0.01087736, + -0.01705391, + 0.0042393953, + -0.030161342, + -0.025038859, + 0.0069007627, + -0.012280301, + 0.00027583458, + -0.021938648, + 0.00609258, + -0.008190083, + -0.0045949193, + -0.0053981873, + -0.013554948, + -0.022756297, + -0.0072709983, + -0.0014028634, + -0.011728937, + -0.021061864, + 0.0030680913, + -0.0048061037, + -0.0088516455, + -0.0251456, + -0.01773789, + -0.007541685, + 0.008300596, + -0.012602176, + -0.016974213, + -0.009524475, + -0.0009146615, + -0.011745924, + 0.003072641, + -0.020259092, + -0.017995995, + -0.017443849, + -0.021607751, + -0.013934961, + -0.012189688, + -0.0041874466, + -0.02381629, + -0.02426737, + 0.0005201547, + 0.012437834, + -0.0072042313, + -0.024830572, + -0.026799398, + -0.009413439, + -0.028024726, + -0.00069551455, + 0.0039874963, + -0.0174314, + 0.009654949, + -0.016657287, + -0.00797847, + 0.0093743205, + -0.0030701633, + -0.015196915, + 0.007018859, + 0.00915563, + 0.0015425766, + -0.024678795, + -0.0035375527, + 0.012093919, + -0.005456541, + 0.0005663028, + -0.016105795, + 0.018580519, + -0.014885548, + 0.017815549, + -0.00103113, + -0.022256445, + -0.002576038, + -0.0034213397, + -0.012578539, + -0.014046288, + -0.029148282, + 0.023872845, + -0.016478932, + -0.0067091594, + 0.008632624, + -0.010685144, + -0.014145043, + -0.016870087, + -0.021401066, + -0.019885663, + 0.0022186048, + -0.018237762, + 0.011470632, + 0.0084198145, + -0.018594969, + -0.023262855, + -0.019159334, + -0.009953332, + -0.016367212, + -0.009440088, + -0.023596976, + -0.013873214, + 0.007895116, + -0.015849296, + -0.032461297, + -0.019166041, + -0.024321154, + 0.020315377, + -0.004972344, + 0.0051936214, + 0.0076336605, + 0.0390045, + 5.6294222e-05, + -0.008718958, + -0.011613378, + -0.0013951914, + -0.008824259, + -0.029225279, + -0.027602863, + 0.013423176, + -0.009063656, + 0.0025184546, + 0.0066405553, + -0.020664424, + 0.013313693, + -0.016428113, + -0.017140394, + -0.008915604, + 0.0029843212, + -0.020117646, + 0.00041747955, + -0.017319508, + -0.0073150075, + -0.014529348, + -0.0049688094, + -0.014768447, + -0.026130361, + -0.0137046315, + -0.008636814, + -0.00999021, + -0.022705846, + 0.010517453, + 0.028093446, + -0.0011572097, + -0.009380018, + -0.016359694, + -0.0015476062, + -0.010338619, + 0.0026739636, + -0.024325207, + 0.0027299337, + 0.010210086, + 0.0042094556, + 0.007442727, + 0.0058872215, + -0.017288871, + -0.02617025, + -0.00081035495, + -0.015529078, + 0.0064085154, + -0.0128724845, + -0.009011953, + -0.0010153207, + -0.0007598523, + -0.008212003, + -0.0064537157, + -0.003968958, + -0.014892532, + 0.013488983, + -0.02169018, + -0.013842257, + -0.0040465426, + 0.0074474528, + -0.0020706684, + -0.022375038, + 0.006557549, + -0.014773854, + -0.010743265, + 0.00338266, + 0.034895256, + 0.0075105643, + -0.0030211671, + 0.015020862, + -0.031481117, + -0.012179501, + -0.012706541, + 0.016730988, + 0.0031529567, + -0.02460775, + -0.007239763, + -0.025804725, + -0.007622368, + 0.025312778, + 0.0014511041, + -0.016742853, + 0.0013818009, + -0.016380752, + 0.020428455, + -0.014741972, + -0.034169853, + 0.0097815925, + 0.0011781645, + -0.008550952, + -0.0070359814, + -0.006897072, + -0.011487986, + -0.01812467, + -0.010563567, + 0.0051388596, + 0.04120183, + -0.006178696, + -0.021199629, + 0.032475222, + -0.030265283, + -0.007249101, + -0.020328462, + -0.011272101, + 0.00046219965, + -0.0035824096, + -0.010927591, + -0.012765446, + -0.008558749, + 0.0048707626, + 0.0045638494, + -0.012973248, + 0.0073441844, + 0.021582149, + -0.013211354, + 0.019929478, + -0.015463497, + -0.020372706, + -0.02233971, + -0.022246566, + -0.0141849825, + 0.0047855075, + -0.0016863063, + -0.022237616, + 0.0057895286, + -0.0331242, + 0.029815534, + 0.0030912408, + 0.010872885, + 0.0017426437, + -0.00680237, + -0.013319678, + -0.027755575, + -0.013856165, + -0.018049182, + -0.005598089, + -0.0045021395, + -0.0067358753, + 0.015630022, + 0.0040216376, + 0.011638452, + 0.003218377, + 0.012206083, + -0.015457424, + -0.021531343, + -0.027292093, + -0.007291948, + -0.017387731, + 0.0005734238, + -0.011210218, + 0.012368347, + -0.009418588, + -0.0046640434, + 0.004351803, + -0.0061916616, + -0.02935277, + -0.0015801444, + -0.0313637, + -0.028685762, + 0.024279144, + -0.015803669, + -0.015141873, + -0.005532435, + 0.014008635, + -0.0012753673, + 0.0056905677, + -0.002454676, + -0.0075707515, + -0.020442598, + -0.03325153, + -0.007910586, + -0.028471835, + -0.012921059, + -0.028038118, + -0.007948802, + -0.03327492, + -0.022171231, + -0.02033999, + 0.012284295, + -0.004760527, + -0.01870456, + -0.025953973, + 0.011223046, + -0.013613213, + -0.019998405, + -0.009406748, + -0.0035237842, + 0.028041076, + 0.005289143, + -0.029651508, + 0.0002533939, + -0.022431793, + -0.019443752, + -0.02230132, + -0.0074419486, + -0.014596404, + 0.024951393, + 0.014868115, + 0.025849415, + -0.010859765, + 0.027638832, + -0.019102875, + -0.022270529, + -0.04567438, + 6.539419e-05, + -0.009363304, + 0.008677803, + -0.028666023, + -0.026072456, + -0.026109947, + -0.027533758, + -0.011284162, + 0.0069321296, + -0.0033173321, + 0.012718796, + 0.004338967, + -0.014570798, + 0.005012111, + -0.031641547, + -0.009686611, + -0.02038853, + -0.003097083, + 0.0054054474, + -0.02054961, + -0.032689642, + 0.0056469375, + -0.02945341, + -0.013594727, + 0.0006855872, + 0.013531095, + -0.008084571, + -0.0240771, + -0.004892662, + -0.03567293, + -0.01981017, + -0.012537436, + 0.028659666, + 0.011815502, + -0.013077562, + -0.01678256, + -0.0045588175, + -0.007054327, + 0.01500724, + -0.004333958, + 0.012056843, + -0.01207951, + -0.031501316, + 0.0117509775, + -0.019824702, + -0.011478079, + -0.012911843, + 0.0040415702, + -0.022097327, + 0.012371852, + -0.022378787, + -0.026523765, + -0.012873731, + -0.022794595, + 0.0021611447, + -0.022251232, + -0.030558681, + 0.020049745, + 0.0056942627, + -0.004857588, + -0.024499841, + 0.018331567, + -0.0148381675, + -0.007693933, + -0.01037365, + -0.0076857274, + 0.024327885, + -0.0019661214, + -0.0032154145, + -0.012274079, + 0.0008577293, + -0.0075280606, + 0.012802628, + -0.021498084, + -0.017957537, + -0.025950257, + -0.025831986, + 0.00043523643, + -0.027500764, + -0.024226874, + 0.0047253864, + -0.0010130878, + 0.007885836, + 0.007923647, + -0.005974513, + -0.00087002246, + -0.022801653, + 0.002196357, + -0.006621828, + -0.05517637, + -0.010693849, + 0.005420935, + 0.025979955, + 0.0011207751, + -0.00093237095, + -0.003457937, + -0.016986094, + -0.0049584024, + -0.00996762, + 0.0049219364, + -0.005203344, + 0.0003619947, + 0.013232455, + -0.009566235, + -0.0030287916, + -0.0044149654, + 0.0036695078, + 0.008595911, + -0.0164304, + -0.023592858, + -0.027284032, + -0.003874469, + -0.02065624, + 0.012547802, + 0.0023111932, + -0.014511424, + -0.007033699, + 0.010726156, + 0.014341779, + 0.0007726168, + -0.021881513, + -0.016287751, + -0.0071393293, + 0.014405522, + -0.00783736, + 0.02240033, + -0.018714318, + -0.015469096, + -0.010616202, + -0.01122953, + -0.022258405, + 0.006813643, + -5.2062824e-05, + -0.029069973, + 0.01722103, + -0.0072224834, + -0.03396802, + -0.0090658935, + -0.01584741, + -0.012958804, + -0.012208424, + -0.00551291, + -0.007556931, + -0.023368184, + 0.0074149966, + -0.021641694, + -0.026398523, + 0.015679518, + 0.0031230757, + -0.016143244, + -0.003973898, + -0.011575723, + -0.034983538, + -0.011785245, + 0.025052868, + -0.008009419, + -0.017100705, + -0.0049060876, + -0.0066236393, + -0.005880896, + 0.0066875927, + -0.016866636, + -0.01186714, + 0.008393482, + 0.01808403, + -0.018387854, + -0.015275032, + -0.016386755, + -0.007325493, + -0.00920169, + -0.024674013, + -0.0034743403, + -0.011783641, + -0.013226973, + -0.014561798, + -0.010166436, + -0.0075708237, + -0.02823056, + -0.015247851, + -0.013981401, + -0.009610366, + 0.0016355652, + 0.015616415, + -0.034308378, + -0.018746864, + -0.013596391, + -0.015419879, + 0.01293405, + -0.02653797, + -0.009854541, + -0.023434432, + 0.0057503018, + -0.029782757, + -0.015216289, + -0.019241339, + -0.012724677, + -0.003954685, + -0.018988878, + 0.0043181004, + -0.005180098, + -0.02052784, + -0.021634195, + 0.003890847, + 0.026274959, + -0.012057613, + -0.011535699, + 0.017801424, + -0.031478714, + -0.024840193, + -0.00028067853, + -0.017119497, + -0.0015825261, + -0.010759165, + -0.0039432324, + -0.024028355, + 0.008291949, + -0.0070523093, + 0.00044905063, + -0.00024567402, + 0.0015693593, + -0.04191328, + -0.0059796027, + 0.0031947363, + -0.015816534, + 0.014035597, + 0.010596703, + 0.027238866, + -0.02651297, + -0.021886751, + 0.007006905, + 0.007747927, + -0.02417789, + -0.023805832, + 0.019152664, + -0.0005164699, + -0.005933977, + 0.00038010956, + 0.0010096316, + -0.0071293903, + 0.0066717183, + -0.021781322, + 0.0007532068, + -0.010201259, + -0.0057256827, + -0.021922482, + -0.013607206, + -0.0039336495, + 0.0075907977, + -0.0119872615, + 0.01969585, + -0.010078907, + -0.017756784, + -0.019840127, + -0.008250254, + -0.007810088, + 0.013492087, + -0.016422931, + 0.0036193714, + -0.016235251, + -0.0035013827, + -0.0045725885, + -0.008464442, + -0.011778902, + -0.0056572817, + -0.00066033023, + -0.00067388953, + -0.01035562, + 0.020138696, + -0.012315708, + -0.011159783, + -0.018327033, + 0.001736623, + 0.012051001, + 0.025761912, + -0.005011325, + 0.005435515, + -0.0069135358, + -0.010208323, + -0.013793715, + -0.0076322914, + -0.00880784, + -0.010855066, + 0.0017531973, + -0.013454707, + -0.0030457377, + -0.016823763, + -0.004575535, + -0.0048190197, + -0.0072925384, + -0.038940106, + -0.020013867, + 0.008489561, + -0.013537676, + -0.019035034, + -0.018183557, + 0.02856789, + -0.0041024615, + -0.012333298, + -0.021719836, + 0.007349317, + -0.0070549333, + -0.00060260866, + -0.01592841, + -0.01553781, + 0.019084468, + 0.0047137938, + 0.0037452015, + -0.029720282, + -0.0056756516, + -0.0030655363, + 0.014144528, + -1.6936474e-05, + -0.013636928, + 0.0106530525, + -0.029219285, + -0.03263182, + -0.021694385, + 0.006492693, + 0.004993806, + -0.02011484, + -0.00288627, + -0.017603304, + -0.008297582, + 0.0046854503, + -0.002820881, + 0.019030979, + 0.0050057303, + -0.018398883, + -0.03391651, + 0.030125592, + -0.022792006, + -0.014739245, + -0.025302256, + -0.01529309, + -0.009286329, + 0.0039395606, + -0.021200037, + -0.023512607, + -0.0023552324, + 0.0031157394, + -0.020711748, + -0.014610052, + -0.022541719, + 0.0028319259, + 1.2906687e-06, + 0.012279744, + -0.005384314, + 0.0064725643, + -0.0016558236, + -0.01995171, + -0.009270358, + -0.001312229, + 0.0003455384, + -0.00015468469, + -0.01100123, + -0.01613293, + 0.004809948, + 0.0031265304, + -0.009934915, + -0.012155661, + -0.01711888, + -0.011410981, + 0.0023425368, + -0.024089342, + -0.010350171, + -0.0157714, + 0.0157074, + -0.0035821316, + 0.0037896342, + -0.0013029722, + 0.0180724, + 0.026096633, + -0.00068438344, + 0.0070875385, + -0.00025931827, + -0.0018535445, + 0.0059579564, + -0.030133326, + -0.014455221, + -0.009778268, + 0.0021584996, + -0.008257298, + 0.0016665393, + -0.00017252206 ], "paletteEmbedding": [ - 0.014156712, 0.020441234, 0.01455363, 0.008467566, 0.002513809, - 0.00019845858, 6.615286e-5, 0.0, 0.0, 0.0, 0.020044317, 0.037111755, - 0.02910726, 0.0161413, 0.004432242, 0.00092614006, 6.615286e-5, 0.0, - 0.0, 0.0, 0.019448942, 0.032944124, 0.031025693, 0.017596662, - 0.005887605, 0.0007276815, 0.00013230572, 6.615286e-5, 0.0, 0.0, - 0.011312139, 0.017927425, 0.019845858, 0.011378292, 0.004299936, - 0.0011907516, 0.0, 6.615286e-5, 0.0, 0.0, 0.002844573, 0.006681439, - 0.006615286, 0.0041014776, 0.0015215159, 0.0007276815, 0.0, 6.615286e-5, - 0.0, 0.0, 0.0009922929, 0.0007276815, 0.00092614006, 0.0016538216, - 0.0008599872, 0.0, 0.0, 6.615286e-5, 0.0, 0.0, 0.0, 0.00013230572, - 0.00013230572, 0.0003307643, 6.615286e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.02216121, 0.035656393, 0.030231858, 0.015281311, 0.005358382, - 0.0006615286, 0.0, 0.0, 0.0, 0.0, 0.042007066, 0.07356198, 0.06674824, - 0.036582533, 0.012436738, 0.0021168916, 0.00013230572, 0.0, 0.0, 0.0, - 0.041940916, 0.07554657, 0.08064034, 0.049746953, 0.0196474, - 0.003307643, 0.0008599872, 0.0, 0.0, 0.0, 0.022028903, 0.048159283, - 0.057420686, 0.041543998, 0.014487477, 0.0036384074, 0.0005292229, - 6.615286e-5, 0.0, 0.0, 0.0074091204, 0.018324343, 0.025998075, - 0.018853566, 0.008136802, 0.0029768788, 0.0005292229, 6.615286e-5, 0.0, - 0.0, 0.0011907516, 0.003439949, 0.006681439, 0.005689146, 0.0027122675, - 0.0008599872, 0.0003307643, 0.00013230572, 6.615286e-5, 0.0, - 0.00013230572, 0.00019845858, 0.0011245987, 0.0010584458, 0.00079383433, - 0.00039691717, 0.0003307643, 0.0, 0.0, 0.0, 0.0, 6.615286e-5, - 6.615286e-5, 0.00013230572, 6.615286e-5, 0.0, 6.615286e-5, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.023682725, 0.036185615, 0.0370456, - 0.020771999, 0.005358382, 0.001455363, 6.615286e-5, 0.0, 0.0, 0.0, - 0.041676305, 0.086064875, 0.08844638, 0.052326914, 0.019448942, - 0.004299936, 0.0003307643, 6.615286e-5, 0.0, 0.0, 0.050673094, - 0.101610795, 0.12668273, 0.08950482, 0.038170204, 0.008004497, - 0.001455363, 6.615286e-5, 0.0, 0.0, 0.029173413, 0.07686963, 0.09956006, - 0.08130187, 0.04114708, 0.011709057, 0.0030430318, 0.00013230572, 0.0, - 0.0, 0.010782917, 0.03188568, 0.049350034, 0.046108544, 0.030562622, - 0.010253694, 0.0027122675, 0.00026461144, 0.0, 0.0, 0.0019845858, - 0.007673732, 0.014818241, 0.017265897, 0.013362878, 0.0051599233, - 0.0018522801, 0.00013230572, 6.615286e-5, 0.0, 0.00019845858, - 0.0010584458, 0.0026461144, 0.003903019, 0.003307643, 0.00231535, - 0.0009922929, 0.0005953758, 0.0, 0.0, 0.00013230572, 6.615286e-5, - 0.00026461144, 0.0009922929, 0.0007276815, 0.0010584458, 0.00026461144, - 0.00013230572, 0.0, 0.0, 0.0, 0.0, 6.615286e-5, 6.615286e-5, - 0.00013230572, 0.0003307643, 0.0, 6.615286e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.011642904, 0.022359667, - 0.027188826, 0.014619783, 0.005358382, 0.0012569044, 0.00019845858, 0.0, - 0.0, 0.0, 0.026659604, 0.053914584, 0.0658221, 0.052393068, 0.02057354, - 0.0044983947, 0.0009922929, 6.615286e-5, 0.0, 0.0, 0.03327489, - 0.079118825, 0.115899816, 0.09440014, 0.044719335, 0.013296725, - 0.0025799617, 0.00039691717, 0.0, 0.0, 0.025270393, 0.06727746, - 0.11133527, 0.103926145, 0.062448304, 0.022888891, 0.005226076, - 0.0009922929, 0.00026461144, 0.0, 0.009592165, 0.031753372, 0.06562364, - 0.07402506, 0.057420686, 0.029041108, 0.010782917, 0.002447656, - 0.0003307643, 0.0, 0.002381503, 0.008864484, 0.021896597, 0.029636482, - 0.037244063, 0.025138088, 0.010055236, 0.0027122675, 0.00039691717, - 6.615286e-5, 0.0003307643, 0.0016538216, 0.005292229, 0.010253694, - 0.017464356, 0.013561337, 0.0075414265, 0.0019845858, 0.00079383433, - 0.0, 0.0, 0.00019845858, 0.0005953758, 0.00231535, 0.004763006, - 0.0041676303, 0.0035722547, 0.0012569044, 0.00026461144, 0.0, 0.0, 0.0, - 0.00026461144, 0.00019845858, 0.0007276815, 0.0010584458, 0.0008599872, - 0.00046307003, 6.615286e-5, 0.0, 0.0, 0.0, 0.0, 6.615286e-5, 0.0, - 6.615286e-5, 0.0, 0.00019845858, 0.0, 0.0, 0.003307643, 0.0071445093, - 0.009658318, 0.0075414265, 0.0031753373, 0.00039691717, 0.00026461144, - 0.0, 0.0, 0.0, 0.009393707, 0.021631986, 0.030231858, 0.02725498, - 0.012569044, 0.0041676303, 0.00092614006, 0.0, 0.0, 0.0, 0.013825948, - 0.04108093, 0.060860634, 0.061786775, 0.035259478, 0.013825948, - 0.002910726, 0.0006615286, 0.0, 0.0, 0.011642904, 0.03605331, - 0.07177585, 0.08335261, 0.06509442, 0.03373796, 0.012039821, - 0.002844573, 0.00019845858, 6.615286e-5, 0.0051599233, 0.022624278, - 0.051599234, 0.07706808, 0.08110341, 0.05801606, 0.026064228, - 0.00807065, 0.001455363, 6.615286e-5, 0.0009922929, 0.008136802, - 0.023748878, 0.051863845, 0.069460504, 0.06377136, 0.033671807, - 0.012569044, 0.0031753373, 0.0006615286, 0.0003307643, 0.0013892101, - 0.008467566, 0.01918433, 0.037111755, 0.041940916, 0.030231858, - 0.012569044, 0.0026461144, 0.00079383433, 0.0, 0.00026461144, - 0.0015215159, 0.005226076, 0.011841362, 0.017662814, 0.013958254, - 0.006813745, 0.0021168916, 0.0005953758, 0.0, 0.00013230572, - 0.00013230572, 0.0011907516, 0.0026461144, 0.0050937706, 0.004432242, - 0.003307643, 0.00092614006, 0.0003307643, 0.0, 0.0, 0.00013230572, - 0.00013230572, 0.00013230572, 0.0005292229, 0.00092614006, 0.0003307643, - 0.0008599872, 0.00019845858, 0.0007276815, 0.0011907516, 0.002513809, - 0.0018522801, 0.0007276815, 0.0003307643, 0.0, 0.00013230572, 0.0, 0.0, - 0.001455363, 0.004233783, 0.0092614, 0.007607579, 0.0050937706, - 0.0015876687, 0.0010584458, 6.615286e-5, 0.0, 0.0, 0.0027122675, - 0.008996789, 0.018655108, 0.026990369, 0.017993579, 0.009922929, - 0.0039691716, 0.00079383433, 0.00013230572, 0.0, 0.0027784202, - 0.011841362, 0.028181119, 0.044917796, 0.048225436, 0.036582533, - 0.0143551715, 0.0049614646, 0.0013892101, 6.615286e-5, 0.0021830446, - 0.009062942, 0.028048813, 0.061125245, 0.08851253, 0.072702, 0.04068401, - 0.014752088, 0.001918433, 0.00013230572, 0.00079383433, 0.0033737961, - 0.01825819, 0.045910086, 0.08983559, 0.09526012, 0.06826975, - 0.029239565, 0.006615286, 0.0011907516, 0.00013230572, 0.0013230572, - 0.0071445093, 0.028974954, 0.063506745, 0.08169878, 0.0658221, - 0.034002572, 0.012105974, 0.0025799617, 0.0, 0.00019845858, 0.001918433, - 0.00945986, 0.025865769, 0.041874763, 0.044917796, 0.02957033, - 0.013098267, 0.004299936, 0.0, 0.00013230572, 0.0005953758, 0.002381503, - 0.0071445093, 0.014487477, 0.017662814, 0.016008994, 0.009526012, - 0.0037045602, 0.0, 6.615286e-5, 0.00013230572, 0.0003307643, - 0.0012569044, 0.0021830446, 0.0046968535, 0.0060860636, 0.0039691716, - 0.0016538216, 0.00013230572, 0.00013230572, 0.0003307643, 0.00019845858, - 0.00019845858, 0.00013230572, 0.0, 0.0, 0.0, 0.0, 0.00039691717, - 0.0008599872, 0.0015876687, 0.0015876687, 0.0015215159, 0.0009922929, - 0.00013230572, 6.615286e-5, 0.0, 0.0, 0.0003307643, 0.001918433, - 0.0039691716, 0.0060199103, 0.008732178, 0.0055568404, 0.0027784202, - 0.00092614006, 0.0, 0.0, 0.00046307003, 0.00231535, 0.007739885, - 0.016736675, 0.022822738, 0.024344254, 0.013230572, 0.004763006, - 0.0005953758, 0.00019845858, 0.0006615286, 0.002910726, 0.009129095, - 0.03380411, 0.05708992, 0.06304368, 0.046174698, 0.017927425, - 0.0049614646, 0.00079383433, 0.00013230572, 0.0015876687, 0.008864484, - 0.03783944, 0.07706808, 0.10260309, 0.08712332, 0.046042394, - 0.015612076, 0.003903019, 6.615286e-5, 0.00092614006, 0.005424535, - 0.024608865, 0.062712915, 0.10564612, 0.11226141, 0.07422351, - 0.03539178, 0.008996789, 6.615286e-5, 6.615286e-5, 0.0021830446, - 0.00945986, 0.033870265, 0.06793899, 0.08943867, 0.08216186, 0.04710084, - 0.01872126, 0.0, 0.0, 6.615286e-5, 0.0026461144, 0.01223828, - 0.028842648, 0.051400773, 0.05563456, 0.04015479, 0.017332051, 0.0, 0.0, - 6.615286e-5, 0.00026461144, 0.0021168916, 0.008533719, 0.018324343, - 0.025138088, 0.02447656, 0.010319847, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.615286e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 6.615286e-5, 6.615286e-5, - 0.00039691717, 0.0005292229, 0.00026461144, 6.615286e-5, 6.615286e-5, - 0.0, 0.0, 6.615286e-5, 0.00019845858, 0.00079383433, 0.0009922929, - 0.0022491973, 0.0013892101, 0.0005953758, 0.00026461144, 6.615286e-5, - 0.0, 6.615286e-5, 0.00013230572, 0.0021830446, 0.0033737961, - 0.008269108, 0.009790624, 0.007210662, 0.0036384074, 0.00079383433, - 0.00019845858, 6.615286e-5, 0.0005953758, 0.003307643, 0.011113681, - 0.02474117, 0.032745667, 0.027122675, 0.015082853, 0.005424535, - 0.0011907516, 0.0, 0.00046307003, 0.0039691716, 0.016207451, - 0.041279387, 0.06780668, 0.07237123, 0.048357744, 0.02169814, - 0.007607579, 6.615286e-5, 0.00026461144, 0.002447656, 0.010782917, - 0.043065514, 0.08884329, 0.1131214, 0.10584458, 0.06079448, 0.025336547, - 0.0, 0.0, 0.0005953758, 0.006879898, 0.028114967, 0.07323122, - 0.12661658, 0.15287927, 0.1108722, 0.047497757, 0.0, 0.00013230572, - 0.0005292229, 0.001918433, 0.012172127, 0.0392948, 0.09625242, - 0.13157804, 0.1131214, 0.051863845, 0.0, 0.0, 0.0, 0.00019845858, - 0.0033737961, 0.01455363, 0.041874763, 0.07223893, 0.064829804, - 0.03254721, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 6.615286e-5, 0.00013230572, 0.00013230572, 6.615286e-5, 0.0, 0.0, - 0.0, 0.0, 6.615286e-5, 0.0, 0.00013230572, 0.00039691717, 0.00046307003, - 0.00013230572, 6.615286e-5, 0.0, 0.0, 0.0, 0.0, 0.00026461144, - 0.0010584458, 0.0019845858, 0.0031753373, 0.0017861273, 0.0011907516, - 0.0005953758, 0.00013230572, 0.0, 6.615286e-5, 0.0005292229, 0.00231535, - 0.0067475922, 0.011312139, 0.012370585, 0.009195248, 0.0037707132, - 0.0015215159, 0.0, 6.615286e-5, 0.0005953758, 0.0041676303, 0.01177521, - 0.026858062, 0.03949326, 0.034928713, 0.019912012, 0.007078356, 0.0, - 0.0, 0.00046307003, 0.004035325, 0.018192038, 0.04557932, 0.08983559, - 0.09969237, 0.071511246, 0.032216445, 0.0, 0.0, 0.00039691717, - 0.0029768788, 0.014289019, 0.052789986, 0.12370586, 0.17728968, - 0.1444117, 0.0680713, 0.0, 0.0, 6.615286e-5, 0.0015876687, 0.009062942, - 0.042403985, 0.10935068, 0.18350804, 0.16657291, 0.087057166, 0.0, 0.0, - 0.0, 0.00013230572, 0.0037045602, 0.017728968, 0.055105336, 0.10075081, - 0.10273539, 0.05292229, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.615286e-5, 0.00013230572, 0.0, 0.0, 6.615286e-5, 0.0, 0.0, 0.0, 0.0, - 6.615286e-5, 0.00019845858, 0.00013230572, 0.00026461144, 0.0005292229, - 0.00013230572, 0.0003307643, 6.615286e-5, 0.0, 0.0, 6.615286e-5, - 0.0003307643, 0.0009922929, 0.0030430318, 0.0031753373, 0.0035722547, - 0.0016538216, 0.0007276815, 0.0, 6.615286e-5, 0.00013230572, - 0.00092614006, 0.0031091846, 0.0070122033, 0.013429031, 0.017927425, - 0.012569044, 0.0049614646, 0.0, 0.0, 6.615286e-5, 0.00092614006, - 0.0051599233, 0.01660437, 0.040287092, 0.05887605, 0.049283884, - 0.022955043, 0.0, 0.0, 6.615286e-5, 0.0006615286, 0.0060199103, - 0.026990369, 0.07223893, 0.122647405, 0.1131214, 0.053980738, 0.0, 0.0, - 6.615286e-5, 0.00046307003, 0.0033737961, 0.02169814, 0.07323122, - 0.13349648, 0.13951638, 0.07018819, 0.0, 0.0, 0.0, 0.00013230572, - 0.002910726, 0.010915223, 0.04081632, 0.0785896, 0.085734114, + 0.014156712, + 0.020441234, + 0.01455363, + 0.008467566, + 0.002513809, + 0.00019845858, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.020044317, + 0.037111755, + 0.02910726, + 0.0161413, + 0.004432242, + 0.00092614006, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.019448942, + 0.032944124, + 0.031025693, + 0.017596662, + 0.005887605, + 0.0007276815, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.0, + 0.011312139, + 0.017927425, + 0.019845858, + 0.011378292, + 0.004299936, + 0.0011907516, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.002844573, + 0.006681439, + 0.006615286, + 0.0041014776, + 0.0015215159, + 0.0007276815, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0009922929, + 0.0007276815, + 0.00092614006, + 0.0016538216, + 0.0008599872, + 0.0, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.00013230572, + 0.00013230572, + 0.0003307643, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.02216121, + 0.035656393, + 0.030231858, + 0.015281311, + 0.005358382, + 0.0006615286, + 0.0, + 0.0, + 0.0, + 0.0, + 0.042007066, + 0.07356198, + 0.06674824, + 0.036582533, + 0.012436738, + 0.0021168916, + 0.00013230572, + 0.0, + 0.0, + 0.0, + 0.041940916, + 0.07554657, + 0.08064034, + 0.049746953, + 0.0196474, + 0.003307643, + 0.0008599872, + 0.0, + 0.0, + 0.0, + 0.022028903, + 0.048159283, + 0.057420686, + 0.041543998, + 0.014487477, + 0.0036384074, + 0.0005292229, + 6.615286e-05, + 0.0, + 0.0, + 0.0074091204, + 0.018324343, + 0.025998075, + 0.018853566, + 0.008136802, + 0.0029768788, + 0.0005292229, + 6.615286e-05, + 0.0, + 0.0, + 0.0011907516, + 0.003439949, + 0.006681439, + 0.005689146, + 0.0027122675, + 0.0008599872, + 0.0003307643, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.00013230572, + 0.00019845858, + 0.0011245987, + 0.0010584458, + 0.00079383433, + 0.00039691717, + 0.0003307643, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 6.615286e-05, + 0.00013230572, + 6.615286e-05, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.023682725, + 0.036185615, + 0.0370456, + 0.020771999, + 0.005358382, + 0.001455363, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.041676305, + 0.086064875, + 0.08844638, + 0.052326914, + 0.019448942, + 0.004299936, + 0.0003307643, + 6.615286e-05, + 0.0, + 0.0, + 0.050673094, + 0.101610795, + 0.12668273, + 0.08950482, + 0.038170204, + 0.008004497, + 0.001455363, + 6.615286e-05, + 0.0, + 0.0, + 0.029173413, + 0.07686963, + 0.09956006, + 0.08130187, + 0.04114708, + 0.011709057, + 0.0030430318, + 0.00013230572, + 0.0, + 0.0, + 0.010782917, + 0.03188568, + 0.049350034, + 0.046108544, + 0.030562622, + 0.010253694, + 0.0027122675, + 0.00026461144, + 0.0, + 0.0, + 0.0019845858, + 0.007673732, + 0.014818241, + 0.017265897, + 0.013362878, + 0.0051599233, + 0.0018522801, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.00019845858, + 0.0010584458, + 0.0026461144, + 0.003903019, + 0.003307643, + 0.00231535, + 0.0009922929, + 0.0005953758, + 0.0, + 0.0, + 0.00013230572, + 6.615286e-05, + 0.00026461144, + 0.0009922929, + 0.0007276815, + 0.0010584458, + 0.00026461144, + 0.00013230572, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 6.615286e-05, + 0.00013230572, + 0.0003307643, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.011642904, + 0.022359667, + 0.027188826, + 0.014619783, + 0.005358382, + 0.0012569044, + 0.00019845858, + 0.0, + 0.0, + 0.0, + 0.026659604, + 0.053914584, + 0.0658221, + 0.052393068, + 0.02057354, + 0.0044983947, + 0.0009922929, + 6.615286e-05, + 0.0, + 0.0, + 0.03327489, + 0.079118825, + 0.115899816, + 0.09440014, + 0.044719335, + 0.013296725, + 0.0025799617, + 0.00039691717, + 0.0, + 0.0, + 0.025270393, + 0.06727746, + 0.11133527, + 0.103926145, + 0.062448304, + 0.022888891, + 0.005226076, + 0.0009922929, + 0.00026461144, + 0.0, + 0.009592165, + 0.031753372, + 0.06562364, + 0.07402506, + 0.057420686, + 0.029041108, + 0.010782917, + 0.002447656, + 0.0003307643, + 0.0, + 0.002381503, + 0.008864484, + 0.021896597, + 0.029636482, + 0.037244063, + 0.025138088, + 0.010055236, + 0.0027122675, + 0.00039691717, + 6.615286e-05, + 0.0003307643, + 0.0016538216, + 0.005292229, + 0.010253694, + 0.017464356, + 0.013561337, + 0.0075414265, + 0.0019845858, + 0.00079383433, + 0.0, + 0.0, + 0.00019845858, + 0.0005953758, + 0.00231535, + 0.004763006, + 0.0041676303, + 0.0035722547, + 0.0012569044, + 0.00026461144, + 0.0, + 0.0, + 0.0, + 0.00026461144, + 0.00019845858, + 0.0007276815, + 0.0010584458, + 0.0008599872, + 0.00046307003, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.0, + 6.615286e-05, + 0.0, + 0.00019845858, + 0.0, + 0.0, + 0.003307643, + 0.0071445093, + 0.009658318, + 0.0075414265, + 0.0031753373, + 0.00039691717, + 0.00026461144, + 0.0, + 0.0, + 0.0, + 0.009393707, + 0.021631986, + 0.030231858, + 0.02725498, + 0.012569044, + 0.0041676303, + 0.00092614006, + 0.0, + 0.0, + 0.0, + 0.013825948, + 0.04108093, + 0.060860634, + 0.061786775, + 0.035259478, + 0.013825948, + 0.002910726, + 0.0006615286, + 0.0, + 0.0, + 0.011642904, + 0.03605331, + 0.07177585, + 0.08335261, + 0.06509442, + 0.03373796, + 0.012039821, + 0.002844573, + 0.00019845858, + 6.615286e-05, + 0.0051599233, + 0.022624278, + 0.051599234, + 0.07706808, + 0.08110341, + 0.05801606, + 0.026064228, + 0.00807065, + 0.001455363, + 6.615286e-05, + 0.0009922929, + 0.008136802, + 0.023748878, + 0.051863845, + 0.069460504, + 0.06377136, + 0.033671807, + 0.012569044, + 0.0031753373, + 0.0006615286, + 0.0003307643, + 0.0013892101, + 0.008467566, + 0.01918433, + 0.037111755, + 0.041940916, + 0.030231858, + 0.012569044, + 0.0026461144, + 0.00079383433, + 0.0, + 0.00026461144, + 0.0015215159, + 0.005226076, + 0.011841362, + 0.017662814, + 0.013958254, + 0.006813745, + 0.0021168916, + 0.0005953758, + 0.0, + 0.00013230572, + 0.00013230572, + 0.0011907516, + 0.0026461144, + 0.0050937706, + 0.004432242, + 0.003307643, + 0.00092614006, + 0.0003307643, + 0.0, + 0.0, + 0.00013230572, + 0.00013230572, + 0.00013230572, + 0.0005292229, + 0.00092614006, + 0.0003307643, + 0.0008599872, + 0.00019845858, + 0.0007276815, + 0.0011907516, + 0.002513809, + 0.0018522801, + 0.0007276815, + 0.0003307643, + 0.0, + 0.00013230572, + 0.0, + 0.0, + 0.001455363, + 0.004233783, + 0.0092614, + 0.007607579, + 0.0050937706, + 0.0015876687, + 0.0010584458, + 6.615286e-05, + 0.0, + 0.0, + 0.0027122675, + 0.008996789, + 0.018655108, + 0.026990369, + 0.017993579, + 0.009922929, + 0.0039691716, + 0.00079383433, + 0.00013230572, + 0.0, + 0.0027784202, + 0.011841362, + 0.028181119, + 0.044917796, + 0.048225436, + 0.036582533, + 0.0143551715, + 0.0049614646, + 0.0013892101, + 6.615286e-05, + 0.0021830446, + 0.009062942, + 0.028048813, + 0.061125245, + 0.08851253, + 0.072702, + 0.04068401, + 0.014752088, + 0.001918433, + 0.00013230572, + 0.00079383433, + 0.0033737961, + 0.01825819, + 0.045910086, + 0.08983559, + 0.09526012, + 0.06826975, + 0.029239565, + 0.006615286, + 0.0011907516, + 0.00013230572, + 0.0013230572, + 0.0071445093, + 0.028974954, + 0.063506745, + 0.08169878, + 0.0658221, + 0.034002572, + 0.012105974, + 0.0025799617, + 0.0, + 0.00019845858, + 0.001918433, + 0.00945986, + 0.025865769, + 0.041874763, + 0.044917796, + 0.02957033, + 0.013098267, + 0.004299936, + 0.0, + 0.00013230572, + 0.0005953758, + 0.002381503, + 0.0071445093, + 0.014487477, + 0.017662814, + 0.016008994, + 0.009526012, + 0.0037045602, + 0.0, + 6.615286e-05, + 0.00013230572, + 0.0003307643, + 0.0012569044, + 0.0021830446, + 0.0046968535, + 0.0060860636, + 0.0039691716, + 0.0016538216, + 0.00013230572, + 0.00013230572, + 0.0003307643, + 0.00019845858, + 0.00019845858, + 0.00013230572, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00039691717, + 0.0008599872, + 0.0015876687, + 0.0015876687, + 0.0015215159, + 0.0009922929, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.0, + 0.0003307643, + 0.001918433, + 0.0039691716, + 0.0060199103, + 0.008732178, + 0.0055568404, + 0.0027784202, + 0.00092614006, + 0.0, + 0.0, + 0.00046307003, + 0.00231535, + 0.007739885, + 0.016736675, + 0.022822738, + 0.024344254, + 0.013230572, + 0.004763006, + 0.0005953758, + 0.00019845858, + 0.0006615286, + 0.002910726, + 0.009129095, + 0.03380411, + 0.05708992, + 0.06304368, + 0.046174698, + 0.017927425, + 0.0049614646, + 0.00079383433, + 0.00013230572, + 0.0015876687, + 0.008864484, + 0.03783944, + 0.07706808, + 0.10260309, + 0.08712332, + 0.046042394, + 0.015612076, + 0.003903019, + 6.615286e-05, + 0.00092614006, + 0.005424535, + 0.024608865, + 0.062712915, + 0.10564612, + 0.11226141, + 0.07422351, + 0.03539178, + 0.008996789, + 6.615286e-05, + 6.615286e-05, + 0.0021830446, + 0.00945986, + 0.033870265, + 0.06793899, + 0.08943867, + 0.08216186, + 0.04710084, + 0.01872126, + 0.0, + 0.0, + 6.615286e-05, + 0.0026461144, + 0.01223828, + 0.028842648, + 0.051400773, + 0.05563456, + 0.04015479, + 0.017332051, + 0.0, + 0.0, + 6.615286e-05, + 0.00026461144, + 0.0021168916, + 0.008533719, + 0.018324343, + 0.025138088, + 0.02447656, + 0.010319847, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 6.615286e-05, + 0.00039691717, + 0.0005292229, + 0.00026461144, + 6.615286e-05, + 6.615286e-05, + 0.0, + 0.0, + 6.615286e-05, + 0.00019845858, + 0.00079383433, + 0.0009922929, + 0.0022491973, + 0.0013892101, + 0.0005953758, + 0.00026461144, + 6.615286e-05, + 0.0, + 6.615286e-05, + 0.00013230572, + 0.0021830446, + 0.0033737961, + 0.008269108, + 0.009790624, + 0.007210662, + 0.0036384074, + 0.00079383433, + 0.00019845858, + 6.615286e-05, + 0.0005953758, + 0.003307643, + 0.011113681, + 0.02474117, + 0.032745667, + 0.027122675, + 0.015082853, + 0.005424535, + 0.0011907516, + 0.0, + 0.00046307003, + 0.0039691716, + 0.016207451, + 0.041279387, + 0.06780668, + 0.07237123, + 0.048357744, + 0.02169814, + 0.007607579, + 6.615286e-05, + 0.00026461144, + 0.002447656, + 0.010782917, + 0.043065514, + 0.08884329, + 0.1131214, + 0.10584458, + 0.06079448, + 0.025336547, + 0.0, + 0.0, + 0.0005953758, + 0.006879898, + 0.028114967, + 0.07323122, + 0.12661658, + 0.15287927, + 0.1108722, + 0.047497757, + 0.0, + 0.00013230572, + 0.0005292229, + 0.001918433, + 0.012172127, + 0.0392948, + 0.09625242, + 0.13157804, + 0.1131214, + 0.051863845, + 0.0, + 0.0, + 0.0, + 0.00019845858, + 0.0033737961, + 0.01455363, + 0.041874763, + 0.07223893, + 0.064829804, + 0.03254721, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.00013230572, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.0, + 0.00013230572, + 0.00039691717, + 0.00046307003, + 0.00013230572, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00026461144, + 0.0010584458, + 0.0019845858, + 0.0031753373, + 0.0017861273, + 0.0011907516, + 0.0005953758, + 0.00013230572, + 0.0, + 6.615286e-05, + 0.0005292229, + 0.00231535, + 0.0067475922, + 0.011312139, + 0.012370585, + 0.009195248, + 0.0037707132, + 0.0015215159, + 0.0, + 6.615286e-05, + 0.0005953758, + 0.0041676303, + 0.01177521, + 0.026858062, + 0.03949326, + 0.034928713, + 0.019912012, + 0.007078356, + 0.0, + 0.0, + 0.00046307003, + 0.004035325, + 0.018192038, + 0.04557932, + 0.08983559, + 0.09969237, + 0.071511246, + 0.032216445, + 0.0, + 0.0, + 0.00039691717, + 0.0029768788, + 0.014289019, + 0.052789986, + 0.12370586, + 0.17728968, + 0.1444117, + 0.0680713, + 0.0, + 0.0, + 6.615286e-05, + 0.0015876687, + 0.009062942, + 0.042403985, + 0.10935068, + 0.18350804, + 0.16657291, + 0.087057166, + 0.0, + 0.0, + 0.0, + 0.00013230572, + 0.0037045602, + 0.017728968, + 0.055105336, + 0.10075081, + 0.10273539, + 0.05292229, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.00013230572, + 0.0, + 0.0, + 6.615286e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 6.615286e-05, + 0.00019845858, + 0.00013230572, + 0.00026461144, + 0.0005292229, + 0.00013230572, + 0.0003307643, + 6.615286e-05, + 0.0, + 0.0, + 6.615286e-05, + 0.0003307643, + 0.0009922929, + 0.0030430318, + 0.0031753373, + 0.0035722547, + 0.0016538216, + 0.0007276815, + 0.0, + 6.615286e-05, + 0.00013230572, + 0.00092614006, + 0.0031091846, + 0.0070122033, + 0.013429031, + 0.017927425, + 0.012569044, + 0.0049614646, + 0.0, + 0.0, + 6.615286e-05, + 0.00092614006, + 0.0051599233, + 0.01660437, + 0.040287092, + 0.05887605, + 0.049283884, + 0.022955043, + 0.0, + 0.0, + 6.615286e-05, + 0.0006615286, + 0.0060199103, + 0.026990369, + 0.07223893, + 0.122647405, + 0.1131214, + 0.053980738, + 0.0, + 0.0, + 6.615286e-05, + 0.00046307003, + 0.0033737961, + 0.02169814, + 0.07323122, + 0.13349648, + 0.13951638, + 0.07018819, + 0.0, + 0.0, + 0.0, + 0.00013230572, + 0.002910726, + 0.010915223, + 0.04081632, + 0.0785896, + 0.085734114, 0.045645475 ] }, diff --git a/common/search/src/test/resources/test_documents/images.similar-features.3.json b/common/search/src/test/resources/test_documents/images.similar-features.3.json index 195ad3cad..cce4fcfca 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.3.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.3.json @@ -158,17 +158,33 @@ "id": "axgvzf2c", "source": { "alternativeTitles": [], - "contributors.agent.label": ["Tappen, George, approximately 1771-1830"], + "contributors.agent.label": [ + "Tappen, George, approximately 1771-1830" + ], "description": "

Built by George Tappen in Copenhagen Fields in 1828

", - "genres.concepts.label": ["Etchings"], + "genres.concepts.label": [ + "Etchings" + ], "id": "r96md8s8", "sourceIdentifier.value": "b11820020", - "identifiers.value": ["b11820020", "1182002", "24150i", "V0014752"], + "identifiers.value": [ + "b11820020", + "1182002", + "24150i", + "V0014752" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["nk6tjx5t"], - "items.identifiers.value": ["i12037813", "1203781"], - "languages.label": ["English"], + "items.id": [ + "nk6tjx5t" + ], + "items.identifiers.value": [ + "i12037813", + "1203781" + ], + "languages.label": [ + "English" + ], "lettering": "Caledonian Asylum", "notes.contents": [ "B. Adams, London illustrated, London, 1983", @@ -203,12 +219,18 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], + "locations.license.id": [ + "pdm" + ], "source.contributors.agent.label": [ "Tappen, George, approximately 1771-1830" ], - "source.genres.label": ["Etchings"], - "source.genres.concepts.id": ["yfqryj26"], + "source.genres.label": [ + "Etchings" + ], + "source.genres.concepts.id": [ + "yfqryj26" + ], "source.subjects.label": [ "Asylums", "London (England)", @@ -217,1093 +239,5105 @@ "source.production.dates.range.from": [] }, "vectorValues": { - "features1": [ - -0.9037517, -3.460741, -1.9130812, -1.5060941, -1.702392, -2.9210126, - -1.0298799, 0.3892202, -1.1436703, 0.4151131, -0.03582672, 2.1127927, - -1.3669355, -0.46466497, -0.81002134, -1.447373, -0.7039299, 0.18805942, - -0.86632097, 1.2217511, -1.9562082, -1.2863383, -1.1914295, - -0.064113066, 0.23177645, -1.1075547, 0.235875, 0.3239248, -2.0094926, - -0.9786233, -0.5225371, -0.74497193, -1.4832797, -1.0256716, -0.3395374, - -1.0311669, 0.75991356, 1.9604309, -1.8277177, -2.4633596, -0.97839755, - -1.3867038, 0.5591327, 2.7469602, -1.4573661, -0.21125576, 0.8788611, - 0.60183346, -1.389416, -1.4011928, 0.33170938, 1.2586325, 0.5274256, - 0.10880174, -1.6922932, -2.676052, 0.5208625, -1.0254089, -0.08882788, - -1.2856425, 0.02645671, -1.2616735, 1.3026512, -0.3154172, 0.957264, - -0.8816841, -1.6324853, -1.858993, 0.344565, -1.1480695, 0.8444357, - -0.8206389, 0.23551062, 0.036074605, 0.52242327, 0.15919723, -0.8893285, - -2.3772418, 0.8601006, -1.8108155, 1.4241791, 0.03586011, -0.65513194, - -0.24763545, 0.5804661, 0.2588547, -0.66169524, -0.38919654, 2.3135972, - -0.2669441, -1.5544925, 0.25778064, -0.4624485, 0.115113996, 0.7252973, - -0.50582796, -2.442535, -0.28059068, -1.2754565, 0.44637, -2.089927, - 1.4049757, 0.6336648, -1.2647865, 0.16716588, 0.61495024, 0.91666317, - 0.387397, 1.7183022, -2.5838592, -0.82737446, -0.42697227, -0.92370313, - 0.17973608, -1.4683905, 0.77423567, -0.6706814, -3.8931854, -0.5083657, - -1.4945401, 0.19641747, 2.7074823, 0.8241637, -0.21427737, -1.9402452, - -0.03873188, 0.26484203, -0.10357269, -0.5251198, -2.0268168, - -0.5691249, -1.9068763, -0.015152756, -1.0279641, -1.0288757, - -0.058902822, 1.144343, -2.4999177, -0.8786278, -0.48355246, -1.6407452, - -0.57912946, 0.6980493, -0.8343652, -1.2117568, -0.70221156, - 0.042880822, 0.06795722, -2.0992868, -0.18002981, -1.4021373, - -0.18835655, -0.07869906, -0.10020493, 1.8483664, -0.29521054, - -0.427601, 0.5719016, -0.9471983, -1.7111359, -1.4246913, 1.0232328, - -0.3340739, 0.7625279, -0.070374504, -0.9966366, -0.62142676, - -0.11461963, -1.4838558, 1.1217331, -1.8869096, -1.2913634, -0.9955883, - -0.47486278, -0.41103932, 0.950084, 0.5015535, 0.100608855, 1.3120528, - -2.3809187, 0.9182634, 0.23723489, -0.4225684, -0.3543485, -0.25845012, - -1.8599504, -0.6436638, -1.609184, -1.5032988, -0.29119474, 1.5782083, - 1.1871856, -1.2568514, -1.6068105, -0.5942256, 0.3382247, 2.0273097, - 2.413681, 1.5755194, -0.2779112, -0.32789707, -1.150722, -0.9881852, - -1.4853207, -1.0409609, -0.66805935, -1.4094348, -1.304876, 1.2366735, - -0.76208454, 1.668421, -2.3814569, -1.5331961, -2.394737, -0.0045524836, - -1.2916006, 2.253064, -0.27800363, -2.4904635, -0.15993023, -0.47272184, - 0.3476767, 0.11217295, -2.3538654, 1.1182588, -2.2810588, -0.97454894, - 1.0537359, -0.11693452, -0.73058236, 0.6527505, -0.59372663, - -0.106915906, -0.0003112182, -1.1827078, 0.24019365, -1.4039916, - 0.40531844, -1.268123, -0.08672012, 0.44239512, -1.2107716, -0.8030725, - -0.862471, 0.25814256, 0.66563135, -0.50792474, -0.40392858, 0.23937245, - -1.0599288, -1.7928016, 1.3098794, 0.32561767, 0.049500976, -1.1678439, - -1.6632172, -1.7687902, 0.29812655, -0.24720359, 0.8051639, -1.6392258, - -1.4110291, 0.013346117, 0.22189519, -0.6463776, -0.055609725, - -0.6995886, -0.9840193, -0.18826589, 0.89945716, 3.0113554, -2.772549, - -0.87009203, -0.5627137, -1.4507123, 0.7703945, -1.2097151, -1.980248, - -0.8549807, -1.4129703, -1.0782366, -1.877011, -0.62788516, -3.005104, - 1.1226447, 0.14124608, -0.29272783, -2.095231, -0.7910788, 0.29393035, - 0.10055201, 0.16005543, -0.3532039, -0.3413245, -2.6387408, -0.48041016, - 0.7881658, -1.0345341, 2.0910766, -0.48711568, 2.4016647, -2.7716208, - -1.845943, 0.29004264, -1.7789751, -2.2999933, 0.2961384, -0.17621672, - -1.149758, 0.814626, 1.8435562, -0.93459165, -1.2853385, 1.1994898, - 1.7882572, 0.24967465, 0.50324255, 0.20026189, -0.4229368, 0.6547828, - -0.03288804, 0.38786787, -0.63430506, 1.811105, -1.3850607, -3.4794781, - 0.49517465, 0.061788112, -0.67461234, -1.6902218, 0.32046115, - -0.57386076, -1.4013186, -0.37818992, -0.74596214, 0.5956997, 1.8129191, - 1.5232854, -1.0798603, -2.2028313, 1.3114188, -0.43457013, -0.9485543, - -0.09444943, -0.48296696, -1.9304004, 1.8463463, -2.4939094, 0.09285572, - -0.61533564, -1.3505226, 2.2992003, 0.7402564, -0.79853153, 0.5448312, - -1.0524273, -0.21109016, 1.3378376, -0.6888067, -1.228909, -2.1709418, - 0.9101999, -0.407729, -0.6231702, -1.8205646, 0.52771676, -1.4394748, - -0.64903337, -1.6227524, -0.8526797, -0.88699067, 1.7606267, -1.3717109, - 0.5058456, 2.3865883, 0.0433156, -2.1126611, -1.7306541, -1.7239848, - 0.5902635, -0.22688523, -0.83863616, 2.1759088, -0.5543598, 1.6256243, - 1.9132957, 1.5850385, -0.99096966, 0.24397156, 0.7791005, 0.07441633, - -1.5178041, -0.26632163, -0.057654075, -2.5724802, -1.2264202, - -0.17670693, -0.2373493, -0.30431822, -0.34975302, -0.7209703, - -1.7876685, -0.6019635, -0.8576952, -1.9165807, -0.89106226, - -0.48058888, -0.246841, -0.81986403, -0.50021505, -0.11506031, - 0.46198794, -0.07083847, 0.4978286, -0.17445412, 0.4936663, 0.12479244, - -1.5038639, 0.2767276, -1.0052284, -0.113392845, 0.41301724, - -0.06306656, -0.69425, -0.96077776, -1.7046505, -1.9417002, 0.11002764, - 1.3329929, -0.584235, -0.82480747, 0.46897802, -1.0706956, 0.531388, - -0.63746256, -0.65500915, -0.9639783, 0.64591575, -0.8023488, - -0.95769876, -1.6534868, -0.8536058, -0.3673941, 0.27654892, -2.229916, - 2.9557226, -1.1599709, -0.93195444, -0.15584223, -0.312255, -2.2749505, - -1.7202286, -0.68145126, -0.25479004, -2.032197, -2.0545866, 0.481331, - 0.8402612, -2.2311735, 1.8399476, -1.5015022, -3.9765406, -0.7013741, - 0.5498433, -1.3839962, 0.77660173, 0.41974765, -1.2446891, -0.12502365, - 0.0663489, -2.0781934, -1.812591, -0.06790772, -0.06837559, -1.1264592, - -2.1002905, -1.7145543, 0.22282368, -0.3164032, 0.5810469, -2.265566, - -0.8753399, -0.6756731, 0.4091879, -1.5080595, -1.363717, 0.2296782, - 1.9311848, 1.8743378, -1.1771319, -2.4254615, -1.2447603, -1.1348312, - 0.2484858, -1.247223, -0.7518668, 1.6838608, -0.26635444, -1.2285863, - -0.11969455, -0.6667023, -2.6175892, -1.0769651, -0.80949366, 1.161047, - -1.381639, 0.9968779, 1.090503, -0.6946825, 0.93158114, -0.54079, - -0.40850705, -0.61996734, -0.61730963, -2.2636054, 0.3845926, 1.3472264, - -1.494798, -1.5355229, 1.7338479, 1.2375865, -0.72974306, 0.3700702, - 0.6469827, -0.3171253, 0.8337606, -0.68105745, -1.5722582, 0.54015267, - -0.84008354, -1.246438, 1.1109111, -1.1413313, -0.28016526, -0.21682683, - -0.80869055, -1.740911, -2.152523, -1.2118664, -0.87981075, 0.19248244, - 0.8065504, -1.3717815, 0.20281997, -1.1276572, 1.052656, 0.34792483, - 1.7793646, -0.22775204, -1.0139985, 0.621942, 0.8421019, -0.6858236, - 0.1634978, -0.5603367, 0.28804353, 0.27944577, -0.16612205, -0.15217894, - -2.3104284, 0.55373853, -0.45865363, -0.20684198, -1.7526594, - 0.43456775, 0.50987107, 0.30607188, -0.52422595, -1.2746664, -0.910068, - -1.1126891, -0.99564016, -1.2756857, 0.9389862, -1.0225507, -1.6996422, - 0.62455237, -1.703197, -0.3275575, -1.1102262, 0.2995971, -1.0811459, - -0.25451332, 0.48346907, -3.5848372, -0.96501553, -1.6990371, - -0.51320845, 0.17121652, -0.8560064, -0.899197, -0.32441112, 2.2221842, - 0.49967414, 0.143235, -0.18385679, -1.274024, 1.1866612, -2.4054894, - 0.94387656, -1.4669152, 0.73273635, -0.45130664, -0.22416979, - 0.82223856, -2.2334638, -2.3735151, -2.3414338, 0.016891327, -1.3752767, - -1.015885, -0.35766077, 0.092790194, -1.0282673, -2.087048, -0.22664791, - 0.6514197, -0.4825908, -0.52409923, -0.73123145, -2.2959628, 0.14626351, - 0.22776613, 1.007171, -0.33991924, -0.9903909, -0.78349054, 1.7539413, - -0.6234521, 0.42111126, -1.2650868, -1.1954057, -1.7256296, -0.39866388, - -1.7384864, -0.6848684, -0.96948403, -1.3263406, -1.2710474, -1.556712, - -2.0343153, 1.8505739, -0.9048539, -2.117775, -1.2425286, 1.7632074, - -1.6511943, -1.6090318, -1.3523088, -1.2664803, 1.2038195, -1.3250473, - -0.20094593, -2.8379307, 0.04528425, 0.60693306, -0.73961496, 0.5675723, - -0.09999886, 0.681583, 1.3213923, -2.2124743, -1.778919, -1.6676496, - 0.98332673, -1.270439, 1.842392, -0.42055708, 0.15625714, 1.3025898, - -0.23343307, 2.024184, -1.9157223, 1.3504657, -0.9735356, -0.7151584, - -1.4496243, -1.214941, -0.7226979, -0.8970986, -0.5961245, -0.13884693, - -0.77234715, 0.17150867, -0.34987748, -0.056514133, -1.6127714, - -0.33047572, -1.6430478, -2.5996141, -0.041525476, 1.2714311, - -1.3639975, -1.4517533, -2.4319167, 0.25960508, -0.6717316, -0.8176115, - 1.4313838, -0.06954516, -0.3424117, 0.06617455, -0.7919326, 0.29755616, - -0.918013, -0.4334131, -0.29611802, 0.15502816, -0.108877294, - -0.074943826, -0.5359626, 0.8629952, -0.9563737, -0.7287625, 0.17075181, - -0.9393185, -0.19685784, 0.7465698, -2.5515308, 0.4201513, 1.0161605, - 0.3244587, 0.5039662, 0.14034685, 0.6485175, 0.45852292, -0.97806245, - 0.5689764, -0.79875857, 0.28661248, -1.1260787, -0.46655208, - -0.87423694, 1.4387944, 1.7754204, -1.6978912, 1.3099471, -1.4234202, - -0.5835282, -1.7065487, -0.6484839, -1.7153121, -1.1176497, -2.334153, - -0.25833127, 1.6513951, -1.1043093, -1.5032082, -1.730284, -0.9616304, - 1.3557373, -0.7984158, 1.6848685, -0.720854, 1.4268122, 0.3111881, - -1.5142376, -0.6407164, -1.504911, -2.6190734, -1.051708, -1.44788, - -2.5088859, 0.54572374, -1.3340681, -0.21955875, 0.25327775, - -0.79988605, -0.1615062, 0.7181565, -1.5288267, -1.5652571, 0.8493225, - -1.4113528, -2.496127, -0.9496895, -2.2385774, -2.425271, -0.59349376, - 1.5382173, -2.1096704, -0.9983227, 1.3341316, 0.108727485, 0.5297556, - -1.6625439, -1.469878, -0.17764612, 0.021538287, -1.901825, -1.6332382, - 1.0605508, -0.9662488, -2.2605507, 0.64480466, -2.252802, -2.4109812, - -5.033647, -1.4049937, -1.376563, 2.4511015, 1.040378, 0.5210423, - -0.9311738, 1.2596262, 1.5013252, -0.675199, 0.14816312, -2.2016819, - 0.55998635, -0.6968379, -1.3938688, -1.577766, -1.3091258, 0.89540374, - -0.70440775, 0.82687235, 0.46622282, -0.40797657, -0.47402164, - 1.0550088, -1.0322255, 0.02505051, -1.5581315, -0.2912657, -0.24771231, - 1.3391335, -1.1034116, -0.12670298, -1.974158, -0.23072141, -2.8504486, - -2.0135345, 1.4735006, 0.31943768, -0.21569565, -1.7853912, -1.5720191, - -0.18631817, -0.9254987, -1.598809, -0.3849777, -0.52829945, - -0.93133974, -0.7009075, -1.1374347, 0.04212313, -1.8912725, -1.1117826, - -1.628633, -1.1368215, -0.30596536, -1.2338632, -0.9635522, -0.9489192, - 0.90248185, 1.5504992, 0.45043263, -1.4035246, 0.352754, -0.6898903, - 0.057414755, -3.4726343, 0.7041692, -0.3706739, 0.18780805, -1.105037, - -2.7263777, -2.5909946, -0.9664977, -1.8069721, 0.15083572, 0.41230115, - -2.1242988, 0.23266536, 0.009251285, -0.63810813, -1.1785879, -1.433269, - -0.38138658, -2.3783653, 0.7491461, 0.4695268, -1.153357, -2.075116, - 0.1861546, -0.386387, 0.3900986, 0.61485624, -0.77989626, 0.803792, - -0.16134606, -1.1965135, -1.1601955, -1.7467388, 1.184748, -2.3386815, - 0.06202178, 2.7391262, -1.0987848, -0.34028292, -2.5412202, -1.7152522, - -0.6486586, -0.92963874, -0.46708566, -1.2827966, -0.20929123, - 1.8667876, -1.2299284, -2.1290224, 0.35174406, -2.6334138, -0.348526, - -0.89628416, 1.48945, -2.1227694, 0.8530676, 0.25562248, 0.104955, - -1.1919631, 0.39617372, -0.34754694, -1.5705118, 0.51181406, -1.1436613, - -1.3818327, -1.5116413, -2.0830822, -0.48604408, -0.628795, 0.4947818, - -0.73751235, 0.0056351908, -0.84023964, -0.6563304, -1.6458477, - -0.7899951, -0.17248723, -1.1744623, -0.7553983, -1.7554909, -1.6387368, - 0.20365454, -1.2229445, 1.1029522, 1.8487142, -0.9125705, -0.2093791, - 1.7429703, -0.88075536, -1.9047083, -1.1178436, -1.5146466, -0.4319555, - 0.8780668, 0.049854327, -0.987133, -1.8551725, -0.7001526, -0.34463876, - -1.3835872, -0.87089854, 0.62812907, 0.27049905, 1.6785754, -0.9982102, - -1.0881373, 1.0212677, 0.040645253, -0.6996172, -0.5836307, 0.08605658, - 0.1270994, -2.536935, 1.4657654, -0.6808354, 0.9610449, 2.312264, - -1.2913557, -0.026780348, -0.8514656, 0.37186423, -1.0026071, - -0.98697233, 0.22226273, -0.0057244897, 2.9393036, -0.6885736, - 0.25699914, -0.738834, -3.1939404, -1.1628315, -2.8790555, -0.19285242, - -0.61727357, -0.7456259, 1.3614286, -2.3277056, 0.8700903, -0.86502796, - -0.7515808, -1.9953417, 1.0829282, -2.934186, -1.4179744, -1.9022088, - -1.1312765, -3.0458534, 0.4736883, 0.32943657, 0.33713877, 0.09684097, - 0.39735824, 0.46392787, -2.092426, -0.8195406, 0.29420015, 0.82790756, - -1.2170674, -0.8782734, 0.13100043, 0.7517661, 0.09630425, -0.6885614, - -0.5093769, -1.2738093, -0.6246245, -0.9717005, -0.8825307, 2.2192476, - 0.096921764, 0.7939694, 1.2549901, -0.16541795, -1.0113642, -1.5929871, - -1.9169682, 0.0029710755, 0.5867628, 0.7536997, -0.55890363, -1.3057503, - -1.565205, -0.47416377, -0.7710367, 0.29995033, 0.8025726, -1.3896327, - 0.09303859, -1.1657555, -2.7889407, -0.82393277, 0.048622966, - 0.09548259, -1.5115179, -0.9960515, -0.13484657, 0.94931304, 1.3204274, - -0.03218647, -0.07337503, -1.5512894, -1.1324325, 1.178359, - -0.022696652, 1.2328302, -0.8083773, -1.6606131, 0.38000375, -2.275307, - -3.5312874, 0.79923785, 0.18080208, 0.6978449, -0.990924, -0.6843522, - -1.7746361, -1.9333863, 2.8081238, 0.92149305, -1.7913531, -2.2241359, - 0.5949016, 0.6841975, -2.6807103, -1.1257778, -0.55159056, 0.66117597, - -0.04402075, 0.11766944, 0.36233085, 0.5862404, -1.530328, 0.39971796, - -0.22931485, -1.8344623, -0.20571057, -1.8268316, 0.3815822, -1.1286182, - -1.4732496, -1.602517, -3.2288702, -0.045385674, -1.1953791, -1.6323984, - -0.31467563, -1.839118, 2.0375302, -0.5723932, -0.50038517, 1.3342407, - 0.09543052, 0.004735559, -0.3634913, 2.1875134, -0.39840752, 1.6215932, - 0.028824931, 0.85564893, 0.16765149, 1.0120118, -0.04129512, -1.0042588, - 0.25674704, 0.18937689, -0.16734152, 0.38188484, -0.88495964, -1.279053, - -3.0238442, 0.6488598, -1.2368152, -1.7395494, 1.324844, -1.0827959, - -0.030273184, 0.24641146, 0.051244564, -0.48493278, 0.9819801, - 1.4222292, -0.35733518, -3.4817703, -1.532042, 1.4089329, -1.553645, - -1.2701414, 0.116416134, -0.028440285, -0.44555765, 1.5750366, - -0.896771, -1.1900617, -2.034945, -2.089965, -0.18438087, -0.36701375, - -1.7724171, 0.6729658, -2.2968674, -1.1635908, -1.8489089, 0.74587345, - 0.21606943, -0.33281115, -1.3860303, -1.0104697, 0.19255175, -2.1616242, - -0.30314484, -3.4928124, 0.7513378, 0.06545986, -0.4816746, -1.9218781, - 1.1941679, 0.14575149, -2.3475707, 2.1641111, -0.8959866, -1.5091369, - -0.3617351, 0.5487327, -0.5943815, 1.4413413, 1.4709655, -0.5307557, - -0.4438657, 0.046290137, -0.6280723, -0.28150254, -1.0534948, - -0.4384814, -0.46054363, -1.2684867, 0.08175788, -2.2896724, -1.0655425, - -1.0399469, -1.7911371, -0.44069833, -0.25166154, 0.9954115, -1.03789, - 1.267785, -1.5843781, -0.6579957, -0.50810814, -1.7408599, -1.6629167, - -0.2535596, -1.0596284, -0.006043233, -1.176753, 0.5495705, 1.900246, - -1.116795, -1.6569047, 0.1411714, -1.1037703, -0.07397659, 1.1414142, - 0.0926922, -2.339499, -0.2990119, -0.008063648, -1.2096047, 2.5765724, - -1.6507014, -1.2785082, 0.8056123, -0.6081616, 0.19121425, -3.505181, - -1.4308978, -0.4846128, -0.6354653, 0.31175852, -2.050636, 0.8891055, - -2.4571, -2.2163758, -0.07559198, 1.4175742, 0.09189476, 0.4116257, - -0.8116101, -1.030512, -0.38618997, -0.13005885, 0.7447593, 2.3704927, - 1.166715, -1.5214102, -0.52677, 1.0045413, -1.1419194, 2.2813854, - -1.5477743, -0.4074741, 1.7564251, 1.0226158, 1.1998407, -0.41445568, - -1.1854315, -0.667546, 0.12077486, 1.0767331, 2.2255008, -0.950903, - 0.4788988, 0.6486974, -0.8875003, -1.5872191, 0.062454514, 0.8533189, - -1.5633761, 0.14958146, 0.9305002, -0.25216153, -0.5983248, -0.6115043, - 0.30489993, -1.3486954, -0.114710085, -1.0069764, 0.621751, 0.35044768, - 0.5859482, 0.7001665, -1.1423666, -2.041564, 0.5441295, 1.0622306, - -1.342254, -0.7597423, -0.80631155, -0.15000221, 0.97060835, -1.1752601, - -0.35398743, -0.26930046, -0.35614678, 1.1935933, -0.6215766, - -0.7952778, -0.9718674, -1.3715779, 1.6261327, -0.5427253, -0.8687739, - -1.0450463, -0.13086884, -0.19177388, -0.8567859, -0.019433081, - -0.7523325, -1.7638892, -0.4036875, 0.7781276, -1.8447148, 0.92122734, - 0.81180245, 1.3756933, -0.16501392, -0.5055772, -0.5419575, -0.40594158, - 0.57918113, -1.3966402, -2.1622508, -2.3419185, 0.24064028, -0.72104955, - -0.3173744, -1.3083204, -0.85062206, -2.7249506, -1.2025564, -0.2555186, - -0.89436215, -3.0689561, -1.2419765, -1.437181, -0.66172594, 0.45439196, - -0.94093496, -0.92422366, -0.8600219, -1.7089759, -1.2626302, 0.6365866, - -1.2995516, -0.5245149, -1.6669755, -2.2710724, -1.1041095, -1.4334391, - -0.9548048, -1.4831558, -0.43309122, -0.6762953, 0.52574503, 0.23981568, - -1.4062566, -0.05095777, 1.5207251, 0.32568985, 0.5743744, -0.97309536, - -1.3132205, 0.94588447, 0.40661666, -1.745793, 0.54397434, -0.22301215, - -1.3638489, 1.2143338, 0.15567598, 0.763665, 0.40866765, -1.6999025, - -0.22753753, 0.061715912, 1.0980909, 0.41672182, 1.2656138, -2.0139089, - -0.52904403, -1.3706894, -0.59143776, -1.2240463, -2.571069, -2.1124945, - -1.9287224, 0.65202975, 1.5381262, 0.29006273, 1.0609189, -1.1707188, - -0.5919378, 0.7063311, -0.48849154, -0.07722765, -0.09760587, - -0.7485864, -0.9321295, -0.4015573, -2.879216, 0.026115894, 0.2933198, - -2.0541058, -1.5041234, 1.3962607, 0.6921559, -0.71514463, 0.37231916, - -0.16479443, -0.7826957, 0.026555218, -0.60247767, -1.1657784, - -0.5623687, 0.112173855, -0.24203914, -2.9961047, -2.0266652, - 0.0047655404, -0.6193776, -0.15795925, 0.09733617, -1.3347359, - 0.63265777, -0.63979083, -0.35680115, 0.25927565, -1.2926894, - -0.11010782, -1.2883581, -0.79187727, 1.1580513, -0.30469203, 0.7612812, - -1.3549877, -1.1330092, -0.0562002, -0.4287418, 0.095467165, 1.3282902, - -1.2687583, -1.2256618, -0.5847077, -0.06287344, -0.98274374, - -1.3282603, -0.87165844, -1.050919, -0.9419328, -0.581291, -1.6638137, - 0.016565781, -1.6545179, 0.037982095, 0.037366375, 0.5748325, - -1.6227944, 0.31539524, -1.2844629, -0.43860367, 0.3890081, 1.4806582, - 0.98293674, -0.03794749, -1.3100991, -0.8806093, 0.3282497, 1.0916519, - -0.28004175, -0.8914376, -1.0162387, -0.471901, 0.08254069, 1.1856874, - 0.5551702, -1.9268486, -1.5772662, -1.3134944, -1.0560317, -0.9307472, - -1.599988, -0.7431241, -0.3566676, 0.09876476, -1.3477569, -1.4783864, - 1.7967083, -0.8119261, -1.9737204, -0.59379584, -1.4540155, -1.0116996, - -0.79580784, -0.587947, 0.6712638, 1.6090376, 0.518009, 0.7152009, - -0.6884836, 0.4070158, -0.41780204, -0.84786105, 0.3888726, -1.6810659, - 0.29452834, -1.1415633, 0.32399765, 1.0140047, -1.245307, -2.1014767, - -0.2673132, -0.44877055, -2.1263363, -0.7124764, -1.6919945, -1.6642269, - -0.8696065, 0.18574336, -2.4908233, -1.7418001, 0.30260295, 1.2765689, - -2.2899241, 0.24483475, -1.3108269, 1.8383472, 0.51658845, 0.6729299, - -0.22213197, -2.1887305, -1.1110606, -1.3990804, -2.0535781, - -0.17582792, 0.8257867, -1.8521608, 2.0177164, -1.5601096, 1.5461708, - 0.38256052, -1.5519699, 0.28562233, 1.036429, 1.9820353, -0.877904, - -0.36346966, 1.4612663, -1.2009059, -0.45518062, -0.22798806, - -2.4346883, -0.49193132, -0.8711235, -1.1034963, 1.6209991, -0.86336374, - 0.69420826, 0.123988, -0.40599608, -0.13094658, -0.5752523, -2.2567124, - -1.8306217, 1.1699942, -2.4109247, -0.6502615, 0.8947193, -2.365469, - -0.79969484, -0.8109294, -0.13294889, -1.3897094, -0.18098578, - -1.214481, -0.82995045, -3.1878169, 0.6578218, -1.182233, -0.8491684, - -0.526622, -1.352732, -0.48676088, -0.4422881, -0.9681047, 0.7940766, - -0.51501566, -0.013047159, -0.21324925, -0.22781914, -0.23307508, - -0.041154034, -0.40039137, -1.587636, 1.2267902, -2.2875757, -2.0062153, - -1.9763054, -1.4434724, 0.12399608, -0.53167456, -1.3030169, -2.6180377, - 0.5814804, 1.5311387, -1.5622624, -1.4417522, -0.72957003, -3.0099235, - 1.375435, -0.31107748, 0.45398706, -0.34703106, -2.5594673, -0.71605223, - -0.13516282, -0.00888234, 0.17051204, 0.025261842, 0.41459942, - -1.5709739, -0.64528906, -0.6821469, -2.775692, 0.20707588, 0.18960315, - -0.11526704, -1.234723, -0.98272306, -0.6985178, -0.76556367, - -2.2963145, 0.30874595, 0.47604722, 1.0131015, -0.02624257, 0.17752033, - 1.0514592, -0.77479315, 0.47494894, -0.61207074, -1.2649206, 0.03846816, - 0.8306626, 0.71373373, 0.39490777, -0.795769, 0.1295128, -0.15638198, - -1.8182082, -0.6595125, -0.91460943, -0.018463593, 0.14904332, - -0.12475162, -0.6490065, -0.5079949, -0.8265555, -0.7790759, -0.6392826, - 1.2331203, -1.9760183, -1.0515741, -2.411914, -0.21895577, -1.4308004, - -1.889, -0.29669827, -1.8337069, -0.11826442, -2.19917, 0.11012718, - 1.633742, -2.2860408, 0.5837762, -1.5218283, -0.34768456, -0.5313631, - 2.7063496, -0.2217371, -0.7245915, -1.6880871, -1.2074646, 1.9899721, - -0.85241646, -2.1827974, -1.023491, -0.95375866, -0.31228063, 0.1335744, - -0.88467145, 1.2056701, -0.8088069, 0.33813056, -0.13993523, -1.8112206, - 1.3395345, 0.07226427, -1.5096289, -0.987231, 0.096730605, 0.5436913, - -1.4576726, -0.3643928, 1.6505233, -1.1569839, -0.082021855, -1.2280457, - -1.7605977, -0.49960747, -0.5801296, -0.53977317, -1.3765994, - -2.0277817, 0.10896213, 0.03177096, 0.080586284, -0.21332729, - 0.28199977, -0.12987284, -1.035862, -0.4313671, 2.0414257, 0.039509818, - -0.012323793, -0.32067198, -1.2663062, -1.2644088, -1.069394, - 0.49237883, -0.071787454, 2.787077, 0.055419873, 0.60105914, -1.0721322, - -2.1272857, -0.7336124, -0.67412376, -0.088814534, -2.028075, - -0.7660516, -1.9028162, -0.19667749, -0.028510531, -2.1468205, - 0.16384955, 0.3782976, -1.7955244, -1.479334, 0.065937206, -1.8849292, - 1.2180296, 1.2181989, -0.28241563, -1.0085042, -0.67087066, -1.3762153, - -1.8387175, 1.8183829, -1.6305729, -1.2012137, 0.5268543, -1.258184, - -0.056999885, 0.17124799, 0.4529135, 0.60577923, -1.1053143, 1.6501415, - 0.03223584, -0.8549108, 0.22997335, 0.08755388, -0.54412544, -1.1002535, - 1.1384497, -0.42923838, -2.1787176, -1.171101, -1.3580289, -0.20631894, - -1.3414743, -0.35177875, 0.96087223, -2.2113912, -0.8748444, - -0.04165736, -0.9636022, -0.11342512, -0.8891481, -1.7222757, - 0.091932796, -2.9285498, -1.1846117, -0.7407119, -1.4780115, -1.0342422, - -1.5565264, -1.919377, -0.85218716, -1.0040253, 0.04895782, -1.3918121, - -2.8579352, -0.47240368, 0.71084553, 0.27172962, -0.33122945, - -0.87439144, -0.6318912, 0.1626077, 0.15084225, -1.3367728, 0.03034395, - -2.1301403, -0.41632634, -3.319814, -0.7415175, 0.22497243, -0.38851106, - -0.42240337, -0.057827324, 1.0702003, -0.58816874, 0.46771228, - 1.6232234, -0.6105117, -0.054157823, -0.35501164, -0.87086266, - 0.45249513, -1.1090008, -1.4261967, -0.69105345, 0.3432047, -0.31217, - 1.1876053, -0.4342304, -0.49844107, 1.9962486, -2.3335853, 0.5658223, - -1.1426595, -0.6754778, -2.3826692, 0.3018136, -3.4435802, -0.90283334, - -1.461722, -1.3683853, -1.2709664, -0.8704701, -1.4245516, -2.541908, - -2.3479311, -0.5036241, 0.6659286, -0.13129118, -0.9405194, -0.96607167, - -0.24071324, 0.005987783, -1.9446754, -1.3895069, -0.41577107, - -0.28816447, 1.6515495, -0.19703932, 0.08346595, -2.9536436, 0.17488872, - 0.7865959, -0.5685674, 0.5693588, -0.069252536, 0.97973883, 1.3859318, - -0.31983593, -1.8758284, -2.814282, -0.44663525, 1.3815746, -0.5913024, - 2.273765, -2.0654972, -0.9277391, -1.3766897, 0.882999, 2.4230804, - -0.80691844, -0.8104712, 2.343779, 0.35333255, 1.7946945, 0.020687632, - -1.2275056, -1.3356651, -0.20193611, -1.0664251, 1.8186775, -0.39837548, - -1.1837974, -0.20957457, -0.3700183, -0.9979894, -0.17944483, - 0.93506074, -1.5328857, 1.1744552, -2.3749053, 0.5190021, -0.8798337, - -2.5173101, -1.0024437, 0.07891887, -0.17886187, -0.72863936, - -0.91456074, -0.42298678, -0.9072089, 0.2862564, -0.87923867, 0.3756469, - 0.23912378, -0.20635173, -1.2965035, -2.8590424, -3.2395663, 1.0319833, - -2.3037229, -1.4386748, -0.10459724, 1.3228079, -2.0859854, -0.30978674, - -0.14343312, -0.9911081, -0.22834055, 0.11539679, 0.3904346, -1.1343852, - 0.047829345, -1.701734, -1.1132088, -0.74213344, -0.25305215, - -1.4219354, -0.8077891, 1.1252137, -1.1536024, -2.2236726, 0.40810403, - -1.6103816, -1.7083293, 0.8702347, 0.92106515, -1.7630799, 0.7483777, - 0.2070831, 0.65457976, -2.4095063, -0.55349106, -0.26832432, -1.4236342, - 2.0586967, -0.7713075, -0.83237803, -1.6749766, -1.6031026, -0.5013426, - -0.026959382, -1.6514329, 0.89401865, -3.2423825, -2.0285857, - -0.53395087, -1.5100163, -0.80647147, 0.011483688, -1.2031095, - 0.8345407, 1.1571503, 0.38039872, -1.2333485, -1.3558384, 0.3719098, - 2.098266, 0.8758549, -0.9216651, -0.42489728, 1.005853, 1.4157246, - -0.994751, 0.018464107, -0.7259886, 1.356019, 0.05907322, 0.53283566, - -0.27903524, -0.16667989, -1.138924, -0.72658235, -0.42579964, - 0.27776453, -2.4569154, -1.8107183, -0.79126245, 1.5254766, 0.010914449, - -1.9848017, -0.48661476, -1.0662032, -1.6466538, -2.8806005, - -0.35648182, 0.88483095, 0.5742577, 0.5388563, -0.03028781, -0.49071428, - 0.79213405, 1.3882266, -1.5228175, -2.4139209, -1.2699565, -0.81598705, - -0.04527607, 1.9564755, -0.060774505, 0.18726757, -2.2091084, - -0.23659378, -1.1437027, -0.2714978, -0.010929808, -0.5383394, - -1.1009804, 0.446385 - ], - "features2": [ - -1.4560069, 1.1708769, -1.3699708, 0.43964142, -0.1593882, -0.017653763, - 1.0021794, -1.3823875, -1.0322341, 0.26970744, 1.0115571, -0.10243079, - -2.0204067, 2.6763227, -0.4841402, -1.2144464, 0.63260114, -0.5588444, - -0.7205757, -1.0954072, -0.15542151, -1.1049973, -1.6526548, 1.2256734, - -0.4393453, -0.5723602, 0.120578066, -3.1960046, 0.5871921, 1.725369, - 2.714975, 0.10231174, 0.5341906, -1.6046885, 0.17788355, 0.120954655, - 0.6293439, 0.029235508, 0.44988298, -0.033983808, 1.8258092, -1.4059857, - -0.99363756, -0.5678986, -0.58275634, -1.0906503, -1.3119621, - 0.19541362, 0.017151803, -0.29365808, 0.043787308, -0.8007816, - -0.47810042, 0.86298096, 0.23586985, 0.8833096, -1.5693191, -2.75414, - -1.7367406, 0.16917449, -1.775369, -0.2055124, -0.13867597, -0.29855135, - -1.9023384, -1.0283616, 0.8208227, -0.43047917, 0.12700467, -0.5288743, - -0.43892163, -1.1026528, -1.4410572, 0.99206084, 0.8981519, -0.950167, - -1.96195, 0.5543803, -2.203909, 0.47511628, 0.7275456, -0.85129255, - 0.47761887, -1.7453694, -0.67980415, -1.074259, -0.687813, -0.15044327, - -1.9444976, -0.8406073, -2.5527623, -1.3175025, -0.94503945, 0.17163761, - 0.39641812, 1.4607666, -1.3110722, -0.065945596, 1.0052619, 1.0144582, - -0.5042502, -0.6408192, -0.46313182, -0.49900955, -0.5552269, - -1.0822573, 0.11484411, -0.53738403, -0.5111273, 1.1753647, -3.1831572, - 0.107450314, -3.916051, -0.94026923, -1.2002488, 0.27705446, - -0.42621255, 0.81225616, 1.0724422, 1.3757961, -0.32353547, 0.13549724, - -1.2618273, -0.8940115, -0.5276664, -0.6199413, -2.0259514, 0.28297603, - -0.2508201, 0.23746327, -0.7860882, 0.89064795, -1.0410761, 1.2642971, - -0.78359294, 0.9599458, -2.3316503, -1.7264934, -0.6721816, -0.16115904, - 2.8807535, 2.0603437, -0.07779292, -1.6089597, -0.9685507, -0.79331404, - 0.7975177, -0.00663992, 0.3852901, 0.14589086, -1.6271633, -1.0968453, - 0.13636813, 1.4853284, -1.4711139, -0.22720638, 0.3130371, -0.014428802, - 0.39007738, -1.6296433, 1.925479, -0.017086677, -1.5284026, 0.33572719, - -2.2106457, 0.40910065, 0.14692384, -0.36595678, -1.2512844, -1.3475138, - -0.5453704, -2.465794, -1.9458569, 0.17819452, -0.4438244, -1.2729515, - -0.9141011, 0.8265199, 0.27904448, -1.4076129, 0.64399654, -0.48451936, - -0.7055523, 0.9526166, -1.8203629, 0.35287243, 1.3720704, 0.39598766, - -1.0051192, -0.15773293, -1.5676361, 0.119331986, -0.31452698, - -1.038685, -0.668321, -1.499375, 0.21513976, -1.4974983, -0.7152903, - -0.47139925, 0.66996115, -1.806165, -0.28675765, 0.047396384, - -2.7269356, -1.2720215, 1.1549103, -2.132547, -3.1236684, 1.824844, - -0.6447654, 0.30980253, -0.36274517, 0.25817776, -0.9096971, -0.5335067, - 0.21073024, -1.5458502, 0.71604556, -1.2416055, 0.05675681, -0.7445795, - -2.6095893, -0.55114144, -0.51175016, 1.5592415, -1.2349457, -0.7421899, - -1.6186194, -0.75402355, -1.861576, -1.4578723, -2.4802308, -0.88522506, - 0.15768975, 1.0555538, -0.8455745, -1.925643, -2.6929324, 0.49139756, - -0.5633406, -0.7850444, -1.3060882, 0.92105454, -0.38451695, 0.8208242, - -0.64971507, 0.18798484, -0.28173366, -0.7736167, 0.46486193, - -1.0923357, -1.2327771, -0.5811111, -2.4547117, -1.0388752, - -0.063516155, -2.4828534, 0.24063122, -0.73229635, -2.1294022, - -0.9715771, 0.36760837, -3.3209412, 0.5276798, -0.1491581, -0.10612266, - -0.12688513, -1.1800425, 0.240534, 1.4757519, -2.6279612, -0.62165964, - 1.2221559, -0.15346678, -1.3369993, -2.0616536, -0.050336223, 0.2740199, - -0.068578646, -0.18869218, -0.31371236, 1.5771365, -0.5015677, -2.10133, - -0.93658215, 0.20123413, -2.9356384, -2.0863404, -0.46716344, -1.288435, - -2.0157275, 0.11385489, 0.12487876, -0.04304307, -1.7922753, 1.0291437, - 1.2118655, -1.1678933, -1.0110166, 0.94013226, 0.56123483, -0.91488916, - -2.024157, -1.2652998, -0.8732091, 0.6246746, -0.9397817, 2.0171707, - -0.7805873, 1.7183107, -0.18854031, 0.12648347, -1.2804174, 0.21997416, - -0.8953783, -2.1771739, -2.3576353, -1.7307462, -0.41318527, -1.7612461, - -2.1201706, -2.2319558, -2.6052992, -2.255824, 0.3581041, -1.7240771, - 0.7385861, -0.80061775, -2.6262615, -1.8680177, 0.84442276, 0.53375703, - 0.3888255, -0.17762512, -0.5003273, 0.020892967, -0.98239756, - 0.73575693, -2.8802798, -3.109893, -2.0188766, 1.0204897, -0.6828861, - -4.037578, -0.3460802, -1.6238956, -0.44293863, -2.0838692, -0.9353925, - -0.28142387, 0.010303035, -1.3078772, -0.19938534, -1.4120618, - -1.3650409, -1.2784637, -0.8310182, 1.0757856, 0.42247844, -0.13264468, - 0.7348844, -1.3055065, -1.2223272, -1.4451737, -0.918475, -0.20833144, - -0.7461842, 0.6657061, -1.2293102, 0.90164495, -0.66815853, -0.39503345, - 1.1131016, -1.2254231, -1.9326204, -3.2785459, 0.25678596, -0.9903979, - -0.010379944, -1.1011693, -1.8701335, -2.3051424, -0.6593436, - -0.78490436, -1.381058, 0.41503006, -0.88766885, -1.3418473, - -0.51496726, -1.8110509, -0.1286467, 2.4196959, -1.8874164, 1.4010712, - -0.6016779, -1.270158, -1.3796424, 0.11550799, -1.2260029, -0.22889967, - -0.93484414, 0.6828343, -1.9125245, 0.48493555, -0.99800766, - -0.35757393, -1.6123998, 0.10274363, 0.5278825, -0.6916444, 0.17284462, - -1.1185935, -2.1892285, 0.011697173, -0.7856022, -3.181163, -1.5103054, - -3.1920555, -1.534194, -0.14958599, 0.86420584, -1.5592707, -0.38009965, - -0.97957945, -1.5101956, -1.5907625, -1.4277656, -0.6534646, -1.4901502, - -0.6352435, -0.15508938, 0.17780556, -3.7978868, 1.192051, 1.8505661, - -0.69302887, 1.4014411, -0.2785705, -0.87779033, 0.117196895, - -0.5888905, -0.6318083, -1.2697227, -0.71766573, 0.40424317, -1.0499188, - -0.17209452, -1.7323737, 0.119885415, -0.9847443, 2.6821702, - -0.41487604, 0.034763232, -1.2878723, 0.10478571, 0.37783682, - -0.29429677, -1.2639425, 0.65180516, -1.3919213, 0.64047307, - -0.07273119, -1.3045168, -0.8380128, -1.5101237, -1.764455, 0.6626838, - 0.24657243, -3.1685722, 0.87981313, 1.1537253, -0.9468567, -0.8318217, - 0.28739458, -0.35041744, -2.4676476, -0.6058609, -1.2407749, -0.5972239, - 0.70055604, -0.6461081, -1.710429, 0.5269779, -0.6270418, 0.5555455, - -1.0164919, -0.9700187, -0.5159763, 0.17611344, -1.0899873, -2.0518675, - 0.36092523, -2.7511547, 0.17342998, -1.2694409, -0.5543256, 0.21596427, - 1.3153989, -0.8642986, -0.39634404, -1.1662478, -1.0474148, -0.07733344, - 0.014865007, -0.65929854, -1.8525149, 1.8827758, -2.8171601, -1.1504084, - 0.3209699, -0.39007896, -0.76243114, -2.1991334, 0.07073573, -2.6496553, - 0.08413864, 2.3232818, 1.9954621, 0.56447524, -2.8179386, -1.372548, - 0.16831274, -0.15135737, 0.09325908, -0.7370224, -0.39312783, - -0.86622405, -0.04360155, -0.33277687, -1.1731012, -0.35877433, - -0.23812744, 0.33934712, -1.5597371, -1.14675, 0.80986434, 0.51212186, - -1.7186449, 0.61941683, -2.9426055, 0.7049999, -0.5393861, 0.6414439, - -1.4196997, -0.10886446, -0.27354857, -0.70851684, -0.88951397, - -1.7408193, -0.5241834, 0.80245334, -1.531286, -0.8920722, -1.5507364, - -0.66616243, -1.1575598, -0.79843044, -0.83780277, 0.48033205, - 0.09347715, -0.24512672, -1.6379085, -0.7410818, -0.8805527, - -0.41757387, 0.07124592, -0.59691244, -1.7858028, -1.6709161, - 0.37918225, -1.7994603, -0.47287273, -0.65857416, -0.32097465, - -1.8603688, 0.2841749, -0.88679403, 0.699725, 0.5122571, 1.2705101, - -1.2623875, -1.0543152, -1.018914, -2.7608511, -0.81468993, -0.3155412, - 2.6905723, -1.295724, -0.78685856, -1.9134765, -2.5528598, 1.1244086, - -0.098700985, -0.8897563, -0.8990104, -1.1849062, -1.5504076, - -0.34851918, 0.59376043, -1.8566641, -1.4757969, 1.3619472, -2.1486983, - -0.4093433, -1.1237077, 1.9541335, 0.06510653, -1.86657, -1.038582, - -2.2445385, 0.09038427, 0.8891551, 0.4968296, 0.18980418, 0.8892149, - 1.5948097, 0.18189538, -0.10300949, 1.7352579, -2.2053509, 1.0289534, - -0.10427012, 0.931153, -0.65470546, 2.8807197, 0.12404645, 0.55496144, - -1.4242394, -2.0435107, 0.33205557, -2.3993344, -0.24813795, 0.52212423, - -2.9280765, -0.06807778, 0.1831961, -1.0841378, -0.75423896, -1.325738, - -0.37074366, -0.3623101, -1.2019985, 0.72041017, 1.4769725, -0.06960083, - -0.9207045, -0.78422457, 0.6285357, -2.659141, 1.2598444, -0.118221804, - 0.11003733, -1.0354288, -0.80337614, -0.29711217, -0.7612434, - -1.7228466, 0.25720623, -0.029405318, -1.0158277, 1.5224193, 0.26501423, - -2.305314, 0.2711868, -0.89212954, 0.2525687, -1.2236433, 0.03901046, - 1.3192766, -2.0882852, -2.74692, -1.2170196, -0.7120414, -0.46279913, - 0.30246633, -0.43176165, -2.0908365, 0.0030985605, -1.4243803, - -2.1134102, -2.232618, 0.5967747, 0.020313758, 0.82119596, -0.6234174, - -0.16429617, 0.1664121, -0.445944, 0.47145814, -0.33242682, 0.40505254, - 1.3632603, -2.4363675, -0.8127534, -2.3263285, 0.7366971, -1.4284072, - -0.73142546, -0.21881035, -0.45889807, -0.27376467, -0.39816037, - -1.0293832, 0.16882646, 1.3606825, 0.11265625, -0.08909516, -1.3044397, - 0.4020494, 1.4656378, -0.62229997, 1.253911, -2.9719408, 1.6766473, - -1.3411169, -0.8535277, 1.452473, -1.7315042, 0.6813118, 0.16372813, - -0.3664905, 0.1421534, -0.9858635, -0.33030418, -1.6571437, 1.6127882, - 0.6361567, 0.5550695, 3.643876, -1.3888127, -2.3521688, -0.38381225, - -1.7977513, -1.1983603, -0.7661466, -1.2695675, -1.0196035, -1.8987546, - 1.1019423, -0.6025263, -1.7700545, 1.3718439, 0.050832845, -0.78387815, - -1.3415397, -0.6362611, -0.059686568, 1.137251, -0.5622642, -0.15843534, - -1.6213408, -1.8863623, -2.0631688, -1.385801, -0.99804515, -1.3729373, - -1.1547012, -0.571729, -0.96170247, -0.33470455, -1.7387168, -0.9587651, - -0.5651656, 2.3654568, 0.3862765, -0.16402614, 0.21166497, -0.6318041, - -1.4207574, 0.011965118, -1.3338703, -0.8534719, -1.7625272, -2.150394, - 0.10891639, -3.3536134, -0.5716876, -1.3712058, -0.007315591, - -0.5125058, -0.80820274, -1.1379957, 1.516124, -1.8124582, -2.9351401, - -0.23610193, -2.303121, -0.61790735, 0.981477, -0.18552765, 0.10641882, - -2.759603, -1.2929505, -1.1594406, -0.6468738, -1.8364127, 0.9323177, - -3.6246119, -1.8402276, -0.1746408, 0.20725107, -1.5095446, 0.728727, - 2.21174, -0.8334216, 0.34829903, -0.1723268, 0.63342005, -0.8732988, - -1.065539, -0.05129215, 0.11367336, -0.3547499, -0.99948746, - -0.17734987, -0.23320222, -1.0443051, -1.8742063, -1.7868432, - -0.51842237, 0.5716626, 0.24779052, 0.65170294, -0.85798806, -1.5881501, - 0.25218758, 0.8764647, -2.3419287, 1.8207606, -1.7307119, -1.7192954, - -0.59351504, 0.0673478, -0.7151699, -2.0395832, -0.9794524, 0.4452594, - -1.0744326, 0.04689452, -0.15337619, -1.3440733, 2.589359, -1.5434971, - -0.35684994, 0.22038859, -0.25630495, -0.13170415, -1.1286025, - -0.2584459, -0.5875177, 0.7216783, -0.054930136, -0.3831135, -0.489623, - 0.80050004, 1.4367298, -0.35689148, -0.71309996, 0.9593481, -0.4060069, - 0.02372438, 0.05141251, -1.0986722, 0.22345, -0.96451676, 0.06288361, - -1.1299231, 1.5283686, 0.93746156, -0.53021896, 2.8142426, -0.7821268, - -3.3272095, -1.2121563, -0.7264891, -0.6348328, -1.8085148, 2.1102436, - 0.12271777, 0.09109893, -0.9339006, 0.21550971, -1.9520879, -1.9243064, - -0.2573672, 0.22495298, -0.7811598, -0.41464344, 3.490026, -3.425381, - 0.8492251, -1.4079238, -0.49544662, -1.225801, -3.5745492, 0.33837497, - -1.3390317, -0.8971838, 0.63029146, 1.3726792, 0.2349261, 0.4555391, - -2.885273, 0.77203083, 0.84773016, -1.5314413, 1.4938757, -0.9044461, - 0.3605031, 3.7414317, -0.10355895, -0.37946525, -1.4999902, 1.0661852, - -1.3222369, 1.2078308, 2.0676816, -0.31385255, 0.17913914, -0.6258138, - -0.7586084, -0.19560453, -1.5654399, 0.71666944, 1.0241164, 0.11838402, - -0.1863101, 1.1258913, -1.6149472, 0.15487078, 1.4573979, -1.2268647, - -1.1115638, 0.37749186, -2.836172, -0.5790873, 0.17254701, -0.19435926, - -1.9181209, -0.65066934, 0.6278846, 0.5896101, -0.5623271, 1.7423085, - -2.2104712, -0.723331, -2.329406, -0.35917816, -2.1339624, 0.9360757, - -4.3308997, 0.7675567, -0.9088995, 0.7785136, 1.4314154, 0.05346721, - 0.24365586, -0.3349058, 3.262001, -1.3727793, -0.06269655, -0.9116314, - -0.9120862, -0.6712665, 2.328098, 1.0652535, -0.7583542, -3.1233785, - -0.12062113, -0.14643091, -0.3906804, 0.7038307, -0.9376564, -1.1475899, - -0.41751227, 1.1519849, -1.1932583, 0.51677525, 1.2659954, 0.5738777, - 0.30783537, -0.90952843, -1.0879539, -0.65213394, 0.66810066, - -0.98670024, 0.084961556, -1.590795, 0.29820365, -1.6263372, 0.93462485, - -1.3538228, -0.99791545, -2.4576125, -0.16113436, -0.6607844, - -0.72440904, -0.5316049, -1.9030662, -0.14008835, 0.4959088, 1.6511037, - -1.1177346, 2.54284, -1.0815334, 1.2901235, -2.3780694, -0.9329176, - -1.2008648, -1.2381713, -0.5535062, -1.2002058, -0.9536736, -1.2590287, - -0.6969372, -0.7486395, -0.9414591, -0.06801723, -1.8728648, 0.18743648, - -1.5205022, -0.7929555, 0.5733124, -1.095511, -1.0359731, -1.3559881, - -1.463342, 1.0634202, 0.60314476, -1.5176096, 2.0372279, -0.32241192, - -1.2202877, -1.881726, -1.4019262, -0.6904191, -1.1516937, 0.6008971, - 0.23743662, -1.6496707, -0.7462587, -1.4349662, -1.0547302, 0.31125394, - -0.6920119, -1.8790816, -3.2703078, -0.511651, -1.1700072, -0.6429094, - 0.46355122, 0.3384142, -0.39780146, 0.6445652, 0.9382343, 0.08816731, - 0.24338138, -2.518074, 0.57204807, -1.9343741, -1.1944938, -0.5613032, - -0.55488026, -0.5109192, -1.2519283, -0.7260023, 0.6742355, -1.8196709, - -0.31786954, 0.7763115, 0.8273729, 0.59216845, -0.45682842, -0.28373614, - -1.6741031, 1.2175115, -1.1888361, 0.4066753, 0.30317527, -0.8365643, - -0.8267322, -2.275644, -0.60735804, -0.10646923, -1.4188817, -1.8678077, - 0.46646369, -0.14989191, -0.4295736, 0.35590246, 1.0510195, -0.7049831, - -0.85971355, -0.5447492, 1.1882468, -2.4913592, 1.7729709, -1.6994339, - -2.2951891, 0.45117036, 1.0610079, -1.3492663, 0.9090678, -1.9648465, - 0.8114821, -0.029783495, -0.38695517, -0.08675707, -3.1222563, - 0.6854162, -0.6510504, -1.8490776, -0.6626129, 0.06189388, 0.44476643, - -1.11084, -2.0227778, -0.06716349, -1.7248968, 0.8660799, -0.0741639, - -2.655151, -1.5719883, -2.7129977, 0.01666551, -1.8767371, -0.623965, - -2.1871676, 0.8343854, -0.6294458, 2.2716985, -1.0361483, -2.0721195, - -2.473928, -0.9301569, 2.1247406, -0.42950886, 1.8581793, -0.15782116, - -1.37853, -2.4326441, -0.9364984, -0.8648331, -1.3546345, -1.2291052, - -1.3407829, -2.187658, -1.017514, -0.95115465, 1.7209704, -0.6821861, - 1.8168919, -1.3888657, -1.1351492, 0.036149975, -0.78049916, -0.5695251, - -2.0873961, -0.35160983, -1.2485757, -1.7400633, -2.5869918, - -0.50960904, -0.8187354, 0.33367944, -2.1112206, -0.85924333, - -1.9161391, -0.762727, -2.2790542, -0.22927698, 0.038431518, -2.5482607, - -2.1047387, -0.91061103, -4.0126677, 0.6119804, -2.3444233, 0.3794287, - -1.4165871, -2.2109754, -0.20672469, -0.64975363, -0.9474369, - -1.8345078, 0.7585966, -0.6675032, -0.92176646, -0.36628178, -1.2860068, - 0.91412604, 0.38950455, -1.4605367, -1.1337087, -1.0602053, -0.31104752, - -1.0732341, -0.5887067, -1.9080603, 0.96819866, -0.6452508, -1.0598135, - -0.5687907, -0.8953257, -1.1563082, -0.26249364, -1.6711167, 2.0141053, - -0.44401342, -0.31978583, 0.57575536, 0.3444943, -0.9877559, - -0.13036667, -0.6641525, 0.74252903, 0.36851123, 1.1079754, -0.88262767, - -2.2072291, 1.028148, -1.1020758, 0.90256137, -0.8072235, 0.92521054, - -1.2690753, 2.7161202, -0.00010989234, -1.0392181, 0.18783957, - -1.1239641, -0.17675686, -0.14723462, -0.7066036, 0.98310924, -1.549724, - -0.13564724, -0.3533867, -0.51802164, 0.37754548, 0.39316565, - 0.77680457, -0.7510227, -1.821295, -0.16228566, -1.4337795, 0.21961156, - 1.0754802, 0.10744512, -1.436652, -0.80903214, -1.4516912, -1.2640722, - -1.7499155, 2.6082773, -0.89044166, -0.5800504, -1.6444905, -0.94507957, - 0.5910418, -1.4930862, 0.23316076, -0.378458, -1.7541467, -0.12129543, - -0.20540692, -2.638333, 0.98497915, 0.07526173, -0.7767043, -2.042784, - 0.88720036, 2.2264507, 0.7907712, -0.6683389, 0.22117986, -1.2856402, - 0.14243437, 1.0741895, -0.64571273, -2.261514, -0.40252927, -0.4289768, - 0.042731833, -0.5439068, -1.1208318, -0.9924006, -1.4049634, - -0.060990147, -2.7069187, -1.4324493, 0.8951422, -1.6589768, 0.22622824, - -2.4647355, -1.5507319, -1.4126573, -1.9504477, -0.9306738, -1.169947, - -0.37008914, -1.2912514, -0.5194008, 0.40679467, 0.96734715, 0.03835272, - -1.472281, 2.2356775, 0.86832917, -0.018264882, 0.030773371, 0.20322183, - -1.2764583, -1.5450909, -1.3604957, -0.9211639, 1.6407471, -2.050548, - -0.6478226, -2.101862, 2.8551466, 1.5076429, -1.6517688, -1.3866879, - -1.2016456, -0.3177652, -1.6984626, -1.5167683, -0.98155904, - -0.69233173, 0.07697764, 1.0514783, -0.87534094, -0.13742304, - -0.26870623, -0.37175807, 1.0384331, -1.0211979, -1.1271966, 1.4606539, - -0.48049814, -0.98727727, -2.038095, 1.2662663, 0.33940393, -3.2923725, - 0.9969845, -3.4016352, 1.9316361, -0.028380971, -2.2442884, -0.51411873, - 0.099175096, -0.14800808, -1.6377783, -0.5543426, 0.30708125, 0.5552803, - -0.63956994, -1.5884626, 0.3296765, -0.9269669, -0.37300536, -0.3507212, - -0.47699296, -0.7916166, -0.78441554, -0.14154041, -1.1449146, - -0.11222485, 0.3511259, 0.32550505, -0.6670828, -2.571143, -1.0132973, - -1.4417254, -0.27121693, -0.6435378, -0.89380515, -1.568908, - -0.17770782, -0.9047582, -0.009735126, -1.650856, -1.0723835, - -1.4270442, -1.3611207, -1.0014075, -1.2422429, 1.1094961, -1.2467488, - -1.7804953, -0.3228348, 1.8827474, 0.10749004, -1.0489581, -1.8647091, - -0.76813877, -2.7830827, 0.25871637, -0.97346586, -2.479718, -0.545696, - -1.358798, -0.25912446, 2.2518651, -0.65471053, -2.05184, 0.010126572, - 0.7935099, -1.7772284, -3.174672, -0.7236933, 0.67571133, -0.7862109, - 0.15285343, -1.035135, 2.5362563, -0.91549313, 1.8736737, 0.449409, - -0.9181959, -0.051867243, -0.74487936, -2.5097141, -0.62256914, - -2.5897446, 0.64111257, -0.9667619, -0.45198283, 0.7232985, -0.43481848, - -2.4893427, -1.9948276, -0.6831919, -1.4740008, 0.2996744, -1.0893784, - 1.3779532, -0.41540572, -0.6072735, -1.5811777, -1.331074, -0.7616651, - -1.5232131, -1.4458755, -1.1405828, -0.7192945, -0.44350088, - -0.50460637, -1.04993, -0.6036846, -2.170455, 1.1132454, 0.4292784, - 1.4793037, 0.42355338, 1.4467413, -0.32200503, 0.39864713, -1.3399912, - -0.5039701, -0.9702583, -1.5268118, -2.2593126, 0.3667431, -1.0172746, - 1.1788719, 0.8102998, -3.0563376, 1.3302356, -0.6970503, -1.394653, - 0.14192367, 0.13703665, -1.9359989, 0.63369054, -0.5784194, 0.39271587, - 0.2540485, 0.0059827194, -0.58914304, -2.091795, -1.7821448, - -0.77513134, -0.14801021, -1.7700793, 0.17447495, 2.9008505, - -0.0027502328, -0.69001186, -0.91879517, -0.017579783, -0.6020053, - 0.031166743, -2.7374847, -1.0797969, 0.10456382, 0.63061076, 0.7735189, - 0.053444415, -2.1754715, -1.5144265, -0.09504223, -0.77467525, - 1.0086458, -1.6095982, -1.1623272, -1.469846, -0.37712887, -0.9466517, - -0.98722833, 0.9750624, -0.43667287, 0.74339676, -2.1601343, -1.1136206, - 0.5189176, 0.64286613, 0.03919165, -1.7542001, 0.8619261, -1.5662812, - -1.7907265, -0.03992314, 3.0613916, -0.62048006, -0.9749215, - -0.34585992, -2.3643382, -0.7883859, -1.1594555, 0.31793436, 0.8835155, - -0.43069807, -1.3224187, -3.1429996, -0.0476167, 1.6767586, -0.6683881, - -1.011509, 1.1125146, -2.484277, -0.28465217, -0.6234947, -2.4827433, - -0.3678348, -0.5249143, -0.69217354, 0.53949267, 0.379565, -0.6723912, - -2.0254328, 0.2735695, 0.953041, 3.1636734, -0.2248169, -1.8625451, - 2.2756348, -1.8393823, 0.832268, -2.274058, -1.403113, -0.7017303, - -0.37378976, -0.47481287, -0.43726957, -0.29806992, 1.0988194, - -0.2627575, 0.09140643, 0.8614982, 1.3657463, -1.1161783, 2.335624, - -0.4908795, -1.6724466, -1.9321591, -0.9925296, -1.9641325, 0.45001704, - 0.5764917, -1.7839783, 0.5389283, -2.2018702, 1.4044007, 0.5477544, - 0.1292904, 1.3170167, 0.12817872, -1.189725, -1.9438872, -0.2718694, - -1.6953632, 0.5327791, 0.71848726, -0.46583974, 0.40571547, 0.40838626, - 0.12202675, 0.22869253, 0.94895643, -1.3734518, -0.79283404, -1.9629155, - 0.16993329, -0.9620876, 0.04238526, -1.274403, 1.3336092, -0.8962112, - -1.2259089, 1.0209702, 0.0774873, -1.6580551, 0.905732, -2.6289082, - -0.79159045, 2.0637305, -2.0443466, -1.8815557, 1.6422538, 0.43549263, - 0.08088854, 0.6592034, -0.63180524, -0.596506, -0.016474523, -2.8195305, - -0.6540705, -1.5509909, -0.74177206, -0.6157583, -0.25341618, - -1.3157114, -1.2597234, -0.7664426, 0.5740231, 0.02415185, -0.8013453, - -1.8487375, 1.2690784, -1.0887027, -1.4887714, -0.97626865, 1.2682339, - 1.7115546, 0.4112891, -1.2510186, -1.360152, -0.91056013, -1.6477445, - -2.2166624, -0.45611727, -0.70880544, 1.2073104, 0.54722834, 2.6973474, - -0.94084245, 1.1054723, -1.8324947, -2.2911339, -3.9988482, 0.360973, - -1.4131504, 0.17653377, -2.0277834, -1.3454207, -1.5121231, -3.13505, - -0.8215197, -0.48179054, -0.23222187, 1.0765586, -0.53879035, - -1.6391441, 0.30132473, -1.497739, 0.19483292, -1.8191221, 0.47531396, - -0.057369187, -1.840698, -3.3938355, 0.70619005, -1.7493211, -2.585428, - -0.39519554, 0.10993187, 0.16004962, -1.3949802, 0.38779673, -2.3502743, - -0.52937114, -1.151037, 3.0167983, 1.1534703, 0.030326568, -1.5340133, - -1.0677166, 0.18056762, 0.2889201, -0.42857113, 1.6502576, -1.6892446, - -1.4306483, 0.17524873, -1.634784, -1.3796479, 0.5382184, 1.1917286, - -0.7464556, 1.2476301, -2.6200345, -2.8281732, -0.70077807, -3.1390622, - -0.52011895, -1.2286556, -2.6515453, 2.3642943, 1.7432779, -1.4141573, - -2.10122, 0.9794409, -1.6015676, -0.8769956, -0.43734837, -0.5123777, - 1.6622455, -0.49527106, -0.73835, -1.4650933, 0.31962913, -0.5295241, - 1.1822256, -1.4508773, -0.86397415, -3.7973683, -2.8825967, - -0.016152788, -1.849726, -2.2846413, 0.35447687, 0.441857, 0.6942528, - -0.116484314, -0.4006017, -0.27926207, -2.302767, 0.30703002, - -0.6756263, -5.358786, -0.46318516, -0.27029994, 1.5530968, - -0.083758205, -0.43874428, -0.19238183, -2.3301675, -1.2535506, - -0.010886479, 0.17765245, -0.60056376, -0.7415292, 1.3541949, - -0.22047845, 0.2854965, -0.67055786, -0.27481675, -0.08621366, - -0.80357754, -0.6803289, -2.158699, -0.22243929, -0.8238096, 1.249152, - -0.042152457, -0.5830181, -1.7111186, 1.7913792, 1.5015672, 0.4042173, - -1.9210068, -2.0757592, 0.17246208, 2.1264782, -1.1726252, 0.763361, - -0.5281688, 0.4754535, -1.1342244, -0.5575205, -1.6049066, 0.6487249, - -0.6365851, -1.4515349, 1.9265959, -0.7528175, -2.441499, -0.5525696, - -1.1468594, 0.16332877, -1.2716178, -0.64352477, -0.44730064, - -2.5672417, 0.90742457, -1.7255787, -2.0141246, 1.08514, 0.16934747, - -1.1086521, -1.2676368, -1.2027307, -1.9464915, -1.182986, 1.5609044, - -0.8932703, 0.0932407, -1.3450184, 0.34419894, -0.4270095, 0.615028, - -1.1880047, -0.23238741, 0.5378119, 0.90668213, -1.168912, -0.44115305, - -0.98528194, -1.092475, -0.7040943, -1.5107914, -0.65975255, - -0.40246487, -0.65951025, -1.9303352, -1.6493607, -0.70701694, - -1.7553082, -1.7763891, -0.26742858, -1.5743513, 0.29149318, 0.5315343, - -2.4648347, -2.3137028, -1.0242896, -0.26902702, 1.0016701, -2.380665, - -0.5048774, -1.7755033, 1.194106, -1.8616103, -1.9142784, -0.7426689, - -0.2932638, 0.8245038, -1.666469, -0.43068597, -0.06301766, -2.1546717, - -1.7258378, -0.44202542, 1.6841543, -0.45339102, 0.26022077, 1.0705283, - -2.5487099, -0.93422955, -0.9697463, -0.87453085, 0.6428725, -0.5513748, - -0.45635384, -1.5909747, 0.8403144, -0.4499286, 0.929842, 1.0852697, - 0.84926105, -2.5172086, -0.7718026, 0.5549389, -1.0864105, 1.0926968, - 0.9868391, 1.5537045, -1.6189214, -2.3280642, -0.0415348, -0.14903547, - -2.0230343, -0.7720151, 1.6964124, 0.028142124, -0.5628298, 0.89867896, - 0.99992704, -0.30310524, -0.053772636, -1.4356297, -0.72766876, - -1.0650995, -0.06871201, -1.389695, -0.5894091, -0.23418465, - -0.14221585, -0.3062195, -0.34134626, -0.8143856, -0.5195698, - -1.6505852, -0.42079443, 0.11266002, 1.9132603, -2.0709448, 1.1926202, - -1.6703936, 0.69124687, -0.5903376, 0.21508448, -0.65805775, -1.5956749, - -0.09606906, -0.19034316, 0.9777517, 1.2213463, -0.43945527, -1.2197737, - -1.0185813, -1.5629971, 0.26259652, 1.2164527, 1.1475437, 0.36052117, - -0.24875158, -1.1299565, -0.995175, -1.0675457, -0.2060534, -1.584792, - -0.52877396, -1.5486816, -0.18951924, -0.36850318, -0.59849083, - -0.44750845, -1.4246808, -3.3227398, -1.689379, 1.5067279, -1.1348853, - -2.527202, -2.1444833, 2.9430351, -0.5405599, -0.9945811, -1.5092913, - 1.1341597, -0.23329914, -0.1695359, -1.553974, -1.6704104, 0.78390735, - 0.86448777, 0.32340744, -2.0017614, 0.22797439, -0.21443155, 1.5632687, - -0.4659908, -1.2335645, 1.5386479, -2.7149003, -2.6938946, -1.3364971, - 0.10566881, 0.24946418, -1.5055791, -0.46675855, -1.1954005, - 0.025961801, 1.3101699, -0.38491327, 1.8254231, 0.42057607, -1.4598768, - -1.1415806, 2.2127476, -2.0369906, -1.1332076, -0.7254162, -1.2647469, - -0.7283215, 0.3661953, -1.0789174, -1.4736954, 0.452715, -0.13920821, - -2.5569801, -1.3205359, -1.3245479, 0.50287205, 0.80260205, - -0.022740655, -0.27581525, -0.012932539, -0.47195464, -1.5653415, - -0.48754176, 0.49768522, -0.13944978, 0.05680816, -0.9396265, - -0.44559252, 0.26165462, -0.23834717, -1.7300606, 0.16385192, - -0.6219231, 0.85105854, 0.22602823, -2.0263264, 0.70795864, -1.0963416, - 2.4621868, -0.049238123, 1.1793703, 0.059518248, 2.6063325, 3.27216, - -0.12571874, 0.55975246, 0.8100565, 1.3348051, 0.9263462, -2.9064822, - -1.5262476, -2.2291508, 1.257666, -0.9268765, 0.3081684, -0.3766564 - ], - "reducedFeatures": [ - -0.022552613, -0.08636084, -0.04773986, -0.037583727, -0.04248223, - -0.07289222, -0.025700072, 0.009712771, -0.028539646, 0.010358913, - -0.00089403556, 0.05272355, -0.034111105, -0.011595452, -0.020213624, - -0.036118377, -0.017566174, 0.0046929168, -0.02161855, 0.03048811, - -0.048816074, -0.032099847, -0.02973145, -0.0015999053, 0.0057838503, - -0.027638402, 0.0058861272, 0.008083361, -0.050145753, -0.024420992, - -0.013039619, -0.018590353, -0.037014406, -0.025595056, -0.008472964, - -0.025732188, 0.018963214, 0.048921447, -0.045609664, -0.06147175, - -0.024415359, -0.03460441, 0.013952841, 0.06854884, -0.036367748, - -0.005271768, 0.021931484, 0.015018415, -0.034672093, -0.034965973, - 0.00827762, 0.031408466, 0.013161608, 0.0027150859, -0.042230222, - -0.06677937, 0.01299783, -0.0255885, -0.0022166495, -0.032082483, - 0.00066021224, -0.03148435, 0.032506924, -0.007871058, 0.023887983, - -0.02200193, -0.04073775, -0.046390124, 0.008598425, -0.028649427, - 0.021072416, -0.02047858, 0.0058770347, 0.0009002214, 0.013036778, - 0.003972677, -0.02219269, -0.05932273, 0.021463325, -0.04518788, - 0.035539586, 0.0008948688, -0.016348448, -0.006179603, 0.014485204, - 0.006459573, -0.016512232, -0.00971218, 0.05773451, -0.00666144, - -0.03879148, 0.0064327703, -0.011540142, 0.0028726049, 0.018099384, - -0.012622652, -0.06095208, -0.007001982, -0.0318283, 0.011138911, - -0.052152947, 0.035060376, 0.015812747, -0.031562034, 0.0041715303, - 0.015345736, 0.022874812, 0.009667274, 0.04287926, -0.06447875, - -0.020646663, -0.010654852, -0.02305049, 0.0044852123, -0.036642857, - 0.019320615, -0.016736476, -0.09715224, -0.012685979, -0.037295405, - 0.004901487, 0.06756369, 0.02056654, -0.005347171, -0.04841772, - -0.0009665322, 0.0066089835, -0.002584598, -0.013104068, -0.05057807, - -0.01420219, -0.04758502, -0.0003781285, -0.025652265, -0.025675012, - -0.0014698867, 0.028556434, -0.062384035, -0.02192566, -0.012066779, - -0.04094387, -0.014451848, 0.017419426, -0.020821113, -0.030238708, - -0.017523292, 0.0010700667, 0.0016958341, -0.05238652, -0.0044925422, - -0.034989543, -0.0047003315, -0.0019638906, -0.0025005576, 0.04612494, - -0.0073668123, -0.010670542, 0.014271482, -0.023636797, -0.04270043, - -0.035552368, 0.025534198, -0.008336626, 0.019028453, -0.001756156, - -0.024870504, -0.015507354, -0.002860268, -0.037028786, 0.027992215, - -0.047086764, -0.032225244, -0.024844345, -0.011849932, -0.010257254, - 0.02370881, 0.012515984, 0.0025106373, 0.03274154, -0.059414484, - 0.022914745, 0.005920063, -0.010544956, -0.008842567, -0.006449477, - -0.046414014, -0.016062267, -0.04015628, -0.03751397, -0.0072666, - 0.0393833, 0.029625548, -0.03136402, -0.040097047, -0.014828564, - 0.008440207, 0.05059037, 0.060232047, 0.0393162, -0.006935117, - -0.0081824865, -0.028715618, -0.024659604, -0.03706534, -0.025976593, - -0.016671045, -0.03517165, -0.032562442, 0.03086049, -0.019017389, - 0.041634504, -0.059427913, -0.038260043, -0.05975931, -0.000113604656, - -0.032231163, 0.05622394, -0.0069374237, -0.06214811, -0.0039909687, - -0.011796507, 0.008676075, 0.0027992125, -0.058739383, 0.027905518, - -0.056922536, -0.024319319, 0.026295383, -0.002918035, -0.01823127, - 0.01628902, -0.014816113, -0.0026680261, -7.766274e-6, -0.029513806, - 0.005993897, -0.03503582, 0.010114493, -0.031645294, -0.0021640516, - 0.011039721, -0.030214122, -0.020040222, -0.021522477, 0.006441802, - 0.016610455, -0.012674975, -0.010079809, 0.0059734043, -0.026449924, - -0.044738352, 0.032687303, 0.008125605, 0.0012352689, -0.029142886, - -0.041504648, -0.04413916, 0.00743958, -0.006168826, 0.020092411, - -0.040905956, -0.035211436, 0.00033304482, 0.005537269, -0.01612999, - -0.0013877093, -0.01745784, -0.024555646, -0.004698069, 0.022445446, - 0.075146675, -0.069187395, -0.021712655, -0.014042202, -0.036201708, - 0.01922476, -0.030187758, -0.049415972, -0.02133556, -0.035259876, - -0.026906785, -0.046839748, -0.01566852, -0.074990675, 0.028014963, - 0.0035247162, -0.007304858, -0.05228531, -0.019740924, 0.007334866, - 0.0025092186, 0.003994093, -0.008814004, -0.008517561, -0.06584828, - -0.011988364, 0.019668233, -0.025816215, 0.052181635, -0.012155697, - 0.059932187, -0.06916423, -0.046064466, 0.00723785, -0.04439332, - -0.057395034, 0.007389967, -0.004397389, -0.028691562, 0.020328531, - 0.046004903, -0.023322208, -0.0320749, 0.029932592, 0.04462495, - 0.00623049, 0.012558134, 0.0049974225, -0.010554149, 0.016339734, - -0.00082070247, 0.009679024, -0.015828725, 0.045195103, -0.034563407, - -0.08682841, 0.012356804, 0.0015418874, -0.01683457, -0.04217853, - 0.007996927, -0.014320372, -0.034969114, -0.009437516, -0.018615065, - 0.014865351, 0.045240372, 0.038012728, -0.026947305, -0.05497041, - 0.032725714, -0.010844452, -0.023670636, -0.0023569323, -0.012052168, - -0.048172053, 0.04607453, -0.0622341, 0.0023171622, -0.015355353, - -0.03370153, 0.057375245, 0.01847268, -0.019926904, 0.013595955, - -0.026262728, -0.005267636, 0.033384982, -0.017188782, -0.030666731, - -0.054174628, 0.022713523, -0.010174647, -0.01555086, -0.045431163, - 0.013168874, -0.035921283, -0.016196262, -0.04049487, -0.021278141, - -0.02213435, 0.043935444, -0.03423027, 0.012623091, 0.059555966, - 0.0010809164, -0.052720267, -0.043187495, -0.043021068, 0.014729692, - -0.005661793, -0.020927692, 0.054298576, -0.013833736, 0.040566538, - 0.047745217, 0.039553743, -0.024729088, 0.0060881726, 0.019442013, - 0.0018570175, -0.037875947, -0.006645906, -0.0014387249, -0.06419479, - -0.030604623, -0.0044096215, -0.0059229177, -0.0075940895, - -0.0087278895, -0.017991407, -0.04461026, -0.015021659, -0.0214033, - -0.047827188, -0.022235956, -0.011992824, -0.0061597778, -0.020459244, - -0.012482584, -0.002871265, 0.011528648, -0.001767734, 0.012423032, - -0.004353404, 0.012319163, 0.003114125, -0.037528075, 0.006905581, - -0.025084907, -0.0028296544, 0.010306613, -0.0015737903, -0.017324617, - -0.023975667, -0.04253859, -0.04845403, 0.0027456777, 0.033264086, - -0.014579255, -0.020582605, 0.011703081, -0.026718605, 0.0132604875, - -0.015907519, -0.016345384, -0.024055535, 0.016118463, -0.020022161, - -0.023898832, -0.04126183, -0.02130125, -0.009168112, 0.006901122, - -0.055646297, 0.073758386, -0.028946418, -0.023256397, -0.0038889549, - -0.0077921473, -0.056770105, -0.042927332, -0.017005231, -0.0063581415, - -0.05071233, -0.05127105, 0.012011344, 0.020968245, -0.055677675, - 0.045914855, -0.037469137, -0.09923232, -0.017502395, 0.013721029, - -0.034536846, 0.019379659, 0.010474565, -0.031060515, -0.0031198945, - 0.0016556995, -0.051860142, -0.045232184, -0.0016945988, -0.0017062742, - -0.028110154, -0.052411564, -0.042785734, 0.005560439, -0.007895663, - 0.014499697, -0.056535922, -0.021843614, -0.016861042, 0.010211053, - -0.037632775, -0.034030788, 0.00573149, 0.048191626, 0.046773043, - -0.029374663, -0.060526025, -0.03106229, -0.028319072, 0.006200823, - -0.031123746, -0.018762412, 0.042019796, -0.006646725, -0.030658677, - -0.00298691, -0.016637178, -0.06532046, -0.026875056, -0.020200457, - 0.028973272, -0.03447802, 0.024876526, 0.027212886, -0.01733541, - 0.023247082, -0.01349511, -0.010194063, -0.015470935, -0.015404614, - -0.056486994, 0.009597291, 0.033619273, -0.03730184, -0.03831811, - 0.043267194, 0.030883273, -0.018210325, 0.009234893, 0.01614509, - -0.007913683, 0.020806026, -0.016995404, -0.039234817, 0.013479205, - -0.02096381, -0.031104157, 0.02772216, -0.028481279, -0.006991366, - -0.005410791, -0.020180415, -0.043443453, -0.053714998, -0.030241441, - -0.02195518, 0.0048032906, 0.02012701, -0.03423203, 0.005061258, - -0.028140048, 0.026268438, 0.008682268, 0.04440304, -0.005683424, - -0.02530376, 0.015520211, 0.021014176, -0.017114341, 0.0040799957, - -0.013982886, 0.0071879635, 0.0069734114, -0.004145482, -0.0037975397, - -0.057655435, 0.013818232, -0.011445442, -0.005161625, -0.043736625, - 0.010844393, 0.012723545, 0.007637851, -0.013081763, -0.03180858, - -0.022710232, -0.02776653, -0.024845637, -0.031834017, 0.023431871, - -0.025517175, -0.04241361, 0.015585352, -0.04250232, -0.008174012, - -0.027705068, 0.0074762767, -0.026979385, -0.0063512363, 0.012064698, - -0.08945759, -0.024081418, -0.042398512, -0.012806827, 0.0042726113, - -0.021361155, -0.022438953, -0.008095496, 0.055453353, 0.012469086, - 0.0035743485, -0.0045880424, -0.03179255, 0.029612461, -0.060027633, - 0.023553906, -0.036606044, 0.018285021, -0.011262102, -0.0055940305, - 0.020518498, -0.055734828, -0.05922973, -0.05842916, 0.0004215135, - -0.03431925, -0.025350837, -0.008925223, 0.0023155268, -0.02565983, - -0.052081104, -0.005655871, 0.01625581, -0.012042781, -0.0130786, - -0.018247468, -0.057294454, 0.0036499233, 0.005683775, 0.025133384, - -0.0084824925, -0.024714645, -0.019551564, 0.043768615, -0.015557896, - 0.010508594, -0.031569526, -0.029830676, -0.043062113, -0.009948432, - -0.043382946, -0.017090505, -0.024192927, -0.03309808, -0.03171827, - -0.03884687, -0.05076519, 0.04618003, -0.022580117, -0.052847877, - -0.031006599, 0.043999847, -0.041204624, -0.04015248, -0.0337461, - -0.0316043, 0.030040637, -0.033065807, -0.005014492, -0.07081896, - 0.0011300428, 0.015145672, -0.018456673, 0.014163447, -0.002495415, - 0.017008519, 0.0329746, -0.05521105, -0.04439192, -0.041615255, - 0.024538364, -0.03170309, 0.045975853, -0.010494765, 0.0038993086, - 0.032505393, -0.0058251903, 0.05051237, -0.047805768, 0.03370011, - -0.024294032, -0.017846374, -0.036174554, -0.030318167, -0.018034518, - -0.02238659, -0.014875949, -0.0034648469, -0.019273488, 0.004279902, - -0.008730995, -0.0014102783, -0.0402458, -0.008246835, -0.04100133, - -0.06487191, -0.0010362448, 0.031727847, -0.034037787, -0.036227684, - -0.06068711, 0.0064782985, -0.016762683, -0.020403033, 0.035719376, - -0.0017354601, -0.008544691, 0.0016513485, -0.019762231, 0.007425346, - -0.022908496, -0.010815579, -0.007389458, 0.0038686404, -0.0027169713, - -0.0018701808, -0.013374643, 0.021535559, -0.023865765, -0.018185858, - 0.004261015, -0.023440162, -0.004912476, 0.018630229, -0.06367201, - 0.010484639, 0.025357712, 0.008096684, 0.012576193, 0.0035022765, - 0.016183387, 0.011442181, -0.024406996, 0.014198485, -0.01993257, - 0.007152253, -0.028100658, -0.011642544, -0.02181609, 0.035904303, - 0.044304613, -0.042369917, 0.03268899, -0.035520647, -0.014561618, - -0.042585958, -0.01618255, -0.042804647, -0.027890317, -0.05824747, - -0.006446511, 0.04120963, -0.027557416, -0.03751171, -0.04317826, - -0.023996944, 0.03383166, -0.019924015, 0.04204494, -0.017988505, - 0.035605293, 0.0077655236, -0.037786946, -0.015988715, -0.037554204, - -0.0653575, -0.026244778, -0.036131028, -0.06260783, 0.013618228, - -0.033290915, -0.0054789647, 0.0063204034, -0.019960705, -0.004030296, - 0.01792119, -0.038151007, -0.03906011, 0.021194363, -0.035219513, - -0.06228944, -0.023698965, -0.055862434, -0.06052127, -0.014810301, - 0.038385343, -0.052645635, -0.02491258, 0.033292502, 0.002713233, - 0.013219751, -0.041487843, -0.036679976, -0.0044330587, 0.0005374758, - -0.04745897, -0.04075654, 0.026465448, -0.024112193, -0.056410767, - 0.016090736, -0.0562174, -0.060164675, -0.12561183, -0.035060823, - -0.034351353, 0.061165854, 0.025962045, 0.0130023165, -0.023236917, - 0.03143326, 0.037464723, -0.016849209, 0.003697327, -0.05494173, - 0.013974143, -0.017389197, -0.03478321, -0.039372258, -0.032668494, - 0.022344295, -0.017578097, 0.020634133, 0.0116343275, -0.010180825, - -0.011828942, 0.026327148, -0.025758604, 0.00062512135, -0.038882293, - -0.007268371, -0.006181521, 0.03341732, -0.027535012, -0.0031618013, - -0.049264, -0.005757523, -0.07113133, -0.05024662, 0.036770377, - 0.007971387, -0.005382563, -0.04455343, -0.03922885, -0.004649465, - -0.023095299, -0.039897375, -0.009606902, -0.013183415, -0.023241058, - -0.017490752, -0.028384041, 0.001051159, -0.04719564, -0.027743906, - -0.040641617, -0.02836874, -0.007635193, -0.03079036, -0.024044901, - -0.023679743, 0.022520926, 0.038691834, 0.011240292, -0.035024166, - 0.008802777, -0.017215824, 0.0014327528, -0.08665763, 0.017572146, - -0.009249958, 0.004686644, -0.027575575, -0.068035215, -0.06465681, - -0.024118405, -0.04509197, 0.0037640203, 0.010288742, -0.053010676, - 0.0058060326, 0.0002308606, -0.015923629, -0.029410996, -0.03576642, - -0.009517287, -0.059350763, 0.018694518, 0.0117167765, -0.028781373, - -0.051783346, 0.004645383, -0.009642069, 0.00973469, 0.01534339, - -0.01946187, 0.020058176, -0.0040263, -0.02985832, -0.028952023, - -0.04358888, 0.02956472, -0.058360476, 0.0015477185, 0.06835335, - -0.027419554, -0.008491568, -0.063414715, -0.04280315, -0.016186908, - -0.02319861, -0.011655859, -0.032011464, -0.005222745, 0.04658463, - -0.030692168, -0.05312855, 0.008777575, -0.06571536, -0.0086972695, - -0.022366265, 0.037168384, -0.05297251, 0.02128782, 0.0063789147, - 0.0026190928, -0.029744767, 0.009886292, -0.008672837, -0.039191235, - 0.012772031, -0.028539421, -0.034482855, -0.037722155, -0.051982142, - -0.012128956, -0.015691224, 0.012347001, -0.018404204, 0.000140623, - -0.020967705, -0.016378354, -0.0410712, -0.01971388, -0.0043043215, - -0.029308043, -0.018850537, -0.043807283, -0.040893752, 0.0050820843, - -0.03051789, 0.027523551, 0.04613362, -0.022772681, -0.0052249376, - 0.043494843, -0.021978753, -0.04753092, -0.027895156, -0.037797153, - -0.010779206, 0.02191166, 0.0012440865, -0.024633348, -0.046294782, - -0.017471913, -0.008600266, -0.03452664, -0.021732781, 0.015674606, - 0.006750151, 0.0418879, -0.024909772, -0.027153851, 0.025485158, - 0.0010142793, -0.017458552, -0.014564174, 0.0021474934, 0.0031716938, - -0.063307784, 0.036577348, -0.016989864, 0.023982333, 0.05770124, - -0.032225054, -0.0006682885, -0.021247843, 0.009279662, -0.025019495, - -0.024629338, 0.005546441, -0.00014285141, 0.073348664, -0.017182965, - 0.0064132684, -0.018437186, -0.07970298, -0.029017804, -0.0718452, - -0.0048125233, -0.015403713, -0.018606674, 0.033973683, -0.05808658, - 0.021712612, -0.021586284, -0.018755274, -0.049792625, 0.027023861, - -0.07322095, -0.035384748, -0.047468547, -0.028230365, -0.07600755, - 0.011820625, 0.008220904, 0.008413108, 0.0024166116, 0.00991585, - 0.011577058, -0.05221531, -0.020451173, 0.0073415986, 0.020659966, - -0.030371228, -0.021916818, 0.003269042, 0.018759899, 0.0024032183 + "features": [ + -0.012360112, + -0.04244972, + -0.014910134, + -0.02070286, + -0.022312671, + -0.034593545, + -0.014556461, + 0.006038758, + -0.014444254, + 0.003375979, + -0.0034648504, + 0.026145037, + -0.02012163, + -0.0045355596, + -0.0068016513, + -0.017106287, + -0.008757914, + 0.005214754, + -0.011416287, + 0.019076092, + -0.022224091, + -0.016978823, + -0.016383225, + -0.0015990209, + 0.0020269002, + -0.017037265, + 0.0033638948, + 0.0015570313, + -0.024415083, + -0.009886628, + -0.0061444147, + -0.008910731, + -0.01782128, + -0.013213814, + -0.0051649464, + -0.010649244, + 0.01168848, + 0.024784598, + -0.022374056, + -0.028169543, + -0.015072606, + -0.017778013, + 0.009398931, + 0.035118274, + -0.01640117, + -0.0060160686, + 0.008984161, + 0.0038548347, + -0.01701346, + -0.01668985, + 0.0045173136, + 0.01839306, + 0.005174374, + 0.006653327, + -0.025475644, + -0.033985443, + 0.0067320904, + -0.011538928, + -0.0033581266, + -0.017514527, + -0.0015437757, + -0.017054062, + 0.014661248, + -0.0038889737, + 0.017249072, + -0.009803384, + -0.019058546, + -0.022407727, + 0.006700823, + -0.014935616, + 0.0115971835, + -0.0056032008, + 0.002850905, + 6.2627274e-05, + 0.0047939215, + 0.00073871564, + -0.007970457, + -0.029809227, + 0.013773218, + -0.021240668, + 0.019619577, + 0.0017851, + -0.010921987, + 0.00081027363, + 0.009129369, + 0.0010963244, + -0.008332602, + -0.0035638278, + 0.026383528, + -0.005782838, + -0.016263127, + 0.0038363668, + -0.007716685, + 0.0035501518, + -0.0003851828, + -0.006256122, + -0.03441371, + -0.0072855065, + -0.018079534, + 0.007874296, + -0.026408602, + 0.018661484, + 0.0037833205, + -0.015741026, + 0.0033234283, + 0.005684673, + 0.015054962, + 0.004494112, + 0.023133157, + -0.032183196, + -0.0065199863, + -0.0024910148, + -0.011570356, + 0.0021447588, + -0.018576201, + 0.007807924, + -0.008412651, + -0.048616357, + -0.0097512, + -0.021719262, + 0.007761827, + 0.040063623, + 0.008669612, + -0.0023851744, + -0.024656238, + -0.0002722626, + 0.0010925957, + -0.0019994464, + -0.004467175, + -0.028112626, + -0.0061056525, + -0.023649186, + -0.000887986, + -0.012442013, + -0.0071325265, + -0.001721088, + 0.011604784, + -0.03517622, + -0.008902942, + -0.0056742965, + -0.019917035, + -0.010134643, + 0.0011861203, + -0.008874967, + -0.012220021, + -0.0065081506, + 0.0022748387, + -0.00086319045, + -0.023955384, + -0.0012092668, + -0.022041962, + -0.0037191221, + -0.0009283608, + -0.0025541664, + 0.024630819, + -0.004897609, + -0.005380306, + 0.011257293, + -0.0101168435, + -0.025517583, + -0.017611602, + 0.012116778, + -0.006705227, + 0.009839766, + 0.00017162577, + -0.009271734, + -0.0050996486, + -0.004532465, + -0.017896084, + 0.014587033, + -0.02463705, + -0.01733888, + -0.011985834, + -0.0043470375, + -0.0058143176, + 0.010779555, + 0.0013412194, + -0.00075984106, + 0.016944047, + -0.027252534, + 0.013986142, + -0.0053093294, + -0.002773953, + -0.0061628446, + -0.0015541718, + -0.020451197, + -0.011371608, + -0.019035054, + -0.0206563, + -0.001823773, + 0.016490655, + 0.014755871, + -0.012576774, + -0.019037556, + -0.008533379, + 0.002639522, + 0.02675246, + 0.0278063, + 0.017122617, + -0.0032184094, + -0.005445173, + -0.016789898, + -0.012632164, + -0.017216362, + -0.012178649, + -0.006138177, + -0.012595932, + -0.018174015, + 0.0163861, + -0.01016218, + 0.018169684, + -0.032592915, + -0.02129799, + -0.031455617, + -0.00025030447, + -0.016204162, + 0.030263077, + -0.0008868089, + -0.027715784, + -0.005255941, + -0.007914972, + 0.0067152428, + 0.0016120025, + -0.027547425, + 0.016382383, + -0.03137761, + -0.009692292, + 0.011965301, + -0.00028160706, + -0.008213868, + 0.008177299, + -0.0036523351, + -0.0032846644, + 0.0037714695, + -0.012231699, + 0.0021877128, + -0.016034879, + 0.005629879, + -0.01424503, + -0.0008810923, + 0.0016859076, + -0.0155724315, + -0.009661097, + -0.013720303, + 0.0027839295, + 0.009051958, + -0.0041152965, + -0.0021699753, + -7.809626e-05, + -0.0117754135, + -0.02191647, + 0.01751313, + 0.0039491835, + -0.00035472482, + -0.010996953, + -0.021904806, + -0.02183244, + 0.0059768343, + -0.003570184, + 0.009031302, + -0.017660167, + -0.015422441, + -0.00068550697, + 0.005547709, + -0.006319345, + -0.0034365898, + -0.0024081266, + -0.012969241, + -0.0031044555, + 0.012845128, + 0.037237648, + -0.03290692, + -0.009402143, + -0.008078647, + -0.019327812, + 0.013944624, + -0.013090887, + -0.025187666, + -0.0082272515, + -0.019198352, + -0.014531122, + -0.024142431, + -0.008631519, + -0.03810027, + 0.012774225, + 8.9593974e-05, + -0.002155432, + -0.023142613, + -0.004413289, + 0.0010389368, + 0.005376786, + 0.0028983701, + -0.0045451927, + -0.0037379132, + -0.031964306, + -0.0045448486, + 0.01120425, + -0.013160281, + 0.024554458, + -0.0050517037, + 0.0310789, + -0.032751124, + -0.022517767, + 0.008938855, + -0.023632856, + -0.0328933, + 0.0007053341, + -0.0017374968, + -0.012448156, + 0.009022812, + 0.02364955, + -0.009916463, + -0.013506338, + 0.014669179, + 0.024790067, + 0.0005119765, + 0.007737528, + 0.004551572, + -0.0060927384, + 0.0116754165, + 0.0020992358, + 0.0045726867, + -0.012439964, + 0.024637833, + -0.019408686, + -0.039126012, + 0.008695737, + -0.0033177184, + -0.010448214, + -0.02116086, + 0.0069306283, + -0.005772208, + -0.019942934, + -0.005536473, + -0.012558998, + 0.0074870787, + 0.02218469, + 0.017118447, + -0.011786162, + -0.027770575, + 0.016063608, + -0.0083303815, + -0.014800938, + 0.0019313019, + -0.007253429, + -0.02580976, + 0.022319287, + -0.029545916, + -0.0012359157, + -0.0060218824, + -0.015650904, + 0.029336931, + 0.0071545737, + -0.009354922, + 0.006863254, + -0.014860584, + -0.0016737846, + 0.018035676, + -0.0045423987, + -0.01837097, + -0.025375897, + 0.01194983, + -0.00519195, + -0.007961195, + -0.01750024, + 0.0040847785, + -0.02003058, + -0.0077588963, + -0.021172712, + -0.008085269, + -0.01100494, + 0.021828253, + -0.013340503, + 0.007856672, + 0.03214468, + 0.0011197185, + -0.025452875, + -0.022566045, + -0.022294927, + 0.006660366, + 0.0015046665, + -0.009657349, + 0.029551277, + -0.0021431413, + 0.018430313, + 0.021860572, + 0.021010542, + -0.013577121, + 0.0040752543, + 0.011270433, + 0.0031802654, + -0.01666759, + -0.0036747563, + 0.0023242612, + -0.03232744, + -0.014896487, + -0.00078422733, + -0.002275701, + -0.0067193485, + -0.0062918267, + -0.009155443, + -0.020609284, + -0.0077370564, + -0.009529196, + -0.025832573, + -0.010615856, + -0.0084804995, + -0.0041532773, + -0.012448647, + -0.0049510826, + 0.00040968796, + 0.008469695, + -0.0012496918, + 0.0074365907, + -0.004066809, + 0.008472163, + 0.0021747851, + -0.018378334, + 0.0030431869, + -0.012368052, + -0.002591576, + 0.007308743, + -0.005427488, + -0.008186031, + -0.010930147, + -0.02064977, + -0.02413001, + 0.0040673576, + 0.013106849, + -0.0048623076, + -0.012116326, + 0.0048545045, + -0.012837649, + 0.0051178182, + -0.009054921, + -0.0021480771, + -0.012451708, + 0.0076259226, + -0.0049038334, + -0.008440601, + -0.01963241, + -0.011514278, + -0.0026238633, + 0.0045151734, + -0.025946494, + 0.037793405, + -0.014556701, + -0.009064917, + -0.0010295422, + -0.005427002, + -0.028591031, + -0.022110943, + -0.009510087, + -0.0033975397, + -0.020985078, + -0.027836874, + 0.007075049, + 0.007194113, + -0.028683562, + 0.024190422, + -0.017163249, + -0.049538597, + -0.011202795, + 0.0036973418, + -0.019106176, + 0.011216096, + 0.007981837, + -0.015957788, + -0.0032791207, + 0.0023274787, + -0.025030078, + -0.022169868, + 0.0024614173, + -0.001369563, + -0.012451345, + -0.025825303, + -0.023454148, + -0.002280886, + -0.0032400414, + 0.0103105055, + -0.028274747, + -0.016565604, + -0.004817892, + 0.0026630973, + -0.017405003, + -0.020916725, + 0.0030760758, + 0.023943882, + 0.022414155, + -0.01300376, + -0.028735932, + -0.015970455, + -0.013501356, + 0.003809915, + -0.015121504, + -0.008183819, + 0.019511761, + -0.0035933864, + -0.01281169, + 0.00015126684, + -0.00950355, + -0.03430221, + -0.010805412, + -0.014588683, + 0.014162337, + -0.01954322, + 0.013450501, + 0.016161395, + -0.009390922, + 0.01617086, + -0.0051785773, + -0.0013944717, + -0.0049475525, + -0.004625913, + -0.026357474, + 0.011617217, + 0.017226465, + -0.016880194, + -0.019760894, + 0.022202002, + 0.012381672, + -0.011112487, + 0.0032278453, + 0.010687972, + -0.00686246, + 0.0015857768, + -0.010466881, + -0.017475845, + 0.007889883, + -0.010757833, + -0.011900799, + 0.01858105, + -0.015137847, + -0.0057404833, + -0.003502014, + -0.011828583, + -0.019489141, + -0.026327172, + -0.0124321105, + -0.010464045, + 0.0033421232, + 0.0054983716, + -0.020000067, + 0.005035075, + -0.01126662, + 0.017740756, + 0.0054484378, + 0.020968555, + -0.004333663, + -0.0111492835, + 0.008485421, + 0.0125510935, + -0.007619143, + -0.00026990625, + -0.0059377067, + 0.004066671, + 0.0029106417, + 0.0019454154, + -0.00085003633, + -0.02888588, + 0.0052375942, + -0.0074964873, + -0.0040195943, + -0.024633575, + 0.0024524766, + 0.005360575, + 0.0016854494, + -0.004557172, + -0.01758592, + -0.0120715145, + -0.012683207, + -0.012521075, + -0.01202662, + 0.010622919, + -0.013011012, + -0.021068146, + 0.0051352056, + -0.02010534, + -0.00440218, + -0.012368635, + 0.0040619397, + -0.012392492, + -0.0029844157, + 0.0039726105, + -0.04142466, + -0.014338941, + -0.025453968, + -0.005964063, + 0.001407515, + -0.0057108756, + -0.012938614, + -0.005374925, + 0.024909977, + 0.0057209935, + 0.00033805685, + 0.0005522269, + -0.013544626, + 0.016072862, + -0.030691335, + 0.011396779, + -0.01673034, + 0.0056711202, + -0.0043323217, + 0.001977109, + 0.014102868, + -0.028465567, + -0.02932176, + -0.029018236, + -0.0024469583, + -0.01564385, + -0.013004236, + -0.0014237962, + 0.0027352842, + -0.0115751885, + -0.027786812, + 2.4706527e-05, + 0.009230421, + -0.008056255, + -0.00752593, + -0.005533893, + -0.028752955, + -0.0028217244, + 0.00445512, + 0.012601869, + -0.0050121145, + -0.013040162, + -0.012825765, + 0.024269102, + -0.008443043, + 0.006795722, + -0.01650381, + -0.012722952, + -0.022125931, + -0.003856902, + -0.018783202, + -0.014272055, + -0.013418919, + -0.016512496, + -0.016653331, + -0.020003056, + -0.02468101, + 0.021460358, + -0.012526082, + -0.02528878, + -0.01653544, + 0.0213783, + -0.022979628, + -0.018627243, + -0.015457251, + -0.01794622, + 0.01297799, + -0.013297832, + -0.0005414972, + -0.03383959, + 0.0014694714, + 0.008644016, + -0.00586085, + 0.00670702, + -0.00065968925, + 0.012735733, + 0.016837401, + -0.022076866, + -0.02291827, + -0.020869518, + 0.013049416, + -0.022685887, + 0.023130829, + -0.004572138, + 0.000518978, + 0.015629048, + -0.0016155075, + 0.025862463, + -0.02365586, + 0.018145846, + -0.012300166, + -0.009551383, + -0.019146545, + -0.018203534, + -0.011930324, + -0.013293376, + -0.008773905, + -0.0011018697, + -0.012265809, + 0.004574359, + -0.0035392428, + 0.001532919, + -0.022415508, + -0.0036396391, + -0.02095244, + -0.032300655, + 0.0013450998, + 0.019175742, + -0.013243678, + -0.018980898, + -0.030537874, + 0.005921695, + -0.009892255, + -0.010774857, + 0.018041348, + 0.0014678312, + -0.0011316902, + 0.0017369644, + -0.0097918315, + 0.00400101, + -0.011906974, + -0.0063548815, + -0.0050432454, + 0.0019708425, + -0.000650445, + 0.0019883001, + -0.0064921128, + 0.010435864, + -0.009808659, + -0.0077261413, + 0.00022475542, + -0.011491093, + -0.0035947326, + 0.012154772, + -0.031030072, + 0.004530212, + 0.009135912, + 0.004688349, + 0.002782974, + 0.00068536005, + 0.008427656, + 0.006094051, + -0.021169936, + 0.0075646443, + -0.0067223986, + 0.0015080549, + -0.01758513, + -0.005521835, + -0.012028522, + 0.019725127, + 0.021319386, + -0.022227868, + 0.020307261, + -0.017214578, + -0.006513858, + -0.021075778, + -0.0077441866, + -0.018515117, + -0.010570006, + -0.024112992, + -0.0034604697, + 0.020860083, + -0.01319443, + -0.017385226, + -0.020090671, + -0.010509767, + 0.020222472, + -0.007897306, + 0.021621028, + -0.007164591, + 0.017174313, + 0.002687083, + -0.017858118, + -0.010392848, + -0.019399095, + -0.034352224, + -0.018828843, + -0.015862994, + -0.02998318, + 0.007145477, + -0.017858624, + -0.003469764, + 0.0070075165, + -0.008568594, + -0.002776741, + 0.008365602, + -0.019220037, + -0.019627528, + 0.01196486, + -0.014793059, + -0.0334416, + -0.010623472, + -0.02788981, + -0.03149691, + -0.006839833, + 0.019780017, + -0.023815773, + -0.0070164064, + 0.01912174, + 0.001596835, + 0.0055828816, + -0.019315004, + -0.017514063, + -0.0038938287, + -0.0007818478, + -0.020156981, + -0.01746337, + 0.012669331, + -0.010186827, + -0.029109286, + 0.004959118, + -0.023184726, + -0.030469354, + -0.056578353, + -0.018403944, + -0.021098807, + 0.027899303, + 0.013651823, + 0.011594959, + -0.015817113, + 0.016879298, + 0.017631138, + -0.010105039, + 0.0055475854, + -0.024914347, + 0.007195214, + -0.008819937, + -0.0202688, + -0.018243128, + -0.012462723, + 0.012568187, + -0.00589577, + 0.013584035, + 0.003161449, + -0.0066634608, + -0.009729026, + 0.015551217, + -0.014817152, + -0.0008823053, + -0.01908459, + -0.0033241655, + -0.004335479, + 0.01838612, + -0.012512282, + -0.0013343889, + -0.024889225, + -0.0009644364, + -0.03738458, + -0.025185393, + 0.017841542, + 0.0019016933, + -0.0052701477, + -0.02068831, + -0.017443446, + -0.0031265575, + -0.010122733, + -0.016022762, + -0.00314442, + -0.0021107271, + -0.015942724, + -0.012365788, + -0.018465994, + -0.0047465493, + -0.020393578, + -0.010233708, + -0.019372204, + -0.017937016, + -0.0021094957, + -0.016017571, + -0.013045037, + -0.012372197, + 0.012119741, + 0.017124148, + 0.007485578, + -0.015569461, + 0.008184207, + -0.006217572, + -0.0035208273, + -0.04003871, + 0.009603797, + -0.00285763, + -0.003126699, + -0.014685495, + -0.032228593, + -0.031479254, + -0.010955855, + -0.021617698, + -0.0038580226, + 0.005441793, + -0.035137653, + 0.00091387494, + 0.0017929598, + -0.011358853, + -0.013708769, + -0.026208907, + -0.0028877363, + -0.030296646, + 0.010566465, + 0.005442401, + -0.013660221, + -0.021277525, + 0.00061001437, + -0.0058849417, + 0.00836528, + 0.0041792733, + -0.0072183693, + 0.0069483267, + -0.0056210454, + -0.012392724, + -0.015634535, + -0.020461543, + 0.013988664, + -0.027289327, + 0.0027465376, + 0.031571254, + -0.015209622, + -0.0023915868, + -0.028480574, + -0.024434833, + -0.007845234, + -0.01127179, + -0.005805841, + -0.014585583, + -0.0008714483, + 0.02183678, + -0.012785685, + -0.022610921, + 0.0032157474, + -0.03418083, + -0.0046003005, + -0.010617541, + 0.020570893, + -0.026199754, + 0.015826482, + 0.0078127775, + 0.0026920908, + -0.013724872, + 0.005365742, + -0.002546412, + -0.020406794, + 0.0035539558, + -0.012509667, + -0.017670978, + -0.025787322, + -0.024998143, + -0.0059879767, + -0.009149879, + 0.001357787, + -0.0076820417, + -0.0009100909, + -0.013663365, + -0.006494143, + -0.019385131, + -0.010916463, + -0.002870775, + -0.014182254, + -0.009304086, + -0.017650923, + -0.021258948, + -0.0014996226, + -0.014227936, + 0.01484048, + 0.022824425, + -0.013516771, + -0.00062526297, + 0.022358198, + -0.013237937, + -0.027460793, + -0.016688963, + -0.019568829, + -0.0059652673, + 0.015433775, + -0.0009895585, + -0.012130976, + -0.021557378, + -0.005081196, + -0.0035495376, + -0.019105582, + -0.017699186, + 0.011401743, + 0.0047539202, + 0.023740927, + -0.011862631, + -0.013145396, + 0.016011078, + 0.004192387, + -0.0069015916, + -0.0043864897, + 0.0004740024, + 0.0022741654, + -0.035549372, + 0.018584928, + -0.005715448, + 0.015390886, + 0.025344789, + -0.016498718, + -0.00028779445, + -0.008747909, + 0.00180319, + -0.010168093, + -0.015824229, + -0.0012578337, + -0.0014842111, + 0.03777105, + -0.0056995973, + 0.0017601498, + -0.006783371, + -0.036869388, + -0.01219502, + -0.035870496, + 0.00084198406, + -0.0069678044, + -0.010056264, + 0.01801197, + -0.028132224, + 0.010858019, + -0.011927774, + -0.012247619, + -0.02510964, + 0.014485947, + -0.03493221, + -0.01959062, + -0.024619158, + -0.01563811, + -0.034286488, + 0.0032199374, + 0.0028681152, + 0.0046817963, + 0.001102082, + 0.0035815795, + 0.00587127, + -0.022106027, + -0.009194952, + 0.0041994946, + 0.01055231, + -0.0125066545, + -0.010857347, + 0.0023915188, + 0.009428529, + 0.0052619325, + -0.011399913, + -0.0055897515, + -0.017552327, + -0.007947607, + -0.015453727, + -0.010988245, + 0.027204797, + 0.0019054417, + 0.012022573, + 0.0138687715, + -0.0010863605, + -0.0105839865, + -0.017457481, + -0.021653764, + -0.001433947, + 0.0074313693, + 0.012606287, + -0.004488517, + -0.015237844, + -0.01950274, + -0.0065601985, + -0.00889782, + 0.0060517862, + 0.009363388, + -0.017860372, + -0.0031001132, + -0.01686119, + -0.032518122, + -0.011606015, + 0.0015338082, + -0.0029722962, + -0.015732683, + -0.013273568, + -0.0003119874, + 0.009690128, + 0.013439834, + -0.0033994415, + 0.00082026597, + -0.020983431, + -0.010855351, + 0.016107364, + -0.0017992073, + 0.014882445, + -0.004035989, + -0.021645349, + 0.0045636483, + -0.024793955, + -0.046805296, + 0.010094853, + 0.0047414224, + 0.011220615, + -0.011294272, + -0.0118208835, + -0.023612628, + -0.026162582, + 0.037353054, + 0.01404584, + -0.022168847, + -0.025973322, + 0.011603653, + 0.00821147, + -0.03245805, + -0.016419103, + -0.005634513, + 0.008353426, + -0.002296373, + 0.0010409554, + 0.003255994, + 0.0072125173, + -0.018801635, + 0.0037387935, + -0.0020318346, + -0.021738961, + 0.0028465155, + -0.01778079, + 0.001418309, + -0.011359384, + -0.016025893, + -0.020509455, + -0.038837496, + 0.00018962992, + -0.016646149, + -0.022662172, + -0.00076292665, + -0.024563212, + 0.0244669, + -0.004050076, + -0.008638368, + 0.019299943, + 0.0039633657, + -0.0024666337, + -0.004618843, + 0.028689198, + -0.0029186085, + 0.022748796, + -0.0033008598, + 0.007934909, + 0.0038314671, + 0.014886755, + 0.0039762272, + -0.015181776, + 0.0057811067, + 0.0038446994, + -0.0013128081, + 0.008759041, + -0.009744646, + -0.01480463, + -0.03883659, + 0.007601929, + -0.013192546, + -0.021990757, + 0.014197222, + -0.012771411, + 0.0033080836, + 0.007564951, + 0.00432294, + -0.009686205, + 0.016235486, + 0.016357224, + -0.003740795, + -0.04343133, + -0.01708832, + 0.021331325, + -0.017524162, + -0.016748348, + 0.003811412, + -0.0018334246, + -0.0058008237, + 0.017624194, + -0.012014404, + -0.01617265, + -0.024799949, + -0.024986552, + -0.0020390078, + 0.00028923876, + -0.021042228, + 0.0058626155, + -0.024216343, + -0.015635332, + -0.021265088, + 0.0124715045, + 0.003453863, + -0.0032730775, + -0.015834386, + -0.012136655, + 0.00029673005, + -0.027464382, + -0.00093986, + -0.046706308, + 0.006331739, + 0.0021350253, + -0.0012680786, + -0.021356754, + 0.012839977, + 0.003997939, + -0.027926804, + 0.028266069, + -0.01314829, + -0.016335279, + -0.006658625, + 0.006912039, + -0.007283695, + 0.014050118, + 0.017057288, + -0.0036029173, + -0.002571316, + -0.00018232108, + -0.008055483, + -0.007851998, + -0.013411339, + -0.008630826, + -0.015197559, + -0.018124485, + 0.0064577893, + -0.024663292, + -0.009956395, + -0.008842578, + -0.019529227, + -0.0049481625, + 5.415452e-05, + 0.012515754, + -0.015637044, + 0.015780084, + -0.021765128, + -0.008721657, + -0.0068075676, + -0.020541236, + -0.01831733, + -0.0067637293, + -0.01269947, + -0.0025357113, + -0.012763194, + 0.01039859, + 0.022870557, + -0.019086279, + -0.018495468, + 0.00051082525, + -0.013969389, + 0.0003202502, + 0.015185783, + 0.003209448, + -0.025120426, + -0.005500102, + -0.0024242008, + -0.013035297, + 0.031583507, + -0.018554518, + -0.016618306, + 0.0046919007, + -0.007335068, + 0.0022565087, + -0.0462475, + -0.016069897, + -0.0065377, + -0.0052985805, + 0.0044175135, + -0.02580865, + 0.010499009, + -0.024458151, + -0.029788096, + 0.0017091484, + 0.018037867, + -0.00051442673, + -0.00013458874, + -0.011049364, + -0.012049935, + -0.0022819063, + 0.0032977902, + 0.009951002, + 0.032045417, + 0.013241076, + -0.020391159, + -0.0041374853, + 0.007436903, + -0.0148992855, + 0.025887758, + -0.020218527, + -0.0075980583, + 0.022270061, + 0.010974299, + 0.009988615, + -0.0024772673, + -0.01320565, + -0.005210645, + 0.0016993586, + 0.012541368, + 0.027610343, + -0.009745966, + 0.0012905413, + 0.0075326227, + -0.013853935, + -0.015676934, + 0.004890633, + 0.012908597, + -0.019467806, + 0.0030091484, + 0.013572725, + -0.0047428953, + -0.009378762, + -0.007404484, + 0.0041858032, + -0.015375472, + 0.00060409156, + -0.013397234, + 0.0056399996, + 0.0039151646, + 0.007289086, + 0.0062439437, + -0.011936662, + -0.02563232, + 0.008337033, + 0.016036417, + -0.0141138155, + -0.012659284, + -0.010836269, + -0.0018245681, + 0.010973878, + -0.011532742, + -0.004898086, + -0.0041880445, + -0.0071581895, + 0.014863139, + -0.0078047127, + -0.009822044, + -0.013578302, + -0.014260933, + 0.022924874, + -0.009056023, + -0.0107012335, + -0.01340952, + -0.004358727, + -0.002499796, + -0.011083813, + 0.0034173739, + -0.009300522, + -0.020242188, + -0.009627831, + 0.009349022, + -0.020704104, + 0.01069226, + 0.011377005, + 0.01588111, + -0.0055579436, + -0.0087514, + -0.0058401213, + -0.0033184858, + 0.011690489, + -0.014635372, + -0.02747988, + -0.028385116, + 0.0013637771, + -0.009992877, + -0.0030128523, + -0.01600499, + -0.014025187, + -0.03270356, + -0.010531885, + 3.8062826e-05, + -0.013659833, + -0.038433217, + -0.016233083, + -0.017041668, + -0.005796176, + 0.008366979, + -0.011486915, + -0.011147827, + -0.01662521, + -0.024633018, + -0.014687394, + 0.0058568744, + -0.013721569, + -0.004792637, + -0.020563917, + -0.026832698, + -0.014159163, + -0.018845387, + -0.015396631, + -0.017683899, + -0.007013307, + -0.005818177, + 0.0058217077, + 0.001739709, + -0.017379336, + -0.0030642052, + 0.020541783, + 0.006384262, + 0.005747385, + -0.011641007, + -0.016566811, + 0.0101914145, + 0.0038106516, + -0.023978887, + 0.0072049885, + -0.0006565225, + -0.022512713, + 0.02119731, + 0.0045247544, + 0.009921033, + 0.002959702, + -0.023107553, + -0.0015399475, + 0.0033912947, + 0.016659597, + 0.004143631, + 0.020596426, + -0.026403928, + -0.0032151253, + -0.016049163, + -0.0064615365, + -0.016480975, + -0.029255845, + -0.02810695, + -0.023387155, + 0.008411162, + 0.019568045, + 0.003662734, + 0.016163832, + -0.012703658, + -0.0070266, + 0.008440033, + -0.009050417, + -0.0018457504, + -0.0006690257, + -0.010440943, + -0.008398412, + -0.0051960354, + -0.038092095, + 0.00023761787, + 0.0028475265, + -0.025119744, + -0.02059175, + 0.016952096, + 0.01105375, + -0.005722494, + 0.006311667, + -0.004900479, + -0.009721906, + -0.0005851668, + -0.0119374115, + -0.016056586, + -0.0061078225, + -0.00011133605, + -0.0013050311, + -0.03547104, + -0.023087993, + 0.004039319, + -0.006714557, + 0.0018382934, + 0.0017855314, + -0.019309424, + 0.008753633, + -0.00991516, + -0.0014407117, + 0.0039616562, + -0.014963489, + -0.00033807836, + -0.012766511, + -0.011812773, + 0.014598313, + 0.00031977668, + 0.0077576684, + -0.016361833, + -0.011477011, + 0.0005254273, + -0.002936146, + -0.000443383, + 0.019296939, + -0.014677878, + -0.016148577, + -0.0103007415, + -0.000943608, + -0.011569329, + -0.014614717, + -0.012543614, + -0.011538043, + -0.008539555, + -0.00719282, + -0.018564405, + 0.003983358, + -0.01915871, + -0.0028888127, + -0.00096586347, + 0.007448207, + -0.018016757, + 0.0005413628, + -0.011137027, + -0.007306022, + 0.0057573044, + 0.02083957, + 0.012759263, + -0.0034436185, + -0.015738243, + -0.008381924, + 0.0054098833, + 0.010926605, + -0.004401406, + -0.010071444, + -0.011418525, + -0.006594857, + -0.0021673082, + 0.012952146, + 0.0075746654, + -0.025089338, + -0.021752018, + -0.016994188, + -0.01161055, + -0.0128292795, + -0.021246033, + -0.0075717764, + -0.0011017997, + 0.0027428635, + -0.016065972, + -0.018332096, + 0.021063088, + -0.012784307, + -0.02476825, + -0.0073502283, + -0.020218533, + -0.011516278, + -0.009526388, + -0.004219791, + 0.008296001, + 0.017363554, + 0.0048138495, + 0.009231056, + -0.008063451, + 0.005473256, + -0.0062470725, + -0.007918747, + 0.0037118467, + -0.024312137, + 0.004271335, + -0.014708529, + 0.0031045899, + 0.010307135, + -0.01115684, + -0.024846468, + -0.0039150952, + -0.0033914265, + -0.028515926, + -0.0052238815, + -0.02404475, + -0.02050687, + -0.012535469, + 0.0025344316, + -0.03576925, + -0.020900613, + 0.006316639, + 0.013891428, + -0.025761299, + 0.0018892679, + -0.019852787, + 0.019198755, + 0.006302583, + 0.0067909444, + 0.0012214808, + -0.026798775, + -0.011377143, + -0.016375551, + -0.02139067, + -0.0046873474, + 0.009096674, + -0.021307299, + 0.028297428, + -0.015913246, + 0.016546708, + 0.005291114, + -0.01737486, + -0.0034766984, + 0.01643946, + 0.026680412, + -0.008460991, + -0.002918872, + 0.016712995, + -0.00940639, + -0.01009221, + -0.00068568415, + -0.029223178, + -0.004941562, + -0.013310675, + -0.010158138, + 0.021986939, + -0.009369857, + 0.010490315, + 0.0006719482, + -0.0045758504, + -0.0014771351, + -0.0024156515, + -0.028874384, + -0.02355172, + 0.01822014, + -0.030256186, + -0.00714033, + 0.009025727, + -0.03297206, + -0.009964289, + -0.013507678, + -0.0018156186, + -0.016645445, + 0.001702508, + -0.012356433, + -0.009088081, + -0.036259715, + 0.008687827, + -0.018213525, + -0.011845455, + -0.0072486303, + -0.017652204, + -0.00659841, + -0.0037358373, + -0.014930344, + 0.008589967, + -0.006572307, + -0.00073770626, + 0.001977088, + -0.0026650669, + -0.0039695418, + 0.001349962, + -0.0026015653, + -0.025258785, + 0.016268492, + -0.026892018, + -0.02317464, + -0.021396337, + -0.018179333, + -0.0015769089, + -0.0070740827, + -0.014388449, + -0.030035298, + 0.0040386897, + 0.020747378, + -0.021802368, + -0.017048223, + -0.01499289, + -0.034138445, + 0.015110163, + -0.0025988866, + 0.0024730335, + -0.0038761105, + -0.028569631, + -0.006524598, + -0.0015214438, + 0.0030431696, + 0.0019001738, + 0.0037423796, + 0.0047528613, + -0.014861363, + -0.010928483, + -0.008970257, + -0.032165382, + 0.009338034, + 0.0034882051, + -0.0068243667, + -0.012575642, + -0.009714582, + -0.009580826, + -0.0122049935, + -0.030334411, + -0.00012890609, + 0.0055638994, + 0.00943952, + 0.0014527346, + 0.0008276198, + 0.009872522, + -0.009447413, + 0.0067976266, + -0.008118499, + -0.019587805, + 0.001476443, + 0.009547739, + 0.0061858916, + 0.004677199, + -0.011181986, + 0.0012878546, + 7.2006446e-07, + -0.018455988, + -0.0036160029, + -0.009261431, + 0.0012820043, + 0.00065293745, + -0.0019120342, + -0.0070493, + -0.010003011, + -0.011175526, + -0.008276831, + -0.011245432, + 0.016988788, + -0.022380918, + -0.0119359335, + -0.030186146, + -0.0025504164, + -0.01629205, + -0.023554306, + -0.0060660155, + -0.023503307, + -0.003881806, + -0.025314773, + -0.00095338246, + 0.019687386, + -0.027401421, + 0.0060352627, + -0.019233579, + -0.0048022675, + -0.005218452, + 0.033644382, + -0.0019626345, + -0.010466122, + -0.02080601, + -0.012201297, + 0.025320007, + -0.008954246, + -0.028714333, + -0.015231592, + -0.010084325, + -0.0062726876, + 0.0030776616, + -0.008417886, + 0.013761068, + -0.008278444, + 0.005768538, + 0.001116603, + -0.023935845, + 0.016819425, + -0.0008954404, + -0.020240389, + -0.008835793, + 0.00032670156, + 0.007786924, + -0.015808731, + 0.00080922066, + 0.022090845, + -0.014658922, + 0.0025762254, + -0.016075272, + -0.01869683, + -0.004424795, + -0.008520876, + -0.003521073, + -0.01691538, + -0.024570333, + 0.0010008991, + -0.0021013685, + -0.0011224729, + -0.0037728017, + 0.0025161651, + -0.00273836, + -0.0139446305, + -0.0033601467, + 0.023518637, + 0.00087613874, + 0.0010576255, + -0.0049477182, + -0.016378045, + -0.020169422, + -0.014035225, + 0.0070280563, + -0.0035681077, + 0.03630666, + 0.00054279366, + 0.00068274984, + -0.012633716, + -0.023690198, + -0.0099711055, + -0.010555193, + -0.0028189064, + -0.026007066, + -0.010028197, + -0.02444441, + -0.0054563917, + -0.00069314183, + -0.026113467, + 0.0015523572, + 0.008213251, + -0.022872437, + -0.016298907, + 0.0024096684, + -0.021879984, + 0.01534386, + 0.018198367, + -0.0030004333, + -0.010723477, + -0.008215903, + -0.015428792, + -0.020699268, + 0.021143517, + -0.018547937, + -0.011464944, + 0.0055420417, + -0.015645245, + -0.0011970181, + -0.0008423866, + 0.005937394, + 0.0056194277, + -0.0147421425, + 0.021883182, + 0.00011045643, + -0.011310359, + 0.007507739, + 0.0016514291, + -0.003711641, + -0.014753613, + 0.015873984, + -0.006698098, + -0.028734393, + -0.011776725, + -0.017452346, + -0.0018135128, + -0.015935883, + -0.004585386, + 0.012461503, + -0.028307144, + -0.011979063, + -0.0003641587, + -0.009905775, + -0.00017681855, + -0.009604398, + -0.019039487, + 0.003293066, + -0.038521256, + -0.015602795, + -0.008409331, + -0.016140064, + -0.014293187, + -0.018924827, + -0.020920448, + -0.011648145, + -0.015458321, + 0.00033163934, + -0.021487927, + -0.033941157, + -0.0055092652, + 0.006074949, + 0.0040451437, + -0.005993573, + -0.011837274, + -0.009371389, + 0.002109292, + 0.0020407313, + -0.01948838, + -0.0027222906, + -0.025406094, + -0.002470695, + -0.03946198, + -0.013423053, + 0.0006800696, + -0.007085737, + -0.0039495258, + -0.0005654568, + 0.011831509, + -0.0053871414, + 0.0050369934, + 0.019190682, + -0.0103057055, + -0.0017388545, + -0.0067089335, + -0.010116556, + 0.0041701063, + -0.009954233, + -0.014069105, + -0.003998687, + 0.0028598618, + -0.0032836564, + 0.013062225, + -0.005796576, + -0.007280752, + 0.026114814, + -0.026910478, + 0.0054707797, + -0.016487794, + -0.006194824, + -0.028117029, + 0.0019145721, + -0.041392755, + -0.009271669, + -0.016534008, + -0.01725171, + -0.015756829, + -0.0062082894, + -0.0166295, + -0.035966877, + -0.028097332, + -0.0051256283, + 0.013504376, + -0.0012793087, + -0.01074246, + -0.010182802, + -0.0005765183, + 0.00036561897, + -0.024299452, + -0.015213742, + -0.004843284, + -0.0069148717, + 0.017175335, + -0.008650319, + -0.000277776, + -0.039628934, + -2.2620892e-05, + 0.006978873, + -0.0057168636, + 0.006130447, + -0.003401026, + 0.011081755, + 0.018650558, + -0.0048883916, + -0.022870978, + -0.035296146, + -0.00799407, + 0.019415654, + -0.00931543, + 0.025024902, + -0.025411425, + -0.008512185, + -0.01963889, + 0.0122151915, + 0.02740672, + -0.012110904, + -0.007849423, + 0.027169516, + 0.0019032903, + 0.01990708, + 0.0025550914, + -0.013548195, + -0.015317096, + -0.0032854334, + -0.017136967, + 0.022835795, + -0.0018109917, + -0.016098132, + -0.0036930675, + -0.0030306382, + -0.009589447, + -0.0012875346, + 0.007613542, + -0.023965476, + 0.015388337, + -0.026425697, + 0.007865976, + -0.011270652, + -0.030460633, + -0.012885795, + 0.0020111215, + -0.0012673342, + -0.011762477, + -0.010049562, + -0.008011662, + -0.012104993, + 0.0051561776, + -0.014514288, + 0.009475168, + 0.002689228, + -0.002602899, + -0.016956383, + -0.029405778, + -0.040988125, + 0.013479522, + -0.027051318, + -0.0187491, + -0.0054467856, + 0.013624101, + -0.027669502, + -0.0035404197, + -0.0032183889, + -0.0113113215, + 0.00010387828, + 0.0012658633, + 0.006099469, + -0.013649752, + 0.0010729227, + -0.019831209, + -0.015151324, + -0.008904829, + -0.0021712815, + -0.020218825, + -0.009188587, + 0.014397002, + -0.011886808, + -0.026710069, + 0.0071696243, + -0.016450657, + -0.018954422, + 0.012097162, + 0.018726101, + -0.020966318, + 0.012286632, + 0.0026845036, + 0.009646243, + -0.028605947, + -0.011380148, + -0.00479136, + -0.016055875, + 0.027433034, + -0.0111059295, + -0.012146063, + -0.020693375, + -0.023356138, + -0.0021032733, + 0.0018988313, + -0.023644805, + 0.008424224, + -0.03754475, + -0.025044039, + -0.0041761817, + -0.018102245, + -0.006748863, + 0.0020486831, + -0.013165534, + 0.0067807706, + 0.017650595, + 0.0036117898, + -0.017625798, + -0.016311347, + 0.0027524147, + 0.027573815, + 0.014209384, + -0.012128082, + -0.004075952, + 0.017069735, + 0.013787637, + -0.010458469, + 0.00023417186, + -0.011391897, + 0.017013887, + 0.00013718155, + 0.0060864096, + -0.0009472762, + -0.0017251687, + -0.013213397, + -0.0081923185, + -0.0027180791, + 0.0026542917, + -0.031960137, + -0.029072208, + -0.008692519, + 0.019164562, + -0.00064401224, + -0.02186801, + -0.005004454, + -0.013183281, + -0.01672673, + -0.036307115, + -0.0043633906, + 0.015503596, + 0.013728687, + 0.0061347825, + -0.003151961, + -0.0037731926, + 0.006395931, + 0.016905606, + -0.021019235, + -0.027031193, + -0.016066981, + -0.009286651, + 0.0004942201, + 0.023028042, + -0.0044670166, + 0.00122707, + -0.027507085, + -0.0012858146, + -0.016995715, + -0.005368916, + -0.00039434637, + -0.0063332617, + -0.012313393, + 0.004918626, + -0.01986997, + 0.010557094, + -0.017988322, + 0.0054576476, + 0.0018068153, + -0.0069393804, + 0.014358662, + -0.017340818, + -0.013961608, + 0.003041608, + 0.011476781, + 0.0027846408, + -0.021328714, + 0.03310597, + -0.005812099, + -0.013049585, + 0.0069226082, + -0.008232115, + -0.011825661, + -0.012147769, + 0.00068040367, + -0.01209505, + -0.017939005, + 0.017100992, + -0.0066034775, + -0.005072361, + 0.00068353064, + -0.038219057, + 0.009426935, + 0.018997198, + 0.033996455, + 0.0010197251, + 0.007648761, + -0.023466153, + 0.00096257933, + 0.0011433768, + 0.012816389, + 0.0021888062, + 0.005405256, + 0.000629756, + 0.026606873, + -0.014314805, + -0.013559146, + -0.009393574, + -0.0037068308, + -0.0156172635, + -0.013519649, + 0.00068986847, + -0.0037253392, + -0.003121399, + 0.0028600933, + -0.008148369, + -0.0039417897, + 0.010186216, + 0.00017043413, + 0.010424113, + -0.016444052, + -0.031689513, + -0.021747857, + -0.0030373198, + -0.01949634, + 0.0011975326, + -0.0017927757, + -0.007934477, + -0.026791811, + -0.013246255, + 0.010807569, + -0.0063379235, + 0.0010900241, + -0.01294073, + -0.00640588, + -0.014384685, + -0.018337997, + 0.01576054, + 0.011296247, + -0.013266976, + -0.025720935, + 0.007369663, + -0.030214263, + 0.0068394574, + 0.0084715765, + -0.009786316, + 0.0054355133, + -0.020102762, + -0.008649841, + -0.012439043, + -0.0048211277, + 0.0033582994, + -0.023464808, + -0.009875134, + -0.030645465, + -0.025311902, + -0.006600878, + 0.003243866, + 0.0054775802, + 0.017263794, + -0.017533097, + 0.0035901512, + 0.01455515, + 0.018506901, + -0.006986329, + -0.013133624, + -0.002621035, + -0.002745667, + -0.0046429182, + -0.01291035, + 0.0031164761, + -0.0041395985, + -0.0028564148, + 0.014159806, + -0.039335284, + 0.0012981023, + -0.046709493, + -0.014098619, + -0.014503688, + 0.0021354493, + -0.008224867, + 0.013013828, + 0.011746144, + 0.01937477, + -0.0020254278, + 0.0034211844, + -0.018542174, + -0.012256933, + -0.0031021233, + -0.004934255, + -0.024027362, + 0.0055245273, + -0.00035444854, + 0.0060081966, + -0.00984097, + 0.01114412, + -0.0110263815, + 0.014908586, + -0.00868939, + 0.012714174, + -0.026902994, + -0.015789762, + -0.00375401, + -0.0008835866, + 0.037704527, + 0.020540187, + -0.0040001334, + -0.018408598, + -0.011241613, + -0.009190934, + 0.011373158, + 0.0005334348, + 0.0031835902, + 0.0050052754, + -0.019633869, + -0.0104529625, + 0.0028415187, + 0.023030616, + -0.018319568, + -0.00031224283, + 0.0012811756, + 0.00090659707, + 0.0015463398, + -0.016398229, + 0.020822117, + 0.0030333435, + -0.019606294, + 0.0012137059, + -0.0241269, + 0.0047544483, + -0.0009284581, + -0.010997058, + -0.014211169, + -0.01683046, + -0.0035312974, + -0.031088818, + -0.022494862, + 0.0040034344, + -0.0029874134, + -0.015358533, + -0.011921255, + 0.012466596, + 0.004833536, + -0.018747984, + 0.0077359523, + -0.011266709, + -0.007735381, + 0.013179815, + -0.022779625, + 0.0045174076, + 0.013314374, + 0.0034061053, + -0.013157289, + 0.0022299218, + -0.016572025, + 0.00034811828, + -0.005257342, + -0.013612669, + -0.0115455985, + -0.016159711, + 0.003307096, + -0.019551605, + -0.0048018764, + -0.0020167783, + 0.001991518, + -0.023913242, + -0.00014053579, + 0.0029608868, + -0.034128275, + -0.018370995, + 0.014445612, + -0.022963038, + -0.037822973, + 0.021579856, + -0.0044188597, + 0.0003757251, + -0.0069446866, + -0.0001779285, + -0.0053777304, + -0.0056844526, + 0.0036032654, + -0.015960991, + 0.0077309404, + -0.013343699, + 0.0014572431, + -0.0071246387, + -0.032852486, + -0.005769879, + -0.007309672, + 0.01908751, + -0.017720172, + -0.007971976, + -0.015231264, + -0.008744306, + -0.023819443, + -0.018996593, + -0.03181487, + -0.010809195, + 0.001049093, + 0.011062904, + -0.008983584, + -0.022153594, + -0.030083349, + -0.0010282526, + -0.0075937524, + -0.009173465, + -0.018280242, + 0.011543389, + -0.007398371, + 0.011436174, + -0.009685213, + 0.004274405, + -0.0031001559, + -0.010506101, + 0.007831852, + -0.011894547, + -0.018348472, + -0.0077822898, + -0.031991966, + -0.012261844, + -0.0029563496, + -0.02944926, + 0.006664433, + -0.008633754, + -0.02822588, + -0.013925111, + 0.0049937917, + -0.039063618, + 0.0039060195, + -0.0032486422, + -0.0008779202, + 0.0072195963, + -0.015295691, + 0.0027663866, + 0.01712383, + -0.030123398, + -0.009428085, + 0.015635688, + 0.0010028178, + -0.0136924395, + -0.023412623, + 0.004001418, + 0.0026583886, + -0.0011049195, + -0.00065776985, + -0.004786798, + 0.01769244, + -0.0066911285, + -0.027069943, + -0.012339008, + 0.0040075234, + -0.03893732, + -0.024832075, + -0.0014452732, + -0.013139107, + -0.022073658, + 0.0024954272, + 0.0017836288, + 0.005021309, + -0.020434188, + 0.012764352, + 0.018038671, + -0.013242024, + -0.009141784, + 0.009483862, + 0.013166064, + -0.0150341755, + -0.022682445, + -0.020213371, + -0.011609273, + 0.008790299, + -0.007976736, + 0.026674863, + -0.007018922, + 0.018902741, + -0.0039595827, + -0.0022900817, + -0.014650871, + -0.0018237332, + -0.01422978, + -0.023432683, + -0.03121643, + -0.023574369, + -0.0036746406, + -0.02100773, + -0.025264677, + -0.027603554, + -0.030873094, + -0.023791015, + 0.002748534, + -0.022052068, + 0.0092242975, + -0.008629209, + -0.033569135, + -0.02566271, + 0.012760048, + 0.006159184, + 0.0038296056, + -0.0012542746, + -0.0049206517, + -0.0026831059, + -0.011780511, + 0.009995336, + -0.03582239, + -0.03629388, + -0.028670592, + 0.013531766, + -0.0075143874, + -0.050950065, + -0.0038926883, + -0.02027104, + -0.0022763556, + -0.026039146, + -0.014102925, + -0.002647325, + 0.0013333749, + -0.018790869, + -0.0037593904, + -0.023391787, + -0.016800063, + -0.016927598, + -0.0075606243, + 0.008095061, + 0.0070243683, + -0.0012424397, + 0.0049590953, + -0.014721488, + -0.012047173, + -0.024131533, + -0.011673507, + -0.0015309604, + -0.0039835167, + 0.008360205, + -0.013547561, + 0.010245427, + -0.0066911806, + -0.0034239811, + 0.017110867, + -0.016210293, + -0.02373915, + -0.043642186, + 0.0064111156, + -0.011048268, + 0.004013325, + -0.014325084, + -0.024325525, + -0.027107412, + -0.0037784008, + -0.0066029406, + -0.014623246, + 0.0049827993, + -0.013575615, + -0.0145345405, + -0.0059636463, + -0.020466644, + -0.0097880745, + 0.03577904, + -0.022461442, + 0.018166928, + -0.005971701, + -0.011971483, + -0.015681917, + 0.00046184557, + -0.01689771, + -0.0031222661, + -0.0125533, + 0.0057874336, + -0.021389777, + 0.0037377917, + -0.010311569, + -0.0011723313, + -0.018407283, + -0.005037692, + 0.0042057536, + -0.010278197, + 0.0021422468, + -0.011408768, + -0.021977618, + -0.0012694125, + -0.0057566618, + -0.036242243, + -0.013819015, + -0.0431833, + -0.01976043, + -0.003055234, + 0.0100031765, + -0.020947572, + -0.005727887, + -0.012669161, + -0.019208686, + -0.02375071, + -0.016698796, + -0.0065482166, + -0.018008666, + -0.006390666, + -0.0017173885, + 0.0060531157, + -0.04463818, + 0.016532185, + 0.023685673, + -0.010307339, + 0.01944258, + -0.002120374, + -0.0120701995, + -0.0015434689, + -0.008730604, + -0.007970677, + -0.013465609, + -0.010526162, + 0.008957918, + -0.016161472, + -0.001249239, + -0.027580779, + 0.0003249883, + -0.007859981, + 0.03194858, + -0.008062477, + -0.0008797281, + -0.013937171, + 0.0010456269, + 0.0052339723, + -0.0022687223, + -0.018853689, + 0.0035733068, + -0.016680254, + 0.006466346, + -0.0029364596, + -0.017148403, + -0.010875602, + -0.016630165, + -0.025505744, + 0.004652825, + 0.0054622306, + -0.03978248, + 0.009992189, + 0.014591896, + -0.010582242, + -0.0053282604, + 0.0038495834, + -0.00013968948, + -0.030924732, + -0.0047446345, + -0.01230029, + -0.012574675, + 0.0030889914, + -0.009353475, + -0.02201077, + 0.0056389314, + -0.006273147, + 0.005031889, + -0.013663106, + -0.013527822, + -0.0064714495, + 0.0027371296, + -0.01043434, + -0.021092834, + 0.0075878934, + -0.03409565, + 0.002033685, + -0.016168391, + -0.0069315326, + 7.742602e-05, + 0.01647356, + -0.009000746, + -0.005579683, + -0.013892237, + -0.014928659, + 0.0051627946, + -0.00025879746, + -0.006054848, + -0.02156945, + 0.022479655, + -0.032981552, + -0.014260443, + 0.008121147, + -0.0045445524, + -0.009742583, + -0.02598321, + 0.00050391414, + -0.03395278, + 0.00040776268, + 0.032580845, + 0.0243527, + 0.011342956, + -0.032333557, + -0.018252956, + 0.0022394687, + 0.00058467686, + 0.0019195525, + -0.009523721, + -0.006655619, + -0.009551334, + 0.0029585664, + -0.00090924697, + -0.015294573, + -0.005545442, + -3.6780177e-05, + 0.0018173383, + -0.020033251, + -0.012433399, + 0.010053341, + 0.008899208, + -0.021027735, + 0.004582897, + -0.03967968, + 0.008139561, + -0.01248469, + 0.007631551, + -0.014962137, + 0.0038782114, + -0.0013459314, + -0.00644257, + -0.011423047, + -0.022208532, + -0.004620955, + 0.008689624, + -0.017793344, + -0.008885425, + -0.01901447, + -0.009205754, + -0.01600561, + -0.011202307, + -0.013804246, + 0.0067854673, + 0.0016745366, + -0.0027954476, + -0.02075212, + -0.010064916, + -0.0099808285, + -0.0029787668, + 0.002696659, + -0.0055698645, + -0.025577525, + -0.017855154, + 0.005924293, + -0.023302654, + -0.0073862695, + -0.007314892, + -0.0042948695, + -0.021843936, + 0.005340132, + -0.011734078, + 0.006182263, + 0.01063306, + 0.013488525, + -0.01688919, + -0.009525338, + -0.014781901, + -0.034433145, + -0.008103906, + -0.0033479098, + 0.034147754, + -0.01935888, + -0.005623983, + -0.019167937, + -0.035305, + 0.012827299, + 0.002407275, + -0.0072040996, + -0.013524912, + -0.013314136, + -0.019298326, + -0.0059071947, + 0.0062203575, + -0.022273475, + -0.013515197, + 0.014684144, + -0.029153705, + -0.0048918603, + -0.0111732995, + 0.021301307, + 0.0036719933, + -0.02180507, + -0.009771573, + -0.030644333, + -0.0006810372, + 0.0095385285, + 0.006149314, + 0.0025015806, + 0.010640836, + 0.018530034, + 0.001983521, + -0.0030362494, + 0.019895032, + -0.027601283, + 0.012812905, + -0.00266305, + 0.011057477, + -0.0056633023, + 0.0386576, + 0.004807239, + 0.0017678377, + -0.018756831, + -0.024242412, + 0.0067424984, + -0.028719507, + -0.0049033584, + 0.0057834894, + -0.03485119, + -0.00022277888, + 0.005638801, + -0.012628517, + -0.007793963, + -0.01704834, + -0.0024528184, + -0.00529875, + -0.01308636, + 0.009512895, + 0.017467752, + -0.0015316261, + -0.008833022, + -0.012686908, + 0.007741594, + -0.031892225, + 0.015073381, + -0.0026244915, + 0.00022457507, + -0.013058688, + -0.011304604, + -0.0026556638, + -0.008933582, + -0.024428178, + 0.006965947, + -0.0013621161, + -0.015517793, + 0.018499296, + 0.0022097812, + -0.0375477, + 0.0022375737, + -0.0063589006, + 0.001155321, + -0.01680579, + 0.0019744523, + 0.014872214, + -0.021218324, + -0.03150918, + -0.016300038, + -0.008684123, + -0.006848796, + 0.005812233, + -0.00506218, + -0.022751393, + -0.00024007479, + -0.02143613, + -0.026820336, + -0.028902613, + 0.0040993756, + -0.0004300683, + 0.010769081, + -0.005706039, + -0.0040124515, + 0.0005558351, + -0.0047472017, + 0.0054400447, + -0.0026548675, + 0.0027266769, + 0.01697952, + -0.029862829, + -0.0099485805, + -0.031104203, + 0.0099663725, + -0.017376749, + -0.009737524, + -0.0053222147, + -0.009250268, + -0.000982735, + -0.003928652, + -0.012043111, + 0.0026600363, + 0.015085873, + 0.0043270704, + -0.002971071, + -0.020017555, + 0.002419211, + 0.018237293, + -0.005621426, + 0.018405331, + -0.03218985, + 0.016860664, + -0.018470993, + -0.010497704, + 0.017625475, + -0.017762301, + 0.007677623, + 0.0010572635, + -0.004792821, + 0.00034285564, + -0.013063075, + -0.0065206294, + -0.017288152, + 0.01968498, + 0.007367101, + 0.0027198605, + 0.043549538, + -0.014955374, + -0.028540418, + -0.0073912083, + -0.020679463, + -0.013985749, + -0.011652279, + -0.016074523, + -0.013382002, + -0.020995602, + 0.011880105, + -0.0056629297, + -0.020591663, + 0.013743785, + -0.00068925024, + -0.009775057, + -0.020214953, + -0.006532183, + 0.0023422928, + 0.01720313, + -0.004392236, + -3.6814574e-05, + -0.021313515, + -0.022070514, + -0.026275331, + -0.018829172, + -0.009521112, + -0.016595194, + -0.012669815, + -0.004487116, + -0.010888917, + -0.0052455734, + -0.020627808, + -0.012363704, + -0.0073055564, + 0.031640027, + 0.0041996064, + -0.004214693, + -0.0010500087, + -0.009090605, + -0.016655063, + -0.0027334518, + -0.014493475, + -0.013618103, + -0.022690456, + -0.029899692, + -0.00025306997, + -0.040873796, + -0.007739129, + -0.019228758, + 0.00029131523, + -0.0047760406, + -0.0071970085, + -0.012092747, + 0.0152771, + -0.022073567, + -0.03519235, + -0.0010307576, + -0.02862312, + -0.0073274155, + 0.014646731, + -0.0024452761, + -0.0027124577, + -0.03425773, + -0.014491984, + -0.011695257, + -0.009908492, + -0.026227977, + 0.011602162, + -0.04281172, + -0.021369703, + -0.0019168993, + 0.002947491, + -0.017650953, + 0.006142521, + 0.02628882, + -0.008043376, + 0.005030069, + 0.00091745605, + 0.0116980225, + -0.010910381, + -0.012223131, + 0.0010954083, + 0.0021299163, + -0.0046810294, + -0.018475002, + -0.0045319605, + -0.0011951614, + -0.014620145, + -0.020936808, + -0.02213391, + -0.007827766, + 0.005798536, + 0.0055538216, + 0.011940383, + -0.012571645, + -0.019627964, + 0.0049250782, + 0.009253788, + -0.030360337, + 0.018534835, + -0.021076972, + -0.02421947, + -0.0058930404, + -0.00046819146, + -0.0068784673, + -0.026328143, + -0.014285603, + 0.0069137583, + -0.020769808, + 0.00066835695, + -0.0015861641, + -0.017433116, + 0.03243288, + -0.02126747, + -0.0029502735, + 0.0035706658, + -0.0028019187, + 0.001266561, + -0.017439133, + -0.002663816, + -0.006886689, + 0.010479918, + -0.0037987076, + -0.0039817984, + -0.0040022703, + 0.011524249, + 0.016004276, + -0.0032597955, + -0.005830316, + 0.008158718, + -0.008182859, + 0.0001308954, + 0.0009534682, + -0.012435114, + 0.004179366, + -0.01147617, + 0.0011271621, + -0.011148374, + 0.015188705, + 0.011159473, + -0.0054988647, + 0.035358317, + -0.0097214645, + -0.04087328, + -0.013515708, + -0.009889682, + -0.007573307, + -0.0205929, + 0.028457295, + 0.0032140582, + 0.0028961035, + -0.010566441, + 0.00051954156, + -0.026360067, + -0.027064806, + -0.0036897834, + -0.00020609493, + -0.0117725395, + -0.0054231384, + 0.04300076, + -0.041859515, + 0.008925703, + -0.017691044, + -0.014022178, + -0.018779283, + -0.042412378, + 0.0065400824, + -0.018071312, + -0.010793081, + 0.009337361, + 0.015056337, + 0.0024792824, + 0.006644308, + -0.03847724, + 0.011508552, + 0.0098378025, + -0.019469172, + 0.019355236, + -0.01345684, + 0.009278644, + 0.04670792, + -0.0011117463, + -0.005955083, + -0.018108733, + 0.0123462835, + -0.016102182, + 0.017202798, + 0.029313209, + -0.00052887754, + 0.0007858029, + -0.007846333, + -0.009502069, + -0.0029194169, + -0.020861164, + 0.011808327, + 0.010371471, + 0.0023395536, + 0.0002813942, + 0.012992016, + -0.020469448, + 0.0011915974, + 0.017561352, + -0.011180391, + -0.0116798235, + 0.006278337, + -0.034973983, + -0.005702858, + 0.0021314244, + 0.002683458, + -0.02093679, + -0.008139205, + 0.008580033, + 0.009762325, + -0.00707263, + 0.023704577, + -0.025449704, + -0.007237438, + -0.026552709, + -0.0049927584, + -0.024180328, + 0.01121943, + -0.051167533, + 0.007993485, + -0.013564956, + 0.008031582, + 0.016815998, + 0.001247264, + 0.002256701, + -0.008740469, + 0.040619303, + -0.013554507, + -0.001026934, + -0.010223056, + -0.013360394, + -0.0088729225, + 0.037942998, + 0.01566462, + -0.0074472055, + -0.03585589, + -0.0013577435, + -0.0015965194, + -0.005565295, + 0.0078011984, + -0.0120035205, + -0.013450038, + -0.004722198, + 0.015439441, + -0.01962521, + 0.0035283333, + 0.013787201, + 0.007637078, + 0.005801625, + -0.014637865, + -0.0128298495, + -0.01025878, + 0.008902338, + -0.009214538, + 0.0010198177, + -0.0187002, + 0.000715804, + -0.02113982, + 0.010815749, + -0.024226595, + -0.00907091, + -0.031271826, + -0.0019502303, + -0.0036121507, + -0.010813695, + -0.0072331056, + -0.022479434, + -0.0018678013, + 0.007440118, + 0.022644019, + -0.013071309, + 0.031127471, + -0.011766047, + 0.015158663, + -0.028705953, + -0.008081409, + -0.012241728, + -0.01559599, + -0.009089149, + -0.012479203, + -0.012200673, + -0.0127761485, + -0.007548325, + -0.0060449103, + -0.009112285, + -0.005478433, + -0.022571016, + 0.0033803422, + -0.016050316, + -0.012668324, + 0.008752794, + -0.014007763, + -0.014560599, + -0.021507777, + -0.012533858, + 0.014712264, + 0.007952148, + -0.019177819, + 0.020177504, + -0.0071340185, + -0.017960194, + -0.019249568, + -0.01465593, + -0.007073925, + -0.015077668, + 0.0060831113, + 0.0024354972, + -0.020560954, + -0.006404653, + -0.019019222, + -0.015699094, + 0.0047489535, + -0.0036881121, + -0.019015588, + -0.036328632, + -0.008022977, + -0.010628484, + -0.0065643196, + 0.007383213, + 0.0006921682, + -0.0075271158, + 0.007988578, + 0.013498628, + 0.0027080358, + 0.0051283035, + -0.029853629, + 0.0052080997, + -0.022673298, + -0.023188762, + -0.005995107, + -0.0051750434, + -0.0023430497, + -0.021469183, + -0.009880801, + 0.0057603572, + -0.020090807, + -0.00362476, + 0.013267435, + 0.010160509, + 0.0073532215, + -0.0056090807, + -0.0042168405, + -0.018913487, + 0.012108636, + -0.013555874, + 0.007882444, + 0.005705151, + -0.010939247, + -0.009761711, + -0.02913179, + -0.004145712, + 0.0013627565, + -0.017201932, + -0.022852998, + 0.009851687, + 0.0007536603, + -0.006258377, + 0.00093240885, + 0.014362142, + -0.008061272, + -0.010326764, + -0.006126161, + 0.0140307965, + -0.02902768, + 0.02074484, + -0.019321436, + -0.024688564, + 0.004737432, + 0.014699175, + -0.011373564, + 0.010638818, + -0.023941483, + 0.01292716, + -0.000561259, + -0.0010622033, + -0.00040917285, + -0.035671216, + 0.007831343, + -0.006575086, + -0.023246756, + -0.006202742, + -7.196449e-05, + 0.005364811, + -0.014012279, + -0.024848288, + -0.003128349, + -0.01974032, + 0.011170162, + 0.00013974491, + -0.033748116, + -0.016338143, + -0.033865154, + 0.0036879214, + -0.020537792, + -0.011331558, + -0.025002487, + 0.013286913, + -0.006005022, + 0.023500293, + -0.014516999, + -0.024512226, + -0.028114608, + -0.009073428, + 0.028799305, + -0.008219747, + 0.019119447, + -0.002151431, + -0.015575216, + -0.026793698, + -0.009967949, + -0.013864636, + -0.016239062, + -0.007891462, + -0.021050248, + -0.023138972, + -0.013310675, + -0.0129967565, + 0.023543695, + -0.008069714, + 0.02219633, + -0.014532358, + -0.011061823, + 0.0009451695, + -0.009330294, + -0.0064343833, + -0.025293779, + -0.00672894, + -0.01657401, + -0.02298439, + -0.03146297, + -0.008200326, + -0.010304018, + 0.00035915957, + -0.028452264, + -0.008136536, + -0.021961037, + -0.009730969, + -0.027325347, + -0.004638759, + -0.0018663201, + -0.029231077, + -0.023608882, + -0.01349085, + -0.050213523, + 0.007723871, + -0.029871777, + 0.0042525623, + -0.016712511, + -0.025910039, + -0.0003416653, + -0.008261343, + -0.011674626, + -0.022790633, + 0.006597062, + -0.008541725, + -0.009777005, + -0.004475349, + -0.015160637, + 0.014346448, + 0.0037222109, + -0.017891375, + -0.01312579, + -0.0135512985, + -0.005213192, + -0.01233494, + -0.004812976, + -0.021607438, + 0.011553442, + -0.008695857, + -0.009670816, + -0.0055234637, + -0.0071249045, + -0.0126292715, + -0.008184318, + -0.019832803, + 0.025445247, + -0.0060277684, + -0.0022683674, + 0.0067338767, + 0.006752325, + -0.011898301, + 0.0015237456, + -0.009544853, + 0.0067711547, + 0.007247434, + 0.014498571, + -0.008461838, + -0.024819424, + 0.012400338, + -0.01505921, + 0.0116733145, + -0.009808293, + 0.011883415, + -0.013451402, + 0.031335864, + 0.0022270444, + -0.01200426, + 0.0022554577, + -0.011755746, + -0.0029254837, + -0.003326882, + -0.010828281, + 0.010822509, + -0.021778824, + -0.0032718037, + 0.0046550985, + -0.003262388, + 0.005732132, + 0.0042650434, + 0.011030415, + -0.007726358, + -0.02743906, + 0.001555866, + -0.018820163, + 0.004770726, + 0.0135643985, + -0.0001139709, + -0.020719605, + -0.010358367, + -0.019413464, + -0.019446041, + -0.023537124, + 0.03145994, + -0.011494737, + -0.008128478, + -0.017904371, + -0.013157499, + 0.006137527, + -0.017371312, + 0.0030750153, + -0.005545715, + -0.020686243, + -0.0029245948, + -0.007149284, + -0.031756606, + 0.014497227, + 0.0007938642, + -0.009285706, + -0.025301225, + 0.016358847, + 0.028875418, + 0.014499642, + -0.0079977, + -0.000636153, + -0.012442955, + -4.6632773e-05, + 0.013891246, + -0.01150995, + -0.02798456, + -0.0061257407, + -0.0053525562, + 0.00018559936, + -0.0035388006, + -0.013158215, + -0.012479767, + -0.017553892, + -0.0014288867, + -0.03827849, + -0.01787336, + 0.012028129, + -0.023035329, + 0.0017595881, + -0.029680418, + -0.017902127, + -0.01778438, + -0.019739045, + -0.010167212, + -0.0077794353, + -0.006456424, + -0.01150245, + -0.002306232, + 0.0064156586, + 0.007858544, + -0.0012521407, + -0.017945964, + 0.030426696, + 0.01256808, + -0.0011097875, + 0.0006211155, + 0.004597637, + -0.013600407, + -0.017613873, + -0.01572251, + -0.008708663, + 0.021511381, + -0.025203347, + -0.010068461, + -0.027495526, + 0.041849565, + 0.023193225, + -0.020701703, + -0.015937328, + -0.016349522, + -0.004116924, + -0.022007035, + -0.016761517, + -0.017732302, + -0.010658583, + 0.0036283024, + 0.013791268, + -0.010865459, + -0.0013409313, + -0.0022706108, + -0.0057442365, + 0.014178512, + -0.010855527, + -0.015749704, + 0.01877111, + -0.0054453365, + -0.0105266515, + -0.024667166, + 0.016336761, + 0.0032940474, + -0.039003834, + 0.011813869, + -0.0382796, + 0.025228212, + -0.0024125185, + -0.024891423, + -0.0068276175, + -0.00016320306, + -0.0026151335, + -0.021400834, + -0.008068067, + 0.0040532104, + 0.00905121, + -0.008307825, + -0.017967142, + 0.0060379896, + -0.0129258465, + -0.0049039605, + -0.0060085407, + -0.0046927407, + -0.007887325, + -0.0076102777, + -3.898346e-05, + -0.011672157, + 0.00095000264, + 0.004107631, + 0.0038058325, + -0.0072021536, + -0.03561504, + -0.0149629265, + -0.015967231, + -0.008443486, + -0.009365928, + -0.008672595, + -0.019390363, + -0.005919331, + -0.008873953, + -0.0034306776, + -0.02015685, + -0.011602262, + -0.015230127, + -0.01979683, + -0.016873093, + -0.017048405, + 0.014142961, + -0.012129274, + -0.022764336, + -0.0037388098, + 0.022264529, + -0.0013180174, + -0.009172692, + -0.023203596, + -0.009135718, + -0.031668328, + 0.0011784909, + -0.009899953, + -0.032037668, + -0.008673332, + -0.017614674, + -0.0045192, + 0.027727325, + -0.009383787, + -0.0306694, + -0.00019212133, + 0.013521771, + -0.023485301, + -0.038236376, + -0.0068630497, + 0.009724125, + -0.0072041615, + 0.003415741, + -0.012366955, + 0.032463834, + -0.010783002, + 0.022803202, + 0.007260584, + -0.01680688, + -0.0012065442, + -0.012056512, + -0.031693142, + -0.007733814, + -0.026839528, + 0.005741325, + -0.013145992, + -0.0046412717, + 0.011018073, + -0.00840691, + -0.026225617, + -0.02486412, + -0.006970316, + -0.019621398, + 0.003783094, + -0.013737381, + 0.016403021, + -0.006407927, + -0.009681126, + -0.022725752, + -0.0134553, + -0.010675605, + -0.017175581, + -0.018126901, + -0.013576113, + -0.007143429, + -0.006942037, + -0.0044135503, + -0.010600259, + -0.0060708974, + -0.024383793, + 0.014428527, + 0.005619675, + 0.017792951, + 0.0051829023, + 0.016917594, + -0.004144223, + 0.0062503642, + -0.018659579, + -0.01164251, + -0.009123222, + -0.020022206, + -0.030177547, + 0.0050974716, + -0.01249677, + 0.018719774, + 0.0059944885, + -0.037494928, + 0.01677492, + -0.008180416, + -0.01761085, + 0.0025464795, + 0.00056544744, + -0.026053086, + 0.005801181, + -0.0038267875, + 0.0025754606, + -0.0018843572, + 0.0030275949, + -0.004855733, + -0.022814825, + -0.020658676, + -0.008570175, + -0.0012811812, + -0.01899014, + 0.0022094168, + 0.036787886, + -0.0026398313, + -0.007771179, + -0.007452922, + -0.0037403423, + -0.00790196, + 0.0011854765, + -0.034104463, + -0.0119774295, + 0.003725481, + 0.0001898929, + 0.005874573, + 0.0031268888, + -0.027412197, + -0.019451067, + -0.0027388018, + -0.007029918, + 0.012545821, + -0.021432614, + -0.011358695, + -0.020640794, + -0.0037259255, + -0.008388079, + -0.015098002, + 0.013134145, + -0.008066563, + 0.010157297, + -0.024506511, + -0.018631278, + 0.0050993757, + 0.008010771, + 0.0029098561, + -0.024090955, + 0.009244111, + -0.020058915, + -0.021747677, + -0.0015395948, + 0.034561004, + -0.008288626, + -0.0120686935, + -0.0040448825, + -0.03187443, + -0.009078164, + -0.017294273, + 0.001984288, + 0.010801321, + -0.006177082, + -0.018860256, + -0.042952646, + -0.0014703792, + 0.020162113, + -0.01638841, + -0.01627241, + 0.015629306, + -0.03706938, + -0.0044644354, + -0.0047008567, + -0.028855769, + -0.0019389266, + -0.009286727, + -0.0055447966, + 0.008957589, + 0.0035129145, + -0.007520146, + -0.024039814, + 0.002216247, + 0.012145966, + 0.038800966, + -0.0027572059, + -0.023953946, + 0.027032863, + -0.022001948, + 0.010655653, + -0.025656516, + -0.016459387, + -0.00973479, + -0.004689391, + -0.007173277, + -0.008737168, + -0.003844447, + 0.015224687, + -0.0002979706, + 0.00038922, + 0.008729325, + 0.020478122, + -0.013139102, + 0.032861125, + -0.0060603283, + -0.017843075, + -0.0236393, + -0.015853094, + -0.021143435, + 0.0057713105, + 0.006121679, + -0.018666478, + 0.010469298, + -0.022446902, + 0.019285683, + 0.00876801, + 0.0017200942, + 0.016449733, + 0.0075741666, + -0.012323584, + -0.024305515, + -0.001856775, + -0.02176274, + 0.00603411, + 0.0055725947, + -0.007514391, + 0.0012233215, + 0.0038013044, + 0.004471293, + 0.002916526, + 0.008165286, + -0.014367381, + -0.0065485234, + -0.02050861, + 0.002096027, + -0.0079170205, + 0.00042967967, + -0.011919424, + 0.017938938, + -0.012065254, + -0.0138378525, + 0.012034012, + 0.0024654863, + -0.01917193, + 0.013286247, + -0.03370198, + -0.00989731, + 0.026486056, + -0.02683854, + -0.021696754, + 0.022003312, + 0.009869057, + 0.001195726, + 0.009672431, + -0.00897171, + -0.0031497634, + -0.003013263, + -0.03211511, + -0.0049527097, + -0.016738748, + -0.011696032, + -0.0069941324, + -0.005345922, + -0.017428543, + -0.0146312155, + -0.006552797, + 0.0063110837, + 0.003632662, + -0.012197111, + -0.026370725, + 0.021348579, + -0.011559509, + -0.020195352, + -0.01336133, + 0.017554782, + 0.022186311, + 0.0052186013, + -0.016019955, + -0.013870435, + -0.010862005, + -0.018972993, + -0.028802274, + -0.0047695343, + -0.007955201, + 0.021705907, + 0.005841489, + 0.030238666, + -0.011118441, + 0.013330552, + -0.021432897, + -0.026750883, + -0.051078267, + 0.0068996865, + -0.014454153, + 0.0008739434, + -0.025776962, + -0.016072175, + -0.022381406, + -0.038932975, + -0.009405722, + -0.0051662964, + -0.002878976, + 0.012665612, + -0.0037590163, + -0.022907333, + -0.00023739833, + -0.01918338, + 0.00202338, + -0.02070616, + 0.004306168, + 0.0013083204, + -0.020221187, + -0.043892335, + 0.012551062, + -0.022697102, + -0.033554513, + -0.0057908823, + 0.0030774644, + 0.0023932722, + -0.019698465, + 0.0049640746, + -0.02717227, + -0.007694854, + -0.015625414, + 0.033251163, + 0.015755504, + 0.0020694947, + -0.014885198, + -0.012514098, + -0.0002424803, + 0.0076069827, + -0.0075850924, + 0.017781995, + -0.023623213, + -0.018898066, + -0.0006549425, + -0.020659495, + -0.016908417, + 0.011629537, + 0.016711922, + -0.012255073, + 0.01473898, + -0.03481205, + -0.03460645, + -0.0086186, + -0.034481615, + -0.007047642, + -0.013995319, + -0.034019567, + 0.032462347, + 0.024434282, + -0.016669756, + -0.022321198, + 0.011975403, + -0.02460459, + -0.0076021715, + -0.005096519, + -0.0071938336, + 0.019032773, + -0.005724568, + -0.01060122, + -0.017151864, + 0.0018528744, + -0.0077413623, + 0.016589144, + -0.01658185, + -0.010178424, + -0.046609066, + -0.034568015, + -0.0010266629, + -0.02545604, + -0.024750078, + 0.0046247425, + 0.0048979213, + 0.012889019, + 0.00021748187, + -0.009659567, + 0.0011588031, + -0.02605632, + 0.0018918802, + -0.00878164, + -0.06337257, + -0.007023533, + -0.010108135, + 0.021497615, + -0.0034070367, + -0.012248636, + -0.0003632393, + -0.027711673, + -0.014108773, + 0.00013959971, + 0.0016411687, + -0.006078349, + -0.011917931, + 0.0190015, + -0.0050016856, + 0.0084633585, + -0.0076446678, + -0.0054529356, + 0.0005757218, + -0.010693394, + -0.008612299, + -0.022799175, + -0.0027091922, + -0.009048798, + 0.01368604, + 0.0012775356, + -0.009223744, + -0.023862198, + 0.022008795, + 0.018002482, + 0.0060231895, + -0.020359205, + -0.024964102, + 0.003269589, + 0.028336583, + -0.0153233, + 0.008205734, + -0.008059876, + 0.003655757, + -0.013926413, + -0.011451898, + -0.018270718, + 0.0077349697, + -0.0069508185, + -0.015249753, + 0.019664146, + -0.006160551, + -0.029344542, + -0.0092277145, + -0.014619945, + 0.0018510064, + -0.015960762, + -0.007115153, + -0.0050634146, + -0.027568154, + 0.013149298, + -0.02116181, + -0.025914047, + 0.012295956, + 0.004440781, + -0.01135247, + -0.014242953, + -0.01637466, + -0.022570055, + -0.015725445, + 0.01846806, + -0.008548175, + -0.00030642896, + -0.017401937, + 0.009082605, + -0.007353285, + 0.009371772, + -0.008572808, + -0.0017500158, + 0.00706748, + 0.013012231, + -0.013017283, + -0.0017242947, + -0.012263028, + -0.01245761, + -0.007415625, + -0.016484898, + -0.013640593, + -0.005951604, + -0.008021453, + -0.022771105, + -0.01686952, + -0.008882185, + -0.02413143, + -0.02447445, + -0.0028887957, + -0.018406037, + 0.0037271546, + 0.005078268, + -0.027780388, + -0.029683711, + -0.014050302, + -0.001653934, + 0.014085577, + -0.027328791, + -0.010030642, + -0.02571908, + 0.020659648, + -0.02069574, + -0.029792557, + -0.0073478706, + -0.006178439, + 0.009681426, + -0.017094573, + -0.006705071, + -0.002184636, + -0.025184523, + -0.022274077, + -0.0041581057, + 0.02085941, + -0.0064706006, + 0.004832628, + 0.013352766, + -0.0327327, + -0.011851962, + -0.013934629, + -0.015120825, + 0.0056086536, + -0.009781641, + -0.0069197062, + -0.02148234, + 0.010369119, + -0.0046321857, + 0.014894384, + 0.015515514, + 0.011409864, + -0.031704362, + -0.011552262, + 0.0051540467, + -0.012191924, + 0.017715622, + 0.011770995, + 0.017607385, + -0.015525032, + -0.029984377, + 0.0021789179, + -0.0030358513, + -0.02477037, + -0.007885257, + 0.02309179, + -0.00043807155, + -0.007367021, + 0.016674351, + 0.014450763, + -0.005749267, + -0.002903988, + -0.018228354, + -0.009777355, + -0.015087432, + 0.0008855546, + -0.017537592, + -0.010613173, + -0.006641616, + -0.004533758, + -0.0015218697, + -0.0022312794, + -0.008997303, + -0.00035991185, + -0.021285435, + -0.00352765, + 0.0042355047, + 0.021674378, + -0.023626387, + 0.0146822, + -0.024168618, + 0.006087421, + -0.0015563697, + 0.0061817016, + -0.006329412, + -0.018535202, + -0.00080849504, + -0.0032267692, + 0.012675198, + 0.016031954, + -0.0028644712, + -0.010127643, + -0.015241615, + -0.01696107, + 0.0003266635, + 0.015026809, + 0.01314145, + 0.0059801736, + 0.0005604362, + -0.009509363, + -0.015259459, + -0.012781819, + 0.0022356212, + -0.016020695, + -0.004161076, + -0.015641062, + -0.0038118172, + -0.0028508327, + -0.008184289, + -0.0047529694, + -0.019553402, + -0.04088575, + -0.01621279, + 0.018598827, + -0.014009315, + -0.03051548, + -0.027519895, + 0.03627698, + -0.0049892673, + -0.009781911, + -0.017675335, + 0.012503966, + -0.0048931213, + -0.0017103076, + -0.01730782, + -0.01990581, + 0.013739314, + 0.014341284, + 0.0038429876, + -0.023640273, + 0.003065403, + 0.0005090036, + 0.017353272, + -0.001322477, + -0.012127223, + 0.01796468, + -0.03468153, + -0.035975005, + -0.01789073, + -0.002380498, + 0.0035524673, + -0.01782049, + -0.005562899, + -0.013321918, + 0.003362251, + 0.018645158, + -0.0047511896, + 0.021847196, + 0.0063008945, + -0.016175343, + -0.014105892, + 0.031590227, + -0.026922148, + -0.014852478, + -0.010820791, + -0.015468154, + -0.004773383, + 0.0054318216, + -0.014019292, + -0.01820467, + 0.006996443, + -0.0038766472, + -0.023497328, + -0.01579022, + -0.015706671, + 0.0076700337, + 0.01062036, + 0.0017608489, + 0.0014999252, + -0.00018793154, + -0.0025806453, + -0.01744059, + -0.004063083, + 0.0076409113, + -0.0021943818, + 0.00017482841, + -0.008218632, + -0.0073944433, + 0.00036312794, + -0.004566673, + -0.023909392, + 0.0027968823, + -0.004649215, + 0.01256383, + 0.003939985, + -0.019547854, + 0.007896375, + -0.011963329, + 0.030850837, + -0.0022643574, + 0.01597777, + 0.0010849291, + 0.03242055, + 0.043534305, + -0.0009926345, + 0.009078453, + 0.009647033, + 0.019193005, + 0.014551562, + -0.034819223, + -0.018926978, + -0.024258165, + 0.014475812, + -0.012492135, + 0.0021085974, + -0.006796023 ], "paletteEmbedding": [ - 0.017185627, 0.021983027, 0.012995491, 0.0046759476, 0.0014574382, - 6.0726594e-5, 0.0, 0.0, 0.0, 0.0, 0.025626622, 0.033095993, 0.02744842, - 0.011416599, 0.0034614159, 0.00024290638, 6.0726594e-5, 0.0, 0.0, 0.0, - 0.021679394, 0.029452397, 0.024169184, 0.013177671, 0.0034614159, - 0.0008501723, 0.00018217978, 0.0, 0.0, 0.0, 0.010566427, 0.015060195, - 0.014817289, 0.007955183, 0.0024290637, 0.00036435956, 0.0, 0.0, 0.0, - 0.0, 0.002975603, 0.004797401, 0.0041294084, 0.0034006892, 0.0009716255, - 0.00030363296, 0.0, 0.0, 0.0, 0.0, 0.0005465393, 0.0013967117, - 0.0010930786, 0.0006072659, 0.00030363296, 0.00012145319, 0.0, 0.0, 0.0, - 0.0, 6.0726594e-5, 0.00012145319, 0.00018217978, 0.0, 6.0726594e-5, 0.0, - 6.0726594e-5, 6.0726594e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0276306, 0.03886502, - 0.03157783, 0.012813311, 0.0037043223, 0.0008501723, 6.0726594e-5, 0.0, - 0.0, 0.0, 0.046030756, 0.070321396, 0.056961544, 0.030849108, - 0.0062548392, 0.0010930786, 0.00012145319, 0.0, 0.0, 0.0, 0.042144254, - 0.07068575, 0.070078485, 0.04014028, 0.0105057005, 0.0017003446, - 0.00012145319, 0.0, 0.0, 0.0, 0.021618666, 0.04135481, 0.048034735, - 0.030970562, 0.012023865, 0.0024290637, 0.00042508615, 0.0, - 6.0726594e-5, 0.0, 0.005951206, 0.012995491, 0.016699813, 0.014756562, - 0.0072264643, 0.0021254309, 0.00048581275, 6.0726594e-5, 0.0, 0.0, - 0.0010930786, 0.0027326967, 0.0046759476, 0.004190135, 0.002246884, - 0.0008501723, 6.0726594e-5, 0.0, 0.0, 0.0, 0.00012145319, 0.00030363296, - 0.0005465393, 0.0006072659, 0.0007894457, 0.00030363296, 0.00012145319, - 0.0, 0.0, 0.0, 0.0, 6.0726594e-5, 0.00012145319, 0.00012145319, - 0.00012145319, 6.0726594e-5, 0.00012145319, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.026233887, 0.043601695, 0.03601087, 0.01566746, - 0.004190135, 0.0005465393, 0.00012145319, 0.0, 0.0, 0.0, 0.04833837, - 0.083377615, 0.08021983, 0.046577297, 0.014027843, 0.002975603, - 0.00030363296, 0.0, 0.0, 0.0, 0.05295359, 0.097284004, 0.1077897, - 0.06868178, 0.028602226, 0.0061941124, 0.00048581275, 0.0, 6.0726594e-5, - 0.0, 0.030545477, 0.06704216, 0.08890373, 0.06789233, 0.028177138, - 0.0076515507, 0.001639618, 0.0, 0.0, 0.0, 0.01105224, 0.02708406, - 0.042447887, 0.040018823, 0.020647041, 0.00783373, 0.0024897903, - 0.00024290638, 0.0, 0.0, 0.0027326967, 0.0072264643, 0.012631131, - 0.015303101, 0.011720233, 0.0055868467, 0.0015181648, 0.00018217978, - 0.0, 0.0, 0.00036435956, 0.0011538053, 0.0030363295, 0.0045544943, - 0.0023076106, 0.002368337, 0.0007287191, 0.00018217978, 0.0, 0.0, - 0.00012145319, 0.00024290638, 0.00024290638, 0.0009108989, 0.0008501723, - 0.0010323521, 6.0726594e-5, 0.00030363296, 0.0, 0.0, 0.0, 6.0726594e-5, - 0.0, 6.0726594e-5, 0.00018217978, 0.00012145319, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.00012145319, 0.0, 0.0, 0.0, 0.0, 0.0, 0.013481304, - 0.025565896, 0.025080083, 0.014149296, 0.0046759476, 0.0009108989, - 6.0726594e-5, 0.0, 0.0, 0.0, 0.028237866, 0.056232825, 0.060908772, - 0.042447887, 0.015363828, 0.0042508617, 0.00036435956, 0.00012145319, - 0.0, 0.0, 0.03777194, 0.082648896, 0.10426756, 0.08234526, 0.037468307, - 0.009837708, 0.0012145318, 0.00024290638, 0.0, 0.0, 0.027752053, - 0.06613126, 0.10341739, 0.093154594, 0.059086975, 0.022225933, - 0.005222487, 0.0006679925, 0.00012145319, 0.0, 0.010262794, 0.032367274, - 0.059633516, 0.07736568, 0.05544338, 0.028845131, 0.009473348, - 0.0024897903, 0.00018217978, 6.0726594e-5, 0.0024897903, 0.010930787, - 0.025990982, 0.03850066, 0.036739588, 0.025383716, 0.010262794, - 0.0021861573, 0.00012145319, 0.0, 0.00024290638, 0.0018825243, - 0.0071050115, 0.0138456635, 0.01906815, 0.012995491, 0.0068013784, - 0.0018825243, 0.00036435956, 6.0726594e-5, 0.00018217978, 0.00036435956, - 0.0017610712, 0.0029148764, 0.0045544943, 0.0057082996, 0.0033399626, - 0.0008501723, 0.00012145319, 0.0, 0.0, 0.0, 6.0726594e-5, 0.00030363296, - 0.0005465393, 0.0014574382, 0.00030363296, 6.0726594e-5, 6.0726594e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00018217978, 6.0726594e-5, 0.0, 0.0, - 0.0, 0.0040686815, 0.008258817, 0.010323521, 0.0072264643, 0.0030363295, - 0.0005465393, 0.00012145319, 6.0726594e-5, 0.0, 0.0, 0.010566427, - 0.023076106, 0.0333389, 0.025201537, 0.011112967, 0.0044330414, - 0.0006679925, 0.0, 0.0, 0.0, 0.015485281, 0.039168652, 0.06522036, - 0.05866189, 0.03740758, 0.015181649, 0.0037043223, 0.0006072659, - 6.0726594e-5, 0.0, 0.0139063895, 0.042812247, 0.07870167, 0.098134175, - 0.07366136, 0.036314502, 0.012388225, 0.0021861573, 0.00030363296, 0.0, - 0.006558472, 0.025322989, 0.06588835, 0.10329594, 0.10007743, - 0.06886396, 0.024351364, 0.0051617604, 0.00048581275, 0.0, 0.0035221423, - 0.010930787, 0.03546433, 0.07165738, 0.09704109, 0.07633333, - 0.037468307, 0.010384248, 0.0015788914, 0.00024290638, 0.00048581275, - 0.003582869, 0.012388225, 0.034249797, 0.0552612, 0.052649956, - 0.028359318, 0.009169715, 0.001943251, 0.00012145319, 0.00018217978, - 0.0006072659, 0.0027934234, 0.010262794, 0.019675417, 0.02137576, - 0.01372421, 0.005101034, 0.0009108989, 0.00012145319, 0.0, 6.0726594e-5, - 0.00024290638, 0.0020647042, 0.003886502, 0.0054653934, 0.0036435956, - 0.0015788914, 0.00036435956, 0.0, 0.0, 0.0, 0.00018217978, 6.0726594e-5, - 0.0006679925, 0.0007894457, 0.0005465393, 0.00030363296, 6.0726594e-5, - 0.0, 0.0009716255, 0.0027326967, 0.0027326967, 0.0017610712, - 0.0012752585, 6.0726594e-5, 0.00024290638, 0.0, 0.0, 0.0, 0.0030363295, - 0.0064977454, 0.010809333, 0.009776982, 0.0052832137, 0.00267197, - 0.00036435956, 0.00030363296, 0.0, 0.0, 0.0037650487, 0.012388225, - 0.026780427, 0.03370326, 0.024897903, 0.012752584, 0.0048581273, - 0.0006679925, 0.0, 0.0, 0.0048581273, 0.017185627, 0.044998404, - 0.0712323, 0.070199944, 0.048520546, 0.018582337, 0.0043723145, - 0.0005465393, 6.0726594e-5, 0.0035221423, 0.014270749, 0.051617604, - 0.10281012, 0.13019781, 0.10985441, 0.049977984, 0.014270749, - 0.002246884, 0.00012145319, 0.0017610712, 0.008319543, 0.03953301, - 0.097162545, 0.16220073, 0.14938742, 0.08143436, 0.025019357, - 0.005829753, 0.00036435956, 0.00042508615, 0.0027326967, 0.017671438, - 0.056354277, 0.11337655, 0.12175682, 0.07153592, 0.028845131, - 0.0058904793, 0.0009108989, 0.0, 0.0007287191, 0.006133386, 0.020404136, - 0.048581272, 0.056354277, 0.043176606, 0.019918323, 0.0044330414, - 0.0007894457, 0.0, 6.0726594e-5, 0.0012752585, 0.004736674, 0.011598779, - 0.017792892, 0.015546008, 0.007712277, 0.0028541498, 0.00030363296, 0.0, - 0.0, 0.00018217978, 0.00042508615, 0.0020647042, 0.0034006892, - 0.0029148764, 0.00267197, 0.0005465393, 6.0726594e-5, 0.00030363296, - 0.00036435956, 0.00048581275, 0.00012145319, 0.00018217978, - 0.00012145319, 0.0, 0.0, 0.0, 0.0, 0.00048581275, 0.0010930786, - 0.002246884, 0.0031577828, 0.002246884, 0.0008501723, 0.00018217978, - 6.0726594e-5, 0.0, 0.0, 0.0007287191, 0.0029148764, 0.008805356, - 0.012934764, 0.012691858, 0.008258817, 0.003279236, 0.0006679925, - 0.00012145319, 0.0, 0.0008501723, 0.006437019, 0.017549986, 0.03692177, - 0.04760965, 0.03831848, 0.018400157, 0.004797401, 0.0007894457, 0.0, - 0.0012752585, 0.007469371, 0.027326968, 0.071050115, 0.11191911, - 0.11015804, 0.062426936, 0.021254307, 0.0037043223, 0.00024290638, - 0.0006679925, 0.0043723145, 0.026112435, 0.08440997, 0.16359743, - 0.18709864, 0.11428745, 0.042508613, 0.010809333, 0.0010323521, - 0.00030363296, 0.002550517, 0.014817289, 0.06655634, 0.13967116, - 0.16912356, 0.12959056, 0.0591477, 0.014210023, 0.001943251, - 6.0726594e-5, 0.0009108989, 0.0071050115, 0.027387694, 0.07117157, - 0.10366029, 0.090846986, 0.04615221, 0.01372421, 0.0024290637, 0.0, - 0.00036435956, 0.0012752585, 0.007955183, 0.02137576, 0.039958097, - 0.03667886, 0.022347387, 0.008076637, 0.0013967117, 0.0, 0.0, - 0.00024290638, 0.0009108989, 0.004736674, 0.0084409965, 0.009108989, - 0.0061941124, 0.0021861573, 0.00042508615, 0.0, 6.0726594e-5, - 0.00012145319, 0.00018217978, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00024290638, 0.00042508615, 0.00042508615, 0.0008501723, - 0.00036435956, 0.00024290638, 0.0, 0.0, 0.0, 6.0726594e-5, - 0.00042508615, 0.001639618, 0.0034006892, 0.004190135, 0.0034006892, - 0.001639618, 0.0005465393, 6.0726594e-5, 6.0726594e-5, 0.00018217978, - 0.0014574382, 0.00534394, 0.012388225, 0.019736143, 0.018460885, - 0.011963138, 0.0036435956, 0.0006072659, 0.00024290638, 0.00018217978, - 0.001639618, 0.010323521, 0.031881463, 0.06078732, 0.06983558, - 0.043298062, 0.018643064, 0.0037043223, 0.00018217978, 0.00036435956, - 0.0018217978, 0.012752584, 0.047123834, 0.104024656, 0.14070351, - 0.10366029, 0.046577297, 0.012145318, 0.0018217978, 0.0, 0.0012752585, - 0.009108989, 0.04548422, 0.112222746, 0.16960937, 0.14604746, - 0.07129302, 0.022711746, 0.0043723145, 6.0726594e-5, 0.0005465393, - 0.0054046665, 0.023379738, 0.0708072, 0.12206045, 0.129712, 0.07493661, - 0.02404773, 0.0040686815, 0.0, 6.0726594e-5, 0.0012145318, 0.0075908243, - 0.027569873, 0.05204269, 0.06321638, 0.04311588, 0.013238397, - 0.002975603, 0.0, 0.0, 0.00024290638, 0.0017610712, 0.005101034, - 0.014027843, 0.018096525, 0.014027843, 0.0049795806, 0.0011538053, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0726594e-5, 6.0726594e-5, - 0.0, 6.0726594e-5, 6.0726594e-5, 6.0726594e-5, 0.0, 0.0, 0.0, - 6.0726594e-5, 0.0, 0.0, 6.0726594e-5, 0.0008501723, 0.0010930786, - 0.0011538053, 0.0006679925, 0.00030363296, 6.0726594e-5, 0.0, - 6.0726594e-5, 0.00012145319, 0.0009108989, 0.0037043223, 0.005222487, - 0.005951206, 0.005222487, 0.0020039775, 0.0005465393, 0.0, 6.0726594e-5, - 0.00030363296, 0.0024897903, 0.011720233, 0.019918323, 0.028905857, - 0.021254307, 0.009291168, 0.0024897903, 0.00024290638, 0.0, - 0.00036435956, 0.0036435956, 0.01925033, 0.04402678, 0.069471225, - 0.0639451, 0.034857064, 0.009776982, 0.0017003446, 0.0, 0.0006679925, - 0.0032185095, 0.021132855, 0.060665864, 0.10420683, 0.11119039, - 0.06704216, 0.0219223, 0.003886502, 0.0, 0.00018217978, 0.002550517, - 0.011780959, 0.045180585, 0.09200079, 0.107911155, 0.07360063, - 0.02708406, 0.005222487, 0.0, 0.0, 0.00042508615, 0.0058904793, - 0.019493237, 0.047488194, 0.06236621, 0.045059133, 0.01603182, - 0.0032185095, 0.0, 0.0, 0.0, 0.0010323521, 0.005647573, 0.014817289, - 0.021436486, 0.017185627, 0.005829753, 0.0015181648, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0726594e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00012145319, 0.0, 0.00030363296, - 0.00012145319, 0.00018217978, 6.0726594e-5, 0.0, 0.0, 0.0, 0.0, - 0.00018217978, 0.0006679925, 0.0008501723, 0.0015181648, 0.001335985, - 0.00048581275, 0.00024290638, 0.0, 0.0, 0.00012145319, 0.00024290638, - 0.001639618, 0.004736674, 0.0071050115, 0.0064977454, 0.0040686815, - 0.0010930786, 6.0726594e-5, 6.0726594e-5, 6.0726594e-5, 0.0008501723, - 0.0040686815, 0.011902412, 0.023440465, 0.023440465, 0.011598779, - 0.00534394, 0.0008501723, 0.0, 6.0726594e-5, 0.0008501723, 0.005222487, - 0.019979049, 0.03989737, 0.04918854, 0.030970562, 0.011112967, - 0.0023076106, 0.0, 6.0726594e-5, 0.0005465393, 0.0040686815, - 0.015971094, 0.040443912, 0.058054622, 0.041658442, 0.016517634, - 0.0040686815, 0.0, 0.0, 0.00036435956, 0.0015181648, 0.010991514, - 0.023197558, 0.034492705, 0.028602226, 0.01105224, 0.002550517, 0.0, - 6.0726594e-5, 0.00012145319, 0.0006679925, 0.0026112434, 0.008076637, - 0.01335985, 0.009351895, 0.004190135, 0.001335985 + 0.017185627, + 0.021983027, + 0.012995491, + 0.0046759476, + 0.0014574382, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.025626622, + 0.033095993, + 0.02744842, + 0.011416599, + 0.0034614159, + 0.00024290638, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.021679394, + 0.029452397, + 0.024169184, + 0.013177671, + 0.0034614159, + 0.0008501723, + 0.00018217978, + 0.0, + 0.0, + 0.0, + 0.010566427, + 0.015060195, + 0.014817289, + 0.007955183, + 0.0024290637, + 0.00036435956, + 0.0, + 0.0, + 0.0, + 0.0, + 0.002975603, + 0.004797401, + 0.0041294084, + 0.0034006892, + 0.0009716255, + 0.00030363296, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0005465393, + 0.0013967117, + 0.0010930786, + 0.0006072659, + 0.00030363296, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.00012145319, + 0.00018217978, + 0.0, + 6.0726594e-05, + 0.0, + 6.0726594e-05, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0276306, + 0.03886502, + 0.03157783, + 0.012813311, + 0.0037043223, + 0.0008501723, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.046030756, + 0.070321396, + 0.056961544, + 0.030849108, + 0.0062548392, + 0.0010930786, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.042144254, + 0.07068575, + 0.070078485, + 0.04014028, + 0.0105057005, + 0.0017003446, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.021618666, + 0.04135481, + 0.048034735, + 0.030970562, + 0.012023865, + 0.0024290637, + 0.00042508615, + 0.0, + 6.0726594e-05, + 0.0, + 0.005951206, + 0.012995491, + 0.016699813, + 0.014756562, + 0.0072264643, + 0.0021254309, + 0.00048581275, + 6.0726594e-05, + 0.0, + 0.0, + 0.0010930786, + 0.0027326967, + 0.0046759476, + 0.004190135, + 0.002246884, + 0.0008501723, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.00012145319, + 0.00030363296, + 0.0005465393, + 0.0006072659, + 0.0007894457, + 0.00030363296, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.00012145319, + 0.00012145319, + 0.00012145319, + 6.0726594e-05, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.026233887, + 0.043601695, + 0.03601087, + 0.01566746, + 0.004190135, + 0.0005465393, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.04833837, + 0.083377615, + 0.08021983, + 0.046577297, + 0.014027843, + 0.002975603, + 0.00030363296, + 0.0, + 0.0, + 0.0, + 0.05295359, + 0.097284004, + 0.1077897, + 0.06868178, + 0.028602226, + 0.0061941124, + 0.00048581275, + 0.0, + 6.0726594e-05, + 0.0, + 0.030545477, + 0.06704216, + 0.08890373, + 0.06789233, + 0.028177138, + 0.0076515507, + 0.001639618, + 0.0, + 0.0, + 0.0, + 0.01105224, + 0.02708406, + 0.042447887, + 0.040018823, + 0.020647041, + 0.00783373, + 0.0024897903, + 0.00024290638, + 0.0, + 0.0, + 0.0027326967, + 0.0072264643, + 0.012631131, + 0.015303101, + 0.011720233, + 0.0055868467, + 0.0015181648, + 0.00018217978, + 0.0, + 0.0, + 0.00036435956, + 0.0011538053, + 0.0030363295, + 0.0045544943, + 0.0023076106, + 0.002368337, + 0.0007287191, + 0.00018217978, + 0.0, + 0.0, + 0.00012145319, + 0.00024290638, + 0.00024290638, + 0.0009108989, + 0.0008501723, + 0.0010323521, + 6.0726594e-05, + 0.00030363296, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.0, + 6.0726594e-05, + 0.00018217978, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013481304, + 0.025565896, + 0.025080083, + 0.014149296, + 0.0046759476, + 0.0009108989, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.028237866, + 0.056232825, + 0.060908772, + 0.042447887, + 0.015363828, + 0.0042508617, + 0.00036435956, + 0.00012145319, + 0.0, + 0.0, + 0.03777194, + 0.082648896, + 0.10426756, + 0.08234526, + 0.037468307, + 0.009837708, + 0.0012145318, + 0.00024290638, + 0.0, + 0.0, + 0.027752053, + 0.06613126, + 0.10341739, + 0.093154594, + 0.059086975, + 0.022225933, + 0.005222487, + 0.0006679925, + 0.00012145319, + 0.0, + 0.010262794, + 0.032367274, + 0.059633516, + 0.07736568, + 0.05544338, + 0.028845131, + 0.009473348, + 0.0024897903, + 0.00018217978, + 6.0726594e-05, + 0.0024897903, + 0.010930787, + 0.025990982, + 0.03850066, + 0.036739588, + 0.025383716, + 0.010262794, + 0.0021861573, + 0.00012145319, + 0.0, + 0.00024290638, + 0.0018825243, + 0.0071050115, + 0.0138456635, + 0.01906815, + 0.012995491, + 0.0068013784, + 0.0018825243, + 0.00036435956, + 6.0726594e-05, + 0.00018217978, + 0.00036435956, + 0.0017610712, + 0.0029148764, + 0.0045544943, + 0.0057082996, + 0.0033399626, + 0.0008501723, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.00030363296, + 0.0005465393, + 0.0014574382, + 0.00030363296, + 6.0726594e-05, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00018217978, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0040686815, + 0.008258817, + 0.010323521, + 0.0072264643, + 0.0030363295, + 0.0005465393, + 0.00012145319, + 6.0726594e-05, + 0.0, + 0.0, + 0.010566427, + 0.023076106, + 0.0333389, + 0.025201537, + 0.011112967, + 0.0044330414, + 0.0006679925, + 0.0, + 0.0, + 0.0, + 0.015485281, + 0.039168652, + 0.06522036, + 0.05866189, + 0.03740758, + 0.015181649, + 0.0037043223, + 0.0006072659, + 6.0726594e-05, + 0.0, + 0.0139063895, + 0.042812247, + 0.07870167, + 0.098134175, + 0.07366136, + 0.036314502, + 0.012388225, + 0.0021861573, + 0.00030363296, + 0.0, + 0.006558472, + 0.025322989, + 0.06588835, + 0.10329594, + 0.10007743, + 0.06886396, + 0.024351364, + 0.0051617604, + 0.00048581275, + 0.0, + 0.0035221423, + 0.010930787, + 0.03546433, + 0.07165738, + 0.09704109, + 0.07633333, + 0.037468307, + 0.010384248, + 0.0015788914, + 0.00024290638, + 0.00048581275, + 0.003582869, + 0.012388225, + 0.034249797, + 0.0552612, + 0.052649956, + 0.028359318, + 0.009169715, + 0.001943251, + 0.00012145319, + 0.00018217978, + 0.0006072659, + 0.0027934234, + 0.010262794, + 0.019675417, + 0.02137576, + 0.01372421, + 0.005101034, + 0.0009108989, + 0.00012145319, + 0.0, + 6.0726594e-05, + 0.00024290638, + 0.0020647042, + 0.003886502, + 0.0054653934, + 0.0036435956, + 0.0015788914, + 0.00036435956, + 0.0, + 0.0, + 0.0, + 0.00018217978, + 6.0726594e-05, + 0.0006679925, + 0.0007894457, + 0.0005465393, + 0.00030363296, + 6.0726594e-05, + 0.0, + 0.0009716255, + 0.0027326967, + 0.0027326967, + 0.0017610712, + 0.0012752585, + 6.0726594e-05, + 0.00024290638, + 0.0, + 0.0, + 0.0, + 0.0030363295, + 0.0064977454, + 0.010809333, + 0.009776982, + 0.0052832137, + 0.00267197, + 0.00036435956, + 0.00030363296, + 0.0, + 0.0, + 0.0037650487, + 0.012388225, + 0.026780427, + 0.03370326, + 0.024897903, + 0.012752584, + 0.0048581273, + 0.0006679925, + 0.0, + 0.0, + 0.0048581273, + 0.017185627, + 0.044998404, + 0.0712323, + 0.070199944, + 0.048520546, + 0.018582337, + 0.0043723145, + 0.0005465393, + 6.0726594e-05, + 0.0035221423, + 0.014270749, + 0.051617604, + 0.10281012, + 0.13019781, + 0.10985441, + 0.049977984, + 0.014270749, + 0.002246884, + 0.00012145319, + 0.0017610712, + 0.008319543, + 0.03953301, + 0.097162545, + 0.16220073, + 0.14938742, + 0.08143436, + 0.025019357, + 0.005829753, + 0.00036435956, + 0.00042508615, + 0.0027326967, + 0.017671438, + 0.056354277, + 0.11337655, + 0.12175682, + 0.07153592, + 0.028845131, + 0.0058904793, + 0.0009108989, + 0.0, + 0.0007287191, + 0.006133386, + 0.020404136, + 0.048581272, + 0.056354277, + 0.043176606, + 0.019918323, + 0.0044330414, + 0.0007894457, + 0.0, + 6.0726594e-05, + 0.0012752585, + 0.004736674, + 0.011598779, + 0.017792892, + 0.015546008, + 0.007712277, + 0.0028541498, + 0.00030363296, + 0.0, + 0.0, + 0.00018217978, + 0.00042508615, + 0.0020647042, + 0.0034006892, + 0.0029148764, + 0.00267197, + 0.0005465393, + 6.0726594e-05, + 0.00030363296, + 0.00036435956, + 0.00048581275, + 0.00012145319, + 0.00018217978, + 0.00012145319, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00048581275, + 0.0010930786, + 0.002246884, + 0.0031577828, + 0.002246884, + 0.0008501723, + 0.00018217978, + 6.0726594e-05, + 0.0, + 0.0, + 0.0007287191, + 0.0029148764, + 0.008805356, + 0.012934764, + 0.012691858, + 0.008258817, + 0.003279236, + 0.0006679925, + 0.00012145319, + 0.0, + 0.0008501723, + 0.006437019, + 0.017549986, + 0.03692177, + 0.04760965, + 0.03831848, + 0.018400157, + 0.004797401, + 0.0007894457, + 0.0, + 0.0012752585, + 0.007469371, + 0.027326968, + 0.071050115, + 0.11191911, + 0.11015804, + 0.062426936, + 0.021254307, + 0.0037043223, + 0.00024290638, + 0.0006679925, + 0.0043723145, + 0.026112435, + 0.08440997, + 0.16359743, + 0.18709864, + 0.11428745, + 0.042508613, + 0.010809333, + 0.0010323521, + 0.00030363296, + 0.002550517, + 0.014817289, + 0.06655634, + 0.13967116, + 0.16912356, + 0.12959056, + 0.0591477, + 0.014210023, + 0.001943251, + 6.0726594e-05, + 0.0009108989, + 0.0071050115, + 0.027387694, + 0.07117157, + 0.10366029, + 0.090846986, + 0.04615221, + 0.01372421, + 0.0024290637, + 0.0, + 0.00036435956, + 0.0012752585, + 0.007955183, + 0.02137576, + 0.039958097, + 0.03667886, + 0.022347387, + 0.008076637, + 0.0013967117, + 0.0, + 0.0, + 0.00024290638, + 0.0009108989, + 0.004736674, + 0.0084409965, + 0.009108989, + 0.0061941124, + 0.0021861573, + 0.00042508615, + 0.0, + 6.0726594e-05, + 0.00012145319, + 0.00018217978, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00024290638, + 0.00042508615, + 0.00042508615, + 0.0008501723, + 0.00036435956, + 0.00024290638, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.00042508615, + 0.001639618, + 0.0034006892, + 0.004190135, + 0.0034006892, + 0.001639618, + 0.0005465393, + 6.0726594e-05, + 6.0726594e-05, + 0.00018217978, + 0.0014574382, + 0.00534394, + 0.012388225, + 0.019736143, + 0.018460885, + 0.011963138, + 0.0036435956, + 0.0006072659, + 0.00024290638, + 0.00018217978, + 0.001639618, + 0.010323521, + 0.031881463, + 0.06078732, + 0.06983558, + 0.043298062, + 0.018643064, + 0.0037043223, + 0.00018217978, + 0.00036435956, + 0.0018217978, + 0.012752584, + 0.047123834, + 0.104024656, + 0.14070351, + 0.10366029, + 0.046577297, + 0.012145318, + 0.0018217978, + 0.0, + 0.0012752585, + 0.009108989, + 0.04548422, + 0.112222746, + 0.16960937, + 0.14604746, + 0.07129302, + 0.022711746, + 0.0043723145, + 6.0726594e-05, + 0.0005465393, + 0.0054046665, + 0.023379738, + 0.0708072, + 0.12206045, + 0.129712, + 0.07493661, + 0.02404773, + 0.0040686815, + 0.0, + 6.0726594e-05, + 0.0012145318, + 0.0075908243, + 0.027569873, + 0.05204269, + 0.06321638, + 0.04311588, + 0.013238397, + 0.002975603, + 0.0, + 0.0, + 0.00024290638, + 0.0017610712, + 0.005101034, + 0.014027843, + 0.018096525, + 0.014027843, + 0.0049795806, + 0.0011538053, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 6.0726594e-05, + 0.0, + 6.0726594e-05, + 6.0726594e-05, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.0, + 0.0, + 6.0726594e-05, + 0.0008501723, + 0.0010930786, + 0.0011538053, + 0.0006679925, + 0.00030363296, + 6.0726594e-05, + 0.0, + 6.0726594e-05, + 0.00012145319, + 0.0009108989, + 0.0037043223, + 0.005222487, + 0.005951206, + 0.005222487, + 0.0020039775, + 0.0005465393, + 0.0, + 6.0726594e-05, + 0.00030363296, + 0.0024897903, + 0.011720233, + 0.019918323, + 0.028905857, + 0.021254307, + 0.009291168, + 0.0024897903, + 0.00024290638, + 0.0, + 0.00036435956, + 0.0036435956, + 0.01925033, + 0.04402678, + 0.069471225, + 0.0639451, + 0.034857064, + 0.009776982, + 0.0017003446, + 0.0, + 0.0006679925, + 0.0032185095, + 0.021132855, + 0.060665864, + 0.10420683, + 0.11119039, + 0.06704216, + 0.0219223, + 0.003886502, + 0.0, + 0.00018217978, + 0.002550517, + 0.011780959, + 0.045180585, + 0.09200079, + 0.107911155, + 0.07360063, + 0.02708406, + 0.005222487, + 0.0, + 0.0, + 0.00042508615, + 0.0058904793, + 0.019493237, + 0.047488194, + 0.06236621, + 0.045059133, + 0.01603182, + 0.0032185095, + 0.0, + 0.0, + 0.0, + 0.0010323521, + 0.005647573, + 0.014817289, + 0.021436486, + 0.017185627, + 0.005829753, + 0.0015181648, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00012145319, + 0.0, + 0.00030363296, + 0.00012145319, + 0.00018217978, + 6.0726594e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00018217978, + 0.0006679925, + 0.0008501723, + 0.0015181648, + 0.001335985, + 0.00048581275, + 0.00024290638, + 0.0, + 0.0, + 0.00012145319, + 0.00024290638, + 0.001639618, + 0.004736674, + 0.0071050115, + 0.0064977454, + 0.0040686815, + 0.0010930786, + 6.0726594e-05, + 6.0726594e-05, + 6.0726594e-05, + 0.0008501723, + 0.0040686815, + 0.011902412, + 0.023440465, + 0.023440465, + 0.011598779, + 0.00534394, + 0.0008501723, + 0.0, + 6.0726594e-05, + 0.0008501723, + 0.005222487, + 0.019979049, + 0.03989737, + 0.04918854, + 0.030970562, + 0.011112967, + 0.0023076106, + 0.0, + 6.0726594e-05, + 0.0005465393, + 0.0040686815, + 0.015971094, + 0.040443912, + 0.058054622, + 0.041658442, + 0.016517634, + 0.0040686815, + 0.0, + 0.0, + 0.00036435956, + 0.0015181648, + 0.010991514, + 0.023197558, + 0.034492705, + 0.028602226, + 0.01105224, + 0.002550517, + 0.0, + 6.0726594e-05, + 0.00012145319, + 0.0006679925, + 0.0026112434, + 0.008076637, + 0.01335985, + 0.009351895, + 0.004190135, + 0.001335985 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.similar-features.4.json b/common/search/src/test/resources/test_documents/images.similar-features.4.json index 8000570d1..565710dc2 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.4.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.4.json @@ -182,17 +182,33 @@ "Jobbins, John Richard, active 1839-1864", "Green, James, 1781-1849" ], - "genres.concepts.label": ["Lithographs"], + "genres.concepts.label": [ + "Lithographs" + ], "id": "tmw7ku3g", "sourceIdentifier.value": "b11638898", - "identifiers.value": ["b11638898", "1163889", "15367i", "V0012136"], + "identifiers.value": [ + "b11638898", + "1163889", + "15367i", + "V0012136" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["u5cs9tc9"], - "items.identifiers.value": ["i11856671", "1185667"], - "languages.label": ["English"], + "items.id": [ + "u5cs9tc9" + ], + "items.identifiers.value": [ + "i11856671", + "1185667" + ], + "languages.label": [ + "English" + ], "lettering": "Peel Institution, Accrington, Lancashire. ; James Green, Archt. ; J.R. Jobbins.\n\nBears number: 19", - "notes.contents": ["Wellcome Collection 15367i"], + "notes.contents": [ + "Wellcome Collection 15367i" + ], "partOf.title": [], "physicalDescription": "1 print : transfer lithograph ; border 24.8 x 37.6 cm", "production.label": [], @@ -225,13 +241,19 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], + "locations.license.id": [ + "pdm" + ], "source.contributors.agent.label": [ "Jobbins, John Richard, active 1839-1864", "Green, James, 1781-1849" ], - "source.genres.label": ["Lithographs"], - "source.genres.concepts.id": ["fmydsuw2"], + "source.genres.label": [ + "Lithographs" + ], + "source.genres.concepts.id": [ + "fmydsuw2" + ], "source.subjects.label": [ "Hospitals - England - 19th century", "Accrington (England)", @@ -240,1098 +262,5105 @@ "source.production.dates.range.from": [] }, "vectorValues": { - "features1": [ - -0.42553854, -3.7384274, -1.8475953, -1.3416901, -1.1467458, -2.7222025, - -1.7507633, 0.96057427, -1.120613, 0.033859476, -0.7456633, 1.5122837, - -0.7965387, -0.24573517, -0.92842454, -1.4194256, -0.6276423, - 0.52500826, -1.0583519, 1.0205214, -1.5248394, -1.6463361, -0.12180234, - -0.06767083, 0.9824911, -0.809627, 0.8364389, 0.52110004, -1.5885421, - -0.61694956, -0.64644605, -0.61678636, -1.4699192, -0.903657, - 0.57367396, -1.0761807, 0.075074434, 1.4808453, -1.270849, -0.9579898, - -0.45184928, -1.4858913, -0.5495721, 0.7982887, -1.7048281, 0.13102543, - 1.5833988, 0.5409348, -1.7810811, -1.9217606, -0.1163639, 0.21427573, - 0.38417345, 0.04596048, -0.8971487, -2.4490447, -0.114644475, - -1.5542167, -0.5827942, -0.63935333, 0.20716003, -0.507458, 1.1273848, - -0.79837495, 0.301198, -1.1892842, -1.2543402, -2.040685, -0.378608, - -0.74076366, 0.4345708, -0.82387066, -1.8510836, 0.678753, -0.46684563, - -0.08509503, -1.2951034, -1.5305936, 0.23505487, -0.51255494, 1.2830925, - -0.57289046, -0.08565855, -0.37392762, 0.54994196, 0.2076148, - -1.0991001, -0.5621728, 1.2439097, -1.2562779, -1.5943439, 0.5851996, - -0.7556816, 0.47622314, 1.2906337, -1.3018278, -1.4791894, -0.31048957, - -0.2556408, 0.28091508, -1.1161202, 1.1485794, 1.1927557, -1.3215374, - -0.4392067, 0.083907284, 0.4173715, 0.049513012, 1.885493, -2.682055, - -0.895685, -0.40253597, -0.5768533, 0.605847, -1.1774728, 0.39934123, - -0.47537008, -2.8423812, -0.032667458, -2.2495937, 0.46528026, - 1.6350311, 1.2474827, -0.64963907, -1.7938867, -0.109936364, 1.1076618, - -0.32581356, -0.058205456, -0.40821707, -0.29719424, -1.8357904, - -0.23769519, -0.7370397, -1.0292461, -0.3743131, -0.015297942, -2.55181, - -0.8129086, -0.54674, -2.0535052, -0.75387657, 0.35629687, -0.59352356, - -0.73632884, -1.2044231, -0.58814716, -0.33977157, -2.2944098, - -0.5522831, -1.913168, -0.36134827, -1.3681395, -1.0383257, 1.2547331, - -0.21315601, -0.6374082, -0.41600785, -1.7290926, -0.44727457, - -0.79628086, 0.73693603, -0.5007695, 1.023943, -0.5969724, -1.8872703, - -0.6071696, 0.24067603, -1.1121758, 0.9217496, -1.4786645, -2.0089073, - -2.0187228, -1.2865577, 0.47841558, 0.09917338, -0.09204506, 0.39267948, - 1.8354862, -2.294573, 0.24434853, 0.6603916, 0.41580626, -0.30452356, - -0.32114616, -1.1113601, -0.7708724, -1.2691954, -1.2670009, -0.8090974, - 0.35341895, 0.9634023, -1.0101006, -1.080647, -0.13380647, 0.55155927, - 2.130236, 2.2880795, 0.6983995, -0.24905474, 0.2818419, -0.19944623, - -1.1306899, -0.99847263, -0.60716444, -0.42380098, -0.49528825, - 0.09126116, 0.31542143, 0.11726417, 0.60184276, -1.3210993, -1.4873636, - -1.8596131, 0.0048608705, -0.45419678, 2.6396294, -0.058996495, - -2.1917317, -0.08422881, -0.6291165, 0.034095973, -0.36097145, - -1.7967646, 0.0869946, -2.2476416, -1.4008579, 0.48784393, 0.28144208, - -0.44189313, 0.74454993, -1.2358997, 0.44051114, 0.23809983, -1.481059, - 0.38731602, -1.1845635, 0.57892585, -1.3816501, 0.038188025, - -0.15596345, -1.0537552, -0.4706744, -1.1358113, 0.21998568, 1.0909543, - -0.6337461, -0.49542958, 0.2563278, -1.1591928, -1.3340544, 0.22579733, - 0.8359474, 0.61790884, -1.5352638, -1.4699347, -0.56018734, 0.08447823, - -0.77217764, 1.0936172, -2.0483756, -0.8326084, -0.14527482, - -0.046966348, -1.1013489, -0.09567487, -0.54829466, -0.58719194, - 0.07926521, 0.81410706, 1.8255061, -3.0319095, -0.7320865, -0.994314, - -0.43435547, 0.13989298, -1.4771065, -1.8167187, 0.68919885, -2.6163802, - -1.1103067, -0.55186677, 0.51188946, -2.0658188, 0.5475553, 0.5804649, - 0.023881327, -1.568944, -0.44182125, 0.33944574, 0.61173135, 0.2286092, - -0.013392001, 0.2303597, -2.5693676, -0.53529835, 0.21211934, - -0.52573836, 2.5651948, -0.14269611, 1.9456748, -2.4341643, -1.4366258, - 1.1194423, -1.2237773, -2.3733618, 0.49211076, 0.24793768, -1.4802744, - 1.3158889, 1.4786437, -0.7309644, -0.50153714, 0.80103594, 2.3123426, - 0.54657865, 0.20596977, 0.092226766, 0.19174227, 0.69511735, - -0.18940377, -0.12400416, -0.49057057, 1.6181378, -1.7958992, - -3.2160594, -0.07775093, -1.1446894, -1.0776871, -1.8676171, 0.51864934, - -1.1158695, -0.85428375, 0.062619835, 0.3117964, 0.73829275, 0.8367937, - 2.386562, -0.867953, -1.7565955, 1.8111829, -0.50306994, 0.29641855, - 1.2185199, -0.95391583, -0.48674464, 1.5772674, -1.9948409, 0.3716075, - -0.56874853, -1.0047104, 1.2393208, 0.5494506, 0.09538705, 0.9319262, - -0.56269324, -0.930567, 0.889223, -0.5677923, -1.0589308, -1.2973098, - -0.27449167, -0.515815, -0.46122652, -1.3384254, 1.4849075, -1.194797, - -0.683026, -1.851474, -0.56541884, -0.28414044, 1.5950506, -0.9747725, - -0.32999635, 2.3822846, 0.6730077, -1.116386, -1.6585284, -0.44680303, - -0.49881673, 0.09345369, -0.70757765, 1.1685694, -0.46780664, 1.26538, - 0.9235364, 1.5216986, 0.32870516, -0.072096266, 0.6757249, 0.9943335, - -1.4656184, -0.16571274, 0.112619154, -2.2746563, -1.8137954, 0.5549701, - 0.21046212, -0.5403178, -0.73255664, -0.60561156, -1.7528857, - 0.038348638, -0.54782516, -1.08513, 0.32533345, -0.4642283, -0.2652934, - -1.6324818, -0.06515429, 0.37710735, 0.41839987, 0.6314075, 0.17153092, - 0.22436422, -0.2754354, -0.102972984, -0.47287118, 0.8709032, - -0.1804211, -1.0441626, 0.19870275, 0.9351209, -0.7219153, -0.16941218, - -0.8357102, -2.0962636, -0.24449271, 1.1514486, -0.43815368, 0.21314965, - 0.38347447, -0.53065246, 0.08202779, 0.28497857, -0.010776412, - -0.15544888, -0.07362719, -0.6895814, -0.76442957, -2.3864872, - -0.84530836, -0.7615385, 0.18593733, -1.6865988, 1.6715492, -1.5379049, - -1.2934664, -0.06979725, 0.23148149, -1.6968151, -2.1796062, - -0.71775866, -0.009707725, -1.0073509, -0.9555397, 0.9584209, - 0.29557952, -1.9636989, 1.4151329, -1.0538784, -2.0266197, -0.41618264, - 0.36793688, -1.3385535, 0.7038391, 0.79599553, -1.6888456, -1.1092298, - 0.6132365, -1.5464364, -1.4567764, 0.16310978, 0.6233708, -0.9502886, - -1.0092502, -1.1717314, 0.2981618, -0.5470186, 0.90220404, -1.1641258, - -0.47502318, 0.47910723, 2.2576067, -0.73262656, -1.4236481, 1.0295006, - 1.3814683, 0.63055825, -0.947704, -1.9130765, -0.50752974, -1.2503911, - 0.26003724, -0.7158221, -1.7554121, -0.42564616, -0.100297466, - -0.5132553, -0.87043947, -0.5887551, -2.2208838, -1.2126331, - -0.85619575, 0.66778284, -1.1737826, 1.3943852, 0.5677884, -0.6611714, - 0.12161629, -0.87125826, 0.51028234, -0.30519816, 0.39157513, - -2.5976095, 0.76326007, 0.94584346, -0.8298654, -1.4491718, 0.41682735, - 1.6917917, -1.3260157, 0.2418019, -0.28482515, -0.2023541, 0.6018757, - 0.36688966, -2.6017373, 1.3189068, -0.8610794, -0.47205675, 0.07007131, - -0.97709215, -0.53591985, 0.21451177, -0.33926442, -1.2770698, - -2.4678183, -0.97374797, -0.49418753, -0.11626696, 0.2233808, - -0.7716556, -0.2080136, -0.861217, 1.0842528, -0.4850781, 1.0577005, - -0.6658971, -0.6968821, 1.442732, 0.051164053, -0.9929593, 0.73801625, - -0.48082596, 1.0434762, 0.37889716, -0.5266689, 0.07693792, -2.0662446, - 0.3429789, -1.2087433, -0.30549526, -1.3074381, 0.52017206, 1.0962316, - 0.26573467, -0.6708962, -1.0189844, -0.5641603, -0.3409323, -0.87434685, - -0.8787473, 0.6677096, -0.82220143, 0.12974092, 0.15883458, -1.4679528, - -0.44098106, -0.84074, 0.57752275, -1.1100549, -0.7448135, 0.85179895, - -2.5114985, -1.7157117, -0.79220945, -0.33748376, 0.2301909, 0.22062576, - -0.8508433, -0.6347737, 1.9793334, 0.2943169, -0.036612976, 0.031051187, - -0.2890201, 1.2120942, -2.5478156, 0.7333872, -1.678932, 0.6040089, - -0.35668087, 0.06476489, 0.09063392, -1.8689483, -2.854047, -2.3729806, - -0.45010483, -1.623086, -1.2318051, -0.70522845, -0.26443204, - -0.3111704, -1.635252, -0.38348678, 0.6899691, -0.32611436, -0.4389098, - -0.44925418, -2.0898473, -0.09438308, -0.1681506, 1.5523763, - -0.56691134, -0.7207519, -1.2273993, 1.3233566, -0.43560123, 0.2159409, - -0.45753756, -0.43992174, -0.7576624, -0.19757982, -1.2363993, - -0.3340223, 0.04668227, -0.60012347, -0.8230356, -0.53272355, - -2.1403723, 0.2705391, -0.9187289, -2.241903, -0.8062632, 2.5164838, - -1.7499186, -0.36756277, -1.3100733, -1.946983, 2.191688, -0.5603217, - -1.5748831, -3.0536537, -0.20681684, 0.62467563, -0.95691097, 0.4842419, - -0.056400005, 0.35240462, 0.17403945, -1.6284668, -2.1849816, - -0.80773556, 0.23449251, -0.60015315, 2.1884172, -1.079109, 0.100436, - 1.8894311, 0.029840715, 0.9545907, -1.0931253, -0.015123073, -1.3153634, - -0.15840074, -1.6955519, -1.0846868, 0.24810995, -0.15542184, - -0.35769105, -0.010740929, -0.761142, 0.20349324, 0.041116193, - 0.6148861, -1.3830109, -0.11460375, -1.3865998, -1.6320827, 0.04249236, - 1.0959271, -0.7985642, -1.5060772, -2.0651996, 0.28770223, -0.34407884, - -1.5016093, 1.0375146, -0.61535776, -0.5185521, 0.0102496445, - -0.46633148, 0.1769567, 0.067369476, -0.6375185, -0.015417047, - 0.18643247, -1.0352335, 1.0030658, -0.581658, -0.16198939, -0.97680557, - -1.3801535, -0.56810695, -0.4981583, -0.9496562, 1.1808234, -1.9676175, - 0.675834, 0.10581072, -0.2419758, 0.9886446, 0.1766713, 0.79774886, - 0.7664535, -0.9454904, 0.6888652, -1.1147511, 0.0678263, -0.18111631, - -1.1409788, -0.80592924, 0.7226252, 1.753873, -2.3985384, 1.5852244, - -1.2295967, -0.15871319, -0.47438872, -0.87691593, -0.98568004, - -1.0966024, -1.5795934, 0.75607073, 1.1550757, -1.2039708, -0.86369884, - -1.3054128, -1.0310656, 0.60707414, -1.5662452, 1.2657887, -0.31124163, - 0.4721255, 1.0809771, -1.129602, 0.40121558, -0.9968345, -3.0467668, - -0.96739227, -1.9135754, -1.6539702, 1.1519728, -1.3963244, 0.51643133, - 0.68654746, -0.68743956, -1.1874193, -0.016825177, -1.8519381, - -1.3832774, 1.2688037, -0.76498663, -1.5468413, -1.1210183, -1.5607313, - -2.410948, -0.0962401, 1.573947, -1.7637666, -0.94942856, 1.1233157, - 0.17478454, 1.0885279, -2.141107, -2.0845337, 0.095364854, -1.0650913, - -1.2795395, -2.3811717, 1.477645, -0.91836697, -2.692315, 0.14891736, - -2.5011384, -1.430194, -4.249206, -0.20118527, -1.2137432, 2.192421, - 0.4788358, 0.30319458, -0.12097427, 0.7245793, 0.95343924, -1.2121643, - -0.32974637, -2.8073545, 0.37681624, -1.1857172, -1.7119899, -1.9724336, - -1.2360396, 1.271638, -1.3792669, 0.62403, 1.0342075, -0.41679388, - -0.90039647, 0.7013795, -1.0528548, 0.7437874, -1.7138481, -0.3662368, - -0.66531974, 0.02053118, -1.430687, -1.0144235, -1.9115905, -0.84343183, - -2.8328576, -0.77146864, 0.62231183, -0.099712655, -0.81309795, - -1.135827, -0.9253857, -0.56394184, -0.79578364, -2.0358715, -1.0730729, - -0.6721607, -1.330224, -0.14229769, -0.7298743, 1.6660851, -2.1844802, - -2.118702, -0.95870703, -1.2066575, -0.22590052, -0.4949662, -0.8810965, - -1.0704072, -0.08171729, 1.9588653, 0.13348967, -1.602732, -0.99833894, - -1.1397905, -0.89374614, -3.745359, 1.4593472, -0.019061439, 0.21511306, - -0.90156853, -1.4650078, -2.292274, -0.47126612, -2.5862644, - -0.31057185, 1.1699017, -1.6992917, -0.023808174, -0.61749774, - -0.52835333, -1.4848549, -0.6535921, -0.13229236, -1.4286194, 1.0569304, - -0.39515457, -0.54759467, -1.7579689, 0.092351474, -1.3074522, - 0.91980207, -0.10106139, -0.5804419, -0.111011714, -0.122717485, - -0.29240918, -0.66378987, -0.9390938, 1.0838556, -1.7542351, 0.50728405, - 1.9717329, -1.0847408, 0.30700144, -1.8845665, -1.1812617, -0.587394, - -0.74165046, -0.26423103, -0.17343438, 0.32489341, 1.1970842, - -0.6124778, -2.0709696, 0.6413008, -2.4954815, -0.6051525, -0.061304003, - 1.1346278, -0.8345318, 0.14025997, 1.1499084, -0.51247334, -1.0733522, - -0.37245756, -0.9433731, -1.7996374, 0.92272234, -0.5553662, -0.9258084, - -0.5848967, -1.6694273, -0.17235848, -0.76014686, 0.7184023, - 0.0017158054, 0.62478614, -2.1432378, -1.133892, -1.0542312, - -0.124499336, -0.7821233, -0.16813615, -0.3446623, -0.9906944, - -1.8225332, -0.14691062, -0.8136103, 0.69370484, 1.3444748, - -0.083929986, 0.2067138, 0.9235528, -0.45035022, -1.2527854, - -0.40556705, -2.195619, -0.70374304, 1.8417808, 0.16332993, -1.6961585, - -1.9699973, -1.0074662, 0.18179657, -1.4113798, -0.28240997, 0.64000994, - 0.74975204, 0.83113736, -1.3673136, -0.736773, -0.34607702, -0.06229343, - 0.13075835, -1.0413549, 0.5621684, 0.7012724, -2.7272542, 0.53084856, - -0.95260423, 1.6143957, 0.9059776, -0.3341572, 0.056256283, -1.1870012, - 0.32293016, -0.43608525, -0.43002418, 0.28943685, 0.5723677, 2.1721132, - -0.7298468, 0.054641083, -0.7389917, -2.9183095, -0.76189435, -2.111586, - 0.04214212, 0.6033503, -1.3352252, 1.8384792, -2.835942, 0.85206914, - 0.365489, -1.8474712, -2.3739448, 0.92018026, -2.1108017, 0.19918853, - -1.2640756, -0.5849534, -2.9551227, 0.17478062, 1.689786, 0.19426702, - 0.42834607, -0.48941216, 0.78919274, -1.8633282, -0.16444972, - 0.61268383, 0.6318727, -0.5634347, -1.4425688, -0.36057535, -0.12441762, - -0.04178289, -0.38681695, -0.75389177, -0.8872412, -0.37441862, - -0.9465024, -0.26872393, 2.2040522, -0.26266378, 0.93684614, 0.8265776, - 0.17184237, -1.0620806, -1.9171194, -0.595913, 0.23908952, 0.3799411, - 1.6272186, -0.84229064, -0.46495795, -1.0976055, -0.9386323, - -0.51047146, 0.518512, 0.5212011, -1.0619369, -0.5163211, -0.36456904, - -2.2975788, -0.7342606, -0.37167555, 0.22370288, -1.2692752, - -0.66290724, -0.09886552, 0.8158202, 0.1431144, 0.24044728, -0.2302494, - -1.2865065, -2.0491078, 0.9441755, 0.71548015, 1.9379574, -0.24859984, - -1.734195, 0.053805817, -2.0124996, -2.6835985, -0.34427428, - -0.11783709, 0.39739498, -1.0302321, -0.36925352, -1.4198871, - -1.9158742, 2.3748815, 0.17492384, -1.6311591, -1.3357103, -0.15072307, - 0.078961164, -2.4784288, -0.30804864, -0.92359495, 0.10102637, - 0.3749508, 0.633192, 0.08633441, 1.2075131, -1.0273094, 0.3932723, - -0.0894759, -1.8164152, -0.7898668, -1.6747528, 0.91868716, -1.0223035, - 0.039991572, -1.3293755, -2.3959577, 0.17337477, -1.7125826, - -0.99484116, -0.17471299, -1.3751727, 1.6057824, -0.67739046, - -0.4883247, 0.25804362, -0.20651187, -0.5627552, -0.7643714, 2.3801348, - -0.7162969, 0.91776437, 0.433844, 1.5302722, -0.31430098, 0.22145587, - -0.052246775, -0.6567664, 0.47561193, 0.66147137, 0.5540904, - -0.035879366, -0.8924809, -1.1805961, -3.1218746, 0.9655527, -0.7615749, - -2.1073356, 0.21615623, -0.8673361, 0.7806456, 0.6309634, -0.33511037, - -1.144031, 0.24188966, 0.7007852, -0.095869236, -2.8669019, -1.7331649, - 1.7738636, -1.4633594, -0.5182122, 0.42130953, -0.193089, 0.03083451, - 0.88616735, 0.37846288, -0.92046654, -1.8808168, -2.2514935, 0.27366543, - 0.4208095, -1.5346135, -0.3633401, -1.2604836, -0.7809571, -0.90703386, - 0.6162391, -0.002271425, -0.3975065, -1.0458957, -0.965409, 0.30844924, - -1.1424336, -0.62452507, -1.8523403, 0.66586804, 0.64463806, 0.22175907, - -1.6532996, 1.9318259, -0.6870521, -1.5757544, 1.2873193, -0.60763115, - -1.4790182, -0.4118318, 0.8341062, 0.37181756, 0.5362339, 0.66118747, - 0.24169059, -1.2647687, 0.30540004, -0.8543483, -0.08485794, -1.6050024, - -0.79232943, -0.6071277, -1.4918711, -0.24924202, -1.3907219, - -0.30445248, -0.6865457, -1.3268639, -0.60147506, -0.74034667, - 1.3202796, -0.29802394, -0.12219706, -0.10446127, 0.08836321, - -0.050719187, -2.2681744, -1.3310765, -1.3154294, -0.71375227, - 0.024523191, -0.83652866, 0.2521332, 0.77112114, -1.4264823, -1.988753, - -0.34180832, -0.1252343, -0.34694874, 1.1505147, 0.5521189, -1.5611104, - 0.15388012, -0.066276416, -0.9184693, 1.6030718, -1.1860389, -1.7625054, - -0.24924019, 0.2126986, 0.006430734, -2.7775583, -1.0517853, - 0.102909744, -1.1749601, 0.14493977, -0.3590048, 0.8707032, -1.334068, - -1.7676997, -0.49476177, 0.60288906, -0.50194746, -0.95547867, - -1.1257839, -1.0797088, -0.17914528, -0.36283422, 0.44883078, 2.4243436, - 1.0780262, -0.68987346, -1.1140083, 0.705471, -0.26697046, 0.61490715, - -1.3229505, -0.750461, 1.2168138, -0.043172184, 2.113289, -0.8327632, - -1.0966064, -0.79035544, 0.40453503, 0.93483686, 1.2748064, -1.1301473, - -0.0072669536, 1.0118774, -0.30157405, -0.8385594, -0.5785288, - -0.084641874, -0.66428083, 0.72312003, 0.29512736, -1.0752603, - -1.2607361, -0.54027647, -0.1426955, -1.1154692, -0.10577702, - -1.9348636, 0.9913628, 0.41106904, 0.39108205, 0.111814305, -0.8688074, - -2.1361012, -0.3433505, 0.40937272, -0.5582832, -0.2891109, -0.7505627, - 0.19439086, 0.5327694, -1.1012316, -0.14421874, -0.0048431233, - -0.4770864, 1.6036807, -1.3197021, -0.8776511, -0.8822563, -1.0179845, - 0.5051659, -0.44565365, -0.3075434, -1.4146855, -0.9359509, -0.26164228, - -0.8052428, 0.6372915, -0.40054187, -2.1018183, -0.4954966, -0.2879113, - -2.0118272, -0.074737884, 1.0131451, 1.1095319, 0.25446045, - -0.002286464, -0.47455302, 0.06004762, -0.08182997, -1.3315874, - -1.3572543, -1.0816914, 0.29149494, -0.525261, -0.29537934, -1.6986943, - 0.12098099, -2.95079, -1.7284168, -0.45672813, -1.0711554, -1.8152795, - -2.1184738, -0.7991941, -0.2837968, -0.50283706, -0.6827313, - -0.001462847, -1.0925195, -1.1006625, -1.6834264, -0.11900999, - -0.6676294, -0.6619743, -0.7866779, -1.8819599, -1.0306857, -1.7591094, - -1.0607476, -1.6033056, -0.6010115, -0.74057096, 1.151922, -0.14972898, - 0.17200233, -0.76348263, 0.29746526, 0.11634748, 0.44356528, - -0.14955653, -0.8893068, -0.17484897, 0.7258827, -1.9197881, 0.9277147, - -1.406517, -0.94765854, 1.1141552, 0.42711896, 0.22982688, 0.38730004, - -1.5865601, -0.69466424, 0.9188487, 0.57657784, -0.8218178, 0.113088265, - -2.3933253, -0.1544949, 0.11815173, -0.32708538, -0.42609265, - -2.6033359, -1.7081249, -1.642332, 0.9504396, 1.2662295, 0.7222479, - 0.8891793, -1.3535773, -0.20632204, 0.740477, -0.3154633, -0.7285316, - 0.2299003, -1.4300482, -0.86795545, 0.1757482, -1.641391, 0.07033468, - 0.3420135, -1.9446728, -1.3401214, 1.2469335, 0.44510955, 0.1732924, - 0.55505025, -0.087953076, -0.40282613, 0.4028592, -0.2606969, - -0.5091668, -0.77256733, -0.07210708, 0.028828237, -3.0079126, - -1.3057207, -0.5636065, -1.034801, -0.5371754, -0.81908536, -0.760404, - 0.9415042, -0.3496232, -0.33731163, 0.18094833, -0.5126993, -0.81007224, - -0.5243328, -0.5931579, 0.706881, -1.4919791, 0.2769099, -0.72252125, - -1.2074493, 0.23546973, 0.12460794, 0.5919119, 0.633466, -0.640582, - -0.49564868, -0.9235624, -0.24524991, -0.7996056, -1.981456, -0.8459661, - -1.9852458, -0.22738412, -0.6927293, -1.9514477, -0.01917931, - -1.2110692, -0.41404477, 0.19141799, 0.46952808, -1.6386945, 0.63147455, - -2.0972512, -1.2398871, 1.4033079, 1.2417254, 0.9064073, 0.23109585, - -1.2839864, -0.8738689, 0.43410248, 0.86550945, -0.71817553, -1.0948652, - -1.2487919, -0.25120634, 1.0353483, 0.77393913, -0.09817962, - -0.25633752, -1.4033056, 0.20231836, -1.5205507, -1.2439536, -1.6384472, - -1.1305525, -0.20325764, 1.0854897, -0.7474059, -1.5839684, 1.1906117, - -0.5946429, -0.8334169, -0.9127063, -1.429467, -0.49151814, -0.9038998, - -0.93361396, 0.8584297, 1.3087407, -0.23088923, 0.014963567, -1.2096838, - 0.002158396, 0.18133001, -0.0154530555, -0.6427934, -1.2939214, - 0.55839914, -0.78150517, 1.2028599, 0.20292452, -1.1043154, -1.892445, - -0.6841465, -0.46094647, -2.2983472, -0.86629647, -0.8947136, - -2.2236514, -0.55807966, 0.6261047, -2.0947683, -2.077444, 0.1356353, - 0.9520033, -2.6982098, 0.9297361, -1.2146212, 0.9901115, 0.6533009, - 1.0809842, 0.14473183, -1.5801243, 0.0973929, -1.5703862, -1.9210058, - -0.45873994, -0.030106686, -1.5036622, 0.73316425, -1.4050074, - 1.8370116, 0.865355, -1.7060273, 0.33365127, 0.58889306, 1.0920033, - -0.33899587, -0.27399015, 1.4521264, -1.1281251, -0.53679144, - 0.15409559, -1.3826139, -1.4159716, -0.4585703, -0.740902, 1.2854477, - -1.3869461, 0.9149458, 1.1277485, 0.1708779, -1.3319051, -1.9117007, - -2.2842662, -1.2517463, 1.3730143, -1.7011547, -0.13231675, 1.4398923, - -2.3473513, -0.36749136, -0.12787469, -0.073935315, -1.2421079, - -0.57031155, -1.5077333, -0.9376623, -2.463777, 0.74043834, -0.60667443, - 0.06736241, -1.0465858, -1.451371, -0.5841782, -0.8289996, -0.50238574, - 1.0562091, -0.8713328, -0.385324, 0.4990559, -0.21369262, -0.08074605, - 0.22489336, -0.05443377, -1.6032047, 0.44581637, -1.9331477, -1.3093921, - -2.0547, -1.3361791, 0.49572945, -0.86064154, -0.70954114, -1.2212232, - 0.09839584, 1.5952358, -0.98874426, -1.0929668, -1.0186316, -2.9153705, - 0.35949895, 0.6396229, 0.43615603, -1.1906497, -1.916751, -0.6435921, - -0.7264639, -0.64098436, -0.21418235, -0.124516316, 0.25380597, - -2.284201, -1.1527557, -0.7115014, -2.688451, 0.21583177, 0.010714754, - -1.1921264, -1.5108211, -1.56572, -0.43477, -0.6270056, -2.2383606, - 0.8650854, 0.77711844, 0.9733966, -0.027329557, 1.3794827, 0.053047705, - -0.36127302, 0.62516916, -0.6912377, -1.9109699, -0.27501246, - 0.18095714, 0.05905056, 0.89987034, -2.0548537, -0.0607865, -0.8543824, - -1.5730153, -0.86143035, -0.19194494, -0.12657396, 0.6946974, - -0.45890865, 0.5169355, -0.31982672, -1.2324238, -0.7152758, - -0.53233933, 2.0024033, -1.3742703, -1.5403768, -1.9864407, 0.25601557, - -0.71143246, -0.5548127, -0.58628523, -1.2784775, 0.58989793, - -2.3218882, 0.52452755, 0.80228317, -1.9445802, 0.67221683, -0.9408184, - 0.0548862, 0.02849853, 2.27254, -0.5313886, -1.0610595, -1.7608079, - -0.97692096, 1.904742, -0.64632785, -1.5624306, -1.4456272, -0.7731647, - -0.071036845, 0.5507875, -0.169878, 1.062365, -1.4142197, -0.1701345, - -0.8837956, -1.4916977, 0.6886074, -0.63056475, -0.88286257, -1.1327627, - 1.0241679, -0.5577387, -1.1577568, -0.33456647, 2.0460405, -0.6543192, - 0.096103355, -0.8222283, -1.309864, -0.340054, -1.1969583, -0.22012655, - -0.72652453, -2.1569254, 0.21130902, 0.0094855055, 0.2729249, - 0.61545974, -1.0794398, 0.2765606, -0.11279663, -0.40602392, 2.0072994, - -0.16176826, 1.1472428, 0.269247, -2.1213098, -1.0415962, -1.2227839, - -0.032002576, -0.39989477, 1.8219199, 1.0452207, 0.06241601, -1.4177121, - -1.6908627, -1.1737324, -0.41805023, -0.07910774, -1.5900784, - -0.55406845, -1.5960582, 0.7536496, -0.38778317, -1.6423191, - -0.20841444, -0.27002048, -1.9911782, -0.66117644, 0.40499344, - -1.9292963, 0.737951, 1.1567274, -0.23835242, -0.7857783, -0.7409219, - -2.1989374, -1.4871473, 0.89703405, -1.3658657, -1.4126079, 0.48392922, - -0.759497, -0.7425783, 0.61160624, 0.20168838, 0.7453328, 0.055547282, - 2.3367743, 0.43491688, -1.3827024, -0.44161484, -0.59987426, -1.0568424, - -0.51531464, 0.80437195, -0.25490242, -1.4139162, -0.4169503, - -0.9980213, 0.93496025, -1.508838, -0.8053825, 1.5605175, -2.7063124, - -0.9413152, -0.8887155, -1.0587984, 0.062397104, -0.6079198, - -0.45934686, -0.047184944, -1.3660609, -1.0547106, 0.083556816, - -1.4062192, -0.99761015, -1.7818993, -2.2900045, -0.004359152, - -0.337757, -0.890243, -0.4595814, -1.9135921, -0.28160772, 0.63485473, - -0.2408022, -0.2780736, -1.263579, 0.32924443, -0.37892884, -0.08702282, - -0.9071417, -0.63842005, -1.6606027, 0.7545037, -3.1650865, -0.47425875, - 0.09255661, -0.020251155, -0.43348125, -0.52806604, 1.271214, - -1.0439572, -0.4046445, 0.3312051, -0.38702643, 0.42691773, -0.43870625, - -1.2142853, -0.39673224, -1.90892, -0.62973094, -0.9480653, 0.1144916, - 0.22509347, 0.7986678, -1.1921259, -0.12962563, 1.3548595, -2.4049318, - 0.33686295, -0.45967588, -0.77140534, -0.9564245, 0.8236202, -3.17947, - 0.06593864, -0.77207434, -0.09472364, -0.9824737, -0.8477266, - -1.0329641, -2.189494, -2.3190308, -0.45669442, 0.3720103, -0.097808726, - -0.9884186, 0.048601784, -0.33319432, -0.34723783, -1.757388, - -0.9961917, 0.56904936, -0.7944504, 1.4780272, 0.15770642, -0.28732336, - -1.6915976, -0.1868661, 0.42838132, -0.6785096, 0.078337364, 0.03394874, - 0.7285442, 0.6900228, -0.05631565, -0.78248626, -1.6466343, 0.16770037, - 0.7394883, -0.20076203, 1.0019015, -1.1686797, -0.80364436, -0.8461379, - 0.8653087, 2.0154243, -0.64967465, -0.9282415, 1.4578441, 0.44890708, - 2.0122793, -0.85795593, -0.7273685, -0.4720475, 0.7594228, -0.6810611, - 1.3549544, -1.3437314, -0.6366699, -0.45652017, -1.1206625, -1.0202247, - 0.55812484, 1.4848354, -1.0505396, 0.6714633, -2.303458, 0.51181954, - -1.2976762, -1.4171033, -0.7761444, -0.20170817, 0.5221349, 0.25092757, - -0.62221044, 0.09102327, -1.5370997, 0.5600511, -0.81286067, - -0.04206924, 0.2150694, 0.7221281, -0.75653565, -2.859325, -2.4214516, - 1.1754166, -2.3447812, -0.55549186, 0.5183153, 1.346723, -1.4256871, - -0.46348742, -0.09971939, -1.0994091, -0.20122267, -0.45597774, - -0.14414199, -0.8076335, 0.27539077, -1.1081309, -0.6860073, -0.7870117, - -0.5699224, -1.2936014, 0.025372505, 0.36326417, -1.377558, -1.2684239, - 0.43575385, -1.7590446, -0.800961, 0.6145393, 0.0027887262, -1.7856401, - 0.370605, -0.78513646, 0.39299026, -1.3829966, 0.25789037, -0.78638375, - -0.5080696, 1.7974383, -0.0006351061, -0.227591, -1.0441723, -1.1431588, - -0.23955096, 0.107217275, -1.140084, 1.110944, -2.4623811, -1.3105505, - 0.13056643, -0.65966177, -1.0231404, 0.07769397, -0.8236731, 0.88627756, - 1.1425754, 0.12216259, -0.6752392, -0.89358807, 0.08059031, 1.3698347, - 0.76425964, -0.5559721, -0.49106345, 1.6760808, 0.40517423, -1.2919471, - -0.94093734, -0.47168595, 0.49552965, 0.38394755, 0.83743757, - -0.3826698, -0.4731314, -0.8365644, -0.05907532, 0.1281652, 0.953864, - -2.0451326, -1.822054, 0.075204864, 1.2006997, 0.98696405, -1.5662141, - -0.8897916, -1.6942867, -0.42303628, -2.809805, -0.24885532, 1.0769542, - 0.92727834, 0.39071274, 0.50366145, -0.06286362, -0.40738234, 1.4481542, - -1.1328212, -2.0950572, -0.46660355, -0.6683325, 0.45478618, 2.1599452, - 1.0824927, 0.020807087, -1.9628392, 0.27436125, -0.75149995, -0.0884746, - 0.76271504, 0.8721679, -1.0898136, 1.1808152 - ], - "features2": [ - -2.0824318, 0.49242803, -0.98309034, -0.35699433, 0.52690834, - 0.20042261, 0.1482505, -0.39510152, -1.6195575, -0.8273159, -0.12422021, - -0.830709, -1.2860421, 2.3808339, -0.441058, -1.2026693, 0.12942198, - -0.11422872, -0.9819056, -1.1573204, 0.16142929, -1.6306319, -1.1465347, - 0.87966794, -0.01912786, -0.3173507, 0.22968265, -1.3223184, 0.5636551, - 0.6765928, 1.4751549, 0.04896476, 1.1816097, -1.4714546, -0.16626184, - -0.347399, 0.22582027, -0.36400414, 0.312927, -0.13037024, 1.4888271, - -0.75454855, -1.0101463, -0.0059329644, -0.6197376, -0.9646943, - -0.6635397, -0.09558911, 0.27897704, 0.46210802, 0.14744355, -0.6340831, - 0.32465604, 0.81815314, 1.1222492, 0.06947036, -1.0356711, -1.5082285, - -2.625427, -0.49700615, -1.0304567, -0.21495783, -0.6658006, - -0.14797528, -1.3144464, -0.6246239, -0.12098332, -0.20637652, - -0.46182653, -0.7396989, -0.20472625, -0.9325683, -1.5563182, - 0.97065157, 1.454114, -0.5979686, -0.96381783, 0.36477345, -1.4003696, - -0.143573, 0.9733446, -0.8926255, -0.05415246, -1.6957712, -0.72521544, - -1.4787129, -0.45421568, -0.029276181, -2.0179975, -0.7422092, - -1.9538553, -0.32263854, -0.79550856, -0.08495595, -0.77486944, - 1.4093993, -0.905335, -0.838525, 0.5056753, 0.3819082, -0.69312257, - -0.3704396, -0.86444306, -0.7946383, 0.65906847, -0.17953743, - -0.22771443, -0.6623883, -0.37037686, 0.5813996, -3.191951, -0.24233061, - -2.8926091, -0.62789196, -0.50729036, -0.38011894, 0.4711492, - 0.16672519, 0.7815312, 1.122738, -0.63083386, 0.09205283, -2.209386, - -1.3809159, -1.315898, -0.6211706, -1.5883368, 0.726485, -0.16862088, - 0.35060266, -0.9669999, 0.47176558, -0.7222081, 1.6016988, -0.4557353, - 0.6439825, -2.684042, -1.9242334, 0.38126957, 1.2774384, 1.9263805, - 0.5679495, 0.5933197, -0.9130781, -1.3149991, -1.7121915, -0.0888816, - -0.07831956, 0.71711296, 0.24144831, -0.5222696, -0.39717537, - -0.89843965, 1.0295297, -0.88582593, 0.0839919, 1.380072, 1.320581, - 0.116540045, -1.3299581, 2.1740181, 0.15033635, -1.5881861, 0.7445648, - -1.438239, 0.42739317, 0.15635283, -0.27196464, -1.994783, -0.6976502, - -0.31632906, -1.9404148, -1.035323, 0.68932986, -0.53203666, -0.6612782, - -0.32898876, 1.2784258, 0.5879816, -1.6961734, 0.503469, -0.39640188, - 0.35024327, 0.9426165, -1.159404, 0.6089006, 1.7429099, -0.14538719, - -0.44864845, -0.5388584, -0.7456577, -0.039904177, -0.7327911, - -1.9088776, -0.77653354, -1.1392981, 0.07641785, -0.8920582, - -0.89097315, -0.6288975, 1.3603743, -0.86212885, 0.12672542, 0.23443104, - -1.34944, -0.71944517, 0.38121122, -0.67836773, -2.2812412, 1.5409253, - -1.1363524, 0.4079293, -0.8059744, 0.008611798, -0.9650455, -0.22725433, - 0.36021173, -1.5783112, 0.79846877, -0.52325493, -0.11474241, - 0.32984918, -1.5230873, -1.304925, 0.0675132, 0.49750283, -0.7752468, - -0.8988888, -1.0707542, -1.2430677, 0.1423059, -1.1535128, -1.3471415, - -0.83018184, 0.16206723, 1.3465338, -1.3289286, -1.0350296, -1.7682297, - 0.08954029, -0.7170203, -0.72582144, -1.7943199, 0.30338013, 0.35435003, - 0.5298681, -0.84192586, 0.6517143, -0.50046295, 0.29028744, 1.1295059, - -1.5765394, -1.4798782, -1.07159, -1.7840052, -0.4668113, 0.16790861, - -1.6838764, 0.4737413, -0.47332492, -2.0040672, -1.4924828, 1.0999839, - -2.3074377, 0.16857328, -1.3266512, 0.18564686, -0.13551734, -1.726276, - 0.23093142, -0.047783244, -2.0849147, -1.3743924, 0.87377316, - -0.09247443, -1.5058576, -1.3993539, -0.5716823, 0.27992126, - -0.024850603, -0.5478157, -0.80555373, 0.58508086, -0.24653989, - -1.6632819, -1.6762515, -1.1434245, -1.8102087, -1.3363531, 0.21965146, - -0.82627, -1.6894313, -0.7989917, -0.18329984, -0.27406344, -1.6067743, - -0.43281907, 0.5217845, -0.97326905, -0.9100286, 0.20671949, 0.22920395, - -0.65114516, -1.6530876, -1.6776893, -1.382613, 0.23658434, -0.21987495, - 2.8122408, -0.81445247, 1.4862974, -0.1380355, 0.3529661, -0.4380605, - 0.22809146, -0.8655578, -2.2619884, -1.4481738, -1.99702, -0.38588232, - -0.4915238, -2.2453258, -2.2404454, -1.2708192, -0.6033713, 0.618572, - -2.021932, 0.34436685, -0.8944507, -1.7500935, -1.2411599, 1.5487369, - 0.7347846, 0.56259936, -0.6638296, -0.62121004, 0.41424742, -0.83013445, - 0.32336614, -2.1458979, -2.3651524, -1.409355, 0.66559136, -0.39472547, - -3.7733254, 0.90077347, -0.13817722, -0.9105766, -1.1613152, - -0.20949191, -0.67274714, -0.4354758, -0.9156253, -0.06770389, - -0.6079487, -0.84618324, -0.42292285, -0.52682, 0.54345673, -0.10851228, - -0.3081131, 0.965251, -1.1334606, -0.6895938, -0.78522456, -0.68139774, - -0.74449325, -1.4551013, 0.5831804, -0.060992576, 0.762285, -1.2742021, - -0.44755974, 0.37612656, 0.11851604, -2.026657, -2.7544541, 0.030874606, - -0.41378114, -0.13576205, -0.847676, -1.8465049, -1.1569896, 0.22997093, - -0.35881162, -0.9399024, 0.4281609, -0.40819, -1.1165133, 0.12226946, - -1.6743689, 0.62205464, 2.0225205, -1.2827007, 1.5838232, -0.3936767, - -1.5431755, -1.5629598, -0.08572991, -0.7115998, -0.6762669, -2.1710045, - 1.0074669, -1.5833725, 0.6868007, -0.8017708, -0.30869547, -0.8751592, - 0.37185964, 0.8246913, -0.24730802, 0.072604336, -1.1992095, -1.8617048, - 0.12038028, 0.1142097, -2.626439, -1.0482943, -2.9848883, -1.1633261, - 0.37517774, 0.6477131, -1.251471, -0.98013604, -1.2428828, -0.32627985, - -2.0032716, -1.6346283, -0.6745539, -0.88338864, -0.8808366, 0.6270727, - 0.17116041, -2.2838185, 0.3965778, 2.2908885, -0.19034089, 1.744194, - -0.6108885, -0.41258568, 0.53706807, -0.77473974, -0.38628718, - -0.38815835, -1.0268809, -0.24136682, -0.93737763, -0.10760305, - -0.69283813, 0.27358174, -0.3824303, 3.0398107, 0.4786768, 0.6787445, - -0.7886892, 0.2122628, -0.024097092, -0.1368114, -1.1903627, 0.3310225, - -1.3722903, 0.3165272, -0.18262905, -0.8793694, -0.5093005, -1.5692277, - -2.2524462, 0.49650055, 0.1138982, -2.2868054, -0.3188547, 0.8658749, - -1.1348733, -0.85299647, 0.3597907, 0.11590169, -1.552832, -0.42065936, - -0.82731456, -0.054183923, 0.37547523, -0.9326146, -0.7996662, - 1.0361378, 0.48860273, 0.83129764, -0.63971514, -0.6063788, -0.512649, - 0.2774022, -1.5900292, -1.7123113, 0.7749408, -2.9558249, 1.0349946, - -0.8075246, 0.23006125, 1.5746067, 0.5483804, -0.65083617, -0.30596375, - -1.0600824, -1.2495089, -0.95994437, -0.48045897, -0.07905713, - -1.8714224, 2.532795, -2.8990953, -0.7758643, 0.3400602, 0.2544057, - -0.8862455, -1.4462736, -0.46908313, -2.776826, -1.406373, 1.6854935, - 1.9491992, 0.23012953, -2.352451, -1.2539313, -0.10493692, 0.2967203, - -0.24434909, -0.94443643, -1.5060338, -0.47470793, 0.0720369, - 0.49438274, -1.7284997, 0.25924185, -0.6426712, -0.61596864, -1.1269151, - -0.07644799, 0.7451111, -0.10818563, -0.7169468, 0.50442326, -3.0985987, - 0.9532439, -0.17806944, 0.05633285, -0.99513197, 0.21867722, - -0.71709234, 0.10415607, -0.17949936, -1.3496803, -1.0709909, - 0.89336985, -1.2393513, -0.3785124, -1.3955107, 0.04939946, -1.0424173, - -0.55408674, -0.20062366, 0.9221916, 0.3542553, 0.08287847, -0.7879715, - -0.5786743, -1.2488289, -0.4639754, 0.37617582, -0.6564609, -1.3618346, - -1.1207542, 0.9882871, -1.7125798, -0.6031366, 0.10843854, -0.2888371, - -1.2372698, 0.5031674, -1.0067714, 0.6255207, 0.023187496, 0.402728, - -0.7450486, -0.9817211, -0.32594168, -1.6248873, -0.9647353, -0.7037375, - 1.1838887, -0.58124095, -0.97489417, -1.811316, -1.5965604, -0.64620984, - -0.4993328, -0.24243954, -0.13476092, -1.1756358, -1.2454684, - 0.89190555, 0.67087156, -1.3472028, -1.1592826, 0.8033918, -1.8303989, - -0.9731924, -1.4958696, 1.7491753, -0.53103316, -1.6957014, -0.92818725, - -1.1031785, -0.10414363, 0.9193161, 0.303764, -0.09719977, 0.45502585, - 1.7699137, 0.1722269, -0.27332845, 1.7980466, -2.3584301, 1.2429338, - -0.1602445, 1.5253394, -0.60369146, 2.2419748, -0.21340817, 0.11332126, - -0.78267676, -0.9995523, -0.011852831, -1.4214616, -0.076584995, - -0.281592, -2.4070733, 0.08795407, 1.28695, -0.36377507, -0.19667819, - -0.7722931, 0.020682061, 0.29167196, -0.98294175, 0.027685802, - 1.0061784, -0.12740281, -0.8555273, -1.4953533, 0.07642386, -2.485951, - 1.1371235, -0.9387355, -0.37311912, -0.58415854, -0.42539823, - -0.31927836, 0.1066574, -0.5989032, -0.22108425, 0.13826886, -0.8468564, - 1.3820176, 0.26097834, -1.5387831, -0.055975, 0.47501075, 0.30730224, - -0.19781077, -0.9060473, 0.69356966, -2.1821387, -2.3446043, -1.3187271, - -0.93938065, 0.36815184, 0.94428855, -0.107160434, -1.1290438, - 0.046621706, -1.069625, -1.1534727, -1.612671, 0.5295167, -0.5301025, - -0.16025028, -0.61229265, -0.39100116, 0.25877073, -0.38284785, - 0.041426882, 0.799388, 0.24018297, 0.61591023, -1.5779915, -0.6826324, - -1.5325733, 0.698553, -0.63634676, -0.6526381, -0.47363475, -0.4119026, - 0.6617142, -0.6940103, 0.15794393, -0.34942237, 1.8732743, 1.2545539, - -0.054875463, -1.1588156, -0.2904296, 1.7582332, -0.6172673, 0.272394, - -2.6527033, 1.8517865, -1.014036, -0.5433674, 1.0786471, -1.0266985, - 1.0673678, -0.72430634, -1.1164573, -0.0648342, -0.38210768, - -0.46915096, -1.5652634, 0.32654175, 0.24821192, 0.57053685, 2.6585941, - -1.0278444, -1.9376839, -0.27738392, -1.9251245, -0.897409, -1.3930507, - -1.3980033, -1.6278505, -1.3775835, 1.3084587, -0.25677705, -1.193037, - 0.72157794, 0.2581592, -0.19395454, -1.0379754, -0.2776278, 0.6397961, - 0.70288455, -1.1707056, -0.27523723, -1.3119751, -1.4233443, -1.8122907, - -0.61276835, -1.3054138, -0.24804784, -1.2262949, -0.41170672, - -0.8280833, 0.28099215, -0.7239712, -0.6680797, -0.25076458, 1.8996633, - 0.27349147, -0.08408436, 1.5799503, -0.3388245, -0.83358616, -0.8921135, - -1.310406, -0.5008291, -0.25758997, -1.0978702, 0.33576214, -2.90666, - -0.24491814, -0.56809855, -0.73047847, -0.52846706, -0.3115289, - -1.1458911, 0.6672139, -1.1550764, -2.0459783, 0.77801085, -1.0234996, - -0.60056716, 0.20294134, 0.4176051, -0.33076173, -2.4528255, - -0.83675873, -0.022900745, -0.3330592, -1.447375, 0.43715692, - -2.1879966, -1.2193522, 0.17433676, 0.8490481, -0.28737634, 1.0326992, - 1.2619313, -0.673089, 0.64857996, 0.7144972, 0.28292704, -0.65960544, - -0.7141334, 0.19687125, -1.0215526, 0.041772366, -1.126266, -0.540103, - -0.4058693, -1.344563, -1.1340446, -1.7548599, -0.62656474, 0.9500966, - 0.082338154, 0.5280088, -0.0042153075, -1.3977363, 1.5569527, 0.5987571, - -1.5785706, 3.4256892, -1.592878, -1.1734321, -1.0355127, -0.10221257, - -0.87193495, -1.2972668, -0.82813054, 0.7190294, -0.7857876, - -0.16768442, -0.8224647, -1.1912855, 1.5336618, -1.7440035, - -0.113541566, 0.19709113, -0.57546175, -0.24005584, -0.117719874, - -0.06971624, -0.6393695, -0.2832999, -0.61857885, -0.2212134, - -0.62348807, -0.32330602, 1.5014069, -0.075244635, -0.7245615, - 0.9766123, -1.6849759, -0.4526894, -0.13325846, -0.49657905, 0.31228843, - -1.1694937, 0.31871516, -0.39833054, 2.2313156, 1.3147746, -1.179346, - 1.2972293, -0.25938436, -3.5881767, -0.96392006, -1.3856792, -0.4907345, - -1.1995687, 2.357415, 1.0563617, 1.1106915, -1.7452972, 1.5414745, - -1.4383309, -1.3035722, -1.2823995, 0.09573077, 0.5297306, -0.6049664, - 2.9997056, -3.0814342, 0.29080558, -0.0778538, 0.083610654, -0.533829, - -2.563509, 0.08352723, -1.5617795, -0.20780675, 0.0037038885, - 0.62842935, 0.23235705, 0.83015, -2.1759927, 0.6712558, -0.40052953, - -0.23633, 0.85346574, -0.7868592, 0.35586593, 2.3226004, -0.40249926, - -0.34072295, -1.2764791, 0.7683577, -1.2729163, 2.0314317, 1.869305, - -0.8127934, 1.1835759, -1.0604497, -0.73183507, -0.85466075, -1.4025825, - 0.119205564, 0.99870175, 0.19577506, -0.2590148, 0.7582611, -0.41606534, - -0.47100285, 0.57809156, -1.2639201, -0.7714941, 0.35507685, -2.2126482, - -0.98733824, 0.21312153, -0.12549414, -1.9373953, -1.3926396, 0.6512244, - -0.01174178, 0.30001864, 1.5246781, -0.2712533, -0.40913096, -2.6858268, - -0.8930335, -1.4074551, 0.090850025, -3.5872138, 0.10828054, -0.532677, - 0.53000546, 0.7557559, -1.2323365, -0.5506877, -0.4010809, 2.5673892, - -1.459733, -0.5646906, -0.3814011, -0.17132385, -0.5159919, 2.484909, - 1.6808681, 0.05712095, -3.2894099, 0.68447876, 0.19260743, -0.14153102, - 0.256375, -0.5884087, 0.55227464, -0.54539675, 1.9292502, -1.5977616, - -0.23021504, 0.24217603, 0.32403982, 0.12292073, -0.5212182, - -0.76256865, 0.09851766, -0.1575901, -1.0147749, 0.20905632, -1.3608813, - -0.07070482, -1.1543617, -0.2442556, -1.3716412, -1.3097665, -1.5700781, - -0.76789117, -0.09566967, -1.8789821, 0.60700256, -1.8928053, - -0.17055276, 0.5089933, 1.5968412, -0.8381203, 2.345711, -0.8602145, - 0.6700772, -2.7382717, -0.55689144, -1.0842652, -1.6437643, 0.13047925, - -0.59439933, -0.650918, -1.3817388, -1.0414459, 0.021161132, - -0.59280217, 0.4840396, -2.6084507, 0.35937065, -0.80849826, -1.3880894, - 0.4589925, -0.53515434, -1.0424918, -0.89278734, -0.29471308, 1.3264776, - 0.1178556, -1.4939442, 1.6978499, 0.17971803, -1.1259707, -1.6639365, - -1.4332781, -0.5683265, -1.5465451, 0.3121999, -0.1939191, -1.1906013, - -0.35523844, -2.373691, -0.31263125, 0.10883744, 0.6534929, -2.39397, - -2.7231789, 0.23541552, -0.8700623, -0.12641904, 0.8234411, 1.0893211, - -0.8231485, 0.41206536, -0.067296624, 0.102466695, -0.447726, - -1.5682181, 1.6315812, -0.95625716, -1.5997324, -0.039444506, - -0.9449348, -0.0026299544, -0.05665388, -0.22265553, 0.6923359, - -2.0986133, -0.12380752, 0.8297088, 0.8306447, 0.37931383, -1.0542631, - -0.6637494, -1.3817005, 0.519319, -2.406589, -0.37019813, 0.86231863, - -0.43414766, -0.5895284, -1.8490424, -0.16145529, 0.5560893, - -0.63487494, -1.4634273, 1.3136601, -0.9780664, -1.7558479, 0.6277909, - 0.8195926, -0.75194454, -0.8629441, -0.7161474, 1.2899107, -1.4951675, - 2.2024434, -1.773519, -1.7352928, 0.05063758, 0.687744, -1.3832273, - 0.50933933, -1.6014829, 0.08429744, 0.19967017, -0.27876112, - -0.28193885, -2.6530855, 0.7681575, -0.7195214, -1.8512584, -0.55452394, - -0.14831477, 0.70568895, -0.44105476, -1.514433, 0.14627217, -1.6368029, - 0.67106044, -0.6864846, -2.2138886, -0.5058803, -2.1345618, 0.21803956, - -0.8795652, 0.3890228, -2.5251558, 1.2081064, -0.9987272, 1.7403104, - -0.58469254, -1.3958192, -1.4404666, -0.81110275, 2.1985157, -0.8877561, - 0.8612999, 0.14919385, -1.0698147, -2.5165303, -1.1993355, -0.8751468, - -1.2783726, -0.86763173, -0.67081684, -1.6743973, -0.75682384, - -0.41674337, 0.9046973, -0.27159032, 0.68497455, -1.6886041, -1.201369, - -0.2081998, -0.099648856, -0.5505812, -1.3085896, -0.4398326, - -1.2936068, -1.8204836, -1.4248179, -0.37780118, -0.1943097, 0.25032, - -1.9348472, -0.8306075, -1.937297, -0.0774736, -1.8667626, -0.06911042, - 0.38974023, -1.4717938, -2.5076995, -0.2049651, -2.4389794, -0.13735707, - -2.2596169, 0.79368556, -0.62486744, -2.5960305, -1.1390489, -0.9604412, - -0.23238394, -1.1465422, 0.16799939, -0.4606559, -0.73550266, - -0.30011278, -1.1803725, 0.020231087, 0.6328498, -0.24943918, -1.195933, - -0.7831198, -0.60961604, -0.6153934, -0.38157064, -0.48484898, - 1.0753925, 0.2773559, -0.469199, -0.38335326, -0.091963485, -1.5113522, - -0.320775, -1.1899333, 0.96894574, 0.045962382, -0.6946389, 0.576988, - 0.24411887, -0.49666038, -0.36783573, -0.8133877, 0.6230389, -0.2498559, - 1.1052496, -0.5337359, -1.5292389, 0.7912171, -1.0918324, 0.62352586, - 0.06901058, 0.2088457, -1.5671796, 3.0866897, -0.01695424, -0.44887733, - 0.65072584, -0.630341, -0.32450327, -0.3404015, -0.8493242, 0.20707741, - -0.75617826, 0.17128518, -0.4588284, -0.59847087, 0.7752928, 0.25384843, - 0.04226324, -0.07315079, -1.4872023, -0.16213915, -1.5619407, - 0.24236679, 0.70804936, 0.14926462, -1.1156344, -0.27228433, -1.342791, - -0.84494627, -1.8262299, 2.2515018, -1.295295, -0.6731637, -1.1579604, - -0.63133734, 0.87658256, -1.7238069, 0.30690435, 0.06722217, -1.9760004, - -0.43742427, 0.12505373, -1.5109664, 0.59649366, -0.04188871, - -0.37211767, -1.3599591, 1.2781578, 1.7050006, 1.3499405, -0.02464417, - 0.03828203, -0.5115087, 0.11559634, -0.044332214, -0.17834897, - -1.8092501, -0.039550688, -0.38311648, 0.043710504, -0.8112437, - -1.0209221, -1.4078225, -0.7995014, -0.29483646, -2.241695, -1.8181862, - 0.09103761, -1.6957003, 0.079641, -1.7539036, -1.521994, -1.0976598, - -1.3526657, -0.8452695, -1.5591017, -0.6016989, -0.9458445, -0.82517195, - -0.7278552, -0.22995497, -0.66352546, -0.92662936, 1.6424026, 0.8222917, - 0.29851118, -0.29061857, 0.16645724, -1.0791787, -1.1567367, -1.7494189, - -1.5957099, 0.29378498, -1.7813277, -0.9923682, -1.5719724, 2.4881546, - 1.6372019, -1.2168896, -1.1113795, -0.9689398, -0.6830322, -0.9845579, - -0.9540976, -0.53643394, -0.29239705, 1.1610773, 0.70227426, 0.65866303, - -0.66160166, -0.6261329, -0.87307787, 1.2812812, -0.45583695, - -0.8246263, 1.1885598, -0.649139, -1.435495, -1.5902178, 1.2063713, - 0.6755814, -1.8268161, 0.8607629, -1.7365683, 1.3762858, -0.16872151, - -0.9814805, -0.52072805, -0.42268285, -0.4028252, -1.268753, - -0.54251343, 1.0436268, -0.34175602, -0.07928416, -1.5990301, - 0.015737768, -0.5965868, -0.5910563, -0.70064104, -0.3466954, - -1.2649667, -1.087322, 0.12738246, 0.037118375, 0.100143716, 0.24029438, - -0.49033323, 0.30175686, -0.93554586, -0.35443237, -0.7660782, - 0.19685422, -0.27827087, -0.14945856, -1.1496763, -0.3116292, - -0.91330665, -0.2295056, -1.66744, -1.5845903, -2.070694, -1.6932756, - -1.1250643, -0.26514426, -0.051398434, -0.4975735, -1.995256, - 0.11682139, 1.5079712, -0.44066948, -1.6176913, -1.5394126, -0.23165545, - -2.6248817, 0.31829494, 0.009982862, -1.3711458, -0.33277717, - -2.0828972, 0.5509894, 2.1240757, -1.2717572, -1.5370529, 0.44920805, - 0.57816064, -0.67561525, -2.1830168, 0.16754353, 0.811498, -0.96451724, - 0.015337765, -0.50274765, 2.1921623, -0.36424497, 1.0643901, 0.24750249, - -0.7437641, -0.46682468, -0.7707965, -1.73648, -0.38172513, -2.1504347, - 1.423549, -1.1100752, -0.55927354, 0.6227164, -0.15828189, -1.3100677, - -0.905394, -0.83548784, -1.7441002, 0.7744917, -0.5134825, 1.676649, - 0.49179816, -0.59614223, -1.8477442, -0.9932163, -0.47700316, - -1.1878258, -0.766499, -0.85551697, -0.20102367, -0.13818897, -0.739455, - -0.6146147, -1.1338061, -1.7171738, 1.5855994, -0.23710322, 2.2304475, - 0.4356034, 1.8920954, -0.017111529, -0.4129637, -1.3710228, 0.48914105, - -0.80132335, -0.78876626, -1.3621161, 1.0157378, -0.9418438, 0.33742556, - -0.022956442, -1.6024442, 1.1253867, -1.3789071, -0.98002064, - -0.34393665, 0.13900355, -2.3293767, 1.0017967, -0.18182099, 0.6434192, - -0.118491225, -0.6803919, -0.32345408, -2.1718204, -1.9752755, - -1.3338673, -0.6723642, -1.7395993, 0.17374855, 2.7961688, 0.3089032, - -0.6187182, -0.613358, 0.021686967, -1.0491362, 0.22770329, -1.3801502, - -0.28305745, 0.7146666, 0.6395922, 0.50669146, 0.2549018, -1.9627417, - -1.1783023, -0.07169773, -0.7333286, 0.25958297, -0.3945283, -0.7319279, - -0.75335467, -0.6691835, 0.14543542, 0.41431093, 0.35087863, -0.5406748, - 1.2006774, -1.1019027, -0.52014977, 0.49288255, 0.41975603, -0.8950761, - -1.6593188, 0.9457204, -1.449043, -2.2591486, 0.9902066, 2.4064777, - 0.5752892, -0.11881012, 0.26480848, -2.0880454, 0.6578132, -1.0865977, - 0.6089568, 0.27985746, -0.3280443, -1.3038958, -2.0122542, -0.70697296, - 0.86113703, -0.45940557, -0.8486993, 1.3888872, -2.0860794, -0.1110313, - -0.77570504, -2.119776, -0.5374638, 0.33590814, -0.984882, 1.4386137, - 0.21805821, -1.0111432, -1.4417278, -0.5381985, 0.4858947, 2.305736, - -0.44609427, -1.396824, 1.6866791, -2.1921716, -0.053696, -1.2971926, - -2.0318496, -0.619563, 0.077696286, 0.028303057, -1.151993, -0.48173714, - 1.0056844, -1.4776536, -0.06448318, 0.619869, 1.0471759, -0.82566756, - 1.7244908, -0.060068354, -0.88342386, -2.1064692, -1.520662, -1.267578, - 0.07096022, 0.22822201, -1.4021844, -0.056750722, -1.44014, 1.727894, - 0.008497134, 0.6565398, 1.3212249, -0.42108682, -1.0231869, -1.7906697, - -0.92529535, -1.270994, -0.16942641, 0.62278205, -0.8547822, 0.1648492, - 0.10096084, -0.59745425, 0.5550012, 0.8313283, -1.3450521, -1.4374623, - -2.0788252, -0.28492415, -0.7288545, 0.12274808, -1.8672734, 1.7649145, - -0.9971763, -0.7269685, 1.1357927, 0.7427502, -0.762331, 0.84028035, - -2.0754986, -1.3836443, 0.81158704, -1.433625, -0.7224343, 0.40452304, - -0.17773987, 0.22905767, -0.47851124, -1.1847874, -0.22478421, - -0.7718915, -1.550502, -1.0688937, -0.4128899, -1.0560342, -0.8482777, - -0.92517805, -1.4387519, -0.84789383, -0.7645454, 0.8308878, - 0.092566624, -0.50745916, -1.5710979, 1.1152006, 0.058037795, - -0.7510773, -1.3537456, 1.2741318, 0.87390804, 0.49281353, -0.68562454, - -0.2739246, -1.0269446, -1.6269151, -1.6758728, -0.51670724, - -0.49149907, 1.3510333, 0.5782317, 2.17026, -0.706469, 1.1373149, - -1.817574, -1.695001, -2.9646838, -0.030153576, -1.3148553, 0.9775046, - -1.330971, -1.2466451, -1.76421, -1.7351663, -0.8197008, 0.6084721, - -0.16295806, 1.3482997, -0.7192755, -0.9991085, -0.4711892, -1.507205, - 0.41795757, -1.2247508, 1.2108573, 0.39722478, -1.9860866, -2.7644696, - 0.6996774, -1.7664783, -1.2683456, 0.10789791, 0.42366356, 1.0253675, - -1.3677642, 1.0118676, -1.3453398, -0.64332116, -1.220471, 1.8572727, - 0.82759994, -0.3209261, -1.6230831, -1.3264153, -0.3317417, -0.34324023, - 0.10506643, 1.2027625, -2.0357084, -0.74810445, 0.0064300187, - -0.44203112, -0.822362, -1.0525253, -0.094317116, -0.84498984, - 0.62242883, -1.8811263, -1.537302, -1.2932812, -3.0072045, -0.17188527, - -1.4141945, -1.607114, 1.1136491, 1.2684981, -1.164097, -1.4302326, - 0.16154319, -1.3567265, -0.5801848, -0.19817814, -0.66666114, 1.5973558, - -0.11912245, -1.2720673, -0.9337218, -0.6075348, -0.2854587, 1.1553587, - -1.5291463, -0.75676936, -2.012375, -2.8894277, 1.0518641, -1.1285999, - -2.3539302, 0.0761437, 0.18565598, -0.0263443, 1.1363734, -0.6169556, - 0.89816993, -1.7809261, -0.22766392, -1.0185044, -3.1774573, -1.0118077, - -0.31806943, 1.5369573, 0.39958602, -0.3277106, 0.2452963, -1.7781315, - -0.094625294, -1.0728, 0.35367066, -0.43328577, -0.30124295, 2.177542, - -0.008522399, 0.4885152, -0.87644446, 0.15563814, 0.41380596, - -1.2325488, -1.0202348, -1.4482118, -0.11034926, -0.9597117, 1.2747878, - 0.36520556, -1.132877, -1.481925, 1.4620204, 0.75843537, 0.45686734, - -2.6660275, -1.3284155, 0.12699845, 1.7909071, -0.609577, 1.8060448, - -0.16437691, 0.98606664, -1.2642186, 0.3780982, -0.8469405, -0.12058233, - 0.12360962, -1.2007616, 1.2691177, -1.3017595, -1.3145957, -0.65553296, - -0.26716837, -0.09332399, -0.72936326, -1.0802946, -1.116981, -2.039407, - 1.5744518, -1.8167995, -1.0308295, 0.7421917, -0.2738474, -0.7897668, - -0.8573755, -0.6255468, -1.8905144, -1.4356027, 1.2241651, -0.36843053, - -0.7480256, -1.1493193, -0.29164457, 0.4706309, 0.68773776, -1.5167449, - 0.3907024, -0.24168912, 1.6715249, -0.9609076, 0.1653615, -0.9913794, - -1.1922053, 0.2284791, -0.82286847, 0.24293365, -0.41886467, - -0.026254203, -1.7449152, -1.2579546, -0.07319147, -1.7495351, - -0.60603344, -0.73308504, -0.7751124, 0.29431087, 1.1637101, -2.0598514, - -1.6322024, -0.88614684, -0.3817708, 0.45488378, -2.2572317, 0.42824718, - -1.6465979, 0.63071704, -1.3452188, -1.3263477, -0.11649916, - -0.50505584, 0.18606053, -0.78741616, -0.84815943, -1.1008749, - -1.4908595, -2.0345154, 0.5199064, 1.3803148, -1.2102054, 0.46226415, - 1.1197971, -2.7623048, -0.44916707, 0.026996069, -1.0707941, 0.7113429, - -0.71119845, 0.19142352, -0.9375305, 1.0473827, -0.74534327, 1.0845386, - 0.5955951, 0.49611184, -2.52004, -0.116156995, -0.08894157, -0.96970373, - -0.21621197, 0.61435175, 1.3135226, -1.530153, -1.5857521, 0.0149376355, - 0.046694513, -0.8368592, -1.0228043, 1.3196276, 0.15782145, -1.0661513, - -0.22395377, 0.94927114, -0.765684, 0.7832747, -0.8396429, -0.54251647, - -1.5071317, -0.050858155, -1.4809717, -0.23724446, -0.30570528, - 0.38298857, -0.6684436, 0.026768468, -1.2123579, -1.9526913, -1.2099622, - -0.31766456, 0.3199293, 1.384423, -2.368903, 1.0256263, -0.5872701, - 0.9519723, 0.8823785, 0.5159651, -1.1996591, -0.7205432, -0.31725505, - -0.6314284, 0.89817554, 1.5831401, -0.6560622, -0.49565423, -0.6346911, - -0.65828216, 0.6945772, 1.1709483, 0.31551945, 0.68976706, -0.5354973, - -0.107759275, -1.2532538, -0.6992594, -0.023105241, -1.1772938, - 0.4498822, -0.97509265, -0.62812734, -0.67789286, 0.5905831, -0.7675889, - -0.8725961, -2.3860912, -0.8400395, 1.1113913, -1.7722996, -1.8602165, - -1.650426, 1.6625367, 0.09332536, -0.4738228, -1.4746116, 1.0927534, - -0.343086, -0.1842784, -1.2399471, -1.7416247, 1.0450153, 1.2273123, - 0.68864316, -2.1321378, 0.22060087, -0.610573, 1.0992445, -0.45720914, - -0.57926667, 0.83504593, -1.4952842, -2.1512384, -0.8870253, 1.3128046, - -0.047532305, -1.377607, 0.20973888, -0.70001704, 0.39966187, - 0.60389507, -0.34968162, 1.2353734, 0.5098956, -2.335488, -1.0608078, - 1.8702264, -2.1875236, -1.6271437, -1.6914326, -1.3882788, 0.8181823, - 0.30810815, -1.028166, -0.83150387, -0.85605806, -0.037341908, - -1.7522969, -1.1375312, -1.0753205, 0.38806427, 0.6950298, -0.40337873, - -0.40566403, -0.15207374, -0.7169347, -2.2639184, -0.4913179, - 0.037267994, -0.4690758, 0.04481387, -0.39179918, -0.85818046, - 0.96695465, -0.3498225, -1.8178414, 1.2776102, -0.863791, 1.034992, - 0.52248687, -1.8108417, -0.10659397, -0.9966075, 2.974671, -0.36794522, - 0.9072757, 1.1000146, 1.4409981, 2.3752787, 0.06484042, 0.5547297, - 0.47650826, 0.42275316, 0.44585764, -1.8886255, -1.6484051, -1.6941541, - 0.84388405, -1.5571483, -0.7466782, -0.093334615 - ], - "reducedFeatures": [ - -0.011695965, -0.10275102, -0.050781325, -0.036876474, -0.03151841, - -0.07481998, -0.048119888, 0.026401471, -0.030800149, 0.0009306308, - -0.020494623, 0.041565254, -0.021892939, -0.0067540533, -0.025517832, - -0.039013043, -0.017250804, 0.0144299, -0.029088898, 0.028049123, - -0.04191035, -0.045249697, -0.0033477482, -0.0018599388, 0.027003856, - -0.022252671, 0.022989599, 0.014322482, -0.043661226, -0.016956914, - -0.017767629, -0.016952429, -0.040400863, -0.024837095, 0.015767481, - -0.029578924, 0.0020634276, 0.04070117, -0.0349294, -0.026330438, - -0.012419119, -0.04083986, -0.015105039, 0.021941038, -0.046857357, - 0.0036012458, 0.043519862, 0.014867642, -0.048953176, -0.052819762, - -0.0031982723, 0.005889388, 0.010559042, 0.0012632279, -0.024658214, - -0.06731222, -0.0031510137, -0.04271779, -0.01601815, -0.017572684, - 0.005693812, -0.013947529, 0.030986274, -0.021943407, 0.008278455, - -0.032687586, -0.034475654, -0.05608841, -0.010406075, -0.020359956, - 0.011944218, -0.02264416, -0.050877202, 0.018655589, -0.012831295, - -0.0023388448, -0.035596035, -0.042068504, 0.006460504, -0.014087619, - 0.035265915, -0.015745947, -0.002354333, -0.010277434, 0.015115204, - 0.0057063117, -0.030208867, -0.01545137, 0.03418897, -0.03452891, - -0.043820687, 0.016084263, -0.020769976, 0.013089037, 0.035473183, - -0.035780855, -0.040655654, -0.008533834, -0.0070263105, 0.0077209766, - -0.030676665, 0.031568807, 0.032782998, -0.036322575, -0.012071636, - 0.0023061994, 0.011471494, 0.0013608696, 0.051822945, -0.07371652, - -0.024617983, -0.011063738, -0.015854865, 0.016651759, -0.03236295, - 0.01097593, -0.01306559, -0.07812311, -0.00089786807, -0.06183029, - 0.012788271, 0.044938978, 0.034287173, -0.017855389, -0.049305137, - -0.003021611, 0.030444186, -0.008955015, -0.0015997823, -0.011219883, - -0.0081684105, -0.050456867, -0.0065330737, -0.020257603, -0.028288921, - -0.010288029, -0.0004204653, -0.07013673, -0.022342866, -0.015027198, - -0.056440778, -0.020720366, 0.009792851, -0.016313048, -0.020238064, - -0.03310368, -0.016165279, -0.009338653, -0.06306206, -0.015179551, - -0.052583594, -0.00993169, -0.037603438, -0.028538475, 0.034486454, - -0.0058586122, -0.017519223, -0.011434013, -0.047524266, -0.012293382, - -0.021885851, 0.020254754, -0.013763695, 0.028143166, -0.01640784, - -0.051871795, -0.016688112, 0.0066150026, -0.030568253, 0.025334371, - -0.04064123, -0.055215, -0.05548478, -0.035361156, 0.013149296, - 0.0027257893, -0.0025298668, 0.010792831, 0.050448503, -0.06306655, - 0.0067159412, 0.018150924, 0.011428473, -0.008369857, -0.008826732, - -0.030545833, -0.021187497, -0.03488395, -0.034823634, -0.022238115, - 0.009713752, 0.0264792, -0.027762707, -0.02970168, -0.003677683, - 0.015159656, 0.05854973, 0.06288807, 0.019195573, -0.006845292, - 0.00774645, -0.0054817977, -0.031077113, -0.027443111, -0.01668797, - -0.011648208, -0.013613042, 0.0025083213, 0.008669387, 0.0032230162, - 0.016541703, -0.036310535, -0.040880322, -0.051111635, 0.00013360147, - -0.01248364, 0.07255045, -0.001621524, -0.060239945, -0.0023150365, - -0.017291324, 0.0009371309, -0.009921333, -0.04938424, 0.0023910545, - -0.06177663, -0.038502708, 0.013408435, 0.007735461, -0.012145473, - 0.020464022, -0.033968814, 0.012107489, 0.0065441956, -0.04070704, - 0.010645416, -0.032557834, 0.015911829, -0.03797478, 0.0010496014, - -0.0042866697, -0.028962556, -0.012936529, -0.031217877, 0.0060463264, - 0.029984977, -0.017418569, -0.013616927, 0.007045193, -0.03186052, - -0.036666606, 0.00620606, 0.02297609, 0.01698328, -0.042196862, - -0.040401287, -0.0153968, 0.0023218917, -0.021223372, 0.030058168, - -0.05629979, -0.022884317, -0.0039928914, -0.0012908743, -0.030270673, - -0.0026296326, -0.015069929, -0.016139023, 0.0021786115, 0.022375807, - 0.0501742, -0.08333231, -0.020121463, -0.027328812, -0.011938299, - 0.0038449713, -0.040598404, -0.049932677, 0.018942693, -0.07191145, - -0.030516881, -0.015168108, 0.014069328, -0.056779217, 0.0150496075, - 0.015954131, 0.00065638043, -0.043122567, -0.012143497, 0.009329697, - 0.016813492, 0.0062833447, -0.00036808036, 0.0063314573, -0.0706193, - -0.014712724, 0.0058301194, -0.014449966, 0.07050461, -0.0039220154, - 0.05347705, -0.066903226, -0.03948579, 0.030767974, -0.03363563, - -0.06523207, 0.013525709, 0.0068145897, -0.04068548, 0.036167324, - 0.040640656, -0.020090623, -0.013784794, 0.022016546, 0.06355495, - 0.015022764, 0.005661098, 0.002534861, 0.0052700536, 0.019105364, - -0.00520578, -0.0034082658, -0.013483377, 0.044474665, -0.04936045, - -0.08839369, -0.0021369914, -0.031461895, -0.029620329, -0.051331624, - 0.014255124, -0.030669775, -0.023480067, 0.0017211118, 0.008569752, - 0.020292044, 0.022999352, 0.065594874, -0.023855766, -0.048280187, - 0.049780525, -0.0138269225, 0.008147091, 0.03349113, -0.026218463, - -0.013378221, 0.043351337, -0.054828383, 0.010213667, -0.015632104, - -0.027614558, 0.034062844, 0.015101699, 0.0026217217, 0.025614075, - -0.015465675, -0.02557672, 0.024440374, -0.015605823, -0.029104808, - -0.035656676, -0.0075444286, -0.014177223, -0.012676853, -0.036786743, - 0.040812816, -0.032839105, -0.018773032, -0.05088793, -0.015540588, - -0.007809626, 0.04384011, -0.02679171, -0.009069979, 0.06547731, - 0.018497678, -0.030683972, -0.045584805, -0.012280422, -0.013710023, - 0.0025685832, -0.019447835, 0.03211824, -0.012857708, 0.034779083, - 0.025383482, 0.041824024, 0.009034491, -0.0019815725, 0.01857236, - 0.027329346, -0.040282656, -0.00455463, 0.0030953477, -0.06251913, - -0.049852334, 0.015253403, 0.0057845707, -0.014850683, -0.020134386, - -0.016645288, -0.048178222, 0.0010540158, -0.015057025, -0.029824896, - 0.008941819, -0.012759357, -0.0072916127, -0.044868913, -0.0017907716, - 0.01036483, 0.011499759, 0.017354293, 0.004714543, 0.006166671, - -0.007570367, -0.0028302218, -0.012996907, 0.023936853, -0.0049588904, - -0.028698904, 0.005461363, 0.025701882, -0.019841908, -0.0046563093, - -0.022969572, -0.057615995, -0.0067199045, 0.03164767, -0.012042694, - 0.0058584376, 0.010539831, -0.014585031, 0.0022545413, 0.007832662, - -0.00029619064, -0.0042725266, -0.0020236499, -0.018953208, - -0.021010416, -0.06559282, -0.023233376, -0.020930955, 0.0051105046, - -0.04635632, 0.045942683, -0.042269453, -0.03555104, -0.0019183836, - 0.0063622897, -0.046637118, -0.059906673, -0.019727662, -0.0002668177, - -0.027687132, -0.026263095, 0.026342284, 0.00812403, -0.05397244, - 0.038895056, -0.028965944, -0.055701826, -0.011438818, 0.010112778, - -0.036790267, 0.019345082, 0.02187801, -0.046418075, -0.030487282, - 0.01685486, -0.042503946, -0.040039632, 0.004483087, 0.017133404, - -0.026118768, -0.027739333, -0.032205142, 0.008195004, -0.015034855, - 0.02479716, -0.031996105, -0.013056056, 0.013168306, 0.062050525, - -0.020136308, -0.039129097, 0.028295917, 0.037969783, 0.01733095, - -0.02604773, -0.052581083, -0.0139495, -0.034367114, 0.0071471473, - -0.019674435, -0.04824766, -0.011698923, -0.002756685, -0.014106869, - -0.023924109, -0.016181987, -0.061041195, -0.03332933, -0.023532618, - 0.018354071, -0.03226152, 0.038324803, 0.015605716, -0.018172355, - 0.0033426348, -0.023946613, 0.014025156, -0.008388399, 0.010762478, - -0.07139553, 0.020978272, 0.025996594, -0.022808926, -0.039830618, - 0.011456538, 0.046499047, -0.036445662, 0.006645947, -0.007828445, - -0.005561721, 0.016542608, 0.010083996, -0.07150898, 0.03625027, - -0.023666846, -0.012974522, 0.0019259163, -0.026855467, -0.014729805, - 0.0058958754, -0.009324714, -0.035100378, -0.06782821, -0.026763551, - -0.013582789, -0.0031956078, 0.0061396416, -0.021209024, -0.0057172724, - -0.023670629, 0.029800788, -0.013332415, 0.029070994, -0.018302241, - -0.019153869, 0.039653618, 0.0014062487, -0.027291577, 0.020284444, - -0.013215546, 0.02868004, 0.010414023, -0.014475543, 0.0021146457, - -0.05679092, 0.009426806, -0.033222422, -0.008396565, -0.035935055, - 0.014296976, 0.030130025, 0.0073037418, -0.018439643, -0.02800688, - -0.0155059965, -0.009370555, -0.024031503, -0.024152448, 0.018352058, - -0.022598282, 0.003565941, 0.004365583, -0.040346816, -0.012120404, - -0.023107816, 0.015873265, -0.030509958, -0.020471267, 0.023411771, - -0.069028765, -0.04715649, -0.02177395, -0.009275772, 0.006326818, - 0.006063919, -0.023385506, -0.017446812, 0.054402158, 0.008089326, - -0.0010063109, 0.0008534447, -0.007943744, 0.03331452, -0.07002694, - 0.020157212, -0.046145596, 0.01660124, -0.009803406, 0.0017800689, - 0.0024910816, -0.051368214, -0.07844374, -0.065221585, -0.012371172, - -0.044610664, -0.033856273, -0.019383268, -0.0072679385, -0.008552547, - -0.04494505, -0.010540169, 0.018963864, -0.008963282, -0.012063475, - -0.012347792, -0.057439644, -0.0025941276, -0.0046216347, 0.042667203, - -0.01558161, -0.019809932, -0.033735182, 0.036372576, -0.011972539, - 0.005935155, -0.0125754615, -0.012091289, -0.02082442, -0.005430499, - -0.033982545, -0.009180633, 0.0012830663, -0.016494447, -0.022621209, - -0.014641955, -0.058828328, 0.0074357917, -0.025251348, -0.06161891, - -0.022160217, 0.06916579, -0.04809667, -0.0101024965, -0.036007483, - -0.053513005, 0.060238745, -0.015400493, -0.043285806, -0.08392995, - -0.0056843795, 0.017169267, -0.026300784, 0.013309432, -0.0015501593, - 0.009685873, 0.00478349, -0.04475856, -0.060054418, -0.022200685, - 0.006445048, -0.016495263, 0.060148846, -0.029659407, 0.0027604927, - 0.051931188, 0.00082017476, 0.026237011, -0.030044649, -0.00041565904, - -0.036152884, -0.0043536588, -0.0466024, -0.029812714, 0.0068193246, - -0.0042717834, -0.009831171, -0.0002952154, -0.020920057, 0.0055930302, - 0.0011300823, 0.0169002, -0.03801218, -0.0031498945, -0.038110822, - -0.04485794, 0.0011679063, 0.030121656, -0.02194861, -0.041394666, - -0.0567622, 0.007907522, -0.009457038, -0.04127187, 0.028516183, - -0.016913164, -0.014252452, 0.00028171242, -0.012817163, 0.004863671, - 0.0018516561, -0.017522255, -0.00042373894, 0.005124113, -0.028453486, - 0.027569355, -0.015986923, -0.0044522933, -0.02684759, -0.037933644, - -0.015614471, -0.013691926, -0.026101386, 0.03245504, -0.054080147, - 0.01857536, 0.0029082173, -0.006650727, 0.027172986, 0.0048558265, - 0.0219262, 0.021066044, -0.02598689, 0.018933522, -0.030639036, - 0.001864212, -0.0049779983, -0.031359907, -0.022151038, 0.019861419, - 0.048205357, -0.06592404, 0.043570038, -0.033795577, -0.0043622465, - -0.013038617, -0.024102114, -0.027091505, -0.030140217, -0.043415267, - 0.020780673, 0.03174736, -0.033091247, -0.02373884, -0.03587939, - -0.028338932, 0.016685488, -0.043048393, 0.034790315, -0.008554504, - 0.012976413, 0.029710753, -0.031047212, 0.011027447, -0.027398087, - -0.08374066, -0.026588865, -0.052594792, -0.045459524, 0.031662077, - -0.0383781, 0.014194162, 0.01886982, -0.018894339, -0.032636326, - -0.0004624415, -0.050900687, -0.038019504, 0.034873184, -0.021025727, - -0.042515073, -0.03081129, -0.04289684, -0.06626513, -0.002645168, - 0.043260075, -0.048477285, -0.02609513, 0.030874433, 0.004803969, - 0.029918289, -0.058848523, -0.057293598, 0.0026211117, -0.02927413, - -0.035168257, -0.06544672, 0.040613208, -0.0252414, -0.073998526, - 0.004093007, -0.06874402, -0.039309014, -0.11678982, -0.0055295955, - -0.03335984, 0.060258888, 0.013160845, 0.008333331, -0.0033249888, - 0.019915126, 0.026205365, -0.033316445, -0.009063109, -0.07716039, - 0.010356829, -0.032589547, -0.047054198, -0.054212514, -0.033972662, - 0.034951087, -0.037909273, 0.017151522, 0.028425286, -0.011455618, - -0.024747478, 0.01927748, -0.02893781, 0.020443065, -0.04710527, - -0.010066052, -0.018286373, 0.0005643013, -0.03932256, -0.027881522, - -0.05254024, -0.0231818, -0.07786135, -0.021203885, 0.017104298, - -0.0027406113, -0.02234807, -0.031218307, -0.02543431, -0.015499992, - -0.021872185, -0.055956114, -0.029493507, -0.018474398, -0.03656133, - -0.003911065, -0.020060662, 0.0457925, -0.060040638, -0.058232713, - -0.02635015, -0.03316509, -0.006208896, -0.013604191, -0.024217017, - -0.029420238, -0.002246007, 0.05383959, 0.0036689756, -0.044051234, - -0.027439436, -0.031327248, -0.024564693, -0.10294153, 0.04011029, - -0.0005239054, 0.0059124017, -0.024779692, -0.040265873, -0.06300336, - -0.012952792, -0.07108371, -0.008536096, 0.032154854, -0.046705186, - -0.0006543698, -0.016971981, -0.014521839, -0.04081137, -0.017964039, - -0.0036360675, -0.039265733, 0.029049829, -0.010860859, -0.015050689, - -0.048317935, 0.0025382887, -0.035935443, 0.025280843, -0.0027776815, - -0.015953498, -0.0030511671, -0.0033729011, -0.008036893, -0.018244324, - -0.02581108, 0.02978987, -0.04821531, 0.013942748, 0.054193255, - -0.029814199, 0.008437962, -0.051797483, -0.032467082, -0.016144577, - -0.02038433, -0.007262414, -0.0047668596, 0.008929725, 0.03290197, - -0.016834008, -0.056920785, 0.017626211, -0.06858853, -0.01663267, - -0.0016849461, 0.03118535, -0.022937182, 0.003855058, 0.031605337, - -0.014085377, -0.029501183, -0.01023703, -0.025928695, -0.049463198, - 0.025361108, -0.015264291, -0.025445929, -0.016075939, -0.04588436, - -0.0047372887, -0.020892706, 0.019745354, 4.715907e-5, 0.017172303, - -0.058907088, -0.031165127, -0.02897564, -0.0034218756, -0.02149673, - -0.0046212375, -0.009473075, -0.027229326, -0.050092492, -0.004037852, - -0.022362154, 0.01906654, 0.036953013, -0.0023068234, 0.0056815473, - 0.025383933, -0.012377917, -0.03443292, -0.011147047, -0.06034679, - -0.019342441, 0.050621513, 0.004489138, -0.046619073, -0.054145556, - -0.0276903, 0.004996695, -0.038791902, -0.0077620638, 0.017590731, - 0.020607002, 0.022843886, -0.03758074, -0.020250274, -0.009511959, - -0.0017121405, 0.003593905, -0.028621733, 0.01545125, 0.019274537, - -0.07495883, 0.014590421, -0.026182413, 0.044371814, 0.024900876, - -0.009184341, 0.0015462091, -0.032624837, 0.008875765, -0.011985843, - -0.011819254, 0.007955198, 0.015731579, 0.059700727, -0.020059904, - 0.0015018152, -0.020311253, -0.08021, -0.020940736, -0.058037136, - 0.00115828, 0.016583137, -0.036698785, 0.050530765, -0.07794613, - 0.023419198, 0.010045499, -0.050777916, -0.06524809, 0.025291238, - -0.058015577, 0.005474715, -0.034743235, -0.016077498, -0.08122182, - 0.004803861, 0.04644392, 0.0053394465, 0.011773131, -0.013451537, - 0.021691034, -0.051213745, -0.0045199157, 0.01683967, 0.017367078, - -0.015486054, -0.039649133, -0.009910447, -0.0034196295, -0.0011484065 + "features": [ + -0.005557186, + -0.052282028, + -0.024916574, + -0.020467049, + -0.017004907, + -0.037460525, + -0.027472593, + 0.011829189, + -0.015406661, + 0.0014115911, + -0.010701343, + 0.022297142, + -0.011580961, + -0.0034264, + -0.013615629, + -0.01860769, + -0.009052483, + 0.007937422, + -0.015802298, + 0.014765386, + -0.020007879, + -0.023985796, + -0.0009478296, + -0.0012159022, + 0.013805441, + -0.011833133, + 0.012824416, + 0.005984761, + -0.022912776, + -0.008061438, + -0.009773934, + -0.0069469265, + -0.020602554, + -0.011604283, + 0.0072550797, + -0.013702761, + 0.00033045848, + 0.02215687, + -0.01944791, + -0.013001855, + -0.0052398513, + -0.022113655, + -0.006444355, + 0.011396066, + -0.025169052, + 0.0009097294, + 0.02102028, + 0.0061794436, + -0.025482582, + -0.02811692, + -0.002630309, + 0.001606401, + 0.0034144695, + 0.0008907498, + -0.016344681, + -0.034928832, + -0.0010278814, + -0.02072789, + -0.0071976297, + -0.010357264, + 0.00141507, + -0.009299128, + 0.015091084, + -0.011985544, + 0.0062901326, + -0.016035832, + -0.018187504, + -0.028411783, + -0.0046835197, + -0.011708203, + 0.00541184, + -0.009699995, + -0.026543884, + 0.0070876963, + -0.0067339544, + -0.0009570935, + -0.016879397, + -0.023139564, + 0.00318598, + -0.0073656137, + 0.01893061, + -0.00756218, + -0.0029349932, + -0.004314966, + 0.007900831, + 0.0014045858, + -0.013776089, + -0.0067593036, + 0.01647233, + -0.018009935, + -0.019946024, + 0.0082810065, + -0.010949418, + 0.0068986826, + 0.013493791, + -0.018694514, + -0.020517029, + -0.0065669236, + -0.005880922, + 0.0020450386, + -0.017392686, + 0.016460663, + 0.013885355, + -0.018978862, + -0.006208078, + 0.00060220587, + 0.007317858, + 0.001922437, + 0.026430245, + -0.03673182, + -0.011542159, + -0.0042844163, + -0.010534296, + 0.010687902, + -0.016033284, + 0.005883419, + -0.0066876775, + -0.0383944, + -0.0032292672, + -0.035954393, + 0.0070591136, + 0.024447214, + 0.017173933, + -0.009976916, + -0.026292443, + -0.0014817076, + 0.015884422, + -0.006768525, + 0.00042520443, + -0.008390783, + -0.0039030802, + -0.028070066, + -0.0047020246, + -0.010123617, + -0.012439283, + -0.0061088284, + 5.50756e-05, + -0.036165584, + -0.012168652, + -0.008761428, + -0.028787892, + -0.011760944, + 0.0006652502, + -0.008508888, + -0.008430984, + -0.0158511, + -0.005671949, + -0.00494272, + -0.03158668, + -0.008307612, + -0.03084532, + -0.0066367295, + -0.020552706, + -0.01471908, + 0.017685447, + -0.0031710018, + -0.008817473, + -0.0057803025, + -0.022717925, + -0.0062677083, + -0.011910785, + 0.01108183, + -0.009901731, + 0.014974852, + -0.007906229, + -0.024864683, + -0.009454671, + 0.00023407815, + -0.0155296475, + 0.013203359, + -0.02218062, + -0.030092701, + -0.028546343, + -0.01896066, + 0.006670393, + 0.0012905454, + -0.0036896756, + 0.0030847576, + 0.025030112, + -0.030562174, + 0.004907448, + 0.0030939346, + 0.006837835, + -0.005406382, + -0.0037515352, + -0.018072538, + -0.012629738, + -0.018870488, + -0.017443089, + -0.01224153, + 0.0035665156, + 0.013427219, + -0.013437885, + -0.017675456, + -0.0020624704, + 0.0098509025, + 0.030452246, + 0.031879872, + 0.0064490032, + -0.003737859, + 0.0026926931, + -0.0035669552, + -0.016624412, + -0.01305599, + -0.009859672, + -0.0050098808, + -0.0068256916, + 0.00026150295, + 0.0038450472, + -0.0003832203, + 0.007446648, + -0.019503545, + -0.022194369, + -0.026690781, + 0.0016353751, + -0.0051083486, + 0.03674766, + -0.001725632, + -0.03194287, + -0.0020541793, + -0.008074836, + 0.003467921, + -0.004653328, + -0.025554994, + 0.00035837476, + -0.032637626, + -0.018163413, + 0.007570668, + 0.005600209, + -0.004749728, + 0.010193232, + -0.014354668, + 0.0057637743, + 0.005225608, + -0.01986368, + 0.004818999, + -0.016005348, + 0.006603747, + -0.020598995, + -0.0005494768, + -0.0052458383, + -0.015347111, + -0.0054675746, + -0.016838335, + 0.0029265985, + 0.0153319305, + -0.00718463, + -0.006293481, + 0.004041974, + -0.017127097, + -0.018224396, + 0.0036018519, + 0.010035984, + 0.0079591675, + -0.020244611, + -0.021058887, + -0.008893427, + 0.0034672045, + -0.009289923, + 0.013849919, + -0.02699804, + -0.010444913, + -0.0009108659, + 0.00024246007, + -0.016266335, + -0.0061330334, + -0.0068413005, + -0.005795249, + 0.00031070597, + 0.011869082, + 0.024795644, + -0.041264847, + -0.009492094, + -0.013151395, + -0.005884436, + 0.003780783, + -0.021212386, + -0.023624381, + 0.0111672785, + -0.038113836, + -0.016043358, + -0.006247832, + 0.006429356, + -0.028765233, + 0.007435596, + 0.008357563, + 0.0010555605, + -0.02202198, + -0.005595276, + 0.0033048284, + 0.008624747, + 0.0034914732, + 0.0009899554, + 0.0017379293, + -0.036623113, + -0.0122785065, + 0.0059683495, + -0.0072268047, + 0.03475437, + -0.001976133, + 0.028466426, + -0.033002168, + -0.022760404, + 0.01646594, + -0.020506876, + -0.03331014, + 0.0040544085, + 0.003242653, + -0.020025466, + 0.01982915, + 0.021622334, + -0.012764021, + -0.007139937, + 0.009681179, + 0.032281358, + 0.007867265, + 0.0023897965, + 0.0019091932, + 0.0011351075, + 0.009940187, + -0.0016300919, + -0.002350792, + -0.007363054, + 0.023120448, + -0.024769122, + -0.04396747, + -6.1310595e-05, + -0.017329792, + -0.016620085, + -0.026558267, + 0.00676202, + -0.015741814, + -0.013971851, + 0.0007493038, + 0.0036883685, + 0.009878751, + 0.012900064, + 0.032368597, + -0.012543802, + -0.025628291, + 0.027959036, + -0.00791868, + 0.0033401337, + 0.016028838, + -0.01590904, + -0.008051222, + 0.02221461, + -0.027290497, + 0.003725323, + -0.005169663, + -0.014457568, + 0.019035088, + 0.004618825, + -0.00027632446, + 0.01440751, + -0.008184555, + -0.011297728, + 0.01459178, + -0.008425892, + -0.016312758, + -0.01786321, + -0.004847856, + -0.006879185, + -0.0058638244, + -0.015767485, + 0.0194336, + -0.018840166, + -0.007981579, + -0.026193842, + -0.006556625, + -0.0040426743, + 0.021343803, + -0.0126609905, + -0.004911918, + 0.03227695, + 0.009604002, + -0.015384073, + -0.022976913, + -0.007028087, + -0.007665979, + 0.002401286, + -0.009614008, + 0.017768016, + -0.0039022556, + 0.016412172, + 0.010276445, + 0.02201497, + 0.004040171, + -0.0003743848, + 0.008894402, + 0.0125642875, + -0.019380514, + -0.0020698018, + 0.0022746518, + -0.031443384, + -0.02617584, + 0.009683956, + 0.0025384268, + -0.01005342, + -0.012199511, + -0.010331146, + -0.024238281, + -0.001715635, + -0.008722677, + -0.017218478, + 0.0026541941, + -0.008234614, + -0.0044801715, + -0.022555701, + 0.0005213567, + 0.005948978, + 0.008106543, + 0.010106576, + 0.002446029, + 0.0035185416, + -0.0033935271, + -0.00031208398, + -0.0070534814, + 0.011478922, + -0.0021118831, + -0.014314484, + 0.0043810704, + 0.0092909625, + -0.011857539, + -0.0017066062, + -0.011403521, + -0.03173177, + -0.002708476, + 0.014994906, + -0.006429135, + 0.0017786351, + 0.0045490316, + -0.0061192717, + 0.0025875121, + 0.005310128, + 0.003502974, + -0.0027948804, + -0.0008955852, + -0.008106371, + -0.010432773, + -0.03400626, + -0.013188323, + -0.012081758, + 0.0026382108, + -0.02397278, + 0.025684057, + -0.021631919, + -0.016272362, + -5.6398374e-05, + 0.002548403, + -0.026378276, + -0.030793188, + -0.010563183, + -6.40405e-05, + -0.014479136, + -0.014411871, + 0.014614513, + 0.0042223646, + -0.026594227, + 0.020977605, + -0.013848584, + -0.02985813, + -0.008137639, + 0.0017924665, + -0.020799864, + 0.009303186, + 0.0122898575, + -0.023734214, + -0.015898237, + 0.008554235, + -0.02307749, + -0.018612565, + 0.0033526656, + 0.009767758, + -0.013110244, + -0.016127523, + -0.018079452, + 0.0016993559, + -0.0054423986, + 0.012558483, + -0.016973566, + -0.012610165, + 0.008330419, + 0.030212512, + -0.010575681, + -0.02160011, + 0.014062507, + 0.017985152, + 0.0078340825, + -0.014645157, + -0.02591185, + -0.008837158, + -0.015858244, + 0.0031132495, + -0.012590886, + -0.02411759, + -0.00706344, + -0.0040690457, + -0.0030264792, + -0.009645571, + -0.0081406655, + -0.03064581, + -0.015584733, + -0.013088625, + 0.009047526, + -0.01824592, + 0.020467872, + 0.006843285, + -0.010150295, + 0.0015969214, + -0.013574489, + 0.008623193, + -0.000969506, + 0.006241788, + -0.03529643, + 0.010677066, + 0.013781041, + -0.012426735, + -0.01877654, + 0.005313028, + 0.021808455, + -0.019064931, + 0.0017377738, + -0.002065512, + -0.0042487956, + 0.0059109214, + 0.003999485, + -0.036229484, + 0.01770513, + -0.011859285, + -0.007920449, + 0.0034233897, + -0.014579258, + -0.009930205, + 0.0039105047, + -0.003948218, + -0.018434085, + -0.034259364, + -0.012903125, + -0.008330816, + -0.004815841, + 0.00238941, + -0.011195334, + -0.002635177, + -0.013247846, + 0.015522475, + -0.006305522, + 0.014733633, + -0.009623334, + -0.010295307, + 0.019289637, + 0.001840635, + -0.015091897, + 0.009172727, + -0.0058280635, + 0.013098345, + 0.005046769, + -0.004930388, + 0.0014713382, + -0.02961632, + 0.0050535025, + -0.016613523, + -0.0051928745, + -0.0195806, + 0.007444012, + 0.014637304, + 0.00092494756, + -0.0108406795, + -0.013642501, + -0.008898318, + -0.004707049, + -0.009527022, + -0.008904675, + 0.011290772, + -0.0127863595, + 0.0024594318, + 0.0009104321, + -0.021963758, + -0.0058679217, + -0.012703973, + 0.008344413, + -0.01680619, + -0.0092590675, + 0.010087375, + -0.035338752, + -0.024743075, + -0.012970804, + -0.005421958, + 0.0037299392, + 0.0028151746, + -0.013275937, + -0.008314494, + 0.02864697, + 0.0036534972, + -0.00032663892, + 0.0013224905, + -0.0047019147, + 0.016283255, + -0.035688512, + 0.009896637, + -0.0230211, + 0.006172025, + -0.007757976, + 0.002650308, + 0.0008437217, + -0.026307281, + -0.04001827, + -0.03357552, + -0.007026638, + -0.024815697, + -0.018287277, + -0.008377005, + -0.0022669174, + -0.0035004255, + -0.02465035, + -0.005218671, + 0.00831376, + -0.005164343, + -0.0065785116, + -0.0069163824, + -0.030577205, + -0.0031699333, + -0.0008739107, + 0.021210885, + -0.010047925, + -0.01067113, + -0.015945237, + 0.020210275, + -0.0074234903, + 0.005832551, + -0.0069233715, + -0.009204388, + -0.009443422, + -0.0032785458, + -0.017788222, + -0.0060351533, + -0.0003527292, + -0.01193824, + -0.012801677, + -0.008480058, + -0.02953611, + 0.0033158867, + -0.016270695, + -0.03301902, + -0.013735802, + 0.034558207, + -0.024792504, + -0.0062175016, + -0.020072194, + -0.027518066, + 0.028280519, + -0.007933304, + -0.022949547, + -0.04274384, + -0.0039179516, + 0.007902507, + -0.0127870655, + 0.008777335, + -0.0012483505, + 0.004832447, + -0.00010381317, + -0.023145482, + -0.03048841, + -0.011915517, + 0.002424112, + -0.012030371, + 0.030873438, + -0.014795535, + -0.00014145272, + 0.025177913, + 0.0012198093, + 0.014805712, + -0.01840516, + 0.0004894705, + -0.017387448, + -0.0029614004, + -0.024874216, + -0.01668903, + 0.0025236015, + -0.0022041546, + -0.0048882845, + -0.00011720848, + -0.011944502, + 0.0044995435, + 0.00051178597, + 0.008910122, + -0.019117136, + -0.0017881234, + -0.020074038, + -0.025136251, + 0.00067290716, + 0.014926389, + -0.008502595, + -0.019719092, + -0.02990305, + 0.0040952773, + -0.0068529407, + -0.022518793, + 0.013588871, + -0.008068663, + -0.007408774, + 0.0020848615, + -0.008949291, + 0.0025100745, + -0.00035332196, + -0.0090781115, + -0.0016183468, + 0.0022085356, + -0.015014974, + 0.015972245, + -0.008927558, + -0.001499502, + -0.012677764, + -0.020249281, + -0.008889423, + -0.0074104997, + -0.01579861, + 0.015993582, + -0.027682541, + 0.008258513, + -0.0004874561, + -0.001886004, + 0.013928771, + 0.0012558784, + 0.0118309045, + 0.010444599, + -0.017349763, + 0.010236848, + -0.01251192, + 0.0013676016, + -0.004828712, + -0.015429828, + -0.012935183, + 0.009290482, + 0.02139922, + -0.030859355, + 0.022887625, + -0.017668897, + -0.002563303, + -0.009675304, + -0.011715731, + -0.015849523, + -0.017025882, + -0.020209832, + 0.012301804, + 0.016273206, + -0.016683593, + -0.010972833, + -0.018088877, + -0.011927802, + 0.0082308315, + -0.021178277, + 0.017270416, + -0.003956831, + 0.0075139087, + 0.014029381, + -0.015678858, + 0.0039152936, + -0.015149447, + -0.043402463, + -0.013961004, + -0.02444309, + -0.024190139, + 0.014217432, + -0.020172011, + 0.0064623514, + 0.011463201, + -0.008916675, + -0.017185215, + -0.00048532986, + -0.026368948, + -0.0200036, + 0.017108299, + -0.009362646, + -0.02207805, + -0.013820302, + -0.02247033, + -0.03445272, + -0.0028133933, + 0.02108213, + -0.024154333, + -0.013163238, + 0.016788524, + 0.0021475495, + 0.015959527, + -0.030288266, + -0.029656565, + -0.00026166215, + -0.015385253, + -0.017732719, + -0.031638622, + 0.019907525, + -0.012591195, + -0.03914634, + 0.001977176, + -0.03622706, + -0.019333102, + -0.058646023, + -0.0026861401, + -0.018238805, + 0.028253721, + 0.0067799333, + 0.005361539, + -0.0023676592, + 0.010378643, + 0.01161267, + -0.018242883, + -0.0032395641, + -0.039343126, + 0.0035803562, + -0.018723914, + -0.023975663, + -0.0276723, + -0.016116228, + 0.017133167, + -0.020113919, + 0.011459038, + 0.011865612, + -0.0061446927, + -0.015961174, + 0.009405925, + -0.016184695, + 0.010924725, + -0.022122636, + -0.0060972744, + -0.010658645, + 0.0011656951, + -0.020680934, + -0.013086458, + -0.026722921, + -0.01359496, + -0.041847985, + -0.010351714, + 0.010577527, + -0.0044659995, + -0.010864795, + -0.014993945, + -0.01397518, + -0.008703145, + -0.0104803685, + -0.026928661, + -0.013936115, + -0.008771014, + -0.020357512, + -0.0029272987, + -0.012129349, + 0.02124915, + -0.028316217, + -0.030076899, + -0.013502098, + -0.018835733, + -0.0012249349, + -0.0071223252, + -0.011372134, + -0.015051066, + 0.00038652055, + 0.026540415, + 0.0028891827, + -0.021798987, + -0.012482153, + -0.016916662, + -0.014603969, + -0.051526636, + 0.019725775, + -0.00018020175, + 0.00064843707, + -0.015639681, + -0.019500284, + -0.03299129, + -0.007226582, + -0.037707187, + -0.007910439, + 0.01819257, + -0.028594466, + -0.002490118, + -0.00808742, + -0.009663884, + -0.021257408, + -0.015234619, + -0.0024074311, + -0.019160349, + 0.01193676, + -0.0062861773, + -0.009442585, + -0.025020527, + -9.691981e-05, + -0.017056784, + 0.012677348, + -0.0026472772, + -0.008859903, + 0.0005258229, + -0.003060148, + -0.0038461376, + -0.009210601, + -0.012538503, + 0.014396892, + -0.023518158, + 0.0060527925, + 0.024904115, + -0.015704976, + 0.005084411, + -0.026229536, + -0.014771752, + -0.008796744, + -0.0113427155, + -0.0036198776, + -0.003865243, + 0.004128687, + 0.01721057, + -0.008642179, + -0.027486937, + 0.009463422, + -0.035199266, + -0.009652636, + -0.0015514923, + 0.018073061, + -0.011653491, + 0.0018436929, + 0.01858725, + -0.00652995, + -0.014456839, + -0.004949105, + -0.010802125, + -0.026872389, + 0.010429598, + -0.008430594, + -0.014141119, + -0.010106256, + -0.0236735, + -0.004144269, + -0.011100959, + 0.009524096, + -0.0003562343, + 0.007691513, + -0.030475374, + -0.01785649, + -0.0146089755, + -0.004062777, + -0.012290738, + -0.0037763994, + -0.006192111, + -0.013392049, + -0.025662484, + -0.004054379, + -0.00924352, + 0.010553152, + 0.020368781, + -0.0032945701, + 0.0047836336, + 0.014134518, + -0.008591271, + -0.020142721, + -0.0070187855, + -0.031327594, + -0.008451696, + 0.027596256, + 0.0020813022, + -0.026116494, + -0.028443303, + -0.012526486, + 0.003929314, + -0.021721888, + -0.0075736567, + 0.009915462, + 0.011340503, + 0.012713018, + -0.019255567, + -0.010419302, + -0.0056544268, + 0.0006766588, + 0.0009583578, + -0.015860496, + 0.007335912, + 0.011371088, + -0.03805623, + 0.009775641, + -0.012305014, + 0.024427954, + 0.013478325, + -0.0057151797, + 0.0005480348, + -0.016101168, + 0.0030978804, + -0.0063256193, + -0.0092137465, + 0.0026265795, + 0.0054539405, + 0.031465575, + -0.009112653, + 0.0017823648, + -0.007984453, + -0.04285247, + -0.009266424, + -0.029923255, + 0.0025442636, + 0.009221041, + -0.020179862, + 0.024890274, + -0.03994681, + 0.010655662, + 0.0036505817, + -0.02651547, + -0.034196258, + 0.011280382, + -0.029981306, + 0.0013401136, + -0.017429648, + -0.007956139, + -0.040334165, + -0.00040776446, + 0.021773074, + 0.0010978909, + 0.005033714, + -0.0050929077, + 0.012322024, + -0.02561202, + -0.0020967806, + 0.008993282, + 0.009969271, + -0.0059430664, + -0.019267704, + -0.0050117574, + -0.0016558528, + -0.00037939838, + -0.006532756, + -0.010930197, + -0.011938986, + -0.005362312, + -0.012855505, + -0.0031228934, + 0.028504653, + -0.00414072, + 0.013061992, + 0.010132072, + 0.0009169584, + -0.014696244, + -0.02541567, + -0.009431933, + 0.0018297121, + 0.0047810054, + 0.024185399, + -0.011029427, + -0.005691997, + -0.015994601, + -0.013896044, + -0.006281569, + 0.006395884, + 0.0051116473, + -0.016015144, + -0.009658831, + -0.0059364457, + -0.03174649, + -0.010137756, + -0.003569755, + 0.00088070345, + -0.016886495, + -0.008327337, + -0.0013578977, + 0.010450277, + -0.0005390339, + 0.0032689243, + -0.0031153471, + -0.01867789, + -0.028058706, + 0.012165532, + 0.009073575, + 0.026063224, + -0.0034311928, + -0.02582718, + -0.00076176645, + -0.029267209, + -0.0393773, + -0.005065367, + -0.0013222721, + 0.005146169, + -0.0147896055, + -0.006278427, + -0.02157424, + -0.029372474, + 0.032870766, + 0.0034804833, + -0.023089489, + -0.01971185, + 0.0011460286, + 0.0011035522, + -0.03641313, + -0.005986566, + -0.010434438, + 0.0020670097, + 0.006259909, + 0.008326349, + 0.0016274359, + 0.018233633, + -0.013028395, + 0.0062743113, + 0.0006248018, + -0.025439423, + -0.008990419, + -0.021644128, + 0.011076775, + -0.014595192, + 0.00091691245, + -0.018973725, + -0.034880545, + 0.0025640542, + -0.02556607, + -0.014055241, + -0.003197406, + -0.019636612, + 0.022790844, + -0.010605325, + -0.0073663723, + 0.005868912, + -0.00063529226, + -0.008654801, + -0.010585376, + 0.031794365, + -0.01065379, + 0.014354875, + 0.004330959, + 0.020080982, + -0.004163221, + 0.002338445, + -0.0001568863, + -0.010899079, + 0.00760403, + 0.009834839, + 0.008471437, + -0.0002642012, + -0.010687948, + -0.017126845, + -0.044654958, + 0.012524284, + -0.009077293, + -0.030096358, + 0.0014368595, + -0.012875277, + 0.011120619, + 0.009997925, + -0.002236626, + -0.01721392, + 0.0029278812, + 0.010392055, + -0.0010675283, + -0.040598094, + -0.024586914, + 0.025850225, + -0.019917917, + -0.0048161834, + 0.006668304, + -0.0027568983, + 0.0013303611, + 0.01292634, + 0.00360736, + -0.013677139, + -0.025886506, + -0.03255072, + 0.0034188484, + 0.006520087, + -0.022189269, + -0.005063174, + -0.017339477, + -0.01240872, + -0.01442423, + 0.0072608474, + -0.0005343668, + -0.0055809547, + -0.013944455, + -0.013204705, + 0.0034363747, + -0.016095726, + -0.00861227, + -0.027174357, + 0.008041694, + 0.009634032, + 0.0029840916, + -0.022130845, + 0.025105936, + -0.007822241, + -0.023869647, + 0.018762423, + -0.009991862, + -0.020307079, + -0.0061952122, + 0.007841014, + 0.0042902706, + 0.007044261, + 0.008756649, + 0.0033344002, + -0.018303268, + 0.0031574224, + -0.012304281, + -0.0025416259, + -0.024954502, + -0.013936473, + -0.012712267, + -0.019848458, + -0.0022511461, + -0.017422205, + -0.0023597581, + -0.009836747, + -0.018595817, + -0.004978969, + -0.009582928, + 0.019543165, + -0.0052789617, + -0.002108697, + -0.0026984226, + 0.0006485919, + 1.3688911e-05, + -0.032256424, + -0.019640094, + -0.018457087, + -0.010196459, + -0.00021760986, + -0.0119748, + 0.005124698, + 0.0104772905, + -0.02181934, + -0.027988913, + -0.004887423, + -0.0019600224, + -0.0059361374, + 0.0150502315, + 0.008823875, + -0.02067551, + 0.00040428832, + -0.0015482763, + -0.014384889, + 0.021470293, + -0.017117161, + -0.02403974, + -0.005754111, + 0.002286338, + -0.0014278861, + -0.040821563, + -0.014871139, + 0.0025069085, + -0.017224599, + 0.0036477973, + -0.00468504, + 0.012392985, + -0.017561385, + -0.024885152, + -0.007130275, + 0.0075900694, + -0.006902154, + -0.016176177, + -0.013627075, + -0.016153678, + -0.0023795383, + -0.0029196735, + 0.00689244, + 0.034354635, + 0.015362311, + -0.010481461, + -0.013605222, + 0.009160141, + -0.0033240316, + 0.008291479, + -0.018620146, + -0.010634029, + 0.01813747, + 8.237763e-05, + 0.029510442, + -0.009345708, + -0.014378134, + -0.011392891, + 0.0061632344, + 0.0132040065, + 0.01894067, + -0.017465813, + -0.0006791655, + 0.013493607, + -0.008511093, + -0.010687703, + -0.006541364, + -8.1295904e-05, + -0.010358437, + 0.012112346, + 0.0058826637, + -0.015338774, + -0.019130083, + -0.008717295, + -0.0026305385, + -0.016544368, + -2.7620103e-05, + -0.027095445, + 0.013606018, + 0.005686471, + 0.0053280797, + 0.001148724, + -0.012094354, + -0.0314104, + -0.004359362, + 0.005638616, + -0.0080321105, + -0.0058327974, + -0.011811328, + 0.00040396908, + 0.0071347924, + -0.014577661, + -0.0021496513, + -0.0005743206, + -0.008862741, + 0.023865903, + -0.016576927, + -0.012357818, + -0.013241886, + -0.013217475, + 0.0064413105, + -0.008313065, + -0.0027879174, + -0.019871285, + -0.014256603, + -0.0035303899, + -0.0119520025, + 0.009362316, + -0.0057062684, + -0.0299009, + -0.007964995, + -0.0028410119, + -0.026454076, + -0.00033995468, + 0.015133774, + 0.014470071, + 0.0021884963, + -0.0028869323, + -0.0068211015, + 0.0007333399, + 0.0011555512, + -0.019299464, + -0.02075032, + -0.01583796, + 0.0041072113, + -0.0064652935, + -0.0032145344, + -0.0234036, + 0.0024718929, + -0.041962404, + -0.022208111, + -0.005107492, + -0.014860275, + -0.02766593, + -0.028523628, + -0.012024916, + -0.0022757684, + -0.0074523017, + -0.009185539, + -0.00074557494, + -0.017946102, + -0.018953362, + -0.024134569, + -0.003682094, + -0.01034433, + -0.010019813, + -0.012986197, + -0.028001262, + -0.014832078, + -0.025218384, + -0.0152120795, + -0.02118058, + -0.00936248, + -0.012357183, + 0.01690485, + -0.0043515144, + 0.0006871751, + -0.011263655, + 0.0064140214, + 0.0022337625, + 0.005600677, + -0.0045803287, + -0.013573512, + -0.004544893, + 0.010558366, + -0.026860205, + 0.013791892, + -0.01952758, + -0.0132274395, + 0.01849855, + 0.006917756, + 0.0030682492, + 0.003985417, + -0.022554733, + -0.0098134475, + 0.014157176, + 0.0064630974, + -0.010336002, + 0.0039119273, + -0.031083586, + -0.0029529606, + 0.002837146, + -0.006567549, + -0.006570449, + -0.03674707, + -0.024492333, + -0.023657706, + 0.014038596, + 0.018214315, + 0.01022572, + 0.014831639, + -0.016838027, + -0.0016512426, + 0.009906226, + -0.0056221285, + -0.011714855, + 0.0023131508, + -0.020535657, + -0.013203838, + 0.0021433774, + -0.02310094, + 0.00087747193, + 0.0047003482, + -0.028991347, + -0.021954201, + 0.0154552115, + 0.006078233, + 0.00089311606, + 0.006914056, + -0.0028787986, + -0.0051949513, + 0.005245994, + -0.0045482353, + -0.008585153, + -0.010998308, + -0.0020141613, + 9.5811396e-05, + -0.043543037, + -0.016540917, + -0.008368729, + -0.015010716, + -0.0070498153, + -0.01226169, + -0.0123951705, + 0.0134635195, + -0.0049787, + -0.0030170188, + 0.0033576058, + -0.008557669, + -0.011503145, + -0.0075784563, + -0.008463484, + 0.010647089, + -0.018934082, + 0.0038917558, + -0.010184818, + -0.016302127, + 0.0024867412, + 0.0024602688, + 0.010069582, + 0.0109505225, + -0.010516464, + -0.008067598, + -0.014091147, + -0.0062928586, + -0.012049269, + -0.026921904, + -0.010627978, + -0.028294735, + -0.0036692093, + -0.009185527, + -0.02691295, + -0.00028332366, + -0.015375594, + -0.006346276, + 0.0030384453, + 0.008625087, + -0.021502825, + 0.008112469, + -0.02826677, + -0.018519823, + 0.018407585, + 0.019281056, + 0.01280204, + 0.0008900991, + -0.018371467, + -0.011179584, + 0.007965097, + 0.011595155, + -0.011719056, + -0.015488166, + -0.018338481, + -0.0024798175, + 0.011156414, + 0.011492782, + -0.0017893753, + -0.0034551723, + -0.01876105, + 0.002847007, + -0.022747781, + -0.019623565, + -0.022402406, + -0.017114006, + -0.0006197295, + 0.015391302, + -0.010718539, + -0.020913465, + 0.016696887, + -0.0075052436, + -0.011394308, + -0.014323164, + -0.021449143, + -0.007059453, + -0.011971425, + -0.011937024, + 0.010785232, + 0.01845667, + -0.004644052, + -0.0015932497, + -0.015710365, + -0.0010602054, + 0.0015333155, + -0.0020387059, + -0.009610503, + -0.018306928, + 0.009715898, + -0.0104941465, + 0.017099777, + 0.0021639403, + -0.0164473, + -0.026897928, + -0.008986695, + -0.004753359, + -0.032103185, + -0.012051228, + -0.012614292, + -0.031834777, + -0.008069152, + 0.0066989404, + -0.032654703, + -0.030781489, + 0.001789257, + 0.013117679, + -0.037054606, + 0.011697042, + -0.017546069, + 0.013832688, + 0.009399222, + 0.013942501, + 0.0021659138, + -0.02300536, + 0.0011996485, + -0.023728646, + -0.025312632, + -0.008802941, + 0.00063302286, + -0.021431938, + 0.01169255, + -0.019296516, + 0.024500523, + 0.0128297275, + -0.024035428, + 0.0009406163, + 0.009805495, + 0.0151004605, + -0.0051371977, + -0.001685666, + 0.019018209, + -0.015724858, + -0.010543724, + 0.0023002916, + -0.019658174, + -0.018320719, + -0.0077244355, + -0.007845682, + 0.021574052, + -0.017564027, + 0.015198899, + 0.016102247, + 4.0811516e-05, + -0.0179779, + -0.026958868, + -0.033763856, + -0.015445538, + 0.020018503, + -0.024671724, + -0.000542442, + 0.018956559, + -0.03462937, + -0.005356007, + -0.003958053, + -0.001296634, + -0.017299056, + -0.006734013, + -0.020972962, + -0.014107695, + -0.03232684, + 0.009277104, + -0.008894455, + 0.0009932915, + -0.015338869, + -0.019624526, + -0.009414985, + -0.011159992, + -0.0067874384, + 0.012094904, + -0.010867471, + -0.006145799, + 0.009337212, + -0.0029302968, + 0.000499539, + 0.0032247265, + -0.00026694982, + -0.024877574, + 0.006282886, + -0.027485909, + -0.018115096, + -0.027849847, + -0.019433443, + 0.007097128, + -0.0128565505, + -0.0106396945, + -0.015713776, + 0.0009071669, + 0.02209264, + -0.013704034, + -0.013989369, + -0.014382423, + -0.039883304, + 0.0036184625, + 0.009070375, + 0.0055031027, + -0.017700084, + -0.024803512, + -0.0074088746, + -0.011242907, + -0.0076266015, + -0.002833324, + -0.0029299243, + 0.0033851096, + -0.033293463, + -0.017376859, + -0.011054412, + -0.037435256, + 0.0027794575, + -0.0017500657, + -0.019360136, + -0.021316286, + -0.021469032, + -0.0050065327, + -0.009994026, + -0.030408796, + 0.0087050665, + 0.011487552, + 0.014127863, + -0.0017130397, + 0.01991157, + 7.7488956e-05, + -0.0063399277, + 0.008418127, + -0.009607275, + -0.026638879, + -0.0035728526, + 0.0037753521, + -4.2139865e-05, + 0.01194792, + -0.029564075, + -0.0010175095, + -0.012184099, + -0.020571554, + -0.012580807, + -0.0020275668, + -0.0017237611, + 0.008635245, + -0.007214504, + 0.008793611, + -0.00585437, + -0.015471292, + -0.008675286, + -0.008721828, + 0.027382845, + -0.018512864, + -0.02363951, + -0.025650062, + 0.0030339046, + -0.012365547, + -0.008194183, + -0.006409844, + -0.019237032, + 0.0089253085, + -0.031368453, + 0.0073711323, + 0.01076788, + -0.025049139, + 0.009448033, + -0.013085239, + 0.0005151634, + 0.00094358355, + 0.033704422, + -0.0065829903, + -0.017961672, + -0.023855546, + -0.014634056, + 0.02785542, + -0.007706973, + -0.022939293, + -0.022023302, + -0.010192711, + -0.0030317933, + 0.010262265, + -0.0016982183, + 0.015315645, + -0.020981682, + -0.0012077288, + -0.011837382, + -0.020066714, + 0.009235471, + -0.009734736, + -0.01387881, + -0.015751066, + 0.014186464, + -0.00848379, + -0.015931454, + -0.0036026442, + 0.030159796, + -0.0114378305, + 0.0032199242, + -0.011943962, + -0.02038356, + -0.00263593, + -0.017889397, + -0.002588234, + -0.009450542, + -0.03030015, + 0.0036257047, + -8.886149e-05, + 0.0034166356, + 0.0069937427, + -0.015181868, + 0.003502572, + -0.0033445647, + -0.0040807645, + 0.027516348, + -0.0043379394, + 0.01555281, + 0.005344634, + -0.030938879, + -0.019210657, + -0.018859627, + -0.0022917069, + -0.006672599, + 0.02583959, + 0.01593858, + -0.0016673858, + -0.019488906, + -0.02375626, + -0.016730411, + -0.0059634917, + -0.00173956, + -0.022194637, + -0.007827521, + -0.02476548, + 0.009863954, + -0.007445611, + -0.023668744, + -0.002654901, + -0.002046935, + -0.028733449, + -0.010666575, + 0.0051271045, + -0.027052322, + 0.009193239, + 0.01639713, + -0.0038237232, + -0.009854932, + -0.011988771, + -0.03133979, + -0.021290889, + 0.013238391, + -0.019125827, + -0.019470263, + 0.0053578303, + -0.008646031, + -0.011593825, + 0.0069361753, + 0.003403261, + 0.010132783, + -0.00044301135, + 0.032641362, + 0.007890042, + -0.020055033, + -0.006564819, + -0.0067522554, + -0.012425923, + -0.008210013, + 0.010987225, + -0.004911924, + -0.022045765, + -0.0035048744, + -0.014114427, + 0.012082251, + -0.019585133, + -0.010829829, + 0.022936463, + -0.037526593, + -0.013078221, + -0.010777224, + -0.014836101, + 0.001529594, + -0.009159484, + -0.0063570407, + -0.0018811022, + -0.01988852, + -0.014199584, + 0.00071439636, + -0.018670319, + -0.016225642, + -0.02599125, + -0.031488687, + -0.0017483536, + -0.006084065, + -0.013807234, + -0.008486341, + -0.025684712, + -0.004228327, + 0.008054043, + -0.0014504994, + -0.005349852, + -0.0183163, + 0.0015911078, + -0.0050617936, + -0.00017787563, + -0.013012972, + -0.011047138, + -0.022473345, + 0.010561564, + -0.04495577, + -0.008180915, + 0.001784874, + -0.00093560497, + -0.006571109, + -0.0082808295, + 0.015664967, + -0.015991703, + -0.005131376, + 0.0046566287, + -0.0055306684, + 0.006120356, + -0.0077624423, + -0.016714975, + -0.006476186, + -0.024516124, + -0.009807935, + -0.011496135, + 0.00168478, + 0.0033415097, + 0.011774854, + -0.016096061, + -0.003359219, + 0.01863308, + -0.033972498, + 0.0027630932, + -0.00499537, + -0.008651815, + -0.015341708, + 0.00962918, + -0.043981597, + 0.0017861457, + -0.010151001, + -0.0025086435, + -0.01354921, + -0.011748392, + -0.016279036, + -0.034126382, + -0.030579763, + -0.0042928024, + 0.008085152, + -0.0013940259, + -0.013696916, + 0.0021359513, + -0.004256591, + -0.0039618514, + -0.024040526, + -0.012559221, + 0.00692493, + -0.01341991, + 0.020068102, + 0.00026003798, + -0.0030498854, + -0.024549333, + -0.0021580134, + 0.005128188, + -0.009397839, + 0.002720228, + 0.00074292946, + 0.0100251045, + 0.009780688, + -0.0021775295, + -0.010218455, + -0.024204286, + 0.0014442041, + 0.0110032335, + -0.0031632106, + 0.01473564, + -0.017233342, + -0.010833525, + -0.011256688, + 0.011911427, + 0.027984848, + -0.007437936, + -0.0130411945, + 0.022460084, + 0.0031647477, + 0.026505645, + -0.012830382, + -0.0089874035, + -0.007736054, + 0.012021692, + -0.009824682, + 0.02010555, + -0.01889586, + -0.0072991317, + -0.008190153, + -0.015186481, + -0.015782725, + 0.008151048, + 0.022178441, + -0.018684931, + 0.009333988, + -0.0320136, + 0.009038672, + -0.01966872, + -0.02048862, + -0.0109541975, + -0.0019288266, + 0.008739708, + 0.0034209725, + -0.00850749, + -0.00012255144, + -0.021551434, + 0.008602565, + -0.012740076, + 0.0012755049, + 0.002291413, + 0.007900751, + -0.011541454, + -0.03833292, + -0.03501464, + 0.015630336, + -0.032071933, + -0.008991443, + 0.0057444973, + 0.018852055, + -0.019284084, + -0.0059952713, + -0.0017482785, + -0.0155001115, + -0.0031462607, + -0.004430384, + -0.003070809, + -0.013014671, + 0.0043666586, + -0.015357512, + -0.009419165, + -0.010340622, + -0.008621318, + -0.018837055, + 0.0009094769, + 0.0050330735, + -0.01984517, + -0.017371483, + 0.0062296367, + -0.024371633, + -0.012233508, + 0.008988961, + 0.0009074858, + -0.02591183, + 0.007502179, + -0.012388271, + 0.006380945, + -0.019986229, + 0.0019226472, + -0.011596847, + -0.0044389064, + 0.0267058, + -0.00056150503, + -0.002924744, + -0.014818205, + -0.017411672, + -0.001437182, + 0.0017840515, + -0.017996812, + 0.012351568, + -0.03237308, + -0.017792866, + 0.0020625286, + -0.009052694, + -0.015929632, + 0.0010021314, + -0.010552483, + 0.0093200775, + 0.018492345, + -0.0014832694, + -0.008912712, + -0.012608248, + -0.00016505463, + 0.020585557, + 0.01280153, + -0.008081692, + -0.0064448765, + 0.02261316, + 0.0037684368, + -0.016512081, + -0.012597815, + -0.0063059903, + 0.008919641, + 0.0052075055, + 0.009015095, + -0.004905107, + -0.006693056, + -0.01130712, + -0.0009813849, + 0.0019662937, + 0.01005157, + -0.030092707, + -0.02737495, + 0.0008748052, + 0.017177355, + 0.012853339, + -0.02087314, + -0.014406878, + -0.02127431, + -0.00608532, + -0.040165413, + -0.003558546, + 0.014983993, + 0.016370209, + 0.0052302214, + 0.0052181007, + 0.0009831007, + -0.006957609, + 0.018664574, + -0.016567, + -0.030014666, + -0.007206853, + -0.009380943, + 0.005513939, + 0.027593331, + 0.015160119, + -0.0017274902, + -0.027955672, + 0.0047035767, + -0.011273379, + 0.0003495638, + 0.0097412355, + 0.012226138, + -0.01622747, + 0.014521636, + -0.02967907, + 0.006381257, + -0.012305239, + -0.006175887, + 0.0063171894, + -0.00051993463, + 0.0033974547, + -0.006038211, + -0.021303875, + -0.011154596, + -0.00582672, + -0.01180061, + -0.018215895, + 0.035088226, + -0.007273727, + -0.016988326, + 0.0013494852, + -0.0011035426, + -0.013847394, + -0.015074555, + 0.0018542757, + -0.023555353, + -0.0165484, + 0.012052521, + 0.00014573739, + -0.004939, + 0.0021433106, + -0.020737464, + 0.010335903, + 0.010328008, + 0.020168224, + 0.0007717353, + 0.015756972, + -0.023188148, + -0.0022386112, + -0.0028107266, + 0.0040111644, + -0.0043743327, + 0.0048528933, + -0.002382348, + 0.020632776, + -0.010033794, + -0.014887949, + -0.0009944962, + -0.007318908, + -0.013982047, + -0.008411639, + -0.0021226502, + 0.0005373637, + 0.00756839, + 0.003389543, + -0.010798446, + 0.002245187, + 0.012790275, + 0.015574376, + -0.0019362866, + -0.016015746, + -0.020961452, + -0.03526328, + -0.009080217, + -0.014195658, + -0.0018736144, + -0.010006624, + -0.003950374, + -0.019784713, + -0.008048002, + -0.0015150243, + -0.0038507127, + -0.0052408474, + -0.012064171, + -0.0028436407, + -0.013430864, + -0.020449834, + 0.015012503, + 0.019956699, + -0.009238191, + -0.014832738, + 0.00396844, + -0.02044003, + -0.0034115443, + 0.013756706, + -0.012158788, + -0.0019393543, + -0.02314401, + -0.010293128, + -0.021146292, + -0.0057079033, + 0.0031070474, + -0.029990762, + -0.010297007, + -0.026969293, + -0.0095190415, + -0.009795463, + -0.0003326749, + -0.010620938, + 0.017111652, + -0.013242085, + -0.011185361, + 0.006505814, + 0.0045084, + -0.010595039, + -0.006542829, + -0.012205038, + -0.011808259, + 0.008088055, + -0.0039803437, + -0.003130769, + -0.008376877, + -0.006041476, + 0.00962427, + -0.04454179, + -0.0018848248, + -0.04234305, + -0.0100655705, + -0.008107324, + -0.00634913, + 0.0045610275, + 0.0019255074, + 0.0120746475, + 0.01645612, + -0.005152668, + 0.00078052026, + -0.031003369, + -0.018088305, + -0.017622616, + -0.005899818, + -0.021489084, + 0.011810033, + -0.0020786177, + 0.0025644563, + -0.012431835, + 0.0056979256, + -0.009385934, + 0.02272755, + -0.0063817706, + 0.006724369, + -0.037156988, + -0.024792766, + 0.0060809823, + 0.018273816, + 0.026429968, + 0.005362767, + 0.0075492896, + -0.013188901, + -0.018736256, + -0.024348943, + -0.0003599765, + -0.0010942429, + 0.010011814, + 0.0037402979, + -0.007624109, + -0.005029305, + -0.012599485, + 0.0147576, + -0.013372877, + 0.0015269307, + 0.019512814, + 0.017994318, + 0.0023845262, + -0.01918231, + 0.030404821, + 0.0020970579, + -0.024096638, + 0.009964733, + -0.020458797, + 0.0069602234, + 0.0014429307, + -0.0053811385, + -0.02910144, + -0.010044765, + -0.0029971153, + -0.0286866, + -0.01631609, + 0.009250761, + -0.010020706, + -0.010828851, + -0.005199692, + 0.020057298, + 0.009198666, + -0.026898218, + 0.006361612, + -0.007816048, + 0.0044629388, + 0.014344908, + -0.018992076, + 0.008104979, + 0.021184953, + -0.001627237, + -0.005883687, + -0.007607262, + -0.008781948, + -0.0023122386, + -0.012125741, + -0.027812656, + -0.0123784635, + -0.0185079, + 0.000383965, + -0.0144871315, + -0.011161248, + -0.008190132, + 0.018464342, + -0.015264823, + 0.0029944994, + 0.0039909794, + -0.018558517, + -0.01116862, + 0.004660171, + -0.009474811, + -0.03129513, + 0.023097955, + -0.016899839, + 0.0015493506, + -0.011731194, + 0.0001543925, + -0.011779985, + -0.0033244777, + 0.0029762238, + -0.023085529, + 0.010473567, + -0.008111821, + -0.003259764, + 0.003832155, + -0.0218325, + -0.017920606, + -5.838457e-05, + 0.005030549, + -0.011070196, + -0.012499185, + -0.015888488, + -0.01753875, + 0.0009894295, + -0.01765951, + -0.019947078, + -0.013543747, + 0.0014673654, + 0.01919355, + -0.017401833, + -0.014955156, + -0.024014488, + -0.0013762275, + -0.010366164, + -0.009679508, + -0.024632564, + 0.00425333, + 0.003223995, + 0.0059618447, + -0.0129027255, + 0.008901083, + -0.0071120695, + 0.0022013474, + 0.015615828, + -0.022518195, + -0.022454116, + -0.015702374, + -0.02375945, + -0.005943128, + 3.3046967e-06, + -0.024446573, + 0.0077181733, + -0.0072126095, + -0.029910885, + -0.021058485, + 0.013720332, + -0.031074345, + 0.0012988815, + -0.01930032, + 0.00050060765, + 0.0008191989, + -0.023878267, + 0.002953202, + 0.001331944, + -0.02783844, + -0.020024454, + 0.011413978, + 0.0011528411, + -0.022684524, + -0.019735344, + -0.006035767, + 0.0041766055, + 0.0006491574, + -0.0076368987, + -0.0145842, + 0.0065627764, + -0.0051730867, + -0.021629913, + -0.02272961, + -0.017168673, + -0.025771473, + -0.018944873, + 0.005388885, + -0.01131631, + -0.022559095, + -0.011334285, + -0.00224709, + -0.0031935554, + -0.023378205, + -0.0063257767, + 0.0077812555, + -0.012018613, + -0.01074357, + 0.003505977, + 0.004305035, + -0.009534906, + -0.022241995, + -0.023189196, + -0.020710291, + 0.0030938827, + -0.0013707908, + 0.03958655, + -0.010452682, + 0.0212819, + -0.0028074717, + 0.004983688, + -0.0072638765, + 0.00083461, + -0.011783407, + -0.029723026, + -0.020699989, + -0.027706506, + -0.004451551, + -0.008195029, + -0.031997327, + -0.032919627, + -0.01722813, + -0.0074754274, + 0.008219521, + -0.028435124, + 0.0046333945, + -0.012519358, + -0.02583688, + -0.019492377, + 0.022279533, + 0.010332111, + 0.007520973, + -0.010695169, + -0.008807418, + 0.0037231667, + -0.0106010055, + 0.0042946823, + -0.029505003, + -0.0323617, + -0.021070447, + 0.00971735, + -0.0053429822, + -0.05161018, + 0.011977462, + -0.0031811777, + -0.012187239, + -0.01524205, + -0.0039361664, + -0.008824981, + -0.0077351695, + -0.014415154, + -0.0045078024, + -0.011557931, + -0.013341108, + -0.008162429, + -0.0070609753, + 0.0036449025, + -0.0020684095, + -0.005131462, + 0.012422242, + -0.0165553, + -0.011336971, + -0.0137431305, + -0.010615085, + -0.010710469, + -0.016753549, + 0.009127314, + 9.823197e-06, + 0.008947532, + -0.017398987, + -0.00520603, + 0.0059617814, + 0.0026376327, + -0.027644994, + -0.039315507, + 0.0012798058, + -0.0059946645, + -0.0011455183, + -0.011261032, + -0.027125603, + -0.01608743, + 0.0029868756, + -0.006249249, + -0.012885308, + 0.0061824387, + -0.0055029476, + -0.016604438, + 0.0033897888, + -0.024651682, + 0.003850973, + 0.029854137, + -0.018696694, + 0.021195492, + -0.004582401, + -0.020874515, + -0.022619383, + -0.0026733843, + -0.010557177, + -0.010033833, + -0.033104684, + 0.014663669, + -0.022493713, + 0.0075663175, + -0.012134925, + -0.0032948458, + -0.012263891, + 0.001995617, + 0.011514428, + -0.0026675807, + 0.0008828754, + -0.01673619, + -0.02443989, + 0.0017559973, + 0.0010845861, + -0.03676569, + -0.014258478, + -0.04434864, + -0.017568167, + 0.0030538244, + 0.009769978, + -0.01981235, + -0.013222679, + -0.018073762, + -0.0064790486, + -0.031848636, + -0.023716006, + -0.010455532, + -0.012532102, + -0.012124558, + 0.00989497, + 0.0023639502, + -0.032461103, + 0.006932317, + 0.031103794, + -0.004012462, + 0.026941491, + -0.008525183, + -0.006477328, + 0.0059131607, + -0.011501465, + -0.0040078466, + -0.005330419, + -0.014364101, + -0.004221587, + -0.013567863, + -0.002613967, + -0.015257479, + 0.0021428782, + -0.0035168636, + 0.04337045, + 0.0053480742, + 0.008086446, + -0.011546454, + 0.004215077, + -0.0021229826, + -0.0007590215, + -0.017479973, + 0.0051545715, + -0.018645577, + 0.0061835498, + -0.0041486477, + -0.01100565, + -0.006540253, + -0.023986757, + -0.033964787, + 0.005689734, + 0.003544319, + -0.03436407, + -0.0063059744, + 0.011731578, + -0.014498229, + -0.011149208, + 0.005517094, + 0.003093225, + -0.023703543, + -0.0075675165, + -0.01048525, + -0.001671193, + 0.0041088234, + -0.013560971, + -0.010718178, + 0.013495011, + 0.0084174955, + 0.010586542, + -0.0117400335, + -0.009172039, + -0.0063025793, + 0.003212893, + -0.020763148, + -0.023655588, + 0.011356688, + -0.041246433, + 0.012323306, + -0.010241651, + 0.0038940427, + 0.021326197, + 0.007378975, + -0.0102286795, + -0.0049084234, + -0.015337271, + -0.017941598, + -0.011564396, + -0.008266286, + -0.00094592053, + -0.028091947, + 0.037471842, + -0.040272396, + -0.01077473, + 0.0059353104, + 0.0048006503, + -0.01234264, + -0.01956543, + -0.0072523053, + -0.039468393, + -0.019472618, + 0.023948785, + 0.028162409, + 0.0057309233, + -0.031240575, + -0.017409774, + -0.0014654278, + 0.005183319, + -0.0029017355, + -0.012797274, + -0.020516014, + -0.0075067086, + -0.00082042953, + 0.0066630477, + -0.023727033, + 0.0028073161, + -0.011012005, + -0.008391659, + -0.017255412, + -0.0015324845, + 0.010508773, + 0.000861571, + -0.01052337, + 0.0066620577, + -0.044100184, + 0.0112760095, + -0.0028119942, + -0.00064989785, + -0.013971241, + 0.004070953, + -0.009176478, + 0.0012407908, + -0.005555813, + -0.019526256, + -0.016808294, + 0.01181177, + -0.018168578, + -0.004981628, + -0.018494023, + 0.00016852091, + -0.01595302, + -0.009044538, + -0.0038638273, + 0.011988196, + 0.0033150383, + 0.0010464905, + -0.012279207, + -0.007320689, + -0.016721658, + -0.005477049, + 0.007087126, + -0.009036167, + -0.018357866, + -0.016201103, + 0.013180893, + -0.024914682, + -0.009058528, + 0.0015120477, + -0.0039715, + -0.016615147, + 0.006148964, + -0.015124108, + 0.007174826, + 0.0027532277, + 0.0061352653, + -0.0116596855, + -0.012429456, + -0.0049899397, + -0.02375984, + -0.014536062, + -0.010742364, + 0.016982252, + -0.009823081, + -0.01445901, + -0.025638757, + -0.02449111, + -0.008669289, + -0.0046398416, + -0.0024130172, + -0.003912657, + -0.0160217, + -0.019298863, + 0.011173669, + 0.007491577, + -0.019011637, + -0.014743683, + 0.011284551, + -0.026438532, + -0.014208238, + -0.020804362, + 0.025647659, + -0.005781812, + -0.023986034, + -0.011995904, + -0.01754693, + -0.0026605441, + 0.010854698, + 0.0037815731, + -0.0025999548, + 0.0042241523, + 0.022534644, + 0.001368128, + -0.0015407057, + 0.026016567, + -0.031648193, + 0.015889851, + -0.003652683, + 0.02143588, + -0.009208465, + 0.03232197, + -0.002575126, + -0.00044488724, + -0.013068896, + -0.014607629, + 0.0012092937, + -0.01945023, + -0.0014319484, + -0.0031843681, + -0.03248617, + 0.003993651, + 0.019467857, + -0.0060033333, + -0.0022869422, + -0.0102377925, + 0.0013337124, + 0.0032422487, + -0.013979173, + 0.0015392515, + 0.015116975, + -0.0021839498, + -0.009924943, + -0.023407811, + 0.0029846109, + -0.033968, + 0.016370285, + -0.013772228, + -0.0054342593, + -0.008817385, + -0.0077298507, + -0.003388975, + -4.0446874e-05, + -0.013359335, + -0.0024284576, + 0.0030478453, + -0.013861289, + 0.019303937, + 0.004864856, + -0.025995074, + 0.00012406697, + 0.007539577, + 0.0037730772, + -0.003605427, + -0.013102383, + 0.00981678, + -0.029289017, + -0.03487515, + -0.019876607, + -0.013635231, + 0.0054685897, + 0.0134296445, + -0.0018817824, + -0.016823482, + 0.0006256985, + -0.014094345, + -0.015861392, + -0.024165811, + 0.008112393, + -0.006939017, + -0.00021693147, + -0.007663464, + -0.0056695407, + 0.004162621, + -0.0055753225, + 0.00012550167, + 0.011411295, + 0.0023459017, + 0.007887505, + -0.020961583, + -0.009043935, + -0.020790212, + 0.010463856, + -0.0076521127, + -0.008485478, + -0.006683129, + -0.00750382, + 0.007888278, + -0.010868555, + 0.001509835, + -0.002410355, + 0.024597183, + 0.016907036, + -0.000689188, + -0.016321097, + -0.0054498767, + 0.024000961, + -0.009244884, + 0.006574395, + -0.036676086, + 0.024954233, + -0.0153940385, + -0.006845422, + 0.012317833, + -0.014124201, + 0.014084118, + -0.0118043935, + -0.016353866, + -0.0022929772, + -0.0052316356, + -0.0065007852, + -0.020595131, + 0.0031764526, + 0.0046842173, + 0.0056096637, + 0.03940159, + -0.013272733, + -0.027221952, + -0.0051448354, + -0.027329642, + -0.011102113, + -0.019355152, + -0.021761814, + -0.022709401, + -0.019246206, + 0.01778386, + -0.0037366978, + -0.017836062, + 0.007974262, + 0.002994666, + -0.00026883307, + -0.016220363, + -0.002799865, + 0.009303887, + 0.010397043, + -0.015604253, + -0.0028518513, + -0.018982679, + -0.0171247, + -0.024898387, + -0.007785838, + -0.018529857, + -0.004166196, + -0.017312046, + -0.00543993, + -0.012419021, + 0.0029499715, + -0.011715426, + -0.010131563, + -0.0050904276, + 0.027058804, + 0.0035767483, + 0.0004944054, + 0.021838967, + -0.004613714, + -0.01214526, + -0.013378889, + -0.01710744, + -0.0075375894, + -0.0037119652, + -0.015165375, + 0.004143908, + -0.04025785, + -0.0033132553, + -0.00619713, + -0.00920869, + -0.010378621, + -0.0043712067, + -0.015192851, + 0.0067103575, + -0.01506615, + -0.028930992, + 0.01078919, + -0.013470796, + -0.0069370293, + 0.0028922246, + 0.006600068, + -0.0049232394, + -0.03408402, + -0.010147406, + -0.0009642006, + -0.0067758104, + -0.021408599, + 0.0060305432, + -0.03070982, + -0.016537005, + 0.0013582819, + 0.010959713, + -0.00596701, + 0.013273763, + 0.017487116, + -0.008956625, + 0.0085421065, + 0.009714164, + 0.0033002002, + -0.010773573, + -0.0109954635, + 0.0017225486, + -0.014120375, + -0.0010352664, + -0.01740134, + -0.008253479, + -0.004593172, + -0.01883984, + -0.01590181, + -0.02252157, + -0.008335624, + 0.013998822, + -0.00026131805, + 0.009276093, + -0.0011152753, + -0.021011736, + 0.021776248, + 0.0086504435, + -0.024220165, + 0.047308482, + -0.02330473, + -0.016758487, + -0.014728193, + -0.0012845338, + -0.01427333, + -0.018540084, + -0.01406015, + 0.0107733235, + -0.013769858, + -0.0024243994, + -0.012235012, + -0.02010138, + 0.022458771, + -0.026185984, + -0.0011448513, + 0.0008956818, + -0.0068303226, + -0.00387606, + -0.003286697, + -0.002224994, + -0.008836978, + -0.0033040482, + -0.010770658, + -0.0033302638, + -0.0077988436, + -0.0048527387, + 0.020280631, + -0.00025673176, + -0.010424809, + 0.012735964, + -0.024811327, + -0.006980725, + -0.00218889, + -0.00607064, + 0.005684907, + -0.01650914, + 0.0055547976, + -0.00697879, + 0.030144505, + 0.015624952, + -0.017355228, + 0.018415196, + -0.0044972943, + -0.048582297, + -0.015136938, + -0.021873742, + -0.0066478644, + -0.018285586, + 0.03506842, + 0.012811582, + 0.016054386, + -0.025412453, + 0.019985719, + -0.020838339, + -0.020516757, + -0.017694442, + 0.001522379, + 0.007276668, + -0.009224891, + 0.04289679, + -0.043806948, + 0.0045137876, + -0.0014176818, + -0.0035208613, + -0.0061832927, + -0.036067545, + 0.0008289272, + -0.021975042, + -0.0031435094, + 0.000993188, + 0.008541091, + 0.0016054512, + 0.01067553, + -0.03232991, + 0.008254791, + -0.005029444, + -0.003021628, + 0.012486732, + -0.011137098, + 0.005767313, + 0.030917577, + -0.005296257, + -0.005660382, + -0.017793316, + 0.011139009, + -0.020023402, + 0.029099615, + 0.029099522, + -0.010958508, + 0.014218172, + -0.014457493, + -0.011433509, + -0.01268396, + -0.019939065, + 0.004864924, + 0.012827044, + 0.0029915292, + -0.0016941187, + 0.01388918, + -0.008295497, + -0.0062352917, + 0.007430325, + -0.015113921, + -0.008779423, + 0.0042735552, + -0.030026264, + -0.014750076, + 0.002812826, + -0.0016399533, + -0.02811023, + -0.019847063, + 0.010038287, + 0.00034979277, + 0.0057241726, + 0.020976173, + -0.0056410288, + -0.004101229, + -0.03807306, + -0.013841248, + -0.019183075, + -0.00038743176, + -0.050610233, + 0.00064555794, + -0.0075685163, + 0.0059641246, + 0.011704027, + -0.016481744, + -0.0074290503, + -0.007303256, + 0.037177995, + -0.020355633, + -0.009164899, + -0.0059037893, + -0.0033979418, + -0.0070502358, + 0.036334842, + 0.02480497, + 0.0030912212, + -0.047471415, + 0.0073873135, + 0.0048995377, + -0.003103887, + 0.0012182941, + -0.006625856, + 0.007612092, + -0.009029891, + 0.027594076, + -0.026269589, + -0.0049307896, + 0.0029590952, + 0.0036534911, + 0.0017222957, + -0.007981315, + -0.0101044495, + -0.00042704341, + -0.0032369036, + -0.014376131, + 0.0029379139, + -0.019395225, + -0.0033542265, + -0.016467247, + -0.0035094887, + -0.023030171, + -0.0186813, + -0.02184213, + -0.010551426, + 0.00019149225, + -0.026196374, + 0.008885498, + -0.026862089, + -0.0031481797, + 0.007022501, + 0.024365101, + -0.011711737, + 0.032780305, + -0.011147974, + 0.00835869, + -0.038374532, + -0.006355475, + -0.013903681, + -0.022552652, + 0.0017756334, + -0.009400659, + -0.009261181, + -0.015954511, + -0.015179654, + 0.0026135368, + -0.011599254, + 0.0034217162, + -0.036295082, + 0.0063295774, + -0.010422398, + -0.02097392, + 0.007616132, + -0.009461811, + -0.013649009, + -0.012312523, + -0.0031836792, + 0.017096149, + 9.885602e-05, + -0.021877853, + 0.02138754, + 0.0014021149, + -0.016954927, + -0.023554781, + -0.017938988, + -0.007467494, + -0.022337044, + 0.0052428525, + -0.0020971033, + -0.016639411, + -0.005963454, + -0.033433314, + -0.0054290793, + 0.0018165865, + 0.010116618, + -0.0329881, + -0.037252087, + 0.0016615975, + -0.013126237, + -0.0027500032, + 0.009710254, + 0.013489196, + -0.014086252, + 0.005640568, + 0.0018614354, + 0.0017957003, + -0.0063741966, + -0.021977033, + 0.021149615, + -0.013358147, + -0.026758645, + -0.0010410182, + -0.013172669, + 0.0008788942, + -0.0019131787, + -0.0038254473, + 0.010575598, + -0.029643267, + -0.0019461301, + 0.009781983, + 0.009969317, + 0.0065335925, + -0.013310928, + -0.0104357945, + -0.019620582, + 0.007631552, + -0.032646075, + -0.004281611, + 0.013802951, + -0.004414085, + -0.009926759, + -0.02559784, + 4.326627e-05, + 0.0082937805, + -0.009667885, + -0.01870915, + 0.020496711, + -0.011273301, + -0.023658857, + 0.00788717, + 0.013530899, + -0.011871593, + -0.011768567, + -0.011034783, + 0.018615197, + -0.020548709, + 0.030475209, + -0.026186535, + -0.022474535, + -0.000820244, + 0.008970092, + -0.019536486, + 0.0069289105, + -0.02292964, + 0.00030525078, + 0.002923827, + -0.00519532, + -0.003896008, + -0.036030464, + 0.010368975, + -0.010359654, + -0.026400227, + -0.008094756, + -0.0012920672, + 0.011977711, + -0.0065868306, + -0.02029901, + 0.002234547, + -0.022629883, + 0.009448233, + -0.010912319, + -0.030890618, + -0.008026642, + -0.028337628, + 0.0025586556, + -0.010965824, + 0.003648428, + -0.036735665, + 0.017450748, + -0.013560755, + 0.022115685, + -0.010320128, + -0.017621316, + -0.021091737, + -0.010099321, + 0.031788595, + -0.013629081, + 0.0111586, + 0.0017552867, + -0.014540864, + -0.0355362, + -0.015597345, + -0.013847605, + -0.018329961, + -0.011605222, + -0.011716133, + -0.020717986, + -0.012582153, + -0.0048842994, + 0.012410503, + -0.0035272643, + 0.007538136, + -0.024279354, + -0.016442964, + -0.0048685977, + -0.0031264273, + -0.008626134, + -0.019813953, + -0.0062338924, + -0.018688211, + -0.026469776, + -0.021508532, + -0.0058569233, + -0.001743132, + 0.0017601134, + -0.025733523, + -0.010591176, + -0.026922379, + -0.0026534554, + -0.02466291, + -0.0015017163, + 0.0046899817, + -0.02033518, + -0.035908464, + -0.0057157134, + -0.035286058, + -0.00069113105, + -0.032105155, + 0.010819689, + -0.0067224973, + -0.03679166, + -0.017954983, + -0.015637923, + -0.0029725407, + -0.015779795, + 0.0031086712, + -0.0064795427, + -0.009476028, + -0.0041873273, + -0.014380421, + 0.0009175861, + 0.008863968, + -0.0034811047, + -0.020866387, + -0.012742399, + -0.0081917, + -0.009151527, + -0.0058321524, + -0.006132604, + 0.013910227, + 0.0027919796, + -0.0061903987, + -0.005210456, + -0.0003951758, + -0.023510043, + -0.008330886, + -0.018120931, + 0.013680823, + 0.0013859535, + -0.010085218, + 0.008397604, + 0.004232635, + -0.006848403, + -0.0034137208, + -0.01130211, + 0.005651865, + -0.003339298, + 0.015737586, + -0.005060538, + -0.021327173, + 0.010352311, + -0.017066034, + 0.0077072377, + 0.000902667, + 0.0034733762, + -0.022365259, + 0.044296827, + 0.001302414, + -0.005605957, + 0.010000981, + -0.009057611, + -0.0041207573, + -0.004125447, + -0.010617725, + 0.003198078, + -0.011311588, + 0.002807206, + -0.004496442, + -0.0062615797, + 0.011696453, + 0.00083496585, + 0.0025664687, + -0.00017857166, + -0.023453305, + -0.0026188006, + -0.023195663, + 0.004547153, + 0.009810369, + 0.0020241018, + -0.016738288, + -0.0043014954, + -0.020167794, + -0.013098089, + -0.026601689, + 0.029961053, + -0.017284866, + -0.009077913, + -0.015348705, + -0.00829961, + 0.011546813, + -0.026485236, + 0.004188631, + 0.0011772101, + -0.0267219, + -0.0057807947, + 0.00033858075, + -0.01986844, + 0.0073860297, + -0.00062826485, + -0.005359115, + -0.019454043, + 0.019202504, + 0.025047414, + 0.021698344, + -0.0007686592, + -0.0013343323, + -0.006022328, + 0.0013259862, + -0.0014614696, + -0.0035494675, + -0.026308367, + -0.0011603939, + -0.006742019, + 0.0006453566, + -0.010011715, + -0.013516419, + -0.019511973, + -0.0108796805, + -0.0029825915, + -0.03398868, + -0.026932871, + 0.000649301, + -0.02498519, + 0.000110987035, + -0.025441376, + -0.021680824, + -0.016078489, + -0.016946448, + -0.010831964, + -0.020681351, + -0.010125333, + -0.011447429, + -0.011936671, + -0.013050644, + -0.0048614633, + -0.009746257, + -0.013616909, + 0.025120068, + 0.01223304, + 0.007151878, + -0.005830875, + 0.0011767144, + -0.016420243, + -0.015311972, + -0.02488145, + -0.02115883, + 0.0049323295, + -0.02307409, + -0.014200081, + -0.022017533, + 0.038339775, + 0.021897348, + -0.01836389, + -0.015685275, + -0.014179661, + -0.009816517, + -0.0146982195, + -0.012578966, + -0.00888724, + -0.004107559, + 0.015336837, + 0.009680916, + 0.010824979, + -0.00809053, + -0.010219712, + -0.011829725, + 0.017646514, + -0.007354812, + -0.012800195, + 0.01710575, + -0.008403059, + -0.019986304, + -0.023259366, + 0.018305678, + 0.009282527, + -0.024031071, + 0.011203198, + -0.023150535, + 0.020939799, + -0.0032570832, + -0.012668098, + -0.00800845, + -0.0064038895, + -0.006658801, + -0.018130405, + -0.009120738, + 0.017240632, + -0.0044621676, + 0.00018420919, + -0.022104057, + -0.0004002381, + -0.009067512, + -0.008103371, + -0.008896798, + -0.004738882, + -0.01786075, + -0.015778223, + 0.0028698775, + 0.0015707732, + 0.002890519, + 0.0033663346, + -0.006722155, + 0.0030140597, + -0.0166132, + -0.006272728, + -0.009895308, + 0.0010615621, + -0.0058644414, + -0.0012439699, + -0.0173818, + -0.0076054865, + -0.012939136, + -0.0041439156, + -0.023958, + -0.02003097, + -0.028202854, + -0.025333442, + -0.016361088, + -0.003873225, + -0.0002605258, + -0.004661951, + -0.02786512, + 0.0008404889, + 0.020551428, + -0.005946354, + -0.019973423, + -0.02144436, + -0.0044456893, + -0.03636558, + 0.0039233654, + -0.00020458909, + -0.020104414, + -0.0062440997, + -0.028555423, + 0.0076396447, + 0.028204532, + -0.01822388, + -0.023507595, + 0.004216728, + 0.008037299, + -0.010313556, + -0.030878052, + 0.0026587453, + 0.0112635065, + -0.015004392, + 0.00221861, + -0.0077635753, + 0.030819118, + -0.0059827073, + 0.013025521, + 0.0029769335, + -0.011970294, + -0.0072157024, + -0.012454675, + -0.025670232, + -0.005500629, + -0.028571269, + 0.018172523, + -0.016049093, + -0.009140872, + 0.010436941, + -0.0034698886, + -0.017511705, + -0.0116391685, + -0.011034808, + -0.026318874, + 0.0070375907, + -0.008237502, + 0.020831272, + 0.0058125686, + -0.009334954, + -0.026142161, + -0.013394824, + -0.006196736, + -0.015122543, + -0.011682035, + -0.011658755, + -0.0012311875, + -0.002929252, + -0.007988357, + -0.0075381403, + -0.014461818, + -0.02376276, + 0.022439837, + -0.0045775548, + 0.03304396, + 0.006469699, + 0.028210955, + -0.0009983407, + -0.0057803965, + -0.020159377, + 0.004483504, + -0.011064179, + -0.010843107, + -0.02110467, + 0.014428233, + -0.014250521, + 0.0048961407, + -0.0018808448, + -0.023507584, + 0.018600376, + -0.016967988, + -0.014758099, + -0.005038972, + 0.0006219939, + -0.032750465, + 0.012756739, + -0.0010371811, + 0.008897247, + -0.0014373655, + -0.008689988, + -0.0047227046, + -0.030057626, + -0.027090559, + -0.018890172, + -0.009540445, + -0.025551548, + 0.004530197, + 0.040562436, + 0.0027396027, + -0.008448419, + -0.007282035, + 0.000638989, + -0.013573134, + 0.0029881755, + -0.020515775, + -0.004170868, + 0.0104327565, + 0.007433457, + 0.0063859643, + 0.0019237532, + -0.029214561, + -0.015604878, + -0.004193219, + -0.008445122, + 0.0038488947, + -0.006200185, + -0.009139234, + -0.011147654, + -0.009239246, + 0.0039309477, + 0.0056631207, + 0.006142753, + -0.008426713, + 0.017328225, + -0.016176576, + -0.008779057, + 0.0054016914, + 0.0056658597, + -0.012070902, + -0.023903161, + 0.010889201, + -0.021616373, + -0.03129812, + 0.014562863, + 0.033461474, + 0.008429142, + -0.0035406223, + 0.004148899, + -0.03042928, + 0.009312139, + -0.016392874, + 0.007152352, + 0.0035890788, + -0.004750848, + -0.019821167, + -0.029075524, + -0.008312111, + 0.009835204, + -0.011497869, + -0.013218086, + 0.018632043, + -0.03055715, + -0.0009436058, + -0.010584106, + -0.028172338, + -0.008096339, + 0.0046693166, + -0.012286485, + 0.01965629, + 0.002689662, + -0.01568748, + -0.019979456, + -0.009719859, + 0.0076917894, + 0.03044559, + -0.0056589944, + -0.019776192, + 0.022354115, + -0.031600177, + -0.00050871994, + -0.015045296, + -0.029754445, + -0.010673134, + 0.0018542171, + 0.00014284141, + -0.018575566, + -0.006398416, + 0.015799845, + -0.02017967, + -0.0009244646, + 0.00795864, + 0.013836239, + -0.012314846, + 0.025426233, + 0.0007603961, + -0.01214573, + -0.030253356, + -0.022841489, + -0.01958084, + 0.0011559259, + 0.0044001653, + -0.019666081, + -0.0002707212, + -0.018016696, + 0.02364771, + -0.0007522333, + 0.009159342, + 0.018108504, + -0.0039054526, + -0.012914903, + -0.026458323, + -0.01252346, + -0.018104345, + -0.0025428939, + 0.00746721, + -0.014672116, + 0.0015917298, + 0.0027414444, + -0.00968123, + 0.007453569, + 0.011292737, + -0.018588688, + -0.017825995, + -0.02841393, + -0.0035342248, + -0.0102556925, + 0.0017194175, + -0.02370282, + 0.027819902, + -0.015058881, + -0.00943918, + 0.016900716, + 0.012741688, + -0.010692994, + 0.011878977, + -0.029804518, + -0.021006279, + 0.0116966255, + -0.021757316, + -0.009622664, + 0.0052442993, + -0.0026630708, + 0.0034208496, + -0.006738219, + -0.016835665, + -0.00259439, + -0.009687702, + -0.019583654, + -0.014875623, + -0.005571152, + -0.014369153, + -0.012242405, + -0.013440611, + -0.020018164, + -0.013541855, + -0.01009889, + 0.011266638, + 0.00022487433, + -0.007696642, + -0.022840481, + 0.019613203, + 0.00046672823, + -0.011107818, + -0.01793444, + 0.018878266, + 0.0132896975, + 0.006871562, + -0.010485743, + -0.0022450357, + -0.01530554, + -0.024053443, + -0.024952175, + -0.006474325, + -0.0060599786, + 0.0207821, + 0.0054909172, + 0.03023663, + -0.009807053, + 0.016346248, + -0.024731614, + -0.024238808, + -0.041701127, + 0.0003788124, + -0.016588502, + 0.012677135, + -0.01887207, + -0.017064692, + -0.025595004, + -0.024988828, + -0.008743421, + 0.007303428, + -0.002198898, + 0.01858638, + -0.009068884, + -0.01651566, + -0.008617925, + -0.021229792, + 0.004006959, + -0.015446048, + 0.016445618, + 0.006357489, + -0.027671333, + -0.038655218, + 0.0118052345, + -0.023359273, + -0.018105583, + 0.0011674046, + 0.0066174446, + 0.014806315, + -0.020616626, + 0.013009609, + -0.019857967, + -0.009906762, + -0.018565524, + 0.024539173, + 0.012557264, + -0.0038168158, + -0.023117766, + -0.018990228, + -0.004224177, + -0.0052679544, + -0.00046470985, + 0.014715877, + -0.0302476, + -0.011885292, + -0.0016191769, + -0.005237256, + -0.011978674, + -0.013587999, + -0.001006419, + -0.01244415, + 0.009678362, + -0.02911059, + -0.020059096, + -0.017254801, + -0.041858852, + -0.003082271, + -0.01812408, + -0.023532812, + 0.01838369, + 0.017672747, + -0.017176826, + -0.018759483, + 0.0053057005, + -0.020076754, + -0.006086033, + -0.0033087856, + -0.010056167, + 0.02020322, + -0.0017190377, + -0.01818171, + -0.012311148, + -0.007763507, + -0.00352731, + 0.016823716, + -0.02058672, + -0.008564641, + -0.03151315, + -0.040152814, + 0.01296657, + -0.017419774, + -0.03147024, + 0.0020229402, + 0.00069914304, + 0.0020012115, + 0.018531272, + -0.012516651, + 0.013650561, + -0.025396463, + -0.004981668, + -0.014378896, + -0.04442826, + -0.0134278415, + -0.009240005, + 0.019974524, + 0.0021136985, + -0.009630157, + 0.0032540548, + -0.025850652, + -0.0018101495, + -0.014836053, + 0.004306431, + -0.0048001227, + -0.004609802, + 0.03045364, + 0.00097527565, + 0.008410311, + -0.012549174, + 0.0016880189, + 0.003826163, + -0.019462287, + -0.01524444, + -0.01931226, + -0.0015761431, + -0.012161752, + 0.016140152, + 0.005465088, + -0.016439904, + -0.023044081, + 0.021673888, + 0.011583047, + 0.0052513247, + -0.036185537, + -0.019719496, + -0.00036562144, + 0.026439648, + -0.009982066, + 0.025170343, + -0.0036624693, + 0.012767915, + -0.018865105, + 0.0025543622, + -0.009260004, + -0.004276746, + 0.001127539, + -0.017241921, + 0.018165952, + -0.017572932, + -0.019284077, + -0.010192666, + -0.0047850083, + -0.001533188, + -0.009737307, + -0.015051159, + -0.015775066, + -0.025350848, + 0.023654742, + -0.024231387, + -0.01573717, + 0.009178695, + -0.0037614063, + -0.008025164, + -0.009806063, + -0.00934691, + -0.026090939, + -0.019930815, + 0.015929451, + -0.0032784117, + -0.009443902, + -0.017172119, + -0.0030129044, + 0.006775024, + 0.009467764, + -0.019590091, + 0.0064222035, + -0.0059655337, + 0.021693703, + -0.013019521, + 0.004679663, + -0.013839016, + -0.01727782, + 0.0031262855, + -0.01158645, + 0.0028597277, + -0.0046470696, + -0.0007440196, + -0.023144327, + -0.0180074, + -0.0021433881, + -0.023728566, + -0.009049747, + -0.009999319, + -0.012203564, + 0.004431304, + 0.017956095, + -0.02861305, + -0.022162385, + -0.011863636, + -0.003384579, + 0.008258795, + -0.029551063, + 0.0035855838, + -0.02396504, + 0.011831551, + -0.01815343, + -0.021756224, + -0.0023578983, + -0.006612302, + 0.0031129597, + -0.010970307, + -0.011591917, + -0.017149126, + -0.02110033, + -0.028875446, + 0.0069934656, + 0.020106843, + -0.018312776, + 0.006590036, + 0.016517654, + -0.03767274, + -0.0056203716, + -0.00034339912, + -0.01712196, + 0.0075110146, + -0.01002899, + 0.0014104983, + -0.015426586, + 0.013718594, + -0.008895803, + 0.017132003, + 0.010037883, + 0.0063000033, + -0.03475948, + -0.00076915504, + -0.0005939196, + -0.014755753, + -0.0019401421, + 0.007805169, + 0.017452337, + -0.022440799, + -0.020982081, + -0.0011309796, + -0.0016376488, + -0.01195861, + -0.012677604, + 0.019062763, + 0.0019662783, + -0.01595366, + 7.201624e-06, + 0.014550922, + -0.010418035, + 0.009927929, + -0.011852455, + -0.0078118304, + -0.02277215, + 0.0026843848, + -0.020552834, + -0.006103287, + -0.005303082, + 0.0035224892, + -0.008312351, + -0.0006353812, + -0.017189467, + -0.02586242, + -0.017709877, + -0.005131983, + 0.00376791, + 0.020160712, + -0.032436185, + 0.014168724, + -0.010372592, + 0.011860946, + 0.0128529025, + 0.009730362, + -0.01758385, + -0.0101173045, + -0.003677982, + -0.008226454, + 0.012506057, + 0.022401836, + -0.010031301, + -0.0066375467, + -0.008042144, + -0.010656693, + 0.009267246, + 0.01745013, + 0.0038915547, + 0.009999037, + -0.0051667895, + -0.00024990315, + -0.018269762, + -0.008577881, + 0.0028099352, + -0.016264735, + 0.004017513, + -0.013695206, + -0.011532779, + -0.0097365845, + 0.008769448, + -0.010062122, + -0.013803794, + -0.034587856, + -0.009408144, + 0.015296847, + -0.025755694, + -0.026889069, + -0.025413716, + 0.023346214, + 0.0010507738, + -0.007523373, + -0.02030321, + 0.014575785, + -0.0058319513, + -0.0024656511, + -0.016893305, + -0.024855215, + 0.0131835975, + 0.018262751, + 0.009975524, + -0.028405858, + 0.0041584405, + -0.008311036, + 0.013958382, + -0.0052226963, + -0.007109617, + 0.011304845, + -0.022520186, + -0.031229103, + -0.014087619, + 0.017397502, + -0.0017656098, + -0.018357333, + 0.0015378691, + -0.010725996, + 0.00771457, + 0.008088001, + -0.004827258, + 0.017829027, + 0.0065529286, + -0.030403022, + -0.016402796, + 0.026900865, + -0.03353542, + -0.023426538, + -0.024444276, + -0.01972909, + 0.011811416, + 0.0050681517, + -0.01475875, + -0.011247187, + -0.011684087, + -0.0027768228, + -0.022227487, + -0.015034721, + -0.014623344, + 0.0068000453, + 0.00745547, + -0.005583459, + -0.004602129, + -0.0029762674, + -0.008748469, + -0.03156061, + -0.0058598784, + 0.0015160393, + -0.0062050815, + 0.0011190799, + -0.00397414, + -0.013863251, + 0.012362396, + -0.0059487964, + -0.029067567, + 0.01529495, + -0.012960237, + 0.016511772, + 0.011528293, + -0.023317248, + -0.0010009008, + -0.01567108, + 0.04199561, + -0.0058690663, + 0.012977421, + 0.016146274, + 0.01986377, + 0.03541751, + 0.0023689403, + 0.008459259, + 0.007347248, + 0.006008877, + 0.00620418, + -0.026136855, + -0.021017725, + -0.022555191, + 0.011821282, + -0.023486294, + -0.010196691, + -0.0012848292 ], "paletteEmbedding": [ - 5.4996064e-5, 0.00010999213, 0.00016498819, 0.00032997638, - 0.00016498819, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, 0.00010999213, - 0.00027498032, 0.00032997638, 0.00054996065, 5.4996064e-5, 5.4996064e-5, - 0.0, 0.0, 0.0, 0.0, 0.00021998426, 0.0006049567, 0.0010449252, - 0.0011549174, 0.00065995276, 0.00038497246, 5.4996064e-5, 0.0, 0.0, 0.0, - 0.00021998426, 0.00038497246, 0.0010999213, 0.0014848937, 0.0009899292, - 0.0004399685, 0.0, 0.0, 0.0, 0.0, 0.0, 0.00016498819, 0.00054996065, - 0.0007699449, 0.00065995276, 0.00038497246, 5.4996064e-5, 0.0, 0.0, 0.0, - 0.0, 0.00016498819, 0.0004949646, 0.0004399685, 0.00010999213, 0.0, - 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, 5.4996064e-5, 0.0, 0.00010999213, - 0.00016498819, 5.4996064e-5, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.00016498819, 0.00038497246, 0.00071494887, 0.00065995276, - 0.00032997638, 0.00021998426, 5.4996064e-5, 0.0, 0.0, 0.0, - 0.00032997638, 0.0018698663, 0.0019798584, 0.0029697875, 0.0013749016, - 0.0007699449, 0.00010999213, 0.0, 0.0, 0.0, 0.0006049567, 0.002474823, - 0.004234697, 0.0056095985, 0.0041797007, 0.0015398898, 0.00016498819, - 0.0, 0.0, 0.0, 0.000879937, 0.0028047992, 0.00643454, 0.007974429, - 0.005719591, 0.0020898504, 0.00038497246, 5.4996064e-5, 0.0, 0.0, - 0.00032997638, 0.001704878, 0.0046196696, 0.0062145554, 0.0053896145, - 0.002584815, 0.00071494887, 0.00016498819, 0.0, 0.0, 0.00010999213, - 0.0004399685, 0.0012649095, 0.0020898504, 0.0027498032, 0.0015398898, - 0.0004949646, 0.00021998426, 0.0, 0.0, 5.4996064e-5, 0.00010999213, - 0.00054996065, 0.00065995276, 0.0004399685, 0.00032997638, - 0.00010999213, 0.0, 0.0, 0.0, 0.0, 5.4996064e-5, 0.0, 5.4996064e-5, - 0.00010999213, 0.00010999213, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.00016498819, 0.00021998426, 0.001649882, 0.0012649095, - 0.00065995276, 0.00054996065, 0.00021998426, 0.0, 0.0, 0.0, 0.000824941, - 0.0031347757, 0.0045646736, 0.0053896145, 0.0041797007, 0.0015398898, - 0.00021998426, 0.0, 0.0, 0.0, 0.0013749016, 0.005829583, 0.011824154, - 0.015893864, 0.012484107, 0.004454681, 0.0009899292, 0.00010999213, 0.0, - 0.0, 0.0012099134, 0.0061595594, 0.017928718, 0.02430826, 0.01913863, - 0.009899292, 0.002639811, 0.00038497246, 5.4996064e-5, 0.0, - 0.0007699449, 0.0047846576, 0.013639024, 0.022438394, 0.020238552, - 0.012594099, 0.0035747443, 0.0004399685, 0.00010999213, 0.0, - 0.00021998426, 0.0022548386, 0.0067645162, 0.011989142, 0.01187915, - 0.0079194335, 0.0030797797, 0.00038497246, 0.00010999213, 0.0, - 5.4996064e-5, 0.00054996065, 0.0018698663, 0.0029147915, 0.004344689, - 0.0030797797, 0.00093493314, 0.00027498032, 5.4996064e-5, 0.0, 0.0, 0.0, - 0.00016498819, 0.0004949646, 0.0010449252, 0.00071494887, 0.00021998426, - 0.00021998426, 0.0, 0.0, 0.0, 0.0, 0.0, 5.4996064e-5, 0.0, - 0.00021998426, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.00010999213, 0.00065995276, 0.0015398898, - 0.000824941, 0.000824941, 0.00038497246, 0.00010999213, 0.0, 0.0, 0.0, - 0.00071494887, 0.0026948072, 0.005829583, 0.009679307, 0.006929504, - 0.0029697875, 0.00065995276, 0.00010999213, 5.4996064e-5, 0.0, - 0.0013749016, 0.006819512, 0.019468607, 0.02782801, 0.022273406, - 0.011384185, 0.0026948072, 0.0006049567, 0.0, 0.0, 0.0014848937, - 0.00951432, 0.027333044, 0.046911642, 0.046251692, 0.025408182, - 0.0080294255, 0.0010999213, 0.00016498819, 0.0, 0.00093493314, - 0.008579386, 0.024748228, 0.049276475, 0.05257624, 0.032667663, - 0.012099135, 0.0029147915, 0.00027498032, 0.0, 0.0006049567, - 0.0040697088, 0.014078992, 0.029257907, 0.03519748, 0.02348332, - 0.009569315, 0.0021998426, 0.00038497246, 5.4996064e-5, 0.00016498819, - 0.000824941, 0.004234697, 0.009679307, 0.014298977, 0.01187915, - 0.00670952, 0.0021448466, 0.0004399685, 0.0, 0.0, 0.00027498032, - 0.0006049567, 0.002529819, 0.0039047205, 0.0037397326, 0.0019248623, - 0.000879937, 0.00021998426, 5.4996064e-5, 0.0, 0.0, 0.0, 0.00016498819, - 0.00065995276, 0.00093493314, 0.0004949646, 0.00038497246, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 5.4996064e-5, 5.4996064e-5, 5.4996064e-5, - 5.4996064e-5, 0.0, 0.0, 0.00016498819, 0.0004399685, 0.0010999213, - 0.0012099134, 0.0009899292, 0.00032997638, 0.00016498819, 0.0, 0.0, 0.0, - 0.00038497246, 0.0018148702, 0.0054996065, 0.0071494887, 0.0073694726, - 0.002584815, 0.00093493314, 5.4996064e-5, 0.0, 0.0, 0.00071494887, - 0.0046196696, 0.016113847, 0.028487962, 0.02766302, 0.015123918, - 0.0035747443, 0.0007699449, 5.4996064e-5, 0.0, 0.0013199055, - 0.008579386, 0.0307428, 0.05774587, 0.061870575, 0.035252478, - 0.01286908, 0.0026948072, 0.00038497246, 0.0, 0.0009899292, 0.007974429, - 0.02964288, 0.06610527, 0.08023926, 0.05664595, 0.023593312, - 0.005884579, 0.00093493314, 5.4996064e-5, 0.0004399685, 0.004454681, - 0.016828796, 0.04669166, 0.06456538, 0.055546027, 0.02810299, - 0.009954288, 0.001649882, 0.00027498032, 0.00010999213, 0.0010999213, - 0.00643454, 0.020788513, 0.0321727, 0.034537528, 0.020513533, - 0.008414398, 0.002474823, 0.0004399685, 5.4996064e-5, 0.00027498032, - 0.0013199055, 0.0048396536, 0.012594099, 0.01341904, 0.009899292, - 0.005719591, 0.001594886, 0.00016498819, 0.0, 0.0, 0.00010999213, - 0.00071494887, 0.0023098348, 0.0030797797, 0.003464752, 0.002474823, - 0.0010449252, 0.00032997638, 0.0, 0.0, 5.4996064e-5, 0.00010999213, - 0.0004399685, 0.00065995276, 0.0012099134, 0.00038497246, 0.00032997638, - 0.00021998426, 0.0, 0.00021998426, 0.00032997638, 0.0004399685, - 0.00054996065, 0.00038497246, 0.0, 0.0, 0.0, 0.0, 0.00010999213, - 0.00054996065, 0.0021998426, 0.0038497245, 0.0041247047, 0.0021998426, - 0.0006049567, 0.00016498819, 5.4996064e-5, 0.0, 0.00032997638, - 0.0020348544, 0.007809441, 0.018093705, 0.016663808, 0.012539103, - 0.0035747443, 0.0011549174, 0.00010999213, 0.0, 0.0009899292, - 0.004289693, 0.017433753, 0.03745232, 0.052191265, 0.037782297, - 0.015563887, 0.003519748, 0.000824941, 0.0, 0.0007699449, 0.004949646, - 0.022108419, 0.05356617, 0.0810092, 0.06643525, 0.035252478, - 0.012374114, 0.0018148702, 0.00038497246, 0.00065995276, 0.003464752, - 0.014628953, 0.044491816, 0.0768845, 0.08848867, 0.05818584, - 0.021723446, 0.0055546025, 0.00071494887, 0.00027498032, 0.0007699449, - 0.005774587, 0.021448465, 0.051256333, 0.06731518, 0.054996066, - 0.027938, 0.010504249, 0.001649882, 5.4996064e-5, 0.00016498819, - 0.0022548386, 0.007974429, 0.01902864, 0.0363524, 0.033602595, - 0.027168056, 0.01033926, 0.0027498032, 0.0, 5.4996064e-5, 0.00038497246, - 0.0018698663, 0.0056095985, 0.012429111, 0.014243981, 0.013639024, - 0.006929504, 0.002529819, 0.0, 0.0, 0.00016498819, 0.00021998426, - 0.0007699449, 0.0029147915, 0.0048946496, 0.005224626, 0.0031347757, - 0.0010449252, 0.0, 5.4996064e-5, 5.4996064e-5, 0.00016498819, 0.0, - 5.4996064e-5, 0.0, 0.0, 5.4996064e-5, 0.0, 0.0, 5.4996064e-5, - 0.00054996065, 0.0007699449, 0.0011549174, 0.0012099134, 0.00016498819, - 5.4996064e-5, 0.0, 0.0, 0.0, 0.0010999213, 0.0028047992, 0.005004642, - 0.009129347, 0.0053346185, 0.0027498032, 0.00093493314, 0.00016498819, - 5.4996064e-5, 5.4996064e-5, 0.0009899292, 0.005884579, 0.01550889, - 0.02584815, 0.021778442, 0.011054209, 0.0037947285, 0.00065995276, 0.0, - 0.00021998426, 0.0022548386, 0.008744374, 0.028982926, 0.0503214, - 0.053181194, 0.03442754, 0.014408969, 0.0047846576, 0.00093493314, - 0.00010999213, 0.0010999213, 0.008634382, 0.030962784, 0.06264052, - 0.08568387, 0.07710449, 0.039047208, 0.012924075, 0.002584815, - 0.00010999213, 0.0007699449, 0.0036847363, 0.019578598, 0.05268623, - 0.09162345, 0.097893, 0.063575454, 0.028267978, 0.006819512, - 5.4996064e-5, 0.0, 0.0018698663, 0.01006428, 0.032502674, 0.06220055, - 0.09068851, 0.07281479, 0.04553674, 0.013474036, 0.0, 0.0, 0.0004399685, - 0.0026948072, 0.011054209, 0.028707946, 0.048836507, 0.057690874, - 0.039707158, 0.014793942, 0.0, 0.0, 0.00010999213, 0.000824941, - 0.0026948072, 0.009679307, 0.0223834, 0.0293679, 0.01941361, - 0.008579386, 0.0, 0.0, 0.0, 0.0, 0.00010999213, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.00010999213, 0.00010999213, 0.00027498032, 0.00010999213, - 0.00010999213, 5.4996064e-5, 0.0, 0.0, 0.0, 0.00027498032, - 0.00054996065, 0.0012099134, 0.0018698663, 0.0023098348, 0.0011549174, - 0.00032997638, 5.4996064e-5, 0.0, 5.4996064e-5, 0.00032997638, - 0.001649882, 0.0041797007, 0.008469394, 0.010229268, 0.007039496, - 0.0027498032, 0.0007699449, 5.4996064e-5, 5.4996064e-5, 0.00027498032, - 0.002529819, 0.009294335, 0.021118488, 0.028597955, 0.02529819, - 0.014023997, 0.0046746656, 0.00093493314, 0.0, 0.00021998426, - 0.0023648308, 0.014188984, 0.03899221, 0.061925568, 0.0699, 0.048671518, - 0.021833438, 0.0053896145, 0.0, 5.4996064e-5, 0.0021448466, 0.011164201, - 0.04113706, 0.090083554, 0.12088135, 0.10608741, 0.060220692, - 0.019248623, 0.0, 0.00021998426, 0.000824941, 0.006654524, 0.028432965, - 0.08133918, 0.1508542, 0.16889292, 0.11378686, 0.03871723, 0.0, - 0.00010999213, 0.00027498032, 0.0023098348, 0.0135290325, 0.052741226, - 0.11813155, 0.15662879, 0.11862651, 0.0432819, 0.0, 0.0, 0.0, - 0.0006049567, 0.0039597168, 0.020623524, 0.05510606, 0.08133918, - 0.07198985, 0.028322974, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.00032997638, 0.0004949646, 0.00027498032, 0.00027498032, - 0.00010999213, 0.00016498819, 0.0, 0.0, 0.0, 0.00010999213, 0.000879937, - 0.0018148702, 0.0030797797, 0.002639811, 0.0013199055, 0.00038497246, - 0.00016498819, 5.4996064e-5, 0.0, 0.00054996065, 0.0022548386, - 0.005994571, 0.009404327, 0.010944217, 0.008689378, 0.0037947285, - 0.000824941, 0.0, 0.00010999213, 0.000879937, 0.0037397326, 0.014628953, - 0.031512745, 0.045096774, 0.04014713, 0.020513533, 0.0072594807, 0.0, - 0.0, 0.000824941, 0.005059638, 0.023153344, 0.0614856, 0.10641739, - 0.12198127, 0.08199913, 0.0321727, 0.0, 0.0, 0.0004949646, 0.0023098348, - 0.021283478, 0.0755096, 0.17422754, 0.22251408, 0.16168843, 0.06748017, - 0.0, 0.0, 0.00016498819, 0.0018698663, 0.013859008, 0.063245475, - 0.16443823, 0.24522746, 0.19815083, 0.083869, 0.0, 0.0, 5.4996064e-5, - 0.0004949646, 0.0053346185, 0.03145775, 0.09475822, 0.14304477, - 0.12819582, 0.05686593, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 5.4996064e-5, 0.00016498819, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.00010999213, 0.00021998426, 0.00032997638, 0.00065995276, - 0.0004399685, 0.00010999213, 5.4996064e-5, 0.0, 0.0, 0.0, 0.0006049567, - 0.0014298977, 0.0026948072, 0.0039597168, 0.00335476, 0.0010449252, - 0.00065995276, 0.0, 0.0, 5.4996064e-5, 0.00093493314, 0.0036847363, - 0.009734304, 0.020513533, 0.023703305, 0.013914005, 0.006544532, 0.0, - 0.0, 0.00038497246, 0.00093493314, 0.0080294255, 0.026068134, - 0.06330047, 0.085353896, 0.06302549, 0.02755303, 0.0, 0.0, - 0.00016498819, 0.0013199055, 0.009129347, 0.04531676, 0.12814084, - 0.17923218, 0.14744446, 0.06049567, 0.0, 0.0, 5.4996064e-5, - 0.00065995276, 0.008854367, 0.04108206, 0.13089064, 0.21563958, - 0.18286192, 0.07776444, 0.0, 0.0, 0.0, 0.00032997638, 0.004399685, - 0.025353186, 0.07853438, 0.13375042, 0.11450181, 0.050101414 + 5.4996064e-05, + 0.00010999213, + 0.00016498819, + 0.00032997638, + 0.00016498819, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.00027498032, + 0.00032997638, + 0.00054996065, + 5.4996064e-05, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00021998426, + 0.0006049567, + 0.0010449252, + 0.0011549174, + 0.00065995276, + 0.00038497246, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.00021998426, + 0.00038497246, + 0.0010999213, + 0.0014848937, + 0.0009899292, + 0.0004399685, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.00054996065, + 0.0007699449, + 0.00065995276, + 0.00038497246, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.0004949646, + 0.0004399685, + 0.00010999213, + 0.0, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 0.0, + 0.00010999213, + 0.00016498819, + 5.4996064e-05, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.00038497246, + 0.00071494887, + 0.00065995276, + 0.00032997638, + 0.00021998426, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.00032997638, + 0.0018698663, + 0.0019798584, + 0.0029697875, + 0.0013749016, + 0.0007699449, + 0.00010999213, + 0.0, + 0.0, + 0.0, + 0.0006049567, + 0.002474823, + 0.004234697, + 0.0056095985, + 0.0041797007, + 0.0015398898, + 0.00016498819, + 0.0, + 0.0, + 0.0, + 0.000879937, + 0.0028047992, + 0.00643454, + 0.007974429, + 0.005719591, + 0.0020898504, + 0.00038497246, + 5.4996064e-05, + 0.0, + 0.0, + 0.00032997638, + 0.001704878, + 0.0046196696, + 0.0062145554, + 0.0053896145, + 0.002584815, + 0.00071494887, + 0.00016498819, + 0.0, + 0.0, + 0.00010999213, + 0.0004399685, + 0.0012649095, + 0.0020898504, + 0.0027498032, + 0.0015398898, + 0.0004949646, + 0.00021998426, + 0.0, + 0.0, + 5.4996064e-05, + 0.00010999213, + 0.00054996065, + 0.00065995276, + 0.0004399685, + 0.00032997638, + 0.00010999213, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 0.0, + 5.4996064e-05, + 0.00010999213, + 0.00010999213, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.00021998426, + 0.001649882, + 0.0012649095, + 0.00065995276, + 0.00054996065, + 0.00021998426, + 0.0, + 0.0, + 0.0, + 0.000824941, + 0.0031347757, + 0.0045646736, + 0.0053896145, + 0.0041797007, + 0.0015398898, + 0.00021998426, + 0.0, + 0.0, + 0.0, + 0.0013749016, + 0.005829583, + 0.011824154, + 0.015893864, + 0.012484107, + 0.004454681, + 0.0009899292, + 0.00010999213, + 0.0, + 0.0, + 0.0012099134, + 0.0061595594, + 0.017928718, + 0.02430826, + 0.01913863, + 0.009899292, + 0.002639811, + 0.00038497246, + 5.4996064e-05, + 0.0, + 0.0007699449, + 0.0047846576, + 0.013639024, + 0.022438394, + 0.020238552, + 0.012594099, + 0.0035747443, + 0.0004399685, + 0.00010999213, + 0.0, + 0.00021998426, + 0.0022548386, + 0.0067645162, + 0.011989142, + 0.01187915, + 0.0079194335, + 0.0030797797, + 0.00038497246, + 0.00010999213, + 0.0, + 5.4996064e-05, + 0.00054996065, + 0.0018698663, + 0.0029147915, + 0.004344689, + 0.0030797797, + 0.00093493314, + 0.00027498032, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.0004949646, + 0.0010449252, + 0.00071494887, + 0.00021998426, + 0.00021998426, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 0.0, + 0.00021998426, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.00065995276, + 0.0015398898, + 0.000824941, + 0.000824941, + 0.00038497246, + 0.00010999213, + 0.0, + 0.0, + 0.0, + 0.00071494887, + 0.0026948072, + 0.005829583, + 0.009679307, + 0.006929504, + 0.0029697875, + 0.00065995276, + 0.00010999213, + 5.4996064e-05, + 0.0, + 0.0013749016, + 0.006819512, + 0.019468607, + 0.02782801, + 0.022273406, + 0.011384185, + 0.0026948072, + 0.0006049567, + 0.0, + 0.0, + 0.0014848937, + 0.00951432, + 0.027333044, + 0.046911642, + 0.046251692, + 0.025408182, + 0.0080294255, + 0.0010999213, + 0.00016498819, + 0.0, + 0.00093493314, + 0.008579386, + 0.024748228, + 0.049276475, + 0.05257624, + 0.032667663, + 0.012099135, + 0.0029147915, + 0.00027498032, + 0.0, + 0.0006049567, + 0.0040697088, + 0.014078992, + 0.029257907, + 0.03519748, + 0.02348332, + 0.009569315, + 0.0021998426, + 0.00038497246, + 5.4996064e-05, + 0.00016498819, + 0.000824941, + 0.004234697, + 0.009679307, + 0.014298977, + 0.01187915, + 0.00670952, + 0.0021448466, + 0.0004399685, + 0.0, + 0.0, + 0.00027498032, + 0.0006049567, + 0.002529819, + 0.0039047205, + 0.0037397326, + 0.0019248623, + 0.000879937, + 0.00021998426, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.00016498819, + 0.00065995276, + 0.00093493314, + 0.0004949646, + 0.00038497246, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 5.4996064e-05, + 5.4996064e-05, + 5.4996064e-05, + 0.0, + 0.0, + 0.00016498819, + 0.0004399685, + 0.0010999213, + 0.0012099134, + 0.0009899292, + 0.00032997638, + 0.00016498819, + 0.0, + 0.0, + 0.0, + 0.00038497246, + 0.0018148702, + 0.0054996065, + 0.0071494887, + 0.0073694726, + 0.002584815, + 0.00093493314, + 5.4996064e-05, + 0.0, + 0.0, + 0.00071494887, + 0.0046196696, + 0.016113847, + 0.028487962, + 0.02766302, + 0.015123918, + 0.0035747443, + 0.0007699449, + 5.4996064e-05, + 0.0, + 0.0013199055, + 0.008579386, + 0.0307428, + 0.05774587, + 0.061870575, + 0.035252478, + 0.01286908, + 0.0026948072, + 0.00038497246, + 0.0, + 0.0009899292, + 0.007974429, + 0.02964288, + 0.06610527, + 0.08023926, + 0.05664595, + 0.023593312, + 0.005884579, + 0.00093493314, + 5.4996064e-05, + 0.0004399685, + 0.004454681, + 0.016828796, + 0.04669166, + 0.06456538, + 0.055546027, + 0.02810299, + 0.009954288, + 0.001649882, + 0.00027498032, + 0.00010999213, + 0.0010999213, + 0.00643454, + 0.020788513, + 0.0321727, + 0.034537528, + 0.020513533, + 0.008414398, + 0.002474823, + 0.0004399685, + 5.4996064e-05, + 0.00027498032, + 0.0013199055, + 0.0048396536, + 0.012594099, + 0.01341904, + 0.009899292, + 0.005719591, + 0.001594886, + 0.00016498819, + 0.0, + 0.0, + 0.00010999213, + 0.00071494887, + 0.0023098348, + 0.0030797797, + 0.003464752, + 0.002474823, + 0.0010449252, + 0.00032997638, + 0.0, + 0.0, + 5.4996064e-05, + 0.00010999213, + 0.0004399685, + 0.00065995276, + 0.0012099134, + 0.00038497246, + 0.00032997638, + 0.00021998426, + 0.0, + 0.00021998426, + 0.00032997638, + 0.0004399685, + 0.00054996065, + 0.00038497246, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.00054996065, + 0.0021998426, + 0.0038497245, + 0.0041247047, + 0.0021998426, + 0.0006049567, + 0.00016498819, + 5.4996064e-05, + 0.0, + 0.00032997638, + 0.0020348544, + 0.007809441, + 0.018093705, + 0.016663808, + 0.012539103, + 0.0035747443, + 0.0011549174, + 0.00010999213, + 0.0, + 0.0009899292, + 0.004289693, + 0.017433753, + 0.03745232, + 0.052191265, + 0.037782297, + 0.015563887, + 0.003519748, + 0.000824941, + 0.0, + 0.0007699449, + 0.004949646, + 0.022108419, + 0.05356617, + 0.0810092, + 0.06643525, + 0.035252478, + 0.012374114, + 0.0018148702, + 0.00038497246, + 0.00065995276, + 0.003464752, + 0.014628953, + 0.044491816, + 0.0768845, + 0.08848867, + 0.05818584, + 0.021723446, + 0.0055546025, + 0.00071494887, + 0.00027498032, + 0.0007699449, + 0.005774587, + 0.021448465, + 0.051256333, + 0.06731518, + 0.054996066, + 0.027938, + 0.010504249, + 0.001649882, + 5.4996064e-05, + 0.00016498819, + 0.0022548386, + 0.007974429, + 0.01902864, + 0.0363524, + 0.033602595, + 0.027168056, + 0.01033926, + 0.0027498032, + 0.0, + 5.4996064e-05, + 0.00038497246, + 0.0018698663, + 0.0056095985, + 0.012429111, + 0.014243981, + 0.013639024, + 0.006929504, + 0.002529819, + 0.0, + 0.0, + 0.00016498819, + 0.00021998426, + 0.0007699449, + 0.0029147915, + 0.0048946496, + 0.005224626, + 0.0031347757, + 0.0010449252, + 0.0, + 5.4996064e-05, + 5.4996064e-05, + 0.00016498819, + 0.0, + 5.4996064e-05, + 0.0, + 0.0, + 5.4996064e-05, + 0.0, + 0.0, + 5.4996064e-05, + 0.00054996065, + 0.0007699449, + 0.0011549174, + 0.0012099134, + 0.00016498819, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0010999213, + 0.0028047992, + 0.005004642, + 0.009129347, + 0.0053346185, + 0.0027498032, + 0.00093493314, + 0.00016498819, + 5.4996064e-05, + 5.4996064e-05, + 0.0009899292, + 0.005884579, + 0.01550889, + 0.02584815, + 0.021778442, + 0.011054209, + 0.0037947285, + 0.00065995276, + 0.0, + 0.00021998426, + 0.0022548386, + 0.008744374, + 0.028982926, + 0.0503214, + 0.053181194, + 0.03442754, + 0.014408969, + 0.0047846576, + 0.00093493314, + 0.00010999213, + 0.0010999213, + 0.008634382, + 0.030962784, + 0.06264052, + 0.08568387, + 0.07710449, + 0.039047208, + 0.012924075, + 0.002584815, + 0.00010999213, + 0.0007699449, + 0.0036847363, + 0.019578598, + 0.05268623, + 0.09162345, + 0.097893, + 0.063575454, + 0.028267978, + 0.006819512, + 5.4996064e-05, + 0.0, + 0.0018698663, + 0.01006428, + 0.032502674, + 0.06220055, + 0.09068851, + 0.07281479, + 0.04553674, + 0.013474036, + 0.0, + 0.0, + 0.0004399685, + 0.0026948072, + 0.011054209, + 0.028707946, + 0.048836507, + 0.057690874, + 0.039707158, + 0.014793942, + 0.0, + 0.0, + 0.00010999213, + 0.000824941, + 0.0026948072, + 0.009679307, + 0.0223834, + 0.0293679, + 0.01941361, + 0.008579386, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.00010999213, + 0.00027498032, + 0.00010999213, + 0.00010999213, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.00027498032, + 0.00054996065, + 0.0012099134, + 0.0018698663, + 0.0023098348, + 0.0011549174, + 0.00032997638, + 5.4996064e-05, + 0.0, + 5.4996064e-05, + 0.00032997638, + 0.001649882, + 0.0041797007, + 0.008469394, + 0.010229268, + 0.007039496, + 0.0027498032, + 0.0007699449, + 5.4996064e-05, + 5.4996064e-05, + 0.00027498032, + 0.002529819, + 0.009294335, + 0.021118488, + 0.028597955, + 0.02529819, + 0.014023997, + 0.0046746656, + 0.00093493314, + 0.0, + 0.00021998426, + 0.0023648308, + 0.014188984, + 0.03899221, + 0.061925568, + 0.0699, + 0.048671518, + 0.021833438, + 0.0053896145, + 0.0, + 5.4996064e-05, + 0.0021448466, + 0.011164201, + 0.04113706, + 0.090083554, + 0.12088135, + 0.10608741, + 0.060220692, + 0.019248623, + 0.0, + 0.00021998426, + 0.000824941, + 0.006654524, + 0.028432965, + 0.08133918, + 0.1508542, + 0.16889292, + 0.11378686, + 0.03871723, + 0.0, + 0.00010999213, + 0.00027498032, + 0.0023098348, + 0.0135290325, + 0.052741226, + 0.11813155, + 0.15662879, + 0.11862651, + 0.0432819, + 0.0, + 0.0, + 0.0, + 0.0006049567, + 0.0039597168, + 0.020623524, + 0.05510606, + 0.08133918, + 0.07198985, + 0.028322974, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00032997638, + 0.0004949646, + 0.00027498032, + 0.00027498032, + 0.00010999213, + 0.00016498819, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.000879937, + 0.0018148702, + 0.0030797797, + 0.002639811, + 0.0013199055, + 0.00038497246, + 0.00016498819, + 5.4996064e-05, + 0.0, + 0.00054996065, + 0.0022548386, + 0.005994571, + 0.009404327, + 0.010944217, + 0.008689378, + 0.0037947285, + 0.000824941, + 0.0, + 0.00010999213, + 0.000879937, + 0.0037397326, + 0.014628953, + 0.031512745, + 0.045096774, + 0.04014713, + 0.020513533, + 0.0072594807, + 0.0, + 0.0, + 0.000824941, + 0.005059638, + 0.023153344, + 0.0614856, + 0.10641739, + 0.12198127, + 0.08199913, + 0.0321727, + 0.0, + 0.0, + 0.0004949646, + 0.0023098348, + 0.021283478, + 0.0755096, + 0.17422754, + 0.22251408, + 0.16168843, + 0.06748017, + 0.0, + 0.0, + 0.00016498819, + 0.0018698663, + 0.013859008, + 0.063245475, + 0.16443823, + 0.24522746, + 0.19815083, + 0.083869, + 0.0, + 0.0, + 5.4996064e-05, + 0.0004949646, + 0.0053346185, + 0.03145775, + 0.09475822, + 0.14304477, + 0.12819582, + 0.05686593, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 5.4996064e-05, + 0.00016498819, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00010999213, + 0.00021998426, + 0.00032997638, + 0.00065995276, + 0.0004399685, + 0.00010999213, + 5.4996064e-05, + 0.0, + 0.0, + 0.0, + 0.0006049567, + 0.0014298977, + 0.0026948072, + 0.0039597168, + 0.00335476, + 0.0010449252, + 0.00065995276, + 0.0, + 0.0, + 5.4996064e-05, + 0.00093493314, + 0.0036847363, + 0.009734304, + 0.020513533, + 0.023703305, + 0.013914005, + 0.006544532, + 0.0, + 0.0, + 0.00038497246, + 0.00093493314, + 0.0080294255, + 0.026068134, + 0.06330047, + 0.085353896, + 0.06302549, + 0.02755303, + 0.0, + 0.0, + 0.00016498819, + 0.0013199055, + 0.009129347, + 0.04531676, + 0.12814084, + 0.17923218, + 0.14744446, + 0.06049567, + 0.0, + 0.0, + 5.4996064e-05, + 0.00065995276, + 0.008854367, + 0.04108206, + 0.13089064, + 0.21563958, + 0.18286192, + 0.07776444, + 0.0, + 0.0, + 0.0, + 0.00032997638, + 0.004399685, + 0.025353186, + 0.07853438, + 0.13375042, + 0.11450181, + 0.050101414 ] }, "debug": { diff --git a/common/search/src/test/resources/test_documents/images.similar-features.5.json b/common/search/src/test/resources/test_documents/images.similar-features.5.json index 7eb84318a..1c3bac131 100644 --- a/common/search/src/test/resources/test_documents/images.similar-features.5.json +++ b/common/search/src/test/resources/test_documents/images.similar-features.5.json @@ -147,20 +147,39 @@ "source": { "alternativeTitles": [], "contributors.agent.label": [], - "genres.concepts.label": ["Wood engravings"], + "genres.concepts.label": [ + "Wood engravings" + ], "id": "vgp4pbxh", "sourceIdentifier.value": "b15717057", - "identifiers.value": ["b15717057", "1571705", "571705i", "V0018911"], + "identifiers.value": [ + "b15717057", + "1571705", + "571705i", + "V0018911" + ], "images.id": [], "images.identifiers.value": [], - "items.id": ["ukmcgn9a"], - "items.identifiers.value": ["i14967406", "1496740"], - "languages.label": ["English"], + "items.id": [ + "ukmcgn9a" + ], + "items.identifiers.value": [ + "i14967406", + "1496740" + ], + "languages.label": [ + "English" + ], "lettering": "Lea Hurst", - "notes.contents": ["Wellcome Collection 571705i"], + "notes.contents": [ + "Wellcome Collection 571705i" + ], "partOf.title": [], "physicalDescription": "1 print : wood engraving ; image 8.9 x 13.9 cm", - "production.label": ["England", "1800-1899"], + "production.label": [ + "England", + "1800-1899" + ], "referenceNumber": "571705i", "subjects.concepts.label": [ "Holloway (England)", @@ -186,1100 +205,5124 @@ ] }, "filterableValues": { - "locations.license.id": ["pdm"], + "locations.license.id": [ + "pdm" + ], "source.contributors.agent.label": [], - "source.genres.label": ["Wood engravings"], - "source.genres.concepts.id": ["hjzzh4gd"], + "source.genres.label": [ + "Wood engravings" + ], + "source.genres.concepts.id": [ + "hjzzh4gd" + ], "source.subjects.label": [ "Holloway (England)", "Nightingale, Florence, 1820-1910 Homes and haunts", "Lea Hurst (England)" ], - "source.production.dates.range.from": [-5364662400000] + "source.production.dates.range.from": [ + -5364662400000 + ] }, "vectorValues": { - "features1": [ - -1.4592276, -2.8197398, -3.60118, -0.72611636, -1.5403802, -1.123164, - -0.45157003, -0.6542645, 0.50650895, 0.6630306, -0.89778244, 1.2444625, - -1.4626676, -0.106134735, -1.2017707, -0.5515635, -1.3558947, 0.7374966, - -0.5714047, 1.7611568, -2.4828467, -0.8865872, -1.1474553, 0.027897056, - 1.1395376, -0.6768818, 1.4700205, 0.12832192, -2.1339405, -0.9696562, - -0.55063677, -0.6964812, -2.1490104, -0.9522814, 0.53815055, -1.0131893, - 0.669431, 0.43562093, -0.7668656, -2.0916302, -1.1515354, -1.2569063, - 0.054700863, 1.9732696, -1.5053169, -0.92109007, 1.1380781, 2.873301, - -1.7941325, -1.1999532, 1.1090807, 0.5862955, -0.100148454, -0.20283696, - -1.2111667, -1.4220777, -0.83831775, -1.7070715, -1.4141283, -1.2443323, - -0.41546443, -1.0664195, -0.5393447, -0.51352745, 1.3820196, -1.5586522, - -2.5990965, -1.3836644, 0.022474974, -2.0458896, -0.97482735, - -1.4165969, -0.22006112, 0.19700967, 0.899984, 0.32978356, -1.1522721, - -1.9938836, -0.24734606, -0.437398, 2.0255532, -1.4548018, -0.24601072, - -1.4081974, 0.5813802, -0.52526325, -1.2615031, -1.7701927, 0.27520785, - -0.20846976, -1.3104451, 0.28316703, -1.2634456, 0.11065444, 1.2913873, - -2.0511987, -0.8505808, -0.57244384, -1.1935387, -0.5316961, -2.1322033, - 1.9721923, 1.0136367, -0.71486145, 0.40821788, 0.38071728, 1.193072, - 0.33864713, 1.5421551, -2.8062394, 0.13473074, -0.048950482, -0.5551478, - -0.8650391, -0.74098784, -0.22229016, -0.3107697, -4.3068476, - -0.98429626, -2.0040238, 1.3876296, 2.0179791, 1.4356543, -1.0241714, - -1.9720985, 0.07266329, 0.19752565, -0.62120134, -0.83225703, - -1.2290069, -1.1752012, -1.3536557, 0.6865885, 0.19257374, -0.042732786, - 0.07517121, -0.64749795, -0.8136938, -1.5484065, 0.12102938, -1.7679063, - -1.0134716, 0.22072858, -0.906057, -2.130963, -1.7878156, -0.5227628, - 1.1173644, -2.8700595, 0.20980045, -1.467691, -0.68065834, -0.5787407, - 0.1664744, 2.388695, -0.6465058, -0.8527816, -0.5960592, -2.033425, - -1.1107419, -1.1054208, 0.17359444, -0.6089172, 1.438052, -0.79235226, - -0.24855603, 1.1906269, -1.5840787, 0.26696563, 0.9287106, -1.1620562, - -1.1107605, -1.4853218, -0.22400352, -1.5047415, 0.40391338, - -0.09919625, 0.14826971, 1.416352, -2.1377792, 0.0590581, 0.09090595, - -1.0546547, -0.60557926, -0.22012869, -2.1096132, -0.4384653, - 0.20125166, -2.6106226, -0.9339141, 0.83081865, 0.3057097, -0.23100747, - -2.532859, -0.63050205, 0.17093544, 1.8132097, 3.3130808, 0.3564942, - -0.2542396, -0.94347006, 0.22092986, -1.3292923, 0.24973515, -0.6612667, - -0.5144388, -1.2324712, -1.1702138, -1.2441359, -0.49557224, 1.2339795, - -1.8149794, -1.6595795, -1.8495817, -0.952167, -1.7277818, 1.5317329, - -0.866882, -1.3738327, 0.15846145, -2.7935352, 1.4106615, -1.2584376, - -1.5177653, 1.4047588, -1.6368665, -0.8243736, 1.3409536, 0.10252479, - -0.12511727, 1.5220718, -1.5357598, 1.5353848, -1.8291149, 0.6879074, - -0.24584734, -1.4865519, 0.23321678, -1.7831918, 0.051875114, - -0.6105885, 0.6257607, -0.723705, -1.6554619, 0.20193176, 0.9756289, - -0.9847755, -0.5800382, 0.3430077, -0.57486904, -1.1445943, 0.20542318, - -0.0953294, -0.22727738, -0.21376821, -1.0641555, -1.5911151, 1.300035, - 0.17594406, 0.30321088, -2.905859, -1.7440882, -0.9668013, -1.3419299, - -1.0406659, 0.16290858, -0.82538456, -0.64162505, -0.40571135, - 0.92983997, 2.231099, -1.2865418, -1.2982049, -1.0136973, -1.1066747, - 1.1622145, -0.6406306, -3.3325539, -1.3474044, -2.6124518, -0.97491294, - -0.51452124, -0.48014835, -1.9180784, 0.056023076, 0.32231772, - -0.22363518, -0.5659393, -0.23640315, 0.23437403, 0.30572373, 1.232713, - -0.093947664, -0.8697107, -2.774176, 1.9949691, 0.2882511, -0.4648523, - 1.4317094, -0.2683846, 1.3408753, -1.8198024, -1.7929672, 0.23258507, - -2.6017742, -2.0498793, 2.3278372, -0.21921068, -0.7597639, 0.7283191, - 2.229946, -1.37561, -0.6906911, 0.33697253, 1.3389535, -0.016917862, - -0.91731405, -0.48539457, 0.6007104, 0.07492687, 0.021590091, - -0.033206113, 0.093394704, 1.3908365, -1.2560323, -3.3113182, 0.7234909, - -1.2471033, -0.736307, -2.3224247, 0.64383113, -2.626567, -1.2818254, - -0.60316896, -1.1110812, 0.9912476, 1.7687087, 2.0779073, -1.3282981, - -1.9110548, 0.44653395, -1.8609663, -1.0516552, 0.03320366, -1.6873406, - -1.0144346, 1.1063104, -2.272688, 0.52986336, -2.2737713, -1.3069572, - 1.3007814, 1.7136638, -1.4079067, -0.060721695, -0.87344825, -1.1981534, - 2.082959, -0.72276956, -1.5278883, -2.2482398, 1.4906887, -1.0671424, - -1.1134126, -2.4449842, 0.03187723, -1.7104962, -1.4674159, -1.1669058, - -0.91387033, -0.5803807, 2.3596272, -0.82648516, 0.17264998, 1.7630668, - -1.1636533, -1.6119983, -1.2233629, -0.20304674, -1.3272711, - -0.11671734, -0.86914515, 1.0868462, -0.88892555, 2.006002, 1.9312255, - 1.4168426, -0.9697933, 2.0551777, -0.26550078, -0.26448557, -1.5734468, - 0.2792618, -1.2980254, -3.3836973, -2.335595, -0.13539556, -0.4708345, - -1.0677683, -0.54951084, -1.6877614, -1.1018121, 0.34876156, - -0.057600792, -1.8807942, -2.5316832, -0.720405, -0.26018283, - -2.1417363, -0.80772686, 2.4750175, 0.93210727, -0.74463046, 0.13529179, - -1.6140275, -1.1605678, -0.21669012, -1.5132408, 0.3664233, -1.1816727, - -1.3269844, -0.084098786, -0.019257572, 0.8137027, -0.6232207, - -0.7884645, -1.46222, 0.9141348, 0.074466124, 0.43002278, -0.60708344, - 0.89513594, -1.0892848, -0.88138396, 1.3556882, -0.7647553, -0.9683057, - 0.599392, -0.17509016, -0.4141708, -3.453378, -1.9364045, -0.75646544, - 1.5827606, -1.5470856, 2.6564608, 0.067436844, -0.98292875, -0.5295429, - -0.24799693, -1.9261924, -2.4651604, -0.69367063, -1.0308485, -1.249946, - -2.2948635, 1.360996, -0.4329289, -2.6262927, 2.1751857, -0.58220965, - -2.6352546, -0.9112986, -0.27429625, -1.6987103, 2.3062646, -0.8861857, - -2.6183815, -0.135407, 0.6053436, -1.8870162, -1.4258137, -0.1620288, - -0.5372994, 0.25618723, -1.5747453, -0.11577135, 1.184977, -1.3729175, - 1.0349596, -1.709554, -0.5825722, -0.803807, 0.16795567, -1.2756732, - -1.8961676, 0.3220142, 2.2072227, -0.00086980313, -0.86045825, - -1.7528801, -0.9995931, -1.3160058, -0.385943, -1.3610157, -1.1744897, - 1.5273451, -0.49420506, -1.2507869, -1.1858838, -0.28775477, -2.7720523, - 0.01619647, -1.6777902, 0.16927254, -0.5306069, 0.90142417, -0.91807157, - -2.68236, 0.8403286, -1.0878878, 0.4839169, -0.52725387, -1.2035551, - -1.1938657, 1.4776996, 0.42267153, -1.4397881, -1.4709063, -1.118975, - 1.312644, 0.023508932, 1.2974495, 0.45723408, -0.43592557, 1.179868, - 0.6580982, -2.3658693, 0.85468084, -1.2987845, -0.61192644, -0.34049594, - -0.9131072, -0.20921783, -0.3591637, -1.5062017, -1.2873712, -3.1963332, - -1.3686875, -1.801552, -0.27505785, 0.069858596, -1.1472827, -1.8826437, - -0.43378776, 1.1268226, 1.094827, 0.03442522, -0.6786891, -0.6496007, - 0.878889, -0.067961715, -0.11213902, 0.21378317, -1.9056739, 0.27094346, - -0.28775778, -0.7303849, -0.4099139, -3.204342, 1.0173839, -1.5420991, - -0.9513654, -2.0154426, -1.0702039, -0.98931533, -0.5420035, 1.4040521, - -1.6872063, -0.87959224, -1.0452948, -1.9002587, -0.1560264, 1.9239688, - -1.5607755, -1.806639, 0.2012858, -1.4121641, -0.4154757, -0.39505816, - -1.069283, -1.00572, -0.105387524, -0.013902284, -3.8875484, -1.6905357, - -1.5872612, 0.10524665, 0.7362741, -0.018643647, -1.9414413, -0.1259127, - 1.4337014, 0.21362275, -0.15016793, 0.43244803, -1.4128187, 0.14891177, - -0.8215008, -0.08680287, -1.9807109, 0.39025235, 0.85520416, -0.6360903, - 1.5352981, -2.4774942, -2.9250276, -2.0819113, 0.4927174, -0.7535452, - -1.3691986, 0.40417284, -0.84268963, -1.3878218, -1.9481621, - -0.107763276, 2.2286978, -0.061111018, -1.3927878, 0.8643084, - -2.4276338, 0.48025733, 0.3936359, 0.2723983, -0.321234, -0.58655506, - 0.58151096, 0.7986622, 0.35425466, -0.023716595, -0.43446743, - -1.0936903, -0.7190669, 0.07787967, -1.4192567, -0.74877834, -1.1993456, - -0.40769392, -0.9615708, -1.139443, -0.86901987, 1.4252207, -2.1619596, - -2.235275, -0.6900856, 2.8193598, -2.0252173, 0.124193564, -1.811791, - -2.2277088, 0.7041141, -0.82703406, -1.6285924, -2.4338648, -1.0214491, - -0.7063752, -1.049015, 0.6787768, -0.50029063, 0.30549657, 1.1961695, - -1.3236699, -2.6728263, -1.8032055, -0.69625777, -1.2518363, 1.6853954, - -1.13433, -0.86419326, 2.6711538, 0.4164433, 1.333821, -1.6605355, - 1.1905243, -1.499306, -0.68454236, -2.7722, 0.48659876, 0.16203527, - 0.2183407, -0.4074651, -0.16520858, -1.144639, -1.0444856, -0.9828771, - -0.56122816, -2.2449408, -0.37935123, -1.3706036, -1.7187684, - 0.16097715, 2.2698653, -0.37500927, -1.0872365, -1.4423696, -0.9589463, - -0.40968826, -0.34556064, 2.4235146, -0.3715971, 0.5393913, -0.80129415, - -1.1322018, 0.29943922, -1.4887888, -0.06457941, 0.60241765, 0.32618526, - -0.095180996, 1.1442107, -1.0586187, 1.4569522, -1.1580523, -0.46725905, - 0.27085143, -1.1435496, -0.40728253, 1.2040188, -2.3762205, 0.8335673, - 0.4646324, 0.81869185, -0.35482168, -0.20520574, 1.8981045, 0.4202985, - -1.0325892, 0.31704924, -0.49927762, -0.76894164, -1.1533158, - -1.0249693, -0.84150785, 1.3760468, 1.1679653, -1.4684129, 2.2650084, - -1.6941447, 1.1684266, -1.5622078, -0.37075213, -1.8168234, -0.9315804, - -1.3634164, -0.3840672, 0.8977995, -1.6777152, -1.2555478, -1.8433172, - -1.6813995, 2.0376692, -1.6708614, 1.4010644, 0.36407307, 1.4490564, - 0.43550038, -2.5612044, 0.54579455, -0.9359766, -2.1324258, -1.6329033, - -2.3368988, -2.1352048, -0.0280158, -1.2441725, 0.0718095, -0.6494964, - -1.0003226, 0.41177705, 0.6384642, -0.54517245, -1.3435528, 1.2660413, - -1.1037834, -1.4218261, -1.3463022, -1.099861, -1.6600909, -1.9379505, - 2.6691775, -1.2633561, -0.5280803, 1.3913419, -0.86060154, 1.1241524, - -1.8125956, -2.5224407, -0.35658538, 0.39783564, -1.4653399, -1.7224383, - 0.5540104, 0.44271657, -0.84547853, 0.42214516, -1.2833354, -0.8935155, - -4.95546, -1.1115857, -2.4081552, 3.1633358, 0.2568462, 1.7510144, - -0.40363336, 0.72620136, 1.4548305, 0.17698638, -0.6474309, -3.6790974, - 0.079178765, 1.0183063, -1.12918, -0.99397254, -1.5013963, 1.1116722, - -1.2783108, -1.1271921, -0.02871103, 0.19662383, -1.2111759, 0.94723636, - -1.2088357, 1.072327, -1.862301, -0.7248998, -1.2932475, 1.8417171, - -0.8703435, -1.8791575, -1.8712008, -1.5530261, -3.6588824, -1.8470874, - 0.48180026, 0.6185476, -0.6888435, -1.0796223, -1.2522758, -0.55798733, - -0.2410437, -2.6150248, -0.37060168, -0.81301886, -2.0519423, 1.2965189, - -1.8574767, -0.3760768, -1.864482, -1.247052, -0.95536846, -0.81773937, - -1.0732088, -0.48474944, -0.8377504, -0.38103423, 0.13806742, 1.9494182, - 0.044274267, -1.4220428, -0.46627793, -1.0443007, -0.7025261, - -3.2897847, 0.46755022, -0.08545346, -1.7465818, -1.0146996, -2.742999, - -3.3049297, 0.023590751, -2.0334265, 0.04638113, 1.394271, -1.6726297, - -0.16339016, -1.2562042, -0.8544806, -2.2606144, -1.2560706, -1.5846469, - -1.9294953, 0.7665449, 1.2401512, -1.2338269, -0.4744293, 0.9232286, - -0.39850113, -0.2369044, -0.037551187, -0.18824215, 0.07566872, - 1.0521063, -1.4878235, -0.6323111, -0.5768663, 1.494372, -1.2722092, - -1.4294928, 0.3110993, -1.2841959, -1.3548023, -1.2465426, -0.3427744, - -0.7539092, -0.21544568, -0.44180387, 0.22912282, -1.0560523, 1.8312529, - -1.626303, -2.269547, 0.68797296, -2.3322728, -1.3585408, -0.49928784, - 0.053813227, -1.1318183, -0.4066874, 1.0441269, -0.6679281, -1.4927641, - -0.6227989, -1.6421739, -2.0614552, -0.6391806, -2.2211554, -0.6781854, - -1.3232772, -1.6017469, 0.5998657, -2.2398953, -1.0685761, -1.2636828, - 0.5626768, -0.06504376, 0.43487936, -0.75525755, -2.1016045, -0.6410071, - -1.072722, -0.8535273, -1.6766318, -2.7951167, 0.07234669, -2.579707, - 1.080016, 1.5477127, -0.44761065, -1.6643887, 0.42317328, -0.5773502, - -1.1551449, -0.93333656, -1.6833445, -1.7442138, 0.9124627, 0.8691889, - -1.6563038, -2.7133226, -0.92771333, 0.20549469, -1.9399301, - -0.028670099, 0.8403895, 1.575006, 0.97413087, -1.2772458, 0.26341796, - 0.9862559, 0.5319238, -1.0716827, -2.325792, 0.15257257, 1.1834173, - -3.2141562, 1.6395192, -0.9651132, -0.32761183, 0.7568742, 0.47389308, - 0.17910576, -1.0010667, 0.2302928, -3.0570407, -1.1585878, -0.7334144, - -0.05844894, 1.0549132, -1.8319348, -0.13202219, -1.8146143, -2.2841227, - -2.1189637, -2.8905168, -0.26836273, 0.06106338, -0.45183492, 0.5822588, - -1.7843573, 1.703652, -1.9870644, 0.071911104, -2.4295723, 0.9756587, - -1.3071924, -1.4094999, -1.091693, -0.9532209, -1.3465501, 0.5795055, - 1.4210943, -0.19569032, -0.52684224, -0.5432037, 0.46416628, -3.2189867, - -0.8480145, -0.15701199, 0.6209861, -2.1869721, -1.500334, -0.16821656, - -0.36930394, -0.29391822, -1.3243328, -0.5219187, -1.473262, -2.1692727, - -0.95041573, -2.3035953, 1.7034818, 0.15411529, 1.698414, 1.562197, - 0.005206909, -0.5602607, -1.1672481, -0.55871314, 1.1893915, -1.2090224, - 0.3725196, -1.895284, -1.471797, -0.89644784, -0.57622385, -1.1705002, - 2.1356192, 1.0726852, -1.0162754, 0.46417505, -1.2276112, -2.6697917, - -0.41012263, 0.63582015, -0.14552355, -1.5791489, -1.8796309, -1.615479, - -0.50591564, -0.15617782, 0.90129256, -1.3322495, -1.7454784, - -2.3712616, -0.89249444, -0.19002417, 3.0609357, -1.9360331, -2.0370767, - 0.42896616, -2.2769692, -2.1049926, 0.28369778, 0.08498667, -0.4452655, - -2.2086782, -2.4284713, -0.7709705, -2.5397747, 1.914183, -0.33920652, - -2.4455533, -1.3032717, -0.6120752, -0.15548825, -2.4951956, -0.8977737, - 0.12672672, -0.3290015, -0.6377963, 0.3326671, -0.8282471, -0.14173813, - 0.7378392, 1.007775, 0.1507353, -1.9192777, -0.9513501, -0.76388484, - 0.38395128, -1.231737, -0.6291121, -3.2814598, -1.6165613, -1.5297712, - -1.2108943, -1.3301439, -0.9308473, -1.6784434, 0.8707366, -0.84459174, - -1.516252, 1.9912335, 0.7985075, 0.35950652, -0.46989465, 0.366678, - -0.15606183, 0.57307976, 0.3689786, -0.42360482, 0.037721127, 0.5693811, - -0.014097012, -0.8632141, 0.31279272, 0.66110146, 0.20563667, - -0.6399836, -0.98369855, -0.48955697, -2.9940543, 0.456977, 0.23397195, - -2.1117852, -0.35628554, -0.5540983, 0.9981045, 1.140122, -1.3901703, - -2.6692495, -1.1150554, -0.32898638, -0.31530666, -2.9611099, -2.253184, - 0.69673884, -1.1977848, -0.9867517, 0.57018316, -0.41105676, - -0.48919427, 0.2541145, -0.40349513, -0.49759737, -2.5932279, - -2.5683963, -0.7229129, 0.14259018, -2.7986655, -0.45383003, -2.243283, - -1.4058014, -0.22285086, 1.102141, -0.9375647, -0.33062282, 0.14110425, - -1.4342216, -0.959674, 0.54369944, 0.068791814, -3.2395432, 1.5054812, - -0.30856258, -1.1983827, -1.8847032, 0.30708563, -0.29369318, - -1.6528053, 1.0253466, -0.73683995, -0.6128567, -1.1458455, 1.9813231, - 0.78324056, 1.7966776, 1.619258, -0.4004791, -0.5238165, 1.7523743, - -0.23341498, -0.28449386, -1.0284001, 0.7276189, -0.7126081, -3.038663, - -0.5428444, -2.5535607, -0.7013575, -2.385808, -0.32653826, -1.8153085, - -0.25745097, -0.3465206, -0.6241945, 1.4269652, -0.43097112, - 0.012417182, -0.09864269, -0.9531557, -1.8500539, -1.4845198, - -1.4672844, 0.44476247, -1.3920184, 1.811958, -0.10680346, -1.3066185, - -0.3827531, 0.94055504, -1.4701731, 0.67713046, 0.73729503, -0.08509025, - -0.76944804, -1.4203598, -1.3972515, 0.034760885, 1.8696756, -2.0591495, - -2.265763, -1.1430745, -0.3888905, -0.87887055, -1.3158491, -1.2057043, - 1.2501252, -0.83384246, 0.21990003, -0.8673627, 0.47588643, -1.6381851, - -1.5984448, -0.7332166, 0.30519778, -0.91685253, -0.68580055, - -0.50792015, 0.0458892, -0.83029336, -0.34743893, 0.75766206, 2.4966478, - 0.119871765, -1.8784056, -1.60103, 0.58779544, -1.0087316, 1.0611665, - -1.5452051, -0.87192464, 1.02884, -0.94165224, 0.9953935, -0.62748945, - -1.1171907, -1.9299699, -1.4718896, 0.7627962, 0.6072939, -1.2563722, - -0.5580153, 0.8078408, -0.44994834, 0.57625425, -0.566965, -0.35992017, - -0.24011686, 0.3872248, 0.24654576, -1.8352822, -1.762052, -0.7916271, - -0.21426708, -2.418967, -0.8549669, -0.43263394, 1.1511706, 0.5630719, - -0.6163314, 0.029310785, -1.7048715, -2.3897846, -0.6328571, 1.0950296, - -2.0788996, 0.3563884, -1.8287364, -1.0434457, -0.2439209, -1.5384433, - 0.19821666, -1.2843953, -0.03387185, 0.0492898, -1.3783418, -1.2815676, - -0.2962364, -1.4875323, 2.4256656, -0.054787457, -0.65237164, - -1.1941001, -1.0269673, -0.25737482, -1.2839236, -0.4522593, - -0.19778824, -2.5536613, 0.05458788, 1.0040668, -2.5431654, 1.132857, - 1.1178123, 0.07746985, -0.4621793, -0.45042548, -0.61865985, - -0.31588608, 1.0920646, -0.49153084, -2.2808108, -3.2069247, - -0.062369317, -0.6815801, -0.53289384, -1.8107032, -0.65652573, - -2.3504822, -2.487321, -0.5804735, -2.4132571, -1.6804879, -1.6242411, - -0.24548876, -0.79565805, 0.7574056, -0.750106, -0.37589484, -1.1875572, - -0.4178852, -2.0192816, 0.74309254, -0.012406893, -0.5468867, - -0.9503801, -0.5942046, -1.9409876, -0.94441175, -1.2422668, -1.2111406, - -1.1314548, -2.288948, 0.14315787, 0.6347152, -0.50177085, -1.0923783, - 1.0307965, 1.0884403, -1.1722007, -0.2745502, -1.4877656, 0.702329, - -0.45978805, -1.4075835, 0.9701902, -0.62724566, -0.42792675, 1.462824, - 0.5905338, -0.44187254, 0.28694105, -1.0576177, 0.40935758, -0.21201433, - 1.243918, -1.0241871, 0.4058786, -1.9995241, 0.15944067, -0.7950087, - -0.86755764, 0.22587489, -2.7882621, -1.4106545, -2.2866971, 0.9633759, - 0.2944299, 0.53247285, -1.3572686, -0.6156895, 0.36889243, -0.17513599, - -1.2221209, -0.4797996, -1.0487677, -0.3227622, -1.3075993, -1.4354653, - -1.8157562, -1.0971882, 0.2576489, -2.356254, -0.55213106, 1.9039588, - 0.19826889, -1.6593673, -0.5055571, -0.16198976, 0.36062947, - -0.56437755, -0.8237848, -1.4723868, -0.7323364, 0.11962897, - -0.28595164, -3.396591, -1.778414, -0.2769518, -0.35188627, -1.0608059, - -0.7495665, -0.7759299, 2.0134716, -0.7976183, -1.5143487, -0.45703095, - -1.6616223, -1.1473703, -1.4660286, -1.3035957, -0.12853093, -2.459924, - 0.6090677, -1.3798894, -0.371002, -0.6077478, 0.5604737, 0.36982712, - 0.74037045, -0.840638, -1.4252644, -1.0489292, -1.589327, -0.5801115, - -2.1765258, -0.7046677, -1.3280867, 0.3906947, 0.6937178, -1.2491103, - 1.622381, -1.9406254, 0.7723794, 0.96280664, 0.7515824, -1.9657779, - 0.29803836, -1.3924606, -1.2474418, 1.3800063, 0.919187, 1.1010771, - 1.0912483, -3.0854638, 0.17960243, -0.11418755, 0.5446403, -0.65181744, - -0.36283234, -1.5008087, -0.64609617, 1.6061019, 1.9445798, 1.7450744, - -1.3489579, -1.7975461, -1.4321495, -0.51242745, 0.28468043, - -0.66326314, -1.1985109, -1.5124562, -0.34523487, -1.2428266, - -0.30154553, 1.8113214, -2.3795388, -1.9006873, -1.0320865, -1.095499, - -0.7350921, -0.25782612, -0.055047646, -0.6962501, 0.7439546, - -0.080334954, 0.87040275, -1.7270545, 0.8192915, -0.64698213, - -1.5484753, -1.3106552, -1.7442746, 0.19549787, -1.1969905, 0.87581855, - -0.7274401, -2.2466643, -1.9838653, -0.2853341, -0.95567065, -1.4176805, - -0.71226263, -1.5561466, 0.20583014, -1.4672949, 0.9555917, -1.763212, - -1.7930067, 0.24110724, 1.4819597, -1.828102, 1.3697804, -1.339055, - 0.023806456, 0.49391887, -0.049997047, -1.0139189, -0.9449281, - -0.3807233, -2.0584042, -1.3067359, 0.95008546, -0.14985779, -1.2577285, - 1.9908259, -1.1467886, 1.612136, -0.18363705, -1.3273929, 0.81549776, - 0.30423424, 2.2236865, -0.97526944, -0.16284816, 0.3790642, -1.9353617, - -1.4802955, 0.13589853, -2.390152, -0.5522335, -1.0245522, -0.75974953, - 1.0465822, -0.6277374, 1.688616, 1.2567184, 1.4831625, -0.72844225, - -0.91748303, -1.0543456, -1.6012267, 1.6818407, -3.113232, 0.7833185, - -0.30338567, -2.9042494, -0.18730569, -1.2215271, -1.3893847, - -1.5624021, -1.2045605, -1.5298598, -1.1701767, -2.9144769, -0.33673906, - -1.137836, -0.79310286, -1.0405151, -1.3969749, 0.038714703, 0.23484638, - -1.5924494, 2.3006215, -0.39028752, -0.020602614, 1.6134697, -0.2431702, - -1.056515, 0.26479083, -0.348375, -0.9677755, 0.732711, -2.965041, - -0.2488335, -2.4252863, -1.4752352, 0.47748595, -0.9147705, -2.4623094, - -2.0409992, 2.459342, 0.91023993, -1.8869331, -0.42410406, 0.37550443, - -1.9623157, 1.4800185, 0.7049415, -0.001909256, -1.0177112, -2.0672193, - 0.9744184, -1.6451473, -0.4852497, -0.6118567, 0.416109, 0.39495388, - -2.3637233, -0.23770098, -0.9019346, -0.67124504, -0.7996255, - -0.01868353, -0.20063195, -2.2271557, -2.2695832, 0.119168185, - -0.69593894, -2.1274908, 1.9588543, 0.29565614, 1.7354884, -0.15982412, - -0.48964465, 1.391769, -1.8109124, 0.32552162, -0.40444195, -1.8737017, - 0.23144072, 0.052683495, -0.577411, 0.9846303, -1.9397302, -2.0053036, - -0.34962767, -1.538038, -1.2038336, -0.29461873, 1.0389708, -0.14568187, - -1.6382444, -0.7678129, 0.0069678277, -1.1049726, -0.4459657, - -0.5586273, 0.69331944, -1.3726559, 1.0836947, -1.6225125, -0.14751956, - -0.40357408, -1.2018765, -0.16936952, -1.8711822, -0.7104563, - -2.6546113, 0.58854043, -0.67761785, -1.3881192, 1.7243466, -0.5781691, - -1.223123, -1.3746953, 2.4587562, -0.47848037, -0.38594848, -2.3056376, - -1.4739739, 1.2895359, -1.1319435, -1.5968542, -0.7488326, 0.68803513, - -1.0656676, -0.44187847, -1.7292022, 1.4423772, -1.6580242, -0.87267476, - -0.24441446, -1.5472472, 0.95002, -1.0402673, -1.2724029, -1.1081297, - 0.51918435, -0.47205278, -1.9388353, -1.2853395, 2.991396, -0.3875436, - 0.6677726, -0.006354749, -1.3557034, -1.3246052, -0.29677725, - 0.21667723, -0.85945106, -2.1329498, -0.73994267, -0.29803285, - 1.1576346, 1.1215333, -0.5393697, -1.8032445, -2.2704911, -0.3913018, - 1.6153482, 1.6067605, 0.5008356, -0.7105401, -1.4222713, -0.7370119, - -2.0702808, -0.9760924, -1.0010407, 3.3084116, 0.9791469, -1.3096607, - -1.5033015, -0.8831217, -1.1723471, -1.0022146, 1.9069444, -1.2233964, - -0.4790731, -2.9020045, -0.986124, -0.39803725, -1.3554184, 0.6321059, - -0.51109, -2.1867552, -0.8658422, -0.52993435, -1.3554364, 0.736618, - 2.4279015, 0.027752936, -0.70311373, -1.3568707, -0.8949813, -1.4922712, - 1.4905535, -0.016344499, -0.9175217, -0.16806078, -1.3638101, - -0.8458867, -0.69144356, -0.0074226186, 0.91476965, 0.12101512, - 1.6987985, -1.227463, -1.5886391, 0.1275635, 0.046499826, -1.4916813, - -0.8714731, -0.20443463, -1.0912789, -1.2992009, -1.1552218, -1.0432131, - -0.09230989, -0.952268, -0.5705833, 1.4860318, -1.6067072, -0.44019938, - 0.2165622, -0.65968215, -0.5829944, -0.9987948, -1.2316236, 0.108178, - -1.5878267, -1.564558, 0.43366936, -1.0450977, -0.63797086, -0.6861239, - -2.8136961, -0.26496425, 1.2149227, 0.6058446, -2.1537654, -2.7942677, - -0.65793306, 1.3607116, 0.18513812, -0.54693854, -1.609943, 0.8316858, - 0.11033688, 0.5488143, -1.1082923, -0.7481176, -1.122607, 0.37333196, - -1.219834, -0.31015262, 1.136172, 0.16574268, -0.925888, -1.0364395, - 1.6260505, -0.9625166, 1.273453, 1.5748047, -0.94023365, 0.028990813, - -0.155839, -0.61632204, 0.19841725, -2.0133665, -0.3993078, -0.9373906, - -0.4372123, -1.3995545, 0.6553372, -0.49811792, -0.46531036, 1.4444177, - -1.6944977, 1.2466543, -0.6958195, -0.36983955, -1.1084995, 1.5454253, - -4.5971265, 1.0929123, -1.7437335, -1.2556398, -1.3613935, -1.2093773, - -2.0859635, -2.634221, -2.8421712, -0.96127677, -0.044516824, - -0.28905785, -0.66200525, -0.29977998, -1.1996391, 0.07669203, - -2.7271526, -1.757227, -0.11274885, -0.10049257, 0.33283257, -0.7325814, - 0.061481714, -2.1867297, -0.035659384, 1.0728066, -0.26789284, - -0.39929163, -0.741793, 0.45546263, 0.81042236, 0.5537393, -1.2286105, - -2.2726467, -0.5518324, 0.55782443, -0.66401184, 1.9326121, -2.6103146, - -1.1803857, -1.7022781, 1.2120534, 1.8897809, -0.15140721, -1.0668701, - 1.6669167, 0.19823837, 0.797341, 0.16011947, -1.6244931, -1.7345548, - 0.9087647, -0.8922739, 2.3774657, -1.9824597, -1.7088664, -0.27483046, - -1.7302892, -1.11132, 1.628677, -0.8211461, -0.5489834, 0.685062, - -3.0037916, 0.15633371, -1.7203262, -2.383933, -0.79522496, 0.002546424, - -0.11564622, -0.27096024, -0.5310251, 0.19459876, -1.258637, -0.8423057, - 0.80075276, 0.0709789, -1.061993, 0.04218446, -0.35687116, -3.7193024, - -3.5255654, 1.0368997, -1.6100641, -0.7288574, -0.6740315, -0.49233136, - -3.8678362, -0.59345233, -0.76743996, -1.1767125, -2.3111196, - -0.22497654, 0.061726604, -1.3369178, -1.2096655, -0.5996406, - -1.0797876, -0.55009985, -0.55348384, -2.1480172, -1.48562, 1.2742243, - -0.27650273, -1.2577206, -0.97371995, -2.5588672, -1.6848463, 0.2450553, - 1.4747521, -2.6826165, -0.8134457, -1.3412089, 0.6634067, -2.1460514, - -1.3978244, -1.0124182, -1.5964751, 2.3309596, -0.27454168, -0.49681777, - -1.1131662, -2.257009, -1.2339196, -0.5165026, -1.1007156, 0.75102055, - -3.331354, -2.1205094, -0.5972457, -1.1353215, 0.42315227, 0.28194696, - -0.61254793, 0.36461064, 1.0473129, 0.7625584, 0.22643743, -1.3968005, - 0.73094296, 1.0170206, 0.6372507, -0.57439697, 0.17666076, 1.2719426, - 1.0722793, -0.7494134, -0.32627308, 0.15675458, -0.10813373, - -0.073495746, -0.4756919, -0.9781998, 0.27573475, -0.88042253, - 0.24283041, 0.86717653, -0.435164, -1.8204901, -1.6223687, -1.4317553, - 0.8140433, 0.49895746, -2.197605, -1.0421216, -0.77217966, -0.7010015, - -3.1518912, -0.3063224, 2.4705944, -0.9238589, 0.010826394, -1.4317082, - -0.6428888, -0.28153294, 1.1920295, -0.89185417, -3.3952012, -0.7846645, - -0.21212229, 0.31874946, 0.8191973, -0.4140798, 0.8202171, -1.8589599, - 0.16286728, -0.9453557, 0.17151003, 0.65257186, -0.7319458, -1.2878205, - -0.19880879 - ], - "features2": [ - -0.8132361, -0.0423157, -0.6618667, 0.35415617, -0.2979352, 0.8014482, - 0.13832417, -1.2100415, -0.89432794, -1.2336726, 0.030537285, 0.3255837, - -1.5815775, 0.53710836, -0.2184147, -1.7670754, 0.27225935, -0.9321253, - -1.8949976, -0.44165766, 0.06219047, -1.2454349, -1.6039551, 1.3281391, - -2.0610836, -1.2887759, 1.9543412, -1.8656427, -0.3155062, 0.13445759, - 2.589176, -0.63242173, 0.15964168, -0.5751359, -0.86910504, 0.58473814, - 1.4486247, -0.28004593, 0.0038204938, -0.7400427, -0.034579296, - -1.8949164, -0.24083227, -0.5842991, -0.5712315, -1.3742378, -2.2452824, - -0.63426495, -1.2614852, -1.1606661, -0.5507904, 0.25399062, 0.5671008, - 2.159106, 0.76003295, 0.37325567, -0.710758, -2.9190657, -1.9993894, - 0.6592421, -1.6449933, -0.92019874, -1.8278893, -0.46521515, -1.2417307, - -0.78514683, -0.731756, -0.5128913, 0.9156196, -1.6488259, -0.35078675, - -1.0105764, -0.9013277, -0.6654542, 1.3951011, -1.7573278, -0.9962733, - 1.7134871, -2.124068, 1.1377908, -0.6067151, -0.52014494, -0.7341115, - -1.8385692, -1.4626161, -0.76402277, 0.14510351, -1.5445021, -2.7933962, - -1.341933, -2.423398, -0.21259624, -0.52073616, -0.36136544, -0.8376033, - 1.6064132, -0.8801912, -0.18989213, 0.58482337, -0.5220136, -0.9568051, - -0.8051019, -0.90058106, -0.8582996, -0.83401585, -0.76663965, - 0.80182016, -1.0031923, -0.78319347, 0.8022093, -2.4085288, -1.0805943, - -2.610998, -1.2967508, -0.54898196, -1.0381081, 0.14952148, 0.026705708, - 1.490445, -0.7424213, 0.2993431, 1.6834778, -0.39212018, -1.7195772, - -0.9122533, -0.38088393, -1.6278119, 0.19341996, -1.6491971, -1.578567, - -1.2187973, 0.38108677, -0.80076635, 1.2534205, -0.08872552, 0.4997805, - -2.352738, -2.5974243, -0.7202809, -1.836165, 2.5906844, 0.18524957, - -0.8852893, -1.3181559, -1.2716374, -1.0673826, 0.5721273, 0.026441406, - 0.8906466, 0.4666767, -0.1650778, -0.6932104, -1.6532313, -0.63417614, - -1.2167675, -1.2695583, -0.7201057, 0.7948221, -0.5476963, -1.5504189, - 2.1222596, -0.77393496, -0.5130841, -0.20109761, -0.55511606, - 0.87201107, -0.49561703, 1.1497494, 0.25433627, -0.69425714, -0.6450156, - -2.2932239, -1.856693, -0.18719986, -1.4914219, -0.26140842, -1.3310108, - 0.4709007, 1.5146043, -0.08204769, -1.103421, -0.14162482, -1.3549932, - -0.530733, 0.25554222, 1.4159989, 1.9409419, -0.16397262, -0.9059438, - -1.2803847, -0.72566104, 0.063781515, -1.5023041, -0.09278697, - -0.49954396, -0.70055676, 0.879808, -1.4214352, -1.3905581, -2.9586096, - -0.04013267, -0.88706064, 0.31594437, 1.8045212, -1.6412598, -2.2066345, - -0.20885278, -1.2151262, -1.5989151, 0.5799694, -0.70265657, 0.5724825, - -0.8364856, 0.3987461, -1.1746651, -0.7829331, -0.3026744, -0.86447513, - 0.20223105, -0.027054258, 1.297852, -1.0012558, -0.4671191, -0.46366957, - -1.3081429, 0.6087323, -1.0080884, -0.9055384, -1.9525716, -1.3600427, - -1.6112596, -1.5161647, -2.286508, -1.1540135, 0.094668694, 1.3953321, - 0.5013425, -2.4011204, -1.0953903, -0.10789877, -1.8559104, -0.47130778, - -1.1276286, -0.09687118, 2.271357, 0.041045934, -0.1119014, -0.8519464, - -1.0522783, -0.3460629, 0.27979767, -1.0355676, -1.5769401, -0.7403163, - -2.230249, -1.740896, 0.61698246, -1.7111726, 0.45521605, -0.57456326, - -2.008122, -1.4057729, -0.12571394, -2.194419, -0.5781476, 0.23419397, - 0.2576604, 0.19855645, -1.4113055, 0.3684081, 1.0851074, -2.012979, - -1.6918743, 3.074967, -0.16269849, -1.3027995, -2.22951, 0.63212264, - 0.23789252, -0.053105142, -1.0283422, 0.24250358, 1.9928609, 0.61206925, - -2.1172252, -1.1968395, -0.36483404, -3.4438112, -1.6707227, 0.6044556, - -0.11411254, -2.05048, 0.33440745, -0.17786491, 0.9567888, -1.7382375, - 0.64598334, -0.38851702, -0.9131462, -0.75506556, -0.93818665, - 0.3827966, 0.5382718, -2.2754056, -1.8331258, -2.5682106, 0.4360785, - -1.674655, 2.739373, -0.19003671, 1.4567358, -1.3246773, -0.31612793, - -0.6029045, -0.45709357, 0.70776695, -2.660815, -1.609199, -1.5023164, - -1.7701211, -2.0026984, -2.2686656, -1.3173531, -1.4356866, -1.7578514, - 0.35362276, -1.6255229, 0.2042863, -2.1069415, -2.82365, 0.5333558, - 0.02081456, 0.46100226, 1.4969928, -1.0017861, 0.76357687, 0.9574411, - 0.2824945, 0.049648944, -1.9382296, -1.7673254, -1.9166894, 0.36959586, - -1.122625, -3.9350934, -0.75788414, -2.1924448, -1.3374002, -3.1694524, - -0.7374126, 0.2333083, -1.7665819, -2.017609, -0.97713244, -0.068839096, - -1.2833023, -1.8846596, -0.25258088, -0.37392384, -0.69471884, - 0.52115464, 1.1567271, -1.8753685, -1.5016644, -0.045551628, -0.5382964, - -1.2288599, -1.5290735, -0.73524773, -0.87533677, 1.4216726, - -0.49566773, -0.94085884, -0.78771985, -0.693208, -2.080722, -2.9997904, - 1.7511396, -2.1072097, -0.35442296, -0.669549, -1.9288585, -1.2173722, - -1.2268935, -0.42386502, -1.4745768, 0.40356398, -1.2752634, -1.0738618, - -0.029535435, 0.24326172, 0.24708372, 1.298012, -2.1221483, 2.6941063, - -0.5289508, -2.3383355, -1.1853191, -0.6388835, -0.89862967, -0.5706597, - -1.528, 0.85789084, -0.3609289, 0.5298656, -1.713321, -0.80297923, - -1.2222937, -1.4524341, 2.081131, 0.77716106, 0.1419541, -2.0144875, - -1.7092586, -0.41628394, -1.1160142, -2.0732288, -0.6606639, -2.7565095, - -1.8155452, -0.13495691, -0.24213585, -1.3953632, -0.5574073, - -0.9572793, -2.0979054, -0.62249947, -2.1517987, -0.6766976, - -0.77324724, -1.7439481, 1.0694689, 0.20926298, -3.9658217, 0.6078975, - 1.3288018, -1.1987094, 2.1343863, -0.16724837, -1.7801248, 2.137902, - -0.65618, -0.5327531, -0.6787937, -0.7239697, -0.8698279, -1.8054589, - -0.042889066, -1.1120636, -0.23881063, -0.12007458, 2.1520488, - -0.27399912, -0.10118577, -1.082991, -0.5763058, 0.6017816, -1.0428421, - -0.61653054, 0.40829188, -2.3339581, -1.0543271, 0.2154142, -1.7266018, - -0.099750735, -0.5379402, -1.4178568, 0.15799198, -0.10688208, - -2.5700965, 0.6506694, 1.061777, -0.40752098, -0.90565336, -0.8117429, - -0.38314584, -0.24634863, -0.055180207, -1.00367, -0.7375815, - 0.86310583, -0.794375, -2.522702, 0.9682405, -0.6520595, 0.6339555, - -1.0759101, -0.99358374, -0.67841494, -0.6204967, -0.83461225, - -1.3088424, -0.37953922, -3.2080338, 1.0304728, -1.9023294, -0.2993393, - 0.78816974, 0.06813353, -0.41810542, 0.0918283, -0.4102139, -1.0230168, - -0.4740233, 0.74684787, -0.48048466, -1.6527586, 1.376353, -2.6026576, - -1.8931322, 0.60841626, -0.27728406, -0.5212651, -1.7414665, -1.0139662, - -2.0083635, -0.50597423, 1.601806, 1.8000865, 0.18197525, -3.3524804, - -1.7612926, -0.17451623, -1.0614381, 0.107015446, 1.1076672, -1.3833292, - -0.8089723, -0.5355791, -0.9987388, -0.42109275, 0.24752182, -1.3419193, - -0.2923981, -0.7105391, -0.05625928, 0.6754905, 0.6984744, -2.021203, - 0.74278694, -3.4594924, -0.041644804, 0.41440025, 0.7821776, -0.4409908, - -1.0995437, -2.46486, -0.047907457, -1.3043646, -2.3638897, -1.6841877, - 1.2217773, -0.65115446, -0.89367944, -1.2914371, -1.5436223, -2.0891104, - -1.7294183, -1.0535637, -0.6407286, -1.505635, 0.33922914, -1.1814597, - -0.85944927, -1.5164047, -1.4128994, -0.8543212, -2.4463336, -2.5085762, - -0.9530768, 0.3431131, -0.113469675, 0.22710004, -0.23687948, - -0.2791296, -0.58168775, -0.9655917, -1.5931959, -0.49961427, - 0.41455725, -0.39232025, 0.053571768, -1.140596, 0.38788486, -1.2482165, - -0.2801359, 0.16650291, 2.6423738, -0.5865345, -0.8943019, -1.2105203, - -1.0682061, 1.2847109, -0.77319413, -1.3731763, -0.006034583, - -0.9462689, -2.4105566, -0.012231465, 0.43634665, -1.543569, -0.8997488, - -0.53208137, -1.6751101, 0.037334353, -1.8922406, 1.1241262, -0.9134458, - -2.5918891, -1.539434, -1.5418801, 0.42154464, 0.63019, -0.51818365, - 0.9476402, 0.25418162, 1.3321555, 0.04324983, -0.9200251, 1.8792574, - -1.8964531, -0.44500518, -0.8342639, 0.6248103, -0.40281203, 3.3023055, - -0.9561026, 0.24653739, -1.7569677, -2.3837454, -0.26895255, - -0.07720271, -1.5969716, -0.5318596, -2.5207086, 0.37095863, 0.5004362, - 1.8413168, -0.8990712, -2.2561314, 0.31708083, -0.15226834, -0.5493854, - 0.49010795, 0.85811967, -0.6639855, -1.981709, -0.8739416, 0.41480792, - -2.0888836, 0.05645235, -1.4857008, 0.34029585, 0.6007162, -0.6153374, - -1.3931136, -0.4955629, -0.99360704, 0.40859225, -1.2143898, 0.18246226, - 0.38942212, -0.17724049, -1.0905603, 0.02289642, 0.0249252, 0.34700954, - 0.1182774, 0.8639672, 1.1604248, -2.2298758, -2.284574, -1.1147455, - -1.8104079, -0.44280663, -0.6256386, -0.08708319, -1.346015, - 0.041576616, -1.3057677, -2.6509361, -2.0187447, 1.1212667, -0.9811063, - -0.19024289, 0.46404472, 0.5311732, -0.8216302, 0.09296392, 1.4223341, - 2.4472022, 0.22710869, 1.6538233, -0.84787875, -0.9548898, -1.0418991, - -0.30288762, -1.5179641, -0.59547204, -0.48713836, -1.1779702, - 0.52179843, -0.3441563, -0.782313, -0.32709324, 2.8384838, 0.80364186, - 0.49579966, -1.4958963, 0.67028123, -0.027880497, -0.99200493, - 1.3984439, -1.5883092, 0.6198282, -1.1206172, -0.6311588, 2.271612, - -0.3877756, 0.44038102, 0.39557838, -0.33675563, 0.41356292, 0.18969527, - -0.21584152, -2.5468304, 1.033903, -0.26630092, -0.224453, 1.5692492, - -0.6839744, -0.8235922, -0.7451179, -2.2042608, -0.413751, -0.28719133, - -1.17536, -0.47024333, -1.6762483, 0.0206474, -0.77604836, -2.036418, - 0.41644973, 1.154698, -1.5238332, -0.78449917, 0.8782943, 1.1925558, - -0.24849227, -0.52788055, 0.5190962, -1.4270641, -1.555504, -1.9264449, - -0.48110783, -1.2641095, -1.4914155, -0.7654575, -1.8200487, -0.9160446, - -0.9252986, 0.10389184, -2.1739755, 0.07530594, 4.029005, 0.017983105, - -1.1920619, 0.72087574, 0.15762743, -0.81707126, 0.27895516, -1.9837009, - -1.7110652, -1.302466, -1.6303093, 0.54783195, -2.0478866, -0.6474084, - -1.6803734, -0.91339135, -0.8719533, -0.8151518, -1.8145787, 0.5218231, - -1.4741242, -1.5839514, 0.8980216, -2.3011763, 0.9021967, 0.4077576, - -0.6381662, -0.3381478, -1.5052023, -1.3194503, -0.7556109, -0.9618031, - -1.4103467, 0.25563246, -2.7299516, -1.7751511, -0.3015022, 0.15605909, - -0.7855004, 0.73107064, 2.3000057, -0.51849884, 0.33932653, -0.31881005, - -0.45613915, -1.1199518, -0.7206359, -0.8506038, -0.3451355, - 0.018197462, -0.82471675, 0.045725886, -0.5995412, -2.8334892, - -1.3152617, -0.5248609, 0.33113748, 1.1855409, -1.1330446, 0.55136466, - 0.40943685, -2.6660187, -0.4379704, -1.5207676, -2.433495, 1.8179628, - -1.5641683, -1.6537302, -1.2621362, -0.25379413, -0.8419987, -2.4282331, - -1.6819198, 0.86724025, -1.038521, -0.18152575, 0.22480631, 0.21553963, - 2.6552813, -1.899986, -0.6942357, 0.77549374, -1.2058715, -0.57803434, - -0.6203252, -0.102173366, -0.75695753, 0.560674, 1.0787088, -0.6771136, - 0.52277184, -0.32508594, 0.65256166, -0.572794, -0.4273496, 1.6219739, - -1.3939518, -1.7232943, -0.14219892, -0.66031045, -0.0365439, - -0.8116329, -0.18603434, -1.0562111, 1.5359962, 1.1584698, -1.4803817, - 1.4185746, -0.69138396, -3.0824227, -0.6121805, -1.9005538, -1.1708766, - -1.6274385, 1.89295, 0.5061326, -1.2541709, -0.98507977, 1.0269451, - -1.3631396, -2.6556082, -1.4298506, 0.042996988, -0.09280275, - 0.048326254, 3.2356555, -3.5545056, 1.2373948, -0.74617165, 0.42822608, - -0.7606081, -2.4436984, -0.08422776, -2.106398, 0.38131452, -0.15417358, - -0.15844515, -1.4384092, 1.1170313, -2.153955, 0.9479142, 0.69202673, - -1.3266809, 1.3045274, -1.062372, 0.76139784, 1.8795156, 0.33934206, - -0.72585654, -0.88987595, 1.2289972, -1.3586432, 0.36721197, 0.41204473, - -1.0214499, 1.980438, -2.167753, -0.70588124, -0.6103899, -1.7149639, - 0.5184989, 0.8744001, -0.48255032, 0.25229096, 1.0900812, -0.46789348, - 0.705717, 2.1610475, -0.076316714, -0.96145743, -1.3817002, -1.3371856, - -0.22156584, 0.07728222, -1.8030797, -1.2766523, -0.9100101, - -0.81650364, 1.4686246, -0.5346516, 0.5718661, -1.6713789, 0.19889162, - -3.325071, -0.86004484, -1.285337, -0.25072888, -3.8647375, 1.6048753, - -0.22448997, 1.6924534, 0.19341952, -0.3847941, -0.7438905, -0.7800615, - 1.4639163, -2.4597359, 0.28750426, -0.7812967, -1.1233791, -0.27139944, - 1.3292512, 1.310249, -1.0208855, -1.9592564, 0.5981963, -1.5485003, - -0.20650017, 1.2336199, 0.73086405, -1.7246848, -0.8018072, 1.2840292, - -1.9186273, 0.4023509, 0.32459757, 1.1138496, 0.54607135, 0.0782862, - -1.3080624, 0.5880041, -0.14853974, -1.4875965, -0.061083414, - -0.84178233, 0.9393879, -1.7421113, 0.21922451, -1.0307989, 0.42908895, - -2.7233071, -0.7742951, -2.3150408, -1.2017052, -0.6742955, -1.8596724, - 1.013553, -1.2337761, 1.8889773, -1.9001274, 1.4232361, -2.6917615, - 0.73702, -1.5213071, -0.5476302, -1.2820626, -0.6500942, 0.19593191, - -0.5733292, -0.1618214, -1.0394813, -0.6092369, -0.63069206, - -0.118097045, -0.36241585, -2.0672884, -1.2404311, -0.9045681, - -0.44248194, -1.1198586, -0.97472227, -0.74916595, -0.7754952, - 0.49499506, 1.7759403, 1.4363654, -1.2383299, 1.0035689, -1.2595681, - -1.5742748, -0.5354328, -1.570923, -0.7980801, -1.6089114, 0.7939852, - -0.60012954, -1.5447798, -0.82554156, -2.150295, -1.6480775, 0.10670298, - 0.28688127, -2.0350006, -3.2732108, -0.35118893, -1.8543236, -1.9065558, - -0.016854689, 0.9620952, -0.9580214, 0.8621423, -0.19194654, 0.15844135, - 0.41959894, -2.4212897, -0.16628249, -2.5844822, -2.6108828, 0.28542268, - -0.73160005, -0.23324917, -0.8727369, -0.8405545, 1.3501232, -2.678221, - -0.77092665, 0.6776423, 1.4493908, -0.1796647, -0.60770726, 0.79827887, - -2.4301417, -0.46397558, -1.7102199, 0.16164273, 0.27591288, 0.39499366, - -0.60229963, -0.85652184, 0.087894395, -0.75648016, -1.6578133, - -0.5982695, -0.39207625, -0.8267708, 0.08795698, -0.70639265, - -0.75317454, -0.6753901, -1.9039713, -0.007818684, 0.5111837, - -2.4823976, 1.9390182, -2.5362816, -2.2674742, 1.7104974, 0.17086534, - -0.56876695, 0.07803032, -1.5568147, -0.7575721, -0.71403354, - -0.41355816, 0.84246695, -1.5185882, 0.47339594, -0.8154546, -2.0449905, - -0.51667964, -0.23438288, -0.57818747, -0.939136, -0.33453608, - -0.9666421, -1.5686113, 0.8913095, 1.1842381, -3.4377022, -1.4087641, - -2.7024028, -0.009760305, -1.5806521, -0.287121, -1.603034, 0.4396862, - 0.7207234, 2.179597, -1.4000266, -1.164318, -1.585548, -1.0391015, - 0.8698208, -0.786256, 0.79043984, -0.90262383, -0.93585986, -3.026665, - -1.1845859, -0.90672207, -1.3671547, -1.354305, -2.073652, -2.057802, - -1.0087386, -0.7308022, 1.4516735, -0.54253423, 0.90948, -1.2758493, - -0.5288022, -0.67205524, -0.48727039, -0.66708326, -0.88032067, - 0.046147536, -2.1636088, -2.6344435, -1.8376373, -0.78411055, - -1.1149987, 1.1600878, -2.823725, -1.2860805, -2.1744125, -0.15882817, - -0.4534965, 1.0409046, 0.4718327, -2.7941275, -1.3485289, -0.31518337, - -1.7564546, -1.4860266, -2.508827, -1.1746296, -0.93174154, -1.865904, - -1.6155957, -0.38190436, -1.2254732, -0.662723, 1.0031104, -0.9335658, - -0.8537228, -0.4110967, -1.9665003, -0.04569085, 1.5514303, -1.4516618, - -1.6041124, -1.0856023, -0.23432034, -1.5145459, 0.1966436, -2.0158477, - -1.4118228, 0.51205766, -0.612794, -1.1648885, 0.013415989, -1.488407, - -0.45349059, -1.1528698, 2.2014086, -0.062995344, -0.9237784, - 0.91671205, -0.20078003, -1.00088, -0.55559003, -1.0182062, -0.6312461, - -0.93969226, 1.5374525, -0.8257314, -2.4436789, 0.25253814, 0.12011504, - 0.40056336, -0.13718566, 1.0819936, -0.8723918, 2.9870749, -0.012770154, - -1.7428281, 0.443541, -0.8382695, -1.5685544, -0.032938227, -1.3268782, - 1.0263551, -1.1043199, -0.9455789, -0.09507037, 0.051956423, -1.1380632, - -0.5618068, 0.118036695, 0.595848, -1.4954575, -0.113810845, -1.7634902, - -1.0878471, 1.2647213, 0.00025269017, -1.2752136, -0.24974735, - -1.1238861, -0.4371776, -2.3741915, 1.0057327, -2.1036189, -0.9649274, - -0.16004375, 0.18243223, 1.7965323, -1.4623768, -0.2181933, 0.40054935, - -2.3589501, -0.81099975, -0.24255635, -1.64618, 1.4963987, 0.16538672, - -0.10098143, -2.080861, -0.17725179, 2.0581338, 1.3669792, -0.9834456, - -0.44053683, -0.98867285, -0.32477427, 0.19790596, -0.89201, -2.0940154, - -0.7660986, -0.54268706, 0.117599435, -0.52864957, -0.6557261, - -0.8625335, -1.0842394, -0.025719173, -2.6511655, -1.8317304, - 0.12840277, -1.9721411, 0.55253345, -3.986604, -1.1599293, -1.0948563, - -2.66805, -0.54876834, -0.46395135, -0.19881308, -1.1356661, - -0.46548334, 0.05467473, 0.6321115, -0.40487638, -2.3671882, 1.5774195, - -0.39701638, -0.09752663, 0.14619134, 0.2980416, 0.617634, -0.44447574, - -1.6755881, -0.190754, 1.1862972, -1.7303373, -1.4614778, -3.1796176, - 1.4959598, 0.2071391, -1.9438869, -1.5586694, 0.3807616, -0.45035693, - -1.3513422, -1.5819602, -0.9522511, -1.4467465, 1.885806, 1.0739034, - -2.4711423, -0.20479736, -1.0687698, -0.0111296475, 2.2346256, - -1.1401361, -0.44753286, 1.4681227, 0.9211694, -1.5529913, -0.6010449, - 0.15001582, 0.90815896, -2.2131803, 0.40855667, -3.368118, 2.5337477, - 0.30783775, -2.3665793, -0.3206827, -1.5617744, 0.3421486, -1.9276513, - -1.918161, 0.7037156, -0.7357167, -1.6810155, -1.8328228, -0.22237802, - -1.1464043, 0.39802888, -0.9665776, -1.3693082, -1.2682549, -0.7985789, - 0.03234861, -0.58238226, -0.75888777, -0.51325226, -1.1799409, - 0.112646006, -2.5034869, -1.1013784, -1.6978822, 0.2540189, -0.94697404, - -0.11378245, -1.0429338, 0.030421715, -1.1902691, 0.9589952, -2.4301155, - -0.9027841, -1.4558121, -3.0429275, -1.3849006, -0.70564353, 0.2941984, - -1.3643665, -2.6389704, -0.015246306, 1.3373353, -0.577709, -1.7587463, - -1.4154049, -1.3216876, -3.1710012, -0.16600043, 1.7177901, -0.61380064, - -0.46520296, -0.55589813, -0.96573985, 0.57304907, -1.2274511, - -0.07431451, -1.2877325, -0.7150158, -0.34568512, -2.7247229, - -0.038567692, 0.66396844, -0.5308286, 0.0798511, -1.6466165, - -0.07960965, -0.3652309, 0.8738157, 0.9629468, -1.4207639, 0.36498716, - -1.2428116, -1.261305, -1.086701, -1.9651313, -0.052847892, -1.2189837, - 0.7848687, 0.596982, -1.531035, -1.118429, -1.2112302, -1.6097369, - -1.7660624, 0.32207134, -1.2298087, 1.6797075, 1.6293792, -2.594795, - -2.69525, -2.0938385, 0.10445374, -0.8345835, -0.37196794, -0.96540165, - -0.24669874, -0.31538618, -1.2628471, -3.2269845, -0.43322837, - -1.9955254, 0.99696547, 0.38982162, 0.9580072, 1.1289774, 2.0042357, - -0.11593418, -1.4863793, -0.526105, -1.1005867, -1.2853565, -0.47827435, - -2.000079, -0.102181755, -2.120757, -0.6018505, 0.55322826, -2.0980537, - 0.8425549, -1.8987507, -2.7704885, -0.93163466, -0.61229444, -1.9589807, - 0.111384004, -0.637171, 0.39553505, -1.5545659, -1.7133086, -1.9475927, - -1.788897, -1.1251857, -0.6961762, -0.9823465, -0.92329586, 0.81228924, - 1.5008098, 0.8962666, -0.45051104, -1.1478095, 1.0843366, -1.1775314, - -0.15404896, -1.9651084, -0.056244284, 0.012419105, 0.70591867, - -0.12880594, 0.11531752, -1.8585905, -1.6210668, 0.088373676, - -0.50410867, 0.5221074, -1.1517597, -1.4825019, -0.24006638, -0.689302, - -1.9506831, 0.19582105, 0.5319133, -1.3790773, 0.49036804, -2.153284, - -1.0381327, 1.6561316, 0.29238564, -0.59680134, -1.2783762, 0.044858754, - -0.9167016, -1.3662841, 1.6250143, 4.424273, 1.284194, 0.13923694, - 1.3765063, -2.4841404, -1.3517148, -0.7118564, 1.4819117, 1.314138, - -1.4561976, -0.20540337, -1.3762983, -0.14037575, 1.9730588, 0.5315188, - -1.166379, -0.35988426, -1.8974167, 0.5793956, -1.0828118, -2.1779368, - 0.49534494, 0.355207, 0.0034022555, -0.55834854, -1.2784532, -1.0946563, - -2.572108, 1.005279, 0.76052135, 2.0703392, -2.14118, -1.3601888, - 2.7280593, -1.678647, 1.1057968, -1.1690093, -0.27677646, -0.8241603, - -0.09777395, -0.061512835, -1.2809784, -1.0236121, 1.1380697, - -0.06797104, 0.35797265, -0.21715835, 0.14848211, -1.9183685, 1.0235424, - -0.13855186, -1.8002796, -1.5343363, -0.4694571, -0.84841293, - 0.77380526, 0.03914009, -1.9611305, -0.4572339, -3.196612, 2.1879096, - 0.097082846, 1.0104822, -0.23101224, -0.12863123, -0.58472794, - -3.2101605, -0.016821362, -1.8073583, 1.6035782, -0.009443615, - -0.8453637, -0.36829576, -1.4484518, -0.16779599, 0.34653568, 1.6464206, - 0.27452388, -1.2604363, -1.2396293, -0.20734718, -0.6379569, - 0.027275382, -0.9797564, 0.12957677, -0.4026585, 0.82683945, - 0.010223962, 0.29822993, -2.2494364, 0.26467478, -2.2788813, -1.6094663, - 1.0944033, -1.5420719, -0.7564446, 0.09543297, 0.6046571, -0.55190676, - -0.6863173, -0.3900204, -0.77722615, -0.47915506, -1.5292244, - -0.9513772, -2.2831187, -0.86268544, -2.2981582, -0.38720077, - -2.3293781, -1.730015, -0.88342327, 1.4734154, -1.1123395, -1.0275699, - -1.9566481, -0.31803453, -0.7485841, -1.3308594, -0.8142114, 0.06942473, - 2.5826795, -0.9568725, -1.9718268, -1.2471883, -1.2610943, -0.7678426, - -1.1657765, 0.20321994, -0.61900824, 0.39800072, 2.1551962, 1.3128489, - -0.9796824, 2.6176283, -2.2725143, -1.1186196, -4.1746984, -1.6250889, - -1.5237325, 2.07287, -2.2416239, -2.317953, -1.4801879, -2.2188673, - -1.2208484, 0.77439225, -0.40525717, 0.20158863, -0.25983033, - -0.7156881, 0.12087266, -1.9675397, -0.48012042, -1.1122733, -1.2623471, - 0.8090261, -1.5654682, -3.6965356, 0.39737117, -1.6630293, -2.0441732, - 0.06378064, -0.050774466, -1.6247061, -1.9334705, -0.22964606, - -3.394102, -1.598708, -0.654376, 2.200018, 0.8633322, 0.5505737, - -2.0837731, -0.8529361, -0.7594118, -0.73875463, -1.184551, 1.541518, - -1.9559056, -2.4545898, 0.07919456, -0.7548911, -0.06543048, 0.2482351, - 0.13803822, -0.29838884, 0.090236306, -1.5765158, -1.6152083, - -0.045309767, -2.053343, 1.5009283, -1.7755464, -2.3780494, 2.1997871, - 0.6560779, -1.1512415, -2.743533, 1.0522397, -1.8281752, -0.91744274, - -1.0255789, -0.5697731, 2.4939995, -0.12556815, -0.8559824, -1.4350892, - 0.42824, -0.6231196, 2.1540618, -0.68121994, -1.4522789, -1.7442013, - -3.628173, -0.89504236, -1.9042447, -2.8478353, -0.3572995, 0.4257285, - 0.6920025, -0.54227084, -0.36549896, -0.32263628, -1.7336084, - -0.93835276, -0.5974812, -3.4608355, -0.6836343, 1.52588, 0.7184486, - 0.20969595, -0.39377937, 0.7815765, -2.2955754, 0.3997258, -0.49081028, - -0.20398909, -0.81199664, 0.56264603, -0.098417774, -0.9695958, - -0.18654707, -1.5699917, -0.42537576, 0.6006552, 0.14172202, -2.1797185, - -1.4554962, -0.5192514, -1.2329233, 0.8191113, -0.23893233, -1.0579095, - -0.3193453, -0.23082651, -0.054794174, 1.9831431, -1.5316365, - -2.1860943, -0.8049488, 0.4018674, -0.8432371, 1.8613318, -1.4351039, - -0.9223451, -0.20130251, 0.0327979, -0.76537466, -0.48463035, - 0.56071466, -1.4805492, 0.6951588, -0.4106983, -1.6044822, 0.386112, - 0.17651132, -1.323802, -1.4764366, -0.48873746, -0.90644485, -2.6577797, - 1.0735049, -0.46334222, -1.5279553, 1.7192101, 0.46938252, -2.5729046, - -0.16317391, -2.4202576, -2.5844262, -1.037198, 2.1970472, -0.16930299, - -1.5223753, 0.3676184, 0.41589916, -0.10277965, 1.246205, -2.4880857, - -1.5994488, 0.08661013, -0.2752654, -0.7853047, -2.46358, -1.2592485, - -0.9867135, -0.86460894, -2.0091357, 0.15466723, -0.84082323, - -1.1887373, -0.9414876, -0.9790267, -0.75140905, -3.036287, -2.3152702, - -0.33399633, -0.47215775, 0.33862036, 1.4464678, -3.2641647, -1.5617663, - -0.96449465, -1.0511051, 2.2828565, -2.2711766, -0.19756791, -2.3042767, - -1.0565635, -2.9637532, -1.3221829, -0.8487957, -0.31507808, 0.8960465, - -2.3014777, -0.38222128, -0.1706141, -1.4854324, -1.2617007, -0.7048323, - 0.5909782, -1.2183013, -1.3916262, 0.9611243, -2.3682232, -1.1289382, - -0.6596431, -1.230597, 0.54777277, -1.1403284, -0.73229283, -0.9888184, - 0.38108742, -0.52620965, -0.8898187, -0.5448175, 0.64131385, -1.5550821, - -2.3996553, 0.54694027, -1.6877568, -0.2358174, 0.21576327, 2.0023136, - -1.8992348, -1.0582789, 0.13030453, -0.016029935, -2.1534417, - -2.2591574, 1.0299711, 0.19634494, -0.38246745, -0.5561154, 1.0185074, - -1.8005791, 0.37435874, -2.3843632, 0.19331849, 0.24490617, -0.02911146, - -1.7599972, -0.70606256, -0.7331708, 0.27894714, -0.85740906, 1.8323095, - -1.5274115, -0.53406733, -1.7972834, -0.5695789, -0.8382355, 1.7151512, - -1.5516399, 0.45431623, -1.2048861, -1.1000065, -1.482089, 0.64598423, - -1.1619885, -1.2178217, -1.0218903, 0.6514811, -0.6246073, 2.0467424, - 0.19639608, -0.55883026, -0.004929431, -0.9562241, -0.4108823, - 2.7119045, 1.782968, -0.80304897, -0.8782301, -1.1056085, -1.3336067, - -1.0185647, -0.6710596, -1.0063752, -0.9792356, -1.3221403, -0.3176269, - -0.3771402, 0.7759702, -0.76521903, -0.40542758, -2.7426188, -1.2187715, - -0.25492907, -2.7855277, -1.123538, -2.5493653, 1.4631227, -0.27089953, - -0.39423087, -2.6201766, 0.16656408, 0.19200242, -0.85812676, - -2.5133336, -1.0629698, 0.545161, -0.15100825, 1.9266032, -1.2349653, - -0.26578587, -0.023192056, 0.6929606, -0.23053266, -0.27318293, - 0.37442556, -2.8843074, -2.1282704, -1.8004706, 0.58533216, 0.72789186, - -2.4826653, -1.099282, -0.4610293, 0.6958337, -0.047958724, -0.14467576, - 2.475188, -0.18653949, -1.851011, -1.5220662, 2.31908, -1.8648486, - -0.7421312, -1.7073511, -1.0244217, -1.7999064, 0.9627753, -1.959128, - 0.0677529, 1.0822023, 1.5180843, -1.9674925, -1.1324137, -0.3240453, - 0.69721514, -0.8594601, 1.4513955, -1.2021555, 0.81887, -0.22227825, - -1.9282554, -1.4717233, -0.16303486, 0.036317196, -0.11131475, - -1.016651, -0.65730155, -0.8152379, 0.33369, -1.5013548, -1.3276807, - -0.12494252, -0.75459373, 0.7693628, -1.0822473, -0.9907246, -1.2029372, - 1.3492358, -0.13088515, 1.2895607, -0.7462892, 1.0608101, 0.68947893, - -0.116141915, 1.3011563, -0.28779784, 0.17813651, -0.91412896, - -2.6916177, -1.3913676, -1.2605026, 0.34734547, -1.9242293, 0.53689706, - -0.5313328 - ], - "reducedFeatures": [ - -0.034378484, -0.0664313, -0.08484154, -0.017106846, -0.036290392, - -0.02646104, -0.010638706, -0.015414061, 0.011933032, 0.015620585, - -0.02115119, 0.029318755, -0.03445953, -0.0025004677, -0.028312963, - -0.01299449, -0.031944025, 0.017374957, -0.013461935, 0.041491747, - -0.05849431, -0.020887438, -0.027033327, 0.00065723713, 0.026846789, - -0.01594691, 0.03463276, 0.0030231837, -0.050274298, -0.022844492, - -0.012972657, -0.01640866, -0.050629336, -0.022435153, 0.012678489, - -0.023870103, 0.015771374, 0.010262956, -0.018066872, -0.049277496, - -0.02712945, -0.029611923, 0.001288718, 0.046488993, -0.03546432, - -0.021700304, 0.026812404, 0.06769317, -0.042268634, -0.028270144, - 0.026129244, 0.013812753, -0.0023594347, -0.0047787116, -0.028534327, - -0.033503257, -0.01975024, -0.040217534, -0.033315975, -0.029315688, - -0.009788081, -0.025124174, -0.012706623, -0.012098384, 0.032559514, - -0.036720864, -0.06123308, -0.032598265, 0.0005294963, -0.048199873, - -0.02296632, -0.033374134, -0.005184502, 0.004641424, 0.021203058, - 0.0077694934, -0.027146807, -0.046974644, -0.005827318, -0.010304822, - 0.04772076, -0.034274217, -0.005795858, -0.033176247, 0.013696952, - -0.012374872, -0.02972022, -0.04170463, 0.006483724, -0.0049114167, - -0.030873263, 0.0066712373, -0.029765986, 0.002606949, 0.030424275, - -0.048324954, -0.02003915, -0.013486417, -0.028119022, -0.0125264255, - -0.05023337, 0.046463612, 0.023880644, -0.016841687, 0.009617357, - 0.00896946, 0.028108027, 0.007978314, 0.036332205, -0.06611323, - 0.0031741716, -0.0011532427, -0.0130789345, -0.020379778, -0.017457208, - -0.0052370164, -0.007321539, -0.101466626, -0.023189401, -0.047213543, - 0.032691684, 0.047542322, 0.033823114, -0.024128834, -0.0464614, - 0.0017119015, 0.00465358, -0.014635113, -0.019607453, -0.02895463, - -0.027687002, -0.03189128, 0.016175594, 0.0045369165, -0.0010067576, - 0.0017709865, -0.015254645, -0.019170115, -0.036479484, 0.002851376, - -0.04165076, -0.023876755, 0.005200227, -0.021346133, -0.05020415, - -0.042119812, -0.012315962, 0.026324404, -0.0676168, 0.004942767, - -0.034577876, -0.016035883, -0.013634767, 0.003922032, 0.056276154, - -0.01523127, -0.020091, -0.014042781, -0.047906216, -0.02616838, - -0.02604302, 0.004089776, -0.014345706, 0.033879604, -0.018667322, - -0.005855824, 0.02805042, -0.0373199, 0.0062895427, 0.021879839, - -0.027377315, -0.026168818, -0.034993246, -0.005277382, -0.035450764, - 0.009515946, -0.0023370013, 0.0034931414, 0.033368364, -0.050364736, - 0.0013913717, 0.002141687, -0.024847003, -0.0142670665, -0.0051860935, - -0.04970116, -0.010329967, 0.0047413628, -0.06150463, -0.02200243, - 0.019573566, 0.007202328, -0.005442391, -0.059672568, -0.014854232, - 0.0040271315, 0.04271808, 0.0780541, 0.008398779, -0.0059897252, - -0.022227561, 0.0052049686, -0.03131729, 0.0058836034, -0.015579028, - -0.012119855, -0.029036248, -0.027569503, -0.029311059, -0.011675371, - 0.029071782, -0.042759776, -0.03909865, -0.043574985, -0.022432456, - -0.040705454, 0.036086664, -0.020423196, -0.032366637, 0.0037332522, - -0.06581394, 0.0332343, -0.029648, -0.035757598, 0.033095237, - -0.038563546, -0.019421725, 0.031592023, 0.0024154196, -0.0029476844, - 0.035859056, -0.036181536, 0.0361727, -0.0430928, 0.016206667, - -0.005792009, -0.03502223, 0.005494441, -0.042010877, 0.0012221452, - -0.014385081, 0.014742528, -0.017050035, -0.039001644, 0.0047573852, - 0.022985205, -0.023200693, -0.013665335, 0.008081046, -0.013543554, - -0.026965924, 0.004839641, -0.0022459007, -0.0053545125, -0.0050362446, - -0.025070835, -0.037485674, 0.030628009, 0.0041451314, 0.007143458, - -0.06846021, -0.04108962, -0.022777231, -0.031615026, -0.024517434, - 0.0038380239, -0.019445542, -0.015116283, -0.009558304, 0.021906445, - 0.052563287, -0.030310117, -0.030584892, -0.02388207, -0.02607256, - 0.027381044, -0.015092854, -0.07851288, -0.031744, -0.061547723, - -0.022968337, -0.012121798, -0.011311993, -0.04518872, 0.0013198685, - 0.007593603, -0.0052687046, -0.013333174, -0.0055695097, 0.005521705, - 0.007202659, 0.029041944, -0.002213348, -0.020489838, -0.06535784, - 0.04700022, 0.0067910147, -0.010951628, 0.033730175, -0.006322973, - 0.03159018, -0.0428734, -0.042241182, 0.0054795584, -0.061296165, - -0.04829387, 0.054842383, -0.005164466, -0.01789956, 0.017158741, - 0.052536126, -0.032408506, -0.016272249, 0.007938861, 0.031544905, - -0.0003985742, -0.021611342, -0.011435591, 0.014152359, 0.00176523, - 0.000508649, -0.00078231515, 0.0022003206, 0.032767233, -0.029591333, - -0.07801258, 0.017044991, -0.029380972, -0.017346932, -0.054714866, - 0.015168257, -0.061880264, -0.030199002, -0.014210282, -0.026176376, - 0.02335317, 0.041669667, 0.048954193, -0.03129387, -0.04502325, - 0.01052006, -0.0438432, -0.024776336, 0.0007822574, -0.039752685, - -0.023899442, 0.026063977, -0.0535431, 0.012483248, -0.053568624, - -0.030791093, 0.030645592, 0.040372845, -0.033169396, -0.001430565, - -0.020577893, -0.02822774, 0.049073204, -0.017027996, -0.035996087, - -0.052967116, 0.03511969, -0.025141204, -0.026231302, -0.057602294, - 0.0007510075, -0.040298216, -0.034571398, -0.027491568, -0.021530211, - -0.013673404, 0.055591337, -0.01947147, 0.0040675253, 0.041536745, - -0.02741494, -0.03797767, -0.028821662, -0.0047836537, -0.031269673, - -0.0027497872, -0.020476514, 0.025605414, -0.020942528, 0.047260147, - 0.04549846, 0.03337992, -0.022847721, 0.048418697, -0.0062550316, - -0.006231114, -0.037069418, 0.0065792324, -0.030580662, -0.079717785, - -0.05502515, -0.0031898343, -0.011092565, -0.025155952, -0.01294613, - -0.039762598, -0.025958002, 0.008216604, -0.0013570385, -0.044310328, - -0.059644867, -0.016972288, -0.006129744, -0.05045796, -0.019029537, - 0.05830986, 0.021959862, -0.017543025, 0.0031873896, -0.038025472, - -0.027342247, -0.0051050833, -0.035651002, 0.008632703, -0.027839467, - -0.03126292, -0.0019813145, -0.0004536963, 0.019170325, -0.014682688, - -0.018575728, -0.034448985, 0.021536442, 0.0017543751, 0.010131067, - -0.014302504, 0.02108884, -0.025662865, -0.020764852, 0.031939164, - -0.018017154, -0.022812674, 0.014121299, -0.0041250144, -0.0097576035, - -0.081359416, -0.04562047, -0.01782185, 0.037288845, -0.036448367, - 0.06258455, 0.0015887697, -0.023157185, -0.012475698, -0.0058426517, - -0.045379885, -0.05807763, -0.016342444, -0.024286143, -0.029447943, - -0.05406554, 0.03206421, -0.010199533, -0.061873805, 0.05124601, - -0.013716494, -0.062084943, -0.021469623, -0.0064622476, -0.040020548, - 0.054334145, -0.020877978, -0.061687425, -0.003190104, 0.014261515, - -0.044456914, -0.033591274, -0.0038172968, -0.012658436, 0.00603561, - -0.03710001, -0.0027275004, 0.027917314, -0.032345075, 0.024382997, - -0.040276017, -0.013725036, -0.01893719, 0.00395693, -0.030054059, - -0.04467252, 0.0075864526, 0.05200078, -2.0492016e-5, -0.020271856, - -0.041296754, -0.023549786, -0.03100427, -0.009092575, -0.032064676, - -0.02767024, 0.03598329, -0.011643161, -0.029467754, -0.027938677, - -0.006779322, -0.06530781, 0.00038157866, -0.03952768, 0.003987955, - -0.012500766, 0.021236988, -0.02162919, -0.063194714, 0.019797614, - -0.025629953, 0.011400779, -0.01242177, -0.028355002, -0.028126724, - 0.034813676, 0.009957876, -0.033920504, -0.034653626, -0.026362348, - 0.030925069, 0.0005538557, 0.030567095, 0.010772148, -0.010270133, - 0.027796948, 0.015504381, -0.055738393, 0.020135744, -0.030598547, - -0.014416602, -0.008021871, -0.021512233, -0.0049290406, -0.008461671, - -0.035485167, -0.030329656, -0.0753036, -0.032245416, -0.042443436, - -0.0064801904, 0.0016458246, -0.027029261, -0.044353902, -0.010219768, - 0.026547233, 0.025793437, 0.0008110366, -0.01598949, -0.0153041845, - 0.020706072, -0.0016011354, -0.002641925, 0.005036597, -0.04489648, - 0.006383258, -0.0067793927, -0.017207408, -0.009657314, -0.075492285, - 0.023968926, -0.036330886, -0.022413572, -0.04748256, -0.025213331, - -0.023307648, -0.012769262, 0.033078585, -0.03974952, -0.02072264, - -0.024626488, -0.0447689, -0.0036758839, 0.045327496, -0.03677089, - -0.04256328, 0.004742167, -0.0332697, -0.0097883465, -0.009307322, - -0.025191637, -0.023694132, -0.0024828638, -0.0003275291, -0.0915882, - -0.039827958, -0.037394878, 0.0024795448, 0.017346157, -0.00043923262, - -0.045739137, -0.002966424, 0.033777103, 0.005032818, -0.003537862, - 0.010188204, -0.03328512, 0.003508268, -0.019354042, -0.0020450212, - -0.046664305, 0.0091941, 0.020148072, -0.014985887, 0.036170658, - -0.05836821, -0.06891181, -0.049048524, 0.011608112, -0.017753052, - -0.032257456, 0.009522058, -0.019853238, -0.03269621, -0.045897476, - -0.0025388352, 0.05250672, -0.0014397372, -0.032813206, 0.020362563, - -0.057193525, 0.011314561, 0.009273815, 0.0064175325, -0.007568071, - -0.013818868, 0.013700033, 0.01881598, 0.008346017, -0.0005587481, - -0.01023578, -0.025766656, -0.016940765, 0.001834796, -0.033436798, - -0.017640747, -0.02825583, -0.009605013, -0.022654004, -0.026844563, - -0.020473562, 0.033577304, -0.05093441, -0.052661676, -0.016257983, - 0.06642234, -0.047712848, 0.0029259224, -0.042684656, -0.05248342, - 0.016588485, -0.019484403, -0.038368613, -0.057340328, -0.0240647, - -0.016641755, -0.024714135, 0.015991556, -0.011786533, 0.0071973074, - 0.028181002, -0.031184832, -0.06297011, -0.042482387, -0.016403396, - -0.029492477, 0.039706856, -0.026724104, -0.02035985, 0.0629307, - 0.009811142, 0.031423986, -0.039121173, 0.028048005, -0.035322707, - -0.016127387, -0.06531129, 0.011463962, 0.0038174493, 0.00514397, - -0.009599621, -0.0038922103, -0.026966976, -0.024607424, -0.023155967, - -0.013222183, -0.052889396, -0.008937277, -0.03229056, -0.040493105, - 0.0037925206, 0.0534766, -0.008834983, -0.02561461, -0.03398132, - -0.022592172, -0.009651998, -0.008141192, 0.05709648, -0.008754594, - 0.01270772, -0.018877987, -0.026673963, 0.0070546, -0.03507493, - -0.0015214504, 0.014192581, 0.0076847197, -0.0022424045, 0.026956886, - -0.02494039, 0.03432488, -0.027282985, -0.01100833, 0.00638109, - -0.026941309, -0.009595321, 0.028365927, -0.055982262, 0.019638322, - 0.010946447, 0.019287866, -0.008359376, -0.0048345183, 0.04471815, - 0.009901969, -0.024327153, 0.007469481, -0.011762667, -0.018115781, - -0.027171396, -0.024147633, -0.019825397, 0.0324188, 0.027516529, - -0.034594886, 0.053362176, -0.039912984, 0.027527397, -0.036804635, - -0.008734687, -0.042803217, -0.02194745, -0.032121234, -0.009048382, - 0.021151593, -0.039525915, -0.029579917, -0.043427393, -0.039612714, - 0.048006207, -0.039364446, 0.033008195, 0.008577333, 0.03413886, - 0.010260115, -0.060340367, 0.012858577, -0.022051021, -0.050238613, - -0.038470175, -0.055055868, -0.050304085, -0.00066003465, -0.029311921, - 0.0016917867, -0.015301727, -0.023566972, 0.009701208, 0.015041816, - -0.012843921, -0.03165326, 0.029827137, -0.026004443, -0.03349733, - -0.031718034, -0.025912035, -0.039110698, -0.045656897, 0.062884144, - -0.029763876, -0.01244124, 0.032779142, -0.020275231, 0.026484326, - -0.042703614, -0.059427116, -0.008400927, 0.009372758, -0.03452249, - -0.040579565, 0.013052137, 0.010430125, -0.019918943, 0.009945475, - -0.030234577, -0.021050664, -0.11674753, -0.026188262, -0.056734625, - 0.074526206, 0.006051135, 0.0412528, -0.009509348, 0.017108848, - 0.034274895, 0.004169688, -0.015253065, -0.08667722, 0.001865402, - 0.023990655, -0.026602771, -0.023417369, -0.035371955, 0.026190298, - -0.030116199, -0.026555939, -0.0006764138, 0.0046323338, -0.028534545, - 0.022316294, -0.02847941, 0.02526335, -0.04387464, -0.017078185, - -0.030468097, 0.0433897, -0.020504747, -0.04427177, -0.044084314, - -0.03658832, -0.08620097, -0.04351622, 0.011350911, 0.014572593, - -0.01622872, -0.025435222, -0.029502831, -0.013145831, -0.005678838, - -0.06160834, -0.008731143, -0.019154213, -0.048342474, 0.030545171, - -0.043760985, -0.008860133, -0.043926027, -0.02937976, -0.02250788, - -0.019265426, -0.025284125, -0.011420392, -0.019736873, -0.008976927, - 0.0032527817, 0.045927066, 0.001043074, -0.033502437, -0.010985215, - -0.024603069, -0.016551074, -0.07750526, 0.01101519, -0.0020132298, - -0.04114837, -0.023905685, -0.06462333, -0.07786207, 0.0005557833, - -0.047906253, 0.0010927103, 0.03284815, -0.039406106, -0.0038493695, - -0.029595383, -0.020131027, -0.053258654, -0.029592235, -0.037333287, - -0.0454577, 0.018059315, 0.029217182, -0.029068187, -0.011177257, - 0.021750687, -0.009388437, -0.005581319, -0.0008846824, -0.004434867, - 0.0017827075, 0.024786962, -0.035052188, -0.014896853, -0.013590609, - 0.035206467, -0.029972449, -0.033677954, 0.007329304, -0.030254848, - -0.03191829, -0.02936776, -0.008075549, -0.017761627, -0.005075765, - -0.010408621, 0.00539799, -0.024879929, 0.043143168, -0.038314678, - -0.053469103, 0.016208211, -0.05494688, -0.032006368, -0.011762908, - 0.0012678058, -0.026664928, -0.0095812995, 0.024598973, -0.015735967, - -0.035168584, -0.014672752, -0.038688585, -0.04856659, -0.0150586935, - -0.052329026, -0.015977623, -0.03117558, -0.03773615, 0.014132459, - -0.05277053, -0.025174981, -0.029771574, 0.013256311, -0.0015323901, - 0.010245484, -0.017793393, -0.04951248, -0.015101725, -0.025272656, - -0.020108568, -0.039500393, -0.06585119, 0.0017044425, -0.060776275, - 0.025444498, 0.036463138, -0.010545426, -0.03921195, 0.009969696, - -0.013602008, -0.02721449, -0.021988822, -0.03965854, -0.041092582, - 0.021497048, 0.020477545, -0.039021477, -0.06392418, -0.021856343, - 0.004841326, -0.045703534, -0.0006754495, 0.019799048, 0.037106153, - 0.022949912, -0.030091109, 0.0062059616, 0.023235569, 0.01253179, - -0.025248172, -0.0547942, 0.003594514, 0.027880568, -0.0757235, - 0.03862604, -0.022737462, -0.007718329, 0.01783148, 0.011164623, - 0.004219619, -0.023584502, 0.005425554, -0.07202196, -0.0272956, - -0.017278783, -0.0013770204, 0.024853092, -0.043159235, -0.00311036, - -0.042751174, -0.053812496, -0.049921453, -0.06809876, -0.0063224575, - 0.0014386149, -0.010644947, 0.013717652, -0.042038336, 0.04013697, - -0.046813987, 0.0016941804, -0.057239197, 0.022985907, -0.030796632, - -0.033206932, -0.025719602, -0.022457285, -0.031723876, 0.013652786, - 0.03348009, -0.004610341, -0.012412072, -0.012797538, 0.010935466, - -0.07583731, -0.019978689, -0.0036991038, 0.014630043, -0.05152369, - -0.03534693, -0.0039630765, -0.008700569, -0.0069245286 + "features": [ + -0.017864987, + -0.032833405, + -0.04001921, + -0.010477446, + -0.019049013, + -0.01000767, + -0.009077746, + -0.006751861, + 0.010843826, + 0.0107930945, + -0.011778241, + 0.014486043, + -0.021730289, + -0.00087245106, + -0.013774077, + -0.005468212, + -0.015242324, + 0.007748648, + -0.0046395077, + 0.021598302, + -0.02831909, + -0.013372992, + -0.014105196, + 0.00033952828, + 0.0121713085, + -0.007402589, + 0.021042468, + -0.00033750327, + -0.025445582, + -0.012521941, + -0.007662703, + -0.005590845, + -0.026054546, + -0.010271831, + 0.00453978, + -0.011582616, + 0.009154581, + 0.003172864, + -0.0083974125, + -0.02635031, + -0.013910724, + -0.016403945, + 0.0026322631, + 0.024271833, + -0.01574346, + -0.013020082, + 0.012258458, + 0.03429525, + -0.022187652, + -0.018000128, + 0.013945416, + 0.006703766, + -0.0016587579, + 0.00010128116, + -0.01762403, + -0.014991867, + -0.012249897, + -0.021108013, + -0.017615402, + -0.0149196545, + -0.008038093, + -0.013193793, + -0.009955169, + -0.007840914, + 0.018460415, + -0.01757078, + -0.029781837, + -0.014924219, + 0.0003472627, + -0.026161445, + -0.012721348, + -0.0140722785, + -0.0011154808, + -0.00072464504, + 0.009077515, + 0.002800427, + -0.010981615, + -0.025880473, + -0.0016286934, + -0.0035690856, + 0.024986915, + -0.015072673, + -0.0054619927, + -0.015397114, + 0.0075070495, + -0.0061146277, + -0.012786842, + -0.021630632, + 0.0024042332, + -0.004521108, + -0.013296715, + 0.003261386, + -0.018589541, + -0.00023144486, + 0.007795932, + -0.024992809, + -0.012024693, + -0.008681625, + -0.014383195, + -0.009034557, + -0.027568629, + 0.023361309, + 0.0075513916, + -0.008216515, + 0.0080840355, + 0.0082158, + 0.014704255, + 0.0051369336, + 0.017662523, + -0.034621447, + 0.005295531, + -0.00011149866, + -0.0061087846, + -0.012879657, + -0.0072422046, + -0.0023676823, + -0.004916547, + -0.049697056, + -0.0143021755, + -0.028145581, + 0.019611154, + 0.028558295, + 0.019575039, + -0.014953544, + -0.023554195, + -1.962216e-05, + 0.002127293, + -0.008990346, + -0.010441165, + -0.016989598, + -0.014563064, + -0.01583898, + 0.0054108487, + 0.0015272562, + 0.0021421174, + 0.00080326456, + -0.010862145, + -0.00865532, + -0.016848492, + 0.001439744, + -0.018925697, + -0.013351026, + -0.0038705491, + -0.012878198, + -0.023409307, + -0.020815322, + -0.0047132, + 0.013624684, + -0.033967476, + 0.0028147143, + -0.021378621, + -0.009893858, + -0.007877935, + 0.0035609344, + 0.028846707, + -0.008120212, + -0.010233203, + -0.008406896, + -0.021918586, + -0.013117008, + -0.015365958, + 0.0015374209, + -0.012902805, + 0.018979361, + -0.0064737597, + 0.0006614067, + 0.014336385, + -0.022067929, + 0.0037929525, + 0.011817555, + -0.014392992, + -0.016295973, + -0.015792532, + -0.0057344954, + -0.016613368, + 0.004483888, + -0.0067228773, + -0.00073086383, + 0.015754187, + -0.024413945, + 0.00091671024, + -0.004689296, + -0.01084874, + -0.007901575, + 9.6491895e-05, + -0.024784155, + -0.005220306, + 0.0042107883, + -0.033376954, + -0.011856875, + 0.010080441, + 0.0022896398, + -0.00024871677, + -0.028468737, + -0.009063248, + 0.0026757887, + 0.02048058, + 0.03943023, + 0.0035930434, + -0.0031934103, + -0.013167843, + 0.003638663, + -0.0150177935, + 0.003971615, + -0.008773281, + -0.00411207, + -0.01531193, + -0.01476233, + -0.017442964, + -0.0070366487, + 0.013563218, + -0.022422343, + -0.02032249, + -0.023977295, + -0.009159019, + -0.019355044, + 0.019760597, + -0.009374281, + -0.015741875, + 0.00406873, + -0.036004215, + 0.017501656, + -0.016355626, + -0.016762549, + 0.012842498, + -0.023432393, + -0.0069888877, + 0.016406791, + 0.005682099, + -0.0010780212, + 0.018983737, + -0.013793444, + 0.018187372, + -0.018659417, + 0.010216609, + -0.0054167644, + -0.015936688, + 0.0016742221, + -0.020765107, + 0.00044853185, + -0.010470545, + 0.010448002, + -0.010552682, + -0.021147601, + 0.002086016, + 0.011320376, + -0.007830356, + -0.0032105816, + 0.004821853, + -0.003388053, + -0.013132133, + 0.0032258243, + -0.0015810241, + -0.004975327, + 0.00010264433, + -0.015223347, + -0.018835409, + 0.01732359, + 0.0035553584, + 0.0022145435, + -0.033232164, + -0.023779912, + -0.011501927, + -0.016651344, + -0.012681455, + -0.0033767673, + -0.0073710275, + -0.00853797, + -0.0068673785, + 0.012552161, + 0.023120986, + -0.011631458, + -0.01621476, + -0.012182323, + -0.012152129, + 0.017632205, + -0.0028955974, + -0.037913814, + -0.010989164, + -0.03243128, + -0.010639426, + -0.00476238, + -0.0066694524, + -0.021117445, + -0.0012655739, + 0.0045251516, + -0.0015788843, + -0.0067395484, + -0.00050120475, + -0.0009682967, + 0.0050219907, + 0.016525334, + -0.00086952804, + -0.010054569, + -0.030666128, + 0.023475671, + 0.005072519, + -0.006324022, + 0.012675875, + -0.003249635, + 0.01888972, + -0.019307949, + -0.02488897, + 0.005594927, + -0.03275058, + -0.020434177, + 0.025821835, + -0.0024873037, + -0.0077108685, + 0.009168299, + 0.026161717, + -0.017386453, + -0.006164617, + 0.0015221125, + 0.017539863, + -0.0014614112, + -0.012402867, + -0.006620808, + 0.0073360377, + -0.00016585617, + 0.0004765684, + -0.0002468747, + 8.792376e-05, + 0.016013628, + -0.014910703, + -0.036105085, + 0.006276413, + -0.0171198, + -0.01323407, + -0.027468277, + 0.007305339, + -0.032339517, + -0.018650122, + -0.007816907, + -0.014974462, + 0.012453212, + 0.022047997, + 0.024858724, + -0.018042315, + -0.020710906, + 0.0035212068, + -0.021595726, + -0.014097547, + -0.00054330786, + -0.021276055, + -0.011892587, + 0.014617928, + -0.023729565, + 0.0039731585, + -0.0251726, + -0.014174031, + 0.014827746, + 0.017595083, + -0.016090928, + -0.0028363091, + -0.013430298, + -0.012960356, + 0.023476344, + -0.0068831677, + -0.01913642, + -0.028032655, + 0.019964242, + -0.012794858, + -0.013872879, + -0.026185654, + -0.00083820795, + -0.019669086, + -0.016021522, + -0.013422901, + -0.009410305, + -0.0064937747, + 0.028057622, + -0.009399422, + 0.002708561, + 0.017978108, + -0.012026048, + -0.020401115, + -0.014110196, + -0.00023560003, + -0.016143732, + -0.00012821016, + -0.009686607, + 0.012851159, + -0.008714346, + 0.024192909, + 0.021253452, + 0.018791905, + -0.013912779, + 0.025385188, + -0.0018982093, + -0.002497038, + -0.016114725, + 0.001989323, + -0.016865218, + -0.04153388, + -0.027376536, + -0.00087419036, + -0.0061631105, + -0.017674375, + -0.008543958, + -0.019409554, + -0.012295783, + 0.0042332974, + -0.0002649051, + -0.025822997, + -0.033158354, + -0.009415153, + -0.0026425673, + -0.027286323, + -0.008827462, + 0.03172478, + 0.011494438, + -0.009604062, + 0.0024674558, + -0.019792901, + -0.014078571, + 3.9985865e-05, + -0.020747581, + 0.004805503, + -0.015074443, + -0.016483229, + -0.002933326, + -0.0050771767, + 0.012247572, + -0.0073124315, + -0.008768834, + -0.019429272, + 0.011291644, + -0.0011687311, + 0.010646332, + -0.00923726, + 0.00837018, + -0.01394567, + -0.012486555, + 0.015127019, + -0.0038666686, + -0.011908298, + 0.007148467, + 0.0016306513, + -0.002196654, + -0.04223164, + -0.023666564, + -0.010496019, + 0.017815089, + -0.017068991, + 0.034352995, + -0.00073721237, + -0.011130325, + -0.0062186257, + -0.003772959, + -0.022532007, + -0.031205613, + -0.007749095, + -0.012642735, + -0.014251472, + -0.027032237, + 0.0122622475, + -0.007423288, + -0.03033232, + 0.025557758, + -0.008246217, + -0.030670544, + -0.013079653, + -0.007455391, + -0.022203758, + 0.02801221, + -0.011478742, + -0.034066968, + -0.0012894283, + 0.008981266, + -0.023301942, + -0.015001308, + -0.0022879613, + -0.0051386748, + 0.005345357, + -0.017920554, + -0.0015209726, + 0.014977469, + -0.012266281, + 0.013295123, + -0.020995852, + -0.014292027, + -0.005964137, + -8.324634e-05, + -0.014844864, + -0.02658363, + 0.00040420474, + 0.023416737, + -0.0029314861, + -0.012783365, + -0.018973012, + -0.011393, + -0.015433519, + -0.0032604877, + -0.018138977, + -0.011544312, + 0.015014142, + -0.008624681, + -0.012743903, + -0.012127729, + -0.002661645, + -0.03427407, + 0.00091788574, + -0.021820176, + 0.0013033876, + -0.008267859, + 0.012722509, + -0.013633671, + -0.03265897, + 0.012438784, + -0.014521463, + 0.0063352035, + -0.002224084, + -0.012939554, + -0.0125299245, + 0.01920593, + 0.004779277, + -0.014655141, + -0.017717646, + -0.012927908, + 0.011046595, + -0.00066585455, + 0.0127624385, + 0.0044245613, + -0.0051087835, + 0.010932462, + 0.007343122, + -0.02800487, + 0.010714367, + -0.013835758, + -0.005599964, + -0.00061094423, + -0.011575614, + -0.0014202328, + -0.0019053781, + -0.01912741, + -0.016504146, + -0.040718894, + -0.016674943, + -0.023851626, + -0.0029854907, + -0.00020116435, + -0.017117694, + -0.023427796, + -0.0033477931, + 0.013320357, + 0.010972989, + -0.0011670359, + -0.008587171, + -0.009426978, + 0.0075653507, + -0.0027788326, + -0.0011972617, + 0.0008254848, + -0.02106778, + 0.0040901876, + -0.003736484, + -0.006516815, + -0.0048704916, + -0.040508214, + 0.013537282, + -0.019961214, + -0.0133045, + -0.026846409, + -0.014752213, + -0.010601663, + -0.0077958363, + 0.016374063, + -0.019801546, + -0.010939228, + -0.012932806, + -0.020778101, + -0.00077236415, + 0.020813696, + -0.021173632, + -0.023164205, + -0.0014698696, + -0.017306631, + -0.005416946, + -0.0033519687, + -0.014296055, + -0.013449128, + -0.0011389235, + -0.0008721322, + -0.045779306, + -0.020924449, + -0.022707097, + 0.0031437643, + 0.008720201, + 0.002106623, + -0.02529178, + -0.0018277002, + 0.015045621, + 0.0025890486, + -0.002037375, + 0.005245607, + -0.017033147, + 0.00042537253, + -0.008216311, + -0.0043160366, + -0.02597761, + 0.0017587313, + 0.009520284, + -0.0049232803, + 0.018145123, + -0.027333947, + -0.0329185, + -0.026473463, + 0.0047668326, + -0.009213522, + -0.017480083, + 0.006854317, + -0.009677536, + -0.015467544, + -0.023232399, + -0.00044550086, + 0.025097437, + -0.00166296, + -0.01786614, + 0.01255049, + -0.029737936, + 0.0041511757, + 0.008148856, + -0.0006813049, + -0.0065997588, + -0.0025770552, + 0.007972463, + 0.009533407, + 0.005268385, + 3.695925e-05, + -0.0048402445, + -0.014140446, + -0.010304874, + -0.0022657234, + -0.014069151, + -0.0086975, + -0.013376192, + -0.0042253276, + -0.012293759, + -0.0151172, + -0.0108004855, + 0.016668031, + -0.028939921, + -0.03073021, + -0.009698171, + 0.031057453, + -0.026838752, + 0.004106386, + -0.021604944, + -0.028113768, + 0.007247308, + -0.0103973, + -0.023048274, + -0.032132432, + -0.013821094, + -0.008824939, + -0.0115586305, + 0.009566568, + -0.0048232446, + 0.0038228068, + 0.010699784, + -0.014063327, + -0.032628827, + -0.022337692, + -0.00883886, + -0.020798258, + 0.016499164, + -0.011884189, + -0.010636236, + 0.030957779, + 0.004769965, + 0.015703773, + -0.020160722, + 0.015326538, + -0.016510816, + -0.01191742, + -0.036648486, + 0.006068496, + 0.00037351868, + 0.0012008084, + -0.0048411596, + -0.002488892, + -0.015480151, + -0.013967151, + -0.010688571, + -0.007183628, + -0.027238946, + -0.0028187924, + -0.018853132, + -0.023165016, + 0.0013387612, + 0.026805261, + -0.0023989473, + -0.01038517, + -0.016720386, + -0.011085195, + -0.004205327, + -0.0056543057, + 0.029520756, + -0.0040249554, + 0.0058311415, + -0.009061929, + -0.015611034, + 0.0034406595, + -0.018697163, + 0.00010252533, + 0.004150904, + 0.004068399, + -0.003313357, + 0.015140001, + -0.016279675, + 0.018063478, + -0.013831503, + -0.0038750232, + 0.0031168861, + -0.014055337, + -0.0077281613, + 0.012753313, + -0.029720226, + 0.010593615, + 0.001402496, + 0.010389666, + -0.0039647296, + -0.004098967, + 0.025282588, + 0.0050335824, + -0.02066248, + 0.004288994, + -0.00070634973, + -0.008004552, + -0.013811968, + -0.015765823, + -0.011295713, + 0.017766671, + 0.011163156, + -0.015568006, + 0.029129332, + -0.023470165, + 0.015661016, + -0.02315353, + -0.0053900494, + -0.02202881, + -0.011517902, + -0.0119842375, + -0.0054484964, + 0.010573676, + -0.020647112, + -0.012638151, + -0.022514515, + -0.018882364, + 0.027441267, + -0.017100943, + 0.01717458, + 0.005260895, + 0.016665136, + 0.005876169, + -0.03134873, + 0.0041053263, + -0.0106195435, + -0.026582843, + -0.022428561, + -0.026587674, + -0.0237909, + 0.0021358735, + -0.014219207, + 0.0012380802, + -0.006680912, + -0.013478117, + 0.0019385264, + 0.0076687126, + -0.0058050375, + -0.018431474, + 0.014114125, + -0.010821475, + -0.017345602, + -0.015264495, + -0.013351348, + -0.020452747, + -0.024584368, + 0.03316853, + -0.011892864, + -0.0029020533, + 0.017771045, + -0.0077789975, + 0.01448029, + -0.021409376, + -0.029250644, + -0.0037792635, + 0.0027761152, + -0.014900701, + -0.018995553, + 0.004050709, + 0.006822136, + -0.011096193, + 0.004063685, + -0.013411015, + -0.010277956, + -0.056984264, + -0.015833583, + -0.030363753, + 0.03610932, + 0.005150916, + 0.024400687, + -0.005041315, + 0.011289193, + 0.01301228, + 0.0022031954, + -0.0064342683, + -0.04253196, + -0.0030978932, + 0.011169365, + -0.013105991, + -0.011805961, + -0.016796248, + 0.011898181, + -0.01520218, + -0.012673321, + -0.0022949947, + 0.002151977, + -0.017289631, + 0.01149675, + -0.014168283, + 0.013136052, + -0.020882787, + -0.009535177, + -0.019020306, + 0.02106167, + -0.010084557, + -0.019582817, + -0.021805571, + -0.01901942, + -0.04436251, + -0.020995716, + 0.0044604144, + 0.005222051, + -0.009804759, + -0.011790546, + -0.015965343, + -0.0075737336, + -0.0015220883, + -0.030247174, + -0.0035991825, + -0.0066686627, + -0.0247973, + 0.0123259965, + -0.025599722, + -0.0066881133, + -0.022683652, + -0.013070984, + -0.010886187, + -0.011525389, + -0.009947816, + -0.007313422, + -0.007882246, + -0.00541023, + 0.0011492072, + 0.02090237, + 0.0009379942, + -0.015601036, + -0.006798687, + -0.012600927, + -0.009959223, + -0.03550944, + 0.0035016236, + 0.0011677486, + -0.025843157, + -0.010367155, + -0.031349313, + -0.03903119, + 0.001839868, + -0.022970576, + -0.0027680388, + 0.017763061, + -0.0269612, + -0.0038688995, + -0.01518708, + -0.012878729, + -0.029785922, + -0.02292919, + -0.018002123, + -0.024344651, + 0.009888346, + 0.013551394, + -0.016489826, + -0.0017546053, + 0.010263243, + -0.0074027334, + -0.0045046126, + -0.0003330364, + -0.0013496365, + 0.0014418855, + 0.012398921, + -0.018598886, + -0.0064892126, + -0.005253093, + 0.01562729, + -0.012899984, + -0.014774919, + 0.0020663985, + -0.014403044, + -0.015011892, + -0.012202922, + -0.0046758736, + -0.0067868032, + -0.0044061104, + -0.005144326, + 0.0028993196, + -0.012325185, + 0.022574281, + -0.016942859, + -0.021856438, + 0.008662861, + -0.02573404, + -0.016938884, + -0.008636732, + 0.00093252916, + -0.012477394, + -0.0041471203, + 0.0131890215, + -0.0079533765, + -0.018106392, + -0.0078113372, + -0.018408103, + -0.024126654, + -0.011811618, + -0.0255845, + -0.007192504, + -0.01966665, + -0.019602267, + 0.005874115, + -0.027902128, + -0.015001764, + -0.014634653, + 0.006918924, + 0.000722929, + 0.0051291636, + -0.008454075, + -0.027562423, + -0.011473753, + -0.0146909235, + -0.010564897, + -0.017821355, + -0.035384994, + -0.0035316243, + -0.028701553, + 0.014676402, + 0.017539028, + -0.006270966, + -0.017799074, + 0.005434731, + -0.0061941687, + -0.013483586, + -0.014126198, + -0.022087235, + -0.020896897, + 0.015257503, + 0.008865367, + -0.020405637, + -0.032457124, + -0.009812313, + 0.004733418, + -0.02244285, + -0.00029255234, + 0.013257028, + 0.01663526, + 0.011696454, + -0.014680758, + 0.004194894, + 0.012887517, + 0.009380783, + -0.013060818, + -0.031691544, + 0.0010255328, + 0.015248782, + -0.04114744, + 0.0224064, + -0.0106035145, + -0.00238777, + 0.008633073, + 0.0049122823, + 0.0018211115, + -0.012395433, + 0.00145616, + -0.03636224, + -0.017001864, + -0.011631357, + -0.0029803691, + 0.014565051, + -0.020577116, + -0.0013148813, + -0.017463224, + -0.027723204, + -0.026159516, + -0.03269287, + -0.0065471507, + 0.0006258519, + -0.0044818297, + 0.0027699817, + -0.022317378, + 0.01684112, + -0.022425657, + 0.00028848482, + -0.03094851, + 0.010300577, + -0.0141305225, + -0.020316964, + -0.0136660645, + -0.009590924, + -0.012709991, + 0.0051795873, + 0.019693462, + -0.0017452285, + -0.008731056, + -0.0046144063, + 0.004091508, + -0.03856288, + -0.00913274, + -0.00048165943, + 0.006299781, + -0.025288785, + -0.013883884, + -0.0043398426, + -0.005338158, + -0.0042836475, + -0.015991624, + -0.0049840547, + -0.01768114, + -0.024655227, + -0.010752266, + -0.02899297, + 0.019248938, + 0.00019051795, + 0.02378007, + 0.017381145, + -0.002069317, + -0.005750327, + -0.013211145, + -0.0062611955, + 0.014290764, + -0.015633127, + 0.006178744, + -0.022706058, + -0.014020612, + -0.008767711, + -0.008445254, + -0.01551515, + 0.02383386, + 0.010647992, + -0.012729921, + 0.0033732257, + -0.016404115, + -0.03367933, + -0.0030816046, + 0.009240436, + -0.0037942007, + -0.016735872, + -0.024836877, + -0.018007152, + -0.007990729, + -0.003411461, + 0.012059647, + -0.018187128, + -0.020326976, + -0.02852222, + -0.011897047, + -0.0037276945, + 0.036775596, + -0.02178023, + -0.022958828, + 0.0038737408, + -0.027382543, + -0.026215097, + 0.0037737046, + -0.0004071608, + -0.0058707967, + -0.026502116, + -0.028881824, + -0.012605487, + -0.032543574, + 0.021797428, + -0.0042119697, + -0.028835969, + -0.014949552, + -0.0067153033, + -0.0027794535, + -0.027880264, + -0.012187442, + 0.0026026892, + -0.005579764, + -0.007790362, + 0.0046938057, + -0.00840811, + -0.0031042704, + 0.0094538275, + 0.012822845, + 0.0026893595, + -0.024788294, + -0.007512303, + -0.0069408193, + 0.0009099997, + -0.015719462, + -0.008105055, + -0.039793048, + -0.020008592, + -0.017836578, + -0.015165497, + -0.017190307, + -0.008695735, + -0.021318268, + 0.009126574, + -0.011761815, + -0.019690402, + 0.027063003, + 0.014615381, + 0.0020986802, + -0.007059688, + 0.00035262492, + -0.00015601185, + 0.008145618, + 0.0037611877, + -0.006877721, + -3.525772e-05, + 0.006429903, + 0.0024064921, + -0.012174539, + 0.0052722734, + 0.0056162877, + 0.0019266481, + -0.006212589, + -0.00936329, + -0.007301521, + -0.03398829, + 0.0067724637, + 0.0029714028, + -0.0261069, + -0.0048612817, + -0.0052829925, + 0.014486203, + 0.015825663, + -0.012498344, + -0.03438342, + -0.012703015, + -0.009873833, + -0.004114014, + -0.035332706, + -0.026806604, + 0.009016886, + -0.010696725, + -0.008143803, + 0.008333739, + -0.007176749, + -0.005288453, + 0.0029756867, + -0.0057435823, + -0.0064806077, + -0.031082317, + -0.030645346, + -0.005415053, + 0.008022449, + -0.033838917, + -0.0050513437, + -0.0263801, + -0.018866885, + -0.0005470947, + 0.012922766, + -0.01135728, + -0.0037174954, + 0.003298088, + -0.019486774, + -0.011374149, + 0.00534078, + 0.0034927288, + -0.039711718, + 0.016686548, + -0.004254483, + -0.013567926, + -0.019516049, + -0.0013714031, + -0.0012886056, + -0.02196525, + 0.014462061, + -0.009196377, + -0.0067686476, + -0.014552502, + 0.022682425, + 0.0086283535, + 0.017382326, + 0.019364785, + -0.0059995675, + -0.0050861803, + 0.017852057, + -0.00412684, + -0.004140238, + -0.013125167, + 0.00913064, + -0.015407385, + -0.038501106, + -0.0017846415, + -0.030360071, + -0.0067002703, + -0.02705675, + -0.0018080323, + -0.01916103, + -0.0019182577, + -0.0059464844, + -0.008067419, + 0.015169118, + -0.002592203, + 0.00024132368, + -0.0017636778, + -0.011501174, + -0.01908349, + -0.0174943, + -0.018283065, + 0.0034401803, + -0.016190125, + 0.02497951, + -0.00021680808, + -0.015836405, + -0.0019619274, + 0.010093589, + -0.016206684, + 0.006614211, + 0.010374548, + 0.0006497507, + -0.0043391115, + -0.019445935, + -0.016844632, + 0.00020098183, + 0.02088954, + -0.025196658, + -0.027520493, + -0.019200617, + -0.0050238487, + -0.012235293, + -0.018488852, + -0.016106976, + 0.0151823005, + -0.0111746285, + 0.0030648732, + -0.01039282, + 0.0053331014, + -0.016855968, + -0.020722946, + -0.012700303, + 0.0035190939, + -0.012195082, + -0.010396109, + -0.007751156, + -0.00038054903, + -0.009396967, + 0.00046982427, + 0.009206323, + 0.03025506, + 0.0001660075, + -0.024250025, + -0.015739666, + 0.004380953, + -0.010789252, + 0.012986495, + -0.018828295, + -0.011197846, + 0.011089214, + -0.01115239, + 0.010645807, + -0.0067155296, + -0.0126390075, + -0.026315983, + -0.018594913, + 0.0062778466, + 0.006089572, + -0.015246007, + -0.008643986, + 0.008709817, + -0.010476087, + 0.007627847, + -0.004612002, + -0.0037167144, + -0.002493616, + 0.005229196, + 0.006481633, + -0.023800662, + -0.022086734, + -0.008866182, + -0.0021281226, + -0.025957601, + -0.006917588, + -0.003922165, + 0.010681092, + 0.0059327665, + -0.011174217, + -0.0014520825, + -0.020619117, + -0.028747963, + -0.011535697, + 0.013348281, + -0.023831755, + 0.0027135178, + -0.021681344, + -0.013825475, + -0.0036137418, + -0.018881062, + 0.003957155, + -0.0137853585, + -0.0016514756, + -0.0026014291, + -0.014876856, + -0.015959049, + -0.005916017, + -0.017653957, + 0.028374555, + -0.003915078, + -0.005560498, + -0.014519411, + -0.0135969985, + -0.005364911, + -0.016280036, + -0.0062655467, + -0.0033084312, + -0.029862575, + -0.000768134, + 0.010857466, + -0.028950637, + 0.013922255, + 0.01541222, + 0.0009107788, + -0.009454072, + -0.0075278343, + -0.006298449, + -0.004641248, + 0.016269695, + -0.004270781, + -0.027842283, + -0.038349826, + -0.00044611542, + -0.009007099, + -0.0044789254, + -0.02058168, + -0.0081357295, + -0.029686635, + -0.029421184, + -0.005799277, + -0.027818723, + -0.021664979, + -0.017214164, + -0.0023598007, + -0.009074011, + 0.006915478, + -0.007821833, + -0.0077560544, + -0.015107096, + -0.0059471037, + -0.02516267, + 0.0065225004, + -0.002403384, + -0.0074025877, + -0.011072621, + -0.0055609383, + -0.02221486, + -0.010110679, + -0.014799474, + -0.01557388, + -0.015454285, + -0.030560782, + 0.0028459672, + 0.0076058605, + -0.0055309297, + -0.018132344, + 0.012688581, + 0.015095253, + -0.017882174, + -0.0024524808, + -0.016047958, + 0.0071364664, + -0.0069439383, + -0.018427895, + 0.009511113, + -0.0062416815, + -0.0063358024, + 0.017434025, + 0.009633051, + -0.006155343, + 0.0052090557, + -0.012646512, + 0.009165933, + -0.00015266032, + 0.015634049, + -0.011872002, + 0.006321827, + -0.022723721, + 0.0015349871, + -0.009092766, + -0.011026182, + 0.005843026, + -0.03352732, + -0.0141678, + -0.02791458, + 0.01268047, + 0.0024994628, + 0.007781932, + -0.017230693, + -0.0064794673, + 0.0040435167, + -0.0040914714, + -0.014952453, + -0.0054927072, + -0.011759485, + -0.007378498, + -0.015839953, + -0.015692664, + -0.021971563, + -0.015511439, + 0.0032216634, + -0.026941435, + -0.0064791827, + 0.019948801, + 0.0038137843, + -0.022394242, + -0.0046698344, + -0.003433284, + 0.0037020505, + -0.0064314804, + -0.01492712, + -0.019504407, + -0.007690966, + 0.002225438, + -0.003607175, + -0.039758425, + -0.020865263, + -0.005504181, + -0.0060940087, + -0.012865721, + -0.0108938655, + -0.011494067, + 0.02691524, + -0.011605769, + -0.017601775, + -0.006284565, + -0.02002076, + -0.013935301, + -0.017450491, + -0.016587418, + -0.0012521507, + -0.030052619, + 0.0072220275, + -0.01346262, + -0.0036310172, + -0.006861445, + 0.0092775235, + 0.004757783, + 0.008833001, + -0.011551474, + -0.01711487, + -0.014722993, + -0.020656, + -0.0076458994, + -0.024209624, + -0.008937065, + -0.014612785, + 0.0069661783, + 0.0098666735, + -0.010716866, + 0.020773642, + -0.020807637, + 0.00846298, + 0.009177893, + 0.01045498, + -0.019442078, + 0.0024389722, + -0.013532611, + -0.014242269, + 0.015644073, + 0.013787631, + 0.010985429, + 0.00828147, + -0.039056517, + 0.006360423, + 0.000627769, + 0.0048638107, + -0.008778368, + -0.0050447444, + -0.016504822, + -0.0071286745, + 0.014839629, + 0.020661103, + 0.020279603, + -0.017651396, + -0.022392234, + -0.019954145, + -0.004510667, + 0.00035285045, + -0.006772409, + -0.0143456515, + -0.016605558, + -0.0043240706, + -0.012476916, + -0.004791247, + 0.019727388, + -0.029854352, + -0.023315687, + -0.013500299, + -0.015316828, + -0.0094828, + -0.0008371783, + -0.0014031227, + -0.011694282, + 0.009656795, + -0.0017491604, + 0.009815336, + -0.024225645, + 0.008662235, + -0.009446954, + -0.019043105, + -0.020206587, + -0.02033395, + 0.004771592, + -0.015519531, + 0.009673653, + -0.009630938, + -0.027708702, + -0.02463789, + -0.0020595128, + -0.011647099, + -0.0171457, + -0.00816373, + -0.017655812, + 0.0028289799, + -0.018955326, + 0.012381597, + -0.022691064, + -0.02100459, + 0.0053984425, + 0.017075388, + -0.020806901, + 0.017567767, + -0.016778655, + -0.0022984517, + 0.008991837, + 0.0017019537, + -0.010588807, + -0.01003243, + -0.0046635317, + -0.023236396, + -0.013503217, + 0.011541317, + -0.0020312772, + -0.0129399635, + 0.027233902, + -0.012362265, + 0.019013438, + -0.002465535, + -0.015127719, + 0.007612508, + 0.0047445465, + 0.024865327, + -0.012326715, + -0.0036388955, + 0.003266432, + -0.021248834, + -0.022313816, + 0.0036638244, + -0.027306259, + -0.0054381853, + -0.015754111, + -0.0054676123, + 0.015279894, + -0.0059257722, + 0.020585367, + 0.015944911, + 0.016630253, + -0.006311274, + -0.0071425587, + -0.013840575, + -0.019851863, + 0.021239491, + -0.037478782, + 0.010623355, + -0.0056841224, + -0.034769956, + -0.0019442141, + -0.015620185, + -0.016408965, + -0.01838238, + -0.014171264, + -0.01577639, + -0.013989072, + -0.03290323, + -0.004293212, + -0.014778401, + -0.008127213, + -0.012275844, + -0.017828073, + -0.0006710257, + 0.0069704186, + -0.017537216, + 0.027572237, + -0.004820025, + -0.00061648124, + 0.022929352, + -0.0028911445, + -0.0123029975, + 0.004862425, + -0.002714844, + -0.013938603, + 0.0076586017, + -0.03363601, + -0.0019635975, + -0.027498685, + -0.017748402, + 0.0056590308, + -0.011910821, + -0.028462186, + -0.024278637, + 0.03075246, + 0.012204312, + -0.021556566, + -0.0029873608, + 0.00395307, + -0.021573361, + 0.018693743, + 0.008288823, + -0.0013514529, + -0.01140324, + -0.021770498, + 0.015777009, + -0.019296812, + -0.0042979624, + -0.008906635, + 0.005270466, + 0.0046668286, + -0.02726785, + -0.003912385, + -0.010564979, + -0.0076046134, + -0.009057789, + -0.002116938, + -0.006867755, + -0.025230287, + -0.027241383, + 0.00019441584, + -0.011594389, + -0.02389435, + 0.022219421, + 0.0042506526, + 0.020861946, + -0.0036381334, + -0.0056333104, + 0.016325897, + -0.022334414, + 0.0054234467, + -0.0055617103, + -0.021664532, + 0.00347495, + 0.0022842984, + -0.006351688, + 0.008902626, + -0.026295267, + -0.025588708, + -0.0034670695, + -0.016414236, + -0.014757301, + -0.0016415544, + 0.013316509, + -0.0032899755, + -0.020026367, + -0.007112486, + -0.003393353, + -0.013488556, + -0.0055904468, + -0.007994438, + 0.006383539, + -0.014519174, + 0.012808053, + -0.018464932, + -0.001064697, + -0.002811638, + -0.011582864, + -0.0023906098, + -0.022431254, + -0.009075465, + -0.028881317, + 0.007411703, + -0.008544213, + -0.015864842, + 0.021158144, + -0.005944272, + -0.0136954095, + -0.013602296, + 0.028963478, + -0.0056798323, + -0.0033832751, + -0.02738921, + -0.015307348, + 0.0149024725, + -0.014226743, + -0.019873528, + -0.0096328985, + 0.008054676, + -0.0136270095, + -0.0044127307, + -0.020364558, + 0.016222961, + -0.019405378, + -0.007910334, + -0.0044066724, + -0.016258735, + 0.009963859, + -0.013344943, + -0.01894064, + -0.013261456, + 0.004257933, + -0.0073886965, + -0.021525742, + -0.01448773, + 0.03630546, + -0.0050780135, + 0.00927116, + 0.0020048774, + -0.013152912, + -0.013289126, + -0.0050149467, + 0.005405451, + -0.011933048, + -0.025378153, + -0.008824539, + -0.004809774, + 0.0119633395, + 0.011433734, + -0.00774658, + -0.021558015, + -0.0277839, + -0.0023730244, + 0.018181616, + 0.018097086, + 0.007298779, + -0.009047134, + -0.019326817, + -0.013147107, + -0.027257714, + -0.012401898, + -0.013074482, + 0.037528254, + 0.010519718, + -0.022084925, + -0.016222509, + -0.008855965, + -0.01336758, + -0.011169927, + 0.023512015, + -0.015581093, + -0.00634516, + -0.03692855, + -0.010968833, + -0.002142473, + -0.012742698, + 0.0046224273, + -0.0060813613, + -0.028302237, + -0.011348814, + -0.0062186555, + -0.013884314, + 0.010225192, + 0.02987518, + 0.0013454283, + -0.005965626, + -0.015182851, + -0.009879523, + -0.01776738, + 0.019029826, + 0.0020985985, + -0.009604999, + -0.0018045572, + -0.0118614575, + -0.01155931, + -0.011134454, + 0.0003823451, + 0.010738702, + 0.0046653645, + 0.016917452, + -0.017089231, + -0.02202357, + 0.001925084, + 0.00039368792, + -0.01583738, + -0.010023453, + -0.0045941127, + -0.016908376, + -0.017703788, + -0.010748656, + -0.0135628665, + 0.00084212556, + -0.007944757, + -0.006654421, + 0.017209327, + -0.014503686, + -0.0065626204, + 0.0010949962, + -0.0071143787, + -0.005092387, + -0.012164721, + -0.014092078, + -0.001022589, + -0.01833333, + -0.019381983, + 0.0037615912, + -0.011182891, + -0.005745233, + -0.007172225, + -0.03461332, + -0.0005286053, + 0.014312503, + 0.00852385, + -0.025974505, + -0.032283824, + -0.006026113, + 0.013393293, + 0.0057912394, + -0.00626284, + -0.020315317, + 0.011634875, + -1.9725625e-05, + 0.0074436776, + -0.015767196, + -0.012515391, + -0.01120249, + 0.00013672777, + -0.012547418, + -0.00446002, + 0.014645699, + -0.00090807414, + -0.010233141, + -0.01208403, + 0.016579142, + -0.012527115, + 0.014570061, + 0.017293835, + -0.013045459, + 0.0016053007, + -0.0034504712, + -0.0063093053, + -0.0017638499, + -0.020896932, + -0.003912941, + -0.006143956, + -0.0042328406, + -0.0178851, + 0.008059207, + -0.00891723, + -0.0066411165, + 0.017911125, + -0.02108505, + 0.014316363, + -0.006416917, + -0.0011148072, + -0.0145342285, + 0.019596418, + -0.053859532, + 0.016104432, + -0.02266232, + -0.017902, + -0.019691288, + -0.01309412, + -0.026567362, + -0.034425657, + -0.03194631, + -0.010762886, + 0.0005989439, + -0.0037939034, + -0.0057911244, + -0.0019781154, + -0.013954998, + 0.002547117, + -0.031089803, + -0.017797047, + -0.0027008147, + -0.00074370694, + 0.0045943744, + -0.008968935, + 0.0021342149, + -0.025353964, + -0.00075167394, + 0.009735664, + 0.0009541229, + -0.003433034, + -0.0077579734, + 0.004229024, + 0.012449034, + 0.0040594595, + -0.014772421, + -0.026633784, + -0.008313094, + 0.007564826, + -0.010101979, + 0.021482084, + -0.030267946, + -0.013937976, + -0.017605029, + 0.013139529, + 0.020784546, + -0.0003756767, + -0.013214529, + 0.019246614, + 0.0025875228, + 0.007369385, + 0.003062876, + -0.01965429, + -0.02023861, + 0.011072433, + -0.012134047, + 0.03095222, + -0.022458987, + -0.01778489, + -0.0043937177, + -0.021648437, + -0.012105853, + 0.019923883, + -0.0126825245, + -0.011629018, + 0.0094431555, + -0.033571105, + 0.0055188434, + -0.020200804, + -0.028332425, + -0.009417877, + 0.0016506917, + -0.0003555303, + -0.006512341, + -0.005585025, + -0.000504477, + -0.014717533, + -0.009009104, + 0.008246123, + 0.0033907716, + -0.014142803, + 0.001654575, + -0.004319136, + -0.04070505, + -0.04042504, + 0.012570815, + -0.018429464, + -0.010098965, + -0.0124740405, + -0.0052089114, + -0.047414303, + -0.0075013973, + -0.01199066, + -0.014636321, + -0.02873286, + -0.0001400151, + 0.0009406165, + -0.016535982, + -0.015903533, + -0.003250584, + -0.013385633, + -0.005817855, + -0.008891188, + -0.029487096, + -0.017824946, + 0.014592731, + -0.0022048873, + -0.014071388, + -0.011342299, + -0.029431308, + -0.019702496, + 0.00322338, + 0.021047711, + -0.033806063, + -0.009298773, + -0.02121832, + 0.0068529393, + -0.025875902, + -0.021342108, + -0.014723798, + -0.017133763, + 0.031105394, + -0.002874208, + -0.0036866285, + -0.0142537905, + -0.027786568, + -0.013562201, + -0.0069175973, + -0.015703652, + 0.007987578, + -0.037745472, + -0.023639975, + -0.004691017, + -0.014311894, + 0.0087139495, + 0.0046464205, + -0.0064411364, + 0.00096972246, + 0.015894093, + 0.007669309, + 0.0019729978, + -0.016081383, + 0.008708291, + 0.014904275, + 0.00723742, + -0.009770069, + 0.003641402, + 0.015147655, + 0.009681542, + -0.0077881855, + -0.0013374401, + 0.00072631915, + -0.0048703756, + -0.002388429, + -0.0079662865, + -0.0108676, + 0.0020253211, + -0.009152398, + 0.0039625494, + 0.010382042, + -0.008026127, + -0.020549037, + -0.021718081, + -0.017775593, + 0.011160205, + 0.005689438, + -0.024214845, + -0.009206889, + -0.009681584, + -0.0071848114, + -0.03642141, + -0.003316645, + 0.029945862, + -0.009420454, + -0.0015126605, + -0.021961572, + -0.006536636, + -0.0011456392, + 0.012973944, + -0.011073642, + -0.03879912, + -0.010386484, + -0.0030939823, + 0.0036786147, + 0.0073820623, + -0.0029697975, + 0.012332129, + -0.020694723, + 0.0016094653, + -0.013690255, + 0.0040071975, + 0.008596351, + -0.007359316, + -0.015151162, + -0.004180903, + -0.011815841, + -0.0010034014, + -0.0063316803, + 0.004327866, + -0.0020350127, + 0.006602239, + 0.0003418838, + -0.014546931, + -0.010025697, + -0.015226783, + -0.0056796023, + 0.005113626, + -0.014524276, + 0.007965878, + -0.0030491385, + -0.021431113, + 0.0024621058, + -0.012672865, + -0.025978047, + -0.005763041, + 0.0022080776, + -0.016178269, + -0.02063703, + 0.017051648, + -0.025362264, + -0.0179649, + 0.024406467, + -0.02377126, + -0.0011736939, + 0.0010573857, + 0.030454066, + -0.008943676, + 0.0027114681, + -0.00943667, + -0.009828337, + 0.008862154, + 0.018195085, + -0.0040880665, + 0.0017418237, + -0.0077386633, + -0.0022412094, + -0.023435999, + -0.0032265224, + -0.0069384496, + -0.005566834, + -0.015141938, + -0.024905408, + -0.01083526, + -0.019509884, + -0.01448912, + -0.005229457, + 0.004506847, + 0.0028421937, + 0.025992895, + 0.007408135, + 0.0006284001, + -0.006622753, + -0.033237375, + -0.022213597, + 0.0051017683, + -0.01930372, + -0.009045438, + -0.02216606, + -0.006724732, + -0.016316505, + -0.010052231, + -0.008175171, + -0.008281088, + 0.012102956, + -0.021990897, + -0.0034717624, + -0.009601491, + -0.009969228, + -0.006387862, + 0.019523162, + -0.019068917, + -0.012507769, + 0.018540494, + -0.02364601, + 0.012528885, + -0.0079450775, + -0.0067266505, + -0.011435285, + -0.02032167, + -0.017905802, + -0.0077090575, + 0.0015945081, + -0.015287959, + -0.032562595, + -0.014493331, + -0.028717145, + -0.011627884, + -0.0047780024, + -0.0034814496, + -0.009888109, + 0.012926, + -0.01049652, + -0.0014399902, + 0.005431303, + -0.00427469, + -0.014606197, + -0.0109023675, + -0.00792543, + -0.009675321, + -0.012367267, + -0.009614743, + 0.009622953, + -0.009385945, + -0.009855531, + 0.01183093, + -0.026884394, + -0.0119773, + -0.029372135, + -0.02031618, + -0.007348131, + -0.011440453, + 0.0012541306, + -0.00042827878, + 0.017241998, + -0.008110742, + 0.0040854686, + 0.021517817, + -0.004039818, + -0.019278193, + -0.008626341, + -0.0025437954, + -0.018442042, + 0.005076332, + -0.019055959, + -0.01961086, + -0.012873283, + 0.004369997, + -0.008263849, + 0.0148426965, + -0.0016572512, + 0.0074932547, + -0.025471248, + -0.029982513, + -0.0051013283, + -0.022160945, + 0.029935123, + -0.0045404136, + -0.012569545, + -0.0136388345, + -0.013710054, + -0.010903465, + 0.007894666, + 6.053722e-06, + 0.01160194, + 0.0041968524, + 0.0013225122, + -0.008184308, + -0.0190238, + -0.008526126, + -0.014029143, + -0.017078912, + -0.0073925303, + 0.00983154, + -0.006996705, + -0.019359048, + 0.023787087, + -0.009740303, + -0.009554543, + -0.003451407, + -0.0065867207, + 0.010820827, + -0.007201956, + 0.012235006, + 0.003708236, + -0.009597522, + -0.007211719, + -0.024302494, + -0.018903041, + 0.0012532639, + -0.021366095, + -0.005069978, + -0.017038101, + 0.007976753, + 0.021296872, + 0.00074442953, + -0.01457717, + -0.002380988, + -0.01782023, + -0.0060949507, + 0.0039717844, + 0.016422799, + 0.018983424, + -0.0034644296, + -0.010460619, + -0.015399903, + -0.006933786, + -0.0019782488, + -0.017498586, + -0.0033632962, + -0.006570175, + -0.010080461, + 0.011164072, + -0.018446531, + -0.014969953, + -0.03534003, + -0.003581167, + -0.0117478985, + 0.0039407355, + 0.023995265, + -0.019311862, + -0.02695777, + -0.0034250417, + -0.011012207, + -0.017871046, + 0.004869953, + -0.0093383165, + 0.0018168878, + -0.012730461, + 0.0039623943, + -0.014545286, + -0.010736809, + -0.0029688885, + -0.008104623, + -0.0010986832, + 0.0018177566, + 0.014046878, + -0.013627642, + -0.0052636424, + -0.0048536193, + -0.019180713, + 0.004607203, + -0.011320408, + -0.011581081, + -0.02447052, + -0.019362543, + -0.020415027, + -0.01840042, + -0.029653316, + -0.015858121, + 0.0006865424, + 0.014540601, + 0.009432999, + -0.02818706, + -0.01139997, + -0.005856991, + -0.024396576, + -0.0047324314, + -0.014799368, + -0.0018695466, + 0.027225213, + -0.0017502696, + -0.0036027343, + -0.01249124, + -0.01130332, + -0.0034273781, + -0.0006506951, + -0.012730659, + -0.019084157, + -0.00889423, + -0.026747575, + -0.020198226, + 0.005883474, + -0.021209512, + 0.003963849, + -0.0047187777, + -0.028687721, + -0.016219523, + -0.0014593125, + -0.027109377, + -0.0066568633, + 0.0006471111, + 0.003170328, + 0.0048297374, + -0.01724663, + 0.0039989646, + 0.010089562, + -0.02290551, + -0.019647336, + 0.035555173, + -0.00030109633, + -0.012672213, + -0.025955124, + 0.009978253, + 0.0027492817, + 0.0005538463, + -0.012305016, + 0.0010562452, + 0.022407489, + 0.0050056665, + -0.021503583, + -0.016696662, + -0.0051071877, + -0.0411149, + -0.018951094, + 0.008724499, + -0.0013514912, + -0.025176072, + 0.006702955, + -0.0010073836, + 0.01394348, + -0.019676272, + 0.007405569, + -0.005145319, + -0.011372977, + -0.009897993, + -0.014201329, + 0.007900148, + 0.0072446866, + -0.027440539, + -0.023109473, + -0.03328906, + 0.0065450943, + -0.018540474, + 0.03198819, + 0.00013028905, + 0.013861531, + -0.017718296, + -0.005370677, + -0.006764737, + -0.007889113, + 0.010248326, + -0.031749707, + -0.020814184, + -0.018223051, + -0.02343315, + -0.02442784, + -0.025175914, + -0.01185533, + -0.01281375, + -0.020381073, + 0.0044778544, + -0.019337924, + 0.001458009, + -0.02680443, + -0.034127533, + 0.0049830996, + 0.0012892273, + 0.0042710314, + 0.014591902, + -0.011540746, + 0.008082169, + 0.006814488, + 0.0036274607, + -0.0005852842, + -0.020219065, + -0.020981818, + -0.02604244, + 0.0064208326, + -0.010689899, + -0.044416238, + -0.010459951, + -0.028762123, + -0.016564183, + -0.037743926, + -0.009514756, + 0.0026763903, + -0.021985466, + -0.025715496, + -0.013991324, + -0.001955849, + -0.017642874, + -0.025157973, + -0.0009676664, + -0.00956563, + -0.010734374, + 0.0030280242, + 0.008373209, + -0.019090254, + -0.017857116, + -0.002490228, + -0.006188338, + -0.01335016, + -0.014513818, + -0.0059560398, + -0.008511627, + 0.01547261, + -0.0038725953, + -0.011164367, + -0.010799975, + -0.009214534, + -0.024832215, + -0.035606273, + 0.025201894, + -0.026187293, + -0.0037004405, + -0.00917967, + -0.023346977, + -0.011381852, + -0.015062746, + -0.004818263, + -0.015335318, + 0.005014154, + -0.015038585, + -0.008017095, + -0.00023977514, + 0.0045188917, + -0.0042196945, + 0.014744003, + -0.024766112, + 0.03157096, + -0.005391123, + -0.028608352, + -0.012329788, + -0.0108850505, + -0.01036334, + -0.009670923, + -0.021296531, + 0.007887272, + -0.00532918, + 0.004863446, + -0.019219121, + -0.007256556, + -0.0142272515, + -0.021559734, + 0.020072531, + 0.009807334, + 0.0015651295, + -0.025832506, + -0.018318448, + -0.006845571, + -0.013300771, + -0.02397138, + -0.005130692, + -0.032823164, + -0.023526302, + -0.0013290473, + -0.0037995637, + -0.018600583, + -0.009793577, + -0.008874393, + -0.025915245, + -0.009954479, + -0.026216453, + -0.009263063, + -0.0068726717, + -0.020508911, + 0.013327093, + 0.002046994, + -0.046193253, + 0.0065417103, + 0.012470175, + -0.015681904, + 0.028683746, + -0.0005553057, + -0.022247123, + 0.025504148, + -0.009239107, + -0.0072324104, + -0.009569582, + -0.008293552, + -0.010903761, + -0.023390524, + 0.0002510203, + -0.017255751, + -0.0041636536, + 0.0025202339, + 0.023507774, + -0.005346377, + -0.001991239, + -0.013382868, + -0.0050114146, + 0.0069504823, + -0.011931714, + -0.0076181595, + 0.003483853, + -0.027133912, + -0.013590131, + -0.0008005969, + -0.01906598, + -0.0007511062, + -0.0069975285, + -0.020003958, + 0.00043869144, + -0.00056685024, + -0.033374816, + 0.007088494, + 0.011654309, + -0.0034492365, + -0.0077879294, + -0.010027498, + -0.003186547, + -0.0006699834, + -1.9833025e-05, + -0.008859283, + -0.013339669, + 0.0078037316, + -0.010724953, + -0.030621227, + 0.012216506, + -0.0061038495, + 0.008362169, + -0.0146015, + -0.01126699, + -0.0039189034, + -0.01053209, + -0.0066421116, + -0.012930085, + -0.0014189534, + -0.037696026, + 0.009069692, + -0.02209853, + -0.005252922, + 0.008534613, + 0.00047489582, + -0.005586173, + -0.0007916355, + -0.005744998, + -0.012681124, + -0.004758297, + 0.008356831, + -0.0038612194, + -0.018302826, + 0.017714357, + -0.030453954, + -0.021496067, + 0.011161907, + -0.0021231293, + -0.010733302, + -0.020657213, + -0.015281837, + -0.025730932, + -0.005369284, + 0.019198323, + 0.018150881, + 0.0039998083, + -0.038367555, + -0.022109387, + -0.0022280545, + -0.011812303, + -0.00015102267, + 0.0130146425, + -0.017370638, + -0.008394488, + -0.005637027, + -0.010168796, + -0.00615714, + 0.0050751893, + -0.018906167, + -0.003270959, + -0.009945212, + -0.00406765, + 0.011497554, + 0.011180206, + -0.02368846, + 0.0076405234, + -0.042301595, + -0.0004482543, + 0.0053288075, + 0.009209037, + -0.004050043, + -0.009985789, + -0.03069416, + -0.0018451696, + -0.016224831, + -0.030953256, + -0.020813884, + 0.012586416, + -0.0049996623, + -0.013589405, + -0.014423726, + -0.017353227, + -0.028416643, + -0.021196527, + -0.0133647, + -0.010844963, + -0.019239938, + 0.004159053, + -0.013928013, + -0.010429718, + -0.018742308, + -0.016256064, + -0.013287234, + -0.029290384, + -0.033356413, + -0.011432513, + 0.0053520994, + 1.2519354e-05, + 0.002354552, + -0.0030710648, + -0.0033254293, + -0.0048518656, + -0.010354949, + -0.019712958, + -0.00993546, + 0.0077428455, + -0.00487175, + 0.0012551694, + -0.013711584, + 0.006363001, + -0.014476193, + -0.0009840805, + -0.00094993063, + 0.03241801, + -0.009645076, + -0.010652102, + -0.013874297, + -0.015425368, + 0.015899217, + -0.0039299103, + -0.013718083, + -0.0022913965, + -0.0103994245, + -0.030928623, + -5.4695854e-05, + 0.0046750987, + -0.01875578, + -0.0064584115, + -0.010869862, + -0.018919162, + -0.001179712, + -0.020762738, + 0.014759099, + -0.0109624425, + -0.029985553, + -0.020995587, + -0.020311706, + 0.003927294, + 0.0059899255, + -0.007473595, + 0.010882594, + 0.0029096815, + 0.014135553, + 0.0015177028, + -0.009802782, + 0.022962809, + -0.020984452, + -0.0072353967, + -0.010118611, + 0.005640688, + -0.0036507093, + 0.03823925, + -0.012685588, + 0.0010272629, + -0.022907726, + -0.02871704, + -0.0010521958, + 0.0010191882, + -0.020455644, + -0.0056553558, + -0.028056404, + 0.003736611, + 0.011431473, + 0.023968477, + -0.01246758, + -0.026929276, + 0.0045285625, + -0.0039342493, + -0.0070512663, + 0.007547073, + 0.007530712, + -0.008092654, + -0.024564015, + -0.01622689, + 0.0050685573, + -0.023569798, + -0.0026017928, + -0.017990282, + 0.003035831, + 0.0058115427, + -0.010875801, + -0.016730707, + -0.0075652944, + -0.01597775, + 0.0058100545, + -0.0116161965, + 0.0022807785, + 0.005978853, + -0.0043237368, + -0.018523077, + 0.0022200986, + 0.0012546392, + 0.0036414885, + -0.00056752743, + 0.0114321485, + 0.015770089, + -0.025719257, + -0.026433807, + -0.014179924, + -0.023617266, + -0.006322525, + -0.009317454, + 0.0006626495, + -0.014183943, + 0.00030662635, + -0.015269622, + -0.034051478, + -0.023404531, + 0.012704779, + -0.011948869, + -0.0022543543, + 0.0063950135, + 0.0055447207, + -0.009222084, + 0.0010666805, + 0.01714878, + 0.030975413, + 0.0020713585, + 0.021244073, + -0.006497431, + -0.01257229, + -0.012588887, + -0.0023818125, + -0.017856956, + -0.004224178, + -0.0066214614, + -0.016782887, + 0.0063762725, + -0.0020945761, + -0.0073110675, + -0.0032609697, + 0.031799413, + 0.011440233, + 0.006464169, + -0.020797074, + 0.006675123, + -0.0019856826, + -0.013485584, + 0.018491672, + -0.015469873, + 0.006541328, + -0.0114132315, + -0.0053446633, + 0.025734387, + -0.0005826989, + 0.003750561, + 0.005580363, + -0.00721078, + 0.002168621, + 0.0018129513, + -0.0029423083, + -0.030164255, + 0.01305066, + -0.0046864552, + -0.007584707, + 0.018557876, + -0.007764386, + -0.0067889397, + -0.010038247, + -0.024763709, + -0.004904237, + -0.004223856, + -0.014189276, + -0.006949674, + -0.02066703, + -0.002808469, + -0.0081101395, + -0.02418988, + 0.000871433, + 0.013444189, + -0.015380793, + -0.012880251, + 0.01122151, + 0.016450673, + -0.001935818, + -0.005240603, + 0.012657205, + -0.017174821, + -0.017763475, + -0.021900099, + -0.004903629, + -0.014690161, + -0.017586404, + -0.008257794, + -0.020327106, + -0.010223097, + -0.01583105, + 0.0032986768, + -0.02521973, + 0.000566009, + 0.046562396, + -0.0010631807, + -0.015780369, + 0.0073448867, + 0.0037387328, + -0.008178317, + 0.0014461682, + -0.02473413, + -0.021234347, + -0.016917426, + -0.021177452, + 0.00725842, + -0.025479525, + -0.008091436, + -0.020869575, + -0.011636622, + -0.0074489936, + -0.010437604, + -0.021971326, + 0.0038703296, + -0.017462078, + -0.018420313, + 0.012024885, + -0.027731111, + 0.014768409, + 0.004940854, + -0.010193091, + -0.003963173, + -0.015996786, + -0.014547011, + -0.008745099, + -0.014771261, + -0.016201925, + 0.0036041634, + -0.033641163, + -0.018708872, + -0.0039761295, + 0.0008061986, + -0.009458181, + 0.0073206834, + 0.02651637, + -0.005396365, + 0.0041089873, + -0.0028163313, + -0.0013098957, + -0.015110384, + -0.007876235, + -0.009287055, + -0.004521513, + 0.0001504684, + -0.012340004, + -0.002029712, + -0.007332452, + -0.035693027, + -0.015903069, + -0.002952464, + 0.0051193414, + 0.012111628, + -0.014660038, + 0.007988445, + 0.004654642, + -0.03172113, + -0.003945779, + -0.021003181, + -0.031594455, + 0.02082248, + -0.018569702, + -0.020891363, + -0.014825206, + -0.005808063, + -0.011552583, + -0.028713604, + -0.020405782, + 0.011950502, + -0.019402534, + -0.00047035405, + 0.0020021216, + 0.0029402657, + 0.030155176, + -0.02602929, + -0.007877266, + 0.00783554, + -0.013340391, + -0.0076896506, + -0.010181084, + -0.0007594224, + -0.00862282, + 0.006155061, + 0.010793435, + -0.0074129165, + 0.010865476, + -0.0049965945, + 0.00786367, + -0.0069703697, + -0.0053657633, + 0.018376065, + -0.018184755, + -0.02153866, + -0.0011275819, + -0.008192859, + -0.00067863317, + -0.009653878, + -0.0020155562, + -0.011341814, + 0.016781654, + 0.009382627, + -0.016892564, + 0.015284668, + -0.008803763, + -0.033287816, + -0.008350417, + -0.023144135, + -0.016473481, + -0.020014415, + 0.02350616, + 0.004395723, + -0.0163198, + -0.011059633, + 0.011264595, + -0.020290842, + -0.0320641, + -0.016024878, + 0.0022107887, + -0.0031913314, + 0.000407441, + 0.038330447, + -0.043391027, + 0.015257758, + -0.009288693, + -0.0022712862, + -0.009432898, + -0.027168604, + -0.00042344158, + -0.026635425, + 0.0036656347, + -0.0032151067, + -0.0011737924, + -0.020009931, + 0.010870589, + -0.02573972, + 0.009191764, + 0.008031029, + -0.016295245, + 0.013647881, + -0.013400874, + 0.012132224, + 0.02124802, + 0.0040668473, + -0.010209347, + -0.008739986, + 0.015493377, + -0.018529665, + 0.0040040608, + 0.008939449, + -0.012766072, + 0.023206402, + -0.025675787, + -0.008897934, + -0.006032128, + -0.021596368, + 0.009983727, + 0.009407882, + -0.006667662, + 0.006159302, + 0.013419647, + -0.004780369, + 0.008615499, + 0.023532903, + 0.0027198526, + -0.008854791, + -0.019483648, + -0.011974902, + -0.0014935633, + 0.00087374356, + -0.02120807, + -0.014839087, + -0.011199097, + -0.01054917, + 0.014936092, + -0.005627411, + 0.007595708, + -0.020544017, + 0.00209281, + -0.039724004, + -0.010911296, + -0.013471996, + -0.008208828, + -0.044476863, + 0.020201236, + -0.0041831024, + 0.018405141, + -0.00010758166, + -0.005876763, + -0.009890251, + -0.013159483, + 0.016788926, + -0.02888107, + 0.0008721846, + -0.011912804, + -0.014870877, + -0.004222035, + 0.020278426, + 0.018032113, + -0.009617025, + -0.022886803, + 0.0072906907, + -0.019440414, + -0.0019567662, + 0.012093815, + 0.009571437, + -0.02081814, + -0.012169077, + 0.01609215, + -0.027061999, + 0.001991223, + 0.0029535457, + 0.012691183, + 0.008903732, + -0.0023954622, + -0.016091388, + 0.006140413, + 0.00092111994, + -0.0164026, + 0.0003682312, + -0.011418069, + 0.00849543, + -0.021414008, + 0.0021637217, + -0.016394537, + 0.0072115595, + -0.030107163, + -0.007382341, + -0.027631115, + -0.013481036, + -0.006682195, + -0.021026898, + 0.012190433, + -0.015276586, + 0.024122376, + -0.024578493, + 0.015513244, + -0.032789428, + 0.008913096, + -0.016172951, + -0.004592255, + -0.015678262, + -0.009050754, + 0.0020589866, + -0.007043943, + -0.0012740083, + -0.008930518, + -0.0049576187, + -0.0097076725, + -0.0012528469, + -0.008730971, + -0.024571765, + -0.018316785, + -0.008987829, + -0.005039957, + -0.01445667, + -0.011464737, + -0.008441315, + -0.008777198, + 0.009567287, + 0.021624383, + 0.015516937, + -0.016377723, + 0.010279038, + -0.018012172, + -0.019764159, + -0.0066833813, + -0.017086074, + -0.008537129, + -0.018186238, + 0.011827032, + -0.007890399, + -0.019942364, + -0.008499245, + -0.024692733, + -0.02145758, + 0.0016895866, + 0.005528891, + -0.021187536, + -0.036678575, + -0.0064246985, + -0.021927573, + -0.022922281, + 0.00075480173, + 0.008811947, + -0.014191773, + 0.009559604, + -0.0020904012, + 0.0024053364, + 0.0047116, + -0.026051022, + -0.0028044982, + -0.030429568, + -0.037132345, + 0.0030985319, + -0.008125253, + 0.00019997824, + -0.013129514, + -0.007426036, + 0.016377697, + -0.031109067, + -0.009491231, + 0.0053478642, + 0.014865918, + -0.0026158348, + -0.007695954, + 0.009945315, + -0.026514439, + -0.007434775, + -0.017413558, + 0.0016501388, + 0.0057788696, + 0.0069164718, + -0.008602103, + -0.008849114, + 0.0036797116, + -0.006532595, + -0.020602884, + -0.0037344652, + -0.0061675175, + -0.008033573, + 0.0006433064, + -0.009998527, + -0.009895138, + -0.010625093, + -0.022894239, + -0.0007879045, + 0.004513975, + -0.02962373, + 0.023206523, + -0.031769224, + -0.024284314, + 0.020007402, + 0.0050632507, + -0.0040660566, + 0.0010665528, + -0.018352872, + -0.011642555, + -0.00966103, + -0.0034830952, + 0.01162696, + -0.014883013, + 0.0050190976, + -0.00909174, + -0.02618754, + -0.005369318, + -0.0023810833, + -0.0054579657, + -0.009683966, + -0.0016748082, + -0.013103233, + -0.01771221, + 0.010508279, + 0.014437072, + -0.039930634, + -0.016580047, + -0.028656315, + 0.002264015, + -0.016433455, + -0.0040264763, + -0.018736467, + 0.007430161, + 0.011410303, + 0.019003617, + -0.018616531, + -0.01055536, + -0.018767726, + -0.012740057, + 0.01254625, + -0.013150544, + 0.0098317005, + -0.01226026, + -0.010663577, + -0.03363232, + -0.012197331, + -0.0118684145, + -0.016893046, + -0.016584497, + -0.026857013, + -0.022754354, + -0.0130315, + -0.0065625263, + 0.016343873, + -0.0072525926, + 0.010789194, + -0.014396125, + -0.006231859, + -0.008769406, + -0.0054104407, + -0.010150567, + -0.012188666, + 0.0015559532, + -0.029830497, + -0.030593354, + -0.025410987, + -0.009407894, + -0.011902608, + 0.013030974, + -0.03392018, + -0.011207517, + -0.023727963, + -0.0051322184, + -0.0015193389, + 0.010266965, + 0.0069569396, + -0.03208662, + -0.014981027, + -0.0047242334, + -0.021314302, + -0.020013504, + -0.029763432, + -0.018833563, + -0.010385178, + -0.02343679, + -0.02188532, + -0.0058804965, + -0.012562275, + -0.0072740805, + 0.014968869, + -0.010680807, + -0.012112841, + -0.0047955154, + -0.021514634, + 0.0037466495, + 0.018605962, + -0.013605104, + -0.019190894, + -0.015231164, + -0.0056429575, + -0.018899025, + 0.004448617, + -0.021483585, + -0.017803904, + 0.0044945297, + -0.0056623854, + -0.012650595, + -2.5362247e-05, + -0.017875776, + -0.0070435456, + -0.012593766, + 0.026625244, + -0.00291347, + -0.010524873, + 0.010389963, + -0.004542023, + -0.011547756, + -0.003948984, + -0.010137053, + -0.009433463, + -0.012284657, + 0.017763484, + -0.006947997, + -0.029056752, + 0.0031233667, + -0.00097547896, + 0.00012972786, + -0.00018566308, + 0.012225648, + -0.009326785, + 0.03475423, + 0.0031201327, + -0.019882023, + 0.0059497845, + -0.008045374, + -0.019179692, + -0.00038756288, + -0.017352307, + 0.01347676, + -0.014686323, + -0.008742333, + 0.0026980487, + 0.0029787165, + -0.010813353, + -0.010630259, + 0.003260145, + 0.010496804, + -0.02044071, + -0.0020203805, + -0.024214339, + -0.013526747, + 0.013784316, + -0.0011778525, + -0.016309183, + -0.005359673, + -0.012310556, + -0.008430037, + -0.029811753, + 0.011123119, + -0.02523231, + -0.012176999, + -0.0007106792, + 0.0026344531, + 0.021186303, + -0.015483185, + -0.002356012, + 0.0047211316, + -0.028185114, + -0.012054246, + -0.004258422, + -0.016986625, + 0.01725032, + 0.002493351, + -0.0017694223, + -0.026546929, + 0.00028037644, + 0.026868956, + 0.020167798, + -0.014503289, + -0.006273457, + -0.009368871, + -0.0030294682, + 0.0025590665, + -0.012803271, + -0.025416337, + -0.010417988, + -0.0050366702, + 0.001122108, + -0.0009335357, + -0.008095083, + -0.011963294, + -0.011834158, + 0.0031019452, + -0.034742143, + -0.02207081, + -0.0007848968, + -0.024892874, + 0.008097829, + -0.049412336, + -0.014498929, + -0.012095958, + -0.031136513, + -0.008193358, + -0.0020800468, + -0.0029947753, + -0.010353823, + -0.0059524677, + 0.000183805, + 0.005205606, + -0.008703803, + -0.027619192, + 0.020622678, + -0.0037984888, + 0.002102531, + 0.0019369512, + 0.0023315758, + 0.0071773976, + -0.0044688582, + -0.020140884, + 0.00031332247, + 0.0123956865, + -0.020560052, + -0.019643882, + -0.036076754, + 0.020296032, + 0.00025484883, + -0.024110429, + -0.018348219, + 0.0021965522, + -0.00637737, + -0.015350555, + -0.016929261, + -0.013666503, + -0.016235504, + 0.01966181, + 0.012775842, + -0.02834107, + -0.0023355114, + -0.012864756, + -0.0005661059, + 0.02447082, + -0.013486852, + -0.007943632, + 0.017822262, + 0.01223496, + -0.017952422, + -0.0071712034, + 0.0002831482, + 0.009054059, + -0.022031676, + 0.005516281, + -0.03847671, + 0.03368789, + 0.0010615408, + -0.027296277, + -0.004957232, + -0.019737296, + 0.0022552167, + -0.023632715, + -0.026215546, + 0.011566113, + -0.008786153, + -0.020132884, + -0.024583904, + -0.003021821, + -0.014295357, + 0.004559227, + -0.011644482, + -0.015099261, + -0.015336973, + -0.0074242093, + 0.00442785, + -0.0036008193, + -0.0071599227, + -0.00491131, + -0.015446343, + 0.0028571005, + -0.034204233, + -0.013982196, + -0.019145451, + 0.0001380825, + -0.011694588, + -0.00032728535, + -0.012144075, + -0.0007304998, + -0.011943815, + 0.010680347, + -0.028026722, + -0.009316851, + -0.016813459, + -0.038168836, + -0.017238155, + -0.0076052463, + 0.0026155836, + -0.016865188, + -0.030512149, + 0.00012880274, + 0.014535886, + -0.008330798, + -0.020752283, + -0.015999861, + -0.017210327, + -0.035101525, + -0.00243487, + 0.02172173, + -0.008942905, + -0.00646018, + -0.0058634705, + -0.012393693, + 0.0057339203, + -0.013977537, + -0.0043371464, + -0.017445134, + -0.007350259, + -0.0016823435, + -0.031568088, + 0.0012381427, + 0.0107475165, + -0.005659658, + 0.0026017355, + -0.01890786, + -0.0010106468, + -0.0048516104, + 0.008680154, + 0.011981003, + -0.020129345, + 0.0051142587, + -0.015930131, + -0.012871096, + -0.0150651885, + -0.018588586, + -0.0010963214, + -0.015874736, + 0.010495978, + 0.0036348787, + -0.021313876, + -0.011002278, + -0.01374066, + -0.019024042, + -0.02121199, + -0.0011328622, + -0.016765265, + 0.020414883, + 0.016602367, + -0.03570177, + -0.03185744, + -0.023552176, + -0.0002455238, + -0.007427445, + -0.0046494235, + -0.008492652, + -0.0029084268, + -0.0057120305, + -0.013273661, + -0.03695999, + -0.004443769, + -0.02175958, + 0.011010062, + 0.0038611349, + 0.011946343, + 0.012330364, + 0.02646279, + -0.002017737, + -0.017679768, + -0.005649343, + -0.0143718645, + -0.01596611, + -0.006853403, + -0.0248112, + -0.0021449341, + -0.026092866, + -0.007120407, + 0.0031708258, + -0.025026033, + 0.011951801, + -0.023131212, + -0.032095768, + -0.010335376, + -0.009042727, + -0.02286914, + -0.0022916803, + -0.006831636, + 0.004191788, + -0.016931295, + -0.019184157, + -0.02603554, + -0.01873117, + -0.013322435, + -0.00912509, + -0.011214529, + -0.010550244, + 0.0102913845, + 0.01814777, + 0.009899654, + -0.0046174135, + -0.012767142, + 0.013017825, + -0.014031561, + -0.0009851414, + -0.023182772, + 0.0014171504, + 0.00047918945, + 0.0024456026, + -0.0025692233, + 0.00085949904, + -0.024250789, + -0.020297615, + -0.0042234357, + -0.0042691063, + 0.0038958713, + -0.014090804, + -0.015218945, + -0.0036312998, + -0.0041093556, + -0.021930654, + 0.00026796464, + 0.0056859953, + -0.016878631, + 0.009811702, + -0.02523047, + -0.016074644, + 0.019092463, + 0.0031867258, + -0.0073649297, + -0.015908396, + -0.0010868666, + -0.011052371, + -0.017558867, + 0.017565036, + 0.05116884, + 0.015787484, + 0.00045253255, + 0.015930552, + -0.031044714, + -0.0153212175, + -0.008651286, + 0.0153273875, + 0.015644966, + -0.018832805, + -0.0034044718, + -0.015555857, + 0.0015363117, + 0.020712012, + -0.0009193209, + -0.017199818, + -0.006041182, + -0.023808772, + 0.008366921, + -0.011495766, + -0.025221381, + 0.0074568586, + 0.0056083947, + 4.8102254e-05, + -0.0045794398, + -0.015605611, + -0.014045873, + -0.030144718, + 0.011579359, + 0.009922022, + 0.023402931, + -0.02347093, + -0.015270889, + 0.030374616, + -0.019151513, + 0.013061612, + -0.012302943, + -0.00066000904, + -0.012771952, + -0.00010787864, + -0.0025737712, + -0.018046439, + -0.012013082, + 0.0138861155, + 0.0019808256, + 0.002088365, + -0.0056737717, + -9.362103e-06, + -0.021006966, + 0.00918229, + -0.003017308, + -0.021608345, + -0.018239655, + -0.0069715125, + -0.011565406, + 0.0092055155, + -0.0008540702, + -0.02304581, + -0.0044745095, + -0.03654374, + 0.028347243, + 0.00049110287, + 0.011632082, + -0.0033445861, + 0.0020754996, + -0.0061727855, + -0.039851744, + 0.003574059, + -0.024201486, + 0.019294225, + -0.0016197772, + -0.013402275, + -0.0057884348, + -0.017923111, + 0.0009447974, + 0.002493233, + 0.019217782, + 0.004261279, + -0.011831679, + -0.012868333, + -0.0033981341, + -0.008757791, + 0.00068217877, + -0.00979473, + 0.0023744518, + -0.008008291, + 0.009847495, + 0.00013410779, + 0.004121706, + -0.025938248, + 0.005068251, + -0.028635185, + -0.021718374, + 0.012137995, + -0.021468101, + -0.0075361636, + -0.0006344832, + 0.008339556, + -0.0047063734, + -0.0064625833, + -0.004950821, + -0.008326405, + -0.006800143, + -0.014495179, + -0.012787558, + -0.028314732, + -0.011612602, + -0.029805228, + -0.0042814896, + -0.029067505, + -0.022284465, + -0.011533559, + 0.015563634, + -0.01501815, + -0.011917183, + -0.024902359, + -0.0022066468, + -0.008584229, + -0.016645212, + -0.008979736, + 0.00033985262, + 0.0331784, + -0.012479019, + -0.025892034, + -0.01128355, + -0.015664054, + -0.008542688, + -0.015786877, + 0.0029153838, + -0.007301091, + 0.006102646, + 0.025551297, + 0.016109135, + -0.009320139, + 0.03341159, + -0.026562687, + -0.010345331, + -0.049643923, + -0.017618133, + -0.0144748865, + 0.024770098, + -0.028623242, + -0.027001863, + -0.017741377, + -0.026014816, + -0.014744052, + 0.0099868765, + -0.0048276098, + -7.487347e-05, + -0.0018187276, + -0.011039003, + -0.0014518313, + -0.024952414, + -0.007921626, + -0.01139601, + -0.018721983, + 0.01089357, + -0.01824835, + -0.04364945, + 0.0071830614, + -0.016331384, + -0.022716783, + -7.735573e-05, + 0.0012514475, + -0.01984007, + -0.022323892, + -0.0030201331, + -0.040873256, + -0.020194262, + -0.007981183, + 0.025659949, + 0.012429217, + 0.006005085, + -0.025058014, + -0.006768613, + -0.010171143, + -0.005694693, + -0.015169692, + 0.014579083, + -0.025763834, + -0.031555526, + -0.004101504, + -0.010149027, + -0.00057069724, + 0.0048208, + 0.0007952973, + -0.0033157968, + 0.00055460684, + -0.020852251, + -0.01683079, + 0.001649031, + -0.023058094, + 0.016713401, + -0.020126207, + -0.027996374, + 0.027206976, + 0.008756912, + -0.015975675, + -0.030891988, + 0.015461701, + -0.02178451, + -0.010267482, + -0.013624074, + -0.007522213, + 0.028602472, + 0.000756763, + -0.009627976, + -0.01463105, + 0.0028855032, + -0.005544003, + 0.026866905, + -0.0081702825, + -0.017027777, + -0.02041397, + -0.042523663, + -0.0111098895, + -0.025186114, + -0.029092519, + -0.0043689096, + 0.0055510113, + 0.012131009, + -0.0046282597, + -0.005797068, + -0.0021076933, + -0.02266335, + -0.0122865345, + -0.0059177387, + -0.038016472, + -0.008637906, + 0.012331072, + 0.008177303, + 0.001501275, + -0.0119319325, + 0.009990403, + -0.026953496, + 0.009033553, + -0.0067263907, + -0.0055314125, + -0.0071861036, + 0.007354683, + -0.0033358717, + -0.009928394, + 0.0023649682, + -0.018815491, + -0.009109073, + 0.007949541, + 0.0026076, + -0.030705955, + -0.015986055, + -0.0072526727, + -0.015094248, + 0.006448459, + -0.003121623, + -0.012452549, + -0.004080191, + -0.0028769935, + -0.001258771, + 0.024882758, + -0.017089222, + -0.02416165, + -0.012504915, + 0.005349247, + -0.008964769, + 0.023277657, + -0.020669576, + -0.013110076, + -0.0033105493, + -0.0018093807, + -0.0069140336, + -0.006817521, + 0.0055567855, + -0.017893488, + 0.00785064, + -0.003847334, + -0.018987734, + 0.002871036, + -0.0013139345, + -0.017602934, + -0.018190468, + -0.007996636, + -0.012957919, + -0.028557025, + 0.015625838, + -0.0076117115, + -0.016179275, + 0.017599452, + 0.009603648, + -0.029866094, + 0.00033416052, + -0.030602744, + -0.03001911, + -0.012541488, + 0.024325842, + -0.0026544188, + -0.02070669, + 0.006312547, + 0.00854764, + -0.0006799281, + 0.0146358395, + -0.024534317, + -0.018250175, + -0.0016091892, + -0.0036374212, + -0.0091308905, + -0.030923376, + -0.013398363, + -0.011157647, + -0.011622857, + -0.022785122, + -0.0001427171, + -0.008292671, + -0.015627572, + -0.008008226, + -0.010215508, + -0.007708872, + -0.041307572, + -0.027456313, + -0.003221593, + -0.005384692, + 0.0040997495, + 0.018761337, + -0.038656104, + -0.019324545, + -0.010211362, + -0.014764372, + 0.030154854, + -0.022427317, + -0.008564918, + -0.02716051, + -0.011304901, + -0.03408124, + -0.016805978, + -0.008802968, + -0.0038135673, + 0.0078100003, + -0.027483247, + -0.0020504897, + -0.0040511414, + -0.018332882, + -0.015043712, + -0.007155782, + 0.009244262, + -0.016893283, + -0.017378999, + 0.010499832, + -0.027251713, + -0.014368885, + -0.008005056, + -0.018590974, + 0.003674995, + -0.01287152, + -0.011423793, + -0.013226458, + 0.0047200536, + -0.0064485464, + -0.009963887, + -0.00821562, + 0.007059229, + -0.022087816, + -0.027595086, + 0.009123646, + -0.020525593, + -0.0030578475, + 0.0029008174, + 0.024465889, + -0.022101, + -0.010975524, + 0.0009991848, + 0.0010775203, + -0.025384812, + -0.02593267, + 0.014596756, + 0.00317025, + -0.0073991516, + -0.0029498255, + 0.010840826, + -0.022553481, + 0.0017974607, + -0.027772598, + 0.004780798, + 0.0010085185, + 0.004092503, + -0.02220928, + -0.014445012, + -0.0103653455, + 0.0013572004, + -0.008233736, + 0.023336137, + -0.017265216, + -0.0027312394, + -0.02293659, + -0.006858274, + -0.007866975, + 0.016252821, + -0.015542078, + 0.0050318195, + -0.018198892, + -0.013393893, + -0.017436292, + 0.010769219, + -0.013945454, + -0.011902955, + -0.009359939, + 0.008429139, + -0.009088429, + 0.022950852, + 0.0055670096, + -0.00557575, + -0.0028707986, + -0.009416944, + -0.0062660235, + 0.03267693, + 0.021700023, + -0.011841478, + -0.0062492704, + -0.012069674, + -0.017799487, + -0.011392613, + -0.00067773287, + -0.0075791124, + -0.009208746, + -0.014874704, + -0.0040474096, + -0.0062106014, + 0.008687987, + -0.010137364, + -0.0046271873, + -0.03245649, + -0.014212283, + -0.0038800258, + -0.032548945, + -0.014629739, + -0.029905977, + 0.016173765, + -0.002704457, + -0.0061359205, + -0.029356299, + 0.0010124331, + -0.001798656, + -0.00957968, + -0.03346099, + -0.010263062, + 0.0059561734, + 0.0012789271, + 0.020288454, + -0.013389506, + -0.002115604, + -0.00061326486, + 0.005787086, + -0.0010059982, + -0.00049326266, + 0.0041786837, + -0.036566816, + -0.025265299, + -0.024186777, + 0.0053656846, + 0.00822369, + -0.029137243, + -0.011213875, + -0.0058092386, + 0.01120126, + -0.0007048607, + -0.0025874958, + 0.0288643, + -0.0017095549, + -0.021109886, + -0.020739581, + 0.03163002, + -0.022094108, + -0.008854187, + -0.021371359, + -0.013409385, + -0.022330258, + 0.012548311, + -0.022355834, + 0.0010846388, + 0.011992784, + 0.019563831, + -0.019155938, + -0.015779449, + -0.006626031, + 0.007823498, + -0.009778872, + 0.018600952, + -0.010447181, + 0.010666313, + 0.00045733503, + -0.01956046, + -0.015512943, + -0.0023147182, + 0.0007056596, + -0.00068153435, + -0.0134393545, + -0.01262501, + -0.012350684, + 0.0036057765, + -0.019103248, + -0.019032951, + -0.0007569207, + -0.012005934, + 0.009987156, + -0.008054071, + -0.014535065, + -0.0135704605, + 0.015886696, + -0.002129748, + 0.014846691, + -0.008541526, + 0.011269953, + 0.010444783, + 0.0015477196, + 0.015249771, + -0.0053863437, + 0.0027060576, + -0.01096389, + -0.031269033, + -0.014732481, + -0.014256204, + 0.0011569484, + -0.023670014, + 0.003928616, + -0.004308067 ], "paletteEmbedding": [ - 0.043553844, 0.052698836, 0.031579826, 0.011776644, 0.0026316522, - 0.00013158261, 6.5791304e-5, 0.0, 0.0, 0.0, 0.056185775, 0.069936156, - 0.0514488, 0.02013214, 0.004276435, 0.0010526609, 0.0, 0.0, 0.0, 0.0, - 0.038158957, 0.059277967, 0.048225027, 0.022434834, 0.0063817566, - 0.0010526609, 0.00013158261, 0.0, 0.0, 0.0, 0.014276713, 0.025461236, - 0.024540156, 0.013355635, 0.004736974, 0.00078949565, 0.00013158261, - 0.00013158261, 0.0, 0.0, 0.0034211478, 0.0055264696, 0.008684453, - 0.0046053915, 0.0019737391, 0.00046053913, 6.5791304e-5, 0.0, 0.0, 0.0, - 0.00039474783, 0.00052633043, 0.00092107826, 0.0014474087, - 0.00065791304, 0.00019737391, 0.0, 0.0, 0.0, 0.0, 6.5791304e-5, - 6.5791304e-5, 0.00013158261, 6.5791304e-5, 6.5791304e-5, 6.5791304e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.5791304e-5, 0.0, 0.0, 6.5791304e-5, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.054277826, 0.06704134, - 0.04894873, 0.01960581, 0.0044080173, 0.00052633043, 0.0, 0.0, 0.0, 0.0, - 0.06973878, 0.10454238, 0.085528694, 0.043027513, 0.011381896, - 0.0017763652, 0.00026316522, 0.0, 0.0, 0.0, 0.05454099, 0.0998712, - 0.0923052, 0.053685706, 0.018750522, 0.0037501045, 0.00052633043, 0.0, - 0.0, 0.0, 0.026974436, 0.048619773, 0.056712106, 0.03980374, - 0.017697861, 0.005000139, 0.00065791304, 6.5791304e-5, 0.0, 0.0, - 0.006184383, 0.016316244, 0.023290122, 0.020395305, 0.011184522, - 0.003684313, 0.0011184522, 0.0, 0.0, 0.0, 0.0015789913, 0.002565861, - 0.0056580524, 0.0049343477, 0.0040132697, 0.0012500348, 0.00039474783, - 0.0, 0.0, 0.0, 6.5791304e-5, 0.00059212174, 0.00065791304, 0.0011842435, - 0.00085528695, 0.00032895652, 0.00013158261, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 6.5791304e-5, 0.00019737391, 6.5791304e-5, 6.5791304e-5, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0363168, 0.0559884, 0.04493546, - 0.021974295, 0.006908087, 0.0011842435, 0.00013158261, 0.0, 0.0, 0.0, - 0.057106853, 0.09539739, 0.09164729, 0.05342254, 0.020790052, - 0.0044080173, 0.00072370435, 0.0, 0.0, 0.0, 0.047764488, 0.09506844, - 0.11816119, 0.080002226, 0.037040506, 0.010329235, 0.0017105739, - 0.00013158261, 0.0, 0.0, 0.028487636, 0.063949145, 0.09881854, - 0.086318195, 0.045330208, 0.015000418, 0.0031579826, 0.00039474783, 0.0, - 0.0, 0.009144992, 0.025855983, 0.045988124, 0.05085668, 0.03467202, - 0.013026679, 0.0020395305, 0.00059212174, 6.5791304e-5, 0.0, - 0.0021053217, 0.008618661, 0.014276713, 0.018092608, 0.013553009, - 0.007368626, 0.0021711132, 0.00026316522, 0.0, 0.0, 0.00032895652, - 0.00092107826, 0.0026974436, 0.0038158956, 0.004736974, 0.0021053217, - 0.00072370435, 0.00019737391, 0.0, 0.0, 0.0, 0.00013158261, - 0.00019737391, 0.00046053913, 0.00092107826, 0.00046053913, - 0.00026316522, 6.5791304e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 6.5791304e-5, 0.0, - 0.00019737391, 6.5791304e-5, 6.5791304e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.015329374, 0.025000695, 0.022961166, - 0.013947757, 0.0044738087, 0.0017763652, 6.5791304e-5, 0.0, 0.0, 0.0, - 0.0242112, 0.053027794, 0.058620054, 0.044080175, 0.018750522, - 0.006250174, 0.0009868696, 0.00013158261, 0.0, 0.0, 0.028027097, - 0.066515006, 0.09796325, 0.08658136, 0.05197513, 0.015000418, - 0.003684313, 0.00059212174, 0.0, 0.0, 0.017961027, 0.05704106, - 0.09605531, 0.10993727, 0.07250202, 0.02822447, 0.0057238434, - 0.00072370435, 0.00026316522, 0.0, 0.0061185914, 0.028487636, - 0.06579131, 0.08368654, 0.064804435, 0.032895654, 0.008026539, - 0.0018421565, 0.00019737391, 0.0, 0.0026974436, 0.009144992, - 0.024671739, 0.039408993, 0.034014106, 0.021513756, 0.0076317913, - 0.0019737391, 0.00039474783, 6.5791304e-5, 0.00019737391, 0.0015132, - 0.006908087, 0.010263444, 0.010789774, 0.0088160345, 0.0030921914, - 0.0014474087, 0.00026316522, 0.0, 0.0, 0.00039474783, 0.00085528695, - 0.0016447826, 0.0020395305, 0.002565861, 0.0009868696, 0.00072370435, - 0.00013158261, 0.0, 0.0, 0.0, 0.0, 0.00019737391, 0.00059212174, - 0.00052633043, 0.00013158261, 0.00013158261, 6.5791304e-5, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0029606088, 0.0068422956, - 0.007368626, 0.0063817566, 0.0029606088, 0.00092107826, 0.00019737391, - 0.0, 0.0, 0.0, 0.0076317913, 0.018026818, 0.026250731, 0.02368487, - 0.015987286, 0.0045396, 0.0012500348, 0.00013158261, 0.0, 0.0, - 0.0088160345, 0.031448245, 0.051185634, 0.06322545, 0.041645896, - 0.018487357, 0.0048027653, 0.00039474783, 6.5791304e-5, 0.0, - 0.008158122, 0.030461375, 0.06835717, 0.093555234, 0.07506788, - 0.037961584, 0.012237183, 0.0022369043, 0.00013158261, 0.0, 0.005592261, - 0.0211848, 0.05243567, 0.088357724, 0.08710769, 0.05190934, 0.018421566, - 0.0043422263, 0.00059212174, 0.0, 0.0013158261, 0.0076317913, 0.0257244, - 0.049343478, 0.05789635, 0.042501185, 0.020592678, 0.006644922, - 0.0013816174, 0.00013158261, 6.5791304e-5, 0.0019737391, 0.0074344175, - 0.018289983, 0.026382314, 0.02526386, 0.013289844, 0.005592261, - 0.0013816174, 0.00019737391, 0.0, 0.00052633043, 0.0017105739, - 0.0034869392, 0.007302835, 0.009539739, 0.006250174, 0.0031579826, - 0.00072370435, 6.5791304e-5, 0.0, 0.0, 6.5791304e-5, 0.00046053913, - 0.0013158261, 0.0022369043, 0.002368487, 0.0014474087, 0.00059212174, - 6.5791304e-5, 0.0, 0.0, 6.5791304e-5, 0.0, 0.00019737391, 0.00032895652, - 0.00092107826, 0.00039474783, 6.5791304e-5, 0.0, 0.00046053913, - 0.0015132, 0.0021711132, 0.0021053217, 0.00085528695, 0.00039474783, - 6.5791304e-5, 0.0, 0.0, 0.0, 0.0018421565, 0.004736974, 0.0076975827, - 0.008026539, 0.006644922, 0.002565861, 0.00072370435, 0.00013158261, - 0.0, 0.0, 0.0021053217, 0.009408156, 0.019211061, 0.027500765, - 0.022829583, 0.01157927, 0.003223774, 0.00078949565, 0.0, 6.5791304e-5, - 0.0029606088, 0.009671322, 0.030395582, 0.052962, 0.051646173, - 0.032698277, 0.012566139, 0.0031579826, 0.00072370435, 0.0, - 0.0013158261, 0.008881826, 0.030264001, 0.06151487, 0.07375205, - 0.055264696, 0.027961304, 0.0083554955, 0.00078949565, 0.00019737391, - 0.00072370435, 0.0044080173, 0.018355774, 0.042435393, 0.067962416, - 0.06144908, 0.03993532, 0.012500348, 0.0036185218, 0.00052633043, - 0.00026316522, 0.0014474087, 0.007368626, 0.022040088, 0.042435393, - 0.05098826, 0.036974713, 0.02164534, 0.0076975827, 0.0014474087, 0.0, - 0.00019737391, 0.0015132, 0.007368626, 0.015263583, 0.027566558, - 0.02829026, 0.017895235, 0.0078949565, 0.0017105739, 0.0, 0.00013158261, - 0.00013158261, 0.0012500348, 0.0046053915, 0.0092765745, 0.013947757, - 0.0097371135, 0.005000139, 0.0015132, 0.0, 0.0, 0.0, 0.00052633043, - 0.0011184522, 0.003223774, 0.0049343477, 0.0034869392, 0.0014474087, - 0.00052633043, 6.5791304e-5, 0.0, 0.00032895652, 0.00026316522, - 0.00026316522, 0.0, 0.0, 0.0, 6.5791304e-5, 0.0, 0.0, 0.00085528695, - 0.0012500348, 0.0019737391, 0.002368487, 0.0010526609, 0.00013158261, - 6.5791304e-5, 0.0, 0.0, 0.00052633043, 0.0017763652, 0.0048027653, - 0.008684453, 0.0072370437, 0.005131722, 0.002368487, 0.00039474783, - 6.5791304e-5, 0.0, 0.00046053913, 0.0030921914, 0.008881826, 0.01973739, - 0.025132278, 0.01868473, 0.009408156, 0.0019079478, 0.00052633043, - 6.5791304e-5, 0.00032895652, 0.0026316522, 0.012237183, 0.029540297, - 0.044474922, 0.047040783, 0.026974436, 0.011447687, 0.0032895652, - 0.00052633043, 0.00013158261, 0.0018421565, 0.0076317913, 0.029408714, - 0.058093723, 0.071449354, 0.0590148, 0.03217195, 0.010000278, - 0.0017105739, 0.0, 0.00072370435, 0.0044080173, 0.018487357, 0.04736974, - 0.077436365, 0.08585765, 0.0575016, 0.022829583, 0.0057238434, 0.0, - 0.00039474783, 0.0015789913, 0.008158122, 0.026184939, 0.061778035, - 0.082831256, 0.06315965, 0.03217195, 0.0074344175, 0.0, 0.0, - 0.00039474783, 0.0032895652, 0.0111187305, 0.031119287, 0.05039614, - 0.048488192, 0.0242112, 0.005855426, 0.0, 0.0, 0.0, 0.00039474783, - 0.0023026958, 0.009605531, 0.017303113, 0.017895235, 0.010329235, - 0.003223774, 0.0, 0.0, 0.0, 6.5791304e-5, 6.5791304e-5, 6.5791304e-5, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.00032895652, 0.00019737391, 0.00019737391, - 0.00019737391, 0.00026316522, 0.00019737391, 0.0, 0.0, 0.0, - 6.5791304e-5, 6.5791304e-5, 0.00078949565, 0.0012500348, 0.0013158261, - 0.0018421565, 0.00065791304, 0.00039474783, 0.0, 0.0, 6.5791304e-5, - 0.00039474783, 0.0019079478, 0.0048685567, 0.008487078, 0.008026539, - 0.005000139, 0.0024342784, 0.00059212174, 0.00026316522, 0.0, - 0.00052633043, 0.0023026958, 0.010921356, 0.018421566, 0.02815868, - 0.025066487, 0.010526609, 0.003881687, 0.00085528695, 0.0, - 0.00046053913, 0.0034869392, 0.010855566, 0.033816732, 0.06296228, - 0.069080874, 0.04894873, 0.018553149, 0.0044080173, 6.5791304e-5, - 0.00019737391, 0.0025000696, 0.011316105, 0.03967216, 0.096910596, - 0.14171447, 0.11270051, 0.05388308, 0.014737252, 0.0, 0.0, - 0.00072370435, 0.007829165, 0.03888266, 0.10204232, 0.17000474, - 0.16204399, 0.076910034, 0.020592678, 0.0, 0.0, 0.00039474783, - 0.0035527304, 0.02065847, 0.06631763, 0.12000334, 0.11756906, - 0.06487023, 0.019474227, 0.0, 0.0, 0.00013158261, 0.00078949565, - 0.0078949565, 0.022698, 0.04954085, 0.05440941, 0.02973767, 0.009210783, - 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.5791304e-5, 0.0, 0.0, 0.0, 6.5791304e-5, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.5791304e-5, 0.00032895652, 0.00032895652, 0.00032895652, - 0.00026316522, 0.0, 0.0, 0.0, 0.0, 6.5791304e-5, 0.00026316522, - 0.00065791304, 0.0019737391, 0.0015132, 0.002368487, 0.0015789913, - 0.00026316522, 0.0, 0.0, 0.00019737391, 0.00052633043, 0.0019737391, - 0.0065791304, 0.013092469, 0.0134214265, 0.009473948, 0.0037501045, - 0.0010526609, 0.0, 0.00013158261, 0.00085528695, 0.0042106435, - 0.0166452, 0.0423696, 0.05743581, 0.04888294, 0.019803183, 0.0059870086, - 0.0, 0.00019737391, 0.00059212174, 0.0060528, 0.03079033, 0.08447604, - 0.13737224, 0.12684564, 0.06263332, 0.018816313, 0.0, 0.0, - 0.00052633043, 0.0057238434, 0.03217195, 0.1089504, 0.19638705, - 0.19711076, 0.11000306, 0.03388252, 0.0, 0.0, 0.00013158261, - 0.0033553566, 0.023026956, 0.07289676, 0.15184633, 0.16789941, - 0.100726485, 0.03184299, 0.0, 0.0, 0.00019737391, 0.00078949565, - 0.008223914, 0.031382453, 0.06901508, 0.0741468, 0.04736974, - 0.014737252, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 0.0, 0.0, 0.0, 0.0, 0.0, 6.5791304e-5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, - 6.5791304e-5, 0.00019737391, 6.5791304e-5, 6.5791304e-5, 0.0, 0.0, 0.0, - 0.0, 6.5791304e-5, 0.00026316522, 0.00019737391, 0.00078949565, - 0.00065791304, 0.00046053913, 0.00013158261, 6.5791304e-5, 0.0, 0.0, - 0.00013158261, 0.00072370435, 0.0017105739, 0.005197513, 0.0053290958, - 0.0059212176, 0.0024342784, 0.00072370435, 0.0, 0.0, 0.00026316522, - 0.0019079478, 0.0069738785, 0.020592678, 0.028882382, 0.030000836, - 0.014408296, 0.0042106435, 0.0, 0.0, 0.00026316522, 0.0028948174, - 0.0134214265, 0.049014524, 0.08579186, 0.085528694, 0.047238156, - 0.015789913, 0.0, 0.0, 0.00039474783, 0.0026974436, 0.02013214, - 0.0696072, 0.13335897, 0.13908282, 0.079146944, 0.029013965, 0.0, 0.0, - 0.00026316522, 0.0012500348, 0.012895096, 0.048027653, 0.11171363, - 0.12789829, 0.07934432, 0.02829026, 0.0, 0.0, 0.0, 0.00078949565, - 0.0053290958, 0.020526888, 0.049014524, 0.0643439, 0.039869532, + 0.043553844, + 0.052698836, + 0.031579826, + 0.011776644, + 0.0026316522, + 0.00013158261, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.056185775, + 0.069936156, + 0.0514488, + 0.02013214, + 0.004276435, + 0.0010526609, + 0.0, + 0.0, + 0.0, + 0.0, + 0.038158957, + 0.059277967, + 0.048225027, + 0.022434834, + 0.0063817566, + 0.0010526609, + 0.00013158261, + 0.0, + 0.0, + 0.0, + 0.014276713, + 0.025461236, + 0.024540156, + 0.013355635, + 0.004736974, + 0.00078949565, + 0.00013158261, + 0.00013158261, + 0.0, + 0.0, + 0.0034211478, + 0.0055264696, + 0.008684453, + 0.0046053915, + 0.0019737391, + 0.00046053913, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.00039474783, + 0.00052633043, + 0.00092107826, + 0.0014474087, + 0.00065791304, + 0.00019737391, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 6.5791304e-05, + 0.00013158261, + 6.5791304e-05, + 6.5791304e-05, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.054277826, + 0.06704134, + 0.04894873, + 0.01960581, + 0.0044080173, + 0.00052633043, + 0.0, + 0.0, + 0.0, + 0.0, + 0.06973878, + 0.10454238, + 0.085528694, + 0.043027513, + 0.011381896, + 0.0017763652, + 0.00026316522, + 0.0, + 0.0, + 0.0, + 0.05454099, + 0.0998712, + 0.0923052, + 0.053685706, + 0.018750522, + 0.0037501045, + 0.00052633043, + 0.0, + 0.0, + 0.0, + 0.026974436, + 0.048619773, + 0.056712106, + 0.03980374, + 0.017697861, + 0.005000139, + 0.00065791304, + 6.5791304e-05, + 0.0, + 0.0, + 0.006184383, + 0.016316244, + 0.023290122, + 0.020395305, + 0.011184522, + 0.003684313, + 0.0011184522, + 0.0, + 0.0, + 0.0, + 0.0015789913, + 0.002565861, + 0.0056580524, + 0.0049343477, + 0.0040132697, + 0.0012500348, + 0.00039474783, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00059212174, + 0.00065791304, + 0.0011842435, + 0.00085528695, + 0.00032895652, + 0.00013158261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00019737391, + 6.5791304e-05, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0363168, + 0.0559884, + 0.04493546, + 0.021974295, + 0.006908087, + 0.0011842435, + 0.00013158261, + 0.0, + 0.0, + 0.0, + 0.057106853, + 0.09539739, + 0.09164729, + 0.05342254, + 0.020790052, + 0.0044080173, + 0.00072370435, + 0.0, + 0.0, + 0.0, + 0.047764488, + 0.09506844, + 0.11816119, + 0.080002226, + 0.037040506, + 0.010329235, + 0.0017105739, + 0.00013158261, + 0.0, + 0.0, + 0.028487636, + 0.063949145, + 0.09881854, + 0.086318195, + 0.045330208, + 0.015000418, + 0.0031579826, + 0.00039474783, + 0.0, + 0.0, + 0.009144992, + 0.025855983, + 0.045988124, + 0.05085668, + 0.03467202, + 0.013026679, + 0.0020395305, + 0.00059212174, + 6.5791304e-05, + 0.0, + 0.0021053217, + 0.008618661, + 0.014276713, + 0.018092608, + 0.013553009, + 0.007368626, + 0.0021711132, + 0.00026316522, + 0.0, + 0.0, + 0.00032895652, + 0.00092107826, + 0.0026974436, + 0.0038158956, + 0.004736974, + 0.0021053217, + 0.00072370435, + 0.00019737391, + 0.0, + 0.0, + 0.0, + 0.00013158261, + 0.00019737391, + 0.00046053913, + 0.00092107826, + 0.00046053913, + 0.00026316522, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.00019737391, + 6.5791304e-05, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.015329374, + 0.025000695, + 0.022961166, + 0.013947757, + 0.0044738087, + 0.0017763652, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0242112, + 0.053027794, + 0.058620054, + 0.044080175, + 0.018750522, + 0.006250174, + 0.0009868696, + 0.00013158261, + 0.0, + 0.0, + 0.028027097, + 0.066515006, + 0.09796325, + 0.08658136, + 0.05197513, + 0.015000418, + 0.003684313, + 0.00059212174, + 0.0, + 0.0, + 0.017961027, + 0.05704106, + 0.09605531, + 0.10993727, + 0.07250202, + 0.02822447, + 0.0057238434, + 0.00072370435, + 0.00026316522, + 0.0, + 0.0061185914, + 0.028487636, + 0.06579131, + 0.08368654, + 0.064804435, + 0.032895654, + 0.008026539, + 0.0018421565, + 0.00019737391, + 0.0, + 0.0026974436, + 0.009144992, + 0.024671739, + 0.039408993, + 0.034014106, + 0.021513756, + 0.0076317913, + 0.0019737391, + 0.00039474783, + 6.5791304e-05, + 0.00019737391, + 0.0015132, + 0.006908087, + 0.010263444, + 0.010789774, + 0.0088160345, + 0.0030921914, + 0.0014474087, + 0.00026316522, + 0.0, + 0.0, + 0.00039474783, + 0.00085528695, + 0.0016447826, + 0.0020395305, + 0.002565861, + 0.0009868696, + 0.00072370435, + 0.00013158261, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00019737391, + 0.00059212174, + 0.00052633043, + 0.00013158261, + 0.00013158261, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0029606088, + 0.0068422956, + 0.007368626, + 0.0063817566, + 0.0029606088, + 0.00092107826, + 0.00019737391, + 0.0, + 0.0, + 0.0, + 0.0076317913, + 0.018026818, + 0.026250731, + 0.02368487, + 0.015987286, + 0.0045396, + 0.0012500348, + 0.00013158261, + 0.0, + 0.0, + 0.0088160345, + 0.031448245, + 0.051185634, + 0.06322545, + 0.041645896, + 0.018487357, + 0.0048027653, + 0.00039474783, + 6.5791304e-05, + 0.0, + 0.008158122, + 0.030461375, + 0.06835717, + 0.093555234, + 0.07506788, + 0.037961584, + 0.012237183, + 0.0022369043, + 0.00013158261, + 0.0, + 0.005592261, + 0.0211848, + 0.05243567, + 0.088357724, + 0.08710769, + 0.05190934, + 0.018421566, + 0.0043422263, + 0.00059212174, + 0.0, + 0.0013158261, + 0.0076317913, + 0.0257244, + 0.049343478, + 0.05789635, + 0.042501185, + 0.020592678, + 0.006644922, + 0.0013816174, + 0.00013158261, + 6.5791304e-05, + 0.0019737391, + 0.0074344175, + 0.018289983, + 0.026382314, + 0.02526386, + 0.013289844, + 0.005592261, + 0.0013816174, + 0.00019737391, + 0.0, + 0.00052633043, + 0.0017105739, + 0.0034869392, + 0.007302835, + 0.009539739, + 0.006250174, + 0.0031579826, + 0.00072370435, + 6.5791304e-05, + 0.0, + 0.0, + 6.5791304e-05, + 0.00046053913, + 0.0013158261, + 0.0022369043, + 0.002368487, + 0.0014474087, + 0.00059212174, + 6.5791304e-05, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.00019737391, + 0.00032895652, + 0.00092107826, + 0.00039474783, + 6.5791304e-05, + 0.0, + 0.00046053913, + 0.0015132, + 0.0021711132, + 0.0021053217, + 0.00085528695, + 0.00039474783, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0018421565, + 0.004736974, + 0.0076975827, + 0.008026539, + 0.006644922, + 0.002565861, + 0.00072370435, + 0.00013158261, + 0.0, + 0.0, + 0.0021053217, + 0.009408156, + 0.019211061, + 0.027500765, + 0.022829583, + 0.01157927, + 0.003223774, + 0.00078949565, + 0.0, + 6.5791304e-05, + 0.0029606088, + 0.009671322, + 0.030395582, + 0.052962, + 0.051646173, + 0.032698277, + 0.012566139, + 0.0031579826, + 0.00072370435, + 0.0, + 0.0013158261, + 0.008881826, + 0.030264001, + 0.06151487, + 0.07375205, + 0.055264696, + 0.027961304, + 0.0083554955, + 0.00078949565, + 0.00019737391, + 0.00072370435, + 0.0044080173, + 0.018355774, + 0.042435393, + 0.067962416, + 0.06144908, + 0.03993532, + 0.012500348, + 0.0036185218, + 0.00052633043, + 0.00026316522, + 0.0014474087, + 0.007368626, + 0.022040088, + 0.042435393, + 0.05098826, + 0.036974713, + 0.02164534, + 0.0076975827, + 0.0014474087, + 0.0, + 0.00019737391, + 0.0015132, + 0.007368626, + 0.015263583, + 0.027566558, + 0.02829026, + 0.017895235, + 0.0078949565, + 0.0017105739, + 0.0, + 0.00013158261, + 0.00013158261, + 0.0012500348, + 0.0046053915, + 0.0092765745, + 0.013947757, + 0.0097371135, + 0.005000139, + 0.0015132, + 0.0, + 0.0, + 0.0, + 0.00052633043, + 0.0011184522, + 0.003223774, + 0.0049343477, + 0.0034869392, + 0.0014474087, + 0.00052633043, + 6.5791304e-05, + 0.0, + 0.00032895652, + 0.00026316522, + 0.00026316522, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 0.00085528695, + 0.0012500348, + 0.0019737391, + 0.002368487, + 0.0010526609, + 0.00013158261, + 6.5791304e-05, + 0.0, + 0.0, + 0.00052633043, + 0.0017763652, + 0.0048027653, + 0.008684453, + 0.0072370437, + 0.005131722, + 0.002368487, + 0.00039474783, + 6.5791304e-05, + 0.0, + 0.00046053913, + 0.0030921914, + 0.008881826, + 0.01973739, + 0.025132278, + 0.01868473, + 0.009408156, + 0.0019079478, + 0.00052633043, + 6.5791304e-05, + 0.00032895652, + 0.0026316522, + 0.012237183, + 0.029540297, + 0.044474922, + 0.047040783, + 0.026974436, + 0.011447687, + 0.0032895652, + 0.00052633043, + 0.00013158261, + 0.0018421565, + 0.0076317913, + 0.029408714, + 0.058093723, + 0.071449354, + 0.0590148, + 0.03217195, + 0.010000278, + 0.0017105739, + 0.0, + 0.00072370435, + 0.0044080173, + 0.018487357, + 0.04736974, + 0.077436365, + 0.08585765, + 0.0575016, + 0.022829583, + 0.0057238434, + 0.0, + 0.00039474783, + 0.0015789913, + 0.008158122, + 0.026184939, + 0.061778035, + 0.082831256, + 0.06315965, + 0.03217195, + 0.0074344175, + 0.0, + 0.0, + 0.00039474783, + 0.0032895652, + 0.0111187305, + 0.031119287, + 0.05039614, + 0.048488192, + 0.0242112, + 0.005855426, + 0.0, + 0.0, + 0.0, + 0.00039474783, + 0.0023026958, + 0.009605531, + 0.017303113, + 0.017895235, + 0.010329235, + 0.003223774, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 6.5791304e-05, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.00032895652, + 0.00019737391, + 0.00019737391, + 0.00019737391, + 0.00026316522, + 0.00019737391, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 6.5791304e-05, + 0.00078949565, + 0.0012500348, + 0.0013158261, + 0.0018421565, + 0.00065791304, + 0.00039474783, + 0.0, + 0.0, + 6.5791304e-05, + 0.00039474783, + 0.0019079478, + 0.0048685567, + 0.008487078, + 0.008026539, + 0.005000139, + 0.0024342784, + 0.00059212174, + 0.00026316522, + 0.0, + 0.00052633043, + 0.0023026958, + 0.010921356, + 0.018421566, + 0.02815868, + 0.025066487, + 0.010526609, + 0.003881687, + 0.00085528695, + 0.0, + 0.00046053913, + 0.0034869392, + 0.010855566, + 0.033816732, + 0.06296228, + 0.069080874, + 0.04894873, + 0.018553149, + 0.0044080173, + 6.5791304e-05, + 0.00019737391, + 0.0025000696, + 0.011316105, + 0.03967216, + 0.096910596, + 0.14171447, + 0.11270051, + 0.05388308, + 0.014737252, + 0.0, + 0.0, + 0.00072370435, + 0.007829165, + 0.03888266, + 0.10204232, + 0.17000474, + 0.16204399, + 0.076910034, + 0.020592678, + 0.0, + 0.0, + 0.00039474783, + 0.0035527304, + 0.02065847, + 0.06631763, + 0.12000334, + 0.11756906, + 0.06487023, + 0.019474227, + 0.0, + 0.0, + 0.00013158261, + 0.00078949565, + 0.0078949565, + 0.022698, + 0.04954085, + 0.05440941, + 0.02973767, + 0.009210783, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00032895652, + 0.00032895652, + 0.00032895652, + 0.00026316522, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00026316522, + 0.00065791304, + 0.0019737391, + 0.0015132, + 0.002368487, + 0.0015789913, + 0.00026316522, + 0.0, + 0.0, + 0.00019737391, + 0.00052633043, + 0.0019737391, + 0.0065791304, + 0.013092469, + 0.0134214265, + 0.009473948, + 0.0037501045, + 0.0010526609, + 0.0, + 0.00013158261, + 0.00085528695, + 0.0042106435, + 0.0166452, + 0.0423696, + 0.05743581, + 0.04888294, + 0.019803183, + 0.0059870086, + 0.0, + 0.00019737391, + 0.00059212174, + 0.0060528, + 0.03079033, + 0.08447604, + 0.13737224, + 0.12684564, + 0.06263332, + 0.018816313, + 0.0, + 0.0, + 0.00052633043, + 0.0057238434, + 0.03217195, + 0.1089504, + 0.19638705, + 0.19711076, + 0.11000306, + 0.03388252, + 0.0, + 0.0, + 0.00013158261, + 0.0033553566, + 0.023026956, + 0.07289676, + 0.15184633, + 0.16789941, + 0.100726485, + 0.03184299, + 0.0, + 0.0, + 0.00019737391, + 0.00078949565, + 0.008223914, + 0.031382453, + 0.06901508, + 0.0741468, + 0.04736974, + 0.014737252, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00019737391, + 6.5791304e-05, + 6.5791304e-05, + 0.0, + 0.0, + 0.0, + 0.0, + 6.5791304e-05, + 0.00026316522, + 0.00019737391, + 0.00078949565, + 0.00065791304, + 0.00046053913, + 0.00013158261, + 6.5791304e-05, + 0.0, + 0.0, + 0.00013158261, + 0.00072370435, + 0.0017105739, + 0.005197513, + 0.0053290958, + 0.0059212176, + 0.0024342784, + 0.00072370435, + 0.0, + 0.0, + 0.00026316522, + 0.0019079478, + 0.0069738785, + 0.020592678, + 0.028882382, + 0.030000836, + 0.014408296, + 0.0042106435, + 0.0, + 0.0, + 0.00026316522, + 0.0028948174, + 0.0134214265, + 0.049014524, + 0.08579186, + 0.085528694, + 0.047238156, + 0.015789913, + 0.0, + 0.0, + 0.00039474783, + 0.0026974436, + 0.02013214, + 0.0696072, + 0.13335897, + 0.13908282, + 0.079146944, + 0.029013965, + 0.0, + 0.0, + 0.00026316522, + 0.0012500348, + 0.012895096, + 0.048027653, + 0.11171363, + 0.12789829, + 0.07934432, + 0.02829026, + 0.0, + 0.0, + 0.0, + 0.00078949565, + 0.0053290958, + 0.020526888, + 0.049014524, + 0.0643439, + 0.039869532, 0.015132001 ] }, diff --git a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json index bfe5cddec..489bd15b8 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json +++ b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json @@ -1,1349 +1,5258 @@ { - "description": "images with different subjects", - "createdAt": "2023-11-21T14:25:44.263379Z", - "id": "608yinvr", - "document": { - "modifiedTime": "1952-12-18T13:47:18Z", - "display": { - "id": "608yinvr", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different subjects", + "createdAt" : "2024-11-14T14:37:56.556502Z", + "id" : "dytyeook", + "document" : { + "modifiedTime" : "1982-02-02T08:05:47Z", + "display" : { + "id" : "dytyeook", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ETr.jpg/info.json", - "credit": "Credit line: AjNHt0QDL", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ETr.jpg/info.json", - "credit": "Credit line: AjNHt0QDL", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#30C009", - "source": { - "id": "rpdwpyvz", - "title": "title-BYiZh37YMK", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#D51DA1", + "source" : { + "id" : "bx1r3hyz", + "title" : "title-28Q4nQtftL", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ { - "id": "subject1", - "label": "Simple screwdrivers", - "concepts": [], - "type": "Subject" + "id" : "subject1", + "label" : "Simple screwdrivers", + "concepts" : [ + ], + "type" : "Subject" } ], - "type": "Work" + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "608yinvr", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "rpdwpyvz", - "sourceIdentifier.value": "DxX9mIXAKE", - "identifiers.value": ["DxX9mIXAKE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-BYiZh37YMK" + "query" : { + "id" : "dytyeook", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "bx1r3hyz", + "sourceIdentifier.value" : "Sg4Me0dEc0", + "identifiers.value" : [ + "Sg4Me0dEc0" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-28Q4nQtftL" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": ["Simple screwdrivers"], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - -0.004350201, -0.011643461, -0.010997401, 0.021504398, -0.02149079, - 0.027735826, 0.0054272553, 0.012432983, -0.0025958922, -0.01476157, - -2.8263582e-4, 1.6141393e-4, -0.003151868, 0.0074921786, 0.012951263, - 0.010854736, -0.020012418, 0.044675615, -0.020881318, -0.012011248, - 0.008942044, -0.016310727, 0.0017843435, 0.010171161, 0.0060890373, - -0.002097613, -1.0043995e-4, 0.004581932, 0.0037692043, -0.024462312, - -0.014105187, 0.0023453445, 0.011856809, 0.0040644947, -0.019753613, - 0.0011032047, -0.011538441, -0.0074694804, -0.020530935, 0.007018371, - 0.014684938, 0.0058073173, -0.0093897, 0.009712697, 0.009627512, - 0.0130315805, -0.007163549, -0.003116234, 0.008445029, 0.014954117, - 0.0041230186, -0.01839865, 0.01430918, -0.013403264, -0.0116350595, - -0.0051548076, -5.230028e-4, 0.006784997, 0.021682203, 0.002560625, - -0.0049763876, 0.0056266175, -0.004251135, -0.0030699975, 0.0024634204, - -0.019901562, -0.034769867, 0.011831057, -0.0022113437, 0.037878428, - -0.02326557, 0.03233683, 0.018312076, 0.005723853, 0.019028472, - 0.0015878801, 0.00522443, -0.003580464, -0.0011976947, -0.005282396, - -0.010592613, -0.0051710554, -0.019655216, 0.016403122, 0.026577214, - -0.0026993556, -0.017453834, 0.007533179, 0.016582439, -0.0039957403, - -0.00207791, 0.0055889515, -0.0058094026, -0.010879206, 0.032956503, - 0.0049890964, -0.0314646, 0.008375174, 0.021580651, -0.012605997, - 0.018697072, 0.01074899, 0.007223679, 0.010636779, 0.011338486, - -0.01917284, -0.011144634, -0.0027775844, 0.022611907, -0.0074874354, - 0.0067908186, 0.00836772, 0.0069526546, -0.016461566, 0.013633235, - -0.0034016776, -0.024309453, -0.0020962136, -0.014808216, -0.0030167869, - 0.021356495, -0.027366238, -0.022309568, -0.011240202, 0.008830273, - 0.0018068947, -0.008613928, 0.023720413, -6.034781e-4, 0.009268815, - -6.089058e-4, 0.025352638, -0.007239451, -8.3447545e-4, 0.0265223, - -0.009786913, -0.025725478, -0.023213558, -0.002281985, 0.0066034016, - 0.0030506456, 0.013227017, -0.0093720285, -0.004638937, -0.0059242095, - -0.008909663, -0.0031064954, -0.0011851756, -0.029081482, -0.005359462, - 0.028646862, -0.0127313705, 0.030131133, -0.002299436, -0.004726511, - 0.019718552, 0.0016456912, -0.026234204, -0.0025010281, 0.0021916653, - -0.03165159, 8.850165e-4, -0.0019138481, -0.029399924, 0.007602175, - 0.005684031, -0.005198431, -0.012742826, 5.989203e-4, 0.019979164, - 0.015715592, -0.010587435, -0.02036382, 0.0026740185, 0.014893078, - 0.023786468, -0.005947502, -0.0023954231, -0.006591812, 0.0066170255, - -0.023395877, 0.0025581864, 0.03421069, 0.012777625, -0.021816183, - -0.009481953, -0.013590932, -0.01956406, -0.009031382, 5.056285e-4, - 0.0083242, -0.0071385326, -0.0047353664, 0.0046377694, 0.017628608, - 0.032237016, -0.016701693, -0.0064859474, -0.026590526, 0.015517807, - -0.021875262, -0.016005076, -0.010257091, -0.009024922, 0.0033494679, - -0.030479968, -0.016615188, -0.01862124, 0.00941933, 0.032320578, - 0.033163264, -0.005876037, 0.021575192, -0.0151959555, 0.0091095045, - 0.0032787367, -0.015870178, -0.013655661, -0.014348226, 0.00618508, - 0.023337193, 0.009781346, 0.008653013, -0.010676042, -0.01198468, - -0.0147528425, -0.012987462, -0.022319786, 0.007894706, 0.004863175, - -0.012061346, -0.011317489, 0.0040702433, -0.013624889, 0.009852707, - 0.004149253, -0.024276333, 0.019400682, 0.004196212, 0.009985964, - -0.02985371, -0.01719591, 0.0067230025, -0.032047536, -0.003586177, - 0.035387635, -0.010764479, 0.014166931, 0.03387821, -0.0051016496, - -0.014903612, 0.024510127, -0.03568082, 0.0033728129, 0.011668012, - -0.0042578345, -0.0013416554, -0.017933225, 0.004519809, 0.0041653295, - -0.0013056847, -2.4753236e-4, 0.023504442, -0.0032310477, -0.042059317, - -0.005886421, -0.0051520574, -0.002213854, -0.01539932, 0.017158281, - -0.012860032, 0.020017942, 0.0022395218, 0.0017264178, -0.010364806, - 0.010438086, -0.021984883, -0.0027161732, -0.011322421, -4.6456978e-4, - -0.0021868462, -0.02044256, -0.019664122, 0.0061490787, 0.014526224, - -0.01008854, -0.008006426, -0.009120702, -0.007946672, 0.016731305, - -0.0013842196, -0.010065313, -0.0050434573, -0.014895851, 0.026365498, - -0.0023638417, -0.004582802, -0.0026412841, 0.0072210208, -0.009349011, - -0.01891301, 0.0019794572, 0.004164547, -0.0012044095, 0.0013340145, - 0.001985908, 0.008108891, -0.011966654, -0.009368296, 0.022183737, - -0.005239004, -0.0031688449, 0.02396291, -0.015274015, -0.014806327, - -0.0011747464, 0.010766483, -0.020773325, -1.3614947e-4, 0.018125704, - 0.011131515, -0.012990781, -0.0033452234, 0.0065115383, -0.011023633, - -0.011163655, -0.0028547116, -0.007038376, -0.0016633337, -0.012265549, - 0.0010225144, 0.014115559, -0.01251942, 0.012910311, -0.016461752, - 0.0052256486, 0.023776889, 0.01939485, 0.004241957, 0.0019009879, - -0.024704773, 5.879149e-4, -0.022283874, 0.003896416, -0.008373788, - 0.007059501, -0.029359667, -0.014876196, 0.022912886, 0.034932476, - -0.028390864, -0.015396696, -0.006166227, -0.006075332, 3.2391766e-4, - -0.0107273245, 0.019499514, 0.006303719, 0.011398121, 0.04399292, - 0.024688968, -0.0050068507, -0.0058239615, 0.01875474, 0.017091515, - -0.037634067, -0.012434841, 0.004758876, -0.018396622, -0.0073834243, - -0.0050672013, -0.0100992005, -0.0355924, 0.012756004, -0.03226471, - -0.008756202, -0.015595786, -0.015326789, -9.962157e-4, -5.637982e-4, - 0.007151017, -0.02695326, 0.0031828007, -0.009026484, 0.012753586, - 0.023080125, -0.008014006, 0.016830593, 0.024930324, -0.016964948, - -0.00818113, 0.017159274, -0.012217064, -0.019635955, -0.010704977, - -3.9590208e-4, -0.0040894044, -0.0133500835, -0.02372586, 0.022446733, - -0.007766508, 0.0045126243, -0.0149997575, 0.011132066, -0.0031419508, - 0.017433142, -0.016226364, -0.005028235, -0.01406769, 0.009169481, - -0.035822827, 0.02140096, -0.021279871, -0.013429852, -1.6126735e-4, - -0.0151577955, 0.009965354, 0.0017882066, -0.006336095, 0.014144609, - -0.02480129, 0.012209634, 0.009505413, -0.013310886, -0.008927044, - -0.011571444, -0.035299413, 0.007722723, 3.610108e-4, -0.011095749, - 0.04678069, 0.01701228, 0.0033775032, 0.019686101, -0.009188173, - 0.015728584, -0.003059481, -0.0018244778, -0.018196393, -7.781268e-4, - -0.006747324, -0.014743567, -0.00636466, -0.017225564, -0.0030060995, - 0.006047619, 0.0056392327, -0.02967046, 0.0111536505, 0.0039155283, - -0.0027672732, -0.002052271, -0.013597695, -0.021058416, 5.3340936e-4, - -0.019131443, 0.0079423925, 8.689903e-4, 0.006781371, -0.02236354, - -0.0019427523, -0.010040133, 4.167065e-4, 0.02030737, 0.03125949, - 0.00784844, 0.0012443997, 0.043236878, -0.013052754, 0.020373963, - -0.007431366, -0.020042477, 0.011381842, -0.020866798, 0.017469607, - -0.015454895, -4.8817892e-4, 0.002614414, 6.2312227e-4, -0.0024769518, - 0.011634783, 0.011883917, -0.020294093, 0.009073467, 0.01641953, - -0.009218014, 8.219345e-4, 0.009012988, 0.006947192, 0.0034707647, - 1.4213579e-4, 0.01517274, 0.02474303, 7.7302847e-4, -0.0036804604, - 0.003985773, 0.016568422, -0.0024181288, 0.008704024, 0.03897555, - 0.0151751125, 0.0025522432, 0.012613896, 0.02366487, 0.003841758, - 0.022560634, -0.0023712309, 0.009771364, 0.005218236, 0.026539568, - -0.015063188, 0.03921027, -0.014455102, -0.016629145, 0.0015117098, - 0.0015890758, 0.010389858, -0.019216742, 0.004036431, 0.0052491333, - 9.69348e-5, -0.013828742, 0.0048979013, -0.018175049, -0.03606505, - 0.010259221, 2.1291188e-4, -0.022796381, -0.0108980425, -0.0014988331, - -0.022073189, -0.0045594038, -0.024524106, 0.016484238, 0.033604976, - -0.011650913, -0.016563348, 0.024990978, -0.02339849, -0.0068564215, - 0.020538213, -6.955007e-4, 0.009723533, -0.038296606, 0.025506096, - -0.013511397, 0.025807727, 0.01834206, -0.01565357, 0.0030535785, - 0.0015193907, -0.007804105, 0.013334521, 0.03859559, 0.001998788, - -0.030719483, 0.008402508, 0.001968213, 0.0024123532, 0.00672859, - 0.0021606542, -0.0029588635, -0.0041678683, 0.011242182, 0.018622015, - -0.008242721, -0.026629405, -4.3890922e-4, -0.0055705993, -4.962545e-4, - 0.023291439, -0.004669614, -0.016376011, 0.015748672, -0.021309998, - 0.02311114, 0.0039360477, -0.006249404, -0.0048394576, 0.02412737, - -0.016929591, 0.00335404, 0.012093937, 0.0015831935, 0.007508339, - -0.018516552, -0.031611945, 0.0018382506, -0.015086209, -0.007968335, - 0.02532145, -0.0021938488, -0.02411826, -0.02788604, 0.0040526846, - -0.0034094797, -0.018168109, 0.0041397614, 0.013875868, 0.019621158, - -0.0072839498, -0.032378078, 0.023100745, -0.013613297, -7.7319675e-4, - 0.00927588, -0.021662958, -0.013882811, -0.007103444, -0.027340597, - 0.01244295, 3.8125887e-4, 0.0071735345, -0.024894888, 0.014576346, - 2.471934e-4, 0.02401219, 0.05167911, 0.0040308023, -0.004166479, - 0.014883933, 0.014533095, 0.026425553, -0.015610622, -0.0023200638, - -0.011715061, -0.006786639, 0.017736409, -0.020658264, -0.019856347, - -0.010761915, 0.006300916, 0.010505695, 0.02926581, -0.017963028, - 0.0036997627, -0.006196111, -3.7302983e-5, 0.003198121, 0.029995544, - 0.018801138, 0.006077146, 0.018930255, -0.019164598, -0.004127742, - 0.01925273, 0.0023693533, 0.0033753905, 0.020732151, -0.0035489562, - 0.024869937, 0.010430702, -0.023188522, 0.0261384, -0.017940631, - -0.003677454, -0.011609192, -0.014342612, -3.3407804e-4, -0.017120758, - 0.007242145, -0.008082647, -0.020276602, -0.026732909, -0.018479891, - 0.015139318, -0.0056861923, 0.0016379036, 0.015791168, 0.0024084074, - 0.010254118, -0.021931048, 0.012626437, 0.0058630393, -0.0036061103, - -0.0016094117, 0.0038425545, 0.01601839, 0.029404217, 0.002990229, - 0.0013280065, -0.003293371, 0.007659829, 0.004949957, 6.5247953e-4, - 0.004993148, 0.014747705, 0.029234936, 0.008894166, 0.010836727, - 0.008398418, -0.007296054, -0.009316089, -1.263933e-5, -3.9874288e-4, - 0.034192596, -0.01578216, 0.022312196, -0.0054808073, -0.017472105, - 0.0025570553, 0.0027658555, -0.025739113, -0.0070487745, -0.013601634, - 0.010337974, 2.2500865e-4, 0.0015493656, -0.0036668626, 0.01875105, - -0.0029845978, 0.0216724, -0.005468412, -0.019390477, -0.011503011, - -0.013305793, 3.9157615e-4, -0.013063402, 0.01718793, 0.017103963, - -0.02958702, -0.028580854, 0.018445252, -0.010078911, 0.0075728297, - -0.023948634, 0.012606249, 0.008291025, 0.0106073655, -0.01391977, - -0.0046766815, 0.020023352, 4.5340175e-6, 0.002629222, 0.035838466, - 8.552426e-5, -0.03907911, 0.01091702, 0.013345369, 0.029736873, - -0.035626046, -0.007508635, -0.025004866, -0.017155, -0.011062282, - 0.0024560129, -9.969829e-4, 0.0220074, -0.014205596, 0.01395687, - 0.010863034, -1.4644306e-5, -0.024049934, -0.028702945, 0.013087991, - -6.3279714e-4, 0.019962411, 0.017626489, 0.0029594838, -0.0187516, - -0.003797625, 0.015547937, -0.011086193, 0.013797665, -0.0037898305, - 0.0036275024, 0.002381866, 8.731001e-4, -0.033413563, 0.027795393, - 0.013623089, -0.018046407, 0.030401181, -0.029031312, 0.0043312535, - -0.003630457, -0.01870582, -0.020074395, 0.003200972, -0.0069662235, - -0.0051737553, -0.001249667, -0.01365319, 0.0057509416, -0.0030068818, - 0.008314245, 0.007106804, -0.013367799, 0.005303724, 0.013619334, - 0.021608422, -0.013018853, 0.0140272165, -0.033591796, 0.020554794, - 0.015492199, -0.0040431917, 0.003795164, -0.009678133, 0.013508781, - -0.009563064, -0.01106359, 0.030999208, 0.02726415, 0.006424093, - 0.007494939, 0.011433404, -0.002046721, 0.0022999481, -0.017682157, - 0.012827162, 0.014867708, 0.009120241, -0.04305445, -0.0047173407, - 0.002754535, 0.0014557808, 0.018161975, -0.02737304, -0.012811251, - 0.004458289, 0.020302815, -0.02585795, 0.019856619, -0.0016598329, - 0.024844227, -0.017485993, -0.007263415, 0.010304506, -0.005485208, - -0.005127889, -0.01387725, 0.007870423, -0.035787396, 0.0011816882, - 0.0036520916, -0.02476586, -0.004512336, 0.016933728, -0.008586024, - 0.013858819, 0.01098288, -0.005993412, -0.0029157016, 0.027647499, - -0.01992105, -0.0077832593, 0.003628292, 0.0035049901, 0.010885214, - 0.014578687, 0.018978454, 0.028666807, -0.031949475, -0.016774768, - 0.004904543, 0.0032976668, -0.012861175, 5.266778e-6, 0.007930202, - 0.003275797, 0.0029270407, 0.0043797246, -0.0067698946, 0.014561849, - -0.003135473, 0.0029247547, 0.0031285866, 0.011900206, -0.01027751, - -0.006306081, 0.023332616, -0.0038995787, -0.0050585647, -0.009657265, - 0.020895949, -0.011595654, -0.00854046, -0.0408853, -0.004231767, - 3.017104e-4, -0.008784883, 0.014983686, 0.019777426, -0.011016259, - 0.0024852015, -0.01176554, -0.0024024372, 0.019797953, -0.022971192, - -0.006662032, 0.025496049, -0.016684318, 0.0051046903, -0.0020052842, - 0.013381325, 0.008381364, -0.0075031077, -0.010800712, -0.001523315, - -0.028797386, -0.00101893, -3.5358386e-4, 0.009529536, -0.012114073, - -0.009894672, 0.027860498, -0.0056657596, 0.0024453613, 0.0033410245, - 0.014756871, 0.0071202093, 0.015102972, -0.007552675, 0.0062604044, - -0.026676806, 0.01653025, -8.080377e-4, 0.011680303, 0.034463692, - 9.95789e-4, -0.01914633, -0.03602341, -0.0017887781, -0.010944005, - 0.007822902, -0.0062405504, -0.022320557, 0.008447511, 0.005275833, - 0.008138197, 0.004018441, 0.026718356, 0.007875319, -0.0039167944, - 0.0054280874, 0.0054616374, -0.00947967, -0.003941972, 0.006299746, - -0.038820107, -0.0076721385, 0.0017621373, 0.03436605, 0.01050311, - 0.014801128, 0.012034592, -0.010517861, -0.026816305, -1.1583602e-4, - -0.024634032, -0.0046802224, -0.0058536804, 0.020540603, -0.01992182, - 0.047819864, -0.01730625, 0.0026341078, 0.008477782, -0.015650036, - 0.0227444, 0.0036169991, 0.0047023874, 0.029610222, -1.240502e-4, - 0.010871213, -0.0070687807, -7.214668e-5, 0.003348717, 0.0067235017, - -0.0053262454, -3.4447774e-5, -6.165364e-4, -0.0092158895, - -0.0057170303, -0.016194, -0.004660085, 0.011033972, 0.0038952364, - -0.01072576, 0.02827647, -0.0068043703, 0.007646321, 0.050820246, - -0.023107354, -0.008134327, 0.01869035, -0.028966293, -0.018418562, - 0.002553397, 0.012338336, 0.027598688, -0.0035691487, -0.010907506, - 0.0022462322, -0.021315273, -0.008707147, 0.0025628526, 0.012043996, - 0.0011667898, 0.0088465735, -0.03642584, 0.0027400218, -0.012592863, - -0.0029024128, 0.004729115, -0.029625753, -0.032027088, -0.0028364942, - 0.0058553503, 6.1086925e-5, 0.0085301185, 0.007913173, 0.014714232, - 0.033053838, 0.005767134, -0.017798344, -0.0013495407, 0.011582109, - -0.0013757171, -0.016809624, 0.024990022, -0.010465435, 0.015607261, - -0.005456337, -0.0010488568, -6.642625e-4, -0.009505649, -0.005860441, - 0.012371991, -0.014480091, 0.018794084, -0.02099778, -0.034972623, - 0.011956887, -0.01282268, 0.010893319, -0.016188778, 0.010356382, - -0.0066661183, 0.010378349, -0.020452254, 0.0071178228, 0.012799031, - -0.0019145499, -0.01804808, -0.028301224, 0.0029123442, -0.025997266, - 0.0043326765, 0.037366048, 0.024088006, -0.008148545, 0.025770035, - -0.0025409297, -0.0145417, 0.0027289945, 0.008489871, 0.008447996, - 0.009021652, -0.015048622, 0.019626815, 0.01677053, 0.00413191, - -0.016347425, -0.024702927, 0.009058837, 0.02687437, 0.0030953372, - -0.007525813, -0.009714478, -0.021794522, 0.009197559, -0.031613227, - -0.022366015, -0.016633268, -0.015998397, 0.009880981, 8.333894e-4, - -0.0046641473, -0.043099336, 0.0064388667, -0.026624773, -0.025775827, - 0.017221497, -0.020535532, 0.023729252, -0.021610893, -0.007650516, - 0.0020730614, -0.010693699, 0.006965503, -0.029777901, -0.0167438, - 2.8080516e-4, 0.033746853, -0.024117282, 0.010415061, 0.009603883, - 0.021786371, 0.008570007, -0.004933108, -0.0067894068, 0.016951181, - -0.0028617326, -0.0031100295, -0.0045319498, -0.0018499402, - -0.001631667, 0.01803149, 0.027287025, -0.003899613, 8.5647905e-4, - 0.005636414, -0.022686407, 0.01296102, 0.017484775, -0.0049994607, - -0.017287787, 0.013835024, 0.012431978, -0.004461254, -0.01650235, - 0.012801432, -0.009048836, 0.01658822, 0.029193783, 0.003359699, - 0.019549988, -0.026575726, 0.0020436216, -0.0021820157, -0.008818715, - -0.007818892, -0.023136579, -0.006181421, 0.01942394, 0.018107785, - 0.003312634, -0.040407356, -0.005759084, -0.021400858, 0.043740682, - -0.004440417, -0.010270538, 0.040728487, -0.009491048, -0.012287843, - 0.0024349834, 0.004030331, 0.0019767813, 0.025557993, -0.020042542, - 0.0128253875, -0.004478666, 0.023690823, 0.0048118965, -0.008419372, - -0.025490353, 0.004344382, 0.027494378, -0.016994204, -0.0052481117, - 0.017616127, 0.02330004, 0.009473882, -0.0077574695, 0.0053022425, - -0.0019525577, -0.034075752, -0.008839393, 0.012107775, -0.010575447, - 0.022438254, -0.0013582528, 0.002255239, 0.00140188, -0.008200544, - 0.011938863, 0.013409782, 0.010492062, 0.004047524, 0.019289259, - -0.014050148, -0.003596336, -0.009664901, 0.011458366, -1.06636595e-4, - -0.02493397, -0.021088302, 0.010169315, 0.017869849, -0.028527506, - -0.02199564, -0.014161703, -0.001596954, -0.024060255, -0.0026255352, - -0.0046461853, 0.014910407, 0.006584715, 0.0061422475, 0.0125099225, - -0.009520259, 0.0012473776, -0.029599724, 0.0018783365, -0.01984583, - 0.010127701, -0.01383667, -0.032864325, -0.021053348, -0.004291089, - 0.016898347, 0.014204092, 0.016821606, 0.025371745, -0.014505564, - -0.002218136, -0.023381792, 0.0076149157, -0.023124998, -0.011520184, - 0.012024286, 0.01294153, -0.024751086, -0.032261938, -0.013667514, - 0.008321759, 0.021869525, 0.019677041, 0.017015772, 0.018660618, - -0.029199628, -0.0035193386, 2.0743445e-4, 0.028836064, 0.012256807, - 0.016697787, -0.018836224, -0.027779853, -0.0028052705, 0.021704769, - -0.009586202, -0.001091031, -0.0066199047, 0.015795585, 0.011090316, - 0.012301204, -0.003334391, -0.026949456, 0.0032141635, 0.02425863, - -0.0054252357, -0.008469241, 0.026815813, 0.03484281, 0.0020081804, - 0.010592738, -0.033614445, 0.0035844287, -0.017515996, -0.010200425, - 0.019531585, -0.008957017, 0.022826944, -0.016284062, -0.0033723142, - 0.014190504, 0.0014796236, -0.006053562, 0.012584597, 0.0098634735, - 0.012013129, -0.0086256815, 0.019388178, 0.0038196796, -0.014593987, - 0.002311067, 0.0438367, 0.009422583, 0.024890363, -0.011445292, - -0.011147802, -0.002595733, -0.009081976, -0.005088022, 0.019540153, - -0.024591766, -0.028613191, 0.0056014704, 0.010433419, -0.002969339, - 0.0113589605, 3.4956922e-4, 0.0090898415, 0.017241355, -0.0067702755, - -3.2470791e-4, -0.020323958, -0.011532039, 0.023494033, 0.0024438882, - -0.006761661, -0.010077247, 0.018035138, 4.1328842e-4, 0.0071854223, - 0.005032354, -0.0028615291, 9.1682025e-4, -0.011198295, 0.006552749, - 0.006740019, -0.0071364273, 0.008949916, 0.0058355965, -0.0066413563, - -9.1970724e-4, -0.0030725922, -4.2849683e-4, -0.00781199, -0.018463721, - 0.0030298308, 0.004161347, 0.0017793562, -8.509245e-4, 0.033957206, - 0.022067022, -0.0069165146, 0.0036064363, 8.877294e-4, -0.0037823734, - 0.0075843935, -0.011709534, -0.022424955, -0.020198684, -0.021072224, - -4.039932e-4, -0.01016509, 0.012305178, 0.024845604, 0.022263056, - -0.01632004, -0.0016281392, 0.018310526, 5.2861367e-5, -0.023361726, - -0.044978943, 0.031443145, -0.019236613, 8.8134554e-4, 0.0029545953, - -0.009003886, -0.004633307, -0.023613088, -0.014317759, 0.018135717, - -0.021439303, -0.014596476, 0.03923728, -0.006403837, -0.006491521, - 0.0016773705, -0.013498322, 0.044575784, 0.014445481, 0.008187603, - -0.016514324, 0.007921382, -0.014846491, -0.020566601, 0.009461259, - 0.0055395016, 0.0072412034, -0.011927006, -7.6617795e-4, -0.014920996, - -0.01207733, 0.007440912, 0.0027452642, 0.00479402, -0.047903083, - -0.024501769, 0.002448688, 0.0027722092, -0.01378929, 0.020339882, - 0.008459695, 0.017068632, -0.0029388447, -0.0015697074, -0.02777772, - 0.027014287, -0.009015346, -0.018360209, 0.019099308, -0.02573178, - 0.031774458, 0.0014779255, -0.022650307, 0.0100981975, -0.0025143812, - 0.019020988, 0.012860984, -0.018012995, 0.007457583, 0.013879134, - 0.0031704567, -0.004782756, 0.016806377, 0.020091983, -0.022321558, - -0.0038930422, 0.0038629922, -0.0057056234, 0.0094698155, -0.019579988, - -0.014555004, 0.008572202, -0.021833073, -0.006187369, 0.004469455, - -0.021291757, -0.008487213, -0.018792571, 0.018074742, 7.997197e-4, - -3.2349338e-4, 0.009374244, -0.010879869, -0.008789038, -0.005729614, - 0.013351516, -0.013067814, 0.019809252, 0.014435729, 0.009916534, - -0.007375823, 0.009151159, -0.010702342, 0.0032112752, -0.010494281, - -0.0019602794, -0.022180332, -7.623525e-4, -0.009220285, 0.011885241, - 0.0023887772, -0.026685651, -0.0020444342, 0.010526521, -0.024234658, - -0.017235, 0.0035503353, 0.0061471043, 0.01450762, -0.0042199986, - 0.0032456024, -0.007177685, 0.02163615, -0.014829979, 0.016169636, - 0.008390684, 0.026059926, 0.023984622, -0.010890745, -0.011747821, - 6.078488e-4, -0.006317013, 0.0065395315, -0.004617787, 0.02228766, - 0.009018279, -0.017622411, 0.026254112, 0.036589157, -0.002246723, - -0.020692252, 0.0076857693, -0.016734352, 0.010079637, 0.015141963, - 0.03161987, 0.0025905422, -0.0012919535, -9.840001e-5, 7.782911e-4, - -0.012628371, 0.015361375, 0.005193327, -0.0010473387, -0.0077159237, - -0.0113081625, -0.0020530792, 0.0012372858, 0.01857391, -8.6567906e-4, - 7.704819e-5, 3.9825728e-4, -0.005114465, 0.017085712, -0.011108249, - 0.01211404, -0.008472071, 0.010123476, -0.031729054, 0.016990412, - -0.006439289, 0.002208616, -0.036227856, -0.0270825, -0.018707514, - 0.009959581, 3.9553232e-4, 0.019886328, 0.004003259, -0.025395593, - 0.0034591097, -0.0017378954, 0.0036369108, 0.0016512845, 0.026804877, - 3.1919553e-4, 0.0029299667, -0.0025764368, 0.016186908, -0.0074675484, - 0.011481348, 0.008584555, -0.0050336327, 0.010125186, 0.036494825, - -1.716252e-4, 0.0055647236, -0.010435935, 0.013201758, 0.0049182298, - 0.009145617, 0.005269797, -0.02387335, -0.011515994, -0.01383952, - -0.03201176, 0.0035660216, -0.016395831, -0.010234921, 0.023285925, - 0.013229723, -0.0021063488, -0.006734733, 0.015233402, 0.0029623995, - -0.016695453, -0.004738595, 0.02028048, -0.008688962, -0.005001976, - -0.005935408, 0.0027151548, -0.0041192276, -0.013727763, -0.0029058245, - -0.01008655, 0.0141936755, 0.030268729, 0.009658672, -0.025376938, - 0.0060756444, -0.03230443, 0.015971975, -0.019631928, -0.0018895913, - 0.019996708, -0.011028779, -0.0075530447, 0.010193572, -0.010843262, - -0.03485851, 0.0032023615, 0.012104497, -0.020155665, -0.0052246805, - -0.013916045, 0.020001551, 0.0061001517, -0.0091163805, -0.017258298, - -0.008935386, 0.014078913, 0.042760152, -0.005083456, -0.0017723751, - -0.002386867, 0.005102961, 0.0029310975, -0.018183785, 0.030742215, - -0.014122567, 0.014720566, -0.008338641, -0.024953334, -0.011581932, - 0.0035069217, -0.00861613, 0.006980291, -0.022685094, 4.9427367e-4, - 0.015550082, -0.00499279, 0.0017230173, -0.0050399834, 0.0010713163, - 0.010124469, -0.019213913, 0.0124899, 0.0048062545, -0.0033545634, - -0.0052999584, 0.017601287, -0.010407817, -0.0066965036, -0.020881625, - 0.02122741, 0.0077836253, 0.0026149282, 0.0035898457, -0.018241944, - 0.028602356, 0.015541826, -0.013706454, -0.014081341, -0.015279216, - 0.02762561, 0.037179586, -0.008617583, 0.020117734, 0.0023758302, - 0.017041562, 0.033120688, 0.008302638, -0.002433324, 0.010153967, - -0.0293748, 0.029155372, -0.009189723, -0.0052294917, -0.016163241, - -0.0025164953, 0.002214925, -0.004361156, -0.01501664, -0.0052255034, - -0.022967068, 0.013772083, 0.015939016, -0.025443735, -0.0115380455, - -0.00876742, 0.008466375, -0.0150812995, -0.0069422466, 0.014471815, - -0.0147812385, 0.0055592894, -0.006375449, -0.0227752, 0.014496606, - 0.008208535, 0.011013248, 0.01889408, 0.006185328, -0.0059677223, - -0.011083127, 0.010715757, -0.006731055, -0.030694926, 0.011725233, - -0.0043753823, -0.011449108, -0.043802846, -0.007990778, 0.0052098087, - -0.0011886896, 0.00374079, -0.020293746, -0.0015482598, 0.0037727503, - -0.0013715501, 0.015835773, 0.0346761, 0.0026520768, 0.021784876, - 0.01374986, 0.030178806, 0.0103263, 0.0052104, 0.0041091917, - -1.9785958e-4, 0.0059214905, 0.0048423302, -0.01045177, 0.015567995, - -0.010941492, -0.011281938, 0.02796006, -6.5129704e-4, 0.017297817, - -0.021074118, -0.0016169691, -0.025667906, 0.017552707, 0.014558788, - -0.016416555, 0.012819982, 0.02081304, 0.0034923765, 0.008123014, - 0.011212276, -0.018544462, -0.018116916, -0.02583237, -0.0055931867, - 0.039047603, 0.017696427, 0.0034152195, -0.0041236295, -0.01882048, - -0.016281532, 0.0049628573, 0.0018850287, -0.012803066, -0.009803813, - -0.0085126, -0.0078124925, 0.008048898, -0.015059645, 0.008670619, - -0.013756538, -0.014523241, 0.011066312, 0.011873223, 0.007343467, - -0.0031255728, -0.019740818, -0.014433287, -0.0052334196, -0.033531446, - 0.0025415244, 0.0019607586, -0.02153622, -0.009245492, -0.0026636517, - -0.025440866, -0.017861342, 0.012492964, -0.013999426, -0.018710509, - -0.033397943, -0.010892025, 0.0151627, -0.0042696754, -5.059486e-4, - -0.019788822, 0.019254839, -0.0037454923, -0.00494456, 0.026692424, - 0.024719927, -0.005573415, -0.01894176, 0.0050551095, -0.025107332, - 0.010051344, -0.0055518136, -0.010176294, -0.012183615, -0.022681352, - 0.010555677, -0.014267251, -0.017677402, 0.014197624, 0.012554692, - -0.0047062947, 0.0042961254, 0.016602112, 0.013211541, -0.028000308, - 0.0044435016, 6.250165e-4, -0.013325968, 0.024064867, -0.016786553, - -0.016249213, 0.008624722, -0.014209781, 0.018092427, 0.0028002828, - 0.01457835, -0.003429946, -0.021269733, -0.003898061, -0.023189755, - -0.006856261, 0.0073773293, 0.035353333, -0.016838102, -0.017044762, - 0.0055328985, -0.022559637, -0.0052728537, -0.011033677, 0.030684544, - -0.015023516, -0.005109721, -0.014599409, -0.018475365, -0.019518558, - -0.0037280363, 0.018814432, -0.02353375, 0.0031663214, 0.0033320815, - -2.349e-4, 0.005615292, -0.007019834, -0.0155555485, 0.011668358, - 0.013017777, 0.0022683165, -0.0025928088, 0.039838847, 0.005624967, - -0.011345714, 0.011133958, -9.471025e-4, 0.005332065, 0.012260031, - -0.007959106, 0.023036228, -0.012594542, -0.0071193683, 0.010684932, - -0.008751555, -0.0027772677, -0.010507612, 0.010885294, -0.022815451, - -0.028296756, -0.015944023, -0.004341559, -0.0020529453, -0.01847249, - -0.015094005, 0.010010169, -0.020931339, -0.009505924, -0.0047481493, - -0.012779738, -0.010564598, -0.02861731, -0.016697837, 0.0045073624, - 0.014428545, -0.017964305, -0.011528489, -0.018202875, 0.0042027584, - 0.008400541, -0.01565635, 0.0201645, 0.0151494, 0.005538009, - 0.009264382, -0.018182755, 4.6466384e-4, -0.0029213391, -0.008699604, - 0.006331214, 0.023077732, -0.02055423, -0.01719051, -0.0011839509, - 0.030499255, -0.017971748, -0.020942425, -0.0015537031, -0.0064624557, - 0.0056167473, 0.007403711, -3.115215e-4, -0.0020298364, 6.768343e-4, - -0.012804853, 0.01911146, 0.0042698914, -0.007548072, 0.01650105, - 0.017675892, 0.005025097, -0.0013619424, 0.0012608859, -0.006896268, - -0.006653232, 0.03022505, -0.0034740889, -0.010651279, -0.027106382, - 4.1629965e-4, 0.004050338, 0.015333058, 0.015399292, 0.0031693457, - -0.0018372568, -0.009224801, -0.016281892, 0.0021605927, -0.0052567003, - 0.0016850414, -0.026779015, 0.009716202, -0.004679958, -0.0052552097, - -0.014723335, 0.0061601596, 3.616038e-4, -0.018837525, -0.011861663, - -0.026207397, -0.01974399, -0.009915992, 0.0013153155, 0.03103297, - -0.004028275, -0.01863036, -0.02706506, 0.010587595, 0.01297024, - 0.0022702622, -0.0061181495, -3.1307686e-4, 0.00750028, 0.002075441, - -0.0013228394, 0.008761177, -0.00893668, 0.02952505, -0.013543166, - -8.742856e-4, -0.007059218, -0.013751559, -0.014862338, -0.014624132, - 0.029521454, 0.011984668, 0.010826709, -0.0076638726, -0.014281891, - -0.0037644035, -9.114217e-4, 0.0012950681, 0.020169524, -0.008523187, - -0.008926257, -0.02885828, -0.0024040004, -0.021852314, 0.0056809373, - 0.0056439126, 0.020634543, 0.0025773048, -0.014309354, -0.0068902555, - -0.04016222, 0.0060571805, 0.012398081, -0.0122984, 0.010668926, - -0.009077151, -0.0013667597, 0.017129714, -0.016211426, 0.002576757, - 0.010516473, -0.0033119149, 0.005524875, -0.014651933, 0.0055999663, - -0.009037873, -0.0010369254, -0.019400267, 0.013690354, 0.012432088, - 5.183281e-4, 0.018521326, -0.008873856, 0.0044944193, -0.019243523, - -0.032132152, -0.0045309, 0.013519674, -0.0098361345, -0.015678061, - -0.020293064, 0.018396325, -0.0034623167, -0.004085441, 0.00259233, - -0.0062210634, -0.0045400434, -0.016346214, -0.0072730277, - -0.0063717193, -0.038443666, 0.018562146, 0.012731801, -0.003517731, - -0.009207253, 0.008552201, 0.027242506, -0.0015870588, -0.012388313, - -0.005842892, -0.024323812, -9.943848e-4, 0.008196578, -4.6343575e-5, - 0.0025162275, 0.004622744, -0.013302888, -0.016481347, -0.019735465, - 0.030536672, 0.006700637, -0.0072887666, -2.57425e-4, -0.039233748, - -0.024226587, 0.0041504647, -0.0048132776, 0.028550766, -0.013900554, - 0.0037202789, 0.010574531, -0.0013973626, 0.018507948, 0.007207536, - -0.0073771775 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - 0.008637981, -0.0016242344, -0.0091823945, -0.001581641, -0.010903809, - 0.010680494, 0.012765017, -0.0063307732, 0.013337229, 0.013088066, - -0.0058975797, -7.4977666e-4, 0.003451637, 0.0066565783, 0.0015125984, - -0.0058802837, -0.009943952, 0.0064171418, 0.020561108, -0.016611136, - -0.008270891, 0.022997998, -0.011917587, 0.010683348, 0.008829693, - -0.015694134, 0.0031947682, 0.0030497613, 0.007194498, -0.018799577, - 0.012595102, -0.0016140584, -0.0010370809, 0.003369353, 9.3124696e-4, - 0.027700942, -0.0017090014, 0.024802182, 0.014481229, 5.268561e-4, - 0.024211248, -0.0038671596, 0.015311045, 0.015790148, 0.051420342, - -0.003601187, 0.040188264, 0.019864907, -0.003432396, 0.008576334, - -0.021099031, -0.003130354, -0.009183873, -0.001025756, 0.01027007, - 0.006769973, 0.0054983688, 0.004268723, -0.00947231, 0.035720475, - 0.010669424, -0.016886117, 0.018306332, 0.03743692, -0.02114051, - -0.007361337, 0.019132255, -0.02222948, -0.0020761827, 0.0026750674, - 0.0060621384, -0.024414632, -0.001076166, 0.0056109913, 0.0028601026, - -0.016553117, 0.0086636655, -0.00876428, 0.0052273506, 0.013234473, - -0.0019673675, 0.018080462, -0.009217397, 0.009190611, 0.015979836, - 7.749563e-4, 0.017907234, -0.0019237265, -0.03298646, 0.013706272, - -0.004071383, 0.017561506, 0.0020728018, -0.013807327, -0.008361468, - 0.007531458, 0.044310626, 0.02330723, -0.007975834, 0.0029793265, - 0.016949488, -0.04643224, -2.7994902e-4, -0.011556059, -0.0057237474, - 0.0143626025, 0.0038491227, -0.019955242, 0.0043205693, -0.013648849, - 0.0050325645, -0.01668097, 0.019834792, -0.008011203, -0.020665098, - -0.0012326284, -0.037592027, 0.00252708, -0.03220678, -0.016636059, - 0.01954503, -0.020741489, -0.012338677, 0.0022369379, 0.020246657, - 0.017700493, 0.013732703, 0.0064342446, 8.7868574e-4, 0.0061205938, - -0.009354049, 0.003368995, 0.010372954, 0.0105269775, -0.0036084251, - 0.00204192, -0.005752858, 0.01124391, 0.0040111006, 0.0057043354, - -0.007724477, -0.025364462, 0.016226323, 0.0029034107, -0.0029847512, - 0.012582869, -0.0045552906, -0.002892126, -0.03270263, 0.0041095605, - 9.842303e-4, 0.013972626, -0.0019435544, -0.0076677706, -0.016702535, - -0.0017697589, 0.0075510084, -0.008974703, 0.0043545933, 0.012760338, - -0.012741099, 0.009483005, -0.0348042, -0.019964326, -0.0065543046, - 0.015257932, -0.018029496, -0.013854899, 0.0032038419, 0.014508461, - -0.0200186, -0.016537577, 0.011422487, -0.0056550084, -7.8904355e-4, - -0.0044400273, 0.0062149144, 0.013849336, 0.023342256, -0.0036973534, - -0.0030152951, 0.010475745, 0.0015719901, 0.036316283, 0.00389547, - 0.01174546, 0.012306063, -0.002010063, 0.006792889, -0.029457888, - 0.024934942, 0.015589469, 0.012958981, 0.0123310005, -0.015264935, - -0.003887334, 0.0036284109, -0.0114853475, 0.02192817, 0.0022003825, - 0.020839162, 0.013391458, 0.01868428, -0.0027145473, -0.0075222957, - -0.0145079, 0.010525487, -0.0028314455, 0.008933952, 0.013042359, - 0.009799563, -0.032651767, -0.008139259, -0.010001873, 0.012128082, - 0.018451823, -0.0022404122, -0.015586737, 0.015189669, 0.0030072876, - 0.0016128555, -0.0016416999, -0.01698185, 0.01687016, 0.02510028, - -0.027098633, 0.048093945, 0.01166065, -0.0058197365, -0.005228932, - 0.025703479, -0.029648501, 0.0040736455, 0.025625033, 0.007674094, - -0.009631995, -0.0025765526, -0.008420424, 0.02112945, 0.0054871053, - -2.885521e-4, 0.013528257, -0.019263526, 0.029650541, -0.037770387, - 0.03110787, -0.0029560407, 0.024534628, -0.0050060507, -0.0125631755, - -0.0043292353, 0.015010105, 0.012910231, -0.047057692, -0.02115587, - 0.006658131, -0.021347886, -1.5311105e-4, -0.007903652, 0.012527385, - -0.012624118, 0.0092640165, 0.007091064, -0.01894523, -0.012376398, - 0.008491741, 0.0056978106, 0.016425323, 0.012117282, -0.011118428, - -0.00807938, -0.0049543814, -0.010044199, 0.008508183, 0.026711566, - -0.0146103585, -0.011533054, 0.0033367814, -0.03652593, 0.04984661, - 0.0067993877, 0.012072525, 0.0066329623, -0.006348071, 0.008182424, - 0.015994877, 0.008030473, 0.01719026, -0.017136497, -0.020668237, - 0.0021007073, 0.0016676694, -0.03168385, 0.019195346, 0.004826184, - 0.0245507, -0.024166128, -0.015234184, -0.0075094695, 0.024504915, - 0.015463065, -0.0047680633, 0.012606812, -0.018885974, -0.0044167843, - -0.024637107, 0.0014400163, -0.0069525675, 0.009633393, -0.013761122, - 6.245348e-4, 7.200688e-4, -0.006110455, 0.035696413, -0.0090659205, - 0.010002285, -0.010072808, -0.0033422345, -0.0068663433, 0.0011101274, - -0.008495513, 0.0049221255, 0.024844134, 0.016421271, 0.029848136, - 0.0075040897, 0.01068105, -0.02371761, 0.030524373, -0.011974213, - -0.007995327, 0.016471334, 0.00784999, -0.007461517, -0.0026552929, - -0.048027236, 0.009569933, 0.004388784, -0.00919398, 0.0034858326, - -0.008301629, -0.0059627825, 0.01272271, -0.006490969, -0.032276165, - -0.014379073, 0.01750243, 0.016173825, 0.0016065104, 0.013660164, - 0.027341787, 0.0040593254, 0.015749997, -0.001486082, -0.011021146, - 0.01988848, 0.012488306, 0.017884698, 0.0044783736, 0.0027527532, - 0.025562663, 0.0046726894, -0.0071625286, -0.009864813, -0.010686485, - -0.0062791817, 0.013013713, 0.0045238277, 0.00452325, 0.027358418, - 0.03343387, 0.0017558255, 0.008553585, -0.024611589, 5.838924e-4, - -0.013731249, 0.02548492, -0.022761002, -0.02608104, -0.0053934567, - 0.0018613328, 0.0127513595, -0.006360976, 9.8090335e-5, 0.0070608975, - 0.0149877975, 0.027277056, -0.0025262288, 0.027827855, -0.022469213, - -0.007462431, -0.03113839, 0.0056671174, 0.023991046, 0.0093710115, - -0.00316775, -0.025477672, -0.013363825, 0.005222689, 0.0064988616, - -0.0015978429, -0.008469249, 1.1826123e-4, -0.004381327, -0.017795237, - -0.0044420226, -1.2946762e-4, 0.010492589, -0.0152372485, -0.017665332, - -0.0043501607, -0.036094304, 0.0034762628, -0.027910655, 0.018886259, - -0.049664877, 0.023495356, -0.0031938686, 0.0013048938, -9.923584e-4, - -4.37955e-4, -7.4823946e-4, 0.00517848, -0.010659798, -0.011137791, - -0.007404472, 0.032380547, -0.01120824, -0.018168557, -0.038274184, - 7.308243e-4, 0.016434977, -0.004738306, 0.005620051, 0.021189122, - -0.019796496, 0.015716387, 0.03722333, 0.011219829, -0.02520802, - 0.014189927, 0.0013823427, 0.013012113, 0.01341291, -0.01617756, - 0.015776062, -0.02127677, -0.0034580831, -0.016885292, -0.020071259, - -0.029108008, -0.026444891, -0.02886459, -0.017609917, 0.01011598, - -0.024046073, -0.02688096, -0.0011761071, 0.017037202, 0.0019406381, - 0.025023766, -0.011594619, -0.01603968, 0.0024908395, 0.012693221, - 9.2344376e-4, -0.0011252408, -0.0010921223, -0.0097103845, -0.006187553, - 0.0014191364, -0.00367899, 0.012697424, 0.023134025, -0.01140486, - -0.0034797268, 0.0035043275, -0.023631142, 0.0050394065, 0.01726896, - 0.006533556, 0.01977407, -0.030652089, 0.02094565, 0.0036787079, - 0.01676978, -2.3790539e-4, 0.007036147, -0.005973275, 0.01737337, - -0.014565859, 0.005940706, 0.021838268, -0.020216491, 0.015729323, - 0.008454174, -0.00965573, -0.013335468, -0.025655773, 9.331562e-4, - -0.0051074303, 0.031900123, -0.0019074571, 0.008267652, -0.005667831, - 0.015147836, 0.0037857704, -0.0023526293, 0.00594199, -0.024479963, - -0.024054745, 8.9895225e-4, 0.006165903, -0.0044983006, -0.029758396, - -0.018240504, 0.012157683, -0.010882543, -0.0129244765, -0.014289197, - -0.033667684, 0.013795547, 0.032508098, 0.012804346, -0.0038504885, - -0.01638526, 0.020290168, 0.009017118, 0.013143741, -0.0030840707, - 0.0063489247, 0.002390172, 0.021746308, -0.013928273, -0.00352412, - -0.004846429, 0.023534808, -0.026688, 0.020445393, -0.008496835, - 0.013212955, -0.005598106, 5.36788e-4, 0.00964391, 0.010080236, - 0.016779283, -0.0115376925, 0.012358685, 0.009183243, 7.9895125e-4, - 0.0048018107, 0.006455413, -1.2263778e-4, 0.0071041384, -0.017834557, - -0.0069511705, 0.025073964, -0.0050973054, -0.041667696, 0.014540954, - 0.0057633677, -0.017141273, 0.024490327, 0.0035904134, 0.014701258, - -0.0024010157, 0.023489011, 0.011368332, -0.014894716, -0.03086565, - 0.0013872933, -0.0058065164, 0.0019102831, 0.013469331, -0.014823893, - 0.013129034, -0.0045608934, -0.008838136, -0.001027786, 0.01726692, - 0.014136916, 5.931097e-4, -0.017340058, 0.017312711, 0.02564807, - -0.022875253, -0.0072708647, -0.022530915, 0.02998723, -0.002754413, - -0.017129844, -0.011942995, 0.01085713, 0.014068996, -0.013465821, - 0.006233216, -0.04352883, 0.013567246, -0.017901657, -0.01064052, - -0.0016464452, 0.0048316955, 0.024255315, -0.01773208, 1.8482784e-5, - -0.02667536, -0.0024268338, 0.018612817, -0.0069730827, 0.008066586, - 0.030384626, 0.009624339, 0.03850769, -0.017232612, -0.0043247794, - -0.0045482125, -0.010496586, 0.0015508654, 0.01910222, -0.015437418, - -0.009806287, -0.007755802, -0.0014488846, -0.016855244, 0.0013880479, - -0.013992177, 0.0102671655, -0.0042559067, 0.009789534, 0.007924737, - -0.015084529, 0.022964377, 0.02447989, -0.0049364897, -9.3250634e-4, - -0.010581539, -0.025738519, -0.02894102, -0.01637572, 0.0017397229, - -0.009327612, -0.021414746, 0.004373293, -0.0016668015, 0.006844504, - -0.016840613, 0.02439822, -0.0073013753, -0.019025082, 0.0050456827, - 0.014685783, 0.0013762848, 0.0054222858, 0.022573957, -1.99297e-4, - 0.02150916, -0.02300606, -0.014695195, -0.017164465, -0.01438803, - 0.011131609, 0.0036153644, 0.010140491, 0.0074344217, 0.032221418, - 0.011705633, -0.007608502, 0.011303166, -0.005771787, -0.04007035, - -0.0031216764, 0.006848805, 0.004430107, -0.01990589, -0.0016877301, - -0.012427945, -0.0017227717, 0.0016088523, -0.011155676, -0.008232069, - -0.0060355924, 0.007468266, -0.0036591997, 0.0019015548, -0.0076050884, - -0.012111237, 0.026569225, -7.9373963e-4, 0.0046990463, 0.021566857, - -0.0032599384, 0.015173825, 0.006721955, -0.01799645, -0.0016220242, - 0.0028897498, -0.001435524, 0.0041264403, 0.004170168, 0.00112404, - 0.0023230661, -0.021452544, 0.010344436, 0.003673532, -0.0014450448, - 0.0075000785, -0.004864545, 0.0058969944, -0.0033764634, 0.025413677, - 0.008994594, 0.0067129303, 0.018424433, -0.012056621, 4.5050736e-4, - 0.0011384499, 7.114659e-5, 0.004414845, -0.0027941465, -0.012190783, - -0.015204429, 0.012714867, 0.02507657, -0.046972405, -0.012575381, - 0.01485742, -0.0010160261, -0.0017934636, 0.021981806, 0.01434158, - 0.011148216, 0.008655032, -0.002917879, 0.016557312, -0.0017782846, - 0.009406218, 0.0032292954, -0.0136784, 0.012467912, 0.0034027759, - 0.0033775447, -0.009626402, -0.019477012, -0.0077563715, -0.02159625, - 0.014691766, -0.0068174284, -0.04301325, -0.012862427, -0.00789001, - -0.0073855896, 0.008027082, -0.017108068, 0.0040779826, 0.0042288415, - -0.0032199402, -0.01713078, -1.4895813e-4, 0.0057492205, -9.078862e-4, - -0.005621331, 0.003112504, 9.559756e-4, -0.004387733, -0.026833268, - 0.012131787, -0.03570343, 2.6902583e-4, -0.0026181184, -0.010564963, - 0.0030721345, -0.017721906, -0.0063070874, -0.021904793, -0.025430668, - -0.005834675, 0.022502607, 0.0028740542, -0.017337894, 0.017931117, - 0.0025119614, 0.029145475, 0.002653285, 0.0020911342, 0.014717154, - -0.010406439, -3.4956908e-4, 0.0013491088, -0.014433147, -0.0045153196, - -0.011638172, 0.034028243, 0.009155539, 0.0028672235, -0.008671015, - 0.017882247, -8.11828e-4, -0.030493416, 0.0057480168, 0.015285718, - 2.9597266e-4, 0.009242849, -0.003509923, -0.009708435, -0.017854286, - 0.012909848, -0.0044122813, 0.02194249, -0.0107862195, 0.011784738, - 2.2018499e-4, -0.01596829, 0.022749797, 0.02430118, 0.010902429, - -0.00490513, 0.020696618, -0.030134456, -0.0044241454, 0.022200683, - -0.0012995509, -0.0077580926, -0.012849719, -3.5585562e-4, -8.402265e-4, - -0.01761456, -0.028932195, 0.003130541, -0.007154102, -0.015101536, - -0.01822557, 0.02235309, -0.0015256015, -0.030855374, 0.022292875, - -0.003973735, 0.018224603, 0.010595854, -0.007986368, -0.03536756, - -0.005418972, -0.053534236, 0.024280917, 0.032663427, -0.0074274116, - -0.015953977, 0.02806026, 0.0041375514, 0.023060562, 0.017424317, - 0.014589342, 0.0026018138, -0.0031569775, 0.009049402, -0.016992155, - -0.025976267, -0.0068200794, -0.012561768, -0.01026373, -2.5918774e-4, - -0.016187176, -0.013256563, 0.004592228, -0.018045425, 0.0018502076, - 0.009051206, -0.006915752, -0.019766849, -0.004879811, 0.0040066727, - 0.012449611, 0.008627797, 0.014878769, -0.014143339, 0.0058803186, - -0.011573835, -0.010978659, 0.015704963, 0.004608276, 0.002065628, - -0.014269037, -0.0030389095, 0.0110451775, -0.03564831, -0.030733949, - 0.010367846, 8.9852104e-4, 0.0059237573, -0.007812631, -0.016460445, - -0.003016886, -0.006683984, 0.008031853, -0.01585657, 0.0017239355, - -0.022662725, -0.018981079, 0.015227496, -0.01322077, -0.0023782998, - 0.0071109105, 0.0039451513, -0.003654882, -0.0056509175, 0.020841517, - 0.019835828, -0.018457595, 0.0075192745, 0.02259613, 0.005422083, - 0.008001376, 0.022625167, -0.008046139, 0.0011471321, -0.02567946, - 0.008891799, 0.013068161, -0.028267227, 0.0030266691, 0.016097896, - -0.009243787, 0.040976197, -0.0075889756, 0.011646971, 0.018690648, - 0.012058402, 0.0015014181, 0.008055211, -0.011462576, -0.0010726886, - 0.0018700025, 0.005566939, 0.023120252, -0.010060517, -0.0016846869, - 0.00348839, 0.002927826, 0.017377786, 0.0017337549, 0.0037216574, - -0.018031696, 0.00818006, -0.021480773, 0.008534492, -0.001187749, - 0.026294786, 0.003673576, 0.0027447182, 0.0010038783, 0.012326052, - -0.010338449, 0.030784322, 0.018743685, -0.025659313, 0.016141657, - -0.013549447, 0.006001194, -0.034382626, 2.8845706e-4, 0.029940298, - 0.011006182, 0.0051782276, 0.0017101325, 0.010852871, -3.3999374e-4, - -0.018868042, -0.019930424, -0.01061174, -0.003001232, 0.025732804, - 0.002318159, 0.004215528, -0.011561413, 0.01742456, -0.015335902, - -0.0074360487, -0.016804352, 0.0010410732, 0.010238668, -7.541964e-4, - 0.004704664, -4.9917994e-4, -0.0013665248, 0.006999565, 0.025713108, - -5.1034767e-5, -0.001251311, -0.009915848, 0.013152548, 0.012103004, - -0.0147010395, 0.01346049, 0.035114463, -0.006915988, 0.007994997, - 0.029312495, -0.037853986, -0.0070027215, 0.02420274, 0.012354668, - -0.016722314, 0.006889612, -0.016446715, -0.017564049, 0.034368463, - 0.014933028, -0.012940987, 0.0034368522, 0.038681805, -0.022927403, - -0.01945127, 0.022599498, -0.0067982944, -0.0063711377, -0.00855363, - 0.010559268, 0.010670322, -0.0071798377, -0.004460609, -0.019814938, - 0.012123425, 6.56901e-4, 0.016274495, 0.020128787, 0.0058417763, - 0.017935593, -0.012631093, -0.0028224038, -0.026074624, 0.0056673023, - 0.013167273, 0.021547116, -0.01848182, 0.0011504123, 0.0073571727, - -0.0046537886, -0.0019048871, 0.020366156, 0.021007458, -0.028278986, - -0.005216449, 0.0033037364, -0.016097492, -8.678008e-4, 0.023626903, - -0.013294787, -0.005378988, 0.0110813165, 0.010018711, 0.0015669313, - 0.003977856, -0.010466674, 0.02081401, -0.009495186, -0.02093332, - 0.012293844, 0.0059097284, 0.01747439, 0.0035242701, -0.0040041576, - 0.012315296, 0.0013714955, 0.0050300183, -0.028822025, -0.006353995, - 0.0024393238, -0.009987688, -0.019762082, 0.019768192, -0.01731961, - 0.022524066, 0.0012510167, 0.006391985, -0.036862038, -0.0020913184, - 0.015871217, -0.008147392, 0.007053915, -0.0042908783, 0.024108762, - -0.012828535, 0.0167957, -0.0040205177, 0.022237314, 0.025388902, - 0.002701754, 0.018072275, -0.010532878, -0.008427071, -0.0024338337, - -0.0030982783, -0.007843524, 0.001987174, 0.012237865, 7.1155744e-5, - 0.009110975, 0.0076659173, 0.0124648595, 0.007452765, -0.007104977, - 0.01877064, -0.0014899881, -0.011983701, -0.031818483, -0.015578032, - 0.0045619123, -0.003204122, 0.002944598, 0.028554277, -0.0011009842, - 0.03007005, -0.019923354, 0.0034643363, -0.032216754, 0.0022341704, - -0.030799389, -0.013788461, -0.007891747, -0.015291082, 0.00792256, - 0.01104561, 0.010885428, -0.0032968596, -0.013957245, -0.045759432, - -0.0068326285, -0.0013377587, -0.0104655, 0.008518962, 0.016436419, - 0.01957238, -0.004129726, -1.2284425e-5, 0.009008905, 0.017759047, - 0.026169073, -0.009473543, -0.0012815695, -0.007628786, -0.002893997, - -0.0043323687, 7.696154e-5, -0.009315252, 0.009606979, 0.02724797, - -0.03470406, 0.0032772517, 0.0150851, -0.0026631823, 0.0016407638, - 0.035737894, 0.01328604, 0.0014157247, -0.013610406, 0.010888831, - 0.014115378, 0.020588115, 0.01873077, -0.0032176757, 0.009779211, - -0.021526204, 0.02910412, 0.019483082, -0.022175213, 0.0028233246, - 0.027907075, 0.013224841, 0.021191081, -0.002911651, -0.030242462, - 0.004928702, 0.0021356454, -0.022438928, -0.0070416285, -0.00805972, - -0.00832767, 0.02131386, -0.012604699, -0.0032690403, 0.018375084, - 0.03194719, 0.033510383, 0.0076257256, -0.0042634774, 0.0066603073, - 0.011188434, 0.0015587197, 0.0060672276, 0.002421888, -0.007072222, - -0.0010428841, -0.011081777, -1.2323525e-4, -0.018666424, 0.011512465, - -0.0074049723, 0.018483186, -0.017941222, -0.012770128, -0.017083097, - 0.016717471, -0.03731647, 0.0056456816, -0.038100924, 0.027727192, - -0.0071954764, 0.017274393, -0.0142506445, 0.0023093268, -0.009691239, - 0.011078566, -0.002271628, -0.014873312, 0.0012291527, 0.00252601, - 0.035031892, -0.02190449, -0.0030508898, 0.0042621098, 0.018699815, - -0.010137427, 0.014124684, 0.007849229, 0.017500402, 0.0021824648, - -0.007235985, -0.010517921, 3.4307726e-4, -0.02014468, 0.04301278, - -0.010664519, -0.0050759856, 0.005815083, -0.004760595, -0.009539959, - -0.02991289, 0.014223187, -0.00745849, 0.011786558, -0.017530918, - -0.031783853, -0.0045692413, -0.008652839, -0.01773431, 0.01445786, - -0.0030387049, 0.01994154, 2.3194624e-4, -0.03187512, 7.3541695e-4, - -0.030336967, 0.013407525, -0.013395673, -0.0059822244, -0.013987223, - 0.010631173, -0.0162557, 0.010474144, 0.012662944, 0.012614353, - -0.003600679, -0.008615986, 0.010144089, 0.0021318574, 0.012378263, - -0.0062694494, 0.012783763, 0.008021146, -0.011121766, -0.0019129666, - -0.006452042, 0.010641073, 0.0052479445, -0.007039115, 0.023187703, - 0.023078041, -0.034392558, 0.016689831, -0.0046363496, -0.03367025, - -0.010768446, 0.0029166103, -0.010685241, -0.0111314915, 0.004355678, - -0.01564437, 0.02031828, -0.008265971, -0.001215488, -0.0053267404, - 0.002389552, -0.0127503425, -0.010203356, -0.019821303, 0.004381961, - 0.00843152, 0.025174357, 0.026878845, 0.003953471, 0.007315324, - 0.008790749, 9.5947174e-4, -0.003536172, -0.0058839014, -8.6329825e-4, - 0.019799965, -0.0062067383, 0.001713308, -0.008596368, 0.02563349, - -0.012798662, -0.005590895, 0.036489528, -0.008293767, -0.01289613, - 0.013745589, 0.009586415, -0.011960607, 0.021848517, 0.020881906, - 0.010469408, -0.013944197, 2.9984294e-4, 5.60715e-4, 0.0076062772, - 0.005725826, -0.009735763, 0.00667805, -0.033094153, -0.006016726, - -3.6712608e-4, -0.012025642, -0.018106626, -0.006562226, -0.014356099, - -0.0065409197, -0.004551315, 0.015087891, -0.0018274351, -0.009631403, - 0.016842052, -0.0285143, 0.02494619, 0.01833073, -0.004054758, - -0.01978354, 1.2788402e-4, -0.0026055695, 0.006411518, 0.014778575, - -0.010476343, 0.01232977, 0.019964717, -2.7168568e-4, 0.009164496, - 0.014879338, 6.0516165e-4, -0.003216675, -0.012815764, -0.012833022, - -0.0040639928, 0.018507732, -0.014761544, -0.0055761593, -0.015231096, - 0.0013439076, 0.014208955, 0.0074377996, 0.009789963, 0.029671613, - -0.0073534185, 0.01583997, -0.0058043515, 0.014108874, 0.02996449, - -0.025997961, -0.0043484922, 0.011633421, 0.0076105143, 0.0055783936, - -3.5292156e-5, -0.009654724, -0.0118669085, 0.0018354974, 0.012264726, - 0.0042863186, -0.0073325145, -0.0036764394, -6.2402023e-4, 0.008904456, - 0.016253954, 0.008394344, 0.00547015, -0.025877943, 0.018831545, - -0.014456147, 0.010751704, 0.026737591, 0.016965786, -0.012268498, - -0.009957921, 0.0074432287, -0.016955504, -0.0059265206, 0.011874715, - -0.009488727, -0.0092693055, -0.0022719551, 0.014659006, -0.03132044, - 0.011489647, -0.010111342, -0.02338839, 0.023385778, 0.008326358, - -0.008886899, 0.016096327, -0.0011594609, 0.00762186, -0.01056178, - -0.021857444, -4.3077554e-4, 0.033162337, 0.0058848546, -1.8207559e-4, - -0.011256451, 0.04512085, 0.017526427, -0.016141925, -0.0071185385, - 0.019273674, 0.002795219, -0.030218387, 0.007931868, 0.014273088, - 0.01218292, 0.0032073786, -0.015354977, -0.00571362, -0.024112767, - -0.01792196, 0.002632447, 0.013492273, 0.011165354, 0.012695337, - -0.003420613, 0.034859266, 0.008381595, 0.010073956, 0.011500097, - 3.934439e-4, 0.038911782, 0.007851486, -0.01166601, 0.013342079, - 0.02713658, -0.0021277384, 0.015353488, 0.0022521508, -0.01804863, - 0.00799736, -0.009610808, 0.027331898, 0.01751822, -0.03034978, - 0.0017454232, -1.0098139e-4, 0.021482544, -0.02047251, 0.022739192, - 9.533326e-4, -0.016610166, 0.0048400755, 0.017785078, -0.008264794, - -0.015004639, 0.010254433, -0.007118586, -0.009821134, -0.020864015, - -0.013664056, 0.011456898, 0.010149348, -0.0032104382, -0.0033757386, - 0.0035404935, -0.0021901645, -0.01890677, -0.009945925, -0.020419344, - 0.009314165, 0.008963297, 0.0070538423, -0.023342347, -0.009643272, - -0.008533606, -0.01619412, -0.017104518, 0.0037467275, -0.04688013, - -0.0015277289, -0.0075220997, 0.008123279, -0.0073811035, -0.024506342, - 0.023791948, 0.020251522, -0.0043091285, -0.0043608206, 0.0047634626, - -0.004293237, 0.008657749, 0.031887844, 0.008711642, -0.02648845, - -0.0075910296, 0.03227474, -0.03143636, 0.011454744, 0.021699412, - 0.009710998, 0.03497078, -0.008059601, -0.0029948836, 0.004518536, - -0.0020443408, 0.028418912, 0.020139648, -0.028125498, -0.012738415, - 0.0080954665, 0.007583514, -0.014259446, 0.008739611, 0.010599714, - -0.013209538, 0.007446749, -0.007606913, -0.010323829, -0.004018345, - 0.015330306, 0.015272657, -0.0057174726, 0.014940378, -0.009387794, - 0.012666167, -0.005407783, -0.01387723, 0.0061889454, 0.0071476214, - 0.0090543525, -0.0026034766, -0.01542716, 0.0377924, -0.008354058, - 0.025570707, -0.0055390764, 3.9673952e-4, 0.015176531, 0.019270606, - -0.0038645742, -0.011622615, 1.2707974e-4, -0.0045082276, -0.0038211243, - -0.015670232, 0.027607445, 8.263678e-4, 0.005682271, -0.021290936, - 0.019521879, 0.03586951, 0.009822232, 0.03423545, -0.0049745743, - -0.0036985453, 0.012829336, 0.006310181, -0.00991139, -0.010357376, - 0.017097626, 0.009380037, -0.003289035, 0.012203645, 0.022139039, - -0.015345478, -0.018574564, -0.02118105, -0.0059605422, -0.0130894715, - -0.026218895, 0.004941344, -0.0045280033, 0.019470025, 0.013027379, - 0.025345178, -6.320076e-4, 0.003117691, 0.008378296, 0.00908566, - -0.012002298, -0.005279881, -0.011295909, -0.027904684, 0.024233693, - -0.0064871497, 0.031350654, -0.0055478523, 0.013014131, 0.034237236, - -0.02048714, -0.009906409, 0.0040126084, -2.4284713e-4, 0.0027119422, - 0.022734424, 0.0096245445, 0.025013609, -0.021160344, 0.017799342, - 0.011964484, -0.030341625, 0.01705458, -0.023005256, -0.015576276, - -0.017997831, -0.014506638, 0.007890931, -0.010154579, 0.0013995788, - 0.00735454, -0.049575694, 0.014341378, 0.01758852, 0.008668414, - 0.011965527, 0.024998212, -0.018350588, 0.004880121, 0.011643815, - -0.0084493905, 0.030550187, -0.015626593, 0.0063821333, 0.0012728015, - 0.019048696, -0.013601486, 0.013982885, -0.013699, 0.013970814, - -0.021020042, 0.010027141, 0.0054440787, -0.0071321605, 0.002997268, - -0.012809032, -0.023640193, -0.018488806, 0.009942378, -0.009632979, - 0.0028225104, -0.019611837, 0.03948072, -0.006334449, 0.006167213, - 0.0010258715, 0.019592252, 0.0059711, 0.0019235855, -0.013318457, - -0.009299769, -0.012632502, 0.002481524, 0.005123404, 0.026085459, - -0.024903113, 0.012031173, -0.014570603, 8.3721767e-4, -0.010665727, - 0.008738413, -0.009432999, 0.00845447, 0.01075423, -0.009517024, - -9.625749e-4, -0.006159001, -0.0051174536, 0.0011475914, 0.0036241638, - 0.0061335443, 0.013902652, -0.004126973, -0.016040932, -0.030929882, - -0.0015318516, -0.0021787363, 0.015929654, -0.023485063, -0.010376398, - 0.019924495, -0.0027924287, 0.014574939, 0.024797564, -0.0012128638, - 0.018122466, 0.006569655, -0.0037462213, -0.019141702, -0.0035054146, - 0.014683147, 0.0056264563, 5.833719e-4, -0.013085648, 0.015306036, - -0.019590562, -0.015032176, 0.005352279, -0.014432441, 0.018063389, - -0.010979609, -0.02293559, -0.016620506, -0.012165349, 0.009573822, - 0.014580847, 6.727714e-4, 0.021255769, -0.009802521, 0.011690511, - -0.0066097993, 5.2170054e-4, 0.007686721, 0.007660688, -0.021796677, - -0.008786887, 0.020641312, 0.007336687, -0.017521119, -0.014228302, - 0.011346598, -0.030722147, -0.018277654, 0.03529363, -4.617936e-4, - -0.010349169, -0.0036556704, -0.013133913, -0.025293827, -0.020653587, - 0.002782101, -0.002688118, 0.004007638, -0.007595628, 0.0025679271, - -0.011843146, -0.017839847, 0.011679584, -0.014395403, 0.0072163353, - 0.006494147, 0.019309951, -0.027867524, 0.015876405, -0.016248053, - 0.013834111, 0.013734129, 0.012051411, -0.0021015585, -0.02477951, - -0.012549134, 0.0036983397, -0.014766869, -0.0010231669, -0.033634152, - 0.0073790704, 0.010007965, -0.0035896914, -0.005396825, -0.007249423, - 0.01518759, -0.035810813, 0.0031791786, 0.023504017, -0.01358668, - 0.008707517, -0.0090165865, 0.00178841, -0.008764549, 0.007367966, - -9.953007e-4, 0.013428582, -0.008084972, -0.020873902, -0.050149504, - -0.005747149, 0.01242649, -0.019378657, 0.006943723, 0.016269116, - -0.0033294193, 0.0177342, 0.02435146, -0.03564855, -0.0027781497, - 0.013225697, 0.008931557, 4.4717346e-4, -0.018804096, 0.00790864, - -0.018247232, -0.0047607645, 0.00122211, -0.016980914, -0.017783428, - -0.021418545, -0.012757607, -0.002661015, -0.04620855, 0.015402777, - 0.009586937, -0.01006904, -0.011715718, -0.010617128, 0.017369183, - 0.003531136, 0.0053986874, 0.0034348958, -0.003953393, 0.0070654787, - 0.020852668, 0.009585915, -0.01199096, 0.021597458, -0.022820767, - 0.026914459, 0.0062134126, -0.020339891, -0.012719695, 0.017035127, - 0.0076260124, 0.0074802684, 0.027412826, -0.013266076, 3.0958556e-4, - -0.018102232, 0.006829869, 0.024982022, -0.010628869, -1.1007607e-4, - -0.013585424, 0.0057515767, -0.032284275, 0.007917867, -0.00959997, - 0.018667825, -0.022326186, 0.02204609, 0.009209701, 4.0395028e-4, - 0.0101474505, 0.023280142, 0.014877855, 0.025317201, -0.008502382, - -0.010132125, 0.0044443677, 8.754153e-4, 0.0025787812, 0.0031870536, - -0.0033802441, -0.0029013706, -0.007943812, 0.009276441, 0.008780196, - 0.0044712387, 0.004388279, 6.458241e-4, 0.0012080979, 0.022038572, - 0.02393291, 0.035368484, 0.009862188, -0.01353645, -0.008897799, - -0.011321826, -0.020079348, -0.0301594, -0.0020500424, 0.026422597, - -0.007080785, 0.0025160634, -0.017060371, -0.008633855, 0.015605328, - -0.013199054, 0.011737606, -0.015152156, 2.8954138e-4, -0.02270943, - -0.027246745, 0.007792123, 1.7954806e-5, -0.012911891, 0.02333115, - 0.014043768, -0.007840143, 0.009458522, 0.023650283, 0.013496386, - 0.001986053, 0.0013445396, 0.018994873, -4.1316694e-4, -0.023112122, - -0.019903483, -0.0051174723, -0.0021233528, 0.012172152, 0.018922193, - 0.014806213, 0.011166319, 0.0056084073, 2.1715877e-4, -0.011946579, - 0.007650098, -9.3167747e-4, -0.008017594, 0.027883627, -0.02164905, - 0.008090816, -0.022001475, 0.023906158, 0.00722179, -0.008720391, - 0.031042093, -0.0056595984, 0.0058995783, 0.018925406, 0.007365846, - -0.023587568, -0.0089008575, -0.01637941, -0.019797143, -0.029931573, - -0.004658, -0.0055970945, 0.012453385, -0.021991381, 0.018188842, - -0.015077166, 0.008367611, 0.0036818753, -0.010886925, -0.011268396, - 0.012732971, -0.012368378, 1.41166e-4, -0.022324117, 0.019932225, - -0.011797129, 0.04907574, -0.0127208335, 0.004742147, -0.006170229, - 0.012170818, 0.016067775, -0.009562212, 0.00782791, -0.0067156474, - 0.0082605025, -0.010033042, -0.019539267, -0.006546534, -0.0034811713, - 0.002507068, -0.012772891, 0.023672754, -0.016341563, 0.0011574994, - 0.004273497, 0.020009521, -0.0016642208, -0.0016514338, 0.022130493, - 0.01470799, -0.024183013, 0.014060152, -0.00450081, 0.0039762724, - -6.347602e-4, -0.010839441, -0.0013100434, -0.016933495, -0.0016275434, - 0.009280185, 0.013496807, -0.0047308262, 0.0024717145, -0.0014665131, - 0.0038168028, 0.021801997, -0.009699744, 0.014872707, -0.012536342, - -0.019942736, 0.014408644, 0.012935307, -0.013066148, -0.031985406, - 0.012459625, -0.0016336393, -0.021881783, -0.032410786, 0.004809854, - -0.006981941, -0.026772358, 0.018810939, -0.009331072, -0.027825885, - 0.015703337, -0.014878869, 0.006838423, -0.010742906, 0.020175798, - -0.013935507, 0.004911611, 0.0027642546, -0.0014062226, -0.03319812, - -0.013152084, -0.008379218, -0.001148131, 0.011528207, 0.014036516, - -0.0063356906, -0.03420159, 0.002203757, 0.0042421897, 0.031613328, - -0.008375722, 0.013339069, -0.014394039, -0.0068949754, 0.0013355978, - 0.0133909155, -0.013107001, -0.012434688 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.0022314952, -0.025683083, 0.05555392, 0.010712366, 0.0020076483, - 0.046388708, -0.025197875, 0.0115290545, 0.01639724, 0.020074334, - -0.01750649, -0.018059308, -0.015571836, 0.027893765, 0.016239738, - -0.0019755745, -0.02323587, 0.013307176, -0.006678744, 0.034000587, - -0.014290823, 0.0019716606, -0.025862962, -0.0056472993, -0.015611141, - -0.012216736, -3.3351543e-4, 0.0064328094, 0.015731953, 0.013632437, - 0.005319851, -0.012275942, -3.8460388e-5, -0.04930899, 0.01943769, - 0.03506723, 0.0038932553, 0.08430539, 0.068930246, 0.0135983825, - 0.016210418, -0.0623133, 0.03242245, 0.012840114, 0.013255243, - 0.0049570543, 0.031884983, 0.0017209565, 0.012437886, -0.06520585, - -0.014945738, 0.01683568, -0.014587101, -0.007833306, -0.061948996, - 0.012987281, 0.028353892, 0.0507335, 0.023972642, 1.9090102e-4, - 0.00426895, 0.050727937, -0.006772818, -0.03733345, 0.016101336, - 0.014224458, 5.0783926e-4, -0.0013456877, -0.052579205, 0.09011197, - -0.01458242, -0.029821308, -0.04128937, 0.004252436, -6.169524e-4, - 0.067701794, -0.036880095, -0.046149023, -0.019026488, 0.023595273, - 0.0017588594, 0.014744593, 0.017948126, 0.015680699, -0.010346504, - -0.004805309, -0.047780007, 0.018578663, 0.02181602, 0.0045032217, - -0.011301923, 1.9109687e-4, 0.0020892858, -0.011066435, 3.7338928e-4, - -0.011920627, 0.006683757, 0.018874627, -0.019014072, 0.05152379, - -0.02898898, -0.010361504, -0.031462204, -6.45533e-4, -0.026902447, - 0.003757022, -0.026918884, -0.057671584, -0.0233301, -0.003876334, - 0.009259678, 0.0054583163, -0.022777108, 0.0311943, -0.034209583, - -0.053180967, 0.010549699, 0.0057779956, -0.019345418, 0.04515338, - -0.0075562, -0.033690203, 0.06264177, 0.021003151, -0.00674515, - -0.02553736, -0.00551749, -0.061744243, 0.04396993, 0.03877264, - 0.017564777, 0.040174786, 0.018813461, 0.04444652, 0.05750557, - 0.030575797, -0.012036867, 0.052167557, 0.0031475697, -0.07013019, - -0.005901042, 0.046617832, 0.040818747, -0.0027472458, -0.025314478, - 0.010152541, -0.0083127, 0.029437432, -0.01340091, 0.0048328503, - -0.030691095, -0.00817085, -0.0028254567, 0.062344346, 0.0038019766, - -0.030810624, 0.0049724597, -0.012547531, 0.01570644, 0.0017296381, - -0.005901016, 0.011557208, 0.04502177, -0.033050653, 0.02734909, - 0.011600147, -0.01693352, -0.018116392, 0.03131124, 0.041810345, - 0.05944223, 0.0098212585, -0.0042271237, 0.0038184912, -0.018913133, - -0.014921618, 0.034840334, -0.042374894, 0.01481392, -0.035450734, - 0.04943154, -0.014438294, -0.013415515, 0.044985898, 0.04317427, - -0.040677834, -0.0031104705, -0.007866006, -0.005585081, -0.032466862, - -0.0032415283, 0.036338456, 0.03837842, -0.013163533, -0.0383244, - -0.01963703, 0.02305197, 0.05119819, -0.044326726, -0.011383266, - -0.051113058, -0.0058513796, -0.0052729137, -0.006779795, 0.029774556, - -0.012937563, 0.052583583, -0.08264727, 0.023194242, 0.014971587, - 0.02626471, -0.020497618, 0.027830312, -0.036557037, -0.020444302, - -0.011643366, -0.016616408, -0.017376311, -0.02120314, 0.016765153, - 0.0030949584, 0.034372576, 0.0085474495, 0.01852872, -0.019315587, - -0.00185915, 0.029130133, 0.010801191, -0.027382465, -0.018266495, - 0.03291785, 0.03192895, 0.009013728, -0.015550365, 0.05105541, - 0.036025215, 0.03257825, 0.03296529, -0.041774787, -0.056345113, - 0.025917728, -0.005192082, 0.020383209, 0.05413721, -0.051341932, - 0.006717612, 0.027556038, -0.006786061, 0.001000069, 0.009068006, - -0.015933564, -0.006434718, 0.024085322, 0.04867112, -0.003775651, - -0.026986264, -0.037210055, -0.029067973, 0.055140983, -0.05246328, - 0.032038406, -2.846725e-4, -0.03472622, 0.028521555, 0.0297976, - 0.009987673, -0.020619996, -0.02604694, 0.009838765, -0.005152899, - -0.0055257576, -0.00157417, -0.009048899, -0.045813512, -0.045063034, - -0.023170467, 0.026421204, -0.006410642, -0.0074999304, -0.031100983, - -0.08120858, -0.0010744233, 0.005693712, 0.009496811, -0.0061433055, - 0.044327836, -0.04124062, 0.009862965, 0.041065928, 0.022541277, - -0.041704733, -0.020621935, -0.022122601, -0.03214293, -3.4445542e-4, - -0.010361805, 0.045675863, -0.042153295, -0.006234607, -1.6437228e-4, - 0.009512392, 0.06846954, -0.04168615, 0.0155731095, 0.023325808, - -0.006764573, 0.004516527, 0.031809643, 0.05944102, -0.012809101, - -0.024759764, 0.05398963, 0.023155058, 0.03413774, 0.007752786, - 0.014725202, 0.0068500484, 0.008939108, 0.027351903, 0.051059972, - -0.013663754, 0.043264616, -0.0013251975, 0.0098529225, 0.008050317, - 0.0066818497, 0.01607329, -0.013705646, -0.053153876, -0.035937253, - 0.021068493, -0.026152259, 0.05985038, -0.01840127, 0.026158512, - -4.33254e-4, -0.0026340026, -0.020080138, -0.027798755, 0.018209888, - -0.026442165, 0.008714322, 0.057750333, 0.04641612, -0.031612713, - 0.025182994, -0.068339996, -0.01981675, -0.005129849, 0.007428488, - 0.0010911945, 0.047754698, 0.03686485, -0.0369954, -0.035935204, - -0.01802258, -0.042145543, -0.025198827, -0.023194533, -0.009391964, - -0.023980282, -0.034849618, 0.045624197, -0.004048908, 0.0409469, - -0.015638873, 0.001344127, 0.014621636, -0.014672122, 0.047276188, - 0.043087844, -3.9739482e-4, -0.0055984934, -0.022272844, -0.048680075, - -0.05792439, 0.039616745, -0.035916947, 0.011209811, 0.038419932, - -0.014504838, -2.9156037e-4, 0.021300258, 0.014883744, 0.026669277, - -0.02017733, -0.01551918, -0.021454932, -0.01831269, -0.009566803, - 0.03828187, 1.6661015e-4, 0.0139531, 0.08684513, -0.03386594, - 0.023856413, -0.06124701, -0.0051642656, -0.03631145, 0.02052132, - -0.031788543, 0.061043072, -0.05093372, 0.036683477, 0.0272513, - 0.08921892, 0.035055097, -0.050469752, -5.0017235e-5, 0.003866161, - 0.022846675, -0.0010837447, -0.042272862, -0.005457539, 0.004821, - 0.04473592, 0.014501307, -0.012819886, 0.057322957, 0.004525712, - -0.045940697, -0.019871278, -0.0024941445, 0.013050491, -0.012887294, - -0.035660453, -0.024232874, 0.002057085, 0.043117132, 0.018729916, - -0.04003142, 0.008299564, -0.009012473, 0.024404652, 0.043051325, - -0.020780094, 0.013983016, -0.001081873, 0.023112953, -0.018277787, - -0.01832897, -0.08559668, -0.05331713, 0.044023227, -0.033533324, - -0.045824703, 0.0124268215, 0.03308927, -2.227812e-4, -0.014294597, - 0.017567681, -1.419558e-4, 0.024135645, 0.0038590082, -0.071250305, - -0.015984025, 0.0011192464, 0.010679698, -0.004021398, 0.016982405, - 0.010595365, -0.074057855, -0.034601986, 0.016880792, -0.02459222, - 0.06976364, -0.006210463, -0.012157633, 0.009950592, 0.005762342, - -0.042370055, -0.02165237, -0.04126778, 0.05038162, 0.02586151, - 0.011553623, 0.0018801196, 0.019249538, 0.0054714642, 0.013899644, - -0.054062255, -0.030993083, -0.03610864, -0.019484464, 0.050143506, - -0.005386437, -0.052052658, 0.012516895, -0.012180655, -0.014013445, - 0.03146423, 0.031141715, 6.145418e-4, 0.01900485, 0.0012409047, - -0.009629739, 0.0065814075, -5.5634783e-4, -0.038130283, 0.040422563, - 0.017416028, 0.0033136099, 0.014299004, -1.89997e-4, -0.02538281, - -0.019820428, 0.0010642887, 0.066218875, -0.0022171673, 0.047954824, - 0.020481033, 0.012055693, -0.036807295, 0.03787966, -0.0055447314, - 0.0037690802, -0.0016162529, -0.055314824, 0.08748799, 0.05918611, - 0.032537553, 0.010108491, -0.053359818, 0.011170016, 0.016468635, - -0.03792032, -0.027249781, 0.007383487, 0.015969547, 0.00987294, - -0.04115722, -0.026679214, -0.010308446, -0.0071786526, 0.05965742, - 0.05703123, -0.038748, -0.0204448, 0.070296556, 0.05868492, 0.023300199, - -0.03837193, 0.03579591, -0.021454697, 0.033515986, -0.009541708, - -0.0113301985, 0.026235778, -5.5135e-5, 0.010439364, 0.019631272, - -0.005473432, -0.0011951807, -0.028172804, -0.04376085, -0.0054594707, - -0.0068772426, -0.058106516, 0.0061715147, 0.002484639, -0.02251981, - 0.022117676, -0.0071205115, -0.012592807, 0.005851467, -0.0076510063, - 0.10148869, -0.015489814, -4.7929608e-4, 0.010484407, -2.3312899e-4, - 0.032039322, 0.043144982, 0.013563407, -0.017085992, -0.023959666, - 0.020985318, 0.023622205, 0.035841577, -0.008452545, -0.002137821, - 0.020148253, 0.010374019, -0.008807913, -0.05834555, -0.0025932787, - -0.030597536, -0.024593221, -0.011593471, -0.009772689, 0.010805896, - 0.027978772, 0.020370463, -0.005640259, 0.014761908, -0.008148259, - 0.022068448, -0.005000665, -0.011851129, -0.028174939, 0.0033840733, - 0.052971184, -0.053185467, -0.0049225665, -0.024396818, -0.013871691, - -0.037228666, 0.012114935, -0.005871629, 0.04857208, -0.02223611, - 0.02837936, -0.06448398, 0.011108823, -0.014910729, 0.013762726, - -0.021452064, -0.054112878, -0.0037305064, -0.010986509, -0.014497398, - 0.0022373353, -0.010885266, 0.008589629, -0.047112886, -0.02523659, - -0.008018062, -0.036979355, -0.02630499, -0.008721673, -0.027547054, - 0.018987145, 0.02035028, 0.0037254423, -0.07217449, -0.03525626, - 0.029977653, 0.0037255508, 0.020812621, 0.036395855, -0.027885849, - -0.048884735, -0.051921498, 0.009771165, -0.042080253, 0.012403181, - -0.027574042, -0.026510987, -0.0050536823, -0.014558673, -0.01335827, - -0.032478888, -0.008960327, 0.014547857, -0.03397228, -0.055429805, - 0.015257745, -0.068331815, -0.01188911, 0.040833995, 0.0087278485, - 0.014440063, -0.0045703454, 0.018185921, -0.0015497986, -0.023340154, - -0.04244116, -0.019842045, -0.05798028, -0.0150947, -0.006455728, - -0.029339379, -0.025151454, -0.0037939788, 0.09611958, -0.0743708, - -0.002263121, 0.040317457, 0.0016790999, -0.037122335, 0.02035431, - -0.024800679, 0.023094226, -0.0010644384, -0.015777392, -0.0012829849, - 0.007531099, 0.052491594, -0.0032950167, 0.005463851, -0.029946666, - 0.03211007, -0.018448807, 0.013482095, 0.05913324, 0.034720834, - 0.0165269, -0.015824929, 0.003243381, 0.0067461957, 0.038129456, - 0.028442968, -0.060363606, 0.006832957, -0.01195279, -0.016035892, - -0.048287056, 0.060486663, -0.008051492, 0.0011279343, -0.025585262, - -0.014668394, 0.021937616, -0.018645072, -0.0022229706, 0.04754014, - -0.0013641194, -0.0070268605, 0.033361804, -4.6218507e-4, -0.030591197, - 0.0041795783, 0.049922884, 0.013509134, 0.0643198, -0.018203242, - 0.021468487, -0.027269611, -0.01263536, -0.02186597, 0.02803278, - 0.007964171, -0.022253202, 0.024084825, -0.0071965014, -0.0024792412, - -0.04306426, 0.02514828, 0.04221155, 0.0111362925, -0.00991463, - -0.041030176, 0.017031027, 0.06259684, -0.007688765, -0.012914655, - -0.0058719423, 0.0042306213, -0.019468624, 0.014813733, 0.017732864, - -0.047680546, 0.005825373, -0.003962266, 0.011864346, -0.010684482, - 0.028507259, 0.0052760313, -0.006809827, 0.024480583, 0.012717321, - 0.031193642, 0.016898183, 0.045524083, 0.11359836, -0.019137478, - 0.06930805, 0.03863956, 0.011010835, 0.048903875, -0.050772488, - 0.061582476, 0.028390829, -0.016175054, 8.388571e-4, -0.05529577, - -0.0044916146, 0.017471856, 0.04262113, 0.019432394, -0.044706248, - 0.06609197, -0.03121458, -0.048860967, 0.01906581, -0.034500945, - -0.06250714, -0.01802733, 0.0057222242, 0.010490287, 0.029073585, - 0.06175565, 0.0016266686, -0.004002485, -0.018776735, -0.0037057148, - 0.014914082, 0.047869127, 0.035091598, 0.002188766, 0.03607256, - -0.036933314, 0.018210199, -0.035572313, -0.058155783, 0.018416397, - -0.060493298, 0.030940171, -0.049901202, -0.001471938, -0.029683093, - 0.017140228, -0.02203177, -0.008883629, -0.0028634397, -0.023292217, - -0.014150976, 0.017896226, -0.02188305, 0.036205247, -0.04153714, - -0.03643102, 0.012336247, -0.015592336, -0.01306921, -0.0070432336, - -0.00531397, 3.147419e-4, 0.0049995123, -0.044320587, 0.024759216, - -0.041566994, 0.0036198834, 0.051304746, -0.008094219, 0.062852286, - -0.017571395, 0.028617036, -0.023913411, 0.0073300623, 0.047524694, - 0.04480638, 0.011932955, 0.019755485, -0.057706703, -0.028864058, - 0.03308342, 0.0044453195, -0.0061557996, 0.037284438, -0.021363655, - -0.026804138, -0.022747835, 0.0055771195, -0.037489984, -0.04639866, - 0.025687821, 0.015087359, -0.07129968, -0.027796216, -0.060276303, - 0.009203976, -0.0069203936, -0.0064569237, 0.016667001, 0.056488834, - -0.034686312, 0.0016842631, 0.0014338332, 0.028914796, 0.01445218, - -0.017638981, -0.06315155, -0.0011671986, -0.010040273, 0.057830997, - 0.0014336434, -0.041948386, 0.018578231, 0.039931078, 0.06942473, - -0.043475665, -0.022075398, 0.012326833, -0.00745061, 0.016679093, - 0.05461726, -0.0149000045, -0.025042744, 0.0040752483, 0.08208899, - -0.006718525, 0.015919983, -0.023333658, -0.039341304, 0.0021009922, - -0.033108227, 0.020555764, -0.009747279, -0.0030714725, 0.026213665, - 0.0052631274, -0.040283553, -0.009917397, 0.019880997, -0.041258644, - 0.0013362, 0.033952016, -0.0442652, -0.02415794, -0.0149698965, - 0.041322872, -0.054136764, 0.01809458, -0.040428627, 0.040706016, - 0.015759766, -0.012971483, -8.6999417e-4, 0.0014612583, 0.008737243, - -0.0154079925, -0.03135714, -0.008907161, 0.03176361, 0.016712865, - -0.004247476, 0.006198571, 0.016145995, 0.034427583, 0.021631673, - 0.014020052, 0.03385143, -0.010845377, 0.029590782, -0.01339468, - 0.026831815, 0.008463635, 0.054959435, -0.045977414, 0.03323922, - -0.01545077, -0.029251374, -0.007194398, 0.057305634, 0.0150474375, - 0.009155651, -0.07562045, -0.03733136, -0.0011889612, -0.05050714, - -0.01084324, 0.045043536, 0.053818252, -0.07060356, -0.030730352, - 4.5835756e-4, -0.029901097, 0.006979169, -0.0025610114, 0.043527283, - -0.057359707, 0.011913435, 0.0068793176, 0.08863148, -0.035631243, - -0.007651189, -0.049869914, 0.019409318, -0.024586383, 0.03264151, - 0.012536643, 0.029668663, -0.05941306, -0.0073747523, 0.05149749, - 0.0064722556, -0.025967075, -0.01296664, 0.022072889, -0.04162682, - -0.021812275, 0.013854657, -0.028060082, -0.033770785, 0.033979107, - 0.03198882, -0.04704782, 0.031320047, 0.05400614, 0.01918891, - 0.021354942, -0.039054733, -0.046265088, -0.019479996, -0.032704536, - -0.013760163, -3.9098977e-5, -0.0017133914, -0.030721698, -0.02130619, - -0.030208968, 0.03331261, 0.0461481, 0.014604583, 0.05893228, - 0.014455354, -0.03758305, 0.04365629, 0.008634909, 0.0144816525, - -7.1641995e-4, -0.028296864, 0.011205683, -0.027879102, 0.0038886284, - 0.005418686, -0.02580169, 0.06313598, -0.050850794, 0.00715518, - 0.062745295, -0.04510611, -0.017080054 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + "Simple screwdrivers" + ], + "source.subjects.concepts.id" : [ + "subject1" + ], + "source.subjects.concepts.sourceIdentifier" : [ + "y8ZBmObzMW" + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.009368617, + 0.008767413, + -0.016105441, + -0.003536959, + 0.0021169395, + -0.0014742606, + 0.022209099, + 0.004476198, + 0.008137565, + -0.026801424, + 0.011913232, + -0.005724079, + -0.018505335, + -0.008594141, + 0.001872605, + 0.02065303, + -0.0056002345, + -0.03744484, + -0.015254566, + -0.008916462, + 0.012154958, + -0.0028017045, + -0.0036763148, + -0.024239613, + -0.006203466, + -0.002574724, + -0.013814389, + 0.03885838, + -0.008479116, + 0.0057767727, + 6.2836864E-4, + 0.014756778, + 0.006085274, + -0.027433744, + -0.0037157172, + 0.009897077, + -0.02826988, + 0.017205223, + -0.012693499, + 0.032384045, + -0.023531606, + 0.016251877, + -0.0017044817, + -0.015536312, + 5.8126327E-5, + 0.01210635, + 0.025218155, + -4.0280668E-4, + -0.023166878, + -0.015236839, + 0.010415202, + 0.022981914, + -0.012965811, + 0.01939187, + -0.022727204, + -0.017803552, + -0.03370368, + -0.033240974, + 0.015801232, + -0.0042504817, + -0.010812126, + 0.012912156, + -0.01645154, + 0.03251762, + 0.005512817, + 0.014277095, + 0.011901277, + -0.011745679, + -0.015632858, + 0.009450227, + 0.010999036, + -0.020828953, + 0.017516883, + -0.02962843, + -0.0030975419, + 0.024999024, + 3.0526225E-4, + 0.019013312, + -0.010615095, + -0.0062539633, + -0.015639545, + 0.011442421, + 0.0058456785, + 0.012978556, + -0.027346535, + 0.008943885, + 0.012836886, + -0.003897295, + -0.027172321, + -0.026673537, + 0.001277398, + 0.02035815, + 0.015098937, + -0.021561876, + 0.016586117, + 0.012998412, + -0.004328334, + 0.0043265573, + -0.008266596, + 0.016797697, + -0.021654148, + -0.0058574495, + -0.0060175615, + -0.004282209, + -0.013161759, + -0.010807863, + 0.0017614677, + 0.022098072, + 0.010989382, + -0.012751509, + -0.01023468, + -0.019388078, + -0.011221182, + -0.008278303, + -0.0064668013, + -0.002196736, + 0.003943976, + -0.021468509, + -0.006499494, + 1.5274981E-4, + 0.0109979985, + 0.019595072, + -0.0065981494, + 0.004566333, + -0.009826472, + 0.0046309703, + -0.008498307, + -0.0076941107, + -0.0060297702, + -0.019133743, + 0.018174263, + 0.021487297, + -0.01945093, + 0.03684007, + 0.0011156267, + 0.01961685, + -0.00763343, + 0.018453179, + 0.005062326, + -0.004865973, + -0.002159569, + 0.015860088, + 0.0060334424, + -0.0046253195, + -0.0062271776, + -0.028742196, + -0.012339568, + 0.002142713, + -0.0028332828, + -3.9428848E-4, + 0.002623837, + 4.818676E-4, + -0.005239444, + 0.0022533627, + 0.002478683, + 0.0064074816, + -0.019716552, + -0.013024562, + 0.023748433, + 0.0142972255, + -0.015070831, + -0.003989691, + -0.025753982, + -0.011220277, + -0.010271655, + 0.011359062, + 0.015740274, + -0.02833224, + -0.013135916, + 0.02710429, + -0.013577771, + 0.016997458, + -0.01135788, + 0.0053895097, + -0.00734137, + -0.007987785, + 0.0034857797, + -0.009573712, + 0.0134050455, + -0.0030799839, + -0.0016348866, + 0.021685004, + -0.015159163, + -0.023113701, + -0.013639109, + 0.014979999, + 0.00468044, + 0.021356229, + -0.015076917, + -0.015212042, + 0.005593101, + -0.0100421505, + -3.4701606E-4, + -0.0058458466, + -0.010938769, + 0.018843824, + -0.008986434, + 0.031005692, + 0.0023140109, + -0.011063272, + -0.009668299, + 0.004736303, + 0.0144313425, + -0.016403107, + -0.02180157, + -0.009618576, + -0.01671934, + -0.037228025, + -0.0031770573, + 0.008956451, + 0.01009574, + 0.0070171747, + 0.023511406, + 0.001205359, + -0.0064113853, + -0.0032344589, + -0.0061526396, + -0.013109718, + -0.012016222, + 7.527303E-4, + 0.03236892, + 0.035090726, + -3.6276772E-4, + -8.3735015E-4, + -0.005623287, + -0.01781205, + -0.0050109196, + -0.0012197756, + 0.049789682, + -0.0026267387, + 0.0100845145, + 0.0022964939, + -0.009191095, + -0.011546011, + 0.0026888957, + -0.0089100115, + 0.024216508, + -0.036175683, + 0.01182114, + -0.006468145, + -0.020581428, + 0.016558353, + -0.0030515143, + 0.007890178, + -0.0066280602, + 0.0015183849, + -0.028619792, + 0.0032670451, + -0.0031978553, + -0.028006542, + -0.010213269, + 0.0071842973, + -2.5344457E-4, + -0.0027657368, + -0.016537245, + -0.0141710425, + 0.0030439498, + -0.016033627, + -0.012902844, + -0.012049618, + -0.019268392, + 0.0030960874, + 0.019186877, + 0.014439174, + 0.034463882, + 0.01019237, + 0.01385731, + 0.0063147047, + 0.0048863096, + -4.5045692E-4, + -0.022105522, + 0.031225082, + -0.0039812843, + -0.006385284, + 0.030492455, + -0.029028222, + -0.008013052, + -0.005449155, + -0.015946608, + -0.022164067, + 0.026867356, + 0.022651704, + -0.028708939, + -0.014863802, + -0.0015473498, + -0.012849828, + -0.0073811375, + 0.004808994, + 0.0044854763, + -0.028453877, + 0.010341105, + -0.02107062, + 0.0010621065, + -0.0023077535, + -0.0011936255, + 0.01862889, + 0.0058468455, + -0.019306904, + 0.02620401, + -0.021727484, + 0.008524515, + -0.008907788, + -0.008130802, + -0.008130341, + 0.010034603, + 0.010291514, + -0.005114907, + -0.0043126806, + 0.017827226, + 0.0107200425, + 0.027495362, + -0.022404244, + -0.008603224, + 0.014494621, + 0.04235871, + -0.011923038, + -0.012110314, + -0.007576559, + 0.018433444, + 0.020085732, + -0.010175907, + 0.01618087, + -0.016854243, + -0.005951566, + -0.004837103, + 0.0019934392, + -0.025547663, + -0.0043966575, + 0.0032543524, + -0.0035734114, + 0.018844245, + -0.0083906045, + 0.016691795, + -0.022565113, + -0.025518592, + 0.018958325, + 0.017488522, + 6.2954286E-4, + -9.782522E-4, + -0.033985652, + 0.012828747, + -0.0049399105, + 0.0010382034, + -0.02764958, + 0.008196769, + -0.0061086905, + 0.007432643, + 0.023308132, + -0.015795028, + 5.757277E-4, + -0.011917488, + 0.01859315, + 0.0089790365, + 0.011118429, + -0.00442899, + -0.013500221, + 0.01180544, + 0.0040588253, + 0.0044515347, + -0.0099417195, + 0.002525495, + 0.009135048, + -0.019825188, + 0.020677526, + 0.004477574, + 0.0036539198, + 0.031986505, + -0.012096418, + -0.014266189, + -0.009685585, + -0.017017167, + 0.005275638, + -0.014240662, + -0.02506712, + 0.013696513, + -0.0028884013, + -0.013036906, + 0.013350991, + -0.013531009, + -0.0019988918, + -8.3377946E-4, + -0.0019402348, + 0.008390334, + 0.03102409, + 0.02696864, + -0.00221428, + -0.0061486233, + -0.012344863, + -0.02581794, + 0.020963704, + 0.0022166115, + -0.033194773, + 0.01655046, + 0.014005059, + 0.009586765, + 0.003524213, + 0.006353357, + -0.026477173, + 0.014532116, + -0.014731777, + -0.011553487, + 0.006569409, + -0.008798666, + 0.00831685, + 0.013895821, + 0.026445534, + -0.007662202, + -0.024591386, + -0.012115212, + 0.019341754, + -0.0025683234, + 0.0028037878, + 0.028545208, + 8.351491E-4, + 0.0022835408, + 0.0053223176, + 2.400548E-4, + -0.009756721, + -0.0025435865, + -0.0011490842, + -0.02383981, + 0.011612349, + -0.010173852, + 0.032279868, + 0.019336233, + 0.0026740993, + -0.0022700846, + 0.024571113, + 0.03949464, + 0.0302179, + -0.021982508, + 0.0030430483, + 0.00612377, + -0.013802653, + -0.015021866, + 4.1819562E-4, + -0.003327867, + 3.4161482E-4, + -0.016743595, + -0.0127273835, + -0.01693609, + -0.01738667, + -0.0149048865, + -0.005193534, + -0.013263615, + 0.028403185, + 0.023365224, + -0.0058167377, + 0.00617976, + -0.0010828865, + -0.0154547235, + 0.0045218524, + -0.020218052, + -0.0075637535, + 0.016008466, + 0.010108604, + -0.0010013282, + -0.010746891, + 0.010656279, + -0.0015795521, + -0.006595794, + -0.008314065, + 0.02901161, + 0.022303775, + -0.016392766, + 0.0012278744, + 0.009099951, + -0.01861403, + -0.032024182, + -0.011117834, + 0.0068440507, + -0.013289666, + -9.105515E-4, + 0.010377206, + 0.025212849, + -0.0026502819, + 0.010893415, + 0.020239243, + 0.016555736, + 0.019999623, + 0.025467064, + 0.009971105, + 0.018978437, + 0.020530637, + -0.02059145, + 0.027612545, + -0.012924766, + -0.0059711877, + 0.0027846473, + -0.007944684, + -0.01663813, + 0.012989915, + -0.04119882, + -0.006482642, + -0.011016394, + 0.0054497826, + 0.008026599, + -0.00894026, + 0.009343941, + -0.009351675, + 0.023286764, + 0.012288583, + -0.006873054, + -0.0086671645, + -0.0021634721, + -0.029740723, + -0.019438433, + 1.5102216E-4, + -0.015306251, + 1.0176171E-5, + 0.008338361, + 9.5612224E-4, + 0.008136736, + -0.029414035, + 0.026082907, + 0.019725293, + -0.014768094, + 0.015575844, + -0.029872023, + -0.010022559, + 0.0118407635, + 0.006106873, + -0.019853119, + 0.0010072506, + -0.003679833, + -0.033035774, + -0.0057112616, + 0.010017695, + -0.01988561, + -0.009046416, + 0.022059519, + 0.018939296, + 0.015430683, + -0.0048288945, + -0.00832424, + -0.006481354, + -0.0049691293, + 0.0014592361, + -6.715116E-4, + -0.0022947663, + 0.006765259, + 0.0020339442, + 0.0028645515, + 4.2753667E-4, + 0.036457494, + -0.011092526, + -0.023657577, + 0.005100463, + -0.023580553, + 0.0093256375, + 0.014413581, + -0.008048495, + 0.0059009455, + 0.019442583, + -0.026697164, + -0.0035118393, + -8.323673E-4, + -0.021271855, + -0.012575628, + -0.009037798, + 0.005400653, + -0.027569192, + 0.031112637, + -0.009891182, + 0.021927986, + 0.014657022, + 0.027478464, + -0.02906903, + 0.006378014, + -0.012000138, + -0.008421064, + -0.015060131, + 0.010585046, + 3.6304682E-5, + 0.0032231968, + -0.014601304, + -0.008765725, + -0.0025158683, + 0.030545922, + -0.0028542746, + -0.021867901, + 0.0022090732, + -0.0156139145, + -0.009388347, + 0.005796221, + 0.037942037, + 0.018934092, + -0.010473087, + 7.4324064E-4, + -0.0021317324, + 0.045483053, + 0.037394278, + -0.005661825, + 0.026436534, + -0.0105004115, + -0.018197602, + -0.005899617, + 0.021563381, + 0.006517746, + -0.02871872, + -0.0061378456, + 0.0030434937, + -0.016083535, + -0.007396627, + -0.009019459, + 0.009618287, + -0.01457451, + -0.0039500883, + -0.013271533, + -0.008386003, + 0.01206822, + 0.029990073, + 2.673174E-5, + -0.005411241, + -0.0020868802, + 0.020724826, + 0.026678978, + 0.009065275, + 0.018387033, + 0.018415986, + -4.5323328E-4, + -0.008478302, + 0.015886527, + 0.0030594491, + 0.006704957, + -0.00776361, + -0.018504092, + -0.016997928, + 0.015357148, + 1.8827844E-4, + -0.001935713, + -0.0084956, + 0.032251623, + -0.011680713, + 0.018282685, + 0.006578908, + 0.013205256, + -0.0092229275, + -0.012252447, + 0.005906477, + 0.010727678, + -0.0037165699, + 1.50471515E-5, + -0.0067373607, + 0.024404341, + -0.014668693, + -0.0055227964, + 0.052510172, + 0.007972281, + 0.0060667675, + -0.0025695898, + -0.016368274, + 0.026106695, + 0.017524768, + 0.004435893, + -0.002104732, + -0.015623742, + 0.051590968, + -0.0027835267, + 0.0015986278, + 0.0118996445, + 0.004635304, + 0.015845055, + 0.010875038, + 0.025490364, + 0.003523055, + 0.008672848, + -0.02640832, + -0.014332925, + 0.021485863, + 0.008552009, + 9.82698E-4, + -0.028826747, + -4.6520686E-4, + -0.0014119445, + 2.5613926E-4, + 0.002073959, + 0.0037647362, + -0.0074630566, + -0.047556717, + 3.1443476E-4, + 0.015172422, + -0.012804771, + -0.008439272, + 0.0014909152, + -0.005254953, + -0.0036744014, + -0.012373433, + -0.017034827, + -0.01292348, + 0.027339103, + 4.3237198E-4, + -0.0141188735, + 0.012170078, + 0.008337721, + 0.03121322, + -0.0020494598, + -0.036114953, + 0.008781981, + -0.008766101, + -0.029431192, + -0.008794983, + -9.1294816E-4, + 0.008295885, + -0.0034150414, + 0.0361344, + 0.027413208, + 0.0053923344, + -0.008644701, + -0.016487133, + -0.00807181, + -0.04637881, + -0.0070718196, + 0.016711922, + 0.0055551208, + 0.0039486955, + -0.012271752, + -0.0020764417, + -0.008935423, + -0.01479209, + -0.027718602, + 0.0054619024, + 0.0062944125, + -0.028016705, + 0.008412129, + -0.0075602457, + 0.013876141, + 0.01790356, + 0.0103666, + 0.0021397707, + -0.0050625065, + 0.014649141, + 0.0038937335, + -0.022949692, + 0.00979227, + 0.0044670366, + -0.01922725, + 4.590884E-4, + -0.019265577, + 0.0012091093, + 0.005283744, + 0.006953033, + 0.027472744, + 0.017453024, + 1.6342272E-4, + -0.010847482, + -4.6930474E-4, + 0.016630087, + 0.0044473396, + 0.0061334344, + 0.011027741, + -0.0069518364, + -0.02176963, + 0.021329056, + -0.028911488, + 0.0059755445, + -0.015890745, + 0.00227176, + -0.0065556127, + 0.011666256, + 0.024878906, + 2.0649994E-4, + 0.022378432, + 0.008339422, + 8.5276115E-4, + -0.0037808793, + 0.0046774, + -0.010726396, + 0.013339704, + 0.010380658, + -0.005449744, + -0.00521465, + -0.01108642, + -0.0013679907, + 0.0032307866, + -0.010925522, + -0.0014122131, + -0.0069552753, + -0.0076161386, + -0.016719956, + -0.019346196, + 0.018544484, + 0.018591914, + 0.01876275, + 0.021756431, + 0.017053152, + 0.00604439, + -0.015429938, + -0.00928159, + 0.019805877, + -0.014346461, + -0.015156766, + 0.0035179127, + 0.0081663085, + -0.0062854732, + -0.016304374, + -0.013747454, + -0.012655662, + -0.0023577856, + -0.0113019375, + 0.0027120276, + -0.002994158, + 0.016099423, + -0.0142876115, + -0.0058851712, + -0.0011728291, + 0.025210654, + 0.005873235, + 0.02265475, + 0.0013180033, + -0.005833559, + 0.022277432, + -0.006003017, + 0.020752603, + 0.023179423, + -0.015920756, + 0.016623037, + -0.0060003554, + -0.02360415, + 0.052339457, + 0.019143479, + -0.01708258, + -0.006360394, + -8.087849E-5, + -0.024842676, + -0.02587315, + -0.009594638, + 0.025887039, + 0.0072329044, + 0.009254166, + 0.032165747, + 0.022078214, + 0.0036204644, + 0.0031541518, + -0.0036354645, + 0.0066273627, + -0.01996974, + 0.0055246446, + -0.014740788, + -0.012521616, + 0.009199817, + -0.008056857, + -0.021684205, + 0.006078271, + 0.030168323, + -7.163204E-4, + 0.0147072505, + 1.08353226E-4, + 0.0037817783, + -0.044472918, + -0.0055941297, + 0.010882213, + 0.02250732, + 0.014876995, + -0.003730404, + -0.0076014865, + 0.026076073, + 0.010461237, + -0.026353149, + -0.03512832, + -0.0036725274, + -0.013339634, + 0.012540742, + -0.009770512, + 0.0030930487, + 0.034075588, + 0.0108077675, + -0.008442335, + -0.015145645, + 0.0068995403, + 0.023870626, + 0.014397283, + 0.006631969, + -0.0027943251, + -0.021497803, + -0.0017866776, + -0.010369354, + 0.003227415, + 0.0104871, + 0.01995333, + 0.012739361, + -0.0029303979, + 0.006627115, + -0.0035712954, + -0.014492598, + 0.0022403982, + -0.022101242, + 0.014421634, + -0.008356029, + 0.01637536, + -0.02961364, + 0.008014568, + -0.0019243248, + 0.009647107, + 0.02224069, + 0.036138967, + 0.0025273312, + 0.040373854, + -0.019858008, + 0.007123881, + 0.02624157, + -0.0048509715, + -4.156761E-4, + 0.005004474, + 0.0071602925, + -0.005684033, + 0.0015096269, + -0.005009663, + 0.00865165, + 0.027777744, + -0.024670228, + 0.004553305, + -0.02099558, + 0.01764206, + -0.012399236, + 0.017291307, + 0.0030925684, + -0.022608781, + 0.020816518, + 0.028489381, + 0.0044029984, + 0.0069293664, + -0.00699524, + 0.01914483, + -0.027275236, + -0.02923438, + 0.0031966544, + -0.0155293485, + 0.0011013799, + -0.015194297, + 0.04250801, + -0.007361515, + -0.028066184, + 0.012765667, + 0.001574977, + -0.03230264, + 0.017400647, + -0.023496067, + -0.02605187, + -0.00813347, + 0.017414289, + 0.028947646, + -0.017505288, + 0.026123166, + -0.025681503, + 0.023854721, + 0.03035875, + 0.031932797, + 0.0073402706, + 3.9150508E-4, + 0.019320529, + -0.0024976467, + -9.5523417E-4, + -0.020697493, + -0.037324566, + 0.021455783, + 0.0037310624, + 0.0033428064, + 0.015287996, + 0.029837096, + 0.01328916, + -0.03399336, + -4.8629698E-4, + -0.014758305, + -0.015848245, + 2.7028142E-4, + 0.014676529, + -0.0035412835, + -0.0015250186, + -0.035441995, + 0.021323489, + 0.0020362476, + -0.010709918, + 0.016509064, + 0.014264949, + -0.0065420275, + -0.016400706, + -0.017139554, + -0.028848527, + -0.009022956, + -0.02231778, + 2.0789646E-4, + 0.0021170806, + -0.015513512, + 0.009168752, + -0.008031181, + -0.0036177523, + -0.0126766525, + 0.01181118, + 0.017821236, + -0.0035801, + -0.0075902157, + 0.02289524, + -0.009344853, + -0.0015223264, + -0.026453895, + -0.013265979, + 0.02339751, + -7.2962086E-4, + 0.01207937, + -0.005200221, + -0.021942887, + -0.014109787, + 0.005266298, + 0.007460907, + -0.020702424, + 0.016776357, + -0.00246351, + 0.0057460796, + -0.007851503, + -0.038874976, + 0.021168254, + 0.011420912, + -0.028152715, + 0.019085037, + 0.012086572, + 0.008361561, + -0.001368078, + -0.028991075, + -0.020638496, + 0.016851543, + 0.0026830118, + -0.006480951, + -0.0035796294, + -0.004647413, + -0.009460603, + -0.015620616, + -0.018734632, + 0.010640459, + 0.008176684, + -0.007618386, + -0.009260779, + 0.005278504, + -0.00659542, + 0.013868603, + 8.8618306E-4, + -0.023787605, + 0.0057873395, + -0.03114413, + 0.015869135, + -0.0033441326, + 1.9331044E-4, + 0.017139599, + -0.0035373962, + -0.014015763, + 3.447186E-4, + -0.0046178405, + 0.003699276, + -0.0018225196, + -0.008774206, + 0.008164438, + 0.003300707, + 0.030654425, + 0.005482816, + 8.9750014E-4, + -0.008692099, + -0.011019752, + -0.0014539005, + -0.02366135, + 0.018710462, + -0.02001917, + -0.0011618356, + 6.4169586E-4, + -0.0072169793, + -0.0053364956, + 0.011869698, + 0.012329582, + 0.007025749, + -0.0011887074, + -0.023161268, + 0.009649409, + 0.024277229, + -0.005111355, + 0.010138372, + -0.007951464, + 4.4258466E-4, + -0.007750421, + -0.03703478, + 0.012892208, + 0.006126402, + 0.011647554, + 0.011708015, + -0.01932393, + 0.029684333, + 0.0016073924, + 0.028821843, + 0.023884047, + -0.013013255, + -0.0035380083, + 0.011243516, + 0.010234554, + -0.016765447, + 0.0048795794, + 0.013229534, + -0.022794869, + -0.02767691, + 0.010976623, + -0.012013829, + -0.019089362, + -0.012672109, + -0.012212049, + 0.023467636, + 0.0062211123, + -0.010391411, + -0.0023513222, + -0.010265737, + -0.002522101, + 0.040133625, + 0.008011598, + 0.01745428, + 0.0024631128, + -0.017442584, + -0.026720477, + -0.006927464, + 0.016946485, + 0.0140824085, + -0.04209572, + 0.018556453, + 0.010600632, + 0.012833951, + 0.005402721, + 0.009122886, + 0.023492375, + -0.007175615, + 0.0025022721, + 0.007124254, + 0.021962704, + 0.003502513, + -0.023623453, + -0.009204374, + -0.0155669395, + -0.0075165424, + 0.0056809946, + -0.005656344, + 0.038375054, + -0.0074721016, + -0.005381523, + 6.58702E-4, + 0.0057424344, + 0.0035689303, + -0.0061442484, + 0.015292791, + 0.026725965, + -0.014581768, + -0.016130658, + 0.006078703, + 0.025116123, + 0.010939379, + 0.02746612, + 0.013128939, + 0.025677368, + 0.013983087, + -0.014854509, + -0.0072092083, + -0.0070618377, + 0.024729041, + -0.003155493, + 0.013501051, + -0.005951575, + 0.015927877, + 0.010529731, + 0.015908787, + 0.0072491765, + 0.008369315, + -0.023562208, + -0.019467207, + 5.778507E-4, + 0.016650045, + -0.029624399, + 0.0036900176, + 0.007895206, + 0.0070289224, + 0.027743373, + 0.0042942273, + 0.014435166, + -0.0010877071, + 0.019101044, + 0.0040299133, + 0.021675354, + -0.0065576583, + 0.010423284, + 0.019772913, + 0.0075215795, + -0.015496591, + -0.008365425, + 0.008938416, + 0.0028290974, + 0.011006981, + -0.03762095, + 0.019029735, + 0.005609888, + 0.020964595, + -0.013173421, + -0.006309617, + 0.01091185, + -0.008420557, + -0.014915662, + -0.0016537365, + -0.0018115748, + 0.013803358, + -1.5667858E-4, + 3.8406817E-4, + -0.006091903, + -0.017758003, + -0.015320576, + -0.0097608045, + 0.0028945757, + 0.024831245, + -0.012095425, + -0.006889275, + 0.005612092, + -0.0115227485, + -0.0067654504, + -0.035562307, + -0.017920671, + -0.011790061, + -0.007225349, + 0.0446863, + -2.6742E-4, + -0.027323024, + 0.0011109379, + 0.020744989, + 0.02022011, + -0.027141927, + 0.0065413383, + 0.0037227077, + 0.0036316963, + 0.026334627, + -0.0014880098, + -0.009695, + 1.4208342E-4, + -0.0033976329, + 0.0061464645, + 0.0027079005, + -0.007076332, + 0.02767001, + -0.0138870245, + 0.009050005, + -0.03362842, + -0.0052557667, + 0.017245403, + 0.0022993288, + 0.0031681717, + -0.0035109, + -0.013135251, + 0.0144738015, + 0.008120011, + -0.0061895424, + 0.021125358, + -0.011660385, + 0.034399986, + 0.03465436, + -0.024343587, + -0.0083688125, + -0.0060884114, + 0.02097788, + 0.03583947, + 0.0029846537, + -0.004304925, + -0.004670284, + -0.013419408, + 0.008875971, + -0.0172505, + -0.0031138898, + 0.017224872, + 0.0016716543, + -0.008883069, + 0.010498813, + 0.00649568, + -0.011141374, + 0.008371206, + 0.01272898, + 0.0249689, + -0.015808193, + -0.004052245, + -0.009837543, + -0.008593888, + -0.014188104, + 0.0089722285, + -0.003246044, + -0.033083536, + 0.008214246, + 0.009441245, + -0.007754326, + 0.002808068, + -0.008177736, + 8.753052E-4, + 0.0052375183, + -0.0031526014, + 0.012052512, + 0.0026885925, + -0.0072208825, + 0.0136824185, + -0.007549762, + -0.016475035, + -0.010640665, + -0.016810186, + 0.010995059, + 0.009200929, + -0.0060340166, + -9.914032E-4, + 0.0041001164, + 2.0710274E-4, + -0.0010564439, + 0.0028029177, + -0.00350212, + 0.01670691, + 0.007419401, + -0.014849286, + 0.01821141, + -0.020986749, + -0.013536057, + -0.0013767103, + -0.04142919, + -0.015188593, + -0.005038416, + 0.025734577, + -0.0020581349, + 0.0034128297, + -0.0017065897, + -0.038116347, + 0.00955528, + 0.009580786, + -0.0047409, + 0.0069804476, + 0.018778443, + 8.790535E-5, + 0.019222034, + -0.022052452, + -0.010865278, + -0.03725568, + -0.00467513, + 0.00782085, + 0.010731475, + -0.0284702, + 0.001908141, + -0.007303608, + 0.02498307, + -0.009341683, + 0.010000211, + 0.031645898, + -0.027762465, + 0.011834298, + -0.0035569074, + -0.009985839, + 0.028093254, + -0.009786824, + -0.017770272, + -0.033728592, + 0.005083327, + 0.0024358323, + 0.0028803672, + -0.0038602466, + 0.01720621, + 0.0019301577, + 0.019483112, + -0.012736128, + -0.0111579215, + -0.0051970026, + -0.0200723, + -0.0056783403, + 0.027014526, + 0.01857596, + 0.006429511, + 0.013708548, + -8.346415E-4, + -0.023430934, + -0.01912835, + 0.0102932295, + 0.018811518, + -0.040225886, + -0.00870353, + -0.016196182, + 0.029361581, + -0.026872871, + -0.0036375157, + 0.017923662, + 0.017765226, + 0.0033306647, + -0.004940917, + 0.014778283, + -0.023940105, + -0.015430982, + -0.013340854, + -0.0016247032, + 0.013784186, + -0.011182007, + -0.034557167, + -0.014081482, + -0.017605795, + -0.010312697, + 0.005338746, + 0.009742099, + 0.0020482987, + -0.010222979, + -0.004188728, + -0.022079185, + 0.0016760107, + 0.01069202, + 5.9710094E-4, + 0.001949456, + 0.008306946, + -0.0011054694, + -0.0017536784, + 0.018115267, + -0.018779887, + -0.0113678835, + 0.018356688, + -0.0075789173, + -0.021597102, + -0.0046327855, + 0.044538636, + 0.010839587, + -0.028478928, + 0.014634379, + -0.008708011, + -0.0073444056, + -0.005300824, + 0.004215744, + 0.025325535, + -0.006607564, + 0.03361237, + 0.0056651942, + 0.00792885, + -9.0811035E-4, + 0.0055980985, + -0.009107519, + 0.026314782, + -0.008578939, + 0.019954348, + -0.011368063, + -0.030870225, + 0.007757058, + 0.017391745, + 0.0014171008, + -0.01649588, + 0.0024806734, + 0.031800292, + -0.040106185, + -0.009019282, + -0.005142077, + 0.024905391, + -0.026368076, + 0.015861155, + 0.017758543, + -0.008682901, + -0.010882481, + -0.011860022, + 0.012264944, + -0.009201574, + -0.020208022, + -0.01759368, + 0.005764233, + 0.0056065856, + 0.010627631, + -0.0062200874, + -0.0025463041, + 0.03067226, + -0.0027386372, + -0.0013775673, + 0.0077835345, + -0.031536132, + -0.004289768, + 4.1777044E-4, + 0.0022469864, + 0.0066265212, + 0.009496025, + -0.0120991925, + -0.013579757, + -0.0032122, + 0.015647283, + -0.009968486, + -0.0024102868, + 0.006224322, + -0.005705267, + -0.030326473, + 0.013297926, + -0.02099322, + -0.00835974, + -0.002776829, + 0.0014649634, + 0.044280376, + 3.641403E-4, + -0.015214717, + -0.02121171, + -0.01911917, + -0.018063944, + 0.011077679, + 0.019202413, + 0.015443499, + -0.020232752, + -0.01797143, + -0.0041720434, + -0.0017792225, + 5.7545747E-4, + -0.006590924, + -0.010202084, + 0.02377357, + 0.011051276, + -0.017007384, + 0.01238332, + 0.006776336, + 0.0041484535, + 0.0146491695, + -0.009205276, + -0.022223879, + -2.733021E-5, + 0.006325591, + 0.021201858, + -0.0043929988, + 0.02371571, + 0.021226022, + 9.822254E-5, + -0.021512004, + -0.0032905396, + -0.004289349, + 0.028719727, + -0.00524755, + -0.022558697, + -0.005995558, + -0.009271884, + 0.011792032, + -0.03472054, + 0.00123668, + -0.0046335733, + -0.0054950165, + 0.0046152393, + 0.01196872, + 9.378485E-4, + -0.011898452, + 0.018596783, + 0.004299674, + 0.008664451, + 0.025128432, + 0.008317744, + 0.017344873, + 5.835051E-4, + 0.008458374, + 0.014582216, + 0.024504313, + 0.022737673, + -0.015275182, + -0.022179352, + -0.019071061, + 0.0023385407, + 0.00700933, + -0.006008595, + 0.015361468, + 0.023225492, + 1.595178E-4, + -0.014417076, + -0.015983729, + -0.011099294, + -0.009228551, + 0.012739093, + 0.003990827, + -0.017699305, + -0.0022088597, + 0.005430392, + 0.013812102, + 0.046105098, + 0.01323733, + 8.652166E-4, + 0.005969351, + -0.0068125655, + 0.0023453212, + -0.001778171, + 0.008020437, + 0.010906397, + 0.011947908, + 7.9164567E-4, + 0.0035534634, + 0.022112263, + -0.0044810846, + -0.018685628, + -0.0020011077, + -0.004901972, + -0.026939452, + -0.008091287, + 0.026229965, + -0.022423826, + -0.009382466, + -0.0061845053, + 0.011132394, + -0.010789789, + 0.008996636, + -0.036040895, + 0.029570408, + 0.015433836, + 0.011737543, + 0.002891919, + -0.019374233, + 0.0054996223, + -0.0034018739, + 0.01468472, + 0.014812734, + -0.025760945, + 0.01404914, + 0.008304347, + 0.015112502, + 0.008098107, + -0.019527953, + -0.0039052197, + -0.03799292, + 0.01258011, + 0.00988821, + 0.009244664, + -0.012272351, + -0.006591452, + -0.008433367, + 0.002385646, + -0.0020023207, + 0.0068471087, + 0.015664557, + -0.019248778, + -9.990905E-6, + -0.027782073, + -0.0045611686, + -0.0053791953, + -0.004928324, + -0.00768232, + -4.2522104E-5, + 0.0087651005, + 0.034458738, + 0.007837317, + 0.02069218, + -0.022918303, + 0.012827333, + 0.006107177, + -0.031159814, + -0.0054695443, + -0.011134318, + 0.02079202, + 0.026783273, + -0.023445884, + 0.0024202652, + 0.015687631, + 0.026407285, + -0.005813693, + -0.019236984, + 0.0044694096, + 0.004358869, + -0.004288423, + 0.004926017, + -0.03427035, + -0.011782083, + 0.009909135, + -0.0084410515, + 0.017626163, + 7.709256E-4, + -8.8495616E-4, + 0.018829482, + 0.0039831568, + -0.01260403, + 0.009725174, + -0.011282253, + 0.0075412514, + -0.0098229805, + -0.012139422, + -0.006311239, + -0.010363618, + -0.008321013, + -0.010997372, + -0.00995269, + -0.008673412, + -0.0015723258, + -0.004544377, + 0.023939643, + -0.005048132, + 0.004791321, + -0.008073168, + 0.0065690833, + 0.01209021, + -0.008336741, + 0.005628967, + -0.034649175, + 0.008903494, + 0.010272433, + -0.032353643, + -0.014524162, + 0.0075818575, + 0.00396391, + -0.0033931131, + 0.01854806, + 0.005415698, + -0.010709739, + -0.0104098385, + 0.0025498064, + 0.0037592654, + 7.0596207E-4, + -0.0012470655, + 0.011225908, + 0.0046386053, + -0.011084971, + 0.0020328981, + 0.0042767376, + 0.0058919596, + 0.01556727, + -0.02334867, + 0.0047185128, + -0.0212869, + 0.008610458, + -0.005808161, + 0.025128303, + 0.0060456935, + 0.013301669, + -0.027434481, + 0.003477718, + -0.025791364, + -0.0042591444, + 0.016410287, + -0.02445997, + -0.013848075, + 0.017923657, + 0.014138307, + 0.025925612, + 0.02102911, + 0.017026372, + 0.009744344, + -0.019044865, + -0.014392087, + -0.017941702, + 0.013013519, + 0.0027811422, + 2.6638724E-4, + 0.05013382, + -0.017352689, + 0.02928453, + 0.0035686933, + -0.011247546, + 0.005360053, + -0.012539069, + 8.04191E-4, + 0.03139801, + 0.03913241, + -0.031168588, + 0.0049131825, + 0.016118279, + 0.0022373814, + -0.003016271, + 0.011109773, + -0.005433307, + -0.012985293, + -0.032502327, + -0.014372186, + 0.034758653, + 0.010770506, + -0.0022871566, + 0.016718619, + -0.011698507, + -0.0077382987, + 0.013974653, + 0.018324744, + -0.005088052, + -0.003092956, + -0.010474772, + -0.010179406, + 0.019455185, + 0.0018141991, + 0.0025873263, + -0.0023592263, + 0.009983997, + 0.023640046, + -0.015223766, + -0.02439641, + 0.0010611969, + -0.009334305, + -0.0030667065, + -0.01565455, + 0.015544974, + -0.017191004, + -0.04802035, + 0.006105267, + 0.008640326, + -0.009582761, + -0.015213567, + 0.016749348, + 0.013903211, + 0.0052451207, + -0.013531393, + -0.03999691, + -0.011264145, + 0.035628412, + -0.002868092, + -0.013994284, + 0.0056079435, + 8.72964E-4, + -0.020053897, + 0.006912384, + -0.0043785395, + 0.025271134, + -0.012569692, + 0.021368632, + 0.011692673, + 0.003924706, + 0.0071076825, + -0.013724636, + 0.011274308, + -4.3345112E-4, + -0.005895235, + -0.010384456, + -0.024655478, + -0.0033164031, + 0.011284083, + -0.016787697, + -0.0031578639, + -0.023115888, + -0.0085689025, + -0.0058840825, + 0.0022907343, + 0.021744639, + 0.013405048, + 0.0015251434, + -0.028123971, + -0.025959596, + -0.021938398, + 0.03730731, + -0.020534601, + 0.029261682, + 0.0070304056, + -0.0013526761, + 0.009835262, + -0.005777895, + 0.009089057, + -0.02851837, + -0.018378315, + 0.01743963, + -7.674579E-4, + 0.007827963, + -0.003432756, + 0.008007598, + -0.008882722, + 0.035790488, + -0.029231617, + -0.01161667, + 0.0064877253, + 0.019412486, + -0.0018164794, + 0.011269508, + -0.034681536, + 0.015427028, + 0.008929785, + -0.015665129, + 0.045295555, + 3.1668463E-4, + -0.017711025, + 0.004193588, + 0.01260204, + -0.0054975837, + -0.0075058527, + -0.021879995, + 0.017015755, + -0.021212917, + 0.0016167016, + -0.012154808, + -0.021953868, + 0.0041309954, + -0.012485344, + -0.0011018126, + 0.0020926045, + 0.012136305, + -0.02020666, + 0.0043403655, + 0.030684318, + -0.0015843587, + -0.010323991, + 0.016167402, + 0.00926977, + -0.017120663, + 0.007098378, + -0.0050846944, + 0.001860527, + -0.005948509, + 0.001572344, + -0.0055512544, + 0.004465864, + 0.032635443, + 0.019708121, + -0.0028233693, + -0.011237953, + -0.02215543, + -0.012473173, + 0.019938454, + 0.0050022155, + -0.00543111, + 0.018581472, + -0.0012133768, + -0.005295076, + -0.018950677, + 0.0176027, + -4.9852E-4, + -0.0010487431, + -0.008492914, + -0.006746803, + 0.010200104, + -0.017926041, + 0.00133009, + 0.0015594419, + -0.0057231756, + 0.02007032, + 0.015525529, + -0.015851775, + -0.029678192, + 0.0064065005, + -0.010453935, + -0.005095374, + 0.0077415537, + 0.006430536, + -0.012835139, + -0.007213121, + 0.008996461, + 0.0026977258, + 0.011676622, + 0.010763297, + -0.002385398, + -0.007983701, + -0.012585095, + 0.0144162495, + -0.008581821, + -0.018250417, + 0.009591318, + 0.0060248123, + 0.010187673, + -0.01872644, + -0.019483186, + -0.010119426, + 0.019853083, + -0.010410999, + 0.015084474, + 0.0046824333, + -0.007965532, + -0.0019732858, + -0.01484943, + 0.016981067, + -8.845368E-4, + -0.0025403774, + -0.0050518266, + 0.0054958113, + -0.0074596186, + -0.007595246, + 0.0055563967, + -0.020207562, + -0.0032461751, + 0.011968956, + 0.015297379, + -0.010512445, + -0.0029376964, + -0.010107052, + 0.022771219, + 0.010041213, + -0.019360663, + -0.01088849, + 0.003404374, + 0.004940248, + 0.0231753, + 0.021873506, + -0.017270992, + 0.01749702, + -0.0054186354, + -0.010891547, + -0.015685514, + 0.0075547905, + -0.0048646685, + -0.015314399, + -0.004219702, + -0.031439852, + -0.012729238, + 0.009941093, + -0.027889848, + -3.4523348E-4, + -0.022998577, + 0.017921789, + 0.007917367, + -0.0045160637, + -0.012379327, + 0.011156733, + -0.023482323, + 0.0074444097, + -0.015098002, + -0.013214596, + 0.03597743, + -0.0102235135, + -0.011857516, + -0.033079665, + 0.010416618, + -0.021932328, + -0.007204582, + -0.020108476, + -0.016782062, + 0.012224013, + 0.011964522, + -0.0049613426, + 0.0026459985, + -0.0046055852, + -0.008914169, + 0.013184124, + -0.0049188873, + 0.020567575, + 3.1167336E-4, + 0.007665414, + -0.0023369116, + 0.005812089, + 0.0044983523, + -0.009995371, + -7.9499814E-4, + 0.011756327, + -0.025264807, + 0.015027129, + -0.0040281527, + 0.0074001076, + 0.009099727, + 0.01736516, + -0.007252315, + -0.011136827, + -0.009660925, + 0.013113041, + -0.01503826, + -0.010395465, + 0.0011506735, + -0.020663757, + 0.013633258, + 0.0019492818, + -0.025016675, + -0.0093193, + -0.0123878205, + -0.017633159, + -0.020292684, + -0.0069314297, + -0.02095173, + -0.0058388747, + -0.0034100912, + 0.017191146, + 0.018841313, + 0.021229599, + -0.008395723, + 0.014669986, + 0.006710316, + -0.0025284037, + -0.012799815, + 0.010156446, + 0.013450382, + 0.017887156, + 0.018093677, + -0.0037441864, + -0.03037934, + -0.024148613, + 0.020123173, + -0.004496051, + -0.006841614, + -0.032957964, + -0.0018402057, + 0.008306706, + -0.010925716, + 0.012767633, + 0.0069258534, + 0.005108735, + -0.007888422, + -0.016963048, + 0.030614955, + 0.017484842, + 8.8767085E-4, + -0.021218384, + -0.011329326, + 0.016594352, + 0.0065196077, + 0.0128356805, + 0.011033361, + 0.011704611, + -0.004915803, + 0.0053782994, + 0.003898482, + -0.019163094, + 0.0014852387, + -1.7799362E-5, + -0.005995853, + -0.019155098, + 0.012430125, + -0.014926687, + -0.0016753224, + 0.015132254, + 0.008473672, + -0.035297416, + 0.0062227687, + -0.002415064, + -0.014813083, + 0.01980339, + -0.009455707, + 0.024262754, + 0.015137942, + 0.011035132, + 3.8977808E-4, + 0.013050637, + -0.0027156952, + -0.0031314641, + -5.724659E-4, + 0.046041213, + 0.012845899, + 0.0015517073, + -0.014515081, + 0.03056709, + -0.0051620086, + -7.3321804E-4, + -0.014260566, + -0.0076368274, + -0.014727097, + 0.023426648, + -0.02977552, + 0.005905591, + -0.008545521, + 0.034378454, + 0.011120389, + 0.007385945, + -0.023611272, + 0.025484597, + 0.0040073697, + 0.017431276, + -0.00649914, + -0.0024647317, + -0.016843166, + 0.02973085, + -0.005020281, + -0.008181818, + 0.011376446, + -0.0045844237, + 0.0067875087, + -0.019573001, + 0.0128202755, + 0.0012672497, + 0.009325047, + 0.02193523, + -0.002639387, + 0.016196596, + -0.023350438, + -0.014772605, + 0.004706344, + -0.020891614, + 0.009941494, + 0.024833726, + -0.0053497553, + -0.013483619, + 0.0071173646, + 0.0021075686, + -0.019600708, + -0.015190597, + -1.5598434E-4, + -0.013684083, + 0.020662654, + -0.0031071345, + 0.0052765515, + 0.010724897, + -0.014000386, + 0.010608815, + -0.019947704, + -0.026187383, + 0.023804639, + 0.0015949701, + -0.005123026, + 0.0049750744, + -0.0020925913, + 4.3651147E-4, + 0.010020962, + 0.006715407, + -0.017534018, + 0.012935685, + 0.012753447, + 0.0078168325, + 0.010295038, + -0.0072012367, + -0.0029898097, + 0.012034844, + 0.01342408, + 0.026754197, + 0.0025086359, + -6.24401E-4, + -0.013590921, + -0.0011309006, + 0.017334031, + -0.018971529, + -0.00551873, + -4.4326522E-4, + -0.0059396, + -0.028853297, + 0.008435237, + -0.017696565, + -0.002595072, + -0.0051200534, + 0.006039514, + 0.022479435, + -0.008279173, + 0.014739867, + -0.0048143542, + 0.013401418, + -0.0013403625, + 0.009442457, + -0.018747166, + -0.025814628, + -0.0037805596, + -0.031194676, + 5.4163404E-4, + -0.0032091602, + -0.0058347974, + -0.030212145, + -0.032104835, + -0.0044908156, + 0.016721172, + -0.04209213, + 0.0065703145, + -0.027660944, + 0.009360223, + 0.018507231, + 0.01911982, + 0.021817192, + 0.006386677, + 0.008169053, + 4.4633832E-4, + -0.018371714, + 0.018859284, + 0.007767941, + -0.011223917, + 0.0020196002, + 0.008193842, + 0.011104595, + 0.022361806, + 0.014992736, + 0.0071706213, + -0.0037833764, + 0.004805042, + 0.011298456, + 0.014730699, + -0.017074194, + -0.011941635, + -0.012612105, + 0.025474928, + 0.03706168, + -0.013514572, + -0.0050099515, + -0.022088235, + 0.014765483, + -0.006737868, + 0.0053138817, + -0.014408514, + 0.0130474055, + 0.0134526435, + 0.004557257, + 1.808004E-4, + -0.036675476, + 0.009919653, + -0.019766606, + -0.011766, + 0.021222483, + 0.006390372, + -0.005692134, + -0.02158974, + -0.009370681, + 0.009202946, + 0.03367511, + -0.0011725574, + 0.008936268, + 0.032912586, + 0.0024928825, + -0.0046588336, + -0.0016196367, + -0.018342422, + 0.008005876, + -0.029585559, + -0.020656455, + -0.005616923, + 0.0034392558, + 0.022661474, + 0.014451673, + 0.015906597, + 0.0077756066, + 0.025321463, + 0.015698686, + -0.011447506, + 0.0028987657, + -0.0065808, + 0.008704183, + -0.0048089745, + 0.0041634706, + 0.030026829, + -0.0114290435, + 0.00555317, + -0.009327275, + -0.025295753, + -0.0028948723, + 0.013652787, + 0.018127054, + 0.013976529, + -0.009287255, + 0.0261329, + 0.025065139, + 0.023902642, + 0.013245064, + 0.0038974045, + 0.019372908, + 0.01760332, + -0.008571448, + -0.013101041, + 0.01627373, + 0.038012866, + 0.023837263, + 0.0032768634, + 0.006793985, + -0.010636362, + 0.00766554, + -0.0038652013, + -0.005168212, + -0.0132163325, + 0.019938724, + -0.0013324462, + -0.019961046, + -0.01894572, + -4.7794226E-4, + -0.005631659, + 0.016253503, + 0.0132430475, + -0.0025293555, + 0.023748254, + 0.01624927, + -5.731916E-4, + 0.0017983351, + 0.007317699, + 0.009772001, + 0.004673498, + 5.9904494E-5, + -0.01894788, + -0.011619287, + 0.0014227714, + -0.014362734, + 0.015316752, + -0.001816293, + 0.02188125, + -0.004282354, + -0.0089941975, + 0.009805484, + -0.0073284307, + 7.1780545E-5, + 0.0107149305, + -0.0050289007, + -0.003558356, + -0.017818416, + -0.0046563405, + 0.009902779, + -0.0387133, + 0.00689233, + -5.885814E-5, + 0.0025761707, + 0.0202689, + 0.0051251543, + 6.614281E-4, + -8.4148446E-4, + -0.018595032, + 5.3624617E-4, + 0.009514937, + -0.006538784, + -0.019160263, + -0.02447576, + -0.0010814292, + -0.007975038, + -0.04455582, + -0.022685293, + -0.0020813649, + 0.021045672, + 7.069808E-4, + 0.012893469, + -0.011814889, + -0.022422392, + -0.0027689112, + -0.0070023932, + -0.02054454, + -0.004262182, + -0.004048762, + 0.0013657303, + -0.01857928, + 0.011257582, + -0.004513367, + -0.008767638, + -0.0040153796, + 0.004498418, + 0.008848176, + 0.0059523913, + -0.01385942, + 0.010654927, + 0.0028028912, + 0.016906863, + 0.014977403, + 0.0020695748, + 0.01463264, + -0.015489499, + -0.010675028, + 0.011498224, + 0.013142551, + -0.0053829774, + -0.0053546494, + 0.016497822, + 0.009690628, + 0.009626638, + -0.021367617, + -0.0066329087, + -0.0014236335, + -0.005734162, + 0.0071219914, + -0.020056264, + -0.018305957, + -0.009816716, + 0.016102076, + -0.037106693, + -0.005743444, + -0.031611387, + 3.7031362E-4, + -0.0028620688, + -0.009075341, + -0.0145600615, + 0.032874905, + -0.021640023, + -0.0048237224, + 0.025654223, + 0.011856777, + -0.00503185, + -6.4686214E-4, + -0.015862415, + 0.014216287, + -0.013749742, + 0.019742845, + 0.0045851152, + 0.01736458, + 0.003890039, + -0.0034063614, + 5.4441125E-4, + -0.003350406, + 0.009092242, + -0.0017925162, + -0.008696523, + 0.022381892, + -0.021546235, + -0.009686718, + 0.005422081, + 0.03639893, + 0.027730182, + 0.013027485, + -0.013269056, + 0.0036006016, + 0.0079045715, + -0.003567419, + 0.022462972, + 0.0037326266, + 0.0037355782, + 0.031764712, + -0.014403987, + 0.010976092, + -0.004062713, + -0.0076475646, + 0.007834584, + 0.0072364155, + 0.01533309, + -0.017391853, + -0.005315503, + 0.0063889488, + 0.0043274914, + -0.017821657, + 0.004694629, + -0.011391843, + 0.01094598, + -0.023561515, + -0.013890736, + -0.023389352, + -0.025657116, + -0.01719965, + 0.018760085, + -0.012146635, + 0.012061364, + -0.018081581, + -0.0118312705, + 0.0119451005, + -0.020193739, + -0.012053069, + -0.013357783, + -0.014202044, + 0.026339654, + -0.012542818, + 0.0056232614, + 2.1266726E-4, + 0.004212958, + 0.0047208453, + 0.012639055, + -0.030532794, + -0.005789352, + -0.007264695, + -0.010475098, + -0.0014619227, + -0.0025128287, + -0.0015325022, + 0.013482578, + 3.8408735E-4, + -0.0056374436, + 0.018198477, + -0.010601093, + -0.010949604, + 0.0038056765, + 0.017491868, + 0.005972318, + -0.0030413913, + 0.0040600644, + -0.005913863, + 0.003720136, + -0.005541669, + 0.0031617114, + -0.024806047, + -0.0038219367, + -0.0010303517, + 0.025398891, + 0.0133556565, + -0.008922058, + 0.016925266, + -0.014988182, + 0.016654665, + 0.023769967, + -0.019243848, + 0.0014823964, + 0.020779988, + 0.013013163, + -0.018770777, + 0.0077313683, + -0.005255918, + 0.008527284, + -0.005415531, + -0.018883089, + -0.0073344074, + 0.002816013, + -0.0064967033, + -0.0011961196, + 0.013042133, + -0.010216304, + 0.016705388, + 0.017702952, + 0.0061649634, + 0.012387606, + 0.023092734, + -0.021058926, + 0.0065868893, + 0.0047517368, + 0.025463086, + -0.009980057, + -0.016115993, + 0.031889215, + 0.004834091, + 0.008033465, + 0.029750649, + -0.005855217, + 0.011550658, + 0.006847989, + -0.016077768, + -0.0052849185, + -0.004260437, + 0.0026370795, + 0.015433408, + 0.009684535, + -0.0136313, + -0.0016766139, + 0.007491654, + -0.0046723345, + -1.4441654E-4, + -0.009031283, + 0.006457507, + 0.008847013, + 0.036683496, + -0.012774816, + -6.736456E-4, + -0.01788628, + -0.0057973093, + -0.0022283553, + -0.008299891, + 0.012133446, + -0.0152021935, + 0.022245323, + 0.010473631, + -0.0027133026, + -0.016996652, + 0.014095116, + -0.02701231, + 0.014950104, + -0.026399903, + -0.040885825, + 0.005505837, + -0.031082097, + -0.0061555454, + -0.027115788, + -0.0025126557, + -0.015623071, + -0.018988488, + -5.5352546E-4, + 0.010504691, + -0.0071552605, + 0.0077372356, + -0.025565572, + -0.0076611647, + 0.00431597, + 0.017718269, + -0.0043700146, + 0.0025372112, + -0.018856183, + 0.018767621, + -9.1693527E-4, + 0.0040971143, + 0.007758182, + -0.0038656525, + -0.017760484, + 0.013867853, + -0.03244765, + -0.023385992, + -0.009836849, + -0.0199866, + 0.013789435, + -0.0029931047, + 0.0069670863, + 6.651208E-4, + -0.017798062, + 0.0049146344, + 0.0077071646, + -0.009006155, + -0.0076373406, + 0.009310457, + 0.0052783405, + 0.009931709, + 0.018242128, + 0.0074038175, + 0.0026001032, + -0.023047125, + -0.014913751, + 0.022317933, + 0.013340327, + -0.0013001481, + 0.009322933, + 0.018319413, + 0.0020878268, + -0.021008492, + -0.0061768945, + -0.0031534485, + -0.016345015, + -0.004709975, + 0.0062496657, + -0.0034106388, + 0.001150695, + 0.029116523, + -0.0035378463, + -0.008271648, + 0.025529828, + 0.0022785696, + 0.016403612, + -0.021960193, + 0.013009636, + -0.029254846, + -9.5699454E-4, + 0.0049164915, + 0.0070594274, + 0.016383637, + -0.0037733077, + -0.020902935, + -0.003049001, + -0.014862279, + 0.016781503, + 0.0024850059, + 0.0031766046, + -0.0019865884, + 9.71031E-4, + 0.0032377713, + 3.728076E-4, + -0.01680956, + -0.01572379, + -0.018589534, + -0.0105600795, + 0.021541653, + -0.0128682945, + -4.9980305E-4, + 0.01934645, + -0.0018173697, + 0.013504593, + 0.011196107, + 0.025898635, + 0.0112783555, + -0.0048001157, + -0.01388448, + -0.008965525, + -0.0037930582, + -0.012662316, + -0.012170737, + 0.0123231355, + 0.019556975, + 0.0018108361, + 0.03436371, + 0.0013099316, + 0.009583291, + 0.017580068, + -0.04018222, + 0.004299946, + -0.013889548, + 0.036460165, + -0.018609678, + 0.003800109, + 0.019096464, + 0.0013959862, + -0.0167173, + -0.021194426, + 0.0017255938, + 0.003258182, + 0.0019817792, + -0.0072052, + -0.01680621, + -0.009985516, + -0.007784554, + 3.8616444E-4, + -0.007838383, + -0.0060628355, + 0.004700979, + 0.017543476, + -0.0026402702, + 0.0063999463, + 0.0025003941, + 0.015623806, + -0.0024381285, + 0.019687127, + 0.0018456158, + -0.029763184, + -0.007970818, + -0.010620477, + -0.031782497, + -0.006383467, + 0.011603225, + -2.626201E-4, + 0.021304289, + 0.011644297, + -0.0072367904, + 0.014498165, + 0.011872419, + 0.005677951, + 0.011858167, + 0.016726926, + -0.024205994, + 0.029630857, + 0.030196166, + -0.013873396, + -0.004633851, + 0.01564728, + -0.022958266, + 0.007976274, + 8.8511116E-4, + -0.023407724, + 0.018206222, + 0.021929577, + -0.027638404, + 0.0059454553, + 0.020104898, + -0.01288372, + 0.00842477, + 0.007487224, + 0.026201602, + 0.0050100004, + 0.011534941, + 0.00638533, + -0.0032911156, + 0.0032675199, + -0.019584192, + 0.017649043, + -0.004467564, + 0.03456275, + 0.0060401317, + 0.010405265, + -0.0026732474, + -0.0037954613, + 0.018799143, + -2.5862383E-4, + -0.016142735, + 0.018154673, + -0.023003813, + -0.029511942, + -0.014433906, + 0.00522109, + -0.009629296, + 0.004757772, + 0.0021309578, + -0.011438707, + 0.0076036723, + -0.0023107533, + -0.030155819, + -0.009012271, + -0.020830523, + -0.0065826615, + -0.0021062617, + 0.010463123, + -0.032037634, + 0.0013830233, + 0.01312387, + -0.0062020523, + -0.023701938, + 0.019807208, + 0.017477397, + 8.324767E-4, + 0.016489785, + -0.013394773, + 0.014402654, + 0.009676387, + -0.026201949, + 0.005612641, + -0.006495484, + -0.008584577, + -0.010003141, + 0.007161737, + -0.01487053, + 0.011299679, + 7.094282E-4, + -0.008329503, + -0.00853177, + -0.0015233374, + -0.014725276, + 0.0029435013, + -0.004174943, + -0.0046013556, + -0.014611665, + 4.0099368E-4, + -0.011845588, + -0.014226644, + -0.022221481, + 0.024529526, + 0.03840026, + 0.012702629, + -0.001078079, + 0.0086309975, + 0.007697547, + 0.0052719624, + 0.020686915, + -0.013302181, + -0.008868671, + -0.007281459, + -0.012161953, + 0.03579729, + -0.010034495, + 0.0039556944, + 0.008615146, + -0.019508768, + -0.004065864, + -0.0031075948, + 0.02520591, + -0.014531775, + 0.017731363, + -0.0060952944, + 0.011471878, + 0.0058042645, + -0.009912417, + 0.0020145276, + 0.0074430197, + 0.013762564, + -0.034069024, + 0.00440234, + -0.029747073, + 0.019137355, + -0.003436103, + 0.016261572, + -0.018894289, + 0.0010744828, + -0.00169441, + -0.001040206, + 0.015926717, + 0.016141571, + 0.030275851, + 0.007654002, + -0.04053936, + -0.02090599, + 0.006384794, + -0.0063530304, + 0.02794201, + 0.01222329, + -9.950426E-4, + -0.0061112014, + -0.019865545, + -0.025067413, + -0.021109039, + 0.0023097484, + -0.011076088, + -0.0059244763, + -4.8098937E-4, + -0.031873755, + 0.017830292, + 0.029690186, + 0.008345435, + 0.012132194, + -0.019364428, + 0.010582179, + -0.017811917, + -0.001368547, + 0.019623967, + -0.024126241, + -0.010012877, + 0.018691123, + -0.032413233, + -0.001570814, + -0.0025410808, + -0.008175281, + -0.024995536, + -0.0033822856, + -0.0011668508, + 0.0061966786, + -0.012700125, + -0.016803216, + 0.0063156467, + -0.008546372, + 0.017564237, + -0.013672835, + -0.013910643, + -0.008385046, + -0.012721517, + 0.0031889796, + -0.036092132, + 0.036022943, + 0.013000969, + 0.0024519688, + -0.0053502154, + 0.013551058, + -0.033500068, + -0.01069919, + -0.0052252323, + -0.0051312973, + 0.013031852, + 0.0077288905, + 0.01535715, + 0.031373728, + 0.007847877, + 0.0043820976, + 0.0072238888, + -0.012993203, + -0.0017306703, + 0.0020480908, + 0.001490578, + -0.016124308, + 0.0058429088, + -0.024304576, + -0.007439103, + -0.031643074, + 0.013755819, + 0.0030915213, + -0.016270772, + -0.0012384834, + -0.0028285843, + -0.0112138465, + 0.018863808, + -0.00456924, + 0.0022317397, + 0.015095247, + 0.018390013, + 0.012257154, + 0.005679885, + -0.005045118, + -0.009345677, + 0.014297613, + -4.0887535E-4, + 0.004062327, + -0.03907092, + -0.0013188829, + 0.04018388, + -0.031086836, + 0.022485254, + -0.039558437, + -0.0031135408, + 0.033189602, + 0.0021455337, + 0.030456549, + 0.0033979055, + -0.04018856, + -0.020224173, + -0.016823834, + -0.013794983, + -0.0013262662, + 0.02175637, + 0.008001561, + 0.013583945, + -0.04061433, + 0.010059449, + 0.007679732, + -0.00808907, + 0.005585589, + 0.009443864, + -0.016828706, + -0.0074625253, + -0.0025083907, + 0.023896808, + 0.011467916, + -0.0075237546, + 0.015120859, + -0.0013391785, + 0.023465475, + 0.0077534206, + 0.0073191016, + 0.0037231615, + -0.014342361, + 0.01016394, + -0.02172261, + 0.006949716, + 0.005041413, + -0.009741122, + -0.017116565, + -0.005536242, + 0.026178388, + 0.02534287, + 4.075189E-4, + -0.01212506, + -0.008020674, + -5.2001455E-4, + -0.018822113, + -0.0016839241, + 0.009861475, + -0.011158278, + -0.002703805, + 0.0077206576, + -0.022806685, + -0.017363917, + 5.656061E-4, + -0.02975378, + -0.021003703, + 0.005171183, + -0.0037719228, + 0.023292398, + -0.0049363193, + 0.012821131, + 0.032214914, + 0.013942377, + -0.0042389836, + -0.018333932, + 3.5432444E-4, + 0.006387035, + -0.022730112, + 4.060387E-4, + 0.010950231, + 0.04178947, + 0.020751256, + -0.0015632422, + -0.004603147, + 0.0011414886, + -0.011464154, + 0.0024597193, + 0.0025197163, + -0.044676185, + -0.008359327, + 0.013240295, + 0.033843502, + 0.0028330835, + 0.014624387, + 0.01969738, + -0.018202845, + -0.004436226, + 4.5749597E-4, + -0.041734017, + 4.0473216E-4, + 0.011565372, + 0.0018669942, + 0.0021793356, + 9.584718E-4, + 0.030517032, + -0.0037355542, + -0.020168658, + 0.015287783, + -0.003895586, + 5.570862E-6, + -0.018481713, + -0.023807526, + 0.0074401586, + -0.022070574, + 0.008298667, + 0.0014583806, + -0.012237666, + 0.008242922, + 0.013466529, + -0.0050763674, + -0.019993093, + -0.010479535, + 0.0064257537, + -0.012944841, + 0.018718973, + -0.0023010299, + -0.010327498, + -6.7177566E-4, + 0.002960481, + -0.018509185, + -0.0019679125, + 0.004103668, + -0.007237505, + -0.012143839, + -0.011454038, + 0.023261119, + 0.01608074, + -0.030791633, + 0.00936775, + 0.012690531, + -0.015497924, + -0.00570089, + -0.038571656, + -0.009252969, + 0.005079994, + 7.1930035E-4, + 0.029616565, + 0.027206823, + -0.02440904, + -0.009141276, + 0.0021260553, + -0.004085947, + -0.030109977, + -0.013267517, + 0.0012994993, + -0.029559301, + 0.0088028535, + 0.02544528, + -0.0026422958, + 0.0011398335, + 0.03168288, + 0.016266257, + -0.001995207, + -0.025347926, + 0.0015418048, + -0.006925569, + -0.011023868, + 0.02122286, + 0.007475516, + 0.0096713165, + -0.0027889526, + -0.0099475, + 0.0148714045, + 0.0037983218, + -0.012478116, + -7.0702995E-4, + 0.005516985, + -0.009265171, + 0.007465977, + -0.020736007, + 0.013801896, + -0.020139756, + 0.0040230486, + -0.02107602, + 0.010101264, + 3.975993E-4, + -0.009387159, + 0.005382689, + 0.007391601, + 0.005342645, + 0.0070160395, + 0.003967601, + 0.016680898, + -2.0738943E-4, + 0.025341816, + -0.008920887, + -0.006332527, + -0.007755121, + 0.0051247254, + 0.008218362, + 0.018508296, + -0.00817044, + 0.028867004, + 0.01816591, + 0.0023577595, + -0.033271108, + -0.005803334, + -0.010693845, + -0.017456874, + -0.028470078, + -0.008649781, + 0.0068325386, + 0.017014991, + 0.012581983, + 0.015854277, + -0.025145316, + 0.00804495, + -0.018896509, + 0.019014101, + 0.010253732, + -0.010248819, + -0.02193807, + 0.010911225, + 0.03694376, + -0.016143344, + -0.0067563634, + -0.0026644913, + 0.0054584774, + 0.011394956, + 0.008081923, + -0.008390979, + 0.026803942, + 0.002299209, + -0.026162338, + -0.0048210523, + -0.019151904, + 0.009990215, + -0.0052570687, + -0.010137921, + 0.012614436, + -0.0033672308, + 0.003784091, + 0.0011790362, + -0.020663295, + 0.02655583, + -0.011371978, + 0.001591406, + 0.0036673385, + 0.0032422547, + -9.4073714E-4, + -0.010648226, + 0.012003925, + 0.021193603, + 0.02914023, + 0.01247061, + -0.010040587, + -0.004400265, + 0.0049756556, + -0.035153612, + 0.029949013, + 0.0032922684, + 0.020242766, + 0.00501406, + 0.0033356822, + -0.013328751, + -0.0027538887, + -0.0074870014, + -0.009373668, + 0.02284064, + -0.001784342, + -0.008435716, + 0.0030314042, + -0.020070028, + -9.4647624E-4, + 0.013111053, + 0.009153753, + 0.00580627, + -0.018794453, + -0.03758231, + -0.014264755, + 0.0030961963, + 0.021815687, + 0.00823615, + -0.002861202, + 0.0055151475, + 0.021808337, + -4.6420866E-4, + -0.022073299, + -0.012071158, + 0.008228343, + -0.011011748, + 1.0520082E-4, + 0.013526959, + -0.017466493, + 0.020637508, + 0.02181585, + 0.004646362, + 0.004131507, + -0.0053900923, + -0.014538896, + -0.008085394, + 0.0057685673, + 0.014536869, + -0.00916651, + 0.023487391, + -0.001328623, + -0.010356756, + -0.0064144772, + -0.01685395, + 0.026760638, + -0.021537516, + -0.021264538, + -0.0030368087, + -0.01622988, + 0.025337838, + -0.01078836, + -0.021515477, + -0.0013540355, + -0.0114171505, + 0.009947725, + -0.008879461, + 0.0058960454, + -0.028785521, + -0.0064792573, + -0.017190544, + -0.011983794, + -0.013921232, + -0.023480935, + 0.014937176, + -0.00962904, + 0.0036550604, + 0.006305265, + -0.012495351, + 0.003854083, + -0.007951902, + 0.02316629, + 0.0024434887, + 0.003404497, + 0.010702274, + 0.011319643, + -0.022448586, + 0.018724345, + 0.017990693, + -0.0055772075, + -0.035449997, + -0.0040316535, + -0.00969155, + 0.00959203, + -0.021858443, + 0.0016044833, + -0.00827777, + 0.01960537, + -0.00661997, + -0.0034987358, + 0.0024456058, + 0.0060482635, + 0.0015096328, + 0.0011804246, + -0.012845386, + -0.011951861, + 0.0038403152, + 0.02017009, + 0.019953871, + 0.002204932, + 0.005626446, + -0.00367714, + -0.009004568, + 0.034099136, + -4.2451502E-4, + 0.024084326, + -6.5911975E-4, + -0.003501967, + 0.0032780513, + 0.017776337, + -0.017857464, + 0.0065200236, + 0.017900323, + -0.004193205, + -0.016570078, + -0.0061640358, + -0.0045610317, + 0.0042892946, + 0.024617681, + -0.0132909715, + 0.015051283, + 0.008371955, + 0.022495195, + -0.015777538, + -0.009353094, + -0.01759641, + 0.012842178, + -0.012856564, + -0.0035820645, + -0.012187609, + 0.018104646, + 7.9061167E-4, + -0.029959805, + 0.0014016895, + 0.009564179, + -0.027117236, + 0.011745835, + 0.0063300594, + 0.01040162, + 0.0046646567, + 0.010136011, + 0.0045472104, + 0.014924607, + 0.010814298, + 9.5771585E-4, + -0.010933366, + 0.019368801, + 0.029341415, + 9.0164086E-4, + -4.3691983E-4, + 0.016392453, + -0.037286565, + 0.005980147, + -0.0048010927, + -0.01232849, + 0.012327937, + 0.011832698, + 0.007291509, + 0.007485763, + -0.015163258, + -0.008163445, + 0.011646493, + 0.0012721049, + 0.0015088621, + 0.002388796, + 0.010550522, + 0.020604583, + -0.016979206, + -0.0030293402, + -0.0013506763, + -0.005119284, + -0.013984144, + 0.0032132785, + 0.017083038, + -0.0030158432, + -0.0056716353, + -0.011204758, + -0.007979916, + 0.010856887, + 0.016689518, + -0.0039005822, + -0.014314259, + -0.006524512, + -0.0039287, + 0.009758016, + 0.0025394114, + 0.012633156, + 0.010750515, + -0.0025414927, + -0.00604909, + -0.018196328, + 0.0042660693, + -0.0050770612, + 0.0048384806, + -2.6134675E-4, + 0.01388647, + -0.013459405, + -0.0031006744, + -0.019364223, + -0.0026685374, + 8.553325E-4, + 0.023290262, + -0.0022778767, + 1.2352053E-4, + -0.015435647, + 0.030349553, + 0.011490459, + -0.0019206738, + 0.0034035773, + -0.013737179, + -0.005122108, + -0.014844885, + -0.0063791657, + 0.01222226, + -0.010382908, + 0.019213967, + -0.009675096, + -0.028117433, + 0.008005598, + 0.016875412, + 0.021084106, + 0.0074511045, + 0.0062034265, + -0.0017194026, + 0.00863203, + -0.020572022, + 0.022967022, + -0.0011354733, + -1.3731657E-4, + 0.022648482, + 9.177022E-4, + -0.005611493, + 0.0033132003, + 0.019901233, + -0.0026262763, + -4.336955E-4, + -0.01182346, + 0.019163577, + -0.0060636, + -0.0010893369, + 0.0037393868, + 5.086579E-4, + -0.015958497, + -0.021822013, + -0.010581005, + -0.022105841, + 0.020382846, + -0.009615411, + 0.01844359, + 0.0072579687, + -0.019434083, + 0.017917572, + -0.009976448, + 0.025700647, + 0.017826572, + -0.014161485, + 0.009584582, + 0.016555957, + 0.019843927, + 0.011715215, + -0.008915957, + -0.011256809, + 0.02339058, + -0.0029267354, + -0.02798855, + -0.004998519, + -0.0031218906, + 0.029104885, + 0.0052562775, + -0.008508528, + -7.289256E-4, + -0.01477795, + 0.013883844, + 0.010890678, + -0.013366367, + 0.03844684, + 0.0075854002, + 0.017393034, + 0.019252043, + -0.031994108, + -0.0013101668, + 0.010280029, + -0.0029766716, + 0.0012193036, + -0.004109787, + -0.007382998, + -0.0061711916, + -0.010437835, + 0.010369355, + 0.012703387, + -0.006913021, + -0.0154527435, + 0.029680116, + 0.012105129, + 0.00933881, + 0.0047441563, + 0.0073285536, + 0.013425297, + 0.028977828, + -0.01844931, + 0.010377208, + -0.004462051, + 0.0069801533, + 0.027677692, + 0.013585706, + 0.0072388942, + -0.021841139, + 0.036730506, + -0.007236083, + 0.011876866, + 0.022986233, + -0.0044948948, + -0.0080218855, + 0.016788818, + -0.0034235062, + -0.004745523, + 0.013603674, + 0.0065627745, + 0.011547558, + -0.010258096, + -0.023076372, + 0.008777572, + -0.0084557, + -0.03954327, + -0.014441036, + 0.021178715, + 0.006223575, + 0.010221673, + 0.010957671, + 0.0012998497, + -0.0043750396, + 0.004125385, + -0.012900317, + -0.0061509036, + -0.012278326, + 0.014779146, + 0.003717113, + 0.009223635, + 9.446545E-4, + 0.0028410964, + -0.016952923, + 0.019678328, + 0.0108129475, + -0.0013804671, + -0.011836102, + -0.0029315497, + -0.022795001, + -0.010032784, + -8.4249E-4, + 0.0019015868, + 0.014297017, + 0.007357633, + 0.031528115, + 0.025286527, + 0.014690066, + -0.015911685, + 0.010583058, + -0.007588831, + 0.004226886, + -0.0029328165, + 0.010433328, + -0.0070794546, + 2.8840665E-4, + -0.01678836, + -0.018012306, + -0.016770277, + -0.003859859, + -0.011332247, + -0.0015972365, + -0.0036680435, + -0.0038378132, + 0.013256361, + 5.0037896E-4, + 0.020933349, + -0.012982465, + 0.007607599, + -0.003988202, + 0.016964233, + 0.025596483, + -0.009218728, + -0.015485893, + 0.014676325, + -0.014060893, + 0.013627658, + 0.008193306, + -0.016337886, + 0.008648725, + 0.018622454, + -0.013443117, + 0.0064631943, + -0.019186074, + 0.01169085, + -0.05934119, + 0.024580777, + 0.026810551, + -0.0030079407, + 0.0026387654, + 0.006666873, + 0.0099763395, + 0.0019888678, + -0.007794018, + 0.014729451, + -0.014281515, + -0.011014056, + 0.015194562, + -0.0034291104, + -0.0039416202, + 0.014780041, + 0.015595499, + 9.039835E-4, + -0.009902213, + 0.023739947, + 0.007283389, + 0.010540957, + -0.01628921, + -0.025037939, + -0.01110971, + -0.012005168, + -0.011981478, + -0.013194381, + 0.017485447, + -0.0145769585, + 0.013244633, + 0.03128984, + -0.021441096, + 0.025476864, + -0.013844309, + 0.0018133601, + -0.017727561, + -0.0011061352, + -0.00483866, + -0.021189451, + 0.012955935, + 0.023137866, + 0.001056149, + 0.020715447, + -0.011013539, + -0.0011191382, + -0.010192593, + -0.016121063, + -0.013629861, + 0.012352453, + 0.024316808, + 0.004470863, + -0.0057117534, + -0.008725927, + -0.0023929381, + 4.6297096E-4, + 0.003470943, + 0.002514913, + 0.00837927, + -0.011679076, + 0.008631371, + 5.7579373E-4, + 0.0016797114, + -0.010176828, + -0.0133946575, + 0.0063817506, + -3.3026337E-4, + 0.0029815168, + -0.010498747, + 0.009473097, + -0.0027435154, + 0.016910175, + 0.005093693, + 0.01869933, + -0.01518902, + -0.015159513, + -0.0024019484, + -0.022510873, + 0.03267041, + 0.01517781, + -0.017250154, + 0.014893443, + -0.047197282, + -0.0057127126, + -0.008600651, + 0.018588822, + 0.023954663, + -0.0061772596, + -0.021999082, + 0.0074680187, + 8.034851E-4, + 0.0035280604, + 0.020101769, + 0.04293406, + 0.010666127, + -0.014342324, + -0.019978726, + -0.021129215, + 0.021046741, + 0.015439061, + 0.034865394, + -0.006694534, + -0.014118547, + 0.004101087, + -0.02538644, + -0.005542614, + -0.009953716, + -0.017429983, + 0.005645327, + -0.016781224, + -7.339467E-4, + 0.026674058, + -0.008841956, + -0.0069255424, + 0.024074553, + 0.004773064, + 0.017786408, + -0.002030125, + -0.013929001, + -0.004604267, + -0.008275718, + -0.009790987, + 0.004494135, + 0.0013694619, + 0.014666358, + -0.013462093, + 8.0287777E-4, + 0.008948607, + -0.0095832795, + 0.014644357, + -0.010319384, + 0.0033022533, + 0.009595364, + -0.003197411, + -0.021671353, + 0.0072551128, + -0.0041372837, + -0.013436581, + -0.012206373, + -0.01905673, + -0.012326288, + -0.0057315594, + 0.011258581, + -0.005784215, + -0.0036687972, + -0.018015636, + -0.0029749805, + -0.0076105213, + -0.012025031, + 0.014731477, + 0.032241922, + 1.3730253E-4, + 0.0021063774, + -0.018637912, + -0.006391838, + -0.03654281, + 0.03519198, + -0.051974054, + 0.0018245861, + -0.004972184, + -0.010478826, + -0.0012762081, + 0.03275288, + -0.025706766, + 8.5570914E-4, + -0.018372584, + 0.0016095745, + -0.009609715, + -0.018252334, + -0.00706859, + -0.0029579648, + -0.018604917, + -0.038411755, + -0.004670454, + -0.0072148927, + -0.011449394, + 0.015060528, + -0.01425444, + -0.029721327, + -0.0065574823, + -0.021362945, + -0.022159806, + -0.00472262, + -0.0117478985, + 0.011703407, + -0.035505243, + 0.04371154, + -0.020853857, + -0.0053585083, + 0.008537956, + 0.011675029, + 0.0051108478, + 0.00782447, + 0.002759312, + -0.034852162, + -6.776972E-4, + -0.0059866128, + -0.028366597, + -0.005958019, + 0.0016034659, + -0.0018739722, + -0.0028184375, + 0.015179857, + -0.003609655, + -0.01935398, + -0.012722732, + -0.017127626, + 0.014867267, + 0.014761628, + -0.002498262, + 0.021210276, + -0.01003631, + 0.013201726, + 0.013570609, + 0.033258688, + 0.0061951345, + 0.007075111, + -0.003911964, + -8.428699E-4, + -0.009275552, + 0.013504355, + 0.013052716, + 0.0041403724, + -0.016405962, + 0.014869105, + 0.0056250086, + -0.015608175, + -0.017257545, + -0.009866296, + -0.0041614315, + 0.019792689, + 0.020759622, + -0.0055269967, + 0.0056602876, + -0.010670767, + 0.010787008, + 1.348314E-4, + 0.004835817, + 9.378102E-4, + -0.01612252, + 2.5267294E-4, + 0.024469545, + 0.030257404, + 4.3726343E-4, + -0.010979556, + -0.02897301, + -0.016564181, + -1.19541844E-4, + 0.008532963, + -0.001721893, + 0.0075739957, + -0.0062193847, + -0.004471042, + -0.03705837, + 0.012184364, + 0.03895223, + -0.006196659, + 0.021689756, + -0.011170389, + -0.0014296456, + -0.0022492108, + 0.0019066776, + 0.015463399, + -0.02661586, + -0.007380336, + -0.020613858, + -0.015797643, + 0.016350763, + 0.03695435, + 0.0103148, + 0.007848669, + -0.013477455, + 0.006267769, + -0.02167955, + -0.01404153, + -0.007225697, + 0.028377363, + -0.02945852, + 0.040675186, + -0.03970122, + 0.002832231, + 0.02231155, + -0.002745367, + -0.0146629615, + -0.00548575, + -0.023882886, + -0.012373198, + 0.031829797, + 0.015956197, + -0.045219857, + 3.101744E-4, + -0.02957756, + 0.024964882, + -0.0023757296, + -0.018962396, + 0.0019965284, + -8.197994E-4, + -0.011610571, + -5.704318E-4, + -5.1863317E-4, + -0.008789665, + 0.010075669, + 0.010522689, + -0.0031645724, + -0.012918562, + -0.016531987, + 0.0064796656, + 0.0018039101, + -0.009055386, + -0.03737853, + 0.01842239, + -0.007854594, + 0.008834201, + 0.005421504, + -0.0029775405, + -0.005482885, + 0.013940926, + -0.009120359, + -0.012452799, + -0.04002777, + -0.009645443, + 0.011154521, + 0.012274734, + 0.014288116, + 0.018786749, + 0.009083132, + -0.017656442, + 0.0101056965, + -0.01075366, + -0.02058281, + -0.030111667, + 0.014785989, + -0.004935382, + -0.0016810375, + -0.014439073, + -0.021198163, + -0.026751166, + -0.023496788, + -0.012788172, + 0.020688273, + -0.004499626, + -0.008285916, + 0.01900949, + 0.021850571, + -1.8443296E-5, + -0.033186797, + 0.003255496, + -0.01150574, + -0.005708687, + 0.025867712, + 0.01787248, + 0.0023721005, + -0.008462727, + 0.004652994, + -0.019971296, + 0.010364613, + -0.03148477, + 0.033923224, + 0.002875484, + 0.008657301, + 0.015346976, + -0.028940834, + 0.015266645, + -0.014914318, + -0.017487505, + 0.0029116005, + -0.018777868, + 0.01350604, + 0.007169555, + 0.004001633, + -0.008412236, + -0.02709021, + -0.020705178, + 0.01583136, + 0.002593732, + -0.01054841, + 0.017074082, + -0.010838329, + 0.025694892, + -0.010820791, + 0.014595062, + 0.016663898, + 0.019121222, + 0.020788496, + 0.028639562, + -0.030240623, + -0.0040611136, + 0.0018314276, + -0.0010067808, + -0.011510024, + 0.012416587, + -0.023248674, + -0.007859614, + 0.007654179, + 0.007226558, + 0.0057927445, + 0.0036415919, + -0.0037150062, + 0.0033224043, + -0.009151076, + 0.013075125, + 0.031503107, + -0.0011012527, + -0.008259927, + -0.0018208248, + 0.011366884, + -0.014692073, + -0.015795367, + -0.009733465, + -0.017329197, + 0.0085381325, + 0.008116346, + -0.021577964, + -0.013207921, + 0.029417446, + 0.007756703, + 0.004960653, + 0.015846882, + 0.012315593, + -0.005418788, + -0.013776419, + -0.002935352, + 0.0059382403, + -0.0020896154, + -2.0411206E-4, + 0.023422431, + -0.0318115, + 0.0037474039, + -0.004529691, + -0.0037917583, + 0.033289902, + 0.005710212, + 0.010319333, + 0.012559702, + 0.04416108, + -0.007218733, + -0.001296914, + -0.022475889, + 0.020719012, + -0.013128832, + 0.028649393, + 0.0028989099, + 0.0074931635, + -0.015653452, + 0.011615441, + 0.008232684, + -0.0024592176, + -0.0022132604, + -0.01734699, + 5.000478E-4, + -3.5016393E-4, + -0.021968665, + 0.015444717, + -0.0049958145, + -0.012710807, + -0.014840466, + 0.0035483271, + -0.018195877, + 0.025417147, + -0.006523475, + -0.011478813, + -0.01442877, + -0.037053853, + -0.013468733, + 0.021386964, + -0.032758955, + -0.0031355515, + -0.0018614581, + 0.0011211378, + 0.015770463, + -0.025579806, + -0.0019180364, + 0.0154629275, + -0.019139512, + 0.010664352, + 0.011885098, + 0.012215771, + -0.008100221, + 0.0064016166, + 0.004464564, + -0.0012798317, + 9.6376774E-5, + 0.030542128, + -0.0078099784, + -5.704213E-4, + -0.0032390524, + -0.015791027, + -0.0029328743 ], - "paletteEmbedding": [ - -0.08503966, -0.03311923, 0.033253245, -0.028673505, 0.044511035, - -0.08756643, 0.034982175, 0.006150648, -0.020484276, 0.015768997, - 0.026482131, 0.0049166237, -0.023934282, -0.0029398652, -0.050184254, - -0.009103722, -0.068211555, 0.017990565, 0.005046406, 0.017195167, - -0.0029061234, -0.013770873, 0.021913437, 0.010474222, -0.0159134, - -0.0069124433, 0.0078413095, 0.05708501, 0.042939268, 0.032978468, - 4.1093648e-4, 0.0093254475, -0.04970848, -0.023064552, -0.011525897, - -0.066287085, -0.06116216, -0.013502323, 0.030278442, 0.03439424, - 0.07664361, 0.06408692, 0.021296063, 0.010341932, -0.028094549, - 0.022940943, -0.01878924, -0.014756896, -0.021158883, -0.016706156, - -0.0428991, 0.007499874, -0.01988471, -0.003664967, -0.003160132, - 0.0086378995, 0.028539455, -0.014165943, -0.06449543, -0.037834533, - 0.009134166, -0.029177878, 0.01156404, -0.030357948, 0.024951931, - 0.0024373226, -0.06645596, 0.023203695, 0.023402609, 0.011100102, - -0.009838092, 0.014944947, -0.0017927862, -0.012649484, 0.0062458604, - 0.010112055, 0.0247693, 0.052169427, 0.012424902, -0.030738235, - 7.603908e-4, -0.03824949, -0.053858813, -0.004833584, 0.043773882, - -0.0019160479, 0.020321079, 0.006462407, -0.03311842, -0.00390677, - 0.024578884, -0.017406417, 0.02778563, -0.014284293, 0.01694513, - -0.017553067, -0.021722676, -0.049446147, -0.0039845123, -0.012060712, - -0.020150205, -0.01014184, 0.031850405, -0.005216414, 0.018849477, - 0.01836155, -0.06920488, 0.022186777, 0.004995532, 0.030361194, - -0.031448822, 0.060606882, -0.019268855, 0.013766587, -0.029328914, - -0.0059519657, 0.046779435, -0.00919911, -0.01455176, -0.02702092, - -0.016130978, 0.007197433, 0.01893864, 0.0041461624, -0.0055841506, - 0.0457037, -0.026365979, -0.033742007, -0.012714093, 0.012984593, - -0.023457468, -0.0069943536, 0.013393242, 0.021922668, 0.029964909, - 0.0046296134, -0.052920997, -0.020313287, 0.010763259, 0.054398354, - 0.02249432, -0.011208389, 0.036657546, -0.040186048, -0.002130209, - 0.039990682, -0.05387623, 0.0016246083, -0.0473563, 0.0025756494, - 0.024901824, -0.009716272, -0.016840706, -0.01185974, 0.006015357, - -0.08189164, -0.004287187, 0.07812729, 0.010544988, -0.09440408, - -0.05526881, 0.0223279, 0.07720332, -0.03917644, 0.0487038, - 2.3316297e-4, 0.010573204, 0.001280754, 0.049334113, -0.0017638952, - 0.013845361, -0.004633164, -0.03934552, -0.020548606, 0.01766445, - 0.005875883, -0.03415842, -0.023136724, -0.0050835116, -0.002356818, - 0.0057294765, 0.024476273, 0.0022393605, 0.058159024, 0.007848009, - 0.011476076, -0.018531607, -0.01114229, -0.013576507, 0.023795763, - 0.012623304, 0.004667446, 0.004751911, -0.051193982, 0.043349255, - 0.054813813, 0.016682114, 0.013027061, 0.037795912, 0.002923714, - -0.059019033, 0.0112113105, -0.011939763, -0.03412728, -0.019897096, - 0.026615841, 0.074832045, -0.007275097, 0.039539408, 0.014375432, - -0.09442574, -0.022231504, 0.02388198, -0.022919012, 0.0075459396, - -0.02555801, -0.022671634, 0.062544584, -0.04407286, -0.011716575, - -0.04697639, 0.037455406, 0.0043718047, -0.05480827, 0.02974051, - 0.007266864, -0.04881015, -0.029218793, -0.010276318, -0.018826362, - 0.030881962, -0.043972556, -0.044953424, -0.047479153, 0.0031529937, - -0.013773044, -0.0035045627, -0.013976136, -0.013046409, 0.05293676, - -0.0068885842, -0.007292714, -0.06540214, -0.022231948, 0.0058379923, - 0.07379185, 0.06307313, -0.02712661, -9.2636154e-4, -0.010184928, - 0.035116933, 0.018013988, 0.013774542, 0.02535177, 0.046495732, - -0.010485891, 0.015553805, 0.05034228, -0.005847825, -0.039918207, - -0.0021302684, 0.0071743587, -0.05969, 0.03437174, 0.042690422, - 0.01712357, 0.0124549065, -2.2088809e-4, -0.004771612, -0.030191587, - 0.01127269, -0.07849004, 0.031997222, -0.032116905, 0.0031836254, - -0.088217355, -0.033643987, 0.0423585, 0.041779164, -0.030798232, - -0.035252668, -0.05929622, -0.038489424, -0.051967546, -0.002949267, - 0.06701195, -0.0050606304, -0.035564672, -0.043902382, -0.030041872, - 0.05453868, 0.009990988, -0.024150921, 0.00799355, 0.058555532, - -0.02369564, 0.038803667, 0.04962774, -0.026574975, -0.022921747, - 0.026481284, -0.039117515, 0.016486041, -6.3108816e-4, 0.058349356, - -0.05443529, 0.029388139, 0.0063527753, -0.016460454, -0.006305276, - 0.035203457, 0.0010520363, 0.063432164, 0.018674256, -0.10579324, - 0.010290523, -3.8218233e-4, 0.004657224, 0.02170854, -0.053090714, - -0.014545577, 0.0066806176, 0.02834341, 0.016913358, -0.039307997, - -0.02138051, 0.0017986896, 0.0055721016, 0.092486106, -0.0020268154, - -7.5614266e-4, -8.6404604e-4, -0.015504344, 0.013770136, -0.059842072, - 0.05015812, 0.007040949, -0.008129046, -0.012786637, 0.0060433787, - 0.010830235, -0.02132574, -0.06772104, 0.0037878498, -0.009367375, - -0.008414872, -0.014378342, -0.007238054, -0.008544015, 0.02801364, - 0.054234363, -0.033902865, 0.049492687, -0.031113556, -0.034222707, - 0.046155367, -0.0038478686, 0.04349103, -0.0316453, -0.026307207, - 0.0722649, -0.053284585, 0.00267755, 0.04660096, 0.055050824, - 0.01345314, -0.031589672, -0.064511344, 0.019275583, 0.045969777, - -0.021836547, 0.0058645853, 0.033707295, -0.054879867, 0.030184016, - -0.0025805125, 0.006335547, 0.009259108, 0.01810989, -0.0015538706, - -0.03747402, 0.035721272, -0.003246443, -0.027782353, -0.02588229, - -0.037719894, -0.011640363, 0.019063557, 0.027133105, 0.026567321, - -7.815046e-4, 0.07545544, 0.056359734, 0.031375926, -0.087987065, - -0.004743093, 0.0481705, 0.017384473, 0.019955855, 0.01951865, - 0.040124953, -0.032691788, -0.003350246, -0.03324222, -0.005837164, - -0.04079001, 0.007738228, 0.01787691, 0.013005889, -0.055063587, - 0.0042040977, 0.035935055, -0.0058707846, -0.008445979, -0.036792345, - -3.2378527e-4, 0.013152772, -0.00307367, -0.06566139, -0.0067266957, - 0.059564658, -0.039117794, 0.019113123, -0.004288496, -0.0030770195, - -0.021095635, 0.0028162336, 0.006707134, 0.0033791834, -0.035348974, - -0.049562786, -0.04209152, -0.018202081, -0.013744869, -0.013602243, - -0.013746373, 0.029219532, -0.028516648, -0.0010679839, 0.041137695, - -0.038452998, -0.014610279, -0.052246306, 0.023180459, -0.051590335, - -0.013984699, 0.056115203, -0.0056729005, -0.010620769, 0.008037305, - -0.009676401, 0.006108672, 0.0029669146, 0.010164917, -0.03535173, - -0.021355042, 0.0043507414, 0.032135885, -0.03975205, -0.060702503, - 0.006042932, -0.004258734, -0.024874916, 0.029520398, -0.02619549, - -0.039359808, -0.037910152, 0.025602885, 0.012654287, 0.036985256, - 0.029711131, 0.021580352, 0.009269649, 0.020852279, -0.039388202, - 0.017563488, -0.016179943, -0.004631218, -0.0294022, -0.0017530761, - 0.019407902, -0.011518244, 0.0021910048, -0.049644385, -0.049427263, - -0.012633389, 0.0039347243, -0.0146704065, -0.033815663, -0.053229097, - 0.0059781256, 0.053834084, 0.014587652, -0.00534908, 0.063141584, - -0.03677689, 0.0012484213, 0.004747644, -0.028035384, -0.014756863, - -0.03815583, 0.00961395, 0.009576989, 0.07071414, 0.026049454, - 0.022940455, -0.018565679, 0.029756235, 0.020561896, -0.015230719, - 0.021892402, -0.03576359, 0.019929852, 0.011422889, -0.039346475, - 0.018271236, -0.02169185, 0.008648102, -0.031285174, -0.031281386, - 2.8751694e-4, -0.022037262, 0.054739, 0.0077729356, 0.0030618722, - 0.040887464, 0.017731542, -0.0048534977, 0.051957395, 0.0052368036, - -0.016863054, 0.019596552, -0.0038550482, 0.009304182, -0.050146405, - 0.015671926, 0.0032860027, -0.053113036, -0.011291596, -0.05017, - -0.0627309, -0.05038269, 0.049827456, -0.02049372, 0.018041007, - -0.0037063954, -0.037286732, 0.017315056, 0.02180659, 0.0050793136, - -0.06463603, -0.010905481, -0.012215293, -0.07037915, -0.02850142, - 0.008792935, -0.033169955, -0.011698745, 0.034764808, 0.0029720035, - -0.0046428097, -0.034205392, -0.009978892, -0.01463218, -0.039218754, - -4.761544e-4, 0.002920304, -0.02406311, 0.0065199044, 0.04651228, - 0.0027129885, 0.002714025, 0.016380766, -6.405614e-4, 0.012367952, - -0.019126592, -0.0035559759, 0.009262354, 0.028938746, 0.023173954, - -0.007833101, 6.9172535e-4, 0.05459328, 0.040600922, 9.802035e-4, - -0.043058492, -0.009101164, -0.015036678, -0.043166377, -0.04924129, - -0.009611884, -0.011536148, -0.05153045, -0.0014354218, -0.028575972, - 0.017157776, -0.009203287, 0.042959552, -0.012088221, 0.003414244, - -0.047775116, -0.022365516, 0.024118382, 0.018060623, 0.012529724, - -0.082990915, -0.0268707, 0.022478938, -0.03921585, -0.008801987, - -0.04089461, 0.01758843, -0.0051834625, 0.026624458, -0.0044186097, - 0.017090337, 0.0024203928, 0.03203662, -0.0077491226, 0.04430249, - 0.036397737, 0.029708972, -0.03994876, 0.026204398, 0.07448636, - -0.002142128, -0.054524522, 0.0037880242, 0.009124606, 0.01069728, - 0.03220624, -0.029198186, 0.015824046, -0.03209427, 0.003199217, - -0.008460601, 0.017665345, -0.014948049, -0.0040034284, -4.1111e-5, - -0.002371109, 0.041027635, 0.0065403003, 0.012863637, 0.0040134555, - -0.020340217, -0.033040855, 0.015923163, -0.03917485, 0.024737142, - -0.0055945055, -0.0345974, 0.004370117, 0.0058916556, -0.055574547, - 0.019578606, 0.05797927, -0.023223078, 0.023203824, -0.074328505, - -0.01558105, 0.06879494, 0.037342135, -0.01142418, -0.019701526, - 0.0010468223, 0.022009017, 0.025460778, 0.024600022, 0.035597395, - -0.025619112, -0.038977087, 0.030901024, -0.055158, -0.054399386, - -0.011216134, 0.032704275, 0.017526688, 0.058045216, -0.009487605, - -0.0056948406, -0.049849667, 0.055490036, 0.03595356, 0.05877462, - -0.07704851, -0.045177434, -0.0066786995, 0.0010528333, 0.05605339, - -0.062033586, -0.002178966, 0.030089974, -0.0045118253, -0.038276818, - 0.013458838, -0.007873642, -0.035672907, 0.025858743, 0.029140105, - -0.028732369, -0.03386695, 0.0028414025, -0.004183127, -0.040534258, - 0.059641145, 0.01744044, -0.028542591, -0.0085874405, 0.01383536, - -0.04154892, -0.0034964068, 0.017072225, 0.045734275, -0.0031676018, - 0.0112683745, -0.033328675, 0.012496999, 0.0124633275, 0.018037379, - -0.011374938, 0.0480834, -0.088311546, 0.017880954, -0.019960962, - 0.020028861, -0.01906179, -0.012587053, -0.0029491552, 0.036617897, - 0.013372547, -0.006148245, -0.015185639, -0.018198894, -0.021250723, - 0.025081959, -0.01247823, -0.0012347627, -0.020333847, 0.03455974, - 0.023756504, -0.0062491857, 0.008115176, 2.8977985e-4, -0.00818508, - 0.05178013, -2.2370723e-4, 0.027251415, 0.07603148, 0.024105798, - -0.029843394, 0.015246175, -0.027811835, -0.048342623, -0.0050619454, - 0.014244717, -0.057900306, 0.030109027, -0.050916974, 0.019905075, - 0.0017352237, 0.018958876, -0.012093729, 0.087150455, 0.015671285, - 0.056190163, -0.023801208, -0.005113238, 0.011420494, 0.04853273, - 0.0017102335, 0.022955447, 0.00309341, -0.048467625, 0.011585243, - -0.018416654, -2.798217e-4, -0.058899473, 0.011427636, -0.029680729, - 0.020579956, 0.03345182, 0.013947903, 0.023520004, -0.017139463, - -0.019293709, 0.0155378, 0.015573977, 0.04266472, -0.0010415805, - 0.0217198, 3.8920916e-4, 0.060259745, -0.017175501, 0.034064505, - -0.0146745825, 0.0015559134, -0.059504043, 0.011555805, 0.040879082, - 0.022320542, 0.037230678, -0.030621994, 0.028797425, 0.01748645, - 0.043669626, -0.02226834, 0.0093365135, 0.016010474, 0.0071327053, - -0.011308238, -0.05819373, -0.022606736, 0.007469937, -0.015904605, - 0.026738623, -0.009811457, 0.0048351567, -0.02550054, -0.03942337, - -0.0042036097, -0.0011353386, -0.021238644, -0.007034152, -0.008340312, - 0.028184883, 0.005460104, -0.008230687, 0.03321234, -0.033868447, - -0.028466921, -0.01684795, -0.0063164867, -0.036581147, 0.002359592, - -0.05363784, 0.01287191, 0.031161714, 0.004404097, 0.018459503, - 0.008817045, -0.065730676, -0.04527496, -0.015624242, 0.0197578, - -0.0225241, -0.041117594, -0.074626766, -0.0060968525, 0.032226164, - -0.042097006, 0.053020816, 8.749976e-4, 0.012077308, -2.446729e-4, - -0.057322603, -0.0394053, -0.028777098, 0.0042620185, -0.017155416, - 0.029410802, 0.033071004, -0.011642839, -0.00961399, 0.0042106467, - -9.811519e-4, -0.03362874, -0.0063999477, -0.015886527, -4.791367e-5, - -0.004611667, -0.018593743, 0.004522386, 0.0106817875, 0.021558978, - 0.012004522, 0.013027648, -0.031460118, -0.026839085, -0.017404621, - 0.004262553, 0.018364556, -0.07696211, -0.0023037174, 0.035817053, - -0.03476885, -0.00845839, -0.0065739388, -0.051436085, -0.025985263, - 0.029688314, -0.079190366, -0.028053438, -0.014436058, -0.031357314, - 0.052975062, -0.026575157, 0.018283656, -0.044606637, -0.0044221417, - 0.041723236, 0.041664757, 0.029004429, -0.010791508, 0.00807968, - 0.027847452, 0.03571669, 0.025015375, -0.006774965, 0.022962952, - 1.2827522e-4, 0.008415036, -0.01502807, 0.010212921, 0.020176973, - 0.004717046, 0.008791791, -0.015509927, -0.03129883, 0.036783095, - 0.0060146507, -0.029002601, 0.011208545, -0.02005648, 0.050731465, - 0.013196538, 0.04372776, 0.015204094, 0.011611053, -0.011995531, - -0.0042169685, 6.7456823e-4, -0.006119625, 0.06949911, -0.04249765, - -0.039510533, 0.05108363, -0.05897637, -0.021560574, -0.016125606, - -0.018453533, -1.3594134e-4, 0.0012102101, 0.0133083835, -0.021844655, - -0.009676192, -0.046155334, 0.045844667, -0.027266737, 0.0021715704, - -0.006882924, 0.02735076, 0.002684853, -0.033163473, 0.0032385548, - -0.020683005, 0.007180886, -0.07661678, 0.046249177, -0.031835742, - -0.024043063, -0.029932728, 7.873678e-4, -0.017124835, -0.04883373, - -0.0570843, 0.010015623, -0.014466838, 0.024966775, -0.0139767025, - 0.01826267, 0.015739607, -0.010271465, -0.024615139, 0.015854524, - -0.014553972, -0.01006529, -0.0078203045, -0.013531974, 0.01854925, - 0.027537007, -0.014020816, 0.042572748, 0.0056412444, -0.008318182, - -0.022395158, -9.423205e-4, -0.042912494, -0.00381488, 0.026859254, - -0.06667958, -0.040262364, 0.03823272, 0.033663627, 0.022265779, - -0.029759757, -0.021091895, 0.033198513, 0.01818791, -0.0132388715 + "paletteEmbedding" : [ + -0.047706183, + 0.004958375, + 0.06683082, + 0.006419515, + -0.06789845, + 0.034216017, + 0.0015286438, + 8.622436E-4, + -0.0823692, + 0.0069230697, + -0.0068321666, + -0.011501221, + -0.015718961, + -0.025378494, + -0.022223642, + -0.029172812, + -0.01859357, + -0.012137545, + 0.02007676, + -0.025196066, + 0.03779885, + 0.0062922942, + -0.019213304, + -0.034162413, + -0.02031009, + 0.011795902, + -0.0017517464, + 0.04409133, + 0.031678215, + -0.022894248, + 0.027534837, + 0.02515005, + -0.0018332746, + 0.011758919, + 0.025870284, + 0.014052256, + -0.052899506, + 0.028998047, + -0.040380567, + -0.0046208813, + 0.038846754, + -0.014963226, + 0.013813036, + 0.035573293, + 0.082507096, + 0.06546872, + 0.034720093, + -0.043796357, + 0.0043517463, + 0.015448945, + 0.020821266, + 0.014111026, + -0.012892894, + -0.018101709, + -0.026714267, + -0.012921838, + 0.070501335, + -0.025144588, + 0.0662133, + 0.022291228, + -0.003523213, + -0.040507916, + 0.058949627, + -0.020604165, + -0.05976994, + -0.018475384, + -0.0017953061, + -0.05057146, + -0.028438855, + 0.020121625, + -0.048774187, + -0.0069051427, + -0.0053022746, + 0.026574574, + 0.053014703, + 0.0013434142, + 7.167251E-4, + -0.0632122, + 0.011863366, + -0.0385533, + 0.009438391, + -0.029132875, + -0.02430599, + -0.029649656, + -0.055174727, + 0.015869012, + -0.02855033, + -0.01080436, + -0.021012137, + -0.060605537, + -0.012642828, + -0.010876327, + -0.0062907278, + -0.055140518, + -0.014626399, + 0.0036872122, + 0.015061342, + -0.053321026, + 0.045153297, + -0.003112394, + -0.02935126, + 0.016214913, + 0.04912868, + -0.022303667, + -0.028799742, + 0.027260073, + 0.03207477, + -0.005396117, + 0.053972706, + -0.024020627, + 0.055140723, + -0.04349601, + 0.0011538153, + -0.0074003995, + 0.058190387, + 0.026812734, + 0.0022165005, + -0.01605707, + -0.030537292, + 0.027012512, + -7.65478E-4, + 0.042404447, + -0.049701005, + 0.03731014, + 0.023282414, + 0.0346709, + -0.034434628, + -0.01346284, + 0.02526681, + 0.0026935958, + 1.0786616E-4, + 0.04155483, + 0.011432847, + 0.041873157, + 0.026269348, + -0.011528893, + 0.0044940948, + -0.016290948, + -0.0421536, + -0.0036529214, + -0.0014065, + 0.0044801757, + 0.034535747, + 0.014899229, + 0.052711572, + 0.02715912, + -0.018137943, + 0.03450031, + 0.029015178, + 0.018980276, + 0.011245025, + -0.019215012, + 0.015932022, + -0.01772341, + 0.006513491, + 0.008705711, + -0.030975368, + -0.03658296, + -0.003119529, + -0.04300452, + -0.026481286, + -0.01149413, + -0.012638013, + 0.006356286, + -0.010590014, + -0.0020362097, + 0.015193363, + 0.03095389, + 0.045785554, + 0.05676289, + 0.018502295, + -0.028545858, + -0.014724066, + 0.038969077, + 0.027694214, + -0.015271707, + 0.031213574, + 0.05018235, + -0.011752726, + 0.022823298, + 0.020404961, + 0.03326166, + 0.043187376, + 0.04062802, + 0.0059782057, + -0.042623203, + -0.0075990083, + 0.047549732, + -0.031112308, + 0.025774987, + -0.050885, + 0.009915613, + 0.008808281, + 0.012626373, + -0.049305685, + -0.02427046, + -0.04838456, + 0.0013834034, + 0.042975504, + -0.06945096, + 0.020128524, + 0.053841986, + -0.021853136, + 9.2824595E-4, + -0.018543687, + -0.036211036, + -0.010060653, + 0.02145138, + 0.029773597, + -4.8425962E-4, + -0.03188137, + 0.043958116, + -0.006780849, + 0.017490743, + 0.009625387, + -0.047908206, + 0.046326715, + 0.062021356, + -0.05171464, + 0.013616637, + 0.034694325, + 0.027936218, + -0.008654689, + -0.025941595, + -0.013617166, + 0.045822784, + 0.0012135094, + 0.015177181, + -0.029968949, + -0.006044063, + 0.0039157965, + 0.045030568, + 0.02314621, + 0.030340519, + -0.07225929, + 0.03075, + 0.00647888, + 0.050578643, + 0.023440788, + 0.072559714, + -0.046890777, + 0.023693591, + -0.043602433, + 0.05287826, + -0.015762413, + -0.057176236, + -0.009512768, + -0.0038965086, + 0.03477972, + 0.007977433, + -0.021278106, + -0.0034770488, + -0.0103282835, + -0.038481325, + 0.060166836, + -0.014807344, + 0.026945703, + -0.022117587, + -0.047593653, + -0.047688577, + -7.4896234E-4, + 0.015304233, + 0.02554737, + 0.04437636, + -0.056773476, + -0.03070711, + 0.025840066, + 0.05470862, + -0.008917008, + 0.043917324, + 8.886422E-5, + 0.046850182, + 0.0066924104, + 0.03264034, + 6.688599E-4, + -0.020776695, + 0.066911966, + -0.054922134, + -0.032804918, + 0.004318262, + 0.0020625764, + -0.03743777, + -0.007523632, + -0.037345216, + 0.002318685, + -0.018183812, + 0.022901215, + -0.013277636, + 0.030948635, + -0.008756674, + -0.037050035, + 0.02411679, + 0.016474787, + 0.008468411, + 0.0029835904, + -0.036024287, + 0.03573257, + -0.036757708, + 0.06047547, + 0.0013878822, + -0.015485654, + 0.013875429, + 0.0017716718, + 0.014151199, + -0.068197064, + -0.014876467, + -0.053763974, + 0.016909366, + -0.0035504026, + 0.06670536, + -0.010903006, + 0.04215025, + -0.015413301, + 0.007836814, + 0.02970704, + -0.012099701, + 0.046942357, + -0.033685267, + 0.021902658, + 0.022680398, + -0.019972526, + -0.039161384, + -0.0144926105, + 0.016912766, + 0.053134985, + 0.022331255, + 0.0072682095, + -0.02917244, + -3.43583E-4, + -0.015725365, + 3.2777988E-4, + 0.010140556, + 0.014670632, + 0.02482074, + 0.030840661, + 0.04690844, + 0.072633885, + 0.038080804, + -0.008454483, + 0.015823921, + -0.026616234, + 0.01859408, + 0.024536768, + 0.0026830742, + 0.069989935, + 0.00693818, + -0.009353378, + 0.025792005, + -0.0031515083, + 0.0029863527, + -0.029550847, + 0.033435095, + 0.042651795, + -0.004772188, + -0.008376652, + -0.019270761, + 0.033135578, + 0.002158865, + -0.018509233, + 0.057044968, + 0.011006372, + -0.011924645, + 5.933877E-4, + 0.008322564, + 0.025607526, + 0.056450646, + 0.00313811, + 0.014293369, + -0.025761917, + -1.03005055E-4, + -0.019179711, + 0.009769436, + -0.019780481, + 0.024305025, + 0.038198132, + -0.068072766, + -0.033322345, + -0.007659926, + 0.019150153, + 0.0066504776, + -0.0363192, + -0.020868354, + -0.03478647, + 0.019338546, + 0.027285429, + 0.022081157, + -0.008460545, + 0.0016322031, + -0.023603376, + 0.013746718, + 0.014307264, + 0.02691756, + -0.0023021435, + -0.04481896, + 0.017509509, + -0.012789311, + 0.023351023, + 0.04372871, + -0.027987743, + 0.050091397, + -0.009019831, + 0.0075156465, + -0.038751364, + -0.015655687, + -0.02436287, + 0.019014835, + 0.036845755, + 0.002073586, + 0.05755196, + -0.013728718, + -0.026682787, + -0.048370793, + 0.022990389, + -0.013971592, + 0.044254452, + 0.00989405, + 0.026059233, + -0.008347917, + 0.023807973, + -0.054936897, + -0.024230227, + -0.031874664, + -0.007453448, + -0.021643579, + 0.005685341, + -0.019019037, + -0.048951555, + 0.025323339, + 0.0044224346, + -0.0036836953, + 0.024788933, + -0.0060912943, + 0.04471554, + 0.015927779, + -0.032418557, + 0.040600974, + 0.0033852987, + -0.0394413, + -0.011994386, + 0.039711703, + 0.0118406, + 0.038690064, + -0.01730105, + -0.014439456, + -0.042854358, + -0.0067150765, + 0.050084863, + 0.034409646, + -0.0068129725, + -0.04233799, + -0.0013697118, + 0.01281983, + 0.023816342, + -0.006458834, + -0.0067635877, + 0.069264606, + -0.010384818, + 0.024006488, + 0.06435036, + -0.023665907, + -0.022671815, + 0.028610563, + -0.08033868, + -0.01161107, + -0.04979161, + 0.070036635, + -0.0020652553, + 0.011171745, + 0.018637227, + 0.005337402, + -0.03588315, + -0.0018230459, + -0.014191822, + 0.00427596, + -0.033104252, + 0.005560566, + -0.0050191064, + 0.0068350285, + 0.019871471, + -0.01839742, + -0.0078095403, + 0.0448526, + 0.012472168, + 0.0014327526, + -0.013669514, + -0.015358836, + 0.015745228, + 0.0507388, + -0.019568916, + 0.004052842, + 0.003997791, + 0.021967271, + -0.022620128, + -0.0056065246, + 0.014365112, + 0.037895087, + 0.012505186, + -0.050463688, + -0.018634347, + -0.00362967, + 0.068781525, + -0.01757889, + 0.0053432244, + -0.011825943, + -0.021783954, + -0.020365143, + -0.061398745, + -0.029205028, + 0.03983765, + -0.029399658, + -0.07462716, + -0.05126821, + 0.016057944, + -0.007695891, + -0.008770467, + -0.040071025, + 0.0097002955, + -0.04558085, + -0.05029319, + -0.003491653, + 0.019963514, + -3.237265E-4, + -0.08451706, + 0.047886077, + -0.034817107, + -0.0017545363, + -4.1195942E-4, + -0.003985166, + 0.0010633714, + -0.04385288, + -0.008926426, + 0.0047392207, + -0.036008462, + -0.028226582, + 0.06232177, + 0.061772805, + -0.030260244, + 0.0267143, + 0.027129848, + -0.02742314, + -0.05176355, + 0.06782772, + -0.017070612, + -0.02768752, + 0.009668295, + 0.05124156, + -0.010401463, + 0.011908486, + 0.014978096, + 0.001683917, + 0.018466488, + -0.01190119, + -0.004235075, + 0.010461482, + -0.013402156, + -0.04894819, + 0.07931181, + -0.0031060453, + -0.018083813, + -0.006776069, + 0.0042980034, + -0.009992765, + -0.026832977, + 0.044448566, + -0.04531418, + 0.0046066674, + 0.027300736, + 0.022772176, + -0.014465691, + 0.031472623, + 0.017400976, + 0.0066535175, + 0.024867926, + -0.011590834, + 0.0770508, + -0.024449531, + 0.022471646, + 0.021110559, + 0.023649057, + -0.007046986, + -0.041258994, + 0.021868816, + -0.036625154, + 0.014926005, + -0.0249776, + -0.04519359, + -0.05578133, + 0.015244226, + 0.015766721, + -0.045252424, + 0.019188413, + -0.0026968042, + -0.03681475, + -0.016300576, + -0.035005115, + -0.0035271312, + -0.007542756, + -0.052837115, + -2.8975104E-4, + -0.025530217, + 0.10664096, + 0.017113576, + 0.05054848, + 0.011109076, + 0.011308463, + 0.04144006, + 0.017498866, + 0.03507607, + -0.022051726, + 0.048478518, + -0.019085314, + 0.0063244645, + 0.021113098, + 0.032765895, + -0.008421049, + -0.019068835, + 0.057617877, + -0.023447191, + -0.012161955, + -0.031306837, + -0.030707972, + -0.0057247267, + 0.016176345, + -0.004910085, + 0.0057915347, + 0.020428862, + 0.032980584, + -0.0024971273, + -0.0010182748, + -0.037238922, + 0.0024228499, + -0.0022341767, + -0.060296558, + -0.04276944, + -0.008321049, + 0.016798062, + -0.028576061, + 0.010064682, + 0.0042550596, + 0.0066374615, + -0.021399956, + 0.016874209, + 0.0053467243, + 0.026216755, + -0.03512249, + 0.017852215, + -0.014046066, + -1.9973742E-4, + 0.041707624, + -3.178932E-4, + -0.043763388, + -0.018796656, + -0.049186684, + -0.01373211, + 0.017108802, + 0.052392695, + -0.023603603, + -0.005979617, + -0.033848323, + -0.019044513, + -0.007550784, + 0.002578577, + -0.04456807, + -0.0555859, + -0.017297931, + -0.04095587, + -0.014198527, + 0.015676798, + -0.0428175, + -0.05832953, + 0.0017332867, + 0.025249787, + -0.0041649225, + 0.04564347, + -0.057769608, + -0.04784456, + -0.020914864, + 0.038213562, + -0.025756655, + 0.0034419438, + 0.025337085, + 0.043242466, + 0.007310053, + -0.024720056, + 0.052359067, + -0.023838637, + -0.013536793, + -0.043885108, + -0.0084034735, + 0.035144754, + 5.8143685E-4, + 0.01652356, + 0.010914357, + -0.0110384505, + 6.774547E-4, + -0.016148852, + -0.016968885, + -0.004818526, + -0.001636143, + -0.008978994, + -0.024319066, + 0.01599317, + 0.014346526, + -0.012833408, + -0.036964737, + 0.042186026, + 0.011246205, + 0.021225171, + 0.017671615, + 0.018944688, + 0.03290687, + 0.0011341451, + 0.011170326, + 0.014616661, + 0.02485241, + -0.02711781, + -0.012787212, + -0.005926619, + -0.07811306, + -0.037939366, + -0.0026722604, + -0.023640646, + 0.04824926, + -0.012131314, + -0.01926899, + 0.04980945, + 0.006825512, + 0.011302944, + -0.03150418, + 0.10250873, + 0.012631571, + 0.0018910171, + 0.056974627, + 0.02593482, + -0.023433387, + -0.022667041, + 0.0025496504, + 0.07811878, + -0.012169681, + -0.0017955895, + -0.011211153, + 0.04484585, + 0.0130338725, + 0.024069011, + 0.047943443, + 0.01731105, + -0.0018045289, + -0.0387647, + -0.00411074, + -0.014132596, + -0.06362954, + -0.02109453, + -0.017784005, + 0.0066046705, + 0.014209208, + -0.002771793, + -0.031631906, + -0.010849905, + -0.031209368, + 0.023015806, + -0.009979032, + -0.031083679, + 0.030271584, + -0.002240158, + 0.038303334, + 0.034851484, + -0.028995898, + 0.0082602585, + -0.0119257895, + 0.042845845, + 0.101731084, + -0.011667535, + -0.0021432487, + -0.004011955, + 0.01985354, + 0.021141745, + -0.0063044364, + -0.021791741, + 0.024337577, + 0.024013702, + -0.06858156, + -0.023814185, + -0.022036305, + 0.064124644, + -0.0057969145, + -0.027882295, + -0.02292553, + 0.07398585, + -0.028916156, + 0.02279388, + 0.014562334, + 0.06855347, + -0.06512896, + 0.030062262, + -0.077117935, + -0.006448024, + -0.0064868852, + -0.019496562, + 0.07621199, + 0.019158775, + -0.010630299, + 0.031998456, + 0.047071625, + -0.01541188, + 0.024522875, + 0.01584567, + 0.020150641, + 0.046269618, + -7.892876E-4, + 0.027640235, + -0.0059561008, + -0.02697869, + 0.0735842, + 0.029319666, + -0.08283856, + -0.013173731, + -0.018853627, + -0.025936378, + -0.027310675, + 0.013097119, + 0.0544791, + -0.012543109, + -0.035460476, + 0.029520046, + -0.002231988, + -8.4424036E-4, + -0.013261908, + -0.03224734, + -0.014379144, + 0.02091811, + 0.016864985, + 0.0335707, + -0.012105703, + 0.002459879, + -0.016582781, + -0.003102813, + -0.014728528, + -0.0032649578, + -0.035468698, + -0.019329462, + -0.019688401, + -0.019919699, + -0.044814788, + 0.05325859, + 0.009413944, + -0.013844787, + 0.06608615, + 0.013419278, + -0.02453394, + 1.4490467E-4, + 0.003147128, + 0.007875612, + -0.019727012, + -0.060271747, + 0.07960389, + 0.0031905873, + -0.02848985, + 0.023282468, + -0.04330295, + 0.03797335, + 0.008249291, + 0.0299437, + 0.05122129, + 0.05661531, + -0.010903048, + 0.005842303, + 0.009487373, + 0.008654687, + -0.046474896, + 0.02700494, + 0.006242044, + -0.043752413, + 0.006198433, + 0.008276895, + -0.0016837452, + 0.048663482, + -0.011983322, + 0.022268333, + -0.045026332, + 0.044323854, + -0.021378482, + -0.056608375, + -0.035929292, + -0.020955913, + -0.015403223, + -0.05111455, + 0.0013562036, + -0.030778535, + 0.013436688, + -0.044653796, + -0.05563338, + 0.023307832, + 0.035719946, + 0.005785945, + -0.047822867, + -0.06280329, + 0.019950487, + 0.022596331, + 0.0047728717, + -0.004017505, + -0.004842705, + -0.019440694, + -0.0041715787, + -0.014291479, + 0.031086398, + 0.030903082, + 0.0033528742, + -0.036984876, + -0.024890007, + -0.042655133, + -0.03402755, + 0.022390163, + 0.00406502, + -0.013754191, + 0.008364032, + 0.044923555, + -0.034106694, + -0.05682077, + -0.0018970496, + 0.045689598, + 0.059756454, + 0.015556379, + 0.005474201, + 8.48619E-4, + 0.0036878767, + -0.009773196, + 0.038745496, + 0.06117459, + -0.041632924, + 0.038395345, + -0.020553485, + 0.007273427, + -0.024188032, + 0.018547293, + -0.05399017, + -0.013962211, + -0.011293623, + 0.0634127, + 0.003743867, + -0.04258507, + -0.025268205, + 0.008985042, + -0.014735107, + 0.022827698, + -0.008587319, + 0.032232724, + -0.035811726, + 0.026248721, + 0.013587469, + 0.020886412, + -0.042258576, + 0.01804962, + 0.0017850354, + -0.021913307, + -0.024710147, + 0.027739545, + 0.04726707, + 0.017293062, + -0.05739063, + 0.039303657, + -0.015867433, + -0.020215482, + -0.011852449, + -0.01472469, + 0.06801845, + 0.007798593, + 0.042471737, + -0.01949898, + 0.044273123, + 0.032415755, + -0.008816911, + -0.011274878, + -0.03033352, + 0.03664666, + 0.029686736, + -9.0649433E-4, + 0.06554463, + -0.0177946, + -0.003898911, + -0.0010216554, + 0.0023995982, + 0.017817574, + 9.1255544E-4, + -0.017413713, + 0.047494214, + 0.023151072, + -0.030402556, + -0.043209452, + 0.043807205, + -0.054586157, + -0.01060938, + 0.0065275324, + -0.03490835, + -0.046728898, + 0.0195647, + 0.0032522774, + 0.013739345, + -0.024983294, + -0.017112846, + -0.058071397 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json index cdcc39d75..1d5f325d8 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json +++ b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json @@ -1,1348 +1,5260 @@ { - "description": "images with different subjects", - "createdAt": "2023-11-21T14:25:44.271972Z", - "id": "vwtlblqa", - "document": { - "modifiedTime": "2019-11-02T09:06:12Z", - "display": { - "id": "vwtlblqa", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different subjects", + "createdAt" : "2024-11-14T14:37:56.560672Z", + "id" : "o2eny5un", + "document" : { + "modifiedTime" : "2032-02-29T09:36:29Z", + "display" : { + "id" : "o2eny5un", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Lsp.jpg/info.json", - "linkText": "Link text: DxDsRr9d", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", + "credit" : "Credit line: TPXQJURr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Lsp.jpg/info.json", - "linkText": "Link text: DxDsRr9d", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", + "credit" : "Credit line: TPXQJURr", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#BE1D90", - "source": { - "id": "c8uvtfhf", - "title": "title-JtBhyjTIgy", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#F53850", + "source" : { + "id" : "zhq69pbg", + "title" : "title-nrylbhuzNp", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ { - "id": "subject1", - "label": "Simple screwdrivers", - "concepts": [], - "type": "Subject" + "id" : "subject1", + "label" : "Simple screwdrivers", + "concepts" : [ + ], + "type" : "Subject" } ], - "type": "Work" + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "vwtlblqa", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "c8uvtfhf", - "sourceIdentifier.value": "3PnchmTNPc", - "identifiers.value": ["3PnchmTNPc"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-JtBhyjTIgy" + "query" : { + "id" : "o2eny5un", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "zhq69pbg", + "sourceIdentifier.value" : "TJdU5sqC9R", + "identifiers.value" : [ + "TJdU5sqC9R" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-nrylbhuzNp" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": ["Simple screwdrivers"], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.02402572, 0.01143121, 0.014780764, 0.0031364372, 0.01775214, - 0.0022944754, 0.017857803, -0.018627588, -0.010326939, -0.0032361918, - -0.008569852, 0.006586817, 0.01613218, 1.7598344e-4, 0.0032649331, - -0.016179698, 0.012272515, -0.0012230794, 0.008547159, 0.021162774, - -0.0030785399, -0.008803595, 0.0011379721, -0.02653324, 0.0077741146, - -0.02295517, 0.004829361, 0.02782426, 0.0061233127, 1.3372408e-4, - 0.005170834, 0.0058289533, -0.021848647, -0.0035328935, 0.006108619, - -0.013606182, 0.011066554, 0.0035945037, 0.00720604, -6.3245435e-4, - 0.016876146, -0.0039713546, 0.024636421, -0.007939962, -0.0012756992, - 0.013335284, -0.009518103, -0.010523427, -0.017079443, -0.0069996263, - 0.006061302, -4.9034884e-4, 0.020823011, 0.0029380566, 0.009287414, - -0.013061421, -0.003291264, 0.007467278, 0.018360356, -0.019995945, - 0.027069291, -0.018347234, -0.017579827, -0.016727306, 0.015142338, - -5.573139e-4, -0.0031292827, -0.0067775426, 0.0023027298, 0.0107294265, - -0.011118149, 0.012913096, -0.0018675579, 0.0036404044, -0.015449096, - -0.02151769, -0.015541502, 0.0033490323, 0.02784354, -0.034517124, - 0.021858128, -0.009118171, 0.009349412, 0.01933095, -0.021302858, - 0.017954415, -0.020026896, -0.019849518, 0.030275801, -0.00889145, - -0.0032448026, 0.0018159369, 0.00718847, -0.01400526, -0.010450699, - -0.022232233, 0.0027960667, 0.025067808, -0.023203589, -0.032084994, - -0.038011312, 0.018253954, 0.0047047334, 0.023989208, -0.0032352277, - -0.016856158, 0.033884447, -0.006923741, 0.025723994, -0.01687119, - -0.017293453, -0.0054827365, 0.013839908, 0.018341895, 0.004738886, - -0.017213434, 0.01834431, -0.0053292373, 0.004283665, -0.011087295, - 0.023600692, -0.013769367, -0.0220314, -0.039414994, 0.034819953, - -0.005704843, -0.009062864, 0.024324296, 0.034666862, -0.012023893, - 0.008642597, 0.012702022, 0.0045572477, 0.014965527, 0.004724452, - 0.010420736, -0.03850452, -0.015093989, 0.0043445057, -0.021708515, - 0.0097359475, 0.009352726, -0.024423704, 0.012644743, -0.00719455, - -0.021394044, 7.63306e-5, 0.0010590646, -0.015277101, 0.009639868, - 0.0056313025, 0.023963092, -0.017868504, 0.0103064515, 0.006258295, - 0.014314312, -0.013653033, -0.006826163, 0.030758012, -0.01801476, - -0.020963753, -0.0016248839, -0.003842399, -1.5807872e-4, -0.012717091, - 0.010944273, -0.005948454, 0.008696806, 0.011494812, 0.014765177, - 2.85263e-4, -0.0136345895, -0.012548771, -0.029034443, 0.0033508237, - 0.0044719037, 0.013795726, -0.03674574, 0.022433965, 0.010799646, - -0.013050962, -0.03410093, 0.03228116, -0.008248184, -0.04028511, - 0.0017925795, -0.008460668, 0.0016476674, -0.0134666655, 0.013408256, - 0.0022804693, 0.02679684, -0.031057088, 0.001490641, -0.01423274, - 0.0062442003, -0.0012428802, -0.02658918, 0.021317514, 0.026786737, - 0.008326585, -0.007554625, 0.013021601, 0.02042297, 0.0016798573, - 0.031086154, 0.018501475, -0.0021174168, 1.594353e-4, -0.0030422243, - -0.0017227839, 1.17636024e-4, 7.759781e-4, -0.044068903, 0.0046045217, - 0.008758068, 0.009319414, -0.005124266, 0.012514572, -0.011345277, - -0.004266186, -0.017222967, -0.027718138, -0.0051444704, -0.020746415, - 0.017107436, 0.010061097, -0.019953916, -0.02051731, -8.305629e-4, - -0.0054425085, -0.0019745054, -0.004302265, -0.0031522913, -0.011732342, - -0.0053836214, -0.0019493862, 0.006274572, 0.01595099, 0.003881755, - -0.013417884, -0.005501641, 0.00370015, -0.02980152, 0.016208645, - 0.013982631, -0.008644801, -0.0015442139, 0.005494427, -0.004733513, - -0.008857876, 0.027890917, 0.007904699, -0.01329355, -0.012599782, - -0.057739966, -0.00797723, -0.017242048, 0.030104462, -0.003909698, - -3.0047758e-4, -0.034410655, -0.03237386, -0.02142667, 0.008788878, - -0.0012448061, 0.025964728, 0.026372904, 0.0154133, 0.0022103277, - 0.0029815708, 0.011785606, 0.028489646, 0.0019647654, 0.0030813918, - -0.023175837, -0.008037356, 0.011120067, 0.0047690514, 0.03700923, - -0.010863884, -0.031273067, -0.01729149, 0.027701326, -0.0036320668, - -0.0074298885, -0.004021259, 0.0020915575, -0.016945355, -0.025514498, - 0.016251205, -0.0178312, 0.0023547423, 0.037019443, 0.018142572, - -0.030086126, -0.013663812, 0.003744724, 9.4667275e-4, -0.014067906, - 0.0067659332, -0.016732791, -0.030854773, 0.0058464506, -0.016365778, - -0.029174382, -0.02703569, -0.0012897959, 0.02526458, 0.027932175, - -0.0012388029, -0.01144433, -0.0010679618, 0.01658336, -0.010356232, - 0.0020333573, -0.008255848, -0.041748337, -0.010616403, 0.02204314, - -0.008225318, 0.020054467, -0.003567568, 0.021643281, -0.00517484, - 0.019572243, 0.017787816, -0.0038365978, -0.023988001, -0.0060275057, - 0.0017758276, 0.017038288, -0.013271316, -0.016072586, 0.008293555, - -0.01145538, 0.011676585, 0.004109033, 0.030131713, 0.022504324, - 0.00799861, 0.002277999, 0.02928799, 0.0073386612, -0.0073511307, - 0.012503327, -0.011316456, 0.0074241073, -0.005372623, -0.0018045552, - 0.011509658, 0.008824442, -0.002089262, 0.0015276846, 0.028081125, - 0.012330818, -0.002130886, 0.02293981, 0.013366334, 4.808853e-5, - 0.002866282, -0.020026635, 0.01590772, -0.0011827808, -0.021635737, - -0.009363154, 0.013810148, -0.019494751, -0.004481046, 0.033052266, - -0.010331638, -0.013441217, -0.031256717, 0.012717614, -0.011526588, - -0.010440881, 0.02317747, 8.840558e-4, -0.02624605, -0.01922896, - 0.003592411, 0.008227261, -3.6984617e-5, -0.012155333, 0.02853055, - 0.007630923, 0.027965985, -0.0020642048, -0.021695271, -0.0013897473, - -0.011534079, 0.011061552, -0.025264733, 0.017832512, -0.020290328, - 0.003650035, 0.014752376, -0.0066661825, 0.01448727, 0.010784792, - -0.0071171788, 0.03219045, -0.017070439, 0.017108684, -0.0058010803, - 0.0054837316, -0.022429513, 0.001721884, -0.0036494418, -0.01652248, - -0.0014612655, 0.007872036, -0.0043105143, 0.021872198, 0.00897536, - 0.014201211, 0.010834685, -0.0141598405, -0.005712725, -0.022703111, - 0.0017671337, 0.006584579, 0.028809488, -6.44949e-4, -0.0010003448, - -0.00663826, 0.02265985, -0.008338329, -0.008417113, 0.00435746, - 0.02227755, 0.0068249465, -0.009047871, 0.011926501, -0.008583997, - 0.027567165, 0.0018882386, -4.8010552e-5, 0.013570566, 0.009477909, - -0.0016169206, 0.012938555, -0.0065583973, 0.015200963, -0.0032963725, - -0.009598292, 0.007177344, -0.0031170908, 0.009224483, -0.0018309222, - 0.0041700993, 0.008699608, -0.00935764, -0.0076278998, 0.0023950865, - -0.026672626, -0.017756218, -0.01644427, -4.9285847e-4, 0.010503011, - 0.01488088, 0.015401239, 0.006056045, 0.007923113, -0.017912814, - 0.009445316, -0.0015762405, -0.013219394, -0.0077306493, 0.029128136, - -0.0058651, 0.01790555, 0.029973822, -0.005883222, 0.009391525, - -0.010312482, 0.0033624603, 0.025344668, -0.017995551, 0.008626739, - 0.019545516, 7.1510265e-4, -0.0031545223, 0.011572189, -0.022410117, - 0.011674172, 0.014602986, 0.033317313, 0.0013918771, -0.018925736, - -0.006847122, -0.007969093, 0.004098579, 0.015333001, 0.0074340813, - -0.0037535338, 0.008988749, 0.005095228, 0.029980645, -0.011400659, - 0.039416473, 0.018133285, 0.011603098, 0.013167189, 0.0063947593, - 0.028658442, 0.03914647, -0.013325858, 0.0035976584, -0.007812809, - 0.012708375, -0.028231407, -0.0016851914, 0.008677657, 0.008414198, - 0.03374541, -0.014364764, 0.011504403, -0.0014932625, -0.021396665, - -0.0062937965, -0.0027348574, 0.012213457, 0.014876853, -0.013573113, - -0.017482929, 0.005350646, 0.008741839, 0.0072174203, -0.003656216, - 0.014486301, 0.024971904, 0.0054524615, 0.02158652, 0.010372522, - 0.01907698, -0.017269885, 0.021259304, -0.004059753, 0.002721895, - -0.0014296406, 0.005720569, -0.00209485, -0.018598696, -0.004856343, - -0.008137058, -0.011702126, -0.019729378, 0.018710135, -0.0068709734, - -0.010246686, -0.005273299, -0.011621096, -0.007125677, -0.0044574155, - -0.028848007, 0.0110230185, 0.0059745065, 0.027525153, 0.0038965524, - -0.015981333, 0.010883736, -0.005702572, -0.008063712, 0.0035572818, - -0.03125907, -0.0014523884, 0.026257236, 0.0039205365, 0.001422873, - -0.0029132732, 2.6525382e-5, -0.0026600524, 0.002413326, -0.0013150917, - 3.5518813e-5, -0.034600914, 0.011291296, 0.0060411934, 0.012745508, - -0.014894461, -0.006241612, 0.006606745, -0.009716882, 0.0035678947, - 0.020455373, 0.011994004, -0.013663336, 0.011572271, 0.0060193893, - -0.009957196, -0.004147213, 0.0069744815, -0.004256928, 0.0029313131, - 0.017630447, -0.034786265, 0.0053064316, 0.009789382, 0.015112502, - -0.009738951, -0.0030872992, -0.0049398667, -0.0037463598, 0.0019210259, - -0.0059055258, -0.021733342, -0.0057852985, -0.0031738803, 0.011370651, - -0.0058836844, -0.015110638, 0.002751166, -0.012457478, 0.006979939, - 0.011545849, 0.0073740846, -0.009326904, -0.013043731, -0.008484607, - -0.014912882, 0.03206548, 0.017279567, 0.012323478, -0.0037397805, - -0.02125452, 0.012558895, -0.0032510648, -7.5521617e-4, 0.0152612785, - 0.018730251, 0.0302025, -0.020553745, -0.014471674, 0.0073538213, - 0.018098736, -0.030505562, 0.027466862, -0.009188673, 0.006165747, - 0.0049325586, 0.010288291, -0.0059835124, 0.010331738, -0.008504918, - -0.009623469, 0.025052585, -0.019113155, 0.0107126925, 0.0029787503, - 0.020503202, 0.0027512047, 0.007970888, -0.004380095, -0.007822477, - 9.1023376e-4, 0.02910372, 0.031143507, -4.510738e-4, -0.0077625983, - -0.0332698, -0.019951945, 0.0018406161, 0.003446988, -0.0035706277, - -0.02004069, -0.0026363216, 0.009361259, -0.010390561, 0.008981619, - 0.025711788, -0.008962921, 1.5405488e-4, -3.6353676e-4, -0.008122334, - 0.012198814, 0.0132552525, -0.0043256376, -0.0022430338, -0.0046060025, - 0.019882893, -0.027128324, 0.009935033, -0.011244073, -0.019237975, - -0.010758822, 0.01160662, 0.01780236, -0.0145758465, 0.0013230854, - 0.0036317776, 0.026853867, -0.010826072, 0.008492411, 0.024290862, - -0.03012178, -0.02840076, -2.2862118e-4, -0.016177922, 0.0064824326, - 0.018800393, -1.3520331e-4, -0.011315837, 0.00680542, -0.0067596566, - -0.002445243, -0.004557556, -0.020515721, 0.010120179, 0.02656297, - -0.001042415, -0.024573846, 0.011929999, -3.733189e-4, 0.01680703, - -0.0061837505, -0.02314821, -0.009621365, -0.0021985038, 0.019441074, - -0.0045817536, -0.055300955, 0.024656137, 0.0050850003, -0.0047347024, - -0.0039729513, 0.008912161, 0.009917229, -0.0012078926, 0.015475807, - 0.009279523, 0.015626036, -0.011974013, -0.009118094, -0.017018126, - 0.015642013, -0.022739427, -7.554738e-4, 0.01742327, -0.022842232, - 0.0046761287, -0.0069623366, 0.018777104, 0.0116437925, 5.3191243e-4, - 0.0025835983, -0.0011932076, 0.0030868943, -0.020288173, -0.0032347927, - 0.014438323, 0.016704451, 0.014425702, 0.024415135, -0.0151096415, - -0.01941213, -0.001451627, -0.011049158, 0.022215487, 0.009885242, - -9.489493e-4, 0.0075814864, 0.0029959374, 0.004062404, -0.006878134, - 0.02106627, -4.094832e-4, 0.0047854753, 0.02189479, -0.01034399, - 0.02110058, 3.3920488e-4, -0.009824426, -0.03828602, -0.0069291387, - -0.01173036, 0.028559929, -0.011413216, -0.028990386, 0.013516297, - 0.015622835, -0.010181516, -0.015039899, 0.020096788, -0.00574087, - 0.007976975, 0.012380583, 0.022925625, -0.009040522, 0.013637003, - 0.0075723473, 0.0042012976, -0.0072346595, -0.011312899, -0.0075277216, - -0.009690829, -0.023516158, 0.002275581, -0.007973708, -0.0035466712, - -0.029755227, -0.0019166654, 0.006539262, 0.018904729, -0.010299224, - -0.008848257, 0.013894937, -0.001773963, -0.015113571, -0.033896644, - 0.025704328, -0.025582252, -0.0038055615, 9.936034e-4, -0.007402102, - 0.047745347, 0.035176132, -0.027445458, 0.028207429, -0.009994472, - -0.0072757024, 0.008726345, -0.015742192, 5.353648e-4, -0.0024451246, - -0.0026089938, 0.012477011, -0.008899001, -0.027825555, 0.004339476, - 0.012391662, -0.0026283313, -0.009332963, 0.0017131192, -0.0041009146, - 0.01739005, 0.0019457506, 0.0076167043, -0.019013071, 0.027575884, - 0.009353354, 0.010438036, -0.0036858418, 0.00265724, -0.03354574, - 0.010371726, 0.029025234, 0.012611665, -0.0013717321, 0.008852922, - 0.004007541, 0.0075971675, -0.013897426, -0.009690213, 0.006304039, - 0.029853601, -0.019750861, -0.023329806, 0.009035351, 0.015656475, - -0.015218843, 0.012973204, -0.008304591, 0.01021534, 7.7419507e-4, - 0.01594612, 0.035895325, -0.0036020172, -0.021799797, -0.029503899, - -0.014258894, -0.03841711, 0.008332052, -0.0013956842, 0.010193236, - 0.00941805, 0.018122751, 0.036228366, -0.0026966492, -0.016259922, - 0.0038494463, -0.015726862, 0.0017159363, 0.015199005, 0.008364687, - 8.488974e-6, 0.015195954, 0.013779254, -0.024559243, 0.019484982, - -0.011549776, -0.010348218, -0.029603014, 0.008145766, 0.0068080495, - -0.023743076, -0.014706873, 0.0110179195, -0.010437684, -0.01515277, - 0.0051016454, 0.025308724, 0.027907485, 0.012767705, 0.0065996666, - 0.012934361, -0.010488411, 0.00793703, 0.020835614, 0.005159388, - -0.0077924468, 0.009623558, 0.014667486, -0.007096327, -0.015497171, - -0.005124024, 6.5327476e-4, -0.0065451516, 0.010342574, -0.022578511, - 0.029095078, 0.013166834, -0.027976207, 0.03107869, -0.01055446, - -0.012373092, -0.010333851, 0.01264747, 0.014347222, 0.0043794247, - -0.0032670328, 0.021245645, -2.2639075e-4, -0.01660531, 0.0147505, - -0.0065151225, -0.0036288807, 0.008667837, 0.0048010983, 6.9152634e-4, - 0.010920654, -0.031090127, 0.01821835, 0.008053012, 3.1450053e-4, - 0.0017861726, -0.024764404, -0.0021878516, -0.010539582, -0.0266758, - -0.0238521, 0.0076722545, 0.0067202696, 0.0012193968, 4.3507107e-4, - 0.0050716256, 0.01275579, 0.0023086164, 0.009712907, -0.03751874, - 0.016515013, 0.039792776, -0.016624594, 0.008191968, 0.006040204, - 0.009795162, -0.0061689806, 0.010149396, 8.1091037e-4, 0.00556173, - 0.0021928805, 0.01071764, 0.007989272, 0.019534793, 0.0051236353, - 0.018210212, 0.04005287, -0.026833992, 0.0123072015, 0.00846053, - -0.0040440755, -0.013998564, -0.0068685296, 0.015145329, 0.0075100674, - -0.02013188, 0.026970265, -0.025205333, 0.012298061, -0.0026880265, - 0.029366298, 0.003024928, 0.01080473, 0.025981022, -0.00882538, - -0.003931014, 0.011600697, -0.008238529, 6.830225e-4, -0.0027599582, - 0.010910987, 0.010921439, 0.0023037568, -0.008456517, -0.03535098, - -8.3253806e-4, -0.0042710234, 1.3100824e-4, 0.015862435, -0.019978855, - -0.023086928, 0.0022874267, -0.031372115, -0.006443309, 0.026086068, - -0.010951872, -0.007312964, 0.013528998, 0.017162206, 0.011876055, - -0.0012025082, -0.018558526, 0.011687211, 0.023361973, -0.0061420635, - 0.02033738, -0.0036490716, -0.009691881, -0.006140248, 0.047725827, - 0.0053100176, 0.024356933, -0.0119142905, -0.004453891, 0.005427424, - 0.010267978, -0.007938551, 0.018073872, -0.009519622, 0.0027552545, - 0.0044046612, -0.0054519093, -0.021868447, 0.010868193, -0.004658578, - 0.013224491, 0.02319045, -6.0388504e-4, -0.015053595, 0.02615371, - -0.013012613, -0.009192402, 0.018538274, 0.027409172, 0.005415637, - -0.018061582, 0.013811468, -0.011583146, -0.010633865, -0.0029223822, - -0.012664511, 0.001959698, -0.028414246, 0.002054642, 0.022445371, - 0.022797763, 2.8621458e-4, -0.008394951, 0.0041690604, -0.022158697, - 0.015230414, 0.023037247, 0.0074087824, -0.002773025, 0.010223432, - 0.020582687, 0.006023621, -0.012977518, -0.0084018195, 0.021228591, - -0.0059487578, -0.028520694, 0.004134975, 4.6386244e-4, -0.023649873, - -0.017528877, 0.018787334, 0.0063829203, 0.003913562, -0.013676565, - -2.8480022e-4, -0.003062544, 0.004078305, -0.0033839447, 0.017651014, - 0.0014996247, -0.013678595, -0.026213596, 0.011736572, -0.0016293897, - 0.0030924317, -0.0025535328, 0.0081379935, 4.951062e-4, 0.01502971, - 0.006073196, 0.014176284, -0.013043647, 0.01158554, -0.012338468, - 0.022472242, -0.015012687, 0.0106453225, 0.013347464, 0.026383048, - -0.037291992, -0.009685197, -0.013617651, -0.025865123, -0.015984718, - 0.0044695097, 0.017567446, -0.0071970657, 0.01140004, -0.020459035, - 0.02633711, -0.016727176, -0.0069492143, -0.016889403, -0.0038261977, - -0.010702542, 0.0050052516, -0.022979792, -0.0036338235, -0.007576523, - -0.0031327452, 0.021018244, -0.006898997, 0.008986598, -0.0063878195, - 0.0048092026, -0.0023889826, 0.011160327, 0.012511008, -0.03241313, - -0.002332901, -0.020843163, -2.1202126e-4, -0.028616223, 0.026709182, - -0.0038892485, 0.0129667865, -0.010999624, -0.013255943, 0.016978595, - -0.011941066, 0.023128962, 0.017276024, -0.011304928, 0.00793085, - 0.0022839662, -0.0117779, 0.001063644, -0.0029337655, -0.0057463474, - 0.010131108, -0.009831061, -0.0076648463, 0.0053169313, -0.014613104, - -0.017754652, 0.0024124978, 0.0366266, 0.0059367483, 0.0043298695, - -0.026760567, -0.0025156252, 0.012319966, 0.007979409, 6.207228e-4, - -0.004075102, -0.0030028448, -0.01333489, 0.015380333, -0.013240616, - 0.017223353, 0.027556065, -0.024876036, -0.002061846, -0.021725992, - -0.0020140044, 0.019879637, -0.022191368, 0.011479436, 0.0037376285, - -0.0082597155, -0.02880486, 0.017759314, 0.011745928, 0.0014099726, - 0.006757107, -0.037835762, 0.0029245338, -0.010763248, 0.02410798, - 7.404402e-4, -0.01808603, 0.0025037532, 0.0026382161, 0.031046914, - 0.029794218, -0.015118669, 0.014635535, -0.0023958269, -0.010134479, - -0.0113048805, 0.014564774, -0.00516639, 0.0063764807, 0.0058971792, - -0.024272019, 0.0128123555, 0.006085881, -0.01491033, 0.010776531, - -5.408035e-4, -0.019172948, 0.02871298, 0.038232718, -0.009199364, - -0.010335078, -0.012582811, 0.0028333662, -0.022535313, 0.008135478, - -0.023303797, 0.0025581568, 0.016361138, -0.006254232, -7.993586e-4, - 1.915355e-4, 9.238817e-4, -4.2798833e-4, -0.011520196, -6.890557e-4, - -0.010527329, 0.00979949, -0.00902704, -0.02226523, 0.013278035, - -0.008331698, 0.0030228756, -0.048409436, 0.00908337, -0.011566798, - -0.021724895, -0.011207181, 0.015270139, 0.002974065, -0.014309017, - 0.009513506, 0.012227893, 0.0057235598, -0.015086215, -0.0050574765, - 0.015312033, -0.015747072, -0.016221244, 0.0149787925, -0.016129153, - 0.030447638, -0.0065220143, -0.00716713, 0.009595272, 0.0073807174, - -0.023583915, 0.0027295863, -0.014395594, 0.018094042, -0.010170808, - -0.01018349, -9.460073e-4, 0.0037872419, 0.0017810946, -0.015101335, - 0.021649387, 0.005456513, 0.0108022755, -0.04172719, 0.023218757, - -0.031434543, -0.015849065, -0.019254608, -0.012143284, 0.0019557972, - 0.028373612, -0.002523584, 0.0011864079, 0.016035412, -0.014422133, - 0.0057716565, 0.008551477, -0.01075952, 0.037875302, -0.0018736547, - -0.020968953, 0.007265485, -0.012770865, 0.033990294, -0.015918754, - 0.006089576, 0.0066004125, -0.031347413, 0.017585354, -0.024999157, - 0.004073719, -0.01996948, 0.004866519, -0.018624302, 0.014329347, - 0.022211462, -0.005282594, -0.036664724, 0.006752529, 0.006769968, - 1.491741e-4, 0.005124953, 0.020109626, -0.015466362, 0.0037443775, - 0.03662957, 0.00979124, -0.021148542, 4.5915678e-4, 0.008449105, - 0.005176762, -0.0028593736, 0.0022587085, 0.01585615, -0.0055433614, - -0.00806162, 0.0223991, -0.03769716, 0.018754588, -2.1357603e-4, - 0.0019621765, -0.033609863, -0.0061384947, 0.015692178, 0.0077370773, - -0.016633715, -0.0063773296, 0.015096527, -0.02204801, -0.0069025108, - 0.024428327, 0.017024606, -0.014716653, 0.014797997, -0.003412505, - -0.0057830205, -0.010939713, -0.017094413, -1.07651285e-4, -0.007006629, - 0.012801898, -0.01784568, 0.0011447001, -0.0060666106, 0.007319915, - 0.009152905, -0.008816243, 0.0010461684, 0.0015712747, -0.007988679, - -0.005050328, 0.0012725836, -0.0075108013, -0.014085594, 0.0071553956, - 0.003049698, 0.019543724, 0.0010442322, 0.0027437082, -0.019186713, - -0.03656497, 0.0029597378, -7.5054925e-4, -0.027391301, -0.037567183, - 0.010662931, 0.001966314, -0.0066646854, 0.0147594465, -0.015610341, - -0.007074916, 0.01779888, -0.0021634777, -0.03672041, -0.031188633, - -0.005945115, 0.0035284047, 0.012803216, 0.01930972, -0.008123658, - 0.026833346, 0.011191307, -0.039747465, -0.009836018, -0.005260446, - -0.0022305555, -0.0040578973, -0.009585248, 0.016728697, -0.008522211, - 0.013759006, -0.019072874, 0.036791418, 0.0019995254, 0.02031886, - 0.022278711, -0.007636892, -0.0013931711, -0.029336015, -0.021816092, - 0.014848741, -0.026761098, -0.02645408, 0.027255177, -0.0018036785, - -0.009708977, -0.0078018135, -0.0058138412, -0.007477291, 9.1760023e-4, - -0.021097312, 0.0335099, -0.0010568127, -0.017021857, 0.019379277, - -0.0035797376, -0.02856227, 5.2775367e-4, 0.0034333037, -0.0129062915, - -0.01733506, 0.010112077, 0.013610931, -0.015903415, 0.027185766, - 0.001644546, 0.0064421166, 0.010597511, 0.008800523, 0.0012183805, - -0.007708018, -0.010159334, -0.02129672, -0.03131855, 1.2300615e-4, - 0.014896765, 0.016818596, 0.048101578, -0.016415302, 0.017317496, - -0.018068556, 0.031604104, -0.017374968, 0.005319662, 0.011356352, - 0.021115605, 0.014416608, -0.019887878, -0.017424405, -0.023621505, - 0.01288027, -0.018354762, -0.018929524, 0.015820688, 0.01070741, - -0.0064334394, -0.009151506, 0.006552054, -0.021153063, -0.006504757, - 0.0070851524, 0.0010331465, -0.017552052, -0.005358916, -0.0058291038, - -0.017426947, 0.021975493, 0.005045315, 0.012271297, 0.009663955, - -0.013296955, -0.006491591, -0.008109198, -0.0059420927, -0.023079189, - 0.013220093, 0.0033319537, 0.008015796, -2.632038e-4, -0.0042191236, - -0.0018539162, 0.016386295, 0.011690673, -0.0064865723, 3.0216287e-4, - -0.003986334, -0.01426612, 0.0382872, 0.006668201, 0.03462496, - -0.008879095, 0.022803398, 0.0052217506, 0.02810672, -0.011366814, - 0.008281894, 0.0017074542, 0.004161116, -0.014435583, -0.0049740965, - 0.0120640155, -0.008418677, 0.023695307, 0.0083882855, -0.006072182, - 7.8943523e-4, -0.01271059, -0.0032507163, -0.021914555, 0.01542172, - 0.016936338, 0.008676178, -0.004784776, -0.023556184, -0.01575092, - -0.022755865, 0.025945323, -0.0046960725, -0.017475033, -0.006428106, - 0.022689449, 0.009534704, 0.018531233, 0.02895739, 0.0053540464, - 0.015389819, 0.0036925317, -0.030735655, -0.019323794, -8.305915e-5, - -0.015381739, -0.0048272745, -0.004922384, 0.012285366, -0.0030678797, - -0.005065293, -0.00879262, 0.011690801, 0.0063001327, 0.008388259, - -0.032022465, 0.0039779376, -0.0047005345, 0.017785324, 0.016368292, - 0.00819652, 0.022657366, 0.027425751, -0.015667023, -0.010853119, - -0.037777122, 0.025809951, 0.0075963554, 0.011134886, -0.0055142096, - -0.031502992, -0.0071180956, 0.009185183, 0.0047653066, 0.012686221, - 0.03223561, -0.0048491596, -0.004355618, 0.0015735769, 0.024811745, - 0.0011275938, -0.004120085, 0.02782279, 0.0034679035, 0.025062863, - -0.035202917, 0.008598425, -0.008269053, -0.016316514, 0.017215047, - 0.014761719, -0.013012877, -0.011294375, -0.008548247, 0.005765285, - 0.008493498, 0.014921211, 0.046859313, -0.015392401, 0.0027646623, - -0.011164562, 0.005230391, -0.01212499, 0.013391026, -0.0063319895, - 0.0032990142, -0.007983944, 0.01573624, 0.0041976296, -0.011613355, - 0.00891911, -0.009876793, -0.0022311145, -0.017822701, -0.010662574, - 0.020292496, 0.014600098, 0.021262424, 0.039942693, 0.022743708, - -0.01947064, 0.018022886, -0.006929034, -0.007495789, 0.011566094, - -5.2545767e-4, 0.0033406725, -0.02127193, -0.0055445335, -0.015673121, - -0.008509722, -0.009321358, 0.008107364, -8.527134e-4, 0.0035898886, - -0.0021260965, 0.023242965, -0.036028393, 0.026018772, 0.023480434, - 0.0064200815, 0.017504646, -0.01011953, 0.008912321, -0.0068781674, - 0.001928175, 0.014156017, -9.0992823e-4, -0.01875868, -6.069772e-4, - 0.0018687566, -0.020189421, -0.01978033, 0.013358005, -0.017675955, - 0.009488592, 0.008981334, -0.013195341, -0.015657874, 0.013085089, - -0.014500667, -0.008122449, -0.010485867, 0.01797958, 0.012099178, - -0.021939877, -0.0046471874, 0.0049650613, -0.005720272, -0.0128869, - -0.0020634313, 0.009815277, 0.004415658, 0.0041651716, -0.014736408, - -0.009399839, 0.031239625, -0.04238205, 0.016211392, 0.013890843, - -0.0072123953, -0.006566117, -0.017258877, 0.004115654, 0.0014436787, - -0.015200185, 0.031686895, 0.01017842, -0.028479433, 0.012118547, - -0.014958834, 0.0122667, 0.013119992, 0.018034946, 0.008991202, - 0.0047630565, -0.008453186, 0.014168261, -0.004709251, 2.664861e-4, - 0.0259676, -0.009460692, 0.005647335, -0.0042730556, -0.011304516, - -0.023893632, -8.8757323e-4, -0.0171631, 0.0026954599, 0.0115980515, - -0.011974797, 0.03660721, -0.008336571, -0.009043615, 0.0104553085, - 0.0109801665, -0.0010264661, 0.005638215, 0.0074635018, -0.0065061008, - 0.017306693, -1.4998371e-4, 0.030970287, 0.021504302, -0.007117861, - 0.019087639, 0.010353689, -6.635461e-4, -0.027125748, -0.01832872, - -0.025786951, -0.0071922555, -0.0064735976, 0.017026953, 0.013176826, - -0.0083243195, 0.01054513, -0.0067973444, -0.0073362095, -0.011110367, - 0.015586134, 0.02153402, -0.0037625143, -0.005348343, 0.026042446, - -0.0079100095, -0.0025580954, -0.005835907, 0.016085839, -0.011125909, - -0.0014271918, -0.007208515, 0.001866595, 3.6573965e-5, 0.01195641, - -0.017225035, -0.014565915, 0.0029031406, 0.016089039, 0.013046591, - 0.015757035, 0.0055521266, -0.003927545, -0.029105274, 0.015165364, - 0.0031080896, -0.0010438772, -0.0063613565, 0.023890661, -0.014233923, - -0.008647538, -0.0011947002, 0.00691394, -0.010501812, 0.022517122, - 0.023589956, 0.013227948, 0.024369026, -0.046113275, 0.0050807106, - -0.012683997, -0.004103379, -0.009261262, 0.026002672, 0.009098548, - 0.013780667, 0.019795513, 0.020970069, -0.02090095, 0.0146105075, - 0.008315259, -0.0076109637, 0.024576198, -0.00238943, -0.006200059, - -2.1913645e-5, -0.026126727, -0.0059984806, -0.0013344851, 0.007000634, - 0.024610266, -0.01631745, -0.008054396, 0.00823951, -0.018194173, - 0.015584845, -0.010824827, -0.0035150126, -0.022419672, -0.020047866, - -0.037703715, -6.926864e-5, -0.015599147, 0.0072732856, -1.3664264e-4, - 0.013832739, 0.007230628, -0.021569436, 0.005678279, -0.009135622, - -0.045941252, -0.019509079, 0.0033845725, 0.004185467, 0.004859258, - -0.0019324211, 0.0026571075, -5.115976e-4, -0.008651205, 0.0014308876, - -0.014866364, -0.003399713, 0.024817921, 0.013847906, 0.023566388, - -7.5742486e-5, 0.0035012665, -0.043032832, 0.015917316, 0.030856077, - -0.012210754, 0.027484326, 0.0024894818, 0.013599311, -0.013810437, - -0.013601916, 0.015703086, 0.044949565, 0.0022377141, 0.011707747, - 0.011772667, -0.0021769523, -0.033864647, -0.017655365, -0.0025948873, - -0.0013390237, 0.0065776724, -3.3187953e-5, 0.0013964551, 0.0030094606, - -0.03404833, 0.024878081, -4.3055404e-4, -0.013046943, 0.005743767, - -0.0017331948, -0.0077977767, -0.002945886, -0.007572218, 0.010115527, - 0.017475322, 0.010221387, 0.015657518, 0.0035693469, 0.014399751, - 0.016372329, 0.008847346, 0.0025593669, -0.0029185545, -0.013887985, - 0.022357754, 0.011684014, 0.012186043, 0.026317453, -0.006956593, - -0.010277006, 0.004936094, -0.005512375, 0.014475454, 0.0125304, - 0.012210301, 0.012634457, -0.009288185, 0.03873004, 0.002098172, - 0.025221625, -0.006101789, -0.006940399, 0.0042081666, -0.004443949, - 0.015815273, -0.0111871855, 0.01763106, -0.028645337, 0.015857037, - -0.020320522, 0.0077267564, -4.518246e-4, -0.0062758895, 0.013843015, - 0.017238857, 0.0028738119, -0.015413521, 0.0047239047, 0.0020866413, - -0.003855532, 0.021887887, 0.0075563625, 0.021477832, -0.02221116, - 0.003904146, -0.02076675, -0.0043291706, -0.008083319, 0.012738566, - -0.022978099, -0.024565645, 0.004914835, 0.02244571, 0.00865011, - 0.02803658, -0.022559455, -0.006472007, -0.035989217, -0.0039409674, - 0.0034033684, -0.0021944966, 0.0011619285, 0.026690817, 0.005861249, - 0.010327173, -0.018240921, 0.0068588722, 0.008963951, 0.016100815, - 0.025319958, -0.018514171, 0.014417445, 0.006829277, -0.04249049, - 0.045828804, 0.027297413, -0.006741245, -0.019348051, -0.0020424617, - -0.020510212, -0.013252894, -0.018675355, -1.4738085e-4, 0.008439999, - -0.0097287, 0.020798694, -0.009139511, 0.0023113482, -0.026224852, - 0.0150199095, -0.025241729, 0.013207003, -0.0038441245, -0.018902335, - -0.0011323855, 0.028220905, -0.029380662, -0.020367768, 0.007733809, - 0.019863041, -0.00945082, 0.0019472364, -0.012265028, -0.03455311, - 0.017200861, -0.0054059806, 0.0031910148, -0.038184375, -0.016049653, - -6.283436e-4, -0.0213631, 0.0038959957, -0.009345057, 0.013897613, - 0.023228928, 0.015117639, -0.012956393, -0.025903942, 0.0027452381, - 0.0069454485, 0.016256392, 0.025752645, -0.010237346, 0.015761048, - 0.013559487, 0.0058377027, 0.02418758, 0.019258864, 7.5600494e-4, - 0.018984461, -0.017002346, -9.1774954e-4, -0.008347131, 0.018411001, - 0.035759047, 0.015056205, 0.025176972, -0.009863778, -0.0143899685, - -0.005455183, -0.0450888, 0.011866737, 0.028619386, -0.006656556, - -0.0075604836, 0.004656158, 0.02040761, -5.1102595e-4, 0.021575728, - -0.01570217, -0.0150925545, 0.022667384, -0.0059820144, -0.00860612, - 0.003900445, -7.020606e-4, -3.65555e-4, 0.023906728, 0.0033435994, - 0.016210608, 0.0014370458, -8.253218e-4 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.011494826, -0.0043576825, 0.0055836015, 0.006489485, 0.0064320555, - -0.0069972663, -0.0029130918, 0.021515498, 0.013729165, 0.020406747, - 0.0023594287, -0.008034853, 0.0154711865, -8.801075e-4, 0.008100347, - 0.014169522, 0.006029064, 0.002686346, -0.035593674, 0.011180592, - 0.006702635, -0.016471948, 0.0018883998, -0.0076481216, -0.021464031, - -0.006238839, 0.007003954, -0.024551077, 0.008931379, -0.011528333, - 0.0114954775, 0.016242888, 0.022297813, -0.0022776383, -0.005974623, - -0.0024204273, -0.010301948, -0.008653576, -0.005726284, -0.003560525, - -0.0034952865, 0.007201515, 0.007935718, -0.022576401, 0.0031085336, - -0.013447823, 0.007611169, 0.015921202, 0.011076088, 0.021460412, - -0.017520564, 0.0046280073, -0.0010756337, -0.027034296, 0.022245526, - -0.026148845, 0.012522415, -0.01900706, -0.010290857, -0.008053456, - -0.002134807, -0.025002636, 0.010478968, -0.026234226, 0.0041977265, - -0.012120329, -0.0023019554, 0.014198637, -0.004841639, 0.008605893, - 0.039263807, -0.0057171783, -0.0040487605, -0.021257836, 0.0094828885, - 0.0049167625, 6.543185e-4, -0.0092308605, -0.005595983, -0.007718352, - 0.01783576, 0.015280397, -0.021796366, -0.017272264, -0.0028977355, - 0.0037609986, -0.007236345, -0.008947497, 0.007496292, -0.01645459, - -0.009281546, 0.003122402, 0.010067139, 0.022626214, 3.782614e-4, - -0.010587718, 0.008987443, -0.004011994, 0.02122285, -0.0012680385, - -0.0045536496, 0.003913722, -0.02227425, -0.0024648053, 0.037833013, - -0.007171653, -0.010555644, -0.022471452, 0.051836777, -0.021192435, - 0.022207003, 0.008224326, 0.015678663, 0.007082276, -0.012503829, - 0.023541264, -0.0120180715, -0.007211908, 0.005898512, -0.04237128, - 0.013305712, -0.006074866, 0.007496249, -0.010296539, -0.016292823, - 0.0031413066, 0.00931329, -7.789573e-4, 0.024755731, 0.036008514, - 0.009779383, -0.009714472, 3.0964034e-4, -0.006093597, -0.013563266, - -0.01324781, -0.0046296516, 0.0012829877, -0.0066134217, -0.0143588325, - 0.00568158, 0.012727318, -0.01972923, 0.006356417, 0.009391606, - 0.0084219, 0.022635156, -0.018016491, -0.0038640397, -0.021801155, - 0.0072840494, 0.02088579, 0.016130593, 0.025068156, -0.021668265, - 0.023543414, 0.022913665, -0.017969644, 0.0060918843, -0.0055473447, - -0.006398762, -0.0013602866, 0.00997154, 0.022383759, 0.021483878, - 0.01960077, -0.015903145, 0.015470642, 0.008904779, -0.010853505, - -0.02035286, -0.020449182, 0.0065407157, -0.014176143, -0.013622559, - 0.01507198, -0.02255802, -0.01971016, -3.979201e-4, -0.0036614062, - -0.009134108, 0.043376125, 0.0015079217, 0.008321813, -0.02127872, - 0.008608993, 0.020178039, -0.0064753112, -0.013796136, 1.7034686e-4, - -0.033412013, 0.0065553207, -0.008381165, 0.015866213, 7.0934003e-4, - 0.019644823, -0.014147052, 4.602475e-4, -0.0032303536, -0.027477726, - 0.011325611, -0.0122039495, 5.175953e-4, -0.0026890077, 0.015890567, - -0.00951963, -0.0016409504, 0.024035871, 0.011677106, 0.026309052, - 0.005851529, -0.026292838, 0.014874603, 0.01695087, 0.018547488, - 0.013449202, 0.013026977, -0.020669322, -0.01814901, 0.035526507, - 0.009998171, -0.013079219, -0.007873467, -0.0070986785, 0.0135540385, - -0.007746303, -0.003870814, 0.004803098, 0.0061112903, 0.0050327946, - -0.010289195, -0.005569356, 0.011616153, 0.019923607, 0.007973295, - 0.010383984, 0.03221668, -0.022842977, 0.016467383, -0.011978635, - 0.008531663, -0.011675419, -0.0036006228, 0.008331056, 1.6123478e-4, - 0.010592675, 0.023535993, 0.018092224, -0.0011860227, 0.003827415, - 0.035463717, 0.0068393685, 0.011126789, -3.4684956e-4, -0.024770008, - 0.0030663216, -0.0019167667, 0.020295719, -0.0010856789, -0.00181622, - -0.0023759578, 0.0012422313, -0.038028426, -0.010341185, 0.021215253, - 0.0204781, 0.007909984, 0.010252227, 0.0063936636, 0.03104379, - 0.011477483, -0.0023905337, 0.004314484, 0.035971496, -0.022724805, - 0.0060450053, -0.011103795, 0.01439378, 0.013603464, -0.014429758, - -0.020727284, 0.0045022983, 0.018038046, 0.005993325, -0.023139732, - -0.0035267507, 0.0031412994, 0.009081022, -0.032504696, 0.009336387, - 0.032960616, 0.002565952, -0.0072812904, -0.01012688, 0.012119888, - 0.00206499, -0.035788074, 0.007286858, -0.025883457, -0.0067595933, - -0.020906948, -0.010929977, 0.0204357, 0.0012193997, 0.020037202, - -0.028974317, 0.023022918, -0.021829136, 0.005593419, 0.001332917, - 0.015485699, 0.016509699, -0.009615769, 0.009857858, -0.01917551, - -0.027405355, 0.002528835, -0.0027926743, 0.012881703, -2.7634506e-4, - -0.020719036, 0.012358883, -0.037594184, 0.023804799, 0.019363109, - -0.0060039875, -0.016359074, 0.013138759, 0.003053034, -0.0067768395, - 0.014188887, -0.020982014, -0.0028638714, -0.009398523, 0.0048944857, - 0.011402188, 0.014876701, -3.691171e-4, -0.003940232, -0.0055742976, - 9.753477e-4, 0.011117193, -0.012974128, -0.017099896, 0.009682685, - -0.024702668, 0.022678168, -0.024835942, -0.01676102, -0.018034313, - 0.0015307864, 0.011210898, 0.0010631324, -5.998872e-4, -0.001839678, - 0.0019846878, 0.009418094, -0.007773668, 0.02026825, -0.033069067, - -0.029642686, -0.021315264, -0.019526968, -0.0058580865, 0.003387313, - 0.014055584, -0.0048213755, -0.006103974, -0.0033310011, -0.0089738425, - 0.0012891709, 0.009680068, -0.0017038309, 0.01291182, 0.0085458625, - 0.014218819, 0.021935899, -0.006528932, -0.011846577, -0.015130858, - 0.017297953, -0.010503493, -0.0104180835, 0.026228629, -0.0020665354, - -0.013852007, 0.0062760767, 0.002876767, -0.0037295995, -0.015142686, - 0.025267055, -0.0027141098, 0.011000287, 0.002048631, 0.003017587, - 0.023766577, -0.008014449, -0.003975884, 0.018903498, -0.007955252, - 0.0055781496, 0.009185919, 0.022293957, -0.005296117, 0.036370046, - -0.0298195, -0.016171198, -0.017156385, -0.0069775623, 0.0057023275, - -0.0042010904, -0.0010153047, -0.0074839443, 0.005595375, -0.013844608, - -0.011478658, 0.0043809377, -0.016352925, 0.004972368, -0.020712826, - -0.0044149742, 0.03242745, -0.005048093, 0.015649408, -8.9870923e-4, - 0.009832346, 0.015267137, -2.263747e-4, 0.0013906242, 0.0020225549, - 0.015946312, -0.008687333, 0.016248569, -0.02952699, -0.020144897, - 0.0031285929, -0.019939002, -0.0068271016, 0.016491516, -0.011389333, - -0.002565238, -0.019059788, -0.014273789, 0.0026282775, 0.01745911, - 0.010560147, -0.012916707, 0.034755964, -0.014170896, 0.021564554, - -0.012582603, 0.024758887, 0.02975163, -0.010016828, -0.0031616671, - 0.01132841, -0.0025628225, -0.007922004, -0.0073166965, -0.003745639, - 0.010839607, -0.012055026, 0.0013339368, -0.0085917665, 0.005263649, - 0.034412414, 0.015831197, -0.0019443445, 0.018540965, 0.0023562629, - 0.0072779814, -0.021551691, 0.01973424, -0.015333393, -0.004880077, - -0.00172365, -0.030701736, 0.011717281, 0.014321798, 0.029460965, - 0.0014795053, -0.010572641, -3.4454692e-4, 0.020722654, 0.01857567, - -5.4216647e-4, 0.0079543535, -0.016646942, 0.019849667, 0.020550236, - 0.012393564, 0.0064393776, -0.0052124197, 0.005271075, -0.013684027, - -2.5746296e-4, 0.0015671633, -0.025436545, -0.0019617148, -0.014486082, - 4.5010205e-5, -0.007932235, 0.021434315, -0.0016429187, -0.0070033297, - 0.0037655586, 0.01851517, -0.012964396, 0.0012982623, -0.007352076, - 0.014480917, -0.0240766, -0.0014985286, 0.011332617, -0.0076265326, - -0.007965134, -0.022595204, 0.022126438, 0.027606068, 0.0045290715, - 0.023228846, 0.010933852, 0.045603342, 0.0054252883, 0.0019676941, - 0.02630567, -0.010359264, -0.016570434, 0.015355844, -0.02353736, - 0.015373907, 0.013985879, 0.014807113, 0.0066251275, 0.0015107, - 0.008832503, 0.0038328236, -0.027440114, 6.7420234e-4, 0.005403097, - -5.4691336e-4, -0.005442364, 0.026589645, 0.012577536, 4.1469806e-4, - 0.014492068, 0.0069502094, -0.01507488, -0.01874233, -0.009150906, - 0.003984284, -0.028378341, 0.013725463, 0.00791269, 0.020887991, - -0.013076449, -0.0069768582, 0.029782351, -0.0076872017, -0.0113898255, - -0.005883398, 0.011572027, 0.01295862, 0.02254165, 0.01521511, - 0.015192284, -0.009243984, -1.16490955e-5, 0.009336794, 0.0011010952, - -0.017098883, -0.022671308, -0.008548733, -0.019672282, -0.011630034, - 0.014629932, 0.0027616592, 0.0067091687, 6.899149e-4, 0.030165449, - -0.0049305437, -0.020259976, 0.015248236, -0.004191453, 0.003329952, - -0.04227039, -0.02549849, 0.0059011905, -0.0033652284, -0.012516778, - 0.011029937, -0.023909653, -0.015413002, 0.0048801126, 7.0361875e-4, - 0.036793467, 0.0049557225, 0.019347826, 0.029138463, 0.0029384955, - 0.035208665, -0.0020533078, -0.0052952813, -0.0019454045, 0.0018491568, - 0.022994088, -0.021550832, 0.035682548, -0.0054055736, -4.5982827e-4, - -0.0014372471, -0.0014157285, -0.009732659, -0.024576508, -0.019471271, - 0.011460458, 0.018536862, -0.029856825, -0.013193021, 0.015546055, - -0.019364832, -0.007750463, -0.02390897, -0.0111250095, 0.01627479, - -0.007164253, -0.0037197473, -0.020457327, 0.02092501, 8.02503e-5, - 0.02549404, -0.017334308, 0.0048210216, 0.015939157, 0.042697873, - 0.008652297, 0.018117921, 0.020318149, -0.0064870105, -0.0064993533, - -0.037303407, -0.00803123, -0.018170469, -0.007813328, 0.002029169, - 0.009356479, -0.007992981, 0.009380087, 0.0070207887, 0.030986784, - 0.0040404317, -0.0080269165, -0.016701447, 0.0035482324, 0.0051052542, - -0.015118693, 0.00581899, -0.014686383, -0.007457611, -0.0024964637, - 0.0107782455, -0.021160305, -0.006937564, -0.011268363, 0.024389796, - -0.0018069687, 4.5219908e-4, 0.01261384, 7.252471e-4, -0.0130109545, - 0.0060905814, -0.020019751, -0.00600913, -0.0023507765, -0.0061027464, - 0.033537876, 0.020031312, -0.0013092496, 0.01113036, -0.014527422, - 0.007935023, -0.012305218, -0.019471064, 0.009279609, 0.038030554, - -0.006344341, 0.004663717, -4.282277e-4, -0.025309015, -0.031053329, - -0.009730733, -0.0029776408, 0.01424488, 0.018914348, -0.02379216, - 0.02164938, -0.0049868533, -0.0020399254, -0.024100447, -0.021288883, - -0.001495002, 0.010620193, -0.011344333, -0.009495405, 0.02116413, - 0.0069847675, -0.018425973, -0.025257887, -0.0074653537, 0.0039266194, - 0.016306933, 0.014276482, 0.008808538, 0.0037512109, 0.011461924, - 0.005868309, 0.0025788366, 0.00972218, -0.0020615952, -0.0071942345, - 0.0056529893, -0.0017574829, -0.03065257, 0.004820523, 0.0051077898, - -0.032841444, -0.003737026, 0.01987664, 0.004778949, -2.3064153e-4, - 0.0057938145, -0.0052221967, 0.010929064, -0.013284961, 0.009925036, - -0.01084976, 0.003631501, 0.008650921, -0.020467376, 0.0038491762, - -0.006306993, 0.0050585913, 0.0076738554, 0.011728914, -0.0037256333, - -0.015493974, -0.007791375, 0.027391251, 0.02433493, 0.0041842824, - -0.01570063, 0.0014175521, 0.0060717515, 0.0052733156, 0.012448787, - 0.021641994, 0.027909242, 0.007967699, 0.004710498, -0.01344358, - -0.0041671395, -0.006350759, 0.019506367, -0.024965713, 0.023322685, - 0.022475535, -0.031981915, 0.030094303, -0.0021899517, 0.008993517, - -0.0027167823, -0.016723167, 0.008519884, 0.008599369, -0.014579716, - 0.0048165214, 6.6759516e-5, 0.020942584, -0.006838741, 0.0040102773, - -0.013133333, 0.009842, -0.0082383165, 0.006531073, -0.01713761, - 0.017083524, 0.02577133, -0.014504421, -0.0016923875, 0.0022926913, - -0.018819505, -0.0070707034, -0.01909418, 0.0027534086, -0.013051495, - 0.010680615, 0.0046499725, -0.012529013, -0.0058415732, 0.005254876, - -0.011961137, 0.009440556, 0.0122035025, 8.979349e-4, 0.017772976, - -0.027197482, 0.0066732876, 0.024955038, -0.023138097, -0.0117916325, - 0.021782268, 0.01122584, -0.017292354, 0.006136369, 0.01595904, - 0.012055767, -8.0457877e-4, -0.010017229, -0.0018843659, -0.043518987, - -0.006181185, 0.0014242288, 0.010153292, -0.007568783, 5.2016584e-4, - 0.0019304792, 0.03209742, 0.015709639, -0.026580289, 0.005573602, - 0.030973399, -0.012213861, -0.006623954, 0.005077432, 0.018102169, - -4.013982e-4, -0.02660979, 0.003944713, -0.01565187, 0.0026783457, - 0.017242841, -0.0042677717, -0.0061807386, 0.015623162, -0.004301736, - 0.021786816, -0.0021140159, -0.007425922, -0.024381282, -0.010915462, - 0.01362176, -0.005114871, -0.010722522, 0.020314742, -0.027318534, - 0.020013101, -0.0049356595, 0.021551713, -0.0031736982, 0.012787153, - -0.03761487, 4.9798127e-4, -0.011689475, 0.008680916, 0.0032055238, - 0.02580813, -0.022492666, -0.01176533, 0.007932202, -0.029072536, - -0.026301932, -3.9061782e-4, -0.0053315223, -0.005222541, 0.02094952, - -0.010417084, -0.012701889, 0.01695187, -0.016923156, -0.03137493, - 0.009005235, -0.019437876, -0.02202703, 0.015811892, 0.0010488809, - 0.010743038, 0.005661131, -0.0026089775, -0.007849803, 0.023074558, - -0.028037224, -0.0114729, 0.014528717, -0.030450266, -0.015527847, - 0.010337855, 0.0014759201, 0.038326584, 0.005054758, 0.01874378, - -0.011298589, 0.016070353, -0.013538079, 0.01731691, -0.012994268, - 0.005894681, 0.014822987, -0.007986797, 0.009311497, -0.018195963, - 0.0046825074, -0.0043272013, -0.017299265, -0.007887785, 0.0121952845, - 0.0012112793, 0.007897735, 0.01902352, -0.0055142003, 0.0067015877, - -0.016321952, -0.017810633, -0.006705659, -0.026837707, -0.014779389, - 0.0054020807, 0.0034041184, -0.026894731, -0.0025983532, -0.0013304655, - -0.01391471, -0.012839189, -0.024018234, -0.010884655, 0.008263841, - 0.018316267, 0.013897768, -0.00671267, 0.0026260703, -0.020977482, - -0.0018448242, -0.019836064, 0.0059202197, -0.019403726, 0.0045310534, - 0.0015148704, 0.0058115865, 0.016423525, -0.012169748, 0.0034175524, - -0.010530224, -8.606985e-5, 0.0062052053, -0.0061291093, 0.001877701, - 0.006540086, -0.0016104069, 0.010586064, -0.0012007141, 0.00844678, - 0.0021666905, -0.020673154, 0.018296698, -0.010920703, -0.022892062, - 0.009655051, -0.018097486, 0.005165347, -0.024534151, -0.0013511627, - -0.013103377, 0.0062382943, 0.021662835, -0.02621509, 0.0031275062, - -0.014688072, 0.012066018, -6.963236e-4, -0.02392844, 0.025995038, - -0.004556671, 0.011099803, 0.0068551768, -0.0055725193, 0.0500457, - -0.0060831523, 0.01852536, -0.0037556353, 0.012003185, 8.793761e-4, - 0.013380316, 0.04054262, 0.008050033, -0.014935398, -0.009422716, - 0.016135013, 0.03634562, 0.012539759, 0.01005678, 0.01614937, - 0.014256303, -0.0109160775, 0.009968119, 0.01395255, -0.0047733765, - 0.010375049, 0.02449795, 0.018249156, 0.002947558, 0.003174393, - -0.013068209, -0.02198669, 0.0019701621, 0.0086272815, -0.0096772285, - 0.013085815, 0.005637677, -0.0020559083, -0.00535178, -0.014406657, - -0.021499638, 6.3985627e-4, 0.017990842, 0.044306032, -0.012718965, - 0.039315373, 0.01154417, 0.0013261812, -0.0033933814, 0.019957734, - -0.01439147, -0.005011219, -0.007918108, 0.01228673, 0.023826465, - -0.013943757, 0.017364692, 0.0085289385, -0.01239545, -6.996175e-4, - 0.0126858745, -0.023965733, 0.009175918, -0.0019419506, 0.030011656, - 0.0019415155, 0.018197825, -0.019552367, -0.011097497, 0.008911921, - -0.021861376, -0.0024711785, -0.00645768, 0.0052165543, -0.01576871, - -0.027570749, 0.018204724, 0.009323893, -0.013702476, -0.007578749, - 0.009943365, 0.0026933742, -0.0087218275, 0.0027783567, -0.011286766, - -0.0010823952, -0.013653607, 0.021575429, 0.027049262, 0.008552882, - -0.019673305, -0.012310631, -0.0073984205, -0.013616598, 0.015424038, - -0.0018063213, -0.013149122, -0.007622776, 0.04065542, 0.0014285531, - 0.008354931, -0.035061054, -0.005656108, -0.0052084667, -0.0147368815, - 0.014507959, 0.011285839, -0.006111142, -0.0068365033, 0.007275043, - -0.008801663, -0.009330444, -0.025896305, -0.003465923, 0.011090196, - -0.029628932, 0.018137872, -0.001685745, -0.015354277, 0.009327699, - -0.008952932, 6.6942006e-4, 4.2935117e-4, -0.0024708996, -0.022169258, - 0.013441012, 0.027063841, 0.004117362, -0.017351072, 0.026151568, - 0.005410158, 0.011995102, -0.0011948855, 0.009475248, 0.027647981, - 0.0066800546, -0.02219443, 0.009043237, 0.013182228, 0.0044658864, - -0.03963436, 2.6352924e-5, 0.024503129, 0.015041177, 0.0070959227, - 0.006812503, -0.021077806, -0.012923424, -0.013157281, 0.0010623968, - -0.012291115, -0.0031988132, 0.006305634, -0.011457563, -2.3728944e-4, - 0.009887306, -0.015406001, -0.007244944, -0.0024006153, -0.017222244, - 0.0080744075, 0.012289206, 0.025179897, -0.029003581, -0.017190179, - -0.019206285, -0.008461822, -0.02422856, -0.007663878, 0.01930312, - -0.0028448142, 0.004663962, 0.0033435465, -0.006598585, -0.0036795672, - 0.013837823, 0.0017233085, 0.01390541, 0.0028676405, -0.019353375, - 0.0064820163, -0.011769767, -0.0062840264, -0.013601997, 0.0020050323, - -0.0018126148, -0.019638283, -0.004365901, -0.013378661, 0.02693444, - -0.007682291, 0.0055717723, 0.009393974, 0.035388727, 0.023212682, - 0.015830845, -0.010030685, 0.027694223, -0.009977634, 0.020059478, - -0.011583164, -0.013606069, 0.004911386, -0.010477416, 0.0021938924, - -0.013036399, -0.0073485156, -0.008631125, 0.0030557152, 0.026088797, - 0.011300188, -0.0049495725, -0.009821562, -0.019257478, -0.011832807, - 0.013254237, -0.0033325693, 0.0010983667, -0.0035413944, 0.011940573, - -0.006619523, 0.00843484, 0.0041479613, 0.005067673, 0.010824106, - -0.009747827, -0.011499347, -0.007193474, 0.0045506135, -0.0196397, - 0.020477673, 0.02567784, -0.00208089, -0.011428567, -0.02188087, - 0.005020496, 0.018160557, 0.0015154816, -0.036603767, 0.007975934, - -0.0013145498, -0.047004525, 0.0020939813, -0.028691016, -0.013065287, - -0.025057584, -0.0010614679, 0.008219774, -0.025186287, -0.009927442, - 0.006225552, -0.0041342555, 0.012342878, -0.015478537, -0.02100701, - 0.03181671, 0.0056936517, 0.012806716, -0.005384836, -0.015527187, - -1.3789562e-4, 0.010246275, 0.0034576864, 0.022313695, 0.009976243, - 0.011249505, 0.0043094093, 0.0073839207, -0.005185705, 0.020115945, - -0.004506283, -0.014597093, -0.019808793, -6.7157634e-5, -0.013356443, - -0.008274808, 4.872719e-4, -0.009328199, -0.030300602, -0.007452999, - -0.006606976, 0.024869286, 0.0018121065, 0.00526142, -0.027081313, - -0.0040343055, -0.0139042605, 0.021388736, -0.0019770607, 0.02632501, - 0.026187604, -0.0025873336, 0.017051393, 0.0020129194, -0.017810846, - 0.02742007, -0.012327464, -0.018071704, -0.0052446993, -0.01620833, - 0.0028940039, 0.007986094, 5.09156e-6, 0.0033772714, 0.0076722717, - 0.008763577, -0.0041687577, -0.013169304, 0.01787564, -0.04279821, - -0.016446704, 0.009122216, 0.003346473, 0.0088305, 0.022977673, - -0.0362354, -0.009012823, 7.654898e-4, 0.01585423, -0.014011787, - 0.0037816265, 0.008965109, -0.005401514, -0.01641996, 0.0020253717, - -0.0038704656, -0.0093626855, 0.012016941, -0.014740666, 0.033256274, - 0.017892351, -0.0144423405, 0.008147067, 0.024660878, 0.011269401, - 0.0016335144, -0.006946042, 0.009589974, 0.021097885, -0.02091983, - 0.008546521, 0.0045750807, 0.0019623823, -0.008946784, -0.013491803, - 0.014153525, 0.0052870973, -0.017235266, -0.0034281865, 6.354387e-4, - -0.002256461, 0.009597698, -0.0013541363, 0.0038160079, 0.010540378, - -0.0042296858, 0.025020119, -0.02171824, 0.0014565862, 0.017601708, - 0.015928382, -0.0098936455, -0.015983557, 0.017466484, -7.4543466e-4, - 0.006771867, 0.0014128349, 5.788517e-4, 0.013202211, 0.014495921, - -0.007488347, 0.0205269, 0.020190295, 0.01148582, 0.018824458, - 0.053414892, -0.0068895156, -0.02111823, 0.016759552, -2.0104203e-4, - 0.018591905, 0.0025156075, -0.004789793, -0.0035949557, -0.011908736, - 0.0060185646, 0.010035175, 0.014180952, -0.0049404735, -0.022940787, - 0.032473803, -0.018281406, -0.012698398, -0.008070549, -0.010436375, - -0.035091445, -0.0048382473, -0.024093075, 0.004700312, 0.03762769, - 0.0035620756, 0.0144752525, -1.6401708e-4, 0.007449724, 0.010243959, - 0.012415831, 0.0069601163, 0.0018639839, 0.016070738, -0.01695665, - 0.0043516266, 0.0025756038, 0.014088466, 0.037313886, -0.0061156037, - 0.0037849783, 0.006647685, 0.0033654063, -0.012221421, 0.033260956, - 0.010608496, -0.003912291, -0.0012691384, 0.023250582, -0.03179137, - -0.007098615, 0.03240181, -0.009496965, 0.0013925546, 0.022193866, - -0.026698925, 0.0048133535, -2.2171279e-4, -0.024013238, -0.0042326683, - -0.024615746, -0.018808363, -0.012833259, 0.023451932, 2.645956e-4, - -0.011953393, -0.039315067, -0.0066017564, -0.009512442, -0.0063940957, - 0.017939914, 0.011928315, -0.020120986, 6.8745756e-4, 0.010233503, - -0.019202292, 0.0017594736, 0.01297453, 0.009626765, 0.01582691, - 0.0013543775, 0.011249297, 0.018204747, -0.022615567, 0.006433244, - -0.022561366, -0.0067908117, 0.026397847, 0.025450766, -0.005413219, - 0.0024298662, -0.013686618, -0.01455802, 0.0050156997, -0.015103964, - 0.0018171518, 0.0018388804, 0.009566183, -0.015902795, -0.001879185, - 0.0015290745, 0.030305773, 0.0060630813, 0.007197195, -0.012685468, - -0.014120113, 0.0128977485, -0.008777083, -0.010419014, 0.008172775, - -0.005804159, -0.011572914, 0.014930556, 0.02132745, 0.020988973, - 0.0060398686, -0.020943774, -0.005195474, 0.0032232634, 0.011950282, - -0.01584962, 0.013512044, -0.0048249927, 0.012875733, 0.004452542, - 0.023495814, 0.0032102808, -0.015907694, 0.0092693325, 0.0020083985, - 0.010296353, -0.0047325427, 0.0139212655, 0.023773998, 0.0017170324, - -0.0029072668, 0.016439402, 0.015308549, 0.0077071185, -0.005285478, - 6.272545e-4, 0.016108429, -0.022595266, 0.0032405003, -0.015220783, - -0.027423523, 0.015248796, 0.0013686827, -0.0011409424, -0.008836114, - -0.015785096, 2.1876236e-4, -0.02941598, -0.011461351, -0.005259222, - -0.004163538, 0.00856075, 0.023128571, 0.0013982801, -0.0019842845, - -3.5306462e-4, -0.0056735547, -0.009813716, 0.0016158113, -0.006139938, - -0.011994133, -0.020858793, -0.009868389, 0.0075666434, 0.016203148, - -0.018274112, -0.013421665, 0.03678827, 0.004781921, -0.012888797, - 0.0032709485, 0.021721374, -0.012589653, 0.024066748, -0.01545914, - -7.3682866e-4, -0.009763093, -0.036978647, 0.0052321977, 0.00788757, - -0.010833874, -0.009475302, -0.0036851303, -0.016531484, 0.011108727, - 0.029792948, 2.2460935e-4, 0.008426905, -0.017773988, -0.0069650873, - 0.016851503, 0.0018071922, -0.007413864, -0.016129207, 0.007841137, - -0.004287675, -0.01682087, 0.02504584, -0.034924418, 0.014535145, - 0.0029391544, 0.0045514232, -0.01961616, 0.0031935272, 3.547081e-4, - 0.0051705455, -0.007164236, -6.2935904e-4, -0.0079838885, 0.004134524, - 0.011535531, 0.0023021125, 0.0143664405, -0.008863519, -0.012589119, - 0.0030343987, -0.027388712, 0.012880412, -0.006438421, 0.0046624173, - -0.017386071, 0.0049839453, -0.0042657815, -0.0031474095, 0.019253913, - 9.857692e-4, -8.434825e-4, 0.004428456, 0.006409534, -0.024789143, - 0.003271982, -0.01193582, 0.016586915, -0.031265583, -0.02478419, - 0.0048414045, 0.015894564, -0.0035836322, 0.011290995, 0.014453802, - 0.020044701, 0.039632164, -0.016363267, 0.0063068597, 0.01338694, - 0.009798703, -0.009330435, 0.019280285, 0.029304449, 0.005811436, - -0.018445881, -0.028696697, 0.005337639, -0.002333514, 0.030922964, - 0.025989104, 0.02113324, -0.00711395, 0.007992329, 0.0029308938, - -0.021455882, -0.004015516, -0.0049196673, 0.0018191285, 0.0044184267, - 0.030561704, -0.021431988, 0.013790279, 0.003277777, 0.018162586, - -0.002152248, 0.013222141, -0.027523547, -2.6124087e-4, -0.003836311, - -0.0022371954, -0.008578375, -0.014762997, -0.019957647, 0.031567242, - 0.014806397, 0.01947514, -0.006743939, 0.0063222554, -0.008808234, - -0.003874976, 0.0130794905, 7.6752994e-4, -0.018075442, -0.0075026858, - 0.016025549, 0.0057381913, 0.012368127, 0.022472141, -0.0033616717, - 0.0055276165, -0.012697281, -0.0016055476, -0.0035269887, -0.022686195, - 0.007889546, 7.1495265e-4, 0.005191594, -0.015912255, -0.044811726, - 0.014070226, -0.021294842, 0.021560235, -0.016947653, 0.021669248, - 0.024932897, 0.0062946975, 0.0016460303, 0.029517006, 0.0017886013, - -0.019631315, 0.004617238, 0.00590868, 0.004006452, 0.025006993, - -0.0010366789, -0.01352585, -0.015611257, 2.2752256e-4, 0.0077329543, - -0.005584044, -0.0034574973, 0.021405634, -0.024754802, 0.0014852653, - 0.0038173397, -0.008886223, -0.032824874, -0.017138893, 0.014655244, - -0.0070026596, -0.0077973953, -0.020544352, -1.724547e-4, -0.030080792, - 3.67173e-5, -0.0044696066, 0.007060261, 0.008690476, 1.8519005e-4, - 0.012990541, 4.1292337e-4, -0.0034397733, 0.0062975134, 0.016842784, - 0.002733473, -0.005101499, 0.02640515, 0.029366333, -0.014329092, - 0.007915541, 0.0061437543, -0.0100981165, -0.008569148, 0.005053287, - 0.0037219326, 0.0063615246, 0.0042291423, -0.022981673, -0.0033573336, - -0.004263447, 0.006796799, 0.009001107, 0.011157458, -0.005293027, - 0.0061432924, 0.004386202, -0.003697639, -0.030560154, 0.0152341435, - 0.013569224, 0.011461762, 0.0021572507, -0.018955175, -0.0054420144, - -0.009221154, -0.0040382314, 0.017738182, -0.012072596, 0.015868144, - 0.03793184, -0.0059132255, -0.043267462, 0.02857892, 0.0025077201, - -0.010527692, -0.004120504, 0.0033579157, -0.0050534103, -0.009193636, - -0.019549355, 0.009152612, -0.017483713, 0.011673646, -0.007203446, - 0.027166853, 0.029194381, -0.016191553, -0.02199824, -0.020090653, - -0.009837166, -0.012176407, 0.019349942, 0.009947914, 0.013472107, - -0.020053191, 0.005530409, 0.0030653758, -0.035081614, -0.022269666, - 0.0013773444, 0.025877327, 1.4319985e-4, 0.023603722, 0.030943066, - 0.005531659, -0.008019136, 0.03771233, -0.007843113, 0.0051820828, - -0.012562496, -0.0067833117, 0.007588799, 0.024719233, -0.005185613, - -0.0062448103, -0.0055693914, 0.008835911, 5.181234e-4, 0.008691654, - -0.013886689, 0.0031634544, -0.005447279, 0.016561396, 0.0048235497, - 0.048691954, 0.0023413722, 0.010130387, 0.020047873, 0.022768794, - -0.032216173, 0.027665636, -0.0034826875, 0.010516773, -0.0017927613, - -0.01512935, -0.012951042, -0.012118474, -0.00696178, 0.01624703, - -0.016487632, 0.0094709415, -0.00794923, 0.008520513, 0.015263392, - -0.018998398, -4.6894586e-4, 0.02123768, -0.0036475414, 0.015988989, - 0.0036482776, 0.0019021676, -0.010346456, 0.008858272, 0.008404359, - 0.0108183455, 0.015005955, -0.008435031, -0.017098764, -0.013063321, - -0.007976449, -0.017956631, -0.01722218, 0.017487746, 0.0048154737, - 0.005539197, 0.025737118, -0.0114573985, 0.017368674, -0.010432408, - 0.0010109247, -0.02465256, -0.012023108, -0.001447392, -0.019223988, - -0.020969512, 0.0060585444, 0.015616759, 0.010309416, 0.0076663964, - -0.00661351, -0.008086289, 0.018583864, 0.03059611, 8.908069e-4, - -0.007902173, -1.7797547e-4, -0.0035090635, 0.01763219, 0.029310044, - -0.022717811, 0.032846183, -0.0068470933, -0.018939814, -0.015048206, - -0.025473531, -5.2280154e-4, -0.0142052425, 0.0016604424, -0.012102714, - 0.02408835, -0.019877434, -0.025161136, 0.026814127, -0.0038458342, - -0.0145737305, -0.0025999765, 0.010507395, 0.02041931, -0.02092943, - 0.013288941, -0.01734416, 0.011871163, 0.0031221486, -9.812773e-4, - 0.0070663956, 0.025731225, 0.0052822395, 0.019678818, -0.011743062, - -0.012666278, 0.0022158234, 2.73e-4, 0.002257033, -0.0046691485, - 0.0072956523, -0.0021077674, -0.013319919, 0.018354964, 0.011627472, - 0.0036186674, -0.0050163195, 0.021293228, 0.0088355765, -0.029934991, - 0.023029283, -0.004564537, -0.015816463, -0.0077784024, 0.004051544, - 0.010047578, 0.026558213, 0.017184228, -0.011298575, 0.0092128115, - 0.0038914832, -0.010480083, 0.007064973, 0.012030912, 0.007278254, - -0.017454008, -0.03614635, -0.009462107, 0.0036413474, 0.017257674, - -0.010596869, 0.008665268, -0.009291178, 0.021034174, 0.0049366313, - -0.014673547, -0.023214342, 8.008743e-4, -0.013959939, -0.0015655477, - -0.0077158967, 0.0022356643, -2.890263e-4, -1.0780362e-4, 0.010892918, - 0.0059812046, 0.011884551, 0.0027214782, -0.02856805, 0.008359956, - -9.974827e-4, 0.0014509002, 0.02389573, 0.008316243, 5.53257e-4, - 0.01388941, -0.011405843, -0.007477609, -0.01864874, 0.019723382, - 0.011926472, -0.0063013677, 0.01786865, -0.0033077651, 0.003963472, - -0.016516987, -0.0048612487, 0.009816193, 0.0028842597, -0.01340925, - 0.016988467, -0.020687193, -0.021259293, 0.009034723, -0.017852444, - 0.01738017, -0.0016399965, -0.011919976, -0.010080513, 0.02441015, - -0.003704991, 0.012277968, -0.021280713, -0.031350188, 0.009730664, - 0.03164966, 0.012649141, 0.005319723, 0.009393329, -0.0015773705, - 0.0022275618, 0.0043924935, -0.012103106, 0.015071081, 0.0056395927, - -0.015505561, 0.006625209, 0.020487765, 0.0052058683, 0.0033185254, - -0.012343261, -0.017862616, -0.018002525, 0.0038119256, 0.008796382, - -0.00706125, -0.009843212, 0.012623664, -0.007253514, -0.01592579, - -0.0049319714, -0.009676223, -0.010863178, 0.012123644, 0.0047474755, - -0.0044812644, 0.0032232567, 0.0014574764, -0.002362826, -0.004055075, - -0.016849432, -8.363901e-4, -0.0257555, 0.018423848, -0.0056649544, - -0.0037723738, 0.031239491, -0.0065938514, 0.01371398, -0.01191594, - -3.6477944e-4, 0.0044970335, -0.028441638, 0.005796357, -0.018860705, - 0.005433463, -0.013928921, -0.01594974, 0.008520054, -9.3478477e-4, - 0.025051538, -0.0010814242, -0.0222986, 0.022410689, 0.032202974, - 0.011817855, -7.026879e-5, -0.016680615 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - 0.063625544, 0.022264598, 0.045567755, 0.04359143, -0.020750927, - -0.038481317, 0.04918807, 6.718348e-5, 0.05033949, -0.015342933, - 2.3127816e-4, -2.4268267e-4, -0.072704405, -0.005975659, -0.012769341, - -0.045294613, -0.023138233, -0.007373149, -0.012295455, -0.044398505, - 0.03616323, -0.013161021, -0.034151535, 0.011032254, 0.037282936, - -0.01467303, 0.024199197, 0.021043526, 0.051514804, 0.02794375, - -0.019256666, 0.0041831434, -0.011266313, 0.06407075, 0.006129147, - -0.013331619, -9.78696e-4, -0.022353908, -0.019493705, 0.031872343, - -0.0049791806, -0.032391097, 0.028056111, -0.027233813, -0.061406467, - -0.03600621, 0.016978497, -0.06674043, 0.010503301, -0.017634217, - 0.029464532, -0.04479248, -0.038357116, -0.026031299, 0.030052206, - -0.043307427, 0.003958352, 0.05873436, -0.10165171, -0.04060958, - -0.0024538094, 0.02878181, 0.0043908046, 0.01954265, 0.0024708733, - -0.025482558, -0.013575942, -0.008968197, 0.01868037, -0.037060674, - -0.0020831106, -0.019656308, -0.01067408, 0.0101379035, 0.007440113, - 0.031288918, 0.002872516, 0.0025249342, -0.065544814, -0.0010900499, - 0.0020070937, 0.049831305, -0.016374217, -0.04346734, -0.025841536, - -0.030344168, -0.00656235, 0.0017704114, 0.05327152, 0.0013459771, - -1.16657655e-4, 0.01094771, 0.012481489, -0.01287895, 0.016138522, - -0.008748174, 0.009181589, 0.016326152, -0.011994415, -0.06152981, - -0.028449863, -0.017394634, 0.053481326, 0.038753267, 0.03069559, - 0.016131552, 1.9998194e-4, -0.01965957, -0.032500934, 0.039044492, - 0.03913476, -0.021814339, -0.014663357, -0.07376316, -0.0416187, - 0.037574146, 0.005902327, -0.0166926, -0.023038263, 0.007518507, - -0.015035107, -0.0035396994, -0.017283004, -0.04375232, 0.035666864, - 0.01925573, -0.03327898, -0.015040783, 0.014804222, 0.027855208, - -0.0041646594, -0.0033792353, -0.043860335, -0.049097717, -0.0034014168, - -0.025604073, -0.015803788, 0.022259621, -0.07508081, -0.008485305, - 0.009407201, 0.0013032958, 0.0043753027, -0.05337426, -0.021736927, - -0.022237394, 0.042846583, 0.0510915, 0.023054274, -0.0015123868, - -0.07019983, -0.0052529164, -0.00443711, -0.030602744, -0.032379977, - 0.0012600762, -0.017282892, -0.034960963, -0.028685458, -0.023707246, - 0.033934712, 0.03827816, -0.045501485, -0.02767767, -0.011932682, - -0.036444128, 0.051286247, -0.0030173776, 0.044022914, 0.030975986, - 0.021543566, 1.896201e-4, 0.0051262463, -0.052558392, -0.014550035, - -0.020904813, 0.018991174, 0.003557574, -0.02549581, 0.0024349848, - 0.038657904, 0.03331845, 0.03185619, -0.030948076, 0.031794894, - -0.014261605, 0.063930035, 0.02779098, 0.0114645995, -0.009349079, - -0.041857976, 0.025009356, -0.04967345, -0.03670035, -0.0330444, - -0.018916069, -0.04743148, 0.007664045, -0.035084166, 0.023231355, - -0.033305474, -8.6041854e-4, 0.0151499575, -0.014009889, -0.03646717, - -0.0122511, 0.0037542724, -0.028553667, 0.018744145, 0.018266313, - -0.012356234, 0.024122179, -0.017703861, -0.02973697, -7.911533e-4, - -0.028994069, -0.042382825, -0.009574591, 0.026689997, 0.01912706, - 0.015399795, 0.061181724, -0.033727508, -0.04524181, -0.06559348, - 0.014686365, 0.02694505, -0.029895643, 0.02979774, -0.0014352602, - 3.8924374e-4, 0.002484628, -0.014298937, 0.0020469225, 0.030517098, - -0.009527745, -0.0012137959, 0.028282309, 0.024531709, 0.004189096, - -0.0051120757, 0.020384513, 0.019819763, -0.013394346, -0.016557073, - 0.028152201, 0.014236292, 0.04342676, 0.050333716, 0.039396152, - -0.023766596, 4.7412145e-4, -0.043741345, -0.028087564, -0.0015892972, - 0.020991093, 0.0018513366, -0.014846118, 0.03652107, -0.0054774736, - 0.01185039, -0.034688, 0.034610312, -0.019393707, 0.01050345, - -0.025368702, 0.047149733, 0.024737082, 0.050791956, -0.006994127, - 0.008280042, -0.048510358, 0.03170678, 0.049598783, -0.0371391, - 0.047166914, -0.0067404187, -0.014830582, -0.0678903, -0.037773427, - 0.012339989, -0.025327152, -0.03877877, 0.04907323, -0.02992634, - -0.026496675, 0.041745305, -0.05140229, -0.069463, -0.01881595, - -0.05444802, -0.023190781, -0.051634263, 0.027530124, 0.0061220312, - 0.006652657, -0.013047405, 0.0020987587, -0.019538054, -0.025407573, - 0.0010935952, -0.019896628, -0.015013014, 0.0697408, 0.051338416, - -0.017966736, -0.045916025, -0.024246117, -0.00981062, 0.03792131, - -0.018240284, 0.042967893, -0.04760448, -0.005111516, 0.0037628934, - -0.023910977, 0.013789729, -0.017596196, -0.014982285, -0.013528609, - 0.0013594471, -0.015011701, -0.0026815408, 0.07915485, 0.015600419, - -0.027449057, 0.05753614, 0.017948812, -0.003125829, -0.02514762, - 0.05588797, -0.05317917, -0.010592954, -0.018346714, 0.023838917, - -0.03184138, 0.004718882, -0.022126619, -0.023228291, -0.021549584, - -0.006839112, -0.018992193, -0.02546449, -0.038744457, 0.021551352, - 0.008288382, -0.022665987, -0.034134813, -0.026617134, -0.03354039, - 0.01403726, 0.0040519256, 0.0073501626, -0.0057395836, -0.017830499, - -0.046551533, 0.019527424, -0.021786468, -0.024820447, 0.030618515, - -0.0047369692, 0.006017975, -0.023479044, 0.0015959371, -0.02415556, - -0.014975839, 0.04733875, 0.039020587, -0.0071123526, 0.017396275, - -0.025297783, 0.044264738, -0.0070383823, 0.039882902, 0.039509546, - -0.010624396, -0.07156193, -0.00516476, -0.03279117, 0.0346733, - 0.040137965, 0.006487745, 0.065422006, 0.04390446, -0.035415795, - -0.04161449, 0.042924806, -0.010998845, -0.013228023, 0.024699861, - 0.0474879, 0.022601053, 0.038351048, -0.02368263, 0.0071522, - -0.02610392, 0.020132063, 0.019488016, 0.06954332, 0.004197779, - -0.001449478, 0.0075607635, -0.024317022, 0.009593314, -0.010254569, - 0.052141085, -0.05206794, -0.026307313, -0.011730413, 0.03492627, - 0.012231973, -0.024217911, 0.0075493716, 0.02962279, -0.015495593, - -0.06471107, 0.07094297, -0.03835836, 0.007796035, -0.0028404444, - -0.021371236, 0.0020699743, 0.013663694, 0.05270744, -0.033781912, - 0.010774029, -0.016631326, 0.01063973, 0.028974928, 0.009204347, - 0.027417596, 0.018536555, -0.028733078, 0.0035308, -0.025795402, - 0.015337099, 0.011037874, 0.02797591, 0.026077751, 0.048973225, - 0.0036579408, -0.030458972, 0.026120767, -0.019330498, -0.02260799, - 0.0035942432, 0.06710771, 0.021455122, -0.009294769, -0.0011124598, - 0.046150252, 0.037866354, -0.024603695, -0.0499349, -0.038429774, - -0.0052925623, -0.017648375, -0.010635006, -0.022307571, -0.015785275, - -0.017956173, -0.029040515, 0.049997125, 0.002766704, -0.03575698, - 0.02355999, -0.04501998, 0.04163577, 0.016552659, 0.0022947707, - 0.0077698873, 0.029885387, -0.020786965, -0.015207894, -0.07225653, - -0.032349937, -0.027148886, -0.026462436, -0.023785342, -0.005928429, - -0.045865186, 0.044609528, -0.011549425, -0.06822172, 0.027943943, - -0.075335845, -0.06079729, 0.017902572, 0.005048556, 0.0054412144, - 0.01728472, -7.857527e-4, 0.052203197, 0.02336648, -0.040548325, - 0.051989213, -0.0017735817, -1.4826334e-4, -0.08898896, -0.028371885, - -0.010621256, 0.054300528, -0.015790468, 0.0050247703, 0.0318433, - 0.006795609, -0.03282422, -0.031392407, -0.016154367, 0.009884464, - 0.029272001, 0.04219605, -0.02042862, 0.07866459, 0.014511822, - -0.026797913, 0.007424131, 0.03474574, -0.022130603, 0.010383487, - 0.029455617, -0.0069372356, 0.040740818, -0.09378149, 0.009887042, - -0.012889341, -0.03010401, -0.028379163, -0.006811255, -0.030270142, - 0.032583017, -0.0112460265, 0.031181203, -0.023913983, 0.01267368, - 0.0045232843, -0.020877598, -0.066047564, 0.0320659, -0.066281006, - 0.058054473, 0.018063942, 9.379353e-4, -0.005277326, -0.037496522, - 0.0045468896, 0.033364333, 0.020653931, 0.04114108, 0.008172438, - 0.051869426, 0.022088807, -0.014512027, -0.021404231, -0.009138024, - 0.045737855, -0.015500049, 0.028184779, -0.03696329, 0.03242626, - 0.0021483668, -0.020898065, -0.0272841, 9.3882903e-4, 0.06852722, - 0.011985455, -0.01359435, 0.0376893, -0.023635661, -0.0026560607, - -0.046634663, -0.052769404, -0.051853348, 0.043235242, -0.031937186, - -7.3764496e-4, -0.011945728, 0.052918673, 0.0086239455, 0.025302779, - -0.014030993, -0.034352824, 0.07827279, 0.0084415665, 0.009209451, - 0.0057067988, -0.03814625, -0.060570374, 0.009136248, 0.00933596, - -0.02284252, -0.02996383, 0.009728568, 0.055991728, 0.037727658, - 0.040086813, -0.014853259, 0.020129917, -0.07491337, 0.024107112, - -0.033579852, 0.013852252, 0.025133172, 0.023338582, 0.0128707765, - 0.0031030427, 0.040465888, -0.016960215, 0.06768431, -0.01843417, - -0.0014079048, -0.023976274, 0.0073580774, 4.8663267e-5, -0.035512034, - -0.062072, 0.008193016, -0.0100116255, 0.037248936, 0.0043471423, - 0.011847935, 0.00294604, 0.062387373, -0.01934523, 0.0014720283, - 0.033830717, 0.013904015, -0.013678551, -0.011831414, -0.0031583407, - -0.025645426, -0.0022463873, -0.006681948, 0.016152028, 0.055784985, - 0.009192994, 0.03988708, 0.013044314, -0.053658556, -0.02955603, - 0.013333235, -0.025114127, -0.013149869, -0.019808428, -0.0040978882, - -0.002758184, -0.0051223724, -0.028574474, 0.033827648, 0.04493505, - 0.01159221, 0.037914444, 0.066817045, 0.054847073, 0.043392748, - 0.031910133, 5.2754534e-4, -0.042370636, -0.009697634, 0.031201443, - -0.028169094, 0.041300025, -0.026064161, -0.008425328, 0.06342826, - -0.004045124, 0.03632227, 0.022982039, 0.032529768, 0.021852601, - 0.026798327, 8.210117e-4, -0.024106652, 0.035226624, -0.018657017, - 0.017623533, -0.052224085, -0.01520218, -0.026283529, 0.022850508, - -0.010180156, -0.0206656, 0.013964039, 0.032341484, 0.009165803, - 0.016472694, -0.02541796, -0.008998001, -0.018644778, -0.017644467, - 0.021532916, -0.010101743, 0.011206096, 0.017621487, 0.010231, - -0.019741265, -0.061285403, -0.0065378505, 0.016641082, -0.05417394, - -0.013497986, -0.0045066797, -0.046234265, 0.003580374, -0.007229131, - -0.04190872, 0.02234435, 0.0012772247, -0.026151428, 0.04058571, - 0.0024166326, 0.019254794, 0.040958922, -0.036245584, 0.029795317, - -0.0072749555, -0.0601847, -0.037699055, 0.03234432, -0.004930423, - -0.007882626, 0.02570672, 0.0047907527, 0.021701055, 0.037532438, - 0.03385628, 0.012801992, 0.03543252, 0.023075312, -0.064372376, - 0.0053665433, -0.019202143, 0.011109798, 0.019563923, 0.0026506984, - 0.053624015, -0.03708594, 0.045270383, -0.026046077, -0.014084688, - 0.031324442, 0.024681885, -0.011201457, -0.0064392923, 0.011486032, - -0.017863844, 0.036285568, 0.022979014, 0.031902842, 0.049870454, - -0.021877032, 0.021595309, 0.0022234002, 0.0018472942, 0.031851072, - 0.0058205775, -0.0018272849, 0.013752373, -0.040538847, -0.026609477, - -0.0070834067, -0.032253943, 0.011250162, 0.02298713, 0.011047524, - 0.0075636213, -0.029813083, 0.009145266, 0.04706208, -0.04102893, - -0.019836612, 0.003774393, 0.005637673, 0.0035893891, 4.1651793e-4, - 0.014382924, -0.016657334, 0.048929073, -0.053253196, 0.054141402, - 0.014733189, 0.010279561, -0.008928408, -0.022324746, 0.0061020013, - -0.022938875, -0.01896055, -0.029770128, 0.0017413633, 0.02620712, - 0.02208313, 2.8082493e-4, 0.02112031, -0.009674414, -0.008910044, - 0.017601408, -0.03783769, -0.007892112, -0.0026134613, -0.033019375, - -0.04654154, -0.0031846366, 0.02391355, -0.009260932, -0.056748837, - -0.03608625, -0.011719341, -0.011922788, -8.604135e-4, -0.017797938, - 0.042325728, -0.01880954, -0.012663917, -0.01787266, -0.006306477, - 0.0057710507, -0.00827578, 0.08526232, 0.012410516, 0.04313825, - 0.012253441, 0.012143306, -0.028265242, -0.04498836, 0.046132904, - 0.034348927, 0.020211674, -0.024380863, -0.073032424, 0.042656355, - 0.0184187, -0.0052891555, -0.046241425, -0.037727013, -0.033226877, - 0.014124956, 0.027173202, 0.04805173, -0.037000027, 0.018725717, - -0.021882655, -0.023758067, 0.028426953, -0.03608802, -0.056772914, - 0.013174437, 0.03793793, 7.31635e-4, -0.017591761, -0.015376214, - -0.003520647, -0.05000586, 0.013775011, -0.013402969, -0.010012234, - -0.0112493215, -0.008662894, -0.00553323, -0.059668414, 0.0038500163, - -0.025113849, 0.042562332, 0.021106046, -0.032893207, 0.0031227279, - 0.07174846, -0.014638321, -0.02285313, 0.0053727524, 0.034201954, - 0.029163044, 0.019480607, 0.06764658, 0.049086746, -0.02775714, - -0.025978828, 0.010499967, -0.07210081, 0.0049556256, -0.0014989678, - 0.012112061, -0.02532609, 0.012392058, 0.050596006, -0.009582324, - 0.007114123, -0.005400228, 0.017149048, 0.07028882, -0.014741958, - -0.006546263, -0.013876945, 0.039520275, -0.030992337, 0.03692081, - 0.009544543, 0.028001895, 0.059418496, -0.0112002, 0.0063684583, - -0.014063422, -0.034158263, 0.020217959, 0.0029963488, -0.035341773, - 0.03922517, -0.052034423, 0.045026913, 0.0012159577, -0.025658553, - -0.03379192, 0.027769279, 0.03154648, 0.044160217, -0.05020402, - 0.030410113, -0.003356258, 0.020004936, -0.016957734, 0.0015160502, - 0.102905884, 0.04987969, -0.022889378, 0.06723155, 0.05106982, - 0.03334485, 0.0015601879, -0.011843983, -0.0044595976, -0.030377338, - 0.041347817, -0.0050805393, 0.018027836, -0.0033798118, -0.048539884, - -0.0037194511, 0.018150527, 0.022625703, 0.036159337, -0.047164988, - 0.004601705, -0.05295231, 0.0037534898, 0.0070894407, -0.021877691, - 0.044394534, -0.012240223, -0.023584206, 0.018096432, 0.042769577, - 0.036791325, 0.005973964, 0.0011671272, -0.043017346, 0.00219923, - 0.0580036, 0.008866939, 0.03409185, 0.039411083, -0.0187933, - -0.015725102, -0.0076077627, -0.037452742, 0.027124122, 0.010278457, - -1.7295932e-4, 0.030004162, -0.026572492, 0.07268703, -0.0129889585, - -0.033731297, -0.04000954, -0.054975387, -0.05436017, -0.039641313, - 0.008343398, 0.03104105, 0.0037463524, -0.045622777, 0.020771725, - 0.035582997, -0.039255477, -0.007016761, 0.031120047, 7.9969835e-4, - 0.02803361, -0.039017145, -0.030573286, -0.0034186107, -0.004617955, - 0.024215212, 0.024162255, -0.011974235, 0.009159154, -0.043951586, - -0.009550269, 0.064237855, -0.016333716, 0.092891805, -0.0089679565, - -0.050924003, -0.0089033805, 0.048667967, -0.01563275, 0.030110681, - -0.028735058, -0.006054848, 0.003143765, -0.008395826, 0.002618862, - -0.042028874, 0.013485662, 0.053986844, 0.0054486096, 4.618433e-4, - 0.039325885, -0.009977846, -0.0061548366, -0.01748609, 0.04138561, - -0.06426659, 0.0072774626, 0.028179843, -0.034178406 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + "Simple screwdrivers" + ], + "source.subjects.concepts.id" : [ + "subject1" + ], + "source.subjects.concepts.sourceIdentifier" : [ + "y8ZBmObzMW" + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.012124317, + -0.021299876, + -0.005733557, + -0.0013475629, + 0.022516891, + -0.030033147, + -0.024846481, + 0.0015810481, + -0.0053588776, + 0.011182134, + -0.016136989, + 0.020245418, + 0.023886945, + 0.028344171, + -0.0030847318, + 0.005808646, + 0.021537011, + -0.011204436, + 0.037051927, + 0.0086664315, + -0.014508889, + -0.01064016, + 0.002716906, + -0.011251754, + 0.006171618, + 0.01809858, + 0.013418453, + 0.018912164, + -0.010198041, + 0.026115328, + 3.558389E-4, + 0.003297755, + 0.018431487, + -0.018947197, + 0.005065953, + -8.7131775E-4, + 0.015568003, + 0.017293727, + 0.0142060565, + 0.0030079284, + 0.02971484, + -0.006206922, + -0.0042556236, + 0.0019991396, + -0.013786032, + -0.0057381233, + 0.004266557, + 0.019733893, + -0.014851627, + 0.009940564, + -0.013157288, + -0.0060280864, + 0.014056644, + 0.0023974385, + -1.3019709E-4, + -0.010333612, + 0.0018736719, + -0.010616268, + 0.012122024, + 0.018394448, + -0.0018744152, + 0.0026170646, + -0.020703165, + 0.034884043, + -0.00810187, + 0.0162715, + 0.010841112, + -0.019087242, + -0.008803205, + 0.025374245, + -0.03542109, + 0.0033086361, + -0.008751657, + 0.0015253791, + -0.00623728, + 0.014900436, + 0.005162166, + 0.008594701, + -0.011774694, + -0.0024999052, + -0.007986184, + -0.0101629635, + -0.0032409406, + -2.0995295E-4, + 0.0044162115, + -0.003987293, + 0.009154902, + -0.0036598383, + 0.006255869, + 0.014890982, + -0.0149748465, + 0.0012689681, + -0.018437745, + 0.023798367, + 0.036731835, + 0.019855358, + -0.0048938794, + -0.01586661, + -0.006414683, + 0.005995307, + 0.023517365, + 0.006578628, + 0.01746313, + 0.014491765, + -0.027689802, + 0.006936498, + -0.007638295, + 0.013966816, + 0.00672107, + 0.011150749, + 0.034492366, + -0.018824762, + -0.021423554, + 0.008735486, + -0.007246485, + 0.01794228, + -0.011952752, + 0.02005045, + 1.2521026E-5, + -0.03052146, + -0.009247533, + -0.03361046, + 0.012020149, + -0.013114552, + -3.2544E-4, + 0.019931393, + -0.02396993, + 0.019002767, + -0.0075640813, + -0.0026495766, + 0.0070924624, + -0.020799028, + -0.0075614415, + 0.01380818, + -0.008741183, + -0.02755526, + -0.0033355046, + -0.004822433, + -0.011602031, + 0.01668003, + 0.018549884, + 0.024390351, + -0.029024888, + 0.009138762, + 2.9217702E-4, + 0.020800432, + 0.010462102, + 0.037638813, + -0.0018374013, + 6.8395253E-4, + 0.007237364, + -0.012011539, + 0.011005943, + -0.006761992, + 0.017947262, + -0.0037544214, + -1.637143E-4, + -0.0073970594, + 0.025910426, + -0.008247731, + 0.002735824, + 0.00725983, + 0.0074092946, + -0.007318496, + 0.011772696, + -0.0055871434, + 0.008228766, + -0.034771796, + -0.0044522993, + -0.03780804, + 0.032496776, + -0.0036122347, + 0.016646173, + 0.029100258, + -0.008048183, + 0.018800484, + 4.6117813E-5, + 1.757502E-4, + 0.0065209926, + 0.0104539, + 0.005256543, + 0.002771698, + -0.015770644, + 0.003383026, + 0.0024247405, + 0.0015083507, + -0.026603369, + -0.00887874, + 5.44623E-4, + -0.016258504, + -0.0032072947, + -0.015469044, + -0.008396411, + -0.019880738, + 0.018820563, + -0.0012264714, + -0.0147022335, + -0.0068714623, + -0.008761348, + 0.014545546, + -0.0020529323, + -0.033149853, + -3.5184098E-4, + -0.006008565, + -0.005597656, + 0.012653193, + 0.007108917, + -0.01586354, + -0.014388577, + 0.003954849, + -0.0025575461, + 0.0058706286, + 0.03444766, + 0.012899451, + 0.00629206, + 0.007839994, + -0.0071196496, + -0.01110895, + 0.016319038, + 0.0024696968, + -0.0034135808, + -0.02884318, + -0.028221585, + 0.006299797, + -0.01233568, + -0.01046538, + 0.01679092, + 0.008313578, + 0.007244451, + 0.008502567, + 0.005710278, + 0.027695311, + 0.009979893, + -0.011573269, + -7.89242E-4, + -0.014170767, + -0.0047212485, + -0.01306067, + 0.002669073, + -0.019485652, + 0.006194728, + 0.02267304, + -0.007970028, + -0.023074057, + 0.014755688, + -0.02076391, + -0.0015789662, + 0.014544124, + 0.0020705431, + 0.0050885766, + -0.011156564, + -0.013211527, + -0.01334544, + -4.2273328E-4, + -0.02278346, + 0.009487071, + 0.0049212417, + 0.03369367, + -0.007914083, + -0.020711958, + 0.0052020624, + -0.007047321, + 0.0031231726, + -0.003127262, + -0.023939552, + 0.014022322, + 0.023607966, + -0.008978154, + 0.012158738, + 0.0037579257, + -0.004509367, + -0.0017798103, + -0.012304822, + 0.012234373, + -0.0113637075, + -0.008345315, + 0.021254176, + -0.0067671267, + -0.021074144, + 0.019096144, + 0.008092516, + 0.013407781, + -0.0071841627, + -0.008707131, + 0.012897457, + 0.002325348, + -0.006999528, + 0.007684887, + -0.019605786, + 0.012039169, + -0.0253637, + 0.003412275, + 0.0076646795, + 0.0017521054, + -0.0050542066, + -0.008147364, + -0.05112655, + -0.028778085, + -0.026150132, + 0.009591213, + 0.006614044, + 0.025370395, + 0.0013283055, + 0.0032979466, + 0.022448195, + 0.037788425, + 0.023306549, + -0.017485026, + 0.007975923, + 0.013388207, + -0.0230143, + -0.0021107185, + -0.010957308, + -0.029161759, + 0.028898537, + -0.007540533, + -0.00786448, + 0.013664467, + -0.021691198, + -0.00379159, + 0.0011089619, + 0.026776122, + -0.027695525, + -0.004813928, + -0.021152215, + -0.0030370788, + 0.014942648, + 0.017818876, + -0.017554427, + -0.0010060995, + 0.001362685, + -0.020516135, + 0.0051116035, + -0.016754637, + -0.004860988, + -0.013271898, + -0.00676756, + -0.033806972, + 0.00902032, + 0.021960769, + 0.010353128, + -0.01723176, + -0.018776136, + -0.008588441, + -0.008841807, + -0.025019735, + -0.0028031347, + -0.012062891, + -0.001396818, + 0.0131496, + -0.010000385, + 0.0087243635, + -0.0084583275, + 0.0012843126, + -0.0015441105, + 0.00978653, + -0.013467719, + -1.3254232E-4, + 0.035001572, + 0.012701153, + -0.019970795, + 0.012273206, + 0.010537762, + -0.005815853, + -0.0039241617, + -0.004028776, + 0.008381966, + 0.012599802, + 0.0044449717, + -0.005479494, + -0.016413834, + -0.014158111, + -0.002849685, + -0.008977467, + -0.0078000603, + -0.020496435, + -0.026489291, + -0.011279494, + -0.007993641, + -0.013298836, + 0.013214204, + -0.0050140405, + 0.014276707, + -0.0051770722, + -0.021172278, + -0.03332726, + 0.03531407, + 0.013593324, + 0.007709615, + 0.013519697, + 0.00927898, + -0.009962187, + 0.01701334, + -0.022552257, + 0.0057553374, + 1.1260202E-4, + 0.0031561374, + 0.0027912082, + 0.009718192, + -0.0014536807, + 0.0025690945, + -0.0011588297, + 0.01318866, + -0.022846447, + 0.019913238, + -0.011745027, + -0.01307332, + -0.007763192, + 0.005217874, + 0.0104005905, + -0.004256844, + 0.01025055, + -0.006434762, + -0.001488637, + -0.012031859, + 0.0109553225, + -0.007953124, + -0.025057277, + 0.011064499, + -0.0025198706, + 0.022471454, + 0.036215287, + 9.326406E-4, + 0.011796886, + 0.0046999287, + -0.009439386, + 0.022379322, + -0.008720452, + -0.01418247, + 0.016489558, + 0.01726825, + 0.014875348, + -0.008325036, + 0.019294575, + 0.0018463552, + -0.025882285, + -0.0042339237, + -0.024978945, + -0.0026430846, + 0.010047836, + 0.026325958, + -0.013505399, + -0.03268967, + 0.0017722342, + 0.0022599283, + 5.6386617E-4, + 0.020144215, + -9.382148E-4, + 0.037766825, + 0.004765891, + -0.008701412, + 0.0045068203, + -0.030087799, + -0.013533019, + 4.472021E-4, + -0.011499979, + -0.0046513593, + -0.0054627205, + -0.0063279374, + 0.0058268323, + -0.0032682922, + -0.030753741, + -0.007266498, + -0.017179416, + -0.0045411033, + -0.0039759637, + -8.700708E-4, + 0.005871383, + -0.005082726, + -0.021552067, + 0.027210156, + 0.018751396, + 0.006126472, + 0.012498084, + -0.008176778, + 0.005984313, + 0.015893267, + 0.021046385, + 0.0037154886, + 0.003547687, + -0.0015390052, + 0.0056028, + -0.005109248, + -0.030740803, + -0.018680954, + -0.00809813, + -0.007842051, + -0.010331204, + -0.0011863887, + 3.3545805E-4, + -0.008676552, + -0.014299428, + -0.0030692003, + -0.03029361, + -8.500432E-4, + -0.018666988, + -0.017272627, + -0.010701259, + -0.025901588, + -0.009288249, + -0.011022698, + -0.01063243, + 0.0064395797, + 0.005884128, + 0.0047870446, + 0.008090275, + 0.017955288, + 0.012283194, + -0.0041334243, + -0.01691153, + 7.6183194E-4, + 0.002387453, + 0.0038025582, + 0.0101850545, + 0.015274147, + 0.015809868, + -0.059649844, + -5.083614E-4, + 0.015659, + 0.023899635, + -0.007952861, + -0.0155162085, + 0.014254245, + 8.443038E-4, + 0.018175028, + -0.0073008374, + 0.010438705, + -0.0040303976, + -0.0043876, + -0.0019021792, + -9.4807474E-4, + 0.002440172, + -0.005928473, + -0.004990395, + -0.029098349, + 0.037450694, + -0.0038006909, + 0.0098790275, + 0.0026627225, + -0.02186179, + 0.011402436, + -0.013702813, + -0.019854015, + 0.011392571, + 0.015246532, + -0.02470654, + 0.012679571, + -0.0033246167, + 0.004070733, + 0.014122233, + 0.0190037, + -0.0053318576, + -0.004918737, + 0.021468917, + 0.0047980887, + 0.010217753, + -0.007607375, + 0.018075112, + 0.019109668, + -0.007986341, + 0.024088692, + -0.005354245, + -0.011819653, + 0.0030488921, + -0.008156737, + 0.0026766714, + -0.024925293, + -0.0037850973, + 0.004824267, + -0.015119463, + -0.009516233, + 0.01903618, + 0.011191865, + 0.0033504232, + 0.002613694, + -0.012498272, + 0.040503234, + -1.7161411E-4, + 0.030579804, + -3.5999754E-5, + -0.0050937706, + -0.022382569, + 0.03176795, + 5.793856E-4, + 0.005344208, + -0.013579462, + 0.0020171404, + -0.013122836, + 0.0068691163, + 0.013370689, + -0.021101516, + 0.007987893, + 0.0208724, + 0.019455254, + -0.0104530845, + -0.015318349, + -0.0036326833, + 0.005199092, + -0.025007013, + -0.0030484973, + -0.0079579465, + 0.01261766, + 0.01406622, + -7.015069E-5, + -0.008901484, + -0.002374859, + -0.009743511, + 0.0026188595, + -0.0167105, + 0.0012740708, + 0.0029206837, + 0.018375037, + -0.021452025, + 0.013163752, + -0.0059012584, + -0.02151589, + -0.0074773463, + -0.010928022, + 0.037462343, + 0.0054453462, + 0.00609635, + 0.0031489495, + 0.008776921, + -0.00575205, + 0.016049687, + 0.02747138, + -0.0096205985, + 0.0046211802, + -0.038319822, + -0.0063952394, + -0.015188947, + -0.0056960625, + 0.014808115, + -0.004596998, + -0.0056666154, + -0.031138, + -0.0019865902, + -0.014562303, + 0.013609552, + -0.00153953, + 0.0037945514, + -0.020553967, + -0.00436942, + -0.010285988, + 0.01852987, + 0.026841914, + -0.0029242015, + -0.009095937, + -0.013957789, + -0.01986578, + 0.0062726233, + 0.03886488, + -0.009189371, + 0.004052309, + 0.016770253, + 0.023141831, + 0.010726906, + -0.024521869, + -0.009188103, + -0.011590015, + -0.0023004175, + -0.022192784, + -0.003009528, + 0.014542698, + 0.016635543, + 0.0037574128, + 0.022336796, + -0.014465228, + 0.0020188503, + 0.012070791, + -0.0069081234, + -0.0029867, + -0.0083728675, + 0.009444104, + -0.015410894, + -0.0051916554, + 0.0044610337, + -0.0060663335, + 0.0019602906, + -2.773262E-5, + 0.0095404675, + 0.006695345, + 0.009084417, + 0.014528415, + -0.024613485, + 0.0016038101, + 0.027634788, + -0.007289835, + 0.005499949, + -0.012498564, + 0.002123853, + -0.012112655, + -0.023493271, + 0.017570239, + 0.050242852, + -0.0073287217, + 0.007079825, + -6.922528E-4, + 0.012235242, + 8.916343E-4, + 0.017716857, + -0.0022613115, + -0.0037527974, + -0.021265842, + 0.010592952, + -0.021622688, + -0.0059846193, + -0.008626818, + 0.0034353037, + 0.026709178, + 0.019151943, + -0.019772278, + -0.00300239, + 0.004318768, + -0.0016664019, + 0.006364687, + -0.018449254, + -7.823516E-4, + 0.0011925587, + 0.019550478, + 0.04743009, + -0.02076113, + 0.0013605002, + -0.014221934, + 0.0019404059, + 0.025113098, + -0.02852506, + -0.027701534, + -0.014295832, + -0.00739588, + -0.0164597, + -0.054516014, + 0.009241829, + 0.008445378, + -0.01137995, + -0.010668312, + -0.025145752, + 0.04755556, + 0.02296017, + 0.0089396015, + -0.007513635, + 0.013385414, + -0.009531272, + -0.012822442, + 0.006075624, + 0.0010120532, + 0.0145902615, + 0.004847514, + 0.042103875, + -0.002149122, + 2.9998156E-4, + -0.026090836, + -0.0017296242, + -0.023017535, + -0.01633722, + 0.002988896, + 0.01599083, + -0.009997252, + 0.022139272, + 0.0076395352, + 0.010483156, + -0.0037566468, + -0.019487225, + -0.0068921177, + 0.005661862, + -0.0024324693, + -0.00597411, + 0.0011040814, + 8.858482E-4, + 0.018331727, + -0.033417623, + -0.009248549, + -0.004514836, + 0.007135744, + -0.0015541901, + -0.009702608, + -0.0070451843, + -0.0070392643, + -0.01433437, + 0.009694067, + 0.01755133, + -0.032827947, + 0.017686186, + -0.0030319204, + -0.007072438, + 0.020931466, + -0.024971757, + 0.017470045, + -0.02668178, + -0.0060578063, + 0.0034019349, + 0.013146429, + -0.015931314, + 0.018158328, + -0.0027940401, + -0.008756017, + -0.024353858, + -0.0016274034, + -0.027373666, + -0.0017604036, + -0.014617327, + 0.0074097253, + 0.003931684, + 0.0063434574, + 0.009281445, + -0.03253163, + -0.024314309, + -0.012671402, + -0.010884335, + -0.016959706, + 0.004452682, + -0.006892933, + 0.01606891, + 0.0037801769, + 0.0030432998, + -0.003961562, + -0.014752664, + 0.028744293, + -3.2501845E-5, + 0.0033840262, + -0.016473075, + -0.013648685, + 0.009892622, + 0.005236858, + 0.011603511, + 0.010231431, + 0.014955029, + -0.0021458813, + -0.006556765, + -0.013209555, + 0.018117253, + 0.009453811, + -0.0033101642, + 0.010287286, + -0.009285705, + -0.022245632, + 0.0048701884, + 0.008509303, + -0.019978048, + 0.0077973274, + -0.0048786933, + -0.0062766876, + 0.021822415, + 0.0040198714, + -0.0029554092, + -0.004101433, + -0.009416758, + 0.0028297186, + 0.0116544245, + -0.008967663, + -7.8093325E-4, + 0.011199917, + -0.013159279, + 0.027280822, + 0.044192832, + 0.0095949825, + -8.8305457E-4, + 0.025931366, + -0.019881947, + -0.01314175, + -0.006479991, + -0.014131749, + 0.018350642, + -0.01939293, + -0.021040775, + 0.0010179823, + -0.0119055165, + 0.01102646, + 0.010324012, + 0.0056105563, + 0.008462264, + 0.0051993243, + -0.0081553515, + -0.021226684, + 0.028574998, + 0.024109466, + 0.022869483, + -0.020167356, + 0.0049029305, + -0.0058139195, + -0.012728899, + 0.0113418605, + 0.0016019116, + 0.003940565, + 0.0136983115, + 0.0077843326, + -0.031606607, + 0.0029599876, + -0.006433791, + -0.015666487, + 0.017238038, + 0.0038705638, + -0.015592669, + 0.0060078823, + -0.0070771417, + -0.032664657, + -0.0054398132, + 0.017921053, + -0.025065107, + 0.03282327, + -0.007629027, + 0.001386678, + 0.011086993, + 0.0050223307, + 0.017092882, + 0.020045009, + 0.013296888, + 0.00215324, + 0.0016922905, + -0.007985865, + -0.008135147, + 9.1571803E-4, + 0.0016775359, + -0.0107681295, + 0.020205082, + -0.004914792, + -0.020730527, + -0.028455565, + -0.03489808, + -0.02207711, + -0.032264836, + -0.033524703, + 0.020393662, + 0.018481009, + 0.035261065, + -5.654614E-4, + 0.012025287, + 4.8697958E-4, + -0.026359292, + 0.008131701, + -0.013817794, + -0.015059667, + 0.004091881, + 0.007203839, + 0.010662612, + -0.0105799595, + 0.0010527341, + 0.0022909457, + -0.0010155243, + 0.0023036734, + 0.009013636, + -0.009969728, + 0.015683347, + -0.013512494, + 0.005364999, + 0.006512697, + -0.012585556, + 0.0014735677, + -0.011142227, + -0.01267944, + -0.0068380465, + -0.026672853, + -0.01350693, + -2.649389E-4, + -0.0027827285, + 0.005061822, + -0.018081557, + 0.012558138, + -0.02471326, + -0.039521426, + -0.00885639, + 0.0058285235, + -0.018839985, + -0.004065579, + -0.033663623, + -0.0016760993, + 0.011749073, + -0.020224558, + 0.012031542, + 0.00845411, + 0.01740888, + 0.007513699, + 0.0057937847, + -0.0031843716, + -0.009659403, + -9.317303E-4, + 0.016120622, + 0.023681844, + -0.018579803, + -0.004574577, + 0.020570882, + -0.013998856, + -0.0015442824, + 0.013608285, + -0.0045883935, + -0.0011541342, + -0.007222645, + 0.00957723, + -0.027842784, + 0.021183236, + -0.00797737, + 0.014689772, + 0.021340061, + -0.016135108, + 0.0055375434, + -0.017880313, + -0.0033206227, + 0.009167539, + -0.026919145, + -0.012753097, + 0.017818281, + 0.0011272327, + -0.012814555, + -0.0011065454, + 0.0012535563, + -0.012818467, + 0.010076818, + -0.0035496582, + -0.006406622, + -7.3584367E-4, + 0.0054174657, + -0.0065112263, + -0.021311456, + -0.009639095, + 0.0017844379, + -0.009441359, + -0.002488789, + 0.026599253, + 0.009710617, + 0.008562835, + -0.022700226, + -0.016189445, + -0.00247466, + 0.0034965002, + 0.0021925801, + -0.009116104, + -0.01555218, + -0.0039152657, + 0.012088089, + 0.0034117324, + 0.0011033603, + 0.0035228475, + 0.009641014, + 0.018013407, + 0.0075107114, + -0.010904405, + 0.0069991844, + -0.03185573, + 0.010992606, + 0.021287441, + -0.017520782, + -0.009768727, + 0.004136262, + -0.0010561753, + 0.0063695107, + 0.012789336, + 0.008926802, + 0.021491356, + -0.01471108, + 0.0058174245, + 0.006481018, + 0.009083049, + -0.005812034, + 0.009739745, + -0.018240765, + -0.021039976, + 6.957865E-4, + -0.007786663, + -1.9465928E-4, + 0.015011182, + 0.0011866197, + 0.02799314, + -0.004128657, + -0.0033157663, + -0.006688112, + -0.018625543, + -0.034266356, + -0.022766858, + 0.0015176814, + -0.034029532, + 0.01958556, + 0.025812281, + 0.008619754, + 0.0063206363, + -0.019440023, + 0.0063365684, + -0.006100729, + 0.022975614, + -0.017642977, + -0.027747616, + 0.023044681, + -0.016389534, + -0.0067856763, + -0.008488914, + 0.0048659965, + 0.023813093, + -0.011901993, + 0.013901706, + -0.0069882013, + -0.013670862, + 0.013596736, + -0.01784558, + -0.022534754, + -0.031325605, + -0.01783262, + 0.020800123, + -0.008175881, + 6.1947486E-4, + 0.0019458688, + 0.0027198575, + -0.009281173, + 0.014687232, + 0.0013914861, + -0.015382458, + -0.015171793, + -0.0048962724, + 0.0065368973, + -0.007408051, + -0.009150124, + -0.026561897, + -0.0015677114, + -0.0286808, + -0.019244134, + -0.010397712, + -0.013466745, + 0.0013556868, + 0.0070696645, + 0.015244423, + -0.009771246, + -0.012715667, + -0.01548664, + -0.014950756, + -0.0014536656, + -0.008063449, + 0.038809713, + 0.01638709, + 0.016350228, + -0.0031894052, + 0.00950105, + 0.015598876, + -0.0066685393, + 0.0033113596, + 0.016582906, + 0.019568324, + -0.005331126, + -0.03095488, + 0.0034857881, + 0.016439421, + -7.414109E-5, + -0.016168498, + -0.0070315376, + -0.0026392764, + -0.010233442, + 0.020176794, + 0.013071169, + -0.013339064, + 0.0020489874, + -0.008479454, + -0.004820535, + -0.02510955, + 0.00814106, + -0.03790577, + 0.019463593, + 0.026017942, + 0.0069969995, + 0.002220363, + -0.0073134038, + 0.027750203, + -0.006741808, + 0.0038543553, + 0.019379433, + 0.002641595, + -0.015833536, + 0.024192138, + -0.0022446453, + 6.188416E-4, + -0.0014212705, + -0.0063630785, + 0.00714084, + -0.013337376, + 0.011765176, + 0.0016084987, + -0.013244038, + 0.027961075, + -0.016874295, + -0.0029739903, + 0.005806802, + 0.0036038007, + 0.001659575, + 0.0015247039, + -0.008535883, + 0.021776505, + 7.320646E-4, + -0.0021382351, + 0.012102098, + 0.0056030364, + 0.002633362, + 0.026836986, + 0.011645633, + 0.0038796642, + -0.024067158, + 0.0036259538, + -0.0172888, + -0.023433179, + 0.007873401, + 5.273434E-4, + 0.012733756, + -0.0037714795, + -0.023923857, + 0.018291667, + -0.015514885, + 0.015765462, + 0.009295282, + -0.017939633, + 0.012940848, + -0.0017996156, + -0.0043847593, + 0.008924302, + -0.01663256, + 0.02057715, + 0.016663117, + 0.023571948, + 0.0031668947, + 0.022569386, + 0.0051691784, + 0.021482766, + -0.031011973, + 0.026788715, + -0.01236528, + -0.025112707, + 0.017292581, + 0.02098, + 0.034918353, + -0.0028538122, + -0.010632463, + 0.002680611, + -0.025909124, + -0.034963783, + 0.006545444, + 0.02043268, + -0.036282178, + -0.010241438, + -0.022693636, + 0.020659212, + 0.013213865, + 0.023789056, + -0.018831337, + 0.0014912365, + -0.008643204, + 0.0048531215, + 0.01697307, + -0.017393067, + -0.0014039018, + -0.010780867, + -0.030680772, + -0.0041748486, + -0.010623052, + -0.018088806, + 0.033342116, + -0.018152548, + 3.1573419E-4, + 0.008101449, + -0.022083167, + -0.008744657, + 0.03370946, + -0.014756438, + 0.035427734, + -0.021559106, + -0.033564404, + 0.010882167, + 0.021168916, + -0.025291039, + -0.014894221, + -0.02037097, + 0.0059227822, + 0.015332185, + 0.0021497055, + -0.014611732, + 0.008416673, + 0.002919055, + -0.022816872, + -0.0023179152, + -0.0017260525, + 0.041298296, + -0.004467044, + 0.027311321, + -0.02953416, + 0.009235663, + -0.01860635, + 0.0050499337, + 0.02287325, + -0.0033601818, + -0.0058186697, + -0.013829543, + -0.026951615, + 0.024558501, + -0.0041496893, + 0.010478375, + -0.012188527, + 0.0035529905, + 0.008651059, + 0.0076166103, + -0.0030045975, + -0.0026156227, + 0.0068296953, + 0.0049760025, + 0.0012348132, + -0.01508476, + 0.006329033, + -0.037138674, + 0.0117826285, + 0.0066160955, + -0.004025316, + -9.902585E-4, + -0.009689161, + 0.018911552, + 0.016672961, + -0.007131471, + 0.018004587, + 0.006383379, + -0.017822042, + 0.023601694, + -0.019482814, + -0.001064508, + 0.007397544, + 0.0046631326, + 0.018231409, + 0.016372256, + 0.0056140954, + 0.021108689, + 6.3039555E-4, + 0.009958868, + -0.023068596, + 0.004507586, + 0.0043668984, + 0.011426153, + -0.01101696, + 0.0090954015, + 0.00223263, + 0.0077573075, + -0.01119813, + 0.009872551, + -0.012476341, + -0.006061942, + -0.00538666, + -0.0054182173, + 0.025145775, + 0.012915572, + 0.0066756816, + 0.0042283228, + -0.024260886, + -0.016986921, + -0.015002502, + 0.007734196, + 0.00213024, + 0.018814787, + 0.007210205, + -0.022200283, + 0.007708702, + 0.013242364, + 0.014549712, + -0.015928809, + 0.021009132, + 0.025145935, + -0.005210929, + -0.024362484, + -9.606323E-5, + -0.005655892, + -0.0035942043, + -0.022555603, + -0.024906289, + 0.004650297, + -0.02641723, + -0.02571579, + -0.022500074, + 0.016759813, + 0.018907499, + 0.0029451984, + 0.009887427, + -0.01652393, + -0.018848952, + -0.03428134, + 0.011976048, + -0.01583663, + -0.0150088575, + -0.0017822144, + 0.024183135, + 0.014784096, + -0.0013408968, + 0.01870468, + -0.010502402, + -0.037071224, + 0.012498206, + -0.014319581, + -0.013990192, + 0.02151483, + 0.009413325, + -0.010880943, + -0.018421505, + 0.025698321, + -0.0014566286, + -0.032331668, + 0.0047830148, + 0.020023633, + -0.004729888, + -7.454868E-4, + 0.013321738, + 0.007674471, + -0.0034507744, + 0.00939701, + 0.0059861555, + 7.8618614E-4, + -0.014209545, + 0.021996606, + -0.015409429, + 1.4129095E-4, + 0.033186924, + -0.008141201, + -0.01813678, + -0.011819158, + 0.0113168685, + 0.016365334, + 0.003918349, + 0.014697042, + 0.03158014, + 0.025010398, + -0.02899307, + 0.01047709, + -0.011600788, + 0.029959664, + -0.02166762, + -0.009919444, + 0.0075969673, + 0.03460242, + 0.0062990356, + -0.015796246, + -0.011327134, + -0.0059736255, + -0.01920332, + -0.015800081, + -0.016541617, + 0.0052718837, + 0.021869522, + -0.005310372, + -0.020485122, + 0.007084719, + -0.019723522, + -0.0019292432, + 0.0064770966, + 0.007848241, + 0.009506099, + 0.045872334, + 0.0149787115, + 0.013254498, + -0.004601702, + -0.024995409, + 0.004832468, + 0.0056959363, + -0.0065444326, + 0.015845709, + 0.02879885, + -0.0060979757, + -0.03289813, + -0.012797619, + 0.009363411, + -0.0022779151, + -0.0030925302, + -0.006942379, + 0.010213621, + -0.008427429, + -0.0031252455, + -0.02362702, + -0.0106130615, + -0.004249701, + -0.041448213, + 0.016372552, + -0.017834147, + -0.013612383, + -0.013314793, + -0.010631024, + 0.0075723594, + -0.009462222, + 0.014344196, + -0.0023565288, + -0.018798456, + -0.032405894, + -9.4614073E-4, + 0.0078100055, + 0.017843822, + -0.037050243, + 0.015718633, + -0.018938525, + -0.011746045, + 0.01408934, + -0.0343746, + -0.017339531, + 0.026787119, + 0.02242499, + -0.025210822, + 0.01998007, + 0.009481015, + 0.0034861935, + 0.0065141525, + -0.0031156428, + -0.0014610984, + -0.018746592, + -0.007403147, + -0.0034746132, + 0.016390137, + 0.009592314, + 0.006245846, + -0.018062133, + -0.015390051, + -0.00942882, + 0.022229696, + -0.0037585956, + 0.025686398, + -0.0016112649, + 0.01801165, + -7.533205E-4, + -0.0038548987, + -0.022955293, + -0.015122151, + 0.008759845, + 0.016093878, + -0.0011399765, + 0.016208144, + -0.021328239, + -0.010255587, + -0.010021878, + -0.0102633685, + 0.01297814, + -0.020434014, + 0.023193907, + 0.030740233, + -0.001482589, + 0.0031573754, + -0.014756723, + 0.009469618, + -0.020490184, + 0.0015815009, + -0.013376611, + -0.0030183294, + 0.01944693, + -0.0034126013, + -0.0075044055, + -0.0028103811, + -0.011347666, + 0.004199221, + 0.022061141, + 0.035527207, + 0.0068620294, + -0.011081623, + -0.016967775, + -0.013416612, + 0.0056340965, + 6.4877566E-4, + -0.0052282843, + 0.0015935267, + -5.246802E-4, + -0.009344236, + -0.019313026, + -8.351811E-4, + 8.658456E-4, + -0.0068354085, + 0.009590091, + 0.026037814, + -0.016142271, + 0.011605147, + 0.0028534066, + 0.0023365098, + 0.015823964, + 8.6690235E-4, + -0.012469544, + 0.026630275, + 0.009815665, + -0.020161944, + 0.037955664, + -0.025411207, + 0.009718971, + 0.02694375, + 0.0017178484, + 0.004851058, + -0.032340284, + -0.0018749036, + 0.0065373685, + -0.0064239786, + -0.012552778, + -0.007842351, + -0.017042896, + 0.0051321164, + -0.0044859, + 2.5215818E-4, + 9.368011E-5, + 0.028587619, + -0.014881436, + -0.023156509, + -0.0033956391, + -0.0109350635, + -0.01637674, + -0.016800148, + 0.02568105, + -0.014266527, + -0.010697527, + 0.010335111, + 0.009214667, + 0.027252838, + 0.008407044, + -0.005555994, + -0.016192159, + -0.009487543, + -0.0019200003, + -0.0091110375, + -0.026510347, + -1.4027763E-4, + 0.024082853, + 7.5533136E-4, + 0.0041006417, + -0.01076202, + -0.024131652, + 0.031633545, + -0.009686928, + 0.002311309, + -0.009737822, + 0.0054977736, + 0.017210808, + -0.013201343, + -0.0056888037, + 0.022588829, + -0.008196414, + 0.014483914, + 0.0012421871, + -0.005659579, + 0.0022388974, + -0.016394323, + -0.0068611195, + 0.0028090992, + 0.0028423679, + 0.014286625, + 0.01492672, + 5.5621733E-4, + -0.0014729801, + 0.03541863, + -0.01424205, + -0.022140294, + -0.009984604, + 0.008142831, + 0.023036866, + 0.021806646, + -0.004558251, + -0.03999429, + -0.015751263, + 0.002344635, + 0.013923893, + 0.010635434, + 0.014559657, + -0.012980419, + 0.04915551, + -0.006045117, + 0.025947807, + -0.0012684051, + -0.01625678, + 0.0026669188, + 0.011588483, + 0.014143178, + -0.031153256, + 0.0023448209, + -0.011986714, + -0.013364646, + -0.026969792, + 0.022889268, + -0.002376817, + 0.012493226, + 0.0013757722, + -0.026426604, + 0.021444768, + -0.010431009, + 0.016943585, + -0.004321807, + 0.012851675, + -0.003264399, + -0.010662553, + 0.004499265, + -0.0051065763, + -0.028367972, + -0.019725258, + 0.03229621, + 0.0073711732, + 0.002140705, + -0.016576828, + 0.009495076, + 0.00916446, + -0.0077492837, + 0.010396814, + 0.009242321, + 4.2897422E-4, + 0.0020995394, + 0.0147795575, + 0.0038762004, + 0.0016566359, + 0.011239119, + 0.0043976614, + 0.017919209, + 0.0062863613, + 0.018440628, + -0.017541034, + 0.019128954, + -3.9032477E-4, + -0.0057116817, + 0.012434713, + -0.015422454, + -0.0050547733, + -0.015642313, + 0.014866843, + -0.0012899899, + 0.023053858, + 0.015828578, + 0.015027067, + 0.014037286, + 0.005387124, + -5.5841054E-4, + 0.00637592, + 0.021556258, + 0.031785946, + -0.00971666, + 0.007860423, + -0.039244987, + -0.040528405, + 0.0204455, + 0.02569575, + 0.027412254, + 0.008596115, + -0.00627888, + 0.015310887, + 0.0045485985, + -0.0014713202, + -0.016143447, + 0.009774548, + -0.013579315, + 0.0074922866, + 0.009010541, + 7.408785E-4, + -0.025821924, + 0.017995695, + -0.0033149852, + 0.0014490715, + 7.5577677E-4, + 9.892065E-4, + 0.016924245, + -0.022333669, + -0.016763352, + -0.015045529, + 0.021365957, + 4.7437233E-4, + -0.015804598, + -0.022827096, + 0.008389091, + 0.016309228, + -0.015076435, + 0.016626406, + 0.00964717, + -0.0013751095, + -0.009370569, + 0.003488962, + 0.022449918, + 0.014633323, + -0.00570602, + 0.008741807, + 0.020734243, + -0.027365439, + 0.0043355664, + -0.025544357, + 0.00648664, + 0.012700834, + -0.015069287, + 0.0153701585, + 0.0068561616, + -8.422404E-4, + 0.0110058235, + -0.01765288, + -8.670871E-5, + -0.014713811, + 0.007369788, + -0.0016493642, + 0.021036055, + 0.010711439, + 0.03447506, + 0.007922815, + -0.03196956, + 0.0197335, + -0.010189876, + 4.0342123E-4, + 0.02244174, + -0.027491016, + -0.0010470217, + 0.015043949, + 0.020553494, + 0.009106208, + 0.007577544, + 0.0043596635, + 0.016727507, + -0.008025586, + 0.007953872, + 0.012170501, + -0.00530992, + -0.024181955, + 0.0031916492, + 0.034845326, + 0.029140916, + 0.024361657, + -0.0022192723, + 0.010890531, + 0.004339631, + 0.0027071713, + 0.011512179, + 0.0054080975, + 0.006928756, + 0.008617454, + 0.0073144576, + 0.020612016, + 0.006259717, + 0.003218523, + 0.0080031045, + 0.016857415, + 0.023475576, + -0.006742531, + 0.0040495335, + -0.010579088, + -0.0140467705, + -0.028087063, + 0.021148458, + 0.0052668643, + -0.021702511, + -0.010883645, + 0.0014607008, + 0.013002039, + 0.0031231416, + -0.0026128225, + -0.0073998026, + -0.0063933562, + -0.007926789, + 0.01194466, + 0.036178183, + -0.0029592263, + -0.011779007, + 0.016113179, + -0.027839813, + -0.01745607, + -8.747533E-4, + -0.019084908, + 0.010342842, + -0.0076580737, + -0.014007767, + -0.012648457, + 0.008123583, + 0.005453424, + 0.0044818753, + 0.019050794, + -0.00514873, + 0.00792994, + -0.0336309, + 0.0107847415, + 0.009565623, + -0.0034781105, + 0.004625975, + -0.002787941, + -0.005427409, + 0.008134668, + 0.015263069, + -0.007428473, + 0.01808157, + 0.0099688135, + -0.0049719987, + 0.007046837, + 0.011666465, + 0.011629177, + 2.4947096E-4, + 0.011354184, + -4.187319E-5, + 0.030665172, + 0.02959442, + 0.013726034, + -0.016418977, + 0.0084153535, + 0.0017497252, + 0.027394695, + -0.035084397, + -0.02811023, + 0.0071650352, + -0.0019294093, + -0.02365576, + -0.017288804, + -0.02051079, + 0.0051544034, + 0.0031327617, + 0.0062894775, + -0.006590946, + 0.005161528, + -0.019495737, + -0.02232092, + -0.018916193, + -0.014864726, + -0.0029225892, + 0.020804806, + -0.0116036255, + -0.010575988, + 0.023653701, + -0.0034594068, + -0.005249748, + 0.007853939, + 0.010265034, + 0.00766841, + 0.00687743, + 0.007326398, + -0.004566136, + -0.0011777079, + 0.0027112912, + -0.006500143, + 0.028902084, + -0.009219338, + -0.019149441, + -0.012463073, + -0.030477125, + 0.026620751, + 0.017311363, + 0.009595339, + -0.0040480793, + 0.0029145034, + 0.017165152, + 9.511821E-4, + 0.0029163838, + -0.024499787, + -0.015619327, + 0.005779041, + 0.0040576304, + 0.009532101, + 0.025402198, + 0.021939456, + -0.015944807, + -0.01405395, + -0.005606399, + 0.004436686, + 0.007931374, + 0.0029775915, + 0.0027023563, + -0.005406675, + -1.627546E-4, + -0.016935322, + 0.022195445, + -0.024763342, + -0.027413297, + -0.022037474, + 0.003023148, + 9.574617E-4, + -0.0024647377, + -0.0064157695, + -0.02580943, + -0.02457227, + 0.014459471, + -0.030161263, + -0.0061946553, + 0.00363218, + -0.023187526, + -0.0024578143, + -0.005801309, + 0.0085455775, + 0.011276778, + 0.008404559, + 0.0078196125, + -0.0035640844, + 0.006794045, + -0.009057204, + 0.028220499, + -0.010541909, + -0.0019793923, + 0.012193442, + -0.024982505, + 0.008514949, + 0.0154191395, + -0.011498836, + 0.009085855, + 0.012072778, + 0.002846692, + 0.01572997, + -0.002625158, + -0.0074749338, + 0.0017259725, + 0.0019530652, + -0.015296505, + -0.0041962126, + 0.008237425, + -0.0048641143, + -1.2211347E-4, + 0.0169883, + -0.0070852283, + 0.004894478, + -0.005506267, + 0.0024118226, + 0.0046265037, + -0.006855739, + -0.024882022, + -0.015050097, + -0.02904726, + -0.008206751, + -0.0042899675, + 0.027471568, + 0.007792157, + 0.0038459245, + 0.01064166, + 0.017230483, + 0.0312601, + -0.023521716, + 0.005858914, + -0.032386567, + 0.006023056, + 0.0047825114, + -0.012576856, + -0.006537597, + 0.007590278, + -0.014381629, + 0.012779287, + -0.0037428713, + 0.009627397, + 0.010222165, + -0.019160254, + 0.004994151, + -0.020073643, + 0.017783359, + -0.019666478, + -0.010857681, + 0.0018032818, + 0.005777925, + 0.020617181, + 0.009692789, + -0.012603746, + -0.020020576, + 0.01098012, + -2.2556617E-4, + -0.013664806, + -0.0015855078, + -0.008799417, + -2.372819E-4, + 0.009845045, + -0.0071794363, + -0.017613193, + 0.0059837247, + -0.008893958, + -0.025951821, + -0.009417588, + 0.014334724, + 0.009928551, + -0.0013933748, + -0.017530238, + 0.022152498, + 0.017645942, + -0.010246774, + -0.0013487105, + 0.0022345297, + 0.03163063, + -0.018534616, + -0.012978354, + 0.005919168, + -0.004440177, + 0.030579906, + -0.017684432, + -0.019670997, + 0.01940812, + -0.011598948, + 0.0013341558, + 0.018944135, + 0.016051365, + -0.021719981, + -0.016617596, + 0.014400548, + 0.028293535, + -0.02336759, + 0.0141576305, + -0.0013737747, + 0.001028594, + 0.015390803, + -0.026019283, + 0.0023586291, + 0.01704065, + -0.031866167, + -0.020904874, + -0.009844691, + 0.012694842, + -0.0011258834, + 0.0016199527, + -0.009618353, + -0.016290324, + 0.019206531, + -0.008541885, + -0.017113714, + -0.0016911845, + -0.022637796, + 0.0057468214, + 0.01816027, + 0.011333045, + -0.0072886157, + 0.0016192957, + -0.0064989785, + 0.012709844, + -0.0086866515, + 0.0016133027, + 0.016123714, + 0.0156543, + -0.021084936, + -0.016598376, + -0.0052891825, + -0.0052481066, + 0.013926801, + -0.010649341, + 0.006708823, + -0.004353704, + 0.006755594, + -0.008730335, + -0.008076741, + 0.018539738, + 0.029426869, + 0.028278409, + -0.001884943, + 0.028463272, + -0.008141347, + -0.0027031442, + -0.020551525, + -0.0062779537, + 0.0041118483, + 0.005882817, + 0.0014149003, + -0.015493102, + -0.0032877785, + 0.015227662, + 0.006530298, + -0.006335293, + 0.016074166, + 0.0032279002, + 0.0089805545, + 0.011395456, + 0.010367952, + -0.005572149, + -0.011750433, + 0.01002167, + 0.031415425, + 0.018193906, + 0.010580212, + 0.0202166, + 3.403355E-4, + 0.016362034, + -5.100024E-4, + -0.013037056, + 0.001615676, + -0.01397122, + -0.03016573, + -0.0033177591, + 0.005183139, + 0.0022872607, + 0.0060967444, + -0.012792365, + 0.007803498, + 0.011914406, + -0.004891365, + 0.03896735, + -0.006423535, + 0.008013468, + -0.009065756, + -0.020578738, + 0.0080786515, + 0.013930153, + 0.006113522, + -0.021391781, + 0.013732412, + 0.017708838, + 0.005891832, + 0.01658457, + -0.0056359237, + 0.0124288425, + 0.018551799, + -0.011916026, + 0.0030785217, + 0.011879703, + 0.0064856363, + 0.020137513, + -0.0026033232, + -0.006517639, + -0.023563141, + -0.010792656, + -0.007523855, + 0.0026515124, + 0.03417229, + -0.026313476, + 0.030459136, + -0.0014569339, + -0.012017806, + -0.0054841815, + -0.01682492, + -0.01002901, + -0.008592084, + 0.0061738375, + 0.008741284, + 0.004776304, + 0.024940714, + 0.0018349901, + 0.008782684, + -5.570115E-4, + -0.011420752, + -0.026538752, + 0.00507562, + 0.026616722, + 0.018206937, + 0.021881614, + -0.01873466, + -0.006811678, + 0.009353532, + 0.009241714, + 0.0020864883, + -0.0014972856, + 9.474869E-4, + 0.009183029, + 0.010517505, + 0.02018192, + 0.0070387125, + 0.019525975, + -0.017791519, + -0.01406072, + -0.020999266, + 0.019184323, + -0.027337968, + -0.010239693, + 0.0029803363, + 7.3593436E-4, + 0.014615265, + 0.009101829, + -5.0968543E-4, + 0.01658135, + 0.005369115, + 0.015318303, + -0.037233666, + -0.007735928, + -0.0057573942, + 0.0030796223, + 0.0055057164, + 0.009117065, + 0.00308037, + 0.013567462, + 0.023750225, + -0.004511245, + -0.012173342, + -0.0041817212, + 0.017457454, + -0.043893065, + 0.005804404, + 0.014696253, + 0.01395093, + -0.010538993, + -0.009088535, + -8.031049E-4, + -0.02102262, + -0.03964286, + -0.018250056, + -0.025083898, + 0.009085798, + 0.0062150266, + -0.015155314, + -0.010267653, + 0.021350963, + 0.023238823, + 0.02306058, + 0.007157985, + -0.028794348, + -0.010917547, + 0.012990084, + 0.014352283, + 0.013785868, + -5.190347E-4, + -0.005145868, + -0.014371934, + 0.026653318, + -0.014373058, + 0.018873913, + 0.015168752, + -0.01444761, + -0.018376606, + -0.0020116756, + -0.022150502, + -0.020235235, + -0.0110812625, + -0.034708217, + 0.0075653293, + 4.2950807E-4, + 0.035932638, + -0.019437214, + 0.03659219, + 2.0494175E-4, + 0.0045930054, + 0.007089861, + -8.229516E-5, + -0.010942841, + -0.007837156, + -0.013117233, + 0.004268891, + 0.006934851, + 0.0055808974, + -0.0067608287, + -0.0015176065, + -0.005574143, + -0.020368265, + 0.021997513, + 0.014571241, + -0.026664138, + -0.015212122, + -0.0063736793, + -0.0021821514, + -0.0049148314, + -0.016963053, + 0.001302853, + 0.011713632, + 0.0023963628, + 0.011944814, + 0.0063776965, + 0.013414658, + 0.01666429, + 0.007902901, + 0.0035468366, + -0.0063692164, + 0.012794806, + 0.021108516, + 0.018248001, + 0.0064974423, + -0.038797993, + 0.00431273, + 0.0068951305, + -0.0030271888, + -0.013272633, + -1.2837506E-4, + 0.02595492, + -0.0123115145, + 0.019779567, + -0.009303616, + -0.008678999, + 0.0073971897, + 0.002328384, + 0.0010358761, + -0.014513186, + 0.008028346, + 0.002412317, + -0.009668878, + -0.018153979, + -0.009071044, + -0.0011087583, + -0.009798356, + -0.03538766, + -0.04083528, + -0.013016594, + -9.4190036E-4, + -0.006890606, + -0.010542975, + -3.837505E-4, + -0.0068139564, + 0.007236311, + -0.006780424, + 0.011556238, + -0.0027604979, + -0.018713182, + 0.03693134, + -0.0052816197, + -0.010650991, + -0.006941688, + -0.01132398, + 0.012360591, + -0.023717554, + 0.026808312, + -0.008219199, + -0.013498545, + -0.01295191, + 0.00512699, + -0.0025372005, + -0.0072625247, + -0.0011200049, + -0.021959135, + -0.005887564, + -0.011442596, + 0.008066991, + 0.003625864, + -0.018359117, + 0.011224451, + -0.0061520683, + -0.012437368, + -0.029325066, + 0.0059215687, + -0.017187744, + -0.018966956, + -0.004281201, + -0.009773951, + 0.013153657, + 0.014767374, + -0.025525717, + -0.013025725, + -0.015559532, + -0.006186685, + -0.0012705582, + 0.0024950684, + 0.009800647, + -0.007663676, + -0.009988852, + -0.0020593787, + 0.0017553502, + 0.022086972, + 0.023002312, + 0.0027737394, + -0.005136314, + 0.012699811, + 8.0477144E-4, + -0.00839261, + -0.006710345, + -0.005932226, + -0.002402841, + 0.0148763405, + 0.014157264, + -0.024970852, + -0.016560117, + 0.01410517, + 0.009174036, + 0.0235025, + -0.01940139, + -0.019411638, + 0.008467932, + -0.011321576, + 0.02027962, + 0.0061071953, + -0.005293963, + -0.016039426, + 4.7315472E-5, + -0.016992267, + 0.008329579, + -0.009339534, + 0.004885974, + -0.0014522638, + 0.0054483083, + 0.00324138, + -0.00667484, + 0.011381613, + -0.009483717, + 0.017205179, + 0.020066855, + -0.002472942, + -0.012325048, + -0.03062839, + -3.085826E-4, + 0.003449573, + 0.012689333, + -0.010067244, + 0.0015835108, + 0.0062271715, + 0.008450258, + 8.730388E-4, + 0.009658609, + 0.008777764, + -0.019049032, + -0.012084016, + 0.0056453072, + -0.025080096, + -0.010967958, + 0.019345766, + -0.0058856313, + -0.036560483, + 0.020035625, + 0.017283618, + 0.0035176165, + 0.026707366, + 9.813933E-4, + 0.019169046, + -0.024365082, + 0.013875692, + -0.030539656, + -7.3143776E-4, + -0.023583569, + -0.027687268, + 0.003808401, + 0.010835332, + -0.0044588083, + 0.0145241795, + -0.029794082, + -0.0023299695, + 0.032960754, + -0.010512494, + 0.01840744, + 0.0077731903, + -0.0032986752, + -0.015838297, + -0.0067360117, + 0.0100696655, + 0.021502052, + 0.0021236844, + -0.0063777226, + -0.0016623504, + -0.023610367, + 0.034291267, + -0.029887587, + 0.039727323, + 0.008118778, + -0.0014839659, + 0.0288551, + -0.008512074, + -0.017699677, + -0.022487713, + -0.038154308, + -0.011929587, + 0.0010944156, + 0.0034660061, + 0.016546955, + -0.006441309, + 0.0041136066, + 0.0098677855, + -0.0048507852, + -0.018844495, + -0.019995445, + -0.013102693, + 0.0049131047, + 0.022574577, + -0.0057630893, + 0.012007117, + 0.015946828, + 0.012260928, + 0.011029427, + 0.0011952851, + 0.01674262, + 0.0057363687, + 0.0051177205, + -0.042427383, + 0.008782708, + -0.008015807, + 0.0066623907, + -0.006760548, + 0.04549136, + -0.031742897, + 0.01460087, + 0.013911303, + -0.014277364, + 0.026510466, + 0.0067292904, + 0.033798847, + -0.006022587, + 0.013749293, + 0.012262271, + 0.016886942, + 0.0063435966, + 0.023445915, + -0.014685339, + 0.029094419, + 0.011957696, + 0.008560714, + -0.009255722, + -0.0028686754, + 0.0077644675, + 0.014024951, + -0.02070578, + 0.025858583, + -0.03449072, + 0.0061624786, + -0.029321443, + 0.0014622601, + 4.4966306E-4, + 0.018453136, + -0.009302153, + 0.007836823, + 0.008058511, + -0.018765384, + -0.003929286, + -0.027039804, + -0.009073758, + 0.0083336085, + 0.021696247, + -0.01985559, + -0.008799275, + 0.02638072, + -0.00862143, + -0.0031359564, + -0.014873752, + -0.031802885, + -0.0104190875, + -0.015529746, + 0.012543959, + 0.019494068, + -0.00473774, + 0.011484851, + 0.003571012, + 0.035735548, + 0.0033554053, + -4.892201E-4, + 0.013945746, + 0.009292363, + 0.0052194763, + -0.0058718794, + 0.0015723893, + -0.030122504, + -0.0073449733, + 0.044234816, + 0.0025338465, + 0.013338424, + 0.017941205, + -0.03138253, + -0.019552894, + 0.010521119, + 0.015851714, + 0.0028701208, + 0.0099778995, + 0.002985353, + -0.021927567, + 0.0149147175, + -0.02257824, + 0.012268182, + -5.032447E-4, + -0.0074189133, + -0.0013903242, + -0.012346971, + -0.0064293267, + 0.009417837, + 0.01853765, + 0.014051599, + -0.0019433472, + -0.009135485, + -0.011970155, + 0.0017712379, + -0.012608297, + -0.018205466, + -0.022515742, + 0.005258478, + -0.00636879, + -0.015399056, + 0.009868304, + 0.014548038, + -0.012289597, + -0.011204587, + 0.0033167596, + 0.004840009, + 0.034326896, + 0.012274265, + -0.002524689, + 0.0075502256, + -0.006327171, + 0.022724483, + 0.023229012, + -7.551595E-4, + -6.5915607E-4, + 0.00945065, + 0.018799283, + 0.008048185, + -0.011242127, + 0.01834515, + -0.0031687822, + -0.012104323, + 0.020224726, + 0.020151045, + 9.6861523E-4, + 0.006897771, + 0.026833404, + 2.570922E-4, + 0.028437797, + -0.010998188, + -0.011119486, + 0.020319568, + -0.015889175, + -0.0021372729, + -0.004501743, + -0.024608284, + 0.013893255, + 0.0012838441, + -0.022286782, + -0.0044424036, + -0.0071552373, + -0.017474936, + -0.009214244, + 0.020697204, + 0.008576506, + -0.0062575107, + 9.159054E-5, + -0.0055445186, + 0.025122503, + 0.0038053708, + -0.003272148, + 0.01686015, + 0.024237815, + -0.01622059, + -0.0011792543, + 0.008243296, + -0.020030905, + 0.03310795, + -0.032597464, + 0.014146028, + 0.02791468, + -0.0046434137, + 6.908774E-4, + -0.023326343, + 0.0010775807, + 0.001992318, + -0.008289663, + 0.03112329, + -0.019490432, + 0.014235169, + -0.022359682, + -0.021535052, + -0.01037736, + 0.02072201, + -0.00782933, + 0.009668544, + -0.007564132, + 0.01683874, + -0.037200548, + 0.01950568, + -0.025216304, + -0.015243787, + -0.022031533, + -0.023561122, + -0.020105382, + 0.0073051536, + -0.0044930275, + 0.017211387, + 0.002008876, + 0.010242388, + -0.015963648, + -0.0017033174, + -0.0032440461, + 0.0072490405, + 0.018390534, + 0.018469654, + 0.030971857, + 0.00233445, + 0.012364325, + 0.0021018174, + 0.014355993, + -0.011553636, + 0.019389667, + -0.00143821, + -0.0025911315, + 0.019414607, + 0.004233858, + -0.008714418, + -0.022244897, + -0.0038077761, + -0.019821266, + -0.0053792307, + 0.02942644, + -0.016292619, + 0.015549093, + 0.030725172, + 0.018309185, + 0.006712611, + 0.0022345388, + 0.001624082, + -0.0070810835, + -0.007658243, + -0.0085556805, + -0.0144794835, + 0.006723686, + -0.008336666, + -0.0046891887, + 0.0022971923, + 0.028333545, + -0.009296516, + 0.014895092, + 7.015779E-5, + 0.0020825604, + 0.0103161, + 0.010522439, + -0.022536058, + 0.025128255, + 0.03233031, + -5.706231E-4, + 0.025643922, + 0.01196774, + 0.022857128, + -0.010195515, + 0.023878394, + -3.297174E-4, + -0.006942162, + -0.02679811, + -0.011803735, + -6.757395E-5, + -0.01367222, + -0.008565754, + 0.004074622, + 0.011692872, + 0.025831804, + -0.013653099, + 0.02769672, + 0.024467237, + 0.0038219967, + 0.019428313, + -0.020464588, + 0.012355273, + 0.00628204, + 0.025093026, + 0.008049251, + -0.0042924862, + -0.0055544903, + -0.0053341445, + -0.018948074, + -0.004436385, + 0.01007433, + 0.007481618, + 0.004636391, + 0.00790688, + -0.011193184, + 0.0105976835, + -0.025801977, + 0.0039954055, + -0.0013692788, + 0.016561335, + 0.01484789, + 0.02433447, + 0.01539677, + 0.0073361476, + 0.01818738, + 0.0013522004, + -0.009534327, + -6.4077013E-4, + -0.0045305244, + -0.014736849, + -0.006254491, + 0.026527097, + -0.0040248833, + 0.025794823, + 0.03495158, + 0.014778142, + -0.013938421, + 0.001759916, + -0.008564325, + 0.0022932347, + 0.010665108, + 0.020204859, + 0.015170115, + 0.011567238, + -0.0059574274, + 0.00876855, + 0.021851655, + -0.009950943, + 0.022195138, + 0.0015973015, + 0.0012554944, + -0.010308216, + -0.01842309, + -0.017440092, + -0.008003656, + 0.010460592, + -0.026690843, + 0.0015287752, + 0.012391945, + 0.02324466, + -0.016585184, + 0.004752163, + 0.001938094, + -0.030574055, + 0.0369472, + -0.006010725, + -7.682211E-4, + 0.015373444, + -0.0060128127, + -0.01303392, + 0.022374993, + 0.010312236, + -0.01432968, + 0.019867312, + -0.013677843, + -0.019383559, + -0.0028025648, + -0.0043348996, + 0.01441534, + -0.025363894, + -0.0066413274, + -0.015391965, + -0.015322714, + 0.010865895, + 8.5688214E-4, + 0.001005176, + -0.0026269353, + 0.023983577, + -5.7640387E-4, + -0.029453628, + -0.01081223, + -0.0024712647, + -0.0015818322, + -0.007133199, + -2.8024768E-5, + 0.003218831, + 0.010284106, + -0.012007618, + 0.013341436, + 0.004571448, + -0.019449485, + 0.0022183368, + -1.5000268E-4, + -0.020105977, + -0.018418727, + -0.012707616, + -0.0116510345, + 0.021148616, + 0.030401038, + -0.038661383, + 0.03155783, + 0.0072622113, + -0.0071594613, + 0.008744884, + -0.0072227907, + -0.027146528, + -0.016525025, + 0.015535925, + -0.0018982295, + -0.0047250716, + -0.0123635335, + -0.0057689915, + 0.009764456, + -0.0014752074, + -0.0024475288, + -0.00906587, + 0.0011463895, + 0.013566986, + -0.02207882, + 0.010948029, + 0.0015695557, + 0.0022363192, + 0.015358721, + 8.1621733E-4, + 8.8320556E-4, + -0.005879594, + 0.018469084, + -0.017339671, + -0.0039823228, + -0.024644468, + -0.02999074, + 0.00544756, + 0.014841005, + 0.007826828, + 0.020750444, + 0.020161292, + -0.028721286, + 0.029661672, + 0.0011816266, + -0.023278998, + 0.03161947, + 0.037856832, + -0.0053448896, + 0.0075711915, + 0.025105448, + 0.005453528, + 0.02212012, + 0.014161887, + 0.0011890997, + -0.0070778057, + -0.023174029, + 0.0011906279, + 0.0075331405, + -0.02262047, + -0.0059298626, + 0.015388419, + -0.0071334066, + -0.020140052, + -0.0010360505, + -0.012702135, + 0.018588457, + -0.02417415, + 0.010242325, + -0.010444849, + 0.0013875646, + -0.023931315, + -0.009070493, + 0.0025840218, + 0.0022288826, + -0.024601331, + 0.004644134, + -0.03658931, + 0.020206857, + -0.0039861742, + -0.0037032235, + -0.019071039, + 0.0020240992, + -0.013609247, + 0.038935233, + -0.015507771, + 0.010767214, + -0.004316118, + 0.009584671, + 0.0294701, + -0.014103375, + -7.820399E-4, + 0.02541968, + 0.003245964, + -0.013172395, + 0.017525628, + -0.013560198, + -0.0050470103, + 0.02376456, + 0.016654115, + -0.002533927, + -5.445519E-4, + 0.015396985, + -0.011151559, + 0.02111559, + -0.007428937, + -0.024460226, + 0.02214146, + 0.022403317, + -0.002599026, + -0.016436644, + 0.020246238, + -0.004348054, + -0.026361002, + 0.033843335, + 0.02630193, + -0.0036726228, + -0.015308699, + -0.03569326, + 0.017542224, + -0.007200036, + 0.0062267776, + 0.0066252374, + -6.8179696E-5, + 0.0071011716, + -0.027534219, + -0.012421766, + -0.0033674205, + 1.7235037E-4, + 0.012943344, + -0.024593517, + -0.0064305314, + -0.0015288966, + -0.012977856, + -0.013811125, + -0.008060097, + 0.005020982, + 0.015227503, + -0.016011413, + -0.004230738, + -0.015966257, + 0.0021645965, + -0.003574973, + 0.033714026, + -0.020601626, + 0.010936443, + 0.019440826, + -0.022442954, + -0.033658624, + 0.006962978, + -0.020302646, + -0.008361792, + -0.00969632, + 0.024157437, + -0.0049717617, + 0.011689236, + 0.00815331, + 0.006431024, + -0.030770902, + -0.031088877, + -0.031773224, + 0.0018612178, + -0.024116188, + -0.0093448, + 0.010165693, + 0.014770379, + 0.018382732, + -0.0035564576, + 0.004258972, + -0.0067205713, + 0.0075449194, + -0.0015136842, + 0.001716587, + -0.0074847876, + -0.002691152, + 0.008687993, + 0.037935965, + 0.027035858, + 0.013330711, + 0.024297325, + -0.033376534, + -0.009753018, + 0.011432579, + 0.01896957, + -0.027965616, + -0.019634524, + 2.0956922E-4, + 0.018702192, + 0.020226624, + -0.015633557, + 0.011275769, + 0.0025172324, + 0.008199126, + -0.0068479446, + -0.016314348, + 8.671779E-4, + 0.0071813026, + 0.014001284, + 0.019209312, + -0.0034941859, + -0.011508258, + -0.026906203, + -0.032911092, + -0.023405885, + -9.8448196E-5, + -0.010524894, + 0.0021403455, + 0.01484124, + 0.0036069597, + -0.033888824, + 8.6247985E-4, + 0.022724649, + -0.041586094, + -0.008605584, + -0.017322036, + -0.023531754, + 0.0013635973, + -0.0025513622, + -0.0035583777, + -0.016436396, + 0.02020743, + -0.015413733, + -0.011570987, + 0.02694693, + 0.011404996, + 0.018822966, + 0.0052778115, + -0.0040770755, + 0.011554944, + -0.0030187627, + 0.01214261, + 0.013263259, + -0.0067008957, + -0.021825045, + -0.014190894, + 0.022356283, + 0.013721, + 0.015752856, + -0.008307538, + 0.0034734807, + 0.008356099, + 0.031023152, + 0.003911246, + -0.007028067, + 0.02591714, + -0.0075193653, + 9.845577E-4, + -0.0025060445, + -0.017136134, + -0.020042848, + 0.019985523, + -6.643798E-4, + 0.013518307, + -0.0079188775, + 0.01059315, + 0.008152671, + 0.016474836, + -0.0394947, + -0.015311907, + 0.004182591, + 0.0077887676, + -0.004630862, + -0.0022689, + 0.0025110377, + 0.022106845, + 0.0035661263, + 0.019598704, + -0.025012106, + -0.01417599, + 0.012319046, + -0.017051334, + 0.02128767, + -0.022766616, + -0.012778243, + -0.005509957, + 0.010590141, + 4.47083E-4, + 0.009315713, + 0.014785263, + 0.01253141, + -0.0024327736, + -0.010786741, + -0.040482838, + 0.0037885695, + -0.006308625, + -0.0021135123, + -0.001269785, + 0.013326415, + -0.036077917, + -1.9436648E-4, + -0.0046113185, + -0.023165284, + -0.0036306821, + 0.0061798943, + -0.03334075, + 0.008169513, + 0.0024108356, + 0.02747447, + 0.006466866, + -0.015229406, + 0.0037490027, + -0.0010700166, + 0.012261205, + 0.0057855523, + -0.024707373, + -2.8655762E-4, + -0.0121042, + -0.0110451635, + -0.028432108, + 0.012743968, + 0.01212749, + 0.029068317, + 0.005405928, + -0.0032349227, + -0.0012337042, + -0.023339994, + -0.01132509, + 0.001615664, + -0.03557219, + 0.0031254904, + -0.00768355, + 0.015552734, + 0.021174205, + -0.039356977, + -0.0152845215, + 0.0143345725, + 0.0015627171, + -0.0052557252, + 0.0124345105, + -0.001974626, + -0.0058494294, + 0.04289211, + 0.008886012, + 0.02053486, + -0.004846617, + 0.01031071, + -0.0016452308, + -0.012579967, + -0.0026677987, + -7.677052E-4, + -0.004928323, + 0.01946175, + -0.0010171913, + -0.0064067426, + -0.022547834, + 0.005532571, + 0.0113611175, + -0.0071010287, + -0.002286659, + -0.0067201727, + 0.017548122, + -0.025961569, + 2.2671251E-4, + -9.995798E-4, + -0.018050374, + 0.020512393, + 0.0039651403, + -0.014121973, + 0.013225495, + -0.021401173, + -0.02154381, + 0.0011726387, + 0.0035661065, + 0.016220585, + 0.018637948, + -0.012051866, + 0.012522272, + 0.0027854308, + -0.027265687, + -0.015669435, + 0.0035190193, + 0.010980232, + 0.0034008513, + 0.0249383, + -0.034733288, + 0.021563238, + -0.017415876, + 0.0021692442, + 0.019586422, + -0.020414727, + -0.008903189, + 8.5357E-4, + 0.005702682, + 0.018183878, + 0.015089423, + -0.006684445, + 0.011549072, + -0.006382638, + -0.009035316, + 0.0064435927, + 0.0034796295, + -0.016075768, + 0.015422079, + 0.008776855, + -0.0034916392, + -0.0131176915, + 0.0034801005, + -1.8020756E-4, + -0.009130637, + -0.019785104, + -0.03300056, + 0.027500322, + -0.04621822, + 0.039515868, + -0.008648248, + 0.0015884425, + 0.034750573, + 0.010928107, + 0.0012819471, + -0.017838996, + -0.006897364, + 0.0016183074, + -0.015050159, + 0.007275932, + 0.0050897077, + 0.0049011116, + 0.014441406, + -0.021870665, + -0.008857338, + -0.003789571, + -0.0010659264, + 0.004774368, + 0.023067039, + -0.0074537965, + -0.012942684, + -0.013892118, + 3.093424E-4, + 0.028869614, + 0.023144856, + -0.0033453407, + -0.0071752467, + 0.015208461, + 0.0049429475, + 0.0029109046, + 0.012572713, + 0.0063195517, + 0.0017481482, + 0.018997632, + 0.03373498, + 0.019695658, + -0.001934536, + 0.015727142, + -0.001996279, + 0.023266885, + 0.007101844, + 0.018237205, + -0.012484126, + 0.01218289, + -0.013662306, + 0.0024941582, + -0.003768601, + 0.012856964, + 0.016703302, + 0.027526533, + 0.01721552, + -0.004666971, + -0.010804902, + 0.011793973, + 0.012355508, + -0.0074214637, + 0.019145496, + 0.005422332, + -0.0010225925, + 0.029279493, + 0.0037439791, + -0.007490647, + -0.007037012, + 0.008399839, + 0.0028587703, + -0.005630344, + 0.0024714377, + 0.014791263, + -0.0068863737, + -0.038380228, + -0.020627318, + -0.010750093, + 0.0021329615, + 5.138273E-4, + 0.013019306, + 0.0029814516, + 0.016988441, + -0.008934514, + 0.006764217, + -0.010263294, + 0.0066200737, + -0.0025101963, + -0.015571715, + 0.042390715, + 0.009918349, + 0.006480168, + -0.011265549, + -0.018204609, + 0.0032843028, + 0.0018414531, + 0.018877778, + 0.003648898, + -0.016438097, + 0.017151639, + 0.019237572, + -0.015629297, + -0.0346036, + 0.013517424, + -0.002739029, + 0.0037441154, + -0.010593075, + -0.012137767, + 9.133002E-4, + 0.009731743, + 0.0044066333, + -0.004540759, + -0.019907327, + 0.002198256, + -0.023808569, + -0.006453026, + -0.0045405296, + -0.002785777, + -0.008838633, + 0.013288804, + 0.00186426, + 0.004272489, + -0.006175749, + -0.007061922, + 0.0034463883, + 0.0060748556, + -0.002537192, + 0.012550881, + -0.03836862, + -0.008930791, + -0.014833605, + -0.005886318, + -0.009235139, + -0.010559309, + -0.00974466, + 0.0012968645, + -0.0012862796, + -0.00100601, + -0.009378954, + 5.7216483E-4, + 9.2304294E-4, + -0.018792715, + -0.028865617, + -0.015085398, + -0.010845469, + 0.014570285, + 0.020688139, + 0.018538311, + 0.012736445, + -0.0037572791, + 7.796849E-4, + 0.008334542, + -0.025736375, + 0.0055146893, + -0.008133247, + -0.016486613, + 0.006131032, + -9.859401E-4, + 5.0318066E-4, + -0.012912038, + -7.4826437E-4, + -0.01240564, + 0.010281972, + -0.0107378885, + -0.0055005914, + -0.0034846892, + -0.018953685, + 1.3279165E-4, + 0.0053304764, + -0.0062268176, + 0.028403128, + 0.024419572, + -0.024199957, + 0.0045328266, + 0.0057186596, + -0.018281527, + 0.007390094, + -0.039584514, + 0.012921226, + 0.004879821, + 0.009557274, + 0.013451744, + 0.01966389, + -0.0026514656, + -0.003918314, + -0.0020550573, + -0.017373368, + -0.006695427, + 7.552464E-4, + 0.010536545, + -0.0030568945, + -0.010025026, + -0.0107152695, + -0.01709412, + 0.0010308161, + 0.0075259237, + -0.047552697, + 0.0121108685, + -0.00553514, + 0.029668955, + 0.013221382, + -0.01808863, + -0.033816427, + -0.0031617656, + 0.040996846, + 0.0045246407, + -0.0030165084, + -0.0030168667, + 0.01700381, + -0.004239788, + -0.008839193, + 0.016197905, + 0.0093083605, + 0.009907243, + 0.0012395607, + -0.0020787627, + -0.031584788, + -0.03378947, + -0.005245361, + 0.04033975, + 0.0044731433, + 0.029100101, + -0.010688933, + 0.018026821, + 0.013722293, + -0.003993763, + 0.005367728, + 0.016578197, + -0.0011126496, + -0.0023581665, + -0.0040301033, + -0.01915341, + -0.026295394, + 0.021683821, + -0.007885686, + 0.014723104, + -0.02715572, + -0.0017980881, + 0.010749671, + -0.013483515, + 0.0011855906, + -0.008873075, + -6.483511E-4, + -0.011902117, + 0.021691643, + -0.0068563647, + 0.010397831, + -0.025277415, + -5.190403E-4, + -0.0018351456, + 0.0191336, + -9.002645E-4, + -0.033177942, + 0.005667077, + 0.015087624, + -0.011752748, + 0.009403299, + -0.012279042, + 0.011785134, + -0.026338674, + 0.013149111, + -0.0013989389, + -0.024494817, + -0.013442501, + -0.017189836, + 0.0016995366, + 0.011331471, + -0.0059802956, + -0.017282296, + 4.8442662E-4, + -0.0065118847, + -0.0022359279, + -0.0014483219, + 0.0047841347, + 0.018572943, + 0.0116198575, + -0.006011756, + 8.2736684E-4, + -0.012222586, + 0.025288086, + 0.009167351, + -0.0039860294, + 0.016655197, + -6.7456166E-4, + -0.014883761, + -0.008587211, + 0.0054379446, + -0.029360568, + -0.03606713, + -0.0067106024, + -0.0038512396, + -0.023233458, + 0.007297438, + -0.0156085985, + -0.023918288, + 0.0014316265, + 9.424869E-4, + -0.013978989, + -0.018153124, + 0.013700249, + 0.017582808, + -0.008981522, + 0.039221544, + -0.006701553, + 0.0016478422, + -0.0054684784, + 0.0011702558, + -0.023554346, + 0.0016469397, + -0.0066252374, + -0.00775969, + 0.0016834838, + -0.0050542294, + -0.030087465, + -0.014097388, + -0.0010079411, + -0.02513047, + -0.009114762, + -0.018222528, + -0.014108285, + -5.5037417E-5, + 0.013447372, + 0.0047549526, + 0.01817193, + 0.0020444158, + 0.0065344702, + 0.02229008, + 0.008019363, + 0.0025753807, + -3.677516E-4, + 0.029325787, + 0.0223029, + 0.039274227, + -0.022160264, + -0.0011829819, + -2.514656E-4, + 2.4108455E-4, + -0.01809184, + 0.008048092, + -0.008629401, + 0.012645985, + -0.002591368, + 0.004584061, + -0.0040032943, + -0.0017412648, + -0.01723792, + 0.017406037, + 0.0063985684, + -0.011634316, + 0.016215999, + -0.0037439421, + -0.0092628375, + 0.014163252, + 0.002819405, + -0.0075164977, + 0.01235826, + 0.024117583, + -0.011448067, + -0.022078497, + -0.0249709, + 0.0023066716, + 0.0028995285, + -0.00916229, + 0.003034765, + -0.0065536452, + 0.021370716, + -0.0022173966, + 9.6170354E-4, + 0.0044052526, + 0.013742011, + -0.015915738, + -0.021498848, + -0.016284805, + 0.0048716636, + 0.0026779675, + 3.6989682E-4, + -0.026132282, + 0.016153274, + -0.008188043, + -0.010201185, + 0.0045396835, + 0.010127593, + 0.008705257, + -0.01026646, + -0.014482453, + -0.0024487823, + -0.014091991, + -0.014005017, + 0.0010205097, + -0.013052309, + -0.009738758, + -7.454006E-4, + -0.009046413, + -0.021621412, + -0.027317053, + 0.022816932, + 0.0094793495, + -0.0022182788, + -0.008331195, + 0.0027734232, + 0.0357594, + -0.009288113, + -0.019312117, + 0.002420097, + -0.008294472, + -0.002592845, + -0.015233109, + 0.027587982, + -0.0029374082, + 0.019246124, + -0.020352125, + 0.01798261, + 0.020662699, + -0.00536441, + -0.022288548, + -0.021627264, + 0.024517654, + -0.014310269, + 0.021495076, + -0.009905897, + 0.0166086, + 0.012592266, + -0.011781597, + -0.0080254795, + -0.02127895, + -0.0137597965, + -0.011396304, + -8.139147E-4, + 0.009230824, + 0.006776608, + 6.59827E-4, + 0.008312352, + 0.0066073835, + 0.006348579, + 0.005004078, + 0.0043417183, + 0.013799264, + -0.008537748, + -0.015815595, + 0.02595663, + -0.0030362676, + 0.007172945, + -0.03231004, + -0.0046747504, + 0.029738583, + -0.012459932, + -4.3196275E-4, + -0.0061942223, + -0.009093654, + 0.01927968, + -0.022691315, + 0.0070534553, + -0.0150787, + -0.0021338055, + 0.03158331, + 0.016594056, + 0.0142014725, + 0.0028188636, + 0.0021766454, + 0.03364263, + 0.011886963, + 0.019467697, + 0.005987762, + -0.0034791308, + 0.0026363696, + 0.003435146, + -0.009824025, + -0.0016780073, + -0.015380727, + 0.016338235, + 0.008276577, + -0.0010478556, + -0.0041227154, + 0.025681615, + -0.008051397, + 0.0101480335, + -0.014914966, + 0.008489721, + -0.015200599, + 0.0050466447, + -0.004629211, + -0.014606045, + -0.02662932, + 0.019650605, + 0.037515122, + 0.014226464, + 0.0018050437, + -0.0027532994, + 0.006590249, + 0.016422855, + -0.041969668, + -0.013818163, + 0.009406238, + 0.0010501161, + -0.022868376, + -0.028420635, + -0.0069244783, + -0.019987188, + 0.015485199, + -0.0031102858, + 0.020428939, + -0.0137745505, + -0.0030017744, + 0.016699525, + 0.0077905213, + -0.002929283, + 0.010591741, + -0.001445762, + 0.014866525, + -0.0059080333, + 0.009312733, + -0.014362844, + -0.0064678146, + 0.017318303, + -0.032694843, + 0.019845353, + 0.02741512, + 0.013716657, + 0.0056408364, + -0.004744298, + -0.014435195, + 0.010144388, + 0.0010500104, + -0.016180016, + -0.013675218, + -0.0040519056, + -0.00184922, + -0.011215114, + 0.026977059, + -0.0107533, + 0.020336896, + 0.00998105, + -0.012450539, + -0.019142907, + -0.010083631, + 0.010429338, + -0.0071783816, + -5.4440834E-4, + 0.009006225, + -0.02162339, + 0.0056341775, + -0.0024989222, + -0.019091854, + -0.0057945037, + 0.0035250918, + -0.012591635, + 0.02672481, + -0.006575714, + -0.0028729746, + 0.015557557, + 0.0052521923, + 0.0065482035, + 0.027192215, + 0.007170789, + -0.013067501, + 0.041887153, + 0.006617432, + -0.01099242, + 0.0032369953, + 0.010593894, + -9.803876E-4, + -0.021538196, + 0.020175993, + -0.03173275, + -0.0034819306, + -0.019279297, + 0.0042680074, + -0.007065128, + 0.004476709, + -0.010327599, + -0.005899485, + -0.03262835, + 0.0021951706, + 0.018067233, + -0.0052717347, + -0.0031172694, + 0.004998736, + -7.615743E-4, + -0.017290479, + -0.007885361, + 0.013618758, + -0.001693088, + -0.020912623, + 0.010024522, + 0.0092939595, + 0.0021742042, + 0.020696927, + -0.015074054, + 0.008398798, + -0.002639714, + 0.011368077, + 0.0037293504, + -0.004684279, + -0.002366006, + 0.0077354982, + 0.03324608, + 0.013650479, + 0.012937773, + 0.0069381297, + -0.007256562, + 0.030543845, + -6.630552E-4, + 0.013112855, + -0.008433802, + -0.017318377, + -0.015420892, + -0.0066161104, + 0.021904904, + -0.014761843, + -0.008840437, + 0.008286861, + -0.004691204, + 0.022211257, + 0.006641476, + -0.027479673, + -0.025093127, + 0.015950672, + 0.016981417, + -0.02609931, + 0.007859496, + -0.026679706, + 0.015438035, + 0.008740617, + -0.051425155, + 0.008151651, + 0.01944562, + -7.8359595E-4, + 0.00866158, + 0.022208294, + 0.022596793, + -0.024893437, + 0.0061508897, + 0.020701528, + 0.0012727106, + 0.0038418353, + -0.005813538, + -0.003134203, + -0.047734506, + -0.022521395, + 0.028933428, + 5.550889E-4, + 0.0011266322, + 0.024180321, + -0.012987293, + -0.03430284, + 0.0012702653, + -0.008863537, + -0.003225122, + -0.020814119, + -0.018405959, + 0.009578299, + 0.011093504, + 0.024998445, + -0.019209584, + 0.016537527, + -0.015301654, + 0.011729597, + -0.0017343498, + 0.012548883, + 0.026006345, + 0.023472015, + -0.0044344272, + 0.008235652, + -0.005900772, + -0.0014435749, + 0.0038921325, + 5.0660904E-4, + 0.009963796, + -0.008948436, + 0.00367389, + -0.010130735, + -0.011291821, + 0.021393804, + 0.014293248, + -0.028137386, + 0.0054720906, + -0.0030471766, + 0.0064181555, + -9.118727E-4, + 0.011414737, + 0.004317931, + 0.002239868, + -0.0040044845, + -0.0041937623, + 0.00536856, + 0.038361702, + -0.014284713, + -0.006827891, + -0.024406314, + 0.03307437, + -0.0063736737, + -0.021213, + -0.024980344, + 0.011103121, + 0.017605187, + -0.0143176215, + -0.0044288132, + -0.013935883, + -0.033454403, + -0.0026275238, + -0.009357065, + 0.015555527, + 0.0027795136, + 7.2648126E-4, + 0.013517972, + -0.019552961, + -0.008452803, + 0.0072208093, + -0.01517887, + -0.013730351, + -0.015590931, + 0.023422, + 0.020759977, + -0.016977267, + 0.027264467, + -0.014910408, + -0.031113176, + -0.01594815, + -0.0144474255, + -0.0066318633, + 0.011117364, + -0.0143104205, + -0.019947466, + -0.029940978, + 0.008885325, + -0.0055623967, + 0.032765932, + -0.0059401407, + 0.022979287, + -0.020085402, + -0.010835247, + -0.020909391, + -1.3599312E-4, + -0.0041472707, + -0.005942884, + 0.018400079, + -0.005458051, + -7.7477156E-4, + 0.011779851, + -0.010818566, + -0.008577982, + -0.0015922226, + -0.018091967, + -0.005156495, + -0.0413513, + -0.019282786, + -0.010495261, + -6.70387E-4, + 0.019986508, + 0.034046303, + -9.6106913E-4, + -0.013274319, + 0.012567764, + -0.021477463, + 0.02122593, + 0.02468663, + -8.6341905E-5, + 0.002542006, + -0.013872968, + -0.006273565, + -0.017576924, + -0.021798123, + -9.158322E-4, + -0.0038004315, + -0.0065296916, + -0.006342259, + -0.020438127, + 0.0019898966, + -0.009941626, + 0.0012651086, + 0.015318229, + -0.013159952, + -0.003365462, + 0.0012731787, + -0.0029800206, + -0.008568808, + -9.795973E-4, + -0.006175342, + -0.012154884, + -0.015424973, + -0.025217215, + 6.559403E-4, + 0.026682166, + 0.0020445113, + 0.01453201, + -0.0041218256, + 0.01719997, + -0.0046379184, + -0.014566041, + 0.016293084, + 0.016912289, + 0.010382139, + -0.003382024, + -0.023814656, + -0.014776239, + 0.0016036762, + 0.00304686, + 0.0021953355, + -0.03702043, + 0.0066366345, + -0.00491301, + -0.035988178, + -0.014362928, + -0.017579159, + -0.012001806, + -0.009001132, + 0.0018057098, + -0.032214586, + -0.0011266121, + 0.004464284, + -0.014258108, + 0.009466777, + -0.0014564833, + -0.03894818, + 2.7688028E-4 ], - "paletteEmbedding": [ - -0.01092074, -0.04118432, -0.07355394, -0.050249305, 0.033413857, - 0.023746027, -0.047373284, -0.0371652, -0.008887158, 0.04033179, - 0.0011683211, -0.005330946, -0.023423903, -0.019187814, -0.01819773, - -0.046848174, -0.010213412, -0.05638918, -0.015398075, -0.022594014, - 0.033303615, 0.049283516, 0.02736257, 0.017965857, -0.05568422, - 0.023182062, -0.020580206, 0.02381098, 0.081053644, 0.04056334, - -0.018582912, -0.006915831, 0.054898746, 0.031303614, -0.017356955, - -0.050278746, 0.0120474845, -0.004733612, -0.0043539302, -0.0018827366, - -0.025867218, -0.023608, -0.05187879, 0.039452065, -6.123605e-4, - -0.018758968, 0.023783678, 0.0066759363, -0.02308085, 2.5736127e-4, - -0.026341261, 0.011311424, 0.009101806, 0.016997771, -0.033414554, - -0.026976647, 0.051556747, -0.021974139, 0.006144604, -0.01195929, - 0.058032516, 0.036701187, -0.05144839, -0.017599223, -0.0064679077, - 0.025013428, -0.04306376, -0.042996828, -0.04279379, 0.053510003, - -0.037003048, -0.021669991, 4.9605727e-4, 0.010614612, -0.011550212, - 0.008144152, 0.021517001, -0.0031352025, -0.015815351, 0.017444294, - 0.009085052, 0.0015558157, 0.06321129, 0.012526822, 0.05013827, - -0.023859277, -0.025588514, 0.004151994, -0.03304105, -0.05169685, - -0.028190373, 0.019233776, -0.0056265616, 0.019350048, 0.0035984737, - -0.019967115, -0.022266988, 0.023314305, -0.016926996, -0.036530964, - 0.013231434, 0.003074165, -0.014444557, -0.024215057, 0.008061038, - -0.02215752, 0.0064862114, -0.042216867, 0.016441258, 0.040532827, - -0.0032413104, -0.02465072, -0.034842126, -0.018766388, -0.0050084796, - -0.021359174, -0.034709465, 0.05599693, -0.005008791, -0.023644393, - -0.04169215, 0.043313984, 0.026422875, 0.02952798, 0.030043662, - -0.04097155, 0.050367467, 0.024134548, 0.03750151, 0.024134908, - 0.017655417, -0.0018606914, 0.03369303, 0.08425739, -0.0059819226, - 0.019050406, -0.024115909, -1.674275e-4, 0.025329702, -0.0034537595, - -0.0733363, 0.026404532, -0.03130056, -0.046882663, 0.03477707, - -0.061325423, -0.012232905, -0.032815143, 0.028182592, -0.022943933, - 0.004903975, 0.041767094, -0.027497143, 0.004034781, 0.0012502288, - 0.06373202, -0.005425051, -0.020420533, -0.009682945, 0.029815473, - -0.0064179837, -0.001622065, -0.03753998, -0.018184308, 0.037159793, - 3.1934527e-4, 0.01876609, 0.03069115, -0.019123975, -0.012736871, - 0.008116564, 0.02844569, 0.043322287, -0.01693227, -0.0034249052, - 0.007726671, -0.008094306, 0.041432686, -0.02143538, -0.0458435, - 1.8207588e-4, 0.03197768, -0.02810026, -0.012556158, -0.011092416, - 0.060738012, 0.029124206, -0.014331279, 6.248107e-4, 0.047819838, - -0.038424168, -0.025643017, 0.011285238, 0.0046957307, 0.021662753, - 0.06600704, 0.013827673, -0.0054469747, 0.036034144, 0.023079155, - -0.050550763, -0.06374183, 0.007608933, 0.010156109, -0.07324264, - 0.047553677, -0.049533874, -8.523461e-4, 0.014571762, 0.054407343, - -0.044798218, -0.03870874, 0.0640441, 0.0060597504, 0.010890421, - 0.018962417, -0.01259914, -0.016707972, 0.06567607, -0.031153558, - -0.034066293, 0.026587732, -0.02847098, 0.03566024, -0.037936512, - -0.031391814, 0.02791868, 0.0028472957, -0.041143656, -0.028025933, - 0.016840028, -0.022631545, 0.033715554, 0.0630075, -0.0037488455, - 2.1721756e-4, 0.012730323, -0.0046476196, -0.052272372, 0.021889672, - -0.008081682, -0.0027000424, 0.0017803462, 0.0077856896, -0.036011875, - 0.023528831, -0.022499459, 0.006393121, -0.0071035093, -0.002767381, - -0.035391804, -0.034757238, -0.0049837553, -0.015556151, -0.09151394, - 0.023011439, 0.007179461, 0.06700362, -0.037284862, 0.023550292, - 0.006387302, -6.2386977e-4, 0.06103349, 0.015139541, -0.02514276, - -0.007821939, 0.016360203, 0.048739627, -0.047203984, -0.012355368, - -0.011641946, 0.0080820285, -0.04752307, -0.026156034, -0.003120656, - -0.030586738, 0.044221323, 0.044124756, -0.03428962, -0.008942651, - -0.015031447, 0.02414321, 0.015248022, 0.04078459, 0.0071610087, - 0.033428133, -0.04127186, -0.020202849, 0.05288717, 0.020571463, - -0.025283875, -0.047345366, 0.048513226, 0.02482392, 0.0066698035, - 0.061082467, -0.013687347, -0.046411432, 0.03198976, 0.009526425, - 0.007160045, -0.0021846339, -0.03880848, -0.019309057, 0.04615732, - 0.03246042, -0.027424764, 0.016951362, 0.008754966, 0.02474403, - 0.016747367, 0.05349637, 0.017624633, 0.017279685, -0.0051352964, - 0.045180596, 0.009224947, 0.015289579, 0.025977064, 0.0039869673, - -0.020403707, -0.023445109, 0.012569798, 0.041946582, 2.3433336e-4, - 0.053304527, 0.030765941, -0.05569291, -0.011080962, -0.049483042, - -0.0014349712, -0.03015808, -0.03155307, 0.0010362709, -0.037734356, - -0.040746216, -0.034388267, -0.04855403, 0.015096403, -0.015141315, - -0.023296252, -0.009626634, -9.100769e-4, 0.019484416, -0.01326227, - 0.030523093, 0.06817094, 0.028535571, 0.021272745, -0.0038704588, - 0.03496918, 0.0052447873, 0.012716138, -0.059575226, 0.011526062, - 0.004748194, -0.06821276, -0.06505419, -0.012032877, 6.999762e-4, - -0.035346065, 0.0011928513, 0.042871643, 0.0018246283, 0.03020965, - 0.005605944, 0.022215467, -0.0149708865, 0.013872152, -0.0029867622, - -0.084583946, 0.046669956, 0.05013553, 0.04405497, -0.019474214, - 0.006970575, -0.050759938, -0.036157355, 0.027863538, 0.021346241, - 0.0134561015, 0.010212168, -9.902118e-4, -0.01744475, -3.0975972e-4, - 0.007251321, -0.00917298, -0.06134952, 0.020022845, 0.017619105, - -0.014681724, -0.011965746, -0.058585577, 0.020015413, 0.009217676, - -0.020627754, 0.032379568, -0.026230969, -0.035169825, -0.02695154, - -0.0029889522, -0.046324804, -0.026010927, -0.019236434, 0.05976739, - -0.0055098347, -0.04706932, 0.030566478, 0.013321339, -0.0036384494, - 0.05280994, -0.0352771, -0.058940656, 0.054479994, -0.022246927, - -0.024955055, 0.034346867, 0.026688155, -0.05780249, -0.030480068, - 0.049025167, -0.047789518, 0.0027117638, 0.012689399, 0.03435721, - -0.033065077, -0.038355153, 0.024247613, 0.050813545, -0.029274017, - 0.016612075, 0.004299141, 0.004132998, 0.035836738, 0.042531505, - 0.006457177, 0.007739603, -0.033706874, 0.06299452, -0.038920987, - 0.04852527, -0.02461584, 0.004164375, 0.022119034, -0.055885598, - -0.014320736, 0.05807403, -0.01808951, -0.04809432, 0.037626315, - 0.008896114, 0.0038595996, -0.01990047, 0.036516387, -0.0077831917, - -0.0052752583, -0.041004997, 0.018530276, 0.0072568175, -0.012228491, - 0.02986663, -0.037701324, -0.018011833, 0.05424339, -0.0228038, - -0.0072080055, -0.005247384, 0.002909909, 0.019732084, 0.083021, - 0.04776176, -0.017286647, 0.060161594, -0.012884955, 0.05978037, - 0.03641431, -0.013458378, -0.028622057, 0.030697675, 0.021070555, - -0.046287175, -0.028684055, -0.055731736, -0.02598862, 0.046946723, - 0.004279821, 0.035920512, 0.02197897, 0.02658222, -0.0091754515, - 0.0174018, -0.023727752, -0.028696425, 0.0029350247, 0.023062216, - -0.007613113, -0.0030895118, 0.04440517, -0.015717223, 0.0046182163, - 0.031326663, -0.023437137, 0.05286892, 0.0020793134, 0.008898167, - -0.051916953, 0.0052688927, -0.011400094, 0.06628057, -0.029762307, - 0.010753345, 0.019078009, 0.04575845, 0.017553603, -0.025249982, - -0.015446119, -0.017719675, -0.03874801, -0.05330244, -0.022111269, - 0.03999818, 0.024247572, -0.0021506327, 0.038248904, -0.0038028967, - 0.017510535, 0.052626982, -0.011758501, 0.0284234, -0.04528144, - -0.020104717, -0.016349943, 0.021277824, 0.0043106875, -0.009423374, - 0.015021278, -0.008873294, 0.017753461, -0.025113052, -0.032423127, - -0.006611352, 0.022109495, -0.017502222, 0.013349568, 0.00782887, - 0.005217442, -0.022618271, -0.0033282116, 0.030319454, -0.018967899, - -0.026532168, 0.014028832, -0.0062750243, -0.026108934, -0.0046051713, - -0.023949888, 0.021549352, -0.007875786, 0.03715774, -0.026810497, - 0.029115178, -0.011848952, -0.06663401, -0.027004527, -0.039121084, - 0.0019778616, -0.02250142, 0.009455919, 0.017694145, -0.0031960171, - 0.021184765, 0.029449122, 0.010978155, 0.04066946, 0.0068534445, - -0.02074289, -0.056987714, -0.029481478, 0.0430807, -0.010005107, - -0.00661279, -0.031606656, 0.0509614, 0.018561585, -0.027033472, - 0.018918298, 0.037745763, 0.0030623025, 0.037818603, 0.038913306, - 0.030602649, 0.011439236, 0.046048075, 0.0041800574, -0.012491374, - -0.04521812, -0.0017898827, 0.010210889, -0.05785655, 0.041965213, - 0.017570587, 0.059851468, 0.0024288467, -0.09214045, 0.009382106, - -0.047726937, -0.01067464, -0.037377875, 0.0238414, -0.010430118, - -0.0061809085, 0.026867047, -0.03154239, -0.041780055, -0.0034442733, - -0.05319338, 0.029042529, 0.01846931, 0.03125174, 0.062532455, - -0.006984922, -0.050456285, 0.022046262, -0.042128947, -0.004903563, - -0.008729882, 0.007514898, -0.009238509, 0.08412482, -0.023535367, - -0.047115404, -0.020082865, -0.021907905, -0.036382563, -0.050211165, - 0.039387137, -0.035575293, -0.003673695, 0.013038845, -0.03757327, - -0.02434595, -0.025738899, 0.014500941, 0.013033397, 0.058425654, - -0.0065039834, -0.036945716, -0.020065513, -0.036450263, 0.033325266, - -0.05830339, 0.0768781, -0.039620187, -0.039055, 0.027218055, - 0.027340375, -0.00870188, -0.038213134, 0.018450106, 0.030745475, - 0.034360394, 0.033352077, -0.042695995, -0.017370425, -0.017709522, - -0.018273687, 0.028551154, 0.006331005, -0.037140388, -0.055768818, - -0.025239918, -0.04443442, 0.040579062, -0.007295441, 0.054676205, - 0.0083707, 0.015086318, 0.03451451, 9.30257e-4, 0.06668718, 0.016253801, - -0.002345047, -0.004821572, 0.0188391, 0.006185912, -0.0155392615, - -0.013440332, -0.03894624, 0.0065814927, -0.030703116, 0.026877185, - 0.014582999, -0.024675222, -0.010649681, -0.013539021, 0.0032528322, - 0.025457501, -0.043454304, 0.040140223, -0.012718509, 0.008268948, - -0.008840139, 0.013277592, -0.045721598, 0.046483126, 0.0031233078, - 0.003120702, -0.0047145104, -0.0028413143, 0.0708984, 0.024879526, - 0.002562657, -0.0024139828, 0.028139539, -0.05892242, -0.02076947, - -0.009774363, 0.04498189, 0.01621142, 0.0017662267, -0.00269259, - 0.039659794, 0.019860651, 0.0022639662, 0.013910755, 0.02939788, - 0.009595902, -0.032349005, -0.023100073, -0.022055758, -0.007917342, - 0.054778192, -0.022094755, 0.029480267, -0.02626374, -0.031798895, - -0.036927577, -0.013279249, -0.022633234, -6.693784e-4, -0.019562684, - 0.022021847, 0.031353854, 0.02556486, -0.0130417, 5.9571717e-4, - -0.0067894394, 0.0043722317, -0.01979545, 0.027062792, -0.010273387, - -0.029976608, -0.031144433, -0.008980165, 0.038453303, -0.050060824, - -0.0155704105, 0.0042262413, 0.0032908244, -0.029022388, 0.027285857, - 0.01186527, -0.021772716, 0.04261157, 0.0261886, -0.03767635, - -0.013434704, -0.013669423, 0.020858865, -0.01673061, 0.0021983974, - -0.026758848, 0.015841724, 0.0074244607, -0.03135726, -0.016770128, - 0.03887978, -0.049666405, -0.004102849, -0.024468381, 0.055140313, - -0.016191944, 0.03710124, -0.029884836, -0.0051281345, 0.002677264, - 0.014901847, -0.0315581, 0.041938093, -0.030243699, -0.022594646, - 0.030715877, -0.047317497, -0.10011921, 0.02074679, -0.014510518, - -0.016687421, -0.01726219, -0.006923259, 0.07083888, 0.01388049, - 0.08515944, 0.013502654, 0.016080141, 0.05779473, -0.0042667454, - 0.033625115, -0.04429422, 0.019103874, -0.024578651, 0.02664167, - 0.005071796, 0.04423219, 0.017004222, -0.021279043, 0.04232582, - -0.022972802, -0.011536946, -0.04477119, -0.0028777644, 0.01269467, - 0.018959468, -0.013004794, -0.06803518, -0.005841987, -0.0650569, - -0.0022513731, 0.08355472, -0.026227295, 0.04155475, -0.016793506, - 0.0037450423, -0.023608454, -0.015087109, 0.0048894277, -0.02147517, - -0.017586704, 0.024547286, -0.037166182, -0.012614988, -0.035986543, - 0.030513274, 0.0358556, -0.010317154, 0.009744362, -0.02972508, - 0.004074403, -6.0269714e-4, 0.023836091, -0.025284488, -0.011754609, - -0.0923956, 0.02463159, -0.029938985, -0.0047183754, 0.029800529, - -0.0063615874, 0.0058529796, 0.006814974, -0.036428984, 0.04095255, - -0.040935326, 0.020209098, 0.032174695, 0.006798673, 0.072586946, - -0.03785792, 0.07277712, -0.020266166, -0.046732157, 0.050442602, - -0.016767308, 0.029689608, 0.0012232484, 0.014706526, -0.01602858, - 9.2541316e-4, -0.00223617, 0.0050359224, 0.041232876, -0.013001621, - 0.032828562, -0.0073432196, -0.0031402677, -0.006093808, 0.03609693, - 0.051868424, 0.06991188, -0.054243717, -0.0053752437, -0.04058732, - 0.029429788, -0.031380337, -0.015356817, -0.012791484, -0.029601058, - -0.03073306, -0.027496846, -0.025879167, -0.08390558, 0.027954618, - -0.054211423, 0.029323408, -0.033765458, 0.063303135, -0.031536568, - 0.05686988, 0.007972431, -3.450018e-4, 0.027013278, -0.020629272, - -0.023790129, -0.008917732, -0.00222148, -0.044985455, 0.014714749, - -7.605691e-4, 0.013924839, -0.044384252, 0.0051170774, 0.01349743, - 0.023385268, -0.054641165, 0.0045038657, -0.028972976, 0.027547447, - 0.05796026, -0.021275574, 0.02609291, -0.056039963, 0.055343695, - 0.04216919, -8.468338e-4, -0.022171922, 0.0075226533, -0.043440547, - -0.0231202, 0.0051439423, 0.004852642, -0.01140871, 0.017835723, - 0.027588055, 0.04157012, 0.03128903, 0.051972575, -0.01920359, - 0.04231943, -0.01931998, 0.005764456, 0.046589945, 0.06464355, - 0.02792125, 0.047314327, 0.013667365, -0.013297416, 0.0014025654, - -0.01278361, -0.030506982, 0.04089089, 0.028346183, -0.008239305, - -0.015656812, 0.027647944, -0.008836366, 0.021192903, -0.008110868, - -0.011055481, 0.0011096196, -0.008118721, 0.022883361, 0.03620094, - 0.012247873, -0.03319037, -0.019527096, -0.039104287, 0.046665046, - -0.028731951, -0.011682107, 0.031776566, 0.027419876, -0.033485703, - -0.018114248, -0.0014971703, -0.0014164827, -0.053267155, 0.015432247, - -0.0013141263, 0.045308903, -0.027013142, 0.04216463, -0.011827653, - 0.006057671, -0.04661509, -0.013072828, 0.0015766544, -0.021010486, - 0.031678025, 0.055431966, 0.018800355, -0.02020216 + "paletteEmbedding" : [ + -0.029970823, + -0.02675187, + 0.014035577, + -0.017481836, + -0.016283493, + 0.021463053, + -0.027162822, + 0.030541603, + -0.027109805, + -0.048200104, + 0.018432116, + 4.182857E-4, + -0.013194115, + 3.4644754E-4, + -0.010474255, + -0.022191102, + 0.026178254, + 0.049881633, + -0.012890531, + -0.01606058, + -0.0021911107, + -0.032523733, + 0.04214569, + -0.0011615101, + -0.048035305, + -0.0059707267, + -0.036829352, + -0.017990138, + 0.02085591, + 0.054058757, + -0.0068496843, + -0.046799242, + 0.027791193, + -0.022880662, + -0.03643323, + -0.0031868662, + 0.008379103, + -0.004378645, + -0.0318981, + 0.016211277, + -0.040410385, + -0.019061092, + 3.058347E-4, + -0.019251376, + 0.018654179, + 0.023133367, + -0.07140401, + 0.040033165, + -0.022136059, + 0.009833966, + -0.0070664566, + 0.032632172, + -0.0111877825, + 0.030191181, + 0.02633866, + -0.00569973, + -0.01785541, + -0.010572563, + 0.02631539, + 0.031573385, + 0.019611042, + -0.07845997, + -0.011811907, + -0.003719714, + -4.55706E-4, + -0.00868032, + 0.022508748, + 0.010875728, + 0.0037390569, + 0.073847204, + 0.020438312, + 0.019017026, + 0.018060341, + 0.061952867, + -0.07165943, + -0.0045393524, + -0.0024760917, + -0.0025452727, + 0.040258758, + 0.009104505, + 0.035593756, + -0.004004313, + -0.028934926, + 0.026933502, + -0.012526683, + 0.031032763, + 0.044011213, + 0.032116786, + 0.005133799, + -0.024902599, + 0.004603034, + -0.012997815, + 0.01944203, + -0.027642727, + 0.016527502, + 0.033668585, + 0.01043093, + -0.057238635, + 0.03286992, + -0.0010157571, + -0.019377185, + -0.036157154, + 0.03746917, + -0.008524545, + 0.011742062, + -0.010241951, + 0.019991305, + 0.049167756, + -0.03192475, + 0.031158846, + -0.051907677, + -0.04663253, + -0.009868234, + 0.044485312, + -0.03069329, + -0.0308421, + -0.011539841, + -0.008213668, + -0.029673902, + 0.03206846, + 0.012500713, + -0.0023486256, + 0.012688146, + -0.02660178, + -0.012604591, + -0.014169313, + 0.02382823, + 0.010163158, + -0.044803984, + -0.019759653, + 0.023424052, + 0.04682688, + 0.013042147, + 0.021213766, + 0.019606514, + 0.010273286, + -0.01245128, + 0.034024935, + -0.011279621, + 0.008602933, + 0.010779527, + 0.042849556, + -0.0074962243, + 0.03658258, + 0.0059884796, + -0.011946532, + 0.032835968, + -0.022969963, + 0.024635462, + -0.043927547, + -0.008206452, + 0.020645814, + -0.020726193, + 0.01770522, + 0.0020413413, + -0.028509237, + -0.047671735, + 0.0054955906, + 0.012541283, + -0.009576666, + -0.0031200005, + 0.047235765, + -0.04888159, + -0.0045178067, + -0.05215875, + 0.0012807804, + -0.0059517557, + -0.009136351, + 0.029207584, + -0.021051005, + -0.025031354, + 0.05234308, + -0.001019242, + -0.016762394, + 0.058993623, + -0.031378668, + -0.0038706036, + 0.00693564, + -0.0056279018, + 0.013070688, + 0.008581523, + -0.03211734, + -0.05087015, + -0.009776972, + -0.0575405, + -0.038259234, + 2.0856135E-4, + 0.048766434, + 0.0035148913, + -0.025191305, + 0.04276369, + 0.021673223, + -0.006133806, + 0.026332011, + 0.026013136, + 0.021241618, + 0.010763356, + -0.020220082, + 0.011188437, + -0.050473824, + -0.0036646791, + 0.009818838, + -0.021787522, + 0.052617874, + 0.02259306, + 0.008707428, + -0.0045962594, + -0.0021077753, + 0.031970907, + -0.0050384067, + 0.084873565, + -0.013332282, + 0.01958448, + -0.053209413, + 0.02684324, + 0.0035478699, + 0.04311408, + -0.003050307, + -0.017199142, + -0.015782224, + 0.027026838, + 0.04162184, + 0.012748463, + -0.014590947, + -0.004529536, + 0.022214705, + 0.009339284, + 0.024489222, + -0.011458393, + 0.010299659, + -0.011734238, + -0.022886751, + 0.033728037, + -0.011837117, + -0.026470715, + -0.021816494, + 0.012079266, + -0.017444558, + 0.024988078, + 0.0351123, + -0.0062651252, + -0.02397927, + 0.017154898, + 0.022501426, + -0.02977948, + -0.0054998533, + 0.02494376, + 0.06280422, + 0.054350715, + 0.025908567, + 0.0021972854, + -0.025019156, + 0.009314065, + -0.0038456204, + -0.037166785, + -0.0040891618, + 0.041377004, + -0.014090066, + 0.019507507, + -0.004207941, + -0.07952092, + -0.013179344, + -0.008932441, + 0.06481526, + -0.010522628, + -0.016426887, + -0.07583148, + -0.07313509, + -0.010555794, + 0.039881296, + 0.06323463, + -0.027999679, + -0.05927919, + -0.006252157, + -0.045403115, + -0.04945131, + -0.030664304, + 0.006411209, + -0.017443303, + -0.024628008, + 0.025211383, + 0.017995406, + -0.0056319614, + -0.04904729, + -0.009272454, + -0.009228498, + 0.030795569, + -0.0142031545, + -0.021891974, + -0.074826814, + 0.030635307, + -0.005943907, + -0.0041254982, + 0.013635859, + 0.03620182, + -0.0060530617, + -0.03213076, + 0.022060836, + 0.03100016, + -0.023198359, + -0.03468922, + -0.029455027, + -0.023433989, + 0.006896436, + 0.017783614, + -0.015899854, + -0.019886214, + -0.0011110449, + -0.0035688526, + 0.028206628, + 0.08115825, + 0.025517795, + 0.03132155, + 0.051405795, + 0.030401781, + 0.05181854, + 0.014938527, + -0.031167988, + 0.01598982, + -0.0270538, + 0.019167777, + -0.0043820664, + 0.016809054, + -0.00684429, + 0.043614294, + 0.0316347, + -0.0015628051, + 0.009463855, + 0.027622927, + -0.03984327, + -0.034961928, + 0.02596978, + -0.01972029, + -0.034784857, + -0.018105898, + 0.021082591, + 0.06519168, + 0.031228062, + -0.031119894, + -0.010566403, + 0.02040366, + -0.027633546, + -0.00736233, + -0.0103010265, + 0.074068785, + 0.03407559, + 0.0041332273, + -0.015298034, + 0.016452262, + 0.012147035, + -0.027729567, + 0.0052722897, + -0.0060986024, + 0.07110905, + 0.0010290756, + -0.0042152507, + -0.018363686, + 0.01927602, + -0.013612858, + 0.058840748, + -0.008366008, + 0.014424494, + 0.020946642, + 0.054804187, + -0.0046070563, + 0.029636364, + -0.03733756, + 0.016089216, + -0.034322705, + 0.042056456, + -0.03811346, + 0.0016326116, + 0.021028435, + -0.01758373, + -0.09662787, + -0.0010900327, + -6.88515E-4, + -0.06241943, + -0.004484948, + -0.04370917, + -0.03905756, + -0.044332296, + -0.010426688, + 0.042244922, + 0.043142226, + -0.017955028, + -0.009268683, + -0.009510598, + -0.05204702, + -0.025344605, + -0.027276464, + 0.03800432, + 0.080463655, + -0.011932667, + 0.008697036, + 0.030605605, + 0.0074291164, + -0.0427591, + -0.04800411, + -0.015619325, + 0.016471343, + -0.0033054668, + -0.014267296, + -0.047546532, + 0.009850138, + -0.03983747, + -0.024171663, + -0.0027768682, + -0.02685608, + -0.028453823, + -0.050248172, + -0.019356063, + -0.0476356, + 0.009797085, + 0.048334833, + 0.06792392, + 0.0015897669, + -0.004196391, + -0.008469125, + -0.021901421, + -0.012633444, + 0.0057540215, + -0.048894677, + -0.05213401, + -4.903262E-4, + 0.040498342, + -0.018863177, + 0.084750265, + -0.02348566, + -0.019508699, + -0.0117669385, + 0.016239135, + -0.028189903, + 0.018292906, + 0.0579057, + -0.05476427, + 0.010711159, + -0.048243053, + -0.030588724, + 0.018273648, + 0.044059623, + -0.06828865, + -0.005887413, + 0.016947677, + -0.02944415, + 0.029253101, + -0.05577416, + -0.012069564, + -0.020096555, + 0.025113896, + -0.025797911, + 0.007911899, + 0.014305481, + -0.029713878, + -0.0056315293, + 0.027534727, + 0.067283824, + -0.0225385, + -0.0065336726, + -0.008644288, + 0.014448371, + 0.044708814, + -0.05242387, + -0.01134017, + -0.0028602665, + -0.01815359, + -4.1586478E-4, + 0.0036912358, + -0.015766343, + 0.026923923, + 0.0076843877, + -0.021041991, + 0.036078215, + -0.016914992, + 0.08741238, + 0.024826853, + 0.030965213, + -0.031790186, + 0.021679172, + 0.04637059, + -0.04113113, + 0.03794691, + -0.04396075, + 0.013942563, + -0.031184727, + 0.05398126, + -0.020129394, + -0.013141738, + 0.03690652, + -0.0017174715, + -0.03978518, + -0.0037402695, + -0.009015916, + -0.028264001, + 0.009109986, + 0.014331762, + -0.051655654, + 0.017200295, + 0.009664413, + -0.029494517, + -0.0100572165, + 0.0012505739, + 0.059999835, + -0.04197182, + -0.009159312, + -0.027906535, + 0.023341745, + -0.016469318, + 0.02145222, + 0.027068458, + 0.0039629564, + -0.031854656, + -0.04284908, + -0.002368234, + 0.004036422, + 0.008092292, + 0.02093391, + -0.018582547, + 0.0032877384, + 0.01763074, + -0.061283235, + 0.019429287, + 0.03422102, + -0.029268118, + -0.0061420486, + -0.038653355, + -0.0051399, + 0.012114075, + -0.012847046, + -0.03618528, + -0.0665793, + -0.011795351, + -0.018887226, + 0.05980156, + -0.07485703, + 0.016437007, + 0.020669099, + 3.5621513E-5, + 0.042806223, + -0.026744053, + -0.049398065, + 0.006466624, + -0.019282302, + 0.006045684, + 0.023323404, + 3.1894677E-7, + 0.029676536, + 0.001651323, + 0.0045024506, + -0.014752476, + 0.025570711, + 0.0783113, + 0.020139726, + 0.011295461, + -0.014196396, + -0.022540765, + 0.030807303, + -0.008459988, + 0.010154891, + 0.029671356, + 0.030470151, + 0.038287178, + 0.038713485, + 0.0035125855, + 0.00829334, + -0.02008695, + -0.0067244926, + 0.0032964274, + 0.010192214, + 0.0015110014, + 0.022290984, + -0.015956527, + -0.012590968, + 0.025582142, + -1.455435E-4, + -0.0018387927, + 0.016991086, + 0.009943672, + -0.028134951, + -0.011245712, + 0.017385632, + 0.027433157, + -0.026929501, + 0.016884916, + 0.015528807, + -0.01316749, + -0.004122879, + -0.020156668, + 0.037504487, + -0.011800585, + 0.002786787, + 0.036831114, + 0.0134501755, + 0.012608815, + 0.0072024288, + -0.01210505, + -0.02859414, + -6.943671E-4, + -0.0055699428, + 0.0059410287, + -0.0128197875, + 0.011874961, + 0.04622127, + -0.021013241, + -0.01510847, + -0.033461686, + 0.027326372, + -0.015782887, + 0.009351084, + 0.020654678, + 0.059768513, + -0.043812197, + 0.0068413396, + 0.013878251, + 0.0127540855, + -0.027323013, + 0.014144493, + 0.043484755, + -0.014438128, + 0.011179082, + 0.003808137, + 0.017518379, + -0.07437145, + 0.010335579, + 0.028735306, + 0.04059952, + -0.007597365, + -0.013813618, + -0.03204071, + 0.01279952, + 0.01963023, + 0.04186586, + 0.06183417, + -0.0055749374, + -0.05449553, + -0.0070486185, + -0.011837348, + -0.11203985, + -0.021172361, + 0.05577689, + -0.026333304, + -0.028457563, + 0.060535464, + -0.035597775, + 0.034836147, + -0.0064176763, + 0.07516557, + -0.0655782, + -0.029781725, + 0.004408235, + -0.031147439, + -0.008214449, + -0.043962285, + -0.02857617, + -0.022705777, + -0.009079769, + 0.0061183325, + -0.07429364, + -0.013248308, + 0.029222019, + -0.017589144, + -0.030782936, + -0.015022649, + -0.008239451, + -0.026282245, + -0.010005162, + 0.0077787763, + 0.019849759, + -0.032179162, + -0.047997054, + -0.0075247036, + -0.010537358, + 0.0255235, + -0.022736136, + 0.01370253, + -0.020298587, + -0.023457333, + 0.012217624, + 0.017132957, + -0.008843712, + -0.047536988, + 0.025264872, + 0.09189362, + 0.02962504, + -0.027158454, + 0.053708214, + -0.01110132, + -0.0021645592, + -0.03990739, + -2.984768E-4, + 0.016786149, + -0.040843733, + 0.068962395, + 0.035149284, + -0.001362778, + -0.011512395, + -0.03879149, + -0.07148094, + -0.008408664, + -0.020940132, + 0.019195113, + 0.08069677, + -0.014374385, + 0.03278252, + -0.038590886, + 0.016019717, + 0.025635, + 0.082131736, + -0.044535317, + 0.022283237, + 0.009629632, + -0.03236527, + -0.002772979, + 0.04515896, + -0.013331042, + 0.021039063, + 0.0064984085, + 0.033357233, + 0.019893937, + -0.0020132738, + 0.013820667, + -0.033407632, + 0.06023007, + -0.026014747, + -0.01167083, + 0.04565039, + -0.034971546, + 0.030012943, + 8.579144E-4, + 0.014531057, + -0.013933671, + 0.03964943, + 0.019616868, + -0.0053173755, + -0.03255015, + -0.06265938, + -0.01577064, + 0.05998034, + 0.0086109415, + -0.03873627, + -0.02454, + -0.062849015, + -0.018423576, + -0.0045817615, + -0.015507922, + -0.034500554, + 0.019614054, + 4.6543087E-4, + 0.003489466, + 0.03058818, + 0.010623114, + -0.027622355, + 0.05116774, + 0.024495106, + -0.04698525, + -0.02402119, + 0.033199098, + -0.025782015, + -0.01126026, + 0.024877075, + 0.03526365, + -0.051890172, + -0.0263902, + -0.002457182, + -0.005812067, + -0.021870872, + 0.001738527, + -0.025679477, + 0.0133992545, + 0.009286315, + -0.018762182, + -0.008300861, + -0.02297504, + -0.057173915, + 0.03046414, + -0.024462488, + -0.002647966, + 0.03135177, + 0.004728293, + -0.013462859, + 0.04042141, + -0.02815621, + -0.025105493, + -0.010925559, + 0.03188846, + -0.011308283, + 0.05121512, + -0.064889215, + -0.01328499, + 0.045608073, + -0.013147841, + 0.06270685, + 0.027034234, + -0.0046748836, + -0.053968523, + 0.008394762, + -0.057092395, + 5.9345766E-4, + -0.0048393854, + 0.0066883573, + -0.021455372, + 0.044479042, + 0.011269995, + 0.0035500575, + 0.017664524, + -0.015471632, + -0.047902294, + -0.017975254, + 0.009332397, + 0.034067344, + -0.0034121305, + -0.024507541, + 0.009725849, + 0.017744498, + 0.033806447, + 0.01991833, + -0.023071079, + 0.058672667, + -0.04257026, + 0.046720754, + -0.0150514515, + -0.014714527, + -0.016407423, + 0.0023766493, + 0.019091744, + -0.05317678, + -0.022997465, + -0.0063241385, + 0.04638138, + -0.0062209032, + -0.011619575, + 0.014778938, + -0.044119317, + 0.05522572, + -0.0145739885, + 0.016559612, + -0.0487299, + 0.0019266141, + 0.02798207, + -0.06353906, + 0.008616936, + 0.09404037, + -0.0026427596, + 0.0055732047, + 0.009599066, + -0.054542273, + 0.018753354, + 0.058416773, + 0.015709467, + -0.06557681, + -0.021582318, + 0.007499612, + 0.026086833, + -0.0077263596, + 0.072523616, + 0.031474356, + 0.019948939, + 0.05841062, + -0.008525118, + 0.01705771, + 0.011326898, + -0.029673213, + -0.0021818702, + 0.009703642, + 0.00813183, + 0.039788585, + -0.011742321, + 0.043718413, + 0.04694529, + 0.032735273, + -0.007785704, + -0.026054716, + -0.060137097, + -0.01699671, + -0.04319488, + -0.0067284014, + 0.022293732, + 0.030755674, + 0.027946057, + 0.033471834, + -0.06147067, + -0.011703693, + 0.023882689, + 0.05681761, + 0.036512792, + 0.067859285, + 0.017237809, + -0.019300397, + 0.011976393, + 0.045410305, + -0.028739415, + -0.029758528, + 0.031570036, + 0.006355291, + -0.018216291, + 0.020329509, + -0.02265811, + -0.02075627, + -0.038053073, + 0.0067782807, + 0.06242818, + 0.038869027, + 0.0024953, + 0.052480154, + -0.008367722, + -0.005314009, + -0.013351407, + 0.025599563, + 0.030130783, + -0.032239802, + 0.009370888, + 0.01413479, + -0.03800997, + 0.047825456, + 0.036767796, + -0.0053606606, + 0.062501565, + 0.022946335, + -0.010336453, + -0.010609675, + -0.02998102, + 0.008295439, + -0.019265557, + 0.08512543, + -0.047698326, + 0.06659549, + -0.04795926, + -0.041755144, + -0.014896198, + 0.048540115, + -0.0012104607, + 0.02294996, + -0.0045489436, + -0.021898396, + -0.024759276, + -0.0098279, + 0.015494771, + -0.0022265762, + 0.02055944, + 0.022375418, + 0.0019341396, + 0.0010038734, + 0.032072887, + -0.067756884, + 0.004849473, + 0.0010950284, + 0.008866625, + 0.032040913, + 0.027193375, + -0.08445405, + 0.0533001, + -0.09314474, + 0.018470246, + -0.011982999, + -0.0029575648, + -0.016285162, + -0.008042779, + 0.0065189917, + 0.0024562066, + -0.0180039, + 0.006903959, + 0.0154126035, + 0.016223792, + -0.08431748, + -0.043731187, + 0.054966565, + 0.009688708, + -0.038669422, + -0.04799326, + -3.81087E-4, + -0.0623128, + 0.045460597, + -0.008498995, + 0.046149258, + 0.051140334, + -0.041676506, + -0.030793646, + -0.029333264, + -0.0030850852, + 0.0137800425, + 0.0016489304, + -6.2758283E-4, + -0.005278399, + -0.026862705, + 0.014398845, + 0.046319894, + 0.033176653, + 0.018293403, + 0.009611507, + -0.009868349, + -0.039290924, + -0.018653896, + -0.051266976, + 0.027602747, + -0.013853545, + -0.03980673, + -0.019066477, + 0.05489677, + 0.049438506, + 0.043071184 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.subjects.sounds.json b/common/search/src/test/resources/test_documents/images.subjects.sounds.json index 845bd385c..c52704d19 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.sounds.json +++ b/common/search/src/test/resources/test_documents/images.subjects.sounds.json @@ -1,1345 +1,5257 @@ { - "description": "images with different subjects", - "createdAt": "2023-11-21T14:25:44.258608Z", - "id": "lfbtqs12", - "document": { - "modifiedTime": "1962-05-21T20:46:43Z", - "display": { - "id": "lfbtqs12", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different subjects", + "createdAt" : "2024-11-14T14:37:56.552107Z", + "id" : "kzssqpi3", + "document" : { + "modifiedTime" : "1988-08-30T19:53:42Z", + "display" : { + "id" : "kzssqpi3", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/yTZ.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", + "linkText" : "Link text: TnpH5i", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/yTZ.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", + "linkText" : "Link text: TnpH5i", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#1DF77A", - "source": { - "id": "067wkeun", - "title": "title-2GeybBBRBK", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#16E474", + "source" : { + "id" : "tcqskq12", + "title" : "title-TjuvcW2P6K", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ { - "label": "Square sounds", - "concepts": [], - "type": "Subject" + "label" : "Square sounds", + "concepts" : [ + ], + "type" : "Subject" } ], - "type": "Work" + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "lfbtqs12", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "067wkeun", - "sourceIdentifier.value": "JVmYqeJv6q", - "identifiers.value": ["JVmYqeJv6q"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-2GeybBBRBK" + "query" : { + "id" : "kzssqpi3", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "tcqskq12", + "sourceIdentifier.value" : "nEWqpoAGwP", + "identifiers.value" : [ + "nEWqpoAGwP" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-TjuvcW2P6K" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ "{\"label\":\"Square sounds\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": ["Square sounds"], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.012795829, -0.013067539, -3.266644e-4, -0.02295608, -0.01220756, - -0.013104304, -0.0011268178, -0.020490127, -0.019283213, -2.0593745e-4, - 0.03648524, 0.012589258, 0.027781129, 0.0077895164, 0.015082936, - 0.003537147, 4.876323e-4, -0.01706176, 0.015710939, -0.0080688875, - 0.010389627, 0.0098733045, -0.027874244, 0.0041924077, -0.014391807, - 0.009151208, -0.015084666, 0.00647797, 0.033508785, 0.019882776, - 0.0098692225, -0.018618274, -0.0011970683, -0.0024593135, -0.011576021, - 0.019408355, -0.02370623, -0.0149232065, 0.009289709, 0.026278822, - 0.032324553, -0.005982677, 0.021131989, 0.0062489207, 0.010517619, - -0.009344059, 0.009311457, -0.010272507, 0.01459767, -0.005400966, - 0.0036901585, 0.009361485, 0.009432471, 0.0045447843, 0.016997788, - 2.403818e-4, 0.008806729, 0.011238861, 0.009892515, -0.012226101, - -0.018634386, -0.0030289479, -0.0072126975, 0.027079431, 0.028238138, - -0.020698097, -0.017188326, 0.0014804697, 0.01231769, -0.03037446, - 0.008943097, -3.6645913e-5, 0.019728038, 8.949126e-4, -0.0046680807, - -0.007807901, 0.013081735, -0.00905093, 0.007197726, -0.005238634, - -0.013264314, 0.02274907, -0.017041229, 0.019761976, -0.018477691, - 0.016290145, 0.017536566, 0.0020124537, 0.005527497, 0.0069238045, - -0.0047807046, 0.009155731, 6.9206645e-4, -0.027531737, -0.002680464, - -0.022818502, -0.0047287326, 0.01985799, 0.009386624, 0.016457336, - 0.024299717, -0.0026255068, 0.022491138, -0.021482984, 0.0015491286, - 0.0060722004, -0.031127004, 0.021539118, -0.003574036, -0.026485745, - 0.0065002115, -0.010337425, 0.0027767303, -0.004329965, 8.873485e-4, - -0.014065896, 0.019763267, 0.0027010785, 0.040059734, -0.009791145, - -0.011526647, -0.018257095, 0.0019062674, 0.007073653, 0.018206874, - 0.0039125863, -0.0049177734, -0.008331073, 0.02365519, -0.028235225, - -0.0057070362, 0.0062689027, -0.005280265, -0.023375139, 0.013875428, - -0.0029454785, 0.040649593, 0.0027846657, -0.0042168456, -0.03139392, - 0.008830782, 0.003406297, -0.022011798, -0.004504232, 0.0027844002, - -0.0024639338, -0.030758003, -0.005790114, -0.014511863, -0.028479364, - -0.016671645, -0.016313052, 0.017418455, -0.024548577, -0.03394655, - 0.0068150307, -2.1995559e-4, -0.014727281, -0.0013665562, -0.014628605, - 0.029309018, 0.011027489, -0.01825174, -0.021528339, 9.767171e-4, - -0.0023113668, -0.01901585, -0.022973634, -0.007368116, -0.013841441, - 0.00388975, -0.040884204, -0.013467489, -0.01077043, 0.0036079392, - 0.014042073, -0.02452373, 0.022827793, -2.6644714e-4, -0.023642832, - -0.0042820596, 0.015521958, 0.0035577617, 0.005590968, 0.01964687, - -0.011593057, -0.012553021, -0.0055449633, -0.004990444, 0.014135014, - -0.017968098, 0.017040363, 0.018748553, -0.0070527764, 0.010501423, - 0.011127148, 0.0030689314, -0.017492726, 0.012622114, -0.0031823637, - -0.036784794, -0.0034945372, 0.020197779, 0.021680526, -0.007976217, - -0.008528968, 0.019387698, -0.017005073, -0.009984125, 0.013021748, - -0.002249959, 0.038001582, -0.015009109, -0.031656057, -0.0038577034, - 0.00962431, -0.010322182, -0.0020544946, -0.006710171, 0.02579448, - 0.0029593934, -0.0095008435, 0.004552217, -0.0011014899, 0.013481558, - -0.010712945, -0.027801221, 0.015003921, 0.023269596, -0.00536677, - -0.022741325, 0.0135229165, 0.009940319, 0.019408602, -0.0014145523, - -0.009759747, 0.040188365, -0.0086581055, -0.01599371, -0.011210216, - -0.025223559, -0.0067135515, -0.008338907, 0.026717775, 0.0060499525, - -0.014084178, -0.0093188295, -0.027164156, 0.007003383, 0.015431974, - -8.8174216e-4, 2.1665646e-5, -0.0060517755, 0.0052899956, -0.027462961, - 0.006666098, -0.019523699, 0.016854824, 0.011461171, -0.016765052, - -0.01143894, -0.029622016, 0.015511633, 0.028590253, -0.015583415, - -0.010491626, 0.019331787, 0.017119396, -0.014607385, -0.012143788, - 0.014875044, 0.0062142657, 0.0035063003, 0.008633669, 0.006284994, - -0.0052592424, -0.008547775, 0.019260226, 0.024013577, 0.028602853, - -0.0020885596, 0.004579276, -0.0031538985, 0.02101163, 0.011604166, - -0.00742449, 0.02949815, -0.027837854, 0.013406994, -0.0019931262, - 0.005317634, -0.030046409, -0.023635183, 0.018533776, -0.0010936687, - 0.0021212955, -0.011310623, 0.007632951, 4.052058e-4, 0.0052597933, - -0.01569116, 0.010638384, 0.012539199, -0.001848713, 6.868189e-5, - -0.0057896175, -0.005797633, 0.009784612, -0.012307534, -0.0077034705, - -3.6924248e-4, -0.0020084393, -0.028467465, 0.0017515402, 0.0022407272, - -0.0045022285, -0.0081857275, -0.0039519006, 0.009121689, 0.01925124, - -0.023027942, -0.0041699703, -0.0041098376, 0.0020311216, -6.1136007e-4, - -3.8504234e-4, 0.0070267254, 0.0138842035, -0.014851404, 0.02346149, - 0.0113656325, -0.005050066, 0.016331865, -0.013983401, 0.0065946584, - -0.00551881, -0.0050838413, -0.0032909552, -0.0075859404, 0.015576722, - 0.0077226087, -9.790759e-4, 0.0012516979, -0.00999475, -0.017911088, - 0.009963222, -0.001574933, 0.014320189, 0.027579121, 0.035280835, - 0.027700333, -0.009880491, -0.010207327, 0.018691441, -0.0025954808, - -0.021956153, -0.023027854, 0.01797598, 0.0011791355, 0.014934808, - 0.00915766, 0.001985647, -0.0016310385, -0.017425772, 0.0055684675, - 0.014739543, 0.008737848, 0.007887653, 0.007953479, 0.022467595, - 0.019741343, -0.01475733, 0.014093895, -0.008465633, 0.026059132, - 0.008047067, 0.043286983, 0.012333887, -0.012920105, 0.0072527663, - -0.0053196074, 0.015186042, -0.030366799, 0.012762159, 0.0048619984, - -0.030701801, 0.0064517115, 0.0086221965, 0.018944029, 0.008430314, - -1.1473195e-4, -9.783109e-4, -0.0019426462, -0.009369777, 0.007595206, - -0.03249948, 0.008964766, 0.03346386, -0.008379848, 0.008640757, - 0.0011431231, 0.0027315388, 0.0053349324, 3.891728e-4, 0.022169314, - 0.0067160055, -0.005391532, 0.015772885, 0.026235826, 0.015455483, - -0.01565788, -0.03332702, 0.017155945, 0.0064398157, -0.006800077, - -0.0146285845, 0.023699706, 0.028131243, -0.05526361, 0.0045896284, - 0.01601521, 0.024565801, 0.013765186, -0.020302957, 0.0035660537, - -0.011075391, -0.01677008, 0.008275213, 0.023739511, 0.0062040626, - 0.014887276, -0.027977696, -0.036930617, -0.0039117374, 0.020351866, - 0.008078049, 0.0020986316, 0.0046865246, -0.014627357, -0.012852882, - 0.014683601, -0.012006654, -0.008303563, -0.0018561387, -0.011418986, - -0.0036293818, -4.650161e-4, -0.026625453, 0.010752746, 0.052923497, - 0.007454688, 0.0409844, -0.0034072415, -0.022106979, 0.0020291137, - -0.00480419, -0.002410408, -1.5473057e-4, -5.701049e-4, -0.02704405, - 8.9788856e-4, 0.0053881565, -0.0026564517, 0.024591904, 0.028074566, - -0.029075181, -9.832042e-5, 0.0067040133, 0.014725708, -0.023956696, - 0.013155115, 0.012269469, 0.009656712, -0.013334614, 0.022845132, - -0.014513482, 0.013217587, 0.010523052, 0.027761908, 0.026216352, - 0.004437943, -0.006709568, -0.010132827, -0.024711441, 0.0035589612, - 0.020562511, 0.0060119843, -0.0069037224, -0.016485006, 0.008165898, - -0.0012601756, 0.008470619, -0.020549266, 0.012855056, 0.003983024, - -0.015806392, 0.007625127, -9.673587e-4, 0.02042868, -0.0062694172, - 0.010229593, -0.02393347, 0.004598863, -0.0050226934, 0.0030118937, - 0.008265058, -0.0022926505, 0.02003047, 0.013081635, 0.0020777904, - 0.02528441, 0.005526743, 0.014118542, -0.028480187, 0.029892974, - -0.0015345911, -0.00986132, -0.014817898, 0.021166388, -0.043173183, - 0.025986712, 0.013331686, -0.035877153, 0.01168649, -0.01814306, - 0.0020493676, 0.009261696, -0.01566095, 0.019186093, -0.035413355, - -0.013684258, -0.0023674655, 0.00747067, -0.006676335, -0.015235159, - -0.017892983, 0.01166261, -0.021794695, -0.020899804, -0.01619558, - -0.01161615, -0.018625109, 0.01915802, -0.004560285, -0.03158869, - 0.01098165, -0.009305465, -0.02041125, -0.0072768186, -0.0101706125, - 0.047764983, 0.004644904, 0.0019412342, -0.004471354, 0.0010849022, - -0.0047136783, 0.017974427, -0.0056762765, -0.01589939, 0.023679323, - 0.011749241, -0.0055777715, 0.0023839464, 0.0053501604, 0.013751681, - -0.001955472, 0.0073311375, 0.019501282, 0.027055684, -0.003665324, - -0.009990802, 0.008722031, -0.019065669, 0.024946699, -0.0064013046, - 0.02929953, -0.007428474, 0.021802602, -0.018859006, 0.0025159072, - -0.008172484, -0.02754505, 0.012537374, 0.01622832, 0.019154172, - 0.0034321446, 0.0050743185, -0.009869552, -0.009126256, -0.0057056416, - 0.012648327, 0.0024875158, -0.011734433, 0.03659488, 0.031746164, - -0.004160213, -0.022560284, 0.019972749, 0.014262351, -0.0028210918, - 0.0185334, -0.016803695, 0.034379102, -0.014463271, 0.024937857, - -0.008792409, 0.015432168, 0.009781506, -0.011551848, -0.029974585, - 0.013449439, -0.023182804, -0.009305548, -0.016806869, -0.011151267, - -0.017566795, -4.975674e-4, -0.009160472, 0.0043335543, 0.00857985, - -0.015020009, -0.026532222, 0.03937707, -0.018894704, -0.003755824, - -0.008217046, -0.015241428, 0.0033709344, -0.008439126, 0.007584095, - -0.006598422, -1.1882984e-5, -0.02365848, -0.013167153, 0.013548437, - 0.021726804, -0.0120790405, 0.010482655, -0.023256592, -0.010262824, - 0.012260024, -0.00720517, 0.008790378, -0.016135864, 6.63468e-4, - 0.019233432, -0.019548763, 0.0039787223, -0.009993802, -0.014622962, - 0.028942956, -0.0043166964, 0.019840196, -0.01172267, -0.0050773732, - 0.0061072228, 0.0052673453, 0.0090710865, -0.0011315901, -0.0041911276, - -0.026785633, 0.0034748416, 6.7301145e-5, -0.0059568333, -0.0066604987, - -0.0011578584, -0.021580836, -0.010595562, 0.0012838187, 0.010047584, - 0.03342935, 0.008035019, -0.010012582, -4.7273275e-5, 2.0904481e-4, - -0.0050959336, 0.036561206, 6.7157135e-4, 0.0055454294, -0.013129487, - -0.0023315854, -0.05416703, -0.03725269, 0.023251254, -0.019542715, - 0.0046301265, 4.5453307e-5, -0.02449343, 0.0090432735, -0.0029530958, - 0.0040505896, -0.005686471, 0.037017252, -0.010930717, 0.0076744994, - -0.0070998343, 0.004998481, 0.014713432, -0.013665952, -0.021567374, - 0.017920252, 0.015906591, 0.027072525, 0.0076989653, 0.00427452, - -0.0044149384, 0.025829095, -0.005342848, 0.0012243259, 0.015175105, - 0.013747822, 0.0045448956, 0.009362858, -0.014845602, 0.006134434, - -0.020880025, -0.019606885, -0.013577913, -0.020532146, -0.015062794, - 0.0024001696, -0.016760847, 9.110096e-4, -0.0021972226, -0.0033519233, - 0.008088139, 0.011814105, -0.0073502464, 0.004188722, 0.017773505, - -0.0030903912, 0.0018277144, 0.011186803, 0.004412896, 0.022840172, - 0.006438505, -0.008061802, 0.027124254, 0.010131242, -0.007616578, - 0.007730151, -0.022340044, -0.0023721186, 0.010170407, -0.011964499, - 0.0026057586, -9.977048e-6, -0.007736699, 0.022424228, -0.01087557, - -0.019957773, -0.017187344, 0.0049769883, 0.0073015727, -0.0031967645, - -0.019170394, -0.021640832, 0.025868492, -0.031217618, 0.027815249, - -0.010567112, -0.011426215, 0.004465194, -0.004250974, -0.018411638, - -0.012043935, -0.012006468, -0.03334529, 0.013295784, 0.0014170937, - 0.013047508, 8.55922e-4, 0.015669463, 0.020881727, 0.004888167, - 0.0022300777, -0.008863413, 0.0026338925, -0.026521154, 0.006227792, - 0.008185597, 0.0216299, -0.002998002, -0.0052403114, 0.01611742, - -0.0052682995, 0.016263528, 6.8582327e-4, -0.0038608199, 0.008273526, - -0.014871138, -0.008342551, -0.013651441, -0.025212327, 0.010109246, - -0.01893805, -0.0035570639, -0.031425163, -0.014209024, 0.007108207, - 0.0055269627, 0.018511629, -0.026835673, -0.021899018, 0.021245038, - -0.007117178, -0.012495493, 0.011783604, 0.009871527, -2.9672487e-4, - -0.013247117, 0.027247714, -0.0035346467, -0.019401858, -0.008693219, - -0.023148432, -0.0030236195, -0.023087777, -0.0020224217, -0.031069608, - -0.012531653, -6.881147e-4, 0.008479449, 0.033331543, 0.009927658, - 0.015788972, -0.011898257, 0.021302033, 0.01335182, 0.02845539, - 0.01473804, -0.0037135535, -4.354802e-4, 0.011348147, 0.014609703, - -5.979975e-4, 1.5442709e-4, 0.024865543, -0.00786113, 0.0068556247, - -0.0121726375, -0.003491628, -0.014477106, 0.007962321, 0.02708341, - -0.028996704, 0.009480709, 0.0156160835, -0.003380119, -0.029475572, - 3.8475482e-4, -0.01021816, 0.019902948, 0.010760638, -0.0047209784, - -0.006770553, -0.021516202, -0.005127488, -0.009467674, -0.008864241, - -0.0145941805, -0.01357732, 1.36962635e-5, -0.00103723, 0.031139836, - -0.02254061, -0.018051289, -1.09646375e-4, -0.0037206162, 0.02217428, - -0.016050512, 5.5859087e-4, -0.012680404, -0.017157227, 0.008225638, - -0.006582127, 0.012671602, -0.01224993, 0.0013068896, 0.009833304, - -0.011599223, 0.01918793, 0.033432696, 0.011543924, -0.025744366, - -0.01861144, -6.804236e-4, 0.0035111576, -0.022607662, 0.016506582, - -0.005261362, 0.013188695, -0.032422226, 0.013567794, -0.0057873484, - -0.0372386, 0.019890433, 0.006359065, 0.012461736, 0.029384365, - 0.012257608, 0.0035213334, 0.0095016975, 0.021878205, -0.010902298, - 0.010900399, 0.019236537, -0.008681969, -0.012543756, -0.013069884, - 0.02587738, 0.008997605, -6.0389657e-4, 0.015600846, 1.4905407e-4, - 0.04488418, -0.026873538, 0.0053410507, -0.009831595, 0.02032591, - -0.0039932407, -0.015859911, 9.573585e-4, 0.020607155, -0.0033760243, - 0.016603159, 0.014102973, 0.0044016032, -0.031214993, -0.010156175, - 0.018075235, -0.015677499, -5.982092e-4, 0.0025036347, -0.015410966, - -6.089904e-4, 0.037011284, -0.009595461, -0.004649819, -0.0028375748, - 0.023631688, -0.014399566, -0.012840214, 0.021776993, -0.003811112, - -3.238623e-4, -0.012857081, 0.0051898137, 0.004159402, -0.0067470637, - -4.3907235e-4, 0.03446425, -0.03491562, 0.004637158, 0.008991799, - 0.016567506, 0.026941558, 0.008663936, 0.016478004, -0.012441165, - -0.006254291, -0.02809754, -0.0059686485, -0.03339102, -0.021668945, - -0.0073805195, -0.0077458895, 0.004244324, -0.0034663444, 0.0041587804, - -0.024026817, -0.0118272975, -0.0095021315, 0.029919064, 3.041899e-4, - 0.0051640426, 0.025581937, 0.004083455, -0.014412761, 0.014035428, - 0.023223242, 0.0095803365, -0.016491473, -0.021147486, 0.0110990815, - -0.002731712, -0.03380246, 0.013220997, -0.003853368, 0.003760863, - 0.017178634, -0.0054846117, -0.0028903726, -0.007671256, -0.021073055, - -0.0016297216, 3.4367036e-5, 0.010654616, -0.010603087, 0.00873193, - -0.0031656632, 0.006336436, 0.0055807796, 0.009468393, 0.017887909, - -0.0035649585, 0.016361734, 0.006847368, 0.014810146, 0.012080542, - -0.0103062, -0.025218623, 0.04272428, 0.004057091, 0.0027286662, - -0.005307626, -0.030312216, 0.039135177, 0.01913271, 0.0034552321, - -0.0016376531, -0.0050171493, -0.0016578519, 0.0066456296, 0.0069461744, - -0.0054234047, 0.01597316, -0.0069925725, 0.007221322, 0.003672007, - -0.020269718, 0.002133721, 0.005663237, 0.01995762, -0.020830236, - -0.0035587798, -0.006707659, -0.0016752783, 0.00952199, -0.0010870404, - -0.01907513, -0.01783699, 0.010536881, 0.016485663, 3.5738645e-4, - 0.005565694, -0.015202062, -0.002490819, 0.009052357, 0.0025687306, - 0.014119955, 0.0018359628, 0.0054106424, 0.026271198, -0.020111468, - 0.009349633, 0.029538972, -0.028362459, -0.01010471, -0.019376166, - -0.0038976148, 0.014173269, 0.012460542, 0.0039621084, -0.023676623, - -0.009374732, -0.0055771032, 2.941797e-4, 0.0043452643, -0.004257863, - 0.008343083, 0.0046662046, 0.011081801, 0.011526124, 0.009675317, - -0.023156432, -0.01553421, -0.017224014, 0.019747641, -0.0075011887, - 0.015187701, 0.0089618005, 0.023968035, -0.00642666, 0.0060142856, - 0.024142895, 0.035867054, -0.043648884, 0.018253734, -0.0025501826, - 0.035492625, -0.011880519, 0.01570366, 0.008058833, -0.0031704027, - -0.044571895, 0.003016062, -0.007236236, -0.0061869863, -0.0072870813, - 0.002603117, -0.021316633, 0.015162433, 0.0043831603, 0.011741259, - 0.023834696, -2.1714879e-5, -0.0022245573, 0.028655007, -0.003137701, - -0.008852553, -0.008974015, -0.013060211, -0.005433882, 0.0036895345, - -0.005324934, -0.0066711153, 0.018943623, -0.00786459, 0.012522917, - -0.0016443928, -0.014091749, -0.0014638652, 0.0077255117, 5.932729e-4, - 0.015286372, -0.005669314, -0.011069632, 0.01541365, 0.0036964994, - -0.014333404, 0.0078612985, 0.011582337, -0.019791422, -0.006030937, - -0.012949764, 0.02338175, 0.0046490952, 0.0019369676, 0.022643454, - -0.0060243965, -0.042958785, -0.0049145315, 0.018819086, 0.009826671, - 0.013822103, -0.00682734, 0.009365039, -0.001004071, -0.007368081, - 0.0018386492, -0.014763566, 0.017614998, 0.025689423, -0.004160865, - 0.009119455, -0.014298542, 0.0063843885, -0.005008381, -0.0024542746, - -0.024097517, -0.025172997, -0.028779905, 9.38647e-4, 0.023771264, - 0.014823655, 0.010873771, 4.6744014e-4, -0.016384516, 0.011443442, - 0.0109757, -0.010727255, 0.020412229, 0.010485236, -0.0045031253, - 0.006090514, -0.014194196, 0.00946586, -0.025807425, 0.0013344932, - 6.1844575e-4, -0.009831103, 0.0036388347, -0.0067217983, -0.01363537, - -0.033089064, 0.012870396, 0.011650832, -0.023594659, 0.008861088, - 0.0029221082, -0.004920405, 0.010836439, 0.012501572, -0.0035310595, - -0.001550736, 0.00206135, -0.024747426, -0.01789569, -0.005977042, - -0.013667946, -0.0031936846, 0.008772615, 0.010703225, -0.009880813, - -0.03364093, 0.020208236, 0.03181561, -0.008475267, 0.0022972343, - -0.009268283, 0.0036444643, 0.0058551542, 0.029469276, -0.02489259, - 0.013106255, 0.0022413044, -0.020863952, 0.0053267926, 0.0023763913, - -0.0020736025, 0.023620883, -0.020896222, 0.0030097137, -0.009312414, - -0.039535508, 0.024010003, -4.544106e-4, 0.010612011, 0.025409974, - 6.046881e-4, 0.011237844, 2.1886511e-4, 0.0019686136, 0.029686999, - 0.028413437, 0.019379914, 0.012651904, -0.0010588709, 0.025646124, - -0.008980376, -0.026888588, -0.008954075, -0.010090773, -0.01836021, - -0.014356725, 0.0072091785, -0.027097968, 0.017405095, 0.0180292, - 0.017041046, 0.023956267, -0.007362953, -0.01400699, 0.005418108, - -0.018025195, -0.0037301627, 0.0012923462, -0.012334411, 0.0022654429, - -0.014817728, -0.023977676, -0.005650981, -0.011231987, -0.00822075, - 0.0040688356, 0.0044150986, 0.018521141, -0.022947345, -0.016589863, - 0.0196375, 0.0031198168, -0.022974849, -0.023097143, 0.0077177286, - -0.017390184, 0.014027498, -0.004697803, 0.0058312044, -0.018902486, - 0.007377061, -0.0031025696, 0.0033316673, -0.0010314916, -0.0026186998, - -0.023037415, -0.010824934, 0.0016879612, 0.011329538, 0.002189349, - 0.0049919235, 0.011226339, -0.026554504, 0.012628852, -0.002497735, - -0.0046106484, 0.007178887, 0.0015429875, -0.035220355, 0.019798936, - -0.0142557835, -0.0046672546, -0.01646857, 0.008868361, 0.04242825, - 0.016987478, -0.012575473, -0.015400901, 0.010337211, 0.017338732, - -0.009404569, 0.011906048, -0.0023574147, 0.015734952, 0.0069311275, - 0.021149674, 0.006484941, -0.021360425, -0.0046203723, -0.0018219101, - 0.019378366, 0.005637609, 0.013870749, 0.0026934668, -0.0010271139, - 0.017450016, -0.00989449, -0.02147189, 0.008961745, 0.02507127, - -0.0034585677, -0.017248755, -9.837212e-4, 0.012437886, 0.01709374, - -0.026988542, -0.005065906, -0.007784115, -0.0058144364, 0.006076503, - 0.015680533, 0.009180796, 0.003263174, -0.010864252, 0.024791637, - 0.0025589871, 0.0048938664, 0.008839417, 0.008837626, -0.0011499245, - 0.008639448, 0.006639759, -0.0043106447, -0.03143402, -0.0027047887, - 2.1373958e-4, -0.02486025, 0.0010391071, 0.008235462, -0.023151558, - -0.0051351264, 0.01489289, 0.010349438, 0.008586132, 0.0013493906, - -0.017721465, -0.006195219, -0.0018931752, -0.006627258, -0.013603083, - -0.0021378598, 0.012033693, 0.0017097014, 0.005997201, -0.019300785, - -0.015486172, 0.0124330465, 0.0022722268, -0.00319205, 0.008801382, - -0.002841524, 0.0042400938, -0.017765803, -0.009178556, -0.008443276, - 0.020260533, -0.013915561, -0.0010400286, 0.012427289, 0.041359585, - -0.0036259948, 0.00824601, 0.03865953, 0.0047806813, 0.015541286, - -0.0014825979, 0.023803152, 0.010220965, 0.01924936, 0.015568004, - 0.02368419, 0.014594536, -0.02681984, -0.009630574, -0.003514722, - -0.020317411, -0.011244033, 0.02283287, 0.0020978388, 0.010162714, - 0.028284047, 0.013762725, 0.00612935, 0.005601592, -0.018619448, - 0.029721363, 0.0028153267, -0.0051631276, 0.0042867507, 0.022391023, - 0.021314412, -0.016176907, -0.022718461, 0.013918075, 0.01250589, - -0.010219451, 0.022407139, 0.026618855, -0.0063882535, -0.017698722, - -0.013989312, -0.015549415, -0.002651566, 0.0139779225, -0.017633813, - -0.02453335, 5.611379e-4, 4.302344e-4, -0.003613025, -0.0051071863, - 0.0045400555, -0.0063942727, -0.0065146154, -0.009977373, -0.011019614, - -0.015056051, 0.015442175, 0.028538786, 0.0012380073, 0.017923275, - 0.0046526496, 0.00547936, -0.021839617, 0.0032720808, 6.256373e-4, - 0.009781648, 0.024101308, 0.021806328, -0.0015408841, -0.0026853776, - 0.0144243315, 0.030588591, -0.017070288, -0.036657825, 0.028087018, - 0.014776883, 0.0032402417, -0.01746377, -0.026530841, -0.003675677, - -0.0011462398, -0.032162655, 0.010496601, -0.0037730616, -0.029410502, - 0.024389911, 0.0023134872, -0.011551907, -0.02000242, 0.007191353, - -0.015526959, -0.02162304, -0.045030322, -6.0842594e-4, 0.009964608, - 0.0057914397, -0.024039244, 0.008253128, 0.022738952, -0.0074070804, - -0.00908053, -0.017825795, 3.889431e-4, 0.0395856, -0.0091770515, - -8.9409186e-5, -0.014855898, 0.016494999, 0.012320304, -0.008350166, - -0.01716319, -0.011567968, 0.00915649, 0.0020448407, -0.019027367, - -0.0037256132, 0.0054578423, -0.012746201, 0.02017869, -0.0017263654, - -0.005576794, 0.015666697, 0.007798376, -0.004139735, -0.022535132, - 0.012781809, 0.0058825207, 0.013629834, -0.024872454, 0.016610317, - -0.020153992, 6.3684565e-4, -0.0042314366, 0.0022052135, -0.009484257, - -0.0062984633, 0.018380092, 0.010009892, -0.030209132, 0.0060508465, - -0.022248399, 0.00343652, -0.013566821, -0.005891717, 0.020759655, - -0.0011723026, -0.04494697, 0.016036442, 0.00222164, 0.011279788, - -0.0069899005, 0.014857657, 0.025021255, 0.021930397, -0.021124491, - -7.626802e-4, -0.009406409, 0.0026534228, -0.006248756, -0.039134964, - -0.0016065943, 0.0024234562, 0.04775149, -0.004163981, 0.009997257, - -0.017999535, -0.030432584, -0.0013391391, 0.0032594106, 4.127604e-5, - 0.005787426, 0.01681498, 0.023215972, -0.013984741, -0.010461437, - 0.008171479, 0.007776077, 7.8928773e-4, -0.012027344, 0.0054923613, - 0.01745556, -0.008254068, 0.006306613, -0.03112595, 0.02257397, - -0.03186035, 0.0056822393, 0.0045582326, 0.005747428, -0.012462957, - -0.0027022643, 0.006906231, -0.008039058, -0.004407524, 0.011669094, - -0.0029061972, -0.023388853, -0.014517648, 0.007554705, 0.0278362, - -0.018375821, 0.012112358, -0.0024934208, -0.042484585, -0.024870262, - -0.0029534216, 0.0035410642, -0.0037678145, 0.00704382, 0.008970965, - 0.01461413, -0.018825492, -0.012400601, 8.992305e-4, -0.007802644, - -0.010346487, 0.0028409886, -0.001483804, -0.018235965, -0.0044249096, - 5.3379266e-4, 0.026902748, -0.006740919, -0.0017960737, -0.016875556, - 0.00901567, -0.005939765, -0.013203195, 0.0029088652, 0.0020356018, - -0.0018402109, -0.0215714, -0.009934936, 0.0048873136, 8.253602e-4, - 0.01776003, -0.0056608706, 0.009340342, -0.00822994, -0.026503978, - -5.495315e-4, 0.0083499625, -0.019932814, -0.02942269, 0.013157428, - -0.007601989, -9.050543e-6, -0.029782945, -0.017305845, -0.019189864, - -0.011990233, -0.022451159, -0.015696337, -0.015475373, 0.012960677, - -0.026499104, -0.011596756, -0.0046865544, -0.0023252738, -0.012728563, - -0.0026387107, 0.008891937, 0.0023517252, -0.013508618, 9.954531e-4, - 0.027348744, 0.012362595, 0.030010127, -0.0069344705, 0.0030984024, - -0.012406579, -0.009667932, 7.404853e-4, -0.020162297, 0.015299573, - -0.012243354, 0.028467355, 0.0054948344, -0.0020369356, 0.009035963, - -0.0058905883, -0.012873111, 0.011976861, 0.0046513765, -0.0073793605, - -0.012211221, -0.016009787, 0.012354832, -0.011538802, 0.017759245, - 0.004148668, -0.010811357, -0.017576844, -0.01753691, -7.005315e-4, - 0.031224739, 0.018158402, 0.001621497, -0.009708991, -0.01693069, - -0.033330385, -0.020776737, 0.0031822082, 0.011888662, -0.021415014, - -0.005099572, -0.015640624, 0.004659486, 0.002175004, -0.004498858, - -0.009546733, 0.012710142, -0.01831947, 0.0034060213, -0.014335158, - -0.00686479, 0.021583363, 0.033295736, -0.024327217, -0.0056194444, - -0.008527024, 0.010742288, 0.013940472, -0.017087948, -0.033330332, - 6.17018e-5, -6.284736e-5, 0.024398198, -5.15829e-4, 0.0047494443, - 0.0022860398, 0.008545401, 0.025618067, -0.006155498, 0.004785078, - 0.012914661, -0.017482238, 0.008745031, 0.0015647989, 0.0040125726, - 0.024439411, 0.014318794, 0.0076344083, 0.012735805, 0.034851868, - -0.015451503, -0.008818339, 0.01836151, 0.0015004702, -0.022781186, - 0.006309098, -0.0066901804, 0.01660377, 0.020731593, -0.007583728, - -0.01296952, -0.010532066, -0.018622227, 0.0129386755, 0.017264517, - -0.0013390705, 0.013932066, -0.007791026, 0.04353129, 0.0016411509, - 0.022343382, -0.002440599, 0.016685406, -0.023132766, 0.006596235, - -0.005378468, 0.013693384, 0.019923408, 0.0048175384, 0.0053192317, - 0.0033037406, -0.019696264, -0.013306974, 0.019484514, 0.0022199738, - 0.014830728, 0.004031481, 0.014369381, 8.332933e-4, -1.9675116e-4, - 0.014029841, -0.025937706, 0.01163212, 0.027805978, 0.0082710665, - -0.0055115614, -0.0016704294, 0.00511738, -0.017262712, 0.012144563, - -0.007728817, 0.03279144, -0.0061546657, -0.007807013, -0.008850305, - -0.0066910153, 0.012811434, -0.02498388, -0.0013457718, 0.0052511506, - 0.011946695, -0.002179708, 0.014682464, -0.03265876, -0.011337465, - 0.001058239, 0.030716078, -0.0019089999, -0.023705496, -6.621491e-4, - -0.012301999, -0.025881639, -7.7498076e-4, 0.008588231, -0.0031089142, - -0.0081111835, 0.009300456, 0.008317294, -0.004453008, 0.014197972, - -0.016993381, -0.010283327, 0.013690497, -0.016634252, -0.011539593, - -0.028169505, -0.0018404198, -7.267022e-4, -0.023668738, 0.018551743, - 0.028428135, 0.013001377, -0.0031460132, -0.012872988, 0.006853199, - -0.0088332165, 0.008705949, 0.0042253034, 0.01222205, 0.027985184, - -0.014366357, 0.027262857, -0.025237452, -0.015856847, -0.020737479, - -1.3871929e-5, -0.007066119, -0.008985727, 0.008468152, 0.036169503, - -0.0050639785, -0.019400446, 0.022487802, -0.010391554, 0.0030212328, - 0.013243875, 0.024385944, -0.0032489877, 0.010378372, 0.009349488, - -0.038905323, -0.001926643, 0.0045076394, -0.009993, 0.0084945345, - -0.0021288905, 0.047954712, 0.024738433, -0.030065864, -0.0065158107, - 0.012968371, -8.277421e-4, -0.0053730863, -0.01472849, -0.03347214, - 0.013975121, 0.015337554, 0.004346281, 0.0032572555, 0.011779381, - -0.01881958, 0.026335614, 0.010775835, 0.010198597, 0.009028049, - 0.007438939, -0.00283398, -0.0044179712, -0.017015727, 0.0021651385, - 3.1172426e-4, 0.0010119728, 0.0024090535, -0.0031519241, 0.003614209, - -8.946066e-4, 0.004346524, -0.004589326, -0.0016585717, -0.003294919, - -0.013901779, -0.031952146, -0.012842848, -0.0039833104, -0.0086820135, - -0.02303672, 0.00392453, 0.010854557, 0.020962778, -0.009818869, - 0.007972685, -0.020332875, -0.021866623, 0.017926572, -0.0010816593, - -0.020915933, -0.011091139, -0.022476606, 0.011894342, -0.014425975, - 0.0063603395, -0.0029515068, -0.010549731, -0.009491677, -0.010432433, - 0.017876562, 0.0093422495, -0.0077551915, 0.0053130942, 0.018231537, - -0.013121643, 0.001333377, 0.018078538, 0.011894321, 0.011559892, - -0.02970137, -0.0034194498, -0.010950069, 0.0131465895, 8.3447766e-4, - -0.0041136644, 0.01490122, 0.015699448, 0.004701205, 0.003550959, - -0.0068807607, -0.014475293, -0.02500856, 0.023486124, 2.7121181e-4, - 2.025013e-4, -0.024764298, 0.0036933061, -0.0053183734, 0.034110215, - 0.02142892, 0.0054909266, 1.4681199e-4, -4.9850147e-4, -0.008507344, - 0.0034975244, 0.007544958, 0.0061151567, -0.016630284, 0.007098319, - -0.01627977, 0.021524172, -0.002414666, -0.006026437, -0.01636127, - -0.011962596, 0.016431812, 0.0031995156, -0.0050686183, -0.0302459, - 0.019229908, -0.014031721, -0.013786418, -0.002464439, 0.00993192, - 0.011694929, -0.004787869, 0.0015921029, 0.01515049, 0.03997466, - 0.010813756, 0.031756394, 0.006652155, 0.031393893, -0.007168339, - -0.009253238, 0.010833893, 0.0058518257, 0.0016633862, 0.020336788, - 0.00709593, 0.016467284, -0.008882304, -0.0063277916, -0.009762212, - -0.0029630454, 0.037570048, 0.008380019, 0.020299027, 8.666581e-4, - 0.032790042, 0.0128561985, -2.7438358e-4, 0.013041419, -0.0051345252, - -0.008079301, 0.005340194, 0.021638567, 0.01617579, 0.021066139, - 0.018630905, 0.024389472, -0.015528296, -0.011156543, 0.012903622, - -0.008318496, -0.006725395, 0.008298716, 0.01851753, -0.05488203, - -0.003986261, -0.02500091, -0.011777994, 0.027346773, 0.007269086, - 0.0025045825, 0.014249807, -0.001954791, 0.009888288, -0.009501104, - 0.005441085, 0.0030041034, 0.0051932456, -0.0100934515, 0.0046187663, - -0.0011884404, 0.0059902193, 0.006857698, -0.007796182, -0.0049471683, - -0.00899306, -0.0037799922, 0.018505966, -0.03002986, -0.03155444, - 0.0029161857, -0.026155377, -0.013057852 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - -0.011177568, -0.034059852, 0.011469786, -0.019019725, -0.02584903, - 0.029498506, 0.0018587534, 0.023056146, 0.0108315125, -0.023826601, - -0.023824412, -0.027817918, -0.030699518, -9.823758e-4, -0.023213077, - -0.011746267, 0.0083328895, 0.037648506, -0.005053069, 0.012369145, - 0.009216559, -0.008690944, 0.020711778, 0.010529543, 0.013257414, - 0.021123286, 0.00801211, 0.01118973, -0.0076586558, -0.024619365, - 0.0029801868, 0.002832788, 0.017660713, 0.014753207, 0.02469646, - 0.0018556173, -0.0032816436, 0.014878924, 0.02366611, -0.0067261285, - 0.015585321, -0.011058527, -0.016395042, -0.038696438, 0.0047604116, - -0.007468323, 0.032493617, 0.003123047, 0.003246513, -0.0072812657, - 0.013523476, -0.0064307665, 0.0071319635, 0.019173326, 0.014981433, - 0.0075428593, 0.009541435, 0.027854007, 0.019147538, 0.014781922, - -0.031831913, -0.014812226, 0.022306735, -0.008857178, -0.015412668, - -0.0154808685, -0.00219741, 0.007376705, -0.018526403, 0.014823929, - -0.012079301, -0.009605543, 0.018928813, -0.0031454663, 0.01860621, - -7.307056e-4, -0.01381354, 0.006086501, 0.019672431, -0.037906796, - 0.010015349, -0.0057997173, 0.03283991, -0.025354953, 0.015860286, - 0.016963447, 0.039555807, 0.019766295, 0.01269535, 0.018101525, - 9.1903916e-5, -0.0094153285, 0.021577839, 0.0061869556, 0.027469128, - 5.86336e-4, 0.016222022, -0.01912495, 2.557535e-4, -0.036231082, - 0.017800545, -0.0017749337, 3.761507e-4, -0.003271455, -0.0034291777, - 0.01935135, -0.0014942605, 0.0010122902, 0.0019676809, -0.00947905, - -0.022860004, -0.0037309509, -0.017458271, -0.003330545, -0.010548818, - -0.009844608, -2.1777871e-4, 0.01113764, -0.005222595, 0.024379743, - -0.018044626, 0.008385776, -0.015711032, 0.019391457, -0.0061037713, - 0.020526912, -0.008056914, -0.0076726833, 0.021729724, -0.016858092, - -0.0120659, -0.0113749895, 0.011219456, 0.02133512, 0.01263814, - 0.014889392, -0.028010266, -0.0024517407, -0.01951082, -0.010175285, - 0.0064874156, 0.008937655, 0.012665384, 0.011464404, -0.035549514, - -0.007712948, 0.017428143, -0.01222588, -0.0053748568, 0.020836053, - -0.0014120508, -0.002866746, 0.030672677, 0.0055329655, 0.003488423, - -0.003070251, -0.03842224, -0.010639865, -0.010648815, 0.0077435444, - 0.012084476, 0.008333151, -0.00802843, 1.6254837e-4, -0.013376788, - 0.005276192, 0.0034243348, 0.020111293, -0.041750006, -0.012393086, - 0.0055041225, 0.015386903, 0.0145094255, -0.011031596, 0.01840816, - -0.014624493, 0.024943786, 0.018487226, 0.010213114, 0.005455728, - -0.019809457, 0.002439624, 0.03850522, 0.0033593362, -0.015634974, - -0.017492998, 0.011591386, 0.001210108, 0.008950182, -0.016625902, - 0.0023562345, 0.008836781, -0.01820354, 0.018228494, -0.009801397, - -0.008717216, 0.02016059, -0.03668248, 0.015540617, 0.014975498, - -0.0023618932, 0.031457484, 0.009956423, -0.009071943, 0.0021173817, - -0.005390061, 0.010840369, -0.012808471, 0.0045509893, -0.020413486, - 0.018409178, 0.0109497635, -4.0618097e-4, 0.018521247, 0.011885454, - -0.027934419, -0.0049763564, 0.024542117, 0.035220426, 0.0018266534, - -0.019638708, -0.017363343, -0.020087712, -0.011381363, 0.004818561, - 0.0076783877, -0.013272264, -0.0024592823, -0.008339793, 0.009631328, - -0.022521783, -0.009946068, -0.002621322, 0.013627969, -0.0012337248, - -0.007883683, 6.685232e-4, -0.007849574, 0.009382443, -0.016353037, - 0.0015823349, 0.040034726, 0.023029199, 0.0019488904, 0.019421553, - -0.00217283, -0.0087837335, 0.005278356, 0.031426325, 0.01964723, - -0.0010395853, 0.011489125, 0.009586896, 0.022574773, -0.01304849, - -0.0031887565, 0.003014376, -0.017882776, -0.013051255, -0.023878204, - 0.026733395, -0.018639246, 0.009322455, -0.0035310886, -0.006170113, - 0.013880702, -0.019973686, 0.005955011, 0.020935925, 0.01590034, - -0.011972664, 0.00484247, -0.013964425, 0.00711758, 0.012559891, - 0.005817939, 6.042919e-4, 0.009207343, -0.0055528227, -0.0402172, - 0.01066118, 0.006489397, -0.010448327, -0.022449005, -0.027123252, - -0.016624318, -0.005101145, 0.008059465, 0.0060315114, -0.0061303554, - 0.0028431476, 0.009998435, -0.006793663, 0.0059581385, -0.0048100925, - -8.410767e-4, -0.020143762, 0.016121116, 0.008421785, 0.005281268, - 0.018806199, 0.007826027, -0.006442985, -0.0074069025, -0.0010786593, - 0.0037409065, -0.014540891, 3.5796434e-4, 0.0029511359, 0.0034382679, - 0.015921675, 0.019341243, -0.019628018, -0.026709778, 0.0073468, - -0.014822264, -0.011988007, -0.032477014, 0.004151369, -0.0018863488, - 0.0043561086, 0.0018591413, -0.0030391868, 0.011139343, -0.021646315, - 0.027276417, 0.0013887277, -0.0069733313, -2.5468997e-5, 0.014827707, - -0.012409254, -0.012865692, -0.0073865056, -0.009133149, 0.032559615, - -0.012850061, 0.008131572, 0.016664427, 0.01086509, 0.02541326, - 0.0014658774, 0.0043235603, 0.0036347804, 0.013000303, 0.0017127213, - -0.021639584, -0.0014432387, 0.021050632, -3.9791816e-4, -0.008045695, - 0.006356202, 0.007150017, -0.009286797, -0.013979608, -0.03551644, - -0.037015907, -0.006986771, 0.015012119, -0.025154335, -0.025661064, - -0.0038240133, 0.0023580042, -0.0025453737, 0.0020203479, 0.006003541, - -0.007453852, 0.0029088492, -0.033022154, 0.0051480453, 0.004806664, - 0.012979056, 0.0055406974, 0.021747768, 0.0031150244, 0.012871803, - 0.014286533, 0.016922329, -0.014367983, 0.0072127916, -0.0035205088, - 0.0053240904, 0.018639747, -0.0092441505, 0.023390107, -0.004595077, - 0.023244763, -0.0022104415, 0.0046401634, -0.0124040665, -0.0046490426, - -0.026602607, 0.034960054, 0.015858097, -0.0052381004, 0.022449167, - 0.0107221, 0.004833068, 0.007118802, -0.010148547, 0.003350837, - -0.012484684, -0.0019601171, 6.0521753e-4, 0.01457943, 0.01669403, - 0.0029588032, -0.0012326466, -0.011833319, 0.022438841, -0.004445557, - -0.009697763, -0.022010967, 0.018557115, -0.015028963, -0.0016383574, - 0.021784833, -0.022005336, 8.696041e-4, 0.003520472, -0.009628307, - -0.03629934, 0.021501064, 0.008894041, -0.020804226, -0.0031632048, - -0.036619816, 0.014627912, -0.009238412, -0.004033993, 0.01121453, - -0.004226004, -0.013413635, -0.009507363, 0.015198358, -0.011320549, - -9.772584e-4, -0.010787423, 0.01626457, 0.0010822568, -0.0101676565, - -0.0043767984, -0.014963665, 0.01411536, -0.0036036496, 0.0049545174, - -0.0075417417, -0.0011425478, -0.010510453, -0.0034915206, -0.007975045, - 0.0016643467, 0.012657077, 0.013734376, 0.002776715, -0.0010620627, - 0.030961523, -0.0020084947, 0.0073079388, -0.017143669, 0.018012837, - -0.021973133, 0.0019575576, -0.014800535, 0.0019271257, -0.02057441, - -0.019113693, -0.008640838, 0.005001047, -0.014734086, -0.009221964, - 0.0094390055, -0.019384233, -0.014332072, 0.017182563, -0.022945732, - 0.0071388064, -0.008571155, 0.01635833, 0.0061641694, 0.011722754, - -4.856631e-4, 0.008245717, -0.004021708, -0.0021648442, 0.014487139, - -0.005288906, 0.035992566, 0.016626444, 0.0076178545, -0.004350567, - -1.7891404e-4, -0.030947408, 0.016950188, 0.0057154405, 0.017914528, - -0.01317343, 0.005918321, -0.0046057813, 7.730985e-4, 0.021494532, - -0.005043351, 0.009052647, -0.0062476816, 0.014032762, -0.0013909985, - -0.012599904, 0.0025444992, -0.017180534, 0.014557318, 0.008398954, - 0.008141488, 0.015416526, 0.008252381, -0.016056627, 0.023240319, - 0.021250669, 0.0033926913, 0.0031129278, 0.008323576, -0.013375841, - -0.015968489, -0.014413305, 0.011873652, -9.4709976e-4, -0.017069591, - -0.011021806, 0.0051984526, -0.018652745, 0.006644723, 0.0050493786, - -0.0065211747, 0.0075943195, -0.020589657, 0.0070248838, 0.014567114, - -0.025302427, -0.020591978, 0.033944447, -0.0068115885, 0.03240991, - -0.029534813, -0.004625925, 0.008734871, 0.0017701639, -0.0010072372, - -9.308971e-4, -0.016104897, -0.013509874, -0.01703097, -0.02203353, - -4.0430832e-4, -0.0024036693, -0.017422548, -0.024291016, 0.0026737812, - -0.04439316, -0.0070573953, 0.0059045567, -0.032362726, 0.010159056, - 0.02018735, -7.907126e-4, -0.006553508, 0.005751965, -0.008925437, - -0.012668834, -2.583762e-4, 0.007083451, -0.027241671, -0.017573547, - 0.004482914, 0.0045683905, 0.0049061053, 0.023192618, -8.145736e-4, - -0.0030010177, 0.0043704, 0.019705135, 0.013099199, 0.02648326, - -0.02738191, -1.1442994e-4, 0.020298537, -0.015510799, 0.0064125536, - 0.031096341, 0.012485222, -0.0049470826, -0.03117674, 0.008022114, - 0.035424914, -2.7467887e-4, -0.005929225, -0.01640866, -0.01190781, - -0.012876498, 0.026432587, -0.024155812, 0.008187717, -0.009330403, - 0.007649736, -0.025188927, -0.0101745445, -0.01784815, 0.0015253869, - 0.0038561157, 0.008811108, -0.008141118, -0.027154446, 0.0057482845, - -0.009543638, -0.0018819602, 0.021642175, -0.010468338, 0.0142715005, - -0.039220087, 0.007854681, -0.004574562, -0.012213137, -9.518078e-4, - -0.0014632184, -0.013282378, -0.00806916, 0.005252812, -3.3992383e-4, - 0.04572435, -0.008925078, -0.0019876878, 0.015999226, -0.0146995485, - 0.01679468, -0.00801644, 0.020161768, 0.0065338057, -0.006054626, - 0.009473382, 8.312278e-4, -0.0132954195, 0.036440793, -0.008511261, - 0.028914867, 0.011184272, -0.030223567, 0.016658342, 7.047649e-4, - -0.007888736, -0.04947733, -0.0072454256, 0.0055733114, 0.0149047915, - 0.0026114453, -0.006952096, -0.003877629, 0.011169727, 0.02993369, - -0.014935479, -0.015234917, 0.028215017, 0.0155286, -0.017086642, - 0.0012620265, -0.0033538693, -0.011620453, -0.025737552, 0.020581529, - -0.020074267, 0.03303417, -3.2263598e-4, 0.03456282, -0.0064949202, - 0.0027907481, 0.00991199, -0.012365073, 1.0145818e-4, -0.004073222, - -0.0048719775, 2.2301014e-4, -0.030029893, 0.004548359, -0.0010944773, - -0.00470495, 0.018595267, 0.02367022, 0.020796893, 0.0050273538, - -0.0029142466, -0.01670472, -0.003754465, 0.0083109895, -0.015598573, - 0.023178883, -0.017894626, 0.007682116, 0.016386803, -3.829355e-4, - -0.016461086, 0.0041414904, -0.012832411, 0.011385282, 0.0030127396, - 0.011917821, -0.003827532, 0.0039673373, -0.0069265403, 0.03565868, - -0.0056277164, -0.019736513, -0.0044653807, -0.035391074, -0.006010463, - 0.0022417915, -0.010175438, 4.9253827e-4, -0.0095766075, -0.00961917, - -0.00818389, 0.0049811755, 0.03039741, -0.010794256, 0.001224043, - -0.034727678, -0.019230297, 0.015075293, -0.014629684, -0.033270843, - -0.025136454, 0.011007495, 0.015032863, 0.006115612, 0.0055965753, - -0.010283383, -0.011084819, -0.01792783, -0.004602558, -0.004382757, - -0.018761506, 0.00968246, -0.013709669, 0.019395953, 0.015610319, - 0.024735795, 0.0013499316, -0.007089367, -0.034211524, 0.00823235, - -0.009658672, -0.023027299, -0.02021075, 0.009408998, 0.026085315, - 0.006663876, -0.004635458, -0.0025245235, -0.031999245, -0.0114222225, - -5.275873e-4, 0.0110497195, -7.9867814e-4, 0.0026272498, 0.011314974, - -0.006316297, 0.02206532, 0.0061622066, -0.019276919, -0.0059148995, - -0.023807054, 0.010375674, 0.011903205, -0.004739807, -0.02686287, - 0.013317413, -0.012524188, -0.018171892, -0.007202314, -0.0155984685, - 0.0073031676, -0.0056739505, -0.021569826, -0.0020569335, 0.01761452, - 0.0029107172, 0.01868781, 0.04155782, 0.0026611192, -0.024296546, - 0.004315272, 0.0056805257, -0.0027972113, 0.0065762084, -0.02337509, - 0.018644132, 0.009609199, 0.009897217, 0.017622843, -0.0068610986, - 0.0023915488, -3.5296052e-4, 0.002466494, 0.008657453, 0.014589048, - -0.017556505, 0.006608605, 0.013276159, 0.023981104, -0.03827763, - 0.0054472494, -0.008026662, -0.0022226628, 0.0035631533, -0.013392859, - 0.0041944687, 0.0026819569, 0.005808773, -0.0032997064, -0.0011315414, - -0.0016949365, -0.021621702, 0.033862863, -0.036932, -0.004272191, - 0.0043984833, 0.0076564504, 0.030426677, 0.009218015, 0.01392631, - -0.0065743905, 0.013265413, -0.0050711865, 0.008560472, 0.0021032828, - -0.024160111, -0.014986084, 0.0077143586, 0.027162313, -0.010795244, - -0.011789732, 0.0060332683, 0.011204896, 0.010684987, -0.02915042, - -0.03509943, 0.005043943, 5.147841e-4, 0.016140642, -0.01560243, - -0.005613794, -0.013941907, 0.001659337, -0.005966193, -8.6807547e-4, - 0.02212163, 0.002183822, -0.031429697, 0.012239374, 0.0060665044, - 0.007809529, 0.008705427, -0.020775855, -0.012189481, -0.014861589, - -0.024162704, -4.0934194e-4, -0.03818939, 0.0017256484, -0.024575915, - 0.010145525, -0.0049857623, 0.022969812, -0.012368907, 0.01422096, - 0.014186805, -9.3231787e-4, -0.0021168008, -0.0074326363, -0.013675828, - -2.9295863e-4, 0.033341464, 0.0055920146, -0.019895542, -0.025421645, - -0.007966822, 0.0055572805, -1.8943014e-5, -0.007893073, -0.011162488, - -0.0049646306, 0.020354751, -0.0025665073, 0.007206559, -0.03376463, - 0.02530531, -4.1412163e-4, 0.0028435946, 6.1348476e-4, -0.0072720153, - -7.3034456e-4, -0.01314639, 0.003385526, -0.016578753, -0.0038985356, - 0.015052456, -0.017601099, 0.007271651, 0.00797587, -0.01641945, - -0.005235363, 0.010814185, 0.0101202475, -0.0058272197, -0.016761737, - -0.0021894542, -0.021246942, -0.009145571, -0.021788616, -0.006555446, - -0.006122273, 0.020991046, 0.00984594, -0.001653895, -0.011861826, - -0.0107339835, -0.039782777, -0.0011855094, 0.008777718, 0.021790175, - -0.0018216176, 0.012202709, 0.006897037, 0.010673064, 0.020577976, - 0.0091870325, -0.014235942, -0.027004743, -0.008952353, -0.0256249, - -0.014769619, -0.002081914, 0.0073711216, 0.012134346, -1.06726264e-4, - 0.019904915, -0.008387082, 0.0030696236, 0.0057472223, 8.781497e-4, - 0.015420964, -0.008027239, -0.0015737399, 0.01909542, 0.012572921, - 0.015909022, 0.006567067, 0.0092336, -0.002938457, -0.015212268, - 0.0029811608, -0.016011966, 0.012697776, -0.0022903583, -0.03970648, - 0.006491779, 0.005430826, 0.033574853, -0.018996617, -0.0019170934, - -0.011656888, -0.01453969, 0.027013887, -0.026432794, 4.431841e-4, - 0.017584387, 0.0033429745, -0.010024553, -0.007043014, 0.023157833, - 0.0028470324, -0.02462359, 0.026507962, 0.007281417, 3.2246733e-4, - -0.009852488, -0.0079991575, -0.01703702, 0.021211974, -0.015790673, - 0.009111161, 0.0031367263, 0.015106891, 0.029038811, 0.0101649, - -0.006724228, 0.00947725, 0.01936498, -0.016816342, 0.019226125, - -0.0031856624, 0.004869614, -0.01689879, 0.005002608, 7.522064e-5, - -0.016426662, -0.007528531, -0.0026685162, 0.0077737183, 0.009191105, - 0.020984674, 0.0022859015, 0.011321115, -0.008347369, -0.008792206, - -0.012026013, -0.0075979796, -0.016329477, -0.010874312, 0.005287141, - -0.030549083, 0.013218282, -0.0021704123, 0.018160455, -0.014664063, - -0.0048234942, -0.0072486103, -0.010038377, -0.028520228, 0.017055545, - -2.8240273e-4, -0.006556868, 0.0109426435, -0.0023552335, -0.01433383, - -0.0102423, 0.016690679, -0.013053487, -2.4596372e-4, 0.014087237, - 0.01609194, -0.0138198985, 0.008709733, 0.019852612, -6.3587894e-4, - -0.011256369, 0.023492943, -0.0068567037, -0.0021277186, -0.0092193205, - 0.013901233, 0.0028754745, 0.0031080581, -0.009789599, 0.01496533, - -0.014197709, 0.0067824028, 0.0074959095, 0.0032148198, 0.007868463, - -0.006294394, 0.011784112, -0.016442962, 0.014031149, 0.021970153, - -0.042585474, 0.019881813, 0.020390538, 0.0052094236, 0.017809737, - -0.0062787337, 0.010771273, 0.0042021023, 5.835893e-4, -0.011761624, - 0.009686624, 0.0011320942, 0.005076144, 0.023827078, -0.012146235, - 0.0060800216, -0.014136283, 0.0016940807, 0.011026256, 0.006570257, - -0.0130928885, 0.029507115, 0.00568751, 0.0103623625, -0.016002674, - -0.011032502, 0.0075379885, 3.3637622e-4, -0.019998807, -0.018994382, - 0.009370771, 0.001329864, 0.012948215, 0.009040832, 0.012929381, - 0.019039277, 0.0031344604, 0.030948315, -0.01007265, 0.0063373176, - -0.030814497, -0.009020436, -0.007414323, 0.0042280406, -0.0077748713, - 2.8432818e-5, -0.013887216, 0.031820893, 0.0014538383, -0.002609228, - 0.018603154, 0.0071626795, 0.0027443036, -0.007469658, -0.0151390955, - 0.02024389, 0.006266786, 0.022362752, -0.021524362, 0.002359657, - -0.0020927866, -0.0038319894, 0.005464274, 0.0019276264, -0.013355414, - 0.024966791, -0.0015597409, 0.008582636, -0.018240886, 0.0014979978, - -8.076812e-5, 0.00807352, -0.025387542, -0.008563422, 0.022312604, - 0.0012100644, 0.02250541, -0.0038968422, -0.01178176, 0.009890376, - 0.007977321, 0.0045081847, 0.012198758, -0.0060497145, -0.003018007, - -0.0021000782, -0.016154876, 0.004520733, 0.023256483, 0.00372973, - 0.010663427, -0.010755134, -0.019455617, 0.0024890685, 0.0010538314, - 0.016411263, 0.013458082, 0.0147760175, -0.0015652349, 0.008740707, - 0.019237276, 0.01807753, 0.01006235, -0.0136228725, 0.044980686, - 0.001483152, -0.014888791, -0.01075901, 0.0076547135, -0.007881958, - -0.02123406, -0.017067892, 0.0030212593, -0.020067777, 9.798186e-4, - -0.0079652, -0.03231844, 0.0010798873, 0.0022553427, -0.021657323, - -0.016724184, -0.013062677, -0.011496622, -0.0117568085, 0.014934102, - 0.0048965444, 0.0034749005, 0.03181284, 0.026849909, 0.022843126, - -0.022891335, 0.017035091, 0.018963045, -0.004613882, 0.015634436, - 0.029002743, 0.018259464, 0.015225775, 0.001547989, -0.02209928, - 0.0075998893, -0.0068522533, 0.0047897445, -0.025729066, -0.0043659783, - -0.021801474, 0.0062017227, 0.030012993, 0.009751674, 9.791685e-4, - 0.042179726, 0.0023838917, -0.0038012115, 0.019062323, -0.014037137, - 0.017467307, 0.0019088459, 0.013322011, 0.010457893, -0.010582932, - -0.0128271915, -0.010198609, -0.010074093, -0.008738539, 0.00173133, - 0.001029559, 0.016906928, -0.006698488, -0.02661325, -0.015413634, - 0.007448087, 0.011484923, 0.012958724, 0.010615936, -0.03559417, - 0.012880574, -0.031643942, 0.014545902, 5.503765e-4, 0.0064339046, - -6.4669736e-4, -0.0281199, -0.005482245, 0.0044147302, 0.009518592, - -0.013873908, 0.012137424, -0.02504775, 0.00899708, -0.0017055041, - -0.030842666, -0.0058508893, 0.0049365712, 0.003612189, 0.00814673, - -0.0019701652, -2.5776747e-4, -0.004534797, -0.0108337635, -0.019274326, - -0.014232005, -0.014433074, 0.009305853, -0.027448097, 0.016653981, - -0.022219146, 0.009837716, -0.014274036, -0.0039843265, 0.0084234215, - 0.009307577, 0.0017824434, 0.018970983, 0.024427526, 0.0032356468, - 0.011462574, -0.01828529, -0.025515849, -0.013170986, -0.012051414, - 0.003994741, 0.004926638, 0.0028106777, -0.012346073, 0.028851528, - -0.038289305, 0.004178297, -0.012151321, -0.020588394, 0.012867325, - -0.002932616, 0.0022905157, 0.015893962, -0.0039017077, 0.006194674, - -0.013665488, -0.010253213, 0.0043804026, -0.0036597506, 0.027363164, - -0.019200642, 6.4896466e-4, -0.0053854445, 0.0066871597, 4.8491414e-4, - -0.008913541, -0.012632197, -0.00787505, -0.023455625, 0.020882944, - 0.0014332056, 0.019803438, 0.0066733146, 0.0072420416, 0.0018774819, - 0.0032678838, -0.0055827457, 0.011758111, 0.025430376, -0.012855847, - 0.008502224, 0.016328124, -0.009399638, 0.03252829, 0.014928895, - 0.035842076, 0.005619471, 0.0071345475, -0.004871517, 0.0051192017, - -0.010976, 0.018763142, 0.0018194307, 0.006298169, 0.007527148, - 0.0032826562, 0.0058382573, -0.032576606, 0.008791914, -0.022309173, - 0.011216508, -0.0040561813, 0.0031735708, 0.020922862, 0.0015187847, - -0.02380754, -0.0029271087, 0.008196482, 0.03809846, 0.007134652, - -0.008866519, 0.023249181, 0.0071489527, 0.005260973, -0.015420463, - 0.0063683633, -0.016695779, -0.0025927664, -0.012285559, 0.019316485, - 0.038379338, -0.014531686, 0.008556002, 0.0046649068, 0.005308677, - -0.024292948, 0.004964324, -0.010164259, -0.011920287, 0.0020408619, - 0.012644215, 0.0051643657, 0.028624158, 0.0015058693, 0.03362156, - 0.013489135, 0.022164408, 0.0050466475, 0.0039225062, 0.014399641, - -0.019462926, -0.016717013, 3.8596618e-4, 2.9897768e-4, -0.0060362928, - 0.01642954, -0.0098234, -0.037141018, -0.0067990753, -0.023911623, - -0.021738444, -0.0057738638, -0.013664728, -0.013785364, 0.026279045, - -0.017950807, 0.0065221745, -0.013598341, 0.021662563, -0.034015995, - 0.0130895935, 0.017402684, -0.014336486, 0.0022096909, 0.012958073, - -0.0020548466, -0.011286699, -0.017553918, -0.0139006935, -0.013085964, - 0.00601426, 0.017659692, 0.010233903, 0.021467416, -0.004577709, - -0.024393136, 0.01294146, -1.8814748e-5, 0.0095752245, 0.015684022, - -0.013489012, 0.01185675, 0.031045195, 0.0023305237, -0.019194799, - -0.019628314, -0.020854434, 0.0066604395, -0.0111661665, 0.006109613, - 0.01946948, -0.007835811, 0.017945087, -0.008637116, -0.0011535262, - 0.009782884, -0.015200369, -0.024228552, -0.022264712, -0.0135080675, - 0.008628587, -0.0018149476, -0.0067264964, -0.024379471, -0.0028156412, - -0.019812379, 0.01866628, 0.0075119594, -0.003411151, 0.0051002013, - -0.0069876364, 0.0245062, -0.0027946779, -0.011875754, 0.035739478, - -2.5883707e-4, -0.016459187, 0.0033644761, -0.0032536113, -0.011386639, - 0.012156331, -0.0247595, -0.00271778, -0.0051722233, -0.0019360379, - -0.036667507, -0.017108032, 0.006601223, 0.0034368478, 0.002539089, - 0.013371237, -0.015186318, -3.4185415e-4, -0.013294818, -0.032627434, - 0.008628376, -0.023929883, 0.020449158, 0.016548103, -0.012882404, - -0.002233524, -0.00448213, 0.02862404, -0.019385008, 0.011376172, - -0.0018900207, 0.0071758567, 0.00599316, -0.036031913, 0.0027303575, - 0.029176973, -0.028309846, 9.1643067e-4, 0.009862929, 0.01642524, - -0.0011064599, -0.013411295, 0.0012961162, -0.015857149, -0.019794319, - -0.035992865, -0.023992734, 0.0065953, -0.017299812, -0.033726178, - 0.013562949, 0.014950632, -0.018426865, -0.015284638, -0.0088428, - 0.004475185, 0.0025058703, 0.0025196406, -0.003295822, -0.016557831, - 0.0025658873, -0.01667424, 0.0011030611, -0.023238838, 0.028905593, - 0.02832051, 0.032011464, -0.024862234, -4.3427385e-4, -0.0049933023, - -0.024616746, -0.012529333, -0.0018622348, 0.024877775, -0.00997175, - 0.0147868395, 0.04459592, -0.018470775, -0.027890487, 0.023532124, - -0.0018661587, 0.014898491, -0.011898272, -0.007195796, -0.018813424, - 0.0055004493, 0.0016454861, 0.016965037, -0.011990261, 0.018986471, - 4.2309074e-4, -0.0012777778, -0.017212655, 0.009057472, -0.010688458, - 0.015465889, 0.01566765, -0.033354152, 0.016118176, -0.015699293, - 0.0120934, 0.005778454, 0.0016865189, 0.0154767055, -0.023054121, - 0.023210417, -0.006390215, -0.0030905271, -0.013323712, -0.023761332, - -0.0010861997, 0.007880039, 0.009329328, -0.02698926, 0.014369574, - 0.0054489393, 0.009113162, -0.01258504, 0.017667579, -0.006657213, - -0.01905492, -0.020014338, 5.80075e-4, 0.0365058, 7.8341237e-4, - 0.016880618, -0.0025696144, -0.007440324, 0.0046070646, -0.021815347, - -0.012632811, -0.0017827894, 0.0068604653, -0.007954828, 0.009747993, - 0.04054058, -0.0045288843, -0.010250305, 0.0020635792, 0.0042282776, - 0.0037323795, 0.008224678, 0.013120352, 7.194258e-4, -0.0069589918, - 0.020522013, 0.017128944, -0.019944342, 0.01293301, -0.04308724, - 0.0057195784, 0.008588984, -0.009953857, -0.0027875134, 0.0023550126, - -0.0021040682, -0.02884951, -0.019080056, 0.018254062, 0.017280456, - -0.011374362, 0.039788004, 0.020996708, -0.011819001, 0.0032699588, - -0.030373788, -0.012019806, -0.02961065, 0.0060366364, 0.022386394, - -0.005498261, 0.011767434, -0.0021793274, 0.012744767, 0.031046769, - 0.008051857, -7.84052e-4, 0.012046347, -0.0064163134, -0.005198762, - 0.0062216274, -0.005393627, -0.006873177, -0.005215897, 0.009035736, - -0.00625601, -0.014338823, -0.01994715, -0.017606346, 0.019130718, - -0.028979769, -0.018556286, -0.0030872663, 0.0117535805, 0.019414824, - -0.012705323, -0.014592673, 0.026059596, -0.0069570593, -0.00746295, - -0.0031718505, 0.016360516, 0.009002735, 6.7893276e-4, -0.01081165, - -0.039153952, -2.977722e-4, -0.0029612556, 0.0043759127, -0.032736797, - 0.01084036, -0.010417692, -0.008709973, -0.012917602, 0.0056221243, - 0.0025130312, -0.014702351, 0.003420518, 0.018219817, -0.002455129, - 0.009439538, 0.009670205, -0.013276369, -0.0067631896, 0.0037135887, - 0.0019051204, -0.0014273687, 0.0021320335, 0.013301693, -0.006204465, - 0.0029328126, -0.029415326, -0.02218183, -0.0018837944, -0.0017051377, - 0.027081298, 0.012415886, 0.015942536, 0.0041333702, -0.019588057, - -0.005425157, 0.0026617912, -0.008963149, 0.022721702, -0.020461382, - -0.017683104, 0.0035027484, 0.025109664, -0.0015011088, 0.007103833, - -0.007474323, -0.015376963, -0.0033223694, 0.009754743, 0.008391802, - 0.005090736, 0.012265218, -0.0063525187, 0.011126775, 0.018872835, - -0.0071554277, 0.020199254, 0.0018426855, 0.028222645, -0.00968132, - 0.0027959007, -0.009683963, 0.0046051913, -0.014249561, -0.014429756, - 0.012672421, -0.017204685, 0.004987247, 0.0040038847, -0.026909128, - -0.012977481, -0.013249362, -0.015299256, 0.010772829, 0.02514714, - -0.025394173, 0.015235322, -0.006606631, -0.011251005, -0.0048823436, - -0.0058783405, 0.012187401, -0.014663813, 1.9119256e-4, -0.0055482024, - -0.009717129, 0.02228982, 0.02180109, -0.014494431, -0.025158986, - -0.02973311, 0.0047317087, 0.002824244, 0.015934492, 0.014369076, - 0.022762813, 0.01896863, 0.0030974124, -0.014181858, 0.002638496, - 0.001909492, -0.021426246, 0.0016171106, -0.003365593, 0.01315008, - 0.018847952, 0.011121093, 0.019138612, 4.61796e-4, -0.012430265, - 2.5057845e-4, 0.0306154, 0.020266594, 0.01973152, -0.004942927, - 0.030060153, -0.0033503177, -0.026461476, -0.026894715, 0.012379996, - 0.0017216391, 0.005529672, 0.035586245, -0.011356056, -0.02830093, - -0.0031691003, 0.0012624783, -0.0052133584, -0.012000981, -0.016641343, - -0.018804217, -6.755274e-4, 0.01667787, 0.0145417685, 0.0028168226, - 0.009490533, -0.018768951, -0.011616615, -0.0035082356, 0.012663546, - -0.021099392, 0.0014297557, 0.013484425, 0.027403628, 0.00621878, - 0.023796009, 0.014349384, -0.011458152, -0.013679033, 0.012760321, - 0.0082467925, -0.012033193, -0.021188827, -0.034417603, -0.028768625, - 0.03553753, 0.0024377694, 0.013548638, -0.01718028, -0.015903998, - -0.0059717195, -0.0038696704, -0.0038815255, -0.006238613, 0.0017009008, - 6.222233e-4, -0.012643034, -0.0039393683, -0.003131179, 0.009496125, - 0.00658236, -0.0040965998, -0.008095048, 0.016044026, -0.010317143, - -0.019521046, 0.0019081635, -0.021133881, -0.016518855, 0.006692519, - -0.004147587, 0.013492706, -0.009237866, -0.027612306, 0.00638201, - -6.7831506e-4, -0.0036606744, -0.014767444, 0.022105755, 0.005872672, - -0.015211145, 0.004272647, -0.012330645, 0.008572829, -0.0017504295, - 0.013521047, -0.019331232, 0.022128278, -0.012885312, -0.021741707, - 0.01847532, 0.017070862, 1.0708863e-4, 0.006489605, -0.014572661, - -0.025658838, 0.014664941, 0.0041137985, -0.0048516844, 0.054062523, - -0.009341088, 0.00966109, -0.017049836, 0.00914642, -0.0072254282, - -0.018470708, 0.017207209, -0.0056056483, -0.005495033, -0.0012023626, - 0.019502997, -0.016086413, -0.016085794, -0.006624342, -0.01107388, - 0.029987738, -0.0012533822, -0.017075645, 0.012198686, -0.0019366046, - 0.009724139, 0.015817977, -0.00718372, -0.0024268895, 0.009512265, - -0.031278785, -0.02116482, 0.027380995, 0.009676062, -0.01204814, - 0.02399208, 0.009775407, -0.026591415, 0.016944721, -0.017801942, - 0.015185787, 0.004321084, -0.0033786537, -0.027925229, 0.009021863, - -0.010306501, 0.011534108, 0.0015763988, -0.0019444935, -0.01699005, - -0.005947798, -0.030654497, -0.002893377, 0.014404407, 0.011758364, - 0.007696279, -0.010212717, 1.3318457e-4, 0.01339234, 0.005639949, - -0.0116199795, -0.030028556, -0.009595437, -0.001000098, 0.014288273, - -0.009414441, 0.0148751065, 0.02729212, -3.0750295e-4, 0.010348024, - -0.02425465, -0.016513683, 0.0040126685, -0.017268969, 0.0057979715, - -0.002489978, -0.015327165, -0.01937598, -0.005329429, -0.0025420887, - -0.009295869, 0.011659104, 0.0035481637, 9.2056586e-4, -0.0077978456, - -0.011148646, 0.003741311, 0.02435663, -0.008265318, -3.6033598e-4, - 0.007762781, -0.005010437, -0.02257001, 0.0033085386, -0.015887849, - 0.0036027473, 0.0032794273, -0.0073842583, -0.016422175, 0.012785429, - -0.021649672, -0.011589679, -0.0361676, 0.0046359464, 6.673856e-4, - 0.012312788, 0.030454965, -0.0046007307, 0.004425142, -0.015664225, - 0.0197995, -0.0058077346, -0.012788812, -0.0053219334, 0.004399374, - -0.018089652, 0.03433214, -0.0026084073, -0.01098034, 0.0031028464, - -0.008105812, 0.01997674, -0.013295256, 0.009403042, 0.008282444, - 0.002158396, -0.009466255, 0.0071958373, -0.0033686347, 0.012140222, - 0.018809646, 0.036670327, 0.01437159, 7.1773113e-4, 0.012138558, - 0.004809978, -0.0012565657, -0.018928168, -0.012526095, 0.019869227, - -0.004908019, -0.008575224, -0.0015150865, -0.026438128, -0.013067317, - 0.02259208, 0.026224798, -9.923287e-4, 0.017512923, 0.012306234, - 0.013481844, -0.022593427, -0.02405452, 0.006751415, -0.024414219, - -0.0066088485, -0.009197567, 0.011419962, 0.012149377, 0.006876733, - 0.005368467, 0.0051229787, 0.0037105524, 0.020999877, -0.026214806, - -0.0203223, -0.007424459, -0.013213516, 1.021032e-4, -1.8013318e-4, - 7.789474e-4, 0.0127121275, 0.0057788473, -0.004000006, 1.2561115e-5, - -0.011423482, 0.0014239679, 0.02872342, 0.0068141404, 0.032510076, - 0.002054975, -0.0075035193, -0.010595505 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.028049184, 0.039000023, -0.04253078, -0.025163773, 0.003379271, - 0.08089441, 8.480131e-4, 0.024582598, 0.017328035, 0.025953215, - -0.014520916, -0.04159042, 0.036409248, -0.007877509, 0.035862207, - -0.048933875, -0.028344331, 0.03006058, -0.05969258, -0.011681863, - -0.01455751, 0.014161241, 5.794132e-5, -0.049628858, 0.07065522, - -0.034083016, -0.025727762, 0.0046872883, -0.011970006, 0.018232027, - 0.008752648, -0.038390033, 0.0048174714, 0.021945683, -0.0035606096, - -0.085548654, -0.011700677, 0.015310172, 0.0026214882, -0.013598912, - 0.040344387, 0.008201451, -0.024852268, 0.009666254, 0.033581574, - 0.030537292, -0.025268892, -0.028815726, 0.0049573663, -0.007238058, - 9.891188e-4, -0.019417943, -0.0019453563, 0.0307587, -0.034942973, - -0.0030768078, 0.011232603, -0.0016000327, -0.03386301, 0.08857346, - 0.0036629622, 0.060498085, -0.049251936, 0.010670798, 0.008564524, - -0.007563119, -0.016784245, -0.04497039, -0.0132145705, 0.02713192, - 0.0067772, -0.030758537, -0.009098709, 0.03000864, -0.014280745, - 0.016357033, 0.030746637, 0.05496005, -0.011370472, 0.03709434, - 0.0037534884, -0.014291109, 0.052861307, 0.007950462, 0.024424898, - 0.025941445, 0.007332416, -0.029897433, -0.067129664, -0.015269602, - -0.020147972, 0.015772564, 0.016181927, 0.027054446, -0.012283401, - 0.008467677, -0.015172636, 0.016446803, 0.029843053, -0.058201656, - 0.015478447, 0.018422974, -0.0038250855, -0.001179156, -0.038514424, - -0.037436355, 0.017782295, -0.014005266, -0.029164072, 0.023751805, - 0.068180785, -0.014214134, 0.07781011, -0.0013414592, -9.7063556e-4, - -0.02106263, -0.04922279, -0.021861812, -0.018760243, -0.021917272, - 0.001381411, -0.03451848, 0.0018204431, -0.033983763, 0.016712343, - -0.018576765, 0.043161884, -0.014051315, 0.0013992586, -0.00243968, - 0.050814826, 0.001449046, -0.034277108, 0.022277705, 0.008903456, - 0.02056903, 5.884796e-4, 0.012737237, 0.0059523094, 0.0051315003, - -0.032387838, -0.012129351, 0.038435217, 0.00456208, -0.05882665, - 0.06651209, 0.009874517, 0.016724834, -0.019081213, -0.02138831, - 0.017907085, 0.0056650327, -0.042967826, 0.019544568, 0.044875585, - -0.020115336, 0.03690183, 0.0039683226, 1.2850601e-4, 0.0067159096, - -0.010683693, -0.06326628, -0.011794476, 0.017496001, 9.012877e-4, - -0.0754179, -0.022300271, 0.015690103, 0.033504527, -0.011346159, - 9.185724e-4, -0.03275415, -0.0017741361, 0.023503501, 0.027659796, - 0.029995207, 0.004110973, -0.0018141213, -0.0033698152, -0.0018703372, - 0.015204837, -0.04627192, -0.034273703, -0.045202468, 0.036148194, - 0.03380831, -0.010191241, -0.031997133, 0.081552014, -0.029452287, - 0.03937154, 0.004154039, -0.029377855, 0.07210019, -0.0063022175, - 0.020886028, -0.027282177, -0.018810898, 0.020989144, -0.02634495, - 9.7146234e-4, 0.024952732, -0.053865235, 0.05717927, 0.007896585, - -0.009784822, -0.01756264, -0.0052848007, -0.057262044, 0.0045832875, - -0.0027518927, 0.027369065, 0.0054143616, 0.02128647, -0.035652574, - -0.037188694, 0.0033761358, 0.015923193, 0.007717108, 2.1256461e-4, - 0.0049707927, 0.019376885, -0.013640596, -0.013294869, 0.04411823, - -0.02202518, -0.02129226, -0.0040465435, -0.022269983, -0.03613578, - 0.00502724, 0.013238909, 0.01835699, -0.024394633, -0.03293288, - -0.03643504, 0.031234175, -0.0106040165, -0.037567463, -0.045743838, - -0.016893785, -0.06458118, -0.018296156, 0.027226133, -0.0846318, - 0.039706446, -0.049512535, 0.014956084, -0.007870814, 0.04562911, - -0.016520323, -0.01916134, 0.014763049, -0.07067113, -0.011942487, - 0.026964609, 0.05704938, 0.020851921, 0.029269056, 0.009345042, - -0.040184196, -0.006078864, 0.07862847, -0.024347525, -0.03743847, - 0.029376484, -0.013008587, -0.02456147, 0.05105484, -0.0167247, - -0.0027024054, -0.02849087, 0.038674135, -0.0060797166, -0.052683335, - 0.043629766, -0.0030803974, -0.027731953, 0.021999622, -0.032925412, - 0.030597959, 0.005081628, -0.007041595, -0.005969891, 0.011772925, - 0.016282385, -8.435898e-4, 0.01632508, 0.005238889, -0.076000884, - -0.009026779, -0.007327105, -0.021415709, 0.06890823, 0.009001948, - -0.035805378, 0.03240107, -0.0657068, 0.017129255, -0.02150348, - 0.023338696, 0.009169351, 0.0080987085, -0.011727924, 0.014665702, - 0.03151885, -0.03515803, 0.025890984, 0.035164062, -0.044623155, - -0.011800666, 0.028008977, 0.00495924, 0.014526606, 0.040481508, - 0.026454328, -0.0064877365, -8.040755e-4, -0.04792154, 0.0049864026, - 0.019068254, 0.029404446, -0.03866315, -0.029809762, -0.028855165, - -0.04502631, -0.02331706, -0.04210511, -0.0065864823, -0.05114351, - -0.016345998, 0.0048193783, -0.013225378, -0.01662692, -0.023592122, - -0.015978405, 0.0088698445, 0.023940325, -0.014018458, -0.039068736, - 0.005967293, -0.025332177, 0.049006406, 0.03822962, 0.04892216, - 0.016263435, 0.0010819745, 0.04780969, -0.023047328, -0.0043770047, - 0.002849836, 2.9081092e-4, 0.022829412, -0.024559759, 0.005524161, - 0.009024257, -0.07858514, -0.06339183, -0.030596083, -2.3049038e-4, - 0.006443405, -0.011886861, -0.035268597, 0.03943853, -0.022494176, - 0.0061453283, 0.01601601, 0.029436992, -0.02479769, -0.010073099, - -0.027528213, -0.014481469, -0.013014147, 0.015821861, 0.01384095, - -0.027842863, 0.015687808, 0.015043863, 0.032707494, -0.023321522, - -0.0027824643, -0.019021954, -0.06239416, 0.010167792, -0.04204078, - -0.011564149, 0.013913276, 0.07627309, 0.0055532954, 0.048402313, - -0.003079364, -0.024942208, -3.23084e-4, 0.0010547602, 0.02200208, - -0.011905329, 0.0122162765, -0.03657141, -0.022464111, 0.025525292, - 0.036538474, 0.0049775513, -0.023638304, -0.00489413, -6.913597e-4, - -0.039128665, -0.019958593, -0.01315002, -0.028713671, 0.026141867, - -0.014657786, 0.008405941, -0.0034930098, 0.006007852, -0.058084052, - 0.07412437, 0.02791235, -0.045144998, 0.025165046, -0.044956274, - 0.011314533, -0.021296035, -0.035833526, 0.019051023, 0.028875338, - -0.0016927145, 0.052569013, 0.011170494, -0.03740275, 0.033244126, - 0.0014643432, -0.051584784, -0.0499609, -0.013707725, 0.041878834, - 0.03779102, 0.009387385, -0.03849858, 0.02160041, -0.024233446, - -0.020251743, -0.017785676, -0.06455683, -0.0029943783, 0.06420385, - 0.035147335, -0.008588461, 0.065963775, 0.010261337, -0.00890309, - 0.036844514, -0.05157409, 3.0003042e-5, -0.033056304, 0.025739172, - 0.023655407, 0.042882927, -0.012192056, -0.0038301828, -0.00960672, - -0.045810167, -0.019930353, -0.016718218, 0.010620143, 0.029176995, - -0.02205694, -0.0062869163, 0.011542769, -0.049567226, 0.006567187, - 0.038391598, 0.01637278, 0.032332417, 0.06287991, 0.0065304213, - -0.08632888, -0.02065491, -0.0036276726, 0.071216874, -0.069770016, - -0.028959813, 0.056394853, -0.014461261, 0.01876393, 0.029989332, - -0.06875477, 0.031239243, 0.010197697, 0.05489951, -0.08104386, - 0.02208561, -0.030421548, -0.031346083, 0.034094878, -0.016495956, - -0.010848822, -0.0031917135, 0.042112604, 0.013153196, -0.060234044, - -0.050424445, -0.054775033, 0.027864017, -0.002875508, 0.013306652, - -0.017622476, 0.05166841, 0.002146082, 0.02127578, 0.040188048, - -9.749005e-5, 0.0021752347, 5.406984e-4, -0.05126026, 0.030917224, - -0.005148022, -0.0066749305, 0.040854324, 0.0056706476, -0.017345196, - 0.0803255, 0.00446498, -0.027045857, 0.026266413, 0.055977885, - 0.029221376, -0.023191305, 0.050695695, 0.05063906, 0.016559778, - -0.0142678, -0.02008352, -0.0019100176, 0.020765513, -0.02933643, - 0.024016611, 0.010489711, -0.0016557878, 0.057142563, -0.011838102, - 0.031244831, 0.022432085, 0.04210053, 0.018787064, -0.05093688, - -0.0010266289, -0.0071053565, 0.008694011, -0.035067752, -0.012560969, - 0.029675327, 0.050533924, 0.01642386, -0.029652426, 0.049884826, - -0.019794727, -0.00931338, -0.014708285, -0.0052005313, -0.0062505845, - 0.040765982, 0.021999577, 0.015311409, -0.04779114, -0.005411735, - 0.005223856, 0.016914915, -0.04997967, 0.033932928, 0.030882291, - 0.011622676, 0.026775908, 0.020033702, -0.00553426, -0.03164887, - -0.0014454201, -0.038550574, -0.020532815, 0.01868393, 0.06500463, - 0.0038534733, 0.0038496184, 0.08043408, 0.03759395, -0.00984954, - -0.05530558, 0.050031353, 0.022146765, 0.04971242, -0.012031072, - -4.4744328e-4, 0.00842624, -0.041757137, 0.02688241, 0.005642498, - 0.009625593, 0.021835206, -0.041796755, -0.03890507, 0.023957968, - 0.043828264, 0.030849174, 0.060933635, 0.01196669, 0.013816389, - 0.004223789, 0.025325531, -1.5089464e-4, -0.015152579, -0.034469288, - -0.0078204125, 0.0056929355, 0.014527074, 0.036326855, 0.01786495, - -0.01697156, 0.019656515, -0.03921154, 0.016349303, -0.0026246363, - 0.018516006, -0.004325842, -0.024919236, 0.018147213, -0.02941615, - -0.02453407, -0.06512797, 0.008657094, 0.036682498, -0.043869767, - -0.038290046, -0.026589843, -0.002955291, 0.008076095, 0.027875094, - 0.039004926, 0.030233247, -0.038637113, -0.050368067, -0.0043660216, - 0.044623747, -0.04167925, 0.048961382, -0.018809985, 0.043803595, - 0.03186058, 0.022031255, 0.011255231, -0.0026419596, 0.0171313, - -0.055014428, 6.794343e-4, 0.067542866, -0.013218092, 0.023484023, - 0.061637092, 0.011847259, -0.009323878, -0.018806016, -0.0046134335, - 0.0335787, -8.702978e-4, 0.0055514844, -0.027501332, -5.2949355e-4, - -0.0038442072, 0.040475212, -0.040638473, 0.004217631, -0.04359508, - 0.026502715, 0.03230227, 0.0026356596, 0.022248423, 0.021824138, - 0.0029789591, 0.0030929365, -0.007919511, 0.01998685, -0.02346917, - 0.0013172514, -0.022814969, 0.024684275, -0.065279394, -0.0016466441, - -0.014719818, -0.009658975, -0.008672271, 0.0155970855, -0.03152782, - 0.0015577545, -0.017152756, -0.035193034, -0.021488743, -0.021529956, - -0.03466099, -0.0013588651, -0.04971674, -0.024410237, 0.0029849452, - -0.010748421, 0.0010452266, 0.007298663, 0.018277759, -0.013324747, - 0.065056466, 0.00803457, 0.026102964, -0.011311082, -0.038602587, - -0.03534218, 0.0032247177, -0.021471238, -0.0033546416, 0.024572441, - 0.04309027, -0.0067143706, -0.010794632, 0.051891934, -0.03978707, - -0.0044401, 0.05666526, 0.017527731, 0.03113734, -0.03155867, - -0.014110861, -0.020922406, 0.025065662, -0.025438182, 0.06026706, - 0.04107503, -0.003097442, -0.036274083, -0.002460858, 0.027107444, - -0.013100744, 0.0030169927, 0.049336527, -0.02461394, -0.026818104, - 0.011907017, 0.057572804, -0.0010497335, -0.011749685, -0.036190365, - 0.073201224, -0.021001391, -0.0115265, -0.04294899, 0.011005953, - 0.0077856714, 0.022767298, 0.018879589, -0.008133099, -0.0048086327, - -0.06504439, -0.12321578, -0.034660757, 0.008130256, -0.014321676, - -0.03394728, -0.019667676, 0.033635527, 0.038367692, -0.032246057, - -0.0155131845, -0.023495294, -0.0118937595, 0.01361746, 0.02090936, - -0.022534497, 0.021091588, -0.014004152, -0.014283116, 0.02121088, - -0.013285358, 0.0020531656, -0.035043567, 0.027863221, -0.05700848, - 0.0015121453, 0.01887115, 0.019242195, 0.03589446, 0.032913167, - -0.011607614, 0.022303732, 0.008241734, -0.02010609, 0.02133476, - 0.026059562, 0.014929831, 0.037348915, -0.020633396, 0.03135967, - 0.03544399, 0.030170271, -0.06364848, -0.026623737, -0.019778172, - -0.11914818, 0.016836094, -0.02035002, 0.024443118, -0.07926631, - 0.026044507, -0.02602626, 0.0038259216, -0.05439683, 0.021929055, - 0.012021431, 0.035358317, 0.047154058, 0.031650394, 0.015406174, - 0.0147851845, 0.0034273914, -0.006366741, 0.031783048, 0.041261215, - -0.03336465, -0.019146552, -0.05837914, -0.036631003, 0.0065497337, - 0.027545864, 0.017768878, -0.049507637, -0.018031493, -0.05956918, - -0.018018419, -6.9107016e-4, 0.020484827, -0.0011487755, 0.029457066, - -0.017260773, 0.022947105, -0.044557046, 0.010473562, 0.0324228, - 0.029220726, -0.0062905694, 0.048481308, -0.021024559, 0.03495021, - 0.03527709, 0.020489642, -0.034594916, 0.03380892, 0.0379022, - 0.0038003437, 0.060774032, -0.011670303, -0.023370147, -0.010234685, - 0.03384252, -0.02049061, 0.03438552, 0.0111567, -0.021329405, - -0.026839916, -0.050299305, 0.017760199, 6.0957245e-4, 0.014749268, - 0.0033747766, 0.0015878672, -0.009711208, -0.017362535, -0.0219473, - 0.007310811, 0.004855214, 0.027010925, 0.018497271, -0.011760949, - 6.1346166e-4, 0.005933913, -0.02479718, 0.034963056, -0.026600135, - 0.036505297, -0.044669397, 0.044294007, 0.0077768634, 0.06638994, - -0.009455208, 0.054470655, -0.005977746, -0.04654877, -0.008929165, - -0.03407787, -0.0404428, 0.023811422, 0.0021751935, -0.03127074, - 0.045951765, 0.034043778, 0.033301312, 0.013251056, 0.019633431, - -0.0305923, 0.03003222, -0.06422556, 0.008572902, -0.037383277, - 0.02674919, -0.0112922145, 0.008207437, -0.0059791766, 0.0019157942, - 0.02106241, 0.03691908, 0.060461722, 0.019344388, 0.019230982, - -0.023423608, -0.008898885, -0.0034826677, 0.011467085, -0.012635821, - -0.007693758, -0.00471111, -0.006299552, 0.0042595277, 1.8752308e-4, - -1.275269e-4, 0.045470994, -0.013604833, 0.013703261, 0.010903246, - -0.0061961347, -0.009939727, 0.020033304, 0.031976808, 0.0025534965, - -0.011241314, -0.010241527, -0.0016124157, -0.04792797, 0.015471035, - -0.0543134, -0.046591222, -0.0025086927, 0.054908697, 0.049230352, - 0.01566248, 0.019591767, 4.871272e-4, 0.008992964, -0.019052455, - -0.048586566, -0.0061051594, -0.019107083, 0.03301152, -0.036886696, - -0.041676007, 0.04065946, 0.060066607, 0.02393443, -0.07138898, - -0.03879126, -0.053457517, -0.026350575, -0.004169249, -0.08946504, - 0.0070400955, 0.0046759616, -0.019658174, 0.091011785, 0.009096654, - -0.05076317, 0.031654313, -0.011061566, 0.005281833, 0.047673322, - 0.012854719, -4.289709e-4, 0.0038751168, -0.018584305, 0.0018107031, - -6.880547e-4, 0.0064764516, 0.06378889, -0.019583762, 0.024747446, - -0.048284277, -0.007952712, -0.05303246, -0.003725487, -0.0220577, - -0.026687693, 0.028284542, 0.048184223, -0.01420653, 0.0027178456, - 0.012957811, -0.095327936, 0.003944185, 0.011322831, 0.005020814, - -0.006454422, 0.01884505, 0.017388325, -0.032465376, 0.02304221, - 0.00440195, -0.033188354, -0.002632651, -0.012089599, 0.006242017, - -0.021348735, 0.0022140073, -0.01414949, -0.0039061785, -0.038667258, - -0.048214536, -0.009519874, 9.520855e-4, -0.036283858, -0.06127847, - -0.011964684, -0.040081818, 0.012722011, -0.029185178 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + "Square sounds" + ], + "source.subjects.concepts.id" : [ + ], + "source.subjects.concepts.sourceIdentifier" : [ + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.027123732, + 0.024278343, + 0.010769607, + 0.013556998, + 0.025375515, + -0.009188372, + -0.010424827, + 0.0067920964, + -0.043737844, + 0.0039043806, + -0.019873794, + 0.0209114, + -0.01752114, + 0.006941493, + -3.6503686E-4, + 0.020674473, + 0.00488535, + -0.013754303, + -0.0068201236, + 0.010889209, + -0.032474574, + -0.018785678, + 0.019968243, + -0.0050351797, + 0.009324435, + 0.018025793, + -0.009142968, + -0.0068759597, + 0.040586025, + -0.008621819, + 0.030228088, + 0.010193625, + 0.0070109246, + 0.007092083, + 0.0068757953, + 0.040996596, + -0.0051318565, + 4.942563E-4, + -0.008508178, + 0.021443333, + -0.005079314, + -0.0042884224, + 0.019949617, + 0.034149576, + 0.008775034, + 0.034703612, + 0.014029606, + 0.0011820802, + 0.0014645661, + 0.0036337187, + -0.029610334, + -0.0018020353, + -0.01575704, + -0.005424007, + 0.016752964, + 0.021248009, + 3.7229786E-4, + -0.0025623362, + -0.0017483727, + 7.930104E-4, + 0.0058031, + -0.018889762, + 0.011318756, + -0.00953068, + -0.009219295, + 0.004272242, + -0.001579889, + -0.036707092, + 0.022869663, + 4.8047036E-4, + 0.0010326535, + -0.0012271527, + -0.02459884, + 0.023704171, + -0.008399665, + 0.011479185, + 0.006886642, + 0.019607052, + -0.014497047, + -0.008054512, + 0.014244425, + -0.006809839, + 0.009105167, + -0.01888096, + 0.015502159, + -0.010059314, + 0.01764875, + 0.011821931, + -0.016339395, + -0.017525816, + -0.0025026503, + 4.5278794E-4, + -0.0028736256, + -0.006990015, + -0.007815795, + -0.031386785, + -0.012784858, + -0.04531486, + 0.012359979, + 0.030659422, + -0.0064192237, + 0.018152017, + -0.0029604533, + 0.014945728, + 0.012790857, + -0.0048992187, + 0.005791427, + -0.026491331, + 0.006609559, + 0.013993519, + -0.013540775, + -0.033663344, + 0.0026775645, + 0.00165381, + 0.00787413, + -0.017359, + -0.014721321, + -0.014495294, + 0.004469601, + -0.014031278, + 0.029836562, + 0.0033501908, + 0.0049559926, + -0.010122142, + -0.024659785, + 0.006837096, + 0.0255231, + 0.021431386, + -0.028982848, + 0.0016088898, + -0.010770699, + 0.021009116, + 0.006309547, + -0.016538074, + -0.003555189, + 0.005318189, + 0.0066178823, + -0.011549188, + 0.030367794, + 0.0057963557, + -0.004796052, + -0.011772951, + -0.0026254742, + 0.0023665528, + -0.010401076, + 0.0022651197, + -0.005016357, + 0.0037666298, + 0.010092556, + -0.011317192, + 9.94367E-4, + 0.006852394, + 0.0019015151, + -2.8015889E-4, + 0.013762016, + 0.017536413, + 0.025118373, + -0.0039769677, + -0.010959468, + 0.012965748, + 0.024026092, + -0.0143522415, + -0.0013795679, + 0.012991674, + -0.0015791536, + -0.021810059, + 0.007590415, + -0.016396098, + 0.0028776755, + -0.0067581474, + -0.020327043, + 0.019996356, + -0.0015274353, + 0.01872531, + -0.005424355, + -0.020331813, + 0.0071835117, + -0.0056651207, + -0.021319848, + 0.009420627, + -0.01759729, + 0.020149674, + 0.009082507, + -0.005994122, + -0.008060818, + -0.016358979, + -3.3290416E-4, + -0.0031151737, + 0.00844948, + -0.018371895, + -0.027290931, + 0.0092159575, + 0.009148662, + -0.0108819455, + -0.001993866, + -0.02668899, + 0.030663302, + -0.0105423005, + 0.008676002, + -0.0353223, + -0.010433749, + 0.0029091032, + 0.016702995, + 0.0138360355, + 0.018502966, + -0.0056815646, + 0.016866833, + -0.007399309, + -0.0024336816, + -0.013108989, + -0.015922258, + -0.027860392, + 0.030684087, + 0.022689927, + 0.011985438, + 0.008994683, + 0.0114769265, + -0.013409947, + 0.005533423, + -0.01857381, + 0.012045094, + -0.007110944, + -0.025980197, + -0.014952288, + 0.0401528, + 0.008000815, + 0.008239635, + -0.012374613, + 0.007723508, + 0.0024230233, + -0.025563331, + 0.009131476, + 0.018267002, + 0.004649788, + -0.023479564, + -0.0075656753, + -0.004143258, + 0.002884871, + 0.011914009, + -8.983755E-4, + 0.005465166, + -0.014021208, + 7.068878E-4, + 0.017074099, + -0.00862327, + 0.020895308, + 0.0058923475, + -0.0058108247, + -0.010939803, + -0.0027543441, + -0.04937725, + -0.0025502243, + 0.0057829698, + -0.020429112, + -0.009884048, + 0.019276198, + -0.02936965, + 0.0051526506, + -0.003306386, + 0.026533252, + -4.6679692E-4, + 0.006278055, + -0.007276331, + 0.022640655, + 0.00915309, + -0.038409, + -0.031613387, + 0.004833647, + 8.447285E-4, + -0.005302539, + 0.006583728, + 0.0059463778, + 0.022049231, + -0.020984259, + 0.0038150596, + 0.0010779996, + -0.023338988, + 0.013954628, + 0.02267256, + -0.029686537, + -0.0055578668, + -0.016725898, + -0.0039153774, + 0.014607031, + 0.020715514, + -0.018169291, + 0.0067800144, + -0.023057358, + -0.0019259916, + 0.013786929, + 0.010470029, + -0.01804959, + 0.0041705742, + -0.003498857, + 0.009855911, + 0.001883189, + 0.027601397, + -0.002192169, + 0.0045205695, + 0.0012046786, + 0.009295094, + 0.0022637022, + -0.008711976, + 0.015343616, + -0.019429207, + 0.013228581, + -0.015089889, + -0.0050253933, + 0.0013914728, + 0.010177815, + 0.042543937, + 0.0546551, + -0.024262896, + -0.015210338, + -0.0066707674, + 0.018565351, + 0.00778119, + 0.023559444, + 0.00810738, + -0.012913182, + -0.01901256, + 0.009149452, + -0.025818024, + 0.016900253, + -0.031802766, + -0.038730834, + 0.013039247, + 0.020199906, + 6.308771E-4, + 0.0014879981, + 0.017426226, + 0.033963747, + 0.0013792773, + 0.0019055235, + 0.026682116, + 0.016598621, + -0.009217842, + 0.017844997, + -0.015855577, + 0.006144274, + 0.009100391, + 0.012415515, + -0.0038458768, + -0.04302203, + -0.013170811, + 0.0145751415, + 0.01072656, + -0.004543217, + -0.0017747268, + -0.0076463306, + -0.01534208, + -0.036493205, + 0.006965521, + -0.003320557, + -0.0092698615, + 0.010936845, + -0.0025420827, + -0.0062434985, + -0.02374663, + 0.012526904, + 0.010987328, + -0.0015241252, + -0.00842133, + -0.008978268, + 0.0031885575, + 0.033714484, + -0.0013635835, + -0.01943134, + -0.009589705, + 0.012255574, + -0.012139298, + -0.0034245295, + -0.019779598, + -0.0061751874, + -0.011172342, + -0.01012106, + 0.04497386, + 0.0014557801, + -2.4793923E-4, + 0.017524546, + -0.010645935, + 0.0044665067, + 0.024039881, + -0.016836891, + -0.011591909, + -0.004883834, + -0.01764155, + 0.0039673983, + -0.019611245, + -0.012254303, + -8.3509943E-4, + -0.01571436, + -0.023260096, + -0.003364898, + -0.012896567, + 0.002813522, + -0.01410499, + 0.025344813, + -0.0020452396, + 0.007986807, + -0.012915, + 0.026595283, + 0.006882417, + -0.0010459163, + -0.0089226365, + 0.008033571, + -0.0098889135, + 0.028591555, + 5.4841826E-4, + -0.018815277, + 0.0094421785, + 0.007370179, + -0.032068945, + 0.014236315, + 0.016805865, + -0.027706705, + 0.012717326, + -0.0065302653, + 0.01805757, + 0.0048525273, + 0.0020500834, + 0.017074367, + 0.0031733485, + -0.00260853, + 0.0011013831, + -0.01238936, + -0.009015726, + 0.0029030382, + 0.021640783, + 0.0041253697, + 0.0136249345, + -0.0055200392, + -0.010133229, + -0.0015274194, + 0.012498541, + 0.0017278787, + -0.043682396, + -0.017910035, + -0.008986709, + 0.03609643, + 0.013001634, + -3.433231E-4, + -0.015765628, + 0.0077956147, + -0.021998573, + 0.0057481728, + 0.002785308, + -0.036411207, + 0.018375125, + -0.014942413, + 0.03192288, + 0.015349453, + -0.0066728406, + -0.004392634, + 0.016838873, + -0.0054579186, + -0.0020185623, + 0.021680104, + -0.008470553, + 0.014075431, + -0.0065025794, + -0.02606209, + -0.0067074727, + 8.9259236E-4, + -0.009190451, + -5.6572014E-4, + 0.015534134, + -0.0047044046, + 0.010467981, + 0.0068164985, + 0.016005754, + 0.027329396, + -0.01918903, + 0.00613632, + 0.0030800856, + -0.002984477, + -0.013016857, + -0.023411788, + -0.025522823, + 0.034501184, + 0.017897973, + 0.0063043875, + -0.029521888, + -0.028860724, + 0.00969826, + -0.0016100949, + -0.0045060553, + 0.029820856, + 0.011151281, + -0.022222646, + -0.018394716, + -0.015486279, + 0.01773902, + 0.005749676, + -0.005215452, + -0.0035942197, + 0.0039541656, + 0.008295695, + -0.019107334, + 0.0017104669, + -3.1169222E-4, + 0.020856455, + 1.0332122E-4, + -0.01693099, + -0.01468299, + -0.012627382, + 0.03181939, + 0.0014780196, + -0.015750226, + 0.012594459, + -0.002587922, + 0.0033037968, + 0.005805193, + 0.010011585, + -0.0014571056, + -0.002362198, + -0.005600297, + -0.014004856, + -0.025307523, + -0.02015869, + 0.007517715, + 6.66668E-4, + -0.0014299281, + 0.03154298, + 0.024109367, + 0.015437122, + 0.0072576725, + 0.010225688, + -0.0021716284, + 0.009626845, + 0.0077910917, + 0.0038314932, + 0.011922362, + -0.006941361, + 0.015540802, + -0.031538613, + -0.011784908, + 0.014903201, + 0.021083085, + 0.013631124, + -0.019462995, + 0.01879355, + 0.0049282974, + -0.014329013, + -0.0057095755, + 0.006794967, + -0.0103321355, + -0.005434255, + 0.017451478, + -0.0055534285, + -0.023795223, + 7.035904E-4, + 0.0042596846, + 0.0107112, + 0.0040405653, + 0.004900909, + -0.0073245876, + 0.018541051, + 0.018887322, + 0.027267484, + -0.0070138765, + 0.018978238, + 0.01835345, + 0.0029557236, + -0.019230632, + -0.01568754, + 0.01541604, + 0.017413333, + 0.011417949, + -0.0290692, + -0.029705714, + -0.008276085, + -0.0015754536, + 0.0036588204, + 0.021425912, + -0.012402245, + -0.01591828, + 0.0035244129, + 0.014832776, + -0.010222471, + 0.0036240744, + 0.013014299, + -0.0063198255, + -0.019272601, + -0.009509612, + 0.008070274, + -0.009358055, + -3.2943737E-4, + 0.0110598495, + -0.0011012331, + 0.02324542, + 0.009440078, + 0.029777836, + 0.01281092, + -0.0017832691, + 0.024901675, + 0.0061944826, + -0.011376029, + 0.002316808, + 0.0019275594, + 0.0072632674, + -0.008960997, + 0.0032788657, + 0.027496379, + -0.01612537, + -0.0065030153, + -0.0042323098, + -0.0075428872, + -0.026576728, + 0.014053551, + -0.03393071, + 0.02749059, + 0.01792296, + 0.011574196, + 0.018408734, + 0.0077839913, + -0.025253704, + -0.017687825, + 0.009861345, + -0.008628167, + -0.0040138746, + 0.0039375583, + -2.6666376E-4, + -0.009784652, + 0.018458856, + -0.00473516, + 0.03823157, + 0.008262729, + -0.007464347, + 0.019487765, + 0.015879313, + -0.0030202144, + -0.0016534189, + 0.004983189, + -0.037293024, + -0.008051613, + -0.027607739, + 0.014449052, + 0.002453766, + 0.003537606, + -0.0075174705, + -0.008136581, + -0.028825786, + 0.023674563, + -0.011636696, + -0.005962748, + 0.015591141, + -0.03454697, + 0.0121731665, + 0.03326257, + -0.0078092003, + 0.014743625, + 0.0057838797, + 0.020872211, + -0.013091864, + 0.017048372, + -0.008540215, + 0.008822602, + -0.025013313, + -0.014280704, + 4.3295676E-4, + -0.010009533, + -0.016827254, + 0.0027475187, + 0.0014975036, + -0.0011030461, + 0.022805734, + 0.0061222785, + 0.01601683, + 0.0011699916, + -0.012191161, + -0.006368512, + 0.014621963, + -4.0261166E-5, + -0.011302288, + 0.027240206, + -0.030212957, + 0.032835234, + 0.020493738, + -0.024104038, + 0.013210216, + 0.013409853, + 0.0108998, + 0.008296651, + -0.016373985, + 0.026814498, + 0.008531492, + -0.015948508, + 0.024908291, + -0.008552401, + -0.013311635, + -0.0014658478, + -0.0017414578, + 0.018127047, + 0.0055661257, + 0.003099482, + -0.025411502, + -0.005500816, + 0.008218747, + -0.007333845, + 0.009918189, + -0.0024409285, + 0.013736927, + -0.011039235, + 0.021471396, + 0.005197009, + 0.005340965, + -0.007347562, + -0.015962105, + -0.015365781, + -0.015917102, + -0.030203825, + 0.0072363517, + -3.937571E-4, + -0.018452764, + -0.010201616, + -0.011386792, + 0.0035318532, + -0.021771124, + -0.017154183, + -0.0023634303, + 0.031792697, + 5.839134E-4, + -0.01414807, + 0.0037077488, + 0.02786519, + -0.0050107245, + 0.017121922, + 0.010450062, + 0.01662733, + 0.025463464, + -0.02395314, + -0.006595815, + 0.028337823, + 0.0014549264, + 0.006592591, + 0.012079353, + -0.0022935949, + -0.016335292, + 0.011321018, + 0.005710917, + 0.0027735415, + 0.019215789, + 0.042711012, + -0.0023444109, + 0.0052068755, + 9.334066E-4, + -0.006898545, + 0.033181697, + -0.018002998, + 0.010033771, + -0.0075448626, + 0.0073764888, + 0.025536278, + 0.020139595, + 0.0011007347, + -0.004179196, + 0.0074940156, + -0.0017223035, + -9.0185174E-4, + -0.019746475, + 0.0037561725, + 0.0037402376, + 0.011815747, + -0.0028512953, + -0.0136824185, + 0.0035604055, + -0.023262097, + -0.00456029, + -0.01773256, + -0.027826518, + -0.0061178408, + -0.012521579, + -7.239937E-4, + 0.022814585, + 0.032004777, + -0.011844888, + -0.0027369682, + -0.0140696075, + -0.0012258458, + -0.01688699, + 0.010153619, + -0.008291459, + 0.0072964854, + 0.0038841162, + -0.012377556, + -0.02450415, + 0.007152801, + -0.008599439, + -0.016314914, + 0.023252988, + 0.008430008, + 0.029962795, + 0.011591171, + -0.005987963, + -0.002929945, + 0.03312083, + -0.014717889, + -0.006773945, + -0.021023514, + 0.015125957, + 0.0014531817, + -0.025182212, + -0.020616084, + 0.011948876, + -0.010739644, + -0.012530381, + 0.0035906972, + 0.0015181277, + 0.017474303, + 0.01650762, + 0.015976863, + -0.009286581, + 0.00658414, + -0.015739957, + -0.017772589, + 5.8868626E-4, + -0.0066230563, + -0.009588362, + -0.008973388, + -0.031602424, + 0.001309709, + 0.020131841, + 0.0071235388, + 0.039009698, + 0.02647675, + 0.0036559391, + -0.0061445795, + -5.5650837E-4, + 0.019974448, + -0.023528507, + -0.019769866, + -0.014381048, + 0.008822281, + 0.029999522, + 0.0070942445, + -0.011719686, + 0.002620496, + -0.001460151, + 0.022033365, + 0.017046422, + -0.013782359, + 0.016142515, + 0.03358264, + 0.018822981, + 0.011419912, + 0.0041201124, + -0.0314183, + -0.0034278787, + 0.0151798185, + 0.012972838, + -0.026533797, + 0.011121266, + -0.026208399, + -0.027088026, + -0.0010532724, + -0.0061857956, + 0.0031503346, + 0.02928986, + -0.009908362, + 0.025786908, + -0.016983798, + -0.011901426, + 0.036359355, + -0.019616812, + -0.004930374, + 0.031522945, + 0.0031137785, + 0.0101563465, + 0.005729492, + -0.0035918108, + -0.004232147, + -0.012098133, + -0.039563805, + 0.015551084, + 7.476658E-4, + -0.0219755, + 0.009490815, + 0.011608821, + -0.015257965, + 0.032327782, + -0.007730687, + -0.017465271, + -0.019314295, + 0.021497916, + 0.010271553, + 0.012307806, + -0.0047732955, + -0.018457005, + -0.010740515, + 0.008420562, + 3.1870918E-4, + 0.008736035, + -0.0032756873, + -0.018485494, + -0.011979955, + -0.018029084, + -0.019489283, + 0.001508517, + 0.0014732013, + -0.034857463, + 0.018623125, + 0.031312775, + -0.0054619443, + 0.04131201, + 0.027393738, + -0.0130064525, + 0.0025656698, + -0.019156381, + 0.01605139, + -0.0010390518, + 0.011165994, + 0.014783218, + -0.033281267, + 0.012741564, + 9.6644263E-4, + 0.030177878, + 0.013914918, + 0.00624063, + 0.021246936, + -0.022751512, + -0.0037783107, + -0.0049896482, + -0.013677074, + 0.01931133, + 0.023299944, + -0.015465707, + -0.006514253, + 0.004505681, + -0.0024544431, + 0.003487402, + -0.028416308, + -0.018012635, + 0.018461065, + -0.023390621, + -0.016700014, + -0.011469605, + -0.016032971, + 0.0131066805, + 0.030848177, + 0.007915592, + -0.01384856, + -0.009031356, + -0.022730423, + -0.011128522, + -0.02106098, + 0.0024556955, + 0.012397567, + 0.00957612, + 0.01818651, + -0.003301657, + 0.011563098, + -0.011531992, + -0.021857634, + -0.010239527, + 0.028475022, + -0.0018732921, + 0.020366823, + -0.021895584, + -0.007209081, + 0.009415768, + 0.028546955, + -0.01805841, + -0.020268196, + 0.019377032, + -0.016689647, + -0.0064581567, + 0.007914369, + -0.016505303, + 0.014794524, + -0.04353948, + 7.662588E-4, + -0.014871522, + -0.018768402, + 0.03363134, + -0.027667033, + -0.021093708, + 8.9942414E-4, + -0.0022648058, + 0.033114716, + 0.0075488146, + -0.024653185, + 0.025966223, + 0.021730466, + 0.0034123722, + -0.01164862, + -0.026411328, + 0.0023071058, + -0.0033676769, + 0.012630596, + 0.011950873, + 0.029235004, + 0.008036564, + 0.003626486, + -0.025093265, + 0.01164409, + -0.018594524, + 0.0015599753, + -0.010222943, + 0.0077690785, + -0.0038966108, + 0.007503608, + 0.006301898, + 0.0016168335, + -0.016421275, + -0.0037789438, + 0.012887077, + 0.010062577, + 0.008759845, + 0.006897759, + 0.011584545, + 0.00134693, + 0.003138008, + -0.011497036, + -0.008097165, + 0.0067897136, + -0.014711214, + -0.0054446473, + 0.0046315193, + -0.0035213833, + -0.02195112, + -0.024160529, + 0.0361298, + 9.7386324E-4, + 0.0064698607, + -0.009346336, + 0.022419007, + -0.024621414, + -0.02326561, + 0.028396709, + -0.014545538, + -0.019873604, + -0.0034553413, + -0.0072377166, + 0.0066289143, + -0.006948112, + -0.014036927, + -0.0032976333, + 0.01142414, + -0.003413032, + -0.0053354804, + -0.0066357977, + -0.009342682, + -0.00551998, + -0.0020361638, + -0.008941359, + -0.008640537, + 0.0185121, + -0.013657887, + 0.009416578, + 0.012866039, + -0.005763414, + 0.00334627, + 0.016691854, + -0.007514952, + -0.0017357145, + -0.02419949, + -0.018657824, + -0.013028091, + -0.0018598248, + 0.008749894, + 0.011311858, + -0.0205822, + 0.0070684766, + 0.011808745, + 0.007890237, + 0.004339754, + 0.0070309644, + 0.025739709, + 0.0030192756, + -0.021807186, + 0.0020351184, + 0.006192699, + 0.012026554, + -0.01880944, + -0.03426686, + -0.00661202, + 0.0104019735, + 0.0079455925, + -5.245241E-4, + 0.0052076257, + 0.016495552, + -0.007256522, + -0.006940233, + 0.028888267, + 0.033586707, + -0.0013796462, + 0.007155951, + -0.0033896645, + 0.0042011268, + -0.021839527, + 0.008015575, + -0.0030191883, + -0.012645789, + 0.007078643, + 0.010431415, + 0.0054086996, + 0.0016283182, + 0.008286336, + 0.00485607, + 0.025375431, + 0.0013620295, + 0.014640917, + -0.0048283013, + 0.023125533, + 0.025439912, + 0.019892406, + 0.008177875, + 0.015570583, + 0.013428524, + 0.0018441954, + -0.021844266, + 0.011120748, + 0.013456168, + 0.0041004946, + 0.025672125, + 0.014243683, + -0.0036111611, + -2.2728002E-4, + -0.01550599, + 0.009523116, + -0.015206313, + 0.021059394, + 0.011577828, + 0.009397282, + 0.025458876, + -0.011502262, + 0.0027630455, + -0.004737415, + -0.007859564, + -0.009205121, + 0.014918947, + -0.02063394, + -0.010279193, + 0.012551549, + 0.014816639, + 0.02720724, + -0.0018557053, + -0.019929059, + -0.01621862, + 9.407206E-4, + 0.038452517, + 0.027608225, + -0.016313849, + 0.016759314, + -0.011506, + -0.00450423, + 0.010653774, + 0.015566007, + -0.01051164, + -0.019281931, + 0.011640513, + 0.005554437, + 0.028788047, + 0.010442286, + 0.0261798, + -0.017258793, + -0.035560798, + 0.014376362, + 8.125141E-5, + -0.0063642026, + 0.011023015, + -0.02893908, + 0.018234434, + -0.004621873, + 0.0043414314, + -0.008884716, + -0.0010226662, + 4.8051984E-4, + -0.012693737, + -0.03217517, + 0.0014626026, + 0.016451951, + -0.032932103, + 0.010472799, + 0.0087969, + 0.0115653565, + 0.010108807, + 0.022097373, + -0.004546432, + 0.0049669035, + 0.029788502, + 0.0026510255, + 0.0243959, + 0.016168062, + -0.013252647, + 0.0026636783, + 0.00622589, + 0.005357518, + 0.022345245, + 0.021086233, + -0.019970458, + 0.021436822, + 0.0060683414, + -0.009530577, + -0.0049101706, + 0.004391787, + -0.014457748, + -0.020883452, + -0.022784991, + 0.008641304, + 1.64833E-4, + -0.0050842855, + -0.025061497, + -0.011631763, + 0.0013898946, + -0.024824074, + 0.0010810519, + -0.008190324, + -0.0070367176, + 0.020067733, + 0.0065458887, + 0.008713217, + 0.008730595, + 4.580115E-4, + 0.0012248928, + -0.0064044297, + 0.0037941746, + 0.01337114, + 0.0037825776, + 0.0057067457, + -0.012094448, + 0.0055346573, + -6.1275216E-4, + 0.012160571, + 0.009379232, + 0.011475789, + 0.040155336, + -0.008769491, + -0.0016023784, + 0.018571047, + 0.009020975, + 0.03604372, + 0.03643954, + 0.0027800133, + 0.019815287, + 0.0011456237, + -0.02112981, + 0.029952463, + -0.005584741, + 0.00842454, + -0.0066815517, + -0.028078232, + -0.011378215, + -0.009991126, + -0.011097301, + 0.010615016, + -0.012725835, + -0.012604308, + -0.008119269, + -0.0019864964, + -0.0086283935, + -0.0015118705, + 0.01707961, + 0.0025364049, + 0.008219513, + -0.013292624, + 0.017189821, + -0.01049007, + -0.007946973, + -0.016171457, + 0.020249214, + -0.005817391, + -0.0026989705, + -0.010580694, + 0.012939854, + 0.0048918864, + -0.0038888876, + 0.030944273, + -0.008732156, + 0.016038178, + -0.010779271, + 0.006039759, + -0.004165936, + -0.007898119, + 1.4400043E-4, + -0.00471225, + 0.009825657, + -0.014100791, + 0.012354575, + 0.0036688014, + -0.011992258, + -0.028395869, + 0.009173276, + -0.0059502437, + 0.010980695, + 0.026070915, + -0.0026094625, + -0.012188681, + -0.022774452, + -0.0054265396, + 0.009389153, + -0.01673146, + 0.023243476, + 0.017389597, + -0.033887997, + -0.0072344528, + 0.0023440444, + -0.009058191, + -0.011963663, + 0.0018058724, + 8.782627E-4, + -0.008536193, + -0.014308623, + 2.258274E-4, + 0.005026625, + -0.005524203, + -0.013053753, + 0.0069414075, + -0.026082024, + 0.023963392, + -0.008478769, + 0.029953983, + 0.0018482588, + 0.015299437, + -0.011291642, + -0.006817811, + 0.014984654, + 0.014188305, + -0.022561075, + -0.0019303286, + -0.016999703, + -0.015217601, + 0.008631615, + 0.015238445, + 0.007955241, + 0.0059900666, + -0.011071111, + 0.004717524, + 0.0065622022, + -2.2084493E-4, + 0.008440105, + -0.002577329, + -0.0019265937, + -0.008026288, + -0.003089399, + 0.007773695, + -0.0019709887, + 0.032967746, + 0.0062971413, + 0.01364117, + -0.010517115, + 0.021751864, + 0.019303689, + 0.014578292, + -0.024329377, + 0.003835667, + -0.019981304, + 0.016733604, + -0.013882543, + -0.007745147, + 0.015449093, + -0.013020535, + 0.020543398, + 0.027339231, + -0.017003499, + -0.032834362, + -0.008800238, + -0.007905946, + -0.0267835, + -0.0033828048, + 0.004066006, + 0.007754113, + -0.00836518, + 0.017138867, + 0.005843657, + 0.002318001, + 0.018082669, + 0.0010095293, + -0.027312202, + -0.011964196, + -0.033429537, + 0.02803627, + -0.037192013, + 0.021769382, + 0.00916401, + -0.009486234, + -0.018818464, + 0.0011635892, + 0.0055008475, + 0.00449229, + 0.017402194, + 0.006637146, + -9.794597E-4, + -0.00505817, + 0.0067045335, + 0.0027645626, + -0.021165552, + 0.00853081, + 0.019259105, + -0.0064677796, + 0.0013186182, + -7.10082E-5, + 0.0143451635, + 0.006797893, + -0.017650196, + -0.0073160483, + -0.01669834, + 0.0050606853, + -0.005994618, + -0.010483476, + 0.010928273, + -0.015695207, + -0.02498679, + -0.015889503, + 0.035064388, + 0.020128723, + 0.029449955, + 0.004469801, + 0.025007395, + -0.0010878936, + 9.7141863E-4, + 0.021845564, + -7.6353725E-4, + 0.0041147145, + 0.008183705, + 0.014961222, + -0.0065675774, + 0.023328846, + 0.008654593, + 1.2154405E-4, + -0.022625806, + -0.0061784857, + -0.013226357, + -0.018768476, + -0.0033662922, + -0.005284518, + -0.0016385677, + 0.021382011, + -0.017176844, + -0.013418903, + 0.0053112637, + -0.0076363054, + 0.040910564, + -5.844845E-4, + 0.010778915, + -0.011660275, + -0.017117899, + 0.023219712, + -0.016337376, + -0.009105475, + 4.3789463E-4, + -0.0011158274, + 0.0104854535, + -0.0039814627, + 0.0101844985, + 0.0019582582, + 0.017550683, + 0.0056317686, + 0.0042024185, + 0.0037772693, + -0.042906273, + -0.0022002945, + 0.0023944643, + 0.0026943644, + -0.0017579993, + -0.007722676, + 0.018143969, + 0.007934545, + -0.00354962, + -0.02374977, + -0.0019786148, + -0.0060470863, + -0.0073216413, + 0.009129399, + -0.0036951194, + 0.04504518, + -0.011738603, + -0.0014159014, + -0.021341467, + 0.030838229, + -0.0048942044, + 0.0113697015, + -0.01986523, + -0.009443645, + -0.011010175, + 0.012240114, + 0.012750184, + -0.0073452345, + -0.007166729, + -0.012521029, + -0.010732837, + -0.011265601, + 0.0069677974, + -0.013431415, + 0.013662258, + -0.0013779238, + 0.0058240513, + -0.005194145, + 3.0575675E-4, + 0.01190103, + 0.006568713, + -0.006874382, + 0.0017745986, + 0.01369928, + 0.0141545115, + 0.012537804, + 0.043587722, + -0.0026291343, + 0.0110575305, + -0.002636218, + 0.015070755, + 0.020719407, + -0.025370095, + 0.017156646, + 0.0045460733, + -0.020999484, + 0.0036747928, + 0.006255933, + 0.0052469713, + 0.010491433, + -0.007844786, + 0.010180744, + 0.015939336, + 0.010065022, + -0.01141889, + 0.0032627159, + 0.009584285, + -0.009896668, + 0.026545752, + -0.025035668, + -0.01949799, + 0.011976427, + 0.027360309, + 0.04039828, + -0.0069709155, + 0.0094853025, + -0.002393075, + -0.0015569639, + -0.016303444, + -0.030652827, + -0.021287223, + 0.020844487, + -0.0019678972, + -0.019465368, + -0.012506366, + 0.007911571, + 0.013517531, + -0.014068431, + 0.02316641, + -0.013023625, + 0.011334258, + -0.021595882, + 0.010970882, + 0.02032063, + -0.0011974574, + 0.009578354, + 0.014173997, + 0.013737554, + -0.0035475302, + -0.020722125, + -0.0013029086, + -0.0246444, + -8.3215244E-4, + 0.0045187753, + -0.009501208, + -0.006165873, + 4.4339403E-4, + 0.006406087, + 0.02546422, + 0.010057857, + -0.015397725, + 0.00913248, + -0.01699064, + -0.018783873, + -0.02683557, + -0.021107987, + 0.011900346, + -0.0028116559, + 0.03103244, + 0.0065220012, + -0.003315421, + -0.005732158, + 0.015677141, + -0.018315293, + -0.005218838, + 0.02201692, + -2.164076E-4, + 0.014208099, + 0.0069296397, + -0.029760404, + 0.029585857, + 0.030515907, + -0.0024539542, + -0.0076731495, + 5.563318E-4, + 0.0044956557, + 0.029427787, + 0.013382949, + 0.0021422252, + 0.009911855, + 0.0061186883, + -0.013532799, + 3.1832588E-4, + 0.023330921, + 0.034699302, + 0.0010065469, + 0.019289631, + -0.015049636, + -0.0024250175, + 0.0018444831, + -0.009014704, + -0.0052995537, + 0.001675475, + -0.012380872, + -0.0074506374, + -0.0138162365, + -0.046467137, + 0.010010098, + 0.009930295, + 0.002265762, + 0.010805586, + 0.015755918, + -0.00406615, + 7.5938104E-4, + 0.025036044, + -0.009147748, + 0.013148742, + 0.004060529, + -0.009465172, + -0.008215236, + -0.008756256, + 0.016956527, + 0.016065912, + -4.5680808E-4, + 0.0175816, + -0.0041727256, + 0.008310594, + -0.009732608, + 0.018777112, + 0.01850092, + 0.010308232, + -0.027877191, + -0.009141018, + -0.011866933, + -0.0016069706, + -0.018774608, + -0.0012760279, + -0.004514808, + -0.0210266, + 0.018176798, + 0.022947297, + 0.0066943876, + -0.010783044, + -0.011440114, + -0.008436059, + -0.009231077, + 0.0012971227, + 0.025051087, + -0.008172292, + -0.00608683, + 0.018782465, + -0.016414842, + 0.005199347, + 0.011092067, + 0.024670228, + 0.050370548, + 0.005921925, + 0.0022221103, + 0.023264943, + 0.0073855035, + 0.0070254235, + -0.008265063, + 0.0017923018, + -0.00690683, + -0.008854917, + -0.004956049, + -0.0058782287, + 0.019592004, + 0.0025806646, + -0.030863833, + -0.029785303, + 0.011530354, + -0.012736444, + -0.023436842, + 0.014709295, + -0.014816955, + -0.0058572832, + -0.0058378275, + -0.029224698, + 0.006062088, + -0.014925331, + 0.016854472, + 0.011065203, + -0.014708796, + 0.0019043774, + 0.012504627, + 0.032208115, + -0.0041436413, + 0.005873196, + 0.011136574, + -0.0071398006, + 0.015785813, + -0.01378175, + 0.0044870065, + -0.0014196475, + 0.018050853, + -0.012497997, + 0.023491293, + 0.006051254, + -0.008649329, + 0.0041552684, + -0.0016426049, + -0.002807036, + 0.0022466858, + 0.013069646, + 0.0061472575, + 0.004126305, + 0.013649624, + 0.008020378, + 0.013434814, + 0.011920743, + -0.03609619, + -0.0146824, + 0.01362391, + -0.0038328886, + -0.037897002, + 0.003129337, + -0.008258165, + -0.019370133, + -0.017036913, + -0.010727627, + 0.008092809, + -0.0089793205, + -0.0068755983, + 0.0015263513, + -0.005293313, + -0.0072829695, + -0.025703453, + -0.0065205996, + 0.009397235, + -0.014532573, + 0.008769746, + 0.02312508, + -0.013378395, + -0.009794026, + -0.0046631475, + -1.3327642E-4, + 0.02532118, + 0.015846983, + -0.005870767, + 0.008535652, + 0.0076288744, + -0.004042693, + -0.0053590005, + -0.020657638, + 0.0032712077, + -0.020058844, + -0.022176156, + -0.0070831366, + 0.015402963, + -0.0038058716, + -0.02540291, + -0.0040967516, + 0.027442647, + -0.001751442, + 0.01928028, + 0.019236451, + -0.0036261326, + 9.2933874E-4, + 0.008919567, + 0.0050497972, + -0.0057811714, + -0.020548759, + -0.012630568, + -0.01205451, + -0.02095346, + -0.0015038808, + 0.014136101, + 0.0036715767, + -0.0067188353, + -0.031880446, + -0.003022223, + 0.010533362, + 0.015475439, + -0.0075832787, + -0.013555788, + 0.023651248, + -0.011972332, + 0.0039369403, + 9.749207E-4, + -0.014555816, + -0.016802683, + -0.006779239, + -0.008785143, + -0.016795667, + 0.0057148896, + -0.0013844188, + 0.0040336763, + -0.011384796, + 0.022842346, + 0.00694686, + 0.014878971, + 0.004861406, + -0.042063847, + 0.0076027936, + 0.019592654, + 0.003332695, + 0.008438006, + -0.032742828, + -0.024067191, + 0.0017153121, + -0.021648226, + 0.0017793892, + 0.032200355, + -0.028175842, + 0.017906081, + 0.018545799, + -0.0075486046, + 0.011778314, + -0.021293527, + -0.0039259666, + 0.0049811965, + -0.022147326, + -0.0065209647, + 0.029987395, + 0.004789112, + -0.02445738, + -0.015022485, + -0.011704607, + 0.019696116, + 0.00876137, + 0.012927522, + 0.015047309, + -0.009797121, + 0.0074153286, + 0.05000005, + 0.004597058, + -0.020378835, + -0.022403477, + -0.0019726641, + 0.001994101, + -0.012105551, + 0.0018326867, + -0.022616917, + 0.021203034, + 0.0030155883, + -0.011558122, + 0.013040725, + -0.012946663, + 0.030549647, + 0.003825633, + 0.014990893, + 0.006259265, + -0.0055789906, + -0.010416069, + 0.029937092, + -0.0026499983, + -0.016891716, + -0.0044273953, + -0.008952602, + 0.006417384, + -0.0010602869, + 0.02175597, + -0.007244823, + -0.013171776, + 0.0045602163, + 0.04178954, + 0.00663624, + 0.0026413717, + 0.018309176, + 0.03287187, + -0.0063805813, + -0.011497954, + 0.040956166, + 0.01822928, + 0.0073395083, + 0.03157753, + -0.015235174, + 0.013939799, + -0.0053239497, + 0.020002522, + -0.013787144, + -0.01508648, + -0.0053350464, + -0.011417921, + -0.012522219, + -0.017486673, + -0.0072143604, + -0.0041514128, + -0.0045348667, + 0.025488485, + 0.022745837, + 0.008172959, + -0.0465391, + 8.925493E-4, + -0.008512225, + -0.0028253153, + 0.0035608574, + -0.021915663, + 0.017410466, + 0.013437609, + -0.0035999632, + 0.029899761, + -0.028916365, + -0.004513683, + -0.026570203, + -0.00572477, + 0.0057123885, + 0.0027582408, + -0.030219587, + -0.029013814, + 0.010653469, + -0.02089565, + 0.009060047, + 0.0031432938, + -0.015612798, + -0.036306486, + -0.012731551, + 0.0018058445, + 0.028516123, + 0.0016311448, + 0.0033725179, + 0.015626084, + 0.025355019, + 5.1795837E-4, + 0.006691454, + -0.018150302, + 0.016106067, + -0.006446686, + -0.025777306, + 0.013358579, + 0.016719133, + 0.0031794147, + 0.015513087, + -0.01851309, + -0.014077667, + 0.0062413053, + -0.030155046, + -0.030936603, + 0.0035872103, + -0.009391455, + 0.0043086815, + -0.015825966, + 0.015417956, + -0.005809001, + 0.01843299, + -0.01353496, + 0.0083959205, + 0.0041693505, + 0.012761811, + 0.009512296, + -0.020689227, + 0.014218807, + -0.0330313, + -0.031205473, + 0.010781848, + -0.010778398, + -0.0110761365, + 0.010094184, + 0.0044337003, + -0.0011469366, + 0.026888736, + -0.0041491566, + 0.00919278, + 0.022990508, + 0.018300202, + 0.0032876406, + 0.007873724, + 0.022942834, + -0.0125554735, + -0.007729407, + -0.02040451, + 0.0077821077, + 0.016668895, + -0.0135259535, + -0.018395355, + 0.0018315905, + 0.023035705, + -0.017935876, + 0.006328409, + -0.022888249, + -0.010209435, + 0.0020523954, + 0.013230547, + -0.00782313, + -0.006196919, + 0.006581098, + 0.0017857247, + -0.005327094, + 0.009262404, + 0.0028920071, + -0.00677028, + -0.0060597314, + -0.004960944, + 0.023880368, + -0.014656486, + 0.0024501334, + 0.0024004688, + 0.008208865, + -0.014223803, + -0.0011516854, + 0.0057738447, + 0.003869052, + -0.005766269, + -0.017505785, + -0.0057534287, + -0.0034344862, + 0.007945423, + -0.008912692, + -0.0022602056, + -0.0063345213, + -0.0055225734, + 8.7871484E-4, + 0.017688286, + 0.008422917, + 0.010557308, + -0.006624568, + -0.010362554, + -0.01043107, + 0.0035461974, + -0.014796603, + 0.02049775, + 0.0052371914, + 0.0017090099, + 0.012894391, + -0.010595821, + -0.007095125, + -0.014973567, + -0.0023615228, + 0.0112438705, + -0.020258553, + 0.008288071, + -0.0025943776, + 0.0045062485, + -0.0024180084, + -7.415845E-4, + -0.004582649, + 0.0071296296, + -0.022829108, + -0.008306127, + -4.3187558E-4, + 0.025535753, + 0.0037222682, + -8.551208E-4, + -0.015835369, + -0.007567007, + 0.0035710642, + 0.008820832, + -0.014045813, + 0.011955111, + -0.015955972, + 6.8275596E-4, + 0.0029037863, + -0.00979386, + -0.015889056, + -0.007002859, + -0.02087723, + -0.020559127, + 0.0039639655, + -0.014815225, + 0.0012922494, + 0.0036812364, + -0.015811566, + -0.015376016, + -0.022851523, + 0.0022484502, + 0.002768151, + 0.011546, + 0.02110731, + 0.017735472, + -0.0017261368, + 0.002565162, + -0.009865568, + 0.008606418, + -0.008489185, + -0.0053483946, + 0.0037074776, + 7.166196E-4, + -0.009756486, + -0.009845397, + -0.0046735625, + 0.0046267235, + 0.009162963, + -5.222197E-4, + -0.017207507, + -0.0076241265, + 0.012941431, + -0.0017555192, + 0.030046342, + 0.012308934, + -0.0069554164, + 0.00280677, + -0.020598065, + 0.022990339, + 0.022884395, + 0.0053950227, + 9.933183E-4, + 0.006485986, + -0.0060261856, + -0.011343427, + -8.7512075E-4, + 0.036027208, + -0.021166326, + 0.0032410568, + 0.008505986, + -0.0129267685, + -0.013968837, + -0.017721418, + 0.025125548, + -0.003537419, + -0.01291739, + -0.0013227663, + -0.008682988, + -0.019791149, + -0.009097655, + -0.0027290005, + 0.037208658, + 0.013476213, + 0.0046082637, + -0.012821951, + -0.012814298, + -5.755977E-4, + 0.005833359, + -0.015587686, + 0.009035389, + 0.023718659, + -0.003488918, + 0.0023310396, + 0.02713616, + -0.010234342, + 0.015017604, + -0.012927728, + -0.010645728, + 0.005076267, + -0.010808537, + 0.02870554, + 0.021909937, + -0.018507162, + -0.009289583, + 0.009014183, + 0.02614892, + 0.026798543, + -0.006872077, + -0.03897988, + 0.018598447, + 0.022391235, + -0.004936993, + -0.003412038, + -0.013429258, + -3.6894917E-4, + 0.0043029655, + 0.018544408, + -0.023032906, + -6.236598E-4, + -0.0151924435, + 0.0015652087, + 0.0069376887, + -0.005218046, + 1.2533978E-5, + -0.025961319, + 0.0023079976, + 0.024422992, + -0.016871912, + -0.00622773, + -0.023552377, + 0.021743312, + -0.004009419, + -0.019054068, + -0.0025115828, + 0.0011446399, + -0.017736474, + 0.010564396, + 0.014494806, + 0.016769582, + 1.3145714E-4, + -0.010416111, + 0.0028587952, + -0.014122072, + 7.906717E-4, + 0.0011814138, + 0.023872161, + -0.016370244, + -0.0025632824, + -0.023385104, + 0.0054052323, + 0.0032324395, + 0.0076334784, + -0.010108173, + 0.009096697, + 0.013285885, + -0.011755377, + 0.0054549165, + -0.020330837, + 0.005826186, + 0.009123879, + 0.0017372244, + 0.01811911, + -0.020853432, + 0.01548477, + -0.007836326, + 0.025092045, + -0.029938003, + 7.359498E-5, + 0.02013214, + 0.023651073, + -0.020032011, + -0.013084984, + -0.006536994, + 0.0031119662, + 0.0013911914, + -0.018015258, + 0.018159842, + 0.015341424, + 0.030721229, + 0.029991163, + -0.0012104977, + -0.006764383, + 0.00540129, + -0.0035922264, + 0.0077483817, + -0.005298125, + 1.4329598E-4, + -0.0022772008, + 0.004755793, + -0.0031870191, + 0.006551207, + -0.0057562953, + -0.0085502, + 0.013128336, + -0.012367553, + 0.006166812, + 0.023531524, + 0.0029118827, + 0.012534495, + -0.019755112, + 0.003857509, + -0.022753248, + -0.02285853, + 0.024454817, + 0.0092075225, + -0.0019228224, + -0.023436105, + -0.01096002, + -0.012018946, + -0.020531982, + 0.015339007, + -0.0057462864, + -0.027722534, + 0.016546754, + 7.659487E-4, + -0.026564935, + 0.004588368, + -0.02830772, + -0.033930313, + 0.019385688, + -0.010838485, + -0.0011096551, + -0.009780104, + 0.014726409, + -0.005021153, + 0.0037945171, + 0.014748251, + 0.010011419, + -2.0743374E-4, + 0.01778367, + 0.007864558, + -0.012443505, + -0.0018745412, + 0.019473884, + -0.035329945, + 0.0072624525, + 0.016989993, + 0.030693267, + 0.019413963, + -0.017852651, + -0.0013387993, + 0.0144534875, + 0.0018237673, + 0.020881368, + -0.006116178, + -0.01043947, + -0.005212886, + -0.017026344, + 0.0019301153, + -0.017150182, + -0.030190984, + 0.0036338025, + 0.009422373, + 0.014796134, + -0.02931898, + 0.013967354, + -0.016322888, + -0.012493113, + 0.0022448073, + -0.016225351, + 0.011615059, + 0.018169297, + 0.013631487, + 0.008324514, + -0.008433395, + -0.0110588325, + -0.015125057, + -0.0065954505, + -0.009072302, + -0.0075440113, + 0.025935927, + 0.013574589, + -0.0014502837, + -0.010255542, + -0.0059009064, + 0.023742639, + -0.019563593, + -0.018673573, + -0.0035194827, + 0.017640991, + -0.013385671, + 3.8121556E-4, + 0.02155394, + 0.0077683083, + -0.013507199, + 0.020069838, + 0.010794474, + 0.015996227, + -0.012055453, + 0.029203467, + 0.017961936, + -0.008425667, + 0.001086851, + 0.018179448, + 0.01258345, + -0.0067329253, + 0.023391264, + -0.01966503, + -0.02969418, + -0.0202042, + 0.0031882331, + -0.005285394, + -0.01113968, + 0.010090965, + 0.046657003, + -0.0069711693, + -0.0037689032, + -0.0067908517, + 0.019964617, + -0.018190095, + 0.02144525, + 0.0011431526, + 0.020237911, + -0.027380416, + -0.01803333, + -0.007832357, + -0.014734466, + 0.0036262919, + 0.023978146, + 0.007726735, + 0.0013284868, + -0.008848742, + 0.0014142626, + 0.014435765, + -0.011183696, + -0.009225883, + 0.009426055, + 0.028505117, + 0.016562251, + -0.0016681894, + 0.0020093939, + -0.008345395, + -0.0018552467, + -0.041568067, + 0.01475089, + -0.008102173, + -0.009602772, + -0.005297321, + -0.01800638, + 0.001316737, + -0.04018646, + 0.045248892, + -0.010126123, + -9.5006643E-4, + -0.0018156862, + -0.0060441606, + 0.016542625, + -0.009002074, + -0.006994781, + -0.031374775, + -0.010656445, + -0.0065858485, + 0.018645994, + 0.011762864, + -0.0077584856, + 0.006088156, + -0.0023509562, + 0.013891971, + 0.008360454, + 0.0073807724, + 0.01512797, + -0.0037191333, + -0.024804631, + -0.030667981, + 9.048731E-4, + 0.0019231291, + -0.013754101, + -0.004444979, + -0.020959692, + 0.01981611, + -0.005383561, + 0.017833924, + -0.006537024, + -0.018277554, + -0.011226172, + -0.013953443, + 0.03882867, + 0.024309408, + -0.021347038, + 0.0022432036, + -0.004253209, + 0.016686687, + 0.0017596016, + -0.014254658, + 0.030968726, + -0.0014081884, + 0.019117916, + 0.010625623, + -0.0011252005, + -0.023431016, + 0.009251126, + 0.017245993, + 0.01449836, + 0.026302135, + -0.010876803, + -0.027958546, + 0.030938497, + -0.014196976, + -0.018738033, + -0.017945455, + 0.01385124, + -0.00898541, + -3.7304705E-4, + -0.007563456, + 0.017446784, + 0.0036055038, + -0.003082823, + -0.02369567, + -0.0202105, + -0.0072894995, + -0.012201644, + 0.0037910298, + 0.0015228643, + 0.0052781124, + -0.0047299317, + -0.011932019, + 0.014408413, + -0.0019695926, + -0.022761483, + -0.0152369505, + -0.005141657, + -0.008891711, + -0.0027083436, + 0.0027261856, + 0.010607621, + 0.011698042, + -0.006255085, + -0.012135299, + -0.017687764, + 0.013859716, + 0.007700262, + -0.0057206172, + -0.006961189, + -0.0030112527, + -0.024130456, + -0.0035897235, + -0.0016414038, + 0.0041703647, + -0.019726904, + 0.0022342158, + -0.015768386, + 0.00850069, + 0.0036890802, + 0.025538998, + -0.016824607, + 0.021590965, + -0.017932976, + 2.0370579E-4, + -0.013868737, + 0.008294262, + 0.0020901395, + 0.0019231695, + -0.00654342, + -0.0057881395, + -0.011080176, + -0.008491257, + 0.0051016924, + 0.011961454, + 0.015658617, + -0.0038906725, + 0.039632723, + -0.0011902243, + -0.025122864, + 0.015801061, + -0.020747107, + 0.01383918, + -0.001165983, + -0.0070816567, + -0.0075302995, + 0.009104759, + 0.032969605, + 4.2829488E-4, + 0.0014778217, + 0.014266409, + -0.017564299, + -0.017608926, + 0.01927286, + -0.006236651, + 0.012096718, + 0.007121511, + -0.0068138367, + 0.004889733, + 0.007375891, + 4.6478887E-4, + 0.014605389, + -0.0022297665, + -0.006471143, + 0.008207467, + -0.021057304, + -0.0042320364, + -0.040354002, + -0.0017191367, + -0.0011406804, + -0.0030358026, + -0.004243571, + -0.00932307, + 0.016761879, + 0.026832394, + -0.010001218, + -0.023479573, + -0.011313037, + -0.009005164, + 0.005587908, + 0.008640019, + 3.0056908E-4, + -0.010630774, + -0.0072749145, + 0.009045792, + -0.0041026394, + -0.014774272, + -0.0064625796, + -0.0040587117, + 0.012350294, + -0.017147494, + 0.012545493, + -0.024708314, + 0.0033002605, + 0.002506127, + -0.024785412, + 0.0096866265, + -0.015050925, + -0.010015292, + -0.016525308, + 0.0139931515, + 0.007347273, + 0.01646276, + -0.021722402, + -0.009159525, + 0.0075472808, + 0.013381361, + -0.012933929, + 0.0216987, + 0.005404791, + -0.0053133946, + -0.01006619, + 0.019474981, + -0.025498232, + 8.9794537E-4, + 0.0077560265, + 0.0132681, + -0.009205625, + 5.940974E-4, + 0.01214137, + -0.008408304, + 0.024771119, + -0.016613118, + -0.035223134, + 0.009481027, + -0.01810087, + 0.0053833574, + -0.00357733, + -0.012718553, + 0.020536397, + 6.389951E-4, + 0.01355019, + 0.01392188, + 0.006185369, + 0.015226039, + 0.011865342, + 0.0061851577, + 0.01766227, + 8.790398E-4, + -0.007300317, + -2.748747E-5, + 0.01137239, + 0.0034227595, + -0.0039080894, + 0.009129535, + 0.0038531807, + 0.024970328, + -0.039577454, + -0.0019311897, + -0.008177176, + 0.017955424, + -0.0016922933, + -0.005273136, + -0.0054974146, + -0.001527506, + 0.004323505, + 0.010986935, + 0.009598899, + 0.0108592855, + -0.011192717, + -0.02435391, + -0.029551184, + -0.0032642914, + -0.026349025, + 0.023318961, + -0.03310511, + 0.0035547048, + -0.006485043, + -0.009228861, + -0.021401506, + -5.156549E-4, + 0.014991053, + 0.005356092, + -0.0128996475, + -0.027865866, + -0.024595644, + 0.0062645464, + 0.006506618, + 0.008058803, + -0.027463235, + 0.028453335, + 0.0060938895, + 0.014208958, + -0.01944671, + -0.022864912, + 0.0117954165, + 0.019017365, + 0.0072099166, + 0.00358986, + -0.0025463263, + -0.0067098634, + 0.0021960502, + 0.02071603, + 0.015083572, + -0.022442104, + -0.032259554, + -0.00915504, + 0.011399941, + 0.012094991, + -0.03179271, + -2.4515908E-4, + -0.0015314941, + -0.0041068704, + -0.00988356, + 0.015053364, + -0.012243878, + 0.015974775, + 0.0023964224, + -0.008403286, + 0.0018701244, + 0.011623092, + -6.3057276E-5, + -0.010867102, + 0.025688728, + 0.015714975, + -0.009908414, + 0.026171342, + 0.011435854, + 0.004405339, + 0.018918568, + -0.016581167, + -0.015038164, + -0.017027903, + -0.012493502, + 0.010988509, + 0.032939676, + -0.01333507, + 0.015990593, + -0.010649947, + 0.012621425, + 0.007719193, + -0.0061534042, + -0.01648074, + -0.01609169, + 0.021749824, + 0.024796654, + -0.016765116, + 0.021518767, + 0.005949547, + 0.004395588, + -0.0016642105, + -0.013265278, + 1.6845417E-5, + 0.009100027, + 0.009239782, + -0.020233221, + 0.02353091, + -0.0032789921, + -0.001905612, + 0.024738872, + -0.005103059, + -0.0058495817, + 0.0022004396, + -0.023602072, + -0.00770924, + 0.02768445, + -0.020408312, + 0.010469167, + 0.012889613, + 0.015972653, + 0.0056189997, + 0.030678239, + 0.005050234, + 6.2862947E-4, + -0.01628021, + -0.004390123, + 0.01221274, + -0.019889226, + -0.013050408, + 0.0074935607, + -0.024917478, + 0.0035185826, + 0.010080164, + 0.028583214, + -0.035269797, + -0.019832032, + 0.016686773, + 0.008798777, + 0.003545773, + -0.009486117, + -0.024723828, + -0.031633615, + 1.9524009E-4, + -0.039705034, + 0.013073996, + -0.0137276165, + -0.015776364, + -0.02290227, + -6.394707E-4, + -1.383593E-4, + -0.004643752, + -0.008184418, + -0.0027172302, + -0.031503603, + -0.0012564603, + -0.01115742, + 0.016384125, + 0.005036928, + -0.02047129, + -0.012305542, + -0.0012467684, + 0.033948924, + -0.014028136, + -0.010068116, + 0.02108279, + -0.008527614, + 0.008143645, + 0.008976359, + 0.0059633995, + 0.012484703, + 0.009578144, + 0.017312113, + 0.016688608, + 0.047568344, + -0.03713794, + -0.009672247, + -0.010562422, + -0.030985827, + -0.008800656, + 0.025076073, + -0.0069858506, + 0.019916452, + -0.022139477, + -0.018057585, + -0.007076439, + -0.006928567, + 0.0036191742, + -0.023033863, + 0.015076331, + 0.003928366, + -0.008652214, + -0.0063172877, + 0.0044271396, + -0.027549515, + -0.008219695, + -0.043383047, + -0.013086863, + -0.0075683165, + -0.0025851608, + -0.01630255, + 0.004916144, + 0.0045026913, + -0.02705021, + 0.014252143, + 0.01806911, + -0.01030707, + 8.905504E-4, + -0.028839946, + 0.017161515, + -0.014845039, + -0.0025016326, + 0.024196697, + 0.019495314, + 0.0060811224, + -0.03625067, + 0.0071283383, + 0.0056670057, + 0.0013318915, + -0.020614441, + 0.0075507993, + -0.0053074984, + -0.005307822, + -0.011075654, + -0.0040859804, + -0.03448714, + -0.0048673763, + 0.011711722, + 0.014959529, + 0.0015562202, + 0.058087382, + -0.023397317, + 0.020383053, + -0.022378309, + -0.020833937, + 0.025727777, + 0.02716132, + -7.7368005E-4, + -0.033240832, + -0.03819669, + 0.032055438, + -0.017564217, + 0.014791056, + 0.012240471, + 0.0016346696, + -0.014811062, + -0.009852537, + 0.005222268, + 0.025032954, + 0.0056298776, + -0.008243818, + -0.0045284783, + -0.0116747925, + -0.009362994, + -0.0021716189, + -0.003105153, + 0.0058772294, + -0.016807035, + 0.016102172, + 0.005460249, + 0.019678064, + 0.024240652, + 0.028441537, + -0.018052269, + 0.0063565797, + -0.0075785136, + 0.021839002, + 0.022010058, + -0.011567646, + 0.030181875, + -0.025237275, + 0.019965675, + 0.03460886, + 0.004186633, + 0.023490423, + -0.0066035907, + 0.02079431, + -0.0025602002, + 0.014299611, + -0.001367415, + -0.004862816, + 0.008465943, + 0.03312766, + -0.016849423, + -0.0064011943, + -0.026702477, + 0.0068656444, + 0.0036662263, + -0.001412994, + 0.0032558185, + 0.0026096655, + 0.009922684, + 0.0072358144, + 0.022089366, + -0.0066532693, + -0.0030402392, + 0.010859268, + 0.0022719083, + -0.011209093, + -0.015877519, + -0.020893523, + 0.02049237, + -0.005211258, + 0.007666273, + -0.0215556, + 0.020025553, + -0.0013534765, + -0.004837793, + 0.0111901, + -0.0032795614, + 0.011419811, + 0.005605871, + 0.0148753505, + 0.001564765, + 0.010102926, + 0.019609643, + 0.009527445, + 0.034613032, + -0.0023000923, + -0.011595805, + 0.008926804, + 0.006137277, + -0.008720756, + 0.009621034, + 0.0060754125, + -0.014586838, + -0.017802972, + 0.0056839776, + -0.040806174, + -0.007345452, + 0.009074825, + 0.006367467, + 0.019281862, + 0.009970174, + -0.0013988487, + -0.03610977, + -0.016943892, + 0.021367565, + -0.0074670915, + -0.023310311, + -0.017437913, + 0.009586763, + -0.013395959, + -0.023257624, + 0.0055138473, + -0.009365116, + -0.009453829, + 0.009419257, + 0.010102664, + -0.02374929, + 0.0016468415, + 0.004293282, + 0.009194068, + -0.012572135, + -0.012491716, + 0.00540767, + 0.009332839, + 0.0065204147, + 5.5194494E-5, + -0.011840056, + -0.0029576072, + 0.029517459, + 0.0010370858, + 0.0013913972, + -0.015265539, + 0.023033433, + -0.0017467962, + 0.009609509, + 0.013939226, + 0.031431522, + -0.02484831, + 0.010136722, + 0.031263035, + 0.0097213155, + -6.7518436E-4, + 0.02263673, + -0.008967857, + -0.0026105924, + -0.02451705, + -0.0056926818, + 0.015032331, + 2.2343379E-4, + 0.0017698001, + 0.004211251, + -0.01355952, + -0.017309394, + 0.002789027, + -0.012181477, + 0.008406461, + -9.083349E-4, + -0.0038902932, + 0.011458541, + -0.012114038, + -0.03085926, + -8.026721E-4, + 0.008685267, + -0.026206257, + -7.51744E-4, + 0.004033299, + 0.0069150394, + 0.011833937, + 0.0066693546, + 0.006414702, + -0.0020470489, + -0.04304244, + -0.0016374651, + 0.0050344113, + 0.021727797, + 0.006798529, + -0.0025243552, + -0.0067178034, + 4.3901146E-4, + -0.015200429, + -0.02716534, + 0.016355807, + 0.018626057, + 0.006009464, + -0.014618984, + -0.012813099, + -0.005291221, + -0.0060558165, + -0.0023930748, + -0.015687458, + -0.008699597, + -0.02458997, + 0.01673692, + -9.3402225E-4, + -0.007923019, + 0.011068353, + 0.015784549, + 0.010301601, + 0.00693694, + -0.014172242, + 0.010813649, + -0.05522924, + -0.013814947, + 0.0071109254, + 0.008763974, + 0.0041063367, + 0.0065154224, + -0.010692719, + -0.008996689, + 0.012891138, + -0.012246454, + -0.013671509, + 0.01746469, + -0.007169934, + 0.005424338, + -0.0027428686, + -0.015542557, + -0.0059436313, + -0.009695357, + -0.004908176, + -0.015345108, + 0.034055054, + -0.006470293, + -0.02020814, + 0.0013854975, + 0.0032278202, + -0.011274371, + -0.00134541, + 0.014653585, + 0.0065259314, + -0.0119778905, + -0.019403277, + 0.0013512886, + 0.0039965627, + 0.011901385, + -3.9438033E-4, + 0.026284724, + 0.010412824, + 0.008258874, + 7.6441915E-4, + 0.013153146, + -0.019716442, + -0.012574123, + 0.02200726, + -0.012614942, + 0.034483958, + 0.006574871, + -0.008428366, + -0.012334486, + 0.006398317, + -0.001246065, + 0.005650594, + 0.00207387, + 0.01149196, + 0.013849535, + -0.0067276056, + -0.0098830955, + -0.011073848, + -0.0061357454, + -0.017535536, + -0.007163724, + 0.012499472, + -0.0058835284, + 0.0058349934, + -0.0023624958, + -0.026332527, + -0.015360023, + -0.0090189455, + 0.0027473613, + -0.0045066886, + 0.020446125, + 0.014192386, + 0.0068619065, + 0.009114698, + 0.037310097, + -0.017659858, + -0.006356966, + 0.0071786474, + -0.010320748, + -0.015048399, + -0.0028406382, + -0.007865653, + 0.009104826, + -0.008265603, + -0.025372425, + 0.0040399386, + -0.0060552526, + -0.039021123, + -0.007879641, + 0.017680109, + -0.008126236, + -0.013165971, + 0.0042376174, + -0.0088013075, + -0.002571842, + 0.016657446, + -0.002571833, + 0.0048361714, + 0.0012019557, + -0.023910366, + 0.003703608, + 0.010413352, + -0.011276746, + 0.016800735, + 0.0073603033, + 0.019798689, + -0.03563, + -0.015524479, + -0.01746787, + -0.019796344, + -0.0024338178, + 0.030875644, + 0.016800405, + 0.0016064966, + -0.023681229, + -0.01669756, + -0.011652418, + -0.009318125, + -0.009418806, + 0.01894553, + 0.0039904183, + -0.032747693, + 0.02093795, + -0.013509557, + 0.012166564, + -0.017749114, + 0.02553644, + -0.041003443, + 0.005508342, + 0.008532027, + -0.0054950207, + -0.0030088737, + -0.02069587, + -5.15613E-4, + 0.015937487, + 0.0019797091, + -0.036649104, + -0.0019977582, + 0.0062624034, + -7.661038E-4, + -0.015611972, + -6.8097835E-4, + -0.035295412, + 0.015138488, + 0.0011028092, + -0.0050850515, + -0.0066123744, + -0.008203381, + 0.0037788881, + 0.0076241125, + 0.011515063, + 0.01014613, + -0.002705166, + -0.016001672, + 0.009037117, + 0.01272973, + -0.01021345, + 0.009068775, + 0.0059846183, + 0.003661478, + -0.026025191, + -0.0120846145, + 0.012732284, + -0.011669215, + 0.0044948463, + 0.0026880961, + 0.029121079, + -0.008893586, + -6.5010914E-5, + 0.026110241, + -0.011686165, + 0.020446485, + -0.019244952, + 8.8160235E-4, + -0.0010631662, + -0.009763251, + 0.009323774, + -0.004480288, + -0.017379457, + 0.023374768, + 0.022413777, + 0.024784721, + -0.009188094, + -0.0014488036, + -5.6126545E-4, + 0.002897399, + 0.0069789113, + -0.015421243, + -0.009155996, + 0.0030659575, + 0.03146314, + 0.022092162, + 0.009761634, + -0.014741196, + 0.0063084504, + 0.0049527776, + 0.015215714, + -0.018468855, + 0.037190493, + -0.011768244, + 0.009344459, + -1.5870112E-4, + -0.018873317, + 0.013856439, + 0.011666906, + 0.022915037, + -0.0077513386, + -0.0089946315, + -9.594576E-5, + -0.018284807, + -0.025221596, + 0.008197708, + 0.003088595, + 0.029431764, + 0.0033917078, + -0.013460734, + 0.018889414, + -0.0043241982, + 0.0047388636, + 0.021212386, + -0.0050511924, + 0.008163122, + 0.010371457, + 0.013312732, + -0.008000929, + 0.0056032017, + 0.033627797, + -2.8170322E-4, + -0.010949643, + -0.009810023, + -0.044103153, + 0.014140437, + -0.0023880934, + 0.003090001, + 0.002891876, + 0.0230022, + 0.02226924, + 0.002842477, + 0.01159137, + 0.032180723, + -0.017467514, + 0.023445705, + -0.010037915, + -0.01085055, + 0.0019362794, + -0.001864672, + 0.0071600843, + -0.004631296, + 9.4349E-4, + -0.027454687, + 0.0015879509, + -0.0032053185, + 0.0037769612, + -0.004916296, + -0.0023008415, + -0.01385354, + 0.015501542, + -0.025111217, + -0.022332285, + 0.016751973, + -0.0034077796, + -6.7975477E-4, + 0.028013283, + 0.0042859334, + -0.020070253, + -0.008494362, + -0.01981944, + 0.01155129, + -0.005562952, + -0.003832396, + 0.0026872, + 8.2846725E-4, + 0.0116398195, + -0.019570453, + -0.026292602, + 0.0033063248, + 0.0051277583, + -0.0014820609, + -0.014537477, + 0.016966892, + 0.021185776, + -0.006520257, + 0.009583372, + -0.011096219, + 0.014263803, + 0.01900332, + -0.0059592803, + -0.0053295004, + -0.027446829, + -0.0037352296, + 0.026674572, + -0.012800259, + 0.001482481, + 0.009081536, + 0.012766215, + -0.016148964, + 2.4177288E-4, + -0.007522843, + 0.007445684, + 0.016256122, + 0.023647036, + -0.008173798, + 0.017653778, + -0.0031529395, + -0.0040995646, + 0.013666736, + 0.028047757, + 0.008354217, + 0.026560852, + -0.0080533195, + -0.0510805, + -0.0011045429, + 0.005371229, + 0.008374828, + 0.009264763, + -0.008776906, + -0.0030150183, + 0.031405933, + -0.017365936, + -0.026752092, + 0.0050683264, + 0.004616672, + 0.021513594, + 0.012924588, + -0.0151429605, + 0.012149738, + 0.004501821, + 0.0132610435, + 0.024985615, + -8.046273E-4, + 0.0062508173, + 0.005756073, + -0.0023942383, + 0.0042079235, + 0.008512163, + -0.015062019, + 0.0016183532, + 0.0028535884, + -0.039638907, + -0.036883242, + -0.004732985, + -5.423331E-5, + -0.005256112, + 0.004389929, + -0.020496698, + -0.0048545385, + -0.0052115675, + -0.005180447, + 0.004134665, + 0.016308676, + 5.756842E-4, + 0.0012444449, + 0.0057775085, + -0.0043849573, + 4.4378912E-4, + 0.019127589, + 0.008814723, + -0.013515683, + -0.005761918, + -0.011837486, + 0.0043561524, + -0.008634549, + 0.0041704853, + -0.013433243, + -0.0065995557, + -0.011981655, + -0.010011849, + -0.020710072, + -0.0056033838, + -0.0014880699, + 0.0045717466, + 0.009560058, + 0.005261945, + -0.0025850043, + -0.020402785, + -0.004997601, + 2.7022706E-4, + -0.0095551275, + -0.0054509183, + 0.01005131, + -0.011557062, + 0.0260175, + -0.02947275, + -0.011012829, + -0.009016997, + -0.025034199, + -0.009949316, + 0.011541128, + 0.011094013, + 0.012517225, + 0.0045820717, + 0.015416561, + 0.0029235047, + 0.003885159, + 0.02063412, + 0.005436988, + 0.010155464, + 0.012436794, + 0.04659721, + -0.0045779343, + 0.025600577, + -0.016873822, + -0.005365021, + 0.010579576, + 0.013411616, + 0.0036272805, + 0.018805414, + 0.022359671, + 0.013207958, + 0.010854105, + -0.034082893, + 0.012724051, + -0.008620088, + 0.013104986, + 0.027947554, + -0.013517925, + 0.015386105, + -0.0070959926, + 0.0075446256, + 0.0046165986, + -0.00992063, + -0.005666397, + -0.012438912, + -0.018480971, + -0.00995686, + 0.008933041, + 0.03120953, + 0.022271205, + -0.009721336, + -0.025969082, + -0.0064109676, + 1.7884574E-4, + -0.0031771562, + 0.016661823, + -0.009680587, + 0.025557406, + 0.031459223, + 0.018537495, + 0.011715895, + 3.53048E-4, + 0.016164131, + -0.030275883, + 0.010188783, + -0.00402455, + -0.0073781903, + 0.025059044, + -0.018196994, + -0.002594207, + -0.027280666, + -0.021970967, + 0.0010828264, + 3.426602E-4, + 0.018405149, + 0.013949904, + -0.023541637, + -0.0076602353, + -0.004442515, + -0.0012172331, + 0.013309997, + -0.0014499505, + -4.3197908E-4, + -0.010738064, + 0.013037551, + -0.011759077, + 0.0010319401, + -2.3396791E-5, + -0.0078157, + 0.036951613, + 0.014855321, + -0.014202857, + -0.00962025, + 0.023813205, + -0.008352503, + 0.0058751027, + 0.031369288, + -0.0061144573, + 0.00456413, + 0.034186736, + 0.012131871, + -0.0036324728, + -0.02195132, + 0.022320434, + -0.0064897584, + -0.008683905, + 0.0027217683, + -0.0068318457, + 0.002478475, + 0.01133141, + 0.0062731667, + 0.017708415, + -0.010369405, + 0.013684162, + -0.012056072, + -0.009026735, + 0.0078215, + -0.0058157397, + 0.0015184239, + -0.022672348, + 0.024747506, + 0.006202546, + -0.015633544, + 0.02153415, + -0.024164127, + 0.008112313, + -0.0068808147, + -0.0072703683, + -0.004312884, + 0.021965826, + 0.013242631, + -0.011236109, + -0.014694062, + -0.0052875536, + -0.0056042504, + -0.014457777, + 0.0023302017, + 0.027751692, + -0.0070982166, + -0.01045923, + 0.0017949662, + -0.011918526, + 0.016653808, + 0.016031085, + -0.013319264, + 0.029869603, + 0.019106297, + 0.011504694, + 0.0073096477, + 0.024374913, + 0.0052363058, + 0.017893756, + -0.0142649105, + -0.025971346, + -0.006210669, + 0.030343367, + 8.0782955E-4, + -0.027785424, + 0.009479592, + -0.041300293, + 0.013019518, + 0.0021174352, + -0.021399062, + -0.0084820725, + -0.032159586, + 0.0080066845, + -0.01602615, + 0.0114371115, + -0.02929141, + -0.0012825897, + -0.014986574, + -0.023886712, + -0.0077860844, + 0.0061360686, + -0.009841122, + -0.01634141, + -0.02850533, + -0.004621234, + 0.011984489, + 0.018440926, + 0.008339578, + 0.009692162, + -0.01451384, + 0.029383006, + -0.024279874, + -8.120779E-4, + -0.033218283, + 0.018833218, + -0.008710928, + 0.0059684217, + -0.008875322, + 0.052621033, + -0.020877516, + -0.023445528, + -0.0025386314, + -0.01747047, + 0.012691586, + 0.0034448092, + -0.01179834, + -0.006187282, + 0.006742974, + -0.008357582, + 0.005324487, + 0.02196999, + 0.0030295816, + 0.025715493, + -0.008558384, + 0.013403952, + 0.014962625, + -5.143239E-4, + -0.0021408177, + -0.0050489395, + 0.026832797, + -0.00656413, + -0.010091632, + 0.019366257, + -0.012702894, + -0.008622867, + -0.009060844, + 0.015550425, + 0.011447976, + -4.1797294E-4, + -0.02805705, + 0.007356031, + 0.0058346796, + -0.026137201, + 0.0074951407, + -0.04498151, + -0.0137207545, + 0.024527, + 0.025573641, + -0.009201056, + -0.0061937515, + 0.004227095, + -0.007583756, + 0.022778537, + 0.0060357703, + 0.007885382, + -0.00899262, + -0.0035431802, + 0.0066519757, + -0.019027235, + -0.0069124326, + 0.0041016634, + 0.007714645, + 0.0069691082, + 0.00417512, + 0.0064741326, + -0.007657875, + -0.013732562, + 0.004312442, + -0.018197702, + -0.027587755, + 0.0068715573, + -0.0012825658, + -0.052045807, + -0.030675925, + 0.0054652975, + 0.0016171585, + 0.014002281, + -0.015477543, + -0.00842729, + 3.5978307E-4, + -0.0019277642, + 0.01300382, + 0.005205852, + 1.3765862E-4, + -0.017310927, + -0.019445185, + -0.016920345, + -0.025377028, + 0.009591192, + -0.008091707, + -0.022898378, + 3.3548137E-4, + -0.01091332, + -0.018512296, + -0.0049099214, + 2.4238505E-4, + 0.012707007, + -0.0042514284, + -0.0028257961, + 0.021346409, + 0.0029951467, + 0.0147838965, + 0.007573141, + -0.02575095, + -0.0050243135, + -0.014739811, + 0.0034989358, + 0.0016682263, + -0.0072850278, + -0.00904122, + 3.041788E-4, + 0.017572997, + -0.012022418, + -0.008680148, + -0.01488482, + 0.016825479, + 0.0048536756, + -0.013710085, + 0.010721548, + -0.0014003152, + -0.0012793517, + 0.009305529, + 0.015240605, + -0.0036377702, + -0.022269515, + 0.018472135, + -0.018374285, + 0.0042756354, + 0.039740983, + 0.005684942, + 0.022045521, + -0.030291017, + 0.0058090165, + -0.015391586, + 0.006625946, + -0.0067661745, + 0.015575788, + 0.030257167, + 0.011349173, + -0.04507806, + -4.5408658E-4, + 0.014728178, + -0.018719148, + 0.009353851, + -0.010392809, + -0.012708038, + -9.043915E-4, + -0.003573243, + 4.2038006E-4, + 0.015894707, + 0.0022784749, + 0.016468469, + -0.029702887, + -0.017394211, + -0.045781665, + -0.008042282, + -0.027059851, + 3.164365E-4, + 0.011941253, + 0.006972157, + -0.0070361253, + -0.017318357, + -0.013575624, + -0.03744317, + 0.0102426, + -0.017522374, + 0.018975805, + -0.011322727, + 0.006449927, + 0.0066005117, + -0.031654127, + -0.028448349, + 0.03408579, + 0.012680992, + 0.0063023907, + -0.003217277, + -0.007611386, + 0.009091438, + -0.010564241, + 0.0034175108, + 0.009626787, + -0.014965689, + 0.014845801, + 0.009677955, + 0.014270309, + -0.01630536, + -0.01499857, + 0.0061200326, + -0.012057812, + 0.01454922, + 0.027438778, + 0.026708268, + 0.014800873, + 0.01760736, + 0.008350129, + 0.011040638, + 0.015919873, + 0.0068795644, + 0.0069926493, + -0.031606544, + 0.024266327, + -0.0015235426, + 0.0013723038, + 0.009279152, + 0.011062664, + -0.011165593, + -0.0022778625, + -0.005116967, + -0.013762992, + 0.008861815, + -0.024451775, + 0.0026497329, + -0.025406932, + -0.017514156, + -0.0017074624, + 0.022713423, + 0.004098307, + -0.014000073, + -0.0060214507, + -0.0069171744, + 0.008588624, + 0.014576211, + -0.024731582, + 0.010121947, + 0.021823335, + 0.0011881428, + -0.011393757, + 0.0016795241, + 0.015516366, + -0.003756503, + -0.0027989203, + -0.018329524, + -0.010022419, + -0.0095962975, + -0.008904942, + -0.026140029, + -0.0014259614, + -0.03377035, + 0.013388428, + -0.0020536887, + 0.0033380631, + -0.01647246, + 0.033826552, + -0.004567059, + -0.023964414, + -0.023703253, + 0.010699111, + -0.006284135, + 0.019041438, + 0.022144245, + -0.0094098635, + 0.007000269, + 0.017363045, + -0.0010933642, + 0.006465797, + -0.01508734, + 0.022323906, + -0.01564358, + 0.014363399, + 0.012820236, + -0.003311064, + 0.005459256, + 0.007948438, + -3.587772E-4, + 0.006826862, + 0.0023951032, + -0.005292399, + -0.005018996, + 0.01599911, + -0.009605916, + -0.017082628, + 0.024171008, + 0.012397488, + -0.0148661705, + -6.469493E-5, + 0.0065768287, + -0.006996485, + 0.0042998428, + 0.0096478155, + -0.009830332, + -0.024515554, + -8.53128E-5, + 0.012379728, + 2.5241126E-4, + 0.0138673745, + 0.0019440288, + -0.015719786, + -0.016982779, + 0.0065496117, + 0.014207508, + -0.005538536, + -0.005841977, + 0.0013830338, + -5.161485E-4, + -0.002078895, + -0.0039135204, + -0.0080884965, + 0.038193673, + 0.008698403, + 8.70066E-4, + 0.011981604, + -0.0075358246, + 0.013905216, + 0.0071099666, + -0.0021035606, + -0.015498698, + -0.007225843, + 0.007213529, + -0.002383566, + -0.0019204008, + 0.0021689036, + 0.020210268, + 0.0036130177, + -0.0047083823, + 0.0072272853, + -0.019904697, + -0.03505297, + 0.003994726, + 0.005186713, + -0.015525665, + -0.017740216, + -0.0029223866, + 0.003273655, + 5.772687E-4, + -0.0069930204, + 0.0023954096, + -0.033747025, + -0.0015517987, + -0.021810263, + -0.0041663535, + -0.002380538, + -0.014284735, + -0.0056779217, + 0.0029722883, + -0.021596141, + -0.0028288478, + 0.012348318, + 0.01759772, + -0.011684405, + -0.0059603504, + -0.003996987, + -0.0063602943, + -0.018886266, + 0.003916984, + 0.007859327, + -0.024317967, + 0.015267614, + -0.0024403008, + -0.023329137, + 0.0058515216, + 0.018645199, + 0.008057002, + -0.0122596035, + -0.021084916, + -2.463497E-4, + -0.025495874, + 0.008788183, + -0.008994245, + 0.0036804492, + 0.0058113076, + 0.0067158164, + 0.017949192, + 0.006825493, + -0.039276365, + 0.017511927, + -0.010890143, + 0.027452542, + 0.013576831, + 0.00768892, + -0.0047585354, + -0.008267144, + -0.004940464, + 0.003085394, + -0.0065816697, + -0.0066897245, + 0.019111898, + 0.0015555676, + -1.5676604E-5, + -0.031648543, + -0.013198729, + 0.0027411648, + -0.0042444407, + 0.011119392, + -0.02736295, + -0.010463772, + -0.0043006483, + -0.01399314, + -0.0010882412, + 0.028576275, + -0.007911677, + -0.011375779, + 0.025825445, + -0.0021787877, + -0.023194198, + 0.016360994, + 4.299532E-5, + 0.0041892156, + -0.011761984, + 0.008861294, + -0.0102077145, + 0.030330492, + 0.012185129, + 0.018226828, + -0.011137104, + 0.015924005, + -0.021589877, + -0.026476724, + 0.025027271, + 0.004111402, + -0.005911173, + -8.921675E-4, + 0.0035023475, + 0.0116815595, + 0.01662256, + 0.024291027, + -0.01736567, + -0.0064613046, + -0.0100976955, + 0.012428137, + -0.009530576, + -0.01657499, + 0.0055276407, + -0.010923003, + -0.0063454635, + 0.00985401, + -0.01384977, + -0.0074321036, + 0.008329258, + 0.0061213085, + -0.01905867, + -0.0039281603, + -0.015897376, + 0.0035794736, + 0.031654205, + -0.016040333, + 0.019701118, + -0.030740606, + -0.02548054, + -0.025918894, + 0.001912292, + 8.0051024E-5, + -0.02531703, + 0.0045065037, + 0.015932143, + 0.0046025654, + 0.015090915, + -0.0071134544, + 0.004593228, + 0.0012403678, + -0.0066956864, + 0.013874351, + -0.018599857, + -0.007045056, + 0.02353871, + -0.008601068, + -0.007875929, + -0.014690551, + -0.0024791355, + -0.012799467, + 0.009535725, + 0.01069415, + -0.016945232, + 0.0043358593, + 5.9521033E-5, + 0.009322015, + -2.5377425E-4, + 0.006239028, + 0.017397653, + 5.401508E-4, + -0.009180504, + 0.009624248, + 0.013693576, + -0.0010689402, + -0.011275512, + -0.01438658, + -0.010967502, + -0.0035789309, + 0.027598623, + 0.011220126, + 0.001747051, + -0.043298256, + 0.0022970547, + -0.013764496, + -0.03481238, + -0.010618165, + -0.026565459, + -0.039252996, + 0.0067285844, + -0.008493308, + 0.020664304, + 0.0042225667, + -0.0017859191, + 0.0060789487, + 0.0058643483, + 0.02284743, + -0.011299158, + 0.014896512, + -0.004236511, + -0.017214056, + 0.0025788683, + 0.00927849, + -0.006481382, + -0.015966304, + -0.004445976, + 0.007109992, + -0.0062885573, + -0.014539128, + 0.0055430904, + 0.014655782, + -0.010195779, + 0.0043520075, + 0.0067497147, + 0.018701838, + -0.01027819 ], - "paletteEmbedding": [ - -0.015037872, -0.04414445, 0.006756128, 0.0013133149, 0.039882, - 0.026945695, 0.0123123815, 0.06431054, 0.02225544, 0.06514511, - -0.0034178875, 0.012206983, 0.01862453, 0.018841853, -0.029475655, - 6.256567e-4, -0.0015861914, 0.018089518, 0.020855805, 0.041322123, - 8.679044e-4, -0.015024603, -0.04032424, -0.048868287, 0.0048415987, - 0.0150836, 0.023566507, 0.051214166, -0.03364629, -0.015869003, - -0.05223978, -0.052638225, -0.029010283, -0.02458726, -0.02533042, - -0.021937719, -0.0550156, -0.0073614935, -0.069516964, 0.013340254, - 0.031034816, -0.032945134, 0.006300181, -0.045159366, 0.048405, - 0.030083712, 0.02918034, -0.026927365, -0.0044567348, -0.045800913, - 0.022021865, -0.03441633, -0.05306898, 0.06532978, 0.0018692473, - -0.015231507, -0.010559331, 0.036199633, -0.003782788, 0.028104192, - 0.038797565, 0.05098984, 0.064386, 0.021733062, -0.007022434, - -0.012875915, -0.0023962266, 0.03938887, -0.021478632, -0.008976495, - -0.032921154, -0.008288706, 0.07549523, -0.0061797635, 0.0029616188, - -0.03452862, 0.0266995, -0.046293795, 0.015048582, -0.0089461645, - 0.035053972, 0.019144453, 0.069906, -0.0014334453, 0.012542007, - 0.0028948823, 0.032493927, -0.017366128, 0.0042640325, -0.019763343, - -0.04982153, 0.011833363, -0.050873283, -0.007177063, 0.014540738, - 0.03577762, 0.039938793, 0.051806916, 0.044607602, -0.002069949, - -0.013170532, -0.010265227, -0.05429139, 0.018152038, -0.0074578035, - -0.027104482, 0.008670567, -0.04405085, -0.016828692, 0.011392803, - -0.040504426, 0.08132424, -0.015624489, 0.03176979, -0.03416763, - 0.03946175, -0.030731628, -0.042711608, 6.8458647e-4, 0.04302436, - -0.0011470183, 9.670349e-4, -0.015577434, 0.002969841, -0.039386816, - 0.0109144915, -0.03634762, 8.64568e-4, -0.017543692, -0.012653153, - -0.007510075, -0.081240565, -0.019610643, 0.061901137, -0.038836047, - -0.031705342, 0.024051446, 0.020800674, 0.07642649, -0.049863547, - -0.0042472472, 0.011255229, -0.011283885, -0.009913001, 0.0011102635, - -0.021787375, 0.0028425367, 0.029398032, -0.038634356, 0.026765775, - 6.7713705e-4, 0.03307348, 0.0022638692, 0.026005035, 0.011168729, - 0.019609788, -0.002824001, -0.006019905, 0.009512107, 0.047553357, - 0.0034096004, -0.008139574, -0.012389237, -0.025599128, 0.053267345, - 0.0094946325, -0.026480163, 0.0030103168, 0.007097672, 0.059011046, - 0.08246814, 0.09887123, -0.002197067, 0.020137146, 0.0028282274, - 0.0981473, -0.0010583703, -0.07320839, 0.04603003, 0.041918356, - 9.2027994e-4, -0.035246372, 0.012783819, 0.01605684, 0.020522486, - -0.020183777, 0.061202258, -0.024453212, -0.030972235, 0.023395777, - 0.003886863, -0.11697642, -0.0055811303, -0.009189467, 0.0018216548, - -0.04643623, 0.0475966, -0.026544154, 0.008322402, 0.032571215, - 0.025206285, 0.014409662, 0.0065949257, -0.0037535578, 0.015201495, - 0.042804167, 0.043522242, -0.0073637934, 0.024289822, -0.019196995, - 0.015622892, 0.033010386, -0.037712228, 0.010336509, 0.028843183, - -0.042710036, 0.0042899437, -0.00981033, -0.057199344, -0.047815073, - 0.043106154, 0.018289408, -0.022110779, 0.0030467315, 0.0074154492, - 0.035445593, -0.02570548, 0.019584065, -0.024049822, 0.012643113, - -0.013065914, 0.03459251, -0.010357322, 0.031582475, -0.0111113805, - -0.05564631, 0.0332943, 0.046660107, 0.0015684632, 0.03367722, - 0.06300452, -0.022426564, 0.025275325, -0.06269025, 0.0038577733, - 0.0055000037, -0.052621827, -0.0078064553, 0.024099963, 0.005371352, - 0.05166467, 0.0354595, 0.026591623, -0.048350967, 0.0075598233, - -0.014576658, 0.044175174, 0.04326848, 0.004157519, -0.019874142, - 0.030794596, -0.019759366, -0.006467441, 0.027231954, -0.0027306487, - 0.04373945, -0.022494553, 0.016020138, 0.01109714, 0.0018270576, - -0.021074947, 0.016825477, -0.02913998, -0.029346671, 5.82698e-4, - 0.010897358, -0.05011601, -0.018452547, 0.019827733, -0.02761007, - -0.026735019, 0.027054671, -0.0058972696, -0.005586941, 0.044104908, - 0.027462956, -0.04439599, 0.011035507, -0.039319508, 0.051367566, - -0.031949665, -0.015615404, 0.112321295, 0.01976149, -0.02900602, - -0.05689666, -0.041977357, -0.021466373, -0.01996436, 0.015878363, - 0.046799626, 0.12436016, 0.044320825, -0.015451122, -0.04892961, - 0.036547173, 0.062954426, -0.040823035, 0.049457498, 0.0031381184, - -0.005366521, 0.028001668, 0.02018005, 0.028588453, -0.016496249, - -5.072791e-6, -0.030873552, 0.013776984, -0.052676044, -0.035986032, - -4.987123e-4, -0.01327464, -0.01784478, 0.015821617, 0.02323405, - 0.0494611, 0.004686985, -0.08381012, 0.033757288, 0.033202533, - 0.0074828854, 0.018671865, 0.056174815, -0.03300359, 0.035118297, - -0.022911593, 0.024291746, 0.01715714, 0.004332439, 0.014092141, - -0.030519728, 0.032101374, -0.0076385103, 0.029948233, -0.031908758, - 0.015645064, -0.010580553, 0.017830579, -0.014549583, -0.014018152, - -0.004021537, 0.001344887, 0.020007621, -0.022093551, -0.020738052, - 0.0025867193, -0.0010059462, -0.029941002, -0.042845245, -0.011103737, - 0.037309844, 0.01996133, 0.003090156, 0.05504695, -0.028862799, - -0.011255559, -0.0235189, 0.030139424, 0.0075000413, 0.055141773, - -0.020374974, 0.07027135, 0.02157381, -6.8755675e-4, 0.037746403, - 0.008656461, 0.020075882, -0.031283427, 0.0045053335, -0.0037854463, - -0.033140622, 0.0072657336, -0.046254884, -0.035948627, -0.05124674, - -0.039304018, 0.020348502, -0.01146768, -0.0060526505, 0.012502221, - 0.014179287, 0.0126994485, -0.04075692, -0.013123807, 0.046246357, - 0.006581061, -0.04984694, 0.043207254, 0.04123289, 0.023217965, - -0.05222357, 0.0038170493, 0.017867185, 0.016771944, 0.018914718, - -0.0042180065, -0.0022473803, -0.055190194, -0.035114188, -0.01253678, - -0.04504772, -0.06704091, 0.023342932, 0.010662966, -0.05929745, - 0.0042024115, -0.0086248955, 0.009483841, 0.009200685, -0.0102687795, - 0.015766907, -0.025900647, -0.058150012, -0.023845324, -0.029304843, - 0.0057818242, 0.036304545, 0.036667377, 0.010043804, 0.012673137, - 0.080277376, -0.028979056, 0.011758757, 0.022735285, -0.047533795, - 0.006310267, 0.034048386, -0.0059390943, -0.01275669, 0.009799718, - -0.0020701373, 0.026725406, 0.05925284, -0.029186279, -0.031043056, - 0.032693733, 0.00530272, -0.10043186, 0.008299801, 0.003918706, - 0.020648202, -0.042250466, -0.028234761, -0.01921033, -0.011480635, - 0.019058142, -0.03591256, 0.027882643, -0.03515431, 0.024629623, - 0.0046284697, 0.019878896, -0.033944294, -0.02200394, -0.007210157, - 0.023221329, 0.0076251677, 0.008374546, -0.02081739, -0.03863961, - -0.014495604, -0.001210612, 0.023103839, -0.019773075, -0.036792416, - -0.011421879, 0.0126995295, -0.026685307, 6.9385406e-4, 0.041318905, - 0.015338204, 0.008442431, 0.07613373, -0.006989286, 0.0025842225, - -0.042334843, -0.04470587, 0.036554158, -0.006564896, 0.028816968, - -0.012380032, 0.013850889, -0.0076136957, -0.03348421, 0.027773254, - 0.02372228, 0.017230263, -0.03391206, -0.030248096, -0.007316474, - -0.020883443, 0.011399665, -0.0077237263, 0.032256033, -0.0463095, - -0.020732915, 0.0028451944, 0.026684508, 0.014215978, 0.027783845, - -0.039917827, 0.0091656605, 0.0024518152, 0.032980543, 0.033283513, - -0.017593024, -0.02236741, -8.8660535e-4, -0.021259641, -0.0222353, - 0.047099616, -0.0012691595, -0.0041750157, 0.0067440546, 0.006062156, - -0.008053667, -0.028041814, 0.021498794, 0.0515426, -0.00822693, - -0.0030277318, 0.014290702, -0.0328594, -0.041107718, -0.010670929, - 0.0029301369, -0.013081969, -0.07780754, -0.019936334, -0.02856742, - -0.015086697, 0.006563845, -0.023358567, -0.009010881, 0.008740065, - 0.013704607, 0.024925552, -0.0047489884, -0.02747604, -0.050200067, - -0.02898743, -0.007535945, -0.024914462, 0.019333532, 0.043373298, - 0.050685793, -5.737949e-4, -0.031489976, 0.036517683, 0.0435263, - -0.021483947, -0.012272219, -0.0016723959, 0.025127012, 0.03371916, - 0.003414689, 0.00919623, -0.0073060812, 0.038195744, -0.024841564, - 0.039243586, -0.007139357, 0.0035127208, -0.050650913, 0.024964683, - 0.026233882, 0.009926417, 0.003372502, -0.020653363, 0.001449945, - -0.03990844, -0.030768635, 0.007185915, 0.021771338, -0.032103516, - -0.014774059, -0.062871814, 0.0022441891, 0.0023562938, 0.019325985, - -0.023079526, 0.050907537, -0.0339718, 0.079281546, -0.030623041, - 0.018291399, -0.030634249, -0.0019355014, -0.016967323, 0.003826739, - 0.016222533, 0.0070953476, -0.020851308, 0.03018691, 0.0016921511, - 0.045173127, -0.02949238, 0.03745033, 0.01374692, -0.001294364, - 0.024632728, -0.032596026, 0.039843887, -0.058003053, -0.017298756, - 0.03690329, -0.04270612, -0.028874405, 0.022719769, -0.07234808, - -0.026325583, -0.034965634, -0.03473369, -0.015014076, 0.0074457065, - 0.018909154, 0.02808038, -0.031480458, 0.006247522, -0.0035165604, - 0.023159735, -0.0068496764, 0.04834152, -0.04671379, 0.02182039, - 0.026071912, -0.014237406, -0.020785652, 0.04943479, 0.016893864, - -0.023166655, -0.0757074, -0.016261926, -0.025149755, -0.0051359646, - 0.0061241933, 0.0015505947, 0.03407068, -0.03653568, -0.025954157, - -0.018675929, 0.046296388, 0.04397373, -0.009218404, 0.0027044495, - -0.04410897, -0.022082904, 0.021599969, -0.0018006407, 0.00782881, - -0.01196533, -0.012943234, -0.014800257, 0.0020562497, -0.025114477, - 0.002283496, 0.01206208, 0.05524813, 0.0288873, -0.08130045, - -0.014781937, -0.010180409, -0.0016554461, -0.022402953, 0.022017663, - 0.040238045, -0.035902433, -0.010016137, -0.00911147, 0.015952995, - 0.06254889, -0.0019288149, -0.012238773, -0.0039245817, 0.005217588, - -0.038779676, -0.009845092, 0.0074770683, -0.020644061, -0.07162087, - 0.005939106, 0.006718774, -0.0054387944, -0.030775508, 0.013715501, - 0.016580813, 0.0074977106, 0.0013032497, 0.0034623207, -0.036309056, - 0.04326931, -0.023551896, 0.031009976, 0.008765175, -0.032484505, - 0.008743133, -0.0070017767, 0.024044026, 0.05637686, 5.8236916e-4, - 0.02388507, 0.01703452, 0.027906923, -0.015892856, -0.08863498, - -0.01699969, -0.028139504, -0.007493932, 0.046418127, -0.017380081, - 0.013918578, -0.027445594, 0.060622495, 0.049194954, 0.04323786, - 0.03916481, 0.06943791, -0.034830276, -0.029979542, -1.3876505e-5, - 0.011323264, 0.031683266, 0.014793071, -0.03536706, 2.9671958e-4, - -0.027525453, 0.009897316, 0.07614366, 0.051712938, 0.007827564, - -0.018101323, 0.037073407, 0.019201344, 0.030121895, -0.0074895034, - 0.025920559, -0.0047887196, -0.012502845, 0.027934125, 0.027717536, - -0.063975364, 0.004948768, -0.039663415, -0.028209602, -0.026871152, - -0.017718362, -0.01009462, 0.032844894, 0.007987634, 0.030586904, - 0.030072603, -0.021700189, -0.027495485, -0.05370509, -0.006245592, - -0.029028203, 0.010866027, 0.020962544, -0.041686464, 0.017299654, - -0.031482477, -0.020876018, -0.03990737, -0.04618063, 0.024134137, - 0.007923714, -0.01220119, 0.02475822, -0.030605068, 0.013653841, - -0.020494835, 0.036705907, -0.01166961, -0.0061438116, 0.0017818649, - 0.061409853, 0.029979482, 0.0033104357, -0.036155198, -0.009800694, - -0.014474703, -0.0103656715, -0.012011474, -0.0038160114, -0.0033822232, - 0.07526069, -0.057556164, 0.004943401, 0.01981461, -0.0262866, - -0.034521274, -0.061440837, -0.047901925, 0.013871748, 0.004081752, - -5.4260716e-4, 0.0037711835, -0.011635653, -0.0072635794, 9.761859e-4, - -0.003331696, -0.019779516, -0.028237507, 0.0036616388, -0.0073880274, - 0.00250012, 0.021200538, 0.011077113, 0.0060935155, 0.0049766954, - 0.06286473, -0.024767188, -0.034030635, 0.020994553, 0.008312261, - -0.0047518406, -0.041947003, -0.05548695, 0.019212933, 0.013671783, - 0.013893108, -0.030256975, -0.012095876, 0.01163377, -0.030754095, - -0.04765091, 0.028078977, -0.03184882, 0.033212807, 0.037522044, - -0.02034172, -0.04260259, 0.032016404, 0.01806991, -0.01935955, - -0.07828377, -0.023189923, -0.07527573, -0.047357082, -0.03736952, - 0.04412147, 0.024493158, 0.055060152, 0.025118673, 0.016588924, - 0.039056312, 0.026230274, -0.0017602092, 0.013119308, 0.047164284, - 0.043557644, -0.0057279253, -0.007351086, -0.029294694, -0.007862142, - -0.030923137, 0.00883786, 0.017111635, 0.0019932075, 0.04489218, - -0.031208606, -0.03042974, 0.029873867, 0.04201072, -0.012858688, - 0.018079022, 8.915237e-4, 0.03273948, 0.021700773, -0.024031553, - -0.0066504534, 0.036013093, 0.014363925, -0.06518034, 0.003236116, - 0.005221415, -0.014786903, -0.016585406, -0.06893728, 0.015877824, - 0.029597294, -0.013877204, 0.052142177, 0.026188996, 0.021781357, - -0.024474185, -0.055872414, -0.039661203, -0.044725895, -0.054298807, - -0.018684534, -0.025002215, -0.047273327, 0.008829124, -0.033986386, - 0.00825042, 0.028870385, -0.028111005, 0.010071086, -0.028115323, - -0.05469372, -0.056593936, 0.061301228, -0.040487412, 0.027353348, - -0.012955203, -0.049994756, -0.024460545, -0.008906353, -0.024758095, - -0.040750504, 0.0021420098, -0.015845606, 0.029069291, -0.065189935, - -0.017895436, -0.010982436, 0.030640462, 0.06378015, 2.4745965e-4, - -0.035182446, -0.03015558, -0.028452814, -0.03727776, -0.039619304, - 0.015112511, -0.01912799, -0.056387953, 0.014808034, -0.009360673, - 0.040470712, 0.026405644, 0.0058145053, 0.050078683, 0.02323674, - 0.027115721, 0.044125706, -0.039049875, -0.015406474, -0.010845089, - -0.014614071, -0.011945603, 0.015447973, 0.02039925, 0.030331995, - 0.022054104, -0.00730116, -0.037248366, -0.019101089, 0.0020407564, - 0.028640386, 0.03325658, 0.010191527, 0.0029956393, 0.030414855, - 0.029121133, -0.011277931, -0.025673022, 0.038228992, -0.014745955, - 0.009485538, 0.0103578195, -7.23792e-4, 0.0460722, -0.038130976, - -0.010051542, 0.018926658, -0.070431985, 0.006184306, 0.005303294, - 0.003793187, -0.03220521, 0.0014623703, -0.03370675, 0.023540692, - -0.048884723, -0.04049081, -0.013881932, -0.027388163, 0.024656609, - -3.408405e-5, 0.06616708, -0.048633717, -0.028577777, 0.02359621, - 0.032298405, 0.021673208, -0.0020301852, -0.021348463, 0.008817015 + "paletteEmbedding" : [ + -0.0026479736, + -0.03839519, + -0.012416301, + 0.006888023, + 0.03642602, + 0.069327824, + 0.031743355, + 0.041657895, + -0.0026158888, + 0.044355217, + 0.002023533, + 0.060224712, + 0.071286164, + -0.025629874, + 0.007682774, + 0.063493766, + 0.015414181, + 0.005173579, + -0.01880665, + -0.004933205, + 0.021230115, + -0.046082467, + 0.05113034, + 0.060700715, + 0.020777548, + -0.04296688, + 0.024929632, + 0.031167686, + 0.02678116, + 0.02663553, + -0.0012606235, + -0.010686512, + 0.012329132, + 0.039665844, + -0.01778665, + -0.019474095, + -0.033026613, + -0.004607905, + 0.011233205, + 0.023263821, + -0.023544678, + 0.0023714823, + 0.012436359, + 0.01686968, + 0.012335544, + -8.1419974E-4, + -0.0041610505, + -0.035073247, + 0.057193544, + -0.040489547, + -0.0032866874, + 0.049228165, + -0.04048243, + -0.003798296, + -0.039851807, + 0.02159868, + 0.013414146, + -0.019068887, + -0.012626331, + 0.06504882, + 0.017160693, + 0.020823851, + 0.045462873, + -0.014506047, + -0.052718867, + 0.012177066, + 0.06233616, + 0.016992297, + -0.002607109, + 0.010831155, + 0.03275968, + -0.012670055, + 0.04850556, + 0.019137789, + 0.0018532535, + 0.016581934, + -0.007844467, + 0.0027013307, + 0.036501706, + 0.0708593, + -0.0048429514, + 0.034082387, + 0.019167414, + 0.0073481244, + -0.011119055, + 0.012152486, + 0.086710736, + 0.05198613, + 0.06549037, + 0.058382668, + -0.0036838974, + -0.0188002, + -0.0036867182, + -0.012423392, + 0.03925569, + -0.0041537085, + 0.053891882, + -0.0069411634, + -0.01214872, + 0.003126392, + 0.061573595, + -0.0032227454, + 0.012900239, + -0.032007035, + 0.009673907, + -0.023102451, + 0.038815018, + 0.045006387, + 0.02775746, + 0.052493416, + -0.009617913, + -0.03371821, + 0.034161814, + -0.009381798, + -0.0013293665, + -0.023133062, + 0.013352835, + 0.016508011, + -0.05459474, + 0.020101186, + 0.015994659, + -0.030230947, + 0.008661509, + -0.04571424, + 0.011324341, + 0.04497617, + 0.0015384777, + -0.030260928, + 0.030743286, + 0.015022937, + 0.043169413, + 0.021770013, + -0.04071041, + 0.020771813, + 0.051786996, + -0.01990213, + -0.007541228, + 0.035856105, + 0.006945364, + 0.028837524, + 0.0026491692, + 0.025862344, + 0.03150438, + 0.019417241, + -0.023677383, + -0.020116137, + 0.022392338, + 0.036529094, + -0.02067994, + 0.022780789, + -0.031041708, + -0.024634222, + -0.0047807065, + -0.016718615, + -0.10099189, + -0.024794368, + -0.001016557, + -0.024573963, + 0.014686866, + -0.031826332, + 0.061397586, + 0.020472622, + 0.033131033, + -0.047714796, + 0.030045789, + -7.5069664E-4, + -0.04058728, + 0.029011166, + 0.002493538, + 0.037867785, + 0.007416183, + 0.018956153, + 0.015725682, + 0.0022727558, + 0.026640052, + -0.024205597, + 0.005274971, + 0.011438223, + 0.021479838, + -0.035874125, + 0.03013861, + -0.0065638577, + 0.010309042, + -0.01582841, + -0.051671587, + 0.016570674, + -0.030225744, + -0.015648065, + -0.047127604, + -0.01504179, + -0.016620435, + -0.048917256, + -0.0025659837, + 0.046345215, + -0.010779257, + -0.026143612, + -0.002562122, + 0.043143675, + 0.05480278, + 0.02452363, + -0.014750845, + 0.010409424, + 0.007285784, + -0.007968575, + 0.0014719893, + -0.021441089, + 0.0072259963, + 0.0046984563, + -3.655885E-4, + -0.07778212, + 0.02567302, + -0.004136082, + 0.018912517, + -0.007217645, + -0.042939033, + 0.02236993, + -0.04435398, + 0.05865413, + -0.0070453226, + 0.016327992, + 0.033349417, + 0.0062487726, + -0.040500317, + 0.005041153, + -0.03384821, + 0.0013267593, + 0.011807375, + 0.04626175, + 0.017448677, + -0.026106784, + 8.18942E-4, + 0.031610165, + -0.037101652, + -0.04782821, + 0.01891358, + 0.049048003, + 0.0037915476, + 0.0046295514, + -0.0044584363, + 0.057077654, + 0.0077097183, + -0.005099208, + -0.012265784, + -0.02689429, + 0.00583487, + 0.0028827253, + -0.01953926, + 0.03199646, + 0.07503612, + 0.008016641, + -0.04780997, + -0.017380878, + -0.028884033, + -2.034282E-4, + -0.0048990594, + 0.003943578, + -0.014012335, + 0.0111297835, + -0.021006301, + -1.4196076E-4, + -0.011797052, + -0.07032637, + 0.061763894, + 0.021469323, + -0.016943097, + -0.0045879944, + -0.014928611, + -0.012592864, + -0.003024752, + -0.013827083, + 0.034086186, + -0.015800428, + 0.0016741746, + 0.014409194, + -0.00936641, + -0.032496475, + -0.040440682, + -0.0032363157, + -0.050385002, + 0.008670694, + -0.050282855, + 2.1787065E-4, + -0.0868196, + 0.03351387, + -0.013701348, + 0.034951117, + 0.012877493, + 0.050635174, + 0.06537898, + -0.02277772, + 0.04478353, + 0.014158583, + 0.031664994, + -0.0073246886, + 0.0021649697, + -0.035682812, + 0.003927166, + 0.018594015, + 0.073619336, + 0.01841249, + -0.042822085, + 0.038081817, + -0.035236385, + 0.0018774321, + 0.03879992, + -0.0076121553, + -0.0052637225, + 0.031211952, + -0.02589214, + -0.022325309, + -0.04263881, + -0.0039428747, + -0.06864138, + -0.01582219, + -0.031225491, + -0.008752673, + -0.016354835, + -0.005004233, + 0.019459194, + 0.037859358, + -0.0049560983, + -0.03877452, + -0.008338076, + 0.032427397, + 0.012709291, + 0.017697109, + 0.09985999, + -0.013734015, + -0.06983877, + 0.032055832, + -0.035029, + -0.023314884, + 0.021540703, + 0.02284397, + 0.010481622, + -0.01917818, + 0.02571884, + -0.016379379, + -0.05331574, + 0.046293963, + 0.0011264766, + 0.060975704, + -0.018975744, + -0.011966497, + -0.061135825, + -0.03763623, + -0.03519703, + -4.9400004E-4, + 0.0062303166, + -0.03912495, + -0.011009977, + 0.003979185, + -0.009477509, + 0.0044400776, + -0.008420677, + -0.0629741, + -0.016840322, + 0.018934049, + -0.012887681, + -0.030945266, + 0.004091855, + -0.004059493, + -0.05838381, + -0.013366112, + -0.01631153, + -0.043503802, + -0.06925769, + -8.7771897E-4, + 0.016013868, + -0.07608525, + -0.015573, + 0.026966816, + 0.036903743, + -0.004893012, + 0.01653568, + 0.04594083, + 0.005285771, + 0.015316154, + -0.030945402, + -0.022654302, + 0.010994484, + -0.017591257, + -0.034543786, + -0.10057273, + 0.023420854, + -0.014926693, + 0.027667029, + -0.019595103, + -0.0013850931, + 0.03675091, + -0.02220186, + -0.011074172, + -0.017687809, + 0.05506869, + 0.012037215, + 0.0042189746, + 0.032253604, + -0.019744301, + 0.038122535, + 0.05340478, + -0.030491492, + -0.031859633, + 0.017696742, + 5.798532E-4, + 0.023279695, + -0.03881437, + 0.0046128305, + -0.012352976, + -0.086683095, + 0.037924234, + 0.0074506956, + -0.007687901, + -0.033853855, + -0.016649798, + 0.009767552, + 0.031497024, + 0.0131208785, + 0.019399382, + 0.016231533, + 0.006545643, + 0.020968053, + -0.015551131, + 0.0073778383, + 0.017010113, + -0.020137766, + 0.0056212163, + 0.010269635, + 0.060880538, + -0.032974478, + -0.029857656, + -0.04921229, + -0.07070212, + 0.004996822, + 0.03563617, + 0.013016033, + 0.03847546, + -0.01170876, + 0.019797325, + -0.016646776, + -0.009732859, + 0.038286645, + -0.029369835, + 0.018115623, + -5.1725254E-4, + 0.02382004, + 0.009804894, + -0.0713817, + 0.016980138, + -0.012737317, + 0.024037413, + 0.03227075, + 0.0012078834, + 0.02189531, + 0.008498828, + -0.008172366, + -0.028400121, + 0.022861306, + 0.0071172044, + 0.018722972, + -0.041070286, + 0.051429927, + 0.0014220444, + -0.039207306, + 0.017727578, + 0.04777293, + 0.036539856, + -7.4863253E-4, + -0.003726939, + 0.011264697, + 0.028156115, + -0.01328043, + 0.06617866, + -0.0046560327, + 0.02085687, + 0.0041203173, + -0.03313679, + -0.053167555, + -6.0980686E-4, + 0.0060792193, + 0.007041558, + 0.03432794, + -0.008553166, + -0.042712245, + -0.015220763, + 0.06774662, + -0.0373445, + -0.009617029, + 0.033269625, + -0.0026965803, + 0.03437188, + 0.02502659, + -0.0059197024, + 0.012418563, + 0.0049863616, + 0.019689472, + 0.05174302, + 0.003932421, + 0.05566614, + 0.0044928445, + 0.03342987, + -0.06065045, + 0.018673047, + -0.016671529, + 0.013846614, + 0.012565142, + -0.016428323, + -0.011001304, + -0.043043282, + 0.010521737, + -0.010851408, + -0.015882026, + -0.052785836, + 0.0033890274, + -0.045266166, + -0.032320175, + 0.016562048, + -0.010514767, + -9.966791E-4, + 0.07016957, + 0.026753914, + 0.026644822, + 0.013630366, + 0.019401792, + 0.029024765, + 0.0033211114, + -0.050246447, + -8.865855E-4, + -0.04795356, + -0.014573806, + -0.03994066, + -0.0053345603, + -0.0287017, + 0.010401509, + 0.019471757, + 0.013410134, + -0.026554741, + 0.0012757311, + 0.001891051, + 0.01456709, + -0.016465215, + -0.05387685, + -0.04732025, + 0.007476814, + -0.025808014, + -0.0011121399, + 0.012062, + -0.0053188056, + 0.00433223, + -0.015949873, + 0.01719879, + -9.24384E-4, + -0.014302921, + -0.009774046, + 0.02298911, + 0.015475672, + -0.011810669, + -0.022393243, + 0.02618873, + -0.002602949, + 0.01506405, + -0.05510371, + -0.021342885, + -0.048976783, + -0.020199224, + -0.024090922, + 0.025285473, + 0.0323007, + 0.0072043003, + 0.0053568636, + 0.022471962, + 0.0018577821, + 0.04010857, + 0.066922754, + -0.02483414, + 0.014336283, + -0.03985432, + -0.06910328, + -0.028599031, + -0.0071702995, + 0.009031302, + 0.04478058, + -0.032772798, + 0.005478303, + -0.014475563, + -0.004929102, + -0.04043603, + 0.0014282939, + -0.030604417, + -0.034429878, + 0.013855018, + 0.0021222641, + -0.04011679, + -0.07382089, + -0.008158229, + 0.031053787, + 0.03690172, + 0.00891601, + 0.022281902, + -0.0042868797, + -0.009962989, + 0.023579605, + 0.014471965, + 0.08394814, + 0.0040303324, + 0.02158934, + -0.025238762, + 0.015088584, + 0.02792796, + 0.0349601, + 0.006038638, + 0.012865348, + 0.078252986, + -0.015140705, + 0.027987717, + -0.06154483, + -0.02663726, + 0.025040567, + -0.04335889, + -0.04020403, + 0.010330901, + 0.014186556, + 0.021639638, + -5.904672E-4, + 2.4687225E-4, + 0.015207075, + -0.009749995, + -0.025892802, + -0.00923925, + -0.01717801, + -0.044583194, + -0.042388014, + 0.047534592, + -0.010270828, + 0.032371454, + -0.01561312, + 0.027177779, + -0.0219207, + 0.04186213, + -0.018756194, + -0.01796414, + -0.015052778, + 0.012486158, + -0.035385314, + 0.039138578, + -0.030575745, + 0.023033474, + -0.014784758, + -0.03375107, + -0.05192088, + -0.039542098, + 0.023720229, + 0.058277503, + 0.045962792, + 0.046776775, + -0.024649411, + -0.01866345, + 0.03890176, + 0.040390816, + 0.0510018, + 0.0024526238, + 0.064099416, + -0.032470945, + -0.0022382173, + -0.021917319, + 0.037748296, + -0.07974938, + -0.017373838, + 0.004043908, + -0.0068302937, + 0.0145115005, + -0.06732619, + 0.016231816, + 0.058543198, + 0.03657479, + 0.009348869, + 0.005802431, + 0.0067030503, + -0.020907007, + 0.00911257, + -0.002632178, + -0.056689076, + -0.025621159, + -0.0025651138, + 0.013003267, + 0.079377376, + -0.0033745742, + -0.0054337196, + -0.030678004, + 0.044604957, + 0.02776137, + 0.06875875, + 0.004388483, + -0.041711822, + -0.041505676, + 0.03710783, + 0.03174139, + -0.053878337, + 0.00601784, + -0.056696564, + -0.021601705, + 0.043722127, + 0.0073943734, + 0.002154234, + 0.034402907, + 0.036438357, + -0.026716715, + -0.015315375, + -0.021274574, + -0.015929086, + 0.06418878, + 0.031840336, + -0.004519192, + -0.013444483, + -0.05454118, + 0.010965254, + 0.017903427, + 0.056157183, + 0.015318063, + -0.011027438, + 0.083181776, + 0.035133254, + -0.040735304, + 0.02387003, + 0.02416117, + 0.01965354, + -8.274885E-4, + -0.023446294, + 0.025141243, + 0.017117947, + 0.029584467, + 0.0045621777, + -0.0405969, + 0.010640565, + 0.027871655, + 0.022583324, + -0.019091628, + 0.025447102, + 0.018993704, + -0.057568613, + 0.026446646, + 0.012593636, + 0.05548156, + -0.0187669, + -0.027625967, + -0.0049779234, + -0.006115792, + -0.022395603, + 0.025844947, + 0.014619389, + 0.007450783, + 0.020304365, + -0.015975678, + 0.04613151, + 0.027134972, + -0.046141304, + -0.03526889, + -0.06252848, + -0.0041214675, + 0.08468718, + -0.038077343, + 0.02899498, + 0.005067831, + 0.053287137, + 0.018204821, + -0.053634852, + 0.0073232064, + 0.033743635, + -0.038349874, + 0.012818806, + -0.022372788, + 0.0021579422, + -0.030788356, + 0.015759237, + -0.013785838, + -0.022325147, + 0.021270381, + -0.085755415, + -0.011368017, + -0.06157529, + -0.020759296, + -0.012889695, + 0.021295315, + -0.03075349, + -0.025807507, + 0.01901578, + -0.026731813, + -0.0059559164, + -0.01917333, + -0.031142611, + -0.053841256, + 0.003095545, + -0.0036738964, + 0.08888684, + 0.0044686515, + 0.042876884, + -0.0274745, + 0.031957537, + -0.03981545, + 0.010475011, + -0.047434065, + 0.031157563, + 0.007697828, + 0.010483998, + -0.017717274, + -0.006185854, + -0.06765225, + 0.0035058344, + 0.030613821, + 0.006063646, + 0.015836375, + -0.041845545, + -0.02059586, + 0.016807863, + 0.0038335794, + 0.013791782, + 0.008802419, + -0.023679063, + -0.017395053, + -0.031145636, + 0.03270133, + -0.001697371, + 0.015106089, + 0.053762816, + -0.05342317, + -0.012693639, + 0.023333814, + -0.003134425, + 0.023804106, + 0.07648764, + 0.04262694, + 0.03483767, + 0.04480304, + 0.01817966, + 0.028775545, + -0.010913905, + 0.019586282, + -0.03345522, + -0.025552992, + -0.06555568, + 0.024328606, + 0.038489398, + -0.054896485, + 0.007524237, + -0.015143287, + 0.024560565, + 0.05081918, + -0.039701816, + 7.860382E-4, + -0.0013839938, + 0.0065519004, + 0.005332308, + 0.028455088, + 0.01453232, + 0.047927007, + 0.005780812, + -0.05247561, + 0.024201853, + -3.468441E-4, + 0.034645166, + 0.02521002, + 0.023100251, + -0.056124058, + -0.012077598, + 0.020061672, + 5.288595E-4, + -0.008871998, + 0.035872467, + -0.043979786, + 0.016098037, + -0.017021058, + -0.01852893, + -0.015129954, + -0.0077325604, + -0.040908303, + -0.0036522895, + -0.0086111985, + -0.0066828826, + 0.036766592, + -0.010325384, + -0.01561807, + -0.019712342, + 0.022339735, + 0.008165926, + -0.004090379, + 0.012602086, + 0.013827897, + 0.08787441, + -0.03020093, + 0.011151947, + 0.014087298, + -0.009290256, + -0.0034674508, + -0.027024958, + 0.025137192, + 0.020830829, + 0.058338054, + -0.029506436, + 0.05015116, + -0.037414175, + -0.025468284, + 0.0040621487, + -0.006207879, + 0.03515084, + -0.050445158, + -0.0042576836, + -0.0508779, + -0.011022405, + 0.020763265, + 0.05395981, + -0.027657937, + -0.031656146, + -0.063586056, + 0.043551717, + 0.019515581, + 0.027186172, + 0.019330796, + 0.02793487, + 0.021719424, + -0.023865504, + 0.030141512, + 0.029064903, + 0.043310102, + 0.04162903, + 0.013357053, + -0.05800962, + -0.03205246, + 0.028717697, + 0.05904414, + -0.0011601141, + 0.016431874, + 0.01842624, + -0.06063393, + -0.0015475589, + 0.016564501, + 0.024914652, + -0.011507172, + -0.009776177, + -0.04158183, + -0.025693085, + -0.046581198, + -0.021236723, + 0.09460901, + 0.021409934, + 0.025204435, + -0.0012563916, + 0.011292382, + 0.026979215, + 2.6176107E-4, + 0.016541092, + -0.07007184, + -0.017144317, + -0.016462287, + -0.029732758, + -0.010203508, + -0.008119507, + 0.05399125, + -0.033909913, + -0.015018546, + -0.0026318836, + 0.033484895, + 0.036329776, + -3.2727083E-4, + 0.03777297, + 0.06245956, + -0.009342341, + 0.018656678, + 0.0034885902, + -0.022632224, + 0.010364433, + 0.027545488, + 0.043785367, + -0.006615868, + 0.0079934, + 1.674295E-4, + -0.04528073, + 0.016735071, + -0.009682597, + -0.0618846, + 0.025966747, + -0.021169703, + -0.017334322, + -0.0014643552, + -0.051984567, + 0.0061200242, + -0.023564298, + -0.00963847, + 0.0035972565, + -0.008576865, + -0.020747636, + 0.016620072, + -0.002544855, + 0.0053348937, + -0.019532207, + -0.04262075, + 0.0116106635, + -0.016085852, + -0.028815886, + 5.1499327E-4, + 0.008514729, + 0.049604274 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json b/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json index 6ebd4a309..7d3d07deb 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json +++ b/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json @@ -1,1357 +1,5268 @@ { - "description": "images with different subjects", - "createdAt": "2023-11-21T14:25:44.279701Z", - "id": "hfwfbogx", - "document": { - "modifiedTime": "2068-12-13T11:19:09Z", - "display": { - "id": "hfwfbogx", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different subjects", + "createdAt" : "2024-11-14T14:37:56.565016Z", + "id" : "m3maupg3", + "document" : { + "modifiedTime" : "2047-03-03T17:12:17Z", + "display" : { + "id" : "m3maupg3", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/nQu.jpg/info.json", - "credit": "Credit line: ahZKtGB", - "linkText": "Link text: 7hNjkUCgQ", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", + "credit" : "Credit line: OYCYtD", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/nQu.jpg/info.json", - "credit": "Credit line: ahZKtGB", - "linkText": "Link text: 7hNjkUCgQ", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", + "credit" : "Credit line: OYCYtD", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#9C4E05", - "source": { - "id": "k5vgzyzl", - "title": "title-ght5C6q5kj", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#C2504D", + "source" : { + "id" : "efyngkg4", + "title" : "title-xah7C7EJsw", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ { - "label": "Squashed squirrels", - "concepts": [], - "type": "Subject" + "label" : "Squashed squirrels", + "concepts" : [ + ], + "type" : "Subject" }, { - "id": "subject2", - "label": "Struck samples", - "concepts": [], - "type": "Subject" + "id" : "subject2", + "label" : "Struck samples", + "concepts" : [ + ], + "type" : "Subject" } ], - "type": "Work" + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "hfwfbogx", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "k5vgzyzl", - "sourceIdentifier.value": "rETWFRZV3J", - "identifiers.value": ["rETWFRZV3J"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-ght5C6q5kj" + "query" : { + "id" : "m3maupg3", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "efyngkg4", + "sourceIdentifier.value" : "2bPmn3zVI7", + "identifiers.value" : [ + "2bPmn3zVI7" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-xah7C7EJsw" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ "{\"label\":\"Squashed squirrels\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Struck samples\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": ["Squashed squirrels", "Struck samples"], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.01746604, 0.014943619, -0.042142704, 0.02776663, 0.0027631067, - -0.0068090134, -0.013050362, -0.020776348, 0.017571067, -0.0016280465, - 0.019674137, 0.008548206, 0.005911973, -0.016653301, -0.0074178423, - 0.0192864, -0.011884947, 0.006624695, -0.005724453, 0.02268374, - -0.009499551, 0.030379387, 0.01473957, 0.016423974, -0.019888531, - 0.0027172663, 0.0036805798, -3.3330466e-4, 0.015702702, -0.029143913, - -0.005402149, -0.011588571, 0.013090072, -0.024944345, 0.006677761, - 0.0075230547, 0.013558578, 0.015814014, 7.8365754e-4, -0.009405395, - 0.027178671, -0.013952406, -0.01757261, 0.035808086, -0.030391408, - -0.027471785, 0.0019644776, -0.01195285, 0.0030184204, 0.008075714, - 0.0045761503, 0.020506544, 8.696389e-4, -0.0046733534, 0.01407692, - -0.008700147, -0.0030118218, 0.023258884, -0.05101257, -0.0026036587, - -0.030548269, 0.015552521, 0.015449866, 0.010491381, 0.005945222, - 0.017941177, 0.014480119, 0.004895065, -0.0015855399, 0.010170752, - -0.01716993, 0.007185956, 0.008880712, -0.024013145, -0.030024562, - 0.0031231414, -0.009941369, 0.029555276, 0.0012518176, -0.019623274, - -0.011465055, 0.01826306, -0.010846665, 5.607974e-4, -0.024316804, - -0.020478098, 0.011606963, 0.015966382, -0.0069054426, 0.005088926, - -0.014739646, -0.010881724, -0.010613949, 0.014383228, -0.0053606746, - -0.013044697, 0.006449897, -0.0021351257, -0.0057011, 0.029465795, - 0.035449874, 0.02712663, 0.013646379, 0.0017778231, -0.034695502, - -0.0010971782, -0.016138768, 0.0055741435, -0.022574956, -4.579324e-4, - -0.007928861, -0.002879291, -0.01851511, -9.017913e-4, 0.011177966, - -0.014225939, -0.02121016, 0.017010435, -0.0077786976, -0.0072259246, - -0.0020037212, 0.0029825242, -0.010909723, 3.38331e-4, -0.0030869371, - 0.001930878, 0.004564595, 0.0077112494, -0.014823603, -0.0023298492, - -0.011033398, 0.016949551, -0.03277931, -0.0013741944, 0.015096019, - 0.014870068, 0.0046539493, 0.009499094, -0.009900342, 0.010970688, - 0.0030088963, 0.013777205, -0.015172496, 0.033063985, 0.00906392, - -0.0030206228, -0.0029208458, 0.015441945, -0.020838916, 4.948086e-4, - 0.0065796087, -0.03282173, -0.0085221, 0.011653655, -0.009657932, - -0.011597161, -0.0013395941, -1.2631452e-5, 0.007859377, -0.019893195, - 0.010149206, -0.037252128, 0.012307083, -0.019722601, 0.029067803, - 0.005682193, 0.01738924, -0.0029090336, -0.010330808, 0.017462417, - 0.004199879, -0.0018947598, 0.011349216, -0.0045041447, 0.013189785, - 0.015047152, -0.008423751, -0.013696345, 0.010972196, -0.009263941, - -0.0014660187, 0.0026376962, -0.018160513, 3.6479827e-4, -0.0051071723, - 0.0027034467, 0.01068431, -0.010581329, 6.779592e-4, 0.003222683, - 0.007663819, -0.011164421, 0.014488335, 0.016680615, 0.005299435, - 0.01651307, -0.004002399, -0.00949018, 0.006369028, 0.01008062, - 0.006349734, -0.0045416933, 0.011066073, -0.01926726, -0.006335595, - 0.022712365, -5.6938536e-4, -0.0069376472, -0.0051301317, -0.0056501166, - 0.0057468433, 0.013422929, 0.012647171, -0.026865395, -0.0019353392, - -0.035856735, -0.02369673, 0.010471781, -0.006541073, 0.027818719, - 0.0034475003, 0.0074663027, 0.009045713, -0.016070493, -0.015176956, - -0.013008281, -0.0128477, -0.011775917, 0.043116428, 0.003465837, - 0.037271313, -0.03661072, -0.022832204, -0.01122803, -0.006074351, - -0.0023973917, 0.004444024, 0.0076996093, 0.008645104, 0.015835334, - 0.023972314, 0.0037349493, -0.0062179384, -0.008363043, 0.0035304264, - 0.046450064, 0.006349772, -0.0044390634, 0.0078811655, 5.9508067e-4, - -0.0030654222, -0.019572433, -0.026424905, -5.718228e-4, -5.1848247e-4, - -0.0026497364, -0.010041209, 0.007352604, -0.017490523, -0.022534328, - 0.006898609, 0.00894335, -8.661198e-4, 0.010963793, -0.024187496, - -0.021344861, 0.00548498, 0.050694868, 0.0038427708, -0.02719379, - 0.0025774587, 0.012963944, 0.013825778, -0.016088622, -0.016087046, - -0.021854242, 0.004249979, -0.013615587, 0.002338986, -0.03228271, - -0.0050152238, -0.005646321, 0.0060451236, 0.021339802, -0.008152252, - 0.003885001, -0.001527263, -0.009753486, -0.01769786, 0.019969936, - -0.019356104, -0.004671096, 0.011327752, -7.511212e-5, -0.0019189811, - -0.015988134, 0.016120913, -0.016398573, 0.0055449842, -0.016470928, - -0.005215356, -0.011320539, 0.0016922626, 0.010262943, -7.030278e-5, - 0.004425634, 0.003502651, -0.004984464, 0.0036445071, -0.013689198, - 0.013000428, -0.014482382, 0.009029584, -0.007306735, -0.03764361, - 0.024201091, 0.004228897, -0.0140825845, 0.0067593628, 0.0056045908, - -0.02376747, 1.6625556e-4, -0.010351019, 0.010028983, 0.012919648, - 0.024586618, -0.017482165, -0.00845512, 0.009023334, -0.00928333, - 0.026534056, 0.006525549, 0.0011353245, -0.019706741, 8.840285e-4, - 0.0075850943, 0.035479795, 0.0017570636, 0.016973581, 0.006102236, - 0.03764316, 0.001587935, -0.004741757, 0.0035526, 0.008335003, - 0.012790585, -6.649057e-4, 0.0021216336, 0.010381714, 0.004059031, - -0.023484353, -0.021299528, -0.035272684, 0.010501237, -0.049898013, - 0.0058724326, 0.012035164, 9.373463e-4, 0.01691842, -0.001531202, - -0.026373684, -0.018089918, 0.013209494, -0.010553062, -0.008753999, - 0.01015236, 0.01891191, -0.01713629, -0.008916046, -0.019747898, - -0.018696424, -0.004072676, -0.022898767, 0.013723888, -0.02340996, - 0.033789698, -0.0033416392, 0.0041815643, 0.0074125403, 0.029394142, - 0.001841403, -0.0013415199, 0.011997106, -0.018943112, -0.0075551025, - 0.010580433, 0.010105019, -0.004522407, 0.024375862, -0.0042411373, - -0.016356762, 0.0190727, 0.015701864, -0.009970371, 0.01613517, - 0.0090285195, -0.009239827, 0.01789267, 0.007361491, 0.02795467, - -0.003555029, -0.008948537, 0.016926225, -0.009642739, -5.7424756e-4, - 0.020754755, 0.008448304, 0.0026540891, 0.0014415568, -6.64627e-5, - 0.015145799, -0.018400291, -0.012384592, 0.017481474, -0.0075998367, - -0.0073807547, 0.0057965266, -0.0043601925, 0.02733537, 0.023581523, - -0.017526815, -0.022471573, 0.0268285, -0.0074366583, -0.0042397785, - -0.023027914, 0.026133826, 0.009945154, 0.006734529, 0.005223463, - 1.6081432e-5, -0.019498907, 0.02031577, 0.0167277, 0.0072979685, - -8.804606e-4, 0.008095405, 0.0018269471, 0.018850535, 0.018007966, - -0.012709493, 0.024284525, 0.022461697, -0.013698749, 0.029291216, - 0.005647558, -0.012607891, 0.006424658, -0.02267524, -0.017005851, - 0.030085992, -0.0022096033, 0.02416343, 0.03495482, -0.025137743, - 0.011505113, 0.008473876, -0.029359164, 0.013625574, -0.010619125, - -0.0069230967, -0.016969884, 0.005057361, -0.0057775937, -7.0444006e-4, - -0.02178124, -0.0022699074, 0.0067385687, 0.006091001, 0.006960706, - -0.007106498, -0.026314855, -0.024282323, -0.00694556, -0.005504282, - -0.016088728, -7.0566416e-4, -0.021769037, -0.0075739906, -0.007227321, - -0.023872439, -0.004604526, 0.007949855, -0.016179817, 0.01607296, - -0.009820162, -0.007855105, -0.0036198455, 0.008080561, -0.018206699, - 0.0042474354, 0.017685847, 0.0043114754, -0.03272524, 0.002666198, - 0.030069333, -0.018951174, -0.0022980832, 0.019966174, 0.0043370426, - 0.02986653, -0.0014333618, -0.0032949161, -8.798319e-4, 0.013314236, - 0.019938407, -0.018352667, 0.030161401, -0.013370302, 0.034046274, - -0.0021379981, 0.01988768, -0.0057258285, 0.005660035, 0.0027695529, - -0.0149103245, 0.01192059, -0.0050491365, 0.03413018, 0.013570891, - -0.013636525, 0.010615401, -0.0070852186, -0.013071913, 0.0068048374, - 0.008041697, 0.020360155, -0.0272273, -0.011151455, -0.0071228063, - 0.020636449, 0.0072586825, 0.027695097, -0.014924569, 0.005224095, - -0.025049953, 0.0071052886, 0.008179474, 0.0063106404, -0.0036801673, - 0.026014559, -0.020237383, 0.01331584, 0.0037534484, -0.008976372, - -0.0039697657, -0.0013500481, 0.010600225, 0.0015499454, 0.02617575, - 0.021930872, -0.008075968, 0.004111722, -0.0018404863, -0.0072676768, - 0.008845269, 0.022821473, 0.008166661, 0.02128508, -0.0022405414, - -0.004063533, 0.0041390858, -0.0041047847, -0.0019089608, 0.009294349, - -0.0049685263, 0.014847493, 0.012555646, 0.029247755, 0.013662091, - 8.818302e-4, -0.003429794, -0.016537728, 0.008727362, 0.001771226, - 0.018733732, 0.0038565057, -0.011107283, 0.013896674, 0.015180554, - 0.027397214, 0.019575791, 0.0065320097, 0.03353578, -0.033931114, - -0.011230435, 0.02702884, 0.001697133, 0.03556052, 0.0037796327, - 0.001734295, -0.0022317355, 0.009692342, 0.0013127775, 0.0022655688, - -0.022070428, -0.0219421, 0.029189669, -0.031716798, -0.010768771, - 0.003529492, 0.0038321365, -0.0070531145, -0.0018386208, 0.018993938, - 0.010458404, 0.009674708, 0.020890001, -0.019579602, 0.0010700629, - 0.028883321, -0.01652626, -0.020615565, -0.011690487, -0.0018272208, - -0.0015637903, -0.019063925, 0.015167733, 0.015989708, -0.016803157, - -0.017523369, -0.018936815, 5.459433e-4, -6.18963e-4, -0.030232564, - 0.0063647637, -0.0035363415, 0.0015415311, -0.010422911, -0.023753598, - 0.012357046, -0.017507719, 0.00834949, 0.004152797, -0.004109986, - 0.006097189, -0.009040251, 0.013934513, -0.015587828, 0.020148275, - 0.017781269, 0.006700002, -0.011143333, -0.016285647, 0.03108376, - -0.01241208, 0.02195332, 0.0051649595, 0.00390808, -0.033516586, - -0.0018157559, -0.023984866, 0.008685563, 0.02302959, 0.011952417, - 0.009138985, 0.020100825, -0.017865812, -0.0039982484, 0.004416015, - 0.0528311, 0.014703549, 0.0060662483, -0.0024850692, -0.010675107, - -0.007933047, -5.980961e-4, 0.033235032, -0.013695348, -0.0024985033, - 0.028400678, 0.015073355, -0.0037103517, -0.021714613, 0.0023265711, - 0.0058799535, -0.017374156, 0.01985256, -0.01736628, 0.008432231, - -0.004023815, -0.027049635, -0.021582738, 0.030371577, 0.035931423, - 0.00288794, 0.010322713, 0.005657038, -0.021421533, -0.0069863764, - -0.0035593351, -0.022909913, 0.0046136165, -0.0075485944, 0.016897358, - 0.0127482675, 0.0033089803, 0.021845164, 0.008536958, -0.0028628965, - -0.009567411, -0.008558134, -0.010415684, -0.004476562, -0.0192521, - -0.010023553, -0.02483222, -0.013771626, -0.0044233236, 0.0036769002, - 0.013319081, 3.3898506e-4, 0.016617063, 0.024426302, -0.002855336, - -0.017768884, -0.018196901, 0.014659765, 0.005586703, -0.0042398633, - -0.017042818, -0.0038063747, 0.019971583, -0.0062579736, -0.023655685, - 0.019925723, 0.0082218945, 0.0342431, -0.0013760965, 0.0047291606, - -0.003695058, -0.035699308, -0.036939625, -0.01634561, -0.024180649, - 0.013005355, 0.0145707065, -0.02023998, -0.0035834198, -0.0022808744, - 0.017564759, -0.032817036, 0.0031747834, -0.0075948895, -0.01221377, - -7.0395163e-4, -0.006734935, 0.034216363, 0.011138225, -0.017051054, - 0.026592012, 0.009693647, -0.014908619, -0.0073375492, -0.014392677, - -4.040644e-5, 0.0059274673, 0.016841546, 0.017573895, 0.005326132, - -0.018356118, 0.00838404, 0.0092517175, 0.011069381, 0.012692857, - -0.0018918382, 0.010458309, 9.134147e-4, 0.032808255, 0.007419919, - 0.001710809, 0.009724851, 8.308733e-4, 0.0041400776, 0.006443964, - -7.324042e-4, -0.0032141902, -0.0080511635, 0.008381558, 6.4803177e-4, - 0.0037453575, -0.018929983, 0.016151892, -0.0027414667, -0.012742885, - -0.010644199, 0.009031179, 0.006021775, 0.016079044, 0.008468154, - -0.016695635, 0.011166407, 0.0117826015, 0.002579763, -0.011149524, - 0.002640752, -0.015658924, -0.0025772154, -0.011573974, 0.009600403, - -0.02017857, -6.5688114e-4, 0.019508436, -0.014570558, -0.0055541177, - -0.0017934999, -0.023075286, 7.5760286e-4, -0.015753461, 0.018293867, - 0.013444654, 0.020493256, -0.013499264, 0.017112548, -0.015925264, - -0.021766063, -0.013780775, 0.01372238, 0.007720137, 0.015067353, - 0.0055726985, -0.005579433, -0.0045183995, 0.019773068, 0.015091181, - -0.0016396008, -0.04409031, -0.010864156, -0.007120401, 0.020689225, - -0.007479687, -0.02262721, 0.0010603116, -0.011922575, 0.022711065, - -0.004620387, -0.0029437456, 7.597787e-4, 0.012575765, 0.0010210262, - 0.009854489, 0.008241208, -0.027365496, 0.025888242, 0.023973798, - 0.048957065, 0.012812643, 0.013973628, 0.012401995, 0.01580805, - -0.01403788, 0.013490337, 0.0029245699, -0.0091015175, -0.008978924, - 0.036151614, -0.01024781, -2.93797e-4, 0.007886, -0.021214008, - 0.042904343, -0.005669868, -0.013799131, -0.020108055, -0.00852332, - -0.021419043, -5.155821e-6, -0.0035234552, -0.010612248, -0.01138716, - 3.6318402e-4, 0.023344694, 0.004827981, 0.010884831, 8.1504084e-4, - 0.0043285573, 0.003986361, -2.3532871e-4, -0.010477641, 0.007898375, - 0.0050284467, -0.028904162, 0.0047369716, -0.012946286, 0.017559947, - 0.0038684772, 0.0128829405, 3.4629434e-4, 0.014387541, 0.022952715, - -0.009360564, -0.0132411625, 0.012140909, -0.023504695, -0.0147970375, - 0.007318225, -0.014862203, -0.015190393, 0.008024277, 0.011338709, - -4.6885398e-5, -0.012743102, 0.026159555, 0.012854748, -0.0073955446, - -0.005312335, 0.015432402, 0.010261469, -0.019676058, -0.025399724, - -0.0035076917, -0.016980076, -0.03870494, -0.015380365, 0.0017266431, - 0.027709998, -0.015361154, 0.010351662, -0.001647521, 0.0034190787, - -0.009772522, 0.031697977, -0.0050872103, 0.016925223, -0.015195367, - -0.011417565, 0.015932206, 0.022617275, -0.0025900085, 0.032413676, - -0.0143992845, -0.012681649, -0.02182796, 0.015582202, -0.012746786, - -0.0025940822, -0.018625544, 0.011046277, -0.0036836877, 0.0067184158, - 0.010134623, -0.017261824, -0.0059241345, -0.019792633, -0.02357987, - -0.004995794, 0.015490963, -0.008610539, -0.0055380156, 0.021661028, - 0.0020986134, -0.020726237, -0.024508355, 0.0041578556, 0.011553688, - 0.016773142, -0.0042855013, -0.0040705334, 0.012502905, 0.004005788, - 0.016376805, 0.009680986, 0.002292419, 0.0019265253, -0.013564556, - -0.022113593, -1.051216e-4, -0.009365921, 0.0081311455, -0.018676495, - -0.013531274, 0.02742183, 0.017123893, 0.025187718, 0.017954024, - -0.022546465, -0.01780792, 0.014294043, -0.018633295, 0.0020652388, - -0.03215299, -0.017065136, -0.012417193, -0.025985476, 6.2112906e-4, - -0.019669164, 0.011827279, 0.0026111342, 0.016251888, 0.0056501045, - 0.006446774, -0.013427609, -0.0011183487, 0.015992312, -0.0036821817, - 0.033253223, 0.015898138, -0.0019933686, 0.0061275987, -0.0035348153, - -0.011271938, -0.016249929, 0.002102425, -0.0023761815, -0.0049933037, - 0.014887916, 0.018542303, -0.007996425, 0.0022812148, -0.0073240036, - 0.0066110683, -0.0063728574, -0.011483861, 0.020783432, -0.027397627, - -0.013418963, 0.0013638664, 0.0025506734, -0.0023216978, 0.026221111, - 0.01337057, -0.022343954, 3.1813487e-4, 0.014532214, 0.0062148524, - 0.012269791, -0.022758365, -0.006071594, -0.010745414, 0.02121269, - 8.2942157e-4, -4.364005e-4, 0.034588017, -0.0016713856, -0.0036925506, - 0.0111546, -0.010439845, -0.016540686, -0.0058932626, -0.009357568, - 0.00805237, 0.008189981, -0.007613514, -0.005980491, 0.025048334, - 0.01465412, 0.013325624, 0.0130823525, 0.0016281469, -0.0034239618, - -0.012627584, 0.00750607, 0.033966344, -0.022639686, -0.028060326, - 0.011621217, -0.010747824, -0.004824255, 0.019134274, -0.013872861, - -2.3119476e-4, 0.0027246887, -0.019914472, 0.0033461822, -0.010505619, - 0.0072207716, 0.017374622, 0.012361298, 0.019534796, 0.0063914387, - 0.01868646, 0.0021733749, 0.0022455908, -0.00433137, -0.009823016, - 0.016045544, 0.025043411, -0.007899974, 0.01854261, 0.011805427, - -0.0049924166, 0.010373599, 0.022998603, -0.0062926416, 0.0147774, - 0.0108643705, 0.02165809, -0.009762067, 0.0070527857, -0.015784703, - -0.005358306, -0.021858484, -0.017400084, 0.008085077, 0.021303413, - 0.032365583, 0.005064078, 0.0073937937, 0.011469904, -0.0030717754, - 0.010169784, 0.008265793, 0.016088763, 0.007893559, 0.024659969, - 8.294859e-4, 0.0067044226, -0.019795254, -0.019735236, 0.013980751, - -0.047217596, 0.019691443, -0.012782814, 0.005461586, 0.0037690145, - -0.011875217, 0.0072147953, -0.0072384207, 0.0102433115, 0.018664012, - -0.025058102, 0.0050708633, -0.009474794, -0.009935427, 5.7474634e-4, - 0.026394384, -0.01610046, -0.0065196883, 0.010605323, 0.0089347325, - 0.011974, -0.013794621, 0.017968252, -0.0057721455, 0.03179137, - 0.007986173, -0.0010730604, 0.012879197, -0.023368055, 4.3333374e-4, - -0.017154612, -0.0033231832, 0.013452311, -0.004164067, -0.023742674, - 0.009454966, 0.0018235412, -0.009565659, -1.5341636e-4, 0.018895235, - 0.004955451, -0.0034630066, -0.026487641, 8.533793e-5, 0.0037425116, - -0.0075888583, 0.03166773, -0.0046382397, -0.015346106, -0.009190505, - 0.004652504, 0.024535855, 0.028214846, -0.022050671, -0.0012082604, - -0.001958109, -0.0027010737, 0.009155385, 0.007812006, -6.8006245e-4, - -0.036460094, -0.021383625, 0.01755144, 0.017959438, 0.01971413, - -0.0032068307, 0.019208385, 0.017505258, -0.023242436, -0.013172919, - 0.0149023915, 0.011562488, -0.018872097, 0.010136375, -0.014760078, - 0.0057343435, -0.029759664, 0.009745252, -0.009792608, -0.0299187, - -0.027261471, 0.008808532, 0.021713085, 0.014867606, -0.010837131, - -0.0044039357, 0.0066380315, -3.6180837e-4, -0.011003306, 0.011824558, - -0.005354892, 0.007808522, 0.019635461, 0.00574349, -0.010371099, - 0.0077994363, 0.004929371, 0.009479063, 3.1986574e-4, 0.029662084, - -0.0067069647, -0.014333653, -0.008514809, 0.0048484094, 0.009441884, - 0.012457299, 0.0010563441, -0.0044255555, 0.0049701724, 0.010052159, - 0.0076827304, -0.020423932, -0.009949421, 0.024948947, -0.0012000713, - 0.016893597, -0.0013411817, -0.012668504, -0.031511996, 0.004508064, - -2.0900214e-4, 0.0040379926, -0.011967545, -0.011207767, 0.015571778, - -0.02204871, -0.0056169266, 0.026620232, 0.03609026, -0.018142598, - -0.018087685, 0.011514316, 0.0021255605, -0.007837414, 0.0035437874, - 0.0019606703, -0.005199219, 0.01754749, -0.010903395, -0.008464512, - -0.010103424, 0.008823505, -0.013390687, 0.0137698185, 0.011921989, - -0.009218178, -0.017869435, -0.0021494173, 0.00548811, 0.0022686375, - -0.03340389, -4.7506441e-4, 0.009386383, -0.020790098, -0.019846763, - 0.02950006, -4.5604745e-4, -0.0066759675, -3.5421565e-4, -0.018123629, - 0.023931041, 0.047789723, -0.0054952684, 0.026551295, 0.006669445, - 0.010863134, 0.02274387, -0.012373478, -0.027219482, -9.776962e-4, - 0.0115244035, 0.029065099, 0.0050606052, 0.029918471, 0.004839063, - 0.009276047, -0.024947118, 0.024773495, -0.022787724, -0.029849159, - 0.041248266, -0.012604845, 0.0123508945, 0.0254952, 0.0047851307, - 0.00908733, 0.015787268, 0.029838987, -0.008735002, 0.011972466, - 0.03712523, 0.004298639, -0.015988192, 0.0035095722, -0.011771403, - 0.012331295, -0.012859319, -0.0061855935, -0.018153122, 0.011415748, - -0.038329773, -0.0032132806, -0.016766777, -0.007451868, -0.013904497, - -0.004053251, 0.04715613, 0.01711452, 0.01964117, -0.013346308, - -0.014397845, 0.01756479, -0.014904243, -0.0019981305, -0.0054764412, - -0.007849786, 0.010383638, 0.011030778, 0.027649444, 0.020878896, - -0.0067372695, -0.0050699916, -0.00858136, 0.022571746, -0.025445882, - 0.030120367, -0.01696067, 0.023512132, -0.008834991, 0.018530667, - -0.008113428, -0.012069934, -0.025930397, -0.013320223, -0.009320221, - -7.5666996e-4, 0.017755592, -0.025916532, -0.001813439, 0.021540213, - -0.015391711, -0.006820429, 0.0010194373, 0.0067465655, -0.0062233005, - 0.009414398, -0.026169071, -0.0024360872, 0.007737265, 0.004892953, - -0.023502382, 0.021368783, -0.011371438, -0.0042859293, 0.0038684662, - -0.014804934, 0.008207716, -0.0037932864, 0.020176243, 0.0042675417, - 0.027231086, 0.018823292, -0.0040678917, -0.013873385, -0.0034693726, - 0.034248326, -0.011994122, -0.013171382, 0.0017463902, 0.002610454, - 0.033683974, -0.028170548, -0.007555927, -0.015959764, 0.02380322, - -0.007947182, -6.8877905e-4, -0.008268097, -0.043651026, 0.014800852, - -0.01589881, -0.012363273, 0.0062483777, 0.029438974, 0.0030872703, - 0.02907062, 0.023290582, -0.011959652, 0.0065333536, 0.0057170684, - 0.012286685, -0.01541457, -0.0052294233, -0.02138494, -0.005396012, - 0.022904886, 0.006579499, 0.006767118, -0.010815557, 1.22937245e-5, - -0.011532593, -0.005142377, 0.005038735, -0.0037744942, 0.034098912, - -0.0072630905, -0.035487197, -0.0031638346, 0.0024032379, 4.7862434e-4, - -0.0030250428, 0.0032050367, 0.034694668, -8.6355594e-4, 0.021591345, - -0.008278663, 0.00839668, -0.0054664, 0.014707586, -0.017513352, - -0.027009042, 0.007082688, 0.0027996511, -0.013848528, 0.022315295, - 0.015332652, 0.019721355, 0.0206059, 0.02512592, 0.019774938, - 1.2641874e-4, 0.011324166, 0.0035224457, 0.017396756, -0.022530407, - 0.015814567, 0.023037985, -0.04421417, 0.012662097, -1.6978191e-4, - -0.016790997, 0.010330776, -9.5623045e-4, -0.014613033, -0.022697931, - -0.033026997, 0.0039430643, 0.019435838, -0.0039459723, 0.0034929516, - 0.014113677, -0.0235311, 0.023035036, -0.0036336984, -0.027212564, - -0.013318047, -0.025089592, 7.786017e-4, -0.0020063461, -0.009435854, - 0.008640244, 0.008579157, 0.0052633323, -0.010263938, -0.014832085, - -0.009317363, 0.019279426, -0.009651908, -0.003222201, -0.0069615087, - 0.0016706242, 0.033193797, 0.0010132894, 0.0027178768, -0.0014352617, - 5.438744e-4, 0.012671071, -0.016866306, -0.024785534, -0.030181509, - -0.026466805, 0.009907373, 0.012417802, -0.008667186, 0.007340182, - -0.0010203312, -0.0010896573, 0.010443462, -0.0035584627, 0.00896716, - -0.022820683, -0.010572466, -0.0147582535, -0.0012733355, -0.018351575, - 0.012018802, 0.003780705, -0.0040058345, 0.0070440727, -0.0012406064, - -0.018493779, -0.017898826, -0.035358235, -0.026294162, -0.007604316, - -0.010910077, 0.023810593, 0.0058663045, 0.02222729, -0.0012556387, - 0.006878702, -0.002977368, 0.011134767, 0.005540144, -0.028123498, - 0.02108403, -0.012686623, -0.038834188, -0.023707448, 5.5005535e-4, - -0.02051708, 0.006612035, -0.020281523, -0.0138769625, 0.0061927675, - 0.02277773, -0.011523787, -0.0027085615, 0.009926516, 0.027782315, - -0.004784626, -0.014150689, -0.008158597, 0.013710957, -0.008394014, - 0.02610268, -0.0066222725, 0.0023893544, -0.0045171045, -0.0065694647, - -0.05277038, 0.024360063, 0.004565384, -0.0067454544, -0.0013560586, - 0.007394257, -0.0098407185, 5.428575e-4, 0.011523902, -0.032606624, - -0.0053515974, 0.012440098, 0.0014666787, -0.009545754, -0.017594807, - 0.012528641, 0.018346984, -0.0011945944, -0.009224316, 0.017768165, - -0.009608681, 0.008040387, 0.008824805, -0.0061814766, -0.05546006, - -0.016745435, -0.0022631765, -0.006805881, -0.032891244, -0.012682737, - 0.007893145, 0.013294197, -0.0070135724, -0.013961907, -0.016685024, - 0.0073722494, -0.0095703425, 0.009334857, -0.018141413, 0.0064157597, - 3.5249133e-4, -0.0020935321, -0.009828408, 0.008624044, 0.009665786, - 0.0062144366, -0.010394694, -0.004358765, -0.015486574, -0.0024011515, - 0.016886014, 0.030565364, 0.018291226, -0.0052906172, -0.020439152, - -0.009667821, -0.007560055, 0.020692788, 0.016113507, -0.01834414, - 2.0425006e-4, -0.0044961483, 0.0061395713, 0.004495579, 0.01255524, - 0.0017417262, -0.03005225, 0.006551966, 0.015879702, 0.023815664, - 0.0091705, -0.0040151556, -0.015461535, -0.006588688, -0.015114676, - 8.501505e-4, 0.0015302675, 0.020928036, -7.525632e-4, -0.028728355, - -0.012041625, -0.001118543, -0.016211426, -1.4823658e-4, -0.012050496, - -0.017176827, 0.02015494, -0.018701628, 0.026310293, 0.0063198027, - 0.0061217817, 4.4271233e-4, 0.029075406, -0.017929524, 0.0011009474, - 0.016126815, -0.0046351594, 0.0016344091, -0.01914078, 0.002661009, - 0.009691751, -8.1978075e-4, 0.025864452, -0.010009163, -0.012053956, - -0.0057402053, 0.017291956, 0.001385912, 0.013939237, 0.019149685, - 0.026366714, 0.012085614, -6.8208616e-4, 0.0049057608, 0.0016847004, - 0.0066100503, 0.0044185664, 0.016671155, -0.022233099, -0.007012199, - -0.00974355, -0.0048556034, -0.0074516716, -0.023194578, 0.0022714238, - -0.0085092485, 0.0134046795, -0.024358358, -0.0032294658, 0.029769583, - 0.010900619, 0.011369036, 0.0020182438, 0.020921862, 0.0025100536, - -0.026694002, 7.0732966e-4, 0.01705211, -0.012656134, -0.01845925, - -0.0038129636, 0.010676922, 0.01452642, -0.0094284015, 0.0117679825, - 0.030750621, -0.0056745876, -0.009655655, -9.890053e-4, 7.168481e-4, - 0.037571125, 0.0017479231, 0.027711138, 0.019646911, -0.020789078, - 0.040842425, -0.0015939465, -0.016469605, -0.00815569, 0.0114560425, - -0.001211686, 0.0047262055, 0.014470055, -0.007374315, 0.020135006, - -0.013998999, -0.0053756293, -0.04415277, 0.0046067215, 0.016267799, - -0.009356063, 0.011463897, -0.027669106, -0.003994339, 0.02823526, - -0.012980803, 0.026929896, -0.009476854, 0.024540726, -0.01479819, - -0.009198156, -0.0014470369, 0.0042859563, -0.029706279, -0.0045637637, - -0.020101745, 0.012388546, 0.017646272, 0.021381082, 0.0020009438, - 0.0075966567, -0.0013013978, 0.0034373926, 0.035415776, -0.021424824, - -0.0103220325, 0.0038030476, -0.017251898, 0.0056654913, -0.0024907165, - 0.006301946, 0.041343503, 0.018570514, 0.02215987, 0.008048136, - -0.0031676195, 0.0012128565, 0.03112216, 0.028072191, -0.033213463, - 0.009049391, 0.0108202705, -0.00859459, -0.003171282, 0.030359443, - -0.003850781, 0.023171918, 0.034606505, 0.0090401145, 0.010413458, - 0.003582604, 0.006517141, 0.008777947, 0.0347166, 0.0032933792, - 0.017803831, 0.018483378, 0.009209976, -0.004924896, -0.0022921788, - -0.015212251, 0.014149115, -6.595519e-4, -5.330979e-4, -0.0068555893, - 0.002863612, -0.0029609087, -0.01872217, 0.017175136, 0.0071447524, - -0.0040849363, 0.023378747, -0.015679719, -0.010492277, 0.0075708865, - -0.005183593, 0.02216697, 0.012237602, 0.004664943, -0.01054745, - -0.009821157, 0.0103644915, -0.0016659121, 0.012565618, -0.0038734844, - 0.015237587, -0.016907336, 0.012625249, -0.006480534, -0.018043714, - -0.003458404, 0.007222636, 0.0021249002, -8.4652833e-4, -0.00775859, - 0.016739674, 0.018554285, 0.009388147, 0.017609421, -0.023417585, - 1.6242973e-4, 0.044454392, 0.007444852, 0.007984573, 0.010468687, - -0.01109105, -0.0078106867, -0.0354194, 0.040613815, 0.005782628, - 0.016117506, 0.005951016, 0.009822195, 0.0048143133, 0.0045252237, - -0.005955088, 0.006693819, -0.012003006, -0.0031371869, -0.004784578, - 0.023516497, -3.9762897e-5, -0.014572773, -0.0010748743, 0.018991174, - 0.007226866, -0.012979, -0.018294655, 0.008086132, -0.02132051, - 0.00264777, -0.013664158, 0.008758656, 0.019001117, -0.016037105, - -0.002868309, -0.010661129, 0.04208981, -0.00897485, -0.009295788, - -0.005422171, -0.005320959, 0.0010070187, 0.0024769749, 0.019758064, - -0.0041672136, 0.011694236, 0.007015418, 0.006524906, 0.0040337746, - -0.008123126, 0.022508912, -0.016151166, -0.010051496, -7.669924e-4, - -0.009962558, -0.0024351226, -0.0091931345, 9.3894184e-4, 0.019715576, - -0.013650248, -0.023645712, 0.00829431, -0.00503433, 0.011466652, - 0.022141712, -0.0018234701, 0.008631068, -0.01152373, 1.505314e-4, - 0.023781288, -0.009137048, -0.0015611404, 0.017976109, -0.006935242, - 0.0060066977, 0.005273785, 0.045037866, 0.0059221913, 0.004723308, - -0.013761247, -0.012139523, 0.0020001384, -0.004256097, 0.0048763244, - -0.0033054396, 0.012896114, -0.011624363, 0.014330725, -0.0045345356, - -0.0015279253, -0.03042335, -0.016524622, 0.032895375, -0.011209807, - -0.0072319955, -0.009673834, 0.004643526, 0.012638991, -0.01028858, - -0.0039661797, -0.0029134566, 0.03458936, 0.013372219, 0.033045087, - -0.0030016978, -0.0039183088, -0.014325203, -0.025036454, -0.032706093, - -0.01424975, 0.019362686, 0.0027858845, -0.00418178, -0.013470894, - 0.04478952, -0.022720104, -0.0035194508, -0.0047493572, 0.029118495, - 0.020981252, 0.01638624, 0.0018509497, -0.0076554143, -0.021113029, - 0.0059906747, 0.013508293, 0.035601858, 0.013793793, 0.027472487, - -0.012342559, 0.022302214, -0.0030705761, 0.01282951, 0.02757853, - 0.01734864, 0.0060605174, 0.008080637, -0.01866626, 0.014662768, - 0.009324049, 0.023598086, 0.009410386, 0.013175934, 0.0041850647, - 0.005928082, 0.0070925765, 0.009170346, 0.026211256, -0.015731357, - 0.003957828, -0.0065194233, 0.0077927853, -0.021379903, 0.020049306, - 0.015780715, -0.008856402, 0.0037040715, -0.007102036, 0.011424866, - -0.001863743, -0.010022707, 6.634084e-4, 0.033575464, 0.006773092, - -0.02249628, 0.011512959, -0.031245066, 0.0089903455, 0.022159185, - 0.003389388, 0.021845961, -0.015567524, 0.0032112307, -0.020623077, - -0.0141589865, 0.007034874, -0.021396633, 0.008172737, -0.0072493055, - -0.017119825, 0.031911943, 0.018603548, -0.016608361, -0.006214758, - 0.024838874, 0.011033464, 0.009741418, 0.01692033, -0.0021745237, - -0.02421926, 0.023367036, -0.012002858, 0.010794267, -0.0054206694, - -0.006744583, 0.021387715, -3.9520074e-4, -0.020088924, 0.013763028, - -0.012946512, -0.031428043, -0.015381884, 0.011183651, -0.0033575757, - 0.011867624, 0.013362485, 0.019655524, 0.0027446107, -0.01692597, - 0.016051738, 0.011678044, 0.0059086685, -0.014744106, 0.020553952, - -0.013920291, 0.0051942207, -0.011336232, -0.023614021, 0.0063464926, - 0.013765065, 0.009180337, 0.003699845, -0.010387986, -0.016166981, - -0.0021900474, 0.0011715972, -0.0031182936 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - 0.01739458, 0.020822315, -0.0030397072, -0.002363421, -0.023528954, - -0.016520843, 0.015138704, -0.030003738, 0.0016960253, -0.011097464, - -0.0217687, -0.006990343, -0.012203886, -0.005284446, -0.006526463, - 0.01980739, -0.0056731356, -0.0015139052, -0.002189498, 0.021116039, - 0.012513944, 0.0111814, 0.008067017, 0.0029073514, -5.516385e-4, - -0.0052862973, 0.024384571, 0.026498275, 0.022753105, 0.005836007, - 0.0036720727, 0.01585708, 0.002960548, 0.014139724, 0.012757882, - 0.003416588, 0.008184157, -0.010969526, -0.0033846586, -0.007093402, - -0.0023353635, -0.007047426, -0.018708527, 0.006317876, -0.005402956, - 0.006949848, 0.016490936, 0.020937087, -0.018513938, 2.7492738e-4, - -0.025571678, 0.031907424, 0.011042812, -0.008467103, -0.015961278, - 0.0123249, 9.88834e-5, 7.914838e-4, -0.015531952, 0.011456803, - 0.023862911, -0.015438244, 0.016755952, -0.02842249, 0.009892833, - 0.010536169, -0.008188376, 0.020507671, -0.006935454, 0.03287936, - 0.011071535, -0.011006454, -0.0036108377, 0.0097709745, 0.005147168, - 0.033594307, 0.0050809006, -0.016822314, 0.0070261885, 0.04101912, - 6.903614e-4, 0.020913633, -0.003011241, 0.010217629, 0.014655336, - 6.6353276e-4, -0.002553493, -0.012634385, -0.004939321, -0.002724868, - 0.010165761, -0.018704493, 6.632379e-4, 0.0048594726, -0.020416578, - 0.0073355814, 0.006989175, -0.01699799, 0.01280196, 0.0065603843, - -6.640252e-4, -0.013200056, -0.03798331, -0.016887795, -0.023932436, - -0.01813733, -0.018787391, 0.015825192, 0.02627719, 0.036631282, - 0.012833079, 0.019340163, 0.002873427, 0.005004083, -0.020934695, - -0.0049353195, -0.013217307, 0.01633014, -0.029114118, 0.0046097892, - 0.0032583447, 0.022131452, -4.7068764e-4, 0.0040531172, 0.015470023, - -0.011086563, 0.010597245, 0.0040680156, -0.034470234, -0.0010421627, - 0.02263449, 0.020585295, 0.021373302, -0.009824527, 0.011434328, - 0.023692591, -0.013732907, 0.022390159, 0.01367482, -0.013453528, - -0.014195817, -0.014104599, 0.026709802, 0.0034424858, 0.0014523881, - 0.0012097935, -0.011404355, 0.011431693, 0.002497412, -0.0110365255, - -0.005241187, -0.006614328, 0.011987451, 0.009860611, -0.025524013, - 0.0031133026, -0.023482032, 0.0055540926, 0.016042747, -0.047849413, - 0.030806879, -0.005035958, 0.017873026, -0.003867312, -7.597699e-4, - -0.0012974073, -0.0086084, -6.442211e-4, -0.008362083, -0.010190403, - 0.0044173226, 0.013639003, -0.01899865, -0.02465842, -0.0060634348, - 0.01661915, -0.0041916375, -0.022333676, 0.013802023, -0.020734856, - 0.0055626263, 0.03849277, 0.028988231, -0.022070898, 0.007882555, - 0.015602873, -0.0033162343, -0.0015675584, 0.0061335736, -0.008926178, - -0.019111598, -0.0018080296, 0.0021747248, -0.014173123, -0.008317876, - -0.010418852, -0.03728281, 0.018984893, 0.03135852, 0.021902414, - 0.0152222, 0.0124491695, -0.02528915, 0.027435374, -0.0022812888, - 0.0045527555, -0.004722175, 0.011601876, 0.0028626926, 0.005331262, - -0.018857446, 1.11146204e-4, 0.009815533, 0.005796383, 0.011461444, - -0.004911017, -0.011922079, -0.01987252, -0.008996169, 6.426393e-4, - 0.010950027, 0.0010181583, 0.0037689884, 0.031139359, -0.021423625, - -0.009591984, 0.008939735, 0.014096154, -0.017473377, 0.013285707, - -0.03154926, -0.007308093, -0.0177794, 0.0013660628, -0.0069402484, - -4.0589992e-4, 0.0063137277, -0.023814822, -5.84705e-4, -0.026400607, - -0.0066490322, 0.020518199, -0.006651694, -0.024277622, -0.015309239, - 0.005953724, 0.0027609349, 0.0143734785, 0.001151385, 0.021913009, - 0.013544271, -0.01395088, -0.01948327, -0.020841088, 6.7513564e-4, - 0.025293838, -0.0010919556, 0.009793744, 0.0045941602, -0.016725708, - -0.01069121, -0.009553304, -0.002762956, -0.032013483, -0.034948017, - -0.007439105, -0.029152445, -0.024523241, -0.013335666, -0.022657009, - 0.017951857, -0.02660521, 0.008266442, 0.016634494, -0.008915114, - 0.0042856364, -0.0064596096, -0.020652717, 0.014602764, -0.002396816, - 0.011516238, -0.0046301964, 0.015825506, 0.018662969, 6.061875e-4, - 0.007328794, 0.013619042, 0.0132115, -0.005126947, 0.024810474, - 0.0058544623, 0.016272618, -0.0043938067, 0.029773269, -0.029706445, - 0.008083634, -0.009876373, -0.009049208, 0.0039877333, 0.00862076, - 0.018807603, 0.0065997774, -1.7849034e-4, -0.008006753, 0.012880497, - 0.011724026, -0.006699704, -0.037873846, 0.007157665, -0.0054681064, - 0.008981718, 0.0059704077, 0.0056660566, -0.021664036, 0.01570171, - -0.0020255195, -0.010242964, 0.028955381, -0.009175534, 0.038423955, - 0.004696172, -0.019041078, 0.007934719, 0.0073703174, -0.006856767, - 0.009119695, 0.004664061, -0.004615596, -0.011392434, -0.003705464, - -0.003528638, -0.025604898, -0.00381907, 0.0061189695, -0.00999154, - 0.013751544, -0.011174452, 0.016142871, -0.004857868, -0.0021946072, - -0.010064137, 0.0019160563, 0.032046013, -0.005068275, -7.4484764e-4, - -0.011148606, -0.002195003, 0.012159874, 0.014569349, -0.01849302, - 0.0115552675, -0.01362576, 0.024612773, -0.02071491, 0.014654546, - -0.0071640564, 0.010067597, -0.017720275, -0.016311442, 0.014443971, - 0.029413627, 0.0038622415, -0.031558193, 0.014882973, 0.0041471827, - 5.5614347e-4, 0.011003474, 0.013983858, -0.007464571, -0.021001922, - 5.2637677e-4, -0.008263233, 0.007280776, 0.01526221, 0.016138654, - -0.00476535, -0.016549371, 2.883031e-4, -0.0047738887, -0.0051992917, - 0.00461537, 0.020395894, -5.0116866e-4, 0.006100334, 0.009905112, - 0.0010212907, 0.011899134, -0.0056857336, -0.022954432, 0.0043198285, - -0.004042281, -0.017015688, 0.026915967, 0.036271345, 0.03603162, - -1.2830895e-4, 0.006854387, -0.02036877, -0.012010246, -0.01793319, - 0.00163454, -0.007777243, 0.005321663, 0.011757659, -0.009824234, - -0.011495551, -0.011075968, 0.010647711, 0.012940306, 0.00249547, - 0.0034822985, 0.0026329192, -0.0163428, 0.0019156673, -0.0148637155, - -0.015761767, 0.0010958451, -0.0032612903, -0.013882949, -0.022340246, - -0.01660689, -0.020025626, -0.0046282825, 0.0068204864, -0.0034863944, - 0.012804806, 0.026430614, 0.008610658, 0.008388607, -0.016484573, - -0.013051242, 0.006169848, 0.006552392, 0.013421324, -0.009386471, - -0.018255502, -0.001990384, -0.012717463, 3.5353898e-4, -0.012829055, - -0.0024413804, -0.0046677087, -0.012275955, -0.0022909075, - -0.0057297857, 0.009322216, -0.008789519, 0.03381606, 0.0029809482, - 0.0041796374, 0.0013627522, -0.013660637, 0.0037475887, -0.01145963, - 0.0010162126, 0.006443251, -0.011142935, -0.016766356, -0.0149719715, - -0.011611493, -0.013616019, -0.005453954, 0.0046930304, -0.012474017, - 0.017622333, 0.009542947, 0.0066668596, -0.010696763, -0.0041230093, - 0.030731497, 0.016592849, -0.0029385237, 0.020544285, 0.008696727, - 0.008640529, -0.025789898, -0.011251853, 0.0055795163, -0.009710525, - -0.008730513, 3.9546975e-4, -0.013527165, -0.0059093502, 0.015164485, - 0.026584845, -0.011154601, -0.01268782, 0.01145548, 0.011036705, - -0.0023866664, 0.011584467, -7.196412e-4, -0.0039544855, -0.009007667, - 0.0019479734, 0.022844816, -0.005834024, 0.005881339, -0.0033985178, - -0.010584812, -0.003167048, 0.0011362897, 2.6570732e-4, 0.014899568, - -0.020718813, -0.013521438, 0.0037243692, 0.015624496, -0.008020273, - 0.016252784, 0.004028428, 0.035446566, -0.03323122, -0.006164813, - 0.005913501, 0.023628205, 8.433966e-4, -0.00862988, 0.017653627, - -0.015095721, 0.010010495, 0.00419198, 0.01341731, -0.018761497, - 0.00984438, 0.0016428208, 6.3493324e-4, -0.022962242, -0.0125996545, - -0.0023154838, 0.0031849074, 0.015106164, 0.045311417, 0.0044476115, - -8.984192e-4, 0.020786166, 0.0026171855, -0.021538632, 0.017386723, - 0.010362589, -0.04836666, 0.015472647, 0.0032797803, 0.027390659, - 0.00878892, 0.0124942735, 0.013220016, 0.016919658, -0.02617472, - 0.003950602, 0.03871548, 0.0072086058, 0.01750678, -0.0028668146, - 0.022296295, 0.029445628, 0.043388803, -0.009800286, -0.022112416, - -6.3334627e-4, -0.014362096, -0.020453677, 0.04187709, -0.0018311914, - 0.013321063, 0.011917601, 0.017795049, -0.022254199, -0.011683082, - -0.0063533913, 0.006500841, 0.016120002, -0.004433856, -0.0033638552, - 8.5732277e-4, -0.011899473, -0.020431776, 0.007770426, 0.026303338, - -0.0030138248, 0.0026058692, -0.013836173, -0.009032864, 0.023685187, - -6.82169e-4, -3.4750058e-4, 0.027606905, 0.017064484, 0.005533391, - -0.03390298, 0.00645488, -0.04409326, -0.014542973, -0.015807666, - 3.3448034e-4, -0.015993493, -0.0069309333, 0.00698714, -0.0033029749, - 0.024239138, 0.015057225, 0.0021390577, -0.002501461, 0.0078699915, - -0.009617537, -0.03328987, -0.029943762, 9.2056766e-4, 0.009002878, - -0.011025403, 0.013885783, -0.01991785, -6.765831e-4, 0.012171936, - -0.02290155, 0.022445122, -0.009494259, 0.018569749, -0.010487814, - 0.0160628, -0.019477991, -0.011999873, -0.016457552, 0.025078561, - -0.025986457, -0.009540477, 0.02167807, -0.018713089, -0.0076722316, - 0.006723472, 0.02677464, 0.006530195, -0.007847244, 0.010401033, - -0.0061247903, -0.017603649, 0.012056302, -0.0090077305, -0.0027997189, - -0.004965431, 0.021068642, -0.007675036, 0.0010594408, 0.0053099436, - -0.01129881, -0.026510296, -0.0036690016, 0.014903934, -0.013578509, - 0.026599023, -0.0034340748, -0.025368392, -0.012973939, 0.004480007, - -0.003242822, 0.0030384292, 0.030804772, -0.0067467666, 0.017437883, - -0.002038636, -0.007837982, -0.012648098, 0.017438568, -0.007540289, - 0.010719378, -0.01814683, -0.011416433, 0.00307039, -0.031352054, - -0.0015855487, 0.011828911, -0.0043204757, -0.016696392, 0.020881511, - -0.03973099, -0.013163929, 0.01965947, 0.010514301, 0.01154817, - 0.014340503, -0.019944318, 0.0050075008, -0.0022646359, 0.01830878, - -0.005807311, 0.013085919, 0.006051564, -0.012336028, 0.022037763, - -0.0011073034, 0.03331603, 0.009276621, 1.5215237e-5, 0.028320216, - -0.014463759, 0.009731084, -0.0133165065, -0.010331593, -0.008834955, - 0.0010666568, -0.012790986, 0.017237594, 0.0042816577, -0.032243676, - -0.018443117, 0.012643375, 0.0204877, 0.0015547198, -0.014615901, - 0.0020772428, -0.0032299475, -0.016383044, 0.015606443, -0.006753911, - -0.0031055983, 0.021158824, 3.5219992e-4, 0.012924579, -0.013076941, - 0.016463974, -0.007406376, 0.013188583, -0.016637664, 0.004677135, - -0.015613065, 0.009462749, 0.01994489, 0.031584285, -0.037701752, - -0.010372766, -0.0047215014, -0.019130452, 0.008948676, 5.1817624e-4, - 0.003395853, -0.0086611565, -0.0023031656, -0.014810478, -0.0046084533, - 0.0064718416, -0.004112073, 0.019822858, -0.0047137025, 0.013982055, - 0.0034752425, 0.0075005842, 0.042201255, 0.0015691369, 0.017451888, - -0.042841636, 0.013964054, -0.0019380687, 0.024377234, 0.034855258, - -0.013660536, 0.0044232127, -0.0013413758, -0.0052094692, 0.014466644, - -0.01701874, -0.028735535, 0.011056952, 1.1547216e-4, 0.0016754677, - 0.013646334, -0.0039650514, 0.007731199, -0.014538214, 0.008523812, - -0.0046191327, 0.0064359345, 5.5734924e-4, -0.023234272, -0.016766565, - -0.007516322, -0.01848086, -0.013752866, 0.016204346, -0.016678967, - -0.016493555, -0.006626199, 0.0025431116, 0.0011066849, -0.0064657736, - -0.014028645, -0.026230086, 0.011478178, 0.0021360584, 0.014050888, - 0.024546133, 0.0036479284, -0.002587805, 0.006997368, 0.017695768, - -0.011932532, -0.018053543, 0.019051312, 0.0051161055, -0.0011410007, - 0.012975694, -0.02124968, 0.008953209, 0.017347235, -0.003293427, - 0.008790239, 0.0015777758, 0.011210345, -0.0028814478, 0.013767016, - 0.007024668, 0.030147796, -0.004049321, -0.0047982982, 4.1512997e-4, - 0.018385781, -7.453749e-4, -0.023145346, -0.0041152737, -0.04032046, - 0.0026267974, -0.002024088, -8.45368e-4, -0.011102414, -0.008164353, - -0.013320317, -0.010244328, 0.004350393, 0.031807195, 0.022426592, - -0.023291383, -6.193482e-4, -0.014077228, 0.00317733, 0.002481102, - -0.012758526, 0.0053250478, 0.017650872, -0.02563073, 0.0041462453, - -0.008684808, -0.02017966, -0.0072940323, -0.0044091633, 0.009065625, - 0.0077004903, 9.942537e-4, 0.0026341006, -0.006874269, 0.019159205, - -0.016123625, -0.022056336, 0.0072516045, 3.3246912e-4, -8.660277e-4, - -0.013587897, 0.007981239, -0.013925425, -0.015337514, -0.01063178, - -0.010531137, -0.0034434963, 0.026733043, -3.866648e-5, 0.017562142, - 0.010586689, -0.0047567803, 0.008983634, -0.019505855, 0.009040422, - 4.5523728e-4, 0.030952413, -0.007081742, -0.017034914, 0.010796655, - 0.01671393, 0.014502224, -0.0058627883, -0.0063387086, 0.0017930506, - -0.013626745, 0.040653825, -0.017644223, 0.017949117, -0.024845473, - 0.012792347, -0.025647849, -0.010831683, 0.002531903, 0.022180539, - -0.009297449, -0.0046681417, 0.012162095, 0.022310466, -0.026445359, - 0.007531327, -0.03121511, 0.0047691897, 0.008906883, 0.0073077907, - 0.039627697, 0.008113375, -0.0061482764, -0.017223634, -0.02442648, - 0.027564345, 0.013540775, 0.015618745, 0.01324549, 0.021359809, - 0.01425178, 0.003335185, 0.015735634, -0.01337234, -0.04181679, - -0.0064950627, -0.011534885, 0.0042234315, -0.0045848684, 0.0147204315, - 0.022585822, 0.022463718, 0.011303087, 0.0042763934, 0.009918533, - -0.006728936, 0.02651156, 0.02087307, -0.02204804, -0.0014492072, - 2.8822833e-4, -0.04048873, -0.019133776, -0.020523092, -0.0064155664, - 0.0078046964, -0.0014768549, -0.0042544366, -0.0011067044, -0.024681663, - 4.4732692e-4, -0.0027107548, -0.01286157, -0.0049923165, 0.0029995886, - 0.031211896, -0.016343638, 0.0023396434, -0.02629414, 0.0073435013, - -0.009578527, 0.009204814, 0.0076726577, 0.033858206, 0.032108333, - 0.025824053, -0.022392573, 0.0016675296, 0.02211541, -0.01274567, - -0.003754557, 0.011729353, -0.01775556, 0.013446169, -0.0065166554, - -0.00814955, -0.015923714, -0.019851692, -0.024386652, 0.014822914, - 0.010662789, 0.002646094, 0.00392983, 0.01350902, 0.005505584, - -0.0035869, -0.0025134655, 0.0043811384, -0.01756732, 0.024125589, - -0.01174176, 0.00481837, 0.0053580706, -0.001779656, 0.009733307, - -0.014165884, -0.029555814, -0.014913485, -0.014009255, -0.005784059, - 9.0035674e-4, 0.011356414, -0.0063888687, 0.011852375, -0.009435085, - -0.02012153, -0.017963875, 0.011736783, -0.0031589367, -0.006032495, - 0.024960302, 5.6897832e-5, -0.001821821, -0.0129157575, -0.023323476, - -0.020121431, -0.0017006397, -0.0046696155, -0.015822232, -0.005979437, - 0.006776398, -0.013893117, 0.009888955, 0.029471042, -0.0069906497, - -0.014617134, -0.001738214, -0.0016819546, 0.003988866, -0.01301568, - 0.03845934, -3.7529468e-4, -0.0023579972, 0.021747978, -0.0048809117, - -0.009173458, -0.004212857, -0.0177046, 0.00892627, -0.0070202122, - 0.0131820245, 0.014813421, 0.011682769, 0.006743668, 0.033441905, - 0.01780146, -0.010755292, 0.015359804, -0.025648212, -0.0059625534, - -0.022112664, 0.0060610506, 0.0074614375, 0.00449693, -0.0094091315, - 0.01797763, -0.015041546, -0.010613292, 0.0061129867, -0.027640624, - -4.8449435e-4, -0.024484046, -0.0030856237, 0.004715368, -0.005979766, - -0.016229635, -4.6584447e-4, -0.0028664176, -9.1785064e-4, - -0.0038289495, 0.008195385, -0.002602728, -0.012133377, 0.004955825, - 0.007503266, -0.0010140772, 0.0058545955, -0.0022593327, 7.6523656e-4, - 0.009031321, -0.03150054, -0.0042801267, 0.004643101, -0.021165127, - -0.0109917745, 0.0043865377, -0.0024397788, -0.006026832, 1.208492e-4, - 0.015567833, -0.020686254, -0.013201531, 0.02174042, -0.01576808, - -0.002501116, 0.015776452, 4.72209e-4, 0.0049452838, 0.008227168, - 0.017394928, -0.0057673855, 0.008879237, -0.0033180532, 0.0013314696, - 0.014376841, -0.032551944, -0.0016271196, 0.029014612, 0.018226802, - 0.019825267, -0.0018548555, -7.98148e-4, 0.004424083, 0.03189107, - 0.0034600059, 0.011042001, 0.021194877, 0.012340056, -0.03878327, - -0.015157169, -0.025075905, -0.005630964, -0.010908565, 0.0013346986, - 0.012455088, -0.02400389, -0.012526368, 0.00579998, 0.0012540785, - -0.01613498, 0.01495451, 0.008426293, 0.0031224117, -0.0020685664, - -0.038847208, 0.027249185, 0.008411709, 0.0066867853, -0.009045793, - 0.0109163085, 0.0145126525, -0.021789497, -0.00976153, 0.019355971, - -0.017632142, -0.0023383482, 0.022864051, -0.024367673, -0.0010072956, - 0.012132724, -0.0053257155, 0.012448843, -0.008127176, 0.007274546, - -0.006028662, -0.0019344637, 0.019701881, 0.022971392, -0.0052002626, - -0.004134982, 0.021168727, -0.004793059, 0.016905405, -0.0064073754, - -0.0022611388, -0.014631013, 0.0023612857, -0.019665442, -0.0039468366, - -0.0102467025, -0.0022924799, -0.0067022895, -0.024979182, - -0.0041502886, -0.023378534, -0.009403335, -0.0042711073, -0.014266319, - 0.0187061, 0.028266553, 0.017457442, -0.023983512, -0.0026756623, - 0.015024352, -0.020165006, 0.0032039797, 0.020861888, -0.026178109, - -0.02093165, 0.020279033, 0.018162802, 0.0076783393, -0.0057226457, - 0.001997137, -2.1992947e-4, 0.027377604, -0.019213839, -0.008277627, - 0.008457508, -0.010933303, -0.002920575, 0.006007328, 0.0148907555, - 0.0076044747, 0.0140729295, -0.0073226793, 0.0065026823, 0.00257787, - 0.016465994, -0.02103656, 0.023693237, 1.0152544e-4, 0.002373179, - 0.009400538, -0.031732567, 0.040630274, -0.013791575, -0.01505113, - 0.015974298, -0.0043362523, 0.018556772, 0.015946085, 0.020378385, - -0.0018805222, -0.006989507, 0.019388825, -0.0025298495, 0.0038587647, - 0.011556106, -0.011795936, 0.026682617, 0.0078005735, -0.0039284253, - -0.029661983, 0.0042332867, 0.008766351, -0.0079950085, -0.008238766, - -0.01084985, 0.012913775, 8.299665e-5, -0.026732145, 0.005398732, - -0.0066221063, 0.029185193, 0.005119214, 0.01163555, -0.018028198, - 0.0073392848, -0.009567918, -0.01782347, -0.0027127962, -0.010721964, - -0.006042068, 0.02463438, 0.0052507864, 0.031643808, 0.0021796233, - -0.011750521, 0.013645685, 0.00825765, 0.0036034945, 0.0025935122, - -0.007540337, -0.009231252, 0.001523438, 0.00262154, 0.0019544738, - 0.010010856, -0.011596767, 0.011698399, 0.009511588, 0.0042984537, - 0.0081524225, 0.0042745215, 7.1651436e-4, -0.0019070519, 0.0256312, - -0.0042395266, -0.008256169, 0.017588815, -0.013178889, 0.024347126, - 0.0071319574, 0.022197142, 0.0096365195, -0.013856364, -0.013281506, - 0.010389161, -0.003405975, -0.014086821, 0.024560152, -0.008697421, - -0.00271295, -0.015501282, 0.012840312, 0.0021149972, -0.008820352, - 0.0077935355, -0.027157519, -0.0053733373, 0.009083428, -0.028705705, - 0.008286461, 1.4224599e-4, -0.0050623235, -0.0064270096, -0.027662698, - 0.019358398, 0.0034394902, -0.027600283, -0.017820096, 0.0066382554, - 0.01881009, -0.0025700494, 0.0018771245, 0.015012834, -0.007827228, - -0.010577609, 0.026348218, -0.007039258, 0.018969696, 0.0020375275, - -0.022741219, -0.0033972135, 0.019422963, 0.031594973, -0.0070781396, - -0.013776568, -0.0029878204, 0.016697299, 0.008617492, -0.008230542, - 0.0018518373, -0.0010198933, -0.016663792, -0.024233343, 0.022338714, - -0.007346202, -0.0022095775, -0.039173927, -0.0024168848, 0.013052599, - 0.0015363194, 0.012511774, -0.026273722, -0.01353673, -0.024568005, - 0.015801903, 0.010690222, -0.02118933, 0.05103153, -0.001390433, - 0.0126791755, -0.0118413055, 0.0016979657, 0.0010536605, 0.015240875, - 0.0016248917, -0.025799464, 0.017586138, 0.015160183, 0.028385649, - 0.028280709, 0.01168344, -0.0030342785, -0.0077572437, -0.024159439, - -0.0063135913, 0.03000814, -0.0093497, -0.0018520325, -0.023139495, - 0.013149737, 0.00837688, -0.004633381, 0.0012838099, 0.001956497, - 0.0045633204, 2.9365145e-4, 0.005292507, -0.015676813, 0.011969716, - -0.006814902, -0.009283857, -0.011027736, -0.0054184557, -0.0011280106, - 0.01635909, -0.0017100484, 0.0015915828, 0.0033335413, 0.004125912, - 0.006142719, 0.017146463, -0.009034739, 0.0080435015, 0.011861437, - -0.015157312, -0.011483046, 0.004161285, -0.026461238, -0.00505978, - -0.016631985, -7.5299083e-4, -0.002483237, -0.010526679, 0.009089428, - 0.026604824, 0.0020827795, -0.01916382, 0.013348528, 0.004929412, - -0.015348831, 0.040571783, -0.006727387, 0.02510464, -0.0044951104, - 0.014468384, -4.7971797e-4, 0.003881509, 7.941365e-6, 0.00788815, - -2.845109e-4, -8.2649547e-4, -0.0056887707, -0.013910347, -0.010831298, - 0.026508272, 5.709091e-4, -0.009642695, -0.022280121, -0.030836053, - 1.628502e-4, -0.033225715, -0.00615277, -2.2732162e-4, 0.0033174872, - -0.0013952226, 0.009637878, -0.0028273324, 0.0017149263, -0.0012965848, - -0.007654805, -0.0034452626, -0.036791135, -0.012381857, -0.0047393576, - -0.006523689, -9.6068066e-4, -0.0030903534, 0.0021189584, 0.0038307896, - -0.01723799, -0.0058382484, 0.010559939, 0.0020168237, 0.015481189, - 0.0017294731, 0.0024683492, 0.0038631277, 0.0020629968, -0.052386984, - -0.00957399, -0.0032181665, -0.014533753, 0.0030550228, -0.009289882, - -0.038853984, -0.027035015, -0.01391697, 0.010270325, 0.0075057745, - 0.01838134, -0.0041832384, 0.039460387, -0.0026121936, 0.029745242, - 0.019168355, 0.017524133, 0.021774387, -0.006915337, 0.0058466713, - 0.0042959624, 0.025359962, -0.025590528, -0.022714205, 0.020896224, - 0.0045658327, -0.0064984662, -0.003116815, 0.00826337, -0.031182013, - 0.013017693, 0.011165793, -0.0027349275, -0.0073615704, -0.008588787, - -0.029478855, 0.02712182, -0.0018783399, -7.935999e-4, 0.0041169426, - 0.004776666, 0.0061580194, 0.010766171, -0.0014718638, -0.010504569, - -0.010324895, 0.02508763, 0.006620143, -0.011767986, -0.012884773, - -0.010783176, 0.024907868, -0.002961159, -0.009484852, -0.010319965, - 0.011736204, 0.0075150477, 0.012567238, -0.015069072, -0.02333374, - -0.008390377, 0.022069117, -0.0029423258, 0.0024276052, 0.01799488, - -0.020751346, 0.008943616, -2.8638743e-4, 0.033537254, 0.025231928, - 0.001075392, -0.0011599007, 0.0025602968, -0.04391282, -0.017975727, - -0.0034759669, -0.014425624, -0.009914282, -0.0027432526, -0.006013066, - 0.007063438, 0.008917132, 0.00280109, 0.009306873, -0.0014166302, - 0.011949993, 0.013457795, -0.0014566559, -0.0019011545, 0.017919201, - -0.014814862, -0.0024265437, 0.006600855, -0.0037453792, -0.014200686, - -0.0019055537, -0.0069344095, 0.0053596445, 0.003420915, 0.015814386, - 0.028721849, -0.025447115, 0.00579192, -0.016874373, 0.009818828, - -0.0048004733, 0.01726171, 0.010485124, 0.0042058798, 0.004638927, - -0.0013938514, 0.025755662, 0.008476002, 3.0517153e-4, 0.0011502514, - -0.020723484, -0.026584882, 8.044925e-5, 0.0026107358, 0.0021877887, - 0.02472196, -0.0055666515, -0.0058408477, -0.0026247522, -0.008455797, - -0.0032180075, -0.01344929, 0.0016874998, -0.014082348, -0.015694559, - -0.0069819875, -0.04607942, -0.0108709065, 0.0019752097, 0.0378831, - -0.008690232, 0.033659384, 0.016312834, 0.0020255318, 0.033299446, - 0.00718577, -0.02165371, -0.009457784, -0.027412027, 0.01244025, - 0.0046675312, -0.009858592, -0.004193913, 0.0071911714, -0.0044966326, - 0.0072853197, -0.011049252, 0.0043427353, -0.013426346, -0.0043220646, - -0.010055658, -0.010442752, 0.015582853, -0.025373433, -0.002476837, - 0.033359535, 0.006011855, -0.016479256, -3.2892247e-4, 0.026873654, - 0.009662241, 0.0048500807, 0.007111019, -0.037324432, 0.009543414, - 0.0025728645, 0.006966886, 0.005020559, -0.020807229, 0.01285275, - -0.028683769, 0.008235071, -0.005447339, -0.009468885, 0.0013753823, - -0.008336947, -0.0013354868, 0.01830759, -0.006874293, -0.0021203686, - 0.0023851823, 4.966229e-5, 0.036276776, -0.002446602, -0.012880556, - 0.0051171766, -0.0068316488, 0.006047127, 0.0012344957, -0.007412293, - 0.0032816024, 0.018131789, 0.0136330305, -0.023431875, 0.0025305245, - -0.03233083, -0.018799689, -0.023248728, -0.0017207743, 0.013610114, - -0.01863507, -0.010136554, -0.0016399446, 0.012332495, 0.006575585, - 4.976268e-4, 0.025661727, 0.0084040575, 0.014799537, -0.0038752824, - -0.0055983346, -0.0025731437, -0.006836517, 0.0026222107, -3.7153828e-4, - -0.008705769, 0.022375153, -0.023566108, -0.01496766, 0.019430391, - 0.0035760405, -0.0031182573, 0.0071892724, 0.030024571, 0.015211247, - 0.016469581, 0.009367511, -0.011950481, 0.017502658, -0.011831608, - -0.01873042, -0.0054739607, 0.019392995, -0.0047324183, 0.0021841836, - 0.024781637, 4.7412346e-4, 0.01361257, 0.016095368, 0.009453997, - 0.009020171, 0.008469138, 0.0035074046, -0.0019577732, 0.008792581, - -0.017120702, 0.009368359, -0.006192452, 0.0066053206, 9.146069e-4, - -0.0126315, -0.004229658, -0.03454389, 0.025485078, 0.027392214, - -0.016049385, -0.012966692, 0.0012094524, 0.017973782, -0.009207959, - 0.03183531, -0.026464716, 2.6552277e-4, -0.0036191447, 0.009208331, - 0.01785937, -7.795196e-4, 0.0048871404, -0.02829332, 0.028544119, - -0.009164538, 0.0042241286, -0.026415447, -0.019795112, -0.022454722, - -0.013912933, -0.0064253868, -0.014620676, 0.014101569, -0.01891294, - -0.00995265, 0.012025487, 0.036465775, 0.0035181507, -0.0043194843, - -0.007397284, -0.019979332, 0.019897647, -0.013009694, 0.012431063, - -0.009135901, 0.02864881, 0.011055064, -0.004753663, -0.008076399, - 0.009510026, 0.003260417, -0.013475586, -0.002930117, -0.007057841, - 0.026853703, -0.024396434, 0.025190467, 0.016681349, 0.0024064449, - -0.006126137, -0.009739741, 0.011704202, 0.011243984, 0.0046721846, - -0.017167285, 0.006227956, -0.025836578, 0.012121388, -0.010761186, - -0.0015058104, 0.010566704, -0.031095088, 0.016066637, 0.0051371837, - -0.020591382, -1.5940073e-4, 0.0074441787, 0.014103236, 0.01895201, - 0.010720582, 0.002472864, -0.010651364, 0.019861933, -0.02991092, - 0.00217433, -0.03819579, -0.008581989, -0.0036037571, 0.021028372, - -0.009451805, 0.02626967, -0.014444041, -0.016959207, -0.010003567, - -4.3855704e-4, -0.023625297, 0.0013868186, -0.020775514, 0.020600904, - -0.01929463, 0.011532097, -0.026030673, -0.016642548, 0.01894383, - 0.0017792924, -0.013967348, -0.007825406, 0.011654645, -0.0015133836, - -0.01910326, -0.018080154, -0.017706595, -0.0117552, -0.03488656, - -0.01831759, 0.020523619, 0.011555962, 0.024467688, 0.0067342496, - -0.0057476843, 8.4191415e-5, 0.0026447289, 0.015638322, -0.028160494, - -0.02114997, 0.02697725, 0.028028151, -0.021763418, -0.01646148, - 0.032199703, 0.01419773, 0.010779054, 0.010525255, -0.008439958, - 0.018704504, -0.008337722, -0.003332889, -0.0058664195, -0.020680306, - -0.020556113, 0.008740596, 0.013821281, 0.0016164317, -0.0014396816, - 0.012024514, -7.3828496e-4, -0.0012561134, 0.0014285084, -0.009288091, - -0.0055995323, 0.002341684, 0.017031163, -0.014894917, 0.013208017, - -9.876649e-4, -0.012101355, -0.0053726593, 6.766572e-4, 0.030794954, - -0.0021771188, 0.00904085, 0.005155847, 0.018199936, 4.71729e-4, - -0.0045068976, -0.030087605, 0.015554239, -0.017193113, 0.032219954, - 7.500028e-4, -0.015140869, 0.018500896, -0.011348727, 0.010290025, - -0.0072946376, 0.021837838, -0.011097982, -0.014078197, 0.0028563514, - 0.025122251, -0.026976801, -0.0032672214, 0.015598487, -0.0023525432, - -0.0072444975, -0.033674523, 0.027933998, -0.0065958207, 0.0052179247, - -0.013620478, 0.010044108, 0.0065594953, 0.019021297, -0.0013472593, - -0.010345959, 0.0069422373, 0.007883089, 0.010255142, -0.0063652066, - 0.00970424, 0.015774563, -0.016272148, -0.007917021, 0.005653986, - -0.003985296, 0.010428131, 0.0036764361, -0.020058325, 6.3258054e-4, - -0.0064513227, 0.013651397, 0.022291224, -0.006790964, -0.007059897, - 0.0027758454, -0.01586607, -0.0135384165, -0.0011541441, -0.005545206, - -0.0049088444, -0.023492951, -0.009671477, -0.019735646, 0.016024621, - -0.0031482128, 0.007919066, 0.016869886, 0.012889596, -0.014600724, - -9.88014e-4, 0.019807758, 0.013218496, -0.012223796, -0.018989684, - -0.0013845525, -0.021361023, -0.042664587, 0.0057413667, -9.242741e-4, - 0.020968772, 0.0022373216, -0.012569813, 0.021696119, 0.006105227, - -0.0026350021, -0.023409702, -0.033205662, 0.0101259155, 0.02757774, - -0.016768714, 0.01578367, -0.014831964, -3.2562052e-4, 0.007286774, - 4.9955904e-4, 0.0035113748, 1.7106459e-4, -0.035990097, -0.007142774, - -0.013442289, -0.010601505, 0.00916694, 0.022367578, 0.025141137, - 0.004185861, 0.0131387245, 0.0054521714, 0.019454239, 0.01310935, - 0.006918589, -0.030913506, 0.009878578, 0.013138774, -0.013251674, - 0.01677472, -0.022877159, 0.014036335, 2.083008e-4, 5.0324714e-4, - 0.0064333044, 0.013765052, -0.008314332, 0.018380951, 0.021146083, - -5.152328e-4, 0.014328709, 0.010846481, -0.023223018, 0.007547405, - -0.019262256, -0.009639299, 0.0015323646, -0.008302494, 0.0054306984, - -0.010908381, -0.0156095205, 0.0100844875, 0.008334795, -0.0068361447, - -0.008986638, 2.0004777e-4, -0.0018037381, -0.016786711, -0.032362096, - 0.01375996, 0.01895417, 0.013123602, -0.011844037, -0.020975573, - -0.010574897, -0.0026743847, 0.0011047903, -0.027566785, -0.0030879567, - 0.012755323, -0.026414607, -0.004941029, -0.04210606, 0.023632467, - -0.029912898, 0.007853611, 0.00821555, -0.0073721195, 0.005565295, - -0.0041234894, -0.0041233697, 0.029290577, -0.024133038, -0.0068336455, - 0.01906981, 0.014528027, 0.017457297, -0.0126634855, -0.024944067, - 0.023436882, 0.01596464, 0.022092558, -0.0025486622, 0.009622212, - -5.5184745e-4, -0.004216268, -0.02345771, 0.0074452823, -0.02398027, - 0.0013820003 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.050242145, 0.034030408, -0.047632024, -0.06147399, 0.0134657435, - 0.03377812, 0.01817601, 0.011375616, -0.02126231, 4.783581e-4, - -0.003201713, 0.010380074, 0.034306657, 0.0337642, 0.015344182, - 0.031716697, -0.024918556, 0.0032030619, -0.042161606, 0.004788489, - 0.01211385, 0.027065216, 0.007743967, -0.04826362, 0.048073065, - -0.037596066, 0.024278898, -0.02811491, -0.030834367, 0.021884045, - 0.022018442, 0.020310726, 0.01758236, -0.062395267, 0.003999986, - -0.07701122, -0.0020833188, -0.0014170236, 0.042026505, -0.027295338, - 0.04492048, -0.0136768725, -0.04490229, 0.020486096, -0.009525922, - -0.0074524297, 0.009534029, -0.0062887208, 0.033386763, 0.047198407, - -0.0092504015, 0.019379878, -0.044231158, -0.027484821, -0.001346414, - 0.07001977, -0.01796565, 0.007233096, 0.027756905, -0.03036555, - 0.01600232, 0.007555218, 0.05449878, 0.020247579, 0.017538935, - -0.005383952, 0.03685027, 0.02976133, -0.024807138, 0.028360153, - 0.01689876, -0.05850375, -0.006893139, 0.059985798, -0.007656889, - -0.002334366, 0.044740044, 0.0436102, 0.019879216, 0.022646608, - -0.014345175, -0.06480783, 0.0050508366, -0.014516165, 0.015997937, - 0.06114636, -0.022816887, 0.0043939087, 0.04463398, 0.021249402, - -0.015156923, 0.010648307, -0.004279184, 0.018328236, -0.021524305, - 0.059913225, 0.01956869, 0.008246285, 0.021460146, 0.02566343, - -0.03596078, -0.07405919, -0.01916839, -0.016686682, -0.0412095, - -0.014245364, -0.0701731, -0.01904667, -0.034610946, 0.02232697, - -0.025139019, 0.00218286, 0.037941642, -0.049797744, -0.005305126, - -0.006598729, 0.009568195, -0.016704334, -0.060525585, 0.031642143, - -0.045733113, 0.036233246, 0.0046953573, -0.04384967, -0.038248554, - -0.06281249, 0.067332044, 0.015441116, 0.017062385, -0.004242454, - 0.056740504, -0.012988929, 0.019793652, -0.0078662895, -0.009985921, - -4.168453e-4, -0.025597434, 0.042347006, 0.033975147, 0.0014367136, - 0.011047536, -0.008516991, -0.021054031, -0.004547465, 0.056125607, - 0.026837053, -0.004293891, 3.2465867e-4, -0.027370803, 0.05689055, - 0.038709223, 0.05538328, 0.039692014, -0.024781814, -0.01940538, - -0.03292816, 0.0019981966, 0.00725348, -0.020776993, 0.008761805, - 0.039908443, 0.022612827, -0.042664386, -0.019289818, 0.0043253656, - 0.007486985, -0.0414386, -0.045864295, -0.05474146, 0.01241801, - 0.037050974, -0.038066566, -0.0053211395, 0.025703102, 0.028417533, - -0.01691708, 0.0025136208, 0.07731113, -0.032665715, -0.013894534, - -0.013262271, -0.020405922, -0.024575617, -0.01310914, 0.029026857, - -7.976699e-4, 0.024867602, -0.022644237, -0.04403386, -0.025978148, - 0.012635902, 0.048589222, 0.0012952428, -0.014914364, 0.043761894, - -0.006042455, 0.024740212, 0.025442949, 0.02445198, -0.0013873943, - 0.0020994681, 0.0011797206, -0.053972624, -0.013670895, -0.037943203, - -0.016391225, 0.06819616, -0.026774384, 0.0038879905, 0.006857239, - 0.018249208, -0.028718248, 0.011955343, -0.04911547, 0.044712234, - -0.04920982, 0.0014017659, -0.030096835, -0.0015413075, -0.026013978, - 0.03627294, 0.021850744, -0.0059425854, 0.008481624, -0.0042990674, - -0.03030234, 0.040937364, -0.028156867, 0.02499197, 0.028653713, - 0.0030598873, -0.006475997, -0.053502105, -0.03733735, 0.034857403, - -0.002848444, -0.053916037, -0.0035560748, 0.0037375072, -0.0029573843, - 0.011160685, 0.0033218574, -0.0025325185, -0.035700735, -0.004187678, - -0.01107026, 0.026504746, -0.02818588, 0.018557986, -0.019405263, - -0.024328073, 0.027808238, -0.02322138, 0.017251406, 0.083180636, - -0.001884352, 0.01125751, -0.02581315, 0.0066134487, 0.033852346, - 0.013876765, 0.021175673, 0.013028736, -0.019330237, -0.032947574, - -0.04954855, -0.0012772918, -0.021792084, -0.0055618747, -0.011709185, - 2.5510538e-4, 0.0468743, 0.017366242, 0.016826058, 0.0066605844, - -0.0035692677, 0.05020446, -0.015664577, 0.023670636, 0.019793458, - 0.026696032, 0.020483796, -0.040289614, -0.044865917, 0.016572637, - 0.066011116, 0.03966245, -0.04435638, -0.055053543, 0.022473348, - 0.016264454, 0.0013222854, -0.053356662, -0.025285207, 0.012833239, - -0.020372253, 0.008812759, 0.0042792372, -0.03906236, 0.04333276, - 0.003027101, -0.032283753, 0.049946584, 0.029444542, 0.039820895, - -0.036605105, 0.009794604, 0.049707603, -0.041940704, 0.030501336, - -0.0037559664, -0.023717659, 0.033349328, -0.036169652, -0.011281311, - 0.02955808, -0.044048347, -4.491442e-5, 0.038298447, 0.060452685, - 0.020442866, 0.013907217, 0.03819945, -0.00521887, 5.79873e-4, - 0.031248596, -0.019352067, 0.028204285, -0.019983822, 0.01394066, - 0.006402232, 0.017437477, 0.03978038, -0.038747843, 0.017429177, - -0.008447295, 0.006921082, 0.020403825, 0.002994858, 0.006927452, - -0.06975841, -0.0052068345, -0.042481963, 0.025422515, -0.062963, - -0.022240793, 0.038945526, 0.01233065, 0.045467284, -0.008000042, - 0.020344382, 0.0143977925, -0.029188437, -0.018763956, -0.022582417, - 0.0061722943, -0.06735989, -0.013984114, 0.0034639868, 0.031486794, - -0.016495368, 0.028503845, 0.049862146, -0.08586389, -0.004147442, - -0.040898766, -0.0018026866, -0.058069274, -0.039343275, 0.011678139, - 0.014133522, 0.0653813, 0.023116231, -0.042461526, 0.044569142, - -0.045294575, -0.025980653, -0.039997373, -0.039534032, 8.5488654e-4, - -0.018682964, -0.029636508, -0.041493267, -0.005421079, 0.0152882375, - 0.06239184, 0.0072381273, -0.07732619, 0.014419474, 0.035797462, - -0.016806113, -0.022403594, 0.0108371815, 0.010173304, -0.016953263, - 0.01464835, -0.037334356, -0.004540682, 0.07180188, 0.008311969, - -0.039521113, 0.002371794, 0.043484166, -0.0045717987, -0.025995899, - 0.030167053, -0.062397305, 0.008464886, -0.03015036, -0.029188648, - -0.010844518, -0.0049708225, 2.3676641e-4, -0.019865656, -0.010737222, - -0.033256583, 0.014399385, -0.020023242, 0.04517772, 0.017825441, - -0.013505179, 0.046397816, -0.00476169, -0.0035533307, -0.011442845, - 0.059391387, -0.002292587, -0.0054290933, 0.025394876, -0.054539274, - -0.07545004, 0.011225672, -0.035247006, 0.025703648, -0.0353356, - -0.038756628, -0.044764433, 0.014353091, -0.0042040204, 0.008937048, - 0.04573556, -0.028047513, -0.023908878, -0.004751142, 0.019539593, - -0.033302274, 0.023456313, 0.006338549, 0.058699552, 0.0036978696, - 0.04412387, -0.0016508347, -0.0010173399, 0.059495114, 0.032696277, - -0.02978869, 2.7863482e-5, 0.03522451, -0.047335263, -0.013727489, - -0.053834092, -0.029223606, 0.005416229, 0.030219615, -0.023407493, - -0.005626721, -0.059290554, 0.051327594, -0.03794918, 0.052977804, - 0.040630773, 0.051948067, 0.026633553, 0.00619915, 0.01439075, - -0.032433875, -0.05480826, -0.016240653, 0.035637252, -0.016927913, - -0.03253733, -0.015081422, -0.019593436, -0.047874253, 0.055996545, - 0.024271308, -0.009042086, -0.0043307524, -0.029486526, 0.0072656814, - 0.009616868, -0.028537342, 0.030687641, -0.020251272, -0.03048231, - -0.0232215, -0.019104965, -0.0037445049, -0.019370329, -0.034431167, - -0.007362058, 0.027358681, -0.0064233686, -0.06519861, 0.0011289538, - -0.013941667, 0.020313598, -0.036282055, 0.083256975, 0.015847838, - -0.011331484, -0.016052525, -0.04833475, 0.0293709, -0.00534586, - 0.016232025, -0.0059463363, -0.016067047, -0.0011633824, -0.004425985, - -0.008963263, -0.025987733, 0.0071832943, -0.030306447, 0.010564814, - -0.011880076, 0.017314374, -0.043439303, 0.007446971, -0.0052137272, - 0.038583696, 0.025689907, -0.05328657, 0.023345845, -0.029915582, - -0.047752827, -8.915331e-4, -0.011815901, 0.017428251, 0.0046744137, - -0.015428165, 0.07950494, -0.057702735, -0.044943254, 0.018518416, - 0.0011308464, -0.015904851, -0.0049165078, -0.0017875923, -0.026252538, - 0.043772116, -0.066936, -0.041511726, -0.019085988, 3.5459298e-4, - 0.0055829706, 0.047812283, 0.031222142, -0.0025849144, 0.05205399, - 0.027759114, -0.0068961144, -0.014763292, -0.044222556, -0.004555308, - -0.043298062, 0.005424893, -0.030312482, 0.016597921, 0.06247703, - 0.028537411, -0.046258282, -0.018388238, 0.0111342715, -0.038558863, - -0.04728998, 0.00514388, 0.04900364, 0.0142060965, -0.03045939, - -0.01212333, 0.027290918, 0.012185223, -0.022337072, -0.009006533, - -0.037098896, 0.02044169, 0.029041022, -0.019481797, 0.021431075, - 0.049214236, 0.010882547, -0.011542021, 0.035883646, -0.004914077, - 0.05342143, -0.05585026, 0.03654714, -0.05606945, -0.010760125, - -0.028432203, 0.02061942, -0.034874756, -0.0023222703, 0.008080019, - 0.034218412, -0.0142712435, 0.027441896, 0.04002924, 0.010325173, - -0.002808111, 0.018633865, -0.0107201915, -0.021906422, -0.0168371, - 0.009036321, -0.016635653, -0.03208353, -0.02443747, -4.644902e-4, - -0.043623038, 0.022133915, 0.01960269, 0.01238226, 0.017918855, - -0.080291644, 0.008681188, 0.0122257015, 0.02367723, 0.042130694, - -0.016462842, -0.013913111, 0.014049876, 0.014176261, -0.0073363283, - 0.022586051, 0.02099428, -0.065447204, -0.01706811, 0.02449134, - -0.0231517, -0.016037121, -0.034774162, -0.013012778, -0.026757633, - 0.04580319, -0.023090879, -7.930908e-4, -0.03443416, -0.057802703, - 0.0046437024, 0.01552322, -0.0072432677, -0.018233499, -0.028543126, - 0.027252536, 0.030934358, 0.003810559, -0.04364624, 0.012667184, - -0.008483771, -0.009424623, 0.008121754, -0.046236653, 0.026182074, - 0.054786265, 0.017515501, 0.025967354, -0.006578432, -0.030359363, - -0.0041016606, 7.7077356e-4, -0.0046729306, 0.04012337, 0.026052514, - -0.020488536, 0.04415431, 0.020165283, 0.023212573, -0.04191679, - 0.012260914, 0.025484098, 0.04186672, -0.006242548, 0.008282136, - 0.07573995, 0.05983164, -0.0056009763, -0.023993677, 0.011700981, - 0.05829589, -0.011910441, -0.010919264, 0.03007375, 0.030115347, - -0.075320944, -0.06641055, 0.037097268, -0.018624067, -0.016738348, - 0.0010458737, 0.019328363, -0.032080226, -0.032974865, -0.008807001, - 0.0390178, -0.0111792935, -0.033935454, -0.0033647139, 0.058425706, - 0.02683061, 0.02733997, -0.036149204, -0.020361237, -0.0058315955, - 0.030093824, 0.022067744, -0.0028083716, -0.012271537, 0.034314323, - -0.01856507, 0.043201298, -0.012246946, 0.0037654843, -0.016534856, - -0.004882378, 0.010712941, -0.025159165, 0.023392197, 0.014709122, - 0.047423977, -0.02428928, 0.0051366733, 0.004694296, 0.032043472, - 0.013078845, -0.056907438, -0.016929692, 0.08174243, -0.019544622, - 0.0066435253, 0.010842908, -0.058558814, 0.008788253, -0.019907257, - 0.039546594, -0.059523996, -0.0013698937, 0.0130020315, -0.03156459, - 0.00281472, 0.03700242, 0.0139751695, -0.030170133, -0.038430586, - 0.0015125297, 0.02510792, -0.014858639, 0.025236838, 0.016074417, - -0.02514653, 0.033885814, 0.02363698, 0.0018389405, -0.022705501, - 0.050433956, -0.07143247, -0.027422564, -0.04305107, -0.041871354, - 0.03890402, 0.009602033, -0.053056642, -0.012664605, 0.0041837357, - 0.0049336166, 0.06950533, -0.024175473, -0.02206998, 0.035941996, - -0.0076013356, -0.018621063, 0.0079454705, 0.030885663, 0.016582886, - -0.073855355, -0.0052893846, 0.015866874, 0.007514696, -0.009394157, - 0.044197455, 0.026472343, -0.022697752, -0.02210617, -0.0144913, - -0.025391996, -0.041005272, -0.02864931, 0.037285678, -0.023245214, - -6.529825e-5, 0.035099667, 0.021149253, 0.0017288012, 0.015383157, - -0.01292643, -8.524818e-5, 0.043014027, -0.014667364, 0.019968698, - 0.009286017, -0.05143489, 0.02899964, 8.4896677e-4, -0.009520413, - -0.005349938, -0.03151184, 0.015239107, 0.03910846, 0.038629986, - -0.0064611407, -0.036931705, 0.044623718, 0.048857883, -0.020779634, - 0.023223335, 0.015153814, 0.0049018306, -0.02517954, 0.014828043, - 0.030383905, -0.025762927, -0.02507249, -5.509623e-4, 0.013113282, - -0.026409386, 0.020926626, 0.02568466, 0.04773538, 3.71331e-4, - 0.0013913332, -0.01697874, -0.010540625, -0.02851487, 0.040577758, - 6.179244e-4, 0.04469479, -0.023416193, 0.0013411813, 0.054188352, - 0.022703452, -0.026315572, -0.005075917, -0.0034688492, 0.022360597, - -0.08841041, -0.010232568, -0.002888922, -0.009885654, -0.055811465, - 0.029485507, -0.033145428, 0.019155711, 0.01033464, -0.027959256, - -0.007973783, 0.012545637, -0.02123078, -0.02840675, 0.020834565, - -0.012690726, 0.014522639, 0.048512023, 0.011830905, -0.039474696, - -0.010471679, -0.047604304, 0.008393635, -9.780591e-4, -0.053237993, - -0.031085359, -0.023548394, -0.028462717, 0.014894704, -0.0479401, - 0.020791532, 0.036494393, -0.010481561, -0.06355575, 0.02444015, - 0.036435805, -0.0056486474, -0.007632342, -0.011771013, 0.002755042, - 0.0581659, -0.043365475, -0.012483348, 0.054146636, -0.07757612, - 0.014578585, -0.014402685, -0.0616029, -0.04323669, 0.011855541, - -0.033903558, -1.8186688e-4, 0.0451798, -0.038211115, -0.022871919, - -0.013259403, -0.003137857, -0.04274027, -0.011763604, -0.009259643, - 0.004134381, -0.022148639, 0.006569444, 0.055492774, 8.363779e-4, - 0.10121369, 0.06537512, -0.0392639, 0.011635009, -0.02032446, - -0.0332428, -0.011084331, 0.013050606, 0.037623733, -0.034508552, - -0.020764055, 0.0229246, -0.046951145, 0.004451243, -0.03215088, - 2.1890577e-4, 0.043841526, 0.03779505, -0.013655075, 0.006975418, - 0.028341664, 0.0029989188, -0.02776234, -0.0034214617, -0.025466388, - -0.060997467, -0.042246934, 0.009684678, -0.01287877, 0.038727082, - -0.04037743, 0.0110998005, -0.007979689, 0.0034806097, 0.034130674, - -0.02035514, -0.0153980395, -0.019975023, -0.03650171, -0.051007595, - 0.048555285, 0.019789051, 0.019474737, 0.0015163779, 0.01979369, - 0.06233687, 0.008186258, 0.025877047, -0.014280894, 0.037156835, - -0.043476716, -0.032702718, -0.022246914, 0.009129226, 0.09402155, - -0.10530216, 0.03866893, -9.41858e-4, 0.009172731, -0.028010575, - -0.0024046025, 0.028208787, -0.009718076, -0.012716781, 0.061038185, - 0.009880222, 0.027141575, 0.01848537, 0.03470098, -0.05000912, - 0.016952323, -0.0019534284, -0.02428752, 0.0094553, 0.026065411, - 0.01137436, 0.008981863, 0.018924912, 5.842047e-4, 0.027806675, - 0.024193982, -0.009165653, -0.025681507, -0.0041226996, -0.019176228, - -0.001236683, 0.040170986, -0.039472148, -0.0092445, 0.008158303, - 0.012749239, -0.011902229, 0.040322304, -0.019552186, -0.045223102, - 0.03857246, 0.008806436, 0.010206329, -0.046223875, 0.019418944, - 0.030005153, -0.0491047, 0.02174849, -0.032797873 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + "Squashed squirrels", + "Struck samples" + ], + "source.subjects.concepts.id" : [ + "subject2" + ], + "source.subjects.concepts.sourceIdentifier" : [ + "03y8UH48Sz" + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + -0.013064202, + 0.027516874, + 0.0038179387, + -2.5902397E-4, + 0.051218387, + -0.0065218317, + -0.011473545, + 0.0077846977, + 0.00665878, + -0.014726191, + 0.015909633, + -0.001338469, + 0.008993755, + 0.0030467054, + -0.00786881, + 0.019741185, + -0.030130813, + -9.972303E-4, + 0.02373464, + 0.009724456, + 0.016569797, + -0.0017805991, + 0.021089282, + -0.016751297, + -0.003970524, + 0.00473451, + 9.823896E-4, + 0.016764982, + -0.011181464, + 0.006838786, + -0.008800252, + 0.016143544, + 0.017932469, + -0.0011303285, + -0.009926287, + 0.0022164248, + 0.016814554, + 0.021267062, + 0.013160261, + -0.023085581, + 0.014542532, + 0.0265852, + -0.027008433, + -0.03459668, + 0.008195577, + 0.023576697, + 0.0108571965, + 0.0148329865, + 0.016047772, + 0.016815687, + 0.010997155, + 0.0067561804, + 5.231085E-4, + 0.006984897, + 0.016553987, + 0.011031114, + 0.010194258, + -0.0143538825, + -0.023967527, + 0.011866458, + -0.00845728, + -0.02447141, + 0.014137887, + -0.011880368, + -0.023165772, + 0.032532223, + -2.4150156E-4, + 0.0033764592, + -0.019145416, + -0.008153236, + 0.03158553, + 0.004032978, + 0.018258104, + -0.014748159, + -0.011537164, + -0.012944816, + -0.01786556, + -0.009611488, + 0.02648967, + 0.019114573, + 0.023713522, + -0.03871127, + -0.011982436, + 0.012587257, + -0.00907384, + 0.0026377256, + 0.018120281, + 8.104245E-5, + 0.007850725, + 0.0042119296, + 0.019861503, + -0.004903417, + 0.0074680503, + -0.009871952, + 0.015534334, + -0.0072738486, + 2.4908545E-4, + 0.00944699, + 0.015564069, + -0.036258236, + 0.014831671, + 0.005785362, + 0.010936135, + -0.03846397, + -0.0010952445, + -0.010180051, + -0.0029359153, + 0.0012123269, + 0.003479321, + 0.002927191, + 0.011038001, + -0.0026638454, + -0.014476495, + -0.021234233, + 0.008105242, + 0.0012805434, + 0.010426055, + 0.006652789, + -3.4335535E-4, + 0.011398932, + -0.016327145, + -0.00926582, + 0.02235226, + -0.012491395, + -0.011957441, + -0.0050328663, + -0.012147566, + 0.006990816, + 0.02285977, + -0.0027112176, + -0.009106952, + -0.031701006, + 0.016265322, + 0.009358403, + -0.02451708, + -0.009332011, + -0.009271997, + 0.010955512, + 0.007934048, + 0.0075894156, + -0.0034347863, + 0.0044402713, + -0.019908365, + 0.02604562, + 0.021347452, + -0.02883801, + 0.012515895, + 0.017525772, + 0.016737986, + -0.01486615, + 0.008608645, + 0.006465116, + -0.0018420765, + -0.022125782, + 0.0058134547, + 0.0012848352, + 0.021523356, + 0.036019932, + -0.0063866875, + 3.901355E-4, + 0.0019701296, + -0.014456836, + -6.2416884E-4, + -0.020255148, + 0.012920808, + 0.0010135703, + 0.009785263, + 0.015302858, + -0.016952703, + 0.0031720172, + 0.00286714, + -0.032584973, + 3.581876E-4, + 0.01546492, + 0.019923087, + 0.02354906, + 0.022943417, + 0.007192948, + -0.010019079, + -0.0059035723, + 0.0037913432, + -0.007699387, + 0.011320358, + 0.020876357, + -0.0064914804, + 0.0035471215, + 0.008580027, + 0.023567561, + -0.009249507, + -7.202026E-4, + -0.003752233, + -0.027713418, + -0.017961178, + 0.005391657, + -0.0029987572, + 0.0043603596, + -0.0132126855, + 0.002934457, + -0.018319461, + 0.015174072, + -0.012492167, + -0.008799725, + 0.020003974, + -0.020459399, + -0.00485156, + -0.018330464, + -0.0017065355, + -0.0028803775, + 0.01672746, + -0.002797367, + -0.009341095, + -0.002160761, + 0.017222865, + -0.0044289934, + -0.0166623, + 0.0023173867, + 0.021761516, + -0.0145697305, + 0.012171979, + 0.0072398363, + 0.018366324, + 0.0023803406, + 0.0017909078, + -0.029915623, + -0.015979221, + 0.004291022, + 0.0075722565, + 0.018380791, + 0.004516388, + -0.027626226, + 0.0033480993, + 0.011986421, + 0.00797485, + -0.01980049, + 0.016379584, + -0.025696274, + 0.0135591235, + -0.014482799, + -0.036480464, + 0.015217532, + -0.0063039097, + 0.020487119, + -0.020651838, + 0.019193009, + 0.0233876, + -0.029739086, + 0.00203528, + 0.03627568, + 0.008326304, + 0.02545113, + 0.008343478, + -0.01818165, + -0.004737941, + 0.019613618, + -0.0158301, + -0.008688296, + 0.0010212499, + -0.0029593878, + -0.02487061, + 0.006610768, + -0.0014122195, + 0.012725079, + -0.017424995, + 0.03874722, + -0.005128874, + 0.006207945, + 0.009410504, + 0.0093264645, + 0.026413748, + 0.0027417543, + 0.014926852, + -0.028804509, + 5.7832827E-4, + -0.021052636, + -0.008717319, + -0.03763403, + 0.026222615, + 0.0022196677, + -0.0039074314, + 0.018081628, + -0.0043201577, + -0.0083396025, + -0.015709966, + -0.024968233, + -0.0014246802, + -0.024478626, + 0.015184539, + -0.0054333047, + -0.0064952094, + -0.005392037, + -0.005871846, + -0.005943456, + -0.01785221, + 0.012557272, + 0.0041286605, + -0.0048122704, + -0.014645905, + -8.9309324E-4, + -0.010048295, + 0.032162316, + -0.004823801, + 0.0192288, + 0.0022864533, + -2.4452683E-4, + -0.011043947, + 0.007325331, + -0.014557931, + 0.0117665585, + -0.015826821, + 0.008582951, + 0.016542843, + -0.009991984, + -1.3853723E-4, + 0.009548437, + 0.010665693, + -0.02174728, + 0.005672359, + -0.017632773, + 0.014749522, + 2.743414E-4, + 0.009442134, + 0.020810725, + 0.022527112, + -0.011180689, + -0.0032710056, + 0.017561281, + -4.323922E-5, + -0.014572914, + -0.0010728945, + -0.0150561705, + -0.0021088573, + -0.0076168966, + -0.0062585915, + -0.01286629, + -0.010351134, + 0.006596243, + -0.0065726493, + -0.027436515, + 0.012142471, + -0.016609639, + -0.0054248227, + -5.2007707E-4, + 0.001081428, + 6.7792844E-4, + -0.0019148544, + 0.032309037, + 0.008121277, + -0.003097784, + -0.011558842, + 0.0013751948, + 0.006058308, + 0.0036263147, + -0.042558677, + 0.003821223, + 0.006514117, + 0.0133930985, + -0.027688287, + 0.015196206, + -0.0035910548, + 0.01874348, + -0.017289756, + -0.00991435, + 0.015307408, + -0.010153686, + 0.0036571624, + 0.011441532, + -0.018878369, + -0.015415438, + -0.0011994982, + -0.030542485, + 0.006395408, + -0.0017138206, + 0.01048147, + -0.0038830242, + -0.0050402796, + 0.01863426, + -0.0013481017, + 0.0034060548, + 0.0071414616, + -0.020703407, + -0.023141503, + 0.024277182, + 0.0010509226, + 0.002838798, + 0.012420059, + 0.00543681, + -0.027074276, + -0.019270612, + -0.006722565, + -0.007850798, + 0.023287125, + -5.044058E-4, + 0.027284572, + 0.021129835, + -0.02666422, + -0.01236222, + -0.0031315298, + -0.020216784, + 0.0014385798, + -0.012331012, + -1.2697894E-4, + 0.0068368614, + 0.0190839, + -0.018681213, + 0.0154476715, + -0.018088905, + -0.005907326, + -0.01231889, + 0.0103268, + -0.0043479716, + -0.008839065, + 0.008627621, + -0.0015909567, + -0.002422485, + 0.0032504185, + -0.0091919545, + -0.0065947664, + 0.012293656, + -0.014732139, + -0.023403492, + -0.011669927, + 0.0025825186, + -0.017290413, + -0.020251645, + -0.012665853, + 0.008430381, + 0.0048118103, + 0.0010188515, + 0.021338003, + -0.016547777, + 0.011066018, + -0.014783381, + 0.03495566, + 0.020775542, + -0.0071624494, + 0.023329282, + 0.011079501, + -0.0036369392, + -0.025117299, + -0.0041507427, + 0.013386036, + -0.004371284, + -0.023881951, + 0.03885795, + 0.03802225, + 0.016658345, + -0.014269418, + 0.001917779, + -0.010893077, + -0.009315472, + 0.01966829, + -0.013044516, + -0.011846593, + 0.033109926, + -8.3196175E-4, + -7.6797686E-4, + 0.0028749318, + 0.025372665, + 9.851628E-4, + 0.019628823, + 0.029102253, + 0.0067596026, + 0.0024306993, + 0.015890501, + -0.0070066922, + 0.018215148, + 0.0048355996, + -0.006024986, + -0.021921517, + -0.016575001, + 0.019730123, + -7.9969486E-4, + -0.017309582, + -0.021754425, + -0.017133811, + 0.016559986, + -0.03342925, + 6.724973E-4, + -0.006730744, + -0.0025115348, + -0.016975004, + 0.0017368235, + 0.015015336, + -0.011976643, + 0.005651833, + -0.0033719025, + -0.0030267255, + -0.021881768, + -0.024620548, + 0.0063947854, + -0.0040722867, + -0.015673168, + -0.0066694617, + 0.028218009, + 0.005014244, + -0.02187008, + 0.0334373, + 0.0055596493, + 0.01707068, + 0.007708202, + -0.018766059, + 0.014234549, + 0.012885105, + 0.025478387, + -0.0041849636, + -0.015484879, + 0.006012074, + 0.011288913, + -0.0016003943, + 1.9784644E-5, + -0.0035718298, + -0.01783555, + -0.016275624, + -0.015341905, + 0.0024399096, + -0.020388287, + -0.009572022, + 0.002878085, + -6.4896385E-4, + -0.014932438, + -0.018630879, + 0.0037985856, + 0.0011856813, + -0.020343358, + 0.029594716, + 0.017513426, + -0.0043511624, + 0.0016745612, + 0.005419328, + 0.00874496, + 0.015287407, + -0.004696577, + -0.011710746, + -0.0068644504, + -0.014307926, + -0.0063319495, + -0.006274594, + 0.02636156, + -0.0013169936, + -0.014826623, + 0.0075477734, + 0.0028793223, + -9.937299E-4, + 0.009919101, + 0.0011519165, + -0.004427693, + -0.0120416405, + -0.0018809128, + 0.027244054, + -0.008417443, + 0.018543428, + 0.0018621498, + -0.022805257, + 0.010269326, + -0.001327006, + -0.009874536, + -0.0010222783, + 0.014740332, + -0.010007845, + 0.0016770893, + 0.0053783027, + 0.008936213, + 0.010050583, + 0.0024349669, + 0.013141511, + -0.0048818304, + 0.010885371, + 0.012707642, + 0.01307238, + -0.019231772, + 0.014249414, + 0.0076080197, + 0.011589405, + -0.034703415, + -0.0050285826, + -0.027027616, + 0.013772791, + -0.017990584, + 0.024003856, + -0.00839748, + 0.014450605, + 0.012949935, + 0.0032160853, + 0.0069540874, + 0.018185101, + -0.008122556, + 3.907728E-4, + -9.037505E-5, + 0.012052023, + 0.035492215, + 0.0077372324, + 5.380866E-4, + -0.0012076782, + 0.010581348, + -0.020032916, + -0.023407487, + 0.016806897, + -0.0097890105, + -0.0022856893, + -0.013771438, + -0.021954436, + -0.032016955, + 0.012008339, + 0.0031002767, + 1.6880175E-4, + 0.0068709226, + -0.0088604, + 0.0038933286, + 0.0028314984, + 0.021875, + -0.0132459095, + -0.014034881, + -0.0011867835, + 0.023284202, + -0.02151015, + -0.019815695, + -0.018438086, + -0.0054644174, + -0.0033973937, + -0.0034751866, + -0.010478943, + -0.0045094145, + 0.011661441, + 0.03700416, + -0.015789218, + -0.025767101, + -9.0182846E-4, + -0.0046466896, + 0.025996758, + -0.0019018074, + 0.014626246, + -0.01244982, + 0.010591297, + 0.0072704195, + -0.004708019, + 0.004606372, + -0.025164023, + -0.021389494, + -0.007921171, + 0.00998444, + -0.0018728877, + 0.004041516, + 0.01287626, + 0.01063651, + -0.030738987, + -0.015593971, + -0.025696518, + -0.009989574, + -0.014453105, + -0.0070036086, + 0.022503853, + -0.014218227, + -5.181152E-5, + -0.0073775253, + -0.020999812, + -0.011580176, + 0.02090697, + 0.025468124, + -0.002965243, + -0.02660104, + -0.010383539, + -0.0034035346, + 0.010783114, + -0.004184417, + 0.0055378806, + -0.019095434, + 0.0047985585, + 0.01407079, + 0.012162337, + -0.006181647, + -0.015669532, + 0.013730633, + 0.009426589, + 0.01649092, + 0.011303428, + 0.01565745, + -0.0066229487, + -1.4750006E-4, + 0.01982938, + 0.0057449876, + 0.0073451507, + 0.022328334, + 0.0015574354, + 0.013515613, + -0.019691983, + -0.031913076, + 0.017671112, + 0.010393425, + 0.015007137, + -0.0039875004, + -0.012334663, + -0.013297368, + -8.741606E-5, + 0.005981092, + -0.005718231, + 0.016850913, + -0.0106009925, + 0.01969707, + 0.0021885962, + 0.024262043, + 0.025856633, + -0.015155618, + 2.452941E-4, + -0.027593939, + -0.007067152, + 0.0068921773, + -0.005807943, + -0.030328255, + -0.0226689, + 0.028054902, + -0.008744525, + 0.0066287606, + -0.024013216, + 0.0024696852, + -0.0038701845, + 0.014503405, + -0.013422203, + -4.2834424E-4, + 0.030454706, + -0.006889486, + -0.013963877, + 0.013933109, + -0.021443965, + -0.015700705, + -0.0031524478, + 0.004594641, + -0.009268279, + 0.0045568296, + -0.014066441, + 0.015894797, + -0.007052839, + 0.0021620963, + 0.038400233, + 0.009628777, + 0.0026654936, + 0.010453631, + 0.045258995, + -0.009658164, + 0.003182156, + -0.008565068, + 0.010488314, + -0.0035610693, + 0.026326334, + -0.0097512035, + 0.009028034, + -0.0036562465, + -0.004177083, + 0.0017712896, + 0.00956208, + -0.009810394, + -0.005990506, + -2.1505001E-4, + -0.0096096555, + -0.007911475, + -0.0390828, + 0.019382356, + -0.027865833, + 0.006372877, + -0.0070086173, + -0.034651775, + -0.018000305, + 0.010058248, + -0.013456466, + -0.027722668, + -0.0012560023, + -0.012218629, + -0.0053524594, + 1.874286E-4, + -0.02364537, + -0.015772782, + 0.00310344, + -0.029156262, + -0.007814627, + 0.027512297, + 0.027656663, + -0.011400375, + -0.0078785885, + 0.007555574, + -0.013026026, + 0.0031476498, + -0.007829947, + -0.01749099, + 0.016702052, + -0.03705112, + 0.005997648, + 0.009515263, + -0.015753558, + -0.009667932, + 0.015418425, + -0.019564416, + 0.009595779, + -0.013270862, + -0.0053444565, + -0.009920924, + 0.0026315888, + -0.014231913, + 0.012468595, + 0.01554943, + -0.032953434, + -0.006504478, + 0.032907784, + -0.016344884, + -0.012761938, + 0.005449472, + -0.005858785, + 0.005082014, + 0.0043518487, + 7.5306185E-4, + -0.002576696, + -0.006878179, + -0.011087776, + -0.007782771, + -0.0066133426, + 0.0060686856, + 0.03202883, + -0.0065669413, + -0.009551943, + 0.0032917883, + 0.02157162, + 0.004846257, + 0.0066202795, + 0.0015406394, + 0.02157132, + 0.0057661966, + -0.016329987, + 0.00336611, + 0.01776727, + 0.0028880152, + 0.013640937, + -0.0053275544, + -0.0026431812, + 0.001639799, + -0.0028564911, + 0.022502389, + 0.0067857504, + -0.0036886774, + -0.004532955, + 0.023886528, + -0.02018422, + 0.02989702, + -0.02544335, + 0.019074285, + -5.0699676E-4, + -0.015419291, + -0.01720394, + -0.011400819, + 0.0012845752, + -0.040356178, + -0.012926127, + -1.7298637E-4, + -0.009238349, + -0.020046145, + -0.016267342, + -0.01411608, + 0.0013628006, + 0.0042743813, + -0.021408133, + 0.0028224369, + 0.0014787429, + 0.004185542, + -0.01728334, + -0.019420471, + 0.0016876765, + 0.02003304, + -0.009466447, + 0.01802337, + 0.019295525, + -0.0057964, + -0.02022614, + 0.028085485, + 0.011486614, + 0.0073991674, + 0.010237895, + -0.0045053908, + 0.0022486718, + 0.01868103, + 0.010298581, + -0.004273527, + 0.0014921234, + 0.020406438, + 0.03699971, + 0.0048156143, + -0.008127503, + 0.0043561426, + -0.036459386, + -0.03386901, + -0.008841823, + 0.018127048, + -0.009083991, + 5.855665E-4, + -0.02229348, + -0.015298081, + 0.009100832, + 0.011631583, + 0.01521562, + -0.004459703, + 0.036660213, + 0.0022273355, + -0.013607583, + 0.0032331739, + 0.004558453, + -0.013768644, + 0.01633268, + 0.0034229043, + -0.010334536, + 0.040343612, + 0.010897836, + 0.0050893417, + -0.003558641, + 0.012881174, + -0.027082175, + -0.0041994364, + 0.013289591, + -0.013793571, + -0.009185686, + -0.004618826, + 0.009143569, + -0.008557259, + -0.010235774, + -0.0036140913, + -0.0050670295, + 0.034980554, + 0.008198089, + 0.017384313, + 0.014655939, + 0.02074216, + -0.0056029093, + -0.01114787, + -0.007988652, + 0.007242644, + -0.005040773, + 0.019175664, + -0.0016938554, + 0.019933937, + 0.009972482, + 0.011895494, + 0.009710169, + -0.017419605, + 0.029164989, + 0.02672426, + -0.0016216902, + -0.015200178, + 0.00774938, + 0.016474243, + 0.007790751, + 0.003801304, + 0.009044339, + -0.011863233, + -0.003559048, + 0.010502988, + -0.028015753, + -0.012364507, + -0.015754314, + -0.009405515, + -0.009686699, + 0.010797994, + 0.0039756745, + 0.0141588105, + 0.013041873, + -0.021875372, + -0.012008057, + -0.008467147, + 0.020337684, + -0.0053168433, + -0.0031721375, + -0.02083182, + 0.00871141, + -0.014065241, + -0.019186186, + -0.0105441185, + -0.019485217, + 0.010492322, + -7.480752E-4, + -0.013207722, + -0.026788987, + 0.003351987, + 0.007865841, + 0.03691854, + -0.004592798, + 0.011735349, + 0.013303291, + 0.0121129565, + -0.0021621073, + -0.022334997, + 0.0010123466, + -0.011151589, + 0.0073699863, + -0.011607588, + -0.017058972, + -0.0034120101, + -0.021845117, + -0.018243438, + -0.027806083, + 0.007013038, + 0.018601283, + 0.016451059, + 0.0038495758, + -0.021630406, + -0.008490784, + 0.009743831, + -0.013644314, + -0.023033172, + 0.00644061, + -0.013595337, + 0.0057408498, + 0.017161224, + 0.007687992, + -0.028113365, + -0.0037621926, + -0.001418292, + -0.0037318629, + -0.0057399203, + -0.012605657, + -0.03599496, + 0.011568975, + -0.01009283, + -0.02496394, + -0.0031399487, + -0.01772114, + -0.03771852, + -0.0037476264, + 0.002999044, + 0.013639257, + -0.012652477, + -0.006675477, + 0.009278094, + 0.0034209087, + 0.012282851, + 0.0053050527, + 0.018514235, + 0.0135630155, + 0.015713492, + -0.004917085, + 0.03587019, + -0.0043451227, + 0.03493419, + 0.018673943, + 0.00267872, + 0.010604269, + -0.029246446, + -0.010754881, + 0.0041651847, + -0.00834463, + -0.008760647, + -0.009737839, + 0.002657472, + 0.0061789555, + -0.0018710479, + -0.037641175, + 0.014564378, + 4.631927E-4, + 0.019502709, + -0.0032649946, + -0.02205847, + 0.011220256, + -0.021991918, + 0.01823862, + 0.0053624595, + 0.009874913, + -0.010127194, + -0.015041194, + 0.0034780314, + 0.01384527, + -0.0211838, + -0.0060911006, + -0.01204269, + -0.0036727595, + -0.0063800197, + -0.01014659, + 0.0010903254, + -6.6046347E-4, + 0.009158995, + 0.023187205, + -0.0026795007, + -8.4202917E-4, + -0.02731258, + -0.02418751, + 0.00950311, + -0.019119963, + -0.014067311, + -0.009635848, + 0.04427707, + 0.0039837454, + 0.00498629, + 0.0030645118, + 0.0013709556, + -0.018754335, + -0.006755178, + -0.007032667, + 0.0131525025, + -0.024072483, + -0.032813158, + -0.0035176969, + 0.01739311, + 0.026457595, + 0.0014527948, + 0.017240351, + -1.6290254E-4, + 0.009861846, + 0.0038827802, + -0.022549532, + -0.012053964, + 0.012036612, + -0.0064621447, + -0.041410092, + -3.8165643E-4, + -0.0072688293, + -0.015492887, + -0.028042478, + 0.0043435846, + -2.4112777E-4, + -0.005701057, + 0.0068031196, + 0.023702094, + -0.023698296, + 6.439589E-4, + 0.0087596895, + -0.010926201, + -0.009804268, + 0.0068314737, + 0.03174723, + -0.012197375, + -0.002920845, + 0.0071549783, + 0.008780318, + -8.310694E-4, + 0.005647772, + 0.00335322, + -0.010034457, + 0.01761936, + 0.0022111228, + 0.02816588, + -0.017288363, + -0.0125671085, + -0.010040243, + 0.006851058, + 0.004886339, + -0.011086159, + -0.012429109, + 0.0116799455, + -0.019186651, + 0.030129518, + 0.0024886823, + 7.88515E-4, + 0.0012529095, + 0.029625528, + -0.015655706, + 0.0015540244, + -0.010934221, + -0.002217706, + 0.028750129, + 0.0023302096, + 0.020336883, + 0.011299637, + 0.010148589, + -0.001236795, + 0.008608728, + 0.008089457, + -0.016811704, + -0.022252798, + 0.03023386, + 0.020541796, + -0.016798899, + -0.016660724, + 0.002817375, + -0.01854184, + 0.013252914, + -0.0041732583, + -0.018872136, + -0.0028741201, + -0.0084519675, + 0.012352129, + 0.018862158, + -0.019889437, + 0.0068918113, + 0.0019038253, + 0.0054987594, + -0.015671037, + 0.025824863, + 0.0028140051, + 0.023674946, + -0.005576243, + 0.014528744, + -0.03164902, + -6.1730103E-4, + -9.07961E-4, + 0.028549584, + 0.004535778, + 0.010134583, + -0.027261911, + 0.014976566, + -0.0057955626, + 0.00422279, + -0.014802436, + 0.027101979, + 0.030048758, + -0.020537391, + -0.0060154214, + 0.01063394, + -0.0055863317, + 0.010868818, + -0.012348808, + -0.008716909, + 0.0018595156, + 0.0011889376, + -0.009078823, + 0.01532375, + -0.022068918, + 0.0059863753, + -0.01101586, + -0.008088737, + 0.011937358, + 0.009008439, + 0.0039011405, + 0.005077793, + -0.002704496, + -0.006952918, + 0.0021109756, + -0.017445689, + 4.5284026E-4, + 0.020088937, + 0.02830477, + -0.027910074, + -0.004554027, + 0.008322668, + -0.01000161, + 0.025841385, + 0.011649065, + -0.01898208, + 0.015364587, + -0.014254816, + -0.0026163696, + -0.00819175, + 0.017050678, + 0.019707976, + 0.0064016464, + 0.010658318, + 0.0114582125, + 0.018719494, + -0.015298994, + -0.0013550546, + 0.018334603, + 0.024297006, + -0.002622912, + -0.007535493, + 0.006222445, + 0.011140321, + 0.0037664268, + 0.019017061, + -0.02211106, + 0.0046588774, + -4.4038988E-4, + -0.0122769615, + 0.005239581, + -0.02902019, + 0.012334748, + 0.018723153, + -0.021230012, + 0.010993142, + -0.0035653065, + -0.0019221517, + -0.0010313338, + -0.009393337, + 0.006824076, + 0.011774958, + -0.009089866, + 0.004771576, + 0.023639569, + 0.011370218, + 0.0071890787, + -0.02350856, + -0.004638634, + 0.012315632, + -0.0036517156, + 0.018501926, + -0.020580903, + -0.019555822, + -0.017638894, + 0.016656637, + -0.018089598, + 0.009774831, + -0.012601989, + 0.025756575, + 0.009873381, + -0.010933818, + 0.001814473, + 0.03022376, + -0.010128832, + -0.002119353, + 0.014875927, + 0.021917254, + -7.8398926E-4, + -0.0032510029, + -0.0039830864, + 0.025437448, + 0.019649455, + -0.014869225, + 0.022675222, + 0.004962657, + 0.018319136, + 0.006464038, + -0.013223679, + 0.014915066, + 0.0019283419, + 0.012634556, + 0.004973711, + -0.016114183, + -0.015003817, + -0.0034490079, + 0.0040504094, + -0.01838221, + 0.006207199, + -0.00817236, + 0.009191258, + 0.010563702, + 0.0076186755, + -0.023445142, + 0.011175432, + -0.007510304, + 0.012515275, + -0.013856907, + 0.008994344, + -0.010773773, + 0.036746487, + -0.013256049, + -0.012611419, + 0.025135087, + 0.023317756, + -0.010606984, + -0.017123787, + 0.015035535, + 0.016526362, + -0.004657503, + 0.017078452, + -0.003249675, + -0.010458344, + -0.0142464405, + 0.007811572, + 0.0014067804, + 0.003713358, + -0.019971631, + -0.018590847, + -0.0029771065, + 0.0019321971, + 0.023049764, + 0.026251342, + 0.011525901, + 0.016921245, + 0.0019518097, + 0.004947669, + -0.0056329863, + -0.025391443, + 0.0076993275, + 0.025062704, + 0.02437699, + -0.010440617, + -0.010248012, + 0.02476554, + -0.009577632, + 0.0075768745, + -0.0016505638, + -0.014801517, + 0.0015592603, + 0.008493694, + 0.0017603295, + 0.0037779163, + -0.017074445, + -0.018800065, + -0.025948044, + -0.006577795, + -0.0198225, + -0.013218942, + 0.016160853, + 0.0103539815, + 0.0042048856, + 0.009664806, + -0.0075349123, + -0.00825382, + 0.0064929365, + -0.017400615, + -0.009546057, + -0.0032070603, + -0.024003936, + -0.02450706, + -0.01739146, + -0.0032814015, + -0.015549282, + -0.01069313, + 0.0089054145, + -0.007899716, + 0.0070385723, + -9.806306E-5, + 0.006530614, + 1.3628916E-4, + 0.01258471, + 0.023098117, + -0.019893888, + 0.004095333, + 0.01976226, + 0.018645266, + -0.016469328, + -0.007142187, + -0.020962749, + -0.022903135, + 0.007680039, + -0.018993774, + -8.813334E-4, + -0.010152694, + -0.019303542, + 0.023178034, + -0.022198439, + -0.01738305, + 0.007037901, + 0.0026964378, + 0.013057431, + -0.033555225, + 0.017345915, + 0.008518262, + 0.013717343, + 0.0048543257, + -0.005878548, + 0.009046156, + 0.016024515, + -0.0025784795, + -0.024753531, + 0.025595436, + -6.1335106E-4, + -0.014367107, + -0.015139326, + -0.015919546, + -0.0054961615, + -0.026093196, + 0.027379777, + 0.006488938, + -0.0012901732, + 0.011158039, + -0.020422807, + 0.010596114, + -0.0014344867, + -0.004012856, + 0.034462705, + -0.029464526, + 0.008875984, + 0.017690562, + -0.012898572, + -0.004977069, + 0.027208362, + 0.0020941363, + 0.0037968978, + 0.014698594, + 0.0017276084, + -0.008078802, + 0.001961574, + 0.0067810775, + 0.0029887974, + -0.007032827, + -0.003940815, + -0.019071616, + 0.0043507274, + 0.03322814, + 0.010068312, + 0.012654582, + 0.009340471, + 0.03045154, + -0.0075469934, + 0.008368605, + -0.014457227, + 0.005137945, + 0.042564955, + 0.0094242925, + 0.012971178, + 0.0095342295, + 0.0170983, + -0.0063193603, + 0.0019305012, + 0.024241438, + -0.016497308, + 0.014240742, + 0.005822325, + 0.020429853, + 0.0044402336, + 0.0063560763, + -0.001915643, + 8.5997855E-4, + 0.00960033, + -0.0060985, + 0.009190476, + 0.015939392, + -0.026016377, + 0.01581432, + 0.006036291, + 0.019768521, + 0.021775058, + 0.0023109142, + -0.0046877135, + 0.015729368, + -0.0024897147, + -0.011614325, + 0.032091025, + -0.019786963, + -0.017487815, + 0.0038450686, + -0.0020636893, + 0.021076929, + 0.011298709, + 0.021346468, + -0.0061271684, + -0.001040397, + -0.018543001, + 0.0077269976, + -0.01590606, + 0.012311041, + -0.01194387, + 0.0015800499, + -0.018498803, + 0.014099492, + 0.04204239, + 0.023082022, + 0.021372015, + -0.040678427, + 0.005178443, + -0.01836758, + 0.024069337, + 0.010433645, + 0.008643546, + -0.007601883, + -0.017875094, + -0.016054142, + 0.04422835, + -2.722538E-4, + 0.00958536, + -0.010432719, + -0.003897127, + -0.005222158, + 0.0108683575, + -0.020299964, + 0.014559803, + 0.020914106, + -0.03633432, + 0.018257318, + 0.010528363, + 0.017507786, + 0.0043382943, + 0.0046513593, + 0.008081812, + -0.007864945, + 0.007809195, + -0.0077603133, + 0.031438336, + -7.1456813E-4, + -0.023344662, + 0.026562447, + 0.019682927, + -0.008377698, + 0.017020442, + -0.0037715207, + -0.0040118336, + 0.017831532, + 0.011728705, + -0.018799363, + 0.0044698175, + 0.00976711, + 0.0069629126, + 0.0024434268, + 0.031689707, + 0.019438269, + 0.04640437, + 0.014908548, + -0.035719723, + 0.016870908, + -0.006287595, + -0.007887378, + 0.015204592, + -0.04127402, + -0.022941947, + -0.002345712, + -0.008260006, + -0.021954363, + 0.019532356, + -0.018532377, + 0.02441101, + 0.015132903, + 0.021162659, + 0.00408694, + 0.006679805, + -0.013642736, + 0.0062360438, + -0.010284191, + 0.014228882, + 0.018875457, + -0.0048420965, + -0.0020746985, + 0.018523015, + 0.001040117, + 0.020174569, + -0.008181745, + 0.0039491956, + -0.006914738, + 0.005833991, + -0.011378615, + 0.011522929, + -0.031519316, + -0.030658541, + -0.01889812, + -0.009165136, + 0.007271503, + -0.013878755, + -0.0072210045, + 0.0051721865, + 0.0076823956, + -0.019266719, + 0.015131827, + 0.019054411, + 0.009788977, + -0.012085372, + -0.014788054, + -0.010899534, + -0.0066693095, + -0.03352174, + 0.0076900595, + 0.019361822, + 0.0048164465, + 0.013015151, + 0.039503813, + -0.006123302, + 0.009751338, + 0.008021988, + -0.0066878106, + -0.011351601, + -0.0026122741, + 0.014167662, + -0.0022886742, + -0.008127979, + 0.0029043634, + 0.001025497, + 7.7323854E-4, + 1.1479029E-4, + -0.0023111037, + 0.0100977495, + -0.030797584, + -0.0011931489, + -0.024177369, + -0.014092138, + -0.026105767, + 0.020828567, + -0.023037894, + -0.018802496, + 0.010929842, + 0.012550823, + 4.4643992E-4, + -0.009600829, + -0.001242637, + 0.014807314, + 0.0019056211, + -0.004938169, + -0.010908067, + 0.008865362, + -0.016513709, + 0.0042585116, + 0.027822452, + -0.030993015, + 0.02017387, + 0.015498809, + 0.013982578, + 0.017758833, + 0.0045522074, + 0.0074107535, + -0.007381945, + 0.007386965, + 0.012418555, + -0.009416412, + -5.279412E-4, + -1.3548444E-4, + -0.015690656, + 0.004534684, + -0.01544562, + 0.019759106, + 0.021113679, + -6.723932E-4, + 0.027454684, + -0.006248867, + 0.014333898, + 0.033624016, + -0.034364093, + 0.0032972803, + 0.02010338, + -0.004514159, + 0.0012514315, + 0.008940746, + -0.01724477, + 0.015243799, + -0.0011213913, + -7.6227734E-4, + 0.012734584, + 0.025058439, + -0.00923313, + 0.0055705435, + -0.023975817, + -0.00397703, + 0.011155904, + 0.010181652, + 0.0044872076, + 0.002690152, + -8.1976276E-4, + -0.008416388, + 0.0066294842, + 0.028407589, + 0.009636799, + 0.0057372367, + -0.001750435, + 0.018104956, + -0.013805396, + 0.036621597, + 0.011361137, + 0.01225398, + 0.015149397, + -0.0023558019, + 0.017249811, + -0.025865063, + 0.015247268, + 0.010375792, + -0.012112, + 0.028307052, + -0.011742196, + -0.007219382, + -0.009755093, + 0.011597773, + 0.0050141257, + 0.030457517, + 0.0051179095, + -0.0011315219, + 0.003854267, + -0.005795011, + 0.0057446924, + 0.02242554, + 0.0029990748, + -0.005445011, + 0.004055999, + 0.008604606, + -0.015393728, + 0.013648958, + 0.0060542203, + -0.0030950063, + 0.009270254, + -0.013660725, + -0.0062765493, + -0.00876004, + 0.016528217, + -0.017842988, + -0.010592568, + 1.354721E-4, + 0.009665959, + -0.008624476, + 0.011279079, + 0.0023004198, + -0.004749569, + 0.023805263, + 0.03753037, + -0.014559188, + -0.007521648, + -0.0075195897, + 0.0035874334, + -0.00300763, + -0.026329238, + 0.008703695, + -0.016083501, + 0.02303647, + -0.011137118, + -0.0011928905, + 0.011903116, + -0.015350974, + -0.017777352, + -0.0038741955, + 0.013646032, + 0.014303358, + -0.0026453396, + -0.008474606, + 0.0076079066, + -0.019276837, + -0.018121153, + 0.014213385, + -0.018662624, + -0.015915267, + 0.02781259, + 0.024298547, + -0.00768235, + 0.003320518, + 0.011926252, + 0.022281107, + -0.010125142, + 0.011115851, + 0.005333536, + -0.016202247, + -0.0042668055, + 0.016444813, + 0.0017161589, + 7.808852E-4, + 0.008252859, + -0.006466677, + 0.0012342533, + 0.022814525, + 0.014206014, + 5.729361E-4, + 0.0044592572, + -0.013663764, + -0.011725333, + -0.009289435, + 0.0011375309, + -0.021464964, + -0.034412794, + -0.018729093, + 0.0043100035, + 0.002118094, + -0.00395607, + 0.020035513, + -0.0047271415, + 0.005646222, + 0.018226199, + -0.022302007, + -0.02057478, + 0.00610001, + 7.8527885E-4, + 0.0033854807, + -0.019257834, + 0.018834377, + -0.022676995, + -4.1673185E-5, + 0.016101576, + 0.017756354, + 0.024168896, + 0.0028137388, + 0.03131221, + -0.006093491, + 0.020790817, + -0.0071124937, + -2.1931363E-4, + 0.015960887, + -0.006905298, + -0.023705376, + -0.014856272, + -0.003139056, + 0.0077137146, + 0.0037522945, + 9.64703E-4, + -0.012493434, + -0.0026257096, + 0.03280331, + 0.028723046, + -0.022753913, + -0.0052973125, + -0.008268331, + 0.015080453, + -0.0038808717, + -0.011237117, + 0.0053186775, + -0.013740836, + -7.076371E-4, + -0.018885903, + -0.010458641, + -0.015938131, + 0.026036212, + -0.0063294955, + 0.0042889025, + 0.015942976, + 0.0060232533, + -0.0069821575, + -0.0036923497, + 0.0045714467, + -0.019986676, + 1.4371135E-5, + -0.007932562, + -0.008236508, + -0.01665939, + 0.005135933, + 0.0038668737, + -0.02292815, + 0.009205611, + -0.024947269, + 0.010499811, + -0.022747925, + 0.01698888, + 0.023439173, + 0.0076808534, + -0.02253365, + 0.007551069, + 0.00677092, + -0.02058636, + 0.022425663, + 0.012642527, + -0.015412644, + 0.0014859785, + 0.004583204, + -0.020422958, + 0.009628669, + 0.011916878, + -0.0200247, + 0.007861934, + -0.018463798, + 0.0056192414, + 0.0011634113, + -0.020745257, + 8.8032255E-5, + 0.0025059762, + -0.015325688, + 0.012110118, + -0.02394286, + -0.0074038147, + -0.02218492, + 0.024630932, + 0.004713386, + -0.006215752, + -0.0067043616, + -7.93242E-4, + 0.010887361, + -0.020836743, + -0.011575384, + -0.04007862, + -0.0054071797, + 0.021954618, + -7.336396E-4, + -0.007573463, + -0.012138974, + 0.0019664778, + 0.0064912606, + 0.02424277, + -0.010968988, + 0.007937264, + -0.001358064, + -0.013842763, + 0.009670742, + -0.020926856, + -0.010870007, + 0.017636301, + 0.018500395, + 0.0022692424, + -0.012292861, + 0.02827608, + -0.0264844, + -0.034335304, + -0.0031882469, + -0.0024981815, + 0.0017690362, + 0.0069184895, + 0.016846515, + -0.0018845334, + 0.017246857, + 0.004875714, + 0.009174782, + 0.033838116, + -0.032437522, + -0.0058060163, + -0.021365803, + -0.005273037, + 0.011106706, + 0.016090777, + 0.020610714, + 0.026540738, + 0.032036435, + -0.025082977, + -0.007501042, + 0.04087207, + 0.010514677, + -0.03663037, + 0.0142656695, + -0.0013005037, + -0.01311229, + -0.023741543, + -0.015650336, + -0.0049253013, + -0.012211894, + 0.033305556, + 0.00591906, + -0.004048938, + 0.010459648, + -3.33766E-4, + -0.0011772583, + -0.001310184, + 0.022142867, + -0.0050607994, + -0.011545349, + -0.0047313534, + -0.0056847436, + 0.0020444647, + 0.0042229653, + 0.022670144, + 0.009872364, + 0.0060327225, + 0.014457316, + -0.009100117, + 0.003927557, + -0.009064108, + -0.009867954, + -0.020414663, + -0.02180392, + 0.0012714188, + 0.0024764908, + 0.0013048111, + -0.016559737, + -0.0024353077, + 0.0072722733, + -0.018014994, + 0.00287577, + 0.015340859, + -0.0015226533, + -0.006595882, + 0.02450249, + -0.0034958546, + 0.014712264, + 0.012841954, + -0.014953375, + 0.011511628, + 0.008474213, + 0.031989414, + -0.0237795, + 0.0040368945, + -0.009042057, + 0.017790219, + -0.008280694, + -0.024320653, + 5.8945693E-4, + 0.02121067, + -0.00598342, + -0.010608446, + -0.014094298, + 0.008005253, + 0.008094467, + -0.012058659, + 0.0017816032, + 0.005265887, + 0.016359076, + -0.003524931, + -0.03649533, + -0.0057893624, + 5.501992E-4, + 0.02838922, + -0.023492528, + -0.012176304, + 0.024896652, + -0.005313692, + 0.04341667, + 0.0041668345, + -0.020047348, + 0.030712897, + -0.011318024, + -0.007888532, + 0.010231459, + -0.011718556, + -0.009556932, + 0.018959092, + 0.0054642376, + 0.004451529, + 0.0028574711, + 0.0070792516, + 0.017224884, + 0.016897026, + 0.00801836, + 0.009185294, + 0.0025475684, + 0.034728523, + -0.015437274, + -0.0041771103, + -0.01450826, + 0.0077555887, + -0.020437792, + -0.005828258, + 0.01682926, + 0.0038252408, + 0.00708197, + -0.013537042, + -0.04208374, + 0.008629237, + 0.016965041, + -0.011248852, + -0.028447246, + -4.9230173E-5, + 0.013077602, + -0.02478518, + 0.0066862847, + 0.011604869, + -0.038787723, + -0.002945495, + 0.0033993078, + 0.0073497053, + 0.0014825633, + 0.0064676246, + 0.011830913, + 0.024880536, + 0.017700724, + -0.013441684, + 0.008824246, + -0.0013198191, + 0.0054946896, + -0.028149638, + -0.0026801468, + 0.020877687, + -0.0032053727, + -0.017521476, + -0.0030643498, + -0.0013004489, + 0.012123511, + -0.014656821, + -0.028301252, + -0.011176431, + 0.018857772, + -0.007808636, + 0.025932753, + -0.0044723297, + 0.0039535263, + -0.027440192, + -0.009873697, + -0.011050707, + -0.020431755, + -0.014810882, + 0.024813103, + 0.009926312, + 0.00957227, + 0.0011154696, + 0.007263605, + 0.015803691, + 0.019702205, + -0.011426485, + -0.013883614, + -0.010822834, + -0.032799274, + -0.017319344, + 0.0064936313, + -0.0197311, + 6.862491E-4, + -0.005875311, + 0.005488995, + -0.011105446, + 0.008891855, + 0.0070781163, + -0.010855668, + -0.010723831, + 0.004535131, + -0.0037666792, + -0.00962252, + 0.01606822, + -0.00229363, + 0.0037639411, + -0.0024570047, + -0.0025244427, + 0.010493949, + 0.002295018, + -0.005643093, + -0.030307947, + -0.0013241743, + -0.011825533, + -1.8369896E-5, + -0.017005194, + -0.0142320525, + -0.008318257, + -6.808348E-4, + 0.022780081, + -9.1668736E-4, + -0.0074919956, + -0.015458959, + 0.005759171, + -0.0025280924, + 0.01157111, + -0.011441525, + 0.0047885897, + -0.0019451018, + -0.009686856, + -0.0038146041, + 0.0056022564, + 0.016543774, + 0.022858778, + 0.021703223, + 0.018602042, + 0.0082049165, + 6.521575E-4, + -0.006262935, + 0.009344971, + 0.013683803, + 0.00861757, + 0.03164182, + 0.006460011, + -0.021007653, + 0.013468515, + -0.01505545, + -0.015191419, + 0.0038437936, + -0.035526156, + 0.023785386, + 0.025864853, + -0.008691161, + 0.0021576257, + 0.018448457, + 0.015217797, + 0.0043542557, + -0.011012603, + -0.0017410538, + -0.006181687, + 0.01732601, + 0.016868148, + -0.008936365, + -0.0074421843, + 0.043583434, + -0.039773036, + -0.013943144, + 0.015538776, + -0.0043964037, + -0.0073613054, + -0.009063043, + 0.013174846, + -0.028606666, + 0.003634207, + 0.0016654226, + 0.0026015416, + 0.019165045, + -0.0110927345, + -0.022870496, + 0.012051968, + 0.019982139, + -0.009843998, + -0.030435655, + 0.012962299, + 0.017258998, + -0.028881317, + -0.016098935, + -0.0113887405, + -0.0072451257, + 0.008752691, + 0.007298472, + -0.0022927932, + -0.0059420597, + -4.802757E-4, + -0.00555247, + 0.005449991, + -0.04668635, + -0.0123462975, + 0.019828765, + -0.0065723606, + 0.014812508, + 0.0071360758, + 0.016512034, + 1.8044842E-4, + -0.007657104, + -0.014953461, + 0.009105228, + -0.004941448, + 0.007908586, + -0.01028972, + -0.0039812536, + 0.014464075, + -0.0061171465, + 0.014117911, + -0.010484199, + 0.0010265674, + 0.008365316, + -0.006947416, + -0.0082163, + -0.01236599, + 0.0035945126, + -0.0070026694, + -0.021657668, + -0.0015265126, + -0.0029929138, + -0.004050489, + -0.02174199, + -0.001044951, + -0.008513029, + 0.005544402, + -0.009604409, + -0.0070782886, + -0.013522559, + 0.0010344163, + 0.036840193, + 1.662765E-4, + 0.005074608, + 0.016495012, + 0.008877019, + -0.012407538, + -0.012029872, + 0.010159071, + -0.036532734, + 0.010715725, + -0.010029994, + 0.012192568, + -2.4803338E-4, + -0.0029684042, + -0.013593231, + 0.0030892354, + -0.025264286, + -0.011347571, + -7.401252E-4, + -0.02888798, + 0.0211394, + 0.023239834, + 0.0070826793, + -0.023663681, + 0.0064616636, + -0.0059296326, + 0.0064839367, + -0.005015135, + 0.014745476, + -0.006088327, + -0.010742336, + -0.015527126, + 0.026400657, + 0.024332408, + -0.038073223, + 0.02199224, + -0.0023364078, + 0.0019553837, + -1.1848227E-4, + -0.0036945536, + -0.021582166, + -0.012031487, + -0.03169902, + -0.0026504286, + -0.0072193174, + -0.0013967443, + 0.017693758, + 0.020647744, + -0.0010438974, + 0.027108733, + -0.014811366, + 0.0063948995, + -7.885057E-4, + -0.021617142, + -0.0019371809, + -0.01610868, + 0.015629394, + -0.0029135882, + 0.007478595, + 0.0077774, + -0.012308807, + 0.012169857, + -0.009854721, + -7.920253E-4, + 0.023697933, + -0.020932253, + 0.0048936014, + 0.010825164, + -0.009652203, + -0.0041988394, + 0.008704032, + -0.006303589, + 0.032487724, + -0.011659734, + -0.011574508, + -0.0015158125, + -0.0015796396, + 0.005408494, + 0.015144489, + -8.762836E-4, + -0.007039967, + -0.020657938, + -0.028512532, + -0.018139418, + 0.0029196183, + -0.0038085491, + -0.005167944, + -0.0030412127, + -0.01159094, + -0.021046901, + -0.001692172, + -0.010469437, + 0.0047348347, + 0.0065333145, + 0.015007963, + 0.01365689, + -0.018179763, + -9.183511E-4, + 0.0332306, + -0.0045512184, + -0.019421885, + 0.034220733, + 0.012369065, + 0.0036574397, + -0.012620119, + 0.013714829, + 0.01055917, + -0.0441758, + 0.027083093, + -6.8855225E-5, + -0.005183671, + -0.021292789, + 0.021126257, + -0.02932293, + 0.0076807067, + 0.005981519, + -0.00414151, + 0.013382841, + -0.009802139, + -0.021515125, + -0.019710798, + -0.005709622, + -0.010389685, + -0.0187702, + -0.0199718, + 0.005296799, + -0.011425226, + -0.038111143, + -0.0031197276, + 0.011157949, + 0.008494272, + -0.01454444, + 0.017606188, + -0.010816811, + -5.021806E-4, + 0.020170087, + -0.023091754, + -0.018127805, + -0.01031599, + -0.008727812, + -0.017225524, + -0.021154646, + -0.0050670505, + 0.017956669, + -0.02061484, + -0.021888971, + -0.027496897, + 0.025024362, + -0.017906705, + 0.015620069, + -0.002838227, + -0.02207659, + -0.02234571, + -0.001500296, + -0.0023467178, + -0.008500218, + 0.01828685, + 0.031134946, + -0.015249876, + -0.0108243665, + -0.008899461, + 0.016872248, + -0.003583363, + -0.022824345, + 0.0035409073, + -9.832875E-4, + -0.026712416, + 0.0045198165, + -0.025830302, + -0.010474755, + -0.009679864, + -0.005253838, + 5.307826E-4, + 0.005580258, + -0.012991096, + 0.026344864, + -8.593695E-4, + 0.014233645, + 0.004873851, + 0.004963698, + 0.00829879, + -0.009263899, + 0.010174284, + -0.027178027, + -0.006931017, + 0.0068902774, + 0.02301589, + 0.008040558, + 0.009742532, + 0.009987552, + -0.0035607328, + 0.032709174, + -0.0052425717, + -0.02289382, + -0.0044530947, + -0.014000091, + 0.024292199, + -0.017205331, + 0.020276349, + 0.036111362, + -0.02032236, + 0.008807779, + 0.010966015, + 0.01012165, + -0.0121528655, + -7.950844E-4, + -0.020736707, + -0.011212547, + 0.019198708, + -0.006734385, + -0.0022844875, + -0.01156773, + 0.0020118866, + -0.012132859, + 0.0077098245, + -0.013731009, + -0.024859704, + 0.032785777, + -0.022667728, + -0.008774567, + -0.03272914, + 0.009660213, + 0.011783236, + -0.012544032, + 0.018024357, + -0.014100973, + -0.00584587, + -0.018209117, + 0.020831231, + -0.009334502, + 0.009811594, + -0.003999241, + -0.013037778, + 0.02700432, + 0.0028402896, + 0.018061226, + 2.9023126E-4, + -0.017286466, + -0.005849585, + -4.1233248E-4, + 8.3588174E-4, + 0.028562063, + 0.006789726, + -0.02390744, + -0.0066580726, + -0.006252896, + -1.6001698E-4, + -0.005484744, + -0.015395748, + 0.005121342, + 0.003284551, + -0.013557273, + -0.008994143, + -0.011110305, + 0.0067985603, + 0.0214194, + 0.0023432765, + 0.01215253, + 0.007866729, + -0.0025007473, + -0.0077345, + 8.429763E-4, + 0.006316909, + 0.008542033, + 0.00890347, + -5.13952E-4, + -0.011721145, + 0.015555003, + 0.022317464, + 0.0028606376, + -0.005997285, + 0.001976876, + 0.010086035, + 0.0013808536, + 0.031384148, + 0.035732932, + 0.022613827, + 0.010890509, + 0.009585267, + -0.033124525, + -0.00898705, + 0.019573204, + 0.023959236, + 0.0072986083, + 5.267181E-4, + 0.0040184706, + 0.013812638, + 0.02858078, + 0.0063556954, + 0.01660679, + -0.013752348, + -0.002414256, + 0.0029036198, + 0.005360519, + -0.007248953, + -0.007510241, + -0.013398191, + 0.0035571766, + 0.002658972, + -0.017950196, + -5.1442935E-4, + 0.011168214, + -9.126974E-4, + -0.0025235587, + 0.014275125, + -0.0050253915, + 0.004258678, + -0.0020653813, + 7.8253186E-4, + -0.0064823353, + -0.03540309, + -0.012736009, + -0.012958635, + -0.021142174, + 0.0062706186, + -0.020035328, + 0.01745351, + 0.019762402, + 0.010916074, + -0.0074370736, + -0.025406167, + 9.1788016E-4, + -0.037578292, + -0.009666621, + -0.031188237, + 0.021767622, + 0.008993296, + 0.0032814003, + -0.008056621, + 0.008651668, + -0.0024745583, + 0.009203683, + -0.021957818, + 0.004552339, + -0.024235185, + 0.0055612577, + -0.04169251, + 0.012910585, + -0.0032545838, + -0.007860783, + -0.020129548, + 0.031419206, + -0.031936537, + 0.025853299, + 0.01072336, + 0.0057422076, + 0.0140714925, + -0.0065934956, + 0.032631386, + 0.0062256963, + 0.038982008, + -0.003825812, + 0.009481047, + -0.0037698264, + 0.026005164, + 0.014440531, + 0.010510958, + 0.015616004, + 0.018766329, + -0.0013341446, + 0.025491495, + 0.017535307, + 0.0026496071, + 0.0095633995, + 0.013656394, + 0.0021518362, + 0.011908104, + 0.014156391, + -0.003240477, + -0.0148275485, + -0.021466358, + 0.009762086, + -0.017987931, + -0.00211432, + -0.005730223, + 0.006456427, + -0.003460879, + -0.00774051, + -0.0053181234, + 0.019639945, + 0.029251503, + 0.016760767, + -0.0122274505, + 0.02345283, + 0.0056935456, + 0.012748418, + -0.005574011, + -0.02684827, + -0.018540686, + -0.0025587175, + -0.008596108, + 0.011491656, + -0.010774786, + -0.01065318, + -0.018416012, + 0.01367189, + -0.027757779, + 0.002397751, + -0.002939552, + 0.00430877, + -0.030076928, + 0.010782955, + -0.0011764668, + -0.0040608644, + 0.012510203, + -0.02084344, + 0.0062729744, + 0.005203551, + -0.0040538213, + -0.012491107, + 0.0140372645, + -0.009701204, + 0.0071307165, + -0.017504923, + -2.021635E-4, + -0.012788541, + 0.005829175, + -0.0028999012, + 0.009722832, + 0.005742041, + 0.01181572, + -0.019571077, + -0.00762402, + 9.0589566E-4, + 0.0043281396, + -1.8586098E-4, + -0.0032849181, + 0.030869458, + 0.016282013, + -0.015513451, + 0.0024395608, + 0.015167949, + 0.029526671, + -8.8605366E-4, + 0.010512268, + -0.03608129, + -0.002676618, + 0.011195291, + 0.0018105428, + -0.0042339475, + -0.017624088, + -0.018332785, + 0.03273389, + -0.0075170826, + -0.044117663, + 0.006871, + 0.017941406, + -0.0011593259, + -0.023596229, + -0.00490663, + -0.019855006, + 0.023302898, + -0.03356365, + 0.024831053, + -0.015168872, + -0.0025969257, + -0.020438928, + 6.766155E-4, + 0.008029092, + -0.017165894, + -0.008808339, + -0.024252117, + 9.008328E-4, + 0.014071126, + 0.009936871, + 0.019729145, + 5.8739894E-4, + 0.023545714, + -0.0011729198, + 0.027464742, + -0.009688264, + 0.0054563624, + -0.0125496145, + 0.011104897, + 0.009834263, + -0.0075702835, + 0.004742445, + -0.0033662482, + 0.03100711, + -0.0085364245, + 0.01922867, + -0.023539541, + 7.9089525E-4, + 0.014088387, + -0.019112773, + 0.020954208, + -0.004133451, + -9.6953165E-4, + -0.031009983, + 0.013433126, + -0.026304614, + -2.7863223E-5, + 0.018878499, + -0.0072390223, + -0.0059912354, + 0.017358301, + -0.004194947, + 5.858171E-4, + -0.020771591, + -0.034579813, + -0.020997297, + 0.016277628, + 0.009732297, + -0.0050285966, + 0.032615777, + -0.01362721, + -0.0147057315, + -0.010026149, + -0.011388713, + -0.015523287, + 0.006513435, + -0.0012327173, + -0.017692743, + -0.0029945003, + -0.011739763, + 0.014876017, + -0.010325265, + -0.009423871, + 0.037017692, + 7.342294E-5, + -0.015137076, + 0.028354274, + -0.025475241, + 0.0111011965, + -0.02354355, + -0.012205771, + -0.014463142, + -0.018376835, + -0.0074852584, + -0.005860453, + 0.023144174, + 0.012762034, + 0.023656223, + 0.0027474784, + -0.013448655, + 0.008260176, + -0.020624097, + -0.016862502, + 0.010150826, + 0.0137539115, + 0.0028550108, + 0.028138708, + 0.028153397, + -0.0061217924, + -0.007324211, + 0.00574215, + 0.002775998, + 0.017936658, + -0.035283614, + -0.018713951, + 0.007941621, + -0.020712467, + -0.02736003, + -0.016475622, + -0.016348071, + -0.013636511, + 0.011127436, + -0.011444096, + -0.010993925, + 0.03157358, + 0.014904936, + 0.02080119, + 0.014913799, + -0.006620698, + -0.010235507, + -0.006728124, + -0.012279858, + 0.0071412283, + 0.007212333, + -0.0035818734, + -0.010023153, + -0.0113926325, + -0.006988457, + 0.0018667849, + -0.004044922, + 0.026859451, + -0.014623219, + -0.0029194488, + -0.008720583, + 0.0029863291, + -0.006440955, + -0.0034635763, + 0.011067885, + 0.0015434743, + -0.036889557, + 7.324578E-4, + -0.0037909981, + -0.0020230531, + 0.022393422, + 0.020290103, + -0.009764831, + -0.013950548, + 0.011504246, + -0.024890851, + 0.012298391, + 0.0067174905, + 0.0054376, + -0.027967347, + -0.021758426, + -0.00984278, + 0.0152798975, + -0.006745336, + 0.011801619, + -0.0074131563, + 0.03571765, + -0.013667911, + 0.020321097, + 0.0012677374, + -0.004125803, + 0.0046490408, + -0.0031222561, + 0.030585254, + 0.024783809, + 0.013795149, + -0.01811706, + 0.022926722, + -0.0044128518, + -0.0049700746, + 0.00392763, + 0.013168869, + -0.0040042037, + 0.003546382, + -0.010050465, + -0.0020998528, + 0.0067812228, + 0.014945484, + 0.015976505, + 0.0031801164, + 5.8147863E-5, + -0.009894126, + -0.008350477, + 0.014771888, + -0.013377918, + -0.029522875, + 0.0065829176, + 0.028519006, + -0.0012438648, + -0.005842399, + -0.0014398322, + -0.020817056, + 0.011774973, + 0.008351207, + -0.012822479, + 0.014073954, + -0.018163051, + 0.0017429352, + -0.026507793, + -0.014165092, + -0.0028912802, + 0.014879539, + -0.017180668, + 0.010298189, + -0.004932247, + -0.0039143595, + 0.004072457, + 0.005044821, + -0.0036652987, + 0.01807035, + -0.004358533, + 4.0010293E-4, + 0.017297978, + -0.020673772, + 0.02445665, + 0.023247955, + 8.802032E-4, + 0.008228673, + 2.5476268E-4, + -0.015831122, + 0.040483493, + 0.02689224, + 0.0047436114, + -0.030743372, + 0.0012897572, + 0.013485805, + 0.03081928, + 0.0070659253, + 0.022711402, + 0.01603544, + 0.012244748, + 7.738769E-4, + 0.008744882, + 0.0010418518, + -0.025517749, + -0.021852583, + -0.004377204, + -0.019708604, + 0.022156019, + -0.0051206895, + 0.010527792, + 0.0016731014, + -0.004450222, + -0.005048319, + 0.011561558, + 0.0055282437, + -0.022193313, + 0.006416634, + -0.0013875936, + 0.013849323, + 0.0061788135, + -0.014096198, + 0.0013761581, + 0.014729715, + 0.011469903, + -0.012841845, + 0.01778046, + 0.013568462, + -0.019664325, + -0.002326715, + 0.015589626, + -0.022374576, + 0.010400692, + -0.015477867, + -0.041587137, + 0.008149803, + -0.002579152, + 0.01215559, + 0.01169502, + 0.0030123014, + -0.004459923, + -0.007308958, + -0.015891163, + -0.006390047, + 0.007438607, + -0.009377968, + 0.0083132135, + 0.01636528, + -0.0077827815, + 0.014315207, + -0.025547132, + -0.010951183, + -0.02346558, + -0.027869413, + -0.028271338, + -0.013760494, + 0.028988438, + 7.3249766E-4, + 0.0075436425, + 0.015064513, + 0.0021531712, + -0.022520078, + -0.012979399, + 0.01408793, + -0.02342848, + -0.018212039, + 0.009426176, + -0.018717472, + 0.010089046, + -0.020611014, + 0.009048861, + -0.008276367, + 0.010202576, + -0.0075929672, + -0.023482066, + -0.016278688, + -0.003711568, + -0.0035498433, + -0.020271271, + -6.757305E-4, + -0.006786048, + -0.016755344, + 0.011332173, + 0.020625325, + -0.007103001, + -0.0036474578, + 0.0019065043, + -0.0074615744, + 0.012418832, + 0.015138071, + 0.012939264, + -0.01415003, + -0.02119871, + 0.014151917, + 0.03649614, + 0.023339761, + -0.02855716, + 0.024675421, + -0.0069017974, + -0.017348299, + 8.8600756E-4, + 0.0020735613, + 0.007398957, + -0.01242178, + 0.012486432, + 0.0012868597, + -0.012488711, + -0.0124667, + 0.009569434, + 0.004779789, + 9.665213E-4, + -0.018202107, + -0.009514302, + 0.011649424, + -0.010272497, + 0.021788552, + -0.0013614909, + 0.00313321, + -0.005967867, + -0.010282246, + -0.005990535, + -2.007277E-4, + -0.026457252, + 0.01996617, + -0.012391333, + -8.572458E-4, + -0.01878826, + -0.0013424405, + 0.030054294, + 0.010884673, + -0.015729701, + 0.010358077, + 0.012076781, + 9.4612944E-4, + -0.009572891, + 0.0050458293, + 0.013729456, + 0.005512804, + -0.014815425, + -0.010783934, + 0.0089727035, + -0.0058773966, + 0.010103191, + 0.009587427, + -0.024553873, + -0.013743561, + -0.004951008, + 0.0059514195, + -0.0053068255, + -0.04613072, + 0.0044263215, + 0.007989088, + -0.015173723, + 0.022279901, + -0.004938472, + -0.0027147033, + 0.01424669, + -0.005872166, + 0.030655248, + -0.026360793, + 0.033816215, + -0.0018572998, + 0.036136765, + -0.009154844, + -0.014008528, + 0.007235665, + 0.009484553, + 0.0026143636, + 0.017946552, + 0.029901974, + 0.00389771, + 0.011100498, + 0.009789452, + -0.010256952, + 0.009667681, + -0.020265114, + 0.010375684, + -0.033229824, + 9.514017E-4, + 0.0051211636, + -0.010223873, + 5.277361E-5, + -0.001435241, + 0.010304073, + -0.009998181, + 0.015626395, + 0.011111643, + 0.0057896716, + -0.043162245, + -0.0050186543, + -0.013528055, + -0.0028031047, + 0.018223694, + -4.6177214E-5, + 0.0049851686, + 0.013950609, + -0.011347493, + -0.010216457, + 0.007762311, + -0.032759707, + 0.015442671, + 0.0067422725, + -0.009882646, + 0.03081103, + -0.009772531, + 0.009214846, + 0.022436157, + -0.007085052, + 0.01290328, + -0.010418604, + 0.005562168, + 0.0067633037, + 0.016374374, + -0.023323601, + 0.023335338, + 0.0049708206, + 0.0037751384, + -0.0016895959, + -0.0047753667, + 0.040168107, + 0.0016526316, + 3.7546435E-4, + -0.015918136, + -0.014338454, + 0.02814445, + 0.005279341, + 0.009439352, + 0.011502681, + -0.018126609, + -0.01775834, + 0.0012492031, + 0.034707673, + 0.035357133, + -0.02901454, + -0.0116821965, + -0.012906081, + 0.011725134, + 0.009432434, + -0.007633274, + -0.020030716, + -0.002525591, + -0.027254922, + 0.013890201, + 0.011327614, + 0.0017739779, + 0.02662015, + 0.007921296, + -0.009385431, + 0.008817522, + 0.0026460208, + -0.004388679, + -0.012023144, + 0.0082781315, + -0.019416379, + 0.009125139, + -0.0023903006, + 0.001498021, + 0.0017535702, + -0.008176956, + -0.01735103, + 0.0035345263, + -0.0049468065, + 0.02028451, + -0.00507737, + 0.0040899753, + -0.0043697567, + -0.01222995, + -0.019675013, + 0.009069415, + -0.027657002, + 0.018605912, + -0.042186636, + -0.019605407, + 0.01686717, + -0.0058985124, + -0.011348085, + -0.002342317, + 0.0030691696, + 0.0053187353, + 0.00651189, + 0.00859458, + -0.003554412, + -0.005603772, + 0.03498069, + -0.011627046, + -0.029211972, + -0.031600934, + -0.0030791576, + -0.009909129, + 0.017142804, + -0.01784017, + -0.016522234, + -0.006900192, + -4.2739318E-4, + -0.0026166867, + 0.039850514, + 0.011540546, + -0.0028929447, + 0.0014949314, + -8.629494E-4, + 0.004285774, + 0.0132350195, + -0.003013466, + -0.009735619, + 0.005264453, + 0.008299136, + 0.019499594, + 0.007460555, + 0.005399999, + -0.0071103107, + -0.009045044, + 0.024026698, + -0.00851666, + 0.00535725, + 0.011073925, + 0.036772855, + -0.019220885, + 0.006904823, + -0.013898039, + -0.008235554, + 0.010615334, + 0.013514667, + -0.02624135, + -0.017578375, + -0.012393621, + 0.0031564576, + 0.0037947637, + -0.012254904, + 0.024025708, + 0.015602456, + 0.009089775, + 0.016319873, + -0.00587525, + -0.0017796563, + 0.017986713, + 0.0022325893, + 0.015820121, + 0.0028555475, + 0.01034545, + 0.011887095, + -0.005021135, + -0.0027762365, + 0.041617386, + -0.0012351571, + 0.022674639, + 0.031518072, + -0.0061869714, + 0.015728101, + 0.015187358, + 0.027607324, + -0.0474021, + -0.015813496, + -0.023227692, + 0.013049363, + -5.1700184E-4, + -0.018015575, + 0.00887234, + -0.027567677, + 0.013146046, + -0.015970243, + -0.0036871098, + 0.0010805926, + 0.012047793, + 0.013155808, + 0.01328049, + 0.0017254562, + 0.020175558, + -0.026343916, + -0.02027882, + -0.01208892, + 0.0024820487, + 0.017586745, + -0.036138635, + -0.0083011985, + 0.0083474275, + 0.03658582, + -0.012433402, + -0.021895407, + 0.0071249097, + 0.01427963, + -0.001136281, + 0.037797578, + -0.02497748, + 0.009078309, + -0.015956223, + 0.047946323, + 0.022514293, + -0.015154839, + 0.0204223, + -0.021311745, + -0.006366675, + 0.004056672, + 0.011641202, + 0.012698183, + 0.009382881, + 0.025050683, + -0.025183087, + -0.016476039, + 0.02849413, + 0.0010622079, + -0.044584844, + 0.036337487, + 0.011759212, + 0.0021647108, + 0.01692826, + -0.019828934, + -0.00934408, + -0.01077149, + 5.335028E-4, + -0.018715154, + 0.017578593, + 0.011926334, + 0.011403738, + -0.0027564436, + -0.015118916, + -0.013537434, + -0.01508437, + -0.005895363, + 0.0027783832, + -0.007276158, + 0.016699862, + -0.0024392924, + -0.0044487957, + 0.0024212096, + -0.013188498, + -0.007345125, + 0.0091013815, + -0.008368905, + 0.01063013, + 0.0017944498, + -0.012681636, + -0.020319657, + 0.034193315, + 0.006665012, + -0.009239858, + -0.0034855846, + -0.008408982, + 0.027068712, + -2.546192E-4, + -0.009215502, + 0.0050326153, + -0.0066383737, + -0.002213029, + 0.004542473, + -0.020678233, + 0.007469127, + -0.0020319398, + -0.0066196523, + -0.0026239792, + -0.025115453, + 0.0033844444, + -0.016647583, + -0.01590062, + 0.0021673935, + -0.0041598952, + -0.0020541816, + -0.0081108725, + -0.008096787, + 0.00907099, + -0.008514896, + 0.0058348747, + -0.03463005, + 0.017392145, + 8.5165666E-4, + -0.036145926, + -0.011550472, + 0.010569818, + -0.013426867, + 0.007948876, + -0.022162128, + 0.017990535, + 0.016200775, + 0.015031555, + 0.026905257, + -0.011989648, + -0.009977106, + -0.0055817887, + 6.405125E-4, + -0.005484931, + 0.022633392, + 0.02536169, + -0.0024636285, + 0.011129061, + -0.0077912067, + 0.016527237, + 0.026277483, + 0.0047397525, + -0.019769007, + 0.003628271, + -0.044254366, + 0.011203671, + -0.022826653, + -0.034790386, + -0.0036058265, + 0.007725247, + -0.0153088765, + -0.013503594, + -0.00124411, + -0.006326744, + 0.009132736, + -5.919838E-4, + -0.004365624, + -2.4346968E-4, + 0.009235828, + 0.015138694, + 0.013940161, + -0.0011925616, + -8.248841E-4, + -0.021491088, + 0.03287718, + -0.029828966, + -0.0028679764, + -0.031054143, + -0.026616288, + -0.012405608, + 0.004889533, + -0.0067948746, + 0.012583432, + -0.0037617013, + -0.012248238, + 0.010353658, + -0.037885163, + -0.030937932, + -0.00801626, + 0.0015776658, + 3.7162635E-4, + 0.00557005, + 0.007535321, + -0.0014591155, + 0.009254399, + -0.01406476, + -0.0036609906, + 0.018161792, + -0.0058758403, + 0.0031511125, + 0.0013621317, + -0.0047154445, + 0.0015375472, + 0.014675184, + 0.01781303, + 0.006249217, + 0.004274161, + -0.008818282, + 0.01977179, + -0.0023517937, + 0.0011158495, + -0.0067789275, + -0.005371926, + -0.01691947, + 0.019057415, + 0.0399094, + -0.023047807, + -0.00568068, + 0.010102818, + 0.0069158264, + 0.00406468, + -4.8136077E-4, + 0.009418053, + 0.021058317, + 0.0021494327, + -0.01707443, + 0.035959776, + -0.018238934, + -0.010602914, + 0.018316146, + -0.017329212, + -0.005632511, + -5.16524E-4, + -0.009574437, + -0.018478176, + -0.013165061, + 0.010994613, + 0.00124366, + 0.00434808, + 0.030486826, + -6.5007666E-4, + 0.009095851, + -0.020801049, + -0.01667214, + -0.026541272, + 7.94752E-4, + -0.0060666986, + -0.0024931037, + 0.0150681725, + -0.005321973, + 9.4516587E-4, + 0.00789278, + 0.0060700704, + -0.011092847, + -0.020928714, + -0.018036943, + 0.012077013, + -0.010494897, + 0.014769958, + -0.00519814, + -0.010682169, + 0.004210426, + 0.02363038, + -0.020205548, + 0.011120239, + -0.018801093, + -0.014393116, + -0.0079180505, + -0.015102259, + 0.015507751, + 0.039941464, + 0.0050880564, + -6.632247E-4, + 0.035515115, + 0.0032621282, + 0.0023156116, + -0.017357921, + -0.023589186, + -3.6464695E-5, + -0.0021963085, + -0.026860882, + -0.021759527, + -0.0052975877, + -0.0027417452, + -0.0138952965, + -0.018027782, + 0.015197361, + 0.004702147, + -6.165544E-4, + -0.00968091, + 0.0109718, + 0.0036754995, + -0.0025688978, + -0.01359802, + 0.010142386, + 0.0028337617, + -0.0068062893, + 7.8857515E-4, + -0.005996402, + -0.0015787069, + 0.017531201, + 0.017419333, + 0.008282384, + 0.0025646763, + 0.0115479, + 0.024317436, + 0.009834668, + 0.010094436, + -0.008421545, + 0.029305564, + -0.008064796, + 0.0012720969, + -0.0043423013, + -0.02748331, + 0.019433323, + 0.007687443, + 0.0052576205, + -0.024001021, + -0.009518743, + -0.010250311, + -0.027480097, + 0.0055633606, + -0.00502945, + -0.006980104, + 9.961382E-4, + 2.1593823E-5, + 0.002864413, + -0.0075352653, + 0.028988102, + -0.013294626, + 0.008965927, + 0.008583712, + -0.0013204378, + 0.03949148, + -0.008980094, + -0.010185752, + -0.0072238618, + -0.008242747, + 0.007195631, + -0.016216539, + 0.041027665, + 0.0067674955, + 0.022310428, + 7.5369974E-4, + 0.026223514, + 0.010900425, + -0.011400095, + 0.014809209, + 0.025323216, + -0.012764125, + -0.0015863576, + -0.016044652, + -0.010471105, + -3.4217403E-4, + -0.0076907394, + -0.003735653, + 0.0017270766, + 0.026918259, + 0.0012347759, + 0.037655167, + 0.008035647, + -0.00627779, + 0.006868232, + 0.011465911, + 0.004157457, + 0.02455507, + 3.7641736E-4, + 0.012464713, + 0.022103706, + 0.012782281, + -0.003280898, + 0.0015264784, + 0.015425492, + -0.0041306783, + 0.004919236, + 0.023729082, + -0.028402697, + -6.6961045E-4, + -0.009117878, + 0.018884337, + 0.025659498, + -0.016426304, + 0.008747944, + 0.022062955, + 0.0014282557, + 0.02005584, + 8.189238E-4, + -0.0063065593, + 0.010609798, + -0.020218993, + -0.03184074, + -0.005560261, + 0.022058314, + 0.0040032407, + -0.018154373, + 0.008642169, + 1.6550397E-5, + 0.008893369, + 0.029454717, + -0.0075077373, + -0.0074892556, + 0.0027284895, + 0.0020789648, + -0.0248839, + 0.005847277, + -0.022041941, + 0.00937497, + 0.01077926, + -0.024648163, + -0.031512633, + 0.024622086, + -0.045663133, + 0.0069299694, + -0.0022333297, + -0.011688183, + 0.025788484, + -0.030710358, + -0.013470968, + 0.008638011, + 0.017254433, + -0.0077447025, + 0.050774213, + 0.008996838, + -0.0026870235, + -0.017180713, + -0.009984966, + -0.0023081568, + -0.0023929556, + -0.009853245, + -0.017375339, + -0.03506532, + -0.018456573, + 0.014796306, + 2.825624E-4, + 0.0208841, + 0.025884528, + -5.5467786E-5, + -0.0056347298, + 0.014754243, + 0.0121534215, + 0.007494451, + 0.013660101, + -0.013092497, + 0.01823151, + 0.016670482, + 0.0025315639, + -0.01552708, + -0.02106178, + -0.0045307586, + -0.031037763, + -0.026396744, + 0.0017609443, + -0.01665346, + -0.018462732, + 0.009597555, + 0.005426663, + 0.021665452, + -0.021503327, + -0.05125623, + 0.017651346, + 0.02025916, + -0.0058292923, + -0.009465483, + 0.0023937637, + -0.020841181, + -0.005090822, + -0.0017049542, + 0.025147472, + -0.036080208, + -1.6912988E-4, + -0.0023831502, + 0.0013535783, + -0.0064036683, + -0.015793638, + -0.010099712, + 0.018054243, + 0.0089720115, + 0.020020062, + 0.013671038, + 0.008034911, + 0.020209413, + -0.0031122507, + 0.007624194, + -0.015693143, + -0.011611754, + 0.019861758, + -0.0077542486, + 0.006397079, + -0.02568602, + 0.0063914345, + 0.006304966, + -0.0076115155, + 0.018091945, + -0.014482009, + 0.02026299, + 0.03300422, + -0.0068318737, + -0.012217487, + -0.014292963, + 0.0041456725, + -0.008650678, + 0.00686938, + -3.2507975E-4, + 0.0091522485, + 0.004844824, + 0.01162942, + -0.011815122, + 0.019372618, + -0.004689139, + -0.0061146165, + 0.003830534, + -0.025171312, + -0.0070970864, + 0.021103451, + -0.0055063292, + -0.020031737, + 0.0104731275, + 0.0028965082, + -0.013190432, + 0.01253584, + -4.3294646E-4, + 0.012237767, + -0.018553363, + 0.0065211235, + 0.011045763, + 0.013427563, + 0.010046603, + -0.010475535, + 0.009612903, + 4.324498E-4, + -0.016105914, + 0.006317262, + 0.050652374, + 0.0071214577, + 0.02395846, + 0.029193314, + 0.005896775, + -0.025294539, + 0.028337743, + -0.016939677, + -0.007407818, + -0.0032275382, + -0.027166195, + -0.023208385, + -0.019113855, + 0.007753265, + -0.0031772372, + 0.0024068162, + -0.019083893, + 0.03988721, + -0.014231321, + -0.008197092, + -0.003022181, + 0.013479025, + 0.019530112, + 0.0017446467, + -0.027591093, + -0.0127871465, + -0.0030418609, + -0.045312367, + 0.008604586, + -6.0307124E-4, + 0.015086063, + 0.0010128496, + 0.0027065354, + 0.0143311415, + 0.018416712, + -0.0024930423, + 0.011624378, + 7.7358435E-4, + 0.0030547003, + 0.003389923, + 0.020577699, + -0.0100782355, + -0.009249542, + -0.016904041, + -0.02095112, + 0.015191883, + 0.008805584, + -5.5580433E-5, + -0.00436425, + 0.006741524, + -0.028142858, + 0.012343092, + -0.020363728, + -0.01275197, + -0.016163891, + -0.014271689, + 0.0044641225, + -0.021174025, + 0.01103815, + 0.017815955, + -0.0013547423, + -0.010438277, + -0.009479577, + -0.009999514, + -0.022723641, + -0.002161344, + -0.007778764, + -0.0118588125, + -0.0017075083, + 0.0036605361, + -0.0053186505, + -0.011215121, + 0.0040182318, + -0.001742619, + 0.013444352, + -0.013020796, + 0.0038415957, + -0.030616894, + 0.022522794, + 0.014975865, + -5.283774E-4, + 0.028143955, + -0.012598634, + -0.007736771, + -0.0015701924, + -0.0020192128, + -0.0084031625, + 0.01801677, + -0.01643454, + -0.00779026, + -0.0064566634, + -0.017640105, + 9.0398453E-4, + 0.009981409, + -0.004373957, + -0.019191312, + -0.02136536, + -0.0053691105, + 0.008366776, + 0.007848816, + 0.014919484, + 0.018763663, + -0.00840595, + 0.002418234, + 0.00680151, + 0.0077883787, + 0.010979928, + -0.01021343, + 0.0206337, + -0.02363107, + -0.0131692225, + -0.013142654, + 0.023941766, + -0.023817327, + -0.019235754, + 0.0044981074, + 0.008385707, + -0.008201455, + -0.008486662, + 0.0012598651, + -0.004832128, + 0.039024297, + -0.004471473, + 0.008515325, + 0.003738417, + -0.005395792, + -0.008885361, + -0.0050440077, + -0.0066377614, + 0.03016469, + 0.014131752, + -0.021345193, + -0.038417645, + -0.007947084, + -0.011479, + -0.003845367, + -0.014330206, + 0.017866323, + -0.003989304, + 0.005363422, + 0.00237751, + 0.015433589, + -0.006116497, + 0.0133930165, + 0.0044741174, + -0.020808723, + 0.013065742, + -0.012968026, + 0.004875624, + 0.023475684, + -6.7606935E-4, + -0.0071890363, + -0.005831279, + -0.0070258933, + -0.03548336, + 0.013553166, + 0.008966817, + -0.0056287637, + 0.03203841, + 0.0043620025, + -0.029071838, + 0.0114170145, + 0.011233368, + -0.017481355, + -0.018692363, + 0.019354941, + -0.008589201, + 0.0055697733, + -0.018034665, + 0.007732829, + -0.0018604568, + -0.017444711, + 0.003064625, + 0.019331483, + -0.004275644, + -0.02075713, + 0.006908085, + -0.002178771, + 0.02125207, + -0.023105547, + 0.009717957, + 0.021873385, + 0.024379326, + -0.012757625, + -0.0070309206, + -0.018887045, + -0.0039242776, + 0.024251062, + -0.010607764, + -0.028435327, + -0.012933696, + 0.008978112, + -0.002110719, + -0.0017265388, + 0.028183203, + 0.020910582, + 0.02601457, + -0.017676279, + -0.0061392616, + 0.032518744, + -0.006402015, + 9.250956E-4, + 0.033482548, + 0.0030760043, + 0.008083858, + 0.010911518, + -0.015759869, + 0.016832272, + -0.008775423, + -2.1321868E-4, + 1.7127E-4, + 8.319086E-4, + -0.018514983, + -0.015714861, + -0.012109909, + 0.005032078, + -0.0012429982, + -0.012267331, + 0.007843897, + 0.0183326, + -0.010442733, + -0.005030894, + -0.0031719413, + -0.013920552, + -0.027230106, + -0.011912995, + 7.054326E-4, + -0.0011138718, + -0.002701512, + -0.0019127424, + -0.026812062, + 0.0028521004, + -0.008659028, + 0.0030481273, + 0.016780661, + 0.019166943, + 0.0018819021, + -0.017195784, + -0.010378304, + 0.0103635155, + -0.021932589, + 0.009912746, + 0.005579218, + -0.0028617494, + -0.026027292, + 0.0062558064, + -0.0059936983, + -0.018944735, + -0.0019834419, + -0.017927403, + 0.0081799645, + 0.0056650466, + 0.008936748, + 0.022944573, + 0.0050117513, + 0.03958, + 0.028260896, + -0.018859237, + 0.015861599, + 0.03673348, + -0.019656368, + 0.010333688, + 0.011957329, + -0.00928378, + 0.0036820564, + -0.014504152, + 0.011672373, + -0.032881036, + 0.017982652, + 0.02288708, + -0.03062775, + 0.038840678, + 0.003647976, + 0.020423226, + 0.013801412, + 0.0074889977, + 0.019535922, + -0.0038759762, + -0.0029238795, + -0.01627469, + 0.015030676, + -4.7415524E-4 ], - "paletteEmbedding": [ - 0.026875922, 0.04729547, 2.0956634e-4, 0.032309912, 0.049553677, - -0.019723276, 0.0019536836, -0.024943253, -0.04445431, 0.022091711, - 0.06202962, -0.034425773, 0.021233244, 0.017300494, -0.015892996, - -0.0036692994, 0.029180022, -0.01821175, -0.0069096833, -0.03015282, - 0.0018877559, 0.04171447, 0.043282878, -0.02063301, -0.037078205, - 0.011333283, -0.07723088, -0.030598799, 0.008693368, -0.043577574, - 0.017608685, 0.02016214, -0.042217944, -0.021228315, -0.047443613, - -0.0071836114, -0.023550367, 4.1887444e-4, 0.028953567, -0.04831927, - 0.001459661, -0.09453412, 0.034776226, -0.053389426, 0.0057736514, - -0.007612363, -0.0155765, 0.019828051, 0.05896617, 0.046505388, - -0.007495269, -0.001033151, -0.009822052, -0.0055425926, -0.019110277, - 0.058631934, 0.03588835, 0.03935939, -0.019014778, -0.04317615, - -0.048570376, 0.046504386, 0.021559436, -0.011028098, 0.020236779, - -0.0025294484, 0.07995548, 0.021701759, -0.025490843, -0.0075770663, - 0.028384672, -0.034827247, 0.002544197, 0.0013303764, 0.017317781, - 0.01968516, 0.026190447, 0.019730376, 0.028726729, 0.005255604, - 0.00927473, -0.019312484, -0.037298232, -0.024937429, 0.006201929, - 0.059086613, 0.0045194156, 0.005089472, 0.006531004, -0.00806998, - 0.005168007, 0.035207376, 0.037064437, -0.01038235, -0.025669655, - 0.037926078, -0.01346701, 0.04226493, 0.006882823, 0.06363788, - 0.011107667, -0.009901615, -0.0020188855, -0.024832817, 4.465405e-4, - 0.020757616, -0.0034180111, 0.0050444156, 0.036870603, -0.048642594, - -0.045379713, -0.01227013, -0.015810534, -0.008110755, -0.018025083, - -0.02700468, 0.0127678905, 0.025751946, 0.020561835, 0.0075049745, - 0.03022833, -0.0037667248, -0.008579461, 0.0010650746, 0.025684167, - 0.050350945, -0.0115469415, -0.029828731, -0.037214637, 0.015030157, - -0.029701568, -0.035233602, -0.034977235, -0.026499229, 0.033418354, - 0.0082313325, -0.011671567, -0.017201444, -0.010957966, -0.011284474, - -0.015895048, 0.04946994, 0.0364385, -0.01890921, -0.0010398629, - 0.031429417, 0.020228544, 0.036852952, -0.0070374194, -0.00965111, - 0.034643393, -0.02896729, 0.030480914, 0.028403519, -0.05298368, - 0.010156877, -0.025664032, 0.020095212, 0.0016667474, -0.050079726, - -0.020721225, -0.01445761, -0.022350337, -0.010632148, 0.015460222, - 0.012866698, -0.037371617, 0.0018349864, 0.017826628, -0.02081869, - -0.0029573825, 0.015573065, 0.034131527, 0.009247414, -0.006931557, - -0.003337265, -0.031023392, 0.07095177, -0.00814652, -0.011522285, - 0.037209015, -0.009364675, 0.04563848, -0.03621363, 4.818956e-4, - 0.023032673, 0.015851215, 0.013488113, -0.01726205, -0.025029339, - -0.034786332, 0.015765298, -0.054852504, 0.007585789, -5.767542e-4, - 0.04955046, 0.0062982775, -0.0062071756, -0.0035251463, 0.012120743, - -0.0045762807, -0.042132992, -0.001343234, 0.023390677, 0.004665436, - -0.01080287, -0.034476966, 0.010438889, -0.014355888, -0.007734923, - -0.0052161515, -0.023519378, -0.0024579342, -0.019782944, -0.010802101, - 3.0812377e-4, -0.0055674454, -0.03955523, -0.00620995, -0.005919175, - 0.03478336, -0.032194436, 0.015398807, 0.027694756, -0.021097986, - -0.07182444, 0.040135317, -0.022083746, -0.036022384, 0.012048197, - -0.022988163, -0.03524369, 0.018688716, -0.030517003, 0.030340921, - 0.013833717, -0.045300353, -0.10148867, 6.833969e-4, 0.022252731, - 0.036332082, -0.022393104, -0.010480543, 0.032303985, -0.027344486, - 0.016414922, 0.050835315, -0.020430835, -0.0039177793, -0.037898093, - 9.876023e-7, 0.04373239, 0.030563638, 0.03220113, -0.015789192, - 0.015676854, 0.032286525, -0.08075268, -0.028500294, 0.014197539, - -0.04223918, 0.025728628, -0.07654352, 0.010415537, 0.020194007, - 0.03917643, 0.010618591, -0.030241132, -0.016239988, 0.036217973, - 0.02930436, -0.04618966, -0.044687446, 0.01457691, 0.024067322, - -0.016866343, 0.009756228, -0.05001828, 0.034313224, 0.024376648, - 0.02104503, -0.05190232, -0.0025339068, 0.006487706, 0.007030323, - -0.033427358, -0.033376392, 0.014983769, 0.043665525, 9.457587e-4, - -0.01813332, 0.0404483, -0.021297071, 0.004608639, -0.019545306, - -0.0018879568, 0.014518936, -0.004264283, 0.034624133, -0.032626998, - 0.031225696, 0.0053846645, -0.03166898, 0.0022978915, -0.028677573, - 0.010497396, 0.02249039, -0.01815812, -0.02211493, -0.016744595, - -0.0047250744, 0.021719383, 0.06676192, -2.7198636e-4, -0.034630954, - -0.005372879, -0.038575374, -0.03719773, -0.05243945, -0.032909416, - 0.014308165, -0.06039443, -0.023108594, 0.008830973, -0.036470205, - 0.0024374886, -0.007608501, -0.04112171, 0.0076247677, 0.033628806, - -0.05092175, -0.0032995346, -0.004036638, 0.044345234, 0.008273099, - -0.0019283332, -0.0032253847, -0.018457167, -0.011013946, -0.005975494, - 0.0072151064, -0.047004074, 0.029490164, -0.010463792, 0.04636138, - -0.017248532, 0.001463244, -0.029393207, 0.010212043, -0.0011719981, - -0.010350455, -0.04523271, -0.0036871245, 0.020483816, -0.012350714, - -0.02981273, 0.0669798, 0.023594448, 0.005459642, 0.030869342, - 0.02652087, 0.029101253, 0.04273562, -0.026108637, 0.04572451, - 0.0782659, 0.005225598, -0.03809155, 0.020177301, 0.018818853, - 0.06726287, -0.0028542795, 0.019124703, -0.020817395, 0.0092483135, - 0.0036874197, -0.020684388, -0.024920475, 0.0013177795, 0.002256588, - 0.058029603, -0.02559686, 0.039218754, -0.012189795, 0.023760108, - 0.032173127, 0.028574908, -0.06854022, 0.0023892045, -0.05000071, - 0.020807443, 0.020097597, -0.03547384, 0.0016430867, 0.017440218, - -0.0012948834, -0.04442446, -0.010270965, -0.0072216243, -0.012736933, - -0.018641874, -0.03660875, 0.021371644, -0.007243311, -0.039252993, - 0.0141713, 0.025631025, -0.028743748, -0.0273147, -0.009786612, - 0.013924638, 0.013537043, -0.035356335, 0.022407115, 0.013203383, - 0.05304306, 0.007951767, -0.006856853, -0.05850579, 0.004070467, - -0.0075745014, 0.0023809366, -0.005787872, -0.038180552, -0.046600245, - 0.03118879, -0.029640479, 0.01193349, 0.0074369693, 0.019608196, - 0.04440869, 0.023279151, 0.03315209, 0.009911809, 0.064581715, - 0.027570587, -0.04675222, 0.014423022, -0.037694316, 0.023210026, - 0.0022223017, 0.061288014, 0.03992368, -0.014308915, -0.058286954, - -0.047491044, -0.042171624, 0.031948343, -0.035087764, -0.0068541933, - -0.050745893, 0.004060658, -8.008379e-4, 0.037161276, 0.035577826, - 0.032967705, 0.0017733189, 0.049497377, 0.0028108333, -0.033772692, - -0.0053117443, -0.064646214, -0.026337799, -0.05169393, -0.042005762, - 0.003946794, 0.016946146, -0.02814265, 0.02516328, 0.028426558, - -0.08324275, -0.059783813, -0.01068749, -0.009686304, -0.019692466, - -0.029328745, -0.014531886, 0.005842256, -0.040793143, -0.03139984, - 0.01452849, 0.010405684, 0.0037473813, -0.0625597, 0.028341105, - 0.0031476351, -0.053022817, 4.3188588e-4, -0.0062319534, 0.021101207, - -0.044530857, 0.019165713, -0.026880303, 0.020366712, -0.0120284585, - -0.0043431795, 0.0027235448, 0.026331883, 0.0074324952, -0.017198637, - 0.088232495, 7.9537823e-4, -0.024692887, -0.0062424685, -0.0053116106, - -0.026463866, -0.0023592198, 0.04805949, 0.020331372, 0.0027695706, - -0.008272903, 0.044465825, 0.03528225, 0.015349773, -0.0666509, - 0.07734322, 0.0035668612, -0.020098204, 0.054577757, -0.025154857, - -0.09263777, 0.0051938053, 0.030313002, -0.030744214, 0.038199544, - -0.0022095642, 0.039267868, 0.01367581, -0.02847945, -0.03482404, - 0.007118103, 0.017724872, -0.012890413, 0.01731321, -0.028168637, - -0.03557621, -0.01779685, -0.025531968, -0.0330631, 0.04971687, - -0.09787652, -0.0024569607, -0.0127637405, 0.041196276, 0.0108324345, - -0.021866918, 0.002797583, 0.005453178, -0.02592563, -0.027820434, - -0.032502152, -0.014828125, -0.011744319, 0.04606579, 0.005493668, - -0.04771372, -0.031545732, 0.031591043, 0.033431727, 0.006493309, - 0.052297354, 0.029948846, -0.038548198, -0.032511413, 0.02239004, - -0.052963007, 0.019554224, -0.05577279, -0.002090505, 0.0133812465, - -0.020395841, -0.03027236, -0.031080415, 0.024404505, 0.016498521, - 0.034225754, 0.0053653666, 0.010304059, 0.075876, -0.054594744, - -0.007506775, 0.036795028, -0.005842404, 0.026538702, 0.002114891, - -0.0016502641, -0.0026253657, -0.027364075, -0.004838792, 0.0057385173, - -0.04429845, -0.02592678, 0.0028687972, 0.047842246, 0.021276476, - 0.026741687, 0.015893385, -0.04487891, 0.013158911, 0.0056786677, - 0.018845411, -0.011904458, -0.024524381, 0.01484888, -2.66199e-4, - -0.012816962, -0.015556902, -0.055672057, 0.023991682, 0.014448923, - 0.016351203, -0.012105246, 0.02266319, -0.041878425, 0.010487868, - 7.252109e-4, -0.0015648981, 0.021156348, 7.621796e-4, 0.004242516, - -0.0490303, -0.030771293, -0.022442976, -3.0805785e-4, -0.08829497, - -0.021162067, 4.743911e-4, -0.045220286, -0.0020796834, 0.043363657, - 0.0118077155, -0.06932962, -0.0019700648, 0.019933663, -0.02036174, - -0.015968358, -0.005927224, 0.08626429, -0.010151525, -0.05210701, - 0.034846134, -0.0020461802, -0.020727506, 0.029528994, 0.052696522, - 0.039954834, -0.0074070212, 0.017382108, 0.026024166, 0.015852988, - 0.03338756, -0.0068713203, 0.019019749, -0.035571143, -0.10400795, - 0.0063621686, -0.0028594104, -0.021052398, 0.051192846, 0.070711, - -0.037541825, -0.06951358, -0.0024005608, 0.0021775316, 0.021381201, - 0.030477073, -0.035803422, 0.06307139, -0.0027802351, -0.031224014, - 0.03926818, 0.0036939331, 0.0016062161, -0.03176367, -0.014147289, - 0.07732226, -0.014100417, 0.042797152, -0.009182809, 0.023474453, - -0.027326783, -0.057209976, -0.015718007, -0.016933698, -4.5780052e-4, - -0.0279861, 0.015201107, -0.026149526, -0.018484809, -0.03152055, - 0.057293802, -0.046122007, -0.05854874, -0.049661696, -0.019740246, - 0.010282503, -0.03957646, 0.0416394, 0.016170742, 0.040141966, - 0.022812713, -0.027085897, -0.018375916, -0.034684025, -0.051284928, - -0.011938528, 0.050201807, 0.0047147037, 0.016980007, 0.016324995, - -0.014437641, -0.006620536, 0.00800275, -0.029419309, -0.03636126, - -0.025292624, -0.054518115, 0.02305265, 0.011321964, -0.023737958, - 0.0012938568, -0.03221679, 0.010117621, 0.038623173, 0.06758654, - -0.04201213, 0.0070648026, -0.014454905, 0.023260288, -0.00786466, - 0.015502181, 0.004256929, -0.009600182, 0.028783483, 0.044043537, - 0.007308001, 0.0012179343, -0.0716052, 0.04060569, -0.0013787069, - -0.014037591, 0.0036956784, -0.029363435, 0.025869148, -0.0055490932, - -0.0011932498, 0.02364727, -0.03508736, 0.030721763, -0.008396922, - 0.024941456, -0.0032210422, 0.07177031, 0.046193585, -0.06379342, - 0.005166724, -0.025383845, -0.04182363, 0.0108659575, 0.0014734697, - -0.044971544, 0.033861406, 0.030906294, -0.014563085, -0.025672447, - -0.0056842654, 0.022873685, -0.021925401, -0.027023902, 0.023849811, - 0.007894417, 0.05786844, -0.0113515165, -0.03120482, 0.011356996, - 0.031170433, 0.005251709, 0.038524233, -0.019696366, 0.031953827, - -0.045072805, 0.0053413906, -3.9423615e-4, 0.0025478348, -0.061639946, - 0.024259489, 0.023759075, 0.02559905, -0.0023040862, 0.010532404, - 0.06825474, 0.028949961, -0.061463807, -0.014986929, -8.68613e-5, - 0.05420888, 0.06209712, -0.03356579, -0.005626479, -0.025456114, - 0.010505836, 0.042116225, 0.084952526, -0.018681392, -0.006062643, - 0.022719864, 0.006870399, -0.027090726, -0.053981308, 0.03699821, - 0.046747126, -0.017067725, 0.0107653225, -0.020935172, -0.040547978, - 0.04881427, 0.012343181, 0.033398546, 0.007469925, -0.04639482, - 0.044555157, -0.044157874, 0.059995394, -0.011973961, -0.0031980814, - 0.048338223, -0.034863688, 0.049750905, 0.056814186, 0.030769134, - -0.05108899, -0.034619387, 0.0011586751, 0.026437044, -0.002972697, - -0.0076769325, 0.008809986, -0.018880386, 0.06117784, -0.027257457, - 0.054933865, -0.016913692, -0.0010598, 0.015833758, -0.02488842, - 0.03822066, -0.03960098, 0.03505836, -0.043260306, -0.034890626, - -7.9791574e-4, -0.041638285, -0.012301503, -0.012627547, -0.057483956, - 0.07258351, 0.0020325254, -0.003648678, -0.06818732, -0.027284738, - -0.035934694, 0.047363393, 0.021067882, -0.013949812, -0.016153663, - 0.0052331383, 0.03568633, 0.04032173, -0.02231949, 0.027694192, - 0.012073981, -0.0016155196, 0.010098311, 0.031861853, -0.017637335, - 0.019572282, -0.009888574, -0.0022473112, 0.042763975, 0.014408973, - -0.015994793, -0.039836712, -0.005686894, -0.025085459, -0.039360683, - 0.0065382067, 0.03556875, -0.039397106, -0.03628062, -0.0041844514, - 0.0055730375, -0.03031599, -0.041892663, 0.07487189, -0.009669372, - -0.004907328, -0.031377703, 0.05061595, 0.019019023, -0.04803513, - -0.016592616, 0.028069178, 0.007818197, 0.006143687, -0.02499388, - -0.023061067, -0.017551573, -0.028869148, -0.021222228, 0.0037956282, - -0.015594636, -0.03189146, 0.039223343, -0.001325894, 0.022071196, - 0.06263366, 0.045589294, -0.020769771, -0.06408337, 0.017505074, - -0.031511363, 0.010291214, 0.07899575, 0.030208264, -0.019989753, - -0.011145252, 0.018702893, 0.02031942, 0.023345608, -0.023679791, - -0.051504206, -0.061549254, 0.02438278, 0.0013153491, -0.061645493, - 0.018704414, 0.0474289, 0.015251073, 0.035069995, -0.02653255, - -0.042777494, -0.0030209422, -0.01241129, -0.037821565, -0.038456123, - -0.030382864, -0.024039928, -0.0033213433, -0.026002394, 0.048821334, - 0.0025460348, 0.007720649, 0.082924716, -0.059811633, -0.03106606, - -0.0080955075, 0.01607739, 0.022995317, -0.016314914, -0.014557433, - -0.016635235, 0.0068606497, -0.039793212, -0.017508544, 0.06366529, - -0.016342191, -0.010956185, 9.2755235e-4, -0.019286636, 0.016252056, - -0.05668607, -0.0096986545, -0.024223646, 0.0023447329, 0.034413658, - 0.047575943, -0.003496239, -0.095038526, 0.035448473, -0.014671158, - 0.010473798, 0.031493686, -0.0012533196, 0.009770133, -0.00823683, - 0.021270575, -0.0047233272, -0.01846399, -0.022502886, -0.0026065267, - 0.0028395336, -0.022756336, 0.020856291, -0.026381409, -0.021718178, - -0.020330152, -0.040162165, -0.0010518213, -0.04328928, 0.015973356 + "paletteEmbedding" : [ + -0.0026239895, + -0.016358543, + -0.0068920176, + 0.015207127, + 0.011450271, + -0.00948808, + -0.039125253, + 0.010487929, + 0.0027613211, + -0.0033639423, + 0.004626683, + 0.021768153, + 0.007216708, + 0.016511194, + -0.018313793, + -9.970202E-4, + 0.009006038, + 0.077313595, + -0.041346088, + 0.057942603, + 0.025650898, + -0.0017192456, + -0.027333472, + -0.02491972, + -3.9594914E-4, + -0.018977929, + 0.028083162, + -0.04714367, + 0.010637545, + -0.022836627, + -0.0019485921, + 0.023111152, + -0.029047366, + 0.040456697, + -0.056884512, + 0.02358029, + -0.049633186, + 0.011782889, + -0.0030312038, + -0.03397088, + -0.012886038, + -0.029188158, + 0.02892173, + 0.03017066, + 0.034234453, + 0.018329294, + -0.025564022, + -0.027635826, + -0.008800858, + -0.015754772, + 0.014079078, + 0.030988412, + -0.015695464, + 0.062623374, + -0.006626171, + 0.0660367, + 0.019154439, + -0.016782157, + -0.00496726, + 0.014834888, + -0.00913917, + 0.030781139, + 0.017428286, + 0.0011483699, + -0.018384939, + 0.02473352, + 0.016943375, + -0.016517075, + -0.008740693, + 0.01378112, + 0.052016, + -0.022241127, + -0.007076669, + 0.05839792, + 0.052252162, + -0.05878876, + -0.0028414214, + -0.04739848, + 0.032646224, + -0.042436212, + 0.015782332, + -0.01625381, + -0.0133144, + 0.020108044, + -0.011638325, + -0.01626227, + 0.028727505, + 0.031025587, + -0.010498896, + -0.04818706, + 0.008904404, + 0.015966685, + 0.022193847, + 0.0032339604, + 0.0057245134, + 0.046547033, + -0.006189536, + -0.047209896, + -0.004709821, + 0.022393445, + -0.026094714, + -0.014292424, + -0.025986593, + 0.021861231, + -0.038736757, + 0.056991156, + 0.0015744064, + -0.013057234, + -0.015178514, + -0.04300931, + -0.04860938, + -0.01196725, + 0.016115446, + 0.021338431, + 0.046869945, + -0.0020410684, + 0.01741711, + -0.017636383, + 4.1588495E-4, + 0.0112361545, + 0.005323631, + 0.036518004, + 0.028212218, + -0.006786918, + -0.011264854, + -0.0043554236, + 0.02903912, + -0.05590607, + -0.010943185, + -0.008477318, + -0.03626456, + -0.023070367, + 0.022805076, + -0.011147551, + -9.836857E-4, + 0.012248925, + -0.0096288575, + 0.06882447, + -0.011836319, + -0.0059112567, + -0.0043473383, + 0.034075737, + 0.01378057, + 0.039143004, + 0.029996576, + 0.0023923996, + -0.019719297, + 0.007618897, + 0.010153608, + -0.02902012, + -0.008652316, + -0.0014027312, + -0.06585712, + 0.0731482, + -0.039827157, + 6.909289E-5, + 0.0343125, + 0.06371781, + 0.013727415, + -0.01750674, + 0.00788549, + -0.008738809, + -0.037253708, + 0.035728905, + 0.009769335, + -0.10000604, + 0.08214843, + -0.018039994, + 0.010278747, + 0.05141723, + -0.018364951, + -0.009165936, + 0.015700193, + 7.0618914E-4, + -0.025402717, + -0.034980997, + -0.02902351, + -8.509278E-4, + 0.04110894, + -0.010342451, + -0.027826069, + -0.008365795, + -0.014362663, + -0.011948492, + -0.014220084, + 0.04337739, + -6.371011E-4, + -0.017843636, + 0.05537562, + 0.014070385, + -0.004524285, + -0.04266431, + 0.013059536, + 0.01312057, + -0.0022904112, + 0.005595796, + -0.01397329, + -0.09775191, + -0.021901192, + -0.04959148, + 0.008132928, + -0.02633734, + 0.008477212, + 0.05696438, + -0.037177816, + 0.0023035195, + 0.042374972, + 0.0316355, + -0.002151928, + 0.020074405, + 0.031175308, + -0.0064656185, + 0.019066071, + -0.037556995, + 0.017856902, + 0.004022631, + 0.017792653, + -0.014873409, + 0.017219264, + 0.06624182, + 0.041031457, + 0.007788769, + -0.015946934, + 0.025014218, + -0.041861676, + 0.032358624, + 0.013766704, + 0.028690267, + -0.020019105, + -0.01090343, + -0.0756152, + 0.017644694, + 0.05262222, + -0.016216347, + -0.01703179, + 0.048933968, + 0.025980726, + 0.011066773, + -0.006492269, + 0.056974698, + 0.049868334, + -0.027420232, + -0.012644607, + 0.03310297, + 0.009319808, + 0.023905568, + 0.009879566, + 0.0148627125, + -0.028773239, + 0.024766194, + 0.015602288, + -0.03290406, + 0.014741474, + 0.016091393, + 0.00432203, + -0.050798513, + 0.0154554695, + -0.03946632, + -0.024586905, + -0.042170685, + -0.015552933, + -0.009187557, + 0.022526901, + 0.03638893, + 0.026134884, + -0.019198898, + 0.02303961, + 0.017292626, + -0.004046254, + 0.053776324, + 0.0020332413, + 0.03738365, + 0.014572411, + -0.012344494, + 0.023090849, + -0.031772815, + -0.016922897, + 0.0097194165, + -0.017003955, + 0.03034851, + -0.0034229767, + 0.024702106, + 0.018501453, + 0.03255828, + 0.0637409, + 0.052250396, + -0.019394798, + -0.03629227, + -0.0027689992, + 0.026747657, + 0.009480819, + -0.029167812, + -0.027133148, + -0.004199952, + -0.036363978, + 0.024162581, + -0.036976155, + 0.024171492, + -0.0108818095, + 0.07982786, + -0.01684108, + -0.044541307, + -0.026715906, + 0.025053125, + 0.022464866, + 0.08318745, + -0.049130093, + 0.0020519209, + -0.015873801, + 0.040550664, + -0.050268814, + 0.06898275, + 0.01810928, + -0.0054318286, + 0.0034249176, + 0.028208153, + -0.051797766, + 0.029000232, + 0.02064757, + -0.001829579, + 0.009793921, + -0.074787475, + 0.007961961, + -0.027497722, + -0.021021817, + -0.0067542037, + 0.013563243, + -0.02625593, + -0.060612425, + 0.035936356, + -0.051477775, + -0.026387518, + -0.03237921, + -0.07750057, + 0.042798977, + 0.008989887, + 0.051104285, + 0.009149492, + -0.030020986, + 4.5972258E-5, + -0.045664433, + -0.0020994951, + 0.017834162, + 0.053999603, + -0.007500972, + -0.015341436, + -0.016461864, + 0.051192418, + 0.02507505, + 0.08544704, + 0.006029125, + 0.04107683, + -0.001059221, + -0.01963609, + -0.0018503142, + -0.0448319, + 0.0012615065, + -0.024134155, + -0.006091815, + -0.009546225, + 0.0600959, + -0.02044004, + 0.042240795, + 0.017899456, + 0.012949202, + -0.016984038, + -0.039794087, + -0.011432628, + 0.03802334, + 0.04567666, + -0.049827565, + 0.0039120773, + -0.016820028, + -0.022037497, + -0.014865001, + -0.0093332315, + -0.0066937176, + 0.09968761, + -0.0042246, + -0.04528795, + 0.009333138, + -0.034583982, + 0.014712146, + -0.013265248, + 9.592287E-4, + 2.9111565E-5, + -0.015676277, + 0.0027062967, + -0.01230159, + -0.040284637, + -0.029911652, + -0.030131115, + 0.019787773, + -0.048440818, + 0.012768475, + 0.024208834, + -0.014491302, + 0.013319735, + -0.07113112, + -0.017265804, + -0.01091161, + 0.019631917, + 0.01698364, + -8.431034E-4, + 0.03404109, + -0.057983775, + -0.013432438, + 0.019106727, + 0.03218326, + -0.044752717, + 0.022825377, + 0.04026338, + 0.021391153, + 0.026278231, + 0.0010119884, + 0.026337478, + -0.060991317, + -0.07094533, + -0.031447906, + 0.004424405, + -0.0021629727, + -0.03347023, + 0.029188, + 0.045737725, + -0.012125905, + -0.030116882, + -0.02618973, + 0.014820441, + 0.014271317, + 0.038430836, + -0.013224711, + -0.03614603, + -0.013122875, + -0.007777793, + 0.01899086, + -0.015526011, + 0.032164507, + 0.023356425, + -0.015079322, + 0.01787812, + 0.013732595, + 0.03150692, + 0.0011446784, + 0.029037286, + 0.07387671, + -0.047978096, + -0.017810116, + 0.024860745, + 0.010565599, + 0.023926105, + -0.046486918, + -0.028203053, + -0.022667857, + 0.034406286, + -0.014006331, + -0.05692236, + -0.022325726, + 0.004994671, + 0.06339852, + 0.018262519, + 0.011323918, + 0.014257947, + 0.0044137677, + 4.9636216E-4, + 0.016972857, + 0.012436826, + 0.0073542763, + -0.0055209496, + -0.03823608, + -0.0119716395, + -0.0019988993, + 0.047391653, + -0.009347607, + -0.013685549, + -0.020100426, + 0.029685535, + 0.0052089724, + -0.0014748209, + -5.527349E-4, + 0.047658555, + -0.003415357, + 0.014381442, + -0.0423588, + 0.01592667, + 0.049886055, + 0.0065295813, + 0.010044375, + -0.02349342, + 0.0013379769, + -0.009517956, + 0.023635566, + 0.00396008, + 0.020750407, + -0.017862182, + -0.0051910225, + 0.032663662, + 0.06225051, + 0.0021230679, + 0.011721028, + -0.03487918, + -0.03534743, + -0.053122446, + -0.019646324, + 0.04665397, + -0.0019965859, + 0.012577865, + -0.07163487, + 0.075057775, + 0.05387839, + 0.012066333, + -0.05058161, + 0.017452365, + 0.031560224, + -0.0028745334, + -0.052049972, + -0.0127928, + -0.023811836, + 0.027063375, + 0.020253647, + 0.040809557, + 0.010951572, + 0.026337018, + -0.016127685, + 0.0391443, + -0.045238916, + 0.03100615, + -0.0059295483, + -0.014316416, + 0.001959222, + -0.012353393, + -0.040722642, + -0.018992063, + 0.043720845, + -0.04066237, + 0.01755865, + -0.009640331, + -0.0014959942, + -0.020864133, + 4.8981566E-4, + -0.0070139477, + -0.039808244, + 0.0057773204, + 0.016030097, + 0.05096488, + 0.023273531, + -0.01722066, + 0.05355318, + 0.0032124147, + -0.06791884, + 0.04681136, + -0.037451997, + -0.010162175, + 0.038018826, + -0.012267001, + 0.012939111, + -0.05357884, + -0.003776623, + 0.014774038, + -0.06384422, + 0.037156343, + 0.041041747, + 0.029522417, + 0.074887596, + 0.021389557, + 0.046346046, + 0.009048507, + -0.058203317, + 0.037423644, + 0.020381492, + 0.0025117532, + -0.026409887, + -0.017257247, + -0.0100972755, + -0.006077871, + 0.0062577357, + -0.074284874, + -0.049285233, + -0.07678698, + -0.044681944, + 0.0049941237, + 0.03634568, + -0.007414945, + 0.008827115, + 0.05410397, + 0.034731407, + -6.7602884E-4, + -0.010882748, + -0.025455877, + 0.01660451, + -0.027693652, + -0.032292105, + -0.029910803, + 0.0071333875, + 0.021335451, + 0.004542559, + -0.017193101, + -0.010438946, + 0.030879801, + 0.080434956, + -0.0016154478, + 0.016608438, + 0.015219486, + -0.007354038, + -7.0755143E-4, + -0.027326297, + 0.045528907, + -0.021642322, + -0.03871613, + -0.027424019, + 0.016927648, + 0.019191384, + 0.051588915, + -0.049476992, + -0.027072731, + 0.006160298, + 0.0068010013, + -0.043101072, + 5.9418053E-5, + -0.022173509, + 0.007763507, + -0.004000534, + 0.07457155, + 0.021517036, + 0.016056474, + 0.021208255, + 0.025364295, + -0.004814108, + 0.0037999812, + 0.003244713, + 0.018601766, + -0.045598853, + 0.006850209, + -0.0042484435, + -0.04293166, + -0.008326533, + 5.2554137E-4, + -0.005838995, + -0.04137232, + 0.08964114, + 0.0019098393, + -0.002454912, + 0.04291881, + -0.016654072, + -0.017129704, + 0.005383487, + 0.010947614, + -0.023135288, + -0.01894502, + -0.046129994, + 0.005962084, + -0.003260351, + 0.042633127, + 0.019419799, + -0.053772293, + -0.03273378, + 0.06080036, + -0.03160288, + 0.0013810275, + -0.04250245, + 0.03321191, + -0.01242296, + 0.023908487, + 0.034617167, + 0.047912788, + -0.01943431, + 0.01174462, + -0.031946994, + 0.06405803, + -0.030280104, + 0.027643245, + -4.3805977E-4, + -0.055153023, + -0.025776058, + -6.871318E-4, + 0.0078950105, + -0.014604041, + 0.031569757, + -0.04739915, + -0.002760114, + 0.05381929, + 0.0069823023, + -0.026361927, + 0.04336588, + 0.031451076, + -0.04251337, + 0.04423689, + 0.017894616, + 0.07120249, + -0.01682024, + -0.04842625, + -0.0059817145, + -6.7551766E-5, + -0.036630236, + -0.031523556, + 0.008349307, + -0.030612119, + 0.013220262, + -0.010873675, + -0.01194394, + -0.011174045, + 0.0109985685, + -0.023670767, + -0.03235188, + -0.030761464, + 0.013241866, + -0.03577361, + 0.018250722, + -0.008940818, + 0.005245744, + 0.043561384, + -0.009583401, + 0.07244056, + -0.014201204, + 0.012885325, + 0.027486, + 0.002399464, + -0.0083371475, + -0.010747751, + 0.029937629, + -0.030214481, + -0.024447484, + -0.005660163, + 0.016763238, + 0.0012463673, + -0.010446975, + 0.0055862665, + 0.028693458, + 0.04268472, + 0.054478157, + -0.0044267895, + 0.028780812, + 0.009586155, + 0.038786117, + -0.042946354, + 0.027008416, + -0.030712198, + -0.010446199, + -0.0042445883, + 0.03036614, + 9.387176E-4, + -0.0027132821, + 0.03608217, + 0.044480722, + 2.9469677E-4, + -0.01068735, + 0.01773822, + 0.059664745, + -0.028952973, + -0.04190687, + 0.04002405, + -0.02567601, + 0.05199722, + 0.007981701, + -0.036478143, + 0.04247025, + -0.010090544, + -0.04649527, + 0.069732994, + 0.021794107, + -0.005016321, + 1.15770374E-4, + 0.010900715, + -0.005949625, + -0.010091544, + 0.0021701332, + -0.06507037, + 0.0031542701, + 0.023464292, + -0.03905201, + -0.045455497, + 0.026747439, + 0.032905217, + -0.05414853, + -0.020298732, + -0.02805482, + 0.066044986, + 0.028911415, + 0.009123574, + -0.009761779, + -0.016689083, + -0.066284865, + -0.01416389, + 0.015363306, + -0.0055221366, + 0.039369665, + -0.02160763, + -0.030073991, + 0.036732297, + 0.04002843, + 0.0022030757, + -0.0049389354, + -0.016338026, + -0.007236655, + -0.019289717, + -0.016188115, + -0.0020787579, + 0.027283767, + -0.025425652, + -0.03462179, + 0.023552414, + -0.00827312, + -0.014794274, + 0.030772625, + -0.053007435, + 0.022785304, + 0.012702924, + -0.023614937, + -0.0039919824, + 0.0045854244, + -0.036104813, + -0.0058243657, + -0.01912775, + 0.061376482, + 0.02309142, + -0.05626164, + 0.021234874, + -0.029897852, + 0.022414336, + -0.013729836, + 0.026716685, + -0.029245412, + -0.0698465, + -0.02936043, + -0.03136944, + 0.026290942, + -0.06435113, + 0.03905491, + 0.012635879, + 0.0127297975, + 0.008781546, + 0.021126008, + -0.025190549, + -0.0628445, + 0.0018312343, + 0.0046820184, + -0.014236022, + -0.014105736, + -7.639258E-4, + 0.0010544087, + -0.029524766, + -0.047702152, + 0.014585724, + 0.036398053, + -0.04980953, + -0.017598316, + 0.012356594, + -0.045422368, + -0.040067106, + -0.052178312, + 0.013738266, + -0.05022897, + 0.06673315, + -0.029385712, + 0.002643637, + -0.03691049, + -0.010034126, + -0.03362413, + -0.009520056, + -0.031453107, + -0.0035943547, + 0.024865324, + -0.0078016412, + -0.031379126, + 2.261691E-4, + 0.044911277, + 0.017557163, + 0.024043655, + -0.03639883, + -0.002163717, + -0.007370049, + 0.04828217, + -0.0028730347, + 0.032338407, + 0.00626099, + -0.065952405, + -0.036020543, + -0.015511376, + -0.015125865, + -0.021692893, + -0.003707809, + -0.035862587, + 0.009535196, + 0.059321456, + -0.012841515, + -0.0020026448, + 0.047576595, + 0.031314984, + -0.033477474, + -0.016788468, + -0.009546938, + 0.006573426, + 0.019840034, + 0.027504915, + 0.0063896524, + 0.015501517, + -0.040082917, + -0.04412801, + 0.0154113965, + -0.004129564, + -0.065300405, + -0.038669556, + -0.03862723, + -0.036812223, + 0.025312133, + 0.03876911, + -0.0042949966, + -0.026531808, + 0.01177933, + -0.042567924, + 0.020674435, + -0.051217817, + 0.03912922, + 0.009829418, + 0.055858232, + -0.009649571, + -0.032509085, + -0.0309851, + 0.019168265, + 0.0017331254, + 0.047727708, + -0.025744192, + -0.044802837, + -0.04080844, + -0.013610686, + 0.039226755, + -0.033532925, + 0.0058147097, + 9.709577E-4, + 0.09000875, + 0.028172437, + -0.029483166, + -0.012426237, + -0.050731447, + -0.006864728, + -0.007850583, + -0.008460529, + 0.033914667, + -0.0053219553, + -0.014445986, + 0.010859604, + -0.053458344, + 0.012998048, + -0.0438895, + 0.0044649034, + 0.043458078, + 0.07107765, + 0.038958423, + -0.0040106988, + 0.02167478, + 0.05604218, + -0.035248116, + 0.032429967, + -0.030883763, + -0.026006158, + -0.046953466, + 0.007418011, + -0.043044627, + -0.02994242, + -0.0029898614, + -0.022554854, + 0.059336174, + -0.0012057675, + 0.023494253, + 0.031378783, + -0.04968797, + -0.0010971288, + -0.0075660213, + 0.009933433, + 0.02324159, + 0.01769901, + 0.016973605, + 0.0061938646, + -0.0052313046, + 0.043627806, + 0.05558167, + 0.001996167, + -0.0713301, + 0.028975109, + 0.056651846, + 0.09001187, + -0.034745604, + -0.019949451, + 0.019896872, + -0.028664548, + 0.03848187, + 0.002318164, + -0.062833905, + -0.015589529, + 0.016670972, + 0.011447411, + 0.03793778, + 0.004211302, + 0.006271512, + 0.02721116, + -0.038761757, + -0.032021414, + 0.03902462, + 0.052231602, + -0.029569939, + -0.042300895 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json b/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json index 6204f9a1a..aa3994860 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json +++ b/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json @@ -1,1356 +1,5268 @@ { - "description": "images with different subjects", - "createdAt": "2023-11-21T14:25:44.284918Z", - "id": "30p2xtsf", - "document": { - "modifiedTime": "1984-03-03T23:20:51Z", - "display": { - "id": "30p2xtsf", - "thumbnail": { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "description" : "images with different subjects", + "createdAt" : "2024-11-14T14:37:56.569804Z", + "id" : "uiooocyh", + "document" : { + "modifiedTime" : "1937-08-06T16:15:53Z", + "display" : { + "id" : "uiooocyh", + "thumbnail" : { + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/qPE.jpg/info.json", - "credit": "Credit line: 59X5g8", - "linkText": "Link text: gd5Q5d", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", + "linkText" : "Link text: T2JFX6mG", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/qPE.jpg/info.json", - "credit": "Credit line: 59X5g8", - "linkText": "Link text: gd5Q5d", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", + "linkText" : "Link text: T2JFX6mG", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "aspectRatio": 0.16625082, - "averageColor": "#16B67D", - "source": { - "id": "fe68jiln", - "title": "title-XgpEjgSCnz", - "contributors": [], - "languages": [], - "genres": [], - "subjects": [ + "aspectRatio" : 0.38759995, + "averageColor" : "#95EC64", + "source" : { + "id" : "ogklj6ac", + "title" : "title-4wqzKQH3tC", + "contributors" : [ + ], + "languages" : [ + ], + "genres" : [ + ], + "subjects" : [ { - "label": "Squashed squirrels", - "concepts": [], - "type": "Subject" + "label" : "Squashed squirrels", + "concepts" : [ + ], + "type" : "Subject" }, { - "id": "subject1", - "label": "Simple screwdrivers", - "concepts": [], - "type": "Subject" + "id" : "subject1", + "label" : "Simple screwdrivers", + "concepts" : [ + ], + "type" : "Subject" } ], - "type": "Work" + "type" : "Work" }, - "type": "Image" + "type" : "Image" }, - "query": { - "id": "30p2xtsf", - "source": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "fe68jiln", - "sourceIdentifier.value": "FsMepHUXb0", - "identifiers.value": ["FsMepHUXb0"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-XgpEjgSCnz" + "query" : { + "id" : "uiooocyh", + "source" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ogklj6ac", + "sourceIdentifier.value" : "tosPIwbBKS", + "identifiers.value" : [ + "tosPIwbBKS" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-4wqzKQH3tC" } }, - "aggregatableValues": { - "locations.license": [], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.subjects.label": [ + "aggregatableValues" : { + "locations.license" : [ + ], + "source.contributors.agent.label" : [ + ], + "source.genres.label" : [ + ], + "source.subjects.label" : [ "{\"label\":\"Squashed squirrels\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues": { - "locations.license.id": ["cc-by"], - "source.contributors.agent.label": [], - "source.genres.label": [], - "source.genres.concepts.id": [], - "source.subjects.label": ["Squashed squirrels", "Simple screwdrivers"], - "source.production.dates.range.from": [] - }, - "vectorValues": { - "features1": [ - 0.03767888, 0.007572297, 0.0056481087, 0.0016552991, -0.01040766, - -0.006013262, 0.0026959279, -0.0029789568, 0.009705752, -0.010111406, - 3.5783526e-4, -0.025655353, 0.014667682, -0.011740322, 0.010747918, - -0.006087957, -0.021473335, 0.0071890485, -0.01379841, 0.011810298, - -0.016945014, -0.03138283, -0.013147655, 0.026035978, 0.011533093, - -0.014003111, 0.002953487, 0.023856848, 0.012864744, 0.013663951, - -0.0027537965, -0.018747909, -0.007614668, -0.017418614, 0.0073175626, - -0.012851603, -0.02808527, -0.014220031, -0.01654158, -0.015126324, - -0.020171138, 0.0029350773, 0.027802723, -0.011652863, -0.010104103, - -5.129959e-4, -0.011658212, 0.004679244, -0.0076142186, 0.015820796, - -0.007614002, -0.023458427, -0.026040617, 0.007314202, 0.0015927891, - -0.00454524, -0.020785192, 0.02315574, 0.009623209, -0.028880285, - 0.02679915, -0.0026810232, -0.006986726, 0.026342552, 0.01878776, - -0.0041661127, 0.016312711, 0.015652433, 0.003748101, -0.002952905, - 0.010953779, -0.0076466934, 0.005119929, 0.031212918, 0.040838107, - -0.026586425, 3.7815364e-4, 0.015470245, 0.0069345664, 6.57901e-4, - 0.0021228273, 0.0041485066, 0.033573717, -0.005271645, -0.0032405595, - 0.031473093, -0.005414005, 0.0078873625, 0.015939578, -0.015912423, - 5.9346674e-4, 0.0053810203, -0.01038865, -0.009535978, -0.0098359585, - -0.017432965, -0.019841209, -0.007288993, -0.03237857, 0.027319489, - -0.020202378, 0.014427677, -0.01021261, 0.011526802, 0.01098454, - 0.0025609406, -0.030567864, -0.017366868, 0.028080616, -0.0040990314, - -0.0034199057, 0.012008922, 0.019579595, -0.0294528, -0.0021393043, - -0.017433682, -0.0029320063, -0.0052807312, -3.350219e-4, -0.020952625, - 0.014996918, -0.003972145, -0.03155085, -0.010186765, 0.012464928, - -0.013965798, -0.019392034, -0.021920875, -0.020568458, -0.0062496825, - -0.011408429, 0.01684589, 0.0119866505, -0.0036078393, 0.024128033, - -0.01169034, -0.022642916, 0.012289504, 0.010682397, 6.1856245e-4, - 1.8676075e-4, -0.0072120246, -0.017653188, -0.019258862, 0.016568864, - 0.005129188, 0.003727171, -2.8037856e-4, 0.0074796, -0.0019618396, - -0.0024992267, -0.009435056, 0.010352297, 0.018284552, -0.0025397358, - -0.005819106, 0.006972616, 0.005790522, -0.003939925, -0.0014838774, - -0.013952827, -0.012580836, 0.03270605, 0.021332309, -0.0011241422, - -0.0033964862, 0.017809592, 0.018746007, 0.026268352, 0.0058291913, - -0.0013693158, -0.04062246, 0.005430979, 0.005899794, 0.0055852868, - 0.0013397081, -0.023394924, 0.011570372, 0.0043863547, -0.0038951952, - -0.0064883884, 0.013798295, 0.0086142225, 0.0038769292, 0.003217237, - 0.04034407, -0.017562121, -0.012742652, -0.016513286, -0.021806488, - -0.015092495, -0.016550196, -0.021410681, 0.008277034, 0.04413372, - 0.0055906, 0.02947264, 0.0027172833, 0.012058444, -0.0053977314, - -0.015662292, 0.02359199, -0.0077121016, -3.874785e-4, -0.01086256, - 0.0013698543, -0.0041936217, -0.013679244, 0.025625857, 0.025700513, - 5.861919e-4, 0.004580257, 0.0012193931, 0.0031062418, -0.00905039, - 0.0018416623, 0.008421049, -0.0043040304, -0.020906694, 0.0012609577, - -0.03551964, 0.011243035, -0.0034610557, -0.01630733, 0.03126987, - 0.0032870981, 0.0026314568, 0.0064907144, -0.0046448084, 0.010112803, - -0.003990362, -0.0012376285, 0.0030531173, 0.013997169, 0.017487172, - 2.37042e-4, 0.016628318, 0.041071884, 0.0012805751, -0.0046294443, - 0.015121501, 0.014548992, 0.0024991415, 0.025861772, 0.0067615076, - 0.009684201, 0.0018880521, 0.004072961, 0.010582469, 0.008736473, - 0.021949938, -7.59994e-4, 0.00891846, 0.011562973, -0.012055559, - 0.017272584, 0.003817058, 0.009388155, 0.010811024, 0.010709166, - 0.014187182, -0.005472942, -0.017834952, -2.948169e-4, -0.004857633, - -0.0030614797, 0.007761701, -0.009652837, 0.0043055634, 0.010874894, - 0.007194978, 0.0012915159, 0.017217115, 0.021634594, -0.0023853304, - -0.002888005, -0.0061553833, -0.017024998, 9.380699e-4, -0.054342825, - 0.0015018722, 0.0036099823, 0.005061713, -0.013085458, -0.020905038, - -0.0068605314, 0.023165235, 0.012880682, -0.00968496, -0.0064321538, - 0.0044409577, -0.0058933534, -0.012592384, 0.010149075, 0.0011528018, - -0.019656984, -0.0016677757, -0.011796825, 0.0018680352, -0.014171745, - 0.006231848, -0.02727669, 0.003952057, -0.020625433, 0.015385037, - -0.0010621689, 0.01751471, -5.3690386e-4, 0.0025746129, 0.020218944, - 0.017887766, -0.009904027, 0.012640894, 0.018964063, -0.0057451576, - -0.014446714, 0.007024519, -0.0025539645, 4.960913e-4, -0.004438598, - -0.0140684685, -0.00362119, -9.6150086e-4, 0.0051988396, 0.008759581, - 0.009276652, -0.0013800258, -0.009415418, 0.003266285, -0.02104736, - -0.0051554623, 0.0019340335, 0.0052513215, -0.012761754, -0.025977395, - 0.007602944, -0.0035266452, -0.0490246, -0.003992565, 0.004023198, - 0.0012114138, -0.013427429, 0.02556308, -0.007022092, -0.014788127, - -0.025029037, -0.009507579, 0.0012799698, 0.015104619, 0.0076930225, - 0.013386566, -0.014967052, -0.019567156, -0.016473394, 0.004763882, - 0.0036491256, 7.7623746e-4, -0.016557455, -0.0012504206, -0.012306965, - 0.009688535, 0.023943534, 0.010741394, -0.0036593915, -0.012416628, - 0.015144802, -0.011327462, 0.023921601, 0.024303205, 0.022193924, - 0.012117549, 0.0070424033, -0.033017565, 0.0035825975, 0.017226003, - -0.009731098, 0.012157331, 0.030128947, -0.0049090697, 0.00428512, - -0.0084485235, -0.024797408, 0.00401314, -0.024617173, 0.012303297, - 0.0050508273, 0.018866299, -0.017003821, -0.0037156928, -0.002241487, - 0.0041050445, -0.002807616, -0.016378822, -0.0126232635, 0.006314603, - 0.013390245, -0.002587866, 0.03164301, -0.007957065, -0.031162255, - -0.0053713717, 0.02733135, -0.0034991342, -0.017402899, 0.028906317, - 0.009140365, -0.025059514, -0.0075406455, 0.0051129484, 0.008715343, - 8.460931e-4, 0.024558071, 0.008390846, -0.01007134, 0.0055408445, - 0.018118156, 0.011039579, 0.020610698, 0.029216805, -0.016500395, - -0.0038965526, -0.016046504, -0.0036039155, -0.0027734933, 0.014385209, - 0.0104631055, 0.0019712711, 0.020123037, 0.009133897, 0.0098922895, - -0.020650204, -0.0072534787, -0.007985512, -0.01500525, 0.0028010304, - -0.009432719, -0.0047507356, -0.032427885, -0.005635917, 0.0025105488, - -0.003455967, 0.014343116, -0.022565123, 0.0059344186, -0.006991066, - -6.5849116e-4, -0.0050143846, -0.001640876, -0.015683137, 0.003662789, - -0.0020042737, 0.006063892, -0.013345154, -0.015077112, 0.01606499, - -0.013065333, 0.015999567, -0.010983932, -0.0034409768, 0.011202339, - 0.009343421, 0.013498849, -0.0055021388, 0.0077280113, -0.0020815108, - -0.009101423, -0.008560026, 4.243061e-4, 0.0037694003, 0.0040614307, - -0.012471126, 0.011743094, -0.009519524, -0.008968785, -0.0044133198, - 0.0059450762, 0.009735482, 1.2011997e-4, 0.0023738113, -3.0192858e-4, - 0.029804954, -0.027685706, -0.012304296, 0.0067568836, 0.005934373, - 0.0066808076, -0.021018278, 0.0063999756, -0.018963415, -4.792579e-4, - -7.87938e-4, -0.0037539403, -0.0133725535, -0.0046330676, -0.007871967, - 0.015969757, 0.010073541, 0.014161008, 0.026326334, 0.026587682, - 0.025872434, 0.02682259, -0.0038604338, 0.0046940674, -0.0030863003, - -0.0076464573, -0.011210289, -0.016295938, 0.037891727, 0.0322386, - 3.8370097e-4, 0.005556158, -0.0116865095, -0.019449184, -0.014142841, - -7.008352e-4, -0.0036969746, 0.004405651, 0.0062020742, 0.013749631, - 0.010145426, 0.016094362, -0.009277379, 0.013114007, -0.033941735, - 0.0033313632, -3.164994e-4, 0.027100982, -0.010428196, 0.009490485, - 0.008798865, 0.008584076, 0.018532813, -9.463533e-4, 0.018414441, - 0.0086265635, -0.0018391808, -0.022159727, -0.0021016127, 0.0050473744, - -0.0019563178, -0.038264178, 0.0060709966, 0.006789432, 0.0014906611, - 3.872364e-4, 0.022904724, 0.029388992, -0.012276594, 0.0077279974, - 4.6399317e-4, -0.017706364, -0.01994588, -4.912341e-4, 0.011997003, - -0.003594008, -0.0040577883, -0.0015735131, -0.032772694, -1.6714874e-4, - -0.026606768, -0.018812425, 0.0075572575, 0.019934015, -0.012518445, - 0.041055858, -0.013245153, -0.042027347, 0.01669245, 3.385792e-4, - 0.0056146113, -0.006361111, -0.008797523, 0.0036445975, -0.018866038, - 0.0069701313, -0.009630533, -0.026061019, -0.026104845, -9.983935e-4, - -0.010035056, -0.017914662, -0.0014331228, -0.008309193, -0.008151387, - -0.01155594, -0.004611934, 0.011694159, -0.0061747776, 0.0059577683, - 0.004954883, -0.0192226, 0.0069893617, -0.0060466877, -0.013649141, - 0.0023785434, -0.0044728452, 0.0014848369, -0.021739049, -0.012393817, - -0.007036641, 0.0030742493, -0.015454803, 0.014651238, 0.013093871, - 0.0039137406, -0.011856246, 0.0010118095, -4.943251e-4, 0.01610311, - -0.02221936, 0.019916797, 0.014390291, -1.9099125e-4, -0.010904919, - -0.014805279, 0.004906865, 0.006194748, 0.010652872, 0.017932873, - -0.009525758, -0.011229377, -0.0015052789, -7.6786894e-4, -7.730473e-4, - -0.0054564863, -0.019800607, -0.014203732, 0.015850404, -0.010904185, - -0.0030314566, 0.008823697, -0.011664022, 0.005161738, -0.00236639, - 0.01136416, -0.009501361, -0.008869936, 0.00911427, 0.0110124545, - -0.009656061, -0.00355908, 0.022097902, 0.008071188, 0.004970533, - -0.018693004, 0.007707867, -0.020471748, -0.0045737927, 0.008642859, - 0.0055750534, -0.022232478, 0.024813237, -0.004720036, -0.01422903, - 0.0038912026, 0.0027222813, -0.0017150815, 0.022713171, -0.00454723, - -0.014603805, 0.017199492, -0.0027252357, -0.008007463, 0.0247321, - 0.020350643, -0.021156553, -0.012860352, 0.0023880913, -0.013192341, - -0.013277367, 0.015711542, 0.004409241, -0.043007575, 0.019506529, - 0.010457096, -0.011848259, -0.010804799, -0.0066277897, 0.013667286, - 0.021377055, -0.0014488919, 0.011373017, 0.026376314, -0.005237708, - -0.019711511, 0.007025189, -0.028545393, -0.026982104, 0.015291789, - -0.0043697516, -0.0074859126, -0.0032139164, -0.02313263, -0.010358369, - 0.026471375, 0.021629836, 0.0025641264, -1.9160606e-4, 0.013976394, - 0.005651284, -0.019765647, 0.008107268, -0.03582082, 0.007321525, - 0.031492908, -0.00324385, 0.00750384, -0.025065387, 0.012463256, - 0.006841398, 0.011918312, -2.846836e-4, 0.018202506, 0.0022194132, - -0.022096347, 0.007160014, 0.020614497, -0.01616664, 0.011919705, - -0.011062322, 2.0061631e-4, -0.003237408, 0.001923136, -0.0119222365, - -0.0013197112, -0.024955621, -0.003192658, -0.0077743176, 0.007849764, - -9.042275e-4, -0.009423125, -0.0028552816, 0.007854391, -0.0118529415, - 0.011927297, -0.0064766547, -0.0028422133, 0.019817539, -0.0168292, - 0.015330072, -0.016272174, -0.0014160562, 0.005283122, -8.979955e-4, - 0.013252552, 0.013506755, 0.018759098, -0.0010847998, -0.03132972, - 9.785112e-4, 0.0016321872, -0.016430832, 0.015297528, -0.0029483181, - 0.01175558, 0.023126632, -0.02637451, 0.011639611, -0.020695113, - 4.4488482e-4, 0.004449261, 0.029950723, 0.014940326, -0.017844073, - -0.0161723, 0.040162127, 0.0093610305, 9.973808e-4, 0.038807612, - -0.03316325, 0.016292404, -0.017422551, 2.0413929e-5, 0.003360968, - 0.005038358, 2.2744454e-4, -0.0054398333, 0.008823602, -0.015106127, - -0.0046322965, 0.003198728, 0.0105285505, -0.0057370444, 0.022965316, - 0.024459997, -9.992082e-4, 0.0037023507, 6.6119264e-4, -0.0026335658, - 0.008369244, 0.004557448, -0.003762873, -0.006622176, 0.010666665, - 0.034982305, -0.01619955, -0.0010608797, 0.026064986, 0.027500734, - 0.015200476, 0.023679463, -0.0063996897, -0.0100089805, -0.0016653169, - 0.015724685, 7.999649e-4, 1.1704464e-5, 0.01964331, -0.0054673087, - 0.013101441, -0.0040090703, 0.020014256, -0.015840843, 0.020643288, - -0.0019677798, -0.010655506, 0.006417525, 0.017022077, -0.0017058755, - -0.0016005059, -0.010561453, 0.0032841847, -0.018001737, 0.027602656, - 0.011124542, 0.015888747, -0.012675628, -0.0036937844, 0.0013502528, - -0.0071306615, -0.011085835, -0.0070727295, -4.4919725e-4, -0.009446454, - -0.006818424, -0.006554009, -0.016245538, -0.008592714, 0.013302998, - 0.021482391, -2.2328597e-4, -0.048760824, 0.0042261584, -0.01763794, - -0.0143575305, -0.020850368, 0.008080138, -0.008665011, 0.011617519, - -0.022576017, -0.006144795, 0.0039925203, 0.008138889, -0.014759565, - 0.050270468, 0.020294785, 0.039941877, 0.0025848565, -0.0010251878, - 0.019302398, -0.0034415913, -7.315003e-4, -0.009603847, 0.007559919, - -0.017814308, 0.0033745551, 0.0070091053, 0.0011074782, 0.013601292, - -0.023478646, -0.011106194, -0.0056006606, 0.016783752, -0.007883801, - -0.0015909063, -0.0036909713, -0.013748434, 0.0061552264, -0.0024544827, - -8.6287555e-4, 0.015409003, 0.006503866, 0.0029478918, 0.025653135, - 0.0045350464, -0.021037016, -0.004639407, -0.020548617, 0.013175267, - 0.0030467496, 0.029248629, -0.0038570564, -5.1109307e-4, 0.039586145, - -2.5342184e-4, 0.015429211, 0.025521746, 0.0011190908, -0.008725347, - -0.007995374, 0.01082887, -0.009680828, 0.026781999, -0.0048082657, - 0.027256548, 0.031584952, -0.013006697, -0.0029956498, 0.007006193, - 0.039596405, -0.01729156, 0.018579282, 0.030104423, 0.015739668, - 0.0045155124, -0.012244575, -4.2492466e-4, 0.0075313244, -0.01439711, - -0.012820491, 0.034929145, -0.0017085436, 0.016966786, 0.020588513, - -0.011909644, -2.860427e-4, -0.0012920102, 0.018951448, 0.0012087162, - -0.015277927, 0.012201622, -0.0045921425, 0.006409782, 0.013274024, - 0.02609127, 0.021193217, 0.002240268, 0.010791366, 0.017515503, - -0.0020983857, -0.015257033, -0.026375424, 0.021298118, 0.005157641, - -0.01305136, 0.036093816, -0.008839164, 0.025569353, 0.016744351, - 0.03132334, 0.005046572, 0.011344217, -0.021408545, -2.735405e-4, - -0.006111747, 0.0081659295, 0.016810285, -0.0039700177, 0.0038942466, - -0.028251983, -0.023679042, 0.011701397, -0.008531736, -0.014490589, - -0.023100395, 0.02014519, -0.028431987, 0.006999284, 0.021426002, - 0.004803344, -0.011397056, -0.0063905753, 0.043393284, 0.0053834496, - -0.01664213, 0.0038911821, 0.022290822, -0.012438863, -0.002071303, - 8.9786755e-4, 6.4377725e-4, -0.0025638815, -0.006219849, -0.011113561, - 0.01956294, 0.013359349, -0.0017376458, -0.0018502794, -0.0068732095, - 0.0010384877, -0.03630309, -0.007592768, 0.024189856, -0.0148025965, - 0.0047773807, -0.0016796427, 0.011738297, -0.0026491666, 0.026185876, - -0.011053442, 0.038063027, 0.018855218, 0.011907054, 0.0072358116, - -0.009262295, -0.0070343665, 0.0058402317, -0.01069655, -7.1987015e-4, - -0.0115126595, 0.019447645, -0.018777642, 5.661521e-4, -0.0030391244, - -0.006077044, -0.02520198, 0.0121367825, -0.00493046, -1.982502e-4, - -0.003766554, -0.0108749755, -0.017857693, -0.014104089, 0.00430779, - 0.016299915, -0.02048145, 9.3904295e-4, 0.016067352, 1.15661365e-4, - -0.0014435052, -0.006895852, 0.007091284, 0.011219334, 0.004673606, - -0.026177974, -0.013007965, 0.008914401, -0.004801212, -0.0134052085, - -0.012143463, -0.016531348, 0.031526517, -0.010798402, -0.008029295, - -0.021856925, 0.03587207, -0.0036862632, 0.01607449, -0.01925131, - -0.011198444, 0.0070182993, 0.009329474, 0.005586791, 0.01759994, - -0.018578077, 0.002565132, -0.016478881, 0.0026669668, 0.0010015019, - 0.010379474, 0.029676378, 0.013165162, 0.008375827, 0.026332278, - -0.014180328, -0.0034806477, -0.0014456755, -0.004329307, -0.0041535012, - -0.04169125, 5.328137e-4, -0.0061811875, -0.0025810753, -0.0039665215, - 0.007460731, -1.5000241e-4, 0.0013182817, -0.013493275, -0.0061127236, - -0.025205025, 0.0026657039, -0.009387819, 0.019852534, -0.013008458, - -0.005290217, -0.0131905945, -0.0048510307, -0.036825795, 6.648107e-4, - 0.01099132, 0.0115329325, -0.010945909, 0.034125388, -0.036083404, - -0.013941304, -0.00317415, 0.0014002047, -0.010182801, -0.015838671, - -0.005940343, 0.009232149, -0.014227482, -0.0041078012, 0.0030263534, - -0.008249834, -0.016253572, 0.0040903543, -0.012245379, 0.0073036035, - 0.013094891, -0.021274284, 0.0053629084, 0.008659443, 0.033085376, - -0.009681426, 0.016613621, -0.022724409, 0.0044743796, 0.001224831, - -0.012618337, 0.0144629935, -0.008446865, 0.005265446, -0.018644454, - -0.014736102, 0.0032986614, 0.017747339, 0.00832085, -0.0033201354, - 0.018548004, -0.008178547, 0.026143834, -0.010522622, 0.028142065, - -0.0056553185, -0.013696826, 0.02417758, 0.006991171, 0.010820389, - -0.0038821993, 0.013135254, 0.012650185, -0.0026892207, -0.012790642, - -0.0076486734, 0.0014185624, -0.04194199, 1.4061964e-4, -0.02294265, - -0.008456615, -0.018694056, 0.01264118, -0.01224305, 0.038534977, - -0.01053245, -0.021523053, -0.002407427, 0.012416022, -0.014760324, - 0.00815584, -0.028366879, 0.005965236, -7.012545e-4, -0.0029404638, - -0.009983574, -0.011220284, -0.016630972, -0.0060586333, 0.0065676994, - -0.04534293, -0.004782031, 0.021827525, -0.016927639, 0.028590914, - -0.0098501565, -0.013449598, 8.850859e-4, -0.029461652, 0.031904433, - 0.004574432, 0.0035110428, -0.016675126, -0.0040433975, -0.014314261, - 0.02740993, 0.012877874, 0.0012165391, -0.006727698, -0.013311366, - -0.017887194, -0.014452012, -0.01702351, 0.029234555, -0.012425949, - -0.013170319, -0.0039527155, 0.0048568905, -0.02362114, -0.0024797628, - 0.0075178207, -0.01702677, 0.015566252, -0.013188768, -0.012188053, - -0.024025349, -0.0068225437, -0.008065788, -0.018453129, -0.01701765, - -6.055478e-4, -0.004867239, -0.013336316, -8.237209e-5, 0.0010723007, - 0.03174544, 5.807038e-4, -0.02485501, -0.010241106, -0.02544884, - -0.012191191, -0.021300541, -0.0017683876, 0.0018765585, 0.010629512, - -0.006085884, -0.0053765993, -0.025884442, 0.0035527244, -0.016863704, - 0.0201293, 0.007693725, 0.019205268, -0.008104739, -0.011733017, - -0.0036181912, 0.014890639, -0.030398931, 0.0042896993, 0.017906034, - 0.029715337, 0.016106289, -0.013464267, 0.0039003585, 0.012264276, - -0.008444822, -0.014699, 0.03297191, 0.008884169, 0.030824162, - 0.019870402, -0.034322757, 0.020747075, 0.021975523, 0.008023274, - 0.0029091742, -0.01612153, 0.012714599, 9.7473554e-4, 0.010151181, - -0.013768795, -0.042544145, 0.015458976, -0.02374875, 0.009494523, - -0.01783601, -0.01127065, 0.01107926, -0.0032280236, 0.018217206, - 0.01511454, -0.00811059, 0.006186085, -0.0068101846, 0.008883156, - -0.02903753, 0.00410775, -0.008926171, 0.0064327735, 0.012341755, - -0.03211054, -0.008259325, 0.013577218, 0.0033510735, 0.0076721516, - -0.0061523896, -0.014805933, 0.0044266917, -0.012111985, 0.0047538844, - 0.0382889, -0.0053928993, -0.025641778, -0.016163912, 0.011596251, - 0.0029004847, -0.006699045, -0.004598891, -0.02108895, -0.002611014, - -0.013616835, 0.011517379, -0.02181662, -0.019285575, -0.0049819765, - -0.005433821, 0.012064321, -0.023354381, -0.022776904, -0.021618197, - -0.030066533, -0.022973439, 0.0064717946, -0.035425957, 0.0052561597, - 0.0050021736, -0.021136042, 0.012379439, 0.0049823807, 0.023409309, - -0.0153043745, -0.03472166, 0.0040413504, -0.026893478, -0.031365562, - -0.044784587, -0.01383749, 0.0055929264, -7.231379e-4, -0.02581204, - -0.0049046306, 0.026266476, -0.030761447, 0.001239436, -9.7063766e-4, - -0.019944513, -0.031107318, 0.019787697, -0.011724693, -0.0072150505, - -0.0079260245, 0.025858216, 0.007898506, 0.01763563, -0.0035761334, - 0.01951016, 0.013134762, 0.0049398406, -0.015203489, -0.019666623, - -0.019537885, -0.030894531, 0.011579135, 0.013606536, 0.02160068, - 0.018321615, -0.009891447, 0.026078593, -0.006756937, 0.018848676, - -0.026945896, -0.00452266, 0.028322222, 0.027205186, 0.018545888, - 0.01654157, -0.004934648, -0.0029408017, -0.0017660036, 0.002140493, - 0.0072710854, -0.011656162, -0.03162985, -0.0041967216, 0.002748855, - 0.012175911, 0.016533505, 0.017770467, -0.0064564566, 8.168615e-4, - -2.8624176e-4, 0.009491965, 0.031211928, 0.002312005, -0.002092769, - 0.0042534634, 0.013401481, 0.006752489, 0.022326631, 0.011700645, - 0.0151634775, 0.008994744, -0.015843991, 6.844405e-4, -0.0034428812, - -0.0255573, 0.0066090855, -0.011003158, -0.0057333075, -0.026233444, - 0.009172021, 0.015528154, 0.004895335, 0.012387868, -0.008641323, - 0.028497567, 0.009381116, -0.01030829, 0.008776797, 0.0028322039, - 0.008465743, 0.016394217, -0.0033222232, 0.023979167, -0.0018683986, - 0.017370962, -0.016849902, 0.002430957, -0.031988647, -0.0032707928, - -0.02926758, 0.012394934, 4.134933e-5, -0.01759944, -0.026871199, - -6.66672e-4, -0.030029822, -0.024810696, -0.017542904, 0.013736707, - -0.029573627, 0.020227611, -0.030009553, -0.002989474, -0.02733385, - 0.018542191, -0.013989491, 0.010343684, -0.0012244176, 0.014260905, - 0.028205788, -0.0018415174, -0.0031199914, 0.015519178, 0.0033378394, - 0.013659828, -0.005625694, 0.0034123687, 4.5826266e-4, 0.004535396, - 0.0030633027, 0.03670337, 0.010873019, 0.027858313, -0.018990865, - 0.027281815, -0.009636397, 0.025200693, -0.013687186, -0.010097692, - -0.00687624, 0.011310793, 0.005648824, 0.018722985, -0.012316373, - -0.0032912025, 0.023754597, -2.5824437e-4, 0.0015417526, -0.0057367794, - 0.039329994, -5.7762326e-4, 0.011852835, 0.013259975, 0.0022790309, - -0.008571191, 0.04109053, 0.028044788, 0.008716916, 0.01280197, - 0.0018809913, -0.0058419816, 0.0055498984, 4.151078e-4, -0.02050904, - 0.0103731565, 0.001960966, 0.022818672, -0.0034609847, -0.007714183, - 0.008767888, 0.02430678, 0.031285178, 0.012951803, -0.03590069, - -0.018065924, 0.0034605975, -0.01618951, 0.009959775, 0.015566116, - 0.00821788, 0.028330754, -0.011970221, -0.013668852, 0.01265054, - 0.002382268, 0.0042088004, -0.019829448, 0.0040635415, 0.00751018, - 2.0083839e-4, 0.029413031, -7.438587e-4, -0.0030407477, -0.019386994, - -0.006120908, 0.00472234, -0.0071336776, -0.022359077, 0.017176634, - -0.013947016, 0.019008728, -0.005400173, -0.011454412, -0.009848087, - -0.043717213, 0.0032359776, 0.02799421, 0.005343458, 0.0022879485, - 0.008860065, -0.0010472807, -0.0127114905, -0.0038851711, 0.007066466, - 0.0077329855, -0.009951919, -0.0012773814, -0.011656364, -0.008061587, - -0.027939342, 0.030682372, 0.0024616162, 0.010741728, 0.0043172203, - 0.021028379, -0.029903328, 0.013376444, 8.5557345e-4, -0.0032907235, - -0.01360642, -0.016741445, 0.023291882, -1.4427621e-5, 0.014790856, - -0.0012500809, 0.0012800833, 0.013240272, 0.009750716, -0.008377575, - 0.013915075, 0.012717336, 0.0035234953, 0.017743701, -0.015436221, - 0.009352538, -0.0058932207, -0.0014024957, 0.007878514, 0.01914114, - -6.561704e-4, -0.002564541, -0.044510305, -0.0063471077, 0.01856556, - 0.008429383, -0.043792292, 0.00237162, -0.021779103, -0.005313985, - 0.024351891, -0.0067146393, 0.034388103, 0.010983568, -0.005359711, - -0.023963906, 0.014813585, 0.020180969, 0.0043554306, -0.014839706, - -0.004683581, 0.021300944, 0.011989672, 0.012854142, -0.017251119, - -9.944683e-4, 0.00679999, -0.013187533, -0.015239013, -0.012543503, - 0.03602576, -0.005859723, -0.015082321, 0.003109843, 0.020147795, - 0.0050754123, 0.0018731975, -0.013243715, -0.038873307, -0.0019848747, - 0.020658653, 0.004064736, -6.6398515e-4, 0.03168584, 0.016178668, - -0.043254767, 6.7639136e-4, 0.018671915, -0.01794421, 0.0071446816, - 0.0057223444, -0.012991265, -0.03329537, -0.0116170645, 0.0012708765, - -0.004346625, -0.0065965476, 0.007016218, 0.020112015, 0.016379789, - -0.009892444, -0.01027138, 0.010702389, 0.013525067, -0.0021566835, - -0.0041411123, 0.045550674, 0.03598782, 0.007719332, -0.0029147929, - 0.013069004, -0.005346591, 0.035190407, 0.013615677, -0.06445287, - -0.015388157, -0.0051169065, -0.011612224, -0.0037969123, -0.016981388, - -0.013411403, -0.020091023, 0.0019431756, 0.006864266, 0.010883, - -0.024704091, -0.027495986, -0.032417595, -0.030736519, -0.0045731375, - -0.01384859, 0.020288847, 0.0031666807, 0.016841749, -0.01651451, - -0.012616468, 0.0049529183, 0.0023006946, 0.022673512, 0.012233565, - 0.0080723055, -0.022991074, 0.014071126, 0.0041625137, 0.01947559, - 0.012602135, 0.010337366, 0.013612966, -0.006883393, 0.011028399, - -0.011814916, 0.004553909, 0.0171851, -0.013024612, -0.02037386, - -0.011980644, -0.008802678, -0.0090142405, -2.1956227e-4, -0.0024260397, - -0.015698465, -0.02719049, 0.008584398, -0.015586354, -0.01390575, - 0.012409818, -0.011153905, -0.012635469, 0.017719636, 0.016200198, - 0.026164928, 0.0022196632, 0.009112501, -0.021337615, 3.2012106e-4, - -0.015786132, -0.013060991, 0.017753683, 0.011806094, -0.02412102, - -0.0118043935, -0.00812374, -0.014027213, -0.019896455, 0.00855876, - 0.0042467015, 0.0026336017, 0.016319936, 0.02545197, 0.0095818015, - -0.026272893, -0.0066127307, 0.02304215, -0.0011716181, -0.027257087, - -0.010355487, 6.7155436e-4, 0.0047871177, -0.018135307, 0.009249628, - -0.025651043, -0.013488838, 0.0023753766, -0.017616764, -0.009833067, - -0.01344802, 0.033955164, 0.0030307628, -0.03599327, -0.021171534, - 0.0057715066, -0.009741504, -0.0056230384, 0.007507111, 0.0060389405, - -0.025098953, -0.0038401778, -0.0062566604, -0.008659727, -4.005289e-4, - 0.0077179736, 0.035730705, 0.014973968, -0.0032909398, -4.450568e-4, - -0.009163158, 0.031433824, 0.027737124, -0.002336292, 0.01800581, - 0.0048062317, 0.012713754, 0.0026418765, 0.0012933715, -0.0074125524, - 0.007162733, 0.0069780448, -0.017556943, -0.019031374, -0.027787391, - 0.0015628934, 0.009441826, -0.0042789415, 0.0065878676, -0.0010456685, - -0.009137381, -0.0058333045, -0.028872482, -0.0129159875, -0.01163398, - 0.011983137, -0.0016330702, -0.0028914912, -0.026905412, -0.0056217164, - -0.014779946, -0.010621085, 0.0057580112, -0.005652862, -0.0032822227, - -5.657582e-4, -0.022018494, 0.0029856092, -0.017295232, 0.011846433, - 5.107131e-4, -0.02309873, -0.00902201, 0.023290465, 0.004340607, - -0.01413049, -0.0013232641, 0.019140057, -0.008806574, 0.03526301, - 0.011361406, 0.009901598, -0.03316499, -0.011903296, -0.0019179545, - 0.0085633565, 0.012368457, -0.008450665, -0.007238896, 0.018229509, - -0.0011618251, 0.019664984, 0.0072679576, 0.009203597, -0.010837629, - -0.020681392, 0.005552693, 0.005854461, -0.009790445, -0.029709449, - 0.004778379, -0.011176341, 0.009324603, 0.0010150663, -0.016815951, - -0.0026245737, 0.027802356, 0.01609576, -0.0010797569, -0.023048863, - 0.016426254, -0.014723421, -0.015847255, 0.0238649, -0.021084158, - -0.010550335, -0.026898045, 0.0050764326, 0.016247518, -0.011971769, - -0.011323578, -0.022972075, 0.013778345, 0.0071412683, -0.015033014, - 0.0023887728, 0.011974146, 0.014453168, 0.021691393, -0.02027804, - -0.024395322, 0.012243178, 0.005485766, -0.022438956, -0.0222074, - -0.007991547, 0.013193128, -0.015233097, 0.008347046, -0.0282659, - 0.002403674, -0.024753073, -0.017143477, -0.006537607, 0.027551342, - 0.013343212, 0.024570735, 0.0058131455, -0.014479278, 0.0066814455, - -0.011641567, -0.0030572147, 0.01251432, -0.017436879, 0.007748594, - 0.039121594, -0.009251787, 0.0059274253, -0.009298618, 0.017654283, - 0.0014472058, 0.008970791, 0.028036732, -0.028993672, 0.012111522, - -0.0017514778, 0.01130982, 0.0040171603, -0.009332439, -0.009172848, - -0.0031169697, -0.009616064, 8.54059e-4, 0.016061006, 0.0037452343, - 0.0074153864, -0.008961574, -0.010885492, -0.009417904, -0.0019970066, - 0.013173395, 0.0067412877, 0.0060130768, 0.017430862, 0.018097522, - 0.017944466, -0.018440524, 0.0037317988, 0.019515513, -0.0072075343, - 0.006167773, -0.0027444768, -0.0026316298, -0.005208944, -0.016460497, - -0.008357069, 0.01820519, 0.011242879, -0.0071739266, 0.002154605, - 0.005393729, -0.0027591044, -0.016255487, 0.0031792398, -0.01931852, - -0.021047248, 0.015178669, -0.012173444, 0.020668438, 0.01823716, - -0.0013218645, -0.0076592625, -0.014173165, -0.0075545902, -0.011224469, - 0.0034356215, 0.0017810231, 2.753392e-4, -0.011417537, -0.036245584, - -0.0056796637, 0.0031212482, 0.009709697, -0.0035888979, 0.013546342, - -0.0062601035, 0.0010009495, -0.013438606, -0.010491484, -0.004122708, - -0.008503887, -0.0013802658, -0.0046774806, 5.478101e-4, 0.00614152, - 0.010906439, 0.032065306, 0.014419467, -0.02019825, 0.00635507, - -0.021458011, 0.0060713314, -0.011009918, 0.017531618, -0.01782781, - 0.022936827, -0.010131798, 0.006422306, -0.0029245787, 0.0030030268, - -0.0045686644, 0.015611434, 0.0043373494, 0.0122080315, -0.0050815167, - -0.02471275, 0.0021070344, -0.0023984816, -0.01611058, 0.031091433, - -0.013355359, -0.019575302, 0.013298831, 0.0073124273, -0.01381599, - 0.006049808, -0.006853607, -0.010042973, -0.0058842655, 0.0030285472, - -0.0031552468, -0.0023309612, 0.013574083, 0.030803334, -0.009607125, - -0.0064568026, 0.018276496, -0.003254234, 0.0010159237, 0.032830626, - -0.008921197, 0.004445094, -0.020701213, 0.019569876, 0.008354675, - -0.01777074, -0.01776037, -0.012847793, -0.033732317, 0.022419954, - -0.022028169, -0.014665185, 9.669205e-4, 0.013836072, 0.0044482877, - 0.030390512, 0.010603147, 0.009614311, 0.0011396682, -2.5558415e-5, - 5.6088285e-4, -0.027121305, 0.007759924, 0.009050753, 0.005254886, - 0.0056667654, -0.011341703, 0.030552264, 0.041033782, 0.01435687, - -0.008962825, 0.0025936977, -0.0041212803, 0.0042881113, 0.0010862676, - -0.033344485, -0.01543403, 0.010693849, 5.074352e-4, -0.014909536, - 0.0056915204, 0.0026214197, 0.012163761 + "filterableValues" : { + "locations.license.id" : [ + "cc-by" + ], + "source.contributors.agent.label" : [ + ], + "source.contributors.agent.id" : [ ], - "features2": [ - 0.03191156, -0.007909515, 0.021577144, -0.018829094, -0.008059443, - -0.02805784, 0.01955227, 0.010196917, -0.005775419, -0.027346306, - 0.014009762, -0.019131407, 0.021026907, -0.01432119, -0.012319249, - -0.0029319827, -0.010281906, -0.0018360947, 0.009738763, 0.013225398, - -0.023598272, -0.0023589053, 0.021508642, 0.009046471, -0.0027001072, - -0.0035288453, -0.012231096, -0.003454096, 0.034032766, -0.028107652, - -0.014122228, -0.011698375, 0.010508122, -0.005942667, 0.0074864733, - -0.011274922, -0.026716951, -1.1656086e-4, -0.0049720164, -0.005752357, - -0.006985532, -0.025112087, 0.0039306185, 0.011918407, -0.028317675, - -0.0015295758, -0.0089407, -0.022897162, -0.0036864274, 0.01523447, - 0.03810546, -0.012411476, -0.026797727, 0.008563486, -0.0036875329, - -1.4580751e-4, 0.0057052835, -0.011375893, -0.008983105, 0.002392283, - 0.034800448, 0.021538882, 3.1086768e-4, -0.0028001885, 0.013465334, - 0.028087383, 0.007872129, -0.021918075, -0.006920894, -0.0064522554, - -0.020436076, 0.017699707, 0.004710829, 0.031501137, -0.021671621, - -0.0055904123, 0.033563852, -0.02901534, 0.008592472, 0.023267249, - -0.029081726, -0.016700104, -0.015710128, -0.0018148707, -0.0054274434, - 0.0129781095, -0.04438964, -0.0039163935, -0.019007836, -7.768302e-4, - -0.020312387, 0.028627576, 0.015304724, 0.005760054, 0.020188015, - 0.0046228673, 0.030601636, -0.0059131403, 0.006923649, -0.032195617, - -0.006974998, -8.492816e-4, -0.03459, 0.0039850296, -0.0041921977, - -0.021226635, 0.0028729571, 0.006410563, 0.011431616, -0.009455023, - 0.006226494, 0.007875374, 0.0051929895, -0.002061154, 0.011637386, - 0.01971569, 0.012004639, 0.005512322, -0.0026822786, 0.026107565, - -0.018070117, 0.008918779, -0.0061008, -3.9186297e-4, -0.0056653, - -0.032452524, -0.022129469, -0.013843045, 0.0036955618, 0.022928122, - -0.017383454, -0.024939515, 0.0154676465, -0.0163253, 0.045088455, - -0.011867741, 7.0712646e-4, -0.017431432, -0.008962737, 0.03032431, - 0.0023304315, 0.014882971, 0.005789398, 0.006100733, -0.0048545343, - 8.25081e-4, 0.0058257165, 0.0029804672, -0.0043820827, 0.009354885, - -0.022812989, 0.006170276, -0.006411985, 0.004350736, -0.017780825, - -0.003925911, -0.006995907, -0.021486485, 0.011427387, 0.0013211601, - -0.01844801, 0.01947526, 0.0162949, 0.02537321, 0.01221866, -0.01494792, - 0.023209143, -0.024423718, 0.032253206, 0.008635518, -0.006843422, - 0.00243033, -0.0053014094, -0.017454084, 0.011870137, 0.016337302, - 0.027337516, 0.04077256, -0.0066511263, -0.003704451, 2.2501792e-5, - -0.012596504, -0.013812244, 0.018524764, 0.0048291297, 0.013242601, - 0.0043233265, -0.015498978, -0.0192321, -0.009783239, 0.008079823, - 0.0033723847, -0.02893837, 2.7344056e-4, 0.028175088, -0.01573008, - -0.03790065, -0.021828877, 0.0038786242, 0.03402623, -0.0046092924, - -0.014750278, 0.0041738846, -0.0059081535, 0.008042369, 0.0039041708, - 0.0026981041, -0.011685383, -0.0015115087, -0.0077329515, 0.04411798, - -0.022868283, 0.0066182734, 0.012225831, 0.008635132, 0.015375952, - 0.015610413, -0.024514742, -0.003400197, -0.0046849772, 0.026352916, - -0.0035536622, 0.0024422307, -1.9544904e-4, 0.011076953, -0.023881314, - -0.0042272727, 0.015491449, -0.019852247, 0.031583622, 2.0054022e-4, - -0.011304247, 0.010727535, -0.017541233, -0.035474803, 0.049903583, - -0.023814566, -0.015892506, 0.008730352, -0.027578106, 9.030036e-4, - -0.007944024, -0.0074935714, 0.0041702976, -0.028157521, 0.018756436, - -0.02476091, 0.021671731, -0.017135741, -4.2149826e-4, -0.019348444, - 0.024431968, -0.023271246, 0.003205376, -0.007799601, -0.017519291, - -0.0140922265, 0.009677586, -8.5504336e-4, -0.022047319, 0.0019416534, - 3.4652138e-4, -0.020329002, 0.004657076, 0.0022734816, 0.009952638, - 0.0076636164, -0.008496656, -0.01611414, -0.0016701092, -0.008477648, - -0.038810503, -0.015551207, -0.014325872, 0.02857068, -0.009062999, - -0.029579936, 0.00952144, -0.03264401, 0.007569149, -0.0109750945, - 0.028185096, 0.004857588, 0.009647935, 0.01915764, 0.0012373538, - 0.0046910974, -0.01534702, -0.014844409, -0.02029232, -0.014658953, - 0.0027080816, 0.012031793, -0.0012916266, 0.013299868, 0.021599978, - 0.011143207, -0.011244266, 0.028890317, 0.01171448, 0.0050371387, - -0.014982764, 0.003295164, -0.013722457, -6.559523e-4, 0.031824265, - 0.014876278, 0.009167888, -0.0059320848, -0.025723334, 0.024824081, - -0.011746914, 0.020941973, -0.013885889, -0.0023172232, -0.02333759, - -0.020329306, 0.006303388, 0.0037266992, -0.011826968, 0.028884515, - 0.002006144, -0.0033781521, 0.009604221, 0.009559341, 4.7917038e-5, - 0.017833238, 0.015499356, 0.004597538, -0.023498584, 0.010875581, - 0.014692773, 0.009336213, 0.0024584904, -6.697123e-4, 0.0023975708, - -0.033427045, 0.0038501704, -0.024345301, -0.009186945, -0.0073581287, - 0.010013361, 0.0037677737, -0.010339539, 0.0034098267, 0.011049803, - -0.01641454, -0.0036053567, -7.963439e-4, -0.0057699634, 0.0020408172, - 0.018967677, -0.023700818, 0.008356877, 0.0014869346, -0.0021997248, - 0.018796427, 7.831862e-4, 0.002736946, 0.031134065, -0.001129449, - -0.026795832, 0.021481011, 0.009214956, 0.018867163, 0.026172306, - 0.012568049, -0.0034491445, -0.017839968, 0.014870427, 0.00986842, - -0.024312282, 3.4390614e-4, 0.002202317, -0.01999763, 0.0023830908, - -0.006017615, 0.015438466, 0.014728757, -0.006218742, 0.021049168, - -0.014736091, -0.024690235, -0.0045861877, 0.017956218, 0.004121204, - -0.002582622, 0.010107297, -0.002959067, -0.009628241, -0.00837819, - -0.004079946, 0.004301011, -0.007585734, 0.012511708, 0.012525057, - 0.00811254, 0.0100366315, -0.0017716392, -3.9887207e-4, -0.027363323, - 0.018776124, 0.0030903611, 0.0021038882, 0.012176947, -0.020021148, - 0.0057786806, 0.008224293, -0.011566593, 0.02629539, -8.105162e-4, - 7.5677567e-4, -0.004022534, 0.010215452, 7.322357e-4, 0.0032141982, - 0.022494819, 0.0068400926, -0.0062515396, 0.019772029, 0.0068238815, - -0.009323088, 0.0011700203, 0.0087293545, 0.011217261, -0.0197868, - 0.012207723, -0.0043611135, 0.018970383, -0.0039650584, -0.0064130784, - -0.004238976, 0.0013256916, 6.321082e-4, -0.0069299988, 0.001544588, - 0.0012432468, 0.011787601, 0.007582301, -0.00896387, -0.023893794, - 0.0029075772, -0.006855576, -0.0057155117, 0.0071582627, 0.013141034, - -0.013762152, 0.012540187, 0.026821394, -0.022182358, 0.0050961147, - 9.3255605e-4, 0.01795149, -0.022304945, 0.004907509, -0.00799677, - -0.018716123, -0.005078585, -0.017483182, -0.020619228, 0.0027503616, - 0.027882295, -0.0025203414, 0.003008528, 0.012312632, 0.030341197, - 0.013219331, -0.008069567, -0.0101402365, -0.0052047335, -0.007673543, - -0.00505267, 0.02446624, 0.010326354, -0.011556504, 0.011260222, - 0.014164331, 0.012263421, 0.018341068, -0.030134927, -0.008296539, - 0.00725852, 1.7256157e-4, -0.0222631, -0.003036659, 0.01908602, - 0.0031224086, -0.033263862, -7.0122717e-4, 0.024376513, -0.0026403738, - 0.027335858, -0.017862849, -0.00407188, 0.0067622424, -0.005073033, - -0.006864613, -0.005819599, 0.008528548, 0.025235437, -0.0027568582, - -0.021902574, -0.010024047, 0.006556069, -0.009160302, -0.010944471, - 0.011839192, 0.008757684, -0.012524669, -0.02189121, -0.01344032, - -0.011705608, 0.011461486, 0.006152754, 0.016048227, -0.0051451726, - 0.0118288305, 0.0036368424, -0.00893075, 0.005393738, 0.01915995, - 0.0074266465, -0.018708361, -0.027169893, 0.0066514933, 0.017002756, - 0.0013441266, -0.009914237, 0.003102891, 0.0061476566, -0.030328264, - 0.002151702, 0.02161965, 0.009064935, -0.00765202, -0.0138563765, - -0.0062285103, -0.027637215, -0.01610966, 0.0091796415, 0.02480797, - -0.0024459122, 0.0010662453, -0.02077039, 0.014402525, -0.015339012, - 0.005710488, 0.0057942504, -0.018251752, -0.009967922, 0.0052645137, - -0.033724237, -0.020871416, 0.01812398, 0.0037906785, 0.010234941, - -0.010045052, -0.006049099, 0.0044285716, -0.0014040126, -0.022761263, - -0.02550503, 0.007446121, 8.650875e-4, -1.0496691e-4, -0.010404185, - -0.020615874, 3.947387e-4, 0.021249764, -0.031182297, 0.010688337, - 0.01066555, 0.0052891597, 0.029728828, -0.009399886, -0.020842474, - -0.0048633763, -0.0033895017, 0.013789737, 0.010330522, -0.0161527, - -0.005360153, -0.010608701, 0.017919967, 0.010062455, 0.0019511484, - -0.011717972, 0.022296693, -0.015872575, 0.03393546, 0.006925897, - -0.005478518, 0.015999533, 0.0051933764, 0.023610221, -0.034214146, - 0.028172795, -0.0047250916, 0.025280248, -0.014786747, -0.004449475, - -0.005286772, 0.01642607, -0.0057953848, 0.010468111, 4.4730073e-4, - 0.011242431, 0.016882624, 0.0064233327, -0.00988685, -0.0032277533, - 0.015573694, -0.0010646923, 0.0076087764, 0.018219657, 0.007274902, - -0.011256671, -0.036709297, 0.008944648, 0.028654037, 0.007582157, - -4.8188063e-5, 0.0079468135, 0.005489537, -0.038269013, -0.01263362, - -0.018367311, 0.0049140365, -0.013649317, -0.003136242, -0.019278567, - -0.0060676974, -0.012120482, 0.0075796535, 0.0013627971, -0.01753965, - 3.232422e-4, 0.02013047, 0.021291694, -0.022045894, -9.764962e-4, - -0.002699633, -1.2835253e-4, 0.031588305, 0.0036546828, 8.591095e-4, - -0.010557352, 0.0083844345, 0.0056222994, 0.020741032, 0.0138184475, - -0.015299714, 0.0057215975, -3.1159175e-4, 0.016599761, -0.015991507, - -0.012947698, 0.0136517985, 0.0097186295, -0.022247605, -0.009081098, - -0.0023887837, -0.001863213, -0.0024626942, -0.0031989368, 0.0043969597, - 0.020226115, -0.020067096, -0.012510813, -0.00417799, -0.011494697, - 0.019087756, -0.0019664958, -0.036988266, -0.004107212, -0.028328234, - 0.018589914, 0.0059928587, -0.005033789, -0.009178871, -0.0041381055, - -0.010195809, -0.013363873, -0.007813654, 0.012696104, 0.008960636, - 0.004709985, -0.0067271604, -0.0052527906, -0.006480549, 2.9388798e-4, - -0.010598304, 0.011053054, -0.028180085, -0.022578286, -0.025842, - 0.016407862, -0.010631089, 0.005394354, -0.0041421857, -0.0052351947, - 0.011199499, -0.014852221, -0.011795687, -0.00823579, 0.006045365, - -0.014118918, 0.005944874, 0.015714783, -0.019890627, 0.012584687, - -0.025267947, -0.0063963705, -0.0018442923, 0.009157342, -0.005330676, - -0.023189329, 0.014893909, 0.0042771203, 0.016238866, 0.035376158, - 9.310694e-4, -0.005124349, -0.020360874, 0.010998424, 0.018923873, - -5.769361e-4, 0.026328826, 0.012912465, -0.0097221825, 0.0034420984, - 0.005460517, -3.7833106e-5, -0.009624572, -0.0031690763, 0.032759815, - -0.011683198, 0.024928069, -0.013546167, -0.0027368602, 0.011564112, - -0.0010643121, -0.01408276, -0.002903579, 0.001526722, 0.005553708, - -1.6100862e-4, 0.002320811, 0.007228419, 0.011465142, 0.0068810624, - -0.003551005, 0.010609209, -0.0011110705, 0.015534927, -0.028886164, - -0.0021502448, 0.023328692, 0.004625524, 0.010206627, -0.015507571, - 0.019556945, 0.011542641, 0.006524501, -0.026203094, 0.0025348882, - -0.0047269794, 0.035769448, -0.015257985, -4.8673397e-4, -0.008699407, - -0.0047403453, 0.00879535, 0.015191167, -0.009041437, -0.024328547, - -0.009912654, -0.012447, 0.0052044475, -0.010685534, -0.016485568, - 0.022417305, -0.013932592, -0.005109979, -0.025038721, -0.025640044, - -0.023534209, 2.791569e-4, 0.009550978, 0.015187123, -0.024323246, - -0.006839211, -0.006799029, -0.010924821, -0.0044538593, 0.015958467, - -0.007517407, -0.010911426, 0.014985429, 0.021657296, -8.060201e-4, - 0.014537463, 0.0013064323, 0.0063247555, 0.023134543, -0.0016466314, - 0.009999778, 0.012233715, 0.011946936, -0.010231134, 0.020739136, - -0.011188871, 0.0047819465, 0.006599831, 0.015249318, -0.008195907, - 0.018782927, 0.004417505, -0.007006144, 0.009485745, -0.019155452, - -0.0021892127, -4.063406e-4, 0.004546465, 0.003372925, 0.021073002, - 9.870812e-4, 0.0036500988, -0.018101938, -0.007873005, 0.014745472, - -0.0018338762, 0.02590525, -0.005451295, -0.015511416, 0.008944304, - 0.0056671263, -0.004435271, 0.02428117, 0.022078007, 8.5409655e-4, - -0.009883468, -0.012020574, 0.008106272, 0.0046947855, -0.027762583, - 0.028223189, -0.020536747, 0.017941518, 0.0026712434, 0.011909089, - 0.0295781, 7.127585e-4, 0.005047307, -0.0109949, 0.0070386063, - -0.0053376225, 0.021445228, 0.005154316, -0.007891712, -0.0048141303, - -0.03188561, 0.022823697, -0.013596838, 0.003649748, -0.022751072, - 0.0041239676, 0.032000206, -0.003196454, 0.0099575035, -0.022914859, - -0.009495348, -0.0027754353, -4.0509945e-4, -0.023443116, -0.009209449, - -0.018588725, -0.04520619, -0.0015077539, -0.011999515, -0.023293883, - -0.024683328, 0.031392876, 0.017891146, -0.034628402, 0.0058374, - 0.0076845516, -0.014587248, 0.008694656, 0.0088061625, 0.010980741, - -0.011144868, -0.011363762, 0.0070565226, -0.005669656, -0.015884612, - 0.0035034835, -0.024211153, 0.015036414, 3.871387e-4, -0.021320138, - -0.0048943027, -0.01795254, 0.0065720663, -0.0015720554, -0.017734354, - -0.015150604, 0.0033125444, -0.008953976, -0.010325505, 0.003470889, - -0.002808193, 0.008457514, -0.015031565, 0.011906625, 0.013272029, - -0.010129618, 0.01767968, 0.0046627973, -0.026643457, -0.02285575, - 0.010695448, -0.0124754235, 0.005550325, 0.009131773, 4.9835135e-4, - -0.03170639, 0.014545487, 0.0046119345, -0.029452533, -0.0069766007, - 0.0028944016, -0.028183328, -0.011693529, 0.0061865705, 0.008751185, - 0.0018192137, 0.013209131, -0.0071839844, 0.028415537, 0.011898015, - -0.0076946802, 0.0120396465, -0.025394263, -0.016046034, -3.7930335e-4, - -0.008124851, 0.0114772, 0.03146611, -0.022141311, -0.008915632, - -0.003630531, -0.0022838064, -0.025664736, 0.007279183, 0.0086773215, - -0.013384871, 0.0016886768, 0.0029387565, 0.015394474, -0.017375078, - -0.008574652, 0.018977575, -0.026855627, -0.010548894, -0.010680224, - 0.025770487, -0.038159873, 0.009492651, 0.00488614, -0.025758065, - 0.007187735, 0.022638304, 0.00820198, -0.0065108533, 0.016152987, - 0.0127244145, -0.0030520465, -0.008082381, 0.004499863, 0.015355067, - 0.008859307, -0.016032033, 0.010941049, -2.8031395e-4, 0.015600173, - -0.0022237871, 0.0042422, -0.020540716, -0.009907815, 0.011263263, - 0.032602426, 0.0013876464, 0.013197616, 0.0023767394, -0.02276722, - 0.036277387, -0.033284474, 0.023192957, 0.022271078, 0.015678689, - -0.008954543, -0.009968411, 0.027791027, 0.014718983, 0.021921523, - -0.0119656585, -0.016073165, -0.010656481, 0.013334318, 0.0066523757, - 0.001536497, -0.0021289212, 0.002143263, -0.013859807, -0.007792091, - 0.00808838, -0.008451057, -0.02469986, 0.0018532962, -0.004105513, - -0.0028316292, -0.0019106864, -0.023147667, -0.019845877, 0.012561948, - 0.021319283, -0.03463533, 0.013681345, -0.0074707866, -0.006981472, - -0.0014058435, 0.020907704, 0.014647169, 0.00285122, -0.024414688, - -0.015003595, -0.005493802, -0.012013231, 0.014234185, 0.004704601, - -0.010505786, 0.025553243, 0.012067361, -0.006548306, -0.010691312, - 0.018156262, -0.024070116, 0.019564604, 0.017417481, -0.028719246, - 0.016359637, 0.0178941, -0.016221171, -0.01948625, -0.019206434, - -0.016938785, -0.012877365, 8.763716e-4, 0.004029179, 0.009289045, - 0.015036941, -0.012338929, 0.030297713, -0.0079072425, -0.011316574, - 0.018947143, -0.017123546, -0.010489941, -0.028645914, 3.9196777e-5, - -0.010058254, 0.0013511615, 0.024649085, -0.0087849405, 0.026575247, - 0.007423367, -0.009914337, 0.0122610815, -0.007554757, -0.0023918096, - -0.003532625, -0.032101166, 0.006423544, -0.0017464899, -0.019135997, - -0.00838193, -0.021339554, 0.009076537, -0.017587692, -0.027468603, - -0.004522744, 0.015898798, 0.019967768, 0.006708163, 0.018131794, - 0.018348118, 0.031229118, 0.025070945, 1.9802677e-5, -0.012588642, - -0.0021793237, -0.021044385, 0.015330931, 0.003913445, -0.0073448615, - 9.659475e-4, 0.0012760337, 0.023626095, 0.009985244, -0.013199829, - -0.0020478456, 0.007172324, 0.009793412, -0.011231631, 0.0027549558, - 0.00506895, -0.009922902, 0.027587764, 0.006675121, -0.020064179, - 0.02390421, 0.0050261687, -1.6496556e-4, 0.013182235, -0.007108279, - -0.003436808, -0.003559959, -2.0515984e-4, -0.0025723188, 0.0050069992, - 0.009026063, -0.03144361, -0.0019990483, 0.019903097, 0.015807942, - -0.020901699, -0.015888946, -0.005425741, -0.007991334, 0.0123903, - -0.005982406, -0.004087137, -0.03551412, 0.009671731, -0.013832858, - 0.016532281, -0.033085592, -0.0046292325, -0.004933163, -0.0053472854, - -0.045146868, 0.020026924, 0.01083924, -0.018517513, -0.021990476, - 0.010699522, 0.013298181, 0.011386602, -0.005291054, -0.026845353, - -0.035186168, -0.0129796285, 0.0027716758, -0.0101244105, -0.007455742, - 0.011824419, 0.014284491, 0.008193847, 0.0075048916, 0.009611184, - -0.020888288, 0.012690248, 0.01299229, -0.03109828, -0.02568623, - -0.028383536, 3.681451e-4, 0.007550737, 0.014630443, -0.009783104, - 0.008798329, 0.005139615, 0.023630822, -0.007897214, 0.01805207, - 0.022044325, 0.049277365, 0.012817383, -0.013538736, 0.0066006077, - 0.002847784, -0.0017274409, -0.0026411961, 0.014256555, 0.0029387178, - 0.01601111, 0.012907116, -0.02300129, -0.016209895, -3.150976e-7, - 0.005055128, 0.0082221655, 0.008600728, -0.012116045, 0.029997787, - 0.02424047, -0.011580237, -0.009495, -0.005931845, 0.0043863277, - -0.006119137, 0.010079023, 0.03875681, -4.2261567e-5, -0.046810996, - 0.0053813886, 0.03261531, -3.38646e-4, 0.0051002703, 0.019573642, - -0.025081487, -0.02910229, -0.012599244, -0.024676383, -0.019777749, - 0.0036849154, 0.007812906, -0.008582874, -0.0077721756, 0.033320528, - 0.0014872749, -0.005507512, 0.008176042, -0.020035116, -0.0024557002, - 0.028178766, -0.018976633, -0.022102455, -0.014902174, 0.03681351, - 0.02106527, -0.0061529134, -0.020254724, -0.015377428, -0.030984659, - -0.015330731, -0.0041568372, 0.0060646567, -0.0059363283, -0.009833072, - -0.015436506, -0.008080404, 0.007618062, 0.028586168, 0.012678241, - -0.009724513, 0.006546993, 0.0059935404, 0.010572765, 0.006754967, - 0.0038035493, -0.01993036, 0.011776724, 6.9624296e-4, -1.7973798e-4, - 0.012057468, -0.008816965, 0.011830777, -0.020939443, -0.006251037, - -0.021830663, -0.008497112, 0.015082148, -0.0038562934, -0.0061567035, - 0.033457402, -0.007126771, 0.0037732625, 0.006725884, 0.008419875, - 0.010859731, 0.008915753, 0.011176217, 0.024727797, -0.020055108, - -0.030967884, 0.0012910126, -4.7593476e-4, 0.00913526, -0.0025999376, - -0.023408266, -0.033887587, -0.02123178, -0.001153478, 0.02709489, - -0.014966854, 0.0018097198, 0.01425043, 0.0055526476, -0.019515742, - -0.01906723, 0.023211012, -0.0015067324, 0.0071971524, 0.0075625493, - 0.012046487, -0.012224959, 0.0065135444, -0.0030396406, -0.007448614, - -0.02662969, 0.022910183, -0.0103982715, -0.012261925, 0.010669151, - -0.03908781, 0.034324706, 0.008264824, -2.2811072e-4, 0.012991065, - -0.006452923, -0.0020608623, -0.02322315, 0.024737438, -0.0017225355, - -0.0055159084, -0.025251707, -0.018023219, 0.019775784, 0.023933941, - 0.0037651253, -0.0037409002, 0.012158137, -0.004745585, -0.0077136816, - -0.0015329862, 0.018468248, -8.9752994e-4, -0.010968296, 0.009074445, - -0.007558711, -0.024960594, 0.0117068915, 0.010439047, -0.012479685, - -0.0022659735, -0.021901455, 0.024802858, 0.014405507, -0.0072958856, - -0.001722857, 0.021268781, 0.0074288924, -0.0029301373, -0.0049039316, - -0.0025756087, 0.01749391, 0.017138576, 9.770187e-4, 0.013097023, - -0.0026426832, -0.022714008, 0.03451343, 0.0148106245, -6.9914974e-4, - 0.014223529, -0.0123594105, 0.0042800102, 0.00846623, 0.0047648163, - 0.020173663, 0.004694252, -0.0050111357, -0.012095846, 0.020672413, - 0.006684565, -5.868397e-4, -0.006341185, 0.023268165, 0.022013271, - 0.007822818, 0.01917362, 0.006834991, -0.006564559, -0.017390182, - 0.019236313, 0.008219597, -0.02449183, 0.026012916, 0.015504414, - -0.0277575, 0.0034426842, 0.0010378157, 0.012045831, 0.0013825269, - 0.019167108, 0.012244084, -0.03364676, 0.005781926, 0.018980984, - -0.035892244, -0.045170154, -0.0053910557, 0.020105446, 0.022594571, - 0.019900529, -0.013368389, -0.013806674, -0.009606938, -0.009052852, - -0.0021298663, -0.013566892, -0.033561397, 0.011735027, 0.011609942, - 0.007984268, -6.003669e-4, 7.853446e-4, -0.0017595488, 0.022100065, - 0.01651639, 0.00809261, 0.011912301, 0.019008534, -0.012510965, - 0.020082187, -0.005216186, 0.024824362, 1.9114683e-4, 0.0014174952, - 0.008107978, -5.3056556e-4, 0.024072612, 0.0052723647, -0.025703602, - -0.015378079, 0.006680826, -9.945788e-4, 0.0039130165, 0.00944307, - 0.009191619, -0.011558112, -0.015608282, 0.03384481, -0.027645674, - 0.0035142708, -0.028974522, 0.013070465, -0.018231645, 0.0151676005, - 0.019702105, -0.011169003, 1.1141958e-4, 0.011699122, -0.0066029406, - -0.008032883, 0.0011799171, 0.0045221043, 0.0032155092, 0.019528719, - -0.028316729, -0.021657446, -0.01723699, -0.014264723, -0.0055762553, - 7.3041266e-4, -0.025082506, 7.202494e-4, -0.011275014, 0.025811777, - 0.036115497, 0.021575902, -0.005634046, 2.3129248e-4, -0.009263961, - 0.0015926162, -0.011970639, 0.026067242, -0.022498801, -0.0025867624, - -0.0030218696, 0.009772899, -4.0290947e-4, 0.012059552, 0.01879394, - 0.019680278, -0.010490288, -0.013580296, 0.009303458, -0.011468407, - -0.028807105, 2.6547312e-4, 0.012691453, -0.0015751802, -0.009864198, - 0.039322164, 0.007301767, -0.0035751306, 0.0058452548, 0.0060962243, - 0.013690689, 0.0114565035, 0.0049682558, 0.024616502, -0.012237337, - 0.0033815615, -0.007175723, -0.0055426834, 0.032227874, -0.032264747, - 0.012801061, 4.633783e-4, 0.012003649, -0.0220627, 0.006817398, - -0.0145678995, 0.017445218, 0.027347207, 0.008673473, 0.009997927, - -0.008908597, -0.007011839, 0.005618625, -0.0013281094, 0.00639443, - -0.012005224, -0.014730075, 0.022882042, -0.0011715615, -0.018973494, - 7.2642433e-4, 0.0097602, 0.017785612, 0.020036055, -0.002290227, - 0.0026201776, -0.0020781595, -9.919656e-4, -0.012850318, 0.01466671, - 0.010359917, -0.011338336, -0.01288765, -0.010004323, -0.0038906154, - 0.029838756, 0.020361073, 0.0036472804, -0.016107032, 0.0027231774, - -0.011948179, 0.018907515, 0.0024537116, -0.0016511533, 0.009852661, - -0.007147308, -0.013305496, 0.006017782, -0.0033280507, -0.001989473, - 0.027626703, -0.0050176177, 0.01128953, 0.0071672006, -0.0093359845, - -0.0019402219, -0.028971775, -0.031575985, 0.01403747, -0.01149533, - -0.011213736, 0.029828848, -0.019625021, 0.018362433, -0.021028504, - -7.16151e-4, 0.033276957, 0.012664483, -0.04525678, 0.00684677, - -0.009247199, -0.007407284, -0.020848319, 0.014188019, -0.0023164102, - -0.004292505, 0.0013294354, 2.8069285e-4, -0.008923585, 0.007264242, - 0.019163461, 0.0033583688, -0.0054804888, -0.024470456, -0.018604955, - 0.013895459, -0.015850285, -0.009106504, -0.0044054566, 0.016295524, - -0.005021737, 0.023894405, 0.013920255, 0.011030926, -0.0063542156, - -0.011847041, -0.002290135, 0.002617223, -0.015254674, 0.025809374, - 0.024514811, 0.024386073, -0.007776156, -5.5075024e-4, 0.014819222, - 0.018649591, 0.025199473, -1.2918448e-4, 0.0036418452, 0.0033220248, - 0.012007607, -0.023164796, 0.020773683, -0.014684989, 0.025686601, - 0.0100284, -0.012710272, -0.03156522, -0.023969932, 0.025746645, - 0.019499972, 0.032786615, 0.01939229, -0.0017640473, -0.02784463, - 0.005760591, -0.00374948, -0.007775782, -0.0058438177, -0.026364973, - 0.007762618, -5.6038244e-4, -0.015367496, -0.013030232, -0.013609834, - -0.004659396, 0.012006662, 0.0065955687, 0.02525829, 0.008600636, - 0.03069843, 0.014128977, -0.006034642, 0.016994257, 0.018550726, - -0.02017672, 0.010776091, 0.0050307335, -0.016692461, 0.012794901, - 0.0084448485, -0.005443226, -0.003636062, 0.009420427, 0.02197767, - 0.0057727583, 0.003155984, 3.7561925e-4, -0.008350046, 0.037150763, - -0.013164224, 0.018884823, -0.028388081, 0.0014845725, 0.0109264245, - 0.0015043444, -0.0030431098, 0.012490366, -0.009997749, -0.015445622, - 0.02872848, 0.008293419, 0.002177367, -0.0035451392, 0.0015422377, - 0.01239639, 0.042950425, 0.021496624, -0.012066189, -0.029104797, - -0.01904711, -0.0036680626, 4.0300676e-4, 0.012067611, -0.0048813787, - 0.01856887, 0.012385851, 0.010916339, 0.010633174, -0.004877547, - -0.010551495, -0.015018833, -0.019927798, -0.010921626, 0.023738822, - 9.302822e-4, 0.008552126, 0.004404252, -8.1985304e-4, 0.008201617, - 8.3909096e-4, 0.023915019, -0.035850067, 0.018065866, -0.0014339779, - 0.0034894138, 0.004485144, 0.0162733, -0.0025739963, 0.016060732, - -0.01130608, -0.013531155, 0.009241872, -0.011836223, 2.851479e-4, - 0.021660902, 0.010797841, 0.013750234, -0.007479349, 0.017201975, - 0.003941003, 0.010322992, 0.0012800761, 0.011077286, -0.0039124773, - -0.0066153887, 0.014196424, -0.0055719884, -0.034847032, 0.0056604813, - -0.0017886201, -0.011570057, 0.012879952, 0.006786193, 0.009630009, - -0.030347344, -0.027954794, 0.025747536, 0.0017718525, 0.011511771, - -0.02606106, 0.0090691345, 0.0060264287, 0.015049204, -0.009926035, - -0.0027052031, 0.012194821, 0.023337228, 0.0018315795, 0.0010289886, - 0.0046576243, 0.014769454, 9.77289e-4, 3.1137926e-4, -0.0038041968, - -0.014446492, -0.010333894, -0.027454656, -0.002198392, -0.007886195, - 0.012109291, 0.010443457, -0.025552372, -0.0059938105, -0.021439863, - 0.016184801, 0.02612833, 0.0047927485, -0.0149626015, 0.013915864, - -0.0042281924, 0.0017872837, -0.0031032944, 8.829798e-4, -1.18428674e-4, - 0.03181572, -0.005177589, -0.00672882, -0.009414472, -0.0018240993, - 1.1218046e-4, 0.0044992077, -0.025391918, -0.0073009282, -0.018802067, - 0.019101217, -0.0044503184, -0.008400939, -0.025004687, -0.010823922, - -0.015778478, 0.005035208, 0.0019180556, 0.009894869, 0.022262068, - 0.015366333, 0.034151208, -0.0024647245, -0.008335896, 0.01881545, - -0.025222212, -0.0151790455, -0.021432923, 0.018813498, 0.004371079, - -0.014082868, 0.00945707, 0.0018776384, 0.0047753253, -0.019166213, - -9.716357e-4, -0.018141346, 0.009774522, -0.018341146, 0.0059875464, - -0.013487326, 0.017366344, 0.027730314, -0.014633762, -0.016206944, - -0.023390299, 1.13896924e-4, 0.0030246133, 0.013130134, -0.0035241232, - 0.026683804, -0.01415627, -0.0022583664, 0.00132539, -0.004056734, - -0.011253932, 0.021296067, -0.006596951, -0.003888216, 0.0037331139, - -0.017884564, 0.025822695, 0.0060849376, -0.005212222, -0.019277737, - 0.015869256, -1.6208414e-4, 0.01085938, -0.018552419, -0.025636373, - -0.008227371, -0.005634736, -0.022753159, -0.028312774, 0.013960512, - -0.022858545, -0.016379278, 0.01951052, -0.0014790943, 0.021562159, - -0.0023105994, 0.008271145, 0.010803863, 0.011386223, 0.03417632, - 0.008658399, 0.010537652, 0.008098504, 0.0011373584, 0.0026702206, - 0.011695381, -0.0038811683, 9.782396e-4, 0.00975736, -0.022182241, - -0.022682425, -0.0023389533, 0.0041727996, 0.04049328, -0.008002873, - 9.032021e-4, 0.015572379, -0.019706309, -0.0028850741, -0.008356159, - 0.00527408, -0.008304253, -0.004281521, -0.0014031284, 0.018032864, - -0.011676787, 0.010453384, 3.8635574e-4, 0.007204944, -0.006027032, - -0.009970372, 0.0020888331, 0.007983904, 0.031312533, 0.011781086, - 0.0108534405, 0.005592411, -0.012236378, 0.008043601, -0.005862377, - 0.013659174, -0.041552577, -0.028662464, 0.0024983736, 0.008234995, - -0.016649323, 0.026565101, -0.011930163, -0.002056394, -0.010700085, - 0.0028951077, -0.011036396, 0.012201295, -0.025813602, 0.013156553, - -0.010491942, 0.015414931, -0.01137641, -0.017693782, 0.03481211, - 0.023887591, 0.0029574037, -0.016334979, 0.043207124, -0.002545929, - -0.0017259043, 0.014930945, 0.028982945, -0.010971923, 0.0027742828, - 0.011547729, -0.0076647797, -0.012376324, 0.035522163, -0.0032950283, - 0.026777167, 0.002262615, 0.016495105, 0.01223137, -0.004326122, - 0.016304672, -0.024468783, 0.011597515, -0.0076145376, 0.0014666615, - -0.005308091, 0.021040585, -0.0047239205, -0.0050990153, -0.0021168517, - -0.008644034, -0.0021675834, -0.017178487, -0.003112376, -0.007564235, - -5.097214e-5, -0.011404757, -0.018596618, -0.012226142, -0.011182509, - 0.0057618837, -0.009686456, 0.03161282, 0.021630699, -0.01862473, - -0.003078693, 0.015539558, 0.01931635, 0.0044540865, 0.010522263, - 0.015024445, 0.008153053, 0.020047091, 0.011234999, -0.02530562, - -0.0072653866, 0.0030124115, -0.01404734, -0.035526242, 0.0063234176, - -0.00785451, 0.0044405134, 0.006232797, 0.00677874, 0.019816857, - 0.0018570202, 0.002766322, 0.02797506, 0.011767148, 0.028270626, - -0.008961813, -0.020082885, -0.007654592, 3.685403e-4, -0.016020505, - 0.0120120635, -0.020577587, -0.008570906, -0.02303961, -0.008590931, - 0.0023808032, 0.012774106, 0.020757534, 0.0122317625, 0.0016645815, - 0.005813548, 0.018685574, 0.0017689527, 0.020448448, -0.012790268, - 0.012354753, 0.02935957, 0.006458111, -0.023538304, -0.016278148, - 0.017624648, 0.0057111266, -0.0023647372, -0.010236837, -0.019212509, - -0.008909611, 0.011323084, -0.004434734, -0.007730359, -0.00658241, - 0.018024972, -0.010504463, -0.011006896, 0.03265182, 2.590617e-4, - -0.009483808, 0.016311407, -0.024662197, 0.017223962, 0.0096225105, - -0.009996168, -0.0077927466 + "source.contributors.agent.sourceIdentifier" : [ ], - "reducedFeatures": [ - -0.0078168195, -0.05502879, -0.0034127336, -0.055735916, -0.0062858746, - 0.060555797, 0.017996557, -0.03733259, 0.02209207, -0.05681696, - 0.005259109, 0.022008618, -0.022324061, -0.020933036, -0.06595172, - -0.040826567, 0.060431957, -0.053679653, 0.033642147, -0.034977872, - 8.0603414e-4, -0.011674325, -0.005748392, -0.004357012, -0.0027585214, - -0.04173232, -0.053365912, 0.05266547, 0.02071478, 0.020172281, - -0.038564507, 0.017613122, -0.009922503, -0.01888541, 0.023758365, - 0.03493283, -0.015383337, -0.04630999, -0.052434813, 0.012041557, - 0.016180338, 0.043152418, 0.014067928, -0.01203142, 0.011040989, - -0.027050573, -0.027077653, 0.03493936, 0.009543707, -0.0073744524, - -0.09547376, 0.010842472, -0.015018663, -0.026778793, 0.029546445, - 0.068822, 0.022415103, -0.017378356, 0.02930195, 0.049040094, - -0.0050683413, -0.018033056, 0.027242586, -0.01441285, -4.5985056e-4, - 0.017779136, -0.022355167, -0.0063909595, 0.011313387, -0.038524166, - 0.032855887, -0.046976995, -0.0150886895, 0.056393698, -0.058893014, - 0.041262545, -0.023316832, -0.017368881, -0.031429835, -0.046410464, - -0.023560682, -0.010946818, -0.045642197, 0.019357562, -0.0020900387, - -0.035452433, -0.02657393, 7.994345e-4, -0.008851108, -0.040712997, - -0.027389111, 0.05869857, -0.006287554, -0.03172455, -0.057455655, - -5.7830283e-4, 0.003390251, -0.02194162, 0.046686344, 0.018668177, - -0.012409921, -0.06398906, 0.04048332, 0.02340423, -0.017278757, - -0.0093068, -0.02922485, 0.011132965, 0.028053524, -0.036509503, - 0.016872907, -0.011705267, 0.015111605, 0.0013491138, 0.01400344, - -0.0024785956, -0.057770886, 0.054953683, 0.0029955828, -0.024574975, - -0.009625824, -0.0041703572, 0.0068860305, -0.017176274, -0.04520398, - 0.0015745944, -0.022398727, 0.017837543, 0.014900288, 0.0020536983, - 0.016895974, 0.032414436, 0.036244888, 0.007967803, -0.063402385, - -0.03464809, -0.035053104, -0.004137933, 0.0039982954, -0.030371021, - 0.016346589, 0.021473084, 0.019819502, 0.00980471, -0.06632763, - 0.05338066, 0.03207329, -0.028900461, -0.032358125, -0.024922766, - -0.023868723, -0.034547657, -0.018280283, 0.0011328551, -0.022304682, - 0.007338964, -0.002092805, -0.016407024, 0.0129904095, -0.05056349, - 0.026920874, 0.036170207, 0.09046134, 0.026100013, 0.037890714, - -0.042336848, -0.010072161, -0.021038853, 0.016018104, -0.01368494, - -0.04396284, -0.03258054, -0.035428602, 0.006420825, 6.6460215e-4, - 0.024635559, -0.006648772, -0.0077719353, -0.010874555, 0.020630753, - 0.039733402, -0.031851765, 0.0036925615, 0.03524777, 0.023911433, - -0.03396399, 0.021997217, 0.039844446, 0.011942524, 0.015073773, - 0.009351954, -0.03412009, 0.027067741, -0.006905823, -0.0056537446, - -0.015937312, 0.03028319, -0.007880354, 0.06509042, -0.021760013, - 0.039183393, 0.043070707, 0.06700512, 0.02181453, 0.0040212898, - -0.026226837, 0.060852718, -0.008370746, -0.015912509, 0.04115241, - -0.06157118, -0.013635137, 0.06486006, 0.032803956, 0.01153417, - -0.04746041, 0.030111225, -0.05662466, -0.02526087, -0.05772381, - -0.022756444, 0.019001119, 0.0065682163, 0.06733353, 5.7707337e-4, - -0.0016099939, -0.024463963, -0.021116102, 0.022239473, -0.04782128, - 0.026510626, -0.043397, 0.03582771, 0.01491107, -0.00536697, - 0.020388538, 0.0020794098, 0.057710715, 1.1659464e-4, -0.028921738, - 0.026950715, 4.206496e-4, -0.002826552, -0.013571167, -0.0751314, - 0.048180986, 0.06117124, -0.03382859, -0.03571804, 0.04886581, - 0.006785918, -0.020518528, 0.0070473854, -0.0725902, 0.0040507056, - 0.031564735, -0.015437887, 0.051572766, 0.052666843, 2.997032e-4, - -7.792855e-5, 0.035922356, -0.041322395, -0.0050720037, -0.020662395, - 0.004948135, -0.021317275, -0.021905145, 0.031331334, -0.046981633, - 0.026892781, 0.016754286, -0.02074134, -0.046474967, 0.04113849, - 0.064567894, -0.044276938, -0.057120655, -0.007274903, 0.0012263806, - -0.0022740723, -0.06155252, -0.0010101518, -0.048715316, -0.0035779183, - 0.025234034, 0.029969852, 0.037707184, -0.010085939, 0.011083865, - -0.0010238533, -0.034837995, -0.063336775, -0.0012500727, -0.015858619, - 0.005778913, 0.03830407, 0.006525628, -0.023588505, 0.010596242, - 0.046125673, -0.01760465, 0.021021128, -0.05737533, -0.004734495, - -0.012321155, 0.02139351, 0.026183348, 0.054541886, 0.019685064, - -0.020273078, 0.05366019, -0.037581954, -0.0035494724, 0.04416985, - -0.03530561, -0.020556115, -0.051783733, 0.004472373, 0.019992802, - -0.017114876, -0.054781344, 0.014567582, 0.040425774, 2.498093e-4, - -0.017466675, 0.044897962, 0.008895246, -0.0449718, -0.019145729, - 0.014350893, 0.0017883633, 0.01471629, 0.023538698, 0.0216255, - -0.0022232744, 0.00961529, -0.02299432, -0.004907362, -0.0818488, - -0.02198469, -0.016435577, -0.025708105, 0.06128341, -0.029227553, - -0.010028205, 0.01927819, -0.025564175, 0.030815737, -0.035811327, - 0.0030114714, -0.033766266, -6.3241733e-4, 0.01951471, -0.026415626, - 0.029988464, -0.04234699, 0.021285893, 0.0010714874, 0.045099936, - 0.033440743, 0.0049108407, 0.0043148985, 0.012836702, 0.044108402, - 0.014494959, -0.0010373394, -0.05566203, 5.1379984e-4, -0.006045619, - -0.03769353, -0.008172021, -0.013857711, 0.0098680025, -0.012735838, - 0.002675239, -0.0101697985, -0.024991116, -0.019481227, -0.011361824, - 0.0050947145, -0.03541849, 0.0056069195, -0.045794006, 0.043186486, - -0.018291665, 0.005483346, 0.012726116, 0.0062450026, -0.024663474, - 0.021093711, -0.015306657, 5.007647e-4, -0.027974464, 0.008590693, - 0.044307336, 0.030845275, -0.10716112, 0.008121865, -0.016843766, - 0.04679088, 0.0895966, -0.057600256, -0.046071775, -0.021871062, - 0.031999394, 0.049869332, 0.005206519, 0.035663933, 0.044277173, - -0.08417614, -0.0037377754, 0.019556496, -0.008527593, -0.03139308, - -0.033267662, -0.018604357, -0.04954981, 0.037924487, -0.024745582, - 0.013281426, -0.009146226, -0.060391676, 0.004143688, 0.058707852, - 0.001585036, 0.107448965, 0.01777002, -0.024373109, 0.0071692485, - -0.01537011, -0.0012530851, -0.046012424, -0.02442579, -0.020499222, - 0.03144016, -0.0016090432, 0.035020117, 0.017989792, 0.027281644, - -0.0022267553, 0.0052693724, -0.0036076985, -0.0301353, 0.023941854, - 0.02202281, 0.012948009, -0.026415147, 0.023551617, 0.039300617, - -0.024080414, -0.008007551, -0.031672902, 7.958422e-4, 0.04628546, - 0.0034587015, -0.006356174, -0.0061388686, -0.005367764, -0.031748034, - 0.0040628207, -0.028745003, -0.05950986, 0.029843653, 0.007585374, - -0.040933393, 0.017807407, 0.03212895, -0.073843956, -0.0010980801, - 0.015477847, 0.021988971, -0.011901376, 0.023887794, 0.07553533, - 0.05446947, -0.004776411, -0.0053554354, 0.054851886, -0.01181127, - -0.06314478, -0.054550376, -0.00997196, -0.008714932, 0.0026472146, - -0.0015864826, -0.0012834666, -0.008155262, -0.003446689, -7.9652783e-4, - -0.04760896, 0.0040674987, 0.0021879955, 0.021185674, -0.07229061, - -0.018548157, 0.016172776, 0.015589161, 0.008816922, 0.04674186, - 0.046441503, -0.014345839, -0.012152209, 0.008610416, 0.0091292765, - -0.018698364, 0.031629324, 0.033308964, -0.0126905395, 0.0061131865, - -0.021588929, -0.037965182, -0.044327065, -0.0141801825, 0.044818066, - -0.054531295, -5.727567e-4, -3.3058943e-5, -0.0352583, -0.016848754, - 0.024044227, 0.024303298, 0.013248404, 0.0051724683, -0.022394616, - 0.020269794, -0.012943886, 0.037844952, -0.002944931, 6.249594e-4, - -0.0068323505, 0.040928736, 0.027228994, -0.05091635, -0.054772507, - -0.0184056, 0.0066868286, 0.03674518, -0.023724303, 0.054744925, - 0.03179675, 0.012520249, 0.036873274, -0.033210818, 0.013220709, - 0.01407055, 0.05202971, 0.006063197, -0.012258416, -0.03469648, - 0.0013742389, 0.013675904, 0.0019059598, -0.06289145, 0.009259439, - 0.02344944, -0.014525503, 0.029959068, 0.010820937, 9.6614973e-4, - 0.048788156, -0.034931265, -0.013675436, 0.0072887763, -0.04744352, - -6.69451e-4, -0.019388136, 0.046955757, -0.013813177, -0.013902209, - 0.017035924, -0.020352157, -0.028235843, -0.017676016, 0.05271848, - 0.007268548, -0.0076907943, -0.008117983, 0.03505972, 0.025364032, - 0.031820275, -0.027486462, -0.012120504, 0.008089348, -0.065091416, - -0.0502024, 0.010577502, 0.018639714, -0.013989805, 0.047584273, - 0.0326637, -0.017872842, -0.006884143, -0.0074530137, 0.03953277, - -0.0056191124, -0.007924104, 0.016113762, 0.0143864965, 0.035112064, - 0.01776305, -0.0011176562, 0.0041435845, -0.07947301, -0.043599423, - -1.8785002e-5, 0.0026998469, 0.0457319, 0.012400291, -0.012704626, - 0.014592863, 0.021325976, 0.014663591, 0.06448209, -0.013078371, - -0.00991134, -0.064309284, -0.013457597, 0.0011407811, 0.015221745, - -0.016900796, -0.01947593, 7.0055755e-4, -0.019137904, 0.034915823, - -0.0030485902, 0.025789738, 0.011120805, -0.01388361, 0.074967325, - -0.017723257, -0.02559341, 0.016481007, 0.074275106, -0.042082727, - 0.01858098, -0.041632738, 0.0042085666, 0.009063018, 0.026155088, - -0.020139722, 0.024602741, 0.072577804, -0.011165183, -0.013746933, - -0.032348756, 0.0076091643, -0.03032168, -0.04241445, -0.014985341, - 0.0041141105, -0.006116754, -0.02586125, 0.0045731813, -0.027498862, - -0.0029201698, -0.019670984, -0.06397789, -0.009506264, -0.007846487, - 0.0154305175, -0.0044966456, -0.013548931, 0.021765355, 0.0064879484, - 0.04522692, 0.04658874, -0.004434006, 0.025532786, 0.00578085, - -0.04067802, 0.004101176, 0.04890009, -0.030869704, -0.013016846, - 0.04949312, -0.04106828, 0.015815139, -0.030330345, -0.009749409, - -0.033235893, -0.033933017, 0.018097218, 0.022109851, 0.034663998, - -0.0268284, -0.013135702, 0.034621682, 0.022328185, -0.025592936, - 0.01917783, 0.017474126, -0.025286859, -0.052272115, 0.0128358025, - -0.015157043, 0.020794667, -0.01808299, 0.041717924, -0.0573892, - 0.015576282, 0.05027088, 0.0643337, -0.007510525, -0.022557005, - 0.015066282, -0.030609405, 0.01914474, -0.040845577, 0.030875884, - 0.075048454, -0.004380313, 0.021620385, 0.0031067282, -0.012692818, - -0.04632865, 0.029730732, -0.02454659, -0.042617597, -0.026846169, - 0.0052800616, 2.76199e-4, 0.010475723, 0.0112652965, 0.08324494, - -0.029326007, 0.05568641, 0.041917555, 0.020415168, -0.015582598, - -0.012762908, -0.008578195, -0.057652295, 0.027025262, 0.0364272, - -0.02637723, -0.014446805, 0.004429035, 0.061170585, -0.0023800556, - 0.020793244, 0.08042579, 0.0058259754, 0.019760257, 0.0269725, - -0.046984237, -0.013985016, 0.06758527, 0.025155127, 0.029785288, - -0.0026196495, -0.020341858, 0.035535738, -0.028788926, 0.0551034, - 0.0026325088, 0.037452713, 0.020974444, 0.06220806, -0.013948902, - -0.048183113, 0.024908695, 0.028425876, -0.07609839, 0.06787053, - 0.007209027, -0.011047938, -0.02174071, -0.019990029, -0.029370323, - -0.004634432, -0.014382433, 0.008291275, -0.0083883405, 0.029916236, - -0.02714151, -0.028128998, 0.019528886, 0.044617604, -0.023656778, - -0.008660188, 0.058023483, -0.018388763, -0.065883495, 0.03515142, - -0.011166052, 0.021059275, -0.028367717, -9.4354834e-4, 0.013726154, - 0.026032753, -0.0056738653, 0.027627653, 0.0036052994, -9.97797e-4, - -0.0420598, -0.010675889, 0.035151187, 0.017854625, 0.0016972506, - -0.031226613, -0.046691153, -0.036054246, -0.041882843, 0.047635637, - 0.0042070085, 0.019059805, -0.0036608858, 0.027579678, -0.0208027, - -0.023363791, -0.027850356, -0.025509529, 0.0151080685, -0.029220214, - 0.055419262, -0.012850093, -0.0024904716, 0.029800452, 0.05766901, - 0.0010726919, -0.0081248935, 0.01628148, 0.032909907, -0.02841608, - 0.021999717, 0.022496428, -0.04352166, 0.0071385778, -0.0040478706, - -0.06313266, -0.008707702, -0.08273561, -0.0722582, 0.0060223527, - -0.035787895, 0.0051633753, -0.025756657, 0.059762925, -0.0591041, - 0.03940042, 2.7006233e-4, -0.034810293, 0.030620243, -0.006418404, - 0.03800505, -0.007388366, -0.0041996925, -2.692094e-4, 0.010597352, - -0.011690949, 0.0032987958, -0.043172095, -0.0091916025, -0.0065822597, - 0.002490982, 0.056010112, -0.03847621, -0.018607771, -0.01884236, - -0.0032027322, 0.04236924, 0.021807717, 0.039949488, -0.0189084, - 0.011431329, 0.02777219, 0.027318193, -0.0033899872, -0.031491604, - 0.004585578, 0.06130711, 0.009812626, 0.017719006, 0.019032478, - 0.034341164, 0.025085667, 0.033101544, 4.8743933e-4, 0.034296878, - -0.034175348, -0.019632759, -0.010442438, 5.877676e-4, 0.028887734, - 0.0022663206, -0.038162947, -0.002149488, 9.769462e-4, -0.03671051, - 0.04246705, -0.035464916, -0.010029145, 0.0254468, -0.062031984, - 0.015538466, -0.016373707, -0.011965525, 0.015521062, 0.04351236, - 5.178996e-4, -0.057655927, -0.027626276, -0.003612389, 0.02966925, - 0.03527649, 0.012051771, 0.024875399, 0.010046713, -0.020709004, - -0.058416344, -0.0076574516, 0.026548013, -0.021470977, -0.0095343385, - 0.010919839, 0.020532599, -0.013176664, 0.025319451, -0.0023506465, - -0.009544948, -0.020130452, -0.03472874, -0.025159143, 0.0040628165, - 0.012074488, 0.025867594, 0.016440699, 0.029199919, -0.009500201, - 0.0389684, 0.017563576, 0.020826986, -0.019397737, -0.044646557, - 0.0074949646, 0.0048483894, -0.004294229, -0.04826366, 0.016328437, - -0.04603006, -0.029929228, -0.009338753, -0.054526974, -0.002807546, - 0.038821056, -0.0147803705, -0.011878471, 0.059965502, 0.010892966, - -0.022873478, 0.0649758, -0.060164914, -0.002421607, 0.021521538, - 0.015038395, -0.054605767, -0.058505807, 0.033237197, 0.044270337, - -0.012450171, 0.0052200286, 0.008495182, -0.04100028, 0.009946673, - -0.041135877, -0.02564286, 0.0022647583, 0.0067244824, -0.021129604, - -0.01442172, 0.022721563, -0.02483131, -0.00628239, -0.011244834, - -0.023387415, 0.0017941066, -0.025470126, 0.050684348, -0.0054646353, - 0.006157863, 0.027229931, 0.009391447, -0.016965711, 0.04074434, - -0.0025610472, 1.2549513e-4, 0.037467077, 0.0021334717, 0.0052344715, - -8.8310416e-4, -0.004857763, 0.009383132, -0.04276016, 0.019168304, - -0.053753484, -0.008696008, -0.037131056, 0.023750747, 0.0036918425, - 0.016814832, 0.013008167, 0.0018047155, 0.016999032, -0.0057462617, - 0.025145648, 0.00492113, 0.0035113553, 0.025631774, 0.0035078754, - -0.06944876, -0.022470593, 0.0343612, 0.010567654, 0.011830555, - 0.01879555, -0.03352785, 0.019253239, -0.016990338, -0.0018012874, - 0.003001173, 0.008342265, 0.012237912, 0.03964238 + "source.genres.label" : [ + ], + "source.genres.concepts.id" : [ + ], + "source.genres.concepts.sourceIdentifier" : [ + ], + "source.subjects.label" : [ + "Squashed squirrels", + "Simple screwdrivers" + ], + "source.subjects.concepts.id" : [ + "subject1" + ], + "source.subjects.concepts.sourceIdentifier" : [ + "y8ZBmObzMW" + ], + "source.production.dates.range.from" : [ + ] + }, + "vectorValues" : { + "features" : [ + 0.011131856, + -0.010486431, + -0.030248063, + -0.03646668, + 0.028385373, + 0.0023605619, + 0.0047441716, + -0.0063467063, + -0.022356989, + -0.005437097, + 0.005438267, + 0.017809361, + -0.019375516, + -0.020952102, + 0.011317732, + -0.0033840502, + -0.037297674, + 0.01322977, + -0.0039499123, + -0.0095098745, + -0.0071855183, + -0.0053033754, + -0.015817495, + -0.014967336, + -0.017154284, + -0.0035929482, + 0.0060453275, + 0.0016461576, + -2.8818822E-4, + 0.020241015, + 0.008204872, + -0.004686896, + 0.0016616572, + 0.018737188, + -0.010241311, + -0.03260154, + -0.005603512, + -0.0013067215, + -0.01884209, + -0.0090159755, + -0.00220377, + -0.012424115, + -0.028540397, + 0.017571438, + 0.0040269536, + -0.02748565, + 0.01604602, + 0.010169623, + 0.015560638, + -0.035791565, + 0.008331671, + 0.04683395, + -0.010684638, + 0.011044338, + 0.003338977, + -0.0044305325, + -0.033710655, + -0.018353926, + -0.009989757, + -0.0032443004, + -0.014298359, + 0.02514528, + -0.013573191, + -0.004508951, + 0.0020090393, + 0.010349, + 0.003380656, + -0.013053168, + 0.004242268, + -4.225327E-4, + 0.006735279, + 0.011013288, + -0.0064410265, + -0.028142089, + 0.0018074773, + -0.0046618143, + 3.997984E-4, + 0.015975738, + 0.003258424, + -0.019606499, + 0.02241932, + 0.003280913, + 0.01642587, + 0.020116491, + -0.014420322, + -0.007566686, + -0.018718274, + 0.013288609, + 0.002867719, + 0.01765449, + 0.00798946, + 0.015799267, + -0.022332355, + 0.024502536, + -3.378761E-4, + 0.0076872087, + -0.038211834, + -0.009835394, + 0.007985291, + 0.011374021, + 0.02430223, + 0.0037934901, + 0.007015082, + 0.018155985, + 0.0046563544, + 0.021417676, + 0.01819104, + -0.022115836, + -0.008453624, + 0.007871682, + 0.009775728, + 5.473031E-4, + 0.005337588, + 0.02075586, + -0.018566638, + 0.0017757514, + -0.010765392, + -0.0025912381, + 0.012591532, + -0.010518238, + 0.01145798, + 0.011878187, + -0.010080792, + 0.01429923, + 0.01548795, + 0.004894028, + -0.01666214, + 0.006381703, + -0.012507918, + -0.0070870807, + -0.00961308, + 0.022053279, + 0.023423642, + -0.0046877246, + 0.0021995376, + -0.036940552, + 0.013918102, + -0.022445144, + -0.008196176, + -0.029357892, + -0.0049267756, + -0.02833191, + -0.019101836, + 0.004206254, + 0.0020832615, + 0.006502935, + -0.008955942, + 4.631758E-4, + 0.017926829, + -0.029521009, + -0.0021780024, + -0.01901708, + -0.0031382376, + -0.01895393, + -0.020853812, + -0.0010384398, + 0.001076768, + 0.005274673, + -0.0116736675, + -0.02681252, + -0.0025872511, + 0.0014223448, + -0.005167637, + 0.0013838116, + -0.010945797, + -6.18961E-4, + 0.0044662347, + 0.0024727022, + 0.015447022, + -0.01632656, + -0.009499144, + -0.026058564, + -0.031578917, + -0.004898283, + 0.0019221037, + -0.017326476, + -0.00414059, + -0.011077915, + -0.008559221, + -0.006475239, + -0.013485973, + -0.019630661, + -0.021628367, + 0.0144621255, + 0.0042604995, + -0.031011842, + 0.02284523, + -0.02291308, + 0.0068688584, + 0.009647227, + -0.01688792, + 0.0389, + 0.017798485, + -0.012933252, + -0.0018213253, + -0.0113704065, + 0.0019690131, + 6.5821427E-4, + 0.0020324315, + -0.018012565, + -0.009136634, + 0.0107188, + -0.038342305, + 0.013317562, + -0.0013245215, + -0.005068649, + -0.016698835, + 0.0010922163, + -0.0091025485, + -0.02464225, + 0.0030886852, + -0.008181259, + 0.004220596, + 0.019573165, + 0.00539937, + -0.028624404, + -0.028897183, + -0.004366675, + -0.012197801, + -3.6764384E-4, + 0.013698331, + -0.020450957, + 0.0105935, + -0.009375375, + -0.006433709, + -0.033774436, + 0.014367619, + 0.013723586, + -0.021321114, + -0.0076435693, + 0.004301123, + 0.0038175334, + 0.016985547, + 0.015652744, + 0.007446581, + 0.0034006566, + -0.026056122, + -0.014213744, + 0.04088787, + -0.019405406, + 0.0026804064, + -0.006380531, + 0.010172489, + 0.02514358, + -0.0075593432, + -0.016266076, + 0.042149764, + 0.005520697, + 0.0056833276, + -0.0065221684, + -0.028673934, + -0.008225832, + 0.01259115, + 0.017837038, + -0.0068351957, + -0.028272219, + 0.0073177856, + -0.008577949, + -0.009067709, + -8.1419066E-4, + -0.010007462, + -0.0140582295, + 0.015713874, + -0.010406529, + 0.0125619415, + -0.007116438, + 0.028743457, + -0.022968875, + 0.005084626, + 0.010295387, + -0.040513705, + -0.003841546, + -0.027912388, + 0.009850628, + 0.0063376385, + -0.021292794, + 0.022490889, + -0.012561741, + 0.021997504, + 0.016417524, + 0.010995078, + -0.0069949795, + 0.0045344136, + -0.03171099, + -0.0102754105, + 0.0021710785, + 0.0064170626, + 0.0062344917, + 0.011671624, + 0.003802039, + 0.0025594828, + -0.006857318, + -0.013202498, + -0.010131442, + 0.017997287, + -0.012241717, + 0.014516529, + 0.019116621, + 0.0179783, + 0.006088925, + -0.011710854, + 0.018856946, + -0.012492234, + 0.025171481, + 0.029543834, + -0.006815365, + -0.010563005, + 0.029040214, + -0.025833622, + -0.0044787847, + -0.010968123, + 0.021800285, + 0.014210149, + -0.016399872, + 0.037522435, + 0.035108913, + 0.029392997, + -8.8137574E-4, + 0.014099748, + 0.015192912, + -0.018134318, + 0.0088473195, + 0.0050923815, + -0.010240447, + -0.021515885, + 3.4732872E-4, + -0.011615495, + -0.008440935, + 0.0073171733, + -0.012702058, + -0.011830526, + -0.0090167215, + -0.016545443, + 0.021043481, + -0.018101078, + 0.0059193443, + 0.022988597, + 0.01310781, + -0.014361196, + -0.019382237, + 0.010046654, + 0.024077352, + -0.022907648, + -0.008159967, + 0.01838277, + -0.023022316, + 9.78192E-5, + 0.033635587, + -0.011840359, + 0.014055475, + -0.005689469, + 0.027144188, + 0.0053548906, + -0.023367833, + 0.02381466, + -0.0104960995, + 0.0047680195, + -0.007867957, + 0.0065567424, + -0.022395724, + -0.015038103, + 0.034055524, + 0.019426292, + -0.02116914, + 0.0031137234, + 0.020751432, + -0.02410775, + -6.896154E-4, + -0.030206418, + 0.011150178, + -0.011145771, + 0.011639923, + -0.0026073183, + 0.011662343, + 0.010794917, + 2.8108121E-4, + -0.0062456755, + 5.0412395E-6, + 0.019293789, + 0.0109012965, + 0.022645442, + -0.0075472677, + 0.01784787, + 0.0035609389, + 0.0068667275, + -0.005736237, + -0.011398333, + 0.016409393, + -0.00575401, + -0.016377103, + 0.0037799897, + 0.01395333, + 0.010075945, + -0.01592541, + -0.008835592, + 0.0031594224, + 0.014223127, + -0.0012580887, + 0.015803535, + -0.013572904, + 0.0030597118, + 0.0051859817, + -0.016957749, + 0.012055364, + -0.0043646395, + 0.0070497426, + -0.003921002, + 8.5689273E-4, + -0.021205897, + -0.0056640273, + -0.0071686264, + 0.017687723, + -0.016935226, + -0.013609582, + 0.01692029, + 0.014455478, + 0.02737976, + -0.0094847465, + -0.011718637, + 1.6196E-4, + 0.00598239, + 0.0061450163, + 0.017458305, + 0.006342164, + -0.0077352594, + -0.010920296, + -0.026046928, + -0.010251072, + -0.011917608, + -0.010099342, + 0.0318822, + -0.010945177, + 0.016779346, + -0.007414791, + -0.017985541, + -0.008538271, + -0.0065424195, + -0.034934092, + 0.0133732725, + -0.021114476, + -0.0073578684, + 0.019701501, + -0.004456202, + -0.010915221, + -0.011426319, + -0.0073344465, + 0.0028773027, + 0.009819274, + 0.01102123, + -0.0012365349, + -0.027581234, + 0.0016620308, + -0.010562101, + -0.01350303, + 0.0050224513, + 0.001017762, + 0.008621731, + -0.011130853, + -0.01073141, + 0.003972699, + 5.663101E-4, + 0.0055039986, + 0.008094583, + 0.003917527, + 0.0031506298, + 0.021572927, + 0.006869773, + 0.029379321, + 0.006646171, + -0.008414936, + 0.007589332, + -0.009685911, + 0.021863667, + -0.012908912, + -0.018431205, + 0.018741872, + 0.0022120308, + -0.0061884965, + -0.0073428457, + -0.012136123, + -0.041228842, + 0.003367138, + 0.019481607, + 0.0046612904, + -0.024767812, + 0.023223849, + 0.0112320995, + -0.011938242, + -0.004033664, + 0.0209937, + -8.3524897E-4, + -0.011981141, + 0.023919923, + 0.00403852, + 0.0074633933, + -0.004875525, + 7.3303754E-4, + -0.016938724, + 0.010546014, + 0.017762806, + 6.818227E-4, + 0.006883599, + -0.061351825, + 0.008375486, + 0.029046679, + 0.0037190283, + 0.020276735, + -0.0027711561, + 0.006972215, + -0.006763749, + -8.543448E-4, + -0.0025973446, + -0.027179169, + 0.007969203, + -0.004392352, + -0.0021839878, + 0.0028041962, + -0.010381435, + -0.018081125, + -0.017876046, + -0.016567934, + -0.0012689629, + 0.01836859, + 0.043095253, + -0.008374757, + -8.657584E-4, + 0.010938472, + -0.0015257389, + -0.024484536, + 0.016098091, + 0.015490282, + -0.029799944, + 0.032416645, + 0.022865988, + 0.024673862, + 0.007315645, + -0.006775392, + -0.0137863085, + 0.029001165, + -0.0077590407, + 0.012177427, + -0.013564163, + 0.0011730273, + 0.027830638, + -1.475577E-5, + -0.022540102, + 0.0064056665, + -0.0032699879, + 0.0029227114, + -0.004830033, + 0.012127996, + -0.017343365, + 0.0025237093, + -0.009644504, + -0.015386699, + -0.017504737, + 0.020194653, + 0.006296481, + -0.009109565, + 0.005850651, + -0.011291961, + 0.0043143956, + -0.015882455, + -0.026653344, + 0.0075573423, + -0.00298803, + -0.012674567, + 0.016654288, + -0.0080380365, + 0.01908416, + -0.011837802, + 0.0076601547, + -0.036461942, + 0.0048966827, + -0.021322675, + -0.023182362, + -0.02135386, + 0.025170237, + 0.025256494, + -0.0048962645, + -3.5159528E-4, + -0.0013794625, + 1.3507887E-4, + -0.03403415, + -0.018392095, + 0.014693738, + 0.023799226, + 0.0027316867, + 0.005411253, + -0.019072743, + 0.0074261064, + 0.014371005, + 0.023009209, + 0.013508271, + 0.0028134235, + 0.019680317, + 7.0908264E-4, + -0.0050610257, + 0.007162477, + -0.005468343, + 0.010742035, + 0.030459743, + 0.0120835155, + -0.0019831217, + 0.014557967, + -0.04079272, + 0.008858548, + -0.0013612543, + -0.0048944126, + 0.008200954, + 0.037356175, + 0.011789725, + 2.828143E-4, + 0.0075088507, + 0.01538374, + -0.0077043925, + 0.01548715, + 0.03645846, + 0.014252511, + -0.010894622, + -0.004636539, + 0.007695098, + 0.00851719, + 0.0014374674, + -0.0048173587, + 0.0015669129, + 0.018870756, + 2.9687995E-5, + -0.034388598, + -0.014988893, + 0.020520218, + -0.008145695, + 0.003062012, + -0.012167825, + -0.03153599, + 0.00884195, + 0.0021874518, + -0.029756669, + -0.0046688733, + -0.01242826, + -0.0126513485, + -0.010360493, + -0.003270893, + -0.013169356, + 0.011813894, + -0.0025427674, + 0.015483851, + 0.012096376, + 0.014164455, + -0.007603868, + 0.0055443174, + -0.01072693, + -0.01426083, + 0.0019598026, + -0.004349261, + 0.021194484, + 0.012879448, + 0.009844739, + 0.02056813, + -0.022987189, + 0.012600951, + 0.009741825, + 0.011046933, + -0.017217834, + -0.024788871, + -0.0010516647, + -0.028014546, + 0.013166957, + -0.010313445, + -0.017162802, + -0.03516105, + -0.025485149, + 0.011548096, + -0.008014284, + -0.006177239, + 0.017837534, + 3.943407E-4, + -0.027639057, + 0.0059827906, + 0.027763458, + -0.003245413, + -0.012104542, + -0.018169878, + -0.03885584, + 0.005119201, + -0.016737372, + -0.015175979, + -0.0050872765, + 0.010746798, + -0.0074387034, + -0.00800354, + -0.0035385594, + 0.003717395, + -0.027404172, + -0.0048027425, + -0.010556918, + 0.016704407, + -0.003074025, + -0.0065772133, + -0.0020064784, + -0.0020148843, + 0.003116659, + 0.0047853235, + -0.0027233995, + 0.0033698208, + -7.8345713E-4, + -0.010392269, + 0.016033072, + 0.012556959, + 5.301929E-4, + -0.01350883, + 0.001995626, + 0.026822157, + 0.006492802, + -0.006464316, + 0.008754346, + 0.029513288, + 0.024386084, + 0.025998367, + 0.0032579675, + -0.01261689, + -0.0076301177, + -0.001616973, + 0.005424145, + 0.026812797, + 0.0017211653, + -0.009340588, + 0.026481709, + 0.025016954, + -0.0014028382, + -0.00503496, + -0.015250333, + -0.009464118, + 0.002352342, + 0.034714613, + -0.02307947, + 3.8722545E-4, + 0.0099410005, + -0.033864148, + 0.016313914, + -0.0035694635, + 0.0063565895, + -0.008207015, + -0.0024246974, + 0.017936094, + -0.0031804095, + -0.010860268, + -0.0030016755, + -0.029291578, + 0.014704983, + 0.0056486856, + 0.018342156, + -0.0062970133, + -0.0069630593, + 0.013378151, + 0.01024406, + -0.005345905, + -0.005303887, + 0.008498638, + 0.049759, + -0.00918247, + -4.5779106E-4, + 0.013500775, + 0.0088222, + 0.007077436, + 1.250294E-4, + -0.0047691134, + -0.011170448, + -0.020247571, + -0.011075155, + 0.002904136, + 0.0035700602, + 0.021461906, + -0.0028199283, + -0.033537112, + -0.0051508565, + 0.0095050065, + -0.007662375, + 0.014088204, + 0.008248536, + 0.021396255, + 0.037298735, + -0.015311441, + -0.04605159, + 0.019494945, + 0.02241128, + -0.021439126, + 0.023096973, + -0.021478504, + -0.011404815, + -0.0047977464, + 0.014200382, + -0.019631078, + 0.03050134, + 0.0051991967, + 0.016992666, + 0.001607202, + -0.0092168525, + -0.013369938, + -0.026228411, + -0.031522483, + -9.932574E-4, + -0.004133917, + -7.6122564E-4, + 0.0049278215, + 0.018161507, + 0.01714661, + 0.029987847, + -0.007423701, + -0.002881742, + -0.002640765, + 6.567014E-4, + -0.009432128, + -0.006369188, + 0.0052096685, + -0.022286957, + -0.009063089, + 0.010703106, + -3.2877843E-4, + 0.01991406, + 0.007979165, + 0.026166214, + 8.553203E-4, + -0.010703176, + -0.0012890702, + -0.009638373, + 0.0031447161, + 0.011308462, + -0.015239601, + 0.015099423, + 0.0010501678, + 0.0031072467, + 0.014682338, + 0.013502608, + -4.4899312E-4, + 0.03139947, + 0.005055022, + -0.016286653, + 0.014852914, + -0.0018316357, + -0.0036326093, + -0.009115628, + 0.0016589103, + 0.017856022, + -0.029929077, + 0.0059978794, + 0.00982836, + -0.024071012, + 0.011459374, + -0.011738765, + -0.01010181, + 0.0142496945, + 0.0048796767, + -0.009708197, + -0.029850286, + 0.005668608, + -0.025690088, + -0.031344164, + 0.019055925, + 0.018748114, + -0.0016182836, + 0.017511545, + -0.022676647, + 0.0028400817, + 0.028839651, + 0.0038569195, + -0.022568122, + 0.0053999326, + 0.007798234, + -0.012329542, + -0.0076267784, + -0.0011787306, + -0.013980626, + 0.0039054593, + 0.010031143, + -0.0030406245, + -0.03276254, + -0.012600049, + 0.032973804, + -0.010003748, + 0.022148399, + 0.015253164, + 7.819084E-4, + 0.036956366, + 0.015281897, + 0.0021648102, + -0.029408958, + 0.020732397, + 0.04337507, + -0.017363314, + 0.014152006, + 0.0021324414, + -0.004163456, + -0.0019551173, + -0.0097316895, + -0.0056534307, + -0.004455116, + -0.0051978547, + -0.0022509422, + -0.006276649, + 0.0075785057, + 0.0014860056, + 0.005286392, + -0.008023709, + 0.023841467, + 0.012394618, + -0.013050519, + -0.01697741, + 9.322119E-4, + -0.0064498736, + -0.0033970033, + -0.018907877, + 0.016446369, + 0.023033531, + -0.025926571, + 0.0052308696, + -0.004797083, + 0.006474066, + -0.025054587, + 0.013523296, + -0.020304581, + -0.0047661657, + 0.007160469, + 0.013319435, + 0.02338062, + -0.02097497, + -0.012559636, + -0.003672721, + -0.019316446, + 0.0047180452, + 0.0050973864, + 0.0052979332, + -0.002849206, + 0.013150899, + -0.018568931, + -0.0064610415, + -0.02268047, + -0.011907148, + 0.022475064, + -0.011915272, + 0.0013276768, + 0.0053410353, + 4.973104E-6, + -0.01764222, + -0.0024364127, + 0.003948875, + 0.0013780365, + 0.011663934, + 0.0059595197, + 0.009461393, + -0.016571349, + 0.008393681, + -0.022811139, + -0.002833604, + -0.007576261, + -0.003923026, + -0.01706632, + 0.0070452867, + 0.038768787, + -0.017034072, + 0.0060196514, + -0.021684002, + 0.023768745, + 0.012987024, + 0.01776981, + 0.0011092931, + -0.007673044, + -0.0011907681, + -0.012119474, + 9.585516E-4, + -0.023040047, + 0.005636768, + -0.013312078, + 0.010508615, + 0.0046757585, + 0.025954206, + -0.012165964, + 0.0053625503, + 0.0048098313, + 0.005107432, + -0.0052944883, + 0.013879828, + 6.3275703E-4, + -0.0029588332, + -0.005405953, + -0.0018119067, + 0.0077660084, + 0.0068124128, + 0.005295713, + -0.011094538, + -0.006547637, + -0.005709218, + 0.0056983465, + 0.006900748, + -0.0015676437, + -0.004804542, + -0.0144236395, + 0.013023522, + -0.008401344, + 0.018558277, + -0.0072284057, + 0.010037314, + 0.005807188, + -0.016179914, + 0.016599925, + 0.016513493, + 0.014281458, + -6.3513307E-4, + -0.02363381, + -0.009707781, + 0.00494033, + 0.0013328049, + 0.0065410743, + 0.04208638, + -1.01601785E-4, + -0.0062459265, + -0.01192436, + 0.01457586, + 0.017484723, + -0.0060705985, + 0.012544787, + 0.024937918, + 0.018777123, + 0.017503921, + -0.02038971, + -8.7769754E-4, + 7.768092E-5, + -0.018408537, + 0.005481105, + -0.0044963127, + -0.018336048, + 0.010625757, + 0.017458627, + -0.0084928805, + -0.018453773, + 0.010394238, + -0.0070664, + 0.030453632, + 0.010567714, + -0.023777774, + -0.0034156246, + -0.009807833, + 0.0012688513, + -0.008358073, + -0.010993209, + 0.0041039335, + 2.2311343E-4, + 0.0023748593, + 0.009890404, + 0.010052352, + -0.006655581, + 0.032749057, + -0.029320633, + 0.027655302, + 0.015191534, + 0.012681549, + -0.011895348, + -0.00691396, + -0.027280757, + 0.001940894, + 0.02517736, + 0.008733588, + 0.00980356, + -6.7001366E-4, + 0.02531907, + 0.0015138511, + 0.017059375, + -0.010289701, + 0.037369985, + -0.01250297, + -0.038209733, + -0.027549392, + -0.010764694, + -0.007962511, + -0.011386354, + 0.010627706, + 0.007231984, + 0.0065507414, + -0.0010626977, + -0.026454268, + 0.01888543, + 0.0073992093, + 0.010356328, + 0.0035180806, + 0.016992783, + 0.0070907683, + 0.0014604112, + -0.0018527764, + -0.0027608958, + -0.013702432, + -0.024510784, + -0.008855075, + 0.014652909, + 0.016674228, + 0.03226435, + -0.014925519, + -0.02031868, + -0.0010742337, + 0.023791099, + 0.03270833, + -0.0086238375, + 0.028375527, + 0.005126683, + -0.012277268, + -0.012554263, + -0.02145734, + 0.0013344606, + 0.008518948, + -0.015836189, + 0.005924657, + -0.023420034, + -0.006858367, + -0.0049117045, + -0.0073125185, + 0.014850673, + 0.006615861, + 0.0035696041, + 0.043765977, + 0.031321425, + -0.015022056, + 0.0038184477, + -0.017277282, + -0.002530515, + -0.024098216, + -0.028338091, + 0.0051083225, + 0.007396675, + -0.011523899, + 0.027947491, + 0.00847008, + 0.0232667, + -0.015226407, + -0.0052429005, + -0.024602363, + 0.0038249486, + -4.2559227E-4, + 0.0025880404, + -0.03367454, + -0.00782537, + 0.008297066, + -0.0013373288, + 0.0040808097, + 0.021936653, + -0.013141747, + 0.007192505, + -0.013906808, + -0.018533414, + 0.0033294824, + 0.004250191, + 0.019782877, + -0.015376686, + -0.024545893, + -0.0064020758, + -0.0052787154, + 0.011588918, + 0.02811774, + 0.007370917, + 0.0030790707, + -0.009536261, + -0.0069268295, + 0.004512111, + 0.018863013, + 0.027435774, + -0.006098742, + 0.022803938, + 0.0035107476, + 0.021736097, + -0.014075875, + 0.0075956434, + -0.0170544, + -0.0057687596, + -0.0020534575, + -0.0033146031, + -0.028127674, + -0.0256548, + 0.0074681547, + 0.009353701, + -0.0065779723, + -0.001989344, + 0.011189522, + 0.009747894, + 0.0066943914, + -0.0034601823, + -0.012648243, + -0.018034007, + -0.013726758, + 7.990947E-7, + -0.006579262, + -0.0025440517, + 0.014629475, + -0.01168944, + -0.0044688694, + -0.016769458, + -0.014686771, + 0.0035931568, + 0.016031593, + 0.0030662308, + 0.023941174, + 0.029230721, + -0.019136308, + -0.0130813075, + 0.013757732, + -0.013956934, + 0.010035143, + 0.0065433187, + 0.0065767393, + 0.014229502, + 0.0077453875, + -0.010313207, + 0.02820064, + -3.1676888E-4, + -0.0040889042, + 0.008499992, + -0.012180096, + -0.010564841, + -1.5282113E-4, + -0.0033405072, + 0.0035438098, + -0.0021211694, + 0.0056689386, + -0.020127939, + 0.011692779, + 0.0074169873, + 0.025717739, + 0.017611636, + -0.025397107, + -0.0033788753, + 0.010888905, + -0.006894122, + 0.0056755925, + 0.0037729307, + 1.2767661E-4, + 0.010182966, + 0.013696869, + 0.030110473, + 0.026076328, + 0.017940922, + -0.0057225116, + 0.0048176874, + 0.0040263566, + 0.001268733, + 0.0244278, + 0.0025518804, + 0.009050872, + -0.002285377, + -2.0838516E-4, + 0.012590149, + 0.01490496, + -0.01984261, + -0.029221494, + -0.005962834, + 0.021587554, + 0.023463167, + -0.043342724, + -0.007844915, + -0.010824921, + -0.005217951, + 0.0042190365, + 9.5206517E-4, + 0.009156007, + 0.0069909827, + -0.009608013, + -0.011444333, + 0.0057893475, + 0.013628153, + -0.003088227, + -0.0015191945, + 0.03409054, + 0.0034421424, + -0.0017043431, + 0.015682476, + 0.017427593, + 0.025159208, + -0.025900956, + -0.0031055247, + -0.0025020042, + 0.0038702553, + -0.0140239615, + -0.0035897729, + 0.017016435, + 0.0061228885, + 0.019153373, + -0.032784946, + -0.012233601, + -0.020405913, + 0.009913554, + 0.0028404212, + 0.0021737898, + -0.007326059, + -0.017980117, + -0.008808727, + 0.015392908, + 0.0014703282, + -0.017516287, + 0.0044774585, + -0.0023091552, + -0.0015219015, + 9.349776E-4, + -0.0010833782, + 0.0063611693, + 0.0030607826, + 0.008453876, + 0.011299396, + -0.023679625, + -0.0072111744, + -0.011799911, + 0.02278407, + 0.0033082443, + 0.004787259, + 0.005027022, + -0.020804457, + -0.008301438, + 0.0043587033, + 0.00485305, + 0.004966511, + -0.036912728, + 0.0014567792, + -0.0029379728, + 0.010432612, + -0.010328863, + -0.021928433, + -0.02181483, + -0.036962453, + 0.01546479, + -0.004091238, + 0.008234587, + -0.016528804, + 0.024577433, + -4.4612412E-4, + -0.022957798, + 8.0387853E-4, + 0.0045055584, + -0.012490857, + 0.0447239, + 0.0016191369, + 0.0045860074, + -0.028318118, + 0.01522212, + -0.0026048194, + -0.014097778, + -0.0066193654, + 0.0027595058, + -0.019409627, + -0.0070109884, + 0.0026147773, + 0.0076168743, + 0.010764113, + 0.012266624, + -0.01652377, + -0.0012570786, + -0.0023758183, + 0.011373493, + 0.024891702, + 0.025710173, + -0.019569324, + 0.0017231911, + 0.001978327, + 0.004905711, + 0.026630273, + -0.025513839, + 1.3775543E-4, + -0.0056177215, + -0.00959898, + -0.004750302, + 0.010209497, + -0.001469849, + 0.025197431, + -0.008365527, + -0.002768649, + 0.0032904746, + 0.035795785, + -0.019413417, + -0.012172663, + 0.0074270954, + 0.008289991, + -0.0142138135, + 0.012113787, + -0.0013993784, + -0.021255573, + 0.014812005, + -0.01056875, + 0.01663549, + 0.015489222, + -0.02519148, + 0.012847704, + 0.009887035, + -0.005553337, + 0.008297139, + 0.009099119, + -0.0028820394, + -0.005467213, + -0.02569138, + 0.0074830703, + -0.01719936, + 0.020718955, + 0.0014006767, + -0.0066617657, + 0.007354081, + 0.006233456, + -0.0053631086, + -0.025427751, + -0.021493971, + -0.019128207, + 0.008062705, + -0.010376573, + 0.005331843, + -0.016081149, + 0.0038791844, + -0.0076851514, + -0.012502016, + -0.017365409, + 0.0053210263, + 0.0010933266, + 0.019370751, + 0.01671828, + 0.0023106753, + 0.004094331, + 0.023709409, + 0.0074448497, + -0.00454881, + -0.0029950375, + 0.006371664, + 0.0038677645, + 0.010195249, + -0.011319107, + -0.0050029107, + -1.239781E-4, + 0.019357882, + 0.0048826793, + 0.009912652, + 0.024816936, + 0.008012307, + 0.008583319, + 0.00570533, + -0.0051292973, + 0.0022599532, + -0.025086341, + 0.013920569, + -0.0138685675, + 0.020493198, + 0.0154245375, + -2.2973109E-4, + 0.006477301, + -0.025773535, + 0.009164207, + 0.019996105, + -0.019200405, + 0.005314051, + 0.0032073655, + -0.034964412, + -0.00556416, + 0.013388735, + -0.018713195, + -0.018816907, + 0.012719154, + 6.865778E-4, + 0.013053627, + 0.02634734, + 0.015397472, + 0.0048715654, + -9.102604E-4, + -0.019709015, + -0.011045177, + -0.009934131, + -0.007430272, + -0.011409679, + -0.0010662951, + -0.0239585, + 4.8148213E-4, + -0.0234182, + 0.032650936, + 0.011827186, + -0.016114851, + -0.013266239, + 0.0057754177, + -9.3959854E-4, + 0.022571888, + -3.951365E-4, + 0.015041069, + -0.006940299, + -0.0037694909, + 0.011558321, + -0.0049721003, + 0.005035517, + -0.004343708, + 0.0095186345, + -0.008148975, + 0.010179107, + 0.029733887, + 0.0449606, + -0.0068100314, + -0.030264625, + 0.0107034305, + -0.002467355, + 0.019161534, + 0.013254791, + -0.040679187, + 6.897801E-4, + -0.0049362695, + 0.014071166, + 0.0045379824, + -0.002737555, + 0.0041583884, + 0.01779466, + 0.026762506, + -0.01029719, + 0.02125046, + -0.021458855, + -0.0027683787, + 0.01770476, + 0.008041324, + 0.012986615, + -0.008260927, + 7.2206376E-4, + 0.014591734, + 0.016615953, + -0.0018566261, + 0.0068083904, + 0.0120733855, + -0.0019421731, + 1.3830759E-4, + -0.020370377, + 0.023408765, + 0.004173854, + -0.0049059405, + -0.030738931, + -0.020289375, + 0.0048192595, + -0.0035093685, + -0.0061138584, + 0.0031594406, + -0.02117916, + -0.0055351635, + -0.008255672, + -0.0010337128, + 0.018625537, + -0.020702027, + -0.028555688, + 0.0053526945, + 0.002471475, + -0.003986816, + -0.008586128, + 0.0059677185, + -0.0062932074, + 0.019832145, + -8.9126866E-4, + -0.011330232, + 0.013072069, + -0.008843941, + -0.0036740473, + -0.008354261, + -0.016522538, + 0.02049738, + -0.006982401, + 0.0035475935, + -0.0032679106, + -0.0033660852, + 0.014644895, + -0.008203198, + 0.008035267, + -0.0022260593, + 0.022830065, + -0.019771634, + 0.008785357, + -0.014549953, + -0.017336808, + 0.023722358, + 0.023713998, + 0.023969283, + -0.024831427, + 0.0021373096, + 0.027561612, + -0.012274045, + -0.024804454, + -0.033648487, + -0.0076203574, + -0.026075475, + -0.022426773, + -0.005149072, + -0.023103278, + -0.012664204, + -0.016789379, + -0.018442972, + 0.009682398, + 0.0035573922, + -0.02166644, + 0.0137197785, + 0.0058555887, + -0.007875859, + 0.024941994, + 9.2569704E-4, + -0.034348093, + -0.002840827, + 0.014461745, + -0.012674159, + 0.025283646, + -0.0050088656, + 0.022184791, + -0.013728486, + 0.025097433, + -0.0015206386, + -0.017698074, + 0.02923639, + 0.020558916, + 0.039387576, + 0.019031903, + -9.5228036E-4, + -0.0011235273, + 0.020429946, + 0.027644195, + -0.009607716, + 0.006015208, + -0.013621087, + -0.01388449, + 0.019704912, + -0.02296907, + 0.036734607, + 0.02925276, + 9.180953E-4, + -0.008773295, + 0.02350052, + -0.007137304, + -0.004879137, + 0.0064209807, + 0.030733876, + 0.0068093296, + -0.0020966625, + 0.0063397437, + -0.013273298, + -0.0039274157, + 0.01843256, + 0.0025648344, + -0.0050396975, + -0.0040187114, + -0.002563605, + -0.004270166, + -0.020236772, + 0.011458417, + 0.02547163, + 0.012748725, + -0.020473814, + 0.011383295, + -0.009196351, + -0.0051969825, + 0.032078445, + -0.006034251, + -0.025459956, + 0.009681164, + 0.040964365, + 0.0036613906, + 0.052801482, + 0.0125476075, + -0.0048308605, + 0.0040984997, + 0.029785018, + -0.0028376821, + 0.0015847381, + 0.013445781, + 0.016577536, + 0.0052287444, + -0.0018060401, + 0.0028378563, + 0.00815523, + 0.002410019, + -0.0045312303, + -0.014934044, + 0.0151433, + -0.0071429433, + 0.024887597, + 0.016560053, + 0.0035882448, + -0.028983634, + 0.006110779, + 0.018090144, + 0.016238624, + -0.028850026, + 0.008379518, + -0.01236497, + 0.02749093, + 0.0054587023, + 0.007996508, + 0.005088223, + 0.013106535, + -0.0055049625, + 0.011809357, + 0.024032842, + -0.00543971, + -0.023011576, + -0.012694651, + -0.008415295, + 0.010010012, + 0.021592882, + 0.0020662113, + -0.010955458, + -0.013554514, + -0.014118713, + 0.006990051, + 0.0086601935, + -0.014321632, + 1.8744035E-4, + 0.0024987175, + 0.02389628, + 0.0075017186, + -0.011918049, + 0.018486438, + -0.009372022, + -0.005210132, + -0.0013760234, + 0.022854652, + -0.004487281, + 0.016038736, + 0.010449392, + 0.019774746, + 9.717074E-4, + -0.017144393, + -0.005795929, + -0.017314713, + 0.011529086, + 0.027716769, + 0.0056135943, + -0.029127214, + -0.010447974, + -0.01604431, + 0.018627336, + -0.0043165693, + -0.0018266608, + 0.015147091, + 0.0014959414, + -0.01972471, + -0.0056693787, + -0.009237122, + 0.013461277, + -0.01819346, + 0.028657638, + 0.021435386, + 0.010067731, + 0.018054664, + 0.023655256, + -0.02028875, + 0.011667101, + -0.031717304, + 0.0048218924, + 0.019693226, + -0.0021048116, + 0.01205083, + 6.101134E-4, + -0.03270747, + -0.013110789, + 0.001444316, + 0.03701889, + 0.014621023, + 0.0070092822, + 0.017557511, + -0.0013988917, + -0.011406174, + 0.003586228, + -0.019243848, + -0.005493982, + 0.029805735, + 0.011630128, + 0.009244183, + -0.029129902, + 0.019237122, + -0.015901176, + 0.0027241027, + -0.0156248445, + 0.020193437, + 0.0067513934, + -0.0070215994, + 0.020181848, + 0.033750568, + 0.020885823, + 0.011130856, + 0.01566462, + -0.0046752915, + -0.024978006, + 0.030194968, + 0.0010934821, + -0.00342591, + 0.036613215, + -0.015938843, + -0.008494445, + -0.017008686, + 0.018571645, + 0.013654504, + -0.001978504, + -0.013344248, + -0.018708939, + -0.009485313, + 0.005754896, + -0.008298178, + -0.012132975, + -0.029877793, + -0.015882038, + -0.0050268206, + 0.018923357, + 0.008444172, + 0.0027837206, + 0.0035873307, + 8.305931E-5, + 0.013683294, + -0.009120653, + -0.022057822, + -0.001006592, + -0.004026084, + -0.0017720442, + 0.00188617, + 0.0054560467, + -0.020661263, + -0.0049793827, + 0.011208704, + 0.015150044, + 0.0019723594, + 0.026471155, + -0.014777336, + 0.011123392, + -0.018565824, + -0.012324055, + -0.005696545, + 0.014104191, + -0.020170743, + 0.009302534, + -0.0045107645, + -0.0020452046, + 0.0107884165, + 0.011016374, + -0.03267636, + 0.030941848, + -0.014674743, + -0.019127555, + 0.0062630293, + 0.024740819, + -0.0060469825, + 0.014090757, + -0.01170388, + 8.5938285E-4, + -0.012281204, + -0.029177682, + 0.01858355, + 0.0040613567, + 0.006174404, + 0.00943469, + 0.012462107, + 0.015684461, + 0.014452623, + 0.004444353, + 0.004045046, + -0.005647948, + 1.702841E-4, + 0.024521124, + 0.019524982, + -0.01314613, + 0.0073693777, + -0.001218303, + -0.0020476317, + -0.013826035, + -0.047712024, + -0.0012057893, + 0.002210608, + 0.02229498, + 0.036519773, + -0.0069416314, + -0.0316156, + 0.0067214887, + -0.0068123806, + 0.008648603, + -0.013967752, + -0.009548198, + -0.03844384, + 0.015647817, + 0.0046649463, + 0.019138187, + 0.0027388735, + -0.0097030075, + 0.021435184, + 0.0077758105, + -0.0071609155, + -0.022685327, + 0.009705599, + -0.018738238, + 0.01668502, + -0.009241084, + -0.00578811, + -0.024844427, + 0.0030757256, + -0.0052366983, + -0.019408982, + 0.013829945, + 0.0207896, + 0.024994448, + -0.037421286, + 0.015205102, + -0.01827664, + 0.007185321, + -0.008006618, + 0.0031132349, + 0.016312754, + -0.017420802, + 0.0076725404, + 0.011620126, + 0.031393666, + -0.024069317, + -7.628896E-4, + -0.0029492185, + 0.01751428, + -0.009194942, + -0.007190037, + 0.009424286, + 0.023449535, + -0.01969323, + -0.0067154593, + 0.017998857, + 0.009943508, + 0.010856279, + -0.023597227, + 0.011435857, + -0.0020290532, + -0.018529322, + 0.0021855745, + 0.015546157, + -0.003084792, + 0.015738107, + 0.033839107, + 0.006804622, + -4.2405006E-4, + -0.013459574, + 0.0050157867, + -0.027864417, + -0.019370062, + -0.019875757, + -0.010486271, + -0.026929703, + 0.0016118403, + -0.0417596, + 0.005540677, + -0.01528095, + 0.009394171, + 0.017845133, + -0.005958796, + -0.0024481933, + -0.010463834, + -0.014788237, + -0.015658738, + 0.0029750876, + -0.012530936, + -0.03207154, + 0.0053048525, + 0.012990418, + 0.004047155, + 0.011475882, + -5.384269E-4, + -0.02117841, + 7.265084E-4, + -0.005763843, + 0.015788028, + -0.016768051, + 0.0050254217, + -4.4051703E-4, + -0.010942825, + 0.00819011, + -0.0019506147, + 0.014787968, + -0.014156403, + -0.009093327, + -0.012121883, + 0.005482827, + 0.0028236606, + -0.008460014, + 0.01683155, + -0.0013898053, + 0.010713539, + -0.0013257539, + -0.0083441045, + 0.0043246793, + 0.027670516, + -0.0060917125, + -0.035565928, + -0.00990969, + -0.020976873, + -0.025819795, + -0.020132845, + -0.020717107, + -0.0069098063, + -0.009525729, + -0.002109078, + -0.010603188, + 0.0060140113, + 0.014682495, + 0.021107424, + 0.0012360872, + 0.019061618, + 0.013116324, + -0.012568108, + 0.03945722, + -0.015483072, + -0.010110849, + -0.009753789, + -0.013880288, + -0.015077261, + 0.0055261157, + -0.04215361, + -0.013052518, + 5.902054E-4, + 0.024487436, + -0.013484015, + 0.021463564, + -0.039832417, + 0.011601738, + 0.0139320055, + -0.013563548, + 0.03474429, + 0.0010667301, + 0.027063156, + 0.006613268, + 0.039683137, + -0.008652686, + 0.02302708, + 0.0012897956, + 0.026490653, + 0.0052478486, + -0.00854676, + 0.0023025416, + 0.021510962, + 0.016596217, + 0.003964389, + -0.012978313, + 0.039603733, + -0.026543114, + 0.009197752, + -0.008461125, + -0.0051309573, + -0.02734526, + 0.004391542, + 0.019540181, + 0.0091789095, + 0.015847247, + 0.029220456, + 0.0051760375, + -0.019304367, + 3.908933E-4, + 0.039324872, + 0.01837008, + 0.012192418, + -0.021008814, + -0.011852144, + -0.007877884, + -0.018818116, + 0.02566269, + -0.0014842217, + 0.007475413, + 0.021147277, + -0.011113974, + -0.03496049, + 0.013803931, + -0.0039687417, + 0.0121441325, + 0.02105738, + -0.015588936, + 0.0053174635, + -0.002840904, + 0.026740018, + -0.015313924, + -0.0012723309, + -0.01531852, + 0.0103929145, + 4.9768126E-4, + -0.03002687, + -0.008366137, + -0.021376204, + -0.008646114, + -0.0022523657, + -0.03868282, + -0.022505987, + 0.026037153, + -0.006971276, + -0.0147843715, + -0.012540154, + -0.0061601554, + 0.01760126, + -0.0069183214, + -0.010959961, + -0.029206375, + 0.011343166, + -0.014775508, + 0.02296746, + 0.022833802, + 0.0060657677, + -0.0073652193, + 0.0053131264, + 0.0032173586, + 0.018126778, + -0.010553949, + 0.0074765133, + -0.0045286203, + 0.016023502, + 0.017088084, + -0.0024063608, + 0.009241827, + 0.00309586, + 0.01560148, + 3.1824727E-4, + -0.021147288, + -0.004223557, + 0.02581375, + 0.0046672174, + 0.016212463, + 0.007359902, + 0.006069055, + 0.0013040499, + 0.003821176, + -0.0042597684, + 0.009142812, + -0.009863816, + 0.015881456, + 0.0124816615, + 0.008446988, + -0.016970262, + -0.015745929, + -0.0033419847, + -0.009904981, + 0.008552147, + -0.012082279, + 0.01705684, + -0.00577121, + -0.015661472, + 5.005089E-4, + 3.4993127E-4, + -0.0278845, + -0.006831091, + -0.0010894705, + 0.0098141385, + 0.023244698, + 0.030327864, + 1.3074631E-4, + -0.008839466, + -0.02876761, + -0.0024071983, + -0.016237414, + -0.027231239, + 0.022512946, + -0.0036967131, + 0.014608651, + -0.012403684, + -0.017813116, + 0.0042045754, + -0.012194653, + -0.011654774, + 0.037591744, + 0.022932062, + -0.03232757, + 0.007833502, + -0.012619868, + 0.010789561, + 0.025107028, + -0.0018292428, + 0.029622933, + 0.043185472, + -0.0017900803, + -0.014434826, + -0.006931468, + -0.019817457, + -0.010008336, + -0.0027267665, + 0.014863554, + -0.01378515, + -0.0100483205, + -0.006376202, + 0.0033271306, + -0.0064550764, + 0.007555855, + 0.01138262, + -0.007870851, + 0.010600103, + 0.022263926, + 0.019727485, + 0.002667859, + 0.0122088045, + 0.009442821, + 0.01631876, + -0.01358105, + 0.008189915, + 0.025998762, + -0.014086774, + -0.044739656, + 0.0059327753, + -0.0012873358, + -0.027805489, + -0.026491793, + 0.007793862, + -0.0016420698, + 0.0032359941, + -0.004399776, + 3.0665152E-4, + -0.014189149, + 0.0012344328, + 0.008800442, + 0.008679757, + -0.028002793, + -0.006074688, + 0.016446257, + 0.01275193, + 0.0047101886, + -0.0120373815, + 0.0047263894, + -0.009484204, + 9.982365E-4, + -0.004629965, + -0.0077112215, + 0.017339746, + 0.0032014805, + 0.0096311215, + -0.0140240835, + -0.0022699074, + -0.018564848, + 0.018706674, + -0.031058095, + 0.030012846, + -0.0010943171, + 0.013857437, + 0.018231047, + -0.0031716996, + -0.0067428453, + -0.012506859, + 0.010951932, + -0.012523661, + -0.0011108757, + 0.0031085727, + -0.007056319, + -0.0034713116, + -0.024800459, + -0.0011836994, + -0.013940723, + -0.028247872, + -0.0053591575, + -0.009009178, + 0.012054256, + 0.0035217877, + -0.004235493, + -0.013175906, + -0.022111645, + -0.011721539, + 0.006621904, + -0.0031814766, + -0.006532659, + 0.0038770318, + 0.0015979896, + 0.0012649859, + -0.02137014, + -0.020849757, + 0.017615713, + -0.010133426, + 0.0055481684, + -0.0065872204, + 0.0063938918, + -0.017087549, + 0.030998485, + -0.027923506, + 0.032706283, + -0.0049439035, + -0.036153324, + 0.012506808, + -0.013658897, + 0.0038549777, + 0.01696001, + -0.007985307, + -0.0042081713, + -0.008633328, + -0.0027815043, + 0.009304062, + -0.018353503, + -0.009505511, + 0.0128623545, + 0.018288996, + -0.006187321, + 0.017311376, + 0.011432718, + -0.0040698294, + 0.006217347, + -0.009803528, + 0.009431942, + -0.0026727384, + -0.014885443, + 5.787215E-4, + 0.0144434655, + 0.0012193024, + -0.002426075, + 6.195561E-4, + 0.02530253, + 0.008940896, + -0.002037441, + 0.013254188, + -0.0150998635, + -0.033274136, + 0.0070369593, + -0.0013790245, + 0.0023631288, + 0.0055575534, + 0.0055972445, + 0.009888682, + 0.005386385, + 0.0110388845, + 0.019321743, + 0.006123508, + 0.017877514, + -0.011254381, + 0.016321184, + 0.011114249, + 0.009928999, + -0.011255956, + -7.3429267E-4, + -0.018616268, + -0.027970962, + 5.25273E-4, + 0.00995452, + 0.008466487, + 0.0010584616, + -0.014735245, + 0.0047178078, + -0.014079543, + -0.02692908, + 0.016180191, + 0.017052574, + 0.006956097, + 0.0048220754, + 0.032562226, + -0.012085585, + 0.012000325, + -0.011717253, + 0.017314356, + 0.024518503, + 0.015220683, + -0.014402541, + -0.027950635, + -0.0036746317, + 0.0114378575, + -0.0035614632, + 0.020095715, + 0.0064039924, + 0.018886678, + 0.023495482, + 0.01011174, + 2.008136E-4, + -0.013522042, + -0.005174639, + 0.012402456, + 0.022726549, + 0.033306804, + 0.004335209, + -0.012085587, + -0.010538764, + 0.008716146, + 0.022966037, + -0.0010650961, + -0.02272179, + 0.016451746, + -0.027636835, + -0.009855359, + -0.0053965286, + -0.010505411, + -0.011364178, + 0.0025958437, + 0.019406842, + 8.7719347E-4, + -7.3659647E-4, + 0.019534351, + 0.022658028, + 0.023858322, + -0.016356044, + -0.009293081, + 0.004659578, + -0.027257597, + -0.008732099, + -0.019865965, + 0.0015688498, + 0.029648257, + 0.004742109, + 0.009729915, + -0.015813187, + -0.009404918, + 0.025657564, + 0.019773297, + 0.024046123, + -0.0022912805, + 0.0064122113, + 0.02102791, + 0.013488356, + -0.009731083, + 0.013504142, + 0.002525817, + -0.020467337, + 0.011303105, + -0.0014608975, + 0.01171974, + -0.002514079, + 0.0010486159, + -0.0042109382, + 0.035035584, + -0.013161194, + 0.010539462, + 0.006125484, + -0.02415515, + 0.0010023561, + 0.012655471, + -0.013820357, + 0.0050361957, + 0.0070917406, + 0.013784986, + -0.0100452155, + -0.03312764, + -0.0032112037, + 0.014774316, + 0.003095926, + -0.006723473, + -0.020714128, + 0.012945769, + 0.02256298, + 0.014801549, + 5.0743617E-4, + -0.0071732597, + 0.01776904, + 0.0091712335, + -0.004612154, + -0.009399979, + -0.0031683296, + 0.008405337, + -0.024623042, + 0.021601329, + -0.025401609, + 0.01433464, + -0.0070554125, + 0.0075998474, + 0.008473101, + -0.007727136, + -0.0041981763, + -0.010037227, + 0.009870166, + -0.0013759069, + 1.573446E-4, + 0.013633283, + -0.0014454044, + 0.021968693, + -0.0055166087, + -0.018253982, + -0.007336237, + 0.04190996, + -0.0017123529, + -0.01173761, + 0.025310818, + 0.0060055195, + 0.0051557394, + 0.035889074, + -0.027069516, + -0.008376468, + -0.0032822094, + 0.0018955665, + -0.014547249, + -0.0010786589, + 0.00208387, + -0.027145721, + 0.0073056575, + -0.014721987, + 0.0017100011, + -0.019448996, + 0.0023980152, + -0.006062931, + -0.008190446, + 0.0216328, + -0.013051552, + 0.021931874, + -0.01944312, + 0.011413731, + -0.007250999, + -0.021706251, + 1.7914489E-4, + 0.007407354, + -0.004462294, + -0.0025287808, + 0.0030991393, + 0.01937524, + -0.009657377, + -0.006216372, + -0.044291425, + -2.8613178E-4, + 0.007635705, + 0.0019042194, + 0.007473824, + -0.0020667722, + -0.010419833, + 0.0067587593, + -0.009589462, + 0.017038986, + 0.003219248, + -0.032259133, + 0.029814688, + 3.6875322E-4, + 0.0033646582, + 0.012159166, + 0.005084896, + 0.009671574, + 0.007408369, + -0.016549258, + -2.6406875E-4, + 0.0133317085, + 0.0044797044, + 0.014106385, + -0.015614422, + 0.009596804, + 0.023370286, + 0.020240968, + 0.015508292, + 0.0018634307, + -0.024834137, + 0.019855695, + -0.0018152827, + 5.489534E-4, + -0.013331562, + -0.012642407, + -0.0047837133, + -0.006132076, + -0.023291016, + -0.031332616, + 0.009953384, + -1.3404884E-4, + 0.005258767, + 0.00409128, + -0.012249581, + 0.019188017, + -3.978321E-5, + -0.007265042, + 0.025969524, + 0.0016151936, + 0.008130678, + -0.0049532214, + 0.0053243986, + -0.008862314, + -0.0040000337, + 0.00980179, + 0.012311936, + 0.029009063, + 0.0017215086, + 0.003799934, + 7.0906885E-5, + -0.023005638, + -0.02344452, + -0.011715796, + 0.007492682, + -0.0026344215, + -0.019010087, + 0.008913275, + -0.0026296373, + -0.008201866, + -0.035917655, + -0.016795725, + -0.0046777455, + -0.010650123, + 0.008424417, + 0.018273449, + 0.008438001, + -0.013574234, + 0.0016993815, + -0.017953517, + 0.0051864423, + 0.023738746, + -0.008595021, + 0.0173787, + 0.008847928, + 0.021062918, + 0.01599697, + -0.005711887, + -0.0012045921, + 0.016949026, + -0.012378888, + 0.026366474, + 0.006860437, + 0.009761453, + 0.032873534, + -0.027208064, + 0.020092512, + -0.038487803, + -8.017666E-4, + -0.0052190446, + -0.03472713, + -0.012579478, + 0.015808985, + -0.003910944, + -0.015112652, + -0.024671363, + -0.020582799, + 0.005867467, + -0.007190521, + -0.0014310118, + 0.016429406, + 0.0225896, + 0.040923424, + 0.002297976, + 0.0018492759, + -0.017949346, + 0.019717583, + 0.008422513, + -0.006300293, + -0.031215938, + 0.013131084, + 0.0119485045, + -0.024110401, + 0.011873708, + -0.01157078, + -0.027520685, + 0.0067283083, + -0.017401136, + -0.009914471, + -0.01402358, + 0.024936285, + 0.008852386, + 0.0119622005, + -0.0061781313, + 0.00437383, + -0.008780591, + 0.015532267, + 0.010133223, + -0.01108449, + -0.017872583, + -0.019638624, + -0.0047566444, + 0.0056552524, + 0.02056862, + 0.005853058, + -0.0066611185, + -3.5909654E-4, + -0.036766697, + 0.031342484, + 2.2762937E-4, + 0.029414216, + 0.007499795, + -0.007619773, + -0.015847052, + 0.0027017305, + -0.010038812, + 0.025152279, + 0.019881997, + -0.0214289, + 0.004290007, + 4.97454E-4, + 0.009789123, + -0.0023568762, + -0.021638863, + 0.017094709, + -0.010858135, + -0.012703496, + -0.008026936, + 0.0037558645, + 0.017155636, + -0.021622704, + -0.005991538, + 0.011211016, + 0.01571119, + -0.009911558, + 0.003372291, + 0.00808321, + 0.0120879635, + 0.0070763817, + 0.01404703, + -0.009394025, + -0.0064371084, + 0.022213645, + -0.0019919653, + -0.013480723, + 0.0024378505, + 0.018807266, + -0.007423107, + -0.010508396, + 0.02499921, + 0.023850147, + -0.007208523, + 0.016871462, + -0.0055909813, + -0.030260803, + 4.4514277E-4, + -0.024780288, + -0.030627808, + 0.009768676, + -0.012288691, + 0.02134554, + 0.024280882, + -0.01522623, + -0.004913761, + -2.691818E-4, + 0.020803101, + -0.010651515, + -0.010982494, + 0.018906755, + -0.0223511, + -0.0063014403, + -0.023480423, + 4.2485064E-4, + 0.010863428, + 0.0018931985, + 0.029701943, + -0.0075580915, + 0.0057223258, + -0.0034587767, + 0.031798646, + -0.033010118, + 0.0032058763, + 0.027167568, + 0.0128878355, + -0.011734389, + -0.0085571185, + 0.005259697, + 0.0063584144, + -0.0064460943, + -0.0064882655, + -0.01219908, + 0.013120875, + 0.007780801, + 0.012623028, + -0.0057731476, + -0.012816179, + 0.020016985, + -0.0035326316, + -0.027855048, + -0.004149482, + 0.009971406, + -0.0342949, + -0.0041719647, + -0.029964088, + -0.001001029, + -0.0085204905, + 0.0022825645, + 0.0029508402, + 0.01170071, + -0.0049815206, + 0.033589683, + -0.004231696, + 0.00563823, + -0.010912753, + -0.009975807, + 0.0051349634, + 0.02146542, + -0.011590622, + 0.006197922, + -0.013699004, + 0.00368789, + -0.029192094, + -0.018656489, + 0.009049244, + 0.00930781, + -0.005187808, + -0.013846525, + -0.007313525, + -2.4884506E-4, + -0.026231859, + 0.017710885, + 8.701996E-4, + -0.011908317, + -0.013772969, + 0.0022961572, + 0.0057375883, + 0.010760756, + -0.0020034888, + -0.015245178, + 0.017232658, + -7.5813914E-5, + 0.008813686, + -0.0070848037, + 0.008925279, + -0.006486733, + -0.006389573, + 0.012774022, + -0.017569454, + 0.0023530836, + 0.023424, + 1.7787269E-4, + -0.010969357, + -0.0034197, + -0.0051576872, + 0.018856512, + 9.3878305E-4, + 0.0057956656, + 0.040445834, + 0.006581175, + -0.012804241, + 0.0019890466, + 0.024099005, + -0.008512048, + -0.009871464, + 7.500031E-4, + -0.01934993, + -0.008602326, + -0.0220792, + 3.1702514E-4, + 0.019750949, + 0.007349124, + 0.010657175, + -0.01665877, + 0.0026929746, + -0.002442955, + -0.019783404, + 4.928187E-4, + -0.015174123, + 0.016811743, + -0.009080628, + 0.019352928, + -0.022732008, + -0.013632924, + 0.010466408, + 0.018731857, + 0.017369496, + 7.6634795E-5, + -6.495588E-5, + -0.015302073, + -0.018335652, + -0.0029887648, + -0.016753059, + 0.008029506, + 0.010071066, + 0.015468469, + -0.0015488963, + 0.0328716, + -0.005610598, + 0.0021792143, + 0.01918148, + -0.0015707331, + -0.025092747, + 0.012632024, + 0.009668973, + 0.004267122, + -0.0015800149, + -0.0051420773, + 0.003917889, + 0.015172194, + -0.006446383, + 0.018505456, + -0.0126069365, + 0.015656037, + 0.020590581, + -0.009761848, + -0.003594827, + 0.0054141707, + 0.022934744, + 0.0025104564, + 0.008119338, + 0.010399179, + 0.0077999937, + -0.02047647, + -0.0030644832, + -6.627862E-4, + -5.8493624E-4, + -0.027800169, + 0.002602985, + -0.0011930447, + -0.0015236341, + -0.0014486272, + 0.0053429343, + -0.02650502, + 0.030866534, + 0.0068453164, + 0.0012490207, + -0.0022965625, + 0.023378698, + 0.002900355, + -0.0041296976, + 0.007480482, + 0.013014435, + -0.029694378, + 0.007560002, + -0.012831314, + -0.011337788, + -0.009063982, + -0.013711754, + 0.0071416497, + 0.0037386925, + -0.014324375, + -0.015079421, + 0.014259149, + 0.01910559, + -0.004006861, + 0.005700511, + -0.030992547, + -0.013960718, + 0.033630747, + -0.004692789, + -0.017815933, + 0.010107152, + 0.0024546634, + 0.035303243, + 0.015871473, + 2.622548E-4, + 0.022401113, + -0.01647679, + -0.0023152183, + -0.004175665, + -1.8870733E-5, + 0.021585695, + 0.0072218594, + 0.014578375, + 7.602318E-4, + -0.004101535, + 0.01858459, + -0.0060708965, + -0.034096006, + 0.03808281, + 0.00948712, + -0.011975826, + 0.017629918, + 0.021542631, + -0.030233894, + 0.015634853, + -0.00670509, + -0.02156251, + -7.733985E-4, + 0.01679986, + 0.0022919816, + 0.0025901254, + -0.010925355, + -0.020794101, + -0.011498612, + -0.0026607083, + 0.014128344, + -0.014727474, + -0.011403486, + 0.018124666, + -0.020870142, + 0.0050342195, + -9.408799E-5, + -0.0019789154, + 0.018096788, + -0.006881318, + -0.020110352, + 0.024061978, + 0.0124136275, + -0.02327051, + -0.010231997, + -0.019113956, + -0.009832572, + 0.013238426, + -0.00555329, + -0.011716225, + 0.004541196, + -0.007341617, + 0.0042899405, + 0.01733732, + -0.015131268, + 0.009634264, + 0.0140517885, + -0.01287949, + 0.01105539, + -0.011922978, + 0.013659967, + -0.020441977, + -0.0052468777, + 0.02683583, + -0.0073277703, + 0.030429432, + -0.021990936, + 0.0066994787, + 0.005184243, + -7.9184794E-4, + 0.008171128, + 0.012910295, + -0.017719535, + -0.011346532, + 0.0027639882, + -7.937726E-4, + 0.0043890206, + 0.007413801, + -0.031341244, + -0.020845832, + 0.016766626, + 0.007997597, + 0.008610782, + -0.023136506, + -0.010158169, + -0.015687892, + 0.030846804, + 0.01253899, + 0.021848766, + -0.011588563, + -0.0021330717, + 0.029659554, + 0.023132522, + 0.023781244, + -0.019228585, + -0.0037609558, + 0.0036806215, + 0.0036318258, + 6.9799914E-4, + -0.0020867677, + -0.002912599, + 0.0010584624, + 4.6627127E-4, + 0.010352007, + 0.010803781, + -0.018438237, + -0.014471443, + 0.0018011983, + -6.5068546E-4, + 0.007399625, + 0.002488407, + -0.028900046, + 0.0381389, + -0.0012486064, + 0.017959554, + 0.017377883, + -0.027662333, + 0.009032809, + 0.012673157, + -0.020915732, + -0.014403326, + 0.0040743626, + 0.017018847, + 0.0017210831, + -0.013657045, + -0.022538085, + -0.007055329, + 0.019085303, + 0.017555898, + -0.008304374, + 0.0038535679, + -0.014278408, + 0.006468412, + -0.002661511, + 0.0017608646, + 0.022979027, + 0.0054254076, + -0.028473016, + 0.004965609, + -0.011639291, + -0.01680987, + 7.645675E-4, + -0.010358984, + 0.014734491, + 0.007968111, + 0.020959206, + 0.024730582, + 0.021234078, + 0.0011198128, + 0.004384158, + -0.019585935, + -0.03350496, + -0.022847932, + -0.0059412504, + 0.0048948107, + -0.03293244, + 7.1740703E-4, + 0.005881636, + 0.01923266, + 0.009752185, + 0.0025561284, + 0.0039750338, + -0.02952199, + 0.014397877, + 0.0033095789, + 0.02294767, + 0.0063099787, + 0.0071923365, + 4.905816E-4, + 0.020475054, + 0.022546245, + -0.0034288717, + 0.0029975313, + -0.009562553, + 0.002239078, + 0.0015656542, + 1.1036727E-4, + 0.013016605, + -4.914443E-4, + -0.019156348, + -0.012968955, + -3.924826E-4, + -0.025296668, + 0.007532358, + -0.0021710393, + 5.791529E-4, + 0.015167776, + -0.008668429, + -0.0135634085, + 0.0024758857, + -0.0014183361, + 0.015197432, + -0.0054909145, + 0.01097684, + -0.012339759, + -0.0045496235, + 0.018641315, + -0.013460902, + -0.021730643, + -0.008989547, + -0.028651955, + -0.014541767, + -0.004911709, + -0.016312238, + 0.010633016, + -0.02577508, + -0.021195367, + 0.00881503, + -0.02350351, + -0.032434933, + 0.0055947253, + -0.0092739025, + -0.02275541, + -0.004490421, + 0.0014835879, + 0.024202734, + 0.010986385, + 0.006563016, + -0.027287683, + -0.0038379694, + -0.0012451154, + -0.0066212225, + 0.012756178, + -0.024044247, + 0.03197617, + -0.0017188326, + 0.0021844336, + -0.025107075, + 0.010003494, + -0.0011201684, + -0.012698516, + -0.012735886, + -0.0016816934, + 0.0043193526, + 9.869405E-4, + 0.007951945, + -0.008945102, + -0.006313639, + 0.018597104, + 0.023334598, + -0.008017764, + -0.0014050807, + -0.011602851, + -0.0063408967, + -0.023063496, + 0.0016894707, + -0.036365014, + 0.03642053, + -0.035212513, + -0.015006119, + -0.02162772, + -0.015716491, + -0.01648401, + 0.014189514, + -0.013143345, + 0.01875809, + -0.009352324, + 0.009740265, + -0.0066723833, + 0.019754529, + 0.015155837, + -0.023296254, + -0.021128548, + -0.014818945, + 0.0035001864, + -0.01863524, + 0.0065737693, + 0.008590499, + -0.007999828, + 0.024773087, + -0.013523048, + 0.012357554, + 0.007633348, + 0.0057793017, + 0.027726596, + -0.024049185, + -0.008468095, + -0.006631533, + 0.009734961, + 0.015537447, + -0.0071489676, + 0.0092205275, + 0.011116844, + 0.004715521, + 0.019927585, + -0.015954502, + 0.014439346, + 0.0029281732, + -0.006917751, + 0.015921935, + -0.012469393, + 0.016809963, + -0.023359256, + -0.03158377, + -0.0076703248, + 0.022494223, + 0.025128033, + -0.0143944435, + -0.0046504703, + -0.00928385, + 0.01883215, + 0.0014473151, + -0.0055068377, + -0.0016477985, + -0.0036103164, + -0.02314851, + -0.0070340354, + -0.015392112, + 0.005613316, + -0.012561337, + 0.004730083, + -0.031890508, + -0.0058898493, + 0.0046093613, + -0.024140976, + 0.023588525, + 0.016234534, + 0.02811502, + -7.998265E-4, + -0.006351173, + -0.012975896, + 0.007880564, + 0.010789274, + -0.013817972, + 0.015151544, + 9.102816E-4, + 0.038872287, + 0.0013832871, + -0.03557145, + -0.0076325396, + -0.0038744884, + -0.001084418, + -0.003608174, + -0.019371038, + 0.025982616, + 0.025460787, + 0.005008079, + -0.006389537, + 0.027125277, + -0.010426194, + 0.004813308, + -0.01501265, + -0.0047163707, + 0.0016079787, + 0.010251802, + 0.023086969, + -0.0035618069, + -0.009117246, + 0.019956134, + 0.00401908, + -2.2878083E-4, + -0.0071508954, + -0.021559495, + -0.04037189, + -0.0074153445, + 5.058907E-4, + 0.004197161, + 0.007061258, + 0.029120289, + -0.0066378633, + 0.010625577, + -0.012135215, + -0.017331267, + -0.0153958015, + 8.064968E-4, + -0.006895208, + 0.019873736, + -0.013596405, + 0.0129661625, + 0.0017920036, + -0.003296863, + 0.006638433, + -0.012499295, + 0.0043966454, + 0.0017857228, + -0.014103885, + -0.01245425, + -0.0054204836, + 0.011521403, + 0.0033747915, + 0.004768529, + 0.01264549, + -0.019371422, + 0.019174585, + -0.014526699, + 9.118457E-4, + -0.02356609, + 0.009951098, + -0.0057557444, + -0.022905707, + 0.013653868, + 0.004530013, + -0.005086535, + 0.002807149, + 0.025904335, + -0.013411188, + 0.018210525, + -0.025709128, + -0.01026729, + 0.008537746, + -0.0010477229, + -0.023606414, + -0.006704265, + -0.0053477683, + -0.005904262, + 0.012068037, + 0.0037105216, + 0.012344849, + -0.0087399855, + -0.0032442696, + 0.010895046, + 0.018389745, + -0.03722893, + 0.016532145, + -0.014071291, + 9.937172E-4, + -0.022112885, + 0.019198628, + -0.004607646, + -0.022567725, + 6.468069E-4, + 0.011355731, + -5.0888554E-4, + -5.4045813E-4, + -0.011787898, + 0.005047793, + -0.019076047, + 0.0042959377, + 0.005044197, + -0.025205564, + -0.009025047, + 0.009599412, + 0.026568452, + -0.0021058696, + 0.025262298, + 0.014900568, + -0.024363808, + 0.014099703, + -0.007429039, + -0.017962316, + 0.011734408, + 0.021877754, + -0.011503512, + 0.020823106, + -0.007617132, + -0.010837328, + 0.012373909, + 0.0051748613, + 0.005683851, + -0.0015904971, + -0.018500557, + 0.007988508, + 0.009484114, + 0.0020972283, + 0.007475381, + -0.008409372, + 0.0084520625, + -0.010303767, + -0.032157544, + -0.020939423, + 0.015910272, + 0.002670912, + -0.01631241, + 2.3899706E-4, + -0.013743137, + 0.008549243, + 0.0298789, + 0.0039547915, + 0.008300182, + -0.024070544, + 0.005654492, + 0.0042189257, + -5.5756257E-4, + -0.027870372, + -0.018129207, + 0.039004795, + 2.9994984E-4, + 0.012459804, + -0.020383557, + -0.029693287, + 0.007874505, + 0.0013385809, + 0.027708977, + 0.03427434, + -0.026903052, + 0.010347627, + 0.011786474, + 0.012259533, + 0.012652905, + -0.02785613, + -0.02234232, + 0.023433095, + 0.011146118, + -5.2046333E-4, + 0.0029920104, + -0.021333603, + -0.023965595, + -0.015029745, + -0.018322153, + -0.015602797, + -0.025257288, + 0.010586855, + -0.0038664737, + 0.035307318, + 0.010204772, + -0.0026505054, + -0.01295063, + 0.010234148, + -0.022351589, + -0.0053175963, + -0.031535115, + 0.008586551, + 0.0010346445, + -0.01759595, + -0.0024449693, + 0.005389964, + 0.014645686, + -0.019951198, + 0.014785874, + -0.0025983439, + -0.020309573, + -0.0076765832, + 0.016486693, + 0.026322883, + 0.011309015, + 0.024445334, + -0.0014078121, + -0.0076405285, + 0.007706133, + -0.0069267307, + -0.0067225527, + -0.00855544, + 0.013281079, + -0.0019538414, + 0.017370937, + -0.009789058, + -0.014347987, + 0.025351547, + -0.0135886315, + -0.019795004, + 0.01683873, + -0.03873499, + -0.0067205154, + 0.018306552, + 0.005742205, + -0.019181933, + 0.0054243803, + -0.028017608, + 0.006631236, + 0.005062101, + 2.4609364E-4, + -0.013486096, + -0.006851646, + -0.03429542, + 0.010900148, + -4.6834448E-5, + 0.008230444, + -0.026389673, + -0.00639035, + 0.011735933, + 0.008098648, + 0.010882375, + -0.0035872315, + -0.010553814, + -0.0047263806, + -0.02160757, + -0.008114357, + 0.0014656002, + -0.015389324, + 0.0013069253, + -0.0010063293, + -0.030114852, + -0.019789234, + -0.0086050145, + -0.016286314, + 0.01281645, + 0.0111313, + -0.00718908, + -0.0035269405, + 0.0030495897, + -0.02321807, + -0.0023888266, + 0.012190238, + 0.0018924924, + -0.02641306, + -0.010622455, + 0.0018874817, + 3.3976012E-4, + -0.027992021, + -0.019615348, + 0.017986625, + 0.0062050894, + -9.98722E-4, + -0.01905011, + -0.014422296, + 0.015679171, + -0.0223334, + -8.665203E-4, + -0.032420635, + 0.014491556, + 0.011496722, + -0.01940026, + 7.404887E-4, + -0.022688897, + -0.0038434418, + 0.014327774, + -5.229542E-4, + -0.01683501, + 0.03959934, + 0.0071429275, + -0.01593979, + 9.921833E-4, + 0.022178989, + 0.004218882, + 0.0118009895, + 0.002325869, + -0.0024617745, + -0.0023519616, + -0.033885706, + 0.011517865, + 0.006890914, + 0.0012150839, + 0.0065698577, + -0.01778585, + -0.018455807, + 0.0019297035, + 0.004551344, + -0.019448858, + 0.0075188074, + -0.034171153, + -0.013856481, + -0.014264238, + -9.2444464E-4, + 0.003324494, + 8.477312E-4, + 0.013625255, + -0.0087283375, + -0.007872664, + -0.027663179, + 0.009192167, + -0.01114951, + 0.007640896, + -0.005093094, + -0.027769396, + 0.016209131, + 7.2660757E-4, + 0.021790814, + -0.0040584933, + -0.01206306, + 0.0069910972, + -0.011606058, + 0.0035311617, + -0.010643566, + -0.011055815, + -0.004823674, + -0.018640025, + 0.012046649, + -0.028603366, + -0.004857041, + 0.005269805, + -0.002655084, + -0.031075053, + 0.0065431665, + -0.0017602536, + -0.001817125, + -0.007848072, + 0.007496376, + -0.01932164, + 0.010093595, + -0.019830065, + 0.006816142, + 0.0059767487, + -0.0048702103, + 0.0055333884, + -0.006569106, + 0.005225802, + -0.006398297, + 0.00952046, + 0.02029184, + 0.01457637, + -0.008616498, + -0.0053119794, + 0.021268979, + -0.008874365, + 0.0036815102, + 0.023914065, + 0.019523395, + -0.010098197, + 0.018317364, + 0.01164363, + 0.0049380725, + -0.0057903286, + 0.0012309052, + 0.0030348194, + 0.013825136, + -0.0069283457, + -0.0040913806, + -0.02610391, + 0.016335964, + 0.0040985085, + -0.025202591, + -0.0013615902, + -0.012704087, + 3.7968913E-4, + -9.5956307E-4, + 0.009865987, + 0.012305397, + 0.030791162, + 0.014810821, + 0.01940456, + 0.0037104022, + 0.013145696, + -0.010516963, + 0.013123338, + 0.027281538, + -0.014902798, + 0.011747546, + -0.014652668, + 0.0060122814, + 0.01459324, + 0.013821835, + 0.0033584018, + 0.008984349, + 0.021422073, + -0.022923414, + 0.0109682465, + -0.0071510174, + 0.038184218, + 0.0024922346, + -0.0026247376, + 0.019607088, + 0.002731895, + -0.01244199, + -0.042766556, + 0.012697811, + -9.744412E-4, + 0.0069318875, + 0.031490333, + 0.0069118855, + -0.0035741492, + 0.020375486, + -0.019391779, + 0.005759171, + -0.0053283116, + -0.015994694, + 0.02186409, + -0.00202255, + -0.0079262825, + -0.036072537, + -0.026233228, + 1.1906437E-4, + -0.0023640497, + 0.009588887, + -0.0013677313, + 0.017947825, + -0.0110165505, + 0.0045907684, + 0.02163875, + -0.01779809, + 0.027459895, + -0.032237746, + -0.0057958495, + -0.017740224, + -0.0017557496, + 0.020025361, + 0.010790736, + -0.010022432, + 0.0054515237, + -0.01831547, + 0.005498066, + 0.015833387, + 0.0040916423, + 0.023232127, + -0.013141758, + -0.0033564523, + -0.010436248, + -0.02098561, + 0.015260085, + -0.0195483, + 0.010072323, + -0.005109144, + 0.013908671, + -0.0015307831, + 0.009011192, + -0.0011154328, + -0.010027324, + 0.015737506, + -0.03328598, + 0.0135452105, + -0.0014331712, + 8.904979E-5, + -0.00901019, + -0.020644672, + 0.0025597413, + -0.0014505208, + -0.001058245, + 0.0027268333, + 0.016014736, + -0.011599597, + 0.00230176, + -0.022134049, + 0.012728941, + 0.00531962, + -0.014059516, + 0.0021548301, + 0.0048119263, + -0.02549808, + -0.027027225, + -0.016975798, + 0.020045677, + 0.026589418, + -0.005689768, + -0.0025163812, + 0.0012452026, + 0.0025592719, + 0.0069056656, + 0.010308435, + 0.01198679, + -0.001393284, + 0.016826555, + -0.015975976, + -0.022140473, + 2.4143346E-4, + 0.013947574, + 0.018633481, + -0.008469825, + -0.0018336542, + 0.008659303, + -0.030289905, + 0.03170421, + 0.0050623124, + -0.014372042, + 0.012186678, + 0.009207264, + 0.0038193397, + 0.0013384776, + 0.033930443, + -0.0119563, + 3.373888E-4, + 0.0018206604, + -0.023805229, + -1.4750904E-4, + 0.012460813, + 0.0014973194, + -0.014616383, + -0.011911591, + 0.014013781, + -0.013441204, + -0.022818884, + -0.011940315, + 0.020225028, + 0.009032813, + 0.03583921, + -0.008392572, + -0.0033861308, + -0.0030170665, + 0.00421399, + -0.005405962, + -0.014609697, + -0.0013182207, + -0.011516678, + 0.008819027, + 0.0017872308, + 0.026084956, + 0.011990023, + 0.008023606, + -0.008298103, + 0.014281008, + 0.01551118, + 0.013522697, + 0.012647124, + -0.012129215, + -0.0048443666, + -0.012473456, + 0.0044272565, + 0.034859795, + 0.011866032, + 0.0067357006, + -0.030127497, + 0.0028092244, + 0.02511919, + 0.0036247312, + 0.0067329854, + 0.001974189, + -0.001629587, + -0.014984897, + -0.0064802542, + 0.010263473, + -0.036085136, + 4.9640075E-4, + -0.025319727, + -0.002628676, + -0.039466888, + 0.02545591, + 0.008539718, + 0.0025844392, + -0.0011403784, + -0.041199923, + 0.0011918172, + 0.009060824, + -0.027598256, + 0.013609226, + 0.005064111, + -3.75479E-5, + -0.0074141924, + -9.2762394E-4, + 0.0062460518, + 0.022682212, + -0.0196747, + 0.013755303, + -0.018246979, + -0.0041907853, + 0.022098258, + -0.018412929, + 0.0030358096, + -0.0040158783, + -0.012991333, + -0.0097686555, + 0.005677986, + -0.010367776, + 0.012705358, + -0.042139377, + -0.0032247936, + 0.011092179, + 4.8196266E-4, + -0.009730976, + -0.0074210274, + 0.0015998891, + -0.0011154133, + 0.01047926, + -0.036586076, + 0.023699118, + 0.023548495, + -0.0050541493, + -0.008437162, + -7.149827E-4, + 0.0010615254, + 0.0023496852, + -0.019340603, + 6.3119456E-4, + 6.487593E-4, + 0.024413716, + 0.019883055, + -0.019321177, + 0.009433848, + -0.014602411, + -6.040254E-4, + 0.01784093, + -0.0025368603, + 7.593907E-5, + 0.005528705, + 0.022713117, + 0.022624787, + -0.0091825845, + -0.005062953, + -0.024286564, + -0.0037064785, + -0.00282377, + -0.0030445163, + 0.0021688633, + -0.004880676, + -0.008890951, + 0.014940358, + 0.013761969, + -0.0013730334, + -0.015881613, + -0.006494586, + -0.007860441, + -0.021994649, + 0.016737359, + -0.0013538192, + -0.0043050176, + 4.0031922E-5, + 0.009534196, + -0.0016525318, + -0.021589639, + -0.019333024, + 0.012560596, + 0.022409284, + 0.013839747, + 0.004901096, + -0.0037577471, + 0.018870212, + 0.022068867, + 0.011129372, + 8.370157E-4, + 0.0061645373, + 0.018549273, + 0.0017153515, + -0.0015848649, + -0.024747599, + 0.019330855, + -0.00877477, + 0.012132444, + 0.01725737, + -0.014318726, + -0.003098696, + -0.0062087993, + 0.009429944, + 0.016864887, + -0.0270793, + -0.0049086916, + -0.010870974, + -0.0023742218, + 0.021800257, + -0.011530708, + -0.011494373, + -0.015732232, + 0.034395184, + 0.020668335, + -0.0062882155, + -0.0358066, + -0.005572833, + 0.021837708, + 0.021498153, + -0.02614983, + 0.0058494527, + -0.008230405, + 0.0014118189, + 0.010948792, + 0.011007339, + 0.0018439823, + -0.003080478, + 0.013038145, + 0.0055318885, + -0.015623658, + 0.0010268977, + -0.009830872, + 0.010848871, + -0.0013300171, + -0.011720356, + -0.026703948, + 0.005282517, + 0.01804356, + -0.00244326, + 0.013112496, + 0.018784592, + 0.012359272, + 0.009092846, + -0.0074405386, + 0.011054603, + -0.009031673, + 0.031022586, + 7.592877E-4, + 0.0193558, + -0.007950585, + -0.0050005666, + -0.013050798, + 0.001642815, + 4.3238976E-4, + -0.025733106, + -0.0031108519, + -0.0067498367, + -0.015181168, + -0.0011764535, + -0.0025693192, + -0.028754406, + 0.007703993, + 0.0045355344, + 0.011130439, + -0.01851924, + -0.021696929, + -0.0059863674, + -0.012206417, + 0.011504024, + 0.0011914835, + -0.0018525536, + -0.025280252, + 0.02572023, + 0.005496852, + -0.014094242, + 0.0042025577, + 0.020450972, + 0.002275618, + 0.011982335, + 0.0258219, + -0.009130001, + -0.04019204, + -0.035394546, + 0.015767608, + -0.028701793, + 0.024800664, + -0.017091881, + 0.010975064, + 0.024088226, + 0.0019869541, + -0.019615302, + 0.008832344, + 0.029087689, + 0.01750196, + 0.018965993, + -0.026319962, + 0.009896183, + 0.017120011, + -0.019094536, + -0.016150765, + 0.00844222, + 0.021553053, + -0.0013984729, + -0.005126007, + 0.011291429, + -1.0079421E-4, + 0.027286658, + -0.03243271, + -0.0055088107, + 0.012729029, + 0.022485565, + -0.0073694354, + 0.012150756, + -0.010057439, + -0.005934889, + 0.02623523, + -0.0064145443, + -0.008942001, + -0.006082455, + -0.014653597, + -0.019068597, + 0.001249307, + 0.015370051, + -0.017927172, + -0.014202643, + 0.018568115, + -0.017531294, + 0.010495299, + -0.0051977215, + 0.025636477, + 0.0059392713, + 0.012433424, + 0.00752346, + -0.014488637, + -0.0029490264, + -0.01881293, + 8.167626E-4, + 0.0010880848, + 1.0667326E-4, + 0.006715547, + -4.0274477E-4, + -0.022484375, + 0.032810856, + 0.0017490538, + 0.0067464667, + -0.0074737994, + 0.01756109, + -0.0043735188, + 0.015107101, + 0.022096276, + 0.011628101, + -0.014760174, + -0.015852235, + 0.020313183, + 0.0034925633, + -0.0036992957, + 0.012777005, + 0.013732, + 0.019120771, + 0.03939604, + -0.008409666, + 0.015937228, + -0.010147832, + -0.0063288393, + 8.42727E-4, + 0.0032273831, + 0.027256727, + 0.026717572, + 0.002964666, + -0.004675597, + 0.0021841081, + 0.002765798, + -0.024962833, + 0.011308367, + 0.025709946, + -0.004065753, + -0.017076474, + 0.040605366, + 0.0068407333, + -0.013057383, + 0.027120503, + 0.0038941777, + 0.0062457803, + 0.013620929, + 0.022131745, + -0.011530895, + -0.05418706, + 0.0032252658, + -0.023723138, + 0.005213927, + 0.025532208, + 0.0074658887, + 0.02228785, + 0.006646859, + 0.017196022, + 0.023365214, + -0.003049249, + -0.01158952, + -0.021160662, + -0.01151732, + -0.018272033, + -0.0034694327, + -0.023880696, + -0.0058253463, + -0.009974597, + 0.0128704, + 0.010260969, + 0.017883146, + 5.1536475E-4, + 0.01883462, + -0.018725142, + 0.011773305, + -0.0022758727 ], - "paletteEmbedding": [ - 0.044377062, -0.014192776, 0.009884384, -0.002065467, 0.007157454, - 0.028765626, 9.934441e-4, -0.01925041, -0.019396005, 0.050100908, - -0.0068344055, 0.010692319, 0.031817958, -0.0077002323, 0.013318877, - -0.046927307, -0.018002657, -0.008430798, 0.045916084, -0.065353386, - 0.034074422, -0.0018001397, 0.066524714, -0.035462946, -0.025667466, - -0.0017633701, 0.013621802, -0.017203892, 0.049354136, -0.06354752, - -0.0151862195, 0.07483393, -0.0585081, 0.0472574, -0.036245644, - -0.019949641, -0.039258514, -0.005736455, -0.01696368, 0.010171801, - 0.027522903, -0.024565887, -0.006559224, 0.054308992, -0.016000593, - -0.028796, 0.00751712, 0.020637551, 7.96078e-4, -0.019880023, - -0.036371198, 0.014390045, -0.020363253, -0.068534076, 0.009996707, - 0.037667353, 0.01468962, -0.058633342, 0.0086854035, -0.047248855, - 7.834672e-4, 4.8921764e-4, -0.015922552, -0.07144415, -0.039740477, - -0.022567928, -0.0069549596, -0.04230263, 0.009805705, 0.0417413, - 0.005262251, -0.029669965, 0.013290749, -0.02366729, 0.05654813, - -0.017626962, -0.0046845265, 0.07777191, -0.03794281, -0.009191061, - 0.028319811, 0.037397426, -0.029796302, 0.028525546, 0.068039104, - -0.026753236, 0.027573634, -0.05997432, 0.025413575, 0.030613806, - -0.0076492243, -0.0031198468, -0.02411019, -0.028035292, -1.3208788e-5, - -0.046410523, 0.012712696, -0.01925931, -0.04921594, -0.0070542744, - 0.048766483, 8.540944e-4, -9.626063e-4, -0.015853383, 0.04933453, - 0.018258877, -0.020399768, 0.0016037062, -0.0072072856, -0.05722714, - 4.3761337e-4, 0.043360732, -0.011810976, 4.9083267e-4, 0.026049966, - -0.0074360264, 0.03518156, -0.0026569758, 0.0016691906, 0.008047669, - -0.047560513, -0.020402486, -0.033090774, 0.024021074, 0.015577759, - -0.03859629, -0.034997948, -1.6848191e-4, 0.002086435, 0.013687557, - 0.025640422, -0.0043513454, -0.04850644, -0.0019362118, -0.037670687, - -0.061695628, 0.038947105, 0.06277208, 0.05787191, -0.026857859, - -0.06990371, -0.0047636973, 0.04684749, 0.0077207577, 0.007695741, - -0.056844946, 0.028595768, 0.026699172, -0.05116929, -0.005109431, - 0.031128716, -0.0013446106, 0.0139681315, 0.050440144, 0.025040766, - -0.022592219, -0.013720526, -0.023005078, -0.0421749, 0.02077712, - 0.0050703646, -0.023233647, 0.046877615, -0.014012304, -0.027164126, - 6.4262375e-4, -0.019785885, -0.01885247, 0.024065657, 0.06943748, - 0.035220772, -0.045032397, 0.037181746, -0.010516325, 0.03009198, - -0.0087711075, 0.008609154, 0.03451698, 0.028314872, 0.06512518, - -0.037253693, 0.036274433, 0.049552057, 0.00818374, 0.0012095876, - -0.027338546, 0.008517354, -0.02631405, 0.016404469, -0.011527546, - 0.028135061, 0.01469415, 0.01944161, -0.006715656, -0.025316048, - -0.022430805, 0.012262264, -0.012669295, 0.02356378, -0.06436877, - 0.008514137, -0.001914949, 0.052733604, 0.030685619, -0.058031134, - 0.047766335, 0.016129179, 0.048767857, -0.042545993, -0.02498206, - -0.027420882, 0.059150364, 0.022874018, -0.034688707, 0.049060974, - 0.027088905, -0.017279617, -0.0051168534, -0.045669876, -0.002898704, - 0.012886327, 0.021540567, 2.9839735e-4, -0.029556151, 0.013074232, - -0.010310571, 0.059541065, -0.054500327, 0.006422064, 0.009307788, - 0.022174196, -0.0038887437, -0.06446222, -0.0067782053, -0.039963394, - 0.0104308305, 0.0012196762, 0.005120601, 0.008296753, -0.0019123717, - -0.02993071, 0.036937214, -0.036604494, -0.001982389, -0.06855164, - -0.056921646, 0.0058832825, 0.007484347, -0.02339299, 0.018356396, - -0.0012870439, 0.049056347, -0.007682836, 0.0133925285, 0.0018894679, - -0.002281323, -0.014547854, 0.057914793, -0.024106506, 0.025860963, - 2.3325429e-5, -0.025288828, 0.008520088, -0.058419134, -0.047251437, - -0.03196184, -0.04570215, -0.002160891, 0.00107511, -0.033372734, - -0.051966816, -0.03886459, 0.0048816097, 0.064017415, -0.04798177, - 0.032533024, -0.017102735, 0.008227993, 0.001960315, -0.03412989, - 0.019790068, 0.0639507, -0.011609064, 0.010687777, -0.0039204727, - 0.018683674, -0.024688441, 0.0075615053, 0.03189253, 0.020667937, - -0.0361696, -6.6386384e-4, -0.025258264, -0.005150188, 0.038846534, - -0.02309041, -0.058671724, -0.030122701, -0.006930903, 0.016645147, - -0.018050702, 0.054149818, -0.0086038755, -0.023946421, -0.029416587, - 0.010919586, -0.04927017, 0.010592566, -0.023203047, -0.03458909, - 0.030454086, 9.371648e-4, 5.568497e-7, -0.049542863, 0.04040213, - 0.009361838, 0.024775177, -0.053503808, 0.016880648, 0.010792425, - -0.0042909686, -0.06969191, -0.008900956, 0.005941167, -0.031514943, - 0.026678411, 0.072549894, 0.01967025, -0.013725351, -0.052699987, - -0.004925504, 0.038940575, 0.007931767, -0.039155316, 0.047964826, - -0.031866536, 0.019195745, -0.035628524, -0.008773326, -4.0806888e-4, - -0.017834684, -0.0019164933, 0.01320035, 0.04939444, 0.04896136, - -0.016427955, 0.0034914436, -0.034205925, -0.011855737, -0.015169993, - 0.008387427, -0.038309384, -0.033939682, 0.015964713, 0.031052273, - -0.025824632, 0.0034260552, 0.053587142, -0.011157507, -0.01007905, - 0.0034274762, 0.0051792343, -0.033843793, 0.0052374327, 0.029017864, - 0.03592839, 0.009428929, 0.028564367, 0.007499978, 0.008501769, - 0.017141642, 0.023707548, -0.05180351, -0.050318014, 9.426824e-4, - -0.030982392, 0.0024863204, 0.0047798925, 0.023200057, -0.031495817, - 0.006263786, -0.007975046, -0.02318091, -0.026656419, 0.012682091, - 0.04517137, 0.004604989, 0.0034389915, -0.009228646, -0.006575213, - 0.009725755, -0.033337083, -0.013205845, 0.06983858, 0.047920786, - 0.03656577, 0.036438677, -0.0116009265, -0.03118852, 0.024018312, - 0.025842234, -0.019936567, -0.004525703, -0.036894605, -0.012062251, - -0.019135663, 0.028682387, 0.0047798874, 0.010611663, -0.03669694, - 0.02620607, 0.048076082, -0.050374493, -0.031320598, 0.044941768, - 0.06251575, -0.038489547, 0.045372184, 0.0027475979, -0.068671666, - -0.045862146, -0.014060781, -0.030087247, -0.06651365, -0.025745368, - 0.020292642, -0.026493937, 0.017558219, -0.0013339081, 0.0029740701, - 0.037809927, -0.0010006571, 0.010551236, 0.02210102, -0.057724163, - -0.0037640135, -0.016218109, 0.023709528, 0.030023169, 0.057867598, - 0.051442273, 0.08085756, 0.03217715, 0.062111814, 0.046125602, - -0.0022203177, 0.014138803, 0.013575685, 0.005174002, -0.02463352, - 0.03123785, -0.052163877, -0.0017072145, 0.013732613, -0.03592853, - -0.026307087, -0.0058911466, 0.01215482, -0.00959945, 0.035049498, - -0.027973596, -0.020587243, 0.0066611217, -0.022617996, 0.02358295, - -0.048998807, 0.07731361, -0.02387469, -0.027346512, 0.017237362, - 0.009811533, -0.012120564, 0.0062849694, -0.05457576, 0.040646464, - -0.035585597, -0.0053010983, -0.07115492, -0.03101182, 0.015017708, - -0.024277981, -0.026577191, -0.0030540477, 0.04533483, 0.003226094, - 0.021650271, -0.040838495, 0.028103897, 0.03688825, -0.054741945, - 0.05426443, 0.042252656, -0.0084369425, 8.48423e-4, 0.06999041, - 0.04908618, -0.009449215, -0.0011024661, -0.008729993, 0.024689466, - -0.033385064, 0.051012333, 0.008986002, -0.01825252, -0.022494534, - 0.010578276, -0.016921036, -0.035846427, -0.007104839, -0.050550587, - 0.072154045, -0.003096625, 0.050322246, 0.06173364, -0.040051218, - 0.098826505, -0.02158336, 0.01565834, 0.038719244, -0.0016946148, - 0.0049299314, -0.040503185, -0.06214663, -0.02553167, -0.008137189, - -0.012176727, -0.035390735, 0.056851156, -0.02052609, -0.059139088, - 0.043102186, 0.028973239, -0.021634603, -0.048547648, 0.024971135, - 0.022438398, 0.0149711035, 5.986807e-4, -0.01474095, -0.06068587, - -0.006296499, 0.047299597, 0.04286264, -0.031278625, -0.036396697, - 0.007880246, 0.04365227, -0.0134817045, 0.017223392, -0.077582315, - -0.013492285, -0.0065320297, 0.026852524, -0.010950455, 0.012189828, - -0.06294805, 0.0031848336, 0.0040953774, -0.011465244, 0.005890194, - 0.0069014155, -0.015790062, -0.05908661, -0.012452172, 0.0070830905, - -0.0037944445, -0.01609864, 0.032155436, -0.022246877, -0.016579365, - -0.045438305, -0.009936168, 0.0148094585, -0.029351017, -0.003048524, - 0.0587986, -0.027400987, -0.018097831, -0.036203988, 0.0040427865, - 0.10071458, -0.019703565, -0.008785426, -0.014766854, -0.03772734, - 0.020642394, 0.0115098525, 0.032035526, 0.016677443, 0.032725237, - 0.044242453, 0.0010334799, 0.077746466, -0.071307756, -0.04150509, - 0.040351357, 0.007809615, -0.013518987, 0.014503664, -0.021678563, - 0.027753353, 0.029046027, 0.028014874, 0.0045505343, 3.8284276e-4, - 0.024799524, -0.0043517104, 0.0038712558, -0.0011583968, 0.005512937, - 0.02462625, 0.016277518, 0.038559143, -0.010883521, 0.07686907, - 0.017868068, -0.005214528, 0.010282283, -0.012820611, -0.010792816, - 0.035720028, 0.026454628, 0.047726043, -0.02329517, 0.03167876, - 0.010068946, -7.3561334e-4, -0.04808971, -0.021877248, 0.01976027, - -0.021269355, -0.04467793, -0.034582514, 0.012851886, 0.036975414, - 0.014725679, 0.027932417, -0.0029266295, -0.0022300375, -0.0073582814, - 0.029890845, 0.042221576, -0.02784434, 0.009636624, -0.050339002, - 0.031166155, 0.008841481, 0.0021986652, 0.015908012, -0.00842839, - -0.025717622, -0.0109418025, -0.018046482, -0.037417583, -0.0034042308, - -0.037183728, 0.017857332, 0.042149436, -0.032378137, -0.01003209, - 0.005878189, 0.015326727, 0.053609908, -0.033361055, 0.010141323, - 0.0134142395, 0.004220884, 0.018960651, -0.039909504, 0.030723315, - 0.012799465, 0.015006819, -0.014076595, -0.022329614, 0.046538223, - 0.018855736, 0.03967336, -0.026760029, -0.010830358, 0.017492773, - 0.022891965, 0.005501455, -0.023351798, 0.0074957125, 0.015554724, - 0.017675197, 0.02859658, -0.006415039, 0.01467115, -0.045628075, - 0.0036021285, -0.025034588, 0.0360373, -0.01991837, 0.020326596, - 0.023298495, -0.03451227, -0.00497301, 0.0034433196, 0.006458244, - -0.019892557, 0.038212225, 0.024050526, 0.02291681, 0.022181267, - -0.017692087, -0.009809757, 0.008335663, 0.02253574, -0.0013483176, - 0.003994638, 0.057018366, 0.0022394957, 0.027329298, 0.031883642, - 0.019420905, 0.047385603, -0.0073875734, 0.0010946479, -2.2677415e-4, - -0.026940312, -0.0119230375, 0.03010785, -0.019699953, -0.037589703, - 0.0037389589, -0.041601125, 0.0069672107, -0.0544202, 0.009059333, - 0.020115618, 0.040872257, -0.055256955, 0.04837526, 0.0018357361, - -0.073241435, -0.0063209548, 0.034670606, -0.0495722, -0.03979912, - 0.0053835846, -0.04830071, -0.033182636, 0.044957098, -0.08820635, - -0.0019341221, 0.021459594, -0.009753128, 0.021760385, 0.046601467, - -0.009092502, -0.0086585535, -0.015344211, -0.019586468, -0.03148966, - 0.028239042, 0.029015226, -0.01842471, 0.003495055, 0.039039705, - -0.013807808, 0.02689621, -0.0060689626, -0.012772769, -0.013514817, - 0.018682282, 0.019312933, 0.013417507, -0.037633218, 0.020117339, - 0.026283205, 0.03802566, 0.021185128, -0.017019078, 0.033297963, - -0.046536576, -7.802415e-4, 0.033383515, 0.05060472, -0.041507795, - -0.004479658, 0.045842696, -0.0032769844, 0.022786343, 0.03924616, - -0.03783036, 0.0034006746, 0.0039237966, 0.052578382, -0.029011326, - 0.009544204, -0.03456194, -0.029851994, 0.050035525, -0.034239773, - -0.03518381, -0.018478101, 0.030982697, 0.012608195, -0.005861479, - 0.013337484, -0.027739238, -0.020742185, -0.0195225, 0.030784126, - -0.02703968, 0.0054974216, 0.017206594, 0.015784731, -0.0045703943, - -0.0014484575, 0.023341464, -0.032214455, 0.034517955, 0.033102363, - -0.037400898, -0.002126053, -0.053574204, -0.026727034, 0.036246136, - -0.03011441, 0.005020898, -0.0676992, -0.0151743, 5.3484866e-4, - -0.0045171697, 0.047716603, -0.08686424, 0.020515414, -0.03314124, - -0.037662275, -0.022747828, 0.0104307085, -8.749842e-4, 0.025848143, - 0.003491304, 0.015118825, 0.011041116, 0.067543514, -0.04791531, - -0.0029823906, 0.021213913, -0.028138896, 0.024904422, -0.045344062, - 0.029185839, 0.032720245, 0.023873888, -0.06925194, -0.023951674, - 0.0010743489, -0.07242783, -0.011452461, 0.011330069, -0.02832005, - -0.0069695455, 0.014293268, 0.012055885, -0.04279912, -0.025767704, - -0.0027573025, -0.021025289, 0.06594189, 0.018830467, -0.027753985, - -0.0057760826, 0.026246097, -0.0075107194, -0.041008845, 0.0010613533, - -0.0033716692, -0.03326509, 0.020649154, 0.028335543, -0.030084187, - 0.008068052, -0.020976646, -0.062331196, -0.01312797, -0.029264754, - -0.0017507521, 0.0124374, -0.003677447, -0.042374115, -0.009858784, - -0.03696562, 0.046782386, 0.021231562, 0.018430747, -0.015565059, - -0.08045869, 0.040251445, 0.06418487, 0.08343104, 0.024553282, - 0.050993804, 0.00971709, 0.031016387, -0.036115162, 0.035963066, - -0.018840132, -0.0041660275, -0.029306656, 0.03167096, -0.01002846, - 0.027008083, 0.063566364, 0.049698714, 0.00224273, -0.061848957, - 0.037304018, -0.039569207, 0.0020951247, -0.014167498, -0.0122810295, - -0.036799833, -0.013398598, 0.031587403, -0.014244001, -0.07382263, - -0.031910773, -0.027690882, 0.024576278, -0.004899268, 0.0075868717, - 0.0054838397, -0.045760255, -0.012793696, -0.032417748, 0.0026925267, - -0.0087290825, 0.02050458, -0.024850933, 0.021119991, -0.042210076, - -0.042281166, -0.020007055, 0.028195344, 0.01864978, -0.03404427, - -0.03847842, -0.010725757, 0.00987862, 0.0035686719, -0.0032961415, - 0.01596629, 0.041481007, 0.026891973, -0.04400813, 0.013469264, - -0.01270242, 0.020634726, -0.0033834034, 0.006506039, 0.041054904, - 0.03594544, -0.004387501, 0.015048654, -0.01532226, 0.008546229, - 0.015623307, -0.023387074, -0.045071967, 0.045844417, 0.04640126, - 0.031572435, -0.018515078, -0.016386142, 0.042239446, 0.009946327, - -0.03304033, 0.004520009, 0.028513154, -0.014201811, 0.0071576643, - 0.004830581, -0.03389998, 0.08255434, 0.023450516, 0.011453972, - 0.03446337, 0.010034301, -0.014275852, 0.02038391, -0.03863575, - 0.014058952, 0.03249968, -0.0018115693, 0.00310874, -0.022508413, - -0.0072705843, 0.011933098, 0.030068334, 0.005670568, 0.01713868, - -0.028834723, -0.036475252, 0.06205599, 0.042500895, -0.016283438 + "paletteEmbedding" : [ + -6.3517386E-5, + -0.025464978, + -0.001912737, + 0.0017578112, + -0.012515783, + -0.008379823, + 0.06284727, + 0.024704944, + 0.005977974, + 0.054528065, + 0.035752144, + -0.011296907, + 0.022778857, + -0.03739662, + -0.04234819, + 0.06479917, + 0.010835561, + 0.00486538, + -0.01327159, + 0.03651853, + -0.0068853963, + 0.019082831, + 0.057382382, + 0.0011396215, + 0.008693707, + -0.015113298, + 0.046656705, + 0.01241217, + 0.023718912, + -0.018844943, + -0.0261538, + 0.006059317, + -0.0544326, + 0.03263526, + 0.010173746, + 0.03979848, + -0.06796964, + 0.0023748905, + -0.026099037, + 0.016154544, + -0.0018383726, + 0.016081136, + -0.033465978, + 0.0170431, + 0.043420307, + 0.0024777, + 0.00637469, + -0.039048657, + 0.037499312, + 0.0061574983, + 0.03535304, + -0.04357624, + -0.028038666, + 0.034821097, + -0.030381184, + 0.020905044, + 0.08079676, + -0.031408727, + -0.02684515, + 0.02365028, + -0.0041983975, + -0.049268905, + -0.0038056367, + -0.044211864, + 0.04896915, + -0.059269194, + -0.0043903226, + -0.038831133, + 0.009604556, + -0.003897188, + 0.008919757, + -0.014701823, + -0.008832768, + -0.0032155581, + -0.037777316, + -0.008487308, + 0.017932955, + 0.008826387, + -0.0011819293, + 0.004598629, + 0.015700288, + -0.030834315, + -0.06523919, + 0.026615622, + -0.0275163, + -0.023598358, + -0.022525633, + -0.046423044, + 0.017480616, + -0.027513541, + -0.024362395, + 0.03456266, + 0.020008104, + 0.033083137, + -0.022118073, + 0.050335974, + 0.04178258, + -0.014580401, + -0.027001414, + 0.0033310626, + 0.048054542, + 0.009500308, + 0.022573814, + -0.018733412, + 0.029266657, + 0.040974516, + 0.013653155, + 0.00542933, + 0.07564254, + 0.024062375, + -0.03648431, + -0.018049242, + 0.0023063344, + 0.016903369, + -0.049025644, + 0.019109365, + 0.04976435, + 0.027743638, + 0.020189486, + -0.012367513, + 0.010257587, + 0.037668604, + 0.014093362, + 0.015104551, + 0.0133036515, + -0.030871956, + 0.019874288, + -0.04809682, + 0.0183788, + 0.02521569, + 0.007507156, + 0.013241983, + -0.015520786, + -0.055243336, + 4.5648727E-4, + 0.017323643, + 0.02256524, + 0.013712147, + -0.010878866, + 0.017940568, + -0.018324262, + 0.019734977, + 0.027691612, + -0.013881645, + 0.0047521405, + 0.04026586, + -0.0051321993, + -0.028144304, + 0.0067326096, + -0.037967525, + -0.011924899, + 0.056576762, + 0.02084287, + 0.03836776, + -0.011799658, + 0.039683588, + -0.034525957, + 0.022524675, + 0.027334819, + 0.005729236, + 0.01023622, + 0.020999296, + -0.016655328, + 0.06302433, + 0.072626896, + -0.076830156, + 0.025960937, + 0.056307357, + -0.020379696, + 0.01982603, + 0.04346062, + 0.009108052, + 0.020419339, + 0.033310454, + 0.011146562, + -0.054167893, + -0.017608054, + 0.030216198, + 0.03326988, + 0.048466794, + -0.010231091, + 0.027200269, + -3.6942287E-4, + -0.006103517, + 0.0010986505, + -0.026350623, + -0.019032797, + -0.008896564, + 0.028276863, + 0.015386637, + -0.01754548, + -0.0044853496, + 0.018657196, + -0.0077318633, + 0.037504125, + -0.034749106, + -0.0034393345, + 0.05562311, + 0.041182052, + 0.04607748, + -0.0642536, + 0.03173155, + -0.017394543, + -0.019757628, + 0.008907539, + 0.03256863, + 0.07103544, + -0.018751336, + -0.028798671, + 0.01764354, + -0.0027009498, + 0.0052097696, + -0.0151184965, + 0.034426652, + -0.035138547, + 0.04399848, + 0.02904852, + 0.03918505, + 0.0010635694, + 0.036453668, + -0.03184048, + -0.023348073, + -0.010494533, + -0.009018138, + -0.044050436, + -0.02986858, + -0.034905598, + -7.295996E-4, + -0.017223323, + -0.0095688, + 0.014891745, + -0.016324962, + -0.05468385, + -0.08020655, + -0.019190272, + 0.019916117, + -0.024005104, + -0.0057727513, + -0.025945874, + -0.050147314, + 0.04064027, + 0.05552568, + 0.05411594, + -0.086506546, + 0.012077592, + 0.04572756, + 0.042984426, + 0.0032410952, + 0.030309692, + -0.0013836923, + -0.04851931, + -0.011615271, + -0.012607934, + -0.048027646, + 0.03133462, + 0.00955887, + -0.04399721, + 0.016072575, + 0.032630015, + -0.023004783, + -0.013574848, + 0.00975013, + 0.028515665, + -0.0072282045, + 0.02380695, + -0.021224193, + -0.06891643, + -0.009535524, + -0.013911031, + 0.038751595, + 0.027264584, + 0.0033140588, + 0.014396508, + 0.027482327, + 0.027679302, + 0.021695225, + 0.011752469, + -0.017799303, + 0.0044442522, + -5.632209E-5, + -0.018264044, + -0.038452487, + 0.00820065, + 0.025904063, + 0.034564648, + -0.002240987, + -4.2488755E-4, + -0.02209886, + 0.026611453, + 0.086571954, + 0.016955871, + 0.00786805, + 0.0028696812, + -0.0071726, + 0.03901032, + -0.029719133, + 0.0022227275, + -0.014795669, + -0.0147732515, + -0.021048695, + 0.0044232015, + 0.07663871, + -0.01739208, + 0.029316977, + -0.01886227, + -0.01627895, + -0.0045506335, + -0.011607417, + -0.0020956104, + -0.016258728, + 0.026970264, + 0.041225586, + -0.016004367, + -0.04582936, + -0.026368367, + 0.012387182, + -0.01821307, + -1.7402555E-4, + -0.016407566, + 0.032138094, + -0.010651493, + -0.003825945, + 0.019840315, + -0.01513585, + -0.012908824, + 0.07485143, + -0.037047178, + 0.0036444578, + 0.020330794, + 0.004569439, + 0.13121417, + 0.011992324, + 0.054125164, + 0.031207932, + -0.06101277, + 0.042182434, + -0.0051061367, + 0.025033763, + -0.009916431, + 5.914211E-4, + 0.0038898815, + -0.04750212, + -0.0022363728, + 4.7833665E-4, + -0.0124713415, + -0.00783823, + 0.003777393, + 0.011240619, + 0.040480234, + 0.020389782, + 0.026712436, + -0.006435827, + -0.041658625, + 0.028510824, + 0.026347825, + 0.034788888, + -0.0066846083, + 0.019147309, + -0.006667568, + -0.010412728, + -0.054427087, + -9.0511347E-4, + 0.015277206, + 0.028089266, + 0.036325634, + 0.024929963, + -0.03146259, + 0.04730735, + 0.034324337, + -0.08228762, + 0.0025745279, + 0.0025595005, + -0.07890084, + 0.07416212, + -0.007723603, + 0.004523381, + 0.023292866, + 0.020597115, + 0.020905452, + -7.8356294E-5, + 0.03202764, + 0.020593928, + 0.009529299, + 0.015024125, + -0.035081588, + -0.030892935, + -0.02770435, + 0.0034036522, + 0.039835777, + -0.045516465, + -0.027733, + 0.023544395, + 0.020051112, + -0.075584725, + -0.030499732, + -0.008765029, + -0.015497338, + -0.031334337, + -0.0034476102, + -1.111658E-4, + 0.005271779, + 0.038160697, + -0.026852831, + -0.021286368, + -0.08990163, + 0.023089686, + 0.0033692778, + -0.065857455, + 0.050667092, + 0.0353047, + 0.028860873, + -0.024862994, + -0.011857471, + -0.056867436, + 0.025280127, + -0.020531261, + -1.537516E-4, + 0.010170119, + -0.016334804, + -0.05859836, + -0.0024879484, + 0.04582558, + -0.020592518, + 0.04209692, + -0.0050396817, + -0.025496125, + 0.008260281, + 0.006739663, + -0.059429675, + 0.045514878, + -0.0066947225, + 0.027568702, + -0.029465396, + -0.012419328, + 0.037774727, + -0.041493576, + 0.02752052, + 0.039873254, + 0.035601415, + -0.004008997, + -6.772738E-4, + -0.010898163, + -0.005456613, + 0.031188607, + 0.07472294, + -0.01172203, + -0.004556022, + -0.043892674, + 0.022185845, + 0.026841467, + -0.0031179904, + 0.0168097, + -0.017300017, + -0.028815517, + 0.07231069, + -0.013487372, + 0.008028948, + 0.019759078, + 0.0076781265, + -0.00884297, + 0.057811987, + -0.017155653, + -0.009268108, + 0.040468447, + -0.009776807, + -0.07837883, + -0.00589203, + -0.027576922, + -0.04981211, + -0.028751744, + 0.018128565, + 0.0070697875, + 0.0054323333, + 0.0208672, + 0.024269208, + -9.4059634E-4, + -0.0039603175, + -0.013675893, + 1.886752E-4, + 0.0050633606, + -0.03754581, + -0.00459833, + -0.0042819064, + 0.018299252, + 0.035981238, + 0.08426417, + -0.013817551, + -3.243814E-4, + -0.03192298, + 0.04987019, + -0.010351746, + 0.07280075, + -0.010514244, + 0.0073389, + 0.04542361, + 0.042623527, + 0.021752357, + 0.008648103, + 0.014743739, + 0.042353667, + 0.033411205, + 0.0014265862, + 0.03171387, + -0.028082022, + 0.0048968107, + -0.010738105, + 0.011564825, + 0.006283094, + -0.045800377, + 0.02819899, + -0.011408775, + -0.06684554, + -0.031503234, + -0.016387206, + 0.009880261, + 0.030882124, + 0.030169532, + -0.028795062, + -0.008510551, + 0.049224935, + 0.036415346, + 0.0030202442, + 0.0062120683, + -0.009530359, + -0.022160176, + -0.012325227, + -0.015391091, + -0.03420753, + 0.021379214, + -0.0045486647, + 0.03721087, + 0.039836843, + -0.012136989, + 0.0043847943, + 0.0035437543, + 0.011980112, + -0.024421385, + -0.041735422, + -0.035779286, + -0.017390333, + -0.058893118, + 0.012769313, + 0.0035260513, + 0.023354763, + -0.021860998, + 0.0335167, + -0.022877404, + -0.030384945, + 0.03992806, + -0.0028175903, + 0.03002114, + 0.010478805, + -0.011383487, + 0.025189415, + 0.017487245, + -1.1165959E-4, + 0.041589234, + 0.01437368, + -0.029453984, + 0.013009842, + -0.0022416594, + -0.051307168, + -0.009777703, + -0.010359844, + 0.07008859, + -0.02121183, + -0.0077255145, + -0.05796602, + 0.012770645, + 0.040751718, + 0.014590695, + -0.011278536, + -0.035864543, + 0.015508722, + -0.02672645, + 0.02477229, + -0.029032847, + -0.024252547, + -0.026520222, + -0.05040725, + -0.011351135, + -0.032358225, + -0.038863793, + -0.019378683, + 0.008519906, + 0.026396891, + -0.032293838, + -0.017396435, + -0.02564116, + 0.006800388, + 0.019191675, + 0.007614296, + -0.0056178207, + 0.007837364, + 0.026250279, + 0.016070485, + -0.007065088, + -0.018294271, + -0.009136201, + 0.036961377, + 0.0047004656, + 0.05902638, + 0.027881753, + 0.07007696, + -0.06383068, + -0.0016892905, + 0.023061732, + -0.004147818, + 0.019977316, + 0.02838616, + 0.030108472, + 0.012263591, + 0.0276678, + -0.020298688, + -0.02464005, + 0.07890574, + -0.017070234, + 0.04561234, + 0.016225599, + -0.014398734, + 0.0036157975, + 0.009687243, + -0.03251758, + 0.026152745, + 0.031186009, + -0.011313767, + 0.017489789, + -0.009453426, + -0.03649228, + 0.041433193, + 8.4894337E-4, + -0.0116849905, + 0.008114488, + -0.0112607125, + -0.017466845, + -0.018481635, + 0.068564706, + -0.044939388, + -0.024726892, + -0.0485902, + -0.0056934045, + 0.00886047, + 0.009315791, + -0.002129379, + 0.052114595, + 0.012709762, + 0.006738954, + 9.62554E-4, + 0.03652261, + 0.05607551, + -0.00936066, + 0.011862501, + 0.038787544, + 0.067201085, + 0.005286945, + -0.023830676, + 0.013698858, + -0.051806595, + -0.04522515, + -0.004819886, + -0.0119376555, + -0.029875673, + 0.07225307, + 0.057025373, + -0.012399761, + 0.021965465, + 0.0023626103, + 0.05866321, + 0.025004439, + 0.021268683, + -0.0040646023, + 0.027609408, + 0.02642913, + -0.037303675, + 0.03902597, + 0.023742987, + 0.008800543, + 0.025708431, + 0.014251157, + 0.05415897, + -0.03011901, + -0.01852138, + 0.018871455, + 0.02435402, + 0.019446837, + -0.012574621, + -0.013703753, + -0.043128245, + 0.009827905, + 0.018762188, + 0.027829008, + -0.024667347, + -0.038638234, + 0.024607409, + -0.048365813, + -0.03532638, + 0.029107025, + 0.064496465, + -0.011168177, + -0.034050666, + 0.023732347, + -0.011894602, + -0.0038960504, + -0.056332234, + 0.083731644, + 0.0036554413, + -0.022089938, + -0.011444539, + 0.043274827, + 0.0033599557, + 0.045574386, + 0.046992972, + 0.034111433, + -0.02047344, + 0.013177709, + -0.024721052, + 0.026224378, + 0.013696163, + 0.004970637, + -0.010887856, + -0.001338856, + 0.001843487, + 0.05665458, + 0.009641022, + 0.032758705, + 0.0184023, + 0.03477794, + 0.025047606, + 0.018043326, + 0.011955576, + 0.06463836, + 0.05361423, + -0.020520672, + -0.025077526, + -0.0351996, + 0.017086461, + 0.022969723, + 0.0190565, + 0.0292956, + -0.024298018, + -0.05797883, + -0.017077997, + 0.013316144, + 0.013563615, + -0.028387384, + 0.0013680393, + -0.028624691, + -4.857168E-4, + 0.031428915, + -0.012700616, + -0.008635189, + -0.01830241, + -0.037847005, + 0.0186777, + 0.0015239182, + 0.023202758, + -0.040938146, + -0.042757623, + -0.023932232, + 0.03602867, + -0.06690146, + -0.0078863455, + -0.030767335, + 0.021767901, + 0.022917397, + -0.016276974, + -0.033933166, + 0.025315452, + -0.024007132, + -0.04490385, + 0.0038704418, + -0.028771678, + 0.018394042, + -0.035416126, + -0.013264634, + -0.034888357, + -0.0062828003, + -0.061540503, + -0.039359216, + -0.0070001124, + -0.037562605, + 0.038934465, + -0.028259898, + -0.022028398, + -0.07442455, + 0.050739396, + 0.014015763, + 0.019509736, + -0.047702312, + 0.044496957, + -0.065498814, + -0.018692087, + 0.03721744, + -0.036061455, + -0.021401199, + -0.0128932735, + -0.03381702, + -0.023385223, + 0.0015577084, + -0.03320855, + 0.015715836, + -0.038691763, + 0.007677382, + -0.023807764, + 0.042747024, + 0.01950204, + -0.002653753, + 0.011262587, + 0.008586544, + 0.036922377, + 0.005521904, + -0.007697317, + 0.05354758, + 0.040757712, + 0.006954117, + -0.027216569, + -0.019293364, + -0.0063432134, + -0.01899452, + 0.06048109, + -0.035173204, + 0.017559115, + 0.0013486601, + 0.022051277, + 0.019329323, + 0.020511804, + -0.0075270548, + -0.01850304, + 0.011482496, + -0.002615255, + 0.044297546, + 0.03959544, + -0.047904786, + -0.0024669366, + -3.5166246E-4, + 0.024815664, + 0.012050633, + -0.034649245, + 0.007953484, + -0.005354873, + -0.012300154, + -0.03217273, + -0.04003683, + -0.008307914, + 0.046792023, + -0.029515138, + -0.035973076, + -0.05948194, + 0.0065669976, + 0.035210703, + -0.005124864, + 0.009087858, + -0.010917475, + 0.017709505, + -0.033201534, + 0.052182414, + -0.034222674, + -0.08373829, + 0.0040767244, + -0.032601375, + -0.013623354, + -0.004786232, + 0.0036101856, + 0.025405843, + 0.055008497, + -0.024094002, + 0.033872016, + -0.0033266037, + -0.0020146207, + 0.020679168, + 0.022458747, + 9.7191904E-4, + -2.0785094E-4, + 0.0076354113, + -0.047072664, + 0.014841433, + 0.006198862, + -0.025859512, + -0.019176543, + -0.045244604, + -0.011346422, + -0.028959185, + -0.010481915, + -0.07101235, + 0.035828367, + -0.0534946, + 0.04038891, + -0.0033300165, + -0.0149086695, + 0.015193594, + 0.012174143, + -0.0061079315, + -0.041130133, + -0.009347024, + 0.055558916, + -0.058796603, + 0.047527846, + 0.01832754, + 0.013673109, + -0.051848486, + -0.0266694, + 0.036864713, + -0.03618272, + -0.018567564, + 0.008848809, + 1.1497872E-5, + 0.0061232597, + -0.021989223, + -0.028220978, + -0.013425666, + -8.6684513E-4, + -0.052629728, + 0.0036893915, + 0.01743377, + -0.08248401, + -0.05496574, + -0.032995965, + 0.030722883, + 0.01901409, + -0.060995154, + 0.0287802, + 0.021019613, + -0.028570957, + -0.0048345216, + -0.019785045, + -0.056497026, + -0.02095313, + -0.030731736, + 0.045923006, + 0.022448365, + 0.02464618, + -0.023034738, + -0.092274435, + 0.024294255, + 0.03778188, + 0.0024621023, + 0.009770808, + -0.021771109, + -0.01161048, + -0.015227939, + -0.04362159, + 0.07751389, + -0.015852794, + -0.05139712, + -0.04532221, + 0.008227095, + 0.002256927, + 0.022734627, + 0.033442445, + -0.036283243, + 0.025064016, + 0.05362519, + 0.037732158, + -0.029051024, + 0.06302765, + -0.011542357, + 0.019023338, + -0.0028835614, + -0.03351483, + 0.029692248, + -0.030298224, + -0.04734483, + 0.01204536, + 0.004917107, + -0.03153714, + -0.03566983, + -0.065927915, + -0.0013470827, + -0.06876777, + -0.033727594, + -0.0065163765, + 0.044286627, + 0.045270223, + 0.0028156715, + 0.037147038, + 1.14721304E-4, + -0.045386646, + 0.03177609, + -0.034356005, + -0.02049488, + 0.0022827412, + 0.038887344, + -0.05764464, + 0.0077033024, + -0.039565906, + 0.01444459, + 0.023717713, + -0.0345219, + -0.018888716, + -0.0026458572, + 0.0050423825, + 0.046562985, + -0.0016351808, + 0.05780099, + 0.022674307, + -0.013530765, + -0.04311573, + -0.022659495, + 0.020392075, + 0.025946626 ] }, - "debug": { - "indexedTime": "2001-01-01T01:01:01Z" + "debug" : { + "indexedTime" : "2001-01-01T01:01:01Z" } } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-production.1098.json b/common/search/src/test/resources/test_documents/work-production.1098.json index 0b60fdaad..c0e9a5afe 100644 --- a/common/search/src/test/resources/test_documents/work-production.1098.json +++ b/common/search/src/test/resources/test_documents/work-production.1098.json @@ -1,125 +1,199 @@ { - "description": "a work with a production event in 1098", - "createdAt": "2023-11-21T15:39:30.574731Z", - "id": "guav7chy", - "document": { - "debug": { - "source": { - "id": "guav7chy", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with a production event in 1098", + "createdAt" : "2024-11-13T08:43:26.277829Z", + "id" : "guav7chy", + "document" : { + "debug" : { + "source" : { + "id" : "guav7chy", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "W9fptfa5Xn" + "ontologyType" : "Work", + "value" : "W9fptfa5Xn" }, - "version": 36, - "modifiedTime": "1947-04-11T10:50:49Z" + "version" : 36, + "modifiedTime" : "1947-04-11T10:50:49Z" }, - "mergedTime": "1947-04-11T10:50:49Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1947-04-11T10:50:49Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "guav7chy", - "title": "Production event in 1098", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "guav7chy", + "title" : "Production event in 1098", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "W9fptfa5Xn", - "type": "Identifier" + "value" : "W9fptfa5Xn", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "O5NI3fmxMe7PvjOSdUDvO1WIV", - "places": [], - "agents": [], - "dates": [ + "label" : "O5NI3fmxMe7PvjOSdUDvO1WIV", + "places" : [ + ], + "agents" : [ + ], + "dates" : [ { - "label": "1098", - "type": "Period" + "label" : "1098", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "guav7chy", - "sourceIdentifier.value": "W9fptfa5Xn", - "identifiers.value": ["W9fptfa5Xn"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1098"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1098" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "guav7chy", + "sourceIdentifier.value" : "W9fptfa5Xn", + "identifiers.value" : [ + "W9fptfa5Xn" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1098" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1098" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1098\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1098\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-27517622400000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["W9fptfa5Xn"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -27517622400000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "W9fptfa5Xn" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-production.1900.json b/common/search/src/test/resources/test_documents/work-production.1900.json index 0679facfa..99ce10427 100644 --- a/common/search/src/test/resources/test_documents/work-production.1900.json +++ b/common/search/src/test/resources/test_documents/work-production.1900.json @@ -1,125 +1,199 @@ { - "description": "a work with a production event in 1900", - "createdAt": "2023-11-21T15:39:30.404815Z", - "id": "rbnro6wx", - "document": { - "debug": { - "source": { - "id": "rbnro6wx", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with a production event in 1900", + "createdAt" : "2024-11-13T08:43:26.268138Z", + "id" : "rbnro6wx", + "document" : { + "debug" : { + "source" : { + "id" : "rbnro6wx", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "akaUmx5H3i" + "ontologyType" : "Work", + "value" : "akaUmx5H3i" }, - "version": 53, - "modifiedTime": "1935-04-27T19:39:17Z" + "version" : 53, + "modifiedTime" : "1935-04-27T19:39:17Z" }, - "mergedTime": "1935-04-27T19:39:17Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1935-04-27T19:39:17Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "rbnro6wx", - "title": "Production event in 1900", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "rbnro6wx", + "title" : "Production event in 1900", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "akaUmx5H3i", - "type": "Identifier" + "value" : "akaUmx5H3i", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "gu6TgtWwNe2izyk21myzum5ko", - "places": [], - "agents": [], - "dates": [ + "label" : "gu6TgtWwNe2izyk21myzum5ko", + "places" : [ + ], + "agents" : [ + ], + "dates" : [ { - "label": "1900", - "type": "Period" + "label" : "1900", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "rbnro6wx", - "sourceIdentifier.value": "akaUmx5H3i", - "identifiers.value": ["akaUmx5H3i"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1900"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1900" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "rbnro6wx", + "sourceIdentifier.value" : "akaUmx5H3i", + "identifiers.value" : [ + "akaUmx5H3i" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1900" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1900" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1900\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1900\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-2208988800000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["akaUmx5H3i"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -2208988800000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "akaUmx5H3i" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-production.1904.json b/common/search/src/test/resources/test_documents/work-production.1904.json index 8b461e926..1a0a0e155 100644 --- a/common/search/src/test/resources/test_documents/work-production.1904.json +++ b/common/search/src/test/resources/test_documents/work-production.1904.json @@ -1,125 +1,199 @@ { - "description": "a work with a production event in 1904", - "createdAt": "2023-11-21T15:39:30.487946Z", - "id": "aiv95swj", - "document": { - "debug": { - "source": { - "id": "aiv95swj", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with a production event in 1904", + "createdAt" : "2024-11-13T08:43:26.272823Z", + "id" : "aiv95swj", + "document" : { + "debug" : { + "source" : { + "id" : "aiv95swj", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "h0QyLvGt20" + "ontologyType" : "Work", + "value" : "h0QyLvGt20" }, - "version": 38, - "modifiedTime": "1949-02-28T00:19:38Z" + "version" : 38, + "modifiedTime" : "1949-02-28T00:19:38Z" }, - "mergedTime": "1949-02-28T00:19:38Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1949-02-28T00:19:38Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "aiv95swj", - "title": "Production event in 1904", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "aiv95swj", + "title" : "Production event in 1904", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "h0QyLvGt20", - "type": "Identifier" + "value" : "h0QyLvGt20", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "gIdUKO9ELdlCtGqZpr8ZHyDFZ", - "places": [], - "agents": [], - "dates": [ + "label" : "gIdUKO9ELdlCtGqZpr8ZHyDFZ", + "places" : [ + ], + "agents" : [ + ], + "dates" : [ { - "label": "1904", - "type": "Period" + "label" : "1904", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "aiv95swj", - "sourceIdentifier.value": "h0QyLvGt20", - "identifiers.value": ["h0QyLvGt20"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1904"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1904" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "aiv95swj", + "sourceIdentifier.value" : "h0QyLvGt20", + "identifiers.value" : [ + "h0QyLvGt20" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1904" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1904" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1904\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1904\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-2082844800000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["h0QyLvGt20"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -2082844800000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "h0QyLvGt20" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-production.1976.json b/common/search/src/test/resources/test_documents/work-production.1976.json index f555abab3..fa74073d8 100644 --- a/common/search/src/test/resources/test_documents/work-production.1976.json +++ b/common/search/src/test/resources/test_documents/work-production.1976.json @@ -1,125 +1,199 @@ { - "description": "a work with a production event in 1976", - "createdAt": "2023-11-21T15:39:30.477810Z", - "id": "5vjghupy", - "document": { - "debug": { - "source": { - "id": "5vjghupy", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a work with a production event in 1976", + "createdAt" : "2024-11-13T08:43:26.270486Z", + "id" : "5vjghupy", + "document" : { + "debug" : { + "source" : { + "id" : "5vjghupy", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "xrdlOL8J49" + "ontologyType" : "Work", + "value" : "xrdlOL8J49" }, - "version": 83, - "modifiedTime": "1970-01-23T23:11:47Z" + "version" : 83, + "modifiedTime" : "1970-01-23T23:11:47Z" }, - "mergedTime": "1970-01-23T23:11:47Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1970-01-23T23:11:47Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "5vjghupy", - "title": "Production event in 1976", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "5vjghupy", + "title" : "Production event in 1976", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "xrdlOL8J49", - "type": "Identifier" + "value" : "xrdlOL8J49", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "boNJsc3AAjxHM3WnjuDFIT1sH", - "places": [], - "agents": [], - "dates": [ + "label" : "boNJsc3AAjxHM3WnjuDFIT1sH", + "places" : [ + ], + "agents" : [ + ], + "dates" : [ { - "label": "1976", - "type": "Period" + "label" : "1976", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5vjghupy", - "sourceIdentifier.value": "xrdlOL8J49", - "identifiers.value": ["xrdlOL8J49"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["1976"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 1976" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5vjghupy", + "sourceIdentifier.value" : "xrdlOL8J49", + "identifiers.value" : [ + "xrdlOL8J49" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "1976" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 1976" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1976\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1976\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [189302400000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["xrdlOL8J49"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + 189302400000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "xrdlOL8J49" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-production.2020.json b/common/search/src/test/resources/test_documents/work-production.2020.json index 8eac3ed2e..81f08e517 100644 --- a/common/search/src/test/resources/test_documents/work-production.2020.json +++ b/common/search/src/test/resources/test_documents/work-production.2020.json @@ -1,125 +1,199 @@ { - "description": "a work with a production event in 2020", - "createdAt": "2023-11-21T15:39:30.557158Z", - "id": "0fucriyr", - "document": { - "debug": { - "source": { - "id": "0fucriyr", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with a production event in 2020", + "createdAt" : "2024-11-13T08:43:26.275334Z", + "id" : "0fucriyr", + "document" : { + "debug" : { + "source" : { + "id" : "0fucriyr", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "KgSH5dUX0Z" + "ontologyType" : "Work", + "value" : "KgSH5dUX0Z" }, - "version": 14, - "modifiedTime": "1936-06-08T14:59:50Z" + "version" : 14, + "modifiedTime" : "1936-06-08T14:59:50Z" }, - "mergedTime": "1936-06-08T14:59:50Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1936-06-08T14:59:50Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "0fucriyr", - "title": "Production event in 2020", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "0fucriyr", + "title" : "Production event in 2020", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "KgSH5dUX0Z", - "type": "Identifier" + "value" : "KgSH5dUX0Z", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "qX1oaMinUSJLhD6RZ9qpj8A8L", - "places": [], - "agents": [], - "dates": [ + "label" : "qX1oaMinUSJLhD6RZ9qpj8A8L", + "places" : [ + ], + "agents" : [ + ], + "dates" : [ { - "label": "2020", - "type": "Period" + "label" : "2020", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "0fucriyr", - "sourceIdentifier.value": "KgSH5dUX0Z", - "identifiers.value": ["KgSH5dUX0Z"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["2020"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "Production event in 2020" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "0fucriyr", + "sourceIdentifier.value" : "KgSH5dUX0Z", + "identifiers.value" : [ + "KgSH5dUX0Z" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "2020" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "Production event in 2020" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"2020\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"2020\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [1577836800000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["KgSH5dUX0Z"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + 1577836800000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "KgSH5dUX0Z" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-thumbnail.json b/common/search/src/test/resources/test_documents/work-thumbnail.json index 4c733c8be..46ae1d761 100644 --- a/common/search/src/test/resources/test_documents/work-thumbnail.json +++ b/common/search/src/test/resources/test_documents/work-thumbnail.json @@ -1,128 +1,199 @@ { - "description": "a work with a thumbnail", - "createdAt": "2023-11-21T15:39:30.223722Z", - "id": "sahqcluh", - "document": { - "debug": { - "source": { - "id": "sahqcluh", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a work with a thumbnail", + "createdAt" : "2024-11-13T08:43:26.254004Z", + "id" : "sahqcluh", + "document" : { + "debug" : { + "source" : { + "id" : "sahqcluh", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "rRRYGQYiF7" + "ontologyType" : "Work", + "value" : "rRRYGQYiF7" }, - "version": 9, - "modifiedTime": "2052-06-26T19:25:07Z" + "version" : 9, + "modifiedTime" : "2052-06-26T19:25:07Z" }, - "mergedTime": "2052-06-26T19:25:07Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2052-06-26T19:25:07Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "sahqcluh", - "title": "title-LSfnjHB2TS", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "sahqcluh", + "title" : "title-LSfnjHB2TS", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "rRRYGQYiF7", - "type": "Identifier" + "value" : "rRRYGQYiF7", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "thumbnail": { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "subjects" : [ + ], + "genres" : [ + ], + "thumbnail" : { + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/547.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/547.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "sahqcluh", - "sourceIdentifier.value": "rRRYGQYiF7", - "identifiers.value": ["rRRYGQYiF7"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-LSfnjHB2TS" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "sahqcluh", + "sourceIdentifier.value" : "rRRYGQYiF7", + "identifiers.value" : [ + "rRRYGQYiF7" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-LSfnjHB2TS" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["rRRYGQYiF7"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "rRRYGQYiF7" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-title-dodo.json b/common/search/src/test/resources/test_documents/work-title-dodo.json index 228d76f1b..92ae14c80 100644 --- a/common/search/src/test/resources/test_documents/work-title-dodo.json +++ b/common/search/src/test/resources/test_documents/work-title-dodo.json @@ -1,113 +1,183 @@ { - "description": "a work with 'dodo' in the title", - "createdAt": "2023-11-21T15:39:30.307804Z", - "id": "ezagik4b", - "document": { - "debug": { - "source": { - "id": "ezagik4b", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a work with 'dodo' in the title", + "createdAt" : "2024-11-13T08:43:26.256912Z", + "id" : "ezagik4b", + "document" : { + "debug" : { + "source" : { + "id" : "ezagik4b", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "xg9OuzGali" + "ontologyType" : "Work", + "value" : "xg9OuzGali" }, - "version": 84, - "modifiedTime": "1965-10-11T02:36:15Z" + "version" : 84, + "modifiedTime" : "1965-10-11T02:36:15Z" }, - "mergedTime": "1965-10-11T02:36:15Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1965-10-11T02:36:15Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ezagik4b", - "title": "A drawing of a dodo", - "alternativeTitles": [], - "lettering": "A line of legible ligatures", - "contributors": [], - "identifiers": [ + "display" : { + "id" : "ezagik4b", + "title" : "A drawing of a dodo", + "alternativeTitles" : [ + ], + "lettering" : "A line of legible ligatures", + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "xg9OuzGali", - "type": "Identifier" + "value" : "xg9OuzGali", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ezagik4b", - "sourceIdentifier.value": "xg9OuzGali", - "identifiers.value": ["xg9OuzGali"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": "A line of legible ligatures", - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A drawing of a dodo" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ezagik4b", + "sourceIdentifier.value" : "xg9OuzGali", + "identifiers.value" : [ + "xg9OuzGali" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : "A line of legible ligatures", + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A drawing of a dodo" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["xg9OuzGali"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "xg9OuzGali" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-title-mouse.json b/common/search/src/test/resources/test_documents/work-title-mouse.json index 5c166e916..1c1f8a91a 100644 --- a/common/search/src/test/resources/test_documents/work-title-mouse.json +++ b/common/search/src/test/resources/test_documents/work-title-mouse.json @@ -1,113 +1,183 @@ { - "description": "a work with 'mouse' in the title", - "createdAt": "2023-11-21T15:39:30.352571Z", - "id": "lnn17cwk", - "document": { - "debug": { - "source": { - "id": "lnn17cwk", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with 'mouse' in the title", + "createdAt" : "2024-11-13T08:43:26.259339Z", + "id" : "lnn17cwk", + "document" : { + "debug" : { + "source" : { + "id" : "lnn17cwk", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "EhPpSB8mq7" + "ontologyType" : "Work", + "value" : "EhPpSB8mq7" }, - "version": 64, - "modifiedTime": "2003-09-07T11:20:18Z" + "version" : 64, + "modifiedTime" : "2003-09-07T11:20:18Z" }, - "mergedTime": "2003-09-07T11:20:18Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2003-09-07T11:20:18Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "lnn17cwk", - "title": "A mezzotint of a mouse", - "alternativeTitles": [], - "lettering": "A print of proportional penmanship", - "contributors": [], - "identifiers": [ + "display" : { + "id" : "lnn17cwk", + "title" : "A mezzotint of a mouse", + "alternativeTitles" : [ + ], + "lettering" : "A print of proportional penmanship", + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "EhPpSB8mq7", - "type": "Identifier" + "value" : "EhPpSB8mq7", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "lnn17cwk", - "sourceIdentifier.value": "EhPpSB8mq7", - "identifiers.value": ["EhPpSB8mq7"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": "A print of proportional penmanship", - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A mezzotint of a mouse" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "lnn17cwk", + "sourceIdentifier.value" : "EhPpSB8mq7", + "identifiers.value" : [ + "EhPpSB8mq7" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : "A print of proportional penmanship", + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A mezzotint of a mouse" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["EhPpSB8mq7"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "EhPpSB8mq7" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json b/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json index cb73d5899..23d26bab8 100644 --- a/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json +++ b/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json @@ -1,114 +1,184 @@ { - "description": "a work with optional top-level fields", - "createdAt": "2023-11-21T15:39:30.130747Z", - "id": "gsruvqwf", - "document": { - "debug": { - "source": { - "id": "gsruvqwf", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with optional top-level fields", + "createdAt" : "2024-11-13T08:43:26.245788Z", + "id" : "gsruvqwf", + "document" : { + "debug" : { + "source" : { + "id" : "gsruvqwf", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "7YNi35xO0f" + "ontologyType" : "Work", + "value" : "7YNi35xO0f" }, - "version": 54, - "modifiedTime": "1967-09-14T08:19:27Z" + "version" : 54, + "modifiedTime" : "1967-09-14T08:19:27Z" }, - "mergedTime": "1967-09-14T08:19:27Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1967-09-14T08:19:27Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "gsruvqwf", - "title": "title-4pIj0kgXrt", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "gsruvqwf", + "title" : "title-4pIj0kgXrt", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "7YNi35xO0f", - "type": "Identifier" + "value" : "7YNi35xO0f", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "edition": "Special edition", - "notes": [], - "duration": 3600, - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "edition" : "Special edition", + "notes" : [ + ], + "duration" : 3600, + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": "Special edition", - "genres.concepts.label": [], - "id": "gsruvqwf", - "sourceIdentifier.value": "7YNi35xO0f", - "identifiers.value": ["7YNi35xO0f"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-4pIj0kgXrt" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : "Special edition", + "genres.concepts.label" : [ + ], + "id" : "gsruvqwf", + "sourceIdentifier.value" : "7YNi35xO0f", + "identifiers.value" : [ + "7YNi35xO0f" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-4pIj0kgXrt" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["7YNi35xO0f"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "7YNi35xO0f" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json b/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json index d6910316a..93aa6af6a 100644 --- a/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json +++ b/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json @@ -1,6 +1,6 @@ { "description" : "an invisible work with 'mouse' in the title", - "createdAt" : "2023-03-23T12:52:18.683072Z", + "createdAt" : "2024-02-16T15:36:44.232704Z", "id" : "ehd2s7ek", "document" : { "debug" : { @@ -19,6 +19,8 @@ "mergedTime" : "2006-12-05T07:13:26Z", "indexedTime" : "2001-01-01T01:01:01Z", "invisibilityReasons" : [ + ], + "mergeCandidates" : [ ] }, "type" : "Invisible" diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json index c7a30ef93..bc1060546 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json @@ -1,150 +1,224 @@ { - "description": "items with different location types", - "createdAt": "2023-11-21T15:39:34.678455Z", - "id": "tnnwysoe", - "document": { - "debug": { - "source": { - "id": "tnnwysoe", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "items with different location types", + "createdAt" : "2024-11-13T08:43:26.563947Z", + "id" : "4zaferi8", + "document" : { + "debug" : { + "source" : { + "id" : "4zaferi8", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "JC6PIObmiP" + "ontologyType" : "Work", + "value" : "lfxMM8GfuD" }, - "version": 42, - "modifiedTime": "1968-08-04T13:15:13Z" + "version" : 86, + "modifiedTime" : "2038-12-13T02:35:56Z" }, - "mergedTime": "1968-08-04T13:15:13Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2038-12-13T02:35:56Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tnnwysoe", - "title": "title-ydewbq2T7l", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "4zaferi8", + "title" : "title-7W1WKu978d", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "JC6PIObmiP", - "type": "Identifier" + "value" : "lfxMM8GfuD", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "4bhmwgtz", - "identifiers": [ + "id" : "xato6wyi", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "0FUCKKVOQZ", - "type": "Identifier" + "value" : "aLacffLiQz", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Fmn.jpg/info.json", - "credit": "Credit line: IEpzyM", - "linkText": "Link text: tI2pjU6", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/n6e.jpg/info.json", + "linkText" : "Link text: UShs8ZXp5K", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tnnwysoe", - "sourceIdentifier.value": "JC6PIObmiP", - "identifiers.value": ["JC6PIObmiP"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["4bhmwgtz"], - "items.identifiers.value": ["0FUCKKVOQZ"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-ydewbq2T7l" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "4zaferi8", + "sourceIdentifier.value" : "lfxMM8GfuD", + "identifiers.value" : [ + "lfxMM8GfuD" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "xato6wyi" + ], + "items.identifiers.value" : [ + "aLacffLiQz" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-7W1WKu978d" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["JC6PIObmiP"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["4bhmwgtz"], - "items.identifiers.value": ["0FUCKKVOQZ"], - "items.locations.locationType.id": ["iiif-image"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "lfxMM8GfuD" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "xato6wyi" + ], + "items.identifiers.value" : [ + "aLacffLiQz" + ], + "items.locations.locationType.id" : [ + "iiif-image" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json index 4982cd01e..7646004f7 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json @@ -1,165 +1,246 @@ { - "description": "items with different location types", - "createdAt": "2023-11-21T15:39:34.681898Z", - "id": "feri8p7w", - "document": { - "debug": { - "source": { - "id": "feri8p7w", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "items with different location types", + "createdAt" : "2024-11-13T08:43:26.564398Z", + "id" : "pfnxzwsg", + "document" : { + "debug" : { + "source" : { + "id" : "pfnxzwsg", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "MM8GfuD4za" + "ontologyType" : "Work", + "value" : "3WPG6KR1Dm" }, - "version": 53, - "modifiedTime": "2033-07-23T10:10:36Z" + "version" : 86, + "modifiedTime" : "2009-12-08T11:45:37Z" }, - "mergedTime": "2033-07-23T10:10:36Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2009-12-08T11:45:37Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "feri8p7w", - "title": "title-WKu978dFW3", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "pfnxzwsg", + "title" : "title-KiQpo5xNC2", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "MM8GfuD4za", - "type": "Identifier" + "value" : "3WPG6KR1Dm", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "lwa6uwtq", - "identifiers": [ + "id" : "k2sxfzy9", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "XaTo6WyiCa", - "type": "Identifier" + "value" : "dRJC6PIObm", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-image", - "label": "IIIF Image API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-image", + "label" : "IIIF Image API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/nVo.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/LKO.jpg/info.json", + "credit" : "Credit line: PPIvUnh", + "linkText" : "Link text: 2Z5Ks7", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" }, { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/QUS.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/7v4.jpg/info.json", + "linkText" : "Link text: UCKKVOQ", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "feri8p7w", - "sourceIdentifier.value": "MM8GfuD4za", - "identifiers.value": ["MM8GfuD4za"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["lwa6uwtq"], - "items.identifiers.value": ["XaTo6WyiCa"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-WKu978dFW3" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "pfnxzwsg", + "sourceIdentifier.value" : "3WPG6KR1Dm", + "identifiers.value" : [ + "3WPG6KR1Dm" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "k2sxfzy9" + ], + "items.identifiers.value" : [ + "dRJC6PIObm" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-KiQpo5xNC2" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["MM8GfuD4za"], - "items.locations.license.id": ["cc-by", "cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["lwa6uwtq"], - "items.identifiers.value": ["XaTo6WyiCa"], - "items.locations.locationType.id": ["iiif-image", "iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "3WPG6KR1Dm" + ], + "items.locations.license.id" : [ + "cc-by", + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "k2sxfzy9" + ], + "items.identifiers.value" : [ + "dRJC6PIObm" + ], + "items.locations.locationType.id" : [ + "iiif-image", + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json index ed9a448ce..427a6ee68 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json @@ -1,156 +1,232 @@ { - "description": "items with different location types", - "createdAt": "2023-11-21T15:39:34.684280Z", - "id": "xzwsggki", - "document": { - "debug": { - "source": { - "id": "xzwsggki", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "items with different location types", + "createdAt" : "2024-11-13T08:43:26.564840Z", + "id" : "gubhlxq1", + "document" : { + "debug" : { + "source" : { + "id" : "gubhlxq1", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "G6KR1DmPfn" + "ontologyType" : "Work", + "value" : "Qiy0B0TSmD" }, - "version": 27, - "modifiedTime": "1950-04-09T22:30:42Z" + "version" : 52, + "modifiedTime" : "1954-07-26T16:28:04Z" }, - "mergedTime": "1950-04-09T22:30:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1954-07-26T16:28:04Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "xzwsggki", - "title": "title-po5xNC2PnQ", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "gubhlxq1", + "title" : "title-wO98EpYD0E", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "G6KR1DmPfn", - "type": "Identifier" + "value" : "Qiy0B0TSmD", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "lacffliq", - "identifiers": [ + "id" : "iptnnwys", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "k2sxFZY9hd", - "type": "Identifier" + "value" : "EYydewbq2T", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "closed-stores", - "label": "Closed stores", - "type": "LocationType" + "locationType" : { + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "LocationType" }, - "label": "locationLabel", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "label" : "locationLabel", + "license" : { + "id" : "ogl", + "label" : "Open Government Licence", + "url" : "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "type" : "License" }, - "accessConditions": [], - "type": "PhysicalLocation" + "shelfmark" : "Shelfmark: A6uWTQ", + "accessConditions" : [ + ], + "type" : "PhysicalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "closed-stores", - "label": "Closed stores", - "type": "Availability" + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xzwsggki", - "sourceIdentifier.value": "G6KR1DmPfn", - "identifiers.value": ["G6KR1DmPfn"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["lacffliq"], - "items.identifiers.value": ["k2sxFZY9hd"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-po5xNC2PnQ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "gubhlxq1", + "sourceIdentifier.value" : "Qiy0B0TSmD", + "identifiers.value" : [ + "Qiy0B0TSmD" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "iptnnwys" + ], + "items.identifiers.value" : [ + "EYydewbq2T" + ], + "items.shelfmark.value" : [ + "Shelfmark: A6uWTQ" + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-wO98EpYD0E" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ - "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}" - ], - "availabilities": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + "{\"id\":\"ogl\",\"label\":\"Open Government Licence\",\"url\":\"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\"type\":\"License\"}" + ], + "availabilities" : [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["G6KR1DmPfn"], - "items.locations.license.id": ["pdm"], - "items.locations.accessConditions.status.id": [], - "items.id": ["lacffliq"], - "items.identifiers.value": ["k2sxFZY9hd"], - "items.locations.locationType.id": ["closed-stores"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["closed-stores"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Qiy0B0TSmD" + ], + "items.locations.license.id" : [ + "ogl" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "iptnnwys" + ], + "items.identifiers.value" : [ + "EYydewbq2T" + ], + "items.locations.locationType.id" : [ + "closed-stores" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "closed-stores" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.0.json b/common/search/src/test/resources/test_documents/work.visible.everything.0.json index ba8ac86ab..93234d463 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.0.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.0.json @@ -1,344 +1,360 @@ { - "description": "a list of work with all the include-able fields", - "createdAt": "2023-11-21T15:39:33.067849Z", - "id": "tmdfbk5k", - "document": { - "debug": { - "source": { - "id": "tmdfbk5k", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a list of work with all the include-able fields", + "createdAt" : "2024-11-13T08:43:26.422796Z", + "id" : "tmdfbk5k", + "document" : { + "debug" : { + "source" : { + "id" : "tmdfbk5k", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "Aic5qOhRoS" + "ontologyType" : "Work", + "value" : "Aic5qOhRoS" }, - "version": 12, - "modifiedTime": "2033-04-23T09:14:15Z" + "version" : 12, + "modifiedTime" : "2033-04-23T09:14:15Z" }, - "mergedTime": "2033-04-23T09:14:15Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2033-04-23T09:14:15Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tmdfbk5k", - "title": "A work with all the include-able fields", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "tmdfbk5k", + "title" : "A work with all the include-able fields", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "person-eKZIqbV783", - "type": "Person" + "agent" : { + "label" : "person-eKZIqbV783", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "person-9SMhIH", - "type": "Person" + "agent" : { + "label" : "person-9SMhIH", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "Aic5qOhRoS", - "type": "Identifier" + "value" : "Aic5qOhRoS", + "type" : "Identifier" }, { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "UfcQYSxE7g", - "type": "Identifier" + "value" : "UfcQYSxE7g", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "RGOo9Fg6ic", - "concepts": [ + "label" : "RGOo9Fg6ic", + "concepts" : [ { - "label": "goKOwWLrIbnrzZj", - "type": "Concept" + "label" : "goKOwWLrIbnrzZj", + "type" : "Concept" }, { - "label": "i3JH82kKuArEtlV", - "type": "Concept" + "label" : "i3JH82kKuArEtlV", + "type" : "Concept" }, { - "label": "dV0jg08I834KKSX", - "type": "Concept" + "label" : "dV0jg08I834KKSX", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "label": "k1WGWfqE6x", - "concepts": [ + "label" : "k1WGWfqE6x", + "concepts" : [ { - "label": "FakoqsVT1GlsNpY", - "type": "Concept" + "label" : "FakoqsVT1GlsNpY", + "type" : "Concept" }, { - "label": "pthDMBLQZhG54Nz", - "type": "Concept" + "label" : "pthDMBLQZhG54Nz", + "type" : "Concept" }, { - "label": "omzMOR7nUmbDY87", - "type": "Concept" + "label" : "omzMOR7nUmbDY87", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [ + "genres" : [ { - "label": "Uw1LvlTE5c", - "concepts": [ + "label" : "Uw1LvlTE5c", + "concepts" : [ { - "id": "ihqr23gk", - "identifiers": [ + "id" : "ihqr23gk", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "4fR1f4tFlV", - "type": "Identifier" + "value" : "4fR1f4tFlV", + "type" : "Identifier" } ], - "label": "9tQdPt3acHhNKnN", - "type": "Genre" + "label" : "9tQdPt3acHhNKnN", + "type" : "Genre" }, { - "id": "nfnk1qv0", - "identifiers": [ + "id" : "nfnk1qv0", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "W3Gj5M4V6F", - "type": "Identifier" + "value" : "W3Gj5M4V6F", + "type" : "Identifier" } ], - "label": "bPiYMZquffyNPDg", - "type": "Concept" + "label" : "bPiYMZquffyNPDg", + "type" : "Concept" }, { - "id": "k1uu2kl5", - "identifiers": [ + "id" : "k1uu2kl5", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "MLX8biK5UW", - "type": "Identifier" + "value" : "MLX8biK5UW", + "type" : "Identifier" } ], - "label": "QXsRV8G10ObxxWE", - "type": "Concept" + "label" : "QXsRV8G10ObxxWE", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "9SVIX0fEgC", - "concepts": [ + "label" : "9SVIX0fEgC", + "concepts" : [ { - "id": "iwtb2h68", - "identifiers": [ + "id" : "iwtb2h68", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "8xazsI6am8", - "type": "Identifier" + "value" : "8xazsI6am8", + "type" : "Identifier" } ], - "label": "ssuRzRpFAch6oMg", - "type": "Genre" + "label" : "ssuRzRpFAch6oMg", + "type" : "Genre" }, { - "id": "fhynr11c", - "identifiers": [ + "id" : "fhynr11c", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "aEhJ0QNRzQ", - "type": "Identifier" + "value" : "aEhJ0QNRzQ", + "type" : "Identifier" } ], - "label": "9xxYEdUXSLHjmev", - "type": "Concept" + "label" : "9xxYEdUXSLHjmev", + "type" : "Concept" }, { - "id": "w5sj896l", - "identifiers": [ + "id" : "w5sj896l", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "4g2k9frr0x", - "type": "Identifier" + "value" : "4g2k9frr0x", + "type" : "Identifier" } ], - "label": "VoGuWXqO9eqzvro", - "type": "Concept" + "label" : "VoGuWXqO9eqzvro", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [ + "items" : [ { - "id": "a7xxlndb", - "identifiers": [ + "id" : "a7xxlndb", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "GWWFxlGgZX", - "type": "Identifier" + "value" : "GWWFxlGgZX", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/3jE.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/3jE.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "id": "ejk7jwcd", - "identifiers": [ + "id" : "ejk7jwcd", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "dG0mvvCJtU", - "type": "Identifier" + "value" : "dG0mvvCJtU", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/ds1.jpg/info.json", - "credit": "Credit line: MnIN8jLSj0", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/ds1.jpg/info.json", + "credit" : "Credit line: MnIN8jLSj0", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/OSl.jpg/info.json", - "credit": "Credit line: ZN9ToblN", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/OSl.jpg/info.json", + "credit" : "Credit line: ZN9ToblN", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [ + "holdings" : [ { - "note": "rYBxSAn4", - "enumeration": ["zRFFmVMv", "ez7JFZ7F", "x3e01Z", "12L0U9K"], - "type": "Holdings" + "note" : "rYBxSAn4", + "enumeration" : [ + "zRFFmVMv", + "ez7JFZ7F", + "x3e01Z", + "12L0U9K" + ], + "type" : "Holdings" }, { - "enumeration": [ + "enumeration" : [ "C1HRZomzs", "WpcRaAA6", "O9h5XJq", "Ym9tlQp1Q", "JoGECfaB" ], - "location": { - "locationType": { - "id": "closed-stores", - "label": "Closed stores", - "type": "LocationType" + "location" : { + "locationType" : { + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "LocationType" }, - "label": "locationLabel", - "license": { - "id": "pdm", - "label": "Public Domain Mark", - "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type": "License" + "label" : "locationLabel", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "PhysicalLocation" + "accessConditions" : [ + ], + "type" : "PhysicalLocation" }, - "type": "Holdings" + "type" : "Holdings" }, { - "note": "z3mr2Gbjg3", - "enumeration": [ + "note" : "z3mr2Gbjg3", + "enumeration" : [ "UHlycAdT2L", "laGIDVwG", "CtLHFeu", @@ -348,175 +364,193 @@ "bKjx1oRi6", "fEDi0YO" ], - "type": "Holdings" + "type" : "Holdings" } ], - "availabilities": [ + "availabilities" : [ { - "id": "closed-stores", - "label": "Closed stores", - "type": "Availability" + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "Availability" } ], - "production": [ + "production" : [ { - "label": "p8e8SuyMVHQTT2Iryhy1sdDDR", - "places": [ + "label" : "p8e8SuyMVHQTT2Iryhy1sdDDR", + "places" : [ { - "label": "CyKLQFKzgr", - "type": "Place" + "label" : "CyKLQFKzgr", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "o69PkIHAHM", - "type": "Person" + "label" : "o69PkIHAHM", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "2DH1A", - "type": "Period" + "label" : "2DH1A", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" }, { - "label": "Y5fj9BpOrhd8mwmov3fzhoiiC", - "places": [ + "label" : "Y5fj9BpOrhd8mwmov3fzhoiiC", + "places" : [ { - "label": "YEJhvwXauL", - "type": "Place" + "label" : "YEJhvwXauL", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "5GzybrlEoE", - "type": "Person" + "label" : "5GzybrlEoE", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "jgKFa", - "type": "Period" + "label" : "jgKFa", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [ + "languages" : [ { - "id": "Dbd", - "label": "zJH1bfh", - "type": "Language" + "id" : "Dbd", + "label" : "zJH1bfh", + "type" : "Language" }, { - "id": "Kx4", - "label": "fSAq54gq", - "type": "Language" + "id" : "Kx4", + "label" : "fSAq54gq", + "type" : "Language" }, { - "id": "QEh", - "label": "QxoZn47", - "type": "Language" + "id" : "QEh", + "label" : "QxoZn47", + "type" : "Language" } ], - "notes": [ + "notes" : [ { - "contents": ["AX01BTa4R"], - "noteType": { - "id": "general-note", - "label": "Notes", - "type": "NoteType" + "contents" : [ + "AX01BTa4R" + ], + "noteType" : { + "id" : "general-note", + "label" : "Notes", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["pneMkt"], - "noteType": { - "id": "location-of-duplicates", - "label": "Location of duplicates", - "type": "NoteType" + "contents" : [ + "w1YfRQ9an", + "5wdlW2gcpt" + ], + "noteType" : { + "id" : "funding-info", + "label" : "Funding information", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["w1YfRQ9an", "5wdlW2gcpt"], - "noteType": { - "id": "funding-info", - "label": "Funding information", - "type": "NoteType" + "contents" : [ + "pneMkt" + ], + "noteType" : { + "id" : "location-of-duplicates", + "label" : "Location of duplicates", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" } ], - "formerFrequency": ["Published in 2001", "Published in 2002"], - "designation": ["Designation #1", "Designation #2", "Designation #3"], - "images": [ + "formerFrequency" : [ + "Published in 2001", + "Published in 2002" + ], + "designation" : [ + "Designation #1", + "Designation #2", + "Designation #3" + ], + "images" : [ { - "id": "ihvpnycp", - "type": "Image" + "id" : "ihvpnycp", + "type" : "Image" }, { - "id": "rlgjqnwt", - "type": "Image" + "id" : "rlgjqnwt", + "type" : "Image" } ], - "parts": [ + "parts" : [ { - "id": "a7om88xm", - "title": "title-nN4RHJX7OP", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "a7om88xm", + "title" : "title-nN4RHJX7OP", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "partOf": [ + "partOf" : [ { - "id": "nrvdy0jg", - "title": "title-MS5Hy6x38N", - "partOf": [ + "id" : "nrvdy0jg", + "title" : "title-MS5Hy6x38N", + "partOf" : [ { - "id": "0cs6cerb", - "title": "title-b1iZslIT5y", - "totalParts": 1, - "totalDescendentParts": 5, - "type": "Work" + "id" : "0cs6cerb", + "title" : "title-b1iZslIT5y", + "totalParts" : 1, + "totalDescendentParts" : 5, + "type" : "Work" } ], - "totalParts": 3, - "totalDescendentParts": 4, - "type": "Work" + "totalParts" : 3, + "totalDescendentParts" : 4, + "type" : "Work" } ], - "precededBy": [ + "precededBy" : [ { - "id": "1gnd7b0m", - "title": "title-tnetMtnM6n", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "1gnd7b0m", + "title" : "title-tnetMtnM6n", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "succeededBy": [ + "succeededBy" : [ { - "id": "uxg4ed5m", - "title": "title-Ia7Ze4ZWUM", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "uxg4ed5m", + "title" : "title-Ia7Ze4ZWUM", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "type": "Work" + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["person-eKZIqbV783", "person-9SMhIH"], - "description": null, - "edition": null, - "genres.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "person-eKZIqbV783", + "person-9SMhIH" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ "9tQdPt3acHhNKnN", "bPiYMZquffyNPDg", "QXsRV8G10ObxxWE", @@ -524,19 +558,48 @@ "9xxYEdUXSLHjmev", "VoGuWXqO9eqzvro" ], - "id": "tmdfbk5k", - "sourceIdentifier.value": "Aic5qOhRoS", - "identifiers.value": ["Aic5qOhRoS", "UfcQYSxE7g"], - "images.id": ["ihvpnycp", "rlgjqnwt"], - "images.identifiers.value": ["7AFPJNgpli", "N8dAz61bAE"], - "items.id": ["a7xxlndb", "ejk7jwcd"], - "items.identifiers.value": ["GWWFxlGgZX", "dG0mvvCJtU"], - "languages.label": ["zJH1bfh", "fSAq54gq", "QxoZn47"], - "lettering": null, - "notes.contents": ["AX01BTa4R", "w1YfRQ9an", "pneMkt", "5wdlW2gcpt"], - "partOf.title": ["title-b1iZslIT5y", "title-MS5Hy6x38N"], - "physicalDescription": null, - "production.label": [ + "id" : "tmdfbk5k", + "sourceIdentifier.value" : "Aic5qOhRoS", + "identifiers.value" : [ + "Aic5qOhRoS", + "UfcQYSxE7g" + ], + "images.id" : [ + "ihvpnycp", + "rlgjqnwt" + ], + "images.identifiers.value" : [ + "7AFPJNgpli", + "N8dAz61bAE" + ], + "items.id" : [ + "a7xxlndb", + "ejk7jwcd" + ], + "items.identifiers.value" : [ + "GWWFxlGgZX", + "dG0mvvCJtU" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "zJH1bfh", + "fSAq54gq", + "QxoZn47" + ], + "lettering" : null, + "notes.contents" : [ + "AX01BTa4R", + "w1YfRQ9an", + "pneMkt", + "5wdlW2gcpt" + ], + "partOf.title" : [ + "title-b1iZslIT5y", + "title-MS5Hy6x38N" + ], + "physicalDescription" : null, + "production.label" : [ "CyKLQFKzgr", "o69PkIHAHM", "2DH1A", @@ -544,8 +607,8 @@ "5GzybrlEoE", "jgKFa" ], - "referenceNumber": null, - "subjects.concepts.label": [ + "referenceNumber" : null, + "subjects.concepts.label" : [ "goKOwWLrIbnrzZj", "i3JH82kKuArEtlV", "dV0jg08I834KKSX", @@ -553,60 +616,113 @@ "pthDMBLQZhG54Nz", "omzMOR7nUmbDY87" ], - "title": "A work with all the include-able fields" + "title" : "A work with all the include-able fields" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Uw1LvlTE5c\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"9SVIX0fEgC\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [ + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"RGOo9Fg6ic\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"k1WGWfqE6x\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [ + "languages" : [ "{\"id\":\"Dbd\",\"label\":\"zJH1bfh\",\"type\":\"Language\"}", "{\"id\":\"Kx4\",\"label\":\"fSAq54gq\",\"type\":\"Language\"}", "{\"id\":\"QEh\",\"label\":\"QxoZn47\",\"type\":\"Language\"}" ], - "contributors.agent.label": [ + "contributors.agent.label" : [ "{\"label\":\"person-eKZIqbV783\",\"type\":\"Person\"}", "{\"label\":\"person-9SMhIH\",\"type\":\"Person\"}" ], - "items.locations.license": [ + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["Dbd", "Kx4", "QEh"], - "genres.label": ["Uw1LvlTE5c", "9SVIX0fEgC"], - "genres.concepts.id": ["ihqr23gk", "iwtb2h68"], - "subjects.label": ["RGOo9Fg6ic", "k1WGWfqE6x"], - "contributors.agent.label": ["person-eKZIqbV783", "person-9SMhIH"], - "identifiers.value": ["Aic5qOhRoS", "UfcQYSxE7g"], - "items.locations.license.id": ["cc-by", "cc-by", "cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["a7xxlndb", "ejk7jwcd"], - "items.identifiers.value": ["GWWFxlGgZX", "dG0mvvCJtU"], - "items.locations.locationType.id": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "Dbd", + "Kx4", + "QEh" + ], + "genres.label" : [ + "Uw1LvlTE5c", + "9SVIX0fEgC" + ], + "genres.concepts.id" : [ + "ihqr23gk", + "iwtb2h68" + ], + "genres.concepts.sourceIdentifier" : [ + "4fR1f4tFlV", + "8xazsI6am8" + ], + "subjects.label" : [ + "RGOo9Fg6ic", + "k1WGWfqE6x" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "person-eKZIqbV783", + "person-9SMhIH" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Aic5qOhRoS", + "UfcQYSxE7g" + ], + "items.locations.license.id" : [ + "cc-by", + "cc-by", + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "a7xxlndb", + "ejk7jwcd" + ], + "items.identifiers.value" : [ + "GWWFxlGgZX", + "dG0mvvCJtU" + ], + "items.locations.locationType.id" : [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id": ["0cs6cerb", "nrvdy0jg"], - "partOf.title": ["title-b1iZslIT5y", "title-MS5Hy6x38N"], - "availabilities.id": ["closed-stores"] + "partOf.id" : [ + "0cs6cerb", + "nrvdy0jg" + ], + "partOf.title" : [ + "title-b1iZslIT5y", + "title-MS5Hy6x38N" + ], + "availabilities.id" : [ + "closed-stores" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.1.json b/common/search/src/test/resources/test_documents/work.visible.everything.1.json index 93ffd6742..aedb81f3b 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.1.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.1.json @@ -1,312 +1,322 @@ { - "description": "a list of work with all the include-able fields", - "createdAt": "2023-11-21T15:39:33.142621Z", - "id": "dhzcyeul", - "document": { - "debug": { - "source": { - "id": "dhzcyeul", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a list of work with all the include-able fields", + "createdAt" : "2024-11-13T08:43:26.426204Z", + "id" : "dhzcyeul", + "document" : { + "debug" : { + "source" : { + "id" : "dhzcyeul", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "LMVvWxgXRS" + "ontologyType" : "Work", + "value" : "LMVvWxgXRS" }, - "version": 85, - "modifiedTime": "1954-10-07T06:00:15Z" + "version" : 85, + "modifiedTime" : "1954-10-07T06:00:15Z" }, - "mergedTime": "1954-10-07T06:00:15Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1954-10-07T06:00:15Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "dhzcyeul", - "title": "A work with all the include-able fields", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "dhzcyeul", + "title" : "A work with all the include-able fields", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "person-RLIsn6KqXf", - "type": "Person" + "agent" : { + "label" : "person-RLIsn6KqXf", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "person-MBn6NMM", - "type": "Person" + "agent" : { + "label" : "person-MBn6NMM", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "LMVvWxgXRS", - "type": "Identifier" + "value" : "LMVvWxgXRS", + "type" : "Identifier" }, { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "mD7jxioppl", - "type": "Identifier" + "value" : "mD7jxioppl", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "RbppKZMbAm", - "concepts": [ + "label" : "RbppKZMbAm", + "concepts" : [ { - "label": "0vPSF4EIy1m22EM", - "type": "Concept" + "label" : "0vPSF4EIy1m22EM", + "type" : "Concept" }, { - "label": "kmWOjlKvfRGKp22", - "type": "Concept" + "label" : "kmWOjlKvfRGKp22", + "type" : "Concept" }, { - "label": "pTPNg1Fb7hLZCWP", - "type": "Concept" + "label" : "pTPNg1Fb7hLZCWP", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "label": "2ToHCa1Sqa", - "concepts": [ + "label" : "2ToHCa1Sqa", + "concepts" : [ { - "label": "QCD06AWAxFOW2wB", - "type": "Concept" + "label" : "QCD06AWAxFOW2wB", + "type" : "Concept" }, { - "label": "gqY0L1ZF1PYZIWO", - "type": "Concept" + "label" : "gqY0L1ZF1PYZIWO", + "type" : "Concept" }, { - "label": "P5xioqrw7OhiAUB", - "type": "Concept" + "label" : "P5xioqrw7OhiAUB", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [ + "genres" : [ { - "label": "gzynPVyy1B", - "concepts": [ + "label" : "gzynPVyy1B", + "concepts" : [ { - "id": "moiqjbe6", - "identifiers": [ + "id" : "moiqjbe6", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "ZvMlY5yFST", - "type": "Identifier" + "value" : "ZvMlY5yFST", + "type" : "Identifier" } ], - "label": "G99aHcLRRBkyn24", - "type": "Genre" + "label" : "G99aHcLRRBkyn24", + "type" : "Genre" }, { - "id": "4hzy1cko", - "identifiers": [ + "id" : "4hzy1cko", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Lu2Xsatm0d", - "type": "Identifier" + "value" : "Lu2Xsatm0d", + "type" : "Identifier" } ], - "label": "WGXrGHlOd9kGPDW", - "type": "Concept" + "label" : "WGXrGHlOd9kGPDW", + "type" : "Concept" }, { - "id": "l6xajdgf", - "identifiers": [ + "id" : "l6xajdgf", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "f8JXFRL51H", - "type": "Identifier" + "value" : "f8JXFRL51H", + "type" : "Identifier" } ], - "label": "Zw7o2IL5cpTq2sz", - "type": "Concept" + "label" : "Zw7o2IL5cpTq2sz", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "aiqMvPe7X4", - "concepts": [ + "label" : "aiqMvPe7X4", + "concepts" : [ { - "id": "srn7yleu", - "identifiers": [ + "id" : "srn7yleu", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "97NLnSGT3O", - "type": "Identifier" + "value" : "97NLnSGT3O", + "type" : "Identifier" } ], - "label": "JLAgnoMEDJADyhg", - "type": "Genre" + "label" : "JLAgnoMEDJADyhg", + "type" : "Genre" }, { - "id": "oiribbou", - "identifiers": [ + "id" : "oiribbou", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "PAydChzshi", - "type": "Identifier" + "value" : "PAydChzshi", + "type" : "Identifier" } ], - "label": "DMpITHk4Fal6yyc", - "type": "Concept" + "label" : "DMpITHk4Fal6yyc", + "type" : "Concept" }, { - "id": "6cux209o", - "identifiers": [ + "id" : "6cux209o", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Pv8CsB8YxC", - "type": "Identifier" + "value" : "Pv8CsB8YxC", + "type" : "Identifier" } ], - "label": "7GkIFx8vXQyPLHO", - "type": "Concept" + "label" : "7GkIFx8vXQyPLHO", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [ + "items" : [ { - "id": "sr0le4q0", - "identifiers": [ + "id" : "sr0le4q0", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "HYZ1N6BwQR", - "type": "Identifier" + "value" : "HYZ1N6BwQR", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/6Hv.jpg/info.json", - "credit": "Credit line: RuVcAaaC", - "linkText": "Link text: 11Rp8W", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/6Hv.jpg/info.json", + "credit" : "Credit line: RuVcAaaC", + "linkText" : "Link text: 11Rp8W", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "id": "1wiqu97x", - "identifiers": [ + "id" : "1wiqu97x", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "fYVwu7Y7Y7", - "type": "Identifier" + "value" : "fYVwu7Y7Y7", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/K6C.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/K6C.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Up2.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Up2.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [ + "holdings" : [ { - "enumeration": [ + "enumeration" : [ "1BxLTcV6Wb", "WqoNZK", "xU3ERjrH", @@ -318,11 +328,11 @@ "FZmdTEa6", "UlrveN" ], - "type": "Holdings" + "type" : "Holdings" }, { - "note": "idk7LBY", - "enumeration": [ + "note" : "idk7LBY", + "enumeration" : [ "G0xMucB", "DkJGLGn", "8mfcQf", @@ -333,10 +343,10 @@ "7FN4wzU", "mSjqoeX" ], - "type": "Holdings" + "type" : "Holdings" }, { - "enumeration": [ + "enumeration" : [ "37zKdSgd", "TKdzCFovRO", "4WLHpAvI", @@ -344,169 +354,188 @@ "k4GLtR", "vuraPvkrZ" ], - "type": "Holdings" + "type" : "Holdings" } ], - "availabilities": [], - "production": [ + "availabilities" : [ + ], + "production" : [ { - "label": "u9wn3b70uQnR7JVa4h6zo4kiw", - "places": [ + "label" : "u9wn3b70uQnR7JVa4h6zo4kiw", + "places" : [ { - "label": "lz0oyrQVeB", - "type": "Place" + "label" : "lz0oyrQVeB", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "Y8dO1DZyoO", - "type": "Person" + "label" : "Y8dO1DZyoO", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "9NU3A", - "type": "Period" + "label" : "9NU3A", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" }, { - "label": "o80nLAWSy9B3e17RLNSLFMReQ", - "places": [ + "label" : "o80nLAWSy9B3e17RLNSLFMReQ", + "places" : [ { - "label": "prYosMnVGM", - "type": "Place" + "label" : "prYosMnVGM", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "JB4CuJFro7", - "type": "Person" + "label" : "JB4CuJFro7", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "SCKOJ", - "type": "Period" + "label" : "SCKOJ", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [ + "languages" : [ { - "id": "LAJ", - "label": "BGyGwVoRP", - "type": "Language" + "id" : "LAJ", + "label" : "BGyGwVoRP", + "type" : "Language" }, { - "id": "6Il", - "label": "5rHofWvU", - "type": "Language" + "id" : "6Il", + "label" : "5rHofWvU", + "type" : "Language" }, { - "id": "NX2", - "label": "BmQh5YW", - "type": "Language" + "id" : "NX2", + "label" : "BmQh5YW", + "type" : "Language" } ], - "notes": [ + "notes" : [ { - "contents": ["BD4V4eC"], - "noteType": { - "id": "general-note", - "label": "Notes", - "type": "NoteType" + "contents" : [ + "PxyMQW" + ], + "noteType" : { + "id" : "location-of-duplicates", + "label" : "Location of duplicates", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["PxyMQW"], - "noteType": { - "id": "location-of-duplicates", - "label": "Location of duplicates", - "type": "NoteType" + "contents" : [ + "lsrFBR8QS", + "soceYh" + ], + "noteType" : { + "id" : "funding-info", + "label" : "Funding information", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["lsrFBR8QS", "soceYh"], - "noteType": { - "id": "funding-info", - "label": "Funding information", - "type": "NoteType" + "contents" : [ + "BD4V4eC" + ], + "noteType" : { + "id" : "general-note", + "label" : "Notes", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" } ], - "formerFrequency": ["Published in 2001", "Published in 2002"], - "designation": ["Designation #1", "Designation #2", "Designation #3"], - "images": [ + "formerFrequency" : [ + "Published in 2001", + "Published in 2002" + ], + "designation" : [ + "Designation #1", + "Designation #2", + "Designation #3" + ], + "images" : [ { - "id": "9shcs9eq", - "type": "Image" + "id" : "9shcs9eq", + "type" : "Image" }, { - "id": "ogxkz2rm", - "type": "Image" + "id" : "ogxkz2rm", + "type" : "Image" } ], - "parts": [ + "parts" : [ { - "id": "maixrifi", - "title": "title-3dXkoMXh3J", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "maixrifi", + "title" : "title-3dXkoMXh3J", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "partOf": [ + "partOf" : [ { - "id": "epka3wv3", - "title": "title-tkdF7IF8nj", - "partOf": [ + "id" : "epka3wv3", + "title" : "title-tkdF7IF8nj", + "partOf" : [ { - "id": "wa2m1xn6", - "title": "title-4ssR420Vc5", - "totalParts": 1, - "totalDescendentParts": 5, - "type": "Work" + "id" : "wa2m1xn6", + "title" : "title-4ssR420Vc5", + "totalParts" : 1, + "totalDescendentParts" : 5, + "type" : "Work" } ], - "totalParts": 3, - "totalDescendentParts": 4, - "type": "Work" + "totalParts" : 3, + "totalDescendentParts" : 4, + "type" : "Work" } ], - "precededBy": [ + "precededBy" : [ { - "id": "5xcjfcic", - "title": "title-GMGKNlQnlw", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "5xcjfcic", + "title" : "title-GMGKNlQnlw", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "succeededBy": [ + "succeededBy" : [ { - "id": "i3vagkxa", - "title": "title-eG0HzUX6yZ", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "i3vagkxa", + "title" : "title-eG0HzUX6yZ", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "type": "Work" + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["person-RLIsn6KqXf", "person-MBn6NMM"], - "description": null, - "edition": null, - "genres.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "person-RLIsn6KqXf", + "person-MBn6NMM" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ "G99aHcLRRBkyn24", "WGXrGHlOd9kGPDW", "Zw7o2IL5cpTq2sz", @@ -514,19 +543,48 @@ "DMpITHk4Fal6yyc", "7GkIFx8vXQyPLHO" ], - "id": "dhzcyeul", - "sourceIdentifier.value": "LMVvWxgXRS", - "identifiers.value": ["LMVvWxgXRS", "mD7jxioppl"], - "images.id": ["9shcs9eq", "ogxkz2rm"], - "images.identifiers.value": ["CqOHUtD46Q", "RLuAZLda0D"], - "items.id": ["sr0le4q0", "1wiqu97x"], - "items.identifiers.value": ["HYZ1N6BwQR", "fYVwu7Y7Y7"], - "languages.label": ["BGyGwVoRP", "5rHofWvU", "BmQh5YW"], - "lettering": null, - "notes.contents": ["PxyMQW", "lsrFBR8QS", "BD4V4eC", "soceYh"], - "partOf.title": ["title-4ssR420Vc5", "title-tkdF7IF8nj"], - "physicalDescription": null, - "production.label": [ + "id" : "dhzcyeul", + "sourceIdentifier.value" : "LMVvWxgXRS", + "identifiers.value" : [ + "LMVvWxgXRS", + "mD7jxioppl" + ], + "images.id" : [ + "9shcs9eq", + "ogxkz2rm" + ], + "images.identifiers.value" : [ + "CqOHUtD46Q", + "RLuAZLda0D" + ], + "items.id" : [ + "sr0le4q0", + "1wiqu97x" + ], + "items.identifiers.value" : [ + "HYZ1N6BwQR", + "fYVwu7Y7Y7" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "BGyGwVoRP", + "5rHofWvU", + "BmQh5YW" + ], + "lettering" : null, + "notes.contents" : [ + "PxyMQW", + "lsrFBR8QS", + "BD4V4eC", + "soceYh" + ], + "partOf.title" : [ + "title-4ssR420Vc5", + "title-tkdF7IF8nj" + ], + "physicalDescription" : null, + "production.label" : [ "lz0oyrQVeB", "Y8dO1DZyoO", "9NU3A", @@ -534,8 +592,8 @@ "JB4CuJFro7", "SCKOJ" ], - "referenceNumber": null, - "subjects.concepts.label": [ + "referenceNumber" : null, + "subjects.concepts.label" : [ "0vPSF4EIy1m22EM", "kmWOjlKvfRGKp22", "pTPNg1Fb7hLZCWP", @@ -543,58 +601,111 @@ "gqY0L1ZF1PYZIWO", "P5xioqrw7OhiAUB" ], - "title": "A work with all the include-able fields" + "title" : "A work with all the include-able fields" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"gzynPVyy1B\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"aiqMvPe7X4\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [ + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"RbppKZMbAm\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"2ToHCa1Sqa\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [ + "languages" : [ "{\"id\":\"LAJ\",\"label\":\"BGyGwVoRP\",\"type\":\"Language\"}", "{\"id\":\"6Il\",\"label\":\"5rHofWvU\",\"type\":\"Language\"}", "{\"id\":\"NX2\",\"label\":\"BmQh5YW\",\"type\":\"Language\"}" ], - "contributors.agent.label": [ + "contributors.agent.label" : [ "{\"label\":\"person-RLIsn6KqXf\",\"type\":\"Person\"}", "{\"label\":\"person-MBn6NMM\",\"type\":\"Person\"}" ], - "items.locations.license": [ + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["LAJ", "6Il", "NX2"], - "genres.label": ["gzynPVyy1B", "aiqMvPe7X4"], - "genres.concepts.id": ["moiqjbe6", "srn7yleu"], - "subjects.label": ["RbppKZMbAm", "2ToHCa1Sqa"], - "contributors.agent.label": ["person-RLIsn6KqXf", "person-MBn6NMM"], - "identifiers.value": ["LMVvWxgXRS", "mD7jxioppl"], - "items.locations.license.id": ["cc-by", "cc-by", "cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["sr0le4q0", "1wiqu97x"], - "items.identifiers.value": ["HYZ1N6BwQR", "fYVwu7Y7Y7"], - "items.locations.locationType.id": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "LAJ", + "6Il", + "NX2" + ], + "genres.label" : [ + "gzynPVyy1B", + "aiqMvPe7X4" + ], + "genres.concepts.id" : [ + "moiqjbe6", + "srn7yleu" + ], + "genres.concepts.sourceIdentifier" : [ + "ZvMlY5yFST", + "97NLnSGT3O" + ], + "subjects.label" : [ + "RbppKZMbAm", + "2ToHCa1Sqa" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "person-RLIsn6KqXf", + "person-MBn6NMM" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "LMVvWxgXRS", + "mD7jxioppl" + ], + "items.locations.license.id" : [ + "cc-by", + "cc-by", + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "sr0le4q0", + "1wiqu97x" + ], + "items.identifiers.value" : [ + "HYZ1N6BwQR", + "fYVwu7Y7Y7" + ], + "items.locations.locationType.id" : [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id": ["wa2m1xn6", "epka3wv3"], - "partOf.title": ["title-4ssR420Vc5", "title-tkdF7IF8nj"], - "availabilities.id": [] + "partOf.id" : [ + "wa2m1xn6", + "epka3wv3" + ], + "partOf.title" : [ + "title-4ssR420Vc5", + "title-tkdF7IF8nj" + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.2.json b/common/search/src/test/resources/test_documents/work.visible.everything.2.json index f76d169a5..cbf8f5c44 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.2.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.2.json @@ -1,315 +1,325 @@ { - "description": "a list of work with all the include-able fields", - "createdAt": "2023-11-21T15:39:33.161811Z", - "id": "kspmagtl", - "document": { - "debug": { - "source": { - "id": "kspmagtl", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a list of work with all the include-able fields", + "createdAt" : "2024-11-13T08:43:26.428912Z", + "id" : "kspmagtl", + "document" : { + "debug" : { + "source" : { + "id" : "kspmagtl", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "bWRaGNi2Hd" + "ontologyType" : "Work", + "value" : "bWRaGNi2Hd" }, - "version": 63, - "modifiedTime": "2040-10-31T18:04:56Z" + "version" : 63, + "modifiedTime" : "2040-10-31T18:04:56Z" }, - "mergedTime": "2040-10-31T18:04:56Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2040-10-31T18:04:56Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "kspmagtl", - "title": "A work with all the include-able fields", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "kspmagtl", + "title" : "A work with all the include-able fields", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "person-h9jhXW", - "type": "Person" + "agent" : { + "label" : "person-h9jhXW", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "person-QdWhUu", - "type": "Person" + "agent" : { + "label" : "person-QdWhUu", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "bWRaGNi2Hd", - "type": "Identifier" + "value" : "bWRaGNi2Hd", + "type" : "Identifier" }, { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Hq3k05Fqag", - "type": "Identifier" + "value" : "Hq3k05Fqag", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "Uauios0IzD", - "concepts": [ + "label" : "Uauios0IzD", + "concepts" : [ { - "label": "AQA5geMZT0FFS0z", - "type": "Concept" + "label" : "AQA5geMZT0FFS0z", + "type" : "Concept" }, { - "label": "AAZGNVldxfQFhVc", - "type": "Concept" + "label" : "AAZGNVldxfQFhVc", + "type" : "Concept" }, { - "label": "tBFwsNPAX3Wg9bz", - "type": "Concept" + "label" : "tBFwsNPAX3Wg9bz", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "label": "6n2QtjPUbf", - "concepts": [ + "label" : "6n2QtjPUbf", + "concepts" : [ { - "label": "ZXARrSCGUFES8H2", - "type": "Concept" + "label" : "ZXARrSCGUFES8H2", + "type" : "Concept" }, { - "label": "bLQeClXtepg6BQO", - "type": "Concept" + "label" : "bLQeClXtepg6BQO", + "type" : "Concept" }, { - "label": "O1Lux1bNFDaOKTs", - "type": "Concept" + "label" : "O1Lux1bNFDaOKTs", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [ + "genres" : [ { - "label": "DKbwserVib", - "concepts": [ + "label" : "DKbwserVib", + "concepts" : [ { - "id": "co3t5a2c", - "identifiers": [ + "id" : "co3t5a2c", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "KLw3A3d2Sg", - "type": "Identifier" + "value" : "KLw3A3d2Sg", + "type" : "Identifier" } ], - "label": "tekEl0aPDS91lOa", - "type": "Genre" + "label" : "tekEl0aPDS91lOa", + "type" : "Genre" }, { - "id": "hovzih7d", - "identifiers": [ + "id" : "hovzih7d", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "9vtTXh5eC6", - "type": "Identifier" + "value" : "9vtTXh5eC6", + "type" : "Identifier" } ], - "label": "uUdynba2c8ykXyK", - "type": "Concept" + "label" : "uUdynba2c8ykXyK", + "type" : "Concept" }, { - "id": "hhpppssc", - "identifiers": [ + "id" : "hhpppssc", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Jxv9xrQ6Lp", - "type": "Identifier" + "value" : "Jxv9xrQ6Lp", + "type" : "Identifier" } ], - "label": "oBEHnJZViPXHQHS", - "type": "Concept" + "label" : "oBEHnJZViPXHQHS", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "6uOUAue10N", - "concepts": [ + "label" : "6uOUAue10N", + "concepts" : [ { - "id": "vp7gvran", - "identifiers": [ + "id" : "vp7gvran", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "okW4LcPBC1", - "type": "Identifier" + "value" : "okW4LcPBC1", + "type" : "Identifier" } ], - "label": "RE2canCURCTNo7c", - "type": "Genre" + "label" : "RE2canCURCTNo7c", + "type" : "Genre" }, { - "id": "sheurc7f", - "identifiers": [ + "id" : "sheurc7f", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "Qgjny3fstP", - "type": "Identifier" + "value" : "Qgjny3fstP", + "type" : "Identifier" } ], - "label": "yjsJNyP6az68MBx", - "type": "Concept" + "label" : "yjsJNyP6az68MBx", + "type" : "Concept" }, { - "id": "heqgsnmx", - "identifiers": [ + "id" : "heqgsnmx", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "mrWJ5F5H7y", - "type": "Identifier" + "value" : "mrWJ5F5H7y", + "type" : "Identifier" } ], - "label": "vD5wGC18lSi8qtT", - "type": "Concept" + "label" : "vD5wGC18lSi8qtT", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [ + "items" : [ { - "id": "9indplmm", - "identifiers": [ + "id" : "9indplmm", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "KUpoh3lSc6", - "type": "Identifier" + "value" : "KUpoh3lSc6", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Xmb.jpg/info.json", - "linkText": "Link text: xc5d7pC4", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Xmb.jpg/info.json", + "linkText" : "Link text: xc5d7pC4", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "id": "b7xfovxp", - "identifiers": [ + "id" : "b7xfovxp", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "da6nNHPpdW", - "type": "Identifier" + "value" : "da6nNHPpdW", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/brm.jpg/info.json", - "linkText": "Link text: dfIBgxk", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/brm.jpg/info.json", + "linkText" : "Link text: dfIBgxk", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/4jA.jpg/info.json", - "credit": "Credit line: RMKkkMWH2", - "linkText": "Link text: lrGWJtd", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/4jA.jpg/info.json", + "credit" : "Credit line: RMKkkMWH2", + "linkText" : "Link text: lrGWJtd", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [ + "holdings" : [ { - "note": "MVhaLIuxnE", - "enumeration": [ + "note" : "MVhaLIuxnE", + "enumeration" : [ "ieDDRLFu", "yZOrDf50Hq", "LqcxXMND", @@ -320,15 +330,19 @@ "EN5U1Lj", "3YYXiwayO" ], - "type": "Holdings" + "type" : "Holdings" }, { - "note": "qavjz8rXQ", - "enumeration": ["ESu6j0cajz", "IwEsWu", "kQm30wp"], - "type": "Holdings" + "note" : "qavjz8rXQ", + "enumeration" : [ + "ESu6j0cajz", + "IwEsWu", + "kQm30wp" + ], + "type" : "Holdings" }, { - "enumeration": [ + "enumeration" : [ "8y3h9IEu", "L1QHuLHN", "3UU0BuJ", @@ -338,169 +352,188 @@ "u9fWqc", "mcETEt4h" ], - "type": "Holdings" + "type" : "Holdings" } ], - "availabilities": [], - "production": [ + "availabilities" : [ + ], + "production" : [ { - "label": "4DIByCcllibcScRo1F5OxZThZ", - "places": [ + "label" : "4DIByCcllibcScRo1F5OxZThZ", + "places" : [ { - "label": "Zrd6sRqVgE", - "type": "Place" + "label" : "Zrd6sRqVgE", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "XdJnvNoiuf", - "type": "Person" + "label" : "XdJnvNoiuf", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "cLjO4", - "type": "Period" + "label" : "cLjO4", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" }, { - "label": "DmwtJxhAIELEnBrWrk5FvZCEK", - "places": [ + "label" : "DmwtJxhAIELEnBrWrk5FvZCEK", + "places" : [ { - "label": "kIZfsAkPwu", - "type": "Place" + "label" : "kIZfsAkPwu", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "nmldw7s12i", - "type": "Person" + "label" : "nmldw7s12i", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "KWNuy", - "type": "Period" + "label" : "KWNuy", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [ + "languages" : [ { - "id": "BRh", - "label": "E6F0oBW", - "type": "Language" + "id" : "BRh", + "label" : "E6F0oBW", + "type" : "Language" }, { - "id": "52j", - "label": "TlqNXqK", - "type": "Language" + "id" : "52j", + "label" : "TlqNXqK", + "type" : "Language" }, { - "id": "K4Q", - "label": "hldbPB44o8", - "type": "Language" + "id" : "K4Q", + "label" : "hldbPB44o8", + "type" : "Language" } ], - "notes": [ + "notes" : [ { - "contents": ["KatsdMX"], - "noteType": { - "id": "general-note", - "label": "Notes", - "type": "NoteType" + "contents" : [ + "1009JS", + "Gxz9bfcN5B" + ], + "noteType" : { + "id" : "location-of-duplicates", + "label" : "Location of duplicates", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["1009JS", "Gxz9bfcN5B"], - "noteType": { - "id": "location-of-duplicates", - "label": "Location of duplicates", - "type": "NoteType" + "contents" : [ + "bf5YSWx" + ], + "noteType" : { + "id" : "funding-info", + "label" : "Funding information", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" }, { - "contents": ["bf5YSWx"], - "noteType": { - "id": "funding-info", - "label": "Funding information", - "type": "NoteType" + "contents" : [ + "KatsdMX" + ], + "noteType" : { + "id" : "general-note", + "label" : "Notes", + "type" : "NoteType" }, - "type": "Note" + "type" : "Note" } ], - "formerFrequency": ["Published in 2001", "Published in 2002"], - "designation": ["Designation #1", "Designation #2", "Designation #3"], - "images": [ + "formerFrequency" : [ + "Published in 2001", + "Published in 2002" + ], + "designation" : [ + "Designation #1", + "Designation #2", + "Designation #3" + ], + "images" : [ { - "id": "6fuh8tqe", - "type": "Image" + "id" : "6fuh8tqe", + "type" : "Image" }, { - "id": "ej3tqgsk", - "type": "Image" + "id" : "ej3tqgsk", + "type" : "Image" } ], - "parts": [ + "parts" : [ { - "id": "srubvzw4", - "title": "title-QmyoWabAgX", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "srubvzw4", + "title" : "title-QmyoWabAgX", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "partOf": [ + "partOf" : [ { - "id": "vjvef8bd", - "title": "title-e1K5osW8hK", - "partOf": [ + "id" : "vjvef8bd", + "title" : "title-e1K5osW8hK", + "partOf" : [ { - "id": "ajgcgp8j", - "title": "title-ZZ4OU9Z1es", - "totalParts": 1, - "totalDescendentParts": 5, - "type": "Work" + "id" : "ajgcgp8j", + "title" : "title-ZZ4OU9Z1es", + "totalParts" : 1, + "totalDescendentParts" : 5, + "type" : "Work" } ], - "totalParts": 3, - "totalDescendentParts": 4, - "type": "Work" + "totalParts" : 3, + "totalDescendentParts" : 4, + "type" : "Work" } ], - "precededBy": [ + "precededBy" : [ { - "id": "t4fspoh5", - "title": "title-lAUKxcPeEW", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "t4fspoh5", + "title" : "title-lAUKxcPeEW", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "succeededBy": [ + "succeededBy" : [ { - "id": "fdoa7rpy", - "title": "title-iDfifsBwXA", - "totalParts": 0, - "totalDescendentParts": 0, - "type": "Work" + "id" : "fdoa7rpy", + "title" : "title-iDfifsBwXA", + "totalParts" : 0, + "totalDescendentParts" : 0, + "type" : "Work" } ], - "type": "Work" + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["person-h9jhXW", "person-QdWhUu"], - "description": null, - "edition": null, - "genres.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "person-h9jhXW", + "person-QdWhUu" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ "tekEl0aPDS91lOa", "uUdynba2c8ykXyK", "oBEHnJZViPXHQHS", @@ -508,19 +541,48 @@ "yjsJNyP6az68MBx", "vD5wGC18lSi8qtT" ], - "id": "kspmagtl", - "sourceIdentifier.value": "bWRaGNi2Hd", - "identifiers.value": ["bWRaGNi2Hd", "Hq3k05Fqag"], - "images.id": ["6fuh8tqe", "ej3tqgsk"], - "images.identifiers.value": ["1RAcTOrmRe", "AsAu4Ye9KY"], - "items.id": ["9indplmm", "b7xfovxp"], - "items.identifiers.value": ["KUpoh3lSc6", "da6nNHPpdW"], - "languages.label": ["E6F0oBW", "TlqNXqK", "hldbPB44o8"], - "lettering": null, - "notes.contents": ["1009JS", "bf5YSWx", "KatsdMX", "Gxz9bfcN5B"], - "partOf.title": ["title-ZZ4OU9Z1es", "title-e1K5osW8hK"], - "physicalDescription": null, - "production.label": [ + "id" : "kspmagtl", + "sourceIdentifier.value" : "bWRaGNi2Hd", + "identifiers.value" : [ + "bWRaGNi2Hd", + "Hq3k05Fqag" + ], + "images.id" : [ + "6fuh8tqe", + "ej3tqgsk" + ], + "images.identifiers.value" : [ + "1RAcTOrmRe", + "AsAu4Ye9KY" + ], + "items.id" : [ + "9indplmm", + "b7xfovxp" + ], + "items.identifiers.value" : [ + "KUpoh3lSc6", + "da6nNHPpdW" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "E6F0oBW", + "TlqNXqK", + "hldbPB44o8" + ], + "lettering" : null, + "notes.contents" : [ + "1009JS", + "bf5YSWx", + "KatsdMX", + "Gxz9bfcN5B" + ], + "partOf.title" : [ + "title-ZZ4OU9Z1es", + "title-e1K5osW8hK" + ], + "physicalDescription" : null, + "production.label" : [ "Zrd6sRqVgE", "XdJnvNoiuf", "cLjO4", @@ -528,8 +590,8 @@ "nmldw7s12i", "KWNuy" ], - "referenceNumber": null, - "subjects.concepts.label": [ + "referenceNumber" : null, + "subjects.concepts.label" : [ "AQA5geMZT0FFS0z", "AAZGNVldxfQFhVc", "tBFwsNPAX3Wg9bz", @@ -537,58 +599,111 @@ "bLQeClXtepg6BQO", "O1Lux1bNFDaOKTs" ], - "title": "A work with all the include-able fields" + "title" : "A work with all the include-able fields" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"DKbwserVib\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"6uOUAue10N\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [ + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"Uauios0IzD\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"6n2QtjPUbf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [ + "languages" : [ "{\"id\":\"BRh\",\"label\":\"E6F0oBW\",\"type\":\"Language\"}", "{\"id\":\"52j\",\"label\":\"TlqNXqK\",\"type\":\"Language\"}", "{\"id\":\"K4Q\",\"label\":\"hldbPB44o8\",\"type\":\"Language\"}" ], - "contributors.agent.label": [ + "contributors.agent.label" : [ "{\"label\":\"person-h9jhXW\",\"type\":\"Person\"}", "{\"label\":\"person-QdWhUu\",\"type\":\"Person\"}" ], - "items.locations.license": [ + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["BRh", "52j", "K4Q"], - "genres.label": ["DKbwserVib", "6uOUAue10N"], - "genres.concepts.id": ["co3t5a2c", "vp7gvran"], - "subjects.label": ["Uauios0IzD", "6n2QtjPUbf"], - "contributors.agent.label": ["person-h9jhXW", "person-QdWhUu"], - "identifiers.value": ["bWRaGNi2Hd", "Hq3k05Fqag"], - "items.locations.license.id": ["cc-by", "cc-by", "cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["9indplmm", "b7xfovxp"], - "items.identifiers.value": ["KUpoh3lSc6", "da6nNHPpdW"], - "items.locations.locationType.id": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "BRh", + "52j", + "K4Q" + ], + "genres.label" : [ + "DKbwserVib", + "6uOUAue10N" + ], + "genres.concepts.id" : [ + "co3t5a2c", + "vp7gvran" + ], + "genres.concepts.sourceIdentifier" : [ + "KLw3A3d2Sg", + "okW4LcPBC1" + ], + "subjects.label" : [ + "Uauios0IzD", + "6n2QtjPUbf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "person-h9jhXW", + "person-QdWhUu" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "bWRaGNi2Hd", + "Hq3k05Fqag" + ], + "items.locations.license.id" : [ + "cc-by", + "cc-by", + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "9indplmm", + "b7xfovxp" + ], + "items.identifiers.value" : [ + "KUpoh3lSc6", + "da6nNHPpdW" + ], + "items.locations.locationType.id" : [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id": ["ajgcgp8j", "vjvef8bd"], - "partOf.title": ["title-ZZ4OU9Z1es", "title-e1K5osW8hK"], - "availabilities.id": [] + "partOf.id" : [ + "ajgcgp8j", + "vjvef8bd" + ], + "partOf.title" : [ + "title-ZZ4OU9Z1es", + "title-e1K5osW8hK" + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json b/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json index aac3ec2fb..b3972622c 100644 --- a/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json +++ b/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json @@ -1,112 +1,182 @@ { - "description": "a work with a collection path", - "createdAt": "2023-11-21T15:39:34.288810Z", - "id": "xngls6zs", - "document": { - "debug": { - "source": { - "id": "xngls6zs", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "a work with a collection path", + "createdAt" : "2024-11-13T08:43:26.525864Z", + "id" : "xngls6zs", + "document" : { + "debug" : { + "source" : { + "id" : "xngls6zs", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "cZctCb44q4" + "ontologyType" : "Work", + "value" : "cZctCb44q4" }, - "version": 33, - "modifiedTime": "2068-10-10T17:34:06Z" + "version" : 33, + "modifiedTime" : "2068-10-10T17:34:06Z" }, - "mergedTime": "2068-10-10T17:34:06Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2068-10-10T17:34:06Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "xngls6zs", - "title": "title-b24fkr6m6L", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "xngls6zs", + "title" : "title-b24fkr6m6L", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "cZctCb44q4", - "type": "Identifier" + "value" : "cZctCb44q4", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": "NUF/FINK", - "collectionPath.path": "NUFFINK", - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xngls6zs", - "sourceIdentifier.value": "cZctCb44q4", - "identifiers.value": ["cZctCb44q4"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-b24fkr6m6L" + "query" : { + "collectionPath.label" : "NUF/FINK", + "collectionPath.path" : "NUFFINK", + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "xngls6zs", + "sourceIdentifier.value" : "cZctCb44q4", + "identifiers.value" : [ + "cZctCb44q4" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-b24fkr6m6L" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["cZctCb44q4"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "cZctCb44q4" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json b/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json index 584d5e5c6..9d291519d 100644 --- a/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json +++ b/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json @@ -1,112 +1,182 @@ { - "description": "a work with a collection path", - "createdAt": "2023-11-21T15:39:34.267974Z", - "id": "ynrhjtvf", - "document": { - "debug": { - "source": { - "id": "ynrhjtvf", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "a work with a collection path", + "createdAt" : "2024-11-13T08:43:26.524477Z", + "id" : "ynrhjtvf", + "document" : { + "debug" : { + "source" : { + "id" : "ynrhjtvf", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "883LiigJ4Q" + "ontologyType" : "Work", + "value" : "883LiigJ4Q" }, - "version": 72, - "modifiedTime": "2059-06-02T08:31:27Z" + "version" : 72, + "modifiedTime" : "2059-06-02T08:31:27Z" }, - "mergedTime": "2059-06-02T08:31:27Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2059-06-02T08:31:27Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ynrhjtvf", - "title": "title-rHY8gLbwdH", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "ynrhjtvf", + "title" : "title-rHY8gLbwdH", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "883LiigJ4Q", - "type": "Identifier" + "value" : "883LiigJ4Q", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": "PP/CRI", - "collectionPath.path": "PPCRI", - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ynrhjtvf", - "sourceIdentifier.value": "883LiigJ4Q", - "identifiers.value": ["883LiigJ4Q"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-rHY8gLbwdH" + "query" : { + "collectionPath.label" : "PP/CRI", + "collectionPath.path" : "PPCRI", + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ynrhjtvf", + "sourceIdentifier.value" : "883LiigJ4Q", + "identifiers.value" : [ + "883LiigJ4Q" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-rHY8gLbwdH" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["883LiigJ4Q"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "883LiigJ4Q" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.contributor.0.json b/common/search/src/test/resources/test_documents/works.contributor.0.json index af896cae4..ab360c191 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.0.json +++ b/common/search/src/test/resources/test_documents/works.contributor.0.json @@ -1,122 +1,195 @@ { - "description": "works with different contributor", - "createdAt": "2023-11-21T15:39:34.094815Z", - "id": "5qgfzto1", - "document": { - "debug": { - "source": { - "id": "5qgfzto1", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with different contributor", + "createdAt" : "2024-11-13T08:43:26.504894Z", + "id" : "5qgfzto1", + "document" : { + "debug" : { + "source" : { + "id" : "5qgfzto1", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "x4HrV5FXFI" + "ontologyType" : "Work", + "value" : "x4HrV5FXFI" }, - "version": 28, - "modifiedTime": "1982-10-06T05:52:54Z" + "version" : 28, + "modifiedTime" : "1982-10-06T05:52:54Z" }, - "mergedTime": "1982-10-06T05:52:54Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1982-10-06T05:52:54Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "5qgfzto1", - "title": "title-LlO6qTl7yk", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "5qgfzto1", + "title" : "title-LlO6qTl7yk", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "47", - "type": "Agent" + "agent" : { + "label" : "47", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "x4HrV5FXFI", - "type": "Identifier" + "value" : "x4HrV5FXFI", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["47"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5qgfzto1", - "sourceIdentifier.value": "x4HrV5FXFI", - "identifiers.value": ["x4HrV5FXFI"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-LlO6qTl7yk" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "47" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5qgfzto1", + "sourceIdentifier.value" : "x4HrV5FXFI", + "identifiers.value" : [ + "x4HrV5FXFI" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-LlO6qTl7yk" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": ["{\"label\":\"47\",\"type\":\"Agent\"}"], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + "{\"label\":\"47\",\"type\":\"Agent\"}" + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["47"], - "identifiers.value": ["x4HrV5FXFI"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "47" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "x4HrV5FXFI" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.contributor.1.json b/common/search/src/test/resources/test_documents/works.contributor.1.json index f12c6c8d8..2688e57a4 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.1.json +++ b/common/search/src/test/resources/test_documents/works.contributor.1.json @@ -1,122 +1,195 @@ { - "description": "works with different contributor", - "createdAt": "2023-11-21T15:39:34.100726Z", - "id": "a8uyvixy", - "document": { - "debug": { - "source": { - "id": "a8uyvixy", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with different contributor", + "createdAt" : "2024-11-13T08:43:26.505699Z", + "id" : "a8uyvixy", + "document" : { + "debug" : { + "source" : { + "id" : "a8uyvixy", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "HfSgzBeJhd" + "ontologyType" : "Work", + "value" : "HfSgzBeJhd" }, - "version": 34, - "modifiedTime": "1959-06-29T05:37:32Z" + "version" : 34, + "modifiedTime" : "1959-06-29T05:37:32Z" }, - "mergedTime": "1959-06-29T05:37:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1959-06-29T05:37:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "a8uyvixy", - "title": "title-RHMdw5QCHJ", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "a8uyvixy", + "title" : "title-RHMdw5QCHJ", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "47", - "type": "Agent" + "agent" : { + "label" : "47", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "HfSgzBeJhd", - "type": "Identifier" + "value" : "HfSgzBeJhd", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["47"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "a8uyvixy", - "sourceIdentifier.value": "HfSgzBeJhd", - "identifiers.value": ["HfSgzBeJhd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-RHMdw5QCHJ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "47" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "a8uyvixy", + "sourceIdentifier.value" : "HfSgzBeJhd", + "identifiers.value" : [ + "HfSgzBeJhd" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-RHMdw5QCHJ" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": ["{\"label\":\"47\",\"type\":\"Agent\"}"], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + "{\"label\":\"47\",\"type\":\"Agent\"}" + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["47"], - "identifiers.value": ["HfSgzBeJhd"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "47" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "HfSgzBeJhd" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.contributor.2.json b/common/search/src/test/resources/test_documents/works.contributor.2.json index fd1ad86b8..94c306395 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.2.json +++ b/common/search/src/test/resources/test_documents/works.contributor.2.json @@ -1,134 +1,208 @@ { - "description": "works with different contributor", - "createdAt": "2023-11-21T15:39:34.112633Z", - "id": "toypx23i", - "document": { - "debug": { - "source": { - "id": "toypx23i", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with different contributor", + "createdAt" : "2024-11-13T08:43:26.511704Z", + "id" : "toypx23i", + "document" : { + "debug" : { + "source" : { + "id" : "toypx23i", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "MhQvVMFf3I" + "ontologyType" : "Work", + "value" : "MhQvVMFf3I" }, - "version": 88, - "modifiedTime": "1988-05-28T08:48:11Z" + "version" : 88, + "modifiedTime" : "1988-05-28T08:48:11Z" }, - "mergedTime": "1988-05-28T08:48:11Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1988-05-28T08:48:11Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "toypx23i", - "title": "title-j3EHn02vGA", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "toypx23i", + "title" : "title-j3EHn02vGA", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "007", - "type": "Agent" + "agent" : { + "label" : "007", + "type" : "Agent" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "MI5", - "type": "Organisation" + "agent" : { + "label" : "MI5", + "type" : "Organisation" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "MhQvVMFf3I", - "type": "Identifier" + "value" : "MhQvVMFf3I", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["007", "MI5"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "toypx23i", - "sourceIdentifier.value": "MhQvVMFf3I", - "identifiers.value": ["MhQvVMFf3I"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-j3EHn02vGA" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "007", + "MI5" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "toypx23i", + "sourceIdentifier.value" : "MhQvVMFf3I", + "identifiers.value" : [ + "MhQvVMFf3I" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-j3EHn02vGA" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"007\",\"type\":\"Agent\"}", "{\"label\":\"MI5\",\"type\":\"Organisation\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["007", "MI5"], - "identifiers.value": ["MhQvVMFf3I"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "007", + "MI5" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "MhQvVMFf3I" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.contributor.3.json b/common/search/src/test/resources/test_documents/works.contributor.3.json index bdc802646..8ae1a03ac 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.3.json +++ b/common/search/src/test/resources/test_documents/works.contributor.3.json @@ -1,134 +1,208 @@ { - "description": "works with different contributor", - "createdAt": "2023-11-21T15:39:34.113225Z", - "id": "mudchggm", - "document": { - "debug": { - "source": { - "id": "mudchggm", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with different contributor", + "createdAt" : "2024-11-13T08:43:26.512223Z", + "id" : "mudchggm", + "document" : { + "debug" : { + "source" : { + "id" : "mudchggm", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "XCPwwavyjz" + "ontologyType" : "Work", + "value" : "XCPwwavyjz" }, - "version": 78, - "modifiedTime": "2002-10-09T11:02:18Z" + "version" : 78, + "modifiedTime" : "2002-10-09T11:02:18Z" }, - "mergedTime": "2002-10-09T11:02:18Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2002-10-09T11:02:18Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "mudchggm", - "title": "title-UfT3H8XnpE", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "mudchggm", + "title" : "title-UfT3H8XnpE", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "MI5", - "type": "Organisation" + "agent" : { + "label" : "MI5", + "type" : "Organisation" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "GCHQ", - "type": "Organisation" + "agent" : { + "label" : "GCHQ", + "type" : "Organisation" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "XCPwwavyjz", - "type": "Identifier" + "value" : "XCPwwavyjz", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["MI5", "GCHQ"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "mudchggm", - "sourceIdentifier.value": "XCPwwavyjz", - "identifiers.value": ["XCPwwavyjz"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-UfT3H8XnpE" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "MI5", + "GCHQ" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mudchggm", + "sourceIdentifier.value" : "XCPwwavyjz", + "identifiers.value" : [ + "XCPwwavyjz" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-UfT3H8XnpE" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"MI5\",\"type\":\"Organisation\"}", "{\"label\":\"GCHQ\",\"type\":\"Organisation\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["MI5", "GCHQ"], - "identifiers.value": ["XCPwwavyjz"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "MI5", + "GCHQ" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "XCPwwavyjz" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.deleted.0.json b/common/search/src/test/resources/test_documents/works.deleted.0.json index c6afaf46c..974b70249 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.0.json +++ b/common/search/src/test/resources/test_documents/works.deleted.0.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of deleted works", - "createdAt" : "2022-10-03T10:25:18.803Z", + "createdAt" : "2024-05-15T08:17:25.230175Z", "id" : "pnwuzuig", "document" : { "debug" : { @@ -21,7 +21,9 @@ "deletedReason" : { "info" : "tests", "type" : "DeletedFromSource" - } + }, + "mergeCandidates" : [ + ] }, "type" : "Deleted" } diff --git a/common/search/src/test/resources/test_documents/works.deleted.1.json b/common/search/src/test/resources/test_documents/works.deleted.1.json index 1dfe79901..c6206b8d7 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.1.json +++ b/common/search/src/test/resources/test_documents/works.deleted.1.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of deleted works", - "createdAt" : "2022-10-03T10:25:18.803Z", + "createdAt" : "2024-05-15T08:17:25.230436Z", "id" : "drwubxen", "document" : { "debug" : { @@ -21,7 +21,9 @@ "deletedReason" : { "info" : "tests", "type" : "DeletedFromSource" - } + }, + "mergeCandidates" : [ + ] }, "type" : "Deleted" } diff --git a/common/search/src/test/resources/test_documents/works.deleted.2.json b/common/search/src/test/resources/test_documents/works.deleted.2.json index 60f524885..8e3dcd7c0 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.2.json +++ b/common/search/src/test/resources/test_documents/works.deleted.2.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of deleted works", - "createdAt" : "2022-10-03T10:25:18.803Z", + "createdAt" : "2024-02-16T15:36:44.111210Z", "id" : "93ber84x", "document" : { "debug" : { @@ -21,7 +21,9 @@ "deletedReason" : { "info" : "tests", "type" : "DeletedFromSource" - } + }, + "mergeCandidates" : [ + ] }, "type" : "Deleted" } diff --git a/common/search/src/test/resources/test_documents/works.deleted.3.json b/common/search/src/test/resources/test_documents/works.deleted.3.json index 17cfc9ba5..37433098f 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.3.json +++ b/common/search/src/test/resources/test_documents/works.deleted.3.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of deleted works", - "createdAt" : "2022-10-03T10:25:18.804Z", + "createdAt" : "2024-02-16T15:36:44.111475Z", "id" : "0tkkvzgo", "document" : { "debug" : { @@ -21,7 +21,9 @@ "deletedReason" : { "info" : "tests", "type" : "DeletedFromSource" - } + }, + "mergeCandidates" : [ + ] }, "type" : "Deleted" } diff --git a/common/search/src/test/resources/test_documents/works.every-format.0.json b/common/search/src/test/resources/test_documents/works.every-format.0.json index 0f788bae5..f7f377d2f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.0.json +++ b/common/search/src/test/resources/test_documents/works.every-format.0.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.318612Z", - "id": "w2ap82cs", - "document": { - "debug": { - "source": { - "id": "w2ap82cs", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.528971Z", + "id" : "w2ap82cs", + "document" : { + "debug" : { + "source" : { + "id" : "w2ap82cs", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "UZlr85jkfd" + "ontologyType" : "Work", + "value" : "UZlr85jkfd" }, - "version": 73, - "modifiedTime": "1966-01-30T11:53:55Z" + "version" : 73, + "modifiedTime" : "1966-01-30T11:53:55Z" }, - "mergedTime": "1966-01-30T11:53:55Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1966-01-30T11:53:55Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "w2ap82cs", - "title": "title-fkE2zvA5MJ", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "w2ap82cs", + "title" : "title-fkE2zvA5MJ", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "UZlr85jkfd", - "type": "Identifier" + "value" : "UZlr85jkfd", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "w2ap82cs", - "sourceIdentifier.value": "UZlr85jkfd", - "identifiers.value": ["UZlr85jkfd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-fkE2zvA5MJ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "w2ap82cs", + "sourceIdentifier.value" : "UZlr85jkfd", + "identifiers.value" : [ + "UZlr85jkfd" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-fkE2zvA5MJ" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["UZlr85jkfd"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "UZlr85jkfd" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.1.json b/common/search/src/test/resources/test_documents/works.every-format.1.json index 8088da51a..2b5ccfc4e 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.1.json +++ b/common/search/src/test/resources/test_documents/works.every-format.1.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.321997Z", - "id": "jminkez1", - "document": { - "debug": { - "source": { - "id": "jminkez1", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.529316Z", + "id" : "jminkez1", + "document" : { + "debug" : { + "source" : { + "id" : "jminkez1", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "cxE29kiXIm" + "ontologyType" : "Work", + "value" : "cxE29kiXIm" }, - "version": 78, - "modifiedTime": "1999-04-12T11:49:15Z" + "version" : 78, + "modifiedTime" : "1999-04-12T11:49:15Z" }, - "mergedTime": "1999-04-12T11:49:15Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1999-04-12T11:49:15Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "jminkez1", - "title": "title-CI4wWGKP4h", - "alternativeTitles": [], - "workType": { - "id": "q", - "label": "Digital Images", - "type": "Format" + "display" : { + "id" : "jminkez1", + "title" : "title-CI4wWGKP4h", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "q", + "label" : "Digital Images", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "cxE29kiXIm", - "type": "Identifier" + "value" : "cxE29kiXIm", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "jminkez1", - "sourceIdentifier.value": "cxE29kiXIm", - "identifiers.value": ["cxE29kiXIm"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-CI4wWGKP4h" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jminkez1", + "sourceIdentifier.value" : "cxE29kiXIm", + "identifiers.value" : [ + "cxE29kiXIm" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-CI4wWGKP4h" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"q\",\"label\":\"Digital Images\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "q", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["cxE29kiXIm"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "q", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "cxE29kiXIm" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.10.json b/common/search/src/test/resources/test_documents/works.every-format.10.json index 99ee9f030..b2aa27024 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.10.json +++ b/common/search/src/test/resources/test_documents/works.every-format.10.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.370840Z", - "id": "5lq8kfis", - "document": { - "debug": { - "source": { - "id": "5lq8kfis", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.532374Z", + "id" : "5lq8kfis", + "document" : { + "debug" : { + "source" : { + "id" : "5lq8kfis", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "ajAY87vuuJ" + "ontologyType" : "Work", + "value" : "ajAY87vuuJ" }, - "version": 22, - "modifiedTime": "1971-04-04T14:11:16Z" + "version" : 22, + "modifiedTime" : "1971-04-04T14:11:16Z" }, - "mergedTime": "1971-04-04T14:11:16Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-04-04T14:11:16Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "5lq8kfis", - "title": "title-yrogDQ417u", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "5lq8kfis", + "title" : "title-yrogDQ417u", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "ajAY87vuuJ", - "type": "Identifier" + "value" : "ajAY87vuuJ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5lq8kfis", - "sourceIdentifier.value": "ajAY87vuuJ", - "identifiers.value": ["ajAY87vuuJ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-yrogDQ417u" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5lq8kfis", + "sourceIdentifier.value" : "ajAY87vuuJ", + "identifiers.value" : [ + "ajAY87vuuJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-yrogDQ417u" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ajAY87vuuJ"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ajAY87vuuJ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.11.json b/common/search/src/test/resources/test_documents/works.every-format.11.json index 89512ff92..25ac73b15 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.11.json +++ b/common/search/src/test/resources/test_documents/works.every-format.11.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.371319Z", - "id": "kkzdnfal", - "document": { - "debug": { - "source": { - "id": "kkzdnfal", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.532927Z", + "id" : "kkzdnfal", + "document" : { + "debug" : { + "source" : { + "id" : "kkzdnfal", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "J1fupAzsfb" + "ontologyType" : "Work", + "value" : "J1fupAzsfb" }, - "version": 87, - "modifiedTime": "2033-08-12T07:52:47Z" + "version" : 87, + "modifiedTime" : "2033-08-12T07:52:47Z" }, - "mergedTime": "2033-08-12T07:52:47Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2033-08-12T07:52:47Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "kkzdnfal", - "title": "title-wOjYum0Yf1", - "alternativeTitles": [], - "workType": { - "id": "g", - "label": "Videos", - "type": "Format" + "display" : { + "id" : "kkzdnfal", + "title" : "title-wOjYum0Yf1", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "g", + "label" : "Videos", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "J1fupAzsfb", - "type": "Identifier" + "value" : "J1fupAzsfb", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kkzdnfal", - "sourceIdentifier.value": "J1fupAzsfb", - "identifiers.value": ["J1fupAzsfb"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-wOjYum0Yf1" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "kkzdnfal", + "sourceIdentifier.value" : "J1fupAzsfb", + "identifiers.value" : [ + "J1fupAzsfb" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-wOjYum0Yf1" }, - "aggregatableValues": { - "workType": ["{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "g", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["J1fupAzsfb"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "g", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "J1fupAzsfb" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.12.json b/common/search/src/test/resources/test_documents/works.every-format.12.json index dbb51de6b..f9c8fa946 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.12.json +++ b/common/search/src/test/resources/test_documents/works.every-format.12.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.371721Z", - "id": "02pauy4p", - "document": { - "debug": { - "source": { - "id": "02pauy4p", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.533471Z", + "id" : "02pauy4p", + "document" : { + "debug" : { + "source" : { + "id" : "02pauy4p", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "mZeIhkjzt3" + "ontologyType" : "Work", + "value" : "mZeIhkjzt3" }, - "version": 65, - "modifiedTime": "2046-09-07T08:09:38Z" + "version" : 65, + "modifiedTime" : "2046-09-07T08:09:38Z" }, - "mergedTime": "2046-09-07T08:09:38Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2046-09-07T08:09:38Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "02pauy4p", - "title": "title-8GcWiPpAX3", - "alternativeTitles": [], - "workType": { - "id": "h", - "label": "Archives and manuscripts", - "type": "Format" + "display" : { + "id" : "02pauy4p", + "title" : "title-8GcWiPpAX3", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "h", + "label" : "Archives and manuscripts", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "mZeIhkjzt3", - "type": "Identifier" + "value" : "mZeIhkjzt3", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "02pauy4p", - "sourceIdentifier.value": "mZeIhkjzt3", - "identifiers.value": ["mZeIhkjzt3"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-8GcWiPpAX3" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "02pauy4p", + "sourceIdentifier.value" : "mZeIhkjzt3", + "identifiers.value" : [ + "mZeIhkjzt3" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-8GcWiPpAX3" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"h\",\"label\":\"Archives and manuscripts\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "h", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["mZeIhkjzt3"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "h", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "mZeIhkjzt3" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.13.json b/common/search/src/test/resources/test_documents/works.every-format.13.json index b518303b7..f5249cff8 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.13.json +++ b/common/search/src/test/resources/test_documents/works.every-format.13.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.372105Z", - "id": "83tyy1gh", - "document": { - "debug": { - "source": { - "id": "83tyy1gh", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.533855Z", + "id" : "83tyy1gh", + "document" : { + "debug" : { + "source" : { + "id" : "83tyy1gh", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "qt38YgNxOY" + "ontologyType" : "Work", + "value" : "qt38YgNxOY" }, - "version": 96, - "modifiedTime": "1933-08-01T22:54:00Z" + "version" : 96, + "modifiedTime" : "1933-08-01T22:54:00Z" }, - "mergedTime": "1933-08-01T22:54:00Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1933-08-01T22:54:00Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "83tyy1gh", - "title": "title-sQ9rgmu63i", - "alternativeTitles": [], - "workType": { - "id": "n", - "label": "Film", - "type": "Format" + "display" : { + "id" : "83tyy1gh", + "title" : "title-sQ9rgmu63i", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "hdig", + "label" : "Born-digital archives", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "qt38YgNxOY", - "type": "Identifier" + "value" : "qt38YgNxOY", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "83tyy1gh", - "sourceIdentifier.value": "qt38YgNxOY", - "identifiers.value": ["qt38YgNxOY"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-sQ9rgmu63i" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "83tyy1gh", + "sourceIdentifier.value" : "qt38YgNxOY", + "identifiers.value" : [ + "qt38YgNxOY" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-sQ9rgmu63i" }, - "aggregatableValues": { - "workType": ["{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"hdig\",\"label\":\"Born-digital archives\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "n", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["qt38YgNxOY"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "hdig", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "qt38YgNxOY" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.14.json b/common/search/src/test/resources/test_documents/works.every-format.14.json index 152746b7a..9cc382d0f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.14.json +++ b/common/search/src/test/resources/test_documents/works.every-format.14.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.372460Z", - "id": "vwzsza7o", - "document": { - "debug": { - "source": { - "id": "vwzsza7o", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.534193Z", + "id" : "vwzsza7o", + "document" : { + "debug" : { + "source" : { + "id" : "vwzsza7o", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "DHZ5kGsC2N" + "ontologyType" : "Work", + "value" : "DHZ5kGsC2N" }, - "version": 76, - "modifiedTime": "2057-06-21T22:52:30Z" + "version" : 76, + "modifiedTime" : "2057-06-21T22:52:30Z" }, - "mergedTime": "2057-06-21T22:52:30Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2057-06-21T22:52:30Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vwzsza7o", - "title": "title-Aa31SpT9St", - "alternativeTitles": [], - "workType": { - "id": "b", - "label": "Manuscripts", - "type": "Format" + "display" : { + "id" : "vwzsza7o", + "title" : "title-Aa31SpT9St", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "n", + "label" : "Film", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "DHZ5kGsC2N", - "type": "Identifier" + "value" : "DHZ5kGsC2N", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vwzsza7o", - "sourceIdentifier.value": "DHZ5kGsC2N", - "identifiers.value": ["DHZ5kGsC2N"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-Aa31SpT9St" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "vwzsza7o", + "sourceIdentifier.value" : "DHZ5kGsC2N", + "identifiers.value" : [ + "DHZ5kGsC2N" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Aa31SpT9St" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "b", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["DHZ5kGsC2N"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "n", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "DHZ5kGsC2N" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.15.json b/common/search/src/test/resources/test_documents/works.every-format.15.json index b7220ace3..b8dfdcf9f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.15.json +++ b/common/search/src/test/resources/test_documents/works.every-format.15.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.372811Z", - "id": "9vihnjwg", - "document": { - "debug": { - "source": { - "id": "9vihnjwg", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.534540Z", + "id" : "9vihnjwg", + "document" : { + "debug" : { + "source" : { + "id" : "9vihnjwg", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "oeggPvgjRA" + "ontologyType" : "Work", + "value" : "oeggPvgjRA" }, - "version": 48, - "modifiedTime": "2016-04-26T09:59:06Z" + "version" : 48, + "modifiedTime" : "2016-04-26T09:59:06Z" }, - "mergedTime": "2016-04-26T09:59:06Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2016-04-26T09:59:06Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "9vihnjwg", - "title": "title-tGLcg1WHGj", - "alternativeTitles": [], - "workType": { - "id": "c", - "label": "Music", - "type": "Format" + "display" : { + "id" : "9vihnjwg", + "title" : "title-tGLcg1WHGj", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "b", + "label" : "Manuscripts", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "oeggPvgjRA", - "type": "Identifier" + "value" : "oeggPvgjRA", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "9vihnjwg", - "sourceIdentifier.value": "oeggPvgjRA", - "identifiers.value": ["oeggPvgjRA"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-tGLcg1WHGj" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "9vihnjwg", + "sourceIdentifier.value" : "oeggPvgjRA", + "identifiers.value" : [ + "oeggPvgjRA" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-tGLcg1WHGj" }, - "aggregatableValues": { - "workType": ["{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "c", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["oeggPvgjRA"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "b", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "oeggPvgjRA" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.16.json b/common/search/src/test/resources/test_documents/works.every-format.16.json index 0dab3cfec..a2c79c9a4 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.16.json +++ b/common/search/src/test/resources/test_documents/works.every-format.16.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.373166Z", - "id": "4blsy3iy", - "document": { - "debug": { - "source": { - "id": "4blsy3iy", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.534887Z", + "id" : "4blsy3iy", + "document" : { + "debug" : { + "source" : { + "id" : "4blsy3iy", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "CwPK521Yf5" + "ontologyType" : "Work", + "value" : "CwPK521Yf5" }, - "version": 80, - "modifiedTime": "1989-12-01T18:27:04Z" + "version" : 80, + "modifiedTime" : "1989-12-01T18:27:04Z" }, - "mergedTime": "1989-12-01T18:27:04Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1989-12-01T18:27:04Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "4blsy3iy", - "title": "title-rQHICakdbo", - "alternativeTitles": [], - "workType": { - "id": "u", - "label": "Standing order", - "type": "Format" + "display" : { + "id" : "4blsy3iy", + "title" : "title-rQHICakdbo", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "c", + "label" : "Music", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "CwPK521Yf5", - "type": "Identifier" + "value" : "CwPK521Yf5", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "4blsy3iy", - "sourceIdentifier.value": "CwPK521Yf5", - "identifiers.value": ["CwPK521Yf5"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-rQHICakdbo" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "4blsy3iy", + "sourceIdentifier.value" : "CwPK521Yf5", + "identifiers.value" : [ + "CwPK521Yf5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-rQHICakdbo" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "u", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["CwPK521Yf5"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "c", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "CwPK521Yf5" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.17.json b/common/search/src/test/resources/test_documents/works.every-format.17.json index 743ea2028..2647f10cd 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.17.json +++ b/common/search/src/test/resources/test_documents/works.every-format.17.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.373547Z", - "id": "9is9e3tz", - "document": { - "debug": { - "source": { - "id": "9is9e3tz", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.535338Z", + "id" : "9is9e3tz", + "document" : { + "debug" : { + "source" : { + "id" : "9is9e3tz", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "ZVe3xG7r6V" + "ontologyType" : "Work", + "value" : "ZVe3xG7r6V" }, - "version": 2, - "modifiedTime": "1948-09-05T03:31:20Z" + "version" : 2, + "modifiedTime" : "1948-09-05T03:31:20Z" }, - "mergedTime": "1948-09-05T03:31:20Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1948-09-05T03:31:20Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "9is9e3tz", - "title": "title-GYTcwsJblj", - "alternativeTitles": [], - "workType": { - "id": "z", - "label": "Web sites", - "type": "Format" + "display" : { + "id" : "9is9e3tz", + "title" : "title-GYTcwsJblj", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "u", + "label" : "Standing order", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "ZVe3xG7r6V", - "type": "Identifier" + "value" : "ZVe3xG7r6V", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "9is9e3tz", - "sourceIdentifier.value": "ZVe3xG7r6V", - "identifiers.value": ["ZVe3xG7r6V"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-GYTcwsJblj" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "9is9e3tz", + "sourceIdentifier.value" : "ZVe3xG7r6V", + "identifiers.value" : [ + "ZVe3xG7r6V" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-GYTcwsJblj" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "z", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ZVe3xG7r6V"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "u", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ZVe3xG7r6V" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.18.json b/common/search/src/test/resources/test_documents/works.every-format.18.json index e5fc92444..99e6d1e0f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.18.json +++ b/common/search/src/test/resources/test_documents/works.every-format.18.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.381102Z", - "id": "4pxxngz8", - "document": { - "debug": { - "source": { - "id": "4pxxngz8", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.535809Z", + "id" : "4pxxngz8", + "document" : { + "debug" : { + "source" : { + "id" : "4pxxngz8", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "u1GFI2XFVi" + "ontologyType" : "Work", + "value" : "u1GFI2XFVi" }, - "version": 98, - "modifiedTime": "2057-05-14T23:40:17Z" + "version" : 98, + "modifiedTime" : "2057-05-14T23:40:17Z" }, - "mergedTime": "2057-05-14T23:40:17Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2057-05-14T23:40:17Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "4pxxngz8", - "title": "title-nVQ1pSxSTQ", - "alternativeTitles": [], - "workType": { - "id": "v", - "label": "E-books", - "type": "Format" + "display" : { + "id" : "4pxxngz8", + "title" : "title-nVQ1pSxSTQ", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "z", + "label" : "Web sites", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "u1GFI2XFVi", - "type": "Identifier" + "value" : "u1GFI2XFVi", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "4pxxngz8", - "sourceIdentifier.value": "u1GFI2XFVi", - "identifiers.value": ["u1GFI2XFVi"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-nVQ1pSxSTQ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "4pxxngz8", + "sourceIdentifier.value" : "u1GFI2XFVi", + "identifiers.value" : [ + "u1GFI2XFVi" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-nVQ1pSxSTQ" }, - "aggregatableValues": { - "workType": ["{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "v", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["u1GFI2XFVi"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "z", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "u1GFI2XFVi" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.19.json b/common/search/src/test/resources/test_documents/works.every-format.19.json index bdac6587e..589718e24 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.19.json +++ b/common/search/src/test/resources/test_documents/works.every-format.19.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.383923Z", - "id": "pujta45z", - "document": { - "debug": { - "source": { - "id": "pujta45z", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.536156Z", + "id" : "pujta45z", + "document" : { + "debug" : { + "source" : { + "id" : "pujta45z", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "4EFefGhSS8" + "ontologyType" : "Work", + "value" : "4EFefGhSS8" }, - "version": 75, - "modifiedTime": "2013-08-30T03:43:43Z" + "version" : 75, + "modifiedTime" : "2013-08-30T03:43:43Z" }, - "mergedTime": "2013-08-30T03:43:43Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2013-08-30T03:43:43Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "pujta45z", - "title": "title-fq9upMxJZw", - "alternativeTitles": [], - "workType": { - "id": "s", - "label": "E-sound", - "type": "Format" + "display" : { + "id" : "pujta45z", + "title" : "title-fq9upMxJZw", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "v", + "label" : "E-books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "4EFefGhSS8", - "type": "Identifier" + "value" : "4EFefGhSS8", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "pujta45z", - "sourceIdentifier.value": "4EFefGhSS8", - "identifiers.value": ["4EFefGhSS8"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-fq9upMxJZw" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "pujta45z", + "sourceIdentifier.value" : "4EFefGhSS8", + "identifiers.value" : [ + "4EFefGhSS8" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-fq9upMxJZw" }, - "aggregatableValues": { - "workType": ["{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "s", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["4EFefGhSS8"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "v", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "4EFefGhSS8" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.2.json b/common/search/src/test/resources/test_documents/works.every-format.2.json index 27ca7d254..cdc5845f6 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.2.json +++ b/common/search/src/test/resources/test_documents/works.every-format.2.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.324957Z", - "id": "cinepzd4", - "document": { - "debug": { - "source": { - "id": "cinepzd4", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.529642Z", + "id" : "cinepzd4", + "document" : { + "debug" : { + "source" : { + "id" : "cinepzd4", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "ALANM5eCQQ" + "ontologyType" : "Work", + "value" : "ALANM5eCQQ" }, - "version": 60, - "modifiedTime": "2011-07-10T12:40:11Z" + "version" : 60, + "modifiedTime" : "2011-07-10T12:40:11Z" }, - "mergedTime": "2011-07-10T12:40:11Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2011-07-10T12:40:11Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cinepzd4", - "title": "title-eLKKcl3dhq", - "alternativeTitles": [], - "workType": { - "id": "l", - "label": "Ephemera", - "type": "Format" + "display" : { + "id" : "cinepzd4", + "title" : "title-eLKKcl3dhq", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "l", + "label" : "Ephemera", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "ALANM5eCQQ", - "type": "Identifier" + "value" : "ALANM5eCQQ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cinepzd4", - "sourceIdentifier.value": "ALANM5eCQQ", - "identifiers.value": ["ALANM5eCQQ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-eLKKcl3dhq" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "cinepzd4", + "sourceIdentifier.value" : "ALANM5eCQQ", + "identifiers.value" : [ + "ALANM5eCQQ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-eLKKcl3dhq" }, - "aggregatableValues": { - "workType": ["{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "l", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ALANM5eCQQ"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "l", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ALANM5eCQQ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.20.json b/common/search/src/test/resources/test_documents/works.every-format.20.json index 69eab89e2..4411c1cdb 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.20.json +++ b/common/search/src/test/resources/test_documents/works.every-format.20.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.386217Z", - "id": "qph7iot8", - "document": { - "debug": { - "source": { - "id": "qph7iot8", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.536496Z", + "id" : "qph7iot8", + "document" : { + "debug" : { + "source" : { + "id" : "qph7iot8", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "kQ4UxBoirz" + "ontologyType" : "Work", + "value" : "kQ4UxBoirz" }, - "version": 61, - "modifiedTime": "2068-04-15T09:23:35Z" + "version" : 61, + "modifiedTime" : "2068-04-15T09:23:35Z" }, - "mergedTime": "2068-04-15T09:23:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2068-04-15T09:23:35Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "qph7iot8", - "title": "title-GJFY3QKMnI", - "alternativeTitles": [], - "workType": { - "id": "j", - "label": "E-journals", - "type": "Format" + "display" : { + "id" : "qph7iot8", + "title" : "title-GJFY3QKMnI", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "s", + "label" : "E-sound", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "kQ4UxBoirz", - "type": "Identifier" + "value" : "kQ4UxBoirz", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "qph7iot8", - "sourceIdentifier.value": "kQ4UxBoirz", - "identifiers.value": ["kQ4UxBoirz"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-GJFY3QKMnI" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "qph7iot8", + "sourceIdentifier.value" : "kQ4UxBoirz", + "identifiers.value" : [ + "kQ4UxBoirz" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-GJFY3QKMnI" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "j", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["kQ4UxBoirz"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "s", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "kQ4UxBoirz" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.21.json b/common/search/src/test/resources/test_documents/works.every-format.21.json index 56ad52be4..5d6b4df91 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.21.json +++ b/common/search/src/test/resources/test_documents/works.every-format.21.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.386734Z", - "id": "3ygkb1yd", - "document": { - "debug": { - "source": { - "id": "3ygkb1yd", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.536834Z", + "id" : "3ygkb1yd", + "document" : { + "debug" : { + "source" : { + "id" : "3ygkb1yd", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "mTs82bfnk2" + "ontologyType" : "Work", + "value" : "mTs82bfnk2" }, - "version": 60, - "modifiedTime": "1961-01-11T18:15:01Z" + "version" : 60, + "modifiedTime" : "1961-01-11T18:15:01Z" }, - "mergedTime": "1961-01-11T18:15:01Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1961-01-11T18:15:01Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "3ygkb1yd", - "title": "title-XqL6hBi4EV", - "alternativeTitles": [], - "workType": { - "id": "f", - "label": "E-videos", - "type": "Format" + "display" : { + "id" : "3ygkb1yd", + "title" : "title-XqL6hBi4EV", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "j", + "label" : "E-journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "mTs82bfnk2", - "type": "Identifier" + "value" : "mTs82bfnk2", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "3ygkb1yd", - "sourceIdentifier.value": "mTs82bfnk2", - "identifiers.value": ["mTs82bfnk2"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-XqL6hBi4EV" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "3ygkb1yd", + "sourceIdentifier.value" : "mTs82bfnk2", + "identifiers.value" : [ + "mTs82bfnk2" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-XqL6hBi4EV" }, - "aggregatableValues": { - "workType": ["{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "f", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["mTs82bfnk2"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "j", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "mTs82bfnk2" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.22.json b/common/search/src/test/resources/test_documents/works.every-format.22.json index b1d16dd0e..19f143cf4 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.22.json +++ b/common/search/src/test/resources/test_documents/works.every-format.22.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.387108Z", - "id": "ccfchgq4", - "document": { - "debug": { - "source": { - "id": "ccfchgq4", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.537188Z", + "id" : "ccfchgq4", + "document" : { + "debug" : { + "source" : { + "id" : "ccfchgq4", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "a62zjJ09dk" + "ontologyType" : "Work", + "value" : "a62zjJ09dk" }, - "version": 89, - "modifiedTime": "1989-01-21T00:50:14Z" + "version" : 89, + "modifiedTime" : "1989-01-21T00:50:14Z" }, - "mergedTime": "1989-01-21T00:50:14Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1989-01-21T00:50:14Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ccfchgq4", - "title": "title-BGJ9vAPDvN", - "alternativeTitles": [], - "workType": { - "id": "x", - "label": "Manuscripts", - "type": "Format" + "display" : { + "id" : "ccfchgq4", + "title" : "title-BGJ9vAPDvN", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "f", + "label" : "E-videos", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "a62zjJ09dk", - "type": "Identifier" + "value" : "a62zjJ09dk", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ccfchgq4", - "sourceIdentifier.value": "a62zjJ09dk", - "identifiers.value": ["a62zjJ09dk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-BGJ9vAPDvN" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ccfchgq4", + "sourceIdentifier.value" : "a62zjJ09dk", + "identifiers.value" : [ + "a62zjJ09dk" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-BGJ9vAPDvN" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "x", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["a62zjJ09dk"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "f", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "a62zjJ09dk" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.23.json b/common/search/src/test/resources/test_documents/works.every-format.23.json new file mode 100644 index 000000000..eaf4ab07f --- /dev/null +++ b/common/search/src/test/resources/test_documents/works.every-format.23.json @@ -0,0 +1,188 @@ +{ + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.537535Z", + "id" : "cgfghm8m", + "document" : { + "debug" : { + "source" : { + "id" : "cgfghm8m", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" + }, + "ontologyType" : "Work", + "value" : "mh0pYazvpR" + }, + "version" : 37, + "modifiedTime" : "1945-01-10T19:58:56Z" + }, + "mergedTime" : "1945-01-10T19:58:56Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] + }, + "display" : { + "id" : "cgfghm8m", + "title" : "title-oOAv5vdS0Y", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "x", + "label" : "Manuscripts", + "type" : "Format" + }, + "contributors" : [ + ], + "identifiers" : [ + { + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" + }, + "value" : "mh0pYazvpR", + "type" : "Identifier" + } + ], + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" + }, + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "cgfghm8m", + "sourceIdentifier.value" : "mh0pYazvpR", + "identifiers.value" : [ + "mh0pYazvpR" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-oOAv5vdS0Y" + }, + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] + }, + "filterableValues" : { + "format.id" : "x", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "mh0pYazvpR" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] + }, + "type" : "Visible" + } +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.3.json b/common/search/src/test/resources/test_documents/works.every-format.3.json index 53143dbd3..d3159ef60 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.3.json +++ b/common/search/src/test/resources/test_documents/works.every-format.3.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.326526Z", - "id": "btrlxjc4", - "document": { - "debug": { - "source": { - "id": "btrlxjc4", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.529965Z", + "id" : "btrlxjc4", + "document" : { + "debug" : { + "source" : { + "id" : "btrlxjc4", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "oZVNybADYL" + "ontologyType" : "Work", + "value" : "oZVNybADYL" }, - "version": 5, - "modifiedTime": "1936-05-06T07:13:48Z" + "version" : 5, + "modifiedTime" : "1936-05-06T07:13:48Z" }, - "mergedTime": "1936-05-06T07:13:48Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1936-05-06T07:13:48Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "btrlxjc4", - "title": "title-v7ilrP0gOL", - "alternativeTitles": [], - "workType": { - "id": "e", - "label": "Maps", - "type": "Format" + "display" : { + "id" : "btrlxjc4", + "title" : "title-v7ilrP0gOL", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "e", + "label" : "Maps", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "oZVNybADYL", - "type": "Identifier" + "value" : "oZVNybADYL", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "btrlxjc4", - "sourceIdentifier.value": "oZVNybADYL", - "identifiers.value": ["oZVNybADYL"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-v7ilrP0gOL" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "btrlxjc4", + "sourceIdentifier.value" : "oZVNybADYL", + "identifiers.value" : [ + "oZVNybADYL" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-v7ilrP0gOL" }, - "aggregatableValues": { - "workType": ["{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "e", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["oZVNybADYL"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "e", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "oZVNybADYL" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.4.json b/common/search/src/test/resources/test_documents/works.every-format.4.json index 6555e46d3..0ff3a2bfb 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.4.json +++ b/common/search/src/test/resources/test_documents/works.every-format.4.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.327485Z", - "id": "ifz9zadf", - "document": { - "debug": { - "source": { - "id": "ifz9zadf", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.530281Z", + "id" : "ifz9zadf", + "document" : { + "debug" : { + "source" : { + "id" : "ifz9zadf", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "MZkkqME2t4" + "ontologyType" : "Work", + "value" : "MZkkqME2t4" }, - "version": 33, - "modifiedTime": "2033-01-05T00:41:56Z" + "version" : 33, + "modifiedTime" : "2033-01-05T00:41:56Z" }, - "mergedTime": "2033-01-05T00:41:56Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2033-01-05T00:41:56Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ifz9zadf", - "title": "title-zprDQS25hn", - "alternativeTitles": [], - "workType": { - "id": "k", - "label": "Pictures", - "type": "Format" + "display" : { + "id" : "ifz9zadf", + "title" : "title-zprDQS25hn", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "k", + "label" : "Pictures", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "MZkkqME2t4", - "type": "Identifier" + "value" : "MZkkqME2t4", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ifz9zadf", - "sourceIdentifier.value": "MZkkqME2t4", - "identifiers.value": ["MZkkqME2t4"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-zprDQS25hn" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ifz9zadf", + "sourceIdentifier.value" : "MZkkqME2t4", + "identifiers.value" : [ + "MZkkqME2t4" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-zprDQS25hn" }, - "aggregatableValues": { - "workType": ["{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "k", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["MZkkqME2t4"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "k", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "MZkkqME2t4" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.5.json b/common/search/src/test/resources/test_documents/works.every-format.5.json index a7a8c87ec..c94af86f7 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.5.json +++ b/common/search/src/test/resources/test_documents/works.every-format.5.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.327921Z", - "id": "xlcpwdx8", - "document": { - "debug": { - "source": { - "id": "xlcpwdx8", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.530610Z", + "id" : "xlcpwdx8", + "document" : { + "debug" : { + "source" : { + "id" : "xlcpwdx8", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "QBSkLFL8Cz" + "ontologyType" : "Work", + "value" : "QBSkLFL8Cz" }, - "version": 26, - "modifiedTime": "1970-09-11T12:17:13Z" + "version" : 26, + "modifiedTime" : "1970-09-11T12:17:13Z" }, - "mergedTime": "1970-09-11T12:17:13Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1970-09-11T12:17:13Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "xlcpwdx8", - "title": "title-If124qX5kM", - "alternativeTitles": [], - "workType": { - "id": "w", - "label": "Student dissertations", - "type": "Format" + "display" : { + "id" : "xlcpwdx8", + "title" : "title-If124qX5kM", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "w", + "label" : "Student dissertations", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "QBSkLFL8Cz", - "type": "Identifier" + "value" : "QBSkLFL8Cz", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xlcpwdx8", - "sourceIdentifier.value": "QBSkLFL8Cz", - "identifiers.value": ["QBSkLFL8Cz"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-If124qX5kM" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "xlcpwdx8", + "sourceIdentifier.value" : "QBSkLFL8Cz", + "identifiers.value" : [ + "QBSkLFL8Cz" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-If124qX5kM" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"w\",\"label\":\"Student dissertations\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "w", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["QBSkLFL8Cz"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "w", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "QBSkLFL8Cz" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.6.json b/common/search/src/test/resources/test_documents/works.every-format.6.json index af5009d46..4e8333ef0 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.6.json +++ b/common/search/src/test/resources/test_documents/works.every-format.6.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.335195Z", - "id": "cmz25207", - "document": { - "debug": { - "source": { - "id": "cmz25207", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.530973Z", + "id" : "cmz25207", + "document" : { + "debug" : { + "source" : { + "id" : "cmz25207", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "pmMJGY9dht" + "ontologyType" : "Work", + "value" : "pmMJGY9dht" }, - "version": 54, - "modifiedTime": "2057-11-24T19:37:10Z" + "version" : 54, + "modifiedTime" : "2057-11-24T19:37:10Z" }, - "mergedTime": "2057-11-24T19:37:10Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2057-11-24T19:37:10Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cmz25207", - "title": "title-hUTLc5Rq9A", - "alternativeTitles": [], - "workType": { - "id": "r", - "label": "3-D Objects", - "type": "Format" + "display" : { + "id" : "cmz25207", + "title" : "title-hUTLc5Rq9A", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "r", + "label" : "3-D Objects", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "pmMJGY9dht", - "type": "Identifier" + "value" : "pmMJGY9dht", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cmz25207", - "sourceIdentifier.value": "pmMJGY9dht", - "identifiers.value": ["pmMJGY9dht"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-hUTLc5Rq9A" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "cmz25207", + "sourceIdentifier.value" : "pmMJGY9dht", + "identifiers.value" : [ + "pmMJGY9dht" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-hUTLc5Rq9A" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"r\",\"label\":\"3-D Objects\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "r", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["pmMJGY9dht"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "r", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "pmMJGY9dht" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.7.json b/common/search/src/test/resources/test_documents/works.every-format.7.json index 426c18399..ee7c0d2c0 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.7.json +++ b/common/search/src/test/resources/test_documents/works.every-format.7.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.340900Z", - "id": "6qjgnqbc", - "document": { - "debug": { - "source": { - "id": "6qjgnqbc", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.531314Z", + "id" : "6qjgnqbc", + "document" : { + "debug" : { + "source" : { + "id" : "6qjgnqbc", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Nr737MdPwA" + "ontologyType" : "Work", + "value" : "Nr737MdPwA" }, - "version": 47, - "modifiedTime": "1984-05-15T14:09:35Z" + "version" : 47, + "modifiedTime" : "1984-05-15T14:09:35Z" }, - "mergedTime": "1984-05-15T14:09:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1984-05-15T14:09:35Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "6qjgnqbc", - "title": "title-URSdB22MDV", - "alternativeTitles": [], - "workType": { - "id": "m", - "label": "CD-Roms", - "type": "Format" + "display" : { + "id" : "6qjgnqbc", + "title" : "title-URSdB22MDV", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "m", + "label" : "CD-Roms", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Nr737MdPwA", - "type": "Identifier" + "value" : "Nr737MdPwA", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "6qjgnqbc", - "sourceIdentifier.value": "Nr737MdPwA", - "identifiers.value": ["Nr737MdPwA"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-URSdB22MDV" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "6qjgnqbc", + "sourceIdentifier.value" : "Nr737MdPwA", + "identifiers.value" : [ + "Nr737MdPwA" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-URSdB22MDV" }, - "aggregatableValues": { - "workType": ["{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "m", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Nr737MdPwA"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "m", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Nr737MdPwA" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.8.json b/common/search/src/test/resources/test_documents/works.every-format.8.json index 1d66c726c..5ba754977 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.8.json +++ b/common/search/src/test/resources/test_documents/works.every-format.8.json @@ -1,117 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.352797Z", - "id": "cwpfpixj", - "document": { - "debug": { - "source": { - "id": "cwpfpixj", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.531681Z", + "id" : "cwpfpixj", + "document" : { + "debug" : { + "source" : { + "id" : "cwpfpixj", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "D1YQhdjF03" + "ontologyType" : "Work", + "value" : "D1YQhdjF03" }, - "version": 69, - "modifiedTime": "1978-04-30T17:23:35Z" + "version" : 69, + "modifiedTime" : "1978-04-30T17:23:35Z" }, - "mergedTime": "1978-04-30T17:23:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1978-04-30T17:23:35Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cwpfpixj", - "title": "title-f39tAr4kG6", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "cwpfpixj", + "title" : "title-f39tAr4kG6", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "D1YQhdjF03", - "type": "Identifier" + "value" : "D1YQhdjF03", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cwpfpixj", - "sourceIdentifier.value": "D1YQhdjF03", - "identifiers.value": ["D1YQhdjF03"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-f39tAr4kG6" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "cwpfpixj", + "sourceIdentifier.value" : "D1YQhdjF03", + "identifiers.value" : [ + "D1YQhdjF03" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-f39tAr4kG6" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["D1YQhdjF03"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "D1YQhdjF03" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.every-format.9.json b/common/search/src/test/resources/test_documents/works.every-format.9.json index 6805dd775..c195f29d1 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.9.json +++ b/common/search/src/test/resources/test_documents/works.every-format.9.json @@ -1,119 +1,188 @@ { - "description": "works with every format", - "createdAt": "2023-11-21T15:39:34.362927Z", - "id": "6visru7m", - "document": { - "debug": { - "source": { - "id": "6visru7m", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with every format", + "createdAt" : "2024-11-13T08:43:26.532035Z", + "id" : "6visru7m", + "document" : { + "debug" : { + "source" : { + "id" : "6visru7m", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "ifN5hzpvxV" + "ontologyType" : "Work", + "value" : "ifN5hzpvxV" }, - "version": 58, - "modifiedTime": "1993-10-03T02:48:28Z" + "version" : 58, + "modifiedTime" : "1993-10-03T02:48:28Z" }, - "mergedTime": "1993-10-03T02:48:28Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1993-10-03T02:48:28Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "6visru7m", - "title": "title-Eoau6TjOf0", - "alternativeTitles": [], - "workType": { - "id": "p", - "label": "Mixed materials", - "type": "Format" + "display" : { + "id" : "6visru7m", + "title" : "title-Eoau6TjOf0", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "p", + "label" : "Mixed materials", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "ifN5hzpvxV", - "type": "Identifier" + "value" : "ifN5hzpvxV", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "6visru7m", - "sourceIdentifier.value": "ifN5hzpvxV", - "identifiers.value": ["ifN5hzpvxV"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-Eoau6TjOf0" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "6visru7m", + "sourceIdentifier.value" : "ifN5hzpvxV", + "identifiers.value" : [ + "ifN5hzpvxV" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-Eoau6TjOf0" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"p\",\"label\":\"Mixed materials\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "p", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ifN5hzpvxV"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "p", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ifN5hzpvxV" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json index 3d6b2f020..ba5fec543 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json @@ -1,163 +1,239 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.343671Z", - "id": "i2iqani2", - "document": { - "debug": { - "source": { - "id": "i2iqani2", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.635345Z", + "id" : "e9alfxx5", + "document" : { + "debug" : { + "source" : { + "id" : "e9alfxx5", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "w5jYpuBxun" + "ontologyType" : "Work", + "value" : "I95Gazclr9" }, - "version": 36, - "modifiedTime": "1994-07-09T07:36:53Z" + "version" : 99, + "modifiedTime" : "2029-10-27T02:35:11Z" }, - "mergedTime": "1994-07-09T07:36:53Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2029-10-27T02:35:11Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "i2iqani2", - "title": "title-Um7p7NJFW4", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "e9alfxx5", + "title" : "title-bPGXaLqwYH", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "w5jYpuBxun", - "type": "Identifier" + "value" : "I95Gazclr9", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "wxjwbli9", - "identifiers": [ + "id" : "8tetlds3", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Gazclr9E9a", - "type": "Identifier" + "value" : "TJcj7uta7H", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/xc6.jpg/info.json", - "linkText": "Link text: 7GjbSjf9", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/sk7.jpg/info.json", + "credit" : "Credit line: VBr7VL", + "linkText" : "Link text: fab67TffQN", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "restricted", - "label": "Restricted", - "type": "AccessStatus" + "status" : { + "id" : "restricted", + "label" : "Restricted", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "i2iqani2", - "sourceIdentifier.value": "w5jYpuBxun", - "identifiers.value": ["w5jYpuBxun"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["wxjwbli9"], - "items.identifiers.value": ["Gazclr9E9a"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-Um7p7NJFW4" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "e9alfxx5", + "sourceIdentifier.value" : "I95Gazclr9", + "identifiers.value" : [ + "I95Gazclr9" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "8tetlds3" + ], + "items.identifiers.value" : [ + "TJcj7uta7H" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-bPGXaLqwYH" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["w5jYpuBxun"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["restricted"], - "items.id": ["wxjwbli9"], - "items.identifiers.value": ["Gazclr9E9a"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "I95Gazclr9" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "restricted" + ], + "items.id" : [ + "8tetlds3" + ], + "items.identifiers.value" : [ + "TJcj7uta7H" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json index 6dba1029a..194250b63 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json @@ -1,163 +1,239 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.344370Z", - "id": "lqwyh6sk", - "document": { - "debug": { - "source": { - "id": "lqwyh6sk", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.635802Z", + "id" : "xmya3fco", + "document" : { + "debug" : { + "source" : { + "id" : "xmya3fco", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "fxX5tbPGXa" + "ontologyType" : "Work", + "value" : "2KTE1hWM7i" }, - "version": 89, - "modifiedTime": "2025-11-25T23:47:59Z" + "version" : 3, + "modifiedTime" : "2013-12-02T22:04:38Z" }, - "mergedTime": "2025-11-25T23:47:59Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2013-12-02T22:04:38Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "lqwyh6sk", - "title": "title-PVBr7VLiwf", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "xmya3fco", + "title" : "title-y1hoMJJvcU", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "fxX5tbPGXa", - "type": "Identifier" + "value" : "2KTE1hWM7i", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "a7h42kte", - "identifiers": [ + "id" : "p5y6nhmj", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "hWM7iXmYa3", - "type": "Identifier" + "value" : "383Pmg46QE", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/b67.jpg/info.json", - "credit": "Credit line: ffQNH8tet", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/hxo.jpg/info.json", + "credit" : "Credit line: VFqtU49", + "linkText" : "Link text: vqxD7y5YI", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "restricted", - "label": "Restricted", - "type": "AccessStatus" + "status" : { + "id" : "restricted", + "label" : "Restricted", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "lqwyh6sk", - "sourceIdentifier.value": "fxX5tbPGXa", - "identifiers.value": ["fxX5tbPGXa"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["a7h42kte"], - "items.identifiers.value": ["hWM7iXmYa3"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-PVBr7VLiwf" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "xmya3fco", + "sourceIdentifier.value" : "2KTE1hWM7i", + "identifiers.value" : [ + "2KTE1hWM7i" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "p5y6nhmj" + ], + "items.identifiers.value" : [ + "383Pmg46QE" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-y1hoMJJvcU" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["fxX5tbPGXa"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["restricted"], - "items.id": ["a7h42kte"], - "items.identifiers.value": ["hWM7iXmYa3"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "2KTE1hWM7i" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "restricted" + ], + "items.id" : [ + "p5y6nhmj" + ], + "items.identifiers.value" : [ + "383Pmg46QE" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json index c42adb028..0639d94b6 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json @@ -1,163 +1,238 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.345820Z", - "id": "vcuqhxox", - "document": { - "debug": { - "source": { - "id": "vcuqhxox", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.636180Z", + "id" : "1pknkhek", + "document" : { + "debug" : { + "source" : { + "id" : "1pknkhek", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "coEy1hoMJJ" + "ontologyType" : "Work", + "value" : "eKWAvLy8mU" }, - "version": 42, - "modifiedTime": "1934-03-30T22:58:00Z" + "version" : 87, + "modifiedTime" : "1954-11-04T23:55:41Z" }, - "mergedTime": "1934-03-30T22:58:00Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1954-11-04T23:55:41Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vcuqhxox", - "title": "title-FqtU496lvq", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "1pknkhek", + "title" : "title-l7z2IaIyPh", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "coEy1hoMJJ", - "type": "Identifier" + "value" : "eKWAvLy8mU", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "qeaekwav", - "identifiers": [ + "id" : "ojhcs580", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "y8mU1pknKH", - "type": "Identifier" + "value" : "NPfAWzhVvX", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/D7y.jpg/info.json", - "credit": "Credit line: YIlP5y6", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/dmV.jpg/info.json", + "linkText" : "Link text: 9ffwz2O", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "closed", - "label": "Closed", - "type": "AccessStatus" + "status" : { + "id" : "closed", + "label" : "Closed", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vcuqhxox", - "sourceIdentifier.value": "coEy1hoMJJ", - "identifiers.value": ["coEy1hoMJJ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["qeaekwav"], - "items.identifiers.value": ["y8mU1pknKH"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-FqtU496lvq" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "1pknkhek", + "sourceIdentifier.value" : "eKWAvLy8mU", + "identifiers.value" : [ + "eKWAvLy8mU" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "ojhcs580" + ], + "items.identifiers.value" : [ + "NPfAWzhVvX" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-l7z2IaIyPh" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["coEy1hoMJJ"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["closed"], - "items.id": ["qeaekwav"], - "items.identifiers.value": ["y8mU1pknKH"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "eKWAvLy8mU" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "closed" + ], + "items.id" : [ + "ojhcs580" + ], + "items.identifiers.value" : [ + "NPfAWzhVvX" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json index 7a13d702b..9298f9ba1 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json @@ -1,171 +1,245 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.349835Z", - "id": "phodmv5g", - "document": { - "debug": { - "source": { - "id": "phodmv5g", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.636580Z", + "id" : "f1p8iujf", + "document" : { + "debug" : { + "source" : { + "id" : "f1p8iujf", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "kSl7z2IaIy" + "ontologyType" : "Work", + "value" : "3dCafwzrSa" }, - "version": 2, - "modifiedTime": "2040-01-22T01:35:50Z" + "version" : 96, + "modifiedTime" : "2028-04-10T13:33:03Z" }, - "mergedTime": "2040-01-22T01:35:50Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2028-04-10T13:33:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "phodmv5g", - "title": "title-M6hdH9AyS9", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "f1p8iujf", + "title" : "title-YmrG23dzV6", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "kSl7z2IaIy", - "type": "Identifier" + "value" : "3dCafwzrSa", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "dcafwzrs", - "identifiers": [ + "id" : "oz1fy94z", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "F1p8IUjfnY", - "type": "Identifier" + "value" : "rLthDeNIu1", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/fwz.jpg/info.json", - "linkText": "Link text: PfAWzhVvXA", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/XTq.jpg/info.json", + "linkText" : "Link text: nmb6il", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "open", - "label": "Open", - "type": "AccessStatus" + "status" : { + "id" : "open", + "label" : "Open", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "online", - "label": "Online", - "type": "Availability" + "id" : "online", + "label" : "Online", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "phodmv5g", - "sourceIdentifier.value": "kSl7z2IaIy", - "identifiers.value": ["kSl7z2IaIy"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["dcafwzrs"], - "items.identifiers.value": ["F1p8IUjfnY"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-M6hdH9AyS9" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "f1p8iujf", + "sourceIdentifier.value" : "3dCafwzrSa", + "identifiers.value" : [ + "3dCafwzrSa" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "oz1fy94z" + ], + "items.identifiers.value" : [ + "rLthDeNIu1" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-YmrG23dzV6" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["kSl7z2IaIy"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["open"], - "items.id": ["dcafwzrs"], - "items.identifiers.value": ["F1p8IUjfnY"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["online"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "3dCafwzrSa" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "open" + ], + "items.id" : [ + "oz1fy94z" + ], + "items.identifiers.value" : [ + "rLthDeNIu1" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "online" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json index efb7691a3..3fd7c837f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json @@ -1,171 +1,245 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.352123Z", - "id": "tq4mfefg", - "document": { - "debug": { - "source": { - "id": "tq4mfefg", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.636957Z", + "id" : "n2u7aru7", + "document" : { + "debug" : { + "source" : { + "id" : "n2u7aru7", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "rG23dzV6hX" + "ontologyType" : "Work", + "value" : "HrklHuS07i" }, - "version": 48, - "modifiedTime": "2012-04-21T19:28:19Z" + "version" : 73, + "modifiedTime" : "1979-09-22T19:35:19Z" }, - "mergedTime": "2012-04-21T19:28:19Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1979-09-22T19:35:19Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tq4mfefg", - "title": "title-Pdnmb6ilPO", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "n2u7aru7", + "title" : "title-CiTs5auwvX", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "rG23dzV6hX", - "type": "Identifier" + "value" : "HrklHuS07i", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "klhus07i", - "identifiers": [ + "id" : "9xyhqdqn", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "2u7aRU7LCi", - "type": "Identifier" + "value" : "XRANbEFIYK", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/1fY.jpg/info.json", - "linkText": "Link text: NIu1OH", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/SKp.jpg/info.json", + "linkText" : "Link text: X5AiO63s6", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "open-with-advisory", - "label": "Open with advisory", - "type": "AccessStatus" + "status" : { + "id" : "open-with-advisory", + "label" : "Open with advisory", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "online", - "label": "Online", - "type": "Availability" + "id" : "online", + "label" : "Online", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tq4mfefg", - "sourceIdentifier.value": "rG23dzV6hX", - "identifiers.value": ["rG23dzV6hX"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["klhus07i"], - "items.identifiers.value": ["2u7aRU7LCi"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-Pdnmb6ilPO" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "n2u7aru7", + "sourceIdentifier.value" : "HrklHuS07i", + "identifiers.value" : [ + "HrklHuS07i" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "9xyhqdqn" + ], + "items.identifiers.value" : [ + "XRANbEFIYK" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-CiTs5auwvX" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["rG23dzV6hX"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["open-with-advisory"], - "items.id": ["klhus07i"], - "items.identifiers.value": ["2u7aRU7LCi"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["online"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "HrklHuS07i" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "open-with-advisory" + ], + "items.id" : [ + "9xyhqdqn" + ], + "items.identifiers.value" : [ + "XRANbEFIYK" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "online" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json index ba54abf1a..17b963114 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json @@ -1,171 +1,245 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.355242Z", - "id": "phdnojlc", - "document": { - "debug": { - "source": { - "id": "phdnojlc", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.637339Z", + "id" : "8ezcyfql", + "document" : { + "debug" : { + "source" : { + "id" : "8ezcyfql", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "s5auwvXuSK" + "ontologyType" : "Work", + "value" : "uDZSkVVbac" }, - "version": 92, - "modifiedTime": "2032-11-02T13:47:49Z" + "version" : 71, + "modifiedTime" : "1955-12-31T01:30:20Z" }, - "mergedTime": "2032-11-02T13:47:49Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1955-12-31T01:30:20Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "phdnojlc", - "title": "title-kzJLX5AiO6", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "8ezcyfql", + "title" : "title-GTOMLJUBPs", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "s5auwvXuSK", - "type": "Identifier" + "value" : "uDZSkVVbac", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "udzskvvb", - "identifiers": [ + "id" : "rk57syon", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "c8ezCyfQlB", - "type": "Identifier" + "value" : "rNNX4MZClE", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/s66.jpg/info.json", - "linkText": "Link text: bEFIYK", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/vH8.jpg/info.json", + "linkText" : "Link text: h1czKSHpT0", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "licensed-resources", - "label": "Licensed resources", - "type": "AccessStatus" + "status" : { + "id" : "licensed-resources", + "label" : "Licensed resources", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "online", - "label": "Online", - "type": "Availability" + "id" : "online", + "label" : "Online", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "phdnojlc", - "sourceIdentifier.value": "s5auwvXuSK", - "identifiers.value": ["s5auwvXuSK"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["udzskvvb"], - "items.identifiers.value": ["c8ezCyfQlB"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-kzJLX5AiO6" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "8ezcyfql", + "sourceIdentifier.value" : "uDZSkVVbac", + "identifiers.value" : [ + "uDZSkVVbac" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "rk57syon" + ], + "items.identifiers.value" : [ + "rNNX4MZClE" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-GTOMLJUBPs" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["s5auwvXuSK"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["licensed-resources"], - "items.id": ["udzskvvb"], - "items.identifiers.value": ["c8ezCyfQlB"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["online"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "uDZSkVVbac" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "licensed-resources" + ], + "items.id" : [ + "rk57syon" + ], + "items.identifiers.value" : [ + "rNNX4MZClE" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "online" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json index 483a23a84..fb5bedb8b 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json @@ -1,163 +1,238 @@ { - "description": "examples for the access status tests", - "createdAt": "2023-11-21T15:39:35.372091Z", - "id": "vh87ts9v", - "document": { - "debug": { - "source": { - "id": "vh87ts9v", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the access status tests", + "createdAt" : "2024-11-13T08:43:26.637708Z", + "id" : "dulkq8ny", + "document" : { + "debug" : { + "source" : { + "id" : "dulkq8ny", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "TOMLJUBPsk" + "ontologyType" : "Work", + "value" : "HeUBhh45MM" }, - "version": 66, - "modifiedTime": "1979-11-26T18:18:50Z" + "version" : 16, + "modifiedTime" : "2044-10-23T23:53:45Z" }, - "mergedTime": "1979-11-26T18:18:50Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2044-10-23T23:53:45Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vh87ts9v", - "title": "title-AfYGNPFh1c", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "dulkq8ny", + "title" : "title-jzx3mO0u9h", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "TOMLJUBPsk", - "type": "Identifier" + "value" : "HeUBhh45MM", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "mzclelhe", - "identifiers": [ + "id" : "sfx1ndk3", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Bhh45MMdul", - "type": "Identifier" + "value" : "ONjKwKKAUF", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/KSH.jpg/info.json", - "credit": "Credit line: T0IRk57s", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/wtG.jpg/info.json", + "credit" : "Credit line: O1husne0", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "manual-request", - "label": "Manual request", - "type": "AccessMethod" + "method" : { + "id" : "manual-request", + "label" : "Manual request", + "type" : "AccessMethod" }, - "status": { - "id": "licensed-resources", - "label": "Licensed resources", - "type": "AccessStatus" + "status" : { + "id" : "licensed-resources", + "label" : "Licensed resources", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vh87ts9v", - "sourceIdentifier.value": "TOMLJUBPsk", - "identifiers.value": ["TOMLJUBPsk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["mzclelhe"], - "items.identifiers.value": ["Bhh45MMdul"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-AfYGNPFh1c" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "dulkq8ny", + "sourceIdentifier.value" : "HeUBhh45MM", + "identifiers.value" : [ + "HeUBhh45MM" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "sfx1ndk3" + ], + "items.identifiers.value" : [ + "ONjKwKKAUF" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-jzx3mO0u9h" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["TOMLJUBPsk"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["licensed-resources"], - "items.id": ["mzclelhe"], - "items.identifiers.value": ["Bhh45MMdul"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "HeUBhh45MM" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "licensed-resources" + ], + "items.id" : [ + "sfx1ndk3" + ], + "items.identifiers.value" : [ + "ONjKwKKAUF" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json index 0721fbb2a..2ee7e9c2d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.736346Z", - "id": "kbmotyqc", - "document": { - "debug": { - "source": { - "id": "kbmotyqc", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.570117Z", + "id" : "vu0ulwn0", + "document" : { + "debug" : { + "source" : { + "id" : "vu0ulwn0", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "vZCvYXWMl0" + "ontologyType" : "Work", + "value" : "MOpZRqzugp" }, - "version": 61, - "modifiedTime": "2014-03-15T15:15:55Z" + "version" : 58, + "modifiedTime" : "1999-06-22T21:21:08Z" }, - "mergedTime": "2014-03-15T15:15:55Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1999-06-22T21:21:08Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "kbmotyqc", - "title": "title-IXUuyd8hWM", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "vu0ulwn0", + "title" : "title-8F6gzFFn0M", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "vZCvYXWMl0", - "type": "Identifier" + "value" : "MOpZRqzugp", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kbmotyqc", - "sourceIdentifier.value": "vZCvYXWMl0", - "identifiers.value": ["vZCvYXWMl0"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-IXUuyd8hWM" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "vu0ulwn0", + "sourceIdentifier.value" : "MOpZRqzugp", + "identifiers.value" : [ + "MOpZRqzugp" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-8F6gzFFn0M" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["vZCvYXWMl0"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "MOpZRqzugp" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json index 978f422d1..c4c77bd8c 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.739055Z", - "id": "ulwn0n8f", - "document": { - "debug": { - "source": { - "id": "ulwn0n8f", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.570591Z", + "id" : "k9rmsgky", + "document" : { + "debug" : { + "source" : { + "id" : "k9rmsgky", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "ZRqzugpVU0" + "ontologyType" : "Work", + "value" : "Sw2fZgItN5" }, - "version": 59, - "modifiedTime": "1933-06-27T10:36:37Z" + "version" : 75, + "modifiedTime" : "1939-02-16T16:18:24Z" }, - "mergedTime": "1933-06-27T10:36:37Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1939-02-16T16:18:24Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ulwn0n8f", - "title": "title-gzFFn0MzMS", - "alternativeTitles": [], - "workType": { - "id": "q", - "label": "Digital Images", - "type": "Format" + "display" : { + "id" : "k9rmsgky", + "title" : "title-11WyiVFCED", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "q", + "label" : "Digital Images", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "ZRqzugpVU0", - "type": "Identifier" + "value" : "Sw2fZgItN5", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ulwn0n8f", - "sourceIdentifier.value": "ZRqzugpVU0", - "identifiers.value": ["ZRqzugpVU0"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-gzFFn0MzMS" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "k9rmsgky", + "sourceIdentifier.value" : "Sw2fZgItN5", + "identifiers.value" : [ + "Sw2fZgItN5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-11WyiVFCED" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"q\",\"label\":\"Digital Images\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "q", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["ZRqzugpVU0"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "q", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Sw2fZgItN5" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json index 41da4be54..099596f11 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.802218Z", - "id": "uoi8tp8u", - "document": { - "debug": { - "source": { - "id": "uoi8tp8u", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.574762Z", + "id" : "lusxgqii", + "document" : { + "debug" : { + "source" : { + "id" : "lusxgqii", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "Y14qUDXX1m" + "ontologyType" : "Work", + "value" : "SVR3x3Cael" }, - "version": 44, - "modifiedTime": "1966-02-08T17:51:28Z" + "version" : 38, + "modifiedTime" : "1998-04-06T11:45:48Z" }, - "mergedTime": "1966-02-08T17:51:28Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1998-04-06T11:45:48Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "uoi8tp8u", - "title": "title-RfKD3vr5oS", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "lusxgqii", + "title" : "title-3BP7HD59gW", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Y14qUDXX1m", - "type": "Identifier" + "value" : "SVR3x3Cael", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "uoi8tp8u", - "sourceIdentifier.value": "Y14qUDXX1m", - "identifiers.value": ["Y14qUDXX1m"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-RfKD3vr5oS" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "lusxgqii", + "sourceIdentifier.value" : "SVR3x3Cael", + "identifiers.value" : [ + "SVR3x3Cael" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-3BP7HD59gW" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["Y14qUDXX1m"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "SVR3x3Cael" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json index 8b8a95533..d2e86afb9 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.803299Z", - "id": "xgqiid3b", - "document": { - "debug": { - "source": { - "id": "xgqiid3b", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.575582Z", + "id" : "uwotqemj", + "document" : { + "debug" : { + "source" : { + "id" : "uwotqemj", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "3x3CaelluS" + "ontologyType" : "Work", + "value" : "w4lFJUZazq" }, - "version": 49, - "modifiedTime": "2024-03-26T00:53:12Z" + "version" : 90, + "modifiedTime" : "2017-05-26T17:27:26Z" }, - "mergedTime": "2024-03-26T00:53:12Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2017-05-26T17:27:26Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "xgqiid3b", - "title": "title-7HD59gW9tw", - "alternativeTitles": [], - "workType": { - "id": "g", - "label": "Videos", - "type": "Format" + "display" : { + "id" : "uwotqemj", + "title" : "title-yTPyW5z3uV", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "g", + "label" : "Videos", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "3x3CaelluS", - "type": "Identifier" + "value" : "w4lFJUZazq", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xgqiid3b", - "sourceIdentifier.value": "3x3CaelluS", - "identifiers.value": ["3x3CaelluS"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-7HD59gW9tw" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "uwotqemj", + "sourceIdentifier.value" : "w4lFJUZazq", + "identifiers.value" : [ + "w4lFJUZazq" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-yTPyW5z3uV" }, - "aggregatableValues": { - "workType": ["{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "g", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["3x3CaelluS"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "g", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "w4lFJUZazq" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json index e7044edf6..93134b4bc 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.803990Z", - "id": "tqemj6yt", - "document": { - "debug": { - "source": { - "id": "tqemj6yt", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.576430Z", + "id" : "tbkbsxzf", + "document" : { + "debug" : { + "source" : { + "id" : "tbkbsxzf", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "FJUZazquWo" + "ontologyType" : "Work", + "value" : "5HlMPZzhLJ" }, - "version": 82, - "modifiedTime": "1982-09-21T18:42:16Z" + "version" : 50, + "modifiedTime" : "2003-11-07T03:23:26Z" }, - "mergedTime": "1982-09-21T18:42:16Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2003-11-07T03:23:26Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tqemj6yt", - "title": "title-yW5z3uVBA5", - "alternativeTitles": [], - "workType": { - "id": "h", - "label": "Archives and manuscripts", - "type": "Format" + "display" : { + "id" : "tbkbsxzf", + "title" : "title-7HDIlUXQf0", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "h", + "label" : "Archives and manuscripts", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "FJUZazquWo", - "type": "Identifier" + "value" : "5HlMPZzhLJ", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tqemj6yt", - "sourceIdentifier.value": "FJUZazquWo", - "identifiers.value": ["FJUZazquWo"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-yW5z3uVBA5" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "tbkbsxzf", + "sourceIdentifier.value" : "5HlMPZzhLJ", + "identifiers.value" : [ + "5HlMPZzhLJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-7HDIlUXQf0" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"h\",\"label\":\"Archives and manuscripts\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "h", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["FJUZazquWo"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "h", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "5HlMPZzhLJ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json index bb19944bb..32fbb6883 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.818288Z", - "id": "bsxzfe7h", - "document": { - "debug": { - "source": { - "id": "bsxzfe7h", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.576975Z", + "id" : "qr2rdsof", + "document" : { + "debug" : { + "source" : { + "id" : "qr2rdsof", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "MPZzhLJtbk" + "ontologyType" : "Work", + "value" : "b5lYlQvQzS" }, - "version": 88, - "modifiedTime": "1998-08-02T02:39:28Z" + "version" : 25, + "modifiedTime" : "1934-10-12T18:01:51Z" }, - "mergedTime": "1998-08-02T02:39:28Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1934-10-12T18:01:51Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "bsxzfe7h", - "title": "title-IlUXQf0x4b", - "alternativeTitles": [], - "workType": { - "id": "n", - "label": "Film", - "type": "Format" + "display" : { + "id" : "qr2rdsof", + "title" : "title-PTXo35aec2", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "hdig", + "label" : "Born-digital archives", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "MPZzhLJtbk", - "type": "Identifier" + "value" : "b5lYlQvQzS", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "bsxzfe7h", - "sourceIdentifier.value": "MPZzhLJtbk", - "identifiers.value": ["MPZzhLJtbk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-IlUXQf0x4b" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "qr2rdsof", + "sourceIdentifier.value" : "b5lYlQvQzS", + "identifiers.value" : [ + "b5lYlQvQzS" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-PTXo35aec2" }, - "aggregatableValues": { - "workType": ["{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"hdig\",\"label\":\"Born-digital archives\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "n", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["MPZzhLJtbk"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "hdig", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "b5lYlQvQzS" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json index 5ff964607..068d3b9fc 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.820722Z", - "id": "rdsofxpt", - "document": { - "debug": { - "source": { - "id": "rdsofxpt", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.577496Z", + "id" : "5klfzrze", + "document" : { + "debug" : { + "source" : { + "id" : "5klfzrze", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "YlQvQzSQr2" + "ontologyType" : "Work", + "value" : "Iw5fNUyylf" }, - "version": 35, - "modifiedTime": "2033-03-18T16:57:24Z" + "version" : 52, + "modifiedTime" : "1983-11-07T09:48:39Z" }, - "mergedTime": "2033-03-18T16:57:24Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1983-11-07T09:48:39Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "rdsofxpt", - "title": "title-o35aec2IoI", - "alternativeTitles": [], - "workType": { - "id": "b", - "label": "Manuscripts", - "type": "Format" + "display" : { + "id" : "5klfzrze", + "title" : "title-XXZiS5MlN0", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "n", + "label" : "Film", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "YlQvQzSQr2", - "type": "Identifier" + "value" : "Iw5fNUyylf", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "rdsofxpt", - "sourceIdentifier.value": "YlQvQzSQr2", - "identifiers.value": ["YlQvQzSQr2"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-o35aec2IoI" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5klfzrze", + "sourceIdentifier.value" : "Iw5fNUyylf", + "identifiers.value" : [ + "Iw5fNUyylf" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-XXZiS5MlN0" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "b", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["YlQvQzSQr2"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "n", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Iw5fNUyylf" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json index f15dcca74..cdfe90284 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.822119Z", - "id": "fzrzebxx", - "document": { - "debug": { - "source": { - "id": "fzrzebxx", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.578031Z", + "id" : "lwpiautl", + "document" : { + "debug" : { + "source" : { + "id" : "lwpiautl", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "fNUyylf5KL" + "ontologyType" : "Work", + "value" : "2tqCcLh1PJ" }, - "version": 100, - "modifiedTime": "1939-09-12T19:57:56Z" + "version" : 33, + "modifiedTime" : "2049-05-05T22:23:19Z" }, - "mergedTime": "1939-09-12T19:57:56Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2049-05-05T22:23:19Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "fzrzebxx", - "title": "title-iS5MlN0hQ2", - "alternativeTitles": [], - "workType": { - "id": "c", - "label": "Music", - "type": "Format" + "display" : { + "id" : "lwpiautl", + "title" : "title-kWyW6CgVzw", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "b", + "label" : "Manuscripts", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "fNUyylf5KL", - "type": "Identifier" + "value" : "2tqCcLh1PJ", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "fzrzebxx", - "sourceIdentifier.value": "fNUyylf5KL", - "identifiers.value": ["fNUyylf5KL"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-iS5MlN0hQ2" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "lwpiautl", + "sourceIdentifier.value" : "2tqCcLh1PJ", + "identifiers.value" : [ + "2tqCcLh1PJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-kWyW6CgVzw" }, - "aggregatableValues": { - "workType": ["{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "c", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["fNUyylf5KL"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "b", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "2tqCcLh1PJ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json index 660a9e551..5909d44c3 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.822685Z", - "id": "iautlnkw", - "document": { - "debug": { - "source": { - "id": "iautlnkw", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.578486Z", + "id" : "ior3tm3c", + "document" : { + "debug" : { + "source" : { + "id" : "ior3tm3c", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "CcLh1PJlWp" + "ontologyType" : "Work", + "value" : "FndKxMxs7k" }, - "version": 42, - "modifiedTime": "1945-03-21T21:20:18Z" + "version" : 73, + "modifiedTime" : "1966-09-05T20:54:00Z" }, - "mergedTime": "1945-03-21T21:20:18Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1966-09-05T20:54:00Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "iautlnkw", - "title": "title-W6CgVzwIJF", - "alternativeTitles": [], - "workType": { - "id": "u", - "label": "Standing order", - "type": "Format" + "display" : { + "id" : "ior3tm3c", + "title" : "title-Oqp5RA4f5g", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "c", + "label" : "Music", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "CcLh1PJlWp", - "type": "Identifier" + "value" : "FndKxMxs7k", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "iautlnkw", - "sourceIdentifier.value": "CcLh1PJlWp", - "identifiers.value": ["CcLh1PJlWp"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-W6CgVzwIJF" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ior3tm3c", + "sourceIdentifier.value" : "FndKxMxs7k", + "identifiers.value" : [ + "FndKxMxs7k" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-Oqp5RA4f5g" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "u", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["CcLh1PJlWp"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "c", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "FndKxMxs7k" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json index 9e13e666e..da6f38e1d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.823194Z", - "id": "3tm3cnoq", - "document": { - "debug": { - "source": { - "id": "3tm3cnoq", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.578921Z", + "id" : "bpisihnt", + "document" : { + "debug" : { + "source" : { + "id" : "bpisihnt", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "KxMxs7kIOR" + "ontologyType" : "Work", + "value" : "IptlxE0qlB" }, - "version": 74, - "modifiedTime": "2019-08-09T21:38:32Z" + "version" : 96, + "modifiedTime" : "1998-11-30T20:57:58Z" }, - "mergedTime": "2019-08-09T21:38:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1998-11-30T20:57:58Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "3tm3cnoq", - "title": "title-5RA4f5gWVI", - "alternativeTitles": [], - "workType": { - "id": "z", - "label": "Web sites", - "type": "Format" + "display" : { + "id" : "bpisihnt", + "title" : "title-JBs3eSemcG", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "u", + "label" : "Standing order", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "KxMxs7kIOR", - "type": "Identifier" + "value" : "IptlxE0qlB", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "9SceRNaTEl", - "concepts": [ + "label" : "fIbfVPkqaf", + "concepts" : [ { - "label": "ZtfG4qEc4MTvdPA", - "type": "Concept" + "label" : "Pgpz7am59I9Cwkj", + "type" : "Concept" }, { - "label": "cgpfIbfVPkqafPg", - "type": "Concept" + "label" : "zoIhNdLDgGiVW1m", + "type" : "Concept" }, { - "label": "pz7am59I9Cwkjzo", - "type": "Concept" + "label" : "Q40pgbiIgGzgYBC", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "3tm3cnoq", - "sourceIdentifier.value": "KxMxs7kIOR", - "identifiers.value": ["KxMxs7kIOR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "ZtfG4qEc4MTvdPA", - "cgpfIbfVPkqafPg", - "pz7am59I9Cwkjzo" - ], - "title": "title-5RA4f5gWVI" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "bpisihnt", + "sourceIdentifier.value" : "IptlxE0qlB", + "identifiers.value" : [ + "IptlxE0qlB" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "Pgpz7am59I9Cwkj", + "zoIhNdLDgGiVW1m", + "Q40pgbiIgGzgYBC" + ], + "title" : "title-JBs3eSemcG" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"9SceRNaTEl\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "z", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["9SceRNaTEl"], - "contributors.agent.label": [], - "identifiers.value": ["KxMxs7kIOR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "u", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "fIbfVPkqaf" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "IptlxE0qlB" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json index bfa1bae38..51920d74e 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.823687Z", - "id": "sihntejb", - "document": { - "debug": { - "source": { - "id": "sihntejb", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.579361Z", + "id" : "gms4hdjm", + "document" : { + "debug" : { + "source" : { + "id" : "gms4hdjm", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "lxE0qlBbPi" + "ontologyType" : "Work", + "value" : "Xd87ZYKrzx" }, - "version": 14, - "modifiedTime": "1968-01-10T17:53:21Z" + "version" : 78, + "modifiedTime" : "2057-03-30T08:52:31Z" }, - "mergedTime": "1968-01-10T17:53:21Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2057-03-30T08:52:31Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "sihntejb", - "title": "title-3eSemcGNQX", - "alternativeTitles": [], - "workType": { - "id": "v", - "label": "E-books", - "type": "Format" + "display" : { + "id" : "gms4hdjm", + "title" : "title-ToBweq2UFK", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "z", + "label" : "Web sites", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "lxE0qlBbPi", - "type": "Identifier" + "value" : "Xd87ZYKrzx", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "IhNdLDgGiV", - "concepts": [ + "label" : "hQnFei9OwD", + "concepts" : [ { - "label": "W1mQ40pgbiIgGzg", - "type": "Concept" + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" }, { - "label": "YBChQnFei9OwDHm", - "type": "Concept" + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" }, { - "label": "XSsBa8UqTG3GuW0", - "type": "Concept" + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "sihntejb", - "sourceIdentifier.value": "lxE0qlBbPi", - "identifiers.value": ["lxE0qlBbPi"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "W1mQ40pgbiIgGzg", - "YBChQnFei9OwDHm", - "XSsBa8UqTG3GuW0" - ], - "title": "title-3eSemcGNQX" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "gms4hdjm", + "sourceIdentifier.value" : "Xd87ZYKrzx", + "identifiers.value" : [ + "Xd87ZYKrzx" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-ToBweq2UFK" }, - "aggregatableValues": { - "workType": ["{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"IhNdLDgGiV\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "v", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["IhNdLDgGiV"], - "contributors.agent.label": [], - "identifiers.value": ["lxE0qlBbPi"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "z", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Xd87ZYKrzx" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json index c4ff475ab..54c7dbf65 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.824171Z", - "id": "4hdjmnto", - "document": { - "debug": { - "source": { - "id": "4hdjmnto", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.579805Z", + "id" : "kw3kldau", + "document" : { + "debug" : { + "source" : { + "id" : "kw3kldau", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "7ZYKrzxgMS" + "ontologyType" : "Work", + "value" : "lzYfNgtG1S" }, - "version": 70, - "modifiedTime": "1970-06-23T06:21:51Z" + "version" : 8, + "modifiedTime" : "1959-09-06T22:36:54Z" }, - "mergedTime": "1970-06-23T06:21:51Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1959-09-06T22:36:54Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "4hdjmnto", - "title": "title-weq2UFKJPl", - "alternativeTitles": [], - "workType": { - "id": "s", - "label": "E-sound", - "type": "Format" + "display" : { + "id" : "kw3kldau", + "title" : "title-4GKNsXvX3N", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "v", + "label" : "E-books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "7ZYKrzxgMS", - "type": "Identifier" + "value" : "lzYfNgtG1S", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "IhNdLDgGiV", - "concepts": [ + "label" : "hQnFei9OwD", + "concepts" : [ { - "label": "W1mQ40pgbiIgGzg", - "type": "Concept" + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" }, { - "label": "YBChQnFei9OwDHm", - "type": "Concept" + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" }, { - "label": "XSsBa8UqTG3GuW0", - "type": "Concept" + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "4hdjmnto", - "sourceIdentifier.value": "7ZYKrzxgMS", - "identifiers.value": ["7ZYKrzxgMS"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "W1mQ40pgbiIgGzg", - "YBChQnFei9OwDHm", - "XSsBa8UqTG3GuW0" - ], - "title": "title-weq2UFKJPl" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "kw3kldau", + "sourceIdentifier.value" : "lzYfNgtG1S", + "identifiers.value" : [ + "lzYfNgtG1S" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-4GKNsXvX3N" }, - "aggregatableValues": { - "workType": ["{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"IhNdLDgGiV\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "s", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["IhNdLDgGiV"], - "contributors.agent.label": [], - "identifiers.value": ["7ZYKrzxgMS"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "v", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "lzYfNgtG1S" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json index 1892a675d..8c76bc796 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.742326Z", - "id": "msgkyj11", - "document": { - "debug": { - "source": { - "id": "msgkyj11", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.571063Z", + "id" : "zh75axbz", + "document" : { + "debug" : { + "source" : { + "id" : "zh75axbz", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "fZgItN5K9R" + "ontologyType" : "Work", + "value" : "4ElQJncU8p" }, - "version": 9, - "modifiedTime": "2025-06-19T20:45:06Z" + "version" : 97, + "modifiedTime" : "1962-06-27T00:05:10Z" }, - "mergedTime": "2025-06-19T20:45:06Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1962-06-27T00:05:10Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "msgkyj11", - "title": "title-yiVFCEDYI4", - "alternativeTitles": [], - "workType": { - "id": "l", - "label": "Ephemera", - "type": "Format" + "display" : { + "id" : "zh75axbz", + "title" : "title-v3a33KTr4g", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "l", + "label" : "Ephemera", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "fZgItN5K9R", - "type": "Identifier" + "value" : "4ElQJncU8p", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "msgkyj11", - "sourceIdentifier.value": "fZgItN5K9R", - "identifiers.value": ["fZgItN5K9R"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-yiVFCEDYI4" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "zh75axbz", + "sourceIdentifier.value" : "4ElQJncU8p", + "identifiers.value" : [ + "4ElQJncU8p" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-v3a33KTr4g" }, - "aggregatableValues": { - "workType": ["{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "l", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["fZgItN5K9R"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "l", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "4ElQJncU8p" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json index 85770eaf3..a09f6f4a4 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.828116Z", - "id": "kldauk4g", - "document": { - "debug": { - "source": { - "id": "kldauk4g", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.580295Z", + "id" : "lmxtr1wn", + "document" : { + "debug" : { + "source" : { + "id" : "lmxtr1wn", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "fNgtG1SKw3" + "ontologyType" : "Work", + "value" : "IXCFVccBcF" }, - "version": 62, - "modifiedTime": "2064-03-27T14:42:18Z" + "version" : 47, + "modifiedTime" : "2040-03-06T15:16:33Z" }, - "mergedTime": "2064-03-27T14:42:18Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2040-03-06T15:16:33Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "kldauk4g", - "title": "title-NsXvX3NJfI", - "alternativeTitles": [], - "workType": { - "id": "j", - "label": "E-journals", - "type": "Format" + "display" : { + "id" : "lmxtr1wn", + "title" : "title-mlLNPr0YHU", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "s", + "label" : "E-sound", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "fNgtG1SKw3", - "type": "Identifier" + "value" : "IXCFVccBcF", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "IhNdLDgGiV", - "concepts": [ + "label" : "hQnFei9OwD", + "concepts" : [ { - "label": "W1mQ40pgbiIgGzg", - "type": "Concept" + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" }, { - "label": "YBChQnFei9OwDHm", - "type": "Concept" + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" }, { - "label": "XSsBa8UqTG3GuW0", - "type": "Concept" + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kldauk4g", - "sourceIdentifier.value": "fNgtG1SKw3", - "identifiers.value": ["fNgtG1SKw3"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "W1mQ40pgbiIgGzg", - "YBChQnFei9OwDHm", - "XSsBa8UqTG3GuW0" - ], - "title": "title-NsXvX3NJfI" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "lmxtr1wn", + "sourceIdentifier.value" : "IXCFVccBcF", + "identifiers.value" : [ + "IXCFVccBcF" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-mlLNPr0YHU" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"IhNdLDgGiV\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "j", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["IhNdLDgGiV"], - "contributors.agent.label": [], - "identifiers.value": ["fNgtG1SKw3"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "s", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "IXCFVccBcF" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json index 44f0353b1..943950a93 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.836907Z", - "id": "tr1wn4ml", - "document": { - "debug": { - "source": { - "id": "tr1wn4ml", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.580736Z", + "id" : "exjvuylz", + "document" : { + "debug" : { + "source" : { + "id" : "exjvuylz", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "FVccBcFLmx" + "ontologyType" : "Work", + "value" : "7V2pOSQnJO" }, - "version": 38, - "modifiedTime": "1949-02-04T09:29:35Z" + "version" : 50, + "modifiedTime" : "1971-07-30T21:22:12Z" }, - "mergedTime": "1949-02-04T09:29:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-07-30T21:22:12Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tr1wn4ml", - "title": "title-NPr0YHU0g7", - "alternativeTitles": [], - "workType": { - "id": "f", - "label": "E-videos", - "type": "Format" + "display" : { + "id" : "exjvuylz", + "title" : "title-BDWIViYo3q", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "j", + "label" : "E-journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "FVccBcFLmx", - "type": "Identifier" + "value" : "7V2pOSQnJO", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "IhNdLDgGiV", - "concepts": [ + "label" : "hQnFei9OwD", + "concepts" : [ { - "label": "W1mQ40pgbiIgGzg", - "type": "Concept" + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" }, { - "label": "YBChQnFei9OwDHm", - "type": "Concept" + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" }, { - "label": "XSsBa8UqTG3GuW0", - "type": "Concept" + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tr1wn4ml", - "sourceIdentifier.value": "FVccBcFLmx", - "identifiers.value": ["FVccBcFLmx"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "W1mQ40pgbiIgGzg", - "YBChQnFei9OwDHm", - "XSsBa8UqTG3GuW0" - ], - "title": "title-NPr0YHU0g7" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "exjvuylz", + "sourceIdentifier.value" : "7V2pOSQnJO", + "identifiers.value" : [ + "7V2pOSQnJO" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-BDWIViYo3q" }, - "aggregatableValues": { - "workType": ["{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"IhNdLDgGiV\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "f", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["IhNdLDgGiV"], - "contributors.agent.label": [], - "identifiers.value": ["FVccBcFLmx"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "j", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "7V2pOSQnJO" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json index 63e93fb17..e10d0caa5 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.837730Z", - "id": "vuylz3bd", - "document": { - "debug": { - "source": { - "id": "vuylz3bd", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.581174Z", + "id" : "fnqpflgg", + "document" : { + "debug" : { + "source" : { + "id" : "fnqpflgg", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "pOSQnJOeXj" + "ontologyType" : "Work", + "value" : "J0y4QwQTlr" }, - "version": 13, - "modifiedTime": "1943-07-01T12:05:25Z" + "version" : 57, + "modifiedTime" : "1967-06-20T04:44:31Z" }, - "mergedTime": "1943-07-01T12:05:25Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1967-06-20T04:44:31Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vuylz3bd", - "title": "title-IViYo3qvsJ", - "alternativeTitles": [], - "workType": { - "id": "x", - "label": "Manuscripts", - "type": "Format" + "display" : { + "id" : "fnqpflgg", + "title" : "title-RAV0ZsJywt", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "f", + "label" : "E-videos", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "pOSQnJOeXj", - "type": "Identifier" + "value" : "J0y4QwQTlr", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "IhNdLDgGiV", - "concepts": [ + "label" : "hQnFei9OwD", + "concepts" : [ { - "label": "W1mQ40pgbiIgGzg", - "type": "Concept" + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" }, { - "label": "YBChQnFei9OwDHm", - "type": "Concept" + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" }, { - "label": "XSsBa8UqTG3GuW0", - "type": "Concept" + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vuylz3bd", - "sourceIdentifier.value": "pOSQnJOeXj", - "identifiers.value": ["pOSQnJOeXj"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "W1mQ40pgbiIgGzg", - "YBChQnFei9OwDHm", - "XSsBa8UqTG3GuW0" - ], - "title": "title-IViYo3qvsJ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "fnqpflgg", + "sourceIdentifier.value" : "J0y4QwQTlr", + "identifiers.value" : [ + "J0y4QwQTlr" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-RAV0ZsJywt" }, - "aggregatableValues": { - "workType": [ - "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" - ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"IhNdLDgGiV\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "x", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["IhNdLDgGiV"], - "contributors.agent.label": [], - "identifiers.value": ["pOSQnJOeXj"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "f", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "J0y4QwQTlr" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json new file mode 100644 index 000000000..4a89a74a6 --- /dev/null +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json @@ -0,0 +1,211 @@ +{ + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.581599Z", + "id" : "y6iujg4j", + "document" : { + "debug" : { + "source" : { + "id" : "y6iujg4j", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" + }, + "ontologyType" : "Work", + "value" : "xGjZEnp6i2" + }, + "version" : 42, + "modifiedTime" : "2052-01-06T08:18:52Z" + }, + "mergedTime" : "2052-01-06T08:18:52Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] + }, + "display" : { + "id" : "y6iujg4j", + "title" : "title-CRDZnkaHR8", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "x", + "label" : "Manuscripts", + "type" : "Format" + }, + "contributors" : [ + ], + "identifiers" : [ + { + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" + }, + "value" : "xGjZEnp6i2", + "type" : "Identifier" + } + ], + "subjects" : [ + { + "label" : "hQnFei9OwD", + "concepts" : [ + { + "label" : "HmXSsBa8UqTG3Gu", + "type" : "Concept" + }, + { + "label" : "W07LA7wtXxMtg7d", + "type" : "Concept" + }, + { + "label" : "koPI8hxmCeKjABF", + "type" : "Concept" + } + ], + "type" : "Subject" + } + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" + }, + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "y6iujg4j", + "sourceIdentifier.value" : "xGjZEnp6i2", + "identifiers.value" : [ + "xGjZEnp6i2" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "HmXSsBa8UqTG3Gu", + "W07LA7wtXxMtg7d", + "koPI8hxmCeKjABF" + ], + "title" : "title-CRDZnkaHR8" + }, + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] + }, + "filterableValues" : { + "format.id" : "x", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "hQnFei9OwD" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "xGjZEnp6i2" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] + }, + "type" : "Visible" + } +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json index 6e4c4e55f..6832a7b1d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.744309Z", - "id": "5axbzov3", - "document": { - "debug": { - "source": { - "id": "5axbzov3", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.571573Z", + "id" : "z92kvukz", + "document" : { + "debug" : { + "source" : { + "id" : "z92kvukz", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "QJncU8pZH7" + "ontologyType" : "Work", + "value" : "8YItYtyWP3" }, - "version": 53, - "modifiedTime": "1958-04-28T22:37:25Z" + "version" : 56, + "modifiedTime" : "2024-03-02T14:57:12Z" }, - "mergedTime": "1958-04-28T22:37:25Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2024-03-02T14:57:12Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "5axbzov3", - "title": "title-33KTr4gSW8", - "alternativeTitles": [], - "workType": { - "id": "e", - "label": "Maps", - "type": "Format" + "display" : { + "id" : "z92kvukz", + "title" : "title-4ht9Z95L7c", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "e", + "label" : "Maps", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "QJncU8pZH7", - "type": "Identifier" + "value" : "8YItYtyWP3", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "5axbzov3", - "sourceIdentifier.value": "QJncU8pZH7", - "identifiers.value": ["QJncU8pZH7"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-33KTr4gSW8" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "z92kvukz", + "sourceIdentifier.value" : "8YItYtyWP3", + "identifiers.value" : [ + "8YItYtyWP3" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-4ht9Z95L7c" }, - "aggregatableValues": { - "workType": ["{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "e", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["QJncU8pZH7"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "e", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "8YItYtyWP3" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json index 3a669c6f4..61dc96d6c 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.745008Z", - "id": "kvukzd4h", - "document": { - "debug": { - "source": { - "id": "kvukzd4h", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.572042Z", + "id" : "m9cvkukq", + "document" : { + "debug" : { + "source" : { + "id" : "m9cvkukq", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "tYtyWP3z92" + "ontologyType" : "Work", + "value" : "66BwUadwA2" }, - "version": 89, - "modifiedTime": "1934-09-28T19:42:39Z" + "version" : 1, + "modifiedTime" : "1938-04-20T22:56:50Z" }, - "mergedTime": "1934-09-28T19:42:39Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1938-04-20T22:56:50Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "kvukzd4h", - "title": "title-9Z95L7cLo6", - "alternativeTitles": [], - "workType": { - "id": "k", - "label": "Pictures", - "type": "Format" + "display" : { + "id" : "m9cvkukq", + "title" : "title-ogxZlpWaXi", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "k", + "label" : "Pictures", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "tYtyWP3z92", - "type": "Identifier" + "value" : "66BwUadwA2", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "kvukzd4h", - "sourceIdentifier.value": "tYtyWP3z92", - "identifiers.value": ["tYtyWP3z92"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-9Z95L7cLo6" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "m9cvkukq", + "sourceIdentifier.value" : "66BwUadwA2", + "identifiers.value" : [ + "66BwUadwA2" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-ogxZlpWaXi" }, - "aggregatableValues": { - "workType": ["{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "k", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["tYtyWP3z92"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "k", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "66BwUadwA2" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json index da3856bd2..fe2c80a7a 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.749310Z", - "id": "vkukqiog", - "document": { - "debug": { - "source": { - "id": "vkukqiog", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.572515Z", + "id" : "n4dq7ypg", + "document" : { + "debug" : { + "source" : { + "id" : "n4dq7ypg", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "wUadwA2M9C" + "ontologyType" : "Work", + "value" : "dBoRzqlD5L" }, - "version": 54, - "modifiedTime": "1942-01-27T06:45:07Z" + "version" : 37, + "modifiedTime" : "1962-10-07T16:30:13Z" }, - "mergedTime": "1942-01-27T06:45:07Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1962-10-07T16:30:13Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vkukqiog", - "title": "title-ZlpWaXi4Yd", - "alternativeTitles": [], - "workType": { - "id": "w", - "label": "Student dissertations", - "type": "Format" + "display" : { + "id" : "n4dq7ypg", + "title" : "title-B2SlRRldG9", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "w", + "label" : "Student dissertations", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "wUadwA2M9C", - "type": "Identifier" + "value" : "dBoRzqlD5L", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "y0B0TSmDGU", - "concepts": [ + "label" : "6rJpSUKd2d", + "concepts" : [ { - "label": "bHlXq1fwO98EpYD", - "type": "Concept" + "label" : "biOiRlog5DCYVH5", + "type" : "Concept" }, { - "label": "0Ex6rJpSUKd2dbi", - "type": "Concept" + "label" : "TP1tcWDr9iToVJb", + "type" : "Concept" }, { - "label": "OiRlog5DCYVH5TP", - "type": "Concept" + "label" : "p9ESZHkohLBqVqY", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vkukqiog", - "sourceIdentifier.value": "wUadwA2M9C", - "identifiers.value": ["wUadwA2M9C"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "bHlXq1fwO98EpYD", - "0Ex6rJpSUKd2dbi", - "OiRlog5DCYVH5TP" - ], - "title": "title-ZlpWaXi4Yd" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "n4dq7ypg", + "sourceIdentifier.value" : "dBoRzqlD5L", + "identifiers.value" : [ + "dBoRzqlD5L" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "biOiRlog5DCYVH5", + "TP1tcWDr9iToVJb", + "p9ESZHkohLBqVqY" + ], + "title" : "title-B2SlRRldG9" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"w\",\"label\":\"Student dissertations\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"y0B0TSmDGU\",\"concepts\":[],\"type\":\"Subject\"}" + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "w", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["y0B0TSmDGU"], - "contributors.agent.label": [], - "identifiers.value": ["wUadwA2M9C"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "w", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "6rJpSUKd2d" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "dBoRzqlD5L" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json index 59d317ec6..415702833 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.751943Z", - "id": "q7ypgqb2", - "document": { - "debug": { - "source": { - "id": "q7ypgqb2", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.572946Z", + "id" : "4cicdqpx", + "document" : { + "debug" : { + "source" : { + "id" : "4cicdqpx", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "RzqlD5LN4d" + "ontologyType" : "Work", + "value" : "FU0kYbman5" }, - "version": 75, - "modifiedTime": "2012-02-21T12:08:18Z" + "version" : 16, + "modifiedTime" : "2048-11-03T20:54:50Z" }, - "mergedTime": "2012-02-21T12:08:18Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2048-11-03T20:54:50Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "q7ypgqb2", - "title": "title-lRRldG9e4F", - "alternativeTitles": [], - "workType": { - "id": "r", - "label": "3-D Objects", - "type": "Format" + "display" : { + "id" : "4cicdqpx", + "title" : "title-AZqajt54m4", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "r", + "label" : "3-D Objects", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "RzqlD5LN4d", - "type": "Identifier" + "value" : "FU0kYbman5", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "q7ypgqb2", - "sourceIdentifier.value": "RzqlD5LN4d", - "identifiers.value": ["RzqlD5LN4d"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-lRRldG9e4F" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "4cicdqpx", + "sourceIdentifier.value" : "FU0kYbman5", + "identifiers.value" : [ + "FU0kYbman5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-AZqajt54m4" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"r\",\"label\":\"3-D Objects\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "r", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["RzqlD5LN4d"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "r", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "FU0kYbman5" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json index 1205a4376..2e2a9da67 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.754297Z", - "id": "cdqpxiaz", - "document": { - "debug": { - "source": { - "id": "cdqpxiaz", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.573376Z", + "id" : "p7zbfaov", + "document" : { + "debug" : { + "source" : { + "id" : "p7zbfaov", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "kYbman54cI" + "ontologyType" : "Work", + "value" : "pYub9JXopb" }, - "version": 11, - "modifiedTime": "1975-05-07T19:46:33Z" + "version" : 85, + "modifiedTime" : "1944-12-17T09:08:30Z" }, - "mergedTime": "1975-05-07T19:46:33Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1944-12-17T09:08:30Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cdqpxiaz", - "title": "title-ajt54m4dWp", - "alternativeTitles": [], - "workType": { - "id": "m", - "label": "CD-Roms", - "type": "Format" + "display" : { + "id" : "p7zbfaov", + "title" : "title-IZx0zgHgbz", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "m", + "label" : "CD-Roms", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "kYbman54cI", - "type": "Identifier" + "value" : "pYub9JXopb", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cdqpxiaz", - "sourceIdentifier.value": "kYbman54cI", - "identifiers.value": ["kYbman54cI"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-ajt54m4dWp" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "p7zbfaov", + "sourceIdentifier.value" : "pYub9JXopb", + "identifiers.value" : [ + "pYub9JXopb" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-IZx0zgHgbz" }, - "aggregatableValues": { - "workType": ["{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "m", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["kYbman54cI"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "m", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "pYub9JXopb" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json index f098c89f3..5435df135 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json @@ -1,142 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.781507Z", - "id": "bfaov6iz", - "document": { - "debug": { - "source": { - "id": "bfaov6iz", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.573820Z", + "id" : "nuuq84cr", + "document" : { + "debug" : { + "source" : { + "id" : "nuuq84cr", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "b9JXopbp7Z" + "ontologyType" : "Work", + "value" : "IzLCv3sMYa" }, - "version": 96, - "modifiedTime": "2060-01-23T11:20:20Z" + "version" : 39, + "modifiedTime" : "1954-05-22T01:33:53Z" }, - "mergedTime": "2060-01-23T11:20:20Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1954-05-22T01:33:53Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "bfaov6iz", - "title": "title-0zgHgbzqMI", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "nuuq84cr", + "title" : "title-J5Ue8m3HVu", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "b9JXopbp7Z", - "type": "Identifier" + "value" : "IzLCv3sMYa", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "bfaov6iz", - "sourceIdentifier.value": "b9JXopbp7Z", - "identifiers.value": ["b9JXopbp7Z"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-0zgHgbzqMI" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "nuuq84cr", + "sourceIdentifier.value" : "IzLCv3sMYa", + "identifiers.value" : [ + "IzLCv3sMYa" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-J5Ue8m3HVu" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" - ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["b9JXopbp7Z"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "IzLCv3sMYa" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json index 3b7f7870c..988c0a726 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json @@ -1,144 +1,211 @@ { - "description": "examples for the aggregation-with-filters tests", - "createdAt": "2023-11-21T15:39:34.799311Z", - "id": "q84crgj5", - "document": { - "debug": { - "source": { - "id": "q84crgj5", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the aggregation-with-filters tests", + "createdAt" : "2024-11-13T08:43:26.574285Z", + "id" : "x1muoi8t", + "document" : { + "debug" : { + "source" : { + "id" : "x1muoi8t", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Cv3sMYaNuU" + "ontologyType" : "Work", + "value" : "s4RY14qUDX" }, - "version": 33, - "modifiedTime": "2034-10-22T02:22:22Z" + "version" : 10, + "modifiedTime" : "2033-02-03T15:52:28Z" }, - "mergedTime": "2034-10-22T02:22:22Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2033-02-03T15:52:28Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "q84crgj5", - "title": "title-e8m3HVuers", - "alternativeTitles": [], - "workType": { - "id": "p", - "label": "Mixed materials", - "type": "Format" + "display" : { + "id" : "x1muoi8t", + "title" : "title-8uFRfKD3vr", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "p", + "label" : "Mixed materials", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Cv3sMYaNuU", - "type": "Identifier" + "value" : "s4RY14qUDX", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "1tcWDr9iTo", - "concepts": [ + "label" : "S4hioTvwQl", + "concepts" : [ { - "label": "VJbp9ESZHkohLBq", - "type": "Concept" + "label" : "eJkqVbD7mxTT1Dn", + "type" : "Concept" }, { - "label": "VqYS4hioTvwQleJ", - "type": "Concept" + "label" : "ad9SceRNaTElZtf", + "type" : "Concept" }, { - "label": "kqVbD7mxTT1Dnad", - "type": "Concept" + "label" : "G4qEc4MTvdPAcgp", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "q84crgj5", - "sourceIdentifier.value": "Cv3sMYaNuU", - "identifiers.value": ["Cv3sMYaNuU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "VJbp9ESZHkohLBq", - "VqYS4hioTvwQleJ", - "kqVbD7mxTT1Dnad" - ], - "title": "title-e8m3HVuers" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "x1muoi8t", + "sourceIdentifier.value" : "s4RY14qUDX", + "identifiers.value" : [ + "s4RY14qUDX" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "eJkqVbD7mxTT1Dn", + "ad9SceRNaTElZtf", + "G4qEc4MTvdPAcgp" + ], + "title" : "title-8uFRfKD3vr" }, - "aggregatableValues": { - "workType": [ + "aggregatableValues" : { + "workType" : [ "{\"id\":\"p\",\"label\":\"Mixed materials\",\"type\":\"Format\"}" ], - "genres.label": [], - "production.dates": [], - "subjects.label": [ - "{\"label\":\"1tcWDr9iTo\",\"concepts\":[],\"type\":\"Subject\"}" + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" + ], + "languages" : [ + ], + "contributors.agent.label" : [ ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "p", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["1tcWDr9iTo"], - "contributors.agent.label": [], - "identifiers.value": ["Cv3sMYaNuU"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "p", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "S4hioTvwQl" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "s4RY14qUDX" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json index ef5f9af4b..a7570ff77 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json @@ -1,157 +1,232 @@ { - "description": "examples for availabilities tests", - "createdAt": "2023-11-23T14:34:38.895626Z", - "id": "vbi1ii19", - "document": { - "debug": { - "source": { - "id": "vbi1ii19", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for availabilities tests", + "createdAt" : "2024-11-13T08:43:26.655994Z", + "id" : "iopgf0nj", + "document" : { + "debug" : { + "source" : { + "id" : "iopgf0nj", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "CzLNHBFHuR" + "ontologyType" : "Work", + "value" : "3glZntXsvt" }, - "version": 46, - "modifiedTime": "2024-12-13T21:31:42Z" + "version" : 64, + "modifiedTime" : "1940-10-05T05:45:04Z" }, - "mergedTime": "2024-12-13T21:31:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1940-10-05T05:45:04Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vbi1ii19", - "title": "title-jGGR8UNWut", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "iopgf0nj", + "title" : "title-tuZQUd4A61", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "CzLNHBFHuR", - "type": "Identifier" + "value" : "3glZntXsvt", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "fyqts0co", - "identifiers": [ + "id" : "wpw7kqmd", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "XQqPyuxbr5", - "type": "Identifier" + "value" : "vOEvkncTXy", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "closed-stores", - "label": "Closed stores", - "type": "LocationType" + "locationType" : { + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "LocationType" }, - "label": "locationLabel", - "license": { - "id": "ogl", - "label": "Open Government Licence", - "url": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", - "type": "License" + "label" : "locationLabel", + "license" : { + "id" : "ogl", + "label" : "Open Government Licence", + "url" : "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "type" : "License" }, - "shelfmark": "Shelfmark: vWebpA5W", - "accessConditions": [], - "type": "PhysicalLocation" + "shelfmark" : "Shelfmark: UIgSWmx", + "accessConditions" : [ + ], + "type" : "PhysicalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "closed-stores", - "label": "Closed stores", - "type": "Availability" + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vbi1ii19", - "sourceIdentifier.value": "CzLNHBFHuR", - "identifiers.value": ["CzLNHBFHuR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["fyqts0co"], - "items.identifiers.value": ["XQqPyuxbr5"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-jGGR8UNWut" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "iopgf0nj", + "sourceIdentifier.value" : "3glZntXsvt", + "identifiers.value" : [ + "3glZntXsvt" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "wpw7kqmd" + ], + "items.identifiers.value" : [ + "vOEvkncTXy" + ], + "items.shelfmark.value" : [ + "Shelfmark: UIgSWmx" + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-tuZQUd4A61" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"ogl\",\"label\":\"Open Government Licence\",\"url\":\"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["CzLNHBFHuR"], - "items.locations.license.id": ["ogl"], - "items.locations.accessConditions.status.id": [], - "items.id": ["fyqts0co"], - "items.identifiers.value": ["XQqPyuxbr5"], - "items.locations.locationType.id": ["closed-stores"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["closed-stores"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "3glZntXsvt" + ], + "items.locations.license.id" : [ + "ogl" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "wpw7kqmd" + ], + "items.identifiers.value" : [ + "vOEvkncTXy" + ], + "items.locations.locationType.id" : [ + "closed-stores" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "closed-stores" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json index f76f3b119..f3842b14d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json @@ -1,246 +1,321 @@ { - "description": "examples for availabilities tests", - "createdAt": "2023-11-23T14:34:38.948113Z", - "id": "vm0zer7z", - "document": { - "debug": { - "source": { - "id": "vm0zer7z", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for availabilities tests", + "createdAt" : "2024-11-13T08:43:26.660241Z", + "id" : "9stpxl39", + "document" : { + "debug" : { + "source" : { + "id" : "9stpxl39", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "LVIpJ1Ef6z" + "ontologyType" : "Work", + "value" : "iOhIDpmZQS" }, - "version": 91, - "modifiedTime": "2068-08-13T06:59:27Z" + "version" : 90, + "modifiedTime" : "2053-10-10T09:57:01Z" }, - "mergedTime": "2068-08-13T06:59:27Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2053-10-10T09:57:01Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vm0zer7z", - "title": "title-0Y60eDuJsQ", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "9stpxl39", + "title" : "title-ZJBZp7GTBM", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "LVIpJ1Ef6z", - "type": "Identifier" + "value" : "iOhIDpmZQS", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "bcx2tere", - "identifiers": [ + "id" : "qdr9gb06", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "kut0Uk2wzX", - "type": "Identifier" + "value" : "szcI3pLB8w", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "closed-stores", - "label": "Closed stores", - "type": "LocationType" + "locationType" : { + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "LocationType" }, - "label": "locationLabel", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "label" : "locationLabel", + "license" : { + "id" : "pdm", + "label" : "Public Domain Mark", + "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type" : "License" }, - "accessConditions": [], - "type": "PhysicalLocation" + "accessConditions" : [ + ], + "type" : "PhysicalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "id": "zapciyop", - "identifiers": [ + "id" : "y1i7iplx", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Wz64nwkPrD", - "type": "Identifier" + "value" : "9QmlF92mk9", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "open-shelves", - "label": "Open shelves", - "type": "LocationType" - }, - "label": "locationLabel", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "locationType" : { + "id" : "open-shelves", + "label" : "Open shelves", + "type" : "LocationType" }, - "shelfmark": "Shelfmark: AlQcKN0hZ", - "accessConditions": [], - "type": "PhysicalLocation" + "label" : "locationLabel", + "shelfmark" : "Shelfmark: cCc2QL7V8", + "accessConditions" : [ + ], + "type" : "PhysicalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Tye.jpg/info.json", - "credit": "Credit line: d0v8N5yZNM", - "linkText": "Link text: kIx0Ngqk", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/AUd.jpg/info.json", + "linkText" : "Link text: zYQpvm", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "not-requestable", - "label": "Not requestable", - "type": "AccessMethod" + "method" : { + "id" : "not-requestable", + "label" : "Not requestable", + "type" : "AccessMethod" }, - "status": { - "id": "open-with-advisory", - "label": "Open with advisory", - "type": "AccessStatus" + "status" : { + "id" : "open-with-advisory", + "label" : "Open with advisory", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "closed-stores", - "label": "Closed stores", - "type": "Availability" + "id" : "closed-stores", + "label" : "Closed stores", + "type" : "Availability" }, { - "id": "open-shelves", - "label": "Open shelves", - "type": "Availability" + "id" : "open-shelves", + "label" : "Open shelves", + "type" : "Availability" }, { - "id": "online", - "label": "Online", - "type": "Availability" + "id" : "online", + "label" : "Online", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vm0zer7z", - "sourceIdentifier.value": "LVIpJ1Ef6z", - "identifiers.value": ["LVIpJ1Ef6z"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["bcx2tere", "zapciyop"], - "items.identifiers.value": ["kut0Uk2wzX", "Wz64nwkPrD"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-0Y60eDuJsQ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "9stpxl39", + "sourceIdentifier.value" : "iOhIDpmZQS", + "identifiers.value" : [ + "iOhIDpmZQS" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "qdr9gb06", + "y1i7iplx" + ], + "items.identifiers.value" : [ + "szcI3pLB8w", + "9QmlF92mk9" + ], + "items.shelfmark.value" : [ + "Shelfmark: cCc2QL7V8" + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-ZJBZp7GTBM" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ - "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", - "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}", "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}", "{\"id\":\"open-shelves\",\"label\":\"Open shelves\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["LVIpJ1Ef6z"], - "items.locations.license.id": ["cc-by", "cc-by", "cc-by"], - "items.locations.accessConditions.status.id": ["open-with-advisory"], - "items.id": ["bcx2tere", "zapciyop"], - "items.identifiers.value": ["kut0Uk2wzX", "Wz64nwkPrD"], - "items.locations.locationType.id": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "iOhIDpmZQS" + ], + "items.locations.license.id" : [ + "pdm", + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "open-with-advisory" + ], + "items.id" : [ + "qdr9gb06", + "y1i7iplx" + ], + "items.identifiers.value" : [ + "szcI3pLB8w", + "9QmlF92mk9" + ], + "items.locations.locationType.id" : [ "closed-stores", "open-shelves", "iiif-presentation" ], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["closed-stores", "open-shelves", "online"] + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "closed-stores", + "open-shelves", + "online" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json index 379ecc0ef..ed12331af 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json @@ -1,112 +1,182 @@ { - "description": "examples for availabilities tests", - "createdAt": "2023-11-23T14:34:38.932167Z", - "id": "051a4vr6", - "document": { - "debug": { - "source": { - "id": "051a4vr6", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for availabilities tests", + "createdAt" : "2024-11-13T08:43:26.658932Z", + "id" : "jy8lcdnc", + "document" : { + "debug" : { + "source" : { + "id" : "jy8lcdnc", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "wm3uF6DWDU" + "ontologyType" : "Work", + "value" : "r5gilWx8gA" }, - "version": 76, - "modifiedTime": "2037-01-02T18:20:02Z" + "version" : 60, + "modifiedTime" : "1938-04-17T00:01:19Z" }, - "mergedTime": "2037-01-02T18:20:02Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1938-04-17T00:01:19Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "051a4vr6", - "title": "title-u7udsfX2BN", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "jy8lcdnc", + "title" : "title-EVdllKtj1b", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "wm3uF6DWDU", - "type": "Identifier" + "value" : "r5gilWx8gA", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "051a4vr6", - "sourceIdentifier.value": "wm3uF6DWDU", - "identifiers.value": ["wm3uF6DWDU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-u7udsfX2BN" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jy8lcdnc", + "sourceIdentifier.value" : "r5gilWx8gA", + "identifiers.value" : [ + "r5gilWx8gA" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-EVdllKtj1b" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["wm3uF6DWDU"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "r5gilWx8gA" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json index 4b7d810cd..d19b74126 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json @@ -1,161 +1,230 @@ { - "description": "examples for availabilities tests", - "createdAt": "2023-11-23T14:34:38.924823Z", - "id": "hraob2ru", - "document": { - "debug": { - "source": { - "id": "hraob2ru", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for availabilities tests", + "createdAt" : "2024-11-13T08:43:26.657688Z", + "id" : "yz6gwbs7", + "document" : { + "debug" : { + "source" : { + "id" : "yz6gwbs7", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "9wyJzS2Sui" + "ontologyType" : "Work", + "value" : "DnY4M5JWvJ" }, - "version": 81, - "modifiedTime": "1997-02-16T15:15:00Z" + "version" : 7, + "modifiedTime" : "2019-08-06T06:56:41Z" }, - "mergedTime": "1997-02-16T15:15:00Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2019-08-06T06:56:41Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "hraob2ru", - "title": "title-BbFbQPNB7Z", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "yz6gwbs7", + "title" : "title-CJMNnr9kNr", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "9wyJzS2Sui", - "type": "Identifier" + "value" : "DnY4M5JWvJ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/KSW.jpg/info.json", - "credit": "Credit line: BejTwv1Nd", - "linkText": "Link text: 7sjiP63", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/YBu.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [ + "accessConditions" : [ { - "method": { - "id": "not-requestable", - "label": "Not requestable", - "type": "AccessMethod" + "method" : { + "id" : "not-requestable", + "label" : "Not requestable", + "type" : "AccessMethod" }, - "status": { - "id": "open", - "label": "Open", - "type": "AccessStatus" + "status" : { + "id" : "open", + "label" : "Open", + "type" : "AccessStatus" }, - "type": "AccessCondition" + "type" : "AccessCondition" } ], - "type": "DigitalLocation" + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "online", - "label": "Online", - "type": "Availability" + "id" : "online", + "label" : "Online", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "hraob2ru", - "sourceIdentifier.value": "9wyJzS2Sui", - "identifiers.value": ["9wyJzS2Sui"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-BbFbQPNB7Z" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "yz6gwbs7", + "sourceIdentifier.value" : "DnY4M5JWvJ", + "identifiers.value" : [ + "DnY4M5JWvJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-CJMNnr9kNr" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [ + "availabilities" : [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["9wyJzS2Sui"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": ["open"], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["online"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "DnY4M5JWvJ" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + "open" + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "online" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json index cca3d03ef..8266fae1f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json @@ -1,149 +1,224 @@ { - "description": "examples for availabilities tests", - "createdAt": "2023-11-23T14:34:38.873049Z", - "id": "aequ81tp", - "document": { - "debug": { - "source": { - "id": "aequ81tp", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for availabilities tests", + "createdAt" : "2024-11-13T08:43:26.653938Z", + "id" : "fntlrk7n", + "document" : { + "debug" : { + "source" : { + "id" : "fntlrk7n", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "GdgZfc8BAU" + "ontologyType" : "Work", + "value" : "y9pCp7jd9r" }, - "version": 79, - "modifiedTime": "1933-03-15T02:50:48Z" + "version" : 28, + "modifiedTime" : "2007-03-29T14:43:02Z" }, - "mergedTime": "1933-03-15T02:50:48Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2007-03-29T14:43:02Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "aequ81tp", - "title": "title-2TWOPFt15v", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "fntlrk7n", + "title" : "title-d5hDXNpf0j", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "GdgZfc8BAU", - "type": "Identifier" + "value" : "y9pCp7jd9r", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "y4unjfix", - "identifiers": [ + "id" : "tfqdc51h", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "lrCzEKoCX5", - "type": "Identifier" + "value" : "g38S97qOpH", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "open-shelves", - "label": "Open shelves", - "type": "LocationType" + "locationType" : { + "id" : "open-shelves", + "label" : "Open shelves", + "type" : "LocationType" }, - "label": "locationLabel", - "shelfmark": "Shelfmark: xd8prf0", - "accessConditions": [], - "type": "PhysicalLocation" + "label" : "locationLabel", + "shelfmark" : "Shelfmark: l0IywWR", + "accessConditions" : [ + ], + "type" : "PhysicalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [ + "holdings" : [ + ], + "availabilities" : [ { - "id": "open-shelves", - "label": "Open shelves", - "type": "Availability" + "id" : "open-shelves", + "label" : "Open shelves", + "type" : "Availability" } ], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "aequ81tp", - "sourceIdentifier.value": "GdgZfc8BAU", - "identifiers.value": ["GdgZfc8BAU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["y4unjfix"], - "items.identifiers.value": ["lrCzEKoCX5"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-2TWOPFt15v" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "fntlrk7n", + "sourceIdentifier.value" : "y9pCp7jd9r", + "identifiers.value" : [ + "y9pCp7jd9r" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "tfqdc51h" + ], + "items.identifiers.value" : [ + "g38S97qOpH" + ], + "items.shelfmark.value" : [ + "Shelfmark: l0IywWR" + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-d5hDXNpf0j" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ "{\"id\":\"open-shelves\",\"label\":\"Open shelves\",\"type\":\"Availability\"}" ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["GdgZfc8BAU"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": ["y4unjfix"], - "items.identifiers.value": ["lrCzEKoCX5"], - "items.locations.locationType.id": ["open-shelves"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": ["open-shelves"] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "y9pCp7jd9r" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "tfqdc51h" + ], + "items.identifiers.value" : [ + "g38S97qOpH" + ], + "items.locations.locationType.id" : [ + "open-shelves" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + "open-shelves" + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json index dca8e7d49..eec828c2e 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json @@ -1,124 +1,195 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.242599Z", - "id": "dklf9ebg", - "document": { - "debug": { - "source": { - "id": "dklf9ebg", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.618807Z", + "id" : "ijnwmvup", + "document" : { + "debug" : { + "source" : { + "id" : "ijnwmvup", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "GGLKeJCppC" + "ontologyType" : "Work", + "value" : "Kd2KzPZAnM" }, - "version": 3, - "modifiedTime": "2026-01-09T00:00:01Z" + "version" : 98, + "modifiedTime" : "1968-12-03T01:32:55Z" }, - "mergedTime": "2026-01-09T00:00:01Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1968-12-03T01:32:55Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "dklf9ebg", - "title": "title-vJlw8MZygt", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "ijnwmvup", + "title" : "title-uMNql7LBhP", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "Bath, Patricia", - "type": "Person" + "agent" : { + "label" : "Bath, Patricia", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "GGLKeJCppC", - "type": "Identifier" + "value" : "Kd2KzPZAnM", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Bath, Patricia"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "dklf9ebg", - "sourceIdentifier.value": "GGLKeJCppC", - "identifiers.value": ["GGLKeJCppC"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-vJlw8MZygt" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Bath, Patricia" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ijnwmvup", + "sourceIdentifier.value" : "Kd2KzPZAnM", + "identifiers.value" : [ + "Kd2KzPZAnM" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-uMNql7LBhP" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"Bath, Patricia\",\"type\":\"Person\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["Bath, Patricia"], - "identifiers.value": ["GGLKeJCppC"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "Bath, Patricia" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Kd2KzPZAnM" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json index 0f151d1cf..bfbbafa1d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json @@ -1,124 +1,195 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.248180Z", - "id": "r7wachux", - "document": { - "debug": { - "source": { - "id": "r7wachux", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.619301Z", + "id" : "mzvvcba0", + "document" : { + "debug" : { + "source" : { + "id" : "mzvvcba0", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "GY2AKxyW0l" + "ontologyType" : "Work", + "value" : "gDuSiI3pPI" }, - "version": 16, - "modifiedTime": "1986-10-13T12:45:40Z" + "version" : 29, + "modifiedTime" : "1993-02-03T00:28:21Z" }, - "mergedTime": "1986-10-13T12:45:40Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1993-02-03T00:28:21Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "r7wachux", - "title": "title-rv8PglAGaK", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "mzvvcba0", + "title" : "title-h0iB2aGWT6", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "Karl Marx", - "type": "Person" + "agent" : { + "label" : "Karl Marx", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "GY2AKxyW0l", - "type": "Identifier" + "value" : "gDuSiI3pPI", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Karl Marx"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "r7wachux", - "sourceIdentifier.value": "GY2AKxyW0l", - "identifiers.value": ["GY2AKxyW0l"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-rv8PglAGaK" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Karl Marx" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mzvvcba0", + "sourceIdentifier.value" : "gDuSiI3pPI", + "identifiers.value" : [ + "gDuSiI3pPI" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-h0iB2aGWT6" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"Karl Marx\",\"type\":\"Person\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["Karl Marx"], - "identifiers.value": ["GY2AKxyW0l"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "Karl Marx" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "gDuSiI3pPI" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json index 6694aadb7..e06e1e11d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json @@ -1,124 +1,195 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.249714Z", - "id": "wmvuppum", - "document": { - "debug": { - "source": { - "id": "wmvuppum", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.619693Z", + "id" : "5ramofto", + "document" : { + "debug" : { + "source" : { + "id" : "5ramofto", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "KzPZAnMiJN" + "ontologyType" : "Work", + "value" : "iZ6KWys5lZ" }, - "version": 60, - "modifiedTime": "1945-07-07T10:18:32Z" + "version" : 77, + "modifiedTime" : "1998-03-21T07:04:06Z" }, - "mergedTime": "1945-07-07T10:18:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1998-03-21T07:04:06Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "wmvuppum", - "title": "title-ql7LBhP7Ng", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "5ramofto", + "title" : "title-5bCvMTmP7w", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "Jake Paul", - "type": "Person" + "agent" : { + "label" : "Jake Paul", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "KzPZAnMiJN", - "type": "Identifier" + "value" : "iZ6KWys5lZ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Jake Paul"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "wmvuppum", - "sourceIdentifier.value": "KzPZAnMiJN", - "identifiers.value": ["KzPZAnMiJN"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-ql7LBhP7Ng" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Jake Paul" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "5ramofto", + "sourceIdentifier.value" : "iZ6KWys5lZ", + "identifiers.value" : [ + "iZ6KWys5lZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-5bCvMTmP7w" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"Jake Paul\",\"type\":\"Person\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["Jake Paul"], - "identifiers.value": ["KzPZAnMiJN"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "Jake Paul" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "iZ6KWys5lZ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json index 1564e022e..55b8b338d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json @@ -1,124 +1,195 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.250267Z", - "id": "vcba0kh0", - "document": { - "debug": { - "source": { - "id": "vcba0kh0", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.620130Z", + "id" : "816tru6j", + "document" : { + "debug" : { + "source" : { + "id" : "816tru6j", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "SiI3pPIMZv" + "ontologyType" : "Work", + "value" : "9jNNS7lxBF" }, - "version": 82, - "modifiedTime": "2043-08-15T21:52:17Z" + "version" : 90, + "modifiedTime" : "1969-03-18T15:11:34Z" }, - "mergedTime": "2043-08-15T21:52:17Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1969-03-18T15:11:34Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vcba0kh0", - "title": "title-B2aGWT6gTi", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "816tru6j", + "title" : "title-q4UJD6zf5r", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "Darwin \"Jones\", Charles", - "type": "Person" + "agent" : { + "label" : "Darwin \"Jones\", Charles", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "SiI3pPIMZv", - "type": "Identifier" + "value" : "9jNNS7lxBF", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": ["Darwin \"Jones\", Charles"], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vcba0kh0", - "sourceIdentifier.value": "SiI3pPIMZv", - "identifiers.value": ["SiI3pPIMZv"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-B2aGWT6gTi" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + "Darwin \"Jones\", Charles" + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "816tru6j", + "sourceIdentifier.value" : "9jNNS7lxBF", + "identifiers.value" : [ + "9jNNS7lxBF" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-q4UJD6zf5r" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"type\":\"Person\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": ["Darwin \"Jones\", Charles"], - "identifiers.value": ["SiI3pPIMZv"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + "Darwin \"Jones\", Charles" + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "9jNNS7lxBF" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json index 49e3bb860..5747d5cff 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json @@ -1,140 +1,208 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.263302Z", - "id": "moftow5b", - "document": { - "debug": { - "source": { - "id": "moftow5b", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.620588Z", + "id" : "xuni2iqa", + "document" : { + "debug" : { + "source" : { + "id" : "xuni2iqa", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "KWys5lZ5ra" + "ontologyType" : "Work", + "value" : "XzQw5jYpuB" }, - "version": 66, - "modifiedTime": "1950-07-15T20:46:42Z" + "version" : 100, + "modifiedTime" : "1968-08-03T10:25:48Z" }, - "mergedTime": "1950-07-15T20:46:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1968-08-03T10:25:48Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "moftow5b", - "title": "title-vMTmP7wsQ9", - "alternativeTitles": [], - "contributors": [ + "display" : { + "id" : "xuni2iqa", + "title" : "title-I2SUm7p7NJ", + "alternativeTitles" : [ + ], + "contributors" : [ { - "agent": { - "label": "Bath, Patricia", - "type": "Person" + "agent" : { + "label" : "Bath, Patricia", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" }, { - "agent": { - "label": "Darwin \"Jones\", Charles", - "type": "Person" + "agent" : { + "label" : "Darwin \"Jones\", Charles", + "type" : "Person" }, - "roles": [], - "primary": true, - "type": "Contributor" + "roles" : [ + ], + "primary" : true, + "type" : "Contributor" } ], - "identifiers": [ + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "KWys5lZ5ra", - "type": "Identifier" + "value" : "XzQw5jYpuB", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ "Bath, Patricia", "Darwin \"Jones\", Charles" ], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "moftow5b", - "sourceIdentifier.value": "KWys5lZ5ra", - "identifiers.value": ["KWys5lZ5ra"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-vMTmP7wsQ9" + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "xuni2iqa", + "sourceIdentifier.value" : "XzQw5jYpuB", + "identifiers.value" : [ + "XzQw5jYpuB" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-I2SUm7p7NJ" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ "{\"label\":\"Bath, Patricia\",\"type\":\"Person\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"type\":\"Person\"}" ], - "items.locations.license": [], - "availabilities": [] + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ "Bath, Patricia", "Darwin \"Jones\", Charles" ], - "identifiers.value": ["KWys5lZ5ra"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "XzQw5jYpuB" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json index af45f6c8d..e689ad42e 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json @@ -1,112 +1,182 @@ { - "description": "examples for the contributor filter tests", - "createdAt": "2023-11-21T15:39:35.268782Z", - "id": "tru6joq4", - "document": { - "debug": { - "source": { - "id": "tru6joq4", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the contributor filter tests", + "createdAt" : "2024-11-13T08:43:26.620907Z", + "id" : "syv21f7g", + "document" : { + "debug" : { + "source" : { + "id" : "syv21f7g", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "NS7lxBF816" + "ontologyType" : "Work", + "value" : "4Dxc6NTEVZ" }, - "version": 38, - "modifiedTime": "2022-09-30T14:40:50Z" + "version" : 40, + "modifiedTime" : "2031-05-07T13:00:36Z" }, - "mergedTime": "2022-09-30T14:40:50Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2031-05-07T13:00:36Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "tru6joq4", - "title": "title-JD6zf5rF0X", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "syv21f7g", + "title" : "title-bSjf9AwXjw", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "NS7lxBF816", - "type": "Identifier" + "value" : "4Dxc6NTEVZ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "tru6joq4", - "sourceIdentifier.value": "NS7lxBF816", - "identifiers.value": ["NS7lxBF816"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-JD6zf5rF0X" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "syv21f7g", + "sourceIdentifier.value" : "4Dxc6NTEVZ", + "identifiers.value" : [ + "4Dxc6NTEVZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-bSjf9AwXjw" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["NS7lxBF816"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "4Dxc6NTEVZ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json index 5f12d18de..00f0288da 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json @@ -1,112 +1,182 @@ { - "description": "examples of works with different types", - "createdAt": "2023-11-21T15:39:35.003600Z", - "id": "ujg4jncr", - "document": { - "debug": { - "source": { - "id": "ujg4jncr", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples of works with different types", + "createdAt" : "2024-11-13T08:43:26.598122Z", + "id" : "osineemq", + "document" : { + "debug" : { + "source" : { + "id" : "osineemq", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "ZEnp6i2y6i" + "ontologyType" : "Work", + "value" : "oFYwsvmZKL" }, - "version": 27, - "modifiedTime": "1951-02-24T01:30:35Z" + "version" : 88, + "modifiedTime" : "1982-02-15T00:55:59Z" }, - "mergedTime": "1951-02-24T01:30:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1982-02-15T00:55:59Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ujg4jncr", - "title": "rats", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "osineemq", + "title" : "rats", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "ZEnp6i2y6i", - "type": "Identifier" + "value" : "oFYwsvmZKL", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Collection" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Collection" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ujg4jncr", - "sourceIdentifier.value": "ZEnp6i2y6i", - "identifiers.value": ["ZEnp6i2y6i"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "osineemq", + "sourceIdentifier.value" : "oFYwsvmZKL", + "identifiers.value" : [ + "oFYwsvmZKL" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Collection", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ZEnp6i2y6i"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Collection", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "oFYwsvmZKL" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json index 517598da6..69734dc27 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json @@ -1,112 +1,182 @@ { - "description": "examples of works with different types", - "createdAt": "2023-11-21T15:39:35.000950Z", - "id": "pflggfra", - "document": { - "debug": { - "source": { - "id": "pflggfra", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples of works with different types", + "createdAt" : "2024-11-13T08:43:26.596883Z", + "id" : "48vvelyd", + "document" : { + "debug" : { + "source" : { + "id" : "48vvelyd", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "4QwQTlrFnQ" + "ontologyType" : "Work", + "value" : "eiJRew3RmJ" }, - "version": 71, - "modifiedTime": "1996-07-06T15:31:03Z" + "version" : 38, + "modifiedTime" : "1943-05-14T19:16:03Z" }, - "mergedTime": "1996-07-06T15:31:03Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1943-05-14T19:16:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "pflggfra", - "title": "rats", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "48vvelyd", + "title" : "rats", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "4QwQTlrFnQ", - "type": "Identifier" + "value" : "eiJRew3RmJ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Section" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Section" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "pflggfra", - "sourceIdentifier.value": "4QwQTlrFnQ", - "identifiers.value": ["4QwQTlrFnQ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "48vvelyd", + "sourceIdentifier.value" : "eiJRew3RmJ", + "identifiers.value" : [ + "eiJRew3RmJ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Section", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["4QwQTlrFnQ"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Section", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "eiJRew3RmJ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json index fee3de4af..13fd9f867 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json @@ -1,112 +1,182 @@ { - "description": "examples of works with different types", - "createdAt": "2023-11-21T15:39:35.005029Z", - "id": "velydjdv", - "document": { - "debug": { - "source": { - "id": "velydjdv", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples of works with different types", + "createdAt" : "2024-11-13T08:43:26.599808Z", + "id" : "pbeanc7x", + "document" : { + "debug" : { + "source" : { + "id" : "pbeanc7x", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Rew3RmJ48v" + "ontologyType" : "Work", + "value" : "ZmmbPJWDqm" }, - "version": 20, - "modifiedTime": "1960-03-11T19:55:05Z" + "version" : 82, + "modifiedTime" : "2049-02-26T19:42:13Z" }, - "mergedTime": "1960-03-11T19:55:05Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2049-02-26T19:42:13Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "velydjdv", - "title": "rats", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "pbeanc7x", + "title" : "rats", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Rew3RmJ48v", - "type": "Identifier" + "value" : "ZmmbPJWDqm", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Series" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Series" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "velydjdv", - "sourceIdentifier.value": "Rew3RmJ48v", - "identifiers.value": ["Rew3RmJ48v"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "pbeanc7x", + "sourceIdentifier.value" : "ZmmbPJWDqm", + "identifiers.value" : [ + "ZmmbPJWDqm" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Series", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Rew3RmJ48v"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Series", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ZmmbPJWDqm" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json index 9939421e5..b948b7718 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.404947Z", - "id": "o0u9h1wt", - "document": { - "debug": { - "source": { - "id": "o0u9h1wt", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.643155Z", + "id" : "pgnx8xiu", + "document" : { + "debug" : { + "source" : { + "id" : "pgnx8xiu", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Q8nyGjzx3m" + "ontologyType" : "Work", + "value" : "ahC4keAffG" }, - "version": 97, - "modifiedTime": "1998-09-03T03:15:10Z" + "version" : 53, + "modifiedTime" : "2044-04-23T02:39:03Z" }, - "mergedTime": "1998-09-03T03:15:10Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2044-04-23T02:39:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "o0u9h1wt", - "title": "rats", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "pgnx8xiu", + "title" : "rats", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Q8nyGjzx3m", - "type": "Identifier" + "value" : "ahC4keAffG", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "bak", - "label": "Bashkir", - "type": "Language" + "id" : "bak", + "label" : "Bashkir", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "o0u9h1wt", - "sourceIdentifier.value": "Q8nyGjzx3m", - "identifiers.value": ["Q8nyGjzx3m"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Bashkir"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "pgnx8xiu", + "sourceIdentifier.value" : "ahC4keAffG", + "identifiers.value" : [ + "ahC4keAffG" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Bashkir" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["bak"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Q8nyGjzx3m"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "bak" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ahC4keAffG" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json index 2794a5c66..5f17183e8 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.409030Z", - "id": "1ndk3ton", - "document": { - "debug": { - "source": { - "id": "1ndk3ton", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.643470Z", + "id" : "ryawvgup", + "document" : { + "debug" : { + "source" : { + "id" : "ryawvgup", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "HgjmZ1Psfx" + "ontologyType" : "Work", + "value" : "jHeY6Fz9Kp" }, - "version": 31, - "modifiedTime": "1942-02-08T16:28:55Z" + "version" : 72, + "modifiedTime" : "2059-12-28T14:23:34Z" }, - "mergedTime": "1942-02-08T16:28:55Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2059-12-28T14:23:34Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "1ndk3ton", - "title": "capybara", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "ryawvgup", + "title" : "capybara", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "HgjmZ1Psfx", - "type": "Identifier" + "value" : "jHeY6Fz9Kp", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "mar", - "label": "Marathi", - "type": "Language" + "id" : "mar", + "label" : "Marathi", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "1ndk3ton", - "sourceIdentifier.value": "HgjmZ1Psfx", - "identifiers.value": ["HgjmZ1Psfx"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Marathi"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "capybara" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ryawvgup", + "sourceIdentifier.value" : "jHeY6Fz9Kp", + "identifiers.value" : [ + "jHeY6Fz9Kp" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Marathi" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "capybara" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"mar\",\"label\":\"Marathi\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["mar"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["HgjmZ1Psfx"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "mar" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "jHeY6Fz9Kp" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json index d86cabf25..b5cbc2b8a 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.409657Z", - "id": "8xiun5qm", - "document": { - "debug": { - "source": { - "id": "8xiun5qm", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.643763Z", + "id" : "z5orxsbq", + "document" : { + "debug" : { + "source" : { + "id" : "z5orxsbq", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "keAffGPGNx" + "ontologyType" : "Work", + "value" : "K1TpzZmCli" }, - "version": 75, - "modifiedTime": "1992-09-20T01:47:13Z" + "version" : 66, + "modifiedTime" : "1981-06-28T10:43:18Z" }, - "mergedTime": "1992-09-20T01:47:13Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1981-06-28T10:43:18Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "8xiun5qm", - "title": "tapirs", - "alternativeTitles": [], - "workType": { - "id": "k", - "label": "Pictures", - "type": "Format" + "display" : { + "id" : "z5orxsbq", + "title" : "tapirs", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "k", + "label" : "Pictures", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "keAffGPGNx", - "type": "Identifier" + "value" : "K1TpzZmCli", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "que", - "label": "Quechua", - "type": "Language" + "id" : "que", + "label" : "Quechua", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "8xiun5qm", - "sourceIdentifier.value": "keAffGPGNx", - "identifiers.value": ["keAffGPGNx"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Quechua"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "tapirs" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "z5orxsbq", + "sourceIdentifier.value" : "K1TpzZmCli", + "identifiers.value" : [ + "K1TpzZmCli" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Quechua" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "tapirs" }, - "aggregatableValues": { - "workType": ["{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "k", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["que"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["keAffGPGNx"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "k", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "que" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "K1TpzZmCli" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json index 44c8502e0..833ce7927 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.410007Z", - "id": "vguputez", - "document": { - "debug": { - "source": { - "id": "vguputez", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.644082Z", + "id" : "sts5c3ls", + "document" : { + "debug" : { + "source" : { + "id" : "sts5c3ls", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "6Fz9KprYAw" + "ontologyType" : "Work", + "value" : "bQuZPdet7f" }, - "version": 80, - "modifiedTime": "2031-04-11T11:09:11Z" + "version" : 36, + "modifiedTime" : "1950-01-25T21:30:47Z" }, - "mergedTime": "2031-04-11T11:09:11Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1950-01-25T21:30:47Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vguputez", - "title": "rats", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "sts5c3ls", + "title" : "rats", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "6Fz9KprYAw", - "type": "Identifier" + "value" : "bQuZPdet7f", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "bak", - "label": "Bashkir", - "type": "Language" + "id" : "bak", + "label" : "Bashkir", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vguputez", - "sourceIdentifier.value": "6Fz9KprYAw", - "identifiers.value": ["6Fz9KprYAw"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Bashkir"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "sts5c3ls", + "sourceIdentifier.value" : "bQuZPdet7f", + "identifiers.value" : [ + "bQuZPdet7f" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Bashkir" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["bak"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["6Fz9KprYAw"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "bak" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "bQuZPdet7f" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json index 993b61f9c..0361c5431 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.410336Z", - "id": "xsbqgayk", - "document": { - "debug": { - "source": { - "id": "xsbqgayk", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.644366Z", + "id" : "ursfcpyu", + "document" : { + "debug" : { + "source" : { + "id" : "ursfcpyu", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "zZmCliZ5OR" + "ontologyType" : "Work", + "value" : "DATqKSqlcV" }, - "version": 75, - "modifiedTime": "2065-03-14T20:41:38Z" + "version" : 18, + "modifiedTime" : "2068-12-03T06:41:51Z" }, - "mergedTime": "2065-03-14T20:41:38Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2068-12-03T06:41:51Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "xsbqgayk", - "title": "capybara", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "ursfcpyu", + "title" : "capybara", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "zZmCliZ5OR", - "type": "Identifier" + "value" : "DATqKSqlcV", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "bak", - "label": "Bashkir", - "type": "Language" + "id" : "bak", + "label" : "Bashkir", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "xsbqgayk", - "sourceIdentifier.value": "zZmCliZ5OR", - "identifiers.value": ["zZmCliZ5OR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Bashkir"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "capybara" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ursfcpyu", + "sourceIdentifier.value" : "DATqKSqlcV", + "identifiers.value" : [ + "DATqKSqlcV" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Bashkir" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "capybara" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["bak"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["zZmCliZ5OR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "bak" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "DATqKSqlcV" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json index b28457bb5..8ac9e8086 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.410651Z", - "id": "c3ls9khw", - "document": { - "debug": { - "source": { - "id": "c3ls9khw", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.644673Z", + "id" : "crmdnx7u", + "document" : { + "debug" : { + "source" : { + "id" : "crmdnx7u", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Pdet7fsTs5" + "ontologyType" : "Work", + "value" : "7z5sgyOBC4" }, - "version": 22, - "modifiedTime": "2041-05-31T20:04:19Z" + "version" : 86, + "modifiedTime" : "2054-08-12T01:30:45Z" }, - "mergedTime": "2041-05-31T20:04:19Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2054-08-12T01:30:45Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "c3ls9khw", - "title": "tapirs", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "crmdnx7u", + "title" : "tapirs", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Pdet7fsTs5", - "type": "Identifier" + "value" : "7z5sgyOBC4", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "bak", - "label": "Bashkir", - "type": "Language" + "id" : "bak", + "label" : "Bashkir", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "c3ls9khw", - "sourceIdentifier.value": "Pdet7fsTs5", - "identifiers.value": ["Pdet7fsTs5"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Bashkir"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "tapirs" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "crmdnx7u", + "sourceIdentifier.value" : "7z5sgyOBC4", + "identifiers.value" : [ + "7z5sgyOBC4" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Bashkir" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "tapirs" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["bak"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Pdet7fsTs5"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "bak" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "7z5sgyOBC4" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json index f4f4f60f7..724cdd138 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.410964Z", - "id": "cpyuhtp8", - "document": { - "debug": { - "source": { - "id": "cpyuhtp8", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.644979Z", + "id" : "7dzlu1am", + "document" : { + "debug" : { + "source" : { + "id" : "7dzlu1am", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "KSqlcVurSf" + "ontologyType" : "Work", + "value" : "2z2trB0Sw2" }, - "version": 26, - "modifiedTime": "1958-09-25T01:35:38Z" + "version" : 87, + "modifiedTime" : "2005-08-09T18:48:42Z" }, - "mergedTime": "1958-09-25T01:35:38Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2005-08-09T18:48:42Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cpyuhtp8", - "title": "rats", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "7dzlu1am", + "title" : "rats", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "KSqlcVurSf", - "type": "Identifier" + "value" : "2z2trB0Sw2", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "que", - "label": "Quechua", - "type": "Language" + "id" : "que", + "label" : "Quechua", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cpyuhtp8", - "sourceIdentifier.value": "KSqlcVurSf", - "identifiers.value": ["KSqlcVurSf"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Quechua"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "7dzlu1am", + "sourceIdentifier.value" : "2z2trB0Sw2", + "identifiers.value" : [ + "2z2trB0Sw2" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Quechua" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["que"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["KSqlcVurSf"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "que" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "2z2trB0Sw2" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json index e1884f9cb..7c4fa7456 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.420376Z", - "id": "nx7u2kmr", - "document": { - "debug": { - "source": { - "id": "nx7u2kmr", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.645281Z", + "id" : "rfckqwuh", + "document" : { + "debug" : { + "source" : { + "id" : "rfckqwuh", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "gyOBC4cRmD" + "ontologyType" : "Work", + "value" : "e1HWk1Ah2x" }, - "version": 57, - "modifiedTime": "2059-06-20T15:32:07Z" + "version" : 48, + "modifiedTime" : "1997-05-16T00:21:21Z" }, - "mergedTime": "2059-06-20T15:32:07Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1997-05-16T00:21:21Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "nx7u2kmr", - "title": "capybara", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "rfckqwuh", + "title" : "capybara", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "gyOBC4cRmD", - "type": "Identifier" + "value" : "e1HWk1Ah2x", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "mar", - "label": "Marathi", - "type": "Language" + "id" : "mar", + "label" : "Marathi", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "nx7u2kmr", - "sourceIdentifier.value": "gyOBC4cRmD", - "identifiers.value": ["gyOBC4cRmD"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Marathi"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "capybara" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "rfckqwuh", + "sourceIdentifier.value" : "e1HWk1Ah2x", + "identifiers.value" : [ + "e1HWk1Ah2x" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Marathi" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "capybara" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"mar\",\"label\":\"Marathi\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["mar"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["gyOBC4cRmD"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "mar" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "e1HWk1Ah2x" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json index ce8afe754..8abc7bb77 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.421406Z", - "id": "u1amc1nv", - "document": { - "debug": { - "source": { - "id": "u1amc1nv", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.645597Z", + "id" : "el5rbb4t", + "document" : { + "debug" : { + "source" : { + "id" : "el5rbb4t", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "rB0Sw27DZl" + "ontologyType" : "Work", + "value" : "uNmLrXrfr8" }, - "version": 30, - "modifiedTime": "1945-11-08T14:38:47Z" + "version" : 48, + "modifiedTime" : "2036-09-29T11:49:16Z" }, - "mergedTime": "1945-11-08T14:38:47Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2036-09-29T11:49:16Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "u1amc1nv", - "title": "tapirs", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "el5rbb4t", + "title" : "tapirs", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "rB0Sw27DZl", - "type": "Identifier" + "value" : "uNmLrXrfr8", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "que", - "label": "Quechua", - "type": "Language" + "id" : "que", + "label" : "Quechua", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "u1amc1nv", - "sourceIdentifier.value": "rB0Sw27DZl", - "identifiers.value": ["rB0Sw27DZl"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Quechua"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "tapirs" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "el5rbb4t", + "sourceIdentifier.value" : "uNmLrXrfr8", + "identifiers.value" : [ + "uNmLrXrfr8" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Quechua" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "tapirs" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["que"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["rB0Sw27DZl"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "que" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "uNmLrXrfr8" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json index 5da793130..9d8e44bc3 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json @@ -1,125 +1,196 @@ { - "description": "examples for the works filtered aggregations tests", - "createdAt": "2023-11-21T15:39:35.421772Z", - "id": "qwuhqead", - "document": { - "debug": { - "source": { - "id": "qwuhqead", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the works filtered aggregations tests", + "createdAt" : "2024-11-13T08:43:26.645904Z", + "id" : "svnlbwse", + "document" : { + "debug" : { + "source" : { + "id" : "svnlbwse", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "k1Ah2xRfCk" + "ontologyType" : "Work", + "value" : "JFu0QVu8iR" }, - "version": 61, - "modifiedTime": "1940-07-03T22:01:02Z" + "version" : 62, + "modifiedTime" : "2025-11-29T16:51:43Z" }, - "mergedTime": "1940-07-03T22:01:02Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2025-11-29T16:51:43Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "qwuhqead", - "title": "rats", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "svnlbwse", + "title" : "rats", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "k1Ah2xRfCk", - "type": "Identifier" + "value" : "JFu0QVu8iR", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "che", - "label": "Chechen", - "type": "Language" + "id" : "che", + "label" : "Chechen", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "qwuhqead", - "sourceIdentifier.value": "k1Ah2xRfCk", - "identifiers.value": ["k1Ah2xRfCk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Chechen"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "rats" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "svnlbwse", + "sourceIdentifier.value" : "JFu0QVu8iR", + "identifiers.value" : [ + "JFu0QVu8iR" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Chechen" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "rats" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"che\",\"label\":\"Chechen\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["che"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["k1Ah2xRfCk"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "che" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "JFu0QVu8iR" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json index 0c5f1e692..00261dd33 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json @@ -1,153 +1,226 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.041320Z", - "id": "oxbsq4ck", - "document": { - "debug": { - "source": { - "id": "oxbsq4ck", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.602371Z", + "id" : "xowd5kj1", + "document" : { + "debug" : { + "source" : { + "id" : "xowd5kj1", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "xukacPWKUR" + "ontologyType" : "Work", + "value" : "tYS1KOlZmZ" }, - "version": 53, - "modifiedTime": "2011-03-12T19:27:33Z" + "version" : 99, + "modifiedTime" : "1971-02-26T13:40:07Z" }, - "mergedTime": "2011-03-12T19:27:33Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-02-26T13:40:07Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "oxbsq4ck", - "title": "title-DrDsk2kCAG", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "xowd5kj1", + "title" : "title-X3OfWNE6m5", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "xukacPWKUR", - "type": "Identifier" + "value" : "tYS1KOlZmZ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Annual reports", - "concepts": [ + "label" : "Annual reports", + "concepts" : [ { - "id": "g00dcafe", - "identifiers": [ + "id" : "g00dcafe", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "hmRoJyr1Mq", - "type": "Identifier" + "value" : "T9fhswtSuP", + "type" : "Identifier" } ], - "label": "YwsvmZKLOsIneEm", - "type": "Genre" + "label" : "mWNKiLGpm85YYFF", + "type" : "Genre" }, { - "id": "baadf00d", - "identifiers": [ + "id" : "baadf00d", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "aNC7XCeymD", - "type": "Identifier" + "value" : "WKJQbCBtOF", + "type" : "Identifier" } ], - "label": "UtqZmmbPJWDqmpb", - "type": "Concept" + "label" : "Oo0o5Odfdodercw", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": ["YwsvmZKLOsIneEm", "UtqZmmbPJWDqmpb"], - "id": "oxbsq4ck", - "sourceIdentifier.value": "xukacPWKUR", - "identifiers.value": ["xukacPWKUR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-DrDsk2kCAG" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "mWNKiLGpm85YYFF", + "Oo0o5Odfdodercw" + ], + "id" : "xowd5kj1", + "sourceIdentifier.value" : "tYS1KOlZmZ", + "identifiers.value" : [ + "tYS1KOlZmZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-X3OfWNE6m5" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Annual reports\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": ["Annual reports"], - "genres.concepts.id": ["g00dcafe"], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["xukacPWKUR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + "Annual reports" + ], + "genres.concepts.id" : [ + "g00dcafe" + ], + "genres.concepts.sourceIdentifier" : [ + "T9fhswtSuP" + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "tYS1KOlZmZ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json index 74fc95a22..bd41c3d0f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json @@ -1,137 +1,209 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.042124Z", - "id": "wdnn2etp", - "document": { - "debug": { - "source": { - "id": "wdnn2etp", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.602785Z", + "id" : "yzj9dwdl", + "document" : { + "debug" : { + "source" : { + "id" : "yzj9dwdl", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "hx40zJbSlL" + "ontologyType" : "Work", + "value" : "AYys6jP7Ji" }, - "version": 23, - "modifiedTime": "1953-09-20T12:06:56Z" + "version" : 36, + "modifiedTime" : "1955-12-24T22:52:57Z" }, - "mergedTime": "1953-09-20T12:06:56Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1955-12-24T22:52:57Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "wdnn2etp", - "title": "title-zfssscK3St", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "yzj9dwdl", + "title" : "title-2RdbNpFC2P", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "hx40zJbSlL", - "type": "Identifier" + "value" : "AYys6jP7Ji", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Pamphlets", - "concepts": [ + "label" : "Pamphlets", + "concepts" : [ { - "id": "g00dcafe", - "identifiers": [ + "id" : "g00dcafe", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "85YYFFvT9f", - "type": "Identifier" + "value" : "dmKTFidDls", + "type" : "Identifier" } ], - "label": "df4bTPrmWNKiLGp", - "type": "Genre" + "label" : "9X3cVR8q4GIgcsJ", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": ["df4bTPrmWNKiLGp"], - "id": "wdnn2etp", - "sourceIdentifier.value": "hx40zJbSlL", - "identifiers.value": ["hx40zJbSlL"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-zfssscK3St" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "9X3cVR8q4GIgcsJ" + ], + "id" : "yzj9dwdl", + "sourceIdentifier.value" : "AYys6jP7Ji", + "identifiers.value" : [ + "AYys6jP7Ji" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-2RdbNpFC2P" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Pamphlets\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": ["Pamphlets"], - "genres.concepts.id": ["g00dcafe"], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["hx40zJbSlL"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + "Pamphlets" + ], + "genres.concepts.id" : [ + "g00dcafe" + ], + "genres.concepts.sourceIdentifier" : [ + "dmKTFidDls" + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "AYys6jP7Ji" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json index 61d823a77..36bae4bb7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json @@ -1,137 +1,209 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.042645Z", - "id": "d5kj1fx3", - "document": { - "debug": { - "source": { - "id": "d5kj1fx3", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.603188Z", + "id" : "avugqd3s", + "document" : { + "debug" : { + "source" : { + "id" : "avugqd3s", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "1KOlZmZXOW" + "ontologyType" : "Work", + "value" : "WGGaiNvMk5" }, - "version": 51, - "modifiedTime": "2047-04-18T16:27:14Z" + "version" : 67, + "modifiedTime" : "2031-04-13T18:09:40Z" }, - "mergedTime": "2047-04-18T16:27:14Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2031-04-13T18:09:40Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "d5kj1fx3", - "title": "title-fWNE6m5ytA", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "avugqd3s", + "title" : "title-RQFJOR9VqA", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "1KOlZmZXOW", - "type": "Identifier" + "value" : "WGGaiNvMk5", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Psychology, Pathological", - "concepts": [ + "label" : "Psychology, Pathological", + "concepts" : [ { - "id": "baadf00d", - "identifiers": [ + "id" : "baadf00d", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "odercwIWKJ", - "type": "Identifier" + "value" : "um1qUlCcjg", + "type" : "Identifier" } ], - "label": "hswtSuPOo0o5Odf", - "type": "Genre" + "label" : "qnu7hZZtHlWPIpZ", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": ["hswtSuPOo0o5Odf"], - "id": "d5kj1fx3", - "sourceIdentifier.value": "1KOlZmZXOW", - "identifiers.value": ["1KOlZmZXOW"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-fWNE6m5ytA" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "qnu7hZZtHlWPIpZ" + ], + "id" : "avugqd3s", + "sourceIdentifier.value" : "WGGaiNvMk5", + "identifiers.value" : [ + "WGGaiNvMk5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-RQFJOR9VqA" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": ["Psychology, Pathological"], - "genres.concepts.id": ["baadf00d"], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["1KOlZmZXOW"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + "Psychology, Pathological" + ], + "genres.concepts.id" : [ + "baadf00d" + ], + "genres.concepts.sourceIdentifier" : [ + "um1qUlCcjg" + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "WGGaiNvMk5" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json index 43ce9e3e5..3c6cef8ae 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json @@ -1,173 +1,243 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.043180Z", - "id": "9dwdlo2r", - "document": { - "debug": { - "source": { - "id": "9dwdlo2r", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.603672Z", + "id" : "vr490vab", + "document" : { + "debug" : { + "source" : { + "id" : "vr490vab", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "s6jP7JiYzJ" + "ontologyType" : "Work", + "value" : "AzAiZFAZvT" }, - "version": 97, - "modifiedTime": "2067-03-09T21:26:20Z" + "version" : 34, + "modifiedTime" : "1956-06-20T09:37:32Z" }, - "mergedTime": "2067-03-09T21:26:20Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1956-06-20T09:37:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "9dwdlo2r", - "title": "title-bNpFC2P5ZW", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "vr490vab", + "title" : "title-q4zh18D0cb", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "s6jP7JiYzJ", - "type": "Identifier" + "value" : "AzAiZFAZvT", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Darwin \"Jones\", Charles", - "concepts": [ + "label" : "Darwin \"Jones\", Charles", + "concepts" : [ { - "id": "qbcbtof9", - "identifiers": [ + "id" : "lmpakqz5", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "mKTFidDlsq", - "type": "Identifier" + "value" : "DpKgb0Wdy2", + "type" : "Identifier" } ], - "label": "X3cVR8q4GIgcsJh", - "type": "Genre" + "label" : "5SIuLPMgIG177tc", + "type" : "Genre" }, { - "id": "nu7hzzth", - "identifiers": [ + "id" : "nmumczq1", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "glMPaKQZ55", - "type": "Identifier" + "value" : "Q4CK8DrDsk", + "type" : "Identifier" } ], - "label": "lWPIpZYum1qUlCc", - "type": "Concept" + "label" : "JcxukacPWKUROxB", + "type" : "Concept" }, { - "id": "siulpmgi", - "identifiers": [ + "id" : "2kcagurh", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "2nMuMcZq1J", - "type": "Identifier" + "value" : "p5zfssscK3", + "type" : "Identifier" } ], - "label": "G177tcCDpKgb0Wd", - "type": "Concept" + "label" : "x40zJbSlLwDNn2E", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [ - "X3cVR8q4GIgcsJh", - "lWPIpZYum1qUlCc", - "G177tcCDpKgb0Wd" - ], - "id": "9dwdlo2r", - "sourceIdentifier.value": "s6jP7JiYzJ", - "identifiers.value": ["s6jP7JiYzJ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-bNpFC2P5ZW" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "5SIuLPMgIG177tc", + "JcxukacPWKUROxB", + "x40zJbSlLwDNn2E" + ], + "id" : "vr490vab", + "sourceIdentifier.value" : "AzAiZFAZvT", + "identifiers.value" : [ + "AzAiZFAZvT" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-q4zh18D0cb" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": ["Darwin \"Jones\", Charles"], - "genres.concepts.id": ["qbcbtof9"], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["s6jP7JiYzJ"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + "Darwin \"Jones\", Charles" + ], + "genres.concepts.id" : [ + "lmpakqz5" + ], + "genres.concepts.sourceIdentifier" : [ + "DpKgb0Wdy2" + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "AzAiZFAZvT" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json index e5e5906cc..b63e49183 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json @@ -1,225 +1,297 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.043776Z", - "id": "gqd3shrq", - "document": { - "debug": { - "source": { - "id": "gqd3shrq", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.604274Z", + "id" : "plxkke6n", + "document" : { + "debug" : { + "source" : { + "id" : "plxkke6n", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "aiNvMk5aVu" + "ontologyType" : "Work", + "value" : "1R485o02Dx" }, - "version": 30, - "modifiedTime": "1996-04-23T23:20:16Z" + "version" : 26, + "modifiedTime" : "1986-05-12T09:04:10Z" }, - "mergedTime": "1996-04-23T23:20:16Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1986-05-12T09:04:10Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "gqd3shrq", - "title": "title-JOR9VqAEmA", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "plxkke6n", + "title" : "title-cQ8QOPJdAX", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "aiNvMk5aVu", - "type": "Identifier" + "value" : "1R485o02Dx", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Pamphlets", - "concepts": [ + "label" : "Pamphlets", + "concepts" : [ { - "id": "g00dcafe", - "identifiers": [ + "id" : "g00dcafe", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "85YYFFvT9f", - "type": "Identifier" + "value" : "dmKTFidDls", + "type" : "Identifier" } ], - "label": "df4bTPrmWNKiLGp", - "type": "Genre" + "label" : "9X3cVR8q4GIgcsJ", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "Psychology, Pathological", - "concepts": [ + "label" : "Psychology, Pathological", + "concepts" : [ { - "id": "baadf00d", - "identifiers": [ + "id" : "baadf00d", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "odercwIWKJ", - "type": "Identifier" + "value" : "um1qUlCcjg", + "type" : "Identifier" } ], - "label": "hswtSuPOo0o5Odf", - "type": "Genre" + "label" : "qnu7hZZtHlWPIpZ", + "type" : "Genre" } ], - "type": "Genre" + "type" : "Genre" }, { - "label": "Darwin \"Jones\", Charles", - "concepts": [ + "label" : "Darwin \"Jones\", Charles", + "concepts" : [ { - "id": "qbcbtof9", - "identifiers": [ + "id" : "lmpakqz5", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "mKTFidDlsq", - "type": "Identifier" + "value" : "DpKgb0Wdy2", + "type" : "Identifier" } ], - "label": "X3cVR8q4GIgcsJh", - "type": "Genre" + "label" : "5SIuLPMgIG177tc", + "type" : "Genre" }, { - "id": "nu7hzzth", - "identifiers": [ + "id" : "nmumczq1", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "glMPaKQZ55", - "type": "Identifier" + "value" : "Q4CK8DrDsk", + "type" : "Identifier" } ], - "label": "lWPIpZYum1qUlCc", - "type": "Concept" + "label" : "JcxukacPWKUROxB", + "type" : "Concept" }, { - "id": "siulpmgi", - "identifiers": [ + "id" : "2kcagurh", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "2nMuMcZq1J", - "type": "Identifier" + "value" : "p5zfssscK3", + "type" : "Identifier" } ], - "label": "G177tcCDpKgb0Wd", - "type": "Concept" + "label" : "x40zJbSlLwDNn2E", + "type" : "Concept" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [ - "df4bTPrmWNKiLGp", - "hswtSuPOo0o5Odf", - "X3cVR8q4GIgcsJh", - "lWPIpZYum1qUlCc", - "G177tcCDpKgb0Wd" - ], - "id": "gqd3shrq", - "sourceIdentifier.value": "aiNvMk5aVu", - "identifiers.value": ["aiNvMk5aVu"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-JOR9VqAEmA" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + "9X3cVR8q4GIgcsJ", + "qnu7hZZtHlWPIpZ", + "5SIuLPMgIG177tc", + "JcxukacPWKUROxB", + "x40zJbSlLwDNn2E" + ], + "id" : "plxkke6n", + "sourceIdentifier.value" : "1R485o02Dx", + "identifiers.value" : [ + "1R485o02Dx" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-cQ8QOPJdAX" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Pamphlets\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ "Pamphlets", "Psychology, Pathological", "Darwin \"Jones\", Charles" ], - "genres.concepts.id": ["g00dcafe", "baadf00d", "qbcbtof9"], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["aiNvMk5aVu"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "genres.concepts.id" : [ + "g00dcafe", + "baadf00d", + "lmpakqz5" + ], + "genres.concepts.sourceIdentifier" : [ + "dmKTFidDls", + "um1qUlCcjg", + "DpKgb0Wdy2" + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "1R485o02Dx" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json index b356807b9..6f16c71f2 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json @@ -1,112 +1,182 @@ { - "description": "examples for the genre tests", - "createdAt": "2023-11-21T15:39:35.044218Z", - "id": "90vab5q4", - "document": { - "debug": { - "source": { - "id": "90vab5q4", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the genre tests", + "createdAt" : "2024-11-13T08:43:26.604702Z", + "id" : "wbrfsaz5", + "document" : { + "debug" : { + "source" : { + "id" : "wbrfsaz5", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "iZFAZvTVR4" + "ontologyType" : "Work", + "value" : "MzC1ICZOvN" }, - "version": 58, - "modifiedTime": "1955-01-25T23:49:35Z" + "version" : 83, + "modifiedTime" : "2016-08-14T05:01:03Z" }, - "mergedTime": "1955-01-25T23:49:35Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2016-08-14T05:01:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "90vab5q4", - "title": "title-h18D0cbFB1", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "wbrfsaz5", + "title" : "title-u5hoUH5ZhF", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "iZFAZvTVR4", - "type": "Identifier" + "value" : "MzC1ICZOvN", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "90vab5q4", - "sourceIdentifier.value": "iZFAZvTVR4", - "identifiers.value": ["iZFAZvTVR4"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-h18D0cbFB1" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "wbrfsaz5", + "sourceIdentifier.value" : "MzC1ICZOvN", + "identifiers.value" : [ + "MzC1ICZOvN" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-u5hoUH5ZhF" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["iZFAZvTVR4"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "MzC1ICZOvN" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json index 770efafb2..32a53c7e4 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json @@ -1,158 +1,229 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.203349Z", - "id": "inoolbps", - "document": { - "debug": { - "source": { - "id": "inoolbps", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.610661Z", + "id" : "kx6ceruj", + "document" : { + "debug" : { + "source" : { + "id" : "kx6ceruj", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "bh6q7wkoWR" + "ontologyType" : "Work", + "value" : "KEnxzBExh6" }, - "version": 4, - "modifiedTime": "1988-02-26T07:09:16Z" + "version" : 84, + "modifiedTime" : "1971-05-14T11:26:40Z" }, - "mergedTime": "1988-02-26T07:09:16Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-05-14T11:26:40Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "inoolbps", - "title": "title-jRX3FqozNG", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "kx6ceruj", + "title" : "title-ArEMdSJPD8", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "bh6q7wkoWR", - "type": "Identifier" + "value" : "KEnxzBExh6", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "id": "sanitati", - "identifiers": [ + "id" : "sanitati", + "identifiers" : [ { - "identifierType": { - "id": "lc-subjects", - "label": "Library of Congress Subject Headings (LCSH)", - "type": "IdentifierType" + "identifierType" : { + "id" : "lc-subjects", + "label" : "Library of Congress Subject Headings (LCSH)", + "type" : "IdentifierType" }, - "value": "lcsh-sanitation", - "type": "Identifier" + "value" : "lcsh-sanitation", + "type" : "Identifier" }, { - "identifierType": { - "id": "nlm-mesh", - "label": "Medical Subject Headings (MeSH) identifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "nlm-mesh", + "label" : "Medical Subject Headings (MeSH) identifier", + "type" : "IdentifierType" }, - "value": "mesh-sanitation", - "type": "Identifier" + "value" : "mesh-sanitation", + "type" : "Identifier" } ], - "label": "Sanitation.", - "concepts": [ + "label" : "Sanitation.", + "concepts" : [ { - "label": "485o02DxPLXKke6", - "type": "Concept" + "label" : "rBAO66qqlbcmHn7", + "type" : "Concept" }, { - "label": "NacQ8QOPJdAXFgM", - "type": "Concept" + "label" : "act97zOQ6G6Rkv6", + "type" : "Concept" }, { - "label": "zC1ICZOvNWbRfsA", - "type": "Concept" + "label" : "QH5zn9bqmY6Obq6", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "inoolbps", - "sourceIdentifier.value": "bh6q7wkoWR", - "identifiers.value": ["bh6q7wkoWR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "485o02DxPLXKke6", - "NacQ8QOPJdAXFgM", - "zC1ICZOvNWbRfsA" - ], - "title": "title-jRX3FqozNG" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "kx6ceruj", + "sourceIdentifier.value" : "KEnxzBExh6", + "identifiers.value" : [ + "KEnxzBExh6" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "rBAO66qqlbcmHn7", + "act97zOQ6G6Rkv6", + "QH5zn9bqmY6Obq6" + ], + "title" : "title-ArEMdSJPD8" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"Sanitation\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["Sanitation"], - "contributors.agent.label": [], - "identifiers.value": ["bh6q7wkoWR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "Sanitation" + ], + "subjects.concepts.id" : [ + "sanitati" + ], + "subjects.concepts.sourceIdentifier" : [ + "lcsh-sanitation", + "mesh-sanitation" + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "KEnxzBExh6" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json index d252d3d0c..3d908e52f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json @@ -1,137 +1,205 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.207896Z", - "id": "6vp3bulw", - "document": { - "debug": { - "source": { - "id": "6vp3bulw", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.611102Z", + "id" : "85vigluy", + "document" : { + "debug" : { + "source" : { + "id" : "85vigluy", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "PfCPwnrkDO" + "ontologyType" : "Work", + "value" : "0xrR5Stsp3" }, - "version": 45, - "modifiedTime": "2034-03-26T04:42:25Z" + "version" : 24, + "modifiedTime" : "1940-04-20T21:57:32Z" }, - "mergedTime": "2034-03-26T04:42:25Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1940-04-20T21:57:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "6vp3bulw", - "title": "title-hZ3Z5q2ktK", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "85vigluy", + "title" : "title-YlnwWOedI3", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "PfCPwnrkDO", - "type": "Identifier" + "value" : "0xrR5Stsp3", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "London (England)", - "concepts": [ + "label" : "London (England)", + "concepts" : [ { - "label": "Z5Ju5hoUH5ZhFqr", - "type": "Concept" + "label" : "lxZzGryOg3KGy7M", + "type" : "Concept" }, { - "label": "BAO66qqlbcmHn7a", - "type": "Concept" + "label" : "z5GNUj1it3ic4OR", + "type" : "Concept" }, { - "label": "ct97zOQ6G6Rkv6Q", - "type": "Concept" + "label" : "9LzJV7M3Kvqw9fG", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "6vp3bulw", - "sourceIdentifier.value": "PfCPwnrkDO", - "identifiers.value": ["PfCPwnrkDO"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "Z5Ju5hoUH5ZhFqr", - "BAO66qqlbcmHn7a", - "ct97zOQ6G6Rkv6Q" - ], - "title": "title-hZ3Z5q2ktK" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "85vigluy", + "sourceIdentifier.value" : "0xrR5Stsp3", + "identifiers.value" : [ + "0xrR5Stsp3" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "lxZzGryOg3KGy7M", + "z5GNUj1it3ic4OR", + "9LzJV7M3Kvqw9fG" + ], + "title" : "title-YlnwWOedI3" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"London (England)\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["London (England)"], - "contributors.agent.label": [], - "identifiers.value": ["PfCPwnrkDO"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "London (England)" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "0xrR5Stsp3" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json index 7aeb5149b..f45b0ca76 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json @@ -1,137 +1,205 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.209365Z", - "id": "cerujhar", - "document": { - "debug": { - "source": { - "id": "cerujhar", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.611529Z", + "id" : "eadt8hhm", + "document" : { + "debug" : { + "source" : { + "id" : "eadt8hhm", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "xzBExh6kx6" + "ontologyType" : "Work", + "value" : "SSg7erLcgx" }, - "version": 30, - "modifiedTime": "2050-03-03T12:29:26Z" + "version" : 18, + "modifiedTime" : "2010-09-19T13:34:03Z" }, - "mergedTime": "2050-03-03T12:29:26Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2010-09-19T13:34:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cerujhar", - "title": "title-MdSJPD8H80", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "eadt8hhm", + "title" : "title-zSHRFusVBN", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "xzBExh6kx6", - "type": "Identifier" + "value" : "SSg7erLcgx", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "Psychology, Pathological", - "concepts": [ + "label" : "Psychology, Pathological", + "concepts" : [ { - "label": "H5zn9bqmY6Obq6l", - "type": "Concept" + "label" : "ol7E1K1L8XUhcLZ", + "type" : "Concept" }, { - "label": "xZzGryOg3KGy7Mz", - "type": "Concept" + "label" : "hc35m9C4DAgxJAj", + "type" : "Concept" }, { - "label": "5GNUj1it3ic4OR9", - "type": "Concept" + "label" : "Eybh6q7wkoWRiNO", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cerujhar", - "sourceIdentifier.value": "xzBExh6kx6", - "identifiers.value": ["xzBExh6kx6"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "H5zn9bqmY6Obq6l", - "xZzGryOg3KGy7Mz", - "5GNUj1it3ic4OR9" - ], - "title": "title-MdSJPD8H80" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "eadt8hhm", + "sourceIdentifier.value" : "SSg7erLcgx", + "identifiers.value" : [ + "SSg7erLcgx" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "ol7E1K1L8XUhcLZ", + "hc35m9C4DAgxJAj", + "Eybh6q7wkoWRiNO" + ], + "title" : "title-zSHRFusVBN" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["Psychology, Pathological"], - "contributors.agent.label": [], - "identifiers.value": ["xzBExh6kx6"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "Psychology, Pathological" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "SSg7erLcgx" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json index 7ddccf483..ecc79b692 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json @@ -1,149 +1,219 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.210827Z", - "id": "igluyxyl", - "document": { - "debug": { - "source": { - "id": "igluyxyl", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.612330Z", + "id" : "3kdpeojw", + "document" : { + "debug" : { + "source" : { + "id" : "3kdpeojw", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "R5Stsp385V" + "ontologyType" : "Work", + "value" : "SqD7qcFvAY" }, - "version": 91, - "modifiedTime": "2014-07-17T10:56:43Z" + "version" : 21, + "modifiedTime" : "2051-08-21T14:08:03Z" }, - "mergedTime": "2014-07-17T10:56:43Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2051-08-21T14:08:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "igluyxyl", - "title": "title-wWOedI3v8S", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "3kdpeojw", + "title" : "title-FeGzni8X1i", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "R5Stsp385V", - "type": "Identifier" + "value" : "SqD7qcFvAY", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "id": "darwin01", - "identifiers": [ + "id" : "darwin01", + "identifiers" : [ { - "identifierType": { - "id": "lc-names", - "label": "Library of Congress Name authority records", - "type": "IdentifierType" + "identifierType" : { + "id" : "lc-names", + "label" : "Library of Congress Name authority records", + "type" : "IdentifierType" }, - "value": "lcnames-darwin", - "type": "Identifier" + "value" : "lcnames-darwin", + "type" : "Identifier" } ], - "label": "Darwin \"Jones\", Charles", - "concepts": [ + "label" : "Darwin \"Jones\", Charles", + "concepts" : [ { - "label": "LzJV7M3Kvqw9fGo", - "type": "Concept" + "label" : "oLbpS5jRX3FqozN", + "type" : "Concept" }, { - "label": "l7E1K1L8XUhcLZh", - "type": "Concept" + "label" : "GJ9PfCPwnrkDO6V", + "type" : "Concept" }, { - "label": "c35m9C4DAgxJAjE", - "type": "Concept" + "label" : "p3bULWghZ3Z5q2k", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "igluyxyl", - "sourceIdentifier.value": "R5Stsp385V", - "identifiers.value": ["R5Stsp385V"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "LzJV7M3Kvqw9fGo", - "l7E1K1L8XUhcLZh", - "c35m9C4DAgxJAjE" - ], - "title": "title-wWOedI3v8S" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "3kdpeojw", + "sourceIdentifier.value" : "SqD7qcFvAY", + "identifiers.value" : [ + "SqD7qcFvAY" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "oLbpS5jRX3FqozN", + "GJ9PfCPwnrkDO6V", + "p3bULWghZ3Z5q2k" + ], + "title" : "title-FeGzni8X1i" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["Darwin \"Jones\", Charles"], - "contributors.agent.label": [], - "identifiers.value": ["R5Stsp385V"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "Darwin \"Jones\", Charles" + ], + "subjects.concepts.id" : [ + "darwin01" + ], + "subjects.concepts.sourceIdentifier" : [ + "lcnames-darwin" + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "SqD7qcFvAY" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json index 819f706ba..4ba1836a0 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json @@ -1,197 +1,265 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.219837Z", - "id": "t8hhmnzs", - "document": { - "debug": { - "source": { - "id": "t8hhmnzs", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.613143Z", + "id" : "ppcdklf9", + "document" : { + "debug" : { + "source" : { + "id" : "ppcdklf9", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "7erLcgxEad" + "ontologyType" : "Work", + "value" : "3o0GGLKeJC" }, - "version": 3, - "modifiedTime": "2013-05-09T02:35:31Z" + "version" : 31, + "modifiedTime" : "2004-11-14T20:49:37Z" }, - "mergedTime": "2013-05-09T02:35:31Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2004-11-14T20:49:37Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "t8hhmnzs", - "title": "title-RFusVBNn8S", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "ppcdklf9", + "title" : "title-BG0vJlw8MZ", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "7erLcgxEad", - "type": "Identifier" + "value" : "3o0GGLKeJC", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "London (England)", - "concepts": [ + "label" : "London (England)", + "concepts" : [ { - "label": "Z5Ju5hoUH5ZhFqr", - "type": "Concept" + "label" : "lxZzGryOg3KGy7M", + "type" : "Concept" }, { - "label": "BAO66qqlbcmHn7a", - "type": "Concept" + "label" : "z5GNUj1it3ic4OR", + "type" : "Concept" }, { - "label": "ct97zOQ6G6Rkv6Q", - "type": "Concept" + "label" : "9LzJV7M3Kvqw9fG", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "label": "Psychology, Pathological", - "concepts": [ + "label" : "Psychology, Pathological", + "concepts" : [ { - "label": "H5zn9bqmY6Obq6l", - "type": "Concept" + "label" : "ol7E1K1L8XUhcLZ", + "type" : "Concept" }, { - "label": "xZzGryOg3KGy7Mz", - "type": "Concept" + "label" : "hc35m9C4DAgxJAj", + "type" : "Concept" }, { - "label": "5GNUj1it3ic4OR9", - "type": "Concept" + "label" : "Eybh6q7wkoWRiNO", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "id": "darwin01", - "identifiers": [ + "id" : "darwin01", + "identifiers" : [ { - "identifierType": { - "id": "lc-names", - "label": "Library of Congress Name authority records", - "type": "IdentifierType" + "identifierType" : { + "id" : "lc-names", + "label" : "Library of Congress Name authority records", + "type" : "IdentifierType" }, - "value": "lcnames-darwin", - "type": "Identifier" + "value" : "lcnames-darwin", + "type" : "Identifier" } ], - "label": "Darwin \"Jones\", Charles", - "concepts": [ + "label" : "Darwin \"Jones\", Charles", + "concepts" : [ { - "label": "LzJV7M3Kvqw9fGo", - "type": "Concept" + "label" : "oLbpS5jRX3FqozN", + "type" : "Concept" }, { - "label": "l7E1K1L8XUhcLZh", - "type": "Concept" + "label" : "GJ9PfCPwnrkDO6V", + "type" : "Concept" }, { - "label": "c35m9C4DAgxJAjE", - "type": "Concept" + "label" : "p3bULWghZ3Z5q2k", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "t8hhmnzs", - "sourceIdentifier.value": "7erLcgxEad", - "identifiers.value": ["7erLcgxEad"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ - "Z5Ju5hoUH5ZhFqr", - "BAO66qqlbcmHn7a", - "ct97zOQ6G6Rkv6Q", - "H5zn9bqmY6Obq6l", - "xZzGryOg3KGy7Mz", - "5GNUj1it3ic4OR9", - "LzJV7M3Kvqw9fGo", - "l7E1K1L8XUhcLZh", - "c35m9C4DAgxJAjE" - ], - "title": "title-RFusVBNn8S" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ppcdklf9", + "sourceIdentifier.value" : "3o0GGLKeJC", + "identifiers.value" : [ + "3o0GGLKeJC" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + "lxZzGryOg3KGy7M", + "z5GNUj1it3ic4OR", + "9LzJV7M3Kvqw9fG", + "ol7E1K1L8XUhcLZ", + "hc35m9C4DAgxJAj", + "Eybh6q7wkoWRiNO", + "oLbpS5jRX3FqozN", + "GJ9PfCPwnrkDO6V", + "p3bULWghZ3Z5q2k" + ], + "title" : "title-BG0vJlw8MZ" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"London (England)\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ "London (England)", "Psychology, Pathological", "Darwin \"Jones\", Charles" ], - "contributors.agent.label": [], - "identifiers.value": ["7erLcgxEad"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "subjects.concepts.id" : [ + "darwin01" + ], + "subjects.concepts.sourceIdentifier" : [ + "lcnames-darwin" + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "3o0GGLKeJC" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json index 352dc0af5..1f6de3a12 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json @@ -1,112 +1,182 @@ { - "description": "examples for the subject filter tests", - "createdAt": "2023-11-21T15:39:35.221783Z", - "id": "peojwvfe", - "document": { - "debug": { - "source": { - "id": "peojwvfe", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "examples for the subject filter tests", + "createdAt" : "2024-11-13T08:43:26.613497Z", + "id" : "w0lr7wac", + "document" : { + "debug" : { + "source" : { + "id" : "w0lr7wac", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "7qcFvAY3kD" + "ontologyType" : "Work", + "value" : "ty9GY2AKxy" }, - "version": 93, - "modifiedTime": "1989-01-11T05:04:05Z" + "version" : 93, + "modifiedTime" : "2032-06-12T10:57:16Z" }, - "mergedTime": "1989-01-11T05:04:05Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2032-06-12T10:57:16Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "peojwvfe", - "title": "title-zni8X1iQV3", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "w0lr7wac", + "title" : "title-uXzrv8PglA", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "7qcFvAY3kD", - "type": "Identifier" + "value" : "ty9GY2AKxy", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "peojwvfe", - "sourceIdentifier.value": "7qcFvAY3kD", - "identifiers.value": ["7qcFvAY3kD"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-zni8X1iQV3" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "w0lr7wac", + "sourceIdentifier.value" : "ty9GY2AKxy", + "identifiers.value" : [ + "ty9GY2AKxy" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-uXzrv8PglA" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["7qcFvAY3kD"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ty9GY2AKxy" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.0.Books.json b/common/search/src/test/resources/test_documents/works.formats.0.Books.json index cb5169f5d..059d18ac9 100644 --- a/common/search/src/test/resources/test_documents/works.formats.0.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.0.Books.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.387267Z", - "id": "cfrzpe3b", - "document": { - "debug": { - "source": { - "id": "cfrzpe3b", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.444809Z", + "id" : "cfrzpe3b", + "document" : { + "debug" : { + "source" : { + "id" : "cfrzpe3b", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "yPjPNkcxB9" + "ontologyType" : "Work", + "value" : "yPjPNkcxB9" }, - "version": 65, - "modifiedTime": "1960-07-19T22:15:33Z" + "version" : 65, + "modifiedTime" : "1960-07-19T22:15:33Z" }, - "mergedTime": "1960-07-19T22:15:33Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1960-07-19T22:15:33Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cfrzpe3b", - "title": "A work with format Books", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "cfrzpe3b", + "title" : "A work with format Books", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "yPjPNkcxB9", - "type": "Identifier" + "value" : "yPjPNkcxB9", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cfrzpe3b", - "sourceIdentifier.value": "yPjPNkcxB9", - "identifiers.value": ["yPjPNkcxB9"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Books" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "cfrzpe3b", + "sourceIdentifier.value" : "yPjPNkcxB9", + "identifiers.value" : [ + "yPjPNkcxB9" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Books" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["yPjPNkcxB9"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "yPjPNkcxB9" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.1.Books.json b/common/search/src/test/resources/test_documents/works.formats.1.Books.json index c029752ae..f047a6fee 100644 --- a/common/search/src/test/resources/test_documents/works.formats.1.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.1.Books.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.459784Z", - "id": "oz3lidvn", - "document": { - "debug": { - "source": { - "id": "oz3lidvn", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.446572Z", + "id" : "oz3lidvn", + "document" : { + "debug" : { + "source" : { + "id" : "oz3lidvn", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "DIYsS5wEOk" + "ontologyType" : "Work", + "value" : "DIYsS5wEOk" }, - "version": 94, - "modifiedTime": "1992-05-05T01:31:58Z" + "version" : 94, + "modifiedTime" : "1992-05-05T01:31:58Z" }, - "mergedTime": "1992-05-05T01:31:58Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1992-05-05T01:31:58Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "oz3lidvn", - "title": "A work with format Books", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "oz3lidvn", + "title" : "A work with format Books", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "DIYsS5wEOk", - "type": "Identifier" + "value" : "DIYsS5wEOk", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "oz3lidvn", - "sourceIdentifier.value": "DIYsS5wEOk", - "identifiers.value": ["DIYsS5wEOk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Books" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "oz3lidvn", + "sourceIdentifier.value" : "DIYsS5wEOk", + "identifiers.value" : [ + "DIYsS5wEOk" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Books" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["DIYsS5wEOk"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "DIYsS5wEOk" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.2.Books.json b/common/search/src/test/resources/test_documents/works.formats.2.Books.json index d37b38d5d..92af3f496 100644 --- a/common/search/src/test/resources/test_documents/works.formats.2.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.2.Books.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.502810Z", - "id": "7y59ny1n", - "document": { - "debug": { - "source": { - "id": "7y59ny1n", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.447995Z", + "id" : "7y59ny1n", + "document" : { + "debug" : { + "source" : { + "id" : "7y59ny1n", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "T3Xiy4Slyl" + "ontologyType" : "Work", + "value" : "T3Xiy4Slyl" }, - "version": 38, - "modifiedTime": "1945-04-09T22:12:25Z" + "version" : 38, + "modifiedTime" : "1945-04-09T22:12:25Z" }, - "mergedTime": "1945-04-09T22:12:25Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1945-04-09T22:12:25Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "7y59ny1n", - "title": "A work with format Books", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "7y59ny1n", + "title" : "A work with format Books", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "T3Xiy4Slyl", - "type": "Identifier" + "value" : "T3Xiy4Slyl", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "7y59ny1n", - "sourceIdentifier.value": "T3Xiy4Slyl", - "identifiers.value": ["T3Xiy4Slyl"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Books" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "7y59ny1n", + "sourceIdentifier.value" : "T3Xiy4Slyl", + "identifiers.value" : [ + "T3Xiy4Slyl" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Books" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["T3Xiy4Slyl"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "T3Xiy4Slyl" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.3.Books.json b/common/search/src/test/resources/test_documents/works.formats.3.Books.json index bd5569477..00b2e9334 100644 --- a/common/search/src/test/resources/test_documents/works.formats.3.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.3.Books.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.540144Z", - "id": "qzquhbnz", - "document": { - "debug": { - "source": { - "id": "qzquhbnz", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.449732Z", + "id" : "qzquhbnz", + "document" : { + "debug" : { + "source" : { + "id" : "qzquhbnz", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "10w3BfGmqj" + "ontologyType" : "Work", + "value" : "10w3BfGmqj" }, - "version": 34, - "modifiedTime": "1946-10-01T09:18:22Z" + "version" : 34, + "modifiedTime" : "1946-10-01T09:18:22Z" }, - "mergedTime": "1946-10-01T09:18:22Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1946-10-01T09:18:22Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "qzquhbnz", - "title": "A work with format Books", - "alternativeTitles": [], - "workType": { - "id": "a", - "label": "Books", - "type": "Format" + "display" : { + "id" : "qzquhbnz", + "title" : "A work with format Books", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "a", + "label" : "Books", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "10w3BfGmqj", - "type": "Identifier" + "value" : "10w3BfGmqj", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "qzquhbnz", - "sourceIdentifier.value": "10w3BfGmqj", - "identifiers.value": ["10w3BfGmqj"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Books" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "qzquhbnz", + "sourceIdentifier.value" : "10w3BfGmqj", + "identifiers.value" : [ + "10w3BfGmqj" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Books" }, - "aggregatableValues": { - "workType": ["{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "a", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["10w3BfGmqj"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "a", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "10w3BfGmqj" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.4.Journals.json b/common/search/src/test/resources/test_documents/works.formats.4.Journals.json index 9db5d3dc9..f9173ba20 100644 --- a/common/search/src/test/resources/test_documents/works.formats.4.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.4.Journals.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.573Z", - "id": "rbbzqhyt", - "document": { - "debug": { - "source": { - "id": "rbbzqhyt", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.451264Z", + "id" : "rbbzqhyt", + "document" : { + "debug" : { + "source" : { + "id" : "rbbzqhyt", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "149f5nQPon" + "ontologyType" : "Work", + "value" : "149f5nQPon" }, - "version": 74, - "modifiedTime": "1956-07-19T10:08:24Z" + "version" : 74, + "modifiedTime" : "1956-07-19T10:08:24Z" }, - "mergedTime": "1956-07-19T10:08:24Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1956-07-19T10:08:24Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "rbbzqhyt", - "title": "A work with format Journals", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "rbbzqhyt", + "title" : "A work with format Journals", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "149f5nQPon", - "type": "Identifier" + "value" : "149f5nQPon", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "rbbzqhyt", - "sourceIdentifier.value": "149f5nQPon", - "identifiers.value": ["149f5nQPon"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Journals" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "rbbzqhyt", + "sourceIdentifier.value" : "149f5nQPon", + "identifiers.value" : [ + "149f5nQPon" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Journals" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["149f5nQPon"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "149f5nQPon" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.5.Journals.json b/common/search/src/test/resources/test_documents/works.formats.5.Journals.json index ef46f29ad..372382cd2 100644 --- a/common/search/src/test/resources/test_documents/works.formats.5.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.5.Journals.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.584710Z", - "id": "ftxlgr2v", - "document": { - "debug": { - "source": { - "id": "ftxlgr2v", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.452520Z", + "id" : "ftxlgr2v", + "document" : { + "debug" : { + "source" : { + "id" : "ftxlgr2v", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "RLx5N8CTsZ" + "ontologyType" : "Work", + "value" : "RLx5N8CTsZ" }, - "version": 9, - "modifiedTime": "1985-11-10T14:57:32Z" + "version" : 9, + "modifiedTime" : "1985-11-10T14:57:32Z" }, - "mergedTime": "1985-11-10T14:57:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1985-11-10T14:57:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ftxlgr2v", - "title": "A work with format Journals", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "ftxlgr2v", + "title" : "A work with format Journals", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "RLx5N8CTsZ", - "type": "Identifier" + "value" : "RLx5N8CTsZ", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ftxlgr2v", - "sourceIdentifier.value": "RLx5N8CTsZ", - "identifiers.value": ["RLx5N8CTsZ"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Journals" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ftxlgr2v", + "sourceIdentifier.value" : "RLx5N8CTsZ", + "identifiers.value" : [ + "RLx5N8CTsZ" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Journals" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["RLx5N8CTsZ"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "RLx5N8CTsZ" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.6.Journals.json b/common/search/src/test/resources/test_documents/works.formats.6.Journals.json index 96dbb844e..e9b5bd856 100644 --- a/common/search/src/test/resources/test_documents/works.formats.6.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.6.Journals.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.588938Z", - "id": "o5wujppw", - "document": { - "debug": { - "source": { - "id": "o5wujppw", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.453857Z", + "id" : "o5wujppw", + "document" : { + "debug" : { + "source" : { + "id" : "o5wujppw", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "3jkbPOk92T" + "ontologyType" : "Work", + "value" : "3jkbPOk92T" }, - "version": 82, - "modifiedTime": "2064-12-19T06:39:42Z" + "version" : 82, + "modifiedTime" : "2064-12-19T06:39:42Z" }, - "mergedTime": "2064-12-19T06:39:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2064-12-19T06:39:42Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "o5wujppw", - "title": "A work with format Journals", - "alternativeTitles": [], - "workType": { - "id": "d", - "label": "Journals", - "type": "Format" + "display" : { + "id" : "o5wujppw", + "title" : "A work with format Journals", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "d", + "label" : "Journals", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "3jkbPOk92T", - "type": "Identifier" + "value" : "3jkbPOk92T", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "o5wujppw", - "sourceIdentifier.value": "3jkbPOk92T", - "identifiers.value": ["3jkbPOk92T"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Journals" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "o5wujppw", + "sourceIdentifier.value" : "3jkbPOk92T", + "identifiers.value" : [ + "3jkbPOk92T" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Journals" }, - "aggregatableValues": { - "workType": ["{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "d", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["3jkbPOk92T"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "d", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "3jkbPOk92T" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.7.Audio.json b/common/search/src/test/resources/test_documents/works.formats.7.Audio.json index 3728a80a6..c3306f74b 100644 --- a/common/search/src/test/resources/test_documents/works.formats.7.Audio.json +++ b/common/search/src/test/resources/test_documents/works.formats.7.Audio.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.594339Z", - "id": "jtqzypmq", - "document": { - "debug": { - "source": { - "id": "jtqzypmq", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.455066Z", + "id" : "jtqzypmq", + "document" : { + "debug" : { + "source" : { + "id" : "jtqzypmq", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "kstGwqrv9f" + "ontologyType" : "Work", + "value" : "kstGwqrv9f" }, - "version": 4, - "modifiedTime": "2029-04-07T22:56:33Z" + "version" : 4, + "modifiedTime" : "2029-04-07T22:56:33Z" }, - "mergedTime": "2029-04-07T22:56:33Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2029-04-07T22:56:33Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "jtqzypmq", - "title": "A work with format Audio", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "jtqzypmq", + "title" : "A work with format Audio", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "kstGwqrv9f", - "type": "Identifier" + "value" : "kstGwqrv9f", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "jtqzypmq", - "sourceIdentifier.value": "kstGwqrv9f", - "identifiers.value": ["kstGwqrv9f"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Audio" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jtqzypmq", + "sourceIdentifier.value" : "kstGwqrv9f", + "identifiers.value" : [ + "kstGwqrv9f" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Audio" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["kstGwqrv9f"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "kstGwqrv9f" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.8.Audio.json b/common/search/src/test/resources/test_documents/works.formats.8.Audio.json index ecb990ba0..10f46b26a 100644 --- a/common/search/src/test/resources/test_documents/works.formats.8.Audio.json +++ b/common/search/src/test/resources/test_documents/works.formats.8.Audio.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.604033Z", - "id": "qgk6jumb", - "document": { - "debug": { - "source": { - "id": "qgk6jumb", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.456568Z", + "id" : "qgk6jumb", + "document" : { + "debug" : { + "source" : { + "id" : "qgk6jumb", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "8yA2WkbMzo" + "ontologyType" : "Work", + "value" : "8yA2WkbMzo" }, - "version": 47, - "modifiedTime": "1988-04-07T05:47:45Z" + "version" : 47, + "modifiedTime" : "1988-04-07T05:47:45Z" }, - "mergedTime": "1988-04-07T05:47:45Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1988-04-07T05:47:45Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "qgk6jumb", - "title": "A work with format Audio", - "alternativeTitles": [], - "workType": { - "id": "i", - "label": "Audio", - "type": "Format" + "display" : { + "id" : "qgk6jumb", + "title" : "A work with format Audio", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "i", + "label" : "Audio", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "8yA2WkbMzo", - "type": "Identifier" + "value" : "8yA2WkbMzo", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "qgk6jumb", - "sourceIdentifier.value": "8yA2WkbMzo", - "identifiers.value": ["8yA2WkbMzo"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Audio" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "qgk6jumb", + "sourceIdentifier.value" : "8yA2WkbMzo", + "identifiers.value" : [ + "8yA2WkbMzo" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Audio" }, - "aggregatableValues": { - "workType": ["{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "i", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["8yA2WkbMzo"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "i", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "8yA2WkbMzo" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json b/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json index 5b8dfe749..c8badf857 100644 --- a/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json +++ b/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json @@ -1,117 +1,188 @@ { - "description": "one of a list of works with a variety of formats", - "createdAt": "2023-11-21T15:39:33.616019Z", - "id": "wvcw0lp9", - "document": { - "debug": { - "source": { - "id": "wvcw0lp9", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "one of a list of works with a variety of formats", + "createdAt" : "2024-11-13T08:43:26.459685Z", + "id" : "wvcw0lp9", + "document" : { + "debug" : { + "source" : { + "id" : "wvcw0lp9", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "h2CF3B2FRN" + "ontologyType" : "Work", + "value" : "h2CF3B2FRN" }, - "version": 3, - "modifiedTime": "1938-05-13T23:46:55Z" + "version" : 3, + "modifiedTime" : "1938-05-13T23:46:55Z" }, - "mergedTime": "1938-05-13T23:46:55Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1938-05-13T23:46:55Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "wvcw0lp9", - "title": "A work with format Pictures", - "alternativeTitles": [], - "workType": { - "id": "k", - "label": "Pictures", - "type": "Format" + "display" : { + "id" : "wvcw0lp9", + "title" : "A work with format Pictures", + "alternativeTitles" : [ + ], + "workType" : { + "id" : "k", + "label" : "Pictures", + "type" : "Format" }, - "contributors": [], - "identifiers": [ + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "h2CF3B2FRN", - "type": "Identifier" + "value" : "h2CF3B2FRN", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "wvcw0lp9", - "sourceIdentifier.value": "h2CF3B2FRN", - "identifiers.value": ["h2CF3B2FRN"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with format Pictures" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "wvcw0lp9", + "sourceIdentifier.value" : "h2CF3B2FRN", + "identifiers.value" : [ + "h2CF3B2FRN" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with format Pictures" }, - "aggregatableValues": { - "workType": ["{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}"], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": "k", - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["h2CF3B2FRN"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : "k", + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "h2CF3B2FRN" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.genres.json b/common/search/src/test/resources/test_documents/works.genres.json index 8e43696c7..7e1b6eb8a 100644 --- a/common/search/src/test/resources/test_documents/works.genres.json +++ b/common/search/src/test/resources/test_documents/works.genres.json @@ -1,149 +1,217 @@ { - "description": "a work with different concepts in the genre", - "createdAt": "2023-11-21T15:39:33.884759Z", - "id": "jlp05mgl", - "document": { - "debug": { - "source": { - "id": "jlp05mgl", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "a work with different concepts in the genre", + "createdAt" : "2024-11-13T08:43:26.490041Z", + "id" : "jlp05mgl", + "document" : { + "debug" : { + "source" : { + "id" : "jlp05mgl", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "iIjgaHUI5C" + "ontologyType" : "Work", + "value" : "iIjgaHUI5C" }, - "version": 91, - "modifiedTime": "1978-12-03T12:21:42Z" + "version" : 91, + "modifiedTime" : "1978-12-03T12:21:42Z" }, - "mergedTime": "1978-12-03T12:21:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1978-12-03T12:21:42Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "jlp05mgl", - "title": "A work with different concepts in the genre", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "jlp05mgl", + "title" : "A work with different concepts in the genre", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "iIjgaHUI5C", - "type": "Identifier" + "value" : "iIjgaHUI5C", + "type" : "Identifier" } ], - "subjects": [], - "genres": [ + "subjects" : [ + ], + "genres" : [ { - "label": "Electronic books", - "concepts": [ + "label" : "Electronic books", + "concepts" : [ { - "label": "Conceptual Conversations", - "type": "Concept" + "label" : "Conceptual Conversations", + "type" : "Concept" }, { - "label": "Pleasant Paris", - "type": "Place" + "label" : "Pleasant Paris", + "type" : "Place" }, { - "id": "buvphmut", - "identifiers": [ + "id" : "buvphmut", + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "nJ8zsEX9al", - "type": "Identifier" + "value" : "nJ8zsEX9al", + "type" : "Identifier" } ], - "label": "Past Prehistory", - "type": "Period" + "label" : "Past Prehistory", + "type" : "Period" } ], - "type": "Genre" + "type" : "Genre" } ], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ "Conceptual Conversations", "Pleasant Paris", "Past Prehistory" ], - "id": "jlp05mgl", - "sourceIdentifier.value": "iIjgaHUI5C", - "identifiers.value": ["iIjgaHUI5C"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with different concepts in the genre" + "id" : "jlp05mgl", + "sourceIdentifier.value" : "iIjgaHUI5C", + "identifiers.value" : [ + "iIjgaHUI5C" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with different concepts in the genre" }, - "aggregatableValues": { - "workType": [], - "genres.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ "{\"label\":\"Electronic books\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": ["Electronic books"], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["iIjgaHUI5C"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + "Electronic books" + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "iIjgaHUI5C" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.invisible.0.json b/common/search/src/test/resources/test_documents/works.invisible.0.json index 99d8c0d81..1c14e27a0 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.0.json +++ b/common/search/src/test/resources/test_documents/works.invisible.0.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of invisible works", - "createdAt" : "2022-10-03T10:25:18.781Z", + "createdAt" : "2024-05-15T08:17:25.214583Z", "id" : "rczekocx", "document" : { "debug" : { @@ -19,6 +19,8 @@ "mergedTime" : "2001-07-02T19:43:15Z", "indexedTime" : "2001-01-01T01:01:01Z", "invisibilityReasons" : [ + ], + "mergeCandidates" : [ ] }, "type" : "Invisible" diff --git a/common/search/src/test/resources/test_documents/works.invisible.1.json b/common/search/src/test/resources/test_documents/works.invisible.1.json index 67bcd85ba..c597beb7e 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.1.json +++ b/common/search/src/test/resources/test_documents/works.invisible.1.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of invisible works", - "createdAt" : "2022-10-03T10:25:18.781Z", + "createdAt" : "2024-05-15T08:17:25.214801Z", "id" : "60edujsq", "document" : { "debug" : { @@ -19,6 +19,8 @@ "mergedTime" : "2030-05-24T10:04:01Z", "indexedTime" : "2001-01-01T01:01:01Z", "invisibilityReasons" : [ + ], + "mergeCandidates" : [ ] }, "type" : "Invisible" diff --git a/common/search/src/test/resources/test_documents/works.invisible.2.json b/common/search/src/test/resources/test_documents/works.invisible.2.json index 7ead9a555..58f120442 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.2.json +++ b/common/search/src/test/resources/test_documents/works.invisible.2.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of invisible works", - "createdAt" : "2022-10-03T10:25:18.782Z", + "createdAt" : "2024-05-15T08:17:25.214981Z", "id" : "0uk2wzxd", "document" : { "debug" : { @@ -19,6 +19,8 @@ "mergedTime" : "2056-08-06T12:14:07Z", "indexedTime" : "2001-01-01T01:01:01Z", "invisibilityReasons" : [ + ], + "mergeCandidates" : [ ] }, "type" : "Invisible" diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json index afaf21ae3..069e463f7 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json @@ -1,139 +1,211 @@ { - "description": "a work with licensed digital items", - "createdAt": "2023-11-21T15:39:33.735122Z", - "id": "uh8gnkqk", - "document": { - "debug": { - "source": { - "id": "uh8gnkqk", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a work with licensed digital items", + "createdAt" : "2024-11-13T08:43:26.480307Z", + "id" : "uh8gnkqk", + "document" : { + "debug" : { + "source" : { + "id" : "uh8gnkqk", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "5UMJEwTIE8" + "ontologyType" : "Work", + "value" : "5UMJEwTIE8" }, - "version": 36, - "modifiedTime": "2004-04-05T10:15:53Z" + "version" : 36, + "modifiedTime" : "2004-04-05T10:15:53Z" }, - "mergedTime": "2004-04-05T10:15:53Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2004-04-05T10:15:53Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "uh8gnkqk", - "title": "title-P9ugIes0pz", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "uh8gnkqk", + "title" : "title-P9ugIes0pz", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "5UMJEwTIE8", - "type": "Identifier" + "value" : "5UMJEwTIE8", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/swj.jpg/info.json", - "credit": "Credit line: VmALe83", - "linkText": "Link text: BJ6dy5rBOb", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/swj.jpg/info.json", + "credit" : "Credit line: VmALe83", + "linkText" : "Link text: BJ6dy5rBOb", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "uh8gnkqk", - "sourceIdentifier.value": "5UMJEwTIE8", - "identifiers.value": ["5UMJEwTIE8"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-P9ugIes0pz" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "uh8gnkqk", + "sourceIdentifier.value" : "5UMJEwTIE8", + "identifiers.value" : [ + "5UMJEwTIE8" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-P9ugIes0pz" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["5UMJEwTIE8"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "5UMJEwTIE8" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json index 6f47e0a88..31fc98878 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json @@ -1,138 +1,210 @@ { - "description": "a work with licensed digital items", - "createdAt": "2023-11-21T15:39:33.737394Z", - "id": "sojyedta", - "document": { - "debug": { - "source": { - "id": "sojyedta", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "a work with licensed digital items", + "createdAt" : "2024-11-13T08:43:26.480726Z", + "id" : "sojyedta", + "document" : { + "debug" : { + "source" : { + "id" : "sojyedta", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "xSR5EK6UWY" + "ontologyType" : "Work", + "value" : "xSR5EK6UWY" }, - "version": 62, - "modifiedTime": "2030-04-29T05:27:13Z" + "version" : 62, + "modifiedTime" : "2030-04-29T05:27:13Z" }, - "mergedTime": "2030-04-29T05:27:13Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2030-04-29T05:27:13Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "sojyedta", - "title": "title-w5YmCWk8Hy", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "sojyedta", + "title" : "title-w5YmCWk8Hy", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "xSR5EK6UWY", - "type": "Identifier" + "value" : "xSR5EK6UWY", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Voe.jpg/info.json", - "credit": "Credit line: omuzt2Z", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Voe.jpg/info.json", + "credit" : "Credit line: omuzt2Z", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "sojyedta", - "sourceIdentifier.value": "xSR5EK6UWY", - "identifiers.value": ["xSR5EK6UWY"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-w5YmCWk8Hy" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "sojyedta", + "sourceIdentifier.value" : "xSR5EK6UWY", + "identifiers.value" : [ + "xSR5EK6UWY" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-w5YmCWk8Hy" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["xSR5EK6UWY"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "xSR5EK6UWY" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json index 1c5ebb6b6..cc8c0742d 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json @@ -1,137 +1,209 @@ { - "description": "a work with licensed digital items", - "createdAt": "2023-11-21T15:39:33.737959Z", - "id": "fxryjmiz", - "document": { - "debug": { - "source": { - "id": "fxryjmiz", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with licensed digital items", + "createdAt" : "2024-11-13T08:43:26.481130Z", + "id" : "fxryjmiz", + "document" : { + "debug" : { + "source" : { + "id" : "fxryjmiz", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "D9r1zHmiHw" + "ontologyType" : "Work", + "value" : "D9r1zHmiHw" }, - "version": 94, - "modifiedTime": "1984-06-01T20:55:52Z" + "version" : 94, + "modifiedTime" : "1984-06-01T20:55:52Z" }, - "mergedTime": "1984-06-01T20:55:52Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1984-06-01T20:55:52Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "fxryjmiz", - "title": "title-gL6jXRK5E3", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "fxryjmiz", + "title" : "title-gL6jXRK5E3", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "D9r1zHmiHw", - "type": "Identifier" + "value" : "D9r1zHmiHw", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Tl2.jpg/info.json", - "license": { - "id": "cc-by-nc", - "label": "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Tl2.jpg/info.json", + "license" : { + "id" : "cc-by-nc", + "label" : "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + "url" : "https://creativecommons.org/licenses/by-nc/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "fxryjmiz", - "sourceIdentifier.value": "D9r1zHmiHw", - "identifiers.value": ["D9r1zHmiHw"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-gL6jXRK5E3" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "fxryjmiz", + "sourceIdentifier.value" : "D9r1zHmiHw", + "identifiers.value" : [ + "D9r1zHmiHw" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-gL6jXRK5E3" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by-nc\",\"label\":\"Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)\",\"url\":\"https://creativecommons.org/licenses/by-nc/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["D9r1zHmiHw"], - "items.locations.license.id": ["cc-by-nc"], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "D9r1zHmiHw" + ], + "items.locations.license.id" : [ + "cc-by-nc" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json index ded394eaf..0ba8e749c 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json @@ -1,164 +1,237 @@ { - "description": "a work with licensed digital items", - "createdAt": "2023-11-21T15:39:33.738490Z", - "id": "ub2i8snt", - "document": { - "debug": { - "source": { - "id": "ub2i8snt", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with licensed digital items", + "createdAt" : "2024-11-13T08:43:26.481613Z", + "id" : "ub2i8snt", + "document" : { + "debug" : { + "source" : { + "id" : "ub2i8snt", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "by26w1evrA" + "ontologyType" : "Work", + "value" : "by26w1evrA" }, - "version": 43, - "modifiedTime": "2066-07-14T02:52:53Z" + "version" : 43, + "modifiedTime" : "2066-07-14T02:52:53Z" }, - "mergedTime": "2066-07-14T02:52:53Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2066-07-14T02:52:53Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ub2i8snt", - "title": "title-YSKPkF3m7X", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "ub2i8snt", + "title" : "title-YSKPkF3m7X", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "by26w1evrA", - "type": "Identifier" + "value" : "by26w1evrA", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/U7a.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/U7a.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" }, { - "identifiers": [], - "locations": [ + "identifiers" : [ + ], + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/E8E.jpg/info.json", - "credit": "Credit line: W7WKCBW", - "license": { - "id": "cc-by-nc", - "label": "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - "url": "https://creativecommons.org/licenses/by-nc/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/E8E.jpg/info.json", + "credit" : "Credit line: W7WKCBW", + "license" : { + "id" : "cc-by-nc", + "label" : "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + "url" : "https://creativecommons.org/licenses/by-nc/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ub2i8snt", - "sourceIdentifier.value": "by26w1evrA", - "identifiers.value": ["by26w1evrA"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-YSKPkF3m7X" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ub2i8snt", + "sourceIdentifier.value" : "by26w1evrA", + "identifiers.value" : [ + "by26w1evrA" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-YSKPkF3m7X" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by-nc\",\"label\":\"Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)\",\"url\":\"https://creativecommons.org/licenses/by-nc/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["by26w1evrA"], - "items.locations.license.id": ["cc-by", "cc-by-nc"], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [ + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "by26w1evrA" + ], + "items.locations.license.id" : [ + "cc-by", + "cc-by-nc" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ "iiif-presentation", "iiif-presentation" ], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json index 376ce7189..ddbf1a20d 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json @@ -1,112 +1,182 @@ { - "description": "a work with licensed digital items", - "createdAt": "2023-11-21T15:39:33.758219Z", - "id": "abt11p2s", - "document": { - "debug": { - "source": { - "id": "abt11p2s", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work with licensed digital items", + "createdAt" : "2024-11-13T08:43:26.482177Z", + "id" : "abt11p2s", + "document" : { + "debug" : { + "source" : { + "id" : "abt11p2s", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "Jxv45oXcss" + "ontologyType" : "Work", + "value" : "Jxv45oXcss" }, - "version": 33, - "modifiedTime": "1983-08-27T05:28:32Z" + "version" : 33, + "modifiedTime" : "1983-08-27T05:28:32Z" }, - "mergedTime": "1983-08-27T05:28:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1983-08-27T05:28:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "abt11p2s", - "title": "title-lO6WXilF8i", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "abt11p2s", + "title" : "title-lO6WXilF8i", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "Jxv45oXcss", - "type": "Identifier" + "value" : "Jxv45oXcss", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "abt11p2s", - "sourceIdentifier.value": "Jxv45oXcss", - "identifiers.value": ["Jxv45oXcss"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-lO6WXilF8i" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "abt11p2s", + "sourceIdentifier.value" : "Jxv45oXcss", + "identifiers.value" : [ + "Jxv45oXcss" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-lO6WXilF8i" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Jxv45oXcss"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Jxv45oXcss" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json index 87754df77..da09db10d 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json @@ -1,157 +1,234 @@ { - "description": "works with items with other identifiers", - "createdAt": "2023-11-21T15:39:34.204242Z", - "id": "hdjyypp6", - "document": { - "debug": { - "source": { - "id": "hdjyypp6", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with items with other identifiers", + "createdAt" : "2024-11-13T08:43:26.517276Z", + "id" : "hdjyypp6", + "document" : { + "debug" : { + "source" : { + "id" : "hdjyypp6", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "voGpMYI3LU" + "ontologyType" : "Work", + "value" : "voGpMYI3LU" }, - "version": 48, - "modifiedTime": "2066-12-22T15:52:01Z" + "version" : 48, + "modifiedTime" : "2066-12-22T15:52:01Z" }, - "mergedTime": "2066-12-22T15:52:01Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2066-12-22T15:52:01Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "hdjyypp6", - "title": "title-93zt70MSjf", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "hdjyypp6", + "title" : "title-93zt70MSjf", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "voGpMYI3LU", - "type": "Identifier" + "value" : "voGpMYI3LU", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "sq6vd1tu", - "identifiers": [ + "id" : "sq6vd1tu", + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "xJJR2dtnlu", - "type": "Identifier" + "value" : "xJJR2dtnlu", + "type" : "Identifier" }, { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "MKDvFJ5itR", - "type": "Identifier" + "value" : "MKDvFJ5itR", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/JtP.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/JtP.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "hdjyypp6", - "sourceIdentifier.value": "voGpMYI3LU", - "identifiers.value": ["voGpMYI3LU"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["sq6vd1tu"], - "items.identifiers.value": ["xJJR2dtnlu", "MKDvFJ5itR"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-93zt70MSjf" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "hdjyypp6", + "sourceIdentifier.value" : "voGpMYI3LU", + "identifiers.value" : [ + "voGpMYI3LU" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "sq6vd1tu" + ], + "items.identifiers.value" : [ + "xJJR2dtnlu", + "MKDvFJ5itR" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-93zt70MSjf" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["voGpMYI3LU"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["sq6vd1tu"], - "items.identifiers.value": ["xJJR2dtnlu", "MKDvFJ5itR"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "voGpMYI3LU" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "sq6vd1tu" + ], + "items.identifiers.value" : [ + "xJJR2dtnlu", + "MKDvFJ5itR" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json index 4f21d1aec..92f66645f 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json @@ -1,157 +1,234 @@ { - "description": "works with items with other identifiers", - "createdAt": "2023-11-21T15:39:34.208379Z", - "id": "jemj47jb", - "document": { - "debug": { - "source": { - "id": "jemj47jb", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with items with other identifiers", + "createdAt" : "2024-11-13T08:43:26.517762Z", + "id" : "jemj47jb", + "document" : { + "debug" : { + "source" : { + "id" : "jemj47jb", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "W2xfjSjI6E" + "ontologyType" : "Work", + "value" : "W2xfjSjI6E" }, - "version": 8, - "modifiedTime": "2047-01-04T09:41:20Z" + "version" : 8, + "modifiedTime" : "2047-01-04T09:41:20Z" }, - "mergedTime": "2047-01-04T09:41:20Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2047-01-04T09:41:20Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "jemj47jb", - "title": "title-07LdJrNoV7", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "jemj47jb", + "title" : "title-07LdJrNoV7", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "W2xfjSjI6E", - "type": "Identifier" + "value" : "W2xfjSjI6E", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "fltnygzk", - "identifiers": [ + "id" : "fltnygzk", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "ONqqpCuC2L", - "type": "Identifier" + "value" : "ONqqpCuC2L", + "type" : "Identifier" }, { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "BNAtB8mhIM", - "type": "Identifier" + "value" : "BNAtB8mhIM", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/zFk.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/zFk.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "jemj47jb", - "sourceIdentifier.value": "W2xfjSjI6E", - "identifiers.value": ["W2xfjSjI6E"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["fltnygzk"], - "items.identifiers.value": ["ONqqpCuC2L", "BNAtB8mhIM"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-07LdJrNoV7" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "jemj47jb", + "sourceIdentifier.value" : "W2xfjSjI6E", + "identifiers.value" : [ + "W2xfjSjI6E" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "fltnygzk" + ], + "items.identifiers.value" : [ + "ONqqpCuC2L", + "BNAtB8mhIM" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-07LdJrNoV7" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["W2xfjSjI6E"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["fltnygzk"], - "items.identifiers.value": ["ONqqpCuC2L", "BNAtB8mhIM"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "W2xfjSjI6E" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "fltnygzk" + ], + "items.identifiers.value" : [ + "ONqqpCuC2L", + "BNAtB8mhIM" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json index 86502493d..557b89a62 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json @@ -1,158 +1,235 @@ { - "description": "works with items with other identifiers", - "createdAt": "2023-11-21T15:39:34.230763Z", - "id": "si1cs1lq", - "document": { - "debug": { - "source": { - "id": "si1cs1lq", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with items with other identifiers", + "createdAt" : "2024-11-13T08:43:26.518206Z", + "id" : "si1cs1lq", + "document" : { + "debug" : { + "source" : { + "id" : "si1cs1lq", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "QBdAX1EiWS" + "ontologyType" : "Work", + "value" : "QBdAX1EiWS" }, - "version": 31, - "modifiedTime": "2062-07-20T12:04:39Z" + "version" : 31, + "modifiedTime" : "2062-07-20T12:04:39Z" }, - "mergedTime": "2062-07-20T12:04:39Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2062-07-20T12:04:39Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "si1cs1lq", - "title": "title-5TrUx7AdtQ", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "si1cs1lq", + "title" : "title-5TrUx7AdtQ", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "QBdAX1EiWS", - "type": "Identifier" + "value" : "QBdAX1EiWS", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "ai3a3tba", - "identifiers": [ + "id" : "ai3a3tba", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "NW5yJ4Q4nj", - "type": "Identifier" + "value" : "NW5yJ4Q4nj", + "type" : "Identifier" }, { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "0YnPboqbXN", - "type": "Identifier" + "value" : "0YnPboqbXN", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/kix.jpg/info.json", - "linkText": "Link text: y7ZiZYy", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/kix.jpg/info.json", + "linkText" : "Link text: y7ZiZYy", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "si1cs1lq", - "sourceIdentifier.value": "QBdAX1EiWS", - "identifiers.value": ["QBdAX1EiWS"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["ai3a3tba"], - "items.identifiers.value": ["NW5yJ4Q4nj", "0YnPboqbXN"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-5TrUx7AdtQ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "si1cs1lq", + "sourceIdentifier.value" : "QBdAX1EiWS", + "identifiers.value" : [ + "QBdAX1EiWS" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "ai3a3tba" + ], + "items.identifiers.value" : [ + "NW5yJ4Q4nj", + "0YnPboqbXN" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-5TrUx7AdtQ" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["QBdAX1EiWS"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["ai3a3tba"], - "items.identifiers.value": ["NW5yJ4Q4nj", "0YnPboqbXN"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "QBdAX1EiWS" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "ai3a3tba" + ], + "items.identifiers.value" : [ + "NW5yJ4Q4nj", + "0YnPboqbXN" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json index aefaa5b3c..0a08d3c57 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json @@ -1,158 +1,235 @@ { - "description": "works with items with other identifiers", - "createdAt": "2023-11-21T15:39:34.233749Z", - "id": "pdufpdhz", - "document": { - "debug": { - "source": { - "id": "pdufpdhz", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with items with other identifiers", + "createdAt" : "2024-11-13T08:43:26.518652Z", + "id" : "pdufpdhz", + "document" : { + "debug" : { + "source" : { + "id" : "pdufpdhz", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "TJPbhBJugC" + "ontologyType" : "Work", + "value" : "TJPbhBJugC" }, - "version": 7, - "modifiedTime": "1978-09-15T00:40:32Z" + "version" : 7, + "modifiedTime" : "1978-09-15T00:40:32Z" }, - "mergedTime": "1978-09-15T00:40:32Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1978-09-15T00:40:32Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "pdufpdhz", - "title": "title-oUvfxn8R40", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "pdufpdhz", + "title" : "title-oUvfxn8R40", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "TJPbhBJugC", - "type": "Identifier" + "value" : "TJPbhBJugC", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "inlnj8lj", - "identifiers": [ + "id" : "inlnj8lj", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "ZQFqGfpXSZ", - "type": "Identifier" + "value" : "ZQFqGfpXSZ", + "type" : "Identifier" }, { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Ib4rPRFUwV", - "type": "Identifier" + "value" : "Ib4rPRFUwV", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/Klt.jpg/info.json", - "credit": "Credit line: ZVRNi77", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/Klt.jpg/info.json", + "credit" : "Credit line: ZVRNi77", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "pdufpdhz", - "sourceIdentifier.value": "TJPbhBJugC", - "identifiers.value": ["TJPbhBJugC"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["inlnj8lj"], - "items.identifiers.value": ["ZQFqGfpXSZ", "Ib4rPRFUwV"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-oUvfxn8R40" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "pdufpdhz", + "sourceIdentifier.value" : "TJPbhBJugC", + "identifiers.value" : [ + "TJPbhBJugC" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "inlnj8lj" + ], + "items.identifiers.value" : [ + "ZQFqGfpXSZ", + "Ib4rPRFUwV" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-oUvfxn8R40" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["TJPbhBJugC"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["inlnj8lj"], - "items.identifiers.value": ["ZQFqGfpXSZ", "Ib4rPRFUwV"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "TJPbhBJugC" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "inlnj8lj" + ], + "items.identifiers.value" : [ + "ZQFqGfpXSZ", + "Ib4rPRFUwV" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json index e4c173339..631c36472 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json @@ -1,157 +1,234 @@ { - "description": "works with items with other identifiers", - "createdAt": "2023-11-21T15:39:34.235211Z", - "id": "rzcvxgso", - "document": { - "debug": { - "source": { - "id": "rzcvxgso", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with items with other identifiers", + "createdAt" : "2024-11-13T08:43:26.519069Z", + "id" : "rzcvxgso", + "document" : { + "debug" : { + "source" : { + "id" : "rzcvxgso", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "8CwvL5s2ax" + "ontologyType" : "Work", + "value" : "8CwvL5s2ax" }, - "version": 66, - "modifiedTime": "1974-02-26T09:34:25Z" + "version" : 66, + "modifiedTime" : "1974-02-26T09:34:25Z" }, - "mergedTime": "1974-02-26T09:34:25Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1974-02-26T09:34:25Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "rzcvxgso", - "title": "title-rHr2K7J507", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "rzcvxgso", + "title" : "title-rHr2K7J507", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "8CwvL5s2ax", - "type": "Identifier" + "value" : "8CwvL5s2ax", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ { - "id": "f1nicvdy", - "identifiers": [ + "id" : "f1nicvdy", + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "yqR7eWPnru", - "type": "Identifier" + "value" : "yqR7eWPnru", + "type" : "Identifier" }, { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "wmEBLIOVK6", - "type": "Identifier" + "value" : "wmEBLIOVK6", + "type" : "Identifier" } ], - "locations": [ + "locations" : [ { - "locationType": { - "id": "iiif-presentation", - "label": "IIIF Presentation API", - "type": "LocationType" + "locationType" : { + "id" : "iiif-presentation", + "label" : "IIIF Presentation API", + "type" : "LocationType" }, - "url": "https://iiif.wellcomecollection.org/image/NlW.jpg/info.json", - "license": { - "id": "cc-by", - "label": "Attribution 4.0 International (CC BY 4.0)", - "url": "http://creativecommons.org/licenses/by/4.0/", - "type": "License" + "url" : "https://iiif.wellcomecollection.org/image/NlW.jpg/info.json", + "license" : { + "id" : "cc-by", + "label" : "Attribution 4.0 International (CC BY 4.0)", + "url" : "http://creativecommons.org/licenses/by/4.0/", + "type" : "License" }, - "accessConditions": [], - "type": "DigitalLocation" + "accessConditions" : [ + ], + "type" : "DigitalLocation" } ], - "type": "Item" + "type" : "Item" } ], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "rzcvxgso", - "sourceIdentifier.value": "8CwvL5s2ax", - "identifiers.value": ["8CwvL5s2ax"], - "images.id": [], - "images.identifiers.value": [], - "items.id": ["f1nicvdy"], - "items.identifiers.value": ["yqR7eWPnru", "wmEBLIOVK6"], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-rHr2K7J507" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "rzcvxgso", + "sourceIdentifier.value" : "8CwvL5s2ax", + "identifiers.value" : [ + "8CwvL5s2ax" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + "f1nicvdy" + ], + "items.identifiers.value" : [ + "yqR7eWPnru", + "wmEBLIOVK6" + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-rHr2K7J507" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities": [] + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["8CwvL5s2ax"], - "items.locations.license.id": ["cc-by"], - "items.locations.accessConditions.status.id": [], - "items.id": ["f1nicvdy"], - "items.identifiers.value": ["yqR7eWPnru", "wmEBLIOVK6"], - "items.locations.locationType.id": ["iiif-presentation"], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "8CwvL5s2ax" + ], + "items.locations.license.id" : [ + "cc-by" + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + "f1nicvdy" + ], + "items.identifiers.value" : [ + "yqR7eWPnru", + "wmEBLIOVK6" + ], + "items.locations.locationType.id" : [ + "iiif-presentation" + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.0.eng.json b/common/search/src/test/resources/test_documents/works.languages.0.eng.json index 978123f5d..db5609f54 100644 --- a/common/search/src/test/resources/test_documents/works.languages.0.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.0.eng.json @@ -1,120 +1,190 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.635518Z", - "id": "9pon81hb", - "document": { - "debug": { - "source": { - "id": "9pon81hb", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.464112Z", + "id" : "9pon81hb", + "document" : { + "debug" : { + "source" : { + "id" : "9pon81hb", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "mVHoe2r6sk" + "ontologyType" : "Work", + "value" : "mVHoe2r6sk" }, - "version": 97, - "modifiedTime": "2020-11-07T23:22:13Z" + "version" : 97, + "modifiedTime" : "2020-11-07T23:22:13Z" }, - "mergedTime": "2020-11-07T23:22:13Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2020-11-07T23:22:13Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "9pon81hb", - "title": "A work with languages English", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "9pon81hb", + "title" : "A work with languages English", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "mVHoe2r6sk", - "type": "Identifier" + "value" : "mVHoe2r6sk", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "9pon81hb", - "sourceIdentifier.value": "mVHoe2r6sk", - "identifiers.value": ["mVHoe2r6sk"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages English" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "9pon81hb", + "sourceIdentifier.value" : "mVHoe2r6sk", + "identifiers.value" : [ + "mVHoe2r6sk" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages English" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["eng"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["mVHoe2r6sk"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "eng" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "mVHoe2r6sk" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.1.eng.json b/common/search/src/test/resources/test_documents/works.languages.1.eng.json index 4591aed63..9c96bb85a 100644 --- a/common/search/src/test/resources/test_documents/works.languages.1.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.1.eng.json @@ -1,120 +1,190 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.639167Z", - "id": "mye6nsw6", - "document": { - "debug": { - "source": { - "id": "mye6nsw6", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.469710Z", + "id" : "mye6nsw6", + "document" : { + "debug" : { + "source" : { + "id" : "mye6nsw6", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "jswjHR3oqS" + "ontologyType" : "Work", + "value" : "jswjHR3oqS" }, - "version": 32, - "modifiedTime": "2013-07-14T10:05:38Z" + "version" : 32, + "modifiedTime" : "2013-07-14T10:05:38Z" }, - "mergedTime": "2013-07-14T10:05:38Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2013-07-14T10:05:38Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "mye6nsw6", - "title": "A work with languages English", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "mye6nsw6", + "title" : "A work with languages English", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "jswjHR3oqS", - "type": "Identifier" + "value" : "jswjHR3oqS", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "mye6nsw6", - "sourceIdentifier.value": "jswjHR3oqS", - "identifiers.value": ["jswjHR3oqS"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages English" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mye6nsw6", + "sourceIdentifier.value" : "jswjHR3oqS", + "identifiers.value" : [ + "jswjHR3oqS" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages English" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["eng"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["jswjHR3oqS"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "eng" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "jswjHR3oqS" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.2.eng.json b/common/search/src/test/resources/test_documents/works.languages.2.eng.json index 933daeac8..f71afaa26 100644 --- a/common/search/src/test/resources/test_documents/works.languages.2.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.2.eng.json @@ -1,120 +1,190 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.641061Z", - "id": "giiyodfc", - "document": { - "debug": { - "source": { - "id": "giiyodfc", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.471194Z", + "id" : "giiyodfc", + "document" : { + "debug" : { + "source" : { + "id" : "giiyodfc", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "9x0HfU454v" + "ontologyType" : "Work", + "value" : "9x0HfU454v" }, - "version": 13, - "modifiedTime": "2047-09-30T13:44:39Z" + "version" : 13, + "modifiedTime" : "2047-09-30T13:44:39Z" }, - "mergedTime": "2047-09-30T13:44:39Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2047-09-30T13:44:39Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "giiyodfc", - "title": "A work with languages English", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "giiyodfc", + "title" : "A work with languages English", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "9x0HfU454v", - "type": "Identifier" + "value" : "9x0HfU454v", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "giiyodfc", - "sourceIdentifier.value": "9x0HfU454v", - "identifiers.value": ["9x0HfU454v"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages English" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "giiyodfc", + "sourceIdentifier.value" : "9x0HfU454v", + "identifiers.value" : [ + "9x0HfU454v" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages English" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["eng"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["9x0HfU454v"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "eng" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "9x0HfU454v" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json b/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json index 90a39ba63..c64ee97ee 100644 --- a/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json +++ b/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json @@ -1,126 +1,198 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.646566Z", - "id": "taqruniu", - "document": { - "debug": { - "source": { - "id": "taqruniu", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.472567Z", + "id" : "taqruniu", + "document" : { + "debug" : { + "source" : { + "id" : "taqruniu", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "xzEZGWEGMy" + "ontologyType" : "Work", + "value" : "xzEZGWEGMy" }, - "version": 58, - "modifiedTime": "1953-09-06T15:14:14Z" + "version" : 58, + "modifiedTime" : "1953-09-06T15:14:14Z" }, - "mergedTime": "1953-09-06T15:14:14Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1953-09-06T15:14:14Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "taqruniu", - "title": "A work with languages English, Swedish", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "taqruniu", + "title" : "A work with languages English, Swedish", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "xzEZGWEGMy", - "type": "Identifier" + "value" : "xzEZGWEGMy", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" }, { - "id": "swe", - "label": "Swedish", - "type": "Language" + "id" : "swe", + "label" : "Swedish", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "taqruniu", - "sourceIdentifier.value": "xzEZGWEGMy", - "identifiers.value": ["xzEZGWEGMy"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English", "Swedish"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages English, Swedish" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "taqruniu", + "sourceIdentifier.value" : "xzEZGWEGMy", + "identifiers.value" : [ + "xzEZGWEGMy" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English", + "Swedish" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages English, Swedish" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}", "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["eng", "swe"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["xzEZGWEGMy"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "eng", + "swe" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "xzEZGWEGMy" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json b/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json index 23f302287..9df5a594a 100644 --- a/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json +++ b/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json @@ -1,132 +1,206 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.658782Z", - "id": "oagougti", - "document": { - "debug": { - "source": { - "id": "oagougti", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.473924Z", + "id" : "oagougti", + "document" : { + "debug" : { + "source" : { + "id" : "oagougti", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "c67fbITZO5" + "ontologyType" : "Work", + "value" : "c67fbITZO5" }, - "version": 76, - "modifiedTime": "2039-12-01T11:37:40Z" + "version" : 76, + "modifiedTime" : "2039-12-01T11:37:40Z" }, - "mergedTime": "2039-12-01T11:37:40Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2039-12-01T11:37:40Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "oagougti", - "title": "A work with languages English, Swedish, Turkish", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "oagougti", + "title" : "A work with languages English, Swedish, Turkish", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "c67fbITZO5", - "type": "Identifier" + "value" : "c67fbITZO5", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "eng", - "label": "English", - "type": "Language" + "id" : "eng", + "label" : "English", + "type" : "Language" }, { - "id": "swe", - "label": "Swedish", - "type": "Language" + "id" : "swe", + "label" : "Swedish", + "type" : "Language" }, { - "id": "tur", - "label": "Turkish", - "type": "Language" + "id" : "tur", + "label" : "Turkish", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "oagougti", - "sourceIdentifier.value": "c67fbITZO5", - "identifiers.value": ["c67fbITZO5"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["English", "Swedish", "Turkish"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages English, Swedish, Turkish" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "oagougti", + "sourceIdentifier.value" : "c67fbITZO5", + "identifiers.value" : [ + "c67fbITZO5" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "English", + "Swedish", + "Turkish" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages English, Swedish, Turkish" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}", "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}", "{\"id\":\"tur\",\"label\":\"Turkish\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["eng", "swe", "tur"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["c67fbITZO5"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "eng", + "swe", + "tur" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "c67fbITZO5" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.5.swe.json b/common/search/src/test/resources/test_documents/works.languages.5.swe.json index 5b584a592..f5040e061 100644 --- a/common/search/src/test/resources/test_documents/works.languages.5.swe.json +++ b/common/search/src/test/resources/test_documents/works.languages.5.swe.json @@ -1,120 +1,190 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.668669Z", - "id": "olhrstrz", - "document": { - "debug": { - "source": { - "id": "olhrstrz", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.475246Z", + "id" : "olhrstrz", + "document" : { + "debug" : { + "source" : { + "id" : "olhrstrz", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "UagAbkJTEE" + "ontologyType" : "Work", + "value" : "UagAbkJTEE" }, - "version": 58, - "modifiedTime": "2026-09-11T17:29:57Z" + "version" : 58, + "modifiedTime" : "2026-09-11T17:29:57Z" }, - "mergedTime": "2026-09-11T17:29:57Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2026-09-11T17:29:57Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "olhrstrz", - "title": "A work with languages Swedish", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "olhrstrz", + "title" : "A work with languages Swedish", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "UagAbkJTEE", - "type": "Identifier" + "value" : "UagAbkJTEE", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "swe", - "label": "Swedish", - "type": "Language" + "id" : "swe", + "label" : "Swedish", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "olhrstrz", - "sourceIdentifier.value": "UagAbkJTEE", - "identifiers.value": ["UagAbkJTEE"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Swedish"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages Swedish" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "olhrstrz", + "sourceIdentifier.value" : "UagAbkJTEE", + "identifiers.value" : [ + "UagAbkJTEE" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Swedish" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages Swedish" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["swe"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["UagAbkJTEE"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "swe" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "UagAbkJTEE" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.languages.6.tur.json b/common/search/src/test/resources/test_documents/works.languages.6.tur.json index af236cb94..9fe885153 100644 --- a/common/search/src/test/resources/test_documents/works.languages.6.tur.json +++ b/common/search/src/test/resources/test_documents/works.languages.6.tur.json @@ -1,120 +1,190 @@ { - "description": "one of a list of works with a variety of languages", - "createdAt": "2023-11-21T15:39:33.671680Z", - "id": "6navwg1c", - "document": { - "debug": { - "source": { - "id": "6navwg1c", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "one of a list of works with a variety of languages", + "createdAt" : "2024-11-13T08:43:26.477043Z", + "id" : "6navwg1c", + "document" : { + "debug" : { + "source" : { + "id" : "6navwg1c", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "Ra2FIC2DNd" + "ontologyType" : "Work", + "value" : "Ra2FIC2DNd" }, - "version": 19, - "modifiedTime": "1934-12-30T03:15:39Z" + "version" : 19, + "modifiedTime" : "1934-12-30T03:15:39Z" }, - "mergedTime": "1934-12-30T03:15:39Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1934-12-30T03:15:39Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "6navwg1c", - "title": "A work with languages Turkish", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "6navwg1c", + "title" : "A work with languages Turkish", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "Ra2FIC2DNd", - "type": "Identifier" + "value" : "Ra2FIC2DNd", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ { - "id": "tur", - "label": "Turkish", - "type": "Language" + "id" : "tur", + "label" : "Turkish", + "type" : "Language" } ], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "6navwg1c", - "sourceIdentifier.value": "Ra2FIC2DNd", - "identifiers.value": ["Ra2FIC2DNd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": ["Turkish"], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "A work with languages Turkish" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "6navwg1c", + "sourceIdentifier.value" : "Ra2FIC2DNd", + "identifiers.value" : [ + "Ra2FIC2DNd" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + "Turkish" + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "A work with languages Turkish" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ "{\"id\":\"tur\",\"label\":\"Turkish\",\"type\":\"Language\"}" ], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": ["tur"], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Ra2FIC2DNd"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + "tur" + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Ra2FIC2DNd" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.0.json b/common/search/src/test/resources/test_documents/works.production.multi-year.0.json index 18040484a..c95b7726d 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.0.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.0.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.511402Z", - "id": "cgfghm8m", - "document": { - "debug": { - "source": { - "id": "cgfghm8m", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.555984Z", + "id" : "wrhbusqt", + "document" : { + "debug" : { + "source" : { + "id" : "wrhbusqt", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "mh0pYazvpR" + "ontologyType" : "Work", + "value" : "JWZRaIg4BP" }, - "version": 37, - "modifiedTime": "1945-01-10T19:58:56Z" + "version" : 92, + "modifiedTime" : "1941-03-30T16:00:44Z" }, - "mergedTime": "1945-01-10T19:58:56Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1941-03-30T16:00:44Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "cgfghm8m", - "title": "title-oOAv5vdS0Y", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "wrhbusqt", + "title" : "title-zUOjOyKabH", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "mh0pYazvpR", - "type": "Identifier" + "value" : "JWZRaIg4BP", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "aIg4BPWRHbuSqTDzUOjOyKabH", - "places": [ + "label" : "cUH8ak2gePdAnZy8IL7DS24A3", + "places" : [ { - "label": "lF2fhJcUH8", - "type": "Place" + "label" : "bjh2WRDdYf", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "ak2gePdAnZ", - "type": "Person" + "label" : "1h8Be8UrT3", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1850", - "type": "Period" + "label" : "1850", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "cgfghm8m", - "sourceIdentifier.value": "mh0pYazvpR", - "identifiers.value": ["mh0pYazvpR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["lF2fhJcUH8", "ak2gePdAnZ", "1850"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-oOAv5vdS0Y" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "wrhbusqt", + "sourceIdentifier.value" : "JWZRaIg4BP", + "identifiers.value" : [ + "JWZRaIg4BP" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "bjh2WRDdYf", + "1h8Be8UrT3", + "1850" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-zUOjOyKabH" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1850\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1850\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-3786825600000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["mh0pYazvpR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -3786825600000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "JWZRaIg4BP" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.1.json b/common/search/src/test/resources/test_documents/works.production.multi-year.1.json index 0f99f5239..e45a1e99d 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.1.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.1.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.517522Z", - "id": "bjh2wrdd", - "document": { - "debug": { - "source": { - "id": "bjh2wrdd", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.556374Z", + "id" : "yjdmhccz", + "document" : { + "debug" : { + "source" : { + "id" : "yjdmhccz", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "8IL7DS24A3" + "ontologyType" : "Work", + "value" : "pvvnQHgcJP" }, - "version": 66, - "modifiedTime": "2062-07-25T05:57:54Z" + "version" : 49, + "modifiedTime" : "1965-03-09T05:55:12Z" }, - "mergedTime": "2062-07-25T05:57:54Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1965-03-09T05:55:12Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "bjh2wrdd", - "title": "title-f1h8Be8UrT", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "yjdmhccz", + "title" : "title-NV4U4YKwyt", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "8IL7DS24A3", - "type": "Identifier" + "value" : "pvvnQHgcJP", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "QHgcJPyjdmhcczXNV4U4YKwyt", - "places": [ + "label" : "wmZcSQaFLtBeNhpR5aFhbmGJs", + "places" : [ { - "label": "cvu6mFwmZc", - "type": "Place" + "label" : "Mse28ReU0t", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "SQaFLtBeNh", - "type": "Person" + "label" : "OIr878hfcC", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1850-2000", - "type": "Period" + "label" : "1850-2000", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "bjh2wrdd", - "sourceIdentifier.value": "8IL7DS24A3", - "identifiers.value": ["8IL7DS24A3"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["cvu6mFwmZc", "SQaFLtBeNh", "1850-2000"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-f1h8Be8UrT" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "yjdmhccz", + "sourceIdentifier.value" : "pvvnQHgcJP", + "identifiers.value" : [ + "pvvnQHgcJP" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "Mse28ReU0t", + "OIr878hfcC", + "1850-2000" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-NV4U4YKwyt" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1850\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1850\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-3786825600000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["8IL7DS24A3"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -3786825600000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "pvvnQHgcJP" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.2.json b/common/search/src/test/resources/test_documents/works.production.multi-year.2.json index 9c42daa4c..7e015e208 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.2.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.2.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.531807Z", - "id": "mse28reu", - "document": { - "debug": { - "source": { - "id": "mse28reu", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.556758Z", + "id" : "v2jj5pko", + "document" : { + "debug" : { + "source" : { + "id" : "v2jj5pko", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "R5aFhbmGJs" + "ontologyType" : "Work", + "value" : "XKeDQMh6zv" }, - "version": 65, - "modifiedTime": "1981-12-24T12:24:54Z" + "version" : 34, + "modifiedTime" : "1975-08-31T16:12:40Z" }, - "mergedTime": "1981-12-24T12:24:54Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1975-08-31T16:12:40Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "mse28reu", - "title": "title-tOIr878hfc", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "v2jj5pko", + "title" : "title-kAlfIDxe8F", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "R5aFhbmGJs", - "type": "Identifier" + "value" : "XKeDQMh6zv", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "QMh6zvv2Jj5pKO9kAlfIDxe8F", - "places": [ + "label" : "T0mobVH4nMKaFfllypAUqLQ0g", + "places" : [ { - "label": "davLbUT0mo", - "type": "Place" + "label" : "UKbghZ727m", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "bVH4nMKaFf", - "type": "Person" + "label" : "8zTnSvRiZt", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1860-1960", - "type": "Period" + "label" : "1860-1960", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "mse28reu", - "sourceIdentifier.value": "R5aFhbmGJs", - "identifiers.value": ["R5aFhbmGJs"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["davLbUT0mo", "bVH4nMKaFf", "1860-1960"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-tOIr878hfc" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "v2jj5pko", + "sourceIdentifier.value" : "XKeDQMh6zv", + "identifiers.value" : [ + "XKeDQMh6zv" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "UKbghZ727m", + "8zTnSvRiZt", + "1860-1960" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-kAlfIDxe8F" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1860\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1860\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-3471292800000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["R5aFhbmGJs"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -3471292800000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "XKeDQMh6zv" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.3.json b/common/search/src/test/resources/test_documents/works.production.multi-year.3.json index 7a83c5de0..7177236e6 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.3.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.3.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.536309Z", - "id": "ukbghz72", - "document": { - "debug": { - "source": { - "id": "ukbghz72", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.557151Z", + "id" : "br9psxdd", + "document" : { + "debug" : { + "source" : { + "id" : "br9psxdd", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "lypAUqLQ0g" + "ontologyType" : "Work", + "value" : "CpwHX9hOaw" }, - "version": 76, - "modifiedTime": "2004-01-03T14:20:07Z" + "version" : 63, + "modifiedTime" : "1971-04-20T21:05:04Z" }, - "mergedTime": "2004-01-03T14:20:07Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-04-20T21:05:04Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ukbghz72", - "title": "title-m8zTnSvRiZ", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "br9psxdd", + "title" : "title-TQ6alxfhhH", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "lypAUqLQ0g", - "type": "Identifier" + "value" : "CpwHX9hOaw", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "X9hOawBR9PsxddZTQ6alxfhhH", - "places": [ + "label" : "lLIHkQjFHQROpFfnFl9elPj6a", + "places" : [ { - "label": "cRBQaVlLIH", - "type": "Place" + "label" : "56tujbhysw", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "kQjFHQROpF", - "type": "Person" + "label" : "OpLeG3f7j0", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1960", - "type": "Period" + "label" : "1960", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ukbghz72", - "sourceIdentifier.value": "lypAUqLQ0g", - "identifiers.value": ["lypAUqLQ0g"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["cRBQaVlLIH", "kQjFHQROpF", "1960"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-m8zTnSvRiZ" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "br9psxdd", + "sourceIdentifier.value" : "CpwHX9hOaw", + "identifiers.value" : [ + "CpwHX9hOaw" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "56tujbhysw", + "OpLeG3f7j0", + "1960" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-TQ6alxfhhH" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1960\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1960\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-315619200000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["lypAUqLQ0g"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -315619200000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "CpwHX9hOaw" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.4.json b/common/search/src/test/resources/test_documents/works.production.multi-year.4.json index c218ca97c..cf41ffe20 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.4.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.4.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.537007Z", - "id": "56tujbhy", - "document": { - "debug": { - "source": { - "id": "56tujbhy", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.557522Z", + "id" : "rx3okdwc", + "document" : { + "debug" : { + "source" : { + "id" : "rx3okdwc", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "nFl9elPj6a" + "ontologyType" : "Work", + "value" : "b0tnvUprsj" }, - "version": 81, - "modifiedTime": "2056-06-05T14:49:37Z" + "version" : 80, + "modifiedTime" : "2029-08-13T07:01:03Z" }, - "mergedTime": "2056-06-05T14:49:37Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2029-08-13T07:01:03Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "56tujbhy", - "title": "title-wOpLeG3f7j", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "rx3okdwc", + "title" : "title-2lfjsLaubb", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "nFl9elPj6a", - "type": "Identifier" + "value" : "b0tnvUprsj", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "vUprsjrX3OKDwcT2lfjsLaubb", - "places": [ + "label" : "GsIdzZyGYBSGAtphRApGkJTZW", + "places" : [ { - "label": "73X6HqGsId", - "type": "Place" + "label" : "wn4AhFD31A", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "zZyGYBSGAt", - "type": "Person" + "label" : "dK5EfQwt6P", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1960-1964", - "type": "Period" + "label" : "1960-1964", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "56tujbhy", - "sourceIdentifier.value": "nFl9elPj6a", - "identifiers.value": ["nFl9elPj6a"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["73X6HqGsId", "zZyGYBSGAt", "1960-1964"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-wOpLeG3f7j" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "rx3okdwc", + "sourceIdentifier.value" : "b0tnvUprsj", + "identifiers.value" : [ + "b0tnvUprsj" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "wn4AhFD31A", + "dK5EfQwt6P", + "1960-1964" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-2lfjsLaubb" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1960\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1960\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-315619200000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["nFl9elPj6a"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -315619200000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "b0tnvUprsj" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.5.json b/common/search/src/test/resources/test_documents/works.production.multi-year.5.json index b9762ef8f..e86bae644 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.5.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.5.json @@ -1,135 +1,209 @@ { - "description": "works with multi-year production ranges", - "createdAt": "2023-11-21T15:39:34.537632Z", - "id": "wn4ahfd3", - "document": { - "debug": { - "source": { - "id": "wn4ahfd3", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with multi-year production ranges", + "createdAt" : "2024-11-13T08:43:26.557895Z", + "id" : "dbkiu6iz", + "document" : { + "debug" : { + "source" : { + "id" : "dbkiu6iz", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "hRApGkJTZW" + "ontologyType" : "Work", + "value" : "lbspe4jqB3" }, - "version": 60, - "modifiedTime": "1951-03-21T03:54:08Z" + "version" : 18, + "modifiedTime" : "1958-05-09T13:19:17Z" }, - "mergedTime": "1951-03-21T03:54:08Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1958-05-09T13:19:17Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "wn4ahfd3", - "title": "title-AdK5EfQwt6", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "dbkiu6iz", + "title" : "title-DrUzFkvgSy", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "hRApGkJTZW", - "type": "Identifier" + "value" : "lbspe4jqB3", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [ + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ { - "label": "e4jqB3DBkIu6IZ2DrUzFkvgSy", - "places": [ + "label" : "yMDGo2rBCSPBNfFmnJIEpzyMJ", + "places" : [ { - "label": "VfmtHDyMDG", - "type": "Place" + "label" : "LtI2pjU6xn", + "type" : "Place" } ], - "agents": [ + "agents" : [ { - "label": "o2rBCSPBNf", - "type": "Person" + "label" : "Vo8KntFwFf", + "type" : "Person" } ], - "dates": [ + "dates" : [ { - "label": "1962", - "type": "Period" + "label" : "1962", + "type" : "Period" } ], - "type": "ProductionEvent" + "type" : "ProductionEvent" } ], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "wn4ahfd3", - "sourceIdentifier.value": "hRApGkJTZW", - "identifiers.value": ["hRApGkJTZW"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": ["VfmtHDyMDG", "o2rBCSPBNf", "1962"], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-AdK5EfQwt6" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "dbkiu6iz", + "sourceIdentifier.value" : "lbspe4jqB3", + "identifiers.value" : [ + "lbspe4jqB3" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + "LtI2pjU6xn", + "Vo8KntFwFf", + "1962" + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-DrUzFkvgSy" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": ["{\"label\":\"1962\",\"type\":\"Period\"}"], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + "{\"label\":\"1962\",\"type\":\"Period\"}" + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [-252460800000], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["hRApGkJTZW"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + -252460800000 + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "lbspe4jqB3" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.redirected.0.json b/common/search/src/test/resources/test_documents/works.redirected.0.json index 7f21247be..232dfc8fa 100644 --- a/common/search/src/test/resources/test_documents/works.redirected.0.json +++ b/common/search/src/test/resources/test_documents/works.redirected.0.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of redirected works", - "createdAt" : "2022-10-03T10:25:18.789Z", + "createdAt" : "2024-05-15T08:17:25.220502Z", "id" : "4nwkprdt", "document" : { "debug" : { @@ -17,7 +17,9 @@ "modifiedTime" : "2044-05-21T11:37:26Z" }, "mergedTime" : "2044-05-21T11:37:26Z", - "indexedTime" : "2001-01-01T01:01:01Z" + "indexedTime" : "2001-01-01T01:01:01Z", + "mergeCandidates" : [ + ] }, "redirectTarget" : { "canonicalId" : "mv6kix0n", diff --git a/common/search/src/test/resources/test_documents/works.redirected.1.json b/common/search/src/test/resources/test_documents/works.redirected.1.json index 5c988b479..e8ba7e39e 100644 --- a/common/search/src/test/resources/test_documents/works.redirected.1.json +++ b/common/search/src/test/resources/test_documents/works.redirected.1.json @@ -1,6 +1,6 @@ { "description" : "an arbitrary list of redirected works", - "createdAt" : "2022-10-03T10:25:18.789Z", + "createdAt" : "2024-05-15T08:17:25.220873Z", "id" : "6yu7udsf", "document" : { "debug" : { @@ -17,7 +17,9 @@ "modifiedTime" : "2018-10-24T16:12:55Z" }, "mergedTime" : "2018-10-24T16:12:55Z", - "indexedTime" : "2001-01-01T01:01:01Z" + "indexedTime" : "2001-01-01T01:01:01Z", + "mergeCandidates" : [ + ] }, "redirectTarget" : { "canonicalId" : "7wax09hv", diff --git a/common/search/src/test/resources/test_documents/works.subjects.0.json b/common/search/src/test/resources/test_documents/works.subjects.0.json index 6af1e12fa..9fa0eb094 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.0.json +++ b/common/search/src/test/resources/test_documents/works.subjects.0.json @@ -1,137 +1,205 @@ { - "description": "works with different subjects", - "createdAt": "2023-11-21T15:39:33.959940Z", - "id": "njj1gugw", - "document": { - "debug": { - "source": { - "id": "njj1gugw", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "works with different subjects", + "createdAt" : "2024-11-13T08:43:26.493183Z", + "id" : "njj1gugw", + "document" : { + "debug" : { + "source" : { + "id" : "njj1gugw", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "JeGRUgE73g" + "ontologyType" : "Work", + "value" : "JeGRUgE73g" }, - "version": 58, - "modifiedTime": "2009-03-20T11:29:10Z" + "version" : 58, + "modifiedTime" : "2009-03-20T11:29:10Z" }, - "mergedTime": "2009-03-20T11:29:10Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2009-03-20T11:29:10Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "njj1gugw", - "title": "title-kaqjnWIqBs", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "njj1gugw", + "title" : "title-kaqjnWIqBs", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "JeGRUgE73g", - "type": "Identifier" + "value" : "JeGRUgE73g", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "paleoNeuroBiology", - "concepts": [ + "label" : "paleoNeuroBiology", + "concepts" : [ { - "label": "OVfDtEVhuTjLML0", - "type": "Concept" + "label" : "OVfDtEVhuTjLML0", + "type" : "Concept" }, { - "label": "MOH1Bj9evx0cAh7", - "type": "Concept" + "label" : "MOH1Bj9evx0cAh7", + "type" : "Concept" }, { - "label": "0mKj49k3BjjuTuf", - "type": "Concept" + "label" : "0mKj49k3BjjuTuf", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "njj1gugw", - "sourceIdentifier.value": "JeGRUgE73g", - "identifiers.value": ["JeGRUgE73g"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "njj1gugw", + "sourceIdentifier.value" : "JeGRUgE73g", + "identifiers.value" : [ + "JeGRUgE73g" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ "OVfDtEVhuTjLML0", "MOH1Bj9evx0cAh7", "0mKj49k3BjjuTuf" ], - "title": "title-kaqjnWIqBs" + "title" : "title-kaqjnWIqBs" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"paleoNeuroBiology\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["paleoNeuroBiology"], - "contributors.agent.label": [], - "identifiers.value": ["JeGRUgE73g"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "paleoNeuroBiology" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "JeGRUgE73g" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.subjects.1.json b/common/search/src/test/resources/test_documents/works.subjects.1.json index 613ba3ed8..96f61bf47 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.1.json +++ b/common/search/src/test/resources/test_documents/works.subjects.1.json @@ -1,137 +1,205 @@ { - "description": "works with different subjects", - "createdAt": "2023-11-21T15:39:33.975270Z", - "id": "7xjjhlpg", - "document": { - "debug": { - "source": { - "id": "7xjjhlpg", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with different subjects", + "createdAt" : "2024-11-13T08:43:26.493716Z", + "id" : "7xjjhlpg", + "document" : { + "debug" : { + "source" : { + "id" : "7xjjhlpg", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "47LFZN2ZgN" + "ontologyType" : "Work", + "value" : "47LFZN2ZgN" }, - "version": 50, - "modifiedTime": "2055-06-09T03:30:20Z" + "version" : 50, + "modifiedTime" : "2055-06-09T03:30:20Z" }, - "mergedTime": "2055-06-09T03:30:20Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2055-06-09T03:30:20Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "7xjjhlpg", - "title": "title-U7nUYWbjoJ", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "7xjjhlpg", + "title" : "title-U7nUYWbjoJ", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "47LFZN2ZgN", - "type": "Identifier" + "value" : "47LFZN2ZgN", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "realAnalysis", - "concepts": [ + "label" : "realAnalysis", + "concepts" : [ { - "label": "KU2Yez08k6CNnSU", - "type": "Concept" + "label" : "KU2Yez08k6CNnSU", + "type" : "Concept" }, { - "label": "VMdWdPx74hNxKXA", - "type": "Concept" + "label" : "VMdWdPx74hNxKXA", + "type" : "Concept" }, { - "label": "vquihJgTfjChVoT", - "type": "Concept" + "label" : "vquihJgTfjChVoT", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "7xjjhlpg", - "sourceIdentifier.value": "47LFZN2ZgN", - "identifiers.value": ["47LFZN2ZgN"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "7xjjhlpg", + "sourceIdentifier.value" : "47LFZN2ZgN", + "identifiers.value" : [ + "47LFZN2ZgN" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ "KU2Yez08k6CNnSU", "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title": "title-U7nUYWbjoJ" + "title" : "title-U7nUYWbjoJ" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["realAnalysis"], - "contributors.agent.label": [], - "identifiers.value": ["47LFZN2ZgN"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "realAnalysis" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "47LFZN2ZgN" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.subjects.2.json b/common/search/src/test/resources/test_documents/works.subjects.2.json index 8238e52db..4c9d43b57 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.2.json +++ b/common/search/src/test/resources/test_documents/works.subjects.2.json @@ -1,137 +1,205 @@ { - "description": "works with different subjects", - "createdAt": "2023-11-21T15:39:33.978227Z", - "id": "ixapupnn", - "document": { - "debug": { - "source": { - "id": "ixapupnn", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with different subjects", + "createdAt" : "2024-11-13T08:43:26.494201Z", + "id" : "ixapupnn", + "document" : { + "debug" : { + "source" : { + "id" : "ixapupnn", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "DSV5vB01pf" + "ontologyType" : "Work", + "value" : "DSV5vB01pf" }, - "version": 51, - "modifiedTime": "2038-11-26T21:07:39Z" + "version" : 51, + "modifiedTime" : "2038-11-26T21:07:39Z" }, - "mergedTime": "2038-11-26T21:07:39Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2038-11-26T21:07:39Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "ixapupnn", - "title": "title-FXwxyxQUQw", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "ixapupnn", + "title" : "title-FXwxyxQUQw", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "DSV5vB01pf", - "type": "Identifier" + "value" : "DSV5vB01pf", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "realAnalysis", - "concepts": [ + "label" : "realAnalysis", + "concepts" : [ { - "label": "KU2Yez08k6CNnSU", - "type": "Concept" + "label" : "KU2Yez08k6CNnSU", + "type" : "Concept" }, { - "label": "VMdWdPx74hNxKXA", - "type": "Concept" + "label" : "VMdWdPx74hNxKXA", + "type" : "Concept" }, { - "label": "vquihJgTfjChVoT", - "type": "Concept" + "label" : "vquihJgTfjChVoT", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "ixapupnn", - "sourceIdentifier.value": "DSV5vB01pf", - "identifiers.value": ["DSV5vB01pf"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "ixapupnn", + "sourceIdentifier.value" : "DSV5vB01pf", + "identifiers.value" : [ + "DSV5vB01pf" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ "KU2Yez08k6CNnSU", "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title": "title-FXwxyxQUQw" + "title" : "title-FXwxyxQUQw" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["realAnalysis"], - "contributors.agent.label": [], - "identifiers.value": ["DSV5vB01pf"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "realAnalysis" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "DSV5vB01pf" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.subjects.3.json b/common/search/src/test/resources/test_documents/works.subjects.3.json index 482f1c166..d2a29f2c7 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.3.json +++ b/common/search/src/test/resources/test_documents/works.subjects.3.json @@ -1,118 +1,152 @@ { - "description": "works with different subjects", - "createdAt": "2023-11-21T15:39:33.987107Z", - "id": "opaupm4b", - "document": { - "debug": { - "source": { - "id": "opaupm4b", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "works with different subjects", + "createdAt" : "2024-11-13T08:43:26.495023Z", + "id" : "opaupm4b", + "document" : { + "debug" : { + "source" : { + "id" : "opaupm4b", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "spewkKE1s2" + "ontologyType" : "Work", + "value" : "spewkKE1s2" }, - "version": 2, - "modifiedTime": "1963-02-18T22:51:22Z" + "version" : 2, + "modifiedTime" : "1963-02-18T22:51:22Z" }, - "mergedTime": "1963-02-18T22:51:22Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1963-02-18T22:51:22Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "opaupm4b", - "title": "title-l7TlcjNV5v", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "opaupm4b", + "title" : "title-l7TlcjNV5v", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "spewkKE1s2", - "type": "Identifier" + "value" : "spewkKE1s2", + "type" : "Identifier" } ], - "subjects": [ + "subjects" : [ { - "label": "paleoNeuroBiology", - "concepts": [ + "label" : "paleoNeuroBiology", + "concepts" : [ { - "label": "OVfDtEVhuTjLML0", - "type": "Concept" + "label" : "OVfDtEVhuTjLML0", + "type" : "Concept" }, { - "label": "MOH1Bj9evx0cAh7", - "type": "Concept" + "label" : "MOH1Bj9evx0cAh7", + "type" : "Concept" }, { - "label": "0mKj49k3BjjuTuf", - "type": "Concept" + "label" : "0mKj49k3BjjuTuf", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" }, { - "label": "realAnalysis", - "concepts": [ + "label" : "realAnalysis", + "concepts" : [ { - "label": "KU2Yez08k6CNnSU", - "type": "Concept" + "label" : "KU2Yez08k6CNnSU", + "type" : "Concept" }, { - "label": "VMdWdPx74hNxKXA", - "type": "Concept" + "label" : "VMdWdPx74hNxKXA", + "type" : "Concept" }, { - "label": "vquihJgTfjChVoT", - "type": "Concept" + "label" : "vquihJgTfjChVoT", + "type" : "Concept" } ], - "type": "Subject" + "type" : "Subject" } ], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "opaupm4b", - "sourceIdentifier.value": "spewkKE1s2", - "identifiers.value": ["spewkKE1s2"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [ + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "opaupm4b", + "sourceIdentifier.value" : "spewkKE1s2", + "identifiers.value" : [ + "spewkKE1s2" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ "OVfDtEVhuTjLML0", "MOH1Bj9evx0cAh7", "0mKj49k3BjjuTuf", @@ -120,40 +154,75 @@ "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title": "title-l7TlcjNV5v" + "title" : "title-l7TlcjNV5v" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [ + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ "{\"label\":\"paleoNeuroBiology\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": ["paleoNeuroBiology", "realAnalysis"], - "contributors.agent.label": [], - "identifiers.value": ["spewkKE1s2"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + "paleoNeuroBiology", + "realAnalysis" + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "spewkKE1s2" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.subjects.4.json b/common/search/src/test/resources/test_documents/works.subjects.4.json index 5c51987aa..3ff6fb198 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.4.json +++ b/common/search/src/test/resources/test_documents/works.subjects.4.json @@ -1,112 +1,182 @@ { - "description": "works with different subjects", - "createdAt": "2023-11-21T15:39:33.987809Z", - "id": "el28gega", - "document": { - "debug": { - "source": { - "id": "el28gega", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "works with different subjects", + "createdAt" : "2024-11-13T08:43:26.495435Z", + "id" : "el28gega", + "document" : { + "debug" : { + "source" : { + "id" : "el28gega", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "9qDYGFYXAa" + "ontologyType" : "Work", + "value" : "9qDYGFYXAa" }, - "version": 63, - "modifiedTime": "1997-06-19T05:13:34Z" + "version" : 63, + "modifiedTime" : "1997-06-19T05:13:34Z" }, - "mergedTime": "1997-06-19T05:13:34Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1997-06-19T05:13:34Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "el28gega", - "title": "title-be5yxr73Xc", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "el28gega", + "title" : "title-be5yxr73Xc", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "9qDYGFYXAa", - "type": "Identifier" + "value" : "9qDYGFYXAa", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "el28gega", - "sourceIdentifier.value": "9qDYGFYXAa", - "identifiers.value": ["9qDYGFYXAa"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-be5yxr73Xc" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "el28gega", + "sourceIdentifier.value" : "9qDYGFYXAa", + "identifiers.value" : [ + "9qDYGFYXAa" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-be5yxr73Xc" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["9qDYGFYXAa"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "9qDYGFYXAa" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.title-query-parens.json b/common/search/src/test/resources/test_documents/works.title-query-parens.json index 935975347..361f26387 100644 --- a/common/search/src/test/resources/test_documents/works.title-query-parens.json +++ b/common/search/src/test/resources/test_documents/works.title-query-parens.json @@ -1,112 +1,182 @@ { - "description": "a work whose title has parens meant to trip up ES", - "createdAt": "2023-11-21T15:39:33.618987Z", - "id": "1sxjupdc", - "document": { - "debug": { - "source": { - "id": "1sxjupdc", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "a work whose title has parens meant to trip up ES", + "createdAt" : "2024-11-13T08:43:26.462196Z", + "id" : "1sxjupdc", + "document" : { + "debug" : { + "source" : { + "id" : "1sxjupdc", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "weuV0WsLiG" + "ontologyType" : "Work", + "value" : "weuV0WsLiG" }, - "version": 89, - "modifiedTime": "2025-04-27T22:28:23Z" + "version" : 89, + "modifiedTime" : "2025-04-27T22:28:23Z" }, - "mergedTime": "2025-04-27T22:28:23Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2025-04-27T22:28:23Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "1sxjupdc", - "title": "(a b c d e) h", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "1sxjupdc", + "title" : "(a b c d e) h", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "weuV0WsLiG", - "type": "Identifier" + "value" : "weuV0WsLiG", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "1sxjupdc", - "sourceIdentifier.value": "weuV0WsLiG", - "identifiers.value": ["weuV0WsLiG"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "(a b c d e) h" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "1sxjupdc", + "sourceIdentifier.value" : "weuV0WsLiG", + "identifiers.value" : [ + "weuV0WsLiG" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "(a b c d e) h" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["weuV0WsLiG"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "weuV0WsLiG" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.title-query-syntax.json b/common/search/src/test/resources/test_documents/works.title-query-syntax.json index 44fe4327a..e40f15b7d 100644 --- a/common/search/src/test/resources/test_documents/works.title-query-syntax.json +++ b/common/search/src/test/resources/test_documents/works.title-query-syntax.json @@ -1,112 +1,182 @@ { - "description": "a work whose title has lots of ES query syntax operators", - "createdAt": "2023-11-21T15:39:33.617819Z", - "id": "mdg1yvuv", - "document": { - "debug": { - "source": { - "id": "mdg1yvuv", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "a work whose title has lots of ES query syntax operators", + "createdAt" : "2024-11-13T08:43:26.460971Z", + "id" : "mdg1yvuv", + "document" : { + "debug" : { + "source" : { + "id" : "mdg1yvuv", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "9P6mnsoyfd" + "ontologyType" : "Work", + "value" : "9P6mnsoyfd" }, - "version": 52, - "modifiedTime": "1967-11-04T04:23:34Z" + "version" : 52, + "modifiedTime" : "1967-11-04T04:23:34Z" }, - "mergedTime": "1967-11-04T04:23:34Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1967-11-04T04:23:34Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "mdg1yvuv", - "title": "+a -title | with (all the simple) query~4 syntax operators in it*", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "mdg1yvuv", + "title" : "+a -title | with (all the simple) query~4 syntax operators in it*", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "9P6mnsoyfd", - "type": "Identifier" + "value" : "9P6mnsoyfd", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "mdg1yvuv", - "sourceIdentifier.value": "9P6mnsoyfd", - "identifiers.value": ["9P6mnsoyfd"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "+a -title | with (all the simple) query~4 syntax operators in it*" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "mdg1yvuv", + "sourceIdentifier.value" : "9P6mnsoyfd", + "identifiers.value" : [ + "9P6mnsoyfd" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "+a -title | with (all the simple) query~4 syntax operators in it*" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["9P6mnsoyfd"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "9P6mnsoyfd" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.visible.0.json b/common/search/src/test/resources/test_documents/works.visible.0.json index f0b5d8230..b12330a61 100644 --- a/common/search/src/test/resources/test_documents/works.visible.0.json +++ b/common/search/src/test/resources/test_documents/works.visible.0.json @@ -1,112 +1,182 @@ { - "description": "an arbitrary list of visible works", - "createdAt": "2023-11-21T15:38:56.668994Z", - "id": "2twopft1", - "document": { - "debug": { - "source": { - "id": "2twopft1", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "an arbitrary list of visible works", + "createdAt" : "2024-11-13T08:43:26.177685Z", + "id" : "2twopft1", + "document" : { + "debug" : { + "source" : { + "id" : "2twopft1", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "Uaequ81tpB" + "ontologyType" : "Work", + "value" : "Uaequ81tpB" }, - "version": 59, - "modifiedTime": "1972-02-10T18:53:31Z" + "version" : 59, + "modifiedTime" : "1972-02-10T18:53:31Z" }, - "mergedTime": "1972-02-10T18:53:31Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1972-02-10T18:53:31Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "2twopft1", - "title": "title-vaMzxd8prf", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "2twopft1", + "title" : "title-vaMzxd8prf", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "Uaequ81tpB", - "type": "Identifier" + "value" : "Uaequ81tpB", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "2twopft1", - "sourceIdentifier.value": "Uaequ81tpB", - "identifiers.value": ["Uaequ81tpB"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-vaMzxd8prf" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "2twopft1", + "sourceIdentifier.value" : "Uaequ81tpB", + "identifiers.value" : [ + "Uaequ81tpB" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-vaMzxd8prf" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["Uaequ81tpB"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "Uaequ81tpB" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.visible.1.json b/common/search/src/test/resources/test_documents/works.visible.1.json index 3c28bc8ea..133ab0221 100644 --- a/common/search/src/test/resources/test_documents/works.visible.1.json +++ b/common/search/src/test/resources/test_documents/works.visible.1.json @@ -1,112 +1,182 @@ { - "description": "an arbitrary list of visible works", - "createdAt": "2023-11-21T15:38:59.351372Z", - "id": "dph7sjip", - "document": { - "debug": { - "source": { - "id": "dph7sjip", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "an arbitrary list of visible works", + "createdAt" : "2024-11-13T08:43:26.179486Z", + "id" : "dph7sjip", + "document" : { + "debug" : { + "source" : { + "id" : "dph7sjip", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "WpBejTwv1N" + "ontologyType" : "Work", + "value" : "WpBejTwv1N" }, - "version": 66, - "modifiedTime": "1971-11-19T03:42:42Z" + "version" : 66, + "modifiedTime" : "1971-11-19T03:42:42Z" }, - "mergedTime": "1971-11-19T03:42:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1971-11-19T03:42:42Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "dph7sjip", - "title": "title-3hvGdgZfc8", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "dph7sjip", + "title" : "title-3hvGdgZfc8", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "WpBejTwv1N", - "type": "Identifier" + "value" : "WpBejTwv1N", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "dph7sjip", - "sourceIdentifier.value": "WpBejTwv1N", - "identifiers.value": ["WpBejTwv1N"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-3hvGdgZfc8" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "dph7sjip", + "sourceIdentifier.value" : "WpBejTwv1N", + "identifiers.value" : [ + "WpBejTwv1N" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-3hvGdgZfc8" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["WpBejTwv1N"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "WpBejTwv1N" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.visible.2.json b/common/search/src/test/resources/test_documents/works.visible.2.json index bddf04e84..27810c8c7 100644 --- a/common/search/src/test/resources/test_documents/works.visible.2.json +++ b/common/search/src/test/resources/test_documents/works.visible.2.json @@ -1,112 +1,182 @@ { - "description": "an arbitrary list of visible works", - "createdAt": "2023-11-21T15:38:59.368168Z", - "id": "fyqts0co", - "document": { - "debug": { - "source": { - "id": "fyqts0co", - "identifier": { - "identifierType": { - "id": "calm-record-id" + "description" : "an arbitrary list of visible works", + "createdAt" : "2024-11-13T08:43:26.180590Z", + "id" : "fyqts0co", + "document" : { + "debug" : { + "source" : { + "id" : "fyqts0co", + "identifier" : { + "identifierType" : { + "id" : "calm-record-id" }, - "ontologyType": "Work", - "value": "ZvWebpA5WH" + "ontologyType" : "Work", + "value" : "ZvWebpA5WH" }, - "version": 89, - "modifiedTime": "1979-01-28T05:43:24Z" + "version" : 89, + "modifiedTime" : "1979-01-28T05:43:24Z" }, - "mergedTime": "1979-01-28T05:43:24Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1979-01-28T05:43:24Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "fyqts0co", - "title": "title-XQqPyuxbr5", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "fyqts0co", + "title" : "title-XQqPyuxbr5", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "calm-record-id", - "label": "Calm RecordIdentifier", - "type": "IdentifierType" + "identifierType" : { + "id" : "calm-record-id", + "label" : "Calm RecordIdentifier", + "type" : "IdentifierType" }, - "value": "ZvWebpA5WH", - "type": "Identifier" + "value" : "ZvWebpA5WH", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "fyqts0co", - "sourceIdentifier.value": "ZvWebpA5WH", - "identifiers.value": ["ZvWebpA5WH"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-XQqPyuxbr5" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "fyqts0co", + "sourceIdentifier.value" : "ZvWebpA5WH", + "identifiers.value" : [ + "ZvWebpA5WH" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-XQqPyuxbr5" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["ZvWebpA5WH"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "ZvWebpA5WH" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.visible.3.json b/common/search/src/test/resources/test_documents/works.visible.3.json index 1a4cb5532..da3c12ed7 100644 --- a/common/search/src/test/resources/test_documents/works.visible.3.json +++ b/common/search/src/test/resources/test_documents/works.visible.3.json @@ -1,112 +1,182 @@ { - "description": "an arbitrary list of visible works", - "createdAt": "2023-11-21T15:38:59.384069Z", - "id": "raob2ruv", - "document": { - "debug": { - "source": { - "id": "raob2ruv", - "identifier": { - "identifierType": { - "id": "sierra-system-number" + "description" : "an arbitrary list of visible works", + "createdAt" : "2024-11-13T08:43:26.181791Z", + "id" : "raob2ruv", + "document" : { + "debug" : { + "source" : { + "id" : "raob2ruv", + "identifier" : { + "identifierType" : { + "id" : "sierra-system-number" }, - "ontologyType": "Work", - "value": "wyJzS2SuiH" + "ontologyType" : "Work", + "value" : "wyJzS2SuiH" }, - "version": 69, - "modifiedTime": "1966-03-23T00:51:51Z" + "version" : 69, + "modifiedTime" : "1966-03-23T00:51:51Z" }, - "mergedTime": "1966-03-23T00:51:51Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "1966-03-23T00:51:51Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "raob2ruv", - "title": "title-bFbQPNB7Zu", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "raob2ruv", + "title" : "title-bFbQPNB7Zu", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "sierra-system-number", - "label": "Sierra system number", - "type": "IdentifierType" + "identifierType" : { + "id" : "sierra-system-number", + "label" : "Sierra system number", + "type" : "IdentifierType" }, - "value": "wyJzS2SuiH", - "type": "Identifier" + "value" : "wyJzS2SuiH", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "raob2ruv", - "sourceIdentifier.value": "wyJzS2SuiH", - "identifiers.value": ["wyJzS2SuiH"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-bFbQPNB7Zu" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "raob2ruv", + "sourceIdentifier.value" : "wyJzS2SuiH", + "identifiers.value" : [ + "wyJzS2SuiH" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-bFbQPNB7Zu" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["wyJzS2SuiH"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "wyJzS2SuiH" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/common/search/src/test/resources/test_documents/works.visible.4.json b/common/search/src/test/resources/test_documents/works.visible.4.json index 159160997..1bb6fb008 100644 --- a/common/search/src/test/resources/test_documents/works.visible.4.json +++ b/common/search/src/test/resources/test_documents/works.visible.4.json @@ -1,112 +1,182 @@ { - "description": "an arbitrary list of visible works", - "createdAt": "2023-11-21T15:38:59.396452Z", - "id": "vbi1ii19", - "document": { - "debug": { - "source": { - "id": "vbi1ii19", - "identifier": { - "identifierType": { - "id": "miro-image-number" + "description" : "an arbitrary list of visible works", + "createdAt" : "2024-11-13T08:43:26.182838Z", + "id" : "vbi1ii19", + "document" : { + "debug" : { + "source" : { + "id" : "vbi1ii19", + "identifier" : { + "identifierType" : { + "id" : "miro-image-number" }, - "ontologyType": "Work", - "value": "CzLNHBFHuR" + "ontologyType" : "Work", + "value" : "CzLNHBFHuR" }, - "version": 46, - "modifiedTime": "2024-12-13T21:31:42Z" + "version" : 46, + "modifiedTime" : "2024-12-13T21:31:42Z" }, - "mergedTime": "2024-12-13T21:31:42Z", - "indexedTime": "2001-01-01T01:01:01Z", - "redirectSources": [] + "mergedTime" : "2024-12-13T21:31:42Z", + "indexedTime" : "2001-01-01T01:01:01Z", + "redirectSources" : [ + ], + "mergeCandidates" : [ + ] }, - "display": { - "id": "vbi1ii19", - "title": "title-jGGR8UNWut", - "alternativeTitles": [], - "contributors": [], - "identifiers": [ + "display" : { + "id" : "vbi1ii19", + "title" : "title-jGGR8UNWut", + "alternativeTitles" : [ + ], + "contributors" : [ + ], + "identifiers" : [ { - "identifierType": { - "id": "miro-image-number", - "label": "Miro image number", - "type": "IdentifierType" + "identifierType" : { + "id" : "miro-image-number", + "label" : "Miro image number", + "type" : "IdentifierType" }, - "value": "CzLNHBFHuR", - "type": "Identifier" + "value" : "CzLNHBFHuR", + "type" : "Identifier" } ], - "subjects": [], - "genres": [], - "items": [], - "holdings": [], - "availabilities": [], - "production": [], - "languages": [], - "notes": [], - "formerFrequency": [], - "designation": [], - "images": [], - "parts": [], - "partOf": [], - "precededBy": [], - "succeededBy": [], - "type": "Work" + "subjects" : [ + ], + "genres" : [ + ], + "items" : [ + ], + "holdings" : [ + ], + "availabilities" : [ + ], + "production" : [ + ], + "languages" : [ + ], + "notes" : [ + ], + "formerFrequency" : [ + ], + "designation" : [ + ], + "images" : [ + ], + "parts" : [ + ], + "partOf" : [ + ], + "precededBy" : [ + ], + "succeededBy" : [ + ], + "type" : "Work" }, - "query": { - "collectionPath.label": null, - "collectionPath.path": null, - "alternativeTitles": [], - "contributors.agent.label": [], - "description": null, - "edition": null, - "genres.concepts.label": [], - "id": "vbi1ii19", - "sourceIdentifier.value": "CzLNHBFHuR", - "identifiers.value": ["CzLNHBFHuR"], - "images.id": [], - "images.identifiers.value": [], - "items.id": [], - "items.identifiers.value": [], - "languages.label": [], - "lettering": null, - "notes.contents": [], - "partOf.title": [], - "physicalDescription": null, - "production.label": [], - "referenceNumber": null, - "subjects.concepts.label": [], - "title": "title-jGGR8UNWut" + "query" : { + "collectionPath.label" : null, + "collectionPath.path" : null, + "alternativeTitles" : [ + ], + "contributors.agent.label" : [ + ], + "description" : null, + "edition" : null, + "genres.concepts.label" : [ + ], + "id" : "vbi1ii19", + "sourceIdentifier.value" : "CzLNHBFHuR", + "identifiers.value" : [ + "CzLNHBFHuR" + ], + "images.id" : [ + ], + "images.identifiers.value" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.shelfmark.value" : [ + ], + "languages.label" : [ + ], + "lettering" : null, + "notes.contents" : [ + ], + "partOf.title" : [ + ], + "physicalDescription" : null, + "production.label" : [ + ], + "referenceNumber" : null, + "subjects.concepts.label" : [ + ], + "title" : "title-jGGR8UNWut" }, - "aggregatableValues": { - "workType": [], - "genres.label": [], - "production.dates": [], - "subjects.label": [], - "languages": [], - "contributors.agent.label": [], - "items.locations.license": [], - "availabilities": [] + "aggregatableValues" : { + "workType" : [ + ], + "genres.label" : [ + ], + "production.dates" : [ + ], + "subjects.label" : [ + ], + "languages" : [ + ], + "contributors.agent.label" : [ + ], + "items.locations.license" : [ + ], + "availabilities" : [ + ] }, - "filterableValues": { - "format.id": null, - "workType": "Standard", - "production.dates.range.from": [], - "languages.id": [], - "genres.label": [], - "genres.concepts.id": [], - "subjects.label": [], - "contributors.agent.label": [], - "identifiers.value": ["CzLNHBFHuR"], - "items.locations.license.id": [], - "items.locations.accessConditions.status.id": [], - "items.id": [], - "items.identifiers.value": [], - "items.locations.locationType.id": [], - "partOf.id": [], - "partOf.title": [], - "availabilities.id": [] + "filterableValues" : { + "format.id" : null, + "workType" : "Standard", + "production.dates.range.from" : [ + ], + "languages.id" : [ + ], + "genres.label" : [ + ], + "genres.concepts.id" : [ + ], + "genres.concepts.sourceIdentifier" : [ + ], + "subjects.label" : [ + ], + "subjects.concepts.id" : [ + ], + "subjects.concepts.sourceIdentifier" : [ + ], + "contributors.agent.label" : [ + ], + "contributors.agent.id" : [ + ], + "contributors.agent.sourceIdentifier" : [ + ], + "identifiers.value" : [ + "CzLNHBFHuR" + ], + "items.locations.license.id" : [ + ], + "items.locations.accessConditions.status.id" : [ + ], + "items.id" : [ + ], + "items.identifiers.value" : [ + ], + "items.locations.locationType.id" : [ + ], + "partOf.id" : [ + ], + "partOf.title" : [ + ], + "availabilities.id" : [ + ] }, - "type": "Visible" + "type" : "Visible" } -} +} \ No newline at end of file diff --git a/search/docker-compose.yml b/search/docker-compose.yml index 671625016..6df01960e 100644 --- a/search/docker-compose.yml +++ b/search/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.3" services: elasticsearch: - image: "docker.elastic.co/elasticsearch/elasticsearch:8.4.0" + image: "docker.elastic.co/elasticsearch/elasticsearch:8.11.4" ports: - "9200:9200" - "9300:9300" diff --git a/snapshots/snapshot_generator/docker-compose.yml b/snapshots/snapshot_generator/docker-compose.yml index d0ae7e99f..98e1c1627 100644 --- a/snapshots/snapshot_generator/docker-compose.yml +++ b/snapshots/snapshot_generator/docker-compose.yml @@ -15,7 +15,7 @@ services: ports: - "33333:8000" elasticsearch: - image: "docker.elastic.co/elasticsearch/elasticsearch:8.4.0" + image: "docker.elastic.co/elasticsearch/elasticsearch:8.11.4" ports: - "9200:9200" - "9300:9300" From afd15ec6a5aceee175b878477366bb97a42a7b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Brychta?= Date: Mon, 18 Nov 2024 09:41:50 +0000 Subject: [PATCH 3/4] JSON formatting changes #5823 --- .../test_documents/image-production.1098.json | 192 ++--- .../test_documents/image-production.1900.json | 192 ++--- .../test_documents/image-production.1904.json | 192 ++--- .../test_documents/image-production.1976.json | 196 ++--- .../test_documents/image-production.2020.json | 188 ++--- .../test_documents/images.contributors.0.json | 200 ++--- .../test_documents/images.contributors.1.json | 216 ++--- .../test_documents/images.contributors.2.json | 212 ++--- .../images.different-licenses.0.json | 188 ++--- .../images.different-licenses.1.json | 188 ++--- .../images.different-licenses.2.json | 192 ++--- .../images.different-licenses.3.json | 192 ++--- .../images.different-licenses.4.json | 188 ++--- .../images.different-licenses.5.json | 192 ++--- .../images.different-licenses.6.json | 192 ++--- .../test_documents/images.everything.json | 272 +++---- .../images.examples.bread-baguette.json | 192 ++--- .../images.examples.bread-focaccia.json | 192 ++--- .../images.examples.bread-mantou.json | 192 ++--- .../images.examples.bread-schiacciata.json | 192 ++--- ...s.examples.contributor-filter-tests.0.json | 204 ++--- ...s.examples.contributor-filter-tests.1.json | 200 ++--- ...s.examples.contributor-filter-tests.2.json | 188 ++--- .../images.examples.genre-filter-tests.0.json | 206 ++--- .../images.examples.genre-filter-tests.1.json | 192 ++--- .../images.examples.genre-filter-tests.2.json | 216 ++--- ...ges.examples.linked-with-another-work.json | 196 ++--- ....examples.linked-with-the-same-work.0.json | 192 ++--- ....examples.linked-with-the-same-work.1.json | 192 ++--- ....examples.linked-with-the-same-work.2.json | 196 ++--- ....examples.linked-with-the-same-work.3.json | 192 ++--- .../test_documents/images.genres.0.json | 202 ++--- .../test_documents/images.genres.1.json | 188 ++--- .../test_documents/images.genres.2.json | 210 ++--- .../images.inferred-data.none.json | 198 ++--- .../images.inferred-data.wrong-format.json | 206 ++--- .../images.subjects.screwdrivers-1.json | 196 ++--- .../images.subjects.screwdrivers-2.json | 200 ++--- .../images.subjects.sounds.json | 198 ++--- .../images.subjects.squirrel,sample.json | 206 ++--- .../images.subjects.squirrel,screwdriver.json | 206 ++--- .../test_documents/work-production.1098.json | 224 +++--- .../test_documents/work-production.1900.json | 224 +++--- .../test_documents/work-production.1904.json | 224 +++--- .../test_documents/work-production.1976.json | 224 +++--- .../test_documents/work-production.2020.json | 224 +++--- .../test_documents/work-thumbnail.json | 236 +++--- .../test_documents/work-title-dodo.json | 212 ++--- .../test_documents/work-title-mouse.json | 212 ++--- .../work-with-edition-and-duration.json | 214 ++--- .../work.invisible.title-mouse.json | 40 +- .../work.items-with-location-types.0.json | 256 +++--- .../work.items-with-location-types.1.json | 284 +++---- .../work.items-with-location-types.2.json | 262 +++---- .../work.visible.everything.0.json | 742 +++++++++--------- .../work.visible.everything.1.json | 708 ++++++++--------- .../work.visible.everything.2.json | 714 ++++++++--------- .../works.collection-path.NUFFINK.json | 210 ++--- .../works.collection-path.PPCRI.json | 210 ++--- .../test_documents/works.contributor.0.json | 222 +++--- .../test_documents/works.contributor.1.json | 222 +++--- .../test_documents/works.contributor.2.json | 234 +++--- .../test_documents/works.contributor.3.json | 234 +++--- .../test_documents/works.deleted.0.json | 44 +- .../test_documents/works.deleted.1.json | 44 +- .../test_documents/works.deleted.2.json | 44 +- .../test_documents/works.deleted.3.json | 44 +- .../test_documents/works.every-format.0.json | 220 +++--- .../test_documents/works.every-format.1.json | 220 +++--- .../test_documents/works.every-format.10.json | 220 +++--- .../test_documents/works.every-format.11.json | 220 +++--- .../test_documents/works.every-format.12.json | 220 +++--- .../test_documents/works.every-format.13.json | 220 +++--- .../test_documents/works.every-format.14.json | 220 +++--- .../test_documents/works.every-format.15.json | 220 +++--- .../test_documents/works.every-format.16.json | 220 +++--- .../test_documents/works.every-format.17.json | 220 +++--- .../test_documents/works.every-format.18.json | 220 +++--- .../test_documents/works.every-format.19.json | 220 +++--- .../test_documents/works.every-format.2.json | 220 +++--- .../test_documents/works.every-format.20.json | 220 +++--- .../test_documents/works.every-format.21.json | 220 +++--- .../test_documents/works.every-format.22.json | 220 +++--- .../test_documents/works.every-format.23.json | 220 +++--- .../test_documents/works.every-format.3.json | 220 +++--- .../test_documents/works.every-format.4.json | 220 +++--- .../test_documents/works.every-format.5.json | 220 +++--- .../test_documents/works.every-format.6.json | 220 +++--- .../test_documents/works.every-format.7.json | 220 +++--- .../test_documents/works.every-format.8.json | 220 +++--- .../test_documents/works.every-format.9.json | 220 +++--- ...xamples.access-status-filters-tests.0.json | 276 +++---- ...xamples.access-status-filters-tests.1.json | 276 +++---- ...xamples.access-status-filters-tests.2.json | 274 +++---- ...xamples.access-status-filters-tests.3.json | 280 +++---- ...xamples.access-status-filters-tests.4.json | 280 +++---- ...xamples.access-status-filters-tests.5.json | 280 +++---- ...xamples.access-status-filters-tests.6.json | 274 +++---- ...ples.aggregation-with-filters-tests.0.json | 238 +++--- ...ples.aggregation-with-filters-tests.1.json | 238 +++--- ...les.aggregation-with-filters-tests.10.json | 238 +++--- ...les.aggregation-with-filters-tests.11.json | 238 +++--- ...les.aggregation-with-filters-tests.12.json | 238 +++--- ...les.aggregation-with-filters-tests.13.json | 238 +++--- ...les.aggregation-with-filters-tests.14.json | 238 +++--- ...les.aggregation-with-filters-tests.15.json | 238 +++--- ...les.aggregation-with-filters-tests.16.json | 238 +++--- ...les.aggregation-with-filters-tests.17.json | 238 +++--- ...les.aggregation-with-filters-tests.18.json | 238 +++--- ...les.aggregation-with-filters-tests.19.json | 238 +++--- ...ples.aggregation-with-filters-tests.2.json | 238 +++--- ...les.aggregation-with-filters-tests.20.json | 238 +++--- ...les.aggregation-with-filters-tests.21.json | 238 +++--- ...les.aggregation-with-filters-tests.22.json | 238 +++--- ...les.aggregation-with-filters-tests.23.json | 238 +++--- ...ples.aggregation-with-filters-tests.3.json | 238 +++--- ...ples.aggregation-with-filters-tests.4.json | 238 +++--- ...ples.aggregation-with-filters-tests.5.json | 238 +++--- ...ples.aggregation-with-filters-tests.6.json | 238 +++--- ...ples.aggregation-with-filters-tests.7.json | 238 +++--- ...ples.aggregation-with-filters-tests.8.json | 238 +++--- ...ples.aggregation-with-filters-tests.9.json | 238 +++--- ...s.examples.availabilities.closed-only.json | 262 +++---- ...ks.examples.availabilities.everywhere.json | 358 ++++----- ...works.examples.availabilities.nowhere.json | 210 ++--- ...s.examples.availabilities.online-only.json | 264 +++---- ...rks.examples.availabilities.open-only.json | 252 +++--- ....examples.contributor-filters-tests.0.json | 222 +++--- ....examples.contributor-filters-tests.1.json | 222 +++--- ....examples.contributor-filters-tests.2.json | 222 +++--- ....examples.contributor-filters-tests.3.json | 222 +++--- ....examples.contributor-filters-tests.4.json | 234 +++--- ....examples.contributor-filters-tests.5.json | 210 ++--- ...mples.different-work-types.Collection.json | 210 ++--- ...examples.different-work-types.Section.json | 210 ++--- ....examples.different-work-types.Series.json | 210 ++--- ...xamples.filtered-aggregations-tests.0.json | 226 +++--- ...xamples.filtered-aggregations-tests.1.json | 226 +++--- ...xamples.filtered-aggregations-tests.2.json | 226 +++--- ...xamples.filtered-aggregations-tests.3.json | 226 +++--- ...xamples.filtered-aggregations-tests.4.json | 226 +++--- ...xamples.filtered-aggregations-tests.5.json | 226 +++--- ...xamples.filtered-aggregations-tests.6.json | 226 +++--- ...xamples.filtered-aggregations-tests.7.json | 226 +++--- ...xamples.filtered-aggregations-tests.8.json | 226 +++--- ...xamples.filtered-aggregations-tests.9.json | 226 +++--- .../works.examples.genre-filters-tests.0.json | 256 +++--- .../works.examples.genre-filters-tests.1.json | 236 +++--- .../works.examples.genre-filters-tests.2.json | 236 +++--- .../works.examples.genre-filters-tests.3.json | 276 +++---- .../works.examples.genre-filters-tests.4.json | 328 ++++---- .../works.examples.genre-filters-tests.5.json | 210 ++--- ...orks.examples.subject-filters-tests.0.json | 256 +++--- ...orks.examples.subject-filters-tests.1.json | 228 +++--- ...orks.examples.subject-filters-tests.2.json | 228 +++--- ...orks.examples.subject-filters-tests.3.json | 244 +++--- ...orks.examples.subject-filters-tests.4.json | 280 +++---- ...orks.examples.subject-filters-tests.5.json | 210 ++--- .../test_documents/works.formats.0.Books.json | 220 +++--- .../test_documents/works.formats.1.Books.json | 220 +++--- .../test_documents/works.formats.2.Books.json | 220 +++--- .../test_documents/works.formats.3.Books.json | 220 +++--- .../works.formats.4.Journals.json | 220 +++--- .../works.formats.5.Journals.json | 220 +++--- .../works.formats.6.Journals.json | 220 +++--- .../test_documents/works.formats.7.Audio.json | 220 +++--- .../test_documents/works.formats.8.Audio.json | 220 +++--- .../works.formats.9.Pictures.json | 220 +++--- .../test_documents/works.genres.json | 244 +++--- .../test_documents/works.invisible.0.json | 40 +- .../test_documents/works.invisible.1.json | 40 +- .../test_documents/works.invisible.2.json | 40 +- .../works.items-with-licenses.0.json | 244 +++--- .../works.items-with-licenses.1.json | 242 +++--- .../works.items-with-licenses.2.json | 240 +++--- .../works.items-with-licenses.3.json | 272 +++---- .../works.items-with-licenses.4.json | 210 ++--- .../works.items-with-other-identifiers.0.json | 266 +++---- .../works.items-with-other-identifiers.1.json | 266 +++---- .../works.items-with-other-identifiers.2.json | 268 +++---- .../works.items-with-other-identifiers.3.json | 268 +++---- .../works.items-with-other-identifiers.4.json | 266 +++---- .../test_documents/works.languages.0.eng.json | 216 ++--- .../test_documents/works.languages.1.eng.json | 216 ++--- .../test_documents/works.languages.2.eng.json | 216 ++--- .../works.languages.3.eng+swe.json | 222 +++--- .../works.languages.4.eng+swe+tur.json | 228 +++--- .../test_documents/works.languages.5.swe.json | 216 ++--- .../test_documents/works.languages.6.tur.json | 216 ++--- .../works.production.multi-year.0.json | 232 +++--- .../works.production.multi-year.1.json | 232 +++--- .../works.production.multi-year.2.json | 232 +++--- .../works.production.multi-year.3.json | 232 +++--- .../works.production.multi-year.4.json | 232 +++--- .../works.production.multi-year.5.json | 232 +++--- .../test_documents/works.redirected.0.json | 54 +- .../test_documents/works.redirected.1.json | 54 +- .../test_documents/works.subjects.0.json | 228 +++--- .../test_documents/works.subjects.1.json | 228 +++--- .../test_documents/works.subjects.2.json | 228 +++--- .../test_documents/works.subjects.3.json | 246 +++--- .../test_documents/works.subjects.4.json | 210 ++--- .../works.title-query-parens.json | 210 ++--- .../works.title-query-syntax.json | 210 ++--- .../test_documents/works.visible.0.json | 210 ++--- .../test_documents/works.visible.1.json | 210 ++--- .../test_documents/works.visible.2.json | 210 ++--- .../test_documents/works.visible.3.json | 210 ++--- .../test_documents/works.visible.4.json | 210 ++--- 209 files changed, 23443 insertions(+), 23443 deletions(-) diff --git a/common/search/src/test/resources/test_documents/image-production.1098.json b/common/search/src/test/resources/test_documents/image-production.1098.json index 6152f0baf..cc98b0a07 100644 --- a/common/search/src/test/resources/test_documents/image-production.1098.json +++ b/common/search/src/test/resources/test_documents/image-production.1098.json @@ -1,149 +1,149 @@ { - "description" : "an image with a production event in 1098", - "createdAt" : "2024-11-14T14:37:56.596538Z", - "id" : "zim2up41", - "document" : { - "modifiedTime" : "2019-11-11T12:04:49Z", - "display" : { - "id" : "zim2up41", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with a production event in 1098", + "createdAt": "2024-11-14T14:37:56.596538Z", + "id": "zim2up41", + "document": { + "modifiedTime": "2019-11-11T12:04:49Z", + "display": { + "id": "zim2up41", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", - "linkText" : "Link text: Hl1nIcW", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", + "linkText": "Link text: Hl1nIcW", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", - "linkText" : "Link text: Hl1nIcW", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/JUJ.jpg/info.json", + "linkText": "Link text: Hl1nIcW", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#8CC4A4", - "source" : { - "id" : "wqba6mvb", - "title" : "Production event in 1098", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#8CC4A4", + "source": { + "id": "wqba6mvb", + "title": "Production event in 1098", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "zim2up41", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "zim2up41", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "wqba6mvb", - "sourceIdentifier.value" : "owgRJhdOqe", - "identifiers.value" : [ + "id": "wqba6mvb", + "sourceIdentifier.value": "owgRJhdOqe", + "identifiers.value": [ "owgRJhdOqe" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1098" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1098" + "title": "Production event in 1098" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ -27517622400000 ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.026766865, -0.005005164, -0.009573154, @@ -4241,7 +4241,7 @@ 0.011764826, 0.0052256417 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.004265803, 0.042820178, -0.039333668, @@ -5244,8 +5244,8 @@ 0.03820625 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/image-production.1900.json b/common/search/src/test/resources/test_documents/image-production.1900.json index 0ce3724eb..f38d9d827 100644 --- a/common/search/src/test/resources/test_documents/image-production.1900.json +++ b/common/search/src/test/resources/test_documents/image-production.1900.json @@ -1,149 +1,149 @@ { - "description" : "an image with a production event in 1900", - "createdAt" : "2024-11-14T14:37:56.576579Z", - "id" : "i8bakexw", - "document" : { - "modifiedTime" : "2037-01-20T18:12:21Z", - "display" : { - "id" : "i8bakexw", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with a production event in 1900", + "createdAt": "2024-11-14T14:37:56.576579Z", + "id": "i8bakexw", + "document": { + "modifiedTime": "2037-01-20T18:12:21Z", + "display": { + "id": "i8bakexw", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", - "linkText" : "Link text: 026fuZlr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", + "linkText": "Link text: 026fuZlr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", - "linkText" : "Link text: 026fuZlr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/MFf.jpg/info.json", + "linkText": "Link text: 026fuZlr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#C67937", - "source" : { - "id" : "vqs9r5bs", - "title" : "Production event in 1900", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#C67937", + "source": { + "id": "vqs9r5bs", + "title": "Production event in 1900", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "i8bakexw", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "i8bakexw", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "vqs9r5bs", - "sourceIdentifier.value" : "z5L2uS8Ouo", - "identifiers.value" : [ + "id": "vqs9r5bs", + "sourceIdentifier.value": "z5L2uS8Ouo", + "identifiers.value": [ "z5L2uS8Ouo" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1900" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1900" + "title": "Production event in 1900" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ -2208988800000 ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0047968123, 0.015364653, -0.01583392, @@ -4241,7 +4241,7 @@ -0.020360664, 0.010017425 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0010269998, -0.02583155, 0.0204062, @@ -5244,8 +5244,8 @@ 0.020544065 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/image-production.1904.json b/common/search/src/test/resources/test_documents/image-production.1904.json index 5377b1fb4..9a5783da8 100644 --- a/common/search/src/test/resources/test_documents/image-production.1904.json +++ b/common/search/src/test/resources/test_documents/image-production.1904.json @@ -1,149 +1,149 @@ { - "description" : "an image with a production event in 1904", - "createdAt" : "2024-11-14T14:37:56.586389Z", - "id" : "zj4rti6w", - "document" : { - "modifiedTime" : "1954-03-26T03:10:59Z", - "display" : { - "id" : "zj4rti6w", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with a production event in 1904", + "createdAt": "2024-11-14T14:37:56.586389Z", + "id": "zj4rti6w", + "document": { + "modifiedTime": "1954-03-26T03:10:59Z", + "display": { + "id": "zj4rti6w", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", - "credit" : "Credit line: UiijDELo", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", + "credit": "Credit line: UiijDELo", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", - "credit" : "Credit line: UiijDELo", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/km7.jpg/info.json", + "credit": "Credit line: UiijDELo", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#CF839A", - "source" : { - "id" : "fytxlujd", - "title" : "Production event in 1904", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#CF839A", + "source": { + "id": "fytxlujd", + "title": "Production event in 1904", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "zj4rti6w", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "zj4rti6w", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "fytxlujd", - "sourceIdentifier.value" : "Ali8NMeqhr", - "identifiers.value" : [ + "id": "fytxlujd", + "sourceIdentifier.value": "Ali8NMeqhr", + "identifiers.value": [ "Ali8NMeqhr" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1904" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1904" + "title": "Production event in 1904" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ -2082844800000 ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.010363603, 0.010966938, 0.0011999448, @@ -4241,7 +4241,7 @@ 0.039341953, -0.006312185 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.012751499, 0.0021211202, 0.040509477, @@ -5244,8 +5244,8 @@ 0.014304997 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/image-production.1976.json b/common/search/src/test/resources/test_documents/image-production.1976.json index cea035647..a63d07790 100644 --- a/common/search/src/test/resources/test_documents/image-production.1976.json +++ b/common/search/src/test/resources/test_documents/image-production.1976.json @@ -1,151 +1,151 @@ { - "description" : "an image with a production event in 1976", - "createdAt" : "2024-11-14T14:37:56.581590Z", - "id" : "4zkzs8jw", - "document" : { - "modifiedTime" : "2028-08-26T11:12:55Z", - "display" : { - "id" : "4zkzs8jw", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with a production event in 1976", + "createdAt": "2024-11-14T14:37:56.581590Z", + "id": "4zkzs8jw", + "document": { + "modifiedTime": "2028-08-26T11:12:55Z", + "display": { + "id": "4zkzs8jw", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", - "credit" : "Credit line: 2syMgrwY", - "linkText" : "Link text: CbnDcl", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", + "credit": "Credit line: 2syMgrwY", + "linkText": "Link text: CbnDcl", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", - "credit" : "Credit line: 2syMgrwY", - "linkText" : "Link text: CbnDcl", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/hV7.jpg/info.json", + "credit": "Credit line: 2syMgrwY", + "linkText": "Link text: CbnDcl", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#4DBE5F", - "source" : { - "id" : "ks4dduhu", - "title" : "Production event in 1976", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#4DBE5F", + "source": { + "id": "ks4dduhu", + "title": "Production event in 1976", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "4zkzs8jw", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "4zkzs8jw", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ks4dduhu", - "sourceIdentifier.value" : "PhedPctLWp", - "identifiers.value" : [ + "id": "ks4dduhu", + "sourceIdentifier.value": "PhedPctLWp", + "identifiers.value": [ "PhedPctLWp" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1976" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1976" + "title": "Production event in 1976" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ 189302400000 ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.008132671, -0.0189312, -6.1867543E-4, @@ -4243,7 +4243,7 @@ -0.0015579165, -0.02412357 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.06583936, 0.020060135, 0.013187716, @@ -5246,8 +5246,8 @@ -0.057070903 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/image-production.2020.json b/common/search/src/test/resources/test_documents/image-production.2020.json index c3dad6fdd..4f3f49cbb 100644 --- a/common/search/src/test/resources/test_documents/image-production.2020.json +++ b/common/search/src/test/resources/test_documents/image-production.2020.json @@ -1,147 +1,147 @@ { - "description" : "an image with a production event in 2020", - "createdAt" : "2024-11-14T14:37:56.591202Z", - "id" : "m2rbdwgt", - "document" : { - "modifiedTime" : "2056-12-21T22:29:43Z", - "display" : { - "id" : "m2rbdwgt", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with a production event in 2020", + "createdAt": "2024-11-14T14:37:56.591202Z", + "id": "m2rbdwgt", + "document": { + "modifiedTime": "2056-12-21T22:29:43Z", + "display": { + "id": "m2rbdwgt", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/BNV.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#D70B8B", - "source" : { - "id" : "smbunmln", - "title" : "Production event in 2020", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#D70B8B", + "source": { + "id": "smbunmln", + "title": "Production event in 2020", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "m2rbdwgt", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "m2rbdwgt", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "smbunmln", - "sourceIdentifier.value" : "299HseGjKZ", - "identifiers.value" : [ + "id": "smbunmln", + "sourceIdentifier.value": "299HseGjKZ", + "identifiers.value": [ "299HseGjKZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "2020" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 2020" + "title": "Production event in 2020" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ 1577836800000 ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0051434813, -0.011234555, -9.6152583E-4, @@ -4239,7 +4239,7 @@ 0.042359322, 0.008583693 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.037654314, 0.04222703, -0.013481896, @@ -5242,8 +5242,8 @@ -0.004649543 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.contributors.0.json b/common/search/src/test/resources/test_documents/images.contributors.0.json index 065685c1c..456c9b19e 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.0.json +++ b/common/search/src/test/resources/test_documents/images.contributors.0.json @@ -1,158 +1,158 @@ { - "description" : "images with different contributors", - "createdAt" : "2024-11-14T14:37:56.374848Z", - "id" : "s6atajrq", - "document" : { - "modifiedTime" : "1991-06-19T20:23:45Z", - "display" : { - "id" : "s6atajrq", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different contributors", + "createdAt": "2024-11-14T14:37:56.374848Z", + "id": "s6atajrq", + "document": { + "modifiedTime": "1991-06-19T20:23:45Z", + "display": { + "id": "s6atajrq", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/15c.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#A1CC20", - "source" : { - "id" : "ioczclpg", - "title" : "title-YmNK8KG02u", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#A1CC20", + "source": { + "id": "ioczclpg", + "title": "title-YmNK8KG02u", + "contributors": [ { - "agent" : { - "label" : "carrots", - "type" : "Agent" + "agent": { + "label": "carrots", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "s6atajrq", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "s6atajrq", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "carrots" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ioczclpg", - "sourceIdentifier.value" : "kndclg5FbZ", - "identifiers.value" : [ + "id": "ioczclpg", + "sourceIdentifier.value": "kndclg5FbZ", + "identifiers.value": [ "kndclg5FbZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-YmNK8KG02u" + "title": "title-YmNK8KG02u" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"carrots\",\"type\":\"Agent\"}" ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "carrots" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 8.4422267E-4, -0.021801956, -8.682923E-4, @@ -4250,7 +4250,7 @@ 0.0048043597, -0.028333277 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.050384644, 0.03814256, -0.0063891374, @@ -5253,8 +5253,8 @@ -0.0057344665 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.contributors.1.json b/common/search/src/test/resources/test_documents/images.contributors.1.json index 8feb1659b..3b99f202a 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.1.json +++ b/common/search/src/test/resources/test_documents/images.contributors.1.json @@ -1,173 +1,173 @@ { - "description" : "images with different contributors", - "createdAt" : "2024-11-14T14:37:56.379788Z", - "id" : "8p59sfry", - "document" : { - "modifiedTime" : "2021-10-07T09:48:56Z", - "display" : { - "id" : "8p59sfry", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different contributors", + "createdAt": "2024-11-14T14:37:56.379788Z", + "id": "8p59sfry", + "document": { + "modifiedTime": "2021-10-07T09:48:56Z", + "display": { + "id": "8p59sfry", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", - "linkText" : "Link text: YQuA86b", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", + "linkText": "Link text: YQuA86b", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", - "linkText" : "Link text: YQuA86b", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/NWO.jpg/info.json", + "linkText": "Link text: YQuA86b", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#BD862E", - "source" : { - "id" : "zejavmqr", - "title" : "title-FrRzbLm9dz", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#BD862E", + "source": { + "id": "zejavmqr", + "title": "title-FrRzbLm9dz", + "contributors": [ { - "agent" : { - "label" : "carrots", - "type" : "Agent" + "agent": { + "label": "carrots", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "parrots", - "type" : "Organisation" + "agent": { + "label": "parrots", + "type": "Organisation" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "8p59sfry", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "8p59sfry", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "carrots", "parrots" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "zejavmqr", - "sourceIdentifier.value" : "4xvNzKQ7nP", - "identifiers.value" : [ + "id": "zejavmqr", + "sourceIdentifier.value": "4xvNzKQ7nP", + "identifiers.value": [ "4xvNzKQ7nP" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-FrRzbLm9dz" + "title": "title-FrRzbLm9dz" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"carrots\",\"type\":\"Agent\"}", "{\"label\":\"parrots\",\"type\":\"Organisation\"}" ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "carrots", "parrots" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.013218495, 0.025846567, -0.042770065, @@ -4265,7 +4265,7 @@ 0.018829614, 0.021396482 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.009844284, -0.037177544, -0.014458217, @@ -5268,8 +5268,8 @@ -0.023543477 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.contributors.2.json b/common/search/src/test/resources/test_documents/images.contributors.2.json index 941ecd325..2806c8991 100644 --- a/common/search/src/test/resources/test_documents/images.contributors.2.json +++ b/common/search/src/test/resources/test_documents/images.contributors.2.json @@ -1,171 +1,171 @@ { - "description" : "images with different contributors", - "createdAt" : "2024-11-14T14:37:56.384049Z", - "id" : "1o9uszyg", - "document" : { - "modifiedTime" : "1986-10-11T11:21:55Z", - "display" : { - "id" : "1o9uszyg", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different contributors", + "createdAt": "2024-11-14T14:37:56.384049Z", + "id": "1o9uszyg", + "document": { + "modifiedTime": "1986-10-11T11:21:55Z", + "display": { + "id": "1o9uszyg", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/aSM.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#916F02", - "source" : { - "id" : "dbdgkdoh", - "title" : "title-IPEeHggOxd", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#916F02", + "source": { + "id": "dbdgkdoh", + "title": "title-IPEeHggOxd", + "contributors": [ { - "agent" : { - "label" : "carrots", - "type" : "Agent" + "agent": { + "label": "carrots", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "parrots", - "type" : "Meeting" + "agent": { + "label": "parrots", + "type": "Meeting" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "1o9uszyg", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "1o9uszyg", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "carrots", "parrots" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "dbdgkdoh", - "sourceIdentifier.value" : "rlfsStYOfR", - "identifiers.value" : [ + "id": "dbdgkdoh", + "sourceIdentifier.value": "rlfsStYOfR", + "identifiers.value": [ "rlfsStYOfR" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-IPEeHggOxd" + "title": "title-IPEeHggOxd" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"carrots\",\"type\":\"Agent\"}", "{\"label\":\"parrots\",\"type\":\"Meeting\"}" ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "carrots", "parrots" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -7.76453E-4, 0.017554581, -0.006952244, @@ -4263,7 +4263,7 @@ -0.01826151, 0.016599374 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.07583656, -0.008055348, -0.014742264, @@ -5266,8 +5266,8 @@ 0.0060733673 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.0.json b/common/search/src/test/resources/test_documents/images.different-licenses.0.json index cf03ff4f8..9d3cddd8b 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.0.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.0.json @@ -1,148 +1,148 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.301407Z", - "id" : "j242uruj", - "document" : { - "modifiedTime" : "1976-11-06T16:07:21Z", - "display" : { - "id" : "j242uruj", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.301407Z", + "id": "j242uruj", + "document": { + "modifiedTime": "1976-11-06T16:07:21Z", + "display": { + "id": "j242uruj", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/CCz.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#6EFF53", - "source" : { - "id" : "yqts0coj", - "title" : "title-QqPyuxbr58", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#6EFF53", + "source": { + "id": "yqts0coj", + "title": "title-QqPyuxbr58", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "j242uruj", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "j242uruj", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "yqts0coj", - "sourceIdentifier.value" : "vWebpA5WHf", - "identifiers.value" : [ + "id": "yqts0coj", + "sourceIdentifier.value": "vWebpA5WHf", + "identifiers.value": [ "vWebpA5WHf", "wyJzS2SuiH", "rAOB2RuvBb" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-QqPyuxbr58" + "title": "title-QqPyuxbr58" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 7.066063E-4, -0.0095007485, -0.0100372415, @@ -4240,7 +4240,7 @@ 0.013578957, -0.0024780903 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.03029146, -0.0018410657, 0.023483027, @@ -5243,8 +5243,8 @@ 0.063571826 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.1.json b/common/search/src/test/resources/test_documents/images.different-licenses.1.json index 7a9054e4e..01cb66cc8 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.1.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.1.json @@ -1,148 +1,148 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.303803Z", - "id" : "yuhjtxla", - "document" : { - "modifiedTime" : "1978-01-31T12:57:21Z", - "display" : { - "id" : "yuhjtxla", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.303803Z", + "id": "yuhjtxla", + "document": { + "modifiedTime": "1978-01-31T12:57:21Z", + "display": { + "id": "yuhjtxla", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Q3B.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#A17D69", - "source" : { - "id" : "0smxvqfb", - "title" : "title-2ieQsNe2J8", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#A17D69", + "source": { + "id": "0smxvqfb", + "title": "title-2ieQsNe2J8", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "yuhjtxla", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "yuhjtxla", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "0smxvqfb", - "sourceIdentifier.value" : "EWGLlj4YeW", - "identifiers.value" : [ + "id": "0smxvqfb", + "sourceIdentifier.value": "EWGLlj4YeW", + "identifiers.value": [ "EWGLlj4YeW", "upp0F2gGqX", "hQJGD9d1n0" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-2ieQsNe2J8" + "title": "title-2ieQsNe2J8" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.0015108159, -0.0033354652, 0.013147673, @@ -4240,7 +4240,7 @@ -0.0013397754, -0.0058979383 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.003956161, -0.0050555803, -0.021572769, @@ -5243,8 +5243,8 @@ 0.011012712 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.2.json b/common/search/src/test/resources/test_documents/images.different-licenses.2.json index 834a52c96..3442ef734 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.2.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.2.json @@ -1,150 +1,150 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.305483Z", - "id" : "giazc2e0", - "document" : { - "modifiedTime" : "1972-05-08T14:38:37Z", - "display" : { - "id" : "giazc2e0", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.305483Z", + "id": "giazc2e0", + "document": { + "modifiedTime": "1972-05-08T14:38:37Z", + "display": { + "id": "giazc2e0", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", - "credit" : "Credit line: zIBsYJowN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", + "credit": "Credit line: zIBsYJowN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", - "credit" : "Credit line: zIBsYJowN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/ya9.jpg/info.json", + "credit": "Credit line: zIBsYJowN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#F97A25", - "source" : { - "id" : "dgy6ppuz", - "title" : "title-ZRfddXdoSH", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#F97A25", + "source": { + "id": "dgy6ppuz", + "title": "title-ZRfddXdoSH", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "giazc2e0", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "giazc2e0", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "dgy6ppuz", - "sourceIdentifier.value" : "tZNKYb9Bom", - "identifiers.value" : [ + "id": "dgy6ppuz", + "sourceIdentifier.value": "tZNKYb9Bom", + "identifiers.value": [ "tZNKYb9Bom", "DFQdJPljb6", "5hca3vUTYl" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-ZRfddXdoSH" + "title": "title-ZRfddXdoSH" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0059309807, -0.019531071, -0.040597145, @@ -4242,7 +4242,7 @@ 0.003202794, -0.007329201 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.012873136, 0.010868249, -0.037423268, @@ -5245,8 +5245,8 @@ 0.002781014 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.3.json b/common/search/src/test/resources/test_documents/images.different-licenses.3.json index a1eef3d58..24953bca1 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.3.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.3.json @@ -1,150 +1,150 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.306757Z", - "id" : "hj2eugdu", - "document" : { - "modifiedTime" : "2049-08-08T00:29:37Z", - "display" : { - "id" : "hj2eugdu", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.306757Z", + "id": "hj2eugdu", + "document": { + "modifiedTime": "2049-08-08T00:29:37Z", + "display": { + "id": "hj2eugdu", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", - "linkText" : "Link text: 81zkKTj9", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", + "linkText": "Link text: 81zkKTj9", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", - "linkText" : "Link text: 81zkKTj9", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/6xY.jpg/info.json", + "linkText": "Link text: 81zkKTj9", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#BCE3D7", - "source" : { - "id" : "knyz3bbl", - "title" : "title-4naXwBKSaX", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#BCE3D7", + "source": { + "id": "knyz3bbl", + "title": "title-4naXwBKSaX", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "hj2eugdu", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "hj2eugdu", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "knyz3bbl", - "sourceIdentifier.value" : "Gmjm0awuZz", - "identifiers.value" : [ + "id": "knyz3bbl", + "sourceIdentifier.value": "Gmjm0awuZz", + "identifiers.value": [ "Gmjm0awuZz", "iQBpecDWLx", "RmgDqrN7dF" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-4naXwBKSaX" + "title": "title-4naXwBKSaX" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.019669792, 0.012638634, 0.0023867805, @@ -4242,7 +4242,7 @@ 0.012968219, 0.021323672 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.028090198, -0.021561136, 0.011847275, @@ -5245,8 +5245,8 @@ 0.009320449 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.4.json b/common/search/src/test/resources/test_documents/images.different-licenses.4.json index 01184f4d5..b31eb8b5d 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.4.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.4.json @@ -1,148 +1,148 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.308162Z", - "id" : "q7risoeh", - "document" : { - "modifiedTime" : "1950-06-01T20:26:42Z", - "display" : { - "id" : "q7risoeh", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.308162Z", + "id": "q7risoeh", + "document": { + "modifiedTime": "1950-06-01T20:26:42Z", + "display": { + "id": "q7risoeh", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/rZP.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#A7445E", - "source" : { - "id" : "lwrmfaqb", - "title" : "title-NEKnDv8u0A", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#A7445E", + "source": { + "id": "lwrmfaqb", + "title": "title-NEKnDv8u0A", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "q7risoeh", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "q7risoeh", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "lwrmfaqb", - "sourceIdentifier.value" : "u4fDHr5RUt", - "identifiers.value" : [ + "id": "lwrmfaqb", + "sourceIdentifier.value": "u4fDHr5RUt", + "identifiers.value": [ "u4fDHr5RUt", "4GNHjmv2JG", "4740rRNoNW" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-NEKnDv8u0A" + "title": "title-NEKnDv8u0A" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.030009005, -0.009687664, 0.025184121, @@ -4240,7 +4240,7 @@ 0.041460667, 0.0051832316 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.041760772, 0.010665845, 0.0010263964, @@ -5243,8 +5243,8 @@ 0.04428517 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.5.json b/common/search/src/test/resources/test_documents/images.different-licenses.5.json index 4ead5658e..309f277a8 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.5.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.5.json @@ -1,150 +1,150 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.309393Z", - "id" : "u9wiz5n2", - "document" : { - "modifiedTime" : "2008-12-14T05:36:25Z", - "display" : { - "id" : "u9wiz5n2", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.309393Z", + "id": "u9wiz5n2", + "document": { + "modifiedTime": "2008-12-14T05:36:25Z", + "display": { + "id": "u9wiz5n2", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", - "credit" : "Credit line: 5lwIC612t", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", + "credit": "Credit line: 5lwIC612t", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", - "credit" : "Credit line: 5lwIC612t", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/5t7.jpg/info.json", + "credit": "Credit line: 5lwIC612t", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#18E8D9", - "source" : { - "id" : "yfajql1v", - "title" : "title-4cjq66N1qo", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#18E8D9", + "source": { + "id": "yfajql1v", + "title": "title-4cjq66N1qo", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "u9wiz5n2", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "u9wiz5n2", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "yfajql1v", - "sourceIdentifier.value" : "DL10ex6AGz", - "identifiers.value" : [ + "id": "yfajql1v", + "sourceIdentifier.value": "DL10ex6AGz", + "identifiers.value": [ "DL10ex6AGz", "xdXZyyHpak", "qtcggmBJGC" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-4cjq66N1qo" + "title": "title-4cjq66N1qo" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "pdm" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 7.334739E-4, 0.009664426, 0.00692691, @@ -4242,7 +4242,7 @@ 0.004361391, 0.012620446 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.005657998, 0.016745279, -0.017943755, @@ -5245,8 +5245,8 @@ 0.036316402 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.different-licenses.6.json b/common/search/src/test/resources/test_documents/images.different-licenses.6.json index 77c9c3b97..89bc6ba72 100644 --- a/common/search/src/test/resources/test_documents/images.different-licenses.6.json +++ b/common/search/src/test/resources/test_documents/images.different-licenses.6.json @@ -1,150 +1,150 @@ { - "description" : "images with different licenses", - "createdAt" : "2024-11-14T14:37:56.310591Z", - "id" : "k85xxljq", - "document" : { - "modifiedTime" : "2036-04-06T08:36:24Z", - "display" : { - "id" : "k85xxljq", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different licenses", + "createdAt": "2024-11-14T14:37:56.310591Z", + "id": "k85xxljq", + "document": { + "modifiedTime": "2036-04-06T08:36:24Z", + "display": { + "id": "k85xxljq", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", - "linkText" : "Link text: qzZzIMyJve", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", + "linkText": "Link text: qzZzIMyJve", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", - "linkText" : "Link text: qzZzIMyJve", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Yu1.jpg/info.json", + "linkText": "Link text: qzZzIMyJve", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#93CD95", - "source" : { - "id" : "ntuf2946", - "title" : "title-gUwHG54SYM", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#93CD95", + "source": { + "id": "ntuf2946", + "title": "title-gUwHG54SYM", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "k85xxljq", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "k85xxljq", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ntuf2946", - "sourceIdentifier.value" : "t6VgzBtShY", - "identifiers.value" : [ + "id": "ntuf2946", + "sourceIdentifier.value": "t6VgzBtShY", + "identifiers.value": [ "t6VgzBtShY", "PfkkwyEoqB", "RMwqGu5WyX" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-gUwHG54SYM" + "title": "title-gUwHG54SYM" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "pdm" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.04330733, 8.5705204E-4, 0.0028549947, @@ -4242,7 +4242,7 @@ 0.0051404247, -0.001997892 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.022992052, 0.05277713, 0.034550563, @@ -5245,8 +5245,8 @@ -0.052811198 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.everything.json b/common/search/src/test/resources/test_documents/images.everything.json index e006d3d48..71b6b3e23 100644 --- a/common/search/src/test/resources/test_documents/images.everything.json +++ b/common/search/src/test/resources/test_documents/images.everything.json @@ -1,150 +1,150 @@ { - "description" : "an image with every include", - "createdAt" : "2024-11-14T14:37:56.485860Z", - "id" : "b25is1mw", - "document" : { - "modifiedTime" : "1943-09-17T11:31:58Z", - "display" : { - "id" : "b25is1mw", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with every include", + "createdAt": "2024-11-14T14:37:56.485860Z", + "id": "b25is1mw", + "document": { + "modifiedTime": "1943-09-17T11:31:58Z", + "display": { + "id": "b25is1mw", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#42424B", - "source" : { - "id" : "dqxovw56", - "title" : "Apple agitator", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#42424B", + "source": { + "id": "dqxovw56", + "title": "Apple agitator", + "contributors": [ { - "agent" : { - "label" : "Adrian Aardvark", - "type" : "Person" + "agent": { + "label": "Adrian Aardvark", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "Beatrice Buffalo", - "type" : "Person" + "agent": { + "label": "Beatrice Buffalo", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" }, { - "id" : "tur", - "label" : "Turkish", - "type" : "Language" + "id": "tur", + "label": "Turkish", + "type": "Language" } ], - "genres" : [ + "genres": [ { - "label" : "Crumbly cabbages", - "concepts" : [ + "label": "Crumbly cabbages", + "concepts": [ { - "id" : "lejca71h", - "label" : "ugoW7DPjY7eEyUr", - "type" : "Genre" + "id": "lejca71h", + "label": "ugoW7DPjY7eEyUr", + "type": "Genre" }, { - "id" : "wmf04cfl", - "label" : "9VrODZy7KkifsFe", - "type" : "Concept" + "id": "wmf04cfl", + "label": "9VrODZy7KkifsFe", + "type": "Concept" }, { - "id" : "aepyhklp", - "label" : "rYYrQmMYtpbz1Al", - "type" : "Concept" + "id": "aepyhklp", + "label": "rYYrQmMYtpbz1Al", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Deadly durians", - "concepts" : [ + "label": "Deadly durians", + "concepts": [ { - "id" : "lksf0yuj", - "label" : "706t7mv7kanMOW5", - "type" : "Genre" + "id": "lksf0yuj", + "label": "706t7mv7kanMOW5", + "type": "Genre" }, { - "id" : "ywn40rop", - "label" : "VMoAMmioWNbDYqh", - "type" : "Concept" + "id": "ywn40rop", + "label": "VMoAMmioWNbDYqh", + "type": "Concept" }, { - "id" : "gxjzwfd7", - "label" : "1lbnmi1f4IMuqCy", - "type" : "Concept" + "id": "gxjzwfd7", + "label": "1lbnmi1f4IMuqCy", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "b25is1mw", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "b25is1mw", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Adrian Aardvark", "Beatrice Buffalo" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "ugoW7DPjY7eEyUr", "9VrODZy7KkifsFe", "rYYrQmMYtpbz1Al", @@ -152,88 +152,88 @@ "VMoAMmioWNbDYqh", "1lbnmi1f4IMuqCy" ], - "id" : "dqxovw56", - "sourceIdentifier.value" : "XIR7wFyImk", - "identifiers.value" : [ + "id": "dqxovw56", + "sourceIdentifier.value": "XIR7wFyImk", + "identifiers.value": [ "XIR7wFyImk" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English", "Turkish" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Apple agitator" + "title": "Apple agitator" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"Adrian Aardvark\",\"type\":\"Person\"}", "{\"label\":\"Beatrice Buffalo\",\"type\":\"Person\"}" ], - "source.genres.label" : [ + "source.genres.label": [ "{\"label\":\"Crumbly cabbages\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Deadly durians\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "Adrian Aardvark", "Beatrice Buffalo" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ "Crumbly cabbages", "Deadly durians" ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ "lejca71h", "lksf0yuj" ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ "d4QLaGJW1M", "33Lvz6nnqJ" ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.024940599, 0.0080954945, 0.031152552, @@ -4331,7 +4331,7 @@ 0.0072650504, 0.010552883 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0610284, 0.01730373, -0.04553182, @@ -5334,8 +5334,8 @@ -0.027492827 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json b/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json index 1df727495..5bbe23a26 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-baguette.json @@ -1,147 +1,147 @@ { - "description" : "an example of images with work metadata for the API tests", - "createdAt" : "2024-11-14T14:37:56.528296Z", - "id" : "kwluai3r", - "document" : { - "modifiedTime" : "1991-07-06T03:39:13Z", - "display" : { - "id" : "kwluai3r", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an example of images with work metadata for the API tests", + "createdAt": "2024-11-14T14:37:56.528296Z", + "id": "kwluai3r", + "document": { + "modifiedTime": "1991-07-06T03:39:13Z", + "display": { + "id": "kwluai3r", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", - "linkText" : "Link text: QjI36BBKWB", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", + "linkText": "Link text: QjI36BBKWB", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", - "linkText" : "Link text: QjI36BBKWB", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/X9U.jpg/info.json", + "linkText": "Link text: QjI36BBKWB", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#A56837", - "source" : { - "id" : "b1yceq8o", - "title" : "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#A56837", + "source": { + "id": "b1yceq8o", + "title": "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "kwluai3r", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "kwluai3r", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "b1yceq8o", - "sourceIdentifier.value" : "goaksunog5", - "identifiers.value" : [ + "id": "b1yceq8o", + "sourceIdentifier.value": "goaksunog5", + "identifiers.value": [ "goaksunog5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread" + "title": "Baguette is a French style of bread; it's a long, thin bread; other countries also make this bread" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.020432228, 0.01433251, -0.007882895, @@ -4239,7 +4239,7 @@ -0.02090988, -0.02700216 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.06018525, -0.0218374, -0.010382953, @@ -5242,8 +5242,8 @@ 0.048151605 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json b/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json index aefa67822..b6ebfb022 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-focaccia.json @@ -1,147 +1,147 @@ { - "description" : "an example of images with work metadata for the API tests", - "createdAt" : "2024-11-14T14:37:56.532694Z", - "id" : "a0jqzjtw", - "document" : { - "modifiedTime" : "1958-01-12T23:10:27Z", - "display" : { - "id" : "a0jqzjtw", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an example of images with work metadata for the API tests", + "createdAt": "2024-11-14T14:37:56.532694Z", + "id": "a0jqzjtw", + "document": { + "modifiedTime": "1958-01-12T23:10:27Z", + "display": { + "id": "a0jqzjtw", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", - "credit" : "Credit line: oF56Pxe", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", + "credit": "Credit line: oF56Pxe", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", - "credit" : "Credit line: oF56Pxe", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/HIR.jpg/info.json", + "credit": "Credit line: oF56Pxe", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#BC1300", - "source" : { - "id" : "0nicager", - "title" : "A Ligurian style of bread, Focaccia is a flat Italian bread", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#BC1300", + "source": { + "id": "0nicager", + "title": "A Ligurian style of bread, Focaccia is a flat Italian bread", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "a0jqzjtw", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "a0jqzjtw", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "0nicager", - "sourceIdentifier.value" : "o97hEiMpb7", - "identifiers.value" : [ + "id": "0nicager", + "sourceIdentifier.value": "o97hEiMpb7", + "identifiers.value": [ "o97hEiMpb7" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A Ligurian style of bread, Focaccia is a flat Italian bread" + "title": "A Ligurian style of bread, Focaccia is a flat Italian bread" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0013886964, 0.011064052, -0.009729621, @@ -4239,7 +4239,7 @@ -0.0056894612, 0.01828093 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.06807296, 0.040722467, -0.03441322, @@ -5242,8 +5242,8 @@ 0.006234683 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json b/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json index 98db7ff56..93529fcc9 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-mantou.json @@ -1,147 +1,147 @@ { - "description" : "an example of images with work metadata for the API tests", - "createdAt" : "2024-11-14T14:37:56.540803Z", - "id" : "nnqbdi1u", - "document" : { - "modifiedTime" : "2030-01-04T16:08:59Z", - "display" : { - "id" : "nnqbdi1u", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an example of images with work metadata for the API tests", + "createdAt": "2024-11-14T14:37:56.540803Z", + "id": "nnqbdi1u", + "document": { + "modifiedTime": "2030-01-04T16:08:59Z", + "display": { + "id": "nnqbdi1u", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", - "linkText" : "Link text: gYXOTsi", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", + "linkText": "Link text: gYXOTsi", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", - "linkText" : "Link text: gYXOTsi", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/xfP.jpg/info.json", + "linkText": "Link text: gYXOTsi", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#E9439A", - "source" : { - "id" : "jnrpu9mi", - "title" : "Mantou is a steamed bread associated with Northern China", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#E9439A", + "source": { + "id": "jnrpu9mi", + "title": "Mantou is a steamed bread associated with Northern China", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "nnqbdi1u", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "nnqbdi1u", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jnrpu9mi", - "sourceIdentifier.value" : "JOUy2UKH3K", - "identifiers.value" : [ + "id": "jnrpu9mi", + "sourceIdentifier.value": "JOUy2UKH3K", + "identifiers.value": [ "JOUy2UKH3K" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Mantou is a steamed bread associated with Northern China" + "title": "Mantou is a steamed bread associated with Northern China" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0071231714, -0.02301155, 0.006131334, @@ -4239,7 +4239,7 @@ 0.00725487, 0.0023392653 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.012462096, 0.009021927, 0.04427529, @@ -5242,8 +5242,8 @@ 0.010093869 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json b/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json index 2dc7826a0..a2be2c727 100644 --- a/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json +++ b/common/search/src/test/resources/test_documents/images.examples.bread-schiacciata.json @@ -1,147 +1,147 @@ { - "description" : "an example of images with work metadata for the API tests", - "createdAt" : "2024-11-14T14:37:56.536538Z", - "id" : "bydileh4", - "document" : { - "modifiedTime" : "2061-03-12T16:25:24Z", - "display" : { - "id" : "bydileh4", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an example of images with work metadata for the API tests", + "createdAt": "2024-11-14T14:37:56.536538Z", + "id": "bydileh4", + "document": { + "modifiedTime": "2061-03-12T16:25:24Z", + "display": { + "id": "bydileh4", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", - "credit" : "Credit line: mnFe54B", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", + "credit": "Credit line: mnFe54B", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", - "credit" : "Credit line: mnFe54B", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Hsq.jpg/info.json", + "credit": "Credit line: mnFe54B", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#219A51", - "source" : { - "id" : "iar4ofhk", - "title" : "Schiacciata is a Tuscan focaccia", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#219A51", + "source": { + "id": "iar4ofhk", + "title": "Schiacciata is a Tuscan focaccia", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "bydileh4", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "bydileh4", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "iar4ofhk", - "sourceIdentifier.value" : "YK6s4XYzl3", - "identifiers.value" : [ + "id": "iar4ofhk", + "sourceIdentifier.value": "YK6s4XYzl3", + "identifiers.value": [ "YK6s4XYzl3" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Schiacciata is a Tuscan focaccia" + "title": "Schiacciata is a Tuscan focaccia" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.0042873025, -0.0017539904, 0.0022809075, @@ -4239,7 +4239,7 @@ -0.015923968, -0.010427619 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0020102437, -0.026884358, 0.025183758, @@ -5242,8 +5242,8 @@ -0.056324277 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json index 259f752b4..ff81a8b44 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.0.json @@ -1,160 +1,160 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-14T14:37:56.432335Z", - "id" : "yz1oofkv", - "document" : { - "modifiedTime" : "2048-11-08T23:06:02Z", - "display" : { - "id" : "yz1oofkv", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-14T14:37:56.432335Z", + "id": "yz1oofkv", + "document": { + "modifiedTime": "2048-11-08T23:06:02Z", + "display": { + "id": "yz1oofkv", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", - "credit" : "Credit line: 6cSt3uoF", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", + "credit": "Credit line: 6cSt3uoF", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", - "credit" : "Credit line: 6cSt3uoF", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/tmC.jpg/info.json", + "credit": "Credit line: 6cSt3uoF", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#6C0D2B", - "source" : { - "id" : "xzva25jt", - "title" : "title-6sEQsGdb5O", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#6C0D2B", + "source": { + "id": "xzva25jt", + "title": "title-6sEQsGdb5O", + "contributors": [ { - "agent" : { - "label" : "Machiavelli, Niccolo", - "type" : "Person" + "agent": { + "label": "Machiavelli, Niccolo", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "yz1oofkv", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "yz1oofkv", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Machiavelli, Niccolo" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "xzva25jt", - "sourceIdentifier.value" : "KVsY0AgisP", - "identifiers.value" : [ + "id": "xzva25jt", + "sourceIdentifier.value": "KVsY0AgisP", + "identifiers.value": [ "KVsY0AgisP" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-6sEQsGdb5O" + "title": "title-6sEQsGdb5O" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"Machiavelli, Niccolo\",\"type\":\"Person\"}" ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "Machiavelli, Niccolo" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.009975942, 4.5055928E-4, -0.0050335284, @@ -4252,7 +4252,7 @@ -0.009693718, 0.0044719824 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.004411244, 0.008407737, 0.030684348, @@ -5255,8 +5255,8 @@ -0.01759402 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json index f4709eabc..f99c531cf 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.1.json @@ -1,158 +1,158 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-14T14:37:56.433940Z", - "id" : "vcokkolz", - "document" : { - "modifiedTime" : "2040-09-05T22:54:29Z", - "display" : { - "id" : "vcokkolz", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-14T14:37:56.433940Z", + "id": "vcokkolz", + "document": { + "modifiedTime": "2040-09-05T22:54:29Z", + "display": { + "id": "vcokkolz", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/pJ9.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#0FEC62", - "source" : { - "id" : "mpasnruz", - "title" : "title-gjT48tIM66", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#0FEC62", + "source": { + "id": "mpasnruz", + "title": "title-gjT48tIM66", + "contributors": [ { - "agent" : { - "label" : "Edward Said", - "type" : "Person" + "agent": { + "label": "Edward Said", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "vcokkolz", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "vcokkolz", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Edward Said" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mpasnruz", - "sourceIdentifier.value" : "1DWt9lfP25", - "identifiers.value" : [ + "id": "mpasnruz", + "sourceIdentifier.value": "1DWt9lfP25", + "identifiers.value": [ "1DWt9lfP25" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-gjT48tIM66" + "title": "title-gjT48tIM66" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "{\"label\":\"Edward Said\",\"type\":\"Person\"}" ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ "Edward Said" ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.01803964, -0.010613173, 0.030977111, @@ -4250,7 +4250,7 @@ 0.009600332, 0.023965513 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0077446084, 0.017074306, -0.067236975, @@ -5253,8 +5253,8 @@ 0.021200316 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json index 107f5d75e..0782790f5 100644 --- a/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.contributor-filter-tests.2.json @@ -1,147 +1,147 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-14T14:37:56.434842Z", - "id" : "gxxntbp9", - "document" : { - "modifiedTime" : "2006-10-01T20:03:54Z", - "display" : { - "id" : "gxxntbp9", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-14T14:37:56.434842Z", + "id": "gxxntbp9", + "document": { + "modifiedTime": "2006-10-01T20:03:54Z", + "display": { + "id": "gxxntbp9", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/qyx.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#6F0BCD", - "source" : { - "id" : "0gvp6nhg", - "title" : "title-alYogGRWWS", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#6F0BCD", + "source": { + "id": "0gvp6nhg", + "title": "title-alYogGRWWS", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "gxxntbp9", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "gxxntbp9", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "0gvp6nhg", - "sourceIdentifier.value" : "EXEoJwLBVY", - "identifiers.value" : [ + "id": "0gvp6nhg", + "sourceIdentifier.value": "EXEoJwLBVY", + "identifiers.value": [ "EXEoJwLBVY", "BUMPDQzgfJ", "NCrfrRU9EF" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-alYogGRWWS" + "title": "title-alYogGRWWS" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.009833573, 0.008238541, 0.020807087, @@ -4239,7 +4239,7 @@ 0.014539844, 0.0010502167 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.0127375545, -0.047161944, -0.059743535, @@ -5242,8 +5242,8 @@ -0.017867256 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json index cfe6b0716..912307e60 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.0.json @@ -1,167 +1,167 @@ { - "description" : "examples for the genre filter tests", - "createdAt" : "2024-11-14T14:37:56.463276Z", - "id" : "dtsaqjqy", - "document" : { - "modifiedTime" : "2040-01-25T01:22:51Z", - "display" : { - "id" : "dtsaqjqy", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the genre filter tests", + "createdAt": "2024-11-14T14:37:56.463276Z", + "id": "dtsaqjqy", + "document": { + "modifiedTime": "2040-01-25T01:22:51Z", + "display": { + "id": "dtsaqjqy", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/9u7.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#FEEF0C", - "source" : { - "id" : "avnlzlwu", - "title" : "title-XanTinRi9y", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#FEEF0C", + "source": { + "id": "avnlzlwu", + "title": "title-XanTinRi9y", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ { - "label" : "Carrot counselling", - "concepts" : [ + "label": "Carrot counselling", + "concepts": [ { - "id" : "g00dcafe", - "label" : "ZYpXDgtEHOLRkyW", - "type" : "Genre" + "id": "g00dcafe", + "label": "ZYpXDgtEHOLRkyW", + "type": "Genre" }, { - "id" : "baadf00d", - "label" : "Gz6jlJqCwJjS1yp", - "type" : "Concept" + "id": "baadf00d", + "label": "Gz6jlJqCwJjS1yp", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "dtsaqjqy", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "dtsaqjqy", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "ZYpXDgtEHOLRkyW", "Gz6jlJqCwJjS1yp" ], - "id" : "avnlzlwu", - "sourceIdentifier.value" : "PnNjvYlLJE", - "identifiers.value" : [ + "id": "avnlzlwu", + "sourceIdentifier.value": "PnNjvYlLJE", + "identifiers.value": [ "PnNjvYlLJE" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-XanTinRi9y" + "title": "title-XanTinRi9y" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ "Carrot counselling" ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ "g00dcafe" ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ "L6MtHDV6LX" ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.016438505, 0.00657761, 0.01612595, @@ -4259,7 +4259,7 @@ -0.0033713363, -0.022579655 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.04292064, 0.024802417, -0.0044846274, @@ -5262,8 +5262,8 @@ -0.03267974 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json index 0ba0b0bd9..08017877c 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.1.json @@ -1,149 +1,149 @@ { - "description" : "examples for the genre filter tests", - "createdAt" : "2024-11-14T14:37:56.464110Z", - "id" : "jqn3lcdk", - "document" : { - "modifiedTime" : "2049-07-22T09:18:58Z", - "display" : { - "id" : "jqn3lcdk", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the genre filter tests", + "createdAt": "2024-11-14T14:37:56.464110Z", + "id": "jqn3lcdk", + "document": { + "modifiedTime": "2049-07-22T09:18:58Z", + "display": { + "id": "jqn3lcdk", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", - "credit" : "Credit line: URmx76ITw", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", + "credit": "Credit line: URmx76ITw", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", - "credit" : "Credit line: URmx76ITw", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/wgv.jpg/info.json", + "credit": "Credit line: URmx76ITw", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#0F7990", - "source" : { - "id" : "5vhrmefp", - "title" : "title-Y0gPFaAqzY", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#0F7990", + "source": { + "id": "5vhrmefp", + "title": "title-Y0gPFaAqzY", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "jqn3lcdk", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "jqn3lcdk", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5vhrmefp", - "sourceIdentifier.value" : "4BgGjrI2bn", - "identifiers.value" : [ + "id": "5vhrmefp", + "sourceIdentifier.value": "4BgGjrI2bn", + "identifiers.value": [ "4BgGjrI2bn", "sXXj8lekE5", "aAWBPmrCWc" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Y0gPFaAqzY" + "title": "title-Y0gPFaAqzY" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.017860852, -0.015890874, -0.015869955, @@ -4241,7 +4241,7 @@ -9.674262E-4, -0.019214435 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.07357815, -0.06873956, 0.0644536, @@ -5244,8 +5244,8 @@ 0.013578974 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json index 22465cb45..13899a023 100644 --- a/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.genre-filter-tests.2.json @@ -1,179 +1,179 @@ { - "description" : "examples for the genre filter tests", - "createdAt" : "2024-11-14T14:37:56.465133Z", - "id" : "xmlsowlq", - "document" : { - "modifiedTime" : "1970-11-30T11:53:00Z", - "display" : { - "id" : "xmlsowlq", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "examples for the genre filter tests", + "createdAt": "2024-11-14T14:37:56.465133Z", + "id": "xmlsowlq", + "document": { + "modifiedTime": "1970-11-30T11:53:00Z", + "display": { + "id": "xmlsowlq", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", - "linkText" : "Link text: AKLim43", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", + "linkText": "Link text: AKLim43", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", - "linkText" : "Link text: AKLim43", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/osx.jpg/info.json", + "linkText": "Link text: AKLim43", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#B8DE7E", - "source" : { - "id" : "gdpxcgp2", - "title" : "title-ktG7wwBwmf", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#B8DE7E", + "source": { + "id": "gdpxcgp2", + "title": "title-ktG7wwBwmf", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ { - "label" : "Emu entrepreneurship", - "concepts" : [ + "label": "Emu entrepreneurship", + "concepts": [ { - "id" : "g00dcafe", - "label" : "jBVxL1V4oewPM67", - "type" : "Genre" + "id": "g00dcafe", + "label": "jBVxL1V4oewPM67", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Falcon finances", - "concepts" : [ + "label": "Falcon finances", + "concepts": [ { - "id" : "baadf00d", - "label" : "ND4ajrHSr7cFUI5", - "type" : "Genre" + "id": "baadf00d", + "label": "ND4ajrHSr7cFUI5", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" } ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "xmlsowlq", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "xmlsowlq", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "jBVxL1V4oewPM67", "ND4ajrHSr7cFUI5" ], - "id" : "gdpxcgp2", - "sourceIdentifier.value" : "yi3e0o56QQ", - "identifiers.value" : [ + "id": "gdpxcgp2", + "sourceIdentifier.value": "yi3e0o56QQ", + "identifiers.value": [ "yi3e0o56QQ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-ktG7wwBwmf" + "title": "title-ktG7wwBwmf" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ "{\"label\":\"Emu entrepreneurship\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Falcon finances\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ "Emu entrepreneurship", "Falcon finances" ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ "g00dcafe", "baadf00d" ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ "G6PXCJ2IuI", "OezVopin48" ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.023446029, 0.028897293, -0.0023543043, @@ -4271,7 +4271,7 @@ 0.0073085045, 3.7157428E-5 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.028580276, -0.014974573, 0.010604396, @@ -5274,8 +5274,8 @@ -0.040184803 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json index 6ef7388de..640bb55ae 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-another-work.json @@ -1,151 +1,151 @@ { - "description" : "images linked with another work", - "createdAt" : "2024-11-14T14:37:56.520561Z", - "id" : "hsgnyw8m", - "document" : { - "modifiedTime" : "2000-11-29T00:19:37Z", - "display" : { - "id" : "hsgnyw8m", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images linked with another work", + "createdAt": "2024-11-14T14:37:56.520561Z", + "id": "hsgnyw8m", + "document": { + "modifiedTime": "2000-11-29T00:19:37Z", + "display": { + "id": "hsgnyw8m", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", - "credit" : "Credit line: Igw4LN", - "linkText" : "Link text: BLRn04h0", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", + "credit": "Credit line: Igw4LN", + "linkText": "Link text: BLRn04h0", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", - "credit" : "Credit line: Igw4LN", - "linkText" : "Link text: BLRn04h0", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Ozr.jpg/info.json", + "credit": "Credit line: Igw4LN", + "linkText": "Link text: BLRn04h0", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#A0C8A8", - "source" : { - "id" : "immezksj", - "title" : "title-ncEHT1NLb6", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#A0C8A8", + "source": { + "id": "immezksj", + "title": "title-ncEHT1NLb6", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "hsgnyw8m", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "hsgnyw8m", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "immezksj", - "sourceIdentifier.value" : "fBj197N48n", - "identifiers.value" : [ + "id": "immezksj", + "sourceIdentifier.value": "fBj197N48n", + "identifiers.value": [ "fBj197N48n", "7Qx3WYHrc4", "OXpjxG6OXo" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-ncEHT1NLb6" + "title": "title-ncEHT1NLb6" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.020090086, 0.012813995, 3.1020242E-4, @@ -4243,7 +4243,7 @@ -0.0016017318, 0.02772019 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0048597767, -0.0036105372, -0.04832014, @@ -5246,8 +5246,8 @@ 0.04645499 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json index 854a0ef34..3834ae5bf 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.0.json @@ -1,149 +1,149 @@ { - "description" : "images linked with the same work", - "createdAt" : "2024-11-14T14:37:56.500107Z", - "id" : "0r17jcwd", - "document" : { - "modifiedTime" : "2055-07-25T16:03:54Z", - "display" : { - "id" : "0r17jcwd", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images linked with the same work", + "createdAt": "2024-11-14T14:37:56.500107Z", + "id": "0r17jcwd", + "document": { + "modifiedTime": "2055-07-25T16:03:54Z", + "display": { + "id": "0r17jcwd", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", - "credit" : "Credit line: bml9zR8xr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", + "credit": "Credit line: bml9zR8xr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", - "credit" : "Credit line: bml9zR8xr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/ytB.jpg/info.json", + "credit": "Credit line: bml9zR8xr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#9CD4A2", - "source" : { - "id" : "aawgyyy8", - "title" : "title-Wk9BGeV6UO", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#9CD4A2", + "source": { + "id": "aawgyyy8", + "title": "title-Wk9BGeV6UO", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "0r17jcwd", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "0r17jcwd", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "aawgyyy8", - "sourceIdentifier.value" : "ErLUg1OWaB", - "identifiers.value" : [ + "id": "aawgyyy8", + "sourceIdentifier.value": "ErLUg1OWaB", + "identifiers.value": [ "ErLUg1OWaB", "22sQyoKXZb", "Z3y3axc7PO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Wk9BGeV6UO" + "title": "title-Wk9BGeV6UO" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.016808417, -0.0039046975, -0.015330934, @@ -4241,7 +4241,7 @@ 0.016370172, 0.002340661 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.024867522, 0.0062623387, 0.005002848, @@ -5244,8 +5244,8 @@ 0.06878402 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json index f99c6435d..cf95e7881 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.1.json @@ -1,149 +1,149 @@ { - "description" : "images linked with the same work", - "createdAt" : "2024-11-14T14:37:56.500910Z", - "id" : "9kt2ikow", - "document" : { - "modifiedTime" : "2024-05-12T10:50:14Z", - "display" : { - "id" : "9kt2ikow", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images linked with the same work", + "createdAt": "2024-11-14T14:37:56.500910Z", + "id": "9kt2ikow", + "document": { + "modifiedTime": "2024-05-12T10:50:14Z", + "display": { + "id": "9kt2ikow", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", - "credit" : "Credit line: 6MXO0sLb", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", + "credit": "Credit line: 6MXO0sLb", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", - "credit" : "Credit line: 6MXO0sLb", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Mel.jpg/info.json", + "credit": "Credit line: 6MXO0sLb", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#98C9CB", - "source" : { - "id" : "aawgyyy8", - "title" : "title-Wk9BGeV6UO", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#98C9CB", + "source": { + "id": "aawgyyy8", + "title": "title-Wk9BGeV6UO", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "9kt2ikow", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "9kt2ikow", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "aawgyyy8", - "sourceIdentifier.value" : "ErLUg1OWaB", - "identifiers.value" : [ + "id": "aawgyyy8", + "sourceIdentifier.value": "ErLUg1OWaB", + "identifiers.value": [ "ErLUg1OWaB", "22sQyoKXZb", "Z3y3axc7PO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Wk9BGeV6UO" + "title": "title-Wk9BGeV6UO" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.0016990263, -0.014407508, -0.010381854, @@ -4241,7 +4241,7 @@ 0.0031882452, -2.8931993E-4 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0021062768, 0.0033230907, -0.013693226, @@ -5244,8 +5244,8 @@ -0.042608008 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json index 728d02b8c..a4cfee0b6 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.2.json @@ -1,151 +1,151 @@ { - "description" : "images linked with the same work", - "createdAt" : "2024-11-14T14:37:56.501674Z", - "id" : "gop4oetl", - "document" : { - "modifiedTime" : "1994-02-11T11:59:16Z", - "display" : { - "id" : "gop4oetl", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images linked with the same work", + "createdAt": "2024-11-14T14:37:56.501674Z", + "id": "gop4oetl", + "document": { + "modifiedTime": "1994-02-11T11:59:16Z", + "display": { + "id": "gop4oetl", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", - "credit" : "Credit line: jHtcRC9D", - "linkText" : "Link text: wr456t6OC", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", + "credit": "Credit line: jHtcRC9D", + "linkText": "Link text: wr456t6OC", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", - "credit" : "Credit line: jHtcRC9D", - "linkText" : "Link text: wr456t6OC", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Ezk.jpg/info.json", + "credit": "Credit line: jHtcRC9D", + "linkText": "Link text: wr456t6OC", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#0F2C29", - "source" : { - "id" : "aawgyyy8", - "title" : "title-Wk9BGeV6UO", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#0F2C29", + "source": { + "id": "aawgyyy8", + "title": "title-Wk9BGeV6UO", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "gop4oetl", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "gop4oetl", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "aawgyyy8", - "sourceIdentifier.value" : "ErLUg1OWaB", - "identifiers.value" : [ + "id": "aawgyyy8", + "sourceIdentifier.value": "ErLUg1OWaB", + "identifiers.value": [ "ErLUg1OWaB", "22sQyoKXZb", "Z3y3axc7PO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Wk9BGeV6UO" + "title": "title-Wk9BGeV6UO" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.02703398, 0.0035171164, 0.027941639, @@ -4243,7 +4243,7 @@ -0.010012603, -0.0026944338 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.0015423129, 0.016129043, 0.013101662, @@ -5246,8 +5246,8 @@ 0.0076953494 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json index c35b0e175..851209e03 100644 --- a/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json +++ b/common/search/src/test/resources/test_documents/images.examples.linked-with-the-same-work.3.json @@ -1,149 +1,149 @@ { - "description" : "images linked with the same work", - "createdAt" : "2024-11-14T14:37:56.502353Z", - "id" : "ovet6upc", - "document" : { - "modifiedTime" : "1979-08-24T17:45:33Z", - "display" : { - "id" : "ovet6upc", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images linked with the same work", + "createdAt": "2024-11-14T14:37:56.502353Z", + "id": "ovet6upc", + "document": { + "modifiedTime": "1979-08-24T17:45:33Z", + "display": { + "id": "ovet6upc", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", - "linkText" : "Link text: 96u9HFiRZ", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", + "linkText": "Link text: 96u9HFiRZ", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", - "linkText" : "Link text: 96u9HFiRZ", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/nqI.jpg/info.json", + "linkText": "Link text: 96u9HFiRZ", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#530705", - "source" : { - "id" : "aawgyyy8", - "title" : "title-Wk9BGeV6UO", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#530705", + "source": { + "id": "aawgyyy8", + "title": "title-Wk9BGeV6UO", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "ovet6upc", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "ovet6upc", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "aawgyyy8", - "sourceIdentifier.value" : "ErLUg1OWaB", - "identifiers.value" : [ + "id": "aawgyyy8", + "sourceIdentifier.value": "ErLUg1OWaB", + "identifiers.value": [ "ErLUg1OWaB", "22sQyoKXZb", "Z3y3axc7PO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Wk9BGeV6UO" + "title": "title-Wk9BGeV6UO" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.02418603, 0.009767216, -0.026419742, @@ -4241,7 +4241,7 @@ 0.007968472, 0.0063618505 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.04067954, 0.0496877, -0.0067734257, @@ -5244,8 +5244,8 @@ 0.010969187 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.genres.0.json b/common/search/src/test/resources/test_documents/images.genres.0.json index ab2695410..20c20e96b 100644 --- a/common/search/src/test/resources/test_documents/images.genres.0.json +++ b/common/search/src/test/resources/test_documents/images.genres.0.json @@ -1,157 +1,157 @@ { - "description" : "images with different genres", - "createdAt" : "2024-11-14T14:37:56.406976Z", - "id" : "a56axpjh", - "document" : { - "modifiedTime" : "2038-06-23T05:04:57Z", - "display" : { - "id" : "a56axpjh", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different genres", + "createdAt": "2024-11-14T14:37:56.406976Z", + "id": "a56axpjh", + "document": { + "modifiedTime": "2038-06-23T05:04:57Z", + "display": { + "id": "a56axpjh", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", - "credit" : "Credit line: cHPJUdxLru", - "linkText" : "Link text: YlUiSU", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", + "credit": "Credit line: cHPJUdxLru", + "linkText": "Link text: YlUiSU", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", - "credit" : "Credit line: cHPJUdxLru", - "linkText" : "Link text: YlUiSU", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Fkd.jpg/info.json", + "credit": "Credit line: cHPJUdxLru", + "linkText": "Link text: YlUiSU", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#626AB6", - "source" : { - "id" : "jh9wm7yc", - "title" : "title-3AaAdcU2qn", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#626AB6", + "source": { + "id": "jh9wm7yc", + "title": "title-3AaAdcU2qn", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ { - "label" : "Carrot counselling", - "concepts" : [ + "label": "Carrot counselling", + "concepts": [ ], - "type" : "Genre" + "type": "Genre" } ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "a56axpjh", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "a56axpjh", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jh9wm7yc", - "sourceIdentifier.value" : "4Kj79xEwqO", - "identifiers.value" : [ + "id": "jh9wm7yc", + "sourceIdentifier.value": "4Kj79xEwqO", + "identifiers.value": [ "4Kj79xEwqO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-3AaAdcU2qn" + "title": "title-3AaAdcU2qn" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ "Carrot counselling" ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.011086239, -0.008567317, -0.019029234, @@ -4249,7 +4249,7 @@ 0.0046150163, 0.017820885 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 8.519833E-4, -0.029553905, -0.029358773, @@ -5252,8 +5252,8 @@ 0.039712142 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.genres.1.json b/common/search/src/test/resources/test_documents/images.genres.1.json index bf771cbe9..c194869ce 100644 --- a/common/search/src/test/resources/test_documents/images.genres.1.json +++ b/common/search/src/test/resources/test_documents/images.genres.1.json @@ -1,147 +1,147 @@ { - "description" : "images with different genres", - "createdAt" : "2024-11-14T14:37:56.407937Z", - "id" : "rq5xcdkx", - "document" : { - "modifiedTime" : "2048-01-18T04:47:01Z", - "display" : { - "id" : "rq5xcdkx", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different genres", + "createdAt": "2024-11-14T14:37:56.407937Z", + "id": "rq5xcdkx", + "document": { + "modifiedTime": "2048-01-18T04:47:01Z", + "display": { + "id": "rq5xcdkx", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Eq9.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#63D0C8", - "source" : { - "id" : "mg2z5kcv", - "title" : "title-Mwkf9XEEId", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#63D0C8", + "source": { + "id": "mg2z5kcv", + "title": "title-Mwkf9XEEId", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "rq5xcdkx", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "rq5xcdkx", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mg2z5kcv", - "sourceIdentifier.value" : "TCqFnT1Dwy", - "identifiers.value" : [ + "id": "mg2z5kcv", + "sourceIdentifier.value": "TCqFnT1Dwy", + "identifiers.value": [ "TCqFnT1Dwy", "ZVArfOHkC4", "9cj08zf2Pd" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Mwkf9XEEId" + "title": "title-Mwkf9XEEId" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.010518231, -0.0027960816, 0.014241312, @@ -4239,7 +4239,7 @@ 0.0064897384, 0.018794274 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.038086556, 0.0054109017, 0.024496745, @@ -5242,8 +5242,8 @@ 1.4558487E-4 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.genres.2.json b/common/search/src/test/resources/test_documents/images.genres.2.json index b4a2faafe..b1f403534 100644 --- a/common/search/src/test/resources/test_documents/images.genres.2.json +++ b/common/search/src/test/resources/test_documents/images.genres.2.json @@ -1,171 +1,171 @@ { - "description" : "images with different genres", - "createdAt" : "2024-11-14T14:37:56.409135Z", - "id" : "5j2tl5et", - "document" : { - "modifiedTime" : "2050-09-28T06:48:13Z", - "display" : { - "id" : "5j2tl5et", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different genres", + "createdAt": "2024-11-14T14:37:56.409135Z", + "id": "5j2tl5et", + "document": { + "modifiedTime": "2050-09-28T06:48:13Z", + "display": { + "id": "5j2tl5et", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", - "linkText" : "Link text: QKqnpKFmm", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", + "linkText": "Link text: QKqnpKFmm", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", - "linkText" : "Link text: QKqnpKFmm", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/TxQ.jpg/info.json", + "linkText": "Link text: QKqnpKFmm", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#1FA828", - "source" : { - "id" : "nxptdctw", - "title" : "title-IHV2HD3bJD", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#1FA828", + "source": { + "id": "nxptdctw", + "title": "title-IHV2HD3bJD", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ { - "label" : "Emu entrepreneurship", - "concepts" : [ + "label": "Emu entrepreneurship", + "concepts": [ ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Falcon finances", - "concepts" : [ + "label": "Falcon finances", + "concepts": [ ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Carrot counselling", - "concepts" : [ + "label": "Carrot counselling", + "concepts": [ ], - "type" : "Genre" + "type": "Genre" } ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "5j2tl5et", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "5j2tl5et", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "nxptdctw", - "sourceIdentifier.value" : "mCfQjGql5i", - "identifiers.value" : [ + "id": "nxptdctw", + "sourceIdentifier.value": "mCfQjGql5i", + "identifiers.value": [ "mCfQjGql5i" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-IHV2HD3bJD" + "title": "title-IHV2HD3bJD" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ "{\"label\":\"Emu entrepreneurship\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Falcon finances\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Carrot counselling\",\"concepts\":[],\"type\":\"Genre\"}" ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ "Emu entrepreneurship", "Falcon finances", "Carrot counselling" ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.0051083555, -5.218896E-4, 0.0018558142, @@ -4263,7 +4263,7 @@ 0.02486561, -0.006447049 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ 0.015579665, 0.08296932, -0.061539963, @@ -5266,8 +5266,8 @@ 0.043635976 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.inferred-data.none.json b/common/search/src/test/resources/test_documents/images.inferred-data.none.json index d8e187301..8ef01b010 100644 --- a/common/search/src/test/resources/test_documents/images.inferred-data.none.json +++ b/common/search/src/test/resources/test_documents/images.inferred-data.none.json @@ -1,155 +1,155 @@ { - "description" : "an image without any inferred data", - "createdAt" : "2024-11-14T14:37:56.423442Z", - "id" : "gtanwhoe", - "document" : { - "modifiedTime" : "2033-11-17T21:40:10Z", - "display" : { - "id" : "gtanwhoe", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image without any inferred data", + "createdAt": "2024-11-14T14:37:56.423442Z", + "id": "gtanwhoe", + "document": { + "modifiedTime": "2033-11-17T21:40:10Z", + "display": { + "id": "gtanwhoe", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", - "linkText" : "Link text: O63XqJ", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", + "linkText": "Link text: O63XqJ", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", - "linkText" : "Link text: O63XqJ", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/pkk.jpg/info.json", + "linkText": "Link text: O63XqJ", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 1.0, - "averageColor" : "#ffffff", - "source" : { - "id" : "4nevz1ct", - "title" : "title-LU07b2voqu", - "contributors" : [ + "aspectRatio": 1.0, + "averageColor": "#ffffff", + "source": { + "id": "4nevz1ct", + "title": "title-LU07b2voqu", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "gtanwhoe", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ - ], - "contributors.agent.label" : [ - ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ - ], - "id" : "4nevz1ct", - "sourceIdentifier.value" : "Vu82EGkZo1", - "identifiers.value" : [ + "query": { + "id": "gtanwhoe", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ + ], + "contributors.agent.label": [ + ], + "description": null, + "edition": null, + "genres.concepts.label": [ + ], + "id": "4nevz1ct", + "sourceIdentifier.value": "Vu82EGkZo1", + "identifiers.value": [ "Vu82EGkZo1", "5ONYuMkgt1", "beQTH6WifJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-LU07b2voqu" + "title": "title-LU07b2voqu" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ ], - "paletteEmbedding" : [ + "paletteEmbedding": [ ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json b/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json index 7fc2b81dd..0dcb08027 100644 --- a/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json +++ b/common/search/src/test/resources/test_documents/images.inferred-data.wrong-format.json @@ -1,76 +1,76 @@ { - "description" : "an image with inferred data in the wrong format", - "createdAt" : "2023-03-17T09:13:02.832741Z", - "id" : "cap1allo", - "document" : { - "modifiedTime" : "2027-12-29T00:13:45Z", - "display" : { - "id" : "cap1allo", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "an image with inferred data in the wrong format", + "createdAt": "2023-03-17T09:13:02.832741Z", + "id": "cap1allo", + "document": { + "modifiedTime": "2027-12-29T00:13:45Z", + "display": { + "id": "cap1allo", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/n0t.jpg/info.json", - "credit" : "Credit line: qRsGvQRNlt", - "linkText" : "Link text: cC5IfN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/n0t.jpg/info.json", + "credit": "Credit line: qRsGvQRNlt", + "linkText": "Link text: cC5IfN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/n0t.jpg/info.json", - "credit" : "Credit line: qRsGvQRNlt", - "linkText" : "Link text: cC5IfN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/n0t.jpg/info.json", + "credit": "Credit line: qRsGvQRNlt", + "linkText": "Link text: cC5IfN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.8347602, - "averageColor" : "#6F1F4D", - "source" : { - "id" : "gxhh6ohu", - "title" : "title-F7UXrqfzss", - "contributors" : [ + "aspectRatio": 0.8347602, + "averageColor": "#6F1F4D", + "source": { + "id": "gxhh6ohu", + "title": "title-F7UXrqfzss", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "cap1allo", - "sourceIdentifier.value" : "nyAtdgajcS", - "locations.license.id" : [ + "query": { + "id": "cap1allo", + "sourceIdentifier.value": "nyAtdgajcS", + "locations.license.id": [ "cc-by" ], - "inferredData" : { - "features" : [ + "inferredData": { + "features": [ -0.0038104886, -0.004290749, 0.015628112, @@ -4168,7 +4168,7 @@ 0.009221715, 0.0042489874 ], - "palette" : [ + "palette": [ "4/0", "9/0", "2/0", @@ -4269,96 +4269,96 @@ "183/2", "265/2" ], - "averageColorHex" : "#6F1F4D", - "binSizes" : [ + "averageColorHex": "#6F1F4D", + "binSizes": [ [ 1 ] ], - "binMinima" : [ + "binMinima": [ 1.0 ], - "aspectRatio" : 0.8347602 + "aspectRatio": 0.8347602 }, - "source" : { - "id" : "gxhh6ohu", - "format.id" : null, - "workType" : "Standard", - "identifiers.value" : [ + "source": { + "id": "gxhh6ohu", + "format.id": null, + "workType": "Standard", + "identifiers.value": [ "xtq2tnsNWe", "TcZ2yVy8dM", "l15HHOaGqx" ], - "title" : "title-F7UXrqfzss", - "alternativeTitles" : [ + "title": "title-F7UXrqfzss", + "alternativeTitles": [ ], - "description" : null, - "physicalDescription" : null, - "edition" : null, - "notes.contents" : [ + "description": null, + "physicalDescription": null, + "edition": null, + "notes.contents": [ ], - "lettering" : null, - "images.id" : [ + "lettering": null, + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "subjects.id" : [ + "subjects.id": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.label" : [ + "subjects.concepts.label": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.label" : [ + "genres.concepts.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "languages.id" : [ + "languages.id": [ ], - "languages.label" : [ + "languages.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "production.label" : [ + "production.label": [ ], - "production.dates.range.from" : [ + "production.dates.range.from": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ], - "collectionPath.label" : null, - "collectionPath.path" : null, - "referenceNumber" : null + "collectionPath.label": null, + "collectionPath.path": null, + "referenceNumber": null } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } } diff --git a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json index 489bd15b8..79b6cba2e 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json +++ b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-1.json @@ -1,156 +1,156 @@ { - "description" : "images with different subjects", - "createdAt" : "2024-11-14T14:37:56.556502Z", - "id" : "dytyeook", - "document" : { - "modifiedTime" : "1982-02-02T08:05:47Z", - "display" : { - "id" : "dytyeook", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different subjects", + "createdAt": "2024-11-14T14:37:56.556502Z", + "id": "dytyeook", + "document": { + "modifiedTime": "1982-02-02T08:05:47Z", + "display": { + "id": "dytyeook", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/VeE.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#D51DA1", - "source" : { - "id" : "bx1r3hyz", - "title" : "title-28Q4nQtftL", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#D51DA1", + "source": { + "id": "bx1r3hyz", + "title": "title-28Q4nQtftL", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ { - "id" : "subject1", - "label" : "Simple screwdrivers", - "concepts" : [ + "id": "subject1", + "label": "Simple screwdrivers", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" } ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "dytyeook", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "dytyeook", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "bx1r3hyz", - "sourceIdentifier.value" : "Sg4Me0dEc0", - "identifiers.value" : [ + "id": "bx1r3hyz", + "sourceIdentifier.value": "Sg4Me0dEc0", + "identifiers.value": [ "Sg4Me0dEc0" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-28Q4nQtftL" + "title": "title-28Q4nQtftL" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "Simple screwdrivers" ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ "subject1" ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ "y8ZBmObzMW" ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.009368617, 0.008767413, -0.016105441, @@ -4248,7 +4248,7 @@ -0.015791027, -0.0029328743 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.047706183, 0.004958375, 0.06683082, @@ -5251,8 +5251,8 @@ -0.058071397 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json index 1d5f325d8..2b01fff8c 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json +++ b/common/search/src/test/resources/test_documents/images.subjects.screwdrivers-2.json @@ -1,158 +1,158 @@ { - "description" : "images with different subjects", - "createdAt" : "2024-11-14T14:37:56.560672Z", - "id" : "o2eny5un", - "document" : { - "modifiedTime" : "2032-02-29T09:36:29Z", - "display" : { - "id" : "o2eny5un", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different subjects", + "createdAt": "2024-11-14T14:37:56.560672Z", + "id": "o2eny5un", + "document": { + "modifiedTime": "2032-02-29T09:36:29Z", + "display": { + "id": "o2eny5un", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", - "credit" : "Credit line: TPXQJURr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", + "credit": "Credit line: TPXQJURr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", - "credit" : "Credit line: TPXQJURr", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/lCM.jpg/info.json", + "credit": "Credit line: TPXQJURr", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#F53850", - "source" : { - "id" : "zhq69pbg", - "title" : "title-nrylbhuzNp", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#F53850", + "source": { + "id": "zhq69pbg", + "title": "title-nrylbhuzNp", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ { - "id" : "subject1", - "label" : "Simple screwdrivers", - "concepts" : [ + "id": "subject1", + "label": "Simple screwdrivers", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" } ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "o2eny5un", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "o2eny5un", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "zhq69pbg", - "sourceIdentifier.value" : "TJdU5sqC9R", - "identifiers.value" : [ + "id": "zhq69pbg", + "sourceIdentifier.value": "TJdU5sqC9R", + "identifiers.value": [ "TJdU5sqC9R" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-nrylbhuzNp" + "title": "title-nrylbhuzNp" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "Simple screwdrivers" ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ "subject1" ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ "y8ZBmObzMW" ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.012124317, -0.021299876, -0.005733557, @@ -4250,7 +4250,7 @@ -0.03894818, 2.7688028E-4 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.029970823, -0.02675187, 0.014035577, @@ -5253,8 +5253,8 @@ 0.043071184 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.subjects.sounds.json b/common/search/src/test/resources/test_documents/images.subjects.sounds.json index c52704d19..cb1e48eea 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.sounds.json +++ b/common/search/src/test/resources/test_documents/images.subjects.sounds.json @@ -1,155 +1,155 @@ { - "description" : "images with different subjects", - "createdAt" : "2024-11-14T14:37:56.552107Z", - "id" : "kzssqpi3", - "document" : { - "modifiedTime" : "1988-08-30T19:53:42Z", - "display" : { - "id" : "kzssqpi3", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different subjects", + "createdAt": "2024-11-14T14:37:56.552107Z", + "id": "kzssqpi3", + "document": { + "modifiedTime": "1988-08-30T19:53:42Z", + "display": { + "id": "kzssqpi3", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", - "linkText" : "Link text: TnpH5i", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", + "linkText": "Link text: TnpH5i", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", - "linkText" : "Link text: TnpH5i", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/cmY.jpg/info.json", + "linkText": "Link text: TnpH5i", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#16E474", - "source" : { - "id" : "tcqskq12", - "title" : "title-TjuvcW2P6K", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#16E474", + "source": { + "id": "tcqskq12", + "title": "title-TjuvcW2P6K", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ { - "label" : "Square sounds", - "concepts" : [ + "label": "Square sounds", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" } ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "kzssqpi3", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "kzssqpi3", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "tcqskq12", - "sourceIdentifier.value" : "nEWqpoAGwP", - "identifiers.value" : [ + "id": "tcqskq12", + "sourceIdentifier.value": "nEWqpoAGwP", + "identifiers.value": [ "nEWqpoAGwP" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-TjuvcW2P6K" + "title": "title-TjuvcW2P6K" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "{\"label\":\"Square sounds\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "Square sounds" ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.027123732, 0.024278343, 0.010769607, @@ -4247,7 +4247,7 @@ 0.018701838, -0.01027819 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0026479736, -0.03839519, -0.012416301, @@ -5250,8 +5250,8 @@ 0.049604274 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json b/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json index 7d3d07deb..5ad09c94d 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json +++ b/common/search/src/test/resources/test_documents/images.subjects.squirrel,sample.json @@ -1,166 +1,166 @@ { - "description" : "images with different subjects", - "createdAt" : "2024-11-14T14:37:56.565016Z", - "id" : "m3maupg3", - "document" : { - "modifiedTime" : "2047-03-03T17:12:17Z", - "display" : { - "id" : "m3maupg3", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different subjects", + "createdAt": "2024-11-14T14:37:56.565016Z", + "id": "m3maupg3", + "document": { + "modifiedTime": "2047-03-03T17:12:17Z", + "display": { + "id": "m3maupg3", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", - "credit" : "Credit line: OYCYtD", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", + "credit": "Credit line: OYCYtD", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", - "credit" : "Credit line: OYCYtD", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/7cV.jpg/info.json", + "credit": "Credit line: OYCYtD", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#C2504D", - "source" : { - "id" : "efyngkg4", - "title" : "title-xah7C7EJsw", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#C2504D", + "source": { + "id": "efyngkg4", + "title": "title-xah7C7EJsw", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ { - "label" : "Squashed squirrels", - "concepts" : [ + "label": "Squashed squirrels", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" }, { - "id" : "subject2", - "label" : "Struck samples", - "concepts" : [ + "id": "subject2", + "label": "Struck samples", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" } ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "m3maupg3", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "m3maupg3", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "efyngkg4", - "sourceIdentifier.value" : "2bPmn3zVI7", - "identifiers.value" : [ + "id": "efyngkg4", + "sourceIdentifier.value": "2bPmn3zVI7", + "identifiers.value": [ "2bPmn3zVI7" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-xah7C7EJsw" + "title": "title-xah7C7EJsw" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "{\"label\":\"Squashed squirrels\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Struck samples\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "Squashed squirrels", "Struck samples" ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ "subject2" ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ "03y8UH48Sz" ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ -0.013064202, 0.027516874, 0.0038179387, @@ -4258,7 +4258,7 @@ 0.015030676, -4.7415524E-4 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -0.0026239895, -0.016358543, -0.0068920176, @@ -5261,8 +5261,8 @@ -0.042300895 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json b/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json index aa3994860..81d3cc20c 100644 --- a/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json +++ b/common/search/src/test/resources/test_documents/images.subjects.squirrel,screwdriver.json @@ -1,166 +1,166 @@ { - "description" : "images with different subjects", - "createdAt" : "2024-11-14T14:37:56.569804Z", - "id" : "uiooocyh", - "document" : { - "modifiedTime" : "1937-08-06T16:15:53Z", - "display" : { - "id" : "uiooocyh", - "thumbnail" : { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "description": "images with different subjects", + "createdAt": "2024-11-14T14:37:56.569804Z", + "id": "uiooocyh", + "document": { + "modifiedTime": "1937-08-06T16:15:53Z", + "display": { + "id": "uiooocyh", + "thumbnail": { + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", - "linkText" : "Link text: T2JFX6mG", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", + "linkText": "Link text: T2JFX6mG", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", - "linkText" : "Link text: T2JFX6mG", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/oJE.jpg/info.json", + "linkText": "Link text: T2JFX6mG", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "aspectRatio" : 0.38759995, - "averageColor" : "#95EC64", - "source" : { - "id" : "ogklj6ac", - "title" : "title-4wqzKQH3tC", - "contributors" : [ + "aspectRatio": 0.38759995, + "averageColor": "#95EC64", + "source": { + "id": "ogklj6ac", + "title": "title-4wqzKQH3tC", + "contributors": [ ], - "languages" : [ + "languages": [ ], - "genres" : [ + "genres": [ ], - "subjects" : [ + "subjects": [ { - "label" : "Squashed squirrels", - "concepts" : [ + "label": "Squashed squirrels", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" }, { - "id" : "subject1", - "label" : "Simple screwdrivers", - "concepts" : [ + "id": "subject1", + "label": "Simple screwdrivers", + "concepts": [ ], - "type" : "Subject" + "type": "Subject" } ], - "type" : "Work" + "type": "Work" }, - "type" : "Image" + "type": "Image" }, - "query" : { - "id" : "uiooocyh", - "source" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "id": "uiooocyh", + "source": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ogklj6ac", - "sourceIdentifier.value" : "tosPIwbBKS", - "identifiers.value" : [ + "id": "ogklj6ac", + "sourceIdentifier.value": "tosPIwbBKS", + "identifiers.value": [ "tosPIwbBKS" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-4wqzKQH3tC" + "title": "title-4wqzKQH3tC" } }, - "aggregatableValues" : { - "locations.license" : [ + "aggregatableValues": { + "locations.license": [ ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "{\"label\":\"Squashed squirrels\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Simple screwdrivers\",\"concepts\":[],\"type\":\"Subject\"}" ] }, - "filterableValues" : { - "locations.license.id" : [ + "filterableValues": { + "locations.license.id": [ "cc-by" ], - "source.contributors.agent.label" : [ + "source.contributors.agent.label": [ ], - "source.contributors.agent.id" : [ + "source.contributors.agent.id": [ ], - "source.contributors.agent.sourceIdentifier" : [ + "source.contributors.agent.sourceIdentifier": [ ], - "source.genres.label" : [ + "source.genres.label": [ ], - "source.genres.concepts.id" : [ + "source.genres.concepts.id": [ ], - "source.genres.concepts.sourceIdentifier" : [ + "source.genres.concepts.sourceIdentifier": [ ], - "source.subjects.label" : [ + "source.subjects.label": [ "Squashed squirrels", "Simple screwdrivers" ], - "source.subjects.concepts.id" : [ + "source.subjects.concepts.id": [ "subject1" ], - "source.subjects.concepts.sourceIdentifier" : [ + "source.subjects.concepts.sourceIdentifier": [ "y8ZBmObzMW" ], - "source.production.dates.range.from" : [ + "source.production.dates.range.from": [ ] }, - "vectorValues" : { - "features" : [ + "vectorValues": { + "features": [ 0.011131856, -0.010486431, -0.030248063, @@ -4258,7 +4258,7 @@ 0.011773305, -0.0022758727 ], - "paletteEmbedding" : [ + "paletteEmbedding": [ -6.3517386E-5, -0.025464978, -0.001912737, @@ -5261,8 +5261,8 @@ 0.025946626 ] }, - "debug" : { - "indexedTime" : "2001-01-01T01:01:01Z" + "debug": { + "indexedTime": "2001-01-01T01:01:01Z" } } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-production.1098.json b/common/search/src/test/resources/test_documents/work-production.1098.json index c0e9a5afe..22adae923 100644 --- a/common/search/src/test/resources/test_documents/work-production.1098.json +++ b/common/search/src/test/resources/test_documents/work-production.1098.json @@ -1,199 +1,199 @@ { - "description" : "a work with a production event in 1098", - "createdAt" : "2024-11-13T08:43:26.277829Z", - "id" : "guav7chy", - "document" : { - "debug" : { - "source" : { - "id" : "guav7chy", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with a production event in 1098", + "createdAt": "2024-11-13T08:43:26.277829Z", + "id": "guav7chy", + "document": { + "debug": { + "source": { + "id": "guav7chy", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "W9fptfa5Xn" + "ontologyType": "Work", + "value": "W9fptfa5Xn" }, - "version" : 36, - "modifiedTime" : "1947-04-11T10:50:49Z" + "version": 36, + "modifiedTime": "1947-04-11T10:50:49Z" }, - "mergedTime" : "1947-04-11T10:50:49Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1947-04-11T10:50:49Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "guav7chy", - "title" : "Production event in 1098", - "alternativeTitles" : [ + "display": { + "id": "guav7chy", + "title": "Production event in 1098", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "W9fptfa5Xn", - "type" : "Identifier" + "value": "W9fptfa5Xn", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "O5NI3fmxMe7PvjOSdUDvO1WIV", - "places" : [ + "label": "O5NI3fmxMe7PvjOSdUDvO1WIV", + "places": [ ], - "agents" : [ + "agents": [ ], - "dates" : [ + "dates": [ { - "label" : "1098", - "type" : "Period" + "label": "1098", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "guav7chy", - "sourceIdentifier.value" : "W9fptfa5Xn", - "identifiers.value" : [ + "id": "guav7chy", + "sourceIdentifier.value": "W9fptfa5Xn", + "identifiers.value": [ "W9fptfa5Xn" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1098" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1098" + "title": "Production event in 1098" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1098\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -27517622400000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "W9fptfa5Xn" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-production.1900.json b/common/search/src/test/resources/test_documents/work-production.1900.json index 99ce10427..d6e0c3498 100644 --- a/common/search/src/test/resources/test_documents/work-production.1900.json +++ b/common/search/src/test/resources/test_documents/work-production.1900.json @@ -1,199 +1,199 @@ { - "description" : "a work with a production event in 1900", - "createdAt" : "2024-11-13T08:43:26.268138Z", - "id" : "rbnro6wx", - "document" : { - "debug" : { - "source" : { - "id" : "rbnro6wx", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with a production event in 1900", + "createdAt": "2024-11-13T08:43:26.268138Z", + "id": "rbnro6wx", + "document": { + "debug": { + "source": { + "id": "rbnro6wx", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "akaUmx5H3i" + "ontologyType": "Work", + "value": "akaUmx5H3i" }, - "version" : 53, - "modifiedTime" : "1935-04-27T19:39:17Z" + "version": 53, + "modifiedTime": "1935-04-27T19:39:17Z" }, - "mergedTime" : "1935-04-27T19:39:17Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1935-04-27T19:39:17Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "rbnro6wx", - "title" : "Production event in 1900", - "alternativeTitles" : [ + "display": { + "id": "rbnro6wx", + "title": "Production event in 1900", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "akaUmx5H3i", - "type" : "Identifier" + "value": "akaUmx5H3i", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "gu6TgtWwNe2izyk21myzum5ko", - "places" : [ + "label": "gu6TgtWwNe2izyk21myzum5ko", + "places": [ ], - "agents" : [ + "agents": [ ], - "dates" : [ + "dates": [ { - "label" : "1900", - "type" : "Period" + "label": "1900", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "rbnro6wx", - "sourceIdentifier.value" : "akaUmx5H3i", - "identifiers.value" : [ + "id": "rbnro6wx", + "sourceIdentifier.value": "akaUmx5H3i", + "identifiers.value": [ "akaUmx5H3i" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1900" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1900" + "title": "Production event in 1900" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1900\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -2208988800000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "akaUmx5H3i" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-production.1904.json b/common/search/src/test/resources/test_documents/work-production.1904.json index 1a0a0e155..de21bdf06 100644 --- a/common/search/src/test/resources/test_documents/work-production.1904.json +++ b/common/search/src/test/resources/test_documents/work-production.1904.json @@ -1,199 +1,199 @@ { - "description" : "a work with a production event in 1904", - "createdAt" : "2024-11-13T08:43:26.272823Z", - "id" : "aiv95swj", - "document" : { - "debug" : { - "source" : { - "id" : "aiv95swj", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with a production event in 1904", + "createdAt": "2024-11-13T08:43:26.272823Z", + "id": "aiv95swj", + "document": { + "debug": { + "source": { + "id": "aiv95swj", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "h0QyLvGt20" + "ontologyType": "Work", + "value": "h0QyLvGt20" }, - "version" : 38, - "modifiedTime" : "1949-02-28T00:19:38Z" + "version": 38, + "modifiedTime": "1949-02-28T00:19:38Z" }, - "mergedTime" : "1949-02-28T00:19:38Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1949-02-28T00:19:38Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "aiv95swj", - "title" : "Production event in 1904", - "alternativeTitles" : [ + "display": { + "id": "aiv95swj", + "title": "Production event in 1904", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "h0QyLvGt20", - "type" : "Identifier" + "value": "h0QyLvGt20", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "gIdUKO9ELdlCtGqZpr8ZHyDFZ", - "places" : [ + "label": "gIdUKO9ELdlCtGqZpr8ZHyDFZ", + "places": [ ], - "agents" : [ + "agents": [ ], - "dates" : [ + "dates": [ { - "label" : "1904", - "type" : "Period" + "label": "1904", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "aiv95swj", - "sourceIdentifier.value" : "h0QyLvGt20", - "identifiers.value" : [ + "id": "aiv95swj", + "sourceIdentifier.value": "h0QyLvGt20", + "identifiers.value": [ "h0QyLvGt20" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1904" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1904" + "title": "Production event in 1904" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1904\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -2082844800000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "h0QyLvGt20" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-production.1976.json b/common/search/src/test/resources/test_documents/work-production.1976.json index fa74073d8..0ebca2e44 100644 --- a/common/search/src/test/resources/test_documents/work-production.1976.json +++ b/common/search/src/test/resources/test_documents/work-production.1976.json @@ -1,199 +1,199 @@ { - "description" : "a work with a production event in 1976", - "createdAt" : "2024-11-13T08:43:26.270486Z", - "id" : "5vjghupy", - "document" : { - "debug" : { - "source" : { - "id" : "5vjghupy", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a work with a production event in 1976", + "createdAt": "2024-11-13T08:43:26.270486Z", + "id": "5vjghupy", + "document": { + "debug": { + "source": { + "id": "5vjghupy", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "xrdlOL8J49" + "ontologyType": "Work", + "value": "xrdlOL8J49" }, - "version" : 83, - "modifiedTime" : "1970-01-23T23:11:47Z" + "version": 83, + "modifiedTime": "1970-01-23T23:11:47Z" }, - "mergedTime" : "1970-01-23T23:11:47Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1970-01-23T23:11:47Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "5vjghupy", - "title" : "Production event in 1976", - "alternativeTitles" : [ + "display": { + "id": "5vjghupy", + "title": "Production event in 1976", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "xrdlOL8J49", - "type" : "Identifier" + "value": "xrdlOL8J49", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "boNJsc3AAjxHM3WnjuDFIT1sH", - "places" : [ + "label": "boNJsc3AAjxHM3WnjuDFIT1sH", + "places": [ ], - "agents" : [ + "agents": [ ], - "dates" : [ + "dates": [ { - "label" : "1976", - "type" : "Period" + "label": "1976", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5vjghupy", - "sourceIdentifier.value" : "xrdlOL8J49", - "identifiers.value" : [ + "id": "5vjghupy", + "sourceIdentifier.value": "xrdlOL8J49", + "identifiers.value": [ "xrdlOL8J49" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "1976" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 1976" + "title": "Production event in 1976" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1976\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ 189302400000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "xrdlOL8J49" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-production.2020.json b/common/search/src/test/resources/test_documents/work-production.2020.json index 81f08e517..5d404619a 100644 --- a/common/search/src/test/resources/test_documents/work-production.2020.json +++ b/common/search/src/test/resources/test_documents/work-production.2020.json @@ -1,199 +1,199 @@ { - "description" : "a work with a production event in 2020", - "createdAt" : "2024-11-13T08:43:26.275334Z", - "id" : "0fucriyr", - "document" : { - "debug" : { - "source" : { - "id" : "0fucriyr", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with a production event in 2020", + "createdAt": "2024-11-13T08:43:26.275334Z", + "id": "0fucriyr", + "document": { + "debug": { + "source": { + "id": "0fucriyr", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "KgSH5dUX0Z" + "ontologyType": "Work", + "value": "KgSH5dUX0Z" }, - "version" : 14, - "modifiedTime" : "1936-06-08T14:59:50Z" + "version": 14, + "modifiedTime": "1936-06-08T14:59:50Z" }, - "mergedTime" : "1936-06-08T14:59:50Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1936-06-08T14:59:50Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "0fucriyr", - "title" : "Production event in 2020", - "alternativeTitles" : [ + "display": { + "id": "0fucriyr", + "title": "Production event in 2020", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "KgSH5dUX0Z", - "type" : "Identifier" + "value": "KgSH5dUX0Z", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "qX1oaMinUSJLhD6RZ9qpj8A8L", - "places" : [ + "label": "qX1oaMinUSJLhD6RZ9qpj8A8L", + "places": [ ], - "agents" : [ + "agents": [ ], - "dates" : [ + "dates": [ { - "label" : "2020", - "type" : "Period" + "label": "2020", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "0fucriyr", - "sourceIdentifier.value" : "KgSH5dUX0Z", - "identifiers.value" : [ + "id": "0fucriyr", + "sourceIdentifier.value": "KgSH5dUX0Z", + "identifiers.value": [ "KgSH5dUX0Z" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "2020" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "Production event in 2020" + "title": "Production event in 2020" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"2020\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ 1577836800000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "KgSH5dUX0Z" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-thumbnail.json b/common/search/src/test/resources/test_documents/work-thumbnail.json index 46ae1d761..39d6146ae 100644 --- a/common/search/src/test/resources/test_documents/work-thumbnail.json +++ b/common/search/src/test/resources/test_documents/work-thumbnail.json @@ -1,199 +1,199 @@ { - "description" : "a work with a thumbnail", - "createdAt" : "2024-11-13T08:43:26.254004Z", - "id" : "sahqcluh", - "document" : { - "debug" : { - "source" : { - "id" : "sahqcluh", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a work with a thumbnail", + "createdAt": "2024-11-13T08:43:26.254004Z", + "id": "sahqcluh", + "document": { + "debug": { + "source": { + "id": "sahqcluh", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "rRRYGQYiF7" + "ontologyType": "Work", + "value": "rRRYGQYiF7" }, - "version" : 9, - "modifiedTime" : "2052-06-26T19:25:07Z" + "version": 9, + "modifiedTime": "2052-06-26T19:25:07Z" }, - "mergedTime" : "2052-06-26T19:25:07Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2052-06-26T19:25:07Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "sahqcluh", - "title" : "title-LSfnjHB2TS", - "alternativeTitles" : [ + "display": { + "id": "sahqcluh", + "title": "title-LSfnjHB2TS", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "rRRYGQYiF7", - "type" : "Identifier" + "value": "rRRYGQYiF7", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "thumbnail" : { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "thumbnail": { + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/547.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/547.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "sahqcluh", - "sourceIdentifier.value" : "rRRYGQYiF7", - "identifiers.value" : [ + "id": "sahqcluh", + "sourceIdentifier.value": "rRRYGQYiF7", + "identifiers.value": [ "rRRYGQYiF7" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-LSfnjHB2TS" + "title": "title-LSfnjHB2TS" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "rRRYGQYiF7" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-title-dodo.json b/common/search/src/test/resources/test_documents/work-title-dodo.json index 92ae14c80..9214178c7 100644 --- a/common/search/src/test/resources/test_documents/work-title-dodo.json +++ b/common/search/src/test/resources/test_documents/work-title-dodo.json @@ -1,183 +1,183 @@ { - "description" : "a work with 'dodo' in the title", - "createdAt" : "2024-11-13T08:43:26.256912Z", - "id" : "ezagik4b", - "document" : { - "debug" : { - "source" : { - "id" : "ezagik4b", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a work with 'dodo' in the title", + "createdAt": "2024-11-13T08:43:26.256912Z", + "id": "ezagik4b", + "document": { + "debug": { + "source": { + "id": "ezagik4b", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "xg9OuzGali" + "ontologyType": "Work", + "value": "xg9OuzGali" }, - "version" : 84, - "modifiedTime" : "1965-10-11T02:36:15Z" + "version": 84, + "modifiedTime": "1965-10-11T02:36:15Z" }, - "mergedTime" : "1965-10-11T02:36:15Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1965-10-11T02:36:15Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ezagik4b", - "title" : "A drawing of a dodo", - "alternativeTitles" : [ + "display": { + "id": "ezagik4b", + "title": "A drawing of a dodo", + "alternativeTitles": [ ], - "lettering" : "A line of legible ligatures", - "contributors" : [ + "lettering": "A line of legible ligatures", + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "xg9OuzGali", - "type" : "Identifier" + "value": "xg9OuzGali", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ezagik4b", - "sourceIdentifier.value" : "xg9OuzGali", - "identifiers.value" : [ + "id": "ezagik4b", + "sourceIdentifier.value": "xg9OuzGali", + "identifiers.value": [ "xg9OuzGali" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : "A line of legible ligatures", - "notes.contents" : [ + "lettering": "A line of legible ligatures", + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A drawing of a dodo" + "title": "A drawing of a dodo" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "xg9OuzGali" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-title-mouse.json b/common/search/src/test/resources/test_documents/work-title-mouse.json index 1c1f8a91a..7de9a58dd 100644 --- a/common/search/src/test/resources/test_documents/work-title-mouse.json +++ b/common/search/src/test/resources/test_documents/work-title-mouse.json @@ -1,183 +1,183 @@ { - "description" : "a work with 'mouse' in the title", - "createdAt" : "2024-11-13T08:43:26.259339Z", - "id" : "lnn17cwk", - "document" : { - "debug" : { - "source" : { - "id" : "lnn17cwk", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with 'mouse' in the title", + "createdAt": "2024-11-13T08:43:26.259339Z", + "id": "lnn17cwk", + "document": { + "debug": { + "source": { + "id": "lnn17cwk", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "EhPpSB8mq7" + "ontologyType": "Work", + "value": "EhPpSB8mq7" }, - "version" : 64, - "modifiedTime" : "2003-09-07T11:20:18Z" + "version": 64, + "modifiedTime": "2003-09-07T11:20:18Z" }, - "mergedTime" : "2003-09-07T11:20:18Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2003-09-07T11:20:18Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "lnn17cwk", - "title" : "A mezzotint of a mouse", - "alternativeTitles" : [ + "display": { + "id": "lnn17cwk", + "title": "A mezzotint of a mouse", + "alternativeTitles": [ ], - "lettering" : "A print of proportional penmanship", - "contributors" : [ + "lettering": "A print of proportional penmanship", + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "EhPpSB8mq7", - "type" : "Identifier" + "value": "EhPpSB8mq7", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "lnn17cwk", - "sourceIdentifier.value" : "EhPpSB8mq7", - "identifiers.value" : [ + "id": "lnn17cwk", + "sourceIdentifier.value": "EhPpSB8mq7", + "identifiers.value": [ "EhPpSB8mq7" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : "A print of proportional penmanship", - "notes.contents" : [ + "lettering": "A print of proportional penmanship", + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A mezzotint of a mouse" + "title": "A mezzotint of a mouse" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "EhPpSB8mq7" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json b/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json index 23d26bab8..b06e0d96c 100644 --- a/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json +++ b/common/search/src/test/resources/test_documents/work-with-edition-and-duration.json @@ -1,184 +1,184 @@ { - "description" : "a work with optional top-level fields", - "createdAt" : "2024-11-13T08:43:26.245788Z", - "id" : "gsruvqwf", - "document" : { - "debug" : { - "source" : { - "id" : "gsruvqwf", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with optional top-level fields", + "createdAt": "2024-11-13T08:43:26.245788Z", + "id": "gsruvqwf", + "document": { + "debug": { + "source": { + "id": "gsruvqwf", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "7YNi35xO0f" + "ontologyType": "Work", + "value": "7YNi35xO0f" }, - "version" : 54, - "modifiedTime" : "1967-09-14T08:19:27Z" + "version": 54, + "modifiedTime": "1967-09-14T08:19:27Z" }, - "mergedTime" : "1967-09-14T08:19:27Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1967-09-14T08:19:27Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "gsruvqwf", - "title" : "title-4pIj0kgXrt", - "alternativeTitles" : [ + "display": { + "id": "gsruvqwf", + "title": "title-4pIj0kgXrt", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "7YNi35xO0f", - "type" : "Identifier" + "value": "7YNi35xO0f", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "edition" : "Special edition", - "notes" : [ + "edition": "Special edition", + "notes": [ ], - "duration" : 3600, - "formerFrequency" : [ + "duration": 3600, + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : "Special edition", - "genres.concepts.label" : [ + "description": null, + "edition": "Special edition", + "genres.concepts.label": [ ], - "id" : "gsruvqwf", - "sourceIdentifier.value" : "7YNi35xO0f", - "identifiers.value" : [ + "id": "gsruvqwf", + "sourceIdentifier.value": "7YNi35xO0f", + "identifiers.value": [ "7YNi35xO0f" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-4pIj0kgXrt" + "title": "title-4pIj0kgXrt" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "7YNi35xO0f" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json b/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json index 93aa6af6a..1d8de4bc6 100644 --- a/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json +++ b/common/search/src/test/resources/test_documents/work.invisible.title-mouse.json @@ -1,28 +1,28 @@ { - "description" : "an invisible work with 'mouse' in the title", - "createdAt" : "2024-02-16T15:36:44.232704Z", - "id" : "ehd2s7ek", - "document" : { - "debug" : { - "source" : { - "id" : "ehd2s7ek", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "an invisible work with 'mouse' in the title", + "createdAt": "2024-02-16T15:36:44.232704Z", + "id": "ehd2s7ek", + "document": { + "debug": { + "source": { + "id": "ehd2s7ek", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "QAH5ZlILHM" + "ontologyType": "Work", + "value": "QAH5ZlILHM" }, - "version" : 47, - "modifiedTime" : "2006-12-05T07:13:26Z" + "version": 47, + "modifiedTime": "2006-12-05T07:13:26Z" }, - "mergedTime" : "2006-12-05T07:13:26Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "invisibilityReasons" : [ + "mergedTime": "2006-12-05T07:13:26Z", + "indexedTime": "2001-01-01T01:01:01Z", + "invisibilityReasons": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Invisible" + "type": "Invisible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json index bc1060546..267b44c2f 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.0.json @@ -1,224 +1,224 @@ { - "description" : "items with different location types", - "createdAt" : "2024-11-13T08:43:26.563947Z", - "id" : "4zaferi8", - "document" : { - "debug" : { - "source" : { - "id" : "4zaferi8", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "items with different location types", + "createdAt": "2024-11-13T08:43:26.563947Z", + "id": "4zaferi8", + "document": { + "debug": { + "source": { + "id": "4zaferi8", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "lfxMM8GfuD" + "ontologyType": "Work", + "value": "lfxMM8GfuD" }, - "version" : 86, - "modifiedTime" : "2038-12-13T02:35:56Z" + "version": 86, + "modifiedTime": "2038-12-13T02:35:56Z" }, - "mergedTime" : "2038-12-13T02:35:56Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2038-12-13T02:35:56Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "4zaferi8", - "title" : "title-7W1WKu978d", - "alternativeTitles" : [ + "display": { + "id": "4zaferi8", + "title": "title-7W1WKu978d", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "lfxMM8GfuD", - "type" : "Identifier" + "value": "lfxMM8GfuD", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "xato6wyi", - "identifiers" : [ + "id": "xato6wyi", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "aLacffLiQz", - "type" : "Identifier" + "value": "aLacffLiQz", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/n6e.jpg/info.json", - "linkText" : "Link text: UShs8ZXp5K", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/n6e.jpg/info.json", + "linkText": "Link text: UShs8ZXp5K", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "4zaferi8", - "sourceIdentifier.value" : "lfxMM8GfuD", - "identifiers.value" : [ + "id": "4zaferi8", + "sourceIdentifier.value": "lfxMM8GfuD", + "identifiers.value": [ "lfxMM8GfuD" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "xato6wyi" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "aLacffLiQz" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-7W1WKu978d" + "title": "title-7W1WKu978d" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "lfxMM8GfuD" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "xato6wyi" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "aLacffLiQz" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-image" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json index 7646004f7..3a03d4da4 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.1.json @@ -1,246 +1,246 @@ { - "description" : "items with different location types", - "createdAt" : "2024-11-13T08:43:26.564398Z", - "id" : "pfnxzwsg", - "document" : { - "debug" : { - "source" : { - "id" : "pfnxzwsg", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "items with different location types", + "createdAt": "2024-11-13T08:43:26.564398Z", + "id": "pfnxzwsg", + "document": { + "debug": { + "source": { + "id": "pfnxzwsg", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "3WPG6KR1Dm" + "ontologyType": "Work", + "value": "3WPG6KR1Dm" }, - "version" : 86, - "modifiedTime" : "2009-12-08T11:45:37Z" + "version": 86, + "modifiedTime": "2009-12-08T11:45:37Z" }, - "mergedTime" : "2009-12-08T11:45:37Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2009-12-08T11:45:37Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "pfnxzwsg", - "title" : "title-KiQpo5xNC2", - "alternativeTitles" : [ + "display": { + "id": "pfnxzwsg", + "title": "title-KiQpo5xNC2", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "3WPG6KR1Dm", - "type" : "Identifier" + "value": "3WPG6KR1Dm", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "k2sxfzy9", - "identifiers" : [ + "id": "k2sxfzy9", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "dRJC6PIObm", - "type" : "Identifier" + "value": "dRJC6PIObm", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-image", - "label" : "IIIF Image API", - "type" : "LocationType" + "locationType": { + "id": "iiif-image", + "label": "IIIF Image API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/LKO.jpg/info.json", - "credit" : "Credit line: PPIvUnh", - "linkText" : "Link text: 2Z5Ks7", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/LKO.jpg/info.json", + "credit": "Credit line: PPIvUnh", + "linkText": "Link text: 2Z5Ks7", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" }, { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/7v4.jpg/info.json", - "linkText" : "Link text: UCKKVOQ", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/7v4.jpg/info.json", + "linkText": "Link text: UCKKVOQ", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "pfnxzwsg", - "sourceIdentifier.value" : "3WPG6KR1Dm", - "identifiers.value" : [ + "id": "pfnxzwsg", + "sourceIdentifier.value": "3WPG6KR1Dm", + "identifiers.value": [ "3WPG6KR1Dm" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "k2sxfzy9" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "dRJC6PIObm" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-KiQpo5xNC2" + "title": "title-KiQpo5xNC2" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "3WPG6KR1Dm" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by", "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "k2sxfzy9" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "dRJC6PIObm" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-image", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json b/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json index 427a6ee68..b80978bdd 100644 --- a/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json +++ b/common/search/src/test/resources/test_documents/work.items-with-location-types.2.json @@ -1,232 +1,232 @@ { - "description" : "items with different location types", - "createdAt" : "2024-11-13T08:43:26.564840Z", - "id" : "gubhlxq1", - "document" : { - "debug" : { - "source" : { - "id" : "gubhlxq1", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "items with different location types", + "createdAt": "2024-11-13T08:43:26.564840Z", + "id": "gubhlxq1", + "document": { + "debug": { + "source": { + "id": "gubhlxq1", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "Qiy0B0TSmD" + "ontologyType": "Work", + "value": "Qiy0B0TSmD" }, - "version" : 52, - "modifiedTime" : "1954-07-26T16:28:04Z" + "version": 52, + "modifiedTime": "1954-07-26T16:28:04Z" }, - "mergedTime" : "1954-07-26T16:28:04Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1954-07-26T16:28:04Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "gubhlxq1", - "title" : "title-wO98EpYD0E", - "alternativeTitles" : [ + "display": { + "id": "gubhlxq1", + "title": "title-wO98EpYD0E", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "Qiy0B0TSmD", - "type" : "Identifier" + "value": "Qiy0B0TSmD", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "iptnnwys", - "identifiers" : [ + "id": "iptnnwys", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "EYydewbq2T", - "type" : "Identifier" + "value": "EYydewbq2T", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "LocationType" + "locationType": { + "id": "closed-stores", + "label": "Closed stores", + "type": "LocationType" }, - "label" : "locationLabel", - "license" : { - "id" : "ogl", - "label" : "Open Government Licence", - "url" : "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", - "type" : "License" + "label": "locationLabel", + "license": { + "id": "ogl", + "label": "Open Government Licence", + "url": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "type": "License" }, - "shelfmark" : "Shelfmark: A6uWTQ", - "accessConditions" : [ + "shelfmark": "Shelfmark: A6uWTQ", + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "Availability" + "id": "closed-stores", + "label": "Closed stores", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "gubhlxq1", - "sourceIdentifier.value" : "Qiy0B0TSmD", - "identifiers.value" : [ + "id": "gubhlxq1", + "sourceIdentifier.value": "Qiy0B0TSmD", + "identifiers.value": [ "Qiy0B0TSmD" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "iptnnwys" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "EYydewbq2T" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ "Shelfmark: A6uWTQ" ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-wO98EpYD0E" + "title": "title-wO98EpYD0E" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"ogl\",\"label\":\"Open Government Licence\",\"url\":\"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Qiy0B0TSmD" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "ogl" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "iptnnwys" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "EYydewbq2T" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "closed-stores" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "closed-stores" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.0.json b/common/search/src/test/resources/test_documents/work.visible.everything.0.json index 93234d463..0e1b01ba3 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.0.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.0.json @@ -1,360 +1,360 @@ { - "description" : "a list of work with all the include-able fields", - "createdAt" : "2024-11-13T08:43:26.422796Z", - "id" : "tmdfbk5k", - "document" : { - "debug" : { - "source" : { - "id" : "tmdfbk5k", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a list of work with all the include-able fields", + "createdAt": "2024-11-13T08:43:26.422796Z", + "id": "tmdfbk5k", + "document": { + "debug": { + "source": { + "id": "tmdfbk5k", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "Aic5qOhRoS" + "ontologyType": "Work", + "value": "Aic5qOhRoS" }, - "version" : 12, - "modifiedTime" : "2033-04-23T09:14:15Z" + "version": 12, + "modifiedTime": "2033-04-23T09:14:15Z" }, - "mergedTime" : "2033-04-23T09:14:15Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2033-04-23T09:14:15Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "tmdfbk5k", - "title" : "A work with all the include-able fields", - "alternativeTitles" : [ + "display": { + "id": "tmdfbk5k", + "title": "A work with all the include-able fields", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "person-eKZIqbV783", - "type" : "Person" + "agent": { + "label": "person-eKZIqbV783", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "person-9SMhIH", - "type" : "Person" + "agent": { + "label": "person-9SMhIH", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "Aic5qOhRoS", - "type" : "Identifier" + "value": "Aic5qOhRoS", + "type": "Identifier" }, { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "UfcQYSxE7g", - "type" : "Identifier" + "value": "UfcQYSxE7g", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "RGOo9Fg6ic", - "concepts" : [ + "label": "RGOo9Fg6ic", + "concepts": [ { - "label" : "goKOwWLrIbnrzZj", - "type" : "Concept" + "label": "goKOwWLrIbnrzZj", + "type": "Concept" }, { - "label" : "i3JH82kKuArEtlV", - "type" : "Concept" + "label": "i3JH82kKuArEtlV", + "type": "Concept" }, { - "label" : "dV0jg08I834KKSX", - "type" : "Concept" + "label": "dV0jg08I834KKSX", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "label" : "k1WGWfqE6x", - "concepts" : [ + "label": "k1WGWfqE6x", + "concepts": [ { - "label" : "FakoqsVT1GlsNpY", - "type" : "Concept" + "label": "FakoqsVT1GlsNpY", + "type": "Concept" }, { - "label" : "pthDMBLQZhG54Nz", - "type" : "Concept" + "label": "pthDMBLQZhG54Nz", + "type": "Concept" }, { - "label" : "omzMOR7nUmbDY87", - "type" : "Concept" + "label": "omzMOR7nUmbDY87", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ { - "label" : "Uw1LvlTE5c", - "concepts" : [ + "label": "Uw1LvlTE5c", + "concepts": [ { - "id" : "ihqr23gk", - "identifiers" : [ + "id": "ihqr23gk", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "4fR1f4tFlV", - "type" : "Identifier" + "value": "4fR1f4tFlV", + "type": "Identifier" } ], - "label" : "9tQdPt3acHhNKnN", - "type" : "Genre" + "label": "9tQdPt3acHhNKnN", + "type": "Genre" }, { - "id" : "nfnk1qv0", - "identifiers" : [ + "id": "nfnk1qv0", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "W3Gj5M4V6F", - "type" : "Identifier" + "value": "W3Gj5M4V6F", + "type": "Identifier" } ], - "label" : "bPiYMZquffyNPDg", - "type" : "Concept" + "label": "bPiYMZquffyNPDg", + "type": "Concept" }, { - "id" : "k1uu2kl5", - "identifiers" : [ + "id": "k1uu2kl5", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "MLX8biK5UW", - "type" : "Identifier" + "value": "MLX8biK5UW", + "type": "Identifier" } ], - "label" : "QXsRV8G10ObxxWE", - "type" : "Concept" + "label": "QXsRV8G10ObxxWE", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "9SVIX0fEgC", - "concepts" : [ + "label": "9SVIX0fEgC", + "concepts": [ { - "id" : "iwtb2h68", - "identifiers" : [ + "id": "iwtb2h68", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "8xazsI6am8", - "type" : "Identifier" + "value": "8xazsI6am8", + "type": "Identifier" } ], - "label" : "ssuRzRpFAch6oMg", - "type" : "Genre" + "label": "ssuRzRpFAch6oMg", + "type": "Genre" }, { - "id" : "fhynr11c", - "identifiers" : [ + "id": "fhynr11c", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "aEhJ0QNRzQ", - "type" : "Identifier" + "value": "aEhJ0QNRzQ", + "type": "Identifier" } ], - "label" : "9xxYEdUXSLHjmev", - "type" : "Concept" + "label": "9xxYEdUXSLHjmev", + "type": "Concept" }, { - "id" : "w5sj896l", - "identifiers" : [ + "id": "w5sj896l", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "4g2k9frr0x", - "type" : "Identifier" + "value": "4g2k9frr0x", + "type": "Identifier" } ], - "label" : "VoGuWXqO9eqzvro", - "type" : "Concept" + "label": "VoGuWXqO9eqzvro", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ { - "id" : "a7xxlndb", - "identifiers" : [ + "id": "a7xxlndb", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "GWWFxlGgZX", - "type" : "Identifier" + "value": "GWWFxlGgZX", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/3jE.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/3jE.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "id" : "ejk7jwcd", - "identifiers" : [ + "id": "ejk7jwcd", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "dG0mvvCJtU", - "type" : "Identifier" + "value": "dG0mvvCJtU", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/ds1.jpg/info.json", - "credit" : "Credit line: MnIN8jLSj0", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/ds1.jpg/info.json", + "credit": "Credit line: MnIN8jLSj0", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/OSl.jpg/info.json", - "credit" : "Credit line: ZN9ToblN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/OSl.jpg/info.json", + "credit": "Credit line: ZN9ToblN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ { - "note" : "rYBxSAn4", - "enumeration" : [ + "note": "rYBxSAn4", + "enumeration": [ "zRFFmVMv", "ez7JFZ7F", "x3e01Z", "12L0U9K" ], - "type" : "Holdings" + "type": "Holdings" }, { - "enumeration" : [ + "enumeration": [ "C1HRZomzs", "WpcRaAA6", "O9h5XJq", "Ym9tlQp1Q", "JoGECfaB" ], - "location" : { - "locationType" : { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "LocationType" + "location": { + "locationType": { + "id": "closed-stores", + "label": "Closed stores", + "type": "LocationType" }, - "label" : "locationLabel", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "label": "locationLabel", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" }, - "type" : "Holdings" + "type": "Holdings" }, { - "note" : "z3mr2Gbjg3", - "enumeration" : [ + "note": "z3mr2Gbjg3", + "enumeration": [ "UHlycAdT2L", "laGIDVwG", "CtLHFeu", @@ -364,193 +364,193 @@ "bKjx1oRi6", "fEDi0YO" ], - "type" : "Holdings" + "type": "Holdings" } ], - "availabilities" : [ + "availabilities": [ { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "Availability" + "id": "closed-stores", + "label": "Closed stores", + "type": "Availability" } ], - "production" : [ + "production": [ { - "label" : "p8e8SuyMVHQTT2Iryhy1sdDDR", - "places" : [ + "label": "p8e8SuyMVHQTT2Iryhy1sdDDR", + "places": [ { - "label" : "CyKLQFKzgr", - "type" : "Place" + "label": "CyKLQFKzgr", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "o69PkIHAHM", - "type" : "Person" + "label": "o69PkIHAHM", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "2DH1A", - "type" : "Period" + "label": "2DH1A", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" }, { - "label" : "Y5fj9BpOrhd8mwmov3fzhoiiC", - "places" : [ + "label": "Y5fj9BpOrhd8mwmov3fzhoiiC", + "places": [ { - "label" : "YEJhvwXauL", - "type" : "Place" + "label": "YEJhvwXauL", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "5GzybrlEoE", - "type" : "Person" + "label": "5GzybrlEoE", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "jgKFa", - "type" : "Period" + "label": "jgKFa", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ { - "id" : "Dbd", - "label" : "zJH1bfh", - "type" : "Language" + "id": "Dbd", + "label": "zJH1bfh", + "type": "Language" }, { - "id" : "Kx4", - "label" : "fSAq54gq", - "type" : "Language" + "id": "Kx4", + "label": "fSAq54gq", + "type": "Language" }, { - "id" : "QEh", - "label" : "QxoZn47", - "type" : "Language" + "id": "QEh", + "label": "QxoZn47", + "type": "Language" } ], - "notes" : [ + "notes": [ { - "contents" : [ + "contents": [ "AX01BTa4R" ], - "noteType" : { - "id" : "general-note", - "label" : "Notes", - "type" : "NoteType" + "noteType": { + "id": "general-note", + "label": "Notes", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "w1YfRQ9an", "5wdlW2gcpt" ], - "noteType" : { - "id" : "funding-info", - "label" : "Funding information", - "type" : "NoteType" + "noteType": { + "id": "funding-info", + "label": "Funding information", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "pneMkt" ], - "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", - "type" : "NoteType" + "noteType": { + "id": "location-of-duplicates", + "label": "Location of duplicates", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" } ], - "formerFrequency" : [ + "formerFrequency": [ "Published in 2001", "Published in 2002" ], - "designation" : [ + "designation": [ "Designation #1", "Designation #2", "Designation #3" ], - "images" : [ + "images": [ { - "id" : "ihvpnycp", - "type" : "Image" + "id": "ihvpnycp", + "type": "Image" }, { - "id" : "rlgjqnwt", - "type" : "Image" + "id": "rlgjqnwt", + "type": "Image" } ], - "parts" : [ + "parts": [ { - "id" : "a7om88xm", - "title" : "title-nN4RHJX7OP", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "a7om88xm", + "title": "title-nN4RHJX7OP", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "partOf" : [ + "partOf": [ { - "id" : "nrvdy0jg", - "title" : "title-MS5Hy6x38N", - "partOf" : [ + "id": "nrvdy0jg", + "title": "title-MS5Hy6x38N", + "partOf": [ { - "id" : "0cs6cerb", - "title" : "title-b1iZslIT5y", - "totalParts" : 1, - "totalDescendentParts" : 5, - "type" : "Work" + "id": "0cs6cerb", + "title": "title-b1iZslIT5y", + "totalParts": 1, + "totalDescendentParts": 5, + "type": "Work" } ], - "totalParts" : 3, - "totalDescendentParts" : 4, - "type" : "Work" + "totalParts": 3, + "totalDescendentParts": 4, + "type": "Work" } ], - "precededBy" : [ + "precededBy": [ { - "id" : "1gnd7b0m", - "title" : "title-tnetMtnM6n", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "1gnd7b0m", + "title": "title-tnetMtnM6n", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "succeededBy" : [ + "succeededBy": [ { - "id" : "uxg4ed5m", - "title" : "title-Ia7Ze4ZWUM", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "uxg4ed5m", + "title": "title-Ia7Ze4ZWUM", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-eKZIqbV783", "person-9SMhIH" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "9tQdPt3acHhNKnN", "bPiYMZquffyNPDg", "QXsRV8G10ObxxWE", @@ -558,48 +558,48 @@ "9xxYEdUXSLHjmev", "VoGuWXqO9eqzvro" ], - "id" : "tmdfbk5k", - "sourceIdentifier.value" : "Aic5qOhRoS", - "identifiers.value" : [ + "id": "tmdfbk5k", + "sourceIdentifier.value": "Aic5qOhRoS", + "identifiers.value": [ "Aic5qOhRoS", "UfcQYSxE7g" ], - "images.id" : [ + "images.id": [ "ihvpnycp", "rlgjqnwt" ], - "images.identifiers.value" : [ + "images.identifiers.value": [ "7AFPJNgpli", "N8dAz61bAE" ], - "items.id" : [ + "items.id": [ "a7xxlndb", "ejk7jwcd" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "GWWFxlGgZX", "dG0mvvCJtU" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "zJH1bfh", "fSAq54gq", "QxoZn47" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ "AX01BTa4R", "w1YfRQ9an", "pneMkt", "5wdlW2gcpt" ], - "partOf.title" : [ + "partOf.title": [ "title-b1iZslIT5y", "title-MS5Hy6x38N" ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "CyKLQFKzgr", "o69PkIHAHM", "2DH1A", @@ -607,8 +607,8 @@ "5GzybrlEoE", "jgKFa" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "goKOwWLrIbnrzZj", "i3JH82kKuArEtlV", "dV0jg08I834KKSX", @@ -616,113 +616,113 @@ "pthDMBLQZhG54Nz", "omzMOR7nUmbDY87" ], - "title" : "A work with all the include-able fields" + "title": "A work with all the include-able fields" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Uw1LvlTE5c\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"9SVIX0fEgC\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"RGOo9Fg6ic\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"k1WGWfqE6x\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ "{\"id\":\"Dbd\",\"label\":\"zJH1bfh\",\"type\":\"Language\"}", "{\"id\":\"Kx4\",\"label\":\"fSAq54gq\",\"type\":\"Language\"}", "{\"id\":\"QEh\",\"label\":\"QxoZn47\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"person-eKZIqbV783\",\"type\":\"Person\"}", "{\"label\":\"person-9SMhIH\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "Dbd", "Kx4", "QEh" ], - "genres.label" : [ + "genres.label": [ "Uw1LvlTE5c", "9SVIX0fEgC" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "ihqr23gk", "iwtb2h68" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "4fR1f4tFlV", "8xazsI6am8" ], - "subjects.label" : [ + "subjects.label": [ "RGOo9Fg6ic", "k1WGWfqE6x" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-eKZIqbV783", "person-9SMhIH" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Aic5qOhRoS", "UfcQYSxE7g" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by", "cc-by", "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "a7xxlndb", "ejk7jwcd" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "GWWFxlGgZX", "dG0mvvCJtU" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ "0cs6cerb", "nrvdy0jg" ], - "partOf.title" : [ + "partOf.title": [ "title-b1iZslIT5y", "title-MS5Hy6x38N" ], - "availabilities.id" : [ + "availabilities.id": [ "closed-stores" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.1.json b/common/search/src/test/resources/test_documents/work.visible.everything.1.json index aedb81f3b..a28a404c7 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.1.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.1.json @@ -1,322 +1,322 @@ { - "description" : "a list of work with all the include-able fields", - "createdAt" : "2024-11-13T08:43:26.426204Z", - "id" : "dhzcyeul", - "document" : { - "debug" : { - "source" : { - "id" : "dhzcyeul", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a list of work with all the include-able fields", + "createdAt": "2024-11-13T08:43:26.426204Z", + "id": "dhzcyeul", + "document": { + "debug": { + "source": { + "id": "dhzcyeul", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "LMVvWxgXRS" + "ontologyType": "Work", + "value": "LMVvWxgXRS" }, - "version" : 85, - "modifiedTime" : "1954-10-07T06:00:15Z" + "version": 85, + "modifiedTime": "1954-10-07T06:00:15Z" }, - "mergedTime" : "1954-10-07T06:00:15Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1954-10-07T06:00:15Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "dhzcyeul", - "title" : "A work with all the include-able fields", - "alternativeTitles" : [ + "display": { + "id": "dhzcyeul", + "title": "A work with all the include-able fields", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "person-RLIsn6KqXf", - "type" : "Person" + "agent": { + "label": "person-RLIsn6KqXf", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "person-MBn6NMM", - "type" : "Person" + "agent": { + "label": "person-MBn6NMM", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "LMVvWxgXRS", - "type" : "Identifier" + "value": "LMVvWxgXRS", + "type": "Identifier" }, { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "mD7jxioppl", - "type" : "Identifier" + "value": "mD7jxioppl", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "RbppKZMbAm", - "concepts" : [ + "label": "RbppKZMbAm", + "concepts": [ { - "label" : "0vPSF4EIy1m22EM", - "type" : "Concept" + "label": "0vPSF4EIy1m22EM", + "type": "Concept" }, { - "label" : "kmWOjlKvfRGKp22", - "type" : "Concept" + "label": "kmWOjlKvfRGKp22", + "type": "Concept" }, { - "label" : "pTPNg1Fb7hLZCWP", - "type" : "Concept" + "label": "pTPNg1Fb7hLZCWP", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "label" : "2ToHCa1Sqa", - "concepts" : [ + "label": "2ToHCa1Sqa", + "concepts": [ { - "label" : "QCD06AWAxFOW2wB", - "type" : "Concept" + "label": "QCD06AWAxFOW2wB", + "type": "Concept" }, { - "label" : "gqY0L1ZF1PYZIWO", - "type" : "Concept" + "label": "gqY0L1ZF1PYZIWO", + "type": "Concept" }, { - "label" : "P5xioqrw7OhiAUB", - "type" : "Concept" + "label": "P5xioqrw7OhiAUB", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ { - "label" : "gzynPVyy1B", - "concepts" : [ + "label": "gzynPVyy1B", + "concepts": [ { - "id" : "moiqjbe6", - "identifiers" : [ + "id": "moiqjbe6", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ZvMlY5yFST", - "type" : "Identifier" + "value": "ZvMlY5yFST", + "type": "Identifier" } ], - "label" : "G99aHcLRRBkyn24", - "type" : "Genre" + "label": "G99aHcLRRBkyn24", + "type": "Genre" }, { - "id" : "4hzy1cko", - "identifiers" : [ + "id": "4hzy1cko", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Lu2Xsatm0d", - "type" : "Identifier" + "value": "Lu2Xsatm0d", + "type": "Identifier" } ], - "label" : "WGXrGHlOd9kGPDW", - "type" : "Concept" + "label": "WGXrGHlOd9kGPDW", + "type": "Concept" }, { - "id" : "l6xajdgf", - "identifiers" : [ + "id": "l6xajdgf", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "f8JXFRL51H", - "type" : "Identifier" + "value": "f8JXFRL51H", + "type": "Identifier" } ], - "label" : "Zw7o2IL5cpTq2sz", - "type" : "Concept" + "label": "Zw7o2IL5cpTq2sz", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "aiqMvPe7X4", - "concepts" : [ + "label": "aiqMvPe7X4", + "concepts": [ { - "id" : "srn7yleu", - "identifiers" : [ + "id": "srn7yleu", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "97NLnSGT3O", - "type" : "Identifier" + "value": "97NLnSGT3O", + "type": "Identifier" } ], - "label" : "JLAgnoMEDJADyhg", - "type" : "Genre" + "label": "JLAgnoMEDJADyhg", + "type": "Genre" }, { - "id" : "oiribbou", - "identifiers" : [ + "id": "oiribbou", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "PAydChzshi", - "type" : "Identifier" + "value": "PAydChzshi", + "type": "Identifier" } ], - "label" : "DMpITHk4Fal6yyc", - "type" : "Concept" + "label": "DMpITHk4Fal6yyc", + "type": "Concept" }, { - "id" : "6cux209o", - "identifiers" : [ + "id": "6cux209o", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Pv8CsB8YxC", - "type" : "Identifier" + "value": "Pv8CsB8YxC", + "type": "Identifier" } ], - "label" : "7GkIFx8vXQyPLHO", - "type" : "Concept" + "label": "7GkIFx8vXQyPLHO", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ { - "id" : "sr0le4q0", - "identifiers" : [ + "id": "sr0le4q0", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "HYZ1N6BwQR", - "type" : "Identifier" + "value": "HYZ1N6BwQR", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/6Hv.jpg/info.json", - "credit" : "Credit line: RuVcAaaC", - "linkText" : "Link text: 11Rp8W", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/6Hv.jpg/info.json", + "credit": "Credit line: RuVcAaaC", + "linkText": "Link text: 11Rp8W", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "id" : "1wiqu97x", - "identifiers" : [ + "id": "1wiqu97x", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "fYVwu7Y7Y7", - "type" : "Identifier" + "value": "fYVwu7Y7Y7", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/K6C.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/K6C.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Up2.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Up2.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ { - "enumeration" : [ + "enumeration": [ "1BxLTcV6Wb", "WqoNZK", "xU3ERjrH", @@ -328,11 +328,11 @@ "FZmdTEa6", "UlrveN" ], - "type" : "Holdings" + "type": "Holdings" }, { - "note" : "idk7LBY", - "enumeration" : [ + "note": "idk7LBY", + "enumeration": [ "G0xMucB", "DkJGLGn", "8mfcQf", @@ -343,10 +343,10 @@ "7FN4wzU", "mSjqoeX" ], - "type" : "Holdings" + "type": "Holdings" }, { - "enumeration" : [ + "enumeration": [ "37zKdSgd", "TKdzCFovRO", "4WLHpAvI", @@ -354,188 +354,188 @@ "k4GLtR", "vuraPvkrZ" ], - "type" : "Holdings" + "type": "Holdings" } ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "u9wn3b70uQnR7JVa4h6zo4kiw", - "places" : [ + "label": "u9wn3b70uQnR7JVa4h6zo4kiw", + "places": [ { - "label" : "lz0oyrQVeB", - "type" : "Place" + "label": "lz0oyrQVeB", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "Y8dO1DZyoO", - "type" : "Person" + "label": "Y8dO1DZyoO", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "9NU3A", - "type" : "Period" + "label": "9NU3A", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" }, { - "label" : "o80nLAWSy9B3e17RLNSLFMReQ", - "places" : [ + "label": "o80nLAWSy9B3e17RLNSLFMReQ", + "places": [ { - "label" : "prYosMnVGM", - "type" : "Place" + "label": "prYosMnVGM", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "JB4CuJFro7", - "type" : "Person" + "label": "JB4CuJFro7", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "SCKOJ", - "type" : "Period" + "label": "SCKOJ", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ { - "id" : "LAJ", - "label" : "BGyGwVoRP", - "type" : "Language" + "id": "LAJ", + "label": "BGyGwVoRP", + "type": "Language" }, { - "id" : "6Il", - "label" : "5rHofWvU", - "type" : "Language" + "id": "6Il", + "label": "5rHofWvU", + "type": "Language" }, { - "id" : "NX2", - "label" : "BmQh5YW", - "type" : "Language" + "id": "NX2", + "label": "BmQh5YW", + "type": "Language" } ], - "notes" : [ + "notes": [ { - "contents" : [ + "contents": [ "PxyMQW" ], - "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", - "type" : "NoteType" + "noteType": { + "id": "location-of-duplicates", + "label": "Location of duplicates", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "lsrFBR8QS", "soceYh" ], - "noteType" : { - "id" : "funding-info", - "label" : "Funding information", - "type" : "NoteType" + "noteType": { + "id": "funding-info", + "label": "Funding information", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "BD4V4eC" ], - "noteType" : { - "id" : "general-note", - "label" : "Notes", - "type" : "NoteType" + "noteType": { + "id": "general-note", + "label": "Notes", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" } ], - "formerFrequency" : [ + "formerFrequency": [ "Published in 2001", "Published in 2002" ], - "designation" : [ + "designation": [ "Designation #1", "Designation #2", "Designation #3" ], - "images" : [ + "images": [ { - "id" : "9shcs9eq", - "type" : "Image" + "id": "9shcs9eq", + "type": "Image" }, { - "id" : "ogxkz2rm", - "type" : "Image" + "id": "ogxkz2rm", + "type": "Image" } ], - "parts" : [ + "parts": [ { - "id" : "maixrifi", - "title" : "title-3dXkoMXh3J", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "maixrifi", + "title": "title-3dXkoMXh3J", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "partOf" : [ + "partOf": [ { - "id" : "epka3wv3", - "title" : "title-tkdF7IF8nj", - "partOf" : [ + "id": "epka3wv3", + "title": "title-tkdF7IF8nj", + "partOf": [ { - "id" : "wa2m1xn6", - "title" : "title-4ssR420Vc5", - "totalParts" : 1, - "totalDescendentParts" : 5, - "type" : "Work" + "id": "wa2m1xn6", + "title": "title-4ssR420Vc5", + "totalParts": 1, + "totalDescendentParts": 5, + "type": "Work" } ], - "totalParts" : 3, - "totalDescendentParts" : 4, - "type" : "Work" + "totalParts": 3, + "totalDescendentParts": 4, + "type": "Work" } ], - "precededBy" : [ + "precededBy": [ { - "id" : "5xcjfcic", - "title" : "title-GMGKNlQnlw", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "5xcjfcic", + "title": "title-GMGKNlQnlw", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "succeededBy" : [ + "succeededBy": [ { - "id" : "i3vagkxa", - "title" : "title-eG0HzUX6yZ", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "i3vagkxa", + "title": "title-eG0HzUX6yZ", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-RLIsn6KqXf", "person-MBn6NMM" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "G99aHcLRRBkyn24", "WGXrGHlOd9kGPDW", "Zw7o2IL5cpTq2sz", @@ -543,48 +543,48 @@ "DMpITHk4Fal6yyc", "7GkIFx8vXQyPLHO" ], - "id" : "dhzcyeul", - "sourceIdentifier.value" : "LMVvWxgXRS", - "identifiers.value" : [ + "id": "dhzcyeul", + "sourceIdentifier.value": "LMVvWxgXRS", + "identifiers.value": [ "LMVvWxgXRS", "mD7jxioppl" ], - "images.id" : [ + "images.id": [ "9shcs9eq", "ogxkz2rm" ], - "images.identifiers.value" : [ + "images.identifiers.value": [ "CqOHUtD46Q", "RLuAZLda0D" ], - "items.id" : [ + "items.id": [ "sr0le4q0", "1wiqu97x" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "HYZ1N6BwQR", "fYVwu7Y7Y7" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "BGyGwVoRP", "5rHofWvU", "BmQh5YW" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ "PxyMQW", "lsrFBR8QS", "BD4V4eC", "soceYh" ], - "partOf.title" : [ + "partOf.title": [ "title-4ssR420Vc5", "title-tkdF7IF8nj" ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "lz0oyrQVeB", "Y8dO1DZyoO", "9NU3A", @@ -592,8 +592,8 @@ "JB4CuJFro7", "SCKOJ" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "0vPSF4EIy1m22EM", "kmWOjlKvfRGKp22", "pTPNg1Fb7hLZCWP", @@ -601,111 +601,111 @@ "gqY0L1ZF1PYZIWO", "P5xioqrw7OhiAUB" ], - "title" : "A work with all the include-able fields" + "title": "A work with all the include-able fields" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"gzynPVyy1B\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"aiqMvPe7X4\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"RbppKZMbAm\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"2ToHCa1Sqa\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ "{\"id\":\"LAJ\",\"label\":\"BGyGwVoRP\",\"type\":\"Language\"}", "{\"id\":\"6Il\",\"label\":\"5rHofWvU\",\"type\":\"Language\"}", "{\"id\":\"NX2\",\"label\":\"BmQh5YW\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"person-RLIsn6KqXf\",\"type\":\"Person\"}", "{\"label\":\"person-MBn6NMM\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "LAJ", "6Il", "NX2" ], - "genres.label" : [ + "genres.label": [ "gzynPVyy1B", "aiqMvPe7X4" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "moiqjbe6", "srn7yleu" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "ZvMlY5yFST", "97NLnSGT3O" ], - "subjects.label" : [ + "subjects.label": [ "RbppKZMbAm", "2ToHCa1Sqa" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-RLIsn6KqXf", "person-MBn6NMM" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "LMVvWxgXRS", "mD7jxioppl" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by", "cc-by", "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "sr0le4q0", "1wiqu97x" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "HYZ1N6BwQR", "fYVwu7Y7Y7" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ "wa2m1xn6", "epka3wv3" ], - "partOf.title" : [ + "partOf.title": [ "title-4ssR420Vc5", "title-tkdF7IF8nj" ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/work.visible.everything.2.json b/common/search/src/test/resources/test_documents/work.visible.everything.2.json index cbf8f5c44..84d2f6ada 100644 --- a/common/search/src/test/resources/test_documents/work.visible.everything.2.json +++ b/common/search/src/test/resources/test_documents/work.visible.everything.2.json @@ -1,325 +1,325 @@ { - "description" : "a list of work with all the include-able fields", - "createdAt" : "2024-11-13T08:43:26.428912Z", - "id" : "kspmagtl", - "document" : { - "debug" : { - "source" : { - "id" : "kspmagtl", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a list of work with all the include-able fields", + "createdAt": "2024-11-13T08:43:26.428912Z", + "id": "kspmagtl", + "document": { + "debug": { + "source": { + "id": "kspmagtl", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "bWRaGNi2Hd" + "ontologyType": "Work", + "value": "bWRaGNi2Hd" }, - "version" : 63, - "modifiedTime" : "2040-10-31T18:04:56Z" + "version": 63, + "modifiedTime": "2040-10-31T18:04:56Z" }, - "mergedTime" : "2040-10-31T18:04:56Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2040-10-31T18:04:56Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "kspmagtl", - "title" : "A work with all the include-able fields", - "alternativeTitles" : [ + "display": { + "id": "kspmagtl", + "title": "A work with all the include-able fields", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "person-h9jhXW", - "type" : "Person" + "agent": { + "label": "person-h9jhXW", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "person-QdWhUu", - "type" : "Person" + "agent": { + "label": "person-QdWhUu", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "bWRaGNi2Hd", - "type" : "Identifier" + "value": "bWRaGNi2Hd", + "type": "Identifier" }, { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "Hq3k05Fqag", - "type" : "Identifier" + "value": "Hq3k05Fqag", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "Uauios0IzD", - "concepts" : [ + "label": "Uauios0IzD", + "concepts": [ { - "label" : "AQA5geMZT0FFS0z", - "type" : "Concept" + "label": "AQA5geMZT0FFS0z", + "type": "Concept" }, { - "label" : "AAZGNVldxfQFhVc", - "type" : "Concept" + "label": "AAZGNVldxfQFhVc", + "type": "Concept" }, { - "label" : "tBFwsNPAX3Wg9bz", - "type" : "Concept" + "label": "tBFwsNPAX3Wg9bz", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "label" : "6n2QtjPUbf", - "concepts" : [ + "label": "6n2QtjPUbf", + "concepts": [ { - "label" : "ZXARrSCGUFES8H2", - "type" : "Concept" + "label": "ZXARrSCGUFES8H2", + "type": "Concept" }, { - "label" : "bLQeClXtepg6BQO", - "type" : "Concept" + "label": "bLQeClXtepg6BQO", + "type": "Concept" }, { - "label" : "O1Lux1bNFDaOKTs", - "type" : "Concept" + "label": "O1Lux1bNFDaOKTs", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ { - "label" : "DKbwserVib", - "concepts" : [ + "label": "DKbwserVib", + "concepts": [ { - "id" : "co3t5a2c", - "identifiers" : [ + "id": "co3t5a2c", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "KLw3A3d2Sg", - "type" : "Identifier" + "value": "KLw3A3d2Sg", + "type": "Identifier" } ], - "label" : "tekEl0aPDS91lOa", - "type" : "Genre" + "label": "tekEl0aPDS91lOa", + "type": "Genre" }, { - "id" : "hovzih7d", - "identifiers" : [ + "id": "hovzih7d", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "9vtTXh5eC6", - "type" : "Identifier" + "value": "9vtTXh5eC6", + "type": "Identifier" } ], - "label" : "uUdynba2c8ykXyK", - "type" : "Concept" + "label": "uUdynba2c8ykXyK", + "type": "Concept" }, { - "id" : "hhpppssc", - "identifiers" : [ + "id": "hhpppssc", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "Jxv9xrQ6Lp", - "type" : "Identifier" + "value": "Jxv9xrQ6Lp", + "type": "Identifier" } ], - "label" : "oBEHnJZViPXHQHS", - "type" : "Concept" + "label": "oBEHnJZViPXHQHS", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "6uOUAue10N", - "concepts" : [ + "label": "6uOUAue10N", + "concepts": [ { - "id" : "vp7gvran", - "identifiers" : [ + "id": "vp7gvran", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "okW4LcPBC1", - "type" : "Identifier" + "value": "okW4LcPBC1", + "type": "Identifier" } ], - "label" : "RE2canCURCTNo7c", - "type" : "Genre" + "label": "RE2canCURCTNo7c", + "type": "Genre" }, { - "id" : "sheurc7f", - "identifiers" : [ + "id": "sheurc7f", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "Qgjny3fstP", - "type" : "Identifier" + "value": "Qgjny3fstP", + "type": "Identifier" } ], - "label" : "yjsJNyP6az68MBx", - "type" : "Concept" + "label": "yjsJNyP6az68MBx", + "type": "Concept" }, { - "id" : "heqgsnmx", - "identifiers" : [ + "id": "heqgsnmx", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "mrWJ5F5H7y", - "type" : "Identifier" + "value": "mrWJ5F5H7y", + "type": "Identifier" } ], - "label" : "vD5wGC18lSi8qtT", - "type" : "Concept" + "label": "vD5wGC18lSi8qtT", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ { - "id" : "9indplmm", - "identifiers" : [ + "id": "9indplmm", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "KUpoh3lSc6", - "type" : "Identifier" + "value": "KUpoh3lSc6", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Xmb.jpg/info.json", - "linkText" : "Link text: xc5d7pC4", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Xmb.jpg/info.json", + "linkText": "Link text: xc5d7pC4", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "id" : "b7xfovxp", - "identifiers" : [ + "id": "b7xfovxp", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "da6nNHPpdW", - "type" : "Identifier" + "value": "da6nNHPpdW", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/brm.jpg/info.json", - "linkText" : "Link text: dfIBgxk", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/brm.jpg/info.json", + "linkText": "Link text: dfIBgxk", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/4jA.jpg/info.json", - "credit" : "Credit line: RMKkkMWH2", - "linkText" : "Link text: lrGWJtd", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/4jA.jpg/info.json", + "credit": "Credit line: RMKkkMWH2", + "linkText": "Link text: lrGWJtd", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ { - "note" : "MVhaLIuxnE", - "enumeration" : [ + "note": "MVhaLIuxnE", + "enumeration": [ "ieDDRLFu", "yZOrDf50Hq", "LqcxXMND", @@ -330,19 +330,19 @@ "EN5U1Lj", "3YYXiwayO" ], - "type" : "Holdings" + "type": "Holdings" }, { - "note" : "qavjz8rXQ", - "enumeration" : [ + "note": "qavjz8rXQ", + "enumeration": [ "ESu6j0cajz", "IwEsWu", "kQm30wp" ], - "type" : "Holdings" + "type": "Holdings" }, { - "enumeration" : [ + "enumeration": [ "8y3h9IEu", "L1QHuLHN", "3UU0BuJ", @@ -352,188 +352,188 @@ "u9fWqc", "mcETEt4h" ], - "type" : "Holdings" + "type": "Holdings" } ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "4DIByCcllibcScRo1F5OxZThZ", - "places" : [ + "label": "4DIByCcllibcScRo1F5OxZThZ", + "places": [ { - "label" : "Zrd6sRqVgE", - "type" : "Place" + "label": "Zrd6sRqVgE", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "XdJnvNoiuf", - "type" : "Person" + "label": "XdJnvNoiuf", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "cLjO4", - "type" : "Period" + "label": "cLjO4", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" }, { - "label" : "DmwtJxhAIELEnBrWrk5FvZCEK", - "places" : [ + "label": "DmwtJxhAIELEnBrWrk5FvZCEK", + "places": [ { - "label" : "kIZfsAkPwu", - "type" : "Place" + "label": "kIZfsAkPwu", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "nmldw7s12i", - "type" : "Person" + "label": "nmldw7s12i", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "KWNuy", - "type" : "Period" + "label": "KWNuy", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ { - "id" : "BRh", - "label" : "E6F0oBW", - "type" : "Language" + "id": "BRh", + "label": "E6F0oBW", + "type": "Language" }, { - "id" : "52j", - "label" : "TlqNXqK", - "type" : "Language" + "id": "52j", + "label": "TlqNXqK", + "type": "Language" }, { - "id" : "K4Q", - "label" : "hldbPB44o8", - "type" : "Language" + "id": "K4Q", + "label": "hldbPB44o8", + "type": "Language" } ], - "notes" : [ + "notes": [ { - "contents" : [ + "contents": [ "1009JS", "Gxz9bfcN5B" ], - "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", - "type" : "NoteType" + "noteType": { + "id": "location-of-duplicates", + "label": "Location of duplicates", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "bf5YSWx" ], - "noteType" : { - "id" : "funding-info", - "label" : "Funding information", - "type" : "NoteType" + "noteType": { + "id": "funding-info", + "label": "Funding information", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" }, { - "contents" : [ + "contents": [ "KatsdMX" ], - "noteType" : { - "id" : "general-note", - "label" : "Notes", - "type" : "NoteType" + "noteType": { + "id": "general-note", + "label": "Notes", + "type": "NoteType" }, - "type" : "Note" + "type": "Note" } ], - "formerFrequency" : [ + "formerFrequency": [ "Published in 2001", "Published in 2002" ], - "designation" : [ + "designation": [ "Designation #1", "Designation #2", "Designation #3" ], - "images" : [ + "images": [ { - "id" : "6fuh8tqe", - "type" : "Image" + "id": "6fuh8tqe", + "type": "Image" }, { - "id" : "ej3tqgsk", - "type" : "Image" + "id": "ej3tqgsk", + "type": "Image" } ], - "parts" : [ + "parts": [ { - "id" : "srubvzw4", - "title" : "title-QmyoWabAgX", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "srubvzw4", + "title": "title-QmyoWabAgX", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "partOf" : [ + "partOf": [ { - "id" : "vjvef8bd", - "title" : "title-e1K5osW8hK", - "partOf" : [ + "id": "vjvef8bd", + "title": "title-e1K5osW8hK", + "partOf": [ { - "id" : "ajgcgp8j", - "title" : "title-ZZ4OU9Z1es", - "totalParts" : 1, - "totalDescendentParts" : 5, - "type" : "Work" + "id": "ajgcgp8j", + "title": "title-ZZ4OU9Z1es", + "totalParts": 1, + "totalDescendentParts": 5, + "type": "Work" } ], - "totalParts" : 3, - "totalDescendentParts" : 4, - "type" : "Work" + "totalParts": 3, + "totalDescendentParts": 4, + "type": "Work" } ], - "precededBy" : [ + "precededBy": [ { - "id" : "t4fspoh5", - "title" : "title-lAUKxcPeEW", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "t4fspoh5", + "title": "title-lAUKxcPeEW", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "succeededBy" : [ + "succeededBy": [ { - "id" : "fdoa7rpy", - "title" : "title-iDfifsBwXA", - "totalParts" : 0, - "totalDescendentParts" : 0, - "type" : "Work" + "id": "fdoa7rpy", + "title": "title-iDfifsBwXA", + "totalParts": 0, + "totalDescendentParts": 0, + "type": "Work" } ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-h9jhXW", "person-QdWhUu" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "tekEl0aPDS91lOa", "uUdynba2c8ykXyK", "oBEHnJZViPXHQHS", @@ -541,48 +541,48 @@ "yjsJNyP6az68MBx", "vD5wGC18lSi8qtT" ], - "id" : "kspmagtl", - "sourceIdentifier.value" : "bWRaGNi2Hd", - "identifiers.value" : [ + "id": "kspmagtl", + "sourceIdentifier.value": "bWRaGNi2Hd", + "identifiers.value": [ "bWRaGNi2Hd", "Hq3k05Fqag" ], - "images.id" : [ + "images.id": [ "6fuh8tqe", "ej3tqgsk" ], - "images.identifiers.value" : [ + "images.identifiers.value": [ "1RAcTOrmRe", "AsAu4Ye9KY" ], - "items.id" : [ + "items.id": [ "9indplmm", "b7xfovxp" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "KUpoh3lSc6", "da6nNHPpdW" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "E6F0oBW", "TlqNXqK", "hldbPB44o8" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ "1009JS", "bf5YSWx", "KatsdMX", "Gxz9bfcN5B" ], - "partOf.title" : [ + "partOf.title": [ "title-ZZ4OU9Z1es", "title-e1K5osW8hK" ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "Zrd6sRqVgE", "XdJnvNoiuf", "cLjO4", @@ -590,8 +590,8 @@ "nmldw7s12i", "KWNuy" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "AQA5geMZT0FFS0z", "AAZGNVldxfQFhVc", "tBFwsNPAX3Wg9bz", @@ -599,111 +599,111 @@ "bLQeClXtepg6BQO", "O1Lux1bNFDaOKTs" ], - "title" : "A work with all the include-able fields" + "title": "A work with all the include-able fields" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"DKbwserVib\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"6uOUAue10N\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"Uauios0IzD\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"6n2QtjPUbf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ "{\"id\":\"BRh\",\"label\":\"E6F0oBW\",\"type\":\"Language\"}", "{\"id\":\"52j\",\"label\":\"TlqNXqK\",\"type\":\"Language\"}", "{\"id\":\"K4Q\",\"label\":\"hldbPB44o8\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"person-h9jhXW\",\"type\":\"Person\"}", "{\"label\":\"person-QdWhUu\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "BRh", "52j", "K4Q" ], - "genres.label" : [ + "genres.label": [ "DKbwserVib", "6uOUAue10N" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "co3t5a2c", "vp7gvran" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "KLw3A3d2Sg", "okW4LcPBC1" ], - "subjects.label" : [ + "subjects.label": [ "Uauios0IzD", "6n2QtjPUbf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "person-h9jhXW", "person-QdWhUu" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "bWRaGNi2Hd", "Hq3k05Fqag" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by", "cc-by", "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "9indplmm", "b7xfovxp" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "KUpoh3lSc6", "da6nNHPpdW" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation", "iiif-presentation", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ "ajgcgp8j", "vjvef8bd" ], - "partOf.title" : [ + "partOf.title": [ "title-ZZ4OU9Z1es", "title-e1K5osW8hK" ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json b/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json index b3972622c..e5ca4ab77 100644 --- a/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json +++ b/common/search/src/test/resources/test_documents/works.collection-path.NUFFINK.json @@ -1,182 +1,182 @@ { - "description" : "a work with a collection path", - "createdAt" : "2024-11-13T08:43:26.525864Z", - "id" : "xngls6zs", - "document" : { - "debug" : { - "source" : { - "id" : "xngls6zs", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "a work with a collection path", + "createdAt": "2024-11-13T08:43:26.525864Z", + "id": "xngls6zs", + "document": { + "debug": { + "source": { + "id": "xngls6zs", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "cZctCb44q4" + "ontologyType": "Work", + "value": "cZctCb44q4" }, - "version" : 33, - "modifiedTime" : "2068-10-10T17:34:06Z" + "version": 33, + "modifiedTime": "2068-10-10T17:34:06Z" }, - "mergedTime" : "2068-10-10T17:34:06Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2068-10-10T17:34:06Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "xngls6zs", - "title" : "title-b24fkr6m6L", - "alternativeTitles" : [ + "display": { + "id": "xngls6zs", + "title": "title-b24fkr6m6L", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "cZctCb44q4", - "type" : "Identifier" + "value": "cZctCb44q4", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : "NUF/FINK", - "collectionPath.path" : "NUFFINK", - "alternativeTitles" : [ + "query": { + "collectionPath.label": "NUF/FINK", + "collectionPath.path": "NUFFINK", + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "xngls6zs", - "sourceIdentifier.value" : "cZctCb44q4", - "identifiers.value" : [ + "id": "xngls6zs", + "sourceIdentifier.value": "cZctCb44q4", + "identifiers.value": [ "cZctCb44q4" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-b24fkr6m6L" + "title": "title-b24fkr6m6L" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "cZctCb44q4" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json b/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json index 9d291519d..34426efb5 100644 --- a/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json +++ b/common/search/src/test/resources/test_documents/works.collection-path.PPCRI.json @@ -1,182 +1,182 @@ { - "description" : "a work with a collection path", - "createdAt" : "2024-11-13T08:43:26.524477Z", - "id" : "ynrhjtvf", - "document" : { - "debug" : { - "source" : { - "id" : "ynrhjtvf", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "a work with a collection path", + "createdAt": "2024-11-13T08:43:26.524477Z", + "id": "ynrhjtvf", + "document": { + "debug": { + "source": { + "id": "ynrhjtvf", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "883LiigJ4Q" + "ontologyType": "Work", + "value": "883LiigJ4Q" }, - "version" : 72, - "modifiedTime" : "2059-06-02T08:31:27Z" + "version": 72, + "modifiedTime": "2059-06-02T08:31:27Z" }, - "mergedTime" : "2059-06-02T08:31:27Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2059-06-02T08:31:27Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ynrhjtvf", - "title" : "title-rHY8gLbwdH", - "alternativeTitles" : [ + "display": { + "id": "ynrhjtvf", + "title": "title-rHY8gLbwdH", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "883LiigJ4Q", - "type" : "Identifier" + "value": "883LiigJ4Q", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : "PP/CRI", - "collectionPath.path" : "PPCRI", - "alternativeTitles" : [ + "query": { + "collectionPath.label": "PP/CRI", + "collectionPath.path": "PPCRI", + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ynrhjtvf", - "sourceIdentifier.value" : "883LiigJ4Q", - "identifiers.value" : [ + "id": "ynrhjtvf", + "sourceIdentifier.value": "883LiigJ4Q", + "identifiers.value": [ "883LiigJ4Q" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-rHY8gLbwdH" + "title": "title-rHY8gLbwdH" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "883LiigJ4Q" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.contributor.0.json b/common/search/src/test/resources/test_documents/works.contributor.0.json index ab360c191..b620babb6 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.0.json +++ b/common/search/src/test/resources/test_documents/works.contributor.0.json @@ -1,195 +1,195 @@ { - "description" : "works with different contributor", - "createdAt" : "2024-11-13T08:43:26.504894Z", - "id" : "5qgfzto1", - "document" : { - "debug" : { - "source" : { - "id" : "5qgfzto1", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with different contributor", + "createdAt": "2024-11-13T08:43:26.504894Z", + "id": "5qgfzto1", + "document": { + "debug": { + "source": { + "id": "5qgfzto1", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "x4HrV5FXFI" + "ontologyType": "Work", + "value": "x4HrV5FXFI" }, - "version" : 28, - "modifiedTime" : "1982-10-06T05:52:54Z" + "version": 28, + "modifiedTime": "1982-10-06T05:52:54Z" }, - "mergedTime" : "1982-10-06T05:52:54Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1982-10-06T05:52:54Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "5qgfzto1", - "title" : "title-LlO6qTl7yk", - "alternativeTitles" : [ + "display": { + "id": "5qgfzto1", + "title": "title-LlO6qTl7yk", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "47", - "type" : "Agent" + "agent": { + "label": "47", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "x4HrV5FXFI", - "type" : "Identifier" + "value": "x4HrV5FXFI", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "47" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5qgfzto1", - "sourceIdentifier.value" : "x4HrV5FXFI", - "identifiers.value" : [ + "id": "5qgfzto1", + "sourceIdentifier.value": "x4HrV5FXFI", + "identifiers.value": [ "x4HrV5FXFI" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-LlO6qTl7yk" + "title": "title-LlO6qTl7yk" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"47\",\"type\":\"Agent\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "47" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "x4HrV5FXFI" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.contributor.1.json b/common/search/src/test/resources/test_documents/works.contributor.1.json index 2688e57a4..e7a09a975 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.1.json +++ b/common/search/src/test/resources/test_documents/works.contributor.1.json @@ -1,195 +1,195 @@ { - "description" : "works with different contributor", - "createdAt" : "2024-11-13T08:43:26.505699Z", - "id" : "a8uyvixy", - "document" : { - "debug" : { - "source" : { - "id" : "a8uyvixy", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with different contributor", + "createdAt": "2024-11-13T08:43:26.505699Z", + "id": "a8uyvixy", + "document": { + "debug": { + "source": { + "id": "a8uyvixy", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "HfSgzBeJhd" + "ontologyType": "Work", + "value": "HfSgzBeJhd" }, - "version" : 34, - "modifiedTime" : "1959-06-29T05:37:32Z" + "version": 34, + "modifiedTime": "1959-06-29T05:37:32Z" }, - "mergedTime" : "1959-06-29T05:37:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1959-06-29T05:37:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "a8uyvixy", - "title" : "title-RHMdw5QCHJ", - "alternativeTitles" : [ + "display": { + "id": "a8uyvixy", + "title": "title-RHMdw5QCHJ", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "47", - "type" : "Agent" + "agent": { + "label": "47", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "HfSgzBeJhd", - "type" : "Identifier" + "value": "HfSgzBeJhd", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "47" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "a8uyvixy", - "sourceIdentifier.value" : "HfSgzBeJhd", - "identifiers.value" : [ + "id": "a8uyvixy", + "sourceIdentifier.value": "HfSgzBeJhd", + "identifiers.value": [ "HfSgzBeJhd" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-RHMdw5QCHJ" + "title": "title-RHMdw5QCHJ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"47\",\"type\":\"Agent\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "47" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "HfSgzBeJhd" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.contributor.2.json b/common/search/src/test/resources/test_documents/works.contributor.2.json index 94c306395..e7bea8610 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.2.json +++ b/common/search/src/test/resources/test_documents/works.contributor.2.json @@ -1,208 +1,208 @@ { - "description" : "works with different contributor", - "createdAt" : "2024-11-13T08:43:26.511704Z", - "id" : "toypx23i", - "document" : { - "debug" : { - "source" : { - "id" : "toypx23i", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with different contributor", + "createdAt": "2024-11-13T08:43:26.511704Z", + "id": "toypx23i", + "document": { + "debug": { + "source": { + "id": "toypx23i", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "MhQvVMFf3I" + "ontologyType": "Work", + "value": "MhQvVMFf3I" }, - "version" : 88, - "modifiedTime" : "1988-05-28T08:48:11Z" + "version": 88, + "modifiedTime": "1988-05-28T08:48:11Z" }, - "mergedTime" : "1988-05-28T08:48:11Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1988-05-28T08:48:11Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "toypx23i", - "title" : "title-j3EHn02vGA", - "alternativeTitles" : [ + "display": { + "id": "toypx23i", + "title": "title-j3EHn02vGA", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "007", - "type" : "Agent" + "agent": { + "label": "007", + "type": "Agent" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "MI5", - "type" : "Organisation" + "agent": { + "label": "MI5", + "type": "Organisation" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "MhQvVMFf3I", - "type" : "Identifier" + "value": "MhQvVMFf3I", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "007", "MI5" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "toypx23i", - "sourceIdentifier.value" : "MhQvVMFf3I", - "identifiers.value" : [ + "id": "toypx23i", + "sourceIdentifier.value": "MhQvVMFf3I", + "identifiers.value": [ "MhQvVMFf3I" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-j3EHn02vGA" + "title": "title-j3EHn02vGA" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"007\",\"type\":\"Agent\"}", "{\"label\":\"MI5\",\"type\":\"Organisation\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "007", "MI5" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "MhQvVMFf3I" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.contributor.3.json b/common/search/src/test/resources/test_documents/works.contributor.3.json index 8ae1a03ac..515aeb7b7 100644 --- a/common/search/src/test/resources/test_documents/works.contributor.3.json +++ b/common/search/src/test/resources/test_documents/works.contributor.3.json @@ -1,208 +1,208 @@ { - "description" : "works with different contributor", - "createdAt" : "2024-11-13T08:43:26.512223Z", - "id" : "mudchggm", - "document" : { - "debug" : { - "source" : { - "id" : "mudchggm", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with different contributor", + "createdAt": "2024-11-13T08:43:26.512223Z", + "id": "mudchggm", + "document": { + "debug": { + "source": { + "id": "mudchggm", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "XCPwwavyjz" + "ontologyType": "Work", + "value": "XCPwwavyjz" }, - "version" : 78, - "modifiedTime" : "2002-10-09T11:02:18Z" + "version": 78, + "modifiedTime": "2002-10-09T11:02:18Z" }, - "mergedTime" : "2002-10-09T11:02:18Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2002-10-09T11:02:18Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "mudchggm", - "title" : "title-UfT3H8XnpE", - "alternativeTitles" : [ + "display": { + "id": "mudchggm", + "title": "title-UfT3H8XnpE", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "MI5", - "type" : "Organisation" + "agent": { + "label": "MI5", + "type": "Organisation" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "GCHQ", - "type" : "Organisation" + "agent": { + "label": "GCHQ", + "type": "Organisation" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "XCPwwavyjz", - "type" : "Identifier" + "value": "XCPwwavyjz", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "MI5", "GCHQ" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mudchggm", - "sourceIdentifier.value" : "XCPwwavyjz", - "identifiers.value" : [ + "id": "mudchggm", + "sourceIdentifier.value": "XCPwwavyjz", + "identifiers.value": [ "XCPwwavyjz" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-UfT3H8XnpE" + "title": "title-UfT3H8XnpE" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"MI5\",\"type\":\"Organisation\"}", "{\"label\":\"GCHQ\",\"type\":\"Organisation\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "MI5", "GCHQ" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "XCPwwavyjz" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.deleted.0.json b/common/search/src/test/resources/test_documents/works.deleted.0.json index 974b70249..0b5f0b9b7 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.0.json +++ b/common/search/src/test/resources/test_documents/works.deleted.0.json @@ -1,30 +1,30 @@ { - "description" : "an arbitrary list of deleted works", - "createdAt" : "2024-05-15T08:17:25.230175Z", - "id" : "pnwuzuig", - "document" : { - "debug" : { - "source" : { - "id" : "pnwuzuig", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "an arbitrary list of deleted works", + "createdAt": "2024-05-15T08:17:25.230175Z", + "id": "pnwuzuig", + "document": { + "debug": { + "source": { + "id": "pnwuzuig", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "h0Og1ZYVOG" + "ontologyType": "Work", + "value": "h0Og1ZYVOG" }, - "version" : 15, - "modifiedTime" : "1980-07-10T02:15:52Z" + "version": 15, + "modifiedTime": "1980-07-10T02:15:52Z" }, - "mergedTime" : "1980-07-10T02:15:52Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "deletedReason" : { - "info" : "tests", - "type" : "DeletedFromSource" + "mergedTime": "1980-07-10T02:15:52Z", + "indexedTime": "2001-01-01T01:01:01Z", + "deletedReason": { + "info": "tests", + "type": "DeletedFromSource" }, - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Deleted" + "type": "Deleted" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.deleted.1.json b/common/search/src/test/resources/test_documents/works.deleted.1.json index c6206b8d7..d62718229 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.1.json +++ b/common/search/src/test/resources/test_documents/works.deleted.1.json @@ -1,30 +1,30 @@ { - "description" : "an arbitrary list of deleted works", - "createdAt" : "2024-05-15T08:17:25.230436Z", - "id" : "drwubxen", - "document" : { - "debug" : { - "source" : { - "id" : "drwubxen", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "an arbitrary list of deleted works", + "createdAt": "2024-05-15T08:17:25.230436Z", + "id": "drwubxen", + "document": { + "debug": { + "source": { + "id": "drwubxen", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "id6G7vla4o" + "ontologyType": "Work", + "value": "id6G7vla4o" }, - "version" : 29, - "modifiedTime" : "1966-04-26T05:44:05Z" + "version": 29, + "modifiedTime": "1966-04-26T05:44:05Z" }, - "mergedTime" : "1966-04-26T05:44:05Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "deletedReason" : { - "info" : "tests", - "type" : "DeletedFromSource" + "mergedTime": "1966-04-26T05:44:05Z", + "indexedTime": "2001-01-01T01:01:01Z", + "deletedReason": { + "info": "tests", + "type": "DeletedFromSource" }, - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Deleted" + "type": "Deleted" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.deleted.2.json b/common/search/src/test/resources/test_documents/works.deleted.2.json index 8e3dcd7c0..38053ec40 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.2.json +++ b/common/search/src/test/resources/test_documents/works.deleted.2.json @@ -1,30 +1,30 @@ { - "description" : "an arbitrary list of deleted works", - "createdAt" : "2024-02-16T15:36:44.111210Z", - "id" : "93ber84x", - "document" : { - "debug" : { - "source" : { - "id" : "93ber84x", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "an arbitrary list of deleted works", + "createdAt": "2024-02-16T15:36:44.111210Z", + "id": "93ber84x", + "document": { + "debug": { + "source": { + "id": "93ber84x", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "pvk4zvFJHh" + "ontologyType": "Work", + "value": "pvk4zvFJHh" }, - "version" : 33, - "modifiedTime" : "2034-04-23T21:47:19Z" + "version": 33, + "modifiedTime": "2034-04-23T21:47:19Z" }, - "mergedTime" : "2034-04-23T21:47:19Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "deletedReason" : { - "info" : "tests", - "type" : "DeletedFromSource" + "mergedTime": "2034-04-23T21:47:19Z", + "indexedTime": "2001-01-01T01:01:01Z", + "deletedReason": { + "info": "tests", + "type": "DeletedFromSource" }, - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Deleted" + "type": "Deleted" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.deleted.3.json b/common/search/src/test/resources/test_documents/works.deleted.3.json index 37433098f..3f056b951 100644 --- a/common/search/src/test/resources/test_documents/works.deleted.3.json +++ b/common/search/src/test/resources/test_documents/works.deleted.3.json @@ -1,30 +1,30 @@ { - "description" : "an arbitrary list of deleted works", - "createdAt" : "2024-02-16T15:36:44.111475Z", - "id" : "0tkkvzgo", - "document" : { - "debug" : { - "source" : { - "id" : "0tkkvzgo", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "an arbitrary list of deleted works", + "createdAt": "2024-02-16T15:36:44.111475Z", + "id": "0tkkvzgo", + "document": { + "debug": { + "source": { + "id": "0tkkvzgo", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "ROtwcbnYKN" + "ontologyType": "Work", + "value": "ROtwcbnYKN" }, - "version" : 97, - "modifiedTime" : "2009-09-05T08:49:35Z" + "version": 97, + "modifiedTime": "2009-09-05T08:49:35Z" }, - "mergedTime" : "2009-09-05T08:49:35Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "deletedReason" : { - "info" : "tests", - "type" : "DeletedFromSource" + "mergedTime": "2009-09-05T08:49:35Z", + "indexedTime": "2001-01-01T01:01:01Z", + "deletedReason": { + "info": "tests", + "type": "DeletedFromSource" }, - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Deleted" + "type": "Deleted" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.0.json b/common/search/src/test/resources/test_documents/works.every-format.0.json index f7f377d2f..02828380e 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.0.json +++ b/common/search/src/test/resources/test_documents/works.every-format.0.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.528971Z", - "id" : "w2ap82cs", - "document" : { - "debug" : { - "source" : { - "id" : "w2ap82cs", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.528971Z", + "id": "w2ap82cs", + "document": { + "debug": { + "source": { + "id": "w2ap82cs", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "UZlr85jkfd" + "ontologyType": "Work", + "value": "UZlr85jkfd" }, - "version" : 73, - "modifiedTime" : "1966-01-30T11:53:55Z" + "version": 73, + "modifiedTime": "1966-01-30T11:53:55Z" }, - "mergedTime" : "1966-01-30T11:53:55Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1966-01-30T11:53:55Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "w2ap82cs", - "title" : "title-fkE2zvA5MJ", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "w2ap82cs", + "title": "title-fkE2zvA5MJ", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "UZlr85jkfd", - "type" : "Identifier" + "value": "UZlr85jkfd", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "w2ap82cs", - "sourceIdentifier.value" : "UZlr85jkfd", - "identifiers.value" : [ + "id": "w2ap82cs", + "sourceIdentifier.value": "UZlr85jkfd", + "identifiers.value": [ "UZlr85jkfd" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-fkE2zvA5MJ" + "title": "title-fkE2zvA5MJ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "UZlr85jkfd" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.1.json b/common/search/src/test/resources/test_documents/works.every-format.1.json index 2b5ccfc4e..44610656e 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.1.json +++ b/common/search/src/test/resources/test_documents/works.every-format.1.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.529316Z", - "id" : "jminkez1", - "document" : { - "debug" : { - "source" : { - "id" : "jminkez1", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.529316Z", + "id": "jminkez1", + "document": { + "debug": { + "source": { + "id": "jminkez1", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "cxE29kiXIm" + "ontologyType": "Work", + "value": "cxE29kiXIm" }, - "version" : 78, - "modifiedTime" : "1999-04-12T11:49:15Z" + "version": 78, + "modifiedTime": "1999-04-12T11:49:15Z" }, - "mergedTime" : "1999-04-12T11:49:15Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1999-04-12T11:49:15Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "jminkez1", - "title" : "title-CI4wWGKP4h", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "q", - "label" : "Digital Images", - "type" : "Format" + "display": { + "id": "jminkez1", + "title": "title-CI4wWGKP4h", + "alternativeTitles": [ + ], + "workType": { + "id": "q", + "label": "Digital Images", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "cxE29kiXIm", - "type" : "Identifier" + "value": "cxE29kiXIm", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jminkez1", - "sourceIdentifier.value" : "cxE29kiXIm", - "identifiers.value" : [ + "id": "jminkez1", + "sourceIdentifier.value": "cxE29kiXIm", + "identifiers.value": [ "cxE29kiXIm" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-CI4wWGKP4h" + "title": "title-CI4wWGKP4h" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"q\",\"label\":\"Digital Images\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "q", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "q", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "cxE29kiXIm" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.10.json b/common/search/src/test/resources/test_documents/works.every-format.10.json index b2aa27024..4d5ffa305 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.10.json +++ b/common/search/src/test/resources/test_documents/works.every-format.10.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.532374Z", - "id" : "5lq8kfis", - "document" : { - "debug" : { - "source" : { - "id" : "5lq8kfis", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.532374Z", + "id": "5lq8kfis", + "document": { + "debug": { + "source": { + "id": "5lq8kfis", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "ajAY87vuuJ" + "ontologyType": "Work", + "value": "ajAY87vuuJ" }, - "version" : 22, - "modifiedTime" : "1971-04-04T14:11:16Z" + "version": 22, + "modifiedTime": "1971-04-04T14:11:16Z" }, - "mergedTime" : "1971-04-04T14:11:16Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-04-04T14:11:16Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "5lq8kfis", - "title" : "title-yrogDQ417u", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "5lq8kfis", + "title": "title-yrogDQ417u", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ajAY87vuuJ", - "type" : "Identifier" + "value": "ajAY87vuuJ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5lq8kfis", - "sourceIdentifier.value" : "ajAY87vuuJ", - "identifiers.value" : [ + "id": "5lq8kfis", + "sourceIdentifier.value": "ajAY87vuuJ", + "identifiers.value": [ "ajAY87vuuJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-yrogDQ417u" + "title": "title-yrogDQ417u" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ajAY87vuuJ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.11.json b/common/search/src/test/resources/test_documents/works.every-format.11.json index 25ac73b15..e4c4d287d 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.11.json +++ b/common/search/src/test/resources/test_documents/works.every-format.11.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.532927Z", - "id" : "kkzdnfal", - "document" : { - "debug" : { - "source" : { - "id" : "kkzdnfal", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.532927Z", + "id": "kkzdnfal", + "document": { + "debug": { + "source": { + "id": "kkzdnfal", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "J1fupAzsfb" + "ontologyType": "Work", + "value": "J1fupAzsfb" }, - "version" : 87, - "modifiedTime" : "2033-08-12T07:52:47Z" + "version": 87, + "modifiedTime": "2033-08-12T07:52:47Z" }, - "mergedTime" : "2033-08-12T07:52:47Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2033-08-12T07:52:47Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "kkzdnfal", - "title" : "title-wOjYum0Yf1", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "g", - "label" : "Videos", - "type" : "Format" + "display": { + "id": "kkzdnfal", + "title": "title-wOjYum0Yf1", + "alternativeTitles": [ + ], + "workType": { + "id": "g", + "label": "Videos", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "J1fupAzsfb", - "type" : "Identifier" + "value": "J1fupAzsfb", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "kkzdnfal", - "sourceIdentifier.value" : "J1fupAzsfb", - "identifiers.value" : [ + "id": "kkzdnfal", + "sourceIdentifier.value": "J1fupAzsfb", + "identifiers.value": [ "J1fupAzsfb" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-wOjYum0Yf1" + "title": "title-wOjYum0Yf1" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "g", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "g", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "J1fupAzsfb" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.12.json b/common/search/src/test/resources/test_documents/works.every-format.12.json index f9c8fa946..080be6282 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.12.json +++ b/common/search/src/test/resources/test_documents/works.every-format.12.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.533471Z", - "id" : "02pauy4p", - "document" : { - "debug" : { - "source" : { - "id" : "02pauy4p", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.533471Z", + "id": "02pauy4p", + "document": { + "debug": { + "source": { + "id": "02pauy4p", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "mZeIhkjzt3" + "ontologyType": "Work", + "value": "mZeIhkjzt3" }, - "version" : 65, - "modifiedTime" : "2046-09-07T08:09:38Z" + "version": 65, + "modifiedTime": "2046-09-07T08:09:38Z" }, - "mergedTime" : "2046-09-07T08:09:38Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2046-09-07T08:09:38Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "02pauy4p", - "title" : "title-8GcWiPpAX3", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "h", - "label" : "Archives and manuscripts", - "type" : "Format" + "display": { + "id": "02pauy4p", + "title": "title-8GcWiPpAX3", + "alternativeTitles": [ + ], + "workType": { + "id": "h", + "label": "Archives and manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "mZeIhkjzt3", - "type" : "Identifier" + "value": "mZeIhkjzt3", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "02pauy4p", - "sourceIdentifier.value" : "mZeIhkjzt3", - "identifiers.value" : [ + "id": "02pauy4p", + "sourceIdentifier.value": "mZeIhkjzt3", + "identifiers.value": [ "mZeIhkjzt3" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-8GcWiPpAX3" + "title": "title-8GcWiPpAX3" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"h\",\"label\":\"Archives and manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "h", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "h", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "mZeIhkjzt3" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.13.json b/common/search/src/test/resources/test_documents/works.every-format.13.json index f5249cff8..d136ec5fe 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.13.json +++ b/common/search/src/test/resources/test_documents/works.every-format.13.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.533855Z", - "id" : "83tyy1gh", - "document" : { - "debug" : { - "source" : { - "id" : "83tyy1gh", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.533855Z", + "id": "83tyy1gh", + "document": { + "debug": { + "source": { + "id": "83tyy1gh", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "qt38YgNxOY" + "ontologyType": "Work", + "value": "qt38YgNxOY" }, - "version" : 96, - "modifiedTime" : "1933-08-01T22:54:00Z" + "version": 96, + "modifiedTime": "1933-08-01T22:54:00Z" }, - "mergedTime" : "1933-08-01T22:54:00Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1933-08-01T22:54:00Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "83tyy1gh", - "title" : "title-sQ9rgmu63i", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "hdig", - "label" : "Born-digital archives", - "type" : "Format" + "display": { + "id": "83tyy1gh", + "title": "title-sQ9rgmu63i", + "alternativeTitles": [ + ], + "workType": { + "id": "hdig", + "label": "Born-digital archives", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "qt38YgNxOY", - "type" : "Identifier" + "value": "qt38YgNxOY", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "83tyy1gh", - "sourceIdentifier.value" : "qt38YgNxOY", - "identifiers.value" : [ + "id": "83tyy1gh", + "sourceIdentifier.value": "qt38YgNxOY", + "identifiers.value": [ "qt38YgNxOY" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-sQ9rgmu63i" + "title": "title-sQ9rgmu63i" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"hdig\",\"label\":\"Born-digital archives\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "hdig", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "hdig", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "qt38YgNxOY" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.14.json b/common/search/src/test/resources/test_documents/works.every-format.14.json index 9cc382d0f..011ac8787 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.14.json +++ b/common/search/src/test/resources/test_documents/works.every-format.14.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.534193Z", - "id" : "vwzsza7o", - "document" : { - "debug" : { - "source" : { - "id" : "vwzsza7o", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.534193Z", + "id": "vwzsza7o", + "document": { + "debug": { + "source": { + "id": "vwzsza7o", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "DHZ5kGsC2N" + "ontologyType": "Work", + "value": "DHZ5kGsC2N" }, - "version" : 76, - "modifiedTime" : "2057-06-21T22:52:30Z" + "version": 76, + "modifiedTime": "2057-06-21T22:52:30Z" }, - "mergedTime" : "2057-06-21T22:52:30Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2057-06-21T22:52:30Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "vwzsza7o", - "title" : "title-Aa31SpT9St", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "n", - "label" : "Film", - "type" : "Format" + "display": { + "id": "vwzsza7o", + "title": "title-Aa31SpT9St", + "alternativeTitles": [ + ], + "workType": { + "id": "n", + "label": "Film", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "DHZ5kGsC2N", - "type" : "Identifier" + "value": "DHZ5kGsC2N", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "vwzsza7o", - "sourceIdentifier.value" : "DHZ5kGsC2N", - "identifiers.value" : [ + "id": "vwzsza7o", + "sourceIdentifier.value": "DHZ5kGsC2N", + "identifiers.value": [ "DHZ5kGsC2N" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Aa31SpT9St" + "title": "title-Aa31SpT9St" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "n", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "n", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "DHZ5kGsC2N" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.15.json b/common/search/src/test/resources/test_documents/works.every-format.15.json index b8dfdcf9f..20c9a184a 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.15.json +++ b/common/search/src/test/resources/test_documents/works.every-format.15.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.534540Z", - "id" : "9vihnjwg", - "document" : { - "debug" : { - "source" : { - "id" : "9vihnjwg", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.534540Z", + "id": "9vihnjwg", + "document": { + "debug": { + "source": { + "id": "9vihnjwg", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "oeggPvgjRA" + "ontologyType": "Work", + "value": "oeggPvgjRA" }, - "version" : 48, - "modifiedTime" : "2016-04-26T09:59:06Z" + "version": 48, + "modifiedTime": "2016-04-26T09:59:06Z" }, - "mergedTime" : "2016-04-26T09:59:06Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2016-04-26T09:59:06Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "9vihnjwg", - "title" : "title-tGLcg1WHGj", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "b", - "label" : "Manuscripts", - "type" : "Format" + "display": { + "id": "9vihnjwg", + "title": "title-tGLcg1WHGj", + "alternativeTitles": [ + ], + "workType": { + "id": "b", + "label": "Manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "oeggPvgjRA", - "type" : "Identifier" + "value": "oeggPvgjRA", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "9vihnjwg", - "sourceIdentifier.value" : "oeggPvgjRA", - "identifiers.value" : [ + "id": "9vihnjwg", + "sourceIdentifier.value": "oeggPvgjRA", + "identifiers.value": [ "oeggPvgjRA" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-tGLcg1WHGj" + "title": "title-tGLcg1WHGj" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "b", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "b", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "oeggPvgjRA" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.16.json b/common/search/src/test/resources/test_documents/works.every-format.16.json index a2c79c9a4..d42a5c8c3 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.16.json +++ b/common/search/src/test/resources/test_documents/works.every-format.16.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.534887Z", - "id" : "4blsy3iy", - "document" : { - "debug" : { - "source" : { - "id" : "4blsy3iy", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.534887Z", + "id": "4blsy3iy", + "document": { + "debug": { + "source": { + "id": "4blsy3iy", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "CwPK521Yf5" + "ontologyType": "Work", + "value": "CwPK521Yf5" }, - "version" : 80, - "modifiedTime" : "1989-12-01T18:27:04Z" + "version": 80, + "modifiedTime": "1989-12-01T18:27:04Z" }, - "mergedTime" : "1989-12-01T18:27:04Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1989-12-01T18:27:04Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "4blsy3iy", - "title" : "title-rQHICakdbo", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "c", - "label" : "Music", - "type" : "Format" + "display": { + "id": "4blsy3iy", + "title": "title-rQHICakdbo", + "alternativeTitles": [ + ], + "workType": { + "id": "c", + "label": "Music", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "CwPK521Yf5", - "type" : "Identifier" + "value": "CwPK521Yf5", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "4blsy3iy", - "sourceIdentifier.value" : "CwPK521Yf5", - "identifiers.value" : [ + "id": "4blsy3iy", + "sourceIdentifier.value": "CwPK521Yf5", + "identifiers.value": [ "CwPK521Yf5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-rQHICakdbo" + "title": "title-rQHICakdbo" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "c", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "c", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "CwPK521Yf5" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.17.json b/common/search/src/test/resources/test_documents/works.every-format.17.json index 2647f10cd..a51ab53e4 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.17.json +++ b/common/search/src/test/resources/test_documents/works.every-format.17.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.535338Z", - "id" : "9is9e3tz", - "document" : { - "debug" : { - "source" : { - "id" : "9is9e3tz", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.535338Z", + "id": "9is9e3tz", + "document": { + "debug": { + "source": { + "id": "9is9e3tz", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "ZVe3xG7r6V" + "ontologyType": "Work", + "value": "ZVe3xG7r6V" }, - "version" : 2, - "modifiedTime" : "1948-09-05T03:31:20Z" + "version": 2, + "modifiedTime": "1948-09-05T03:31:20Z" }, - "mergedTime" : "1948-09-05T03:31:20Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1948-09-05T03:31:20Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "9is9e3tz", - "title" : "title-GYTcwsJblj", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "u", - "label" : "Standing order", - "type" : "Format" + "display": { + "id": "9is9e3tz", + "title": "title-GYTcwsJblj", + "alternativeTitles": [ + ], + "workType": { + "id": "u", + "label": "Standing order", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "ZVe3xG7r6V", - "type" : "Identifier" + "value": "ZVe3xG7r6V", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "9is9e3tz", - "sourceIdentifier.value" : "ZVe3xG7r6V", - "identifiers.value" : [ + "id": "9is9e3tz", + "sourceIdentifier.value": "ZVe3xG7r6V", + "identifiers.value": [ "ZVe3xG7r6V" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-GYTcwsJblj" + "title": "title-GYTcwsJblj" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "u", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "u", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ZVe3xG7r6V" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.18.json b/common/search/src/test/resources/test_documents/works.every-format.18.json index 99e6d1e0f..2162576a1 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.18.json +++ b/common/search/src/test/resources/test_documents/works.every-format.18.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.535809Z", - "id" : "4pxxngz8", - "document" : { - "debug" : { - "source" : { - "id" : "4pxxngz8", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.535809Z", + "id": "4pxxngz8", + "document": { + "debug": { + "source": { + "id": "4pxxngz8", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "u1GFI2XFVi" + "ontologyType": "Work", + "value": "u1GFI2XFVi" }, - "version" : 98, - "modifiedTime" : "2057-05-14T23:40:17Z" + "version": 98, + "modifiedTime": "2057-05-14T23:40:17Z" }, - "mergedTime" : "2057-05-14T23:40:17Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2057-05-14T23:40:17Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "4pxxngz8", - "title" : "title-nVQ1pSxSTQ", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "z", - "label" : "Web sites", - "type" : "Format" + "display": { + "id": "4pxxngz8", + "title": "title-nVQ1pSxSTQ", + "alternativeTitles": [ + ], + "workType": { + "id": "z", + "label": "Web sites", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "u1GFI2XFVi", - "type" : "Identifier" + "value": "u1GFI2XFVi", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "4pxxngz8", - "sourceIdentifier.value" : "u1GFI2XFVi", - "identifiers.value" : [ + "id": "4pxxngz8", + "sourceIdentifier.value": "u1GFI2XFVi", + "identifiers.value": [ "u1GFI2XFVi" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-nVQ1pSxSTQ" + "title": "title-nVQ1pSxSTQ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "z", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "z", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "u1GFI2XFVi" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.19.json b/common/search/src/test/resources/test_documents/works.every-format.19.json index 589718e24..d20457c69 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.19.json +++ b/common/search/src/test/resources/test_documents/works.every-format.19.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.536156Z", - "id" : "pujta45z", - "document" : { - "debug" : { - "source" : { - "id" : "pujta45z", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.536156Z", + "id": "pujta45z", + "document": { + "debug": { + "source": { + "id": "pujta45z", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "4EFefGhSS8" + "ontologyType": "Work", + "value": "4EFefGhSS8" }, - "version" : 75, - "modifiedTime" : "2013-08-30T03:43:43Z" + "version": 75, + "modifiedTime": "2013-08-30T03:43:43Z" }, - "mergedTime" : "2013-08-30T03:43:43Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2013-08-30T03:43:43Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "pujta45z", - "title" : "title-fq9upMxJZw", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "v", - "label" : "E-books", - "type" : "Format" + "display": { + "id": "pujta45z", + "title": "title-fq9upMxJZw", + "alternativeTitles": [ + ], + "workType": { + "id": "v", + "label": "E-books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "4EFefGhSS8", - "type" : "Identifier" + "value": "4EFefGhSS8", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "pujta45z", - "sourceIdentifier.value" : "4EFefGhSS8", - "identifiers.value" : [ + "id": "pujta45z", + "sourceIdentifier.value": "4EFefGhSS8", + "identifiers.value": [ "4EFefGhSS8" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-fq9upMxJZw" + "title": "title-fq9upMxJZw" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "v", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "v", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "4EFefGhSS8" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.2.json b/common/search/src/test/resources/test_documents/works.every-format.2.json index cdc5845f6..282d72649 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.2.json +++ b/common/search/src/test/resources/test_documents/works.every-format.2.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.529642Z", - "id" : "cinepzd4", - "document" : { - "debug" : { - "source" : { - "id" : "cinepzd4", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.529642Z", + "id": "cinepzd4", + "document": { + "debug": { + "source": { + "id": "cinepzd4", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "ALANM5eCQQ" + "ontologyType": "Work", + "value": "ALANM5eCQQ" }, - "version" : 60, - "modifiedTime" : "2011-07-10T12:40:11Z" + "version": 60, + "modifiedTime": "2011-07-10T12:40:11Z" }, - "mergedTime" : "2011-07-10T12:40:11Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2011-07-10T12:40:11Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "cinepzd4", - "title" : "title-eLKKcl3dhq", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "l", - "label" : "Ephemera", - "type" : "Format" + "display": { + "id": "cinepzd4", + "title": "title-eLKKcl3dhq", + "alternativeTitles": [ + ], + "workType": { + "id": "l", + "label": "Ephemera", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "ALANM5eCQQ", - "type" : "Identifier" + "value": "ALANM5eCQQ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "cinepzd4", - "sourceIdentifier.value" : "ALANM5eCQQ", - "identifiers.value" : [ + "id": "cinepzd4", + "sourceIdentifier.value": "ALANM5eCQQ", + "identifiers.value": [ "ALANM5eCQQ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-eLKKcl3dhq" + "title": "title-eLKKcl3dhq" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "l", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "l", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ALANM5eCQQ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.20.json b/common/search/src/test/resources/test_documents/works.every-format.20.json index 4411c1cdb..292eb66a9 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.20.json +++ b/common/search/src/test/resources/test_documents/works.every-format.20.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.536496Z", - "id" : "qph7iot8", - "document" : { - "debug" : { - "source" : { - "id" : "qph7iot8", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.536496Z", + "id": "qph7iot8", + "document": { + "debug": { + "source": { + "id": "qph7iot8", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "kQ4UxBoirz" + "ontologyType": "Work", + "value": "kQ4UxBoirz" }, - "version" : 61, - "modifiedTime" : "2068-04-15T09:23:35Z" + "version": 61, + "modifiedTime": "2068-04-15T09:23:35Z" }, - "mergedTime" : "2068-04-15T09:23:35Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2068-04-15T09:23:35Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "qph7iot8", - "title" : "title-GJFY3QKMnI", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "s", - "label" : "E-sound", - "type" : "Format" + "display": { + "id": "qph7iot8", + "title": "title-GJFY3QKMnI", + "alternativeTitles": [ + ], + "workType": { + "id": "s", + "label": "E-sound", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "kQ4UxBoirz", - "type" : "Identifier" + "value": "kQ4UxBoirz", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "qph7iot8", - "sourceIdentifier.value" : "kQ4UxBoirz", - "identifiers.value" : [ + "id": "qph7iot8", + "sourceIdentifier.value": "kQ4UxBoirz", + "identifiers.value": [ "kQ4UxBoirz" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-GJFY3QKMnI" + "title": "title-GJFY3QKMnI" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "s", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "s", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "kQ4UxBoirz" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.21.json b/common/search/src/test/resources/test_documents/works.every-format.21.json index 5d6b4df91..dc7f47b94 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.21.json +++ b/common/search/src/test/resources/test_documents/works.every-format.21.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.536834Z", - "id" : "3ygkb1yd", - "document" : { - "debug" : { - "source" : { - "id" : "3ygkb1yd", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.536834Z", + "id": "3ygkb1yd", + "document": { + "debug": { + "source": { + "id": "3ygkb1yd", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "mTs82bfnk2" + "ontologyType": "Work", + "value": "mTs82bfnk2" }, - "version" : 60, - "modifiedTime" : "1961-01-11T18:15:01Z" + "version": 60, + "modifiedTime": "1961-01-11T18:15:01Z" }, - "mergedTime" : "1961-01-11T18:15:01Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1961-01-11T18:15:01Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "3ygkb1yd", - "title" : "title-XqL6hBi4EV", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "j", - "label" : "E-journals", - "type" : "Format" + "display": { + "id": "3ygkb1yd", + "title": "title-XqL6hBi4EV", + "alternativeTitles": [ + ], + "workType": { + "id": "j", + "label": "E-journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "mTs82bfnk2", - "type" : "Identifier" + "value": "mTs82bfnk2", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "3ygkb1yd", - "sourceIdentifier.value" : "mTs82bfnk2", - "identifiers.value" : [ + "id": "3ygkb1yd", + "sourceIdentifier.value": "mTs82bfnk2", + "identifiers.value": [ "mTs82bfnk2" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-XqL6hBi4EV" + "title": "title-XqL6hBi4EV" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "j", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "j", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "mTs82bfnk2" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.22.json b/common/search/src/test/resources/test_documents/works.every-format.22.json index 19f143cf4..2972e6fa9 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.22.json +++ b/common/search/src/test/resources/test_documents/works.every-format.22.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.537188Z", - "id" : "ccfchgq4", - "document" : { - "debug" : { - "source" : { - "id" : "ccfchgq4", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.537188Z", + "id": "ccfchgq4", + "document": { + "debug": { + "source": { + "id": "ccfchgq4", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "a62zjJ09dk" + "ontologyType": "Work", + "value": "a62zjJ09dk" }, - "version" : 89, - "modifiedTime" : "1989-01-21T00:50:14Z" + "version": 89, + "modifiedTime": "1989-01-21T00:50:14Z" }, - "mergedTime" : "1989-01-21T00:50:14Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1989-01-21T00:50:14Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ccfchgq4", - "title" : "title-BGJ9vAPDvN", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "f", - "label" : "E-videos", - "type" : "Format" + "display": { + "id": "ccfchgq4", + "title": "title-BGJ9vAPDvN", + "alternativeTitles": [ + ], + "workType": { + "id": "f", + "label": "E-videos", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "a62zjJ09dk", - "type" : "Identifier" + "value": "a62zjJ09dk", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ccfchgq4", - "sourceIdentifier.value" : "a62zjJ09dk", - "identifiers.value" : [ + "id": "ccfchgq4", + "sourceIdentifier.value": "a62zjJ09dk", + "identifiers.value": [ "a62zjJ09dk" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-BGJ9vAPDvN" + "title": "title-BGJ9vAPDvN" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "f", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "f", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "a62zjJ09dk" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.23.json b/common/search/src/test/resources/test_documents/works.every-format.23.json index eaf4ab07f..759f92f9f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.23.json +++ b/common/search/src/test/resources/test_documents/works.every-format.23.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.537535Z", - "id" : "cgfghm8m", - "document" : { - "debug" : { - "source" : { - "id" : "cgfghm8m", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.537535Z", + "id": "cgfghm8m", + "document": { + "debug": { + "source": { + "id": "cgfghm8m", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "mh0pYazvpR" + "ontologyType": "Work", + "value": "mh0pYazvpR" }, - "version" : 37, - "modifiedTime" : "1945-01-10T19:58:56Z" + "version": 37, + "modifiedTime": "1945-01-10T19:58:56Z" }, - "mergedTime" : "1945-01-10T19:58:56Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1945-01-10T19:58:56Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "cgfghm8m", - "title" : "title-oOAv5vdS0Y", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "x", - "label" : "Manuscripts", - "type" : "Format" + "display": { + "id": "cgfghm8m", + "title": "title-oOAv5vdS0Y", + "alternativeTitles": [ + ], + "workType": { + "id": "x", + "label": "Manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "mh0pYazvpR", - "type" : "Identifier" + "value": "mh0pYazvpR", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "cgfghm8m", - "sourceIdentifier.value" : "mh0pYazvpR", - "identifiers.value" : [ + "id": "cgfghm8m", + "sourceIdentifier.value": "mh0pYazvpR", + "identifiers.value": [ "mh0pYazvpR" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-oOAv5vdS0Y" + "title": "title-oOAv5vdS0Y" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "x", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "x", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "mh0pYazvpR" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.3.json b/common/search/src/test/resources/test_documents/works.every-format.3.json index d3159ef60..ae17597a0 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.3.json +++ b/common/search/src/test/resources/test_documents/works.every-format.3.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.529965Z", - "id" : "btrlxjc4", - "document" : { - "debug" : { - "source" : { - "id" : "btrlxjc4", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.529965Z", + "id": "btrlxjc4", + "document": { + "debug": { + "source": { + "id": "btrlxjc4", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "oZVNybADYL" + "ontologyType": "Work", + "value": "oZVNybADYL" }, - "version" : 5, - "modifiedTime" : "1936-05-06T07:13:48Z" + "version": 5, + "modifiedTime": "1936-05-06T07:13:48Z" }, - "mergedTime" : "1936-05-06T07:13:48Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1936-05-06T07:13:48Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "btrlxjc4", - "title" : "title-v7ilrP0gOL", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "e", - "label" : "Maps", - "type" : "Format" + "display": { + "id": "btrlxjc4", + "title": "title-v7ilrP0gOL", + "alternativeTitles": [ + ], + "workType": { + "id": "e", + "label": "Maps", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "oZVNybADYL", - "type" : "Identifier" + "value": "oZVNybADYL", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "btrlxjc4", - "sourceIdentifier.value" : "oZVNybADYL", - "identifiers.value" : [ + "id": "btrlxjc4", + "sourceIdentifier.value": "oZVNybADYL", + "identifiers.value": [ "oZVNybADYL" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-v7ilrP0gOL" + "title": "title-v7ilrP0gOL" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "e", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "e", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "oZVNybADYL" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.4.json b/common/search/src/test/resources/test_documents/works.every-format.4.json index 0ff3a2bfb..81613698f 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.4.json +++ b/common/search/src/test/resources/test_documents/works.every-format.4.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.530281Z", - "id" : "ifz9zadf", - "document" : { - "debug" : { - "source" : { - "id" : "ifz9zadf", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.530281Z", + "id": "ifz9zadf", + "document": { + "debug": { + "source": { + "id": "ifz9zadf", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "MZkkqME2t4" + "ontologyType": "Work", + "value": "MZkkqME2t4" }, - "version" : 33, - "modifiedTime" : "2033-01-05T00:41:56Z" + "version": 33, + "modifiedTime": "2033-01-05T00:41:56Z" }, - "mergedTime" : "2033-01-05T00:41:56Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2033-01-05T00:41:56Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ifz9zadf", - "title" : "title-zprDQS25hn", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "k", - "label" : "Pictures", - "type" : "Format" + "display": { + "id": "ifz9zadf", + "title": "title-zprDQS25hn", + "alternativeTitles": [ + ], + "workType": { + "id": "k", + "label": "Pictures", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "MZkkqME2t4", - "type" : "Identifier" + "value": "MZkkqME2t4", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ifz9zadf", - "sourceIdentifier.value" : "MZkkqME2t4", - "identifiers.value" : [ + "id": "ifz9zadf", + "sourceIdentifier.value": "MZkkqME2t4", + "identifiers.value": [ "MZkkqME2t4" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-zprDQS25hn" + "title": "title-zprDQS25hn" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "k", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "k", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "MZkkqME2t4" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.5.json b/common/search/src/test/resources/test_documents/works.every-format.5.json index c94af86f7..72b137a3d 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.5.json +++ b/common/search/src/test/resources/test_documents/works.every-format.5.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.530610Z", - "id" : "xlcpwdx8", - "document" : { - "debug" : { - "source" : { - "id" : "xlcpwdx8", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.530610Z", + "id": "xlcpwdx8", + "document": { + "debug": { + "source": { + "id": "xlcpwdx8", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "QBSkLFL8Cz" + "ontologyType": "Work", + "value": "QBSkLFL8Cz" }, - "version" : 26, - "modifiedTime" : "1970-09-11T12:17:13Z" + "version": 26, + "modifiedTime": "1970-09-11T12:17:13Z" }, - "mergedTime" : "1970-09-11T12:17:13Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1970-09-11T12:17:13Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "xlcpwdx8", - "title" : "title-If124qX5kM", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "w", - "label" : "Student dissertations", - "type" : "Format" + "display": { + "id": "xlcpwdx8", + "title": "title-If124qX5kM", + "alternativeTitles": [ + ], + "workType": { + "id": "w", + "label": "Student dissertations", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "QBSkLFL8Cz", - "type" : "Identifier" + "value": "QBSkLFL8Cz", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "xlcpwdx8", - "sourceIdentifier.value" : "QBSkLFL8Cz", - "identifiers.value" : [ + "id": "xlcpwdx8", + "sourceIdentifier.value": "QBSkLFL8Cz", + "identifiers.value": [ "QBSkLFL8Cz" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-If124qX5kM" + "title": "title-If124qX5kM" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"w\",\"label\":\"Student dissertations\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "w", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "w", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "QBSkLFL8Cz" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.6.json b/common/search/src/test/resources/test_documents/works.every-format.6.json index 4e8333ef0..9ab5892e8 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.6.json +++ b/common/search/src/test/resources/test_documents/works.every-format.6.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.530973Z", - "id" : "cmz25207", - "document" : { - "debug" : { - "source" : { - "id" : "cmz25207", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.530973Z", + "id": "cmz25207", + "document": { + "debug": { + "source": { + "id": "cmz25207", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "pmMJGY9dht" + "ontologyType": "Work", + "value": "pmMJGY9dht" }, - "version" : 54, - "modifiedTime" : "2057-11-24T19:37:10Z" + "version": 54, + "modifiedTime": "2057-11-24T19:37:10Z" }, - "mergedTime" : "2057-11-24T19:37:10Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2057-11-24T19:37:10Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "cmz25207", - "title" : "title-hUTLc5Rq9A", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "r", - "label" : "3-D Objects", - "type" : "Format" + "display": { + "id": "cmz25207", + "title": "title-hUTLc5Rq9A", + "alternativeTitles": [ + ], + "workType": { + "id": "r", + "label": "3-D Objects", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "pmMJGY9dht", - "type" : "Identifier" + "value": "pmMJGY9dht", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "cmz25207", - "sourceIdentifier.value" : "pmMJGY9dht", - "identifiers.value" : [ + "id": "cmz25207", + "sourceIdentifier.value": "pmMJGY9dht", + "identifiers.value": [ "pmMJGY9dht" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-hUTLc5Rq9A" + "title": "title-hUTLc5Rq9A" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"r\",\"label\":\"3-D Objects\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "r", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "r", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "pmMJGY9dht" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.7.json b/common/search/src/test/resources/test_documents/works.every-format.7.json index ee7c0d2c0..8f7a5b144 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.7.json +++ b/common/search/src/test/resources/test_documents/works.every-format.7.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.531314Z", - "id" : "6qjgnqbc", - "document" : { - "debug" : { - "source" : { - "id" : "6qjgnqbc", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.531314Z", + "id": "6qjgnqbc", + "document": { + "debug": { + "source": { + "id": "6qjgnqbc", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "Nr737MdPwA" + "ontologyType": "Work", + "value": "Nr737MdPwA" }, - "version" : 47, - "modifiedTime" : "1984-05-15T14:09:35Z" + "version": 47, + "modifiedTime": "1984-05-15T14:09:35Z" }, - "mergedTime" : "1984-05-15T14:09:35Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1984-05-15T14:09:35Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "6qjgnqbc", - "title" : "title-URSdB22MDV", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "m", - "label" : "CD-Roms", - "type" : "Format" + "display": { + "id": "6qjgnqbc", + "title": "title-URSdB22MDV", + "alternativeTitles": [ + ], + "workType": { + "id": "m", + "label": "CD-Roms", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "Nr737MdPwA", - "type" : "Identifier" + "value": "Nr737MdPwA", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "6qjgnqbc", - "sourceIdentifier.value" : "Nr737MdPwA", - "identifiers.value" : [ + "id": "6qjgnqbc", + "sourceIdentifier.value": "Nr737MdPwA", + "identifiers.value": [ "Nr737MdPwA" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-URSdB22MDV" + "title": "title-URSdB22MDV" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "m", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "m", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Nr737MdPwA" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.8.json b/common/search/src/test/resources/test_documents/works.every-format.8.json index 5ba754977..8128c70d2 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.8.json +++ b/common/search/src/test/resources/test_documents/works.every-format.8.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.531681Z", - "id" : "cwpfpixj", - "document" : { - "debug" : { - "source" : { - "id" : "cwpfpixj", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.531681Z", + "id": "cwpfpixj", + "document": { + "debug": { + "source": { + "id": "cwpfpixj", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "D1YQhdjF03" + "ontologyType": "Work", + "value": "D1YQhdjF03" }, - "version" : 69, - "modifiedTime" : "1978-04-30T17:23:35Z" + "version": 69, + "modifiedTime": "1978-04-30T17:23:35Z" }, - "mergedTime" : "1978-04-30T17:23:35Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1978-04-30T17:23:35Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "cwpfpixj", - "title" : "title-f39tAr4kG6", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "cwpfpixj", + "title": "title-f39tAr4kG6", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "D1YQhdjF03", - "type" : "Identifier" + "value": "D1YQhdjF03", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "cwpfpixj", - "sourceIdentifier.value" : "D1YQhdjF03", - "identifiers.value" : [ + "id": "cwpfpixj", + "sourceIdentifier.value": "D1YQhdjF03", + "identifiers.value": [ "D1YQhdjF03" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-f39tAr4kG6" + "title": "title-f39tAr4kG6" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "D1YQhdjF03" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.every-format.9.json b/common/search/src/test/resources/test_documents/works.every-format.9.json index c195f29d1..652dbe191 100644 --- a/common/search/src/test/resources/test_documents/works.every-format.9.json +++ b/common/search/src/test/resources/test_documents/works.every-format.9.json @@ -1,188 +1,188 @@ { - "description" : "works with every format", - "createdAt" : "2024-11-13T08:43:26.532035Z", - "id" : "6visru7m", - "document" : { - "debug" : { - "source" : { - "id" : "6visru7m", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with every format", + "createdAt": "2024-11-13T08:43:26.532035Z", + "id": "6visru7m", + "document": { + "debug": { + "source": { + "id": "6visru7m", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "ifN5hzpvxV" + "ontologyType": "Work", + "value": "ifN5hzpvxV" }, - "version" : 58, - "modifiedTime" : "1993-10-03T02:48:28Z" + "version": 58, + "modifiedTime": "1993-10-03T02:48:28Z" }, - "mergedTime" : "1993-10-03T02:48:28Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1993-10-03T02:48:28Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "6visru7m", - "title" : "title-Eoau6TjOf0", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "p", - "label" : "Mixed materials", - "type" : "Format" + "display": { + "id": "6visru7m", + "title": "title-Eoau6TjOf0", + "alternativeTitles": [ + ], + "workType": { + "id": "p", + "label": "Mixed materials", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "ifN5hzpvxV", - "type" : "Identifier" + "value": "ifN5hzpvxV", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "6visru7m", - "sourceIdentifier.value" : "ifN5hzpvxV", - "identifiers.value" : [ + "id": "6visru7m", + "sourceIdentifier.value": "ifN5hzpvxV", + "identifiers.value": [ "ifN5hzpvxV" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-Eoau6TjOf0" + "title": "title-Eoau6TjOf0" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"p\",\"label\":\"Mixed materials\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "p", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "p", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ifN5hzpvxV" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json index ba5fec543..ce72832ac 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.0.json @@ -1,239 +1,239 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.635345Z", - "id" : "e9alfxx5", - "document" : { - "debug" : { - "source" : { - "id" : "e9alfxx5", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.635345Z", + "id": "e9alfxx5", + "document": { + "debug": { + "source": { + "id": "e9alfxx5", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "I95Gazclr9" + "ontologyType": "Work", + "value": "I95Gazclr9" }, - "version" : 99, - "modifiedTime" : "2029-10-27T02:35:11Z" + "version": 99, + "modifiedTime": "2029-10-27T02:35:11Z" }, - "mergedTime" : "2029-10-27T02:35:11Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2029-10-27T02:35:11Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "e9alfxx5", - "title" : "title-bPGXaLqwYH", - "alternativeTitles" : [ + "display": { + "id": "e9alfxx5", + "title": "title-bPGXaLqwYH", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "I95Gazclr9", - "type" : "Identifier" + "value": "I95Gazclr9", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "8tetlds3", - "identifiers" : [ + "id": "8tetlds3", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "TJcj7uta7H", - "type" : "Identifier" + "value": "TJcj7uta7H", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/sk7.jpg/info.json", - "credit" : "Credit line: VBr7VL", - "linkText" : "Link text: fab67TffQN", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/sk7.jpg/info.json", + "credit": "Credit line: VBr7VL", + "linkText": "Link text: fab67TffQN", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "restricted", - "label" : "Restricted", - "type" : "AccessStatus" + "status": { + "id": "restricted", + "label": "Restricted", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "e9alfxx5", - "sourceIdentifier.value" : "I95Gazclr9", - "identifiers.value" : [ + "id": "e9alfxx5", + "sourceIdentifier.value": "I95Gazclr9", + "identifiers.value": [ "I95Gazclr9" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "8tetlds3" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "TJcj7uta7H" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-bPGXaLqwYH" + "title": "title-bPGXaLqwYH" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "I95Gazclr9" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "restricted" ], - "items.id" : [ + "items.id": [ "8tetlds3" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "TJcj7uta7H" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json index 194250b63..8612aebe8 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.1.json @@ -1,239 +1,239 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.635802Z", - "id" : "xmya3fco", - "document" : { - "debug" : { - "source" : { - "id" : "xmya3fco", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.635802Z", + "id": "xmya3fco", + "document": { + "debug": { + "source": { + "id": "xmya3fco", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "2KTE1hWM7i" + "ontologyType": "Work", + "value": "2KTE1hWM7i" }, - "version" : 3, - "modifiedTime" : "2013-12-02T22:04:38Z" + "version": 3, + "modifiedTime": "2013-12-02T22:04:38Z" }, - "mergedTime" : "2013-12-02T22:04:38Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2013-12-02T22:04:38Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "xmya3fco", - "title" : "title-y1hoMJJvcU", - "alternativeTitles" : [ + "display": { + "id": "xmya3fco", + "title": "title-y1hoMJJvcU", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "2KTE1hWM7i", - "type" : "Identifier" + "value": "2KTE1hWM7i", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "p5y6nhmj", - "identifiers" : [ + "id": "p5y6nhmj", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "383Pmg46QE", - "type" : "Identifier" + "value": "383Pmg46QE", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/hxo.jpg/info.json", - "credit" : "Credit line: VFqtU49", - "linkText" : "Link text: vqxD7y5YI", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/hxo.jpg/info.json", + "credit": "Credit line: VFqtU49", + "linkText": "Link text: vqxD7y5YI", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "restricted", - "label" : "Restricted", - "type" : "AccessStatus" + "status": { + "id": "restricted", + "label": "Restricted", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "xmya3fco", - "sourceIdentifier.value" : "2KTE1hWM7i", - "identifiers.value" : [ + "id": "xmya3fco", + "sourceIdentifier.value": "2KTE1hWM7i", + "identifiers.value": [ "2KTE1hWM7i" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "p5y6nhmj" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "383Pmg46QE" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-y1hoMJJvcU" + "title": "title-y1hoMJJvcU" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "2KTE1hWM7i" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "restricted" ], - "items.id" : [ + "items.id": [ "p5y6nhmj" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "383Pmg46QE" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json index 0639d94b6..a7a5ac5d7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.2.json @@ -1,238 +1,238 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.636180Z", - "id" : "1pknkhek", - "document" : { - "debug" : { - "source" : { - "id" : "1pknkhek", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.636180Z", + "id": "1pknkhek", + "document": { + "debug": { + "source": { + "id": "1pknkhek", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "eKWAvLy8mU" + "ontologyType": "Work", + "value": "eKWAvLy8mU" }, - "version" : 87, - "modifiedTime" : "1954-11-04T23:55:41Z" + "version": 87, + "modifiedTime": "1954-11-04T23:55:41Z" }, - "mergedTime" : "1954-11-04T23:55:41Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1954-11-04T23:55:41Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "1pknkhek", - "title" : "title-l7z2IaIyPh", - "alternativeTitles" : [ + "display": { + "id": "1pknkhek", + "title": "title-l7z2IaIyPh", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "eKWAvLy8mU", - "type" : "Identifier" + "value": "eKWAvLy8mU", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "ojhcs580", - "identifiers" : [ + "id": "ojhcs580", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "NPfAWzhVvX", - "type" : "Identifier" + "value": "NPfAWzhVvX", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/dmV.jpg/info.json", - "linkText" : "Link text: 9ffwz2O", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/dmV.jpg/info.json", + "linkText": "Link text: 9ffwz2O", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "closed", - "label" : "Closed", - "type" : "AccessStatus" + "status": { + "id": "closed", + "label": "Closed", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "1pknkhek", - "sourceIdentifier.value" : "eKWAvLy8mU", - "identifiers.value" : [ + "id": "1pknkhek", + "sourceIdentifier.value": "eKWAvLy8mU", + "identifiers.value": [ "eKWAvLy8mU" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "ojhcs580" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "NPfAWzhVvX" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-l7z2IaIyPh" + "title": "title-l7z2IaIyPh" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "eKWAvLy8mU" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "closed" ], - "items.id" : [ + "items.id": [ "ojhcs580" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "NPfAWzhVvX" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json index 9298f9ba1..4bb320597 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.3.json @@ -1,245 +1,245 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.636580Z", - "id" : "f1p8iujf", - "document" : { - "debug" : { - "source" : { - "id" : "f1p8iujf", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.636580Z", + "id": "f1p8iujf", + "document": { + "debug": { + "source": { + "id": "f1p8iujf", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "3dCafwzrSa" + "ontologyType": "Work", + "value": "3dCafwzrSa" }, - "version" : 96, - "modifiedTime" : "2028-04-10T13:33:03Z" + "version": 96, + "modifiedTime": "2028-04-10T13:33:03Z" }, - "mergedTime" : "2028-04-10T13:33:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2028-04-10T13:33:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "f1p8iujf", - "title" : "title-YmrG23dzV6", - "alternativeTitles" : [ + "display": { + "id": "f1p8iujf", + "title": "title-YmrG23dzV6", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "3dCafwzrSa", - "type" : "Identifier" + "value": "3dCafwzrSa", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "oz1fy94z", - "identifiers" : [ + "id": "oz1fy94z", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "rLthDeNIu1", - "type" : "Identifier" + "value": "rLthDeNIu1", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/XTq.jpg/info.json", - "linkText" : "Link text: nmb6il", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/XTq.jpg/info.json", + "linkText": "Link text: nmb6il", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "open", - "label" : "Open", - "type" : "AccessStatus" + "status": { + "id": "open", + "label": "Open", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "online", - "label" : "Online", - "type" : "Availability" + "id": "online", + "label": "Online", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "f1p8iujf", - "sourceIdentifier.value" : "3dCafwzrSa", - "identifiers.value" : [ + "id": "f1p8iujf", + "sourceIdentifier.value": "3dCafwzrSa", + "identifiers.value": [ "3dCafwzrSa" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "oz1fy94z" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "rLthDeNIu1" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-YmrG23dzV6" + "title": "title-YmrG23dzV6" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "3dCafwzrSa" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "open" ], - "items.id" : [ + "items.id": [ "oz1fy94z" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "rLthDeNIu1" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "online" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json index 3fd7c837f..0fddac72d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.4.json @@ -1,245 +1,245 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.636957Z", - "id" : "n2u7aru7", - "document" : { - "debug" : { - "source" : { - "id" : "n2u7aru7", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.636957Z", + "id": "n2u7aru7", + "document": { + "debug": { + "source": { + "id": "n2u7aru7", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "HrklHuS07i" + "ontologyType": "Work", + "value": "HrklHuS07i" }, - "version" : 73, - "modifiedTime" : "1979-09-22T19:35:19Z" + "version": 73, + "modifiedTime": "1979-09-22T19:35:19Z" }, - "mergedTime" : "1979-09-22T19:35:19Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1979-09-22T19:35:19Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "n2u7aru7", - "title" : "title-CiTs5auwvX", - "alternativeTitles" : [ + "display": { + "id": "n2u7aru7", + "title": "title-CiTs5auwvX", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "HrklHuS07i", - "type" : "Identifier" + "value": "HrklHuS07i", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "9xyhqdqn", - "identifiers" : [ + "id": "9xyhqdqn", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "XRANbEFIYK", - "type" : "Identifier" + "value": "XRANbEFIYK", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/SKp.jpg/info.json", - "linkText" : "Link text: X5AiO63s6", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/SKp.jpg/info.json", + "linkText": "Link text: X5AiO63s6", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "open-with-advisory", - "label" : "Open with advisory", - "type" : "AccessStatus" + "status": { + "id": "open-with-advisory", + "label": "Open with advisory", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "online", - "label" : "Online", - "type" : "Availability" + "id": "online", + "label": "Online", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "n2u7aru7", - "sourceIdentifier.value" : "HrklHuS07i", - "identifiers.value" : [ + "id": "n2u7aru7", + "sourceIdentifier.value": "HrklHuS07i", + "identifiers.value": [ "HrklHuS07i" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "9xyhqdqn" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "XRANbEFIYK" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-CiTs5auwvX" + "title": "title-CiTs5auwvX" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "HrklHuS07i" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "open-with-advisory" ], - "items.id" : [ + "items.id": [ "9xyhqdqn" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "XRANbEFIYK" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "online" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json index 17b963114..d2ef97cb0 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.5.json @@ -1,245 +1,245 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.637339Z", - "id" : "8ezcyfql", - "document" : { - "debug" : { - "source" : { - "id" : "8ezcyfql", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.637339Z", + "id": "8ezcyfql", + "document": { + "debug": { + "source": { + "id": "8ezcyfql", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "uDZSkVVbac" + "ontologyType": "Work", + "value": "uDZSkVVbac" }, - "version" : 71, - "modifiedTime" : "1955-12-31T01:30:20Z" + "version": 71, + "modifiedTime": "1955-12-31T01:30:20Z" }, - "mergedTime" : "1955-12-31T01:30:20Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1955-12-31T01:30:20Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "8ezcyfql", - "title" : "title-GTOMLJUBPs", - "alternativeTitles" : [ + "display": { + "id": "8ezcyfql", + "title": "title-GTOMLJUBPs", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "uDZSkVVbac", - "type" : "Identifier" + "value": "uDZSkVVbac", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "rk57syon", - "identifiers" : [ + "id": "rk57syon", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "rNNX4MZClE", - "type" : "Identifier" + "value": "rNNX4MZClE", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/vH8.jpg/info.json", - "linkText" : "Link text: h1czKSHpT0", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/vH8.jpg/info.json", + "linkText": "Link text: h1czKSHpT0", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "licensed-resources", - "label" : "Licensed resources", - "type" : "AccessStatus" + "status": { + "id": "licensed-resources", + "label": "Licensed resources", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "online", - "label" : "Online", - "type" : "Availability" + "id": "online", + "label": "Online", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "8ezcyfql", - "sourceIdentifier.value" : "uDZSkVVbac", - "identifiers.value" : [ + "id": "8ezcyfql", + "sourceIdentifier.value": "uDZSkVVbac", + "identifiers.value": [ "uDZSkVVbac" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "rk57syon" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "rNNX4MZClE" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-GTOMLJUBPs" + "title": "title-GTOMLJUBPs" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "uDZSkVVbac" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "licensed-resources" ], - "items.id" : [ + "items.id": [ "rk57syon" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "rNNX4MZClE" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "online" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json index fb5bedb8b..73d4401c8 100644 --- a/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.access-status-filters-tests.6.json @@ -1,238 +1,238 @@ { - "description" : "examples for the access status tests", - "createdAt" : "2024-11-13T08:43:26.637708Z", - "id" : "dulkq8ny", - "document" : { - "debug" : { - "source" : { - "id" : "dulkq8ny", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the access status tests", + "createdAt": "2024-11-13T08:43:26.637708Z", + "id": "dulkq8ny", + "document": { + "debug": { + "source": { + "id": "dulkq8ny", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "HeUBhh45MM" + "ontologyType": "Work", + "value": "HeUBhh45MM" }, - "version" : 16, - "modifiedTime" : "2044-10-23T23:53:45Z" + "version": 16, + "modifiedTime": "2044-10-23T23:53:45Z" }, - "mergedTime" : "2044-10-23T23:53:45Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2044-10-23T23:53:45Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "dulkq8ny", - "title" : "title-jzx3mO0u9h", - "alternativeTitles" : [ + "display": { + "id": "dulkq8ny", + "title": "title-jzx3mO0u9h", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "HeUBhh45MM", - "type" : "Identifier" + "value": "HeUBhh45MM", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "sfx1ndk3", - "identifiers" : [ + "id": "sfx1ndk3", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "ONjKwKKAUF", - "type" : "Identifier" + "value": "ONjKwKKAUF", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/wtG.jpg/info.json", - "credit" : "Credit line: O1husne0", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/wtG.jpg/info.json", + "credit": "Credit line: O1husne0", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "manual-request", - "label" : "Manual request", - "type" : "AccessMethod" + "method": { + "id": "manual-request", + "label": "Manual request", + "type": "AccessMethod" }, - "status" : { - "id" : "licensed-resources", - "label" : "Licensed resources", - "type" : "AccessStatus" + "status": { + "id": "licensed-resources", + "label": "Licensed resources", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "dulkq8ny", - "sourceIdentifier.value" : "HeUBhh45MM", - "identifiers.value" : [ + "id": "dulkq8ny", + "sourceIdentifier.value": "HeUBhh45MM", + "identifiers.value": [ "HeUBhh45MM" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "sfx1ndk3" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ONjKwKKAUF" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-jzx3mO0u9h" + "title": "title-jzx3mO0u9h" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "HeUBhh45MM" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "licensed-resources" ], - "items.id" : [ + "items.id": [ "sfx1ndk3" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ONjKwKKAUF" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json index 2ee7e9c2d..47e4109e5 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.0.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.570117Z", - "id" : "vu0ulwn0", - "document" : { - "debug" : { - "source" : { - "id" : "vu0ulwn0", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.570117Z", + "id": "vu0ulwn0", + "document": { + "debug": { + "source": { + "id": "vu0ulwn0", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "MOpZRqzugp" + "ontologyType": "Work", + "value": "MOpZRqzugp" }, - "version" : 58, - "modifiedTime" : "1999-06-22T21:21:08Z" + "version": 58, + "modifiedTime": "1999-06-22T21:21:08Z" }, - "mergedTime" : "1999-06-22T21:21:08Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1999-06-22T21:21:08Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "vu0ulwn0", - "title" : "title-8F6gzFFn0M", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "vu0ulwn0", + "title": "title-8F6gzFFn0M", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "MOpZRqzugp", - "type" : "Identifier" + "value": "MOpZRqzugp", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "vu0ulwn0", - "sourceIdentifier.value" : "MOpZRqzugp", - "identifiers.value" : [ + "id": "vu0ulwn0", + "sourceIdentifier.value": "MOpZRqzugp", + "identifiers.value": [ "MOpZRqzugp" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-8F6gzFFn0M" + "title": "title-8F6gzFFn0M" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "MOpZRqzugp" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json index c4c77bd8c..e21154f19 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.1.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.570591Z", - "id" : "k9rmsgky", - "document" : { - "debug" : { - "source" : { - "id" : "k9rmsgky", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.570591Z", + "id": "k9rmsgky", + "document": { + "debug": { + "source": { + "id": "k9rmsgky", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "Sw2fZgItN5" + "ontologyType": "Work", + "value": "Sw2fZgItN5" }, - "version" : 75, - "modifiedTime" : "1939-02-16T16:18:24Z" + "version": 75, + "modifiedTime": "1939-02-16T16:18:24Z" }, - "mergedTime" : "1939-02-16T16:18:24Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1939-02-16T16:18:24Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "k9rmsgky", - "title" : "title-11WyiVFCED", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "q", - "label" : "Digital Images", - "type" : "Format" + "display": { + "id": "k9rmsgky", + "title": "title-11WyiVFCED", + "alternativeTitles": [ + ], + "workType": { + "id": "q", + "label": "Digital Images", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "Sw2fZgItN5", - "type" : "Identifier" + "value": "Sw2fZgItN5", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "k9rmsgky", - "sourceIdentifier.value" : "Sw2fZgItN5", - "identifiers.value" : [ + "id": "k9rmsgky", + "sourceIdentifier.value": "Sw2fZgItN5", + "identifiers.value": [ "Sw2fZgItN5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-11WyiVFCED" + "title": "title-11WyiVFCED" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"q\",\"label\":\"Digital Images\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "q", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "q", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Sw2fZgItN5" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json index 099596f11..9de391e0a 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.10.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.574762Z", - "id" : "lusxgqii", - "document" : { - "debug" : { - "source" : { - "id" : "lusxgqii", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.574762Z", + "id": "lusxgqii", + "document": { + "debug": { + "source": { + "id": "lusxgqii", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "SVR3x3Cael" + "ontologyType": "Work", + "value": "SVR3x3Cael" }, - "version" : 38, - "modifiedTime" : "1998-04-06T11:45:48Z" + "version": 38, + "modifiedTime": "1998-04-06T11:45:48Z" }, - "mergedTime" : "1998-04-06T11:45:48Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1998-04-06T11:45:48Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "lusxgqii", - "title" : "title-3BP7HD59gW", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "lusxgqii", + "title": "title-3BP7HD59gW", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "SVR3x3Cael", - "type" : "Identifier" + "value": "SVR3x3Cael", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "lusxgqii", - "sourceIdentifier.value" : "SVR3x3Cael", - "identifiers.value" : [ + "id": "lusxgqii", + "sourceIdentifier.value": "SVR3x3Cael", + "identifiers.value": [ "SVR3x3Cael" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-3BP7HD59gW" + "title": "title-3BP7HD59gW" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "SVR3x3Cael" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json index d2e86afb9..49129e7d0 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.11.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.575582Z", - "id" : "uwotqemj", - "document" : { - "debug" : { - "source" : { - "id" : "uwotqemj", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.575582Z", + "id": "uwotqemj", + "document": { + "debug": { + "source": { + "id": "uwotqemj", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "w4lFJUZazq" + "ontologyType": "Work", + "value": "w4lFJUZazq" }, - "version" : 90, - "modifiedTime" : "2017-05-26T17:27:26Z" + "version": 90, + "modifiedTime": "2017-05-26T17:27:26Z" }, - "mergedTime" : "2017-05-26T17:27:26Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2017-05-26T17:27:26Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "uwotqemj", - "title" : "title-yTPyW5z3uV", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "g", - "label" : "Videos", - "type" : "Format" + "display": { + "id": "uwotqemj", + "title": "title-yTPyW5z3uV", + "alternativeTitles": [ + ], + "workType": { + "id": "g", + "label": "Videos", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "w4lFJUZazq", - "type" : "Identifier" + "value": "w4lFJUZazq", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "uwotqemj", - "sourceIdentifier.value" : "w4lFJUZazq", - "identifiers.value" : [ + "id": "uwotqemj", + "sourceIdentifier.value": "w4lFJUZazq", + "identifiers.value": [ "w4lFJUZazq" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-yTPyW5z3uV" + "title": "title-yTPyW5z3uV" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"g\",\"label\":\"Videos\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "g", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "g", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "w4lFJUZazq" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json index 93134b4bc..aefdd2e18 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.12.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.576430Z", - "id" : "tbkbsxzf", - "document" : { - "debug" : { - "source" : { - "id" : "tbkbsxzf", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.576430Z", + "id": "tbkbsxzf", + "document": { + "debug": { + "source": { + "id": "tbkbsxzf", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "5HlMPZzhLJ" + "ontologyType": "Work", + "value": "5HlMPZzhLJ" }, - "version" : 50, - "modifiedTime" : "2003-11-07T03:23:26Z" + "version": 50, + "modifiedTime": "2003-11-07T03:23:26Z" }, - "mergedTime" : "2003-11-07T03:23:26Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2003-11-07T03:23:26Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "tbkbsxzf", - "title" : "title-7HDIlUXQf0", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "h", - "label" : "Archives and manuscripts", - "type" : "Format" + "display": { + "id": "tbkbsxzf", + "title": "title-7HDIlUXQf0", + "alternativeTitles": [ + ], + "workType": { + "id": "h", + "label": "Archives and manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "5HlMPZzhLJ", - "type" : "Identifier" + "value": "5HlMPZzhLJ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "tbkbsxzf", - "sourceIdentifier.value" : "5HlMPZzhLJ", - "identifiers.value" : [ + "id": "tbkbsxzf", + "sourceIdentifier.value": "5HlMPZzhLJ", + "identifiers.value": [ "5HlMPZzhLJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-7HDIlUXQf0" + "title": "title-7HDIlUXQf0" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"h\",\"label\":\"Archives and manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "h", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "h", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "5HlMPZzhLJ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json index 32fbb6883..9ea65a4a9 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.13.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.576975Z", - "id" : "qr2rdsof", - "document" : { - "debug" : { - "source" : { - "id" : "qr2rdsof", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.576975Z", + "id": "qr2rdsof", + "document": { + "debug": { + "source": { + "id": "qr2rdsof", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "b5lYlQvQzS" + "ontologyType": "Work", + "value": "b5lYlQvQzS" }, - "version" : 25, - "modifiedTime" : "1934-10-12T18:01:51Z" + "version": 25, + "modifiedTime": "1934-10-12T18:01:51Z" }, - "mergedTime" : "1934-10-12T18:01:51Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1934-10-12T18:01:51Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "qr2rdsof", - "title" : "title-PTXo35aec2", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "hdig", - "label" : "Born-digital archives", - "type" : "Format" + "display": { + "id": "qr2rdsof", + "title": "title-PTXo35aec2", + "alternativeTitles": [ + ], + "workType": { + "id": "hdig", + "label": "Born-digital archives", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "b5lYlQvQzS", - "type" : "Identifier" + "value": "b5lYlQvQzS", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "qr2rdsof", - "sourceIdentifier.value" : "b5lYlQvQzS", - "identifiers.value" : [ + "id": "qr2rdsof", + "sourceIdentifier.value": "b5lYlQvQzS", + "identifiers.value": [ "b5lYlQvQzS" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-PTXo35aec2" + "title": "title-PTXo35aec2" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"hdig\",\"label\":\"Born-digital archives\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "hdig", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "hdig", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "b5lYlQvQzS" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json index 068d3b9fc..0f12fd9f8 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.14.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.577496Z", - "id" : "5klfzrze", - "document" : { - "debug" : { - "source" : { - "id" : "5klfzrze", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.577496Z", + "id": "5klfzrze", + "document": { + "debug": { + "source": { + "id": "5klfzrze", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "Iw5fNUyylf" + "ontologyType": "Work", + "value": "Iw5fNUyylf" }, - "version" : 52, - "modifiedTime" : "1983-11-07T09:48:39Z" + "version": 52, + "modifiedTime": "1983-11-07T09:48:39Z" }, - "mergedTime" : "1983-11-07T09:48:39Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1983-11-07T09:48:39Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "5klfzrze", - "title" : "title-XXZiS5MlN0", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "n", - "label" : "Film", - "type" : "Format" + "display": { + "id": "5klfzrze", + "title": "title-XXZiS5MlN0", + "alternativeTitles": [ + ], + "workType": { + "id": "n", + "label": "Film", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Iw5fNUyylf", - "type" : "Identifier" + "value": "Iw5fNUyylf", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5klfzrze", - "sourceIdentifier.value" : "Iw5fNUyylf", - "identifiers.value" : [ + "id": "5klfzrze", + "sourceIdentifier.value": "Iw5fNUyylf", + "identifiers.value": [ "Iw5fNUyylf" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-XXZiS5MlN0" + "title": "title-XXZiS5MlN0" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"n\",\"label\":\"Film\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "n", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "n", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Iw5fNUyylf" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json index cdfe90284..b6f0a17bf 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.15.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.578031Z", - "id" : "lwpiautl", - "document" : { - "debug" : { - "source" : { - "id" : "lwpiautl", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.578031Z", + "id": "lwpiautl", + "document": { + "debug": { + "source": { + "id": "lwpiautl", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "2tqCcLh1PJ" + "ontologyType": "Work", + "value": "2tqCcLh1PJ" }, - "version" : 33, - "modifiedTime" : "2049-05-05T22:23:19Z" + "version": 33, + "modifiedTime": "2049-05-05T22:23:19Z" }, - "mergedTime" : "2049-05-05T22:23:19Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2049-05-05T22:23:19Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "lwpiautl", - "title" : "title-kWyW6CgVzw", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "b", - "label" : "Manuscripts", - "type" : "Format" + "display": { + "id": "lwpiautl", + "title": "title-kWyW6CgVzw", + "alternativeTitles": [ + ], + "workType": { + "id": "b", + "label": "Manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "2tqCcLh1PJ", - "type" : "Identifier" + "value": "2tqCcLh1PJ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "lwpiautl", - "sourceIdentifier.value" : "2tqCcLh1PJ", - "identifiers.value" : [ + "id": "lwpiautl", + "sourceIdentifier.value": "2tqCcLh1PJ", + "identifiers.value": [ "2tqCcLh1PJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-kWyW6CgVzw" + "title": "title-kWyW6CgVzw" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"b\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "b", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "b", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "2tqCcLh1PJ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json index 5909d44c3..384c2d77f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.16.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.578486Z", - "id" : "ior3tm3c", - "document" : { - "debug" : { - "source" : { - "id" : "ior3tm3c", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.578486Z", + "id": "ior3tm3c", + "document": { + "debug": { + "source": { + "id": "ior3tm3c", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "FndKxMxs7k" + "ontologyType": "Work", + "value": "FndKxMxs7k" }, - "version" : 73, - "modifiedTime" : "1966-09-05T20:54:00Z" + "version": 73, + "modifiedTime": "1966-09-05T20:54:00Z" }, - "mergedTime" : "1966-09-05T20:54:00Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1966-09-05T20:54:00Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ior3tm3c", - "title" : "title-Oqp5RA4f5g", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "c", - "label" : "Music", - "type" : "Format" + "display": { + "id": "ior3tm3c", + "title": "title-Oqp5RA4f5g", + "alternativeTitles": [ + ], + "workType": { + "id": "c", + "label": "Music", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "FndKxMxs7k", - "type" : "Identifier" + "value": "FndKxMxs7k", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ior3tm3c", - "sourceIdentifier.value" : "FndKxMxs7k", - "identifiers.value" : [ + "id": "ior3tm3c", + "sourceIdentifier.value": "FndKxMxs7k", + "identifiers.value": [ "FndKxMxs7k" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-Oqp5RA4f5g" + "title": "title-Oqp5RA4f5g" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"c\",\"label\":\"Music\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "c", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "c", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "FndKxMxs7k" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json index da6f38e1d..f2f53b7cb 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.17.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.578921Z", - "id" : "bpisihnt", - "document" : { - "debug" : { - "source" : { - "id" : "bpisihnt", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.578921Z", + "id": "bpisihnt", + "document": { + "debug": { + "source": { + "id": "bpisihnt", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "IptlxE0qlB" + "ontologyType": "Work", + "value": "IptlxE0qlB" }, - "version" : 96, - "modifiedTime" : "1998-11-30T20:57:58Z" + "version": 96, + "modifiedTime": "1998-11-30T20:57:58Z" }, - "mergedTime" : "1998-11-30T20:57:58Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1998-11-30T20:57:58Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "bpisihnt", - "title" : "title-JBs3eSemcG", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "u", - "label" : "Standing order", - "type" : "Format" + "display": { + "id": "bpisihnt", + "title": "title-JBs3eSemcG", + "alternativeTitles": [ + ], + "workType": { + "id": "u", + "label": "Standing order", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "IptlxE0qlB", - "type" : "Identifier" + "value": "IptlxE0qlB", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "fIbfVPkqaf", - "concepts" : [ + "label": "fIbfVPkqaf", + "concepts": [ { - "label" : "Pgpz7am59I9Cwkj", - "type" : "Concept" + "label": "Pgpz7am59I9Cwkj", + "type": "Concept" }, { - "label" : "zoIhNdLDgGiVW1m", - "type" : "Concept" + "label": "zoIhNdLDgGiVW1m", + "type": "Concept" }, { - "label" : "Q40pgbiIgGzgYBC", - "type" : "Concept" + "label": "Q40pgbiIgGzgYBC", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "bpisihnt", - "sourceIdentifier.value" : "IptlxE0qlB", - "identifiers.value" : [ + "id": "bpisihnt", + "sourceIdentifier.value": "IptlxE0qlB", + "identifiers.value": [ "IptlxE0qlB" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "Pgpz7am59I9Cwkj", "zoIhNdLDgGiVW1m", "Q40pgbiIgGzgYBC" ], - "title" : "title-JBs3eSemcG" + "title": "title-JBs3eSemcG" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"u\",\"label\":\"Standing order\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"fIbfVPkqaf\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "u", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "u", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "fIbfVPkqaf" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "IptlxE0qlB" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json index 51920d74e..0801043d7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.18.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.579361Z", - "id" : "gms4hdjm", - "document" : { - "debug" : { - "source" : { - "id" : "gms4hdjm", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.579361Z", + "id": "gms4hdjm", + "document": { + "debug": { + "source": { + "id": "gms4hdjm", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "Xd87ZYKrzx" + "ontologyType": "Work", + "value": "Xd87ZYKrzx" }, - "version" : 78, - "modifiedTime" : "2057-03-30T08:52:31Z" + "version": 78, + "modifiedTime": "2057-03-30T08:52:31Z" }, - "mergedTime" : "2057-03-30T08:52:31Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2057-03-30T08:52:31Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "gms4hdjm", - "title" : "title-ToBweq2UFK", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "z", - "label" : "Web sites", - "type" : "Format" + "display": { + "id": "gms4hdjm", + "title": "title-ToBweq2UFK", + "alternativeTitles": [ + ], + "workType": { + "id": "z", + "label": "Web sites", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "Xd87ZYKrzx", - "type" : "Identifier" + "value": "Xd87ZYKrzx", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "gms4hdjm", - "sourceIdentifier.value" : "Xd87ZYKrzx", - "identifiers.value" : [ + "id": "gms4hdjm", + "sourceIdentifier.value": "Xd87ZYKrzx", + "identifiers.value": [ "Xd87ZYKrzx" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-ToBweq2UFK" + "title": "title-ToBweq2UFK" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"z\",\"label\":\"Web sites\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "z", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "z", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Xd87ZYKrzx" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json index 54c7dbf65..befe52759 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.19.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.579805Z", - "id" : "kw3kldau", - "document" : { - "debug" : { - "source" : { - "id" : "kw3kldau", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.579805Z", + "id": "kw3kldau", + "document": { + "debug": { + "source": { + "id": "kw3kldau", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "lzYfNgtG1S" + "ontologyType": "Work", + "value": "lzYfNgtG1S" }, - "version" : 8, - "modifiedTime" : "1959-09-06T22:36:54Z" + "version": 8, + "modifiedTime": "1959-09-06T22:36:54Z" }, - "mergedTime" : "1959-09-06T22:36:54Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1959-09-06T22:36:54Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "kw3kldau", - "title" : "title-4GKNsXvX3N", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "v", - "label" : "E-books", - "type" : "Format" + "display": { + "id": "kw3kldau", + "title": "title-4GKNsXvX3N", + "alternativeTitles": [ + ], + "workType": { + "id": "v", + "label": "E-books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "lzYfNgtG1S", - "type" : "Identifier" + "value": "lzYfNgtG1S", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "kw3kldau", - "sourceIdentifier.value" : "lzYfNgtG1S", - "identifiers.value" : [ + "id": "kw3kldau", + "sourceIdentifier.value": "lzYfNgtG1S", + "identifiers.value": [ "lzYfNgtG1S" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-4GKNsXvX3N" + "title": "title-4GKNsXvX3N" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"v\",\"label\":\"E-books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "v", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "v", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "lzYfNgtG1S" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json index 8c76bc796..6aaa13f12 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.2.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.571063Z", - "id" : "zh75axbz", - "document" : { - "debug" : { - "source" : { - "id" : "zh75axbz", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.571063Z", + "id": "zh75axbz", + "document": { + "debug": { + "source": { + "id": "zh75axbz", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "4ElQJncU8p" + "ontologyType": "Work", + "value": "4ElQJncU8p" }, - "version" : 97, - "modifiedTime" : "1962-06-27T00:05:10Z" + "version": 97, + "modifiedTime": "1962-06-27T00:05:10Z" }, - "mergedTime" : "1962-06-27T00:05:10Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1962-06-27T00:05:10Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "zh75axbz", - "title" : "title-v3a33KTr4g", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "l", - "label" : "Ephemera", - "type" : "Format" + "display": { + "id": "zh75axbz", + "title": "title-v3a33KTr4g", + "alternativeTitles": [ + ], + "workType": { + "id": "l", + "label": "Ephemera", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "4ElQJncU8p", - "type" : "Identifier" + "value": "4ElQJncU8p", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "zh75axbz", - "sourceIdentifier.value" : "4ElQJncU8p", - "identifiers.value" : [ + "id": "zh75axbz", + "sourceIdentifier.value": "4ElQJncU8p", + "identifiers.value": [ "4ElQJncU8p" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-v3a33KTr4g" + "title": "title-v3a33KTr4g" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"l\",\"label\":\"Ephemera\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "l", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "l", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "4ElQJncU8p" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json index a09f6f4a4..600288852 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.20.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.580295Z", - "id" : "lmxtr1wn", - "document" : { - "debug" : { - "source" : { - "id" : "lmxtr1wn", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.580295Z", + "id": "lmxtr1wn", + "document": { + "debug": { + "source": { + "id": "lmxtr1wn", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "IXCFVccBcF" + "ontologyType": "Work", + "value": "IXCFVccBcF" }, - "version" : 47, - "modifiedTime" : "2040-03-06T15:16:33Z" + "version": 47, + "modifiedTime": "2040-03-06T15:16:33Z" }, - "mergedTime" : "2040-03-06T15:16:33Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2040-03-06T15:16:33Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "lmxtr1wn", - "title" : "title-mlLNPr0YHU", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "s", - "label" : "E-sound", - "type" : "Format" + "display": { + "id": "lmxtr1wn", + "title": "title-mlLNPr0YHU", + "alternativeTitles": [ + ], + "workType": { + "id": "s", + "label": "E-sound", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "IXCFVccBcF", - "type" : "Identifier" + "value": "IXCFVccBcF", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "lmxtr1wn", - "sourceIdentifier.value" : "IXCFVccBcF", - "identifiers.value" : [ + "id": "lmxtr1wn", + "sourceIdentifier.value": "IXCFVccBcF", + "identifiers.value": [ "IXCFVccBcF" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-mlLNPr0YHU" + "title": "title-mlLNPr0YHU" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"s\",\"label\":\"E-sound\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "s", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "s", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "IXCFVccBcF" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json index 943950a93..b263c1394 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.21.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.580736Z", - "id" : "exjvuylz", - "document" : { - "debug" : { - "source" : { - "id" : "exjvuylz", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.580736Z", + "id": "exjvuylz", + "document": { + "debug": { + "source": { + "id": "exjvuylz", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "7V2pOSQnJO" + "ontologyType": "Work", + "value": "7V2pOSQnJO" }, - "version" : 50, - "modifiedTime" : "1971-07-30T21:22:12Z" + "version": 50, + "modifiedTime": "1971-07-30T21:22:12Z" }, - "mergedTime" : "1971-07-30T21:22:12Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-07-30T21:22:12Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "exjvuylz", - "title" : "title-BDWIViYo3q", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "j", - "label" : "E-journals", - "type" : "Format" + "display": { + "id": "exjvuylz", + "title": "title-BDWIViYo3q", + "alternativeTitles": [ + ], + "workType": { + "id": "j", + "label": "E-journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "7V2pOSQnJO", - "type" : "Identifier" + "value": "7V2pOSQnJO", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "exjvuylz", - "sourceIdentifier.value" : "7V2pOSQnJO", - "identifiers.value" : [ + "id": "exjvuylz", + "sourceIdentifier.value": "7V2pOSQnJO", + "identifiers.value": [ "7V2pOSQnJO" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-BDWIViYo3q" + "title": "title-BDWIViYo3q" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"j\",\"label\":\"E-journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "j", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "j", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "7V2pOSQnJO" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json index e10d0caa5..81d212727 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.22.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.581174Z", - "id" : "fnqpflgg", - "document" : { - "debug" : { - "source" : { - "id" : "fnqpflgg", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.581174Z", + "id": "fnqpflgg", + "document": { + "debug": { + "source": { + "id": "fnqpflgg", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "J0y4QwQTlr" + "ontologyType": "Work", + "value": "J0y4QwQTlr" }, - "version" : 57, - "modifiedTime" : "1967-06-20T04:44:31Z" + "version": 57, + "modifiedTime": "1967-06-20T04:44:31Z" }, - "mergedTime" : "1967-06-20T04:44:31Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1967-06-20T04:44:31Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "fnqpflgg", - "title" : "title-RAV0ZsJywt", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "f", - "label" : "E-videos", - "type" : "Format" + "display": { + "id": "fnqpflgg", + "title": "title-RAV0ZsJywt", + "alternativeTitles": [ + ], + "workType": { + "id": "f", + "label": "E-videos", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "J0y4QwQTlr", - "type" : "Identifier" + "value": "J0y4QwQTlr", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "fnqpflgg", - "sourceIdentifier.value" : "J0y4QwQTlr", - "identifiers.value" : [ + "id": "fnqpflgg", + "sourceIdentifier.value": "J0y4QwQTlr", + "identifiers.value": [ "J0y4QwQTlr" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-RAV0ZsJywt" + "title": "title-RAV0ZsJywt" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"f\",\"label\":\"E-videos\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "f", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "f", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "J0y4QwQTlr" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json index 4a89a74a6..18d00cc93 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.23.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.581599Z", - "id" : "y6iujg4j", - "document" : { - "debug" : { - "source" : { - "id" : "y6iujg4j", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.581599Z", + "id": "y6iujg4j", + "document": { + "debug": { + "source": { + "id": "y6iujg4j", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "xGjZEnp6i2" + "ontologyType": "Work", + "value": "xGjZEnp6i2" }, - "version" : 42, - "modifiedTime" : "2052-01-06T08:18:52Z" + "version": 42, + "modifiedTime": "2052-01-06T08:18:52Z" }, - "mergedTime" : "2052-01-06T08:18:52Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2052-01-06T08:18:52Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "y6iujg4j", - "title" : "title-CRDZnkaHR8", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "x", - "label" : "Manuscripts", - "type" : "Format" + "display": { + "id": "y6iujg4j", + "title": "title-CRDZnkaHR8", + "alternativeTitles": [ + ], + "workType": { + "id": "x", + "label": "Manuscripts", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "xGjZEnp6i2", - "type" : "Identifier" + "value": "xGjZEnp6i2", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "hQnFei9OwD", - "concepts" : [ + "label": "hQnFei9OwD", + "concepts": [ { - "label" : "HmXSsBa8UqTG3Gu", - "type" : "Concept" + "label": "HmXSsBa8UqTG3Gu", + "type": "Concept" }, { - "label" : "W07LA7wtXxMtg7d", - "type" : "Concept" + "label": "W07LA7wtXxMtg7d", + "type": "Concept" }, { - "label" : "koPI8hxmCeKjABF", - "type" : "Concept" + "label": "koPI8hxmCeKjABF", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "y6iujg4j", - "sourceIdentifier.value" : "xGjZEnp6i2", - "identifiers.value" : [ + "id": "y6iujg4j", + "sourceIdentifier.value": "xGjZEnp6i2", + "identifiers.value": [ "xGjZEnp6i2" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "HmXSsBa8UqTG3Gu", "W07LA7wtXxMtg7d", "koPI8hxmCeKjABF" ], - "title" : "title-CRDZnkaHR8" + "title": "title-CRDZnkaHR8" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"x\",\"label\":\"Manuscripts\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"hQnFei9OwD\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "x", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "x", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "hQnFei9OwD" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "xGjZEnp6i2" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json index 6832a7b1d..14fbb411d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.3.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.571573Z", - "id" : "z92kvukz", - "document" : { - "debug" : { - "source" : { - "id" : "z92kvukz", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.571573Z", + "id": "z92kvukz", + "document": { + "debug": { + "source": { + "id": "z92kvukz", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "8YItYtyWP3" + "ontologyType": "Work", + "value": "8YItYtyWP3" }, - "version" : 56, - "modifiedTime" : "2024-03-02T14:57:12Z" + "version": 56, + "modifiedTime": "2024-03-02T14:57:12Z" }, - "mergedTime" : "2024-03-02T14:57:12Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2024-03-02T14:57:12Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "z92kvukz", - "title" : "title-4ht9Z95L7c", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "e", - "label" : "Maps", - "type" : "Format" + "display": { + "id": "z92kvukz", + "title": "title-4ht9Z95L7c", + "alternativeTitles": [ + ], + "workType": { + "id": "e", + "label": "Maps", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "8YItYtyWP3", - "type" : "Identifier" + "value": "8YItYtyWP3", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "z92kvukz", - "sourceIdentifier.value" : "8YItYtyWP3", - "identifiers.value" : [ + "id": "z92kvukz", + "sourceIdentifier.value": "8YItYtyWP3", + "identifiers.value": [ "8YItYtyWP3" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-4ht9Z95L7c" + "title": "title-4ht9Z95L7c" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"e\",\"label\":\"Maps\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "e", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "e", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "8YItYtyWP3" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json index 61dc96d6c..61f5f6ba2 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.4.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.572042Z", - "id" : "m9cvkukq", - "document" : { - "debug" : { - "source" : { - "id" : "m9cvkukq", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.572042Z", + "id": "m9cvkukq", + "document": { + "debug": { + "source": { + "id": "m9cvkukq", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "66BwUadwA2" + "ontologyType": "Work", + "value": "66BwUadwA2" }, - "version" : 1, - "modifiedTime" : "1938-04-20T22:56:50Z" + "version": 1, + "modifiedTime": "1938-04-20T22:56:50Z" }, - "mergedTime" : "1938-04-20T22:56:50Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1938-04-20T22:56:50Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "m9cvkukq", - "title" : "title-ogxZlpWaXi", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "k", - "label" : "Pictures", - "type" : "Format" + "display": { + "id": "m9cvkukq", + "title": "title-ogxZlpWaXi", + "alternativeTitles": [ + ], + "workType": { + "id": "k", + "label": "Pictures", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "66BwUadwA2", - "type" : "Identifier" + "value": "66BwUadwA2", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "m9cvkukq", - "sourceIdentifier.value" : "66BwUadwA2", - "identifiers.value" : [ + "id": "m9cvkukq", + "sourceIdentifier.value": "66BwUadwA2", + "identifiers.value": [ "66BwUadwA2" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-ogxZlpWaXi" + "title": "title-ogxZlpWaXi" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "k", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "k", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "66BwUadwA2" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json index fe2c80a7a..f3c69cc50 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.5.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.572515Z", - "id" : "n4dq7ypg", - "document" : { - "debug" : { - "source" : { - "id" : "n4dq7ypg", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.572515Z", + "id": "n4dq7ypg", + "document": { + "debug": { + "source": { + "id": "n4dq7ypg", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "dBoRzqlD5L" + "ontologyType": "Work", + "value": "dBoRzqlD5L" }, - "version" : 37, - "modifiedTime" : "1962-10-07T16:30:13Z" + "version": 37, + "modifiedTime": "1962-10-07T16:30:13Z" }, - "mergedTime" : "1962-10-07T16:30:13Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1962-10-07T16:30:13Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "n4dq7ypg", - "title" : "title-B2SlRRldG9", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "w", - "label" : "Student dissertations", - "type" : "Format" + "display": { + "id": "n4dq7ypg", + "title": "title-B2SlRRldG9", + "alternativeTitles": [ + ], + "workType": { + "id": "w", + "label": "Student dissertations", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "dBoRzqlD5L", - "type" : "Identifier" + "value": "dBoRzqlD5L", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "6rJpSUKd2d", - "concepts" : [ + "label": "6rJpSUKd2d", + "concepts": [ { - "label" : "biOiRlog5DCYVH5", - "type" : "Concept" + "label": "biOiRlog5DCYVH5", + "type": "Concept" }, { - "label" : "TP1tcWDr9iToVJb", - "type" : "Concept" + "label": "TP1tcWDr9iToVJb", + "type": "Concept" }, { - "label" : "p9ESZHkohLBqVqY", - "type" : "Concept" + "label": "p9ESZHkohLBqVqY", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "n4dq7ypg", - "sourceIdentifier.value" : "dBoRzqlD5L", - "identifiers.value" : [ + "id": "n4dq7ypg", + "sourceIdentifier.value": "dBoRzqlD5L", + "identifiers.value": [ "dBoRzqlD5L" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "biOiRlog5DCYVH5", "TP1tcWDr9iToVJb", "p9ESZHkohLBqVqY" ], - "title" : "title-B2SlRRldG9" + "title": "title-B2SlRRldG9" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"w\",\"label\":\"Student dissertations\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"6rJpSUKd2d\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "w", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "w", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "6rJpSUKd2d" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "dBoRzqlD5L" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json index 415702833..746b9cba7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.6.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.572946Z", - "id" : "4cicdqpx", - "document" : { - "debug" : { - "source" : { - "id" : "4cicdqpx", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.572946Z", + "id": "4cicdqpx", + "document": { + "debug": { + "source": { + "id": "4cicdqpx", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "FU0kYbman5" + "ontologyType": "Work", + "value": "FU0kYbman5" }, - "version" : 16, - "modifiedTime" : "2048-11-03T20:54:50Z" + "version": 16, + "modifiedTime": "2048-11-03T20:54:50Z" }, - "mergedTime" : "2048-11-03T20:54:50Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2048-11-03T20:54:50Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "4cicdqpx", - "title" : "title-AZqajt54m4", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "r", - "label" : "3-D Objects", - "type" : "Format" + "display": { + "id": "4cicdqpx", + "title": "title-AZqajt54m4", + "alternativeTitles": [ + ], + "workType": { + "id": "r", + "label": "3-D Objects", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "FU0kYbman5", - "type" : "Identifier" + "value": "FU0kYbman5", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "4cicdqpx", - "sourceIdentifier.value" : "FU0kYbman5", - "identifiers.value" : [ + "id": "4cicdqpx", + "sourceIdentifier.value": "FU0kYbman5", + "identifiers.value": [ "FU0kYbman5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-AZqajt54m4" + "title": "title-AZqajt54m4" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"r\",\"label\":\"3-D Objects\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "r", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "r", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "FU0kYbman5" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json index 2e2a9da67..44f39b854 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.7.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.573376Z", - "id" : "p7zbfaov", - "document" : { - "debug" : { - "source" : { - "id" : "p7zbfaov", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.573376Z", + "id": "p7zbfaov", + "document": { + "debug": { + "source": { + "id": "p7zbfaov", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "pYub9JXopb" + "ontologyType": "Work", + "value": "pYub9JXopb" }, - "version" : 85, - "modifiedTime" : "1944-12-17T09:08:30Z" + "version": 85, + "modifiedTime": "1944-12-17T09:08:30Z" }, - "mergedTime" : "1944-12-17T09:08:30Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1944-12-17T09:08:30Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "p7zbfaov", - "title" : "title-IZx0zgHgbz", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "m", - "label" : "CD-Roms", - "type" : "Format" + "display": { + "id": "p7zbfaov", + "title": "title-IZx0zgHgbz", + "alternativeTitles": [ + ], + "workType": { + "id": "m", + "label": "CD-Roms", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "pYub9JXopb", - "type" : "Identifier" + "value": "pYub9JXopb", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "p7zbfaov", - "sourceIdentifier.value" : "pYub9JXopb", - "identifiers.value" : [ + "id": "p7zbfaov", + "sourceIdentifier.value": "pYub9JXopb", + "identifiers.value": [ "pYub9JXopb" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-IZx0zgHgbz" + "title": "title-IZx0zgHgbz" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"m\",\"label\":\"CD-Roms\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "m", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "m", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "pYub9JXopb" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json index 5435df135..0853a5652 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.8.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.573820Z", - "id" : "nuuq84cr", - "document" : { - "debug" : { - "source" : { - "id" : "nuuq84cr", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.573820Z", + "id": "nuuq84cr", + "document": { + "debug": { + "source": { + "id": "nuuq84cr", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "IzLCv3sMYa" + "ontologyType": "Work", + "value": "IzLCv3sMYa" }, - "version" : 39, - "modifiedTime" : "1954-05-22T01:33:53Z" + "version": 39, + "modifiedTime": "1954-05-22T01:33:53Z" }, - "mergedTime" : "1954-05-22T01:33:53Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1954-05-22T01:33:53Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "nuuq84cr", - "title" : "title-J5Ue8m3HVu", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "nuuq84cr", + "title": "title-J5Ue8m3HVu", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "IzLCv3sMYa", - "type" : "Identifier" + "value": "IzLCv3sMYa", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "nuuq84cr", - "sourceIdentifier.value" : "IzLCv3sMYa", - "identifiers.value" : [ + "id": "nuuq84cr", + "sourceIdentifier.value": "IzLCv3sMYa", + "identifiers.value": [ "IzLCv3sMYa" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-J5Ue8m3HVu" + "title": "title-J5Ue8m3HVu" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "IzLCv3sMYa" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json index 988c0a726..d72a362f7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json +++ b/common/search/src/test/resources/test_documents/works.examples.aggregation-with-filters-tests.9.json @@ -1,211 +1,211 @@ { - "description" : "examples for the aggregation-with-filters tests", - "createdAt" : "2024-11-13T08:43:26.574285Z", - "id" : "x1muoi8t", - "document" : { - "debug" : { - "source" : { - "id" : "x1muoi8t", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the aggregation-with-filters tests", + "createdAt": "2024-11-13T08:43:26.574285Z", + "id": "x1muoi8t", + "document": { + "debug": { + "source": { + "id": "x1muoi8t", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "s4RY14qUDX" + "ontologyType": "Work", + "value": "s4RY14qUDX" }, - "version" : 10, - "modifiedTime" : "2033-02-03T15:52:28Z" + "version": 10, + "modifiedTime": "2033-02-03T15:52:28Z" }, - "mergedTime" : "2033-02-03T15:52:28Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2033-02-03T15:52:28Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "x1muoi8t", - "title" : "title-8uFRfKD3vr", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "p", - "label" : "Mixed materials", - "type" : "Format" + "display": { + "id": "x1muoi8t", + "title": "title-8uFRfKD3vr", + "alternativeTitles": [ + ], + "workType": { + "id": "p", + "label": "Mixed materials", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "s4RY14qUDX", - "type" : "Identifier" + "value": "s4RY14qUDX", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "S4hioTvwQl", - "concepts" : [ + "label": "S4hioTvwQl", + "concepts": [ { - "label" : "eJkqVbD7mxTT1Dn", - "type" : "Concept" + "label": "eJkqVbD7mxTT1Dn", + "type": "Concept" }, { - "label" : "ad9SceRNaTElZtf", - "type" : "Concept" + "label": "ad9SceRNaTElZtf", + "type": "Concept" }, { - "label" : "G4qEc4MTvdPAcgp", - "type" : "Concept" + "label": "G4qEc4MTvdPAcgp", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "x1muoi8t", - "sourceIdentifier.value" : "s4RY14qUDX", - "identifiers.value" : [ + "id": "x1muoi8t", + "sourceIdentifier.value": "s4RY14qUDX", + "identifiers.value": [ "s4RY14qUDX" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "eJkqVbD7mxTT1Dn", "ad9SceRNaTElZtf", "G4qEc4MTvdPAcgp" ], - "title" : "title-8uFRfKD3vr" + "title": "title-8uFRfKD3vr" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"p\",\"label\":\"Mixed materials\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"S4hioTvwQl\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "p", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "p", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "S4hioTvwQl" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "s4RY14qUDX" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json index a7570ff77..c3fb60772 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.closed-only.json @@ -1,232 +1,232 @@ { - "description" : "examples for availabilities tests", - "createdAt" : "2024-11-13T08:43:26.655994Z", - "id" : "iopgf0nj", - "document" : { - "debug" : { - "source" : { - "id" : "iopgf0nj", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for availabilities tests", + "createdAt": "2024-11-13T08:43:26.655994Z", + "id": "iopgf0nj", + "document": { + "debug": { + "source": { + "id": "iopgf0nj", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "3glZntXsvt" + "ontologyType": "Work", + "value": "3glZntXsvt" }, - "version" : 64, - "modifiedTime" : "1940-10-05T05:45:04Z" + "version": 64, + "modifiedTime": "1940-10-05T05:45:04Z" }, - "mergedTime" : "1940-10-05T05:45:04Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1940-10-05T05:45:04Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "iopgf0nj", - "title" : "title-tuZQUd4A61", - "alternativeTitles" : [ + "display": { + "id": "iopgf0nj", + "title": "title-tuZQUd4A61", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "3glZntXsvt", - "type" : "Identifier" + "value": "3glZntXsvt", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "wpw7kqmd", - "identifiers" : [ + "id": "wpw7kqmd", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "vOEvkncTXy", - "type" : "Identifier" + "value": "vOEvkncTXy", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "LocationType" + "locationType": { + "id": "closed-stores", + "label": "Closed stores", + "type": "LocationType" }, - "label" : "locationLabel", - "license" : { - "id" : "ogl", - "label" : "Open Government Licence", - "url" : "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", - "type" : "License" + "label": "locationLabel", + "license": { + "id": "ogl", + "label": "Open Government Licence", + "url": "http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/", + "type": "License" }, - "shelfmark" : "Shelfmark: UIgSWmx", - "accessConditions" : [ + "shelfmark": "Shelfmark: UIgSWmx", + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "Availability" + "id": "closed-stores", + "label": "Closed stores", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "iopgf0nj", - "sourceIdentifier.value" : "3glZntXsvt", - "identifiers.value" : [ + "id": "iopgf0nj", + "sourceIdentifier.value": "3glZntXsvt", + "identifiers.value": [ "3glZntXsvt" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "wpw7kqmd" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "vOEvkncTXy" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ "Shelfmark: UIgSWmx" ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-tuZQUd4A61" + "title": "title-tuZQUd4A61" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"ogl\",\"label\":\"Open Government Licence\",\"url\":\"http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "3glZntXsvt" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "ogl" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "wpw7kqmd" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "vOEvkncTXy" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "closed-stores" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "closed-stores" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json index f3842b14d..cc8b7e1b9 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.everywhere.json @@ -1,321 +1,321 @@ { - "description" : "examples for availabilities tests", - "createdAt" : "2024-11-13T08:43:26.660241Z", - "id" : "9stpxl39", - "document" : { - "debug" : { - "source" : { - "id" : "9stpxl39", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for availabilities tests", + "createdAt": "2024-11-13T08:43:26.660241Z", + "id": "9stpxl39", + "document": { + "debug": { + "source": { + "id": "9stpxl39", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "iOhIDpmZQS" + "ontologyType": "Work", + "value": "iOhIDpmZQS" }, - "version" : 90, - "modifiedTime" : "2053-10-10T09:57:01Z" + "version": 90, + "modifiedTime": "2053-10-10T09:57:01Z" }, - "mergedTime" : "2053-10-10T09:57:01Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2053-10-10T09:57:01Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "9stpxl39", - "title" : "title-ZJBZp7GTBM", - "alternativeTitles" : [ + "display": { + "id": "9stpxl39", + "title": "title-ZJBZp7GTBM", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "iOhIDpmZQS", - "type" : "Identifier" + "value": "iOhIDpmZQS", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "qdr9gb06", - "identifiers" : [ + "id": "qdr9gb06", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "szcI3pLB8w", - "type" : "Identifier" + "value": "szcI3pLB8w", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "LocationType" + "locationType": { + "id": "closed-stores", + "label": "Closed stores", + "type": "LocationType" }, - "label" : "locationLabel", - "license" : { - "id" : "pdm", - "label" : "Public Domain Mark", - "url" : "https://creativecommons.org/share-your-work/public-domain/pdm/", - "type" : "License" + "label": "locationLabel", + "license": { + "id": "pdm", + "label": "Public Domain Mark", + "url": "https://creativecommons.org/share-your-work/public-domain/pdm/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "id" : "y1i7iplx", - "identifiers" : [ + "id": "y1i7iplx", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "9QmlF92mk9", - "type" : "Identifier" + "value": "9QmlF92mk9", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "open-shelves", - "label" : "Open shelves", - "type" : "LocationType" + "locationType": { + "id": "open-shelves", + "label": "Open shelves", + "type": "LocationType" }, - "label" : "locationLabel", - "shelfmark" : "Shelfmark: cCc2QL7V8", - "accessConditions" : [ + "label": "locationLabel", + "shelfmark": "Shelfmark: cCc2QL7V8", + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/AUd.jpg/info.json", - "linkText" : "Link text: zYQpvm", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/AUd.jpg/info.json", + "linkText": "Link text: zYQpvm", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "not-requestable", - "label" : "Not requestable", - "type" : "AccessMethod" + "method": { + "id": "not-requestable", + "label": "Not requestable", + "type": "AccessMethod" }, - "status" : { - "id" : "open-with-advisory", - "label" : "Open with advisory", - "type" : "AccessStatus" + "status": { + "id": "open-with-advisory", + "label": "Open with advisory", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "closed-stores", - "label" : "Closed stores", - "type" : "Availability" + "id": "closed-stores", + "label": "Closed stores", + "type": "Availability" }, { - "id" : "open-shelves", - "label" : "Open shelves", - "type" : "Availability" + "id": "open-shelves", + "label": "Open shelves", + "type": "Availability" }, { - "id" : "online", - "label" : "Online", - "type" : "Availability" + "id": "online", + "label": "Online", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "9stpxl39", - "sourceIdentifier.value" : "iOhIDpmZQS", - "identifiers.value" : [ + "id": "9stpxl39", + "sourceIdentifier.value": "iOhIDpmZQS", + "identifiers.value": [ "iOhIDpmZQS" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "qdr9gb06", "y1i7iplx" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "szcI3pLB8w", "9QmlF92mk9" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ "Shelfmark: cCc2QL7V8" ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-ZJBZp7GTBM" + "title": "title-ZJBZp7GTBM" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"pdm\",\"label\":\"Public Domain Mark\",\"url\":\"https://creativecommons.org/share-your-work/public-domain/pdm/\",\"type\":\"License\"}", "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"closed-stores\",\"label\":\"Closed stores\",\"type\":\"Availability\"}", "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}", "{\"id\":\"open-shelves\",\"label\":\"Open shelves\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "iOhIDpmZQS" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "pdm", "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "open-with-advisory" ], - "items.id" : [ + "items.id": [ "qdr9gb06", "y1i7iplx" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "szcI3pLB8w", "9QmlF92mk9" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "closed-stores", "open-shelves", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "closed-stores", "open-shelves", "online" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json index ed12331af..c18ab1b8d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.nowhere.json @@ -1,182 +1,182 @@ { - "description" : "examples for availabilities tests", - "createdAt" : "2024-11-13T08:43:26.658932Z", - "id" : "jy8lcdnc", - "document" : { - "debug" : { - "source" : { - "id" : "jy8lcdnc", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for availabilities tests", + "createdAt": "2024-11-13T08:43:26.658932Z", + "id": "jy8lcdnc", + "document": { + "debug": { + "source": { + "id": "jy8lcdnc", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "r5gilWx8gA" + "ontologyType": "Work", + "value": "r5gilWx8gA" }, - "version" : 60, - "modifiedTime" : "1938-04-17T00:01:19Z" + "version": 60, + "modifiedTime": "1938-04-17T00:01:19Z" }, - "mergedTime" : "1938-04-17T00:01:19Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1938-04-17T00:01:19Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "jy8lcdnc", - "title" : "title-EVdllKtj1b", - "alternativeTitles" : [ + "display": { + "id": "jy8lcdnc", + "title": "title-EVdllKtj1b", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "r5gilWx8gA", - "type" : "Identifier" + "value": "r5gilWx8gA", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jy8lcdnc", - "sourceIdentifier.value" : "r5gilWx8gA", - "identifiers.value" : [ + "id": "jy8lcdnc", + "sourceIdentifier.value": "r5gilWx8gA", + "identifiers.value": [ "r5gilWx8gA" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-EVdllKtj1b" + "title": "title-EVdllKtj1b" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "r5gilWx8gA" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json index d19b74126..8455aadcc 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.online-only.json @@ -1,230 +1,230 @@ { - "description" : "examples for availabilities tests", - "createdAt" : "2024-11-13T08:43:26.657688Z", - "id" : "yz6gwbs7", - "document" : { - "debug" : { - "source" : { - "id" : "yz6gwbs7", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for availabilities tests", + "createdAt": "2024-11-13T08:43:26.657688Z", + "id": "yz6gwbs7", + "document": { + "debug": { + "source": { + "id": "yz6gwbs7", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "DnY4M5JWvJ" + "ontologyType": "Work", + "value": "DnY4M5JWvJ" }, - "version" : 7, - "modifiedTime" : "2019-08-06T06:56:41Z" + "version": 7, + "modifiedTime": "2019-08-06T06:56:41Z" }, - "mergedTime" : "2019-08-06T06:56:41Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2019-08-06T06:56:41Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "yz6gwbs7", - "title" : "title-CJMNnr9kNr", - "alternativeTitles" : [ + "display": { + "id": "yz6gwbs7", + "title": "title-CJMNnr9kNr", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "DnY4M5JWvJ", - "type" : "Identifier" + "value": "DnY4M5JWvJ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/YBu.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/YBu.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ { - "method" : { - "id" : "not-requestable", - "label" : "Not requestable", - "type" : "AccessMethod" + "method": { + "id": "not-requestable", + "label": "Not requestable", + "type": "AccessMethod" }, - "status" : { - "id" : "open", - "label" : "Open", - "type" : "AccessStatus" + "status": { + "id": "open", + "label": "Open", + "type": "AccessStatus" }, - "type" : "AccessCondition" + "type": "AccessCondition" } ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "online", - "label" : "Online", - "type" : "Availability" + "id": "online", + "label": "Online", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "yz6gwbs7", - "sourceIdentifier.value" : "DnY4M5JWvJ", - "identifiers.value" : [ + "id": "yz6gwbs7", + "sourceIdentifier.value": "DnY4M5JWvJ", + "identifiers.value": [ "DnY4M5JWvJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-CJMNnr9kNr" + "title": "title-CJMNnr9kNr" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"online\",\"label\":\"Online\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "DnY4M5JWvJ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ "open" ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "online" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json b/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json index 8266fae1f..2946e9c3d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json +++ b/common/search/src/test/resources/test_documents/works.examples.availabilities.open-only.json @@ -1,224 +1,224 @@ { - "description" : "examples for availabilities tests", - "createdAt" : "2024-11-13T08:43:26.653938Z", - "id" : "fntlrk7n", - "document" : { - "debug" : { - "source" : { - "id" : "fntlrk7n", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for availabilities tests", + "createdAt": "2024-11-13T08:43:26.653938Z", + "id": "fntlrk7n", + "document": { + "debug": { + "source": { + "id": "fntlrk7n", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "y9pCp7jd9r" + "ontologyType": "Work", + "value": "y9pCp7jd9r" }, - "version" : 28, - "modifiedTime" : "2007-03-29T14:43:02Z" + "version": 28, + "modifiedTime": "2007-03-29T14:43:02Z" }, - "mergedTime" : "2007-03-29T14:43:02Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2007-03-29T14:43:02Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "fntlrk7n", - "title" : "title-d5hDXNpf0j", - "alternativeTitles" : [ + "display": { + "id": "fntlrk7n", + "title": "title-d5hDXNpf0j", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "y9pCp7jd9r", - "type" : "Identifier" + "value": "y9pCp7jd9r", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "tfqdc51h", - "identifiers" : [ + "id": "tfqdc51h", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "g38S97qOpH", - "type" : "Identifier" + "value": "g38S97qOpH", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "open-shelves", - "label" : "Open shelves", - "type" : "LocationType" + "locationType": { + "id": "open-shelves", + "label": "Open shelves", + "type": "LocationType" }, - "label" : "locationLabel", - "shelfmark" : "Shelfmark: l0IywWR", - "accessConditions" : [ + "label": "locationLabel", + "shelfmark": "Shelfmark: l0IywWR", + "accessConditions": [ ], - "type" : "PhysicalLocation" + "type": "PhysicalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ { - "id" : "open-shelves", - "label" : "Open shelves", - "type" : "Availability" + "id": "open-shelves", + "label": "Open shelves", + "type": "Availability" } ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "fntlrk7n", - "sourceIdentifier.value" : "y9pCp7jd9r", - "identifiers.value" : [ + "id": "fntlrk7n", + "sourceIdentifier.value": "y9pCp7jd9r", + "identifiers.value": [ "y9pCp7jd9r" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "tfqdc51h" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "g38S97qOpH" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ "Shelfmark: l0IywWR" ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-d5hDXNpf0j" + "title": "title-d5hDXNpf0j" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ "{\"id\":\"open-shelves\",\"label\":\"Open shelves\",\"type\":\"Availability\"}" ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "y9pCp7jd9r" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "tfqdc51h" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "g38S97qOpH" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "open-shelves" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ "open-shelves" ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json index eec828c2e..eaf5fb845 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.0.json @@ -1,195 +1,195 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.618807Z", - "id" : "ijnwmvup", - "document" : { - "debug" : { - "source" : { - "id" : "ijnwmvup", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.618807Z", + "id": "ijnwmvup", + "document": { + "debug": { + "source": { + "id": "ijnwmvup", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "Kd2KzPZAnM" + "ontologyType": "Work", + "value": "Kd2KzPZAnM" }, - "version" : 98, - "modifiedTime" : "1968-12-03T01:32:55Z" + "version": 98, + "modifiedTime": "1968-12-03T01:32:55Z" }, - "mergedTime" : "1968-12-03T01:32:55Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1968-12-03T01:32:55Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ijnwmvup", - "title" : "title-uMNql7LBhP", - "alternativeTitles" : [ + "display": { + "id": "ijnwmvup", + "title": "title-uMNql7LBhP", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "Bath, Patricia", - "type" : "Person" + "agent": { + "label": "Bath, Patricia", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Kd2KzPZAnM", - "type" : "Identifier" + "value": "Kd2KzPZAnM", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Bath, Patricia" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ijnwmvup", - "sourceIdentifier.value" : "Kd2KzPZAnM", - "identifiers.value" : [ + "id": "ijnwmvup", + "sourceIdentifier.value": "Kd2KzPZAnM", + "identifiers.value": [ "Kd2KzPZAnM" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-uMNql7LBhP" + "title": "title-uMNql7LBhP" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"Bath, Patricia\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Bath, Patricia" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Kd2KzPZAnM" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json index bfbbafa1d..e9090cac9 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.1.json @@ -1,195 +1,195 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.619301Z", - "id" : "mzvvcba0", - "document" : { - "debug" : { - "source" : { - "id" : "mzvvcba0", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.619301Z", + "id": "mzvvcba0", + "document": { + "debug": { + "source": { + "id": "mzvvcba0", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "gDuSiI3pPI" + "ontologyType": "Work", + "value": "gDuSiI3pPI" }, - "version" : 29, - "modifiedTime" : "1993-02-03T00:28:21Z" + "version": 29, + "modifiedTime": "1993-02-03T00:28:21Z" }, - "mergedTime" : "1993-02-03T00:28:21Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1993-02-03T00:28:21Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "mzvvcba0", - "title" : "title-h0iB2aGWT6", - "alternativeTitles" : [ + "display": { + "id": "mzvvcba0", + "title": "title-h0iB2aGWT6", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "Karl Marx", - "type" : "Person" + "agent": { + "label": "Karl Marx", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "gDuSiI3pPI", - "type" : "Identifier" + "value": "gDuSiI3pPI", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Karl Marx" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mzvvcba0", - "sourceIdentifier.value" : "gDuSiI3pPI", - "identifiers.value" : [ + "id": "mzvvcba0", + "sourceIdentifier.value": "gDuSiI3pPI", + "identifiers.value": [ "gDuSiI3pPI" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-h0iB2aGWT6" + "title": "title-h0iB2aGWT6" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"Karl Marx\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Karl Marx" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "gDuSiI3pPI" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json index e06e1e11d..921957b28 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.2.json @@ -1,195 +1,195 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.619693Z", - "id" : "5ramofto", - "document" : { - "debug" : { - "source" : { - "id" : "5ramofto", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.619693Z", + "id": "5ramofto", + "document": { + "debug": { + "source": { + "id": "5ramofto", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "iZ6KWys5lZ" + "ontologyType": "Work", + "value": "iZ6KWys5lZ" }, - "version" : 77, - "modifiedTime" : "1998-03-21T07:04:06Z" + "version": 77, + "modifiedTime": "1998-03-21T07:04:06Z" }, - "mergedTime" : "1998-03-21T07:04:06Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1998-03-21T07:04:06Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "5ramofto", - "title" : "title-5bCvMTmP7w", - "alternativeTitles" : [ + "display": { + "id": "5ramofto", + "title": "title-5bCvMTmP7w", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "Jake Paul", - "type" : "Person" + "agent": { + "label": "Jake Paul", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "iZ6KWys5lZ", - "type" : "Identifier" + "value": "iZ6KWys5lZ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Jake Paul" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "5ramofto", - "sourceIdentifier.value" : "iZ6KWys5lZ", - "identifiers.value" : [ + "id": "5ramofto", + "sourceIdentifier.value": "iZ6KWys5lZ", + "identifiers.value": [ "iZ6KWys5lZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-5bCvMTmP7w" + "title": "title-5bCvMTmP7w" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"Jake Paul\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Jake Paul" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "iZ6KWys5lZ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json index 55b8b338d..8f12c5ee3 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.3.json @@ -1,195 +1,195 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.620130Z", - "id" : "816tru6j", - "document" : { - "debug" : { - "source" : { - "id" : "816tru6j", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.620130Z", + "id": "816tru6j", + "document": { + "debug": { + "source": { + "id": "816tru6j", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "9jNNS7lxBF" + "ontologyType": "Work", + "value": "9jNNS7lxBF" }, - "version" : 90, - "modifiedTime" : "1969-03-18T15:11:34Z" + "version": 90, + "modifiedTime": "1969-03-18T15:11:34Z" }, - "mergedTime" : "1969-03-18T15:11:34Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1969-03-18T15:11:34Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "816tru6j", - "title" : "title-q4UJD6zf5r", - "alternativeTitles" : [ + "display": { + "id": "816tru6j", + "title": "title-q4UJD6zf5r", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "Darwin \"Jones\", Charles", - "type" : "Person" + "agent": { + "label": "Darwin \"Jones\", Charles", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "9jNNS7lxBF", - "type" : "Identifier" + "value": "9jNNS7lxBF", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Darwin \"Jones\", Charles" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "816tru6j", - "sourceIdentifier.value" : "9jNNS7lxBF", - "identifiers.value" : [ + "id": "816tru6j", + "sourceIdentifier.value": "9jNNS7lxBF", + "identifiers.value": [ "9jNNS7lxBF" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-q4UJD6zf5r" + "title": "title-q4UJD6zf5r" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Darwin \"Jones\", Charles" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "9jNNS7lxBF" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json index 5747d5cff..919f35d54 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.4.json @@ -1,208 +1,208 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.620588Z", - "id" : "xuni2iqa", - "document" : { - "debug" : { - "source" : { - "id" : "xuni2iqa", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.620588Z", + "id": "xuni2iqa", + "document": { + "debug": { + "source": { + "id": "xuni2iqa", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "XzQw5jYpuB" + "ontologyType": "Work", + "value": "XzQw5jYpuB" }, - "version" : 100, - "modifiedTime" : "1968-08-03T10:25:48Z" + "version": 100, + "modifiedTime": "1968-08-03T10:25:48Z" }, - "mergedTime" : "1968-08-03T10:25:48Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1968-08-03T10:25:48Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "xuni2iqa", - "title" : "title-I2SUm7p7NJ", - "alternativeTitles" : [ + "display": { + "id": "xuni2iqa", + "title": "title-I2SUm7p7NJ", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ { - "agent" : { - "label" : "Bath, Patricia", - "type" : "Person" + "agent": { + "label": "Bath, Patricia", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" }, { - "agent" : { - "label" : "Darwin \"Jones\", Charles", - "type" : "Person" + "agent": { + "label": "Darwin \"Jones\", Charles", + "type": "Person" }, - "roles" : [ + "roles": [ ], - "primary" : true, - "type" : "Contributor" + "primary": true, + "type": "Contributor" } ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "XzQw5jYpuB", - "type" : "Identifier" + "value": "XzQw5jYpuB", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Bath, Patricia", "Darwin \"Jones\", Charles" ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "xuni2iqa", - "sourceIdentifier.value" : "XzQw5jYpuB", - "identifiers.value" : [ + "id": "xuni2iqa", + "sourceIdentifier.value": "XzQw5jYpuB", + "identifiers.value": [ "XzQw5jYpuB" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-I2SUm7p7NJ" + "title": "title-I2SUm7p7NJ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "{\"label\":\"Bath, Patricia\",\"type\":\"Person\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"type\":\"Person\"}" ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ "Bath, Patricia", "Darwin \"Jones\", Charles" ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "XzQw5jYpuB" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json index e689ad42e..dd0b736dc 100644 --- a/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.contributor-filters-tests.5.json @@ -1,182 +1,182 @@ { - "description" : "examples for the contributor filter tests", - "createdAt" : "2024-11-13T08:43:26.620907Z", - "id" : "syv21f7g", - "document" : { - "debug" : { - "source" : { - "id" : "syv21f7g", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the contributor filter tests", + "createdAt": "2024-11-13T08:43:26.620907Z", + "id": "syv21f7g", + "document": { + "debug": { + "source": { + "id": "syv21f7g", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "4Dxc6NTEVZ" + "ontologyType": "Work", + "value": "4Dxc6NTEVZ" }, - "version" : 40, - "modifiedTime" : "2031-05-07T13:00:36Z" + "version": 40, + "modifiedTime": "2031-05-07T13:00:36Z" }, - "mergedTime" : "2031-05-07T13:00:36Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2031-05-07T13:00:36Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "syv21f7g", - "title" : "title-bSjf9AwXjw", - "alternativeTitles" : [ + "display": { + "id": "syv21f7g", + "title": "title-bSjf9AwXjw", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "4Dxc6NTEVZ", - "type" : "Identifier" + "value": "4Dxc6NTEVZ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "syv21f7g", - "sourceIdentifier.value" : "4Dxc6NTEVZ", - "identifiers.value" : [ + "id": "syv21f7g", + "sourceIdentifier.value": "4Dxc6NTEVZ", + "identifiers.value": [ "4Dxc6NTEVZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-bSjf9AwXjw" + "title": "title-bSjf9AwXjw" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "4Dxc6NTEVZ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json index 00f0288da..926e7901f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Collection.json @@ -1,182 +1,182 @@ { - "description" : "examples of works with different types", - "createdAt" : "2024-11-13T08:43:26.598122Z", - "id" : "osineemq", - "document" : { - "debug" : { - "source" : { - "id" : "osineemq", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples of works with different types", + "createdAt": "2024-11-13T08:43:26.598122Z", + "id": "osineemq", + "document": { + "debug": { + "source": { + "id": "osineemq", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "oFYwsvmZKL" + "ontologyType": "Work", + "value": "oFYwsvmZKL" }, - "version" : 88, - "modifiedTime" : "1982-02-15T00:55:59Z" + "version": 88, + "modifiedTime": "1982-02-15T00:55:59Z" }, - "mergedTime" : "1982-02-15T00:55:59Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1982-02-15T00:55:59Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "osineemq", - "title" : "rats", - "alternativeTitles" : [ + "display": { + "id": "osineemq", + "title": "rats", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "oFYwsvmZKL", - "type" : "Identifier" + "value": "oFYwsvmZKL", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Collection" + "type": "Collection" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "osineemq", - "sourceIdentifier.value" : "oFYwsvmZKL", - "identifiers.value" : [ + "id": "osineemq", + "sourceIdentifier.value": "oFYwsvmZKL", + "identifiers.value": [ "oFYwsvmZKL" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Collection", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Collection", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "oFYwsvmZKL" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json index 69734dc27..5976f2036 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Section.json @@ -1,182 +1,182 @@ { - "description" : "examples of works with different types", - "createdAt" : "2024-11-13T08:43:26.596883Z", - "id" : "48vvelyd", - "document" : { - "debug" : { - "source" : { - "id" : "48vvelyd", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples of works with different types", + "createdAt": "2024-11-13T08:43:26.596883Z", + "id": "48vvelyd", + "document": { + "debug": { + "source": { + "id": "48vvelyd", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "eiJRew3RmJ" + "ontologyType": "Work", + "value": "eiJRew3RmJ" }, - "version" : 38, - "modifiedTime" : "1943-05-14T19:16:03Z" + "version": 38, + "modifiedTime": "1943-05-14T19:16:03Z" }, - "mergedTime" : "1943-05-14T19:16:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1943-05-14T19:16:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "48vvelyd", - "title" : "rats", - "alternativeTitles" : [ + "display": { + "id": "48vvelyd", + "title": "rats", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "eiJRew3RmJ", - "type" : "Identifier" + "value": "eiJRew3RmJ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Section" + "type": "Section" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "48vvelyd", - "sourceIdentifier.value" : "eiJRew3RmJ", - "identifiers.value" : [ + "id": "48vvelyd", + "sourceIdentifier.value": "eiJRew3RmJ", + "identifiers.value": [ "eiJRew3RmJ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Section", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Section", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "eiJRew3RmJ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json index 13fd9f867..25ad80017 100644 --- a/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json +++ b/common/search/src/test/resources/test_documents/works.examples.different-work-types.Series.json @@ -1,182 +1,182 @@ { - "description" : "examples of works with different types", - "createdAt" : "2024-11-13T08:43:26.599808Z", - "id" : "pbeanc7x", - "document" : { - "debug" : { - "source" : { - "id" : "pbeanc7x", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples of works with different types", + "createdAt": "2024-11-13T08:43:26.599808Z", + "id": "pbeanc7x", + "document": { + "debug": { + "source": { + "id": "pbeanc7x", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "ZmmbPJWDqm" + "ontologyType": "Work", + "value": "ZmmbPJWDqm" }, - "version" : 82, - "modifiedTime" : "2049-02-26T19:42:13Z" + "version": 82, + "modifiedTime": "2049-02-26T19:42:13Z" }, - "mergedTime" : "2049-02-26T19:42:13Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2049-02-26T19:42:13Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "pbeanc7x", - "title" : "rats", - "alternativeTitles" : [ + "display": { + "id": "pbeanc7x", + "title": "rats", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ZmmbPJWDqm", - "type" : "Identifier" + "value": "ZmmbPJWDqm", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Series" + "type": "Series" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "pbeanc7x", - "sourceIdentifier.value" : "ZmmbPJWDqm", - "identifiers.value" : [ + "id": "pbeanc7x", + "sourceIdentifier.value": "ZmmbPJWDqm", + "identifiers.value": [ "ZmmbPJWDqm" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Series", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Series", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ZmmbPJWDqm" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json index b948b7718..78038f193 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.0.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.643155Z", - "id" : "pgnx8xiu", - "document" : { - "debug" : { - "source" : { - "id" : "pgnx8xiu", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.643155Z", + "id": "pgnx8xiu", + "document": { + "debug": { + "source": { + "id": "pgnx8xiu", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "ahC4keAffG" + "ontologyType": "Work", + "value": "ahC4keAffG" }, - "version" : 53, - "modifiedTime" : "2044-04-23T02:39:03Z" + "version": 53, + "modifiedTime": "2044-04-23T02:39:03Z" }, - "mergedTime" : "2044-04-23T02:39:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2044-04-23T02:39:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "pgnx8xiu", - "title" : "rats", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "pgnx8xiu", + "title": "rats", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ahC4keAffG", - "type" : "Identifier" + "value": "ahC4keAffG", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "bak", - "label" : "Bashkir", - "type" : "Language" + "id": "bak", + "label": "Bashkir", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "pgnx8xiu", - "sourceIdentifier.value" : "ahC4keAffG", - "identifiers.value" : [ + "id": "pgnx8xiu", + "sourceIdentifier.value": "ahC4keAffG", + "identifiers.value": [ "ahC4keAffG" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Bashkir" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "bak" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ahC4keAffG" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json index 5f17183e8..949e57894 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.1.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.643470Z", - "id" : "ryawvgup", - "document" : { - "debug" : { - "source" : { - "id" : "ryawvgup", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.643470Z", + "id": "ryawvgup", + "document": { + "debug": { + "source": { + "id": "ryawvgup", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "jHeY6Fz9Kp" + "ontologyType": "Work", + "value": "jHeY6Fz9Kp" }, - "version" : 72, - "modifiedTime" : "2059-12-28T14:23:34Z" + "version": 72, + "modifiedTime": "2059-12-28T14:23:34Z" }, - "mergedTime" : "2059-12-28T14:23:34Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2059-12-28T14:23:34Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ryawvgup", - "title" : "capybara", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "ryawvgup", + "title": "capybara", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "jHeY6Fz9Kp", - "type" : "Identifier" + "value": "jHeY6Fz9Kp", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "mar", - "label" : "Marathi", - "type" : "Language" + "id": "mar", + "label": "Marathi", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ryawvgup", - "sourceIdentifier.value" : "jHeY6Fz9Kp", - "identifiers.value" : [ + "id": "ryawvgup", + "sourceIdentifier.value": "jHeY6Fz9Kp", + "identifiers.value": [ "jHeY6Fz9Kp" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Marathi" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "capybara" + "title": "capybara" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"mar\",\"label\":\"Marathi\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "mar" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "jHeY6Fz9Kp" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json index b5cbc2b8a..daaf046b7 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.2.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.643763Z", - "id" : "z5orxsbq", - "document" : { - "debug" : { - "source" : { - "id" : "z5orxsbq", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.643763Z", + "id": "z5orxsbq", + "document": { + "debug": { + "source": { + "id": "z5orxsbq", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "K1TpzZmCli" + "ontologyType": "Work", + "value": "K1TpzZmCli" }, - "version" : 66, - "modifiedTime" : "1981-06-28T10:43:18Z" + "version": 66, + "modifiedTime": "1981-06-28T10:43:18Z" }, - "mergedTime" : "1981-06-28T10:43:18Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1981-06-28T10:43:18Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "z5orxsbq", - "title" : "tapirs", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "k", - "label" : "Pictures", - "type" : "Format" + "display": { + "id": "z5orxsbq", + "title": "tapirs", + "alternativeTitles": [ + ], + "workType": { + "id": "k", + "label": "Pictures", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "K1TpzZmCli", - "type" : "Identifier" + "value": "K1TpzZmCli", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "que", - "label" : "Quechua", - "type" : "Language" + "id": "que", + "label": "Quechua", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "z5orxsbq", - "sourceIdentifier.value" : "K1TpzZmCli", - "identifiers.value" : [ + "id": "z5orxsbq", + "sourceIdentifier.value": "K1TpzZmCli", + "identifiers.value": [ "K1TpzZmCli" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Quechua" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "tapirs" + "title": "tapirs" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "k", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "k", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "que" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "K1TpzZmCli" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json index 833ce7927..74d1cf5ed 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.3.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.644082Z", - "id" : "sts5c3ls", - "document" : { - "debug" : { - "source" : { - "id" : "sts5c3ls", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.644082Z", + "id": "sts5c3ls", + "document": { + "debug": { + "source": { + "id": "sts5c3ls", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "bQuZPdet7f" + "ontologyType": "Work", + "value": "bQuZPdet7f" }, - "version" : 36, - "modifiedTime" : "1950-01-25T21:30:47Z" + "version": 36, + "modifiedTime": "1950-01-25T21:30:47Z" }, - "mergedTime" : "1950-01-25T21:30:47Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1950-01-25T21:30:47Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "sts5c3ls", - "title" : "rats", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "sts5c3ls", + "title": "rats", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "bQuZPdet7f", - "type" : "Identifier" + "value": "bQuZPdet7f", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "bak", - "label" : "Bashkir", - "type" : "Language" + "id": "bak", + "label": "Bashkir", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "sts5c3ls", - "sourceIdentifier.value" : "bQuZPdet7f", - "identifiers.value" : [ + "id": "sts5c3ls", + "sourceIdentifier.value": "bQuZPdet7f", + "identifiers.value": [ "bQuZPdet7f" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Bashkir" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "bak" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "bQuZPdet7f" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json index 0361c5431..2e03e72f2 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.4.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.644366Z", - "id" : "ursfcpyu", - "document" : { - "debug" : { - "source" : { - "id" : "ursfcpyu", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.644366Z", + "id": "ursfcpyu", + "document": { + "debug": { + "source": { + "id": "ursfcpyu", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "DATqKSqlcV" + "ontologyType": "Work", + "value": "DATqKSqlcV" }, - "version" : 18, - "modifiedTime" : "2068-12-03T06:41:51Z" + "version": 18, + "modifiedTime": "2068-12-03T06:41:51Z" }, - "mergedTime" : "2068-12-03T06:41:51Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2068-12-03T06:41:51Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ursfcpyu", - "title" : "capybara", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "ursfcpyu", + "title": "capybara", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "DATqKSqlcV", - "type" : "Identifier" + "value": "DATqKSqlcV", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "bak", - "label" : "Bashkir", - "type" : "Language" + "id": "bak", + "label": "Bashkir", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ursfcpyu", - "sourceIdentifier.value" : "DATqKSqlcV", - "identifiers.value" : [ + "id": "ursfcpyu", + "sourceIdentifier.value": "DATqKSqlcV", + "identifiers.value": [ "DATqKSqlcV" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Bashkir" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "capybara" + "title": "capybara" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "bak" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "DATqKSqlcV" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json index 8ac9e8086..e901ed2b9 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.5.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.644673Z", - "id" : "crmdnx7u", - "document" : { - "debug" : { - "source" : { - "id" : "crmdnx7u", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.644673Z", + "id": "crmdnx7u", + "document": { + "debug": { + "source": { + "id": "crmdnx7u", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "7z5sgyOBC4" + "ontologyType": "Work", + "value": "7z5sgyOBC4" }, - "version" : 86, - "modifiedTime" : "2054-08-12T01:30:45Z" + "version": 86, + "modifiedTime": "2054-08-12T01:30:45Z" }, - "mergedTime" : "2054-08-12T01:30:45Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2054-08-12T01:30:45Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "crmdnx7u", - "title" : "tapirs", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "crmdnx7u", + "title": "tapirs", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "7z5sgyOBC4", - "type" : "Identifier" + "value": "7z5sgyOBC4", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "bak", - "label" : "Bashkir", - "type" : "Language" + "id": "bak", + "label": "Bashkir", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "crmdnx7u", - "sourceIdentifier.value" : "7z5sgyOBC4", - "identifiers.value" : [ + "id": "crmdnx7u", + "sourceIdentifier.value": "7z5sgyOBC4", + "identifiers.value": [ "7z5sgyOBC4" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Bashkir" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "tapirs" + "title": "tapirs" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"bak\",\"label\":\"Bashkir\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "bak" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "7z5sgyOBC4" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json index 724cdd138..415318a1c 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.6.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.644979Z", - "id" : "7dzlu1am", - "document" : { - "debug" : { - "source" : { - "id" : "7dzlu1am", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.644979Z", + "id": "7dzlu1am", + "document": { + "debug": { + "source": { + "id": "7dzlu1am", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "2z2trB0Sw2" + "ontologyType": "Work", + "value": "2z2trB0Sw2" }, - "version" : 87, - "modifiedTime" : "2005-08-09T18:48:42Z" + "version": 87, + "modifiedTime": "2005-08-09T18:48:42Z" }, - "mergedTime" : "2005-08-09T18:48:42Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2005-08-09T18:48:42Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "7dzlu1am", - "title" : "rats", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "7dzlu1am", + "title": "rats", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "2z2trB0Sw2", - "type" : "Identifier" + "value": "2z2trB0Sw2", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "que", - "label" : "Quechua", - "type" : "Language" + "id": "que", + "label": "Quechua", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "7dzlu1am", - "sourceIdentifier.value" : "2z2trB0Sw2", - "identifiers.value" : [ + "id": "7dzlu1am", + "sourceIdentifier.value": "2z2trB0Sw2", + "identifiers.value": [ "2z2trB0Sw2" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Quechua" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "que" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "2z2trB0Sw2" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json index 7c4fa7456..feb205d9f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.7.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.645281Z", - "id" : "rfckqwuh", - "document" : { - "debug" : { - "source" : { - "id" : "rfckqwuh", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.645281Z", + "id": "rfckqwuh", + "document": { + "debug": { + "source": { + "id": "rfckqwuh", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "e1HWk1Ah2x" + "ontologyType": "Work", + "value": "e1HWk1Ah2x" }, - "version" : 48, - "modifiedTime" : "1997-05-16T00:21:21Z" + "version": 48, + "modifiedTime": "1997-05-16T00:21:21Z" }, - "mergedTime" : "1997-05-16T00:21:21Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1997-05-16T00:21:21Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "rfckqwuh", - "title" : "capybara", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "rfckqwuh", + "title": "capybara", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "e1HWk1Ah2x", - "type" : "Identifier" + "value": "e1HWk1Ah2x", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "mar", - "label" : "Marathi", - "type" : "Language" + "id": "mar", + "label": "Marathi", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "rfckqwuh", - "sourceIdentifier.value" : "e1HWk1Ah2x", - "identifiers.value" : [ + "id": "rfckqwuh", + "sourceIdentifier.value": "e1HWk1Ah2x", + "identifiers.value": [ "e1HWk1Ah2x" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Marathi" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "capybara" + "title": "capybara" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"mar\",\"label\":\"Marathi\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "mar" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "e1HWk1Ah2x" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json index 8abc7bb77..8ef15c293 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.8.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.645597Z", - "id" : "el5rbb4t", - "document" : { - "debug" : { - "source" : { - "id" : "el5rbb4t", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.645597Z", + "id": "el5rbb4t", + "document": { + "debug": { + "source": { + "id": "el5rbb4t", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "uNmLrXrfr8" + "ontologyType": "Work", + "value": "uNmLrXrfr8" }, - "version" : 48, - "modifiedTime" : "2036-09-29T11:49:16Z" + "version": 48, + "modifiedTime": "2036-09-29T11:49:16Z" }, - "mergedTime" : "2036-09-29T11:49:16Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2036-09-29T11:49:16Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "el5rbb4t", - "title" : "tapirs", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "el5rbb4t", + "title": "tapirs", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "uNmLrXrfr8", - "type" : "Identifier" + "value": "uNmLrXrfr8", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "que", - "label" : "Quechua", - "type" : "Language" + "id": "que", + "label": "Quechua", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "el5rbb4t", - "sourceIdentifier.value" : "uNmLrXrfr8", - "identifiers.value" : [ + "id": "el5rbb4t", + "sourceIdentifier.value": "uNmLrXrfr8", + "identifiers.value": [ "uNmLrXrfr8" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Quechua" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "tapirs" + "title": "tapirs" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"que\",\"label\":\"Quechua\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "que" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "uNmLrXrfr8" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json index 9d8e44bc3..e4f457d90 100644 --- a/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json +++ b/common/search/src/test/resources/test_documents/works.examples.filtered-aggregations-tests.9.json @@ -1,196 +1,196 @@ { - "description" : "examples for the works filtered aggregations tests", - "createdAt" : "2024-11-13T08:43:26.645904Z", - "id" : "svnlbwse", - "document" : { - "debug" : { - "source" : { - "id" : "svnlbwse", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the works filtered aggregations tests", + "createdAt": "2024-11-13T08:43:26.645904Z", + "id": "svnlbwse", + "document": { + "debug": { + "source": { + "id": "svnlbwse", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "JFu0QVu8iR" + "ontologyType": "Work", + "value": "JFu0QVu8iR" }, - "version" : 62, - "modifiedTime" : "2025-11-29T16:51:43Z" + "version": 62, + "modifiedTime": "2025-11-29T16:51:43Z" }, - "mergedTime" : "2025-11-29T16:51:43Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2025-11-29T16:51:43Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "svnlbwse", - "title" : "rats", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "svnlbwse", + "title": "rats", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "JFu0QVu8iR", - "type" : "Identifier" + "value": "JFu0QVu8iR", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "che", - "label" : "Chechen", - "type" : "Language" + "id": "che", + "label": "Chechen", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "svnlbwse", - "sourceIdentifier.value" : "JFu0QVu8iR", - "identifiers.value" : [ + "id": "svnlbwse", + "sourceIdentifier.value": "JFu0QVu8iR", + "identifiers.value": [ "JFu0QVu8iR" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Chechen" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "rats" + "title": "rats" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"che\",\"label\":\"Chechen\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "che" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "JFu0QVu8iR" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json index 00261dd33..3357cf519 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.0.json @@ -1,226 +1,226 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.602371Z", - "id" : "xowd5kj1", - "document" : { - "debug" : { - "source" : { - "id" : "xowd5kj1", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.602371Z", + "id": "xowd5kj1", + "document": { + "debug": { + "source": { + "id": "xowd5kj1", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "tYS1KOlZmZ" + "ontologyType": "Work", + "value": "tYS1KOlZmZ" }, - "version" : 99, - "modifiedTime" : "1971-02-26T13:40:07Z" + "version": 99, + "modifiedTime": "1971-02-26T13:40:07Z" }, - "mergedTime" : "1971-02-26T13:40:07Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-02-26T13:40:07Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "xowd5kj1", - "title" : "title-X3OfWNE6m5", - "alternativeTitles" : [ + "display": { + "id": "xowd5kj1", + "title": "title-X3OfWNE6m5", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "tYS1KOlZmZ", - "type" : "Identifier" + "value": "tYS1KOlZmZ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Annual reports", - "concepts" : [ + "label": "Annual reports", + "concepts": [ { - "id" : "g00dcafe", - "identifiers" : [ + "id": "g00dcafe", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "T9fhswtSuP", - "type" : "Identifier" + "value": "T9fhswtSuP", + "type": "Identifier" } ], - "label" : "mWNKiLGpm85YYFF", - "type" : "Genre" + "label": "mWNKiLGpm85YYFF", + "type": "Genre" }, { - "id" : "baadf00d", - "identifiers" : [ + "id": "baadf00d", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "WKJQbCBtOF", - "type" : "Identifier" + "value": "WKJQbCBtOF", + "type": "Identifier" } ], - "label" : "Oo0o5Odfdodercw", - "type" : "Concept" + "label": "Oo0o5Odfdodercw", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "mWNKiLGpm85YYFF", "Oo0o5Odfdodercw" ], - "id" : "xowd5kj1", - "sourceIdentifier.value" : "tYS1KOlZmZ", - "identifiers.value" : [ + "id": "xowd5kj1", + "sourceIdentifier.value": "tYS1KOlZmZ", + "identifiers.value": [ "tYS1KOlZmZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-X3OfWNE6m5" + "title": "title-X3OfWNE6m5" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Annual reports\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Annual reports" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "g00dcafe" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "T9fhswtSuP" ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "tYS1KOlZmZ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json index bd41c3d0f..c4d0112df 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.1.json @@ -1,209 +1,209 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.602785Z", - "id" : "yzj9dwdl", - "document" : { - "debug" : { - "source" : { - "id" : "yzj9dwdl", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.602785Z", + "id": "yzj9dwdl", + "document": { + "debug": { + "source": { + "id": "yzj9dwdl", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "AYys6jP7Ji" + "ontologyType": "Work", + "value": "AYys6jP7Ji" }, - "version" : 36, - "modifiedTime" : "1955-12-24T22:52:57Z" + "version": 36, + "modifiedTime": "1955-12-24T22:52:57Z" }, - "mergedTime" : "1955-12-24T22:52:57Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1955-12-24T22:52:57Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "yzj9dwdl", - "title" : "title-2RdbNpFC2P", - "alternativeTitles" : [ + "display": { + "id": "yzj9dwdl", + "title": "title-2RdbNpFC2P", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "AYys6jP7Ji", - "type" : "Identifier" + "value": "AYys6jP7Ji", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Pamphlets", - "concepts" : [ + "label": "Pamphlets", + "concepts": [ { - "id" : "g00dcafe", - "identifiers" : [ + "id": "g00dcafe", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "dmKTFidDls", - "type" : "Identifier" + "value": "dmKTFidDls", + "type": "Identifier" } ], - "label" : "9X3cVR8q4GIgcsJ", - "type" : "Genre" + "label": "9X3cVR8q4GIgcsJ", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "9X3cVR8q4GIgcsJ" ], - "id" : "yzj9dwdl", - "sourceIdentifier.value" : "AYys6jP7Ji", - "identifiers.value" : [ + "id": "yzj9dwdl", + "sourceIdentifier.value": "AYys6jP7Ji", + "identifiers.value": [ "AYys6jP7Ji" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-2RdbNpFC2P" + "title": "title-2RdbNpFC2P" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Pamphlets\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Pamphlets" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "g00dcafe" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "dmKTFidDls" ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "AYys6jP7Ji" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json index 36bae4bb7..2f1e70ecd 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.2.json @@ -1,209 +1,209 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.603188Z", - "id" : "avugqd3s", - "document" : { - "debug" : { - "source" : { - "id" : "avugqd3s", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.603188Z", + "id": "avugqd3s", + "document": { + "debug": { + "source": { + "id": "avugqd3s", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "WGGaiNvMk5" + "ontologyType": "Work", + "value": "WGGaiNvMk5" }, - "version" : 67, - "modifiedTime" : "2031-04-13T18:09:40Z" + "version": 67, + "modifiedTime": "2031-04-13T18:09:40Z" }, - "mergedTime" : "2031-04-13T18:09:40Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2031-04-13T18:09:40Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "avugqd3s", - "title" : "title-RQFJOR9VqA", - "alternativeTitles" : [ + "display": { + "id": "avugqd3s", + "title": "title-RQFJOR9VqA", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "WGGaiNvMk5", - "type" : "Identifier" + "value": "WGGaiNvMk5", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Psychology, Pathological", - "concepts" : [ + "label": "Psychology, Pathological", + "concepts": [ { - "id" : "baadf00d", - "identifiers" : [ + "id": "baadf00d", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "um1qUlCcjg", - "type" : "Identifier" + "value": "um1qUlCcjg", + "type": "Identifier" } ], - "label" : "qnu7hZZtHlWPIpZ", - "type" : "Genre" + "label": "qnu7hZZtHlWPIpZ", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "qnu7hZZtHlWPIpZ" ], - "id" : "avugqd3s", - "sourceIdentifier.value" : "WGGaiNvMk5", - "identifiers.value" : [ + "id": "avugqd3s", + "sourceIdentifier.value": "WGGaiNvMk5", + "identifiers.value": [ "WGGaiNvMk5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-RQFJOR9VqA" + "title": "title-RQFJOR9VqA" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Psychology, Pathological" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "baadf00d" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "um1qUlCcjg" ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "WGGaiNvMk5" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json index 3c6cef8ae..a685c3ff2 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.3.json @@ -1,243 +1,243 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.603672Z", - "id" : "vr490vab", - "document" : { - "debug" : { - "source" : { - "id" : "vr490vab", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.603672Z", + "id": "vr490vab", + "document": { + "debug": { + "source": { + "id": "vr490vab", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "AzAiZFAZvT" + "ontologyType": "Work", + "value": "AzAiZFAZvT" }, - "version" : 34, - "modifiedTime" : "1956-06-20T09:37:32Z" + "version": 34, + "modifiedTime": "1956-06-20T09:37:32Z" }, - "mergedTime" : "1956-06-20T09:37:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1956-06-20T09:37:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "vr490vab", - "title" : "title-q4zh18D0cb", - "alternativeTitles" : [ + "display": { + "id": "vr490vab", + "title": "title-q4zh18D0cb", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "AzAiZFAZvT", - "type" : "Identifier" + "value": "AzAiZFAZvT", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Darwin \"Jones\", Charles", - "concepts" : [ + "label": "Darwin \"Jones\", Charles", + "concepts": [ { - "id" : "lmpakqz5", - "identifiers" : [ + "id": "lmpakqz5", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "DpKgb0Wdy2", - "type" : "Identifier" + "value": "DpKgb0Wdy2", + "type": "Identifier" } ], - "label" : "5SIuLPMgIG177tc", - "type" : "Genre" + "label": "5SIuLPMgIG177tc", + "type": "Genre" }, { - "id" : "nmumczq1", - "identifiers" : [ + "id": "nmumczq1", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Q4CK8DrDsk", - "type" : "Identifier" + "value": "Q4CK8DrDsk", + "type": "Identifier" } ], - "label" : "JcxukacPWKUROxB", - "type" : "Concept" + "label": "JcxukacPWKUROxB", + "type": "Concept" }, { - "id" : "2kcagurh", - "identifiers" : [ + "id": "2kcagurh", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "p5zfssscK3", - "type" : "Identifier" + "value": "p5zfssscK3", + "type": "Identifier" } ], - "label" : "x40zJbSlLwDNn2E", - "type" : "Concept" + "label": "x40zJbSlLwDNn2E", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "5SIuLPMgIG177tc", "JcxukacPWKUROxB", "x40zJbSlLwDNn2E" ], - "id" : "vr490vab", - "sourceIdentifier.value" : "AzAiZFAZvT", - "identifiers.value" : [ + "id": "vr490vab", + "sourceIdentifier.value": "AzAiZFAZvT", + "identifiers.value": [ "AzAiZFAZvT" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-q4zh18D0cb" + "title": "title-q4zh18D0cb" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Darwin \"Jones\", Charles" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "lmpakqz5" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "DpKgb0Wdy2" ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "AzAiZFAZvT" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json index b63e49183..92f6235ff 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.4.json @@ -1,297 +1,297 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.604274Z", - "id" : "plxkke6n", - "document" : { - "debug" : { - "source" : { - "id" : "plxkke6n", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.604274Z", + "id": "plxkke6n", + "document": { + "debug": { + "source": { + "id": "plxkke6n", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "1R485o02Dx" + "ontologyType": "Work", + "value": "1R485o02Dx" }, - "version" : 26, - "modifiedTime" : "1986-05-12T09:04:10Z" + "version": 26, + "modifiedTime": "1986-05-12T09:04:10Z" }, - "mergedTime" : "1986-05-12T09:04:10Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1986-05-12T09:04:10Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "plxkke6n", - "title" : "title-cQ8QOPJdAX", - "alternativeTitles" : [ + "display": { + "id": "plxkke6n", + "title": "title-cQ8QOPJdAX", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "1R485o02Dx", - "type" : "Identifier" + "value": "1R485o02Dx", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Pamphlets", - "concepts" : [ + "label": "Pamphlets", + "concepts": [ { - "id" : "g00dcafe", - "identifiers" : [ + "id": "g00dcafe", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "dmKTFidDls", - "type" : "Identifier" + "value": "dmKTFidDls", + "type": "Identifier" } ], - "label" : "9X3cVR8q4GIgcsJ", - "type" : "Genre" + "label": "9X3cVR8q4GIgcsJ", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Psychology, Pathological", - "concepts" : [ + "label": "Psychology, Pathological", + "concepts": [ { - "id" : "baadf00d", - "identifiers" : [ + "id": "baadf00d", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "um1qUlCcjg", - "type" : "Identifier" + "value": "um1qUlCcjg", + "type": "Identifier" } ], - "label" : "qnu7hZZtHlWPIpZ", - "type" : "Genre" + "label": "qnu7hZZtHlWPIpZ", + "type": "Genre" } ], - "type" : "Genre" + "type": "Genre" }, { - "label" : "Darwin \"Jones\", Charles", - "concepts" : [ + "label": "Darwin \"Jones\", Charles", + "concepts": [ { - "id" : "lmpakqz5", - "identifiers" : [ + "id": "lmpakqz5", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "DpKgb0Wdy2", - "type" : "Identifier" + "value": "DpKgb0Wdy2", + "type": "Identifier" } ], - "label" : "5SIuLPMgIG177tc", - "type" : "Genre" + "label": "5SIuLPMgIG177tc", + "type": "Genre" }, { - "id" : "nmumczq1", - "identifiers" : [ + "id": "nmumczq1", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Q4CK8DrDsk", - "type" : "Identifier" + "value": "Q4CK8DrDsk", + "type": "Identifier" } ], - "label" : "JcxukacPWKUROxB", - "type" : "Concept" + "label": "JcxukacPWKUROxB", + "type": "Concept" }, { - "id" : "2kcagurh", - "identifiers" : [ + "id": "2kcagurh", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "p5zfssscK3", - "type" : "Identifier" + "value": "p5zfssscK3", + "type": "Identifier" } ], - "label" : "x40zJbSlLwDNn2E", - "type" : "Concept" + "label": "x40zJbSlLwDNn2E", + "type": "Concept" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "9X3cVR8q4GIgcsJ", "qnu7hZZtHlWPIpZ", "5SIuLPMgIG177tc", "JcxukacPWKUROxB", "x40zJbSlLwDNn2E" ], - "id" : "plxkke6n", - "sourceIdentifier.value" : "1R485o02Dx", - "identifiers.value" : [ + "id": "plxkke6n", + "sourceIdentifier.value": "1R485o02Dx", + "identifiers.value": [ "1R485o02Dx" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-cQ8QOPJdAX" + "title": "title-cQ8QOPJdAX" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Pamphlets\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Genre\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Pamphlets", "Psychology, Pathological", "Darwin \"Jones\", Charles" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ "g00dcafe", "baadf00d", "lmpakqz5" ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ "dmKTFidDls", "um1qUlCcjg", "DpKgb0Wdy2" ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "1R485o02Dx" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json index 6f16c71f2..489206e32 100644 --- a/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.genre-filters-tests.5.json @@ -1,182 +1,182 @@ { - "description" : "examples for the genre tests", - "createdAt" : "2024-11-13T08:43:26.604702Z", - "id" : "wbrfsaz5", - "document" : { - "debug" : { - "source" : { - "id" : "wbrfsaz5", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the genre tests", + "createdAt": "2024-11-13T08:43:26.604702Z", + "id": "wbrfsaz5", + "document": { + "debug": { + "source": { + "id": "wbrfsaz5", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "MzC1ICZOvN" + "ontologyType": "Work", + "value": "MzC1ICZOvN" }, - "version" : 83, - "modifiedTime" : "2016-08-14T05:01:03Z" + "version": 83, + "modifiedTime": "2016-08-14T05:01:03Z" }, - "mergedTime" : "2016-08-14T05:01:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2016-08-14T05:01:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "wbrfsaz5", - "title" : "title-u5hoUH5ZhF", - "alternativeTitles" : [ + "display": { + "id": "wbrfsaz5", + "title": "title-u5hoUH5ZhF", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "MzC1ICZOvN", - "type" : "Identifier" + "value": "MzC1ICZOvN", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "wbrfsaz5", - "sourceIdentifier.value" : "MzC1ICZOvN", - "identifiers.value" : [ + "id": "wbrfsaz5", + "sourceIdentifier.value": "MzC1ICZOvN", + "identifiers.value": [ "MzC1ICZOvN" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-u5hoUH5ZhF" + "title": "title-u5hoUH5ZhF" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "MzC1ICZOvN" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json index 32a53c7e4..9cb9c86ec 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.0.json @@ -1,229 +1,229 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.610661Z", - "id" : "kx6ceruj", - "document" : { - "debug" : { - "source" : { - "id" : "kx6ceruj", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.610661Z", + "id": "kx6ceruj", + "document": { + "debug": { + "source": { + "id": "kx6ceruj", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "KEnxzBExh6" + "ontologyType": "Work", + "value": "KEnxzBExh6" }, - "version" : 84, - "modifiedTime" : "1971-05-14T11:26:40Z" + "version": 84, + "modifiedTime": "1971-05-14T11:26:40Z" }, - "mergedTime" : "1971-05-14T11:26:40Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-05-14T11:26:40Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "kx6ceruj", - "title" : "title-ArEMdSJPD8", - "alternativeTitles" : [ + "display": { + "id": "kx6ceruj", + "title": "title-ArEMdSJPD8", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "KEnxzBExh6", - "type" : "Identifier" + "value": "KEnxzBExh6", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "id" : "sanitati", - "identifiers" : [ + "id": "sanitati", + "identifiers": [ { - "identifierType" : { - "id" : "lc-subjects", - "label" : "Library of Congress Subject Headings (LCSH)", - "type" : "IdentifierType" + "identifierType": { + "id": "lc-subjects", + "label": "Library of Congress Subject Headings (LCSH)", + "type": "IdentifierType" }, - "value" : "lcsh-sanitation", - "type" : "Identifier" + "value": "lcsh-sanitation", + "type": "Identifier" }, { - "identifierType" : { - "id" : "nlm-mesh", - "label" : "Medical Subject Headings (MeSH) identifier", - "type" : "IdentifierType" + "identifierType": { + "id": "nlm-mesh", + "label": "Medical Subject Headings (MeSH) identifier", + "type": "IdentifierType" }, - "value" : "mesh-sanitation", - "type" : "Identifier" + "value": "mesh-sanitation", + "type": "Identifier" } ], - "label" : "Sanitation.", - "concepts" : [ + "label": "Sanitation.", + "concepts": [ { - "label" : "rBAO66qqlbcmHn7", - "type" : "Concept" + "label": "rBAO66qqlbcmHn7", + "type": "Concept" }, { - "label" : "act97zOQ6G6Rkv6", - "type" : "Concept" + "label": "act97zOQ6G6Rkv6", + "type": "Concept" }, { - "label" : "QH5zn9bqmY6Obq6", - "type" : "Concept" + "label": "QH5zn9bqmY6Obq6", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "kx6ceruj", - "sourceIdentifier.value" : "KEnxzBExh6", - "identifiers.value" : [ + "id": "kx6ceruj", + "sourceIdentifier.value": "KEnxzBExh6", + "identifiers.value": [ "KEnxzBExh6" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "rBAO66qqlbcmHn7", "act97zOQ6G6Rkv6", "QH5zn9bqmY6Obq6" ], - "title" : "title-ArEMdSJPD8" + "title": "title-ArEMdSJPD8" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"Sanitation\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "Sanitation" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ "sanitati" ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ "lcsh-sanitation", "mesh-sanitation" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "KEnxzBExh6" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json index 3d908e52f..662f1d117 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.1.json @@ -1,205 +1,205 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.611102Z", - "id" : "85vigluy", - "document" : { - "debug" : { - "source" : { - "id" : "85vigluy", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.611102Z", + "id": "85vigluy", + "document": { + "debug": { + "source": { + "id": "85vigluy", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "0xrR5Stsp3" + "ontologyType": "Work", + "value": "0xrR5Stsp3" }, - "version" : 24, - "modifiedTime" : "1940-04-20T21:57:32Z" + "version": 24, + "modifiedTime": "1940-04-20T21:57:32Z" }, - "mergedTime" : "1940-04-20T21:57:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1940-04-20T21:57:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "85vigluy", - "title" : "title-YlnwWOedI3", - "alternativeTitles" : [ + "display": { + "id": "85vigluy", + "title": "title-YlnwWOedI3", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "0xrR5Stsp3", - "type" : "Identifier" + "value": "0xrR5Stsp3", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "London (England)", - "concepts" : [ + "label": "London (England)", + "concepts": [ { - "label" : "lxZzGryOg3KGy7M", - "type" : "Concept" + "label": "lxZzGryOg3KGy7M", + "type": "Concept" }, { - "label" : "z5GNUj1it3ic4OR", - "type" : "Concept" + "label": "z5GNUj1it3ic4OR", + "type": "Concept" }, { - "label" : "9LzJV7M3Kvqw9fG", - "type" : "Concept" + "label": "9LzJV7M3Kvqw9fG", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "85vigluy", - "sourceIdentifier.value" : "0xrR5Stsp3", - "identifiers.value" : [ + "id": "85vigluy", + "sourceIdentifier.value": "0xrR5Stsp3", + "identifiers.value": [ "0xrR5Stsp3" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "lxZzGryOg3KGy7M", "z5GNUj1it3ic4OR", "9LzJV7M3Kvqw9fG" ], - "title" : "title-YlnwWOedI3" + "title": "title-YlnwWOedI3" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"London (England)\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "London (England)" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "0xrR5Stsp3" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json index f45b0ca76..da4f45604 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.2.json @@ -1,205 +1,205 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.611529Z", - "id" : "eadt8hhm", - "document" : { - "debug" : { - "source" : { - "id" : "eadt8hhm", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.611529Z", + "id": "eadt8hhm", + "document": { + "debug": { + "source": { + "id": "eadt8hhm", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "SSg7erLcgx" + "ontologyType": "Work", + "value": "SSg7erLcgx" }, - "version" : 18, - "modifiedTime" : "2010-09-19T13:34:03Z" + "version": 18, + "modifiedTime": "2010-09-19T13:34:03Z" }, - "mergedTime" : "2010-09-19T13:34:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2010-09-19T13:34:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "eadt8hhm", - "title" : "title-zSHRFusVBN", - "alternativeTitles" : [ + "display": { + "id": "eadt8hhm", + "title": "title-zSHRFusVBN", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "SSg7erLcgx", - "type" : "Identifier" + "value": "SSg7erLcgx", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "Psychology, Pathological", - "concepts" : [ + "label": "Psychology, Pathological", + "concepts": [ { - "label" : "ol7E1K1L8XUhcLZ", - "type" : "Concept" + "label": "ol7E1K1L8XUhcLZ", + "type": "Concept" }, { - "label" : "hc35m9C4DAgxJAj", - "type" : "Concept" + "label": "hc35m9C4DAgxJAj", + "type": "Concept" }, { - "label" : "Eybh6q7wkoWRiNO", - "type" : "Concept" + "label": "Eybh6q7wkoWRiNO", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "eadt8hhm", - "sourceIdentifier.value" : "SSg7erLcgx", - "identifiers.value" : [ + "id": "eadt8hhm", + "sourceIdentifier.value": "SSg7erLcgx", + "identifiers.value": [ "SSg7erLcgx" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "ol7E1K1L8XUhcLZ", "hc35m9C4DAgxJAj", "Eybh6q7wkoWRiNO" ], - "title" : "title-zSHRFusVBN" + "title": "title-zSHRFusVBN" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "Psychology, Pathological" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "SSg7erLcgx" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json index ecc79b692..c2232bf60 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.3.json @@ -1,219 +1,219 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.612330Z", - "id" : "3kdpeojw", - "document" : { - "debug" : { - "source" : { - "id" : "3kdpeojw", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.612330Z", + "id": "3kdpeojw", + "document": { + "debug": { + "source": { + "id": "3kdpeojw", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "SqD7qcFvAY" + "ontologyType": "Work", + "value": "SqD7qcFvAY" }, - "version" : 21, - "modifiedTime" : "2051-08-21T14:08:03Z" + "version": 21, + "modifiedTime": "2051-08-21T14:08:03Z" }, - "mergedTime" : "2051-08-21T14:08:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2051-08-21T14:08:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "3kdpeojw", - "title" : "title-FeGzni8X1i", - "alternativeTitles" : [ + "display": { + "id": "3kdpeojw", + "title": "title-FeGzni8X1i", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "SqD7qcFvAY", - "type" : "Identifier" + "value": "SqD7qcFvAY", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "id" : "darwin01", - "identifiers" : [ + "id": "darwin01", + "identifiers": [ { - "identifierType" : { - "id" : "lc-names", - "label" : "Library of Congress Name authority records", - "type" : "IdentifierType" + "identifierType": { + "id": "lc-names", + "label": "Library of Congress Name authority records", + "type": "IdentifierType" }, - "value" : "lcnames-darwin", - "type" : "Identifier" + "value": "lcnames-darwin", + "type": "Identifier" } ], - "label" : "Darwin \"Jones\", Charles", - "concepts" : [ + "label": "Darwin \"Jones\", Charles", + "concepts": [ { - "label" : "oLbpS5jRX3FqozN", - "type" : "Concept" + "label": "oLbpS5jRX3FqozN", + "type": "Concept" }, { - "label" : "GJ9PfCPwnrkDO6V", - "type" : "Concept" + "label": "GJ9PfCPwnrkDO6V", + "type": "Concept" }, { - "label" : "p3bULWghZ3Z5q2k", - "type" : "Concept" + "label": "p3bULWghZ3Z5q2k", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "3kdpeojw", - "sourceIdentifier.value" : "SqD7qcFvAY", - "identifiers.value" : [ + "id": "3kdpeojw", + "sourceIdentifier.value": "SqD7qcFvAY", + "identifiers.value": [ "SqD7qcFvAY" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "oLbpS5jRX3FqozN", "GJ9PfCPwnrkDO6V", "p3bULWghZ3Z5q2k" ], - "title" : "title-FeGzni8X1i" + "title": "title-FeGzni8X1i" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "Darwin \"Jones\", Charles" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ "darwin01" ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ "lcnames-darwin" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "SqD7qcFvAY" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json index 4ba1836a0..4edfb192d 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.4.json @@ -1,182 +1,182 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.613143Z", - "id" : "ppcdklf9", - "document" : { - "debug" : { - "source" : { - "id" : "ppcdklf9", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.613143Z", + "id": "ppcdklf9", + "document": { + "debug": { + "source": { + "id": "ppcdklf9", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "3o0GGLKeJC" + "ontologyType": "Work", + "value": "3o0GGLKeJC" }, - "version" : 31, - "modifiedTime" : "2004-11-14T20:49:37Z" + "version": 31, + "modifiedTime": "2004-11-14T20:49:37Z" }, - "mergedTime" : "2004-11-14T20:49:37Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2004-11-14T20:49:37Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ppcdklf9", - "title" : "title-BG0vJlw8MZ", - "alternativeTitles" : [ + "display": { + "id": "ppcdklf9", + "title": "title-BG0vJlw8MZ", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "3o0GGLKeJC", - "type" : "Identifier" + "value": "3o0GGLKeJC", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "London (England)", - "concepts" : [ + "label": "London (England)", + "concepts": [ { - "label" : "lxZzGryOg3KGy7M", - "type" : "Concept" + "label": "lxZzGryOg3KGy7M", + "type": "Concept" }, { - "label" : "z5GNUj1it3ic4OR", - "type" : "Concept" + "label": "z5GNUj1it3ic4OR", + "type": "Concept" }, { - "label" : "9LzJV7M3Kvqw9fG", - "type" : "Concept" + "label": "9LzJV7M3Kvqw9fG", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "label" : "Psychology, Pathological", - "concepts" : [ + "label": "Psychology, Pathological", + "concepts": [ { - "label" : "ol7E1K1L8XUhcLZ", - "type" : "Concept" + "label": "ol7E1K1L8XUhcLZ", + "type": "Concept" }, { - "label" : "hc35m9C4DAgxJAj", - "type" : "Concept" + "label": "hc35m9C4DAgxJAj", + "type": "Concept" }, { - "label" : "Eybh6q7wkoWRiNO", - "type" : "Concept" + "label": "Eybh6q7wkoWRiNO", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "id" : "darwin01", - "identifiers" : [ + "id": "darwin01", + "identifiers": [ { - "identifierType" : { - "id" : "lc-names", - "label" : "Library of Congress Name authority records", - "type" : "IdentifierType" + "identifierType": { + "id": "lc-names", + "label": "Library of Congress Name authority records", + "type": "IdentifierType" }, - "value" : "lcnames-darwin", - "type" : "Identifier" + "value": "lcnames-darwin", + "type": "Identifier" } ], - "label" : "Darwin \"Jones\", Charles", - "concepts" : [ + "label": "Darwin \"Jones\", Charles", + "concepts": [ { - "label" : "oLbpS5jRX3FqozN", - "type" : "Concept" + "label": "oLbpS5jRX3FqozN", + "type": "Concept" }, { - "label" : "GJ9PfCPwnrkDO6V", - "type" : "Concept" + "label": "GJ9PfCPwnrkDO6V", + "type": "Concept" }, { - "label" : "p3bULWghZ3Z5q2k", - "type" : "Concept" + "label": "p3bULWghZ3Z5q2k", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ppcdklf9", - "sourceIdentifier.value" : "3o0GGLKeJC", - "identifiers.value" : [ + "id": "ppcdklf9", + "sourceIdentifier.value": "3o0GGLKeJC", + "identifiers.value": [ "3o0GGLKeJC" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "lxZzGryOg3KGy7M", "z5GNUj1it3ic4OR", "9LzJV7M3Kvqw9fG", @@ -187,79 +187,79 @@ "GJ9PfCPwnrkDO6V", "p3bULWghZ3Z5q2k" ], - "title" : "title-BG0vJlw8MZ" + "title": "title-BG0vJlw8MZ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"London (England)\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Psychology, Pathological\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"Darwin \\\"Jones\\\", Charles\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "London (England)", "Psychology, Pathological", "Darwin \"Jones\", Charles" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ "darwin01" ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ "lcnames-darwin" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "3o0GGLKeJC" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json index 1f6de3a12..2a607471f 100644 --- a/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json +++ b/common/search/src/test/resources/test_documents/works.examples.subject-filters-tests.5.json @@ -1,182 +1,182 @@ { - "description" : "examples for the subject filter tests", - "createdAt" : "2024-11-13T08:43:26.613497Z", - "id" : "w0lr7wac", - "document" : { - "debug" : { - "source" : { - "id" : "w0lr7wac", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "examples for the subject filter tests", + "createdAt": "2024-11-13T08:43:26.613497Z", + "id": "w0lr7wac", + "document": { + "debug": { + "source": { + "id": "w0lr7wac", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "ty9GY2AKxy" + "ontologyType": "Work", + "value": "ty9GY2AKxy" }, - "version" : 93, - "modifiedTime" : "2032-06-12T10:57:16Z" + "version": 93, + "modifiedTime": "2032-06-12T10:57:16Z" }, - "mergedTime" : "2032-06-12T10:57:16Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2032-06-12T10:57:16Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "w0lr7wac", - "title" : "title-uXzrv8PglA", - "alternativeTitles" : [ + "display": { + "id": "w0lr7wac", + "title": "title-uXzrv8PglA", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "ty9GY2AKxy", - "type" : "Identifier" + "value": "ty9GY2AKxy", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "w0lr7wac", - "sourceIdentifier.value" : "ty9GY2AKxy", - "identifiers.value" : [ + "id": "w0lr7wac", + "sourceIdentifier.value": "ty9GY2AKxy", + "identifiers.value": [ "ty9GY2AKxy" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-uXzrv8PglA" + "title": "title-uXzrv8PglA" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ty9GY2AKxy" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.0.Books.json b/common/search/src/test/resources/test_documents/works.formats.0.Books.json index 059d18ac9..0083c8d92 100644 --- a/common/search/src/test/resources/test_documents/works.formats.0.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.0.Books.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.444809Z", - "id" : "cfrzpe3b", - "document" : { - "debug" : { - "source" : { - "id" : "cfrzpe3b", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.444809Z", + "id": "cfrzpe3b", + "document": { + "debug": { + "source": { + "id": "cfrzpe3b", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "yPjPNkcxB9" + "ontologyType": "Work", + "value": "yPjPNkcxB9" }, - "version" : 65, - "modifiedTime" : "1960-07-19T22:15:33Z" + "version": 65, + "modifiedTime": "1960-07-19T22:15:33Z" }, - "mergedTime" : "1960-07-19T22:15:33Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1960-07-19T22:15:33Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "cfrzpe3b", - "title" : "A work with format Books", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "cfrzpe3b", + "title": "A work with format Books", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "yPjPNkcxB9", - "type" : "Identifier" + "value": "yPjPNkcxB9", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "cfrzpe3b", - "sourceIdentifier.value" : "yPjPNkcxB9", - "identifiers.value" : [ + "id": "cfrzpe3b", + "sourceIdentifier.value": "yPjPNkcxB9", + "identifiers.value": [ "yPjPNkcxB9" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Books" + "title": "A work with format Books" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "yPjPNkcxB9" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.1.Books.json b/common/search/src/test/resources/test_documents/works.formats.1.Books.json index f047a6fee..8bb3ada12 100644 --- a/common/search/src/test/resources/test_documents/works.formats.1.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.1.Books.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.446572Z", - "id" : "oz3lidvn", - "document" : { - "debug" : { - "source" : { - "id" : "oz3lidvn", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.446572Z", + "id": "oz3lidvn", + "document": { + "debug": { + "source": { + "id": "oz3lidvn", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "DIYsS5wEOk" + "ontologyType": "Work", + "value": "DIYsS5wEOk" }, - "version" : 94, - "modifiedTime" : "1992-05-05T01:31:58Z" + "version": 94, + "modifiedTime": "1992-05-05T01:31:58Z" }, - "mergedTime" : "1992-05-05T01:31:58Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1992-05-05T01:31:58Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "oz3lidvn", - "title" : "A work with format Books", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "oz3lidvn", + "title": "A work with format Books", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "DIYsS5wEOk", - "type" : "Identifier" + "value": "DIYsS5wEOk", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "oz3lidvn", - "sourceIdentifier.value" : "DIYsS5wEOk", - "identifiers.value" : [ + "id": "oz3lidvn", + "sourceIdentifier.value": "DIYsS5wEOk", + "identifiers.value": [ "DIYsS5wEOk" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Books" + "title": "A work with format Books" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "DIYsS5wEOk" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.2.Books.json b/common/search/src/test/resources/test_documents/works.formats.2.Books.json index 92af3f496..669bed3f6 100644 --- a/common/search/src/test/resources/test_documents/works.formats.2.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.2.Books.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.447995Z", - "id" : "7y59ny1n", - "document" : { - "debug" : { - "source" : { - "id" : "7y59ny1n", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.447995Z", + "id": "7y59ny1n", + "document": { + "debug": { + "source": { + "id": "7y59ny1n", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "T3Xiy4Slyl" + "ontologyType": "Work", + "value": "T3Xiy4Slyl" }, - "version" : 38, - "modifiedTime" : "1945-04-09T22:12:25Z" + "version": 38, + "modifiedTime": "1945-04-09T22:12:25Z" }, - "mergedTime" : "1945-04-09T22:12:25Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1945-04-09T22:12:25Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "7y59ny1n", - "title" : "A work with format Books", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "7y59ny1n", + "title": "A work with format Books", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "T3Xiy4Slyl", - "type" : "Identifier" + "value": "T3Xiy4Slyl", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "7y59ny1n", - "sourceIdentifier.value" : "T3Xiy4Slyl", - "identifiers.value" : [ + "id": "7y59ny1n", + "sourceIdentifier.value": "T3Xiy4Slyl", + "identifiers.value": [ "T3Xiy4Slyl" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Books" + "title": "A work with format Books" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "T3Xiy4Slyl" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.3.Books.json b/common/search/src/test/resources/test_documents/works.formats.3.Books.json index 00b2e9334..b15c2b7d0 100644 --- a/common/search/src/test/resources/test_documents/works.formats.3.Books.json +++ b/common/search/src/test/resources/test_documents/works.formats.3.Books.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.449732Z", - "id" : "qzquhbnz", - "document" : { - "debug" : { - "source" : { - "id" : "qzquhbnz", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.449732Z", + "id": "qzquhbnz", + "document": { + "debug": { + "source": { + "id": "qzquhbnz", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "10w3BfGmqj" + "ontologyType": "Work", + "value": "10w3BfGmqj" }, - "version" : 34, - "modifiedTime" : "1946-10-01T09:18:22Z" + "version": 34, + "modifiedTime": "1946-10-01T09:18:22Z" }, - "mergedTime" : "1946-10-01T09:18:22Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1946-10-01T09:18:22Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "qzquhbnz", - "title" : "A work with format Books", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "a", - "label" : "Books", - "type" : "Format" + "display": { + "id": "qzquhbnz", + "title": "A work with format Books", + "alternativeTitles": [ + ], + "workType": { + "id": "a", + "label": "Books", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "10w3BfGmqj", - "type" : "Identifier" + "value": "10w3BfGmqj", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "qzquhbnz", - "sourceIdentifier.value" : "10w3BfGmqj", - "identifiers.value" : [ + "id": "qzquhbnz", + "sourceIdentifier.value": "10w3BfGmqj", + "identifiers.value": [ "10w3BfGmqj" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Books" + "title": "A work with format Books" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"a\",\"label\":\"Books\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "a", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "a", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "10w3BfGmqj" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.4.Journals.json b/common/search/src/test/resources/test_documents/works.formats.4.Journals.json index f9173ba20..df59581f7 100644 --- a/common/search/src/test/resources/test_documents/works.formats.4.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.4.Journals.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.451264Z", - "id" : "rbbzqhyt", - "document" : { - "debug" : { - "source" : { - "id" : "rbbzqhyt", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.451264Z", + "id": "rbbzqhyt", + "document": { + "debug": { + "source": { + "id": "rbbzqhyt", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "149f5nQPon" + "ontologyType": "Work", + "value": "149f5nQPon" }, - "version" : 74, - "modifiedTime" : "1956-07-19T10:08:24Z" + "version": 74, + "modifiedTime": "1956-07-19T10:08:24Z" }, - "mergedTime" : "1956-07-19T10:08:24Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1956-07-19T10:08:24Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "rbbzqhyt", - "title" : "A work with format Journals", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "rbbzqhyt", + "title": "A work with format Journals", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "149f5nQPon", - "type" : "Identifier" + "value": "149f5nQPon", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "rbbzqhyt", - "sourceIdentifier.value" : "149f5nQPon", - "identifiers.value" : [ + "id": "rbbzqhyt", + "sourceIdentifier.value": "149f5nQPon", + "identifiers.value": [ "149f5nQPon" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Journals" + "title": "A work with format Journals" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "149f5nQPon" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.5.Journals.json b/common/search/src/test/resources/test_documents/works.formats.5.Journals.json index 372382cd2..1b9c5006c 100644 --- a/common/search/src/test/resources/test_documents/works.formats.5.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.5.Journals.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.452520Z", - "id" : "ftxlgr2v", - "document" : { - "debug" : { - "source" : { - "id" : "ftxlgr2v", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.452520Z", + "id": "ftxlgr2v", + "document": { + "debug": { + "source": { + "id": "ftxlgr2v", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "RLx5N8CTsZ" + "ontologyType": "Work", + "value": "RLx5N8CTsZ" }, - "version" : 9, - "modifiedTime" : "1985-11-10T14:57:32Z" + "version": 9, + "modifiedTime": "1985-11-10T14:57:32Z" }, - "mergedTime" : "1985-11-10T14:57:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1985-11-10T14:57:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ftxlgr2v", - "title" : "A work with format Journals", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "ftxlgr2v", + "title": "A work with format Journals", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "RLx5N8CTsZ", - "type" : "Identifier" + "value": "RLx5N8CTsZ", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ftxlgr2v", - "sourceIdentifier.value" : "RLx5N8CTsZ", - "identifiers.value" : [ + "id": "ftxlgr2v", + "sourceIdentifier.value": "RLx5N8CTsZ", + "identifiers.value": [ "RLx5N8CTsZ" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Journals" + "title": "A work with format Journals" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "RLx5N8CTsZ" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.6.Journals.json b/common/search/src/test/resources/test_documents/works.formats.6.Journals.json index e9b5bd856..19af4b92a 100644 --- a/common/search/src/test/resources/test_documents/works.formats.6.Journals.json +++ b/common/search/src/test/resources/test_documents/works.formats.6.Journals.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.453857Z", - "id" : "o5wujppw", - "document" : { - "debug" : { - "source" : { - "id" : "o5wujppw", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.453857Z", + "id": "o5wujppw", + "document": { + "debug": { + "source": { + "id": "o5wujppw", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "3jkbPOk92T" + "ontologyType": "Work", + "value": "3jkbPOk92T" }, - "version" : 82, - "modifiedTime" : "2064-12-19T06:39:42Z" + "version": 82, + "modifiedTime": "2064-12-19T06:39:42Z" }, - "mergedTime" : "2064-12-19T06:39:42Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2064-12-19T06:39:42Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "o5wujppw", - "title" : "A work with format Journals", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "d", - "label" : "Journals", - "type" : "Format" + "display": { + "id": "o5wujppw", + "title": "A work with format Journals", + "alternativeTitles": [ + ], + "workType": { + "id": "d", + "label": "Journals", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "3jkbPOk92T", - "type" : "Identifier" + "value": "3jkbPOk92T", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "o5wujppw", - "sourceIdentifier.value" : "3jkbPOk92T", - "identifiers.value" : [ + "id": "o5wujppw", + "sourceIdentifier.value": "3jkbPOk92T", + "identifiers.value": [ "3jkbPOk92T" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Journals" + "title": "A work with format Journals" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"d\",\"label\":\"Journals\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "d", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "d", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "3jkbPOk92T" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.7.Audio.json b/common/search/src/test/resources/test_documents/works.formats.7.Audio.json index c3306f74b..b2ef91741 100644 --- a/common/search/src/test/resources/test_documents/works.formats.7.Audio.json +++ b/common/search/src/test/resources/test_documents/works.formats.7.Audio.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.455066Z", - "id" : "jtqzypmq", - "document" : { - "debug" : { - "source" : { - "id" : "jtqzypmq", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.455066Z", + "id": "jtqzypmq", + "document": { + "debug": { + "source": { + "id": "jtqzypmq", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "kstGwqrv9f" + "ontologyType": "Work", + "value": "kstGwqrv9f" }, - "version" : 4, - "modifiedTime" : "2029-04-07T22:56:33Z" + "version": 4, + "modifiedTime": "2029-04-07T22:56:33Z" }, - "mergedTime" : "2029-04-07T22:56:33Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2029-04-07T22:56:33Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "jtqzypmq", - "title" : "A work with format Audio", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "jtqzypmq", + "title": "A work with format Audio", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "kstGwqrv9f", - "type" : "Identifier" + "value": "kstGwqrv9f", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jtqzypmq", - "sourceIdentifier.value" : "kstGwqrv9f", - "identifiers.value" : [ + "id": "jtqzypmq", + "sourceIdentifier.value": "kstGwqrv9f", + "identifiers.value": [ "kstGwqrv9f" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Audio" + "title": "A work with format Audio" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "kstGwqrv9f" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.8.Audio.json b/common/search/src/test/resources/test_documents/works.formats.8.Audio.json index 10f46b26a..1899f770a 100644 --- a/common/search/src/test/resources/test_documents/works.formats.8.Audio.json +++ b/common/search/src/test/resources/test_documents/works.formats.8.Audio.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.456568Z", - "id" : "qgk6jumb", - "document" : { - "debug" : { - "source" : { - "id" : "qgk6jumb", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.456568Z", + "id": "qgk6jumb", + "document": { + "debug": { + "source": { + "id": "qgk6jumb", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "8yA2WkbMzo" + "ontologyType": "Work", + "value": "8yA2WkbMzo" }, - "version" : 47, - "modifiedTime" : "1988-04-07T05:47:45Z" + "version": 47, + "modifiedTime": "1988-04-07T05:47:45Z" }, - "mergedTime" : "1988-04-07T05:47:45Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1988-04-07T05:47:45Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "qgk6jumb", - "title" : "A work with format Audio", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "i", - "label" : "Audio", - "type" : "Format" + "display": { + "id": "qgk6jumb", + "title": "A work with format Audio", + "alternativeTitles": [ + ], + "workType": { + "id": "i", + "label": "Audio", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "8yA2WkbMzo", - "type" : "Identifier" + "value": "8yA2WkbMzo", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "qgk6jumb", - "sourceIdentifier.value" : "8yA2WkbMzo", - "identifiers.value" : [ + "id": "qgk6jumb", + "sourceIdentifier.value": "8yA2WkbMzo", + "identifiers.value": [ "8yA2WkbMzo" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Audio" + "title": "A work with format Audio" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"i\",\"label\":\"Audio\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "i", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "i", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "8yA2WkbMzo" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json b/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json index c8badf857..4fbc8817b 100644 --- a/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json +++ b/common/search/src/test/resources/test_documents/works.formats.9.Pictures.json @@ -1,188 +1,188 @@ { - "description" : "one of a list of works with a variety of formats", - "createdAt" : "2024-11-13T08:43:26.459685Z", - "id" : "wvcw0lp9", - "document" : { - "debug" : { - "source" : { - "id" : "wvcw0lp9", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "one of a list of works with a variety of formats", + "createdAt": "2024-11-13T08:43:26.459685Z", + "id": "wvcw0lp9", + "document": { + "debug": { + "source": { + "id": "wvcw0lp9", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "h2CF3B2FRN" + "ontologyType": "Work", + "value": "h2CF3B2FRN" }, - "version" : 3, - "modifiedTime" : "1938-05-13T23:46:55Z" + "version": 3, + "modifiedTime": "1938-05-13T23:46:55Z" }, - "mergedTime" : "1938-05-13T23:46:55Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1938-05-13T23:46:55Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "wvcw0lp9", - "title" : "A work with format Pictures", - "alternativeTitles" : [ - ], - "workType" : { - "id" : "k", - "label" : "Pictures", - "type" : "Format" + "display": { + "id": "wvcw0lp9", + "title": "A work with format Pictures", + "alternativeTitles": [ + ], + "workType": { + "id": "k", + "label": "Pictures", + "type": "Format" }, - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "h2CF3B2FRN", - "type" : "Identifier" + "value": "h2CF3B2FRN", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "wvcw0lp9", - "sourceIdentifier.value" : "h2CF3B2FRN", - "identifiers.value" : [ + "id": "wvcw0lp9", + "sourceIdentifier.value": "h2CF3B2FRN", + "identifiers.value": [ "h2CF3B2FRN" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with format Pictures" + "title": "A work with format Pictures" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ "{\"id\":\"k\",\"label\":\"Pictures\",\"type\":\"Format\"}" ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : "k", - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": "k", + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "h2CF3B2FRN" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.genres.json b/common/search/src/test/resources/test_documents/works.genres.json index 7e1b6eb8a..748d86cf1 100644 --- a/common/search/src/test/resources/test_documents/works.genres.json +++ b/common/search/src/test/resources/test_documents/works.genres.json @@ -1,217 +1,217 @@ { - "description" : "a work with different concepts in the genre", - "createdAt" : "2024-11-13T08:43:26.490041Z", - "id" : "jlp05mgl", - "document" : { - "debug" : { - "source" : { - "id" : "jlp05mgl", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "a work with different concepts in the genre", + "createdAt": "2024-11-13T08:43:26.490041Z", + "id": "jlp05mgl", + "document": { + "debug": { + "source": { + "id": "jlp05mgl", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "iIjgaHUI5C" + "ontologyType": "Work", + "value": "iIjgaHUI5C" }, - "version" : 91, - "modifiedTime" : "1978-12-03T12:21:42Z" + "version": 91, + "modifiedTime": "1978-12-03T12:21:42Z" }, - "mergedTime" : "1978-12-03T12:21:42Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1978-12-03T12:21:42Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "jlp05mgl", - "title" : "A work with different concepts in the genre", - "alternativeTitles" : [ + "display": { + "id": "jlp05mgl", + "title": "A work with different concepts in the genre", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "iIjgaHUI5C", - "type" : "Identifier" + "value": "iIjgaHUI5C", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ { - "label" : "Electronic books", - "concepts" : [ + "label": "Electronic books", + "concepts": [ { - "label" : "Conceptual Conversations", - "type" : "Concept" + "label": "Conceptual Conversations", + "type": "Concept" }, { - "label" : "Pleasant Paris", - "type" : "Place" + "label": "Pleasant Paris", + "type": "Place" }, { - "id" : "buvphmut", - "identifiers" : [ + "id": "buvphmut", + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "nJ8zsEX9al", - "type" : "Identifier" + "value": "nJ8zsEX9al", + "type": "Identifier" } ], - "label" : "Past Prehistory", - "type" : "Period" + "label": "Past Prehistory", + "type": "Period" } ], - "type" : "Genre" + "type": "Genre" } ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ "Conceptual Conversations", "Pleasant Paris", "Past Prehistory" ], - "id" : "jlp05mgl", - "sourceIdentifier.value" : "iIjgaHUI5C", - "identifiers.value" : [ + "id": "jlp05mgl", + "sourceIdentifier.value": "iIjgaHUI5C", + "identifiers.value": [ "iIjgaHUI5C" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with different concepts in the genre" + "title": "A work with different concepts in the genre" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ "{\"label\":\"Electronic books\",\"concepts\":[],\"type\":\"Genre\"}" ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ "Electronic books" ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "iIjgaHUI5C" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.invisible.0.json b/common/search/src/test/resources/test_documents/works.invisible.0.json index 1c14e27a0..b5b542e82 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.0.json +++ b/common/search/src/test/resources/test_documents/works.invisible.0.json @@ -1,28 +1,28 @@ { - "description" : "an arbitrary list of invisible works", - "createdAt" : "2024-05-15T08:17:25.214583Z", - "id" : "rczekocx", - "document" : { - "debug" : { - "source" : { - "id" : "rczekocx", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "an arbitrary list of invisible works", + "createdAt": "2024-05-15T08:17:25.214583Z", + "id": "rczekocx", + "document": { + "debug": { + "source": { + "id": "rczekocx", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "Y4unjFIXxl" + "ontologyType": "Work", + "value": "Y4unjFIXxl" }, - "version" : 64, - "modifiedTime" : "2001-07-02T19:43:15Z" + "version": 64, + "modifiedTime": "2001-07-02T19:43:15Z" }, - "mergedTime" : "2001-07-02T19:43:15Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "invisibilityReasons" : [ + "mergedTime": "2001-07-02T19:43:15Z", + "indexedTime": "2001-01-01T01:01:01Z", + "invisibilityReasons": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Invisible" + "type": "Invisible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.invisible.1.json b/common/search/src/test/resources/test_documents/works.invisible.1.json index c597beb7e..172c57e33 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.1.json +++ b/common/search/src/test/resources/test_documents/works.invisible.1.json @@ -1,28 +1,28 @@ { - "description" : "an arbitrary list of invisible works", - "createdAt" : "2024-05-15T08:17:25.214801Z", - "id" : "60edujsq", - "document" : { - "debug" : { - "source" : { - "id" : "60edujsq", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "an arbitrary list of invisible works", + "createdAt": "2024-05-15T08:17:25.214801Z", + "id": "60edujsq", + "document": { + "debug": { + "source": { + "id": "60edujsq", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "m0zER7Z50Y" + "ontologyType": "Work", + "value": "m0zER7Z50Y" }, - "version" : 60, - "modifiedTime" : "2030-05-24T10:04:01Z" + "version": 60, + "modifiedTime": "2030-05-24T10:04:01Z" }, - "mergedTime" : "2030-05-24T10:04:01Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "invisibilityReasons" : [ + "mergedTime": "2030-05-24T10:04:01Z", + "indexedTime": "2001-01-01T01:01:01Z", + "invisibilityReasons": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Invisible" + "type": "Invisible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.invisible.2.json b/common/search/src/test/resources/test_documents/works.invisible.2.json index 58f120442..4fe3feb0c 100644 --- a/common/search/src/test/resources/test_documents/works.invisible.2.json +++ b/common/search/src/test/resources/test_documents/works.invisible.2.json @@ -1,28 +1,28 @@ { - "description" : "an arbitrary list of invisible works", - "createdAt" : "2024-05-15T08:17:25.214981Z", - "id" : "0uk2wzxd", - "document" : { - "debug" : { - "source" : { - "id" : "0uk2wzxd", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "an arbitrary list of invisible works", + "createdAt": "2024-05-15T08:17:25.214981Z", + "id": "0uk2wzxd", + "document": { + "debug": { + "source": { + "id": "0uk2wzxd", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "x2TEreIkut" + "ontologyType": "Work", + "value": "x2TEreIkut" }, - "version" : 58, - "modifiedTime" : "2056-08-06T12:14:07Z" + "version": 58, + "modifiedTime": "2056-08-06T12:14:07Z" }, - "mergedTime" : "2056-08-06T12:14:07Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "invisibilityReasons" : [ + "mergedTime": "2056-08-06T12:14:07Z", + "indexedTime": "2001-01-01T01:01:01Z", + "invisibilityReasons": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "type" : "Invisible" + "type": "Invisible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json index 069e463f7..d9348de5b 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.0.json @@ -1,211 +1,211 @@ { - "description" : "a work with licensed digital items", - "createdAt" : "2024-11-13T08:43:26.480307Z", - "id" : "uh8gnkqk", - "document" : { - "debug" : { - "source" : { - "id" : "uh8gnkqk", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a work with licensed digital items", + "createdAt": "2024-11-13T08:43:26.480307Z", + "id": "uh8gnkqk", + "document": { + "debug": { + "source": { + "id": "uh8gnkqk", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "5UMJEwTIE8" + "ontologyType": "Work", + "value": "5UMJEwTIE8" }, - "version" : 36, - "modifiedTime" : "2004-04-05T10:15:53Z" + "version": 36, + "modifiedTime": "2004-04-05T10:15:53Z" }, - "mergedTime" : "2004-04-05T10:15:53Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2004-04-05T10:15:53Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "uh8gnkqk", - "title" : "title-P9ugIes0pz", - "alternativeTitles" : [ + "display": { + "id": "uh8gnkqk", + "title": "title-P9ugIes0pz", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "5UMJEwTIE8", - "type" : "Identifier" + "value": "5UMJEwTIE8", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/swj.jpg/info.json", - "credit" : "Credit line: VmALe83", - "linkText" : "Link text: BJ6dy5rBOb", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/swj.jpg/info.json", + "credit": "Credit line: VmALe83", + "linkText": "Link text: BJ6dy5rBOb", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "uh8gnkqk", - "sourceIdentifier.value" : "5UMJEwTIE8", - "identifiers.value" : [ + "id": "uh8gnkqk", + "sourceIdentifier.value": "5UMJEwTIE8", + "identifiers.value": [ "5UMJEwTIE8" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-P9ugIes0pz" + "title": "title-P9ugIes0pz" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "5UMJEwTIE8" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json index 31fc98878..fa3470950 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.1.json @@ -1,210 +1,210 @@ { - "description" : "a work with licensed digital items", - "createdAt" : "2024-11-13T08:43:26.480726Z", - "id" : "sojyedta", - "document" : { - "debug" : { - "source" : { - "id" : "sojyedta", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "a work with licensed digital items", + "createdAt": "2024-11-13T08:43:26.480726Z", + "id": "sojyedta", + "document": { + "debug": { + "source": { + "id": "sojyedta", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "xSR5EK6UWY" + "ontologyType": "Work", + "value": "xSR5EK6UWY" }, - "version" : 62, - "modifiedTime" : "2030-04-29T05:27:13Z" + "version": 62, + "modifiedTime": "2030-04-29T05:27:13Z" }, - "mergedTime" : "2030-04-29T05:27:13Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2030-04-29T05:27:13Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "sojyedta", - "title" : "title-w5YmCWk8Hy", - "alternativeTitles" : [ + "display": { + "id": "sojyedta", + "title": "title-w5YmCWk8Hy", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "xSR5EK6UWY", - "type" : "Identifier" + "value": "xSR5EK6UWY", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Voe.jpg/info.json", - "credit" : "Credit line: omuzt2Z", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Voe.jpg/info.json", + "credit": "Credit line: omuzt2Z", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "sojyedta", - "sourceIdentifier.value" : "xSR5EK6UWY", - "identifiers.value" : [ + "id": "sojyedta", + "sourceIdentifier.value": "xSR5EK6UWY", + "identifiers.value": [ "xSR5EK6UWY" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-w5YmCWk8Hy" + "title": "title-w5YmCWk8Hy" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "xSR5EK6UWY" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json index cc8c0742d..61efa2509 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.2.json @@ -1,209 +1,209 @@ { - "description" : "a work with licensed digital items", - "createdAt" : "2024-11-13T08:43:26.481130Z", - "id" : "fxryjmiz", - "document" : { - "debug" : { - "source" : { - "id" : "fxryjmiz", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with licensed digital items", + "createdAt": "2024-11-13T08:43:26.481130Z", + "id": "fxryjmiz", + "document": { + "debug": { + "source": { + "id": "fxryjmiz", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "D9r1zHmiHw" + "ontologyType": "Work", + "value": "D9r1zHmiHw" }, - "version" : 94, - "modifiedTime" : "1984-06-01T20:55:52Z" + "version": 94, + "modifiedTime": "1984-06-01T20:55:52Z" }, - "mergedTime" : "1984-06-01T20:55:52Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1984-06-01T20:55:52Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "fxryjmiz", - "title" : "title-gL6jXRK5E3", - "alternativeTitles" : [ + "display": { + "id": "fxryjmiz", + "title": "title-gL6jXRK5E3", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "D9r1zHmiHw", - "type" : "Identifier" + "value": "D9r1zHmiHw", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Tl2.jpg/info.json", - "license" : { - "id" : "cc-by-nc", - "label" : "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - "url" : "https://creativecommons.org/licenses/by-nc/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Tl2.jpg/info.json", + "license": { + "id": "cc-by-nc", + "label": "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "fxryjmiz", - "sourceIdentifier.value" : "D9r1zHmiHw", - "identifiers.value" : [ + "id": "fxryjmiz", + "sourceIdentifier.value": "D9r1zHmiHw", + "identifiers.value": [ "D9r1zHmiHw" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-gL6jXRK5E3" + "title": "title-gL6jXRK5E3" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by-nc\",\"label\":\"Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)\",\"url\":\"https://creativecommons.org/licenses/by-nc/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "D9r1zHmiHw" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by-nc" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json index 0ba8e749c..257aef614 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.3.json @@ -1,237 +1,237 @@ { - "description" : "a work with licensed digital items", - "createdAt" : "2024-11-13T08:43:26.481613Z", - "id" : "ub2i8snt", - "document" : { - "debug" : { - "source" : { - "id" : "ub2i8snt", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with licensed digital items", + "createdAt": "2024-11-13T08:43:26.481613Z", + "id": "ub2i8snt", + "document": { + "debug": { + "source": { + "id": "ub2i8snt", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "by26w1evrA" + "ontologyType": "Work", + "value": "by26w1evrA" }, - "version" : 43, - "modifiedTime" : "2066-07-14T02:52:53Z" + "version": 43, + "modifiedTime": "2066-07-14T02:52:53Z" }, - "mergedTime" : "2066-07-14T02:52:53Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2066-07-14T02:52:53Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ub2i8snt", - "title" : "title-YSKPkF3m7X", - "alternativeTitles" : [ + "display": { + "id": "ub2i8snt", + "title": "title-YSKPkF3m7X", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "by26w1evrA", - "type" : "Identifier" + "value": "by26w1evrA", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/U7a.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/U7a.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" }, { - "identifiers" : [ + "identifiers": [ ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/E8E.jpg/info.json", - "credit" : "Credit line: W7WKCBW", - "license" : { - "id" : "cc-by-nc", - "label" : "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", - "url" : "https://creativecommons.org/licenses/by-nc/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/E8E.jpg/info.json", + "credit": "Credit line: W7WKCBW", + "license": { + "id": "cc-by-nc", + "label": "Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)", + "url": "https://creativecommons.org/licenses/by-nc/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ub2i8snt", - "sourceIdentifier.value" : "by26w1evrA", - "identifiers.value" : [ + "id": "ub2i8snt", + "sourceIdentifier.value": "by26w1evrA", + "identifiers.value": [ "by26w1evrA" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-YSKPkF3m7X" + "title": "title-YSKPkF3m7X" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}", "{\"id\":\"cc-by-nc\",\"label\":\"Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)\",\"url\":\"https://creativecommons.org/licenses/by-nc/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "by26w1evrA" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by", "cc-by-nc" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation", "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json b/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json index ddbf1a20d..f455613ef 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json +++ b/common/search/src/test/resources/test_documents/works.items-with-licenses.4.json @@ -1,182 +1,182 @@ { - "description" : "a work with licensed digital items", - "createdAt" : "2024-11-13T08:43:26.482177Z", - "id" : "abt11p2s", - "document" : { - "debug" : { - "source" : { - "id" : "abt11p2s", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work with licensed digital items", + "createdAt": "2024-11-13T08:43:26.482177Z", + "id": "abt11p2s", + "document": { + "debug": { + "source": { + "id": "abt11p2s", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "Jxv45oXcss" + "ontologyType": "Work", + "value": "Jxv45oXcss" }, - "version" : 33, - "modifiedTime" : "1983-08-27T05:28:32Z" + "version": 33, + "modifiedTime": "1983-08-27T05:28:32Z" }, - "mergedTime" : "1983-08-27T05:28:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1983-08-27T05:28:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "abt11p2s", - "title" : "title-lO6WXilF8i", - "alternativeTitles" : [ + "display": { + "id": "abt11p2s", + "title": "title-lO6WXilF8i", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "Jxv45oXcss", - "type" : "Identifier" + "value": "Jxv45oXcss", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "abt11p2s", - "sourceIdentifier.value" : "Jxv45oXcss", - "identifiers.value" : [ + "id": "abt11p2s", + "sourceIdentifier.value": "Jxv45oXcss", + "identifiers.value": [ "Jxv45oXcss" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-lO6WXilF8i" + "title": "title-lO6WXilF8i" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Jxv45oXcss" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json index da09db10d..f68d7d41c 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.0.json @@ -1,234 +1,234 @@ { - "description" : "works with items with other identifiers", - "createdAt" : "2024-11-13T08:43:26.517276Z", - "id" : "hdjyypp6", - "document" : { - "debug" : { - "source" : { - "id" : "hdjyypp6", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with items with other identifiers", + "createdAt": "2024-11-13T08:43:26.517276Z", + "id": "hdjyypp6", + "document": { + "debug": { + "source": { + "id": "hdjyypp6", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "voGpMYI3LU" + "ontologyType": "Work", + "value": "voGpMYI3LU" }, - "version" : 48, - "modifiedTime" : "2066-12-22T15:52:01Z" + "version": 48, + "modifiedTime": "2066-12-22T15:52:01Z" }, - "mergedTime" : "2066-12-22T15:52:01Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2066-12-22T15:52:01Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "hdjyypp6", - "title" : "title-93zt70MSjf", - "alternativeTitles" : [ + "display": { + "id": "hdjyypp6", + "title": "title-93zt70MSjf", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "voGpMYI3LU", - "type" : "Identifier" + "value": "voGpMYI3LU", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "sq6vd1tu", - "identifiers" : [ + "id": "sq6vd1tu", + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "xJJR2dtnlu", - "type" : "Identifier" + "value": "xJJR2dtnlu", + "type": "Identifier" }, { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "MKDvFJ5itR", - "type" : "Identifier" + "value": "MKDvFJ5itR", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/JtP.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/JtP.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "hdjyypp6", - "sourceIdentifier.value" : "voGpMYI3LU", - "identifiers.value" : [ + "id": "hdjyypp6", + "sourceIdentifier.value": "voGpMYI3LU", + "identifiers.value": [ "voGpMYI3LU" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "sq6vd1tu" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "xJJR2dtnlu", "MKDvFJ5itR" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-93zt70MSjf" + "title": "title-93zt70MSjf" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "voGpMYI3LU" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "sq6vd1tu" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "xJJR2dtnlu", "MKDvFJ5itR" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json index 92f66645f..3ef31bbba 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.1.json @@ -1,234 +1,234 @@ { - "description" : "works with items with other identifiers", - "createdAt" : "2024-11-13T08:43:26.517762Z", - "id" : "jemj47jb", - "document" : { - "debug" : { - "source" : { - "id" : "jemj47jb", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with items with other identifiers", + "createdAt": "2024-11-13T08:43:26.517762Z", + "id": "jemj47jb", + "document": { + "debug": { + "source": { + "id": "jemj47jb", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "W2xfjSjI6E" + "ontologyType": "Work", + "value": "W2xfjSjI6E" }, - "version" : 8, - "modifiedTime" : "2047-01-04T09:41:20Z" + "version": 8, + "modifiedTime": "2047-01-04T09:41:20Z" }, - "mergedTime" : "2047-01-04T09:41:20Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2047-01-04T09:41:20Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "jemj47jb", - "title" : "title-07LdJrNoV7", - "alternativeTitles" : [ + "display": { + "id": "jemj47jb", + "title": "title-07LdJrNoV7", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "W2xfjSjI6E", - "type" : "Identifier" + "value": "W2xfjSjI6E", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "fltnygzk", - "identifiers" : [ + "id": "fltnygzk", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ONqqpCuC2L", - "type" : "Identifier" + "value": "ONqqpCuC2L", + "type": "Identifier" }, { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "BNAtB8mhIM", - "type" : "Identifier" + "value": "BNAtB8mhIM", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/zFk.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/zFk.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "jemj47jb", - "sourceIdentifier.value" : "W2xfjSjI6E", - "identifiers.value" : [ + "id": "jemj47jb", + "sourceIdentifier.value": "W2xfjSjI6E", + "identifiers.value": [ "W2xfjSjI6E" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "fltnygzk" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ONqqpCuC2L", "BNAtB8mhIM" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-07LdJrNoV7" + "title": "title-07LdJrNoV7" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "W2xfjSjI6E" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "fltnygzk" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ONqqpCuC2L", "BNAtB8mhIM" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json index 557b89a62..7803cb875 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.2.json @@ -1,235 +1,235 @@ { - "description" : "works with items with other identifiers", - "createdAt" : "2024-11-13T08:43:26.518206Z", - "id" : "si1cs1lq", - "document" : { - "debug" : { - "source" : { - "id" : "si1cs1lq", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with items with other identifiers", + "createdAt": "2024-11-13T08:43:26.518206Z", + "id": "si1cs1lq", + "document": { + "debug": { + "source": { + "id": "si1cs1lq", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "QBdAX1EiWS" + "ontologyType": "Work", + "value": "QBdAX1EiWS" }, - "version" : 31, - "modifiedTime" : "2062-07-20T12:04:39Z" + "version": 31, + "modifiedTime": "2062-07-20T12:04:39Z" }, - "mergedTime" : "2062-07-20T12:04:39Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2062-07-20T12:04:39Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "si1cs1lq", - "title" : "title-5TrUx7AdtQ", - "alternativeTitles" : [ + "display": { + "id": "si1cs1lq", + "title": "title-5TrUx7AdtQ", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "QBdAX1EiWS", - "type" : "Identifier" + "value": "QBdAX1EiWS", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "ai3a3tba", - "identifiers" : [ + "id": "ai3a3tba", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "NW5yJ4Q4nj", - "type" : "Identifier" + "value": "NW5yJ4Q4nj", + "type": "Identifier" }, { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "0YnPboqbXN", - "type" : "Identifier" + "value": "0YnPboqbXN", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/kix.jpg/info.json", - "linkText" : "Link text: y7ZiZYy", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/kix.jpg/info.json", + "linkText": "Link text: y7ZiZYy", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "si1cs1lq", - "sourceIdentifier.value" : "QBdAX1EiWS", - "identifiers.value" : [ + "id": "si1cs1lq", + "sourceIdentifier.value": "QBdAX1EiWS", + "identifiers.value": [ "QBdAX1EiWS" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "ai3a3tba" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "NW5yJ4Q4nj", "0YnPboqbXN" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-5TrUx7AdtQ" + "title": "title-5TrUx7AdtQ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "QBdAX1EiWS" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "ai3a3tba" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "NW5yJ4Q4nj", "0YnPboqbXN" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json index 0a08d3c57..f829148c6 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.3.json @@ -1,235 +1,235 @@ { - "description" : "works with items with other identifiers", - "createdAt" : "2024-11-13T08:43:26.518652Z", - "id" : "pdufpdhz", - "document" : { - "debug" : { - "source" : { - "id" : "pdufpdhz", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with items with other identifiers", + "createdAt": "2024-11-13T08:43:26.518652Z", + "id": "pdufpdhz", + "document": { + "debug": { + "source": { + "id": "pdufpdhz", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "TJPbhBJugC" + "ontologyType": "Work", + "value": "TJPbhBJugC" }, - "version" : 7, - "modifiedTime" : "1978-09-15T00:40:32Z" + "version": 7, + "modifiedTime": "1978-09-15T00:40:32Z" }, - "mergedTime" : "1978-09-15T00:40:32Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1978-09-15T00:40:32Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "pdufpdhz", - "title" : "title-oUvfxn8R40", - "alternativeTitles" : [ + "display": { + "id": "pdufpdhz", + "title": "title-oUvfxn8R40", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "TJPbhBJugC", - "type" : "Identifier" + "value": "TJPbhBJugC", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "inlnj8lj", - "identifiers" : [ + "id": "inlnj8lj", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "ZQFqGfpXSZ", - "type" : "Identifier" + "value": "ZQFqGfpXSZ", + "type": "Identifier" }, { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Ib4rPRFUwV", - "type" : "Identifier" + "value": "Ib4rPRFUwV", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/Klt.jpg/info.json", - "credit" : "Credit line: ZVRNi77", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/Klt.jpg/info.json", + "credit": "Credit line: ZVRNi77", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "pdufpdhz", - "sourceIdentifier.value" : "TJPbhBJugC", - "identifiers.value" : [ + "id": "pdufpdhz", + "sourceIdentifier.value": "TJPbhBJugC", + "identifiers.value": [ "TJPbhBJugC" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "inlnj8lj" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ZQFqGfpXSZ", "Ib4rPRFUwV" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-oUvfxn8R40" + "title": "title-oUvfxn8R40" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "TJPbhBJugC" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "inlnj8lj" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "ZQFqGfpXSZ", "Ib4rPRFUwV" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json index 631c36472..820b98d74 100644 --- a/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json +++ b/common/search/src/test/resources/test_documents/works.items-with-other-identifiers.4.json @@ -1,234 +1,234 @@ { - "description" : "works with items with other identifiers", - "createdAt" : "2024-11-13T08:43:26.519069Z", - "id" : "rzcvxgso", - "document" : { - "debug" : { - "source" : { - "id" : "rzcvxgso", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with items with other identifiers", + "createdAt": "2024-11-13T08:43:26.519069Z", + "id": "rzcvxgso", + "document": { + "debug": { + "source": { + "id": "rzcvxgso", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "8CwvL5s2ax" + "ontologyType": "Work", + "value": "8CwvL5s2ax" }, - "version" : 66, - "modifiedTime" : "1974-02-26T09:34:25Z" + "version": 66, + "modifiedTime": "1974-02-26T09:34:25Z" }, - "mergedTime" : "1974-02-26T09:34:25Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1974-02-26T09:34:25Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "rzcvxgso", - "title" : "title-rHr2K7J507", - "alternativeTitles" : [ + "display": { + "id": "rzcvxgso", + "title": "title-rHr2K7J507", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "8CwvL5s2ax", - "type" : "Identifier" + "value": "8CwvL5s2ax", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ { - "id" : "f1nicvdy", - "identifiers" : [ + "id": "f1nicvdy", + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "yqR7eWPnru", - "type" : "Identifier" + "value": "yqR7eWPnru", + "type": "Identifier" }, { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "wmEBLIOVK6", - "type" : "Identifier" + "value": "wmEBLIOVK6", + "type": "Identifier" } ], - "locations" : [ + "locations": [ { - "locationType" : { - "id" : "iiif-presentation", - "label" : "IIIF Presentation API", - "type" : "LocationType" + "locationType": { + "id": "iiif-presentation", + "label": "IIIF Presentation API", + "type": "LocationType" }, - "url" : "https://iiif.wellcomecollection.org/image/NlW.jpg/info.json", - "license" : { - "id" : "cc-by", - "label" : "Attribution 4.0 International (CC BY 4.0)", - "url" : "http://creativecommons.org/licenses/by/4.0/", - "type" : "License" + "url": "https://iiif.wellcomecollection.org/image/NlW.jpg/info.json", + "license": { + "id": "cc-by", + "label": "Attribution 4.0 International (CC BY 4.0)", + "url": "http://creativecommons.org/licenses/by/4.0/", + "type": "License" }, - "accessConditions" : [ + "accessConditions": [ ], - "type" : "DigitalLocation" + "type": "DigitalLocation" } ], - "type" : "Item" + "type": "Item" } ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "rzcvxgso", - "sourceIdentifier.value" : "8CwvL5s2ax", - "identifiers.value" : [ + "id": "rzcvxgso", + "sourceIdentifier.value": "8CwvL5s2ax", + "identifiers.value": [ "8CwvL5s2ax" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ "f1nicvdy" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "yqR7eWPnru", "wmEBLIOVK6" ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-rHr2K7J507" + "title": "title-rHr2K7J507" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ "{\"id\":\"cc-by\",\"label\":\"Attribution 4.0 International (CC BY 4.0)\",\"url\":\"http://creativecommons.org/licenses/by/4.0/\",\"type\":\"License\"}" ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "8CwvL5s2ax" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ "cc-by" ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ "f1nicvdy" ], - "items.identifiers.value" : [ + "items.identifiers.value": [ "yqR7eWPnru", "wmEBLIOVK6" ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ "iiif-presentation" ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.0.eng.json b/common/search/src/test/resources/test_documents/works.languages.0.eng.json index db5609f54..7a2985442 100644 --- a/common/search/src/test/resources/test_documents/works.languages.0.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.0.eng.json @@ -1,190 +1,190 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.464112Z", - "id" : "9pon81hb", - "document" : { - "debug" : { - "source" : { - "id" : "9pon81hb", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.464112Z", + "id": "9pon81hb", + "document": { + "debug": { + "source": { + "id": "9pon81hb", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "mVHoe2r6sk" + "ontologyType": "Work", + "value": "mVHoe2r6sk" }, - "version" : 97, - "modifiedTime" : "2020-11-07T23:22:13Z" + "version": 97, + "modifiedTime": "2020-11-07T23:22:13Z" }, - "mergedTime" : "2020-11-07T23:22:13Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2020-11-07T23:22:13Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "9pon81hb", - "title" : "A work with languages English", - "alternativeTitles" : [ + "display": { + "id": "9pon81hb", + "title": "A work with languages English", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "mVHoe2r6sk", - "type" : "Identifier" + "value": "mVHoe2r6sk", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "9pon81hb", - "sourceIdentifier.value" : "mVHoe2r6sk", - "identifiers.value" : [ + "id": "9pon81hb", + "sourceIdentifier.value": "mVHoe2r6sk", + "identifiers.value": [ "mVHoe2r6sk" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages English" + "title": "A work with languages English" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "eng" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "mVHoe2r6sk" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.1.eng.json b/common/search/src/test/resources/test_documents/works.languages.1.eng.json index 9c96bb85a..be0d3c5a6 100644 --- a/common/search/src/test/resources/test_documents/works.languages.1.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.1.eng.json @@ -1,190 +1,190 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.469710Z", - "id" : "mye6nsw6", - "document" : { - "debug" : { - "source" : { - "id" : "mye6nsw6", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.469710Z", + "id": "mye6nsw6", + "document": { + "debug": { + "source": { + "id": "mye6nsw6", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "jswjHR3oqS" + "ontologyType": "Work", + "value": "jswjHR3oqS" }, - "version" : 32, - "modifiedTime" : "2013-07-14T10:05:38Z" + "version": 32, + "modifiedTime": "2013-07-14T10:05:38Z" }, - "mergedTime" : "2013-07-14T10:05:38Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2013-07-14T10:05:38Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "mye6nsw6", - "title" : "A work with languages English", - "alternativeTitles" : [ + "display": { + "id": "mye6nsw6", + "title": "A work with languages English", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "jswjHR3oqS", - "type" : "Identifier" + "value": "jswjHR3oqS", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mye6nsw6", - "sourceIdentifier.value" : "jswjHR3oqS", - "identifiers.value" : [ + "id": "mye6nsw6", + "sourceIdentifier.value": "jswjHR3oqS", + "identifiers.value": [ "jswjHR3oqS" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages English" + "title": "A work with languages English" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "eng" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "jswjHR3oqS" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.2.eng.json b/common/search/src/test/resources/test_documents/works.languages.2.eng.json index f71afaa26..b7b8efc65 100644 --- a/common/search/src/test/resources/test_documents/works.languages.2.eng.json +++ b/common/search/src/test/resources/test_documents/works.languages.2.eng.json @@ -1,190 +1,190 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.471194Z", - "id" : "giiyodfc", - "document" : { - "debug" : { - "source" : { - "id" : "giiyodfc", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.471194Z", + "id": "giiyodfc", + "document": { + "debug": { + "source": { + "id": "giiyodfc", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "9x0HfU454v" + "ontologyType": "Work", + "value": "9x0HfU454v" }, - "version" : 13, - "modifiedTime" : "2047-09-30T13:44:39Z" + "version": 13, + "modifiedTime": "2047-09-30T13:44:39Z" }, - "mergedTime" : "2047-09-30T13:44:39Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2047-09-30T13:44:39Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "giiyodfc", - "title" : "A work with languages English", - "alternativeTitles" : [ + "display": { + "id": "giiyodfc", + "title": "A work with languages English", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "9x0HfU454v", - "type" : "Identifier" + "value": "9x0HfU454v", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "giiyodfc", - "sourceIdentifier.value" : "9x0HfU454v", - "identifiers.value" : [ + "id": "giiyodfc", + "sourceIdentifier.value": "9x0HfU454v", + "identifiers.value": [ "9x0HfU454v" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages English" + "title": "A work with languages English" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "eng" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "9x0HfU454v" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json b/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json index c64ee97ee..c910617f2 100644 --- a/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json +++ b/common/search/src/test/resources/test_documents/works.languages.3.eng+swe.json @@ -1,198 +1,198 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.472567Z", - "id" : "taqruniu", - "document" : { - "debug" : { - "source" : { - "id" : "taqruniu", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.472567Z", + "id": "taqruniu", + "document": { + "debug": { + "source": { + "id": "taqruniu", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "xzEZGWEGMy" + "ontologyType": "Work", + "value": "xzEZGWEGMy" }, - "version" : 58, - "modifiedTime" : "1953-09-06T15:14:14Z" + "version": 58, + "modifiedTime": "1953-09-06T15:14:14Z" }, - "mergedTime" : "1953-09-06T15:14:14Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1953-09-06T15:14:14Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "taqruniu", - "title" : "A work with languages English, Swedish", - "alternativeTitles" : [ + "display": { + "id": "taqruniu", + "title": "A work with languages English, Swedish", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "xzEZGWEGMy", - "type" : "Identifier" + "value": "xzEZGWEGMy", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" }, { - "id" : "swe", - "label" : "Swedish", - "type" : "Language" + "id": "swe", + "label": "Swedish", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "taqruniu", - "sourceIdentifier.value" : "xzEZGWEGMy", - "identifiers.value" : [ + "id": "taqruniu", + "sourceIdentifier.value": "xzEZGWEGMy", + "identifiers.value": [ "xzEZGWEGMy" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English", "Swedish" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages English, Swedish" + "title": "A work with languages English, Swedish" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}", "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "eng", "swe" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "xzEZGWEGMy" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json b/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json index 9df5a594a..e9b81e3f2 100644 --- a/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json +++ b/common/search/src/test/resources/test_documents/works.languages.4.eng+swe+tur.json @@ -1,206 +1,206 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.473924Z", - "id" : "oagougti", - "document" : { - "debug" : { - "source" : { - "id" : "oagougti", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.473924Z", + "id": "oagougti", + "document": { + "debug": { + "source": { + "id": "oagougti", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "c67fbITZO5" + "ontologyType": "Work", + "value": "c67fbITZO5" }, - "version" : 76, - "modifiedTime" : "2039-12-01T11:37:40Z" + "version": 76, + "modifiedTime": "2039-12-01T11:37:40Z" }, - "mergedTime" : "2039-12-01T11:37:40Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2039-12-01T11:37:40Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "oagougti", - "title" : "A work with languages English, Swedish, Turkish", - "alternativeTitles" : [ + "display": { + "id": "oagougti", + "title": "A work with languages English, Swedish, Turkish", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "c67fbITZO5", - "type" : "Identifier" + "value": "c67fbITZO5", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "eng", - "label" : "English", - "type" : "Language" + "id": "eng", + "label": "English", + "type": "Language" }, { - "id" : "swe", - "label" : "Swedish", - "type" : "Language" + "id": "swe", + "label": "Swedish", + "type": "Language" }, { - "id" : "tur", - "label" : "Turkish", - "type" : "Language" + "id": "tur", + "label": "Turkish", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "oagougti", - "sourceIdentifier.value" : "c67fbITZO5", - "identifiers.value" : [ + "id": "oagougti", + "sourceIdentifier.value": "c67fbITZO5", + "identifiers.value": [ "c67fbITZO5" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "English", "Swedish", "Turkish" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages English, Swedish, Turkish" + "title": "A work with languages English, Swedish, Turkish" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"eng\",\"label\":\"English\",\"type\":\"Language\"}", "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}", "{\"id\":\"tur\",\"label\":\"Turkish\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "eng", "swe", "tur" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "c67fbITZO5" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.5.swe.json b/common/search/src/test/resources/test_documents/works.languages.5.swe.json index f5040e061..36a6978dc 100644 --- a/common/search/src/test/resources/test_documents/works.languages.5.swe.json +++ b/common/search/src/test/resources/test_documents/works.languages.5.swe.json @@ -1,190 +1,190 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.475246Z", - "id" : "olhrstrz", - "document" : { - "debug" : { - "source" : { - "id" : "olhrstrz", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.475246Z", + "id": "olhrstrz", + "document": { + "debug": { + "source": { + "id": "olhrstrz", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "UagAbkJTEE" + "ontologyType": "Work", + "value": "UagAbkJTEE" }, - "version" : 58, - "modifiedTime" : "2026-09-11T17:29:57Z" + "version": 58, + "modifiedTime": "2026-09-11T17:29:57Z" }, - "mergedTime" : "2026-09-11T17:29:57Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2026-09-11T17:29:57Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "olhrstrz", - "title" : "A work with languages Swedish", - "alternativeTitles" : [ + "display": { + "id": "olhrstrz", + "title": "A work with languages Swedish", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "UagAbkJTEE", - "type" : "Identifier" + "value": "UagAbkJTEE", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "swe", - "label" : "Swedish", - "type" : "Language" + "id": "swe", + "label": "Swedish", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "olhrstrz", - "sourceIdentifier.value" : "UagAbkJTEE", - "identifiers.value" : [ + "id": "olhrstrz", + "sourceIdentifier.value": "UagAbkJTEE", + "identifiers.value": [ "UagAbkJTEE" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Swedish" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages Swedish" + "title": "A work with languages Swedish" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"swe\",\"label\":\"Swedish\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "swe" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "UagAbkJTEE" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.languages.6.tur.json b/common/search/src/test/resources/test_documents/works.languages.6.tur.json index 9fe885153..ed8c4dfe7 100644 --- a/common/search/src/test/resources/test_documents/works.languages.6.tur.json +++ b/common/search/src/test/resources/test_documents/works.languages.6.tur.json @@ -1,190 +1,190 @@ { - "description" : "one of a list of works with a variety of languages", - "createdAt" : "2024-11-13T08:43:26.477043Z", - "id" : "6navwg1c", - "document" : { - "debug" : { - "source" : { - "id" : "6navwg1c", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "one of a list of works with a variety of languages", + "createdAt": "2024-11-13T08:43:26.477043Z", + "id": "6navwg1c", + "document": { + "debug": { + "source": { + "id": "6navwg1c", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "Ra2FIC2DNd" + "ontologyType": "Work", + "value": "Ra2FIC2DNd" }, - "version" : 19, - "modifiedTime" : "1934-12-30T03:15:39Z" + "version": 19, + "modifiedTime": "1934-12-30T03:15:39Z" }, - "mergedTime" : "1934-12-30T03:15:39Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1934-12-30T03:15:39Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "6navwg1c", - "title" : "A work with languages Turkish", - "alternativeTitles" : [ + "display": { + "id": "6navwg1c", + "title": "A work with languages Turkish", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "Ra2FIC2DNd", - "type" : "Identifier" + "value": "Ra2FIC2DNd", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ { - "id" : "tur", - "label" : "Turkish", - "type" : "Language" + "id": "tur", + "label": "Turkish", + "type": "Language" } ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "6navwg1c", - "sourceIdentifier.value" : "Ra2FIC2DNd", - "identifiers.value" : [ + "id": "6navwg1c", + "sourceIdentifier.value": "Ra2FIC2DNd", + "identifiers.value": [ "Ra2FIC2DNd" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ "Turkish" ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "A work with languages Turkish" + "title": "A work with languages Turkish" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ "{\"id\":\"tur\",\"label\":\"Turkish\",\"type\":\"Language\"}" ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ "tur" ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Ra2FIC2DNd" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.0.json b/common/search/src/test/resources/test_documents/works.production.multi-year.0.json index c95b7726d..11edd0635 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.0.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.0.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.555984Z", - "id" : "wrhbusqt", - "document" : { - "debug" : { - "source" : { - "id" : "wrhbusqt", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.555984Z", + "id": "wrhbusqt", + "document": { + "debug": { + "source": { + "id": "wrhbusqt", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "JWZRaIg4BP" + "ontologyType": "Work", + "value": "JWZRaIg4BP" }, - "version" : 92, - "modifiedTime" : "1941-03-30T16:00:44Z" + "version": 92, + "modifiedTime": "1941-03-30T16:00:44Z" }, - "mergedTime" : "1941-03-30T16:00:44Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1941-03-30T16:00:44Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "wrhbusqt", - "title" : "title-zUOjOyKabH", - "alternativeTitles" : [ + "display": { + "id": "wrhbusqt", + "title": "title-zUOjOyKabH", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "JWZRaIg4BP", - "type" : "Identifier" + "value": "JWZRaIg4BP", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "cUH8ak2gePdAnZy8IL7DS24A3", - "places" : [ + "label": "cUH8ak2gePdAnZy8IL7DS24A3", + "places": [ { - "label" : "bjh2WRDdYf", - "type" : "Place" + "label": "bjh2WRDdYf", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "1h8Be8UrT3", - "type" : "Person" + "label": "1h8Be8UrT3", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1850", - "type" : "Period" + "label": "1850", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "wrhbusqt", - "sourceIdentifier.value" : "JWZRaIg4BP", - "identifiers.value" : [ + "id": "wrhbusqt", + "sourceIdentifier.value": "JWZRaIg4BP", + "identifiers.value": [ "JWZRaIg4BP" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "bjh2WRDdYf", "1h8Be8UrT3", "1850" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-zUOjOyKabH" + "title": "title-zUOjOyKabH" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1850\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -3786825600000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "JWZRaIg4BP" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.1.json b/common/search/src/test/resources/test_documents/works.production.multi-year.1.json index e45a1e99d..4d0731381 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.1.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.1.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.556374Z", - "id" : "yjdmhccz", - "document" : { - "debug" : { - "source" : { - "id" : "yjdmhccz", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.556374Z", + "id": "yjdmhccz", + "document": { + "debug": { + "source": { + "id": "yjdmhccz", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "pvvnQHgcJP" + "ontologyType": "Work", + "value": "pvvnQHgcJP" }, - "version" : 49, - "modifiedTime" : "1965-03-09T05:55:12Z" + "version": 49, + "modifiedTime": "1965-03-09T05:55:12Z" }, - "mergedTime" : "1965-03-09T05:55:12Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1965-03-09T05:55:12Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "yjdmhccz", - "title" : "title-NV4U4YKwyt", - "alternativeTitles" : [ + "display": { + "id": "yjdmhccz", + "title": "title-NV4U4YKwyt", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "pvvnQHgcJP", - "type" : "Identifier" + "value": "pvvnQHgcJP", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "wmZcSQaFLtBeNhpR5aFhbmGJs", - "places" : [ + "label": "wmZcSQaFLtBeNhpR5aFhbmGJs", + "places": [ { - "label" : "Mse28ReU0t", - "type" : "Place" + "label": "Mse28ReU0t", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "OIr878hfcC", - "type" : "Person" + "label": "OIr878hfcC", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1850-2000", - "type" : "Period" + "label": "1850-2000", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "yjdmhccz", - "sourceIdentifier.value" : "pvvnQHgcJP", - "identifiers.value" : [ + "id": "yjdmhccz", + "sourceIdentifier.value": "pvvnQHgcJP", + "identifiers.value": [ "pvvnQHgcJP" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "Mse28ReU0t", "OIr878hfcC", "1850-2000" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-NV4U4YKwyt" + "title": "title-NV4U4YKwyt" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1850\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -3786825600000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "pvvnQHgcJP" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.2.json b/common/search/src/test/resources/test_documents/works.production.multi-year.2.json index 7e015e208..fa9e2521d 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.2.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.2.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.556758Z", - "id" : "v2jj5pko", - "document" : { - "debug" : { - "source" : { - "id" : "v2jj5pko", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.556758Z", + "id": "v2jj5pko", + "document": { + "debug": { + "source": { + "id": "v2jj5pko", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "XKeDQMh6zv" + "ontologyType": "Work", + "value": "XKeDQMh6zv" }, - "version" : 34, - "modifiedTime" : "1975-08-31T16:12:40Z" + "version": 34, + "modifiedTime": "1975-08-31T16:12:40Z" }, - "mergedTime" : "1975-08-31T16:12:40Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1975-08-31T16:12:40Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "v2jj5pko", - "title" : "title-kAlfIDxe8F", - "alternativeTitles" : [ + "display": { + "id": "v2jj5pko", + "title": "title-kAlfIDxe8F", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "XKeDQMh6zv", - "type" : "Identifier" + "value": "XKeDQMh6zv", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "T0mobVH4nMKaFfllypAUqLQ0g", - "places" : [ + "label": "T0mobVH4nMKaFfllypAUqLQ0g", + "places": [ { - "label" : "UKbghZ727m", - "type" : "Place" + "label": "UKbghZ727m", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "8zTnSvRiZt", - "type" : "Person" + "label": "8zTnSvRiZt", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1860-1960", - "type" : "Period" + "label": "1860-1960", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "v2jj5pko", - "sourceIdentifier.value" : "XKeDQMh6zv", - "identifiers.value" : [ + "id": "v2jj5pko", + "sourceIdentifier.value": "XKeDQMh6zv", + "identifiers.value": [ "XKeDQMh6zv" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "UKbghZ727m", "8zTnSvRiZt", "1860-1960" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-kAlfIDxe8F" + "title": "title-kAlfIDxe8F" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1860\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -3471292800000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "XKeDQMh6zv" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.3.json b/common/search/src/test/resources/test_documents/works.production.multi-year.3.json index 7177236e6..39b19e4f7 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.3.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.3.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.557151Z", - "id" : "br9psxdd", - "document" : { - "debug" : { - "source" : { - "id" : "br9psxdd", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.557151Z", + "id": "br9psxdd", + "document": { + "debug": { + "source": { + "id": "br9psxdd", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "CpwHX9hOaw" + "ontologyType": "Work", + "value": "CpwHX9hOaw" }, - "version" : 63, - "modifiedTime" : "1971-04-20T21:05:04Z" + "version": 63, + "modifiedTime": "1971-04-20T21:05:04Z" }, - "mergedTime" : "1971-04-20T21:05:04Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-04-20T21:05:04Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "br9psxdd", - "title" : "title-TQ6alxfhhH", - "alternativeTitles" : [ + "display": { + "id": "br9psxdd", + "title": "title-TQ6alxfhhH", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "CpwHX9hOaw", - "type" : "Identifier" + "value": "CpwHX9hOaw", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "lLIHkQjFHQROpFfnFl9elPj6a", - "places" : [ + "label": "lLIHkQjFHQROpFfnFl9elPj6a", + "places": [ { - "label" : "56tujbhysw", - "type" : "Place" + "label": "56tujbhysw", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "OpLeG3f7j0", - "type" : "Person" + "label": "OpLeG3f7j0", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1960", - "type" : "Period" + "label": "1960", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "br9psxdd", - "sourceIdentifier.value" : "CpwHX9hOaw", - "identifiers.value" : [ + "id": "br9psxdd", + "sourceIdentifier.value": "CpwHX9hOaw", + "identifiers.value": [ "CpwHX9hOaw" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "56tujbhysw", "OpLeG3f7j0", "1960" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-TQ6alxfhhH" + "title": "title-TQ6alxfhhH" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1960\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -315619200000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "CpwHX9hOaw" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.4.json b/common/search/src/test/resources/test_documents/works.production.multi-year.4.json index cf41ffe20..f7d0e2ba0 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.4.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.4.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.557522Z", - "id" : "rx3okdwc", - "document" : { - "debug" : { - "source" : { - "id" : "rx3okdwc", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.557522Z", + "id": "rx3okdwc", + "document": { + "debug": { + "source": { + "id": "rx3okdwc", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "b0tnvUprsj" + "ontologyType": "Work", + "value": "b0tnvUprsj" }, - "version" : 80, - "modifiedTime" : "2029-08-13T07:01:03Z" + "version": 80, + "modifiedTime": "2029-08-13T07:01:03Z" }, - "mergedTime" : "2029-08-13T07:01:03Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2029-08-13T07:01:03Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "rx3okdwc", - "title" : "title-2lfjsLaubb", - "alternativeTitles" : [ + "display": { + "id": "rx3okdwc", + "title": "title-2lfjsLaubb", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "b0tnvUprsj", - "type" : "Identifier" + "value": "b0tnvUprsj", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "GsIdzZyGYBSGAtphRApGkJTZW", - "places" : [ + "label": "GsIdzZyGYBSGAtphRApGkJTZW", + "places": [ { - "label" : "wn4AhFD31A", - "type" : "Place" + "label": "wn4AhFD31A", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "dK5EfQwt6P", - "type" : "Person" + "label": "dK5EfQwt6P", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1960-1964", - "type" : "Period" + "label": "1960-1964", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "rx3okdwc", - "sourceIdentifier.value" : "b0tnvUprsj", - "identifiers.value" : [ + "id": "rx3okdwc", + "sourceIdentifier.value": "b0tnvUprsj", + "identifiers.value": [ "b0tnvUprsj" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "wn4AhFD31A", "dK5EfQwt6P", "1960-1964" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-2lfjsLaubb" + "title": "title-2lfjsLaubb" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1960\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -315619200000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "b0tnvUprsj" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.production.multi-year.5.json b/common/search/src/test/resources/test_documents/works.production.multi-year.5.json index e86bae644..3801f98b2 100644 --- a/common/search/src/test/resources/test_documents/works.production.multi-year.5.json +++ b/common/search/src/test/resources/test_documents/works.production.multi-year.5.json @@ -1,209 +1,209 @@ { - "description" : "works with multi-year production ranges", - "createdAt" : "2024-11-13T08:43:26.557895Z", - "id" : "dbkiu6iz", - "document" : { - "debug" : { - "source" : { - "id" : "dbkiu6iz", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with multi-year production ranges", + "createdAt": "2024-11-13T08:43:26.557895Z", + "id": "dbkiu6iz", + "document": { + "debug": { + "source": { + "id": "dbkiu6iz", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "lbspe4jqB3" + "ontologyType": "Work", + "value": "lbspe4jqB3" }, - "version" : 18, - "modifiedTime" : "1958-05-09T13:19:17Z" + "version": 18, + "modifiedTime": "1958-05-09T13:19:17Z" }, - "mergedTime" : "1958-05-09T13:19:17Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1958-05-09T13:19:17Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "dbkiu6iz", - "title" : "title-DrUzFkvgSy", - "alternativeTitles" : [ + "display": { + "id": "dbkiu6iz", + "title": "title-DrUzFkvgSy", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "lbspe4jqB3", - "type" : "Identifier" + "value": "lbspe4jqB3", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ { - "label" : "yMDGo2rBCSPBNfFmnJIEpzyMJ", - "places" : [ + "label": "yMDGo2rBCSPBNfFmnJIEpzyMJ", + "places": [ { - "label" : "LtI2pjU6xn", - "type" : "Place" + "label": "LtI2pjU6xn", + "type": "Place" } ], - "agents" : [ + "agents": [ { - "label" : "Vo8KntFwFf", - "type" : "Person" + "label": "Vo8KntFwFf", + "type": "Person" } ], - "dates" : [ + "dates": [ { - "label" : "1962", - "type" : "Period" + "label": "1962", + "type": "Period" } ], - "type" : "ProductionEvent" + "type": "ProductionEvent" } ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "dbkiu6iz", - "sourceIdentifier.value" : "lbspe4jqB3", - "identifiers.value" : [ + "id": "dbkiu6iz", + "sourceIdentifier.value": "lbspe4jqB3", + "identifiers.value": [ "lbspe4jqB3" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ "LtI2pjU6xn", "Vo8KntFwFf", "1962" ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-DrUzFkvgSy" + "title": "title-DrUzFkvgSy" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ "{\"label\":\"1962\",\"type\":\"Period\"}" ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ -252460800000 ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "lbspe4jqB3" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.redirected.0.json b/common/search/src/test/resources/test_documents/works.redirected.0.json index 232dfc8fa..dc2afcc8d 100644 --- a/common/search/src/test/resources/test_documents/works.redirected.0.json +++ b/common/search/src/test/resources/test_documents/works.redirected.0.json @@ -1,38 +1,38 @@ { - "description" : "an arbitrary list of redirected works", - "createdAt" : "2024-05-15T08:17:25.220502Z", - "id" : "4nwkprdt", - "document" : { - "debug" : { - "source" : { - "id" : "4nwkprdt", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "an arbitrary list of redirected works", + "createdAt": "2024-05-15T08:17:25.220502Z", + "id": "4nwkprdt", + "document": { + "debug": { + "source": { + "id": "4nwkprdt", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "PciYoP2Wz6" + "ontologyType": "Work", + "value": "PciYoP2Wz6" }, - "version" : 78, - "modifiedTime" : "2044-05-21T11:37:26Z" + "version": 78, + "modifiedTime": "2044-05-21T11:37:26Z" }, - "mergedTime" : "2044-05-21T11:37:26Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "mergeCandidates" : [ + "mergedTime": "2044-05-21T11:37:26Z", + "indexedTime": "2001-01-01T01:01:01Z", + "mergeCandidates": [ ] }, - "redirectTarget" : { - "canonicalId" : "mv6kix0n", - "sourceIdentifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "redirectTarget": { + "canonicalId": "mv6kix0n", + "sourceIdentifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "qklbwm3uF6" + "ontologyType": "Work", + "value": "qklbwm3uF6" }, - "otherIdentifiers" : [ + "otherIdentifiers": [ ] }, - "type" : "Redirected" + "type": "Redirected" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.redirected.1.json b/common/search/src/test/resources/test_documents/works.redirected.1.json index e8ba7e39e..fe9fc0049 100644 --- a/common/search/src/test/resources/test_documents/works.redirected.1.json +++ b/common/search/src/test/resources/test_documents/works.redirected.1.json @@ -1,38 +1,38 @@ { - "description" : "an arbitrary list of redirected works", - "createdAt" : "2024-05-15T08:17:25.220873Z", - "id" : "6yu7udsf", - "document" : { - "debug" : { - "source" : { - "id" : "6yu7udsf", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "an arbitrary list of redirected works", + "createdAt": "2024-05-15T08:17:25.220873Z", + "id": "6yu7udsf", + "document": { + "debug": { + "source": { + "id": "6yu7udsf", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "WDU051A4vR" + "ontologyType": "Work", + "value": "WDU051A4vR" }, - "version" : 11, - "modifiedTime" : "2018-10-24T16:12:55Z" + "version": 11, + "modifiedTime": "2018-10-24T16:12:55Z" }, - "mergedTime" : "2018-10-24T16:12:55Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "mergeCandidates" : [ + "mergedTime": "2018-10-24T16:12:55Z", + "indexedTime": "2001-01-01T01:01:01Z", + "mergeCandidates": [ ] }, - "redirectTarget" : { - "canonicalId" : "7wax09hv", - "sourceIdentifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "redirectTarget": { + "canonicalId": "7wax09hv", + "sourceIdentifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "qK07HsFHaW" + "ontologyType": "Work", + "value": "qK07HsFHaW" }, - "otherIdentifiers" : [ + "otherIdentifiers": [ ] }, - "type" : "Redirected" + "type": "Redirected" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.subjects.0.json b/common/search/src/test/resources/test_documents/works.subjects.0.json index 9fa0eb094..b36c8a3d5 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.0.json +++ b/common/search/src/test/resources/test_documents/works.subjects.0.json @@ -1,205 +1,205 @@ { - "description" : "works with different subjects", - "createdAt" : "2024-11-13T08:43:26.493183Z", - "id" : "njj1gugw", - "document" : { - "debug" : { - "source" : { - "id" : "njj1gugw", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "works with different subjects", + "createdAt": "2024-11-13T08:43:26.493183Z", + "id": "njj1gugw", + "document": { + "debug": { + "source": { + "id": "njj1gugw", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "JeGRUgE73g" + "ontologyType": "Work", + "value": "JeGRUgE73g" }, - "version" : 58, - "modifiedTime" : "2009-03-20T11:29:10Z" + "version": 58, + "modifiedTime": "2009-03-20T11:29:10Z" }, - "mergedTime" : "2009-03-20T11:29:10Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2009-03-20T11:29:10Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "njj1gugw", - "title" : "title-kaqjnWIqBs", - "alternativeTitles" : [ + "display": { + "id": "njj1gugw", + "title": "title-kaqjnWIqBs", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "JeGRUgE73g", - "type" : "Identifier" + "value": "JeGRUgE73g", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "paleoNeuroBiology", - "concepts" : [ + "label": "paleoNeuroBiology", + "concepts": [ { - "label" : "OVfDtEVhuTjLML0", - "type" : "Concept" + "label": "OVfDtEVhuTjLML0", + "type": "Concept" }, { - "label" : "MOH1Bj9evx0cAh7", - "type" : "Concept" + "label": "MOH1Bj9evx0cAh7", + "type": "Concept" }, { - "label" : "0mKj49k3BjjuTuf", - "type" : "Concept" + "label": "0mKj49k3BjjuTuf", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "njj1gugw", - "sourceIdentifier.value" : "JeGRUgE73g", - "identifiers.value" : [ + "id": "njj1gugw", + "sourceIdentifier.value": "JeGRUgE73g", + "identifiers.value": [ "JeGRUgE73g" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "OVfDtEVhuTjLML0", "MOH1Bj9evx0cAh7", "0mKj49k3BjjuTuf" ], - "title" : "title-kaqjnWIqBs" + "title": "title-kaqjnWIqBs" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"paleoNeuroBiology\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "paleoNeuroBiology" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "JeGRUgE73g" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.subjects.1.json b/common/search/src/test/resources/test_documents/works.subjects.1.json index 96f61bf47..74e49072d 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.1.json +++ b/common/search/src/test/resources/test_documents/works.subjects.1.json @@ -1,205 +1,205 @@ { - "description" : "works with different subjects", - "createdAt" : "2024-11-13T08:43:26.493716Z", - "id" : "7xjjhlpg", - "document" : { - "debug" : { - "source" : { - "id" : "7xjjhlpg", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with different subjects", + "createdAt": "2024-11-13T08:43:26.493716Z", + "id": "7xjjhlpg", + "document": { + "debug": { + "source": { + "id": "7xjjhlpg", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "47LFZN2ZgN" + "ontologyType": "Work", + "value": "47LFZN2ZgN" }, - "version" : 50, - "modifiedTime" : "2055-06-09T03:30:20Z" + "version": 50, + "modifiedTime": "2055-06-09T03:30:20Z" }, - "mergedTime" : "2055-06-09T03:30:20Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2055-06-09T03:30:20Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "7xjjhlpg", - "title" : "title-U7nUYWbjoJ", - "alternativeTitles" : [ + "display": { + "id": "7xjjhlpg", + "title": "title-U7nUYWbjoJ", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "47LFZN2ZgN", - "type" : "Identifier" + "value": "47LFZN2ZgN", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "realAnalysis", - "concepts" : [ + "label": "realAnalysis", + "concepts": [ { - "label" : "KU2Yez08k6CNnSU", - "type" : "Concept" + "label": "KU2Yez08k6CNnSU", + "type": "Concept" }, { - "label" : "VMdWdPx74hNxKXA", - "type" : "Concept" + "label": "VMdWdPx74hNxKXA", + "type": "Concept" }, { - "label" : "vquihJgTfjChVoT", - "type" : "Concept" + "label": "vquihJgTfjChVoT", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "7xjjhlpg", - "sourceIdentifier.value" : "47LFZN2ZgN", - "identifiers.value" : [ + "id": "7xjjhlpg", + "sourceIdentifier.value": "47LFZN2ZgN", + "identifiers.value": [ "47LFZN2ZgN" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "KU2Yez08k6CNnSU", "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title" : "title-U7nUYWbjoJ" + "title": "title-U7nUYWbjoJ" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "realAnalysis" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "47LFZN2ZgN" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.subjects.2.json b/common/search/src/test/resources/test_documents/works.subjects.2.json index 4c9d43b57..fc9693a9f 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.2.json +++ b/common/search/src/test/resources/test_documents/works.subjects.2.json @@ -1,205 +1,205 @@ { - "description" : "works with different subjects", - "createdAt" : "2024-11-13T08:43:26.494201Z", - "id" : "ixapupnn", - "document" : { - "debug" : { - "source" : { - "id" : "ixapupnn", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with different subjects", + "createdAt": "2024-11-13T08:43:26.494201Z", + "id": "ixapupnn", + "document": { + "debug": { + "source": { + "id": "ixapupnn", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "DSV5vB01pf" + "ontologyType": "Work", + "value": "DSV5vB01pf" }, - "version" : 51, - "modifiedTime" : "2038-11-26T21:07:39Z" + "version": 51, + "modifiedTime": "2038-11-26T21:07:39Z" }, - "mergedTime" : "2038-11-26T21:07:39Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2038-11-26T21:07:39Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "ixapupnn", - "title" : "title-FXwxyxQUQw", - "alternativeTitles" : [ + "display": { + "id": "ixapupnn", + "title": "title-FXwxyxQUQw", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "DSV5vB01pf", - "type" : "Identifier" + "value": "DSV5vB01pf", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "realAnalysis", - "concepts" : [ + "label": "realAnalysis", + "concepts": [ { - "label" : "KU2Yez08k6CNnSU", - "type" : "Concept" + "label": "KU2Yez08k6CNnSU", + "type": "Concept" }, { - "label" : "VMdWdPx74hNxKXA", - "type" : "Concept" + "label": "VMdWdPx74hNxKXA", + "type": "Concept" }, { - "label" : "vquihJgTfjChVoT", - "type" : "Concept" + "label": "vquihJgTfjChVoT", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "ixapupnn", - "sourceIdentifier.value" : "DSV5vB01pf", - "identifiers.value" : [ + "id": "ixapupnn", + "sourceIdentifier.value": "DSV5vB01pf", + "identifiers.value": [ "DSV5vB01pf" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "KU2Yez08k6CNnSU", "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title" : "title-FXwxyxQUQw" + "title": "title-FXwxyxQUQw" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "realAnalysis" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "DSV5vB01pf" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.subjects.3.json b/common/search/src/test/resources/test_documents/works.subjects.3.json index d2a29f2c7..bd2dbe253 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.3.json +++ b/common/search/src/test/resources/test_documents/works.subjects.3.json @@ -1,152 +1,152 @@ { - "description" : "works with different subjects", - "createdAt" : "2024-11-13T08:43:26.495023Z", - "id" : "opaupm4b", - "document" : { - "debug" : { - "source" : { - "id" : "opaupm4b", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "works with different subjects", + "createdAt": "2024-11-13T08:43:26.495023Z", + "id": "opaupm4b", + "document": { + "debug": { + "source": { + "id": "opaupm4b", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "spewkKE1s2" + "ontologyType": "Work", + "value": "spewkKE1s2" }, - "version" : 2, - "modifiedTime" : "1963-02-18T22:51:22Z" + "version": 2, + "modifiedTime": "1963-02-18T22:51:22Z" }, - "mergedTime" : "1963-02-18T22:51:22Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1963-02-18T22:51:22Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "opaupm4b", - "title" : "title-l7TlcjNV5v", - "alternativeTitles" : [ + "display": { + "id": "opaupm4b", + "title": "title-l7TlcjNV5v", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "spewkKE1s2", - "type" : "Identifier" + "value": "spewkKE1s2", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ { - "label" : "paleoNeuroBiology", - "concepts" : [ + "label": "paleoNeuroBiology", + "concepts": [ { - "label" : "OVfDtEVhuTjLML0", - "type" : "Concept" + "label": "OVfDtEVhuTjLML0", + "type": "Concept" }, { - "label" : "MOH1Bj9evx0cAh7", - "type" : "Concept" + "label": "MOH1Bj9evx0cAh7", + "type": "Concept" }, { - "label" : "0mKj49k3BjjuTuf", - "type" : "Concept" + "label": "0mKj49k3BjjuTuf", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" }, { - "label" : "realAnalysis", - "concepts" : [ + "label": "realAnalysis", + "concepts": [ { - "label" : "KU2Yez08k6CNnSU", - "type" : "Concept" + "label": "KU2Yez08k6CNnSU", + "type": "Concept" }, { - "label" : "VMdWdPx74hNxKXA", - "type" : "Concept" + "label": "VMdWdPx74hNxKXA", + "type": "Concept" }, { - "label" : "vquihJgTfjChVoT", - "type" : "Concept" + "label": "vquihJgTfjChVoT", + "type": "Concept" } ], - "type" : "Subject" + "type": "Subject" } ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "opaupm4b", - "sourceIdentifier.value" : "spewkKE1s2", - "identifiers.value" : [ + "id": "opaupm4b", + "sourceIdentifier.value": "spewkKE1s2", + "identifiers.value": [ "spewkKE1s2" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ "OVfDtEVhuTjLML0", "MOH1Bj9evx0cAh7", "0mKj49k3BjjuTuf", @@ -154,75 +154,75 @@ "VMdWdPx74hNxKXA", "vquihJgTfjChVoT" ], - "title" : "title-l7TlcjNV5v" + "title": "title-l7TlcjNV5v" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ "{\"label\":\"paleoNeuroBiology\",\"concepts\":[],\"type\":\"Subject\"}", "{\"label\":\"realAnalysis\",\"concepts\":[],\"type\":\"Subject\"}" ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ "paleoNeuroBiology", "realAnalysis" ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "spewkKE1s2" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.subjects.4.json b/common/search/src/test/resources/test_documents/works.subjects.4.json index 3ff6fb198..4c8db574c 100644 --- a/common/search/src/test/resources/test_documents/works.subjects.4.json +++ b/common/search/src/test/resources/test_documents/works.subjects.4.json @@ -1,182 +1,182 @@ { - "description" : "works with different subjects", - "createdAt" : "2024-11-13T08:43:26.495435Z", - "id" : "el28gega", - "document" : { - "debug" : { - "source" : { - "id" : "el28gega", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "works with different subjects", + "createdAt": "2024-11-13T08:43:26.495435Z", + "id": "el28gega", + "document": { + "debug": { + "source": { + "id": "el28gega", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "9qDYGFYXAa" + "ontologyType": "Work", + "value": "9qDYGFYXAa" }, - "version" : 63, - "modifiedTime" : "1997-06-19T05:13:34Z" + "version": 63, + "modifiedTime": "1997-06-19T05:13:34Z" }, - "mergedTime" : "1997-06-19T05:13:34Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1997-06-19T05:13:34Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "el28gega", - "title" : "title-be5yxr73Xc", - "alternativeTitles" : [ + "display": { + "id": "el28gega", + "title": "title-be5yxr73Xc", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "9qDYGFYXAa", - "type" : "Identifier" + "value": "9qDYGFYXAa", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "el28gega", - "sourceIdentifier.value" : "9qDYGFYXAa", - "identifiers.value" : [ + "id": "el28gega", + "sourceIdentifier.value": "9qDYGFYXAa", + "identifiers.value": [ "9qDYGFYXAa" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-be5yxr73Xc" + "title": "title-be5yxr73Xc" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "9qDYGFYXAa" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.title-query-parens.json b/common/search/src/test/resources/test_documents/works.title-query-parens.json index 361f26387..eb13c2090 100644 --- a/common/search/src/test/resources/test_documents/works.title-query-parens.json +++ b/common/search/src/test/resources/test_documents/works.title-query-parens.json @@ -1,182 +1,182 @@ { - "description" : "a work whose title has parens meant to trip up ES", - "createdAt" : "2024-11-13T08:43:26.462196Z", - "id" : "1sxjupdc", - "document" : { - "debug" : { - "source" : { - "id" : "1sxjupdc", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "a work whose title has parens meant to trip up ES", + "createdAt": "2024-11-13T08:43:26.462196Z", + "id": "1sxjupdc", + "document": { + "debug": { + "source": { + "id": "1sxjupdc", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "weuV0WsLiG" + "ontologyType": "Work", + "value": "weuV0WsLiG" }, - "version" : 89, - "modifiedTime" : "2025-04-27T22:28:23Z" + "version": 89, + "modifiedTime": "2025-04-27T22:28:23Z" }, - "mergedTime" : "2025-04-27T22:28:23Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2025-04-27T22:28:23Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "1sxjupdc", - "title" : "(a b c d e) h", - "alternativeTitles" : [ + "display": { + "id": "1sxjupdc", + "title": "(a b c d e) h", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "weuV0WsLiG", - "type" : "Identifier" + "value": "weuV0WsLiG", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "1sxjupdc", - "sourceIdentifier.value" : "weuV0WsLiG", - "identifiers.value" : [ + "id": "1sxjupdc", + "sourceIdentifier.value": "weuV0WsLiG", + "identifiers.value": [ "weuV0WsLiG" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "(a b c d e) h" + "title": "(a b c d e) h" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "weuV0WsLiG" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.title-query-syntax.json b/common/search/src/test/resources/test_documents/works.title-query-syntax.json index e40f15b7d..64ab3924c 100644 --- a/common/search/src/test/resources/test_documents/works.title-query-syntax.json +++ b/common/search/src/test/resources/test_documents/works.title-query-syntax.json @@ -1,182 +1,182 @@ { - "description" : "a work whose title has lots of ES query syntax operators", - "createdAt" : "2024-11-13T08:43:26.460971Z", - "id" : "mdg1yvuv", - "document" : { - "debug" : { - "source" : { - "id" : "mdg1yvuv", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "a work whose title has lots of ES query syntax operators", + "createdAt": "2024-11-13T08:43:26.460971Z", + "id": "mdg1yvuv", + "document": { + "debug": { + "source": { + "id": "mdg1yvuv", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "9P6mnsoyfd" + "ontologyType": "Work", + "value": "9P6mnsoyfd" }, - "version" : 52, - "modifiedTime" : "1967-11-04T04:23:34Z" + "version": 52, + "modifiedTime": "1967-11-04T04:23:34Z" }, - "mergedTime" : "1967-11-04T04:23:34Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1967-11-04T04:23:34Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "mdg1yvuv", - "title" : "+a -title | with (all the simple) query~4 syntax operators in it*", - "alternativeTitles" : [ + "display": { + "id": "mdg1yvuv", + "title": "+a -title | with (all the simple) query~4 syntax operators in it*", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "9P6mnsoyfd", - "type" : "Identifier" + "value": "9P6mnsoyfd", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "mdg1yvuv", - "sourceIdentifier.value" : "9P6mnsoyfd", - "identifiers.value" : [ + "id": "mdg1yvuv", + "sourceIdentifier.value": "9P6mnsoyfd", + "identifiers.value": [ "9P6mnsoyfd" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "+a -title | with (all the simple) query~4 syntax operators in it*" + "title": "+a -title | with (all the simple) query~4 syntax operators in it*" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "9P6mnsoyfd" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.visible.0.json b/common/search/src/test/resources/test_documents/works.visible.0.json index b12330a61..e3f0d2ada 100644 --- a/common/search/src/test/resources/test_documents/works.visible.0.json +++ b/common/search/src/test/resources/test_documents/works.visible.0.json @@ -1,182 +1,182 @@ { - "description" : "an arbitrary list of visible works", - "createdAt" : "2024-11-13T08:43:26.177685Z", - "id" : "2twopft1", - "document" : { - "debug" : { - "source" : { - "id" : "2twopft1", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "an arbitrary list of visible works", + "createdAt": "2024-11-13T08:43:26.177685Z", + "id": "2twopft1", + "document": { + "debug": { + "source": { + "id": "2twopft1", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "Uaequ81tpB" + "ontologyType": "Work", + "value": "Uaequ81tpB" }, - "version" : 59, - "modifiedTime" : "1972-02-10T18:53:31Z" + "version": 59, + "modifiedTime": "1972-02-10T18:53:31Z" }, - "mergedTime" : "1972-02-10T18:53:31Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1972-02-10T18:53:31Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "2twopft1", - "title" : "title-vaMzxd8prf", - "alternativeTitles" : [ + "display": { + "id": "2twopft1", + "title": "title-vaMzxd8prf", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "Uaequ81tpB", - "type" : "Identifier" + "value": "Uaequ81tpB", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "2twopft1", - "sourceIdentifier.value" : "Uaequ81tpB", - "identifiers.value" : [ + "id": "2twopft1", + "sourceIdentifier.value": "Uaequ81tpB", + "identifiers.value": [ "Uaequ81tpB" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-vaMzxd8prf" + "title": "title-vaMzxd8prf" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "Uaequ81tpB" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.visible.1.json b/common/search/src/test/resources/test_documents/works.visible.1.json index 133ab0221..bfeab1e7e 100644 --- a/common/search/src/test/resources/test_documents/works.visible.1.json +++ b/common/search/src/test/resources/test_documents/works.visible.1.json @@ -1,182 +1,182 @@ { - "description" : "an arbitrary list of visible works", - "createdAt" : "2024-11-13T08:43:26.179486Z", - "id" : "dph7sjip", - "document" : { - "debug" : { - "source" : { - "id" : "dph7sjip", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "an arbitrary list of visible works", + "createdAt": "2024-11-13T08:43:26.179486Z", + "id": "dph7sjip", + "document": { + "debug": { + "source": { + "id": "dph7sjip", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "WpBejTwv1N" + "ontologyType": "Work", + "value": "WpBejTwv1N" }, - "version" : 66, - "modifiedTime" : "1971-11-19T03:42:42Z" + "version": 66, + "modifiedTime": "1971-11-19T03:42:42Z" }, - "mergedTime" : "1971-11-19T03:42:42Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1971-11-19T03:42:42Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "dph7sjip", - "title" : "title-3hvGdgZfc8", - "alternativeTitles" : [ + "display": { + "id": "dph7sjip", + "title": "title-3hvGdgZfc8", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "WpBejTwv1N", - "type" : "Identifier" + "value": "WpBejTwv1N", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "dph7sjip", - "sourceIdentifier.value" : "WpBejTwv1N", - "identifiers.value" : [ + "id": "dph7sjip", + "sourceIdentifier.value": "WpBejTwv1N", + "identifiers.value": [ "WpBejTwv1N" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-3hvGdgZfc8" + "title": "title-3hvGdgZfc8" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "WpBejTwv1N" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.visible.2.json b/common/search/src/test/resources/test_documents/works.visible.2.json index 27810c8c7..e1c611772 100644 --- a/common/search/src/test/resources/test_documents/works.visible.2.json +++ b/common/search/src/test/resources/test_documents/works.visible.2.json @@ -1,182 +1,182 @@ { - "description" : "an arbitrary list of visible works", - "createdAt" : "2024-11-13T08:43:26.180590Z", - "id" : "fyqts0co", - "document" : { - "debug" : { - "source" : { - "id" : "fyqts0co", - "identifier" : { - "identifierType" : { - "id" : "calm-record-id" + "description": "an arbitrary list of visible works", + "createdAt": "2024-11-13T08:43:26.180590Z", + "id": "fyqts0co", + "document": { + "debug": { + "source": { + "id": "fyqts0co", + "identifier": { + "identifierType": { + "id": "calm-record-id" }, - "ontologyType" : "Work", - "value" : "ZvWebpA5WH" + "ontologyType": "Work", + "value": "ZvWebpA5WH" }, - "version" : 89, - "modifiedTime" : "1979-01-28T05:43:24Z" + "version": 89, + "modifiedTime": "1979-01-28T05:43:24Z" }, - "mergedTime" : "1979-01-28T05:43:24Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1979-01-28T05:43:24Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "fyqts0co", - "title" : "title-XQqPyuxbr5", - "alternativeTitles" : [ + "display": { + "id": "fyqts0co", + "title": "title-XQqPyuxbr5", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "calm-record-id", - "label" : "Calm RecordIdentifier", - "type" : "IdentifierType" + "identifierType": { + "id": "calm-record-id", + "label": "Calm RecordIdentifier", + "type": "IdentifierType" }, - "value" : "ZvWebpA5WH", - "type" : "Identifier" + "value": "ZvWebpA5WH", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "fyqts0co", - "sourceIdentifier.value" : "ZvWebpA5WH", - "identifiers.value" : [ + "id": "fyqts0co", + "sourceIdentifier.value": "ZvWebpA5WH", + "identifiers.value": [ "ZvWebpA5WH" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-XQqPyuxbr5" + "title": "title-XQqPyuxbr5" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "ZvWebpA5WH" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.visible.3.json b/common/search/src/test/resources/test_documents/works.visible.3.json index da3c12ed7..31b99434a 100644 --- a/common/search/src/test/resources/test_documents/works.visible.3.json +++ b/common/search/src/test/resources/test_documents/works.visible.3.json @@ -1,182 +1,182 @@ { - "description" : "an arbitrary list of visible works", - "createdAt" : "2024-11-13T08:43:26.181791Z", - "id" : "raob2ruv", - "document" : { - "debug" : { - "source" : { - "id" : "raob2ruv", - "identifier" : { - "identifierType" : { - "id" : "sierra-system-number" + "description": "an arbitrary list of visible works", + "createdAt": "2024-11-13T08:43:26.181791Z", + "id": "raob2ruv", + "document": { + "debug": { + "source": { + "id": "raob2ruv", + "identifier": { + "identifierType": { + "id": "sierra-system-number" }, - "ontologyType" : "Work", - "value" : "wyJzS2SuiH" + "ontologyType": "Work", + "value": "wyJzS2SuiH" }, - "version" : 69, - "modifiedTime" : "1966-03-23T00:51:51Z" + "version": 69, + "modifiedTime": "1966-03-23T00:51:51Z" }, - "mergedTime" : "1966-03-23T00:51:51Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "1966-03-23T00:51:51Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "raob2ruv", - "title" : "title-bFbQPNB7Zu", - "alternativeTitles" : [ + "display": { + "id": "raob2ruv", + "title": "title-bFbQPNB7Zu", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "sierra-system-number", - "label" : "Sierra system number", - "type" : "IdentifierType" + "identifierType": { + "id": "sierra-system-number", + "label": "Sierra system number", + "type": "IdentifierType" }, - "value" : "wyJzS2SuiH", - "type" : "Identifier" + "value": "wyJzS2SuiH", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "raob2ruv", - "sourceIdentifier.value" : "wyJzS2SuiH", - "identifiers.value" : [ + "id": "raob2ruv", + "sourceIdentifier.value": "wyJzS2SuiH", + "identifiers.value": [ "wyJzS2SuiH" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-bFbQPNB7Zu" + "title": "title-bFbQPNB7Zu" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "wyJzS2SuiH" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} diff --git a/common/search/src/test/resources/test_documents/works.visible.4.json b/common/search/src/test/resources/test_documents/works.visible.4.json index 1bb6fb008..8d0a269cc 100644 --- a/common/search/src/test/resources/test_documents/works.visible.4.json +++ b/common/search/src/test/resources/test_documents/works.visible.4.json @@ -1,182 +1,182 @@ { - "description" : "an arbitrary list of visible works", - "createdAt" : "2024-11-13T08:43:26.182838Z", - "id" : "vbi1ii19", - "document" : { - "debug" : { - "source" : { - "id" : "vbi1ii19", - "identifier" : { - "identifierType" : { - "id" : "miro-image-number" + "description": "an arbitrary list of visible works", + "createdAt": "2024-11-13T08:43:26.182838Z", + "id": "vbi1ii19", + "document": { + "debug": { + "source": { + "id": "vbi1ii19", + "identifier": { + "identifierType": { + "id": "miro-image-number" }, - "ontologyType" : "Work", - "value" : "CzLNHBFHuR" + "ontologyType": "Work", + "value": "CzLNHBFHuR" }, - "version" : 46, - "modifiedTime" : "2024-12-13T21:31:42Z" + "version": 46, + "modifiedTime": "2024-12-13T21:31:42Z" }, - "mergedTime" : "2024-12-13T21:31:42Z", - "indexedTime" : "2001-01-01T01:01:01Z", - "redirectSources" : [ + "mergedTime": "2024-12-13T21:31:42Z", + "indexedTime": "2001-01-01T01:01:01Z", + "redirectSources": [ ], - "mergeCandidates" : [ + "mergeCandidates": [ ] }, - "display" : { - "id" : "vbi1ii19", - "title" : "title-jGGR8UNWut", - "alternativeTitles" : [ + "display": { + "id": "vbi1ii19", + "title": "title-jGGR8UNWut", + "alternativeTitles": [ ], - "contributors" : [ + "contributors": [ ], - "identifiers" : [ + "identifiers": [ { - "identifierType" : { - "id" : "miro-image-number", - "label" : "Miro image number", - "type" : "IdentifierType" + "identifierType": { + "id": "miro-image-number", + "label": "Miro image number", + "type": "IdentifierType" }, - "value" : "CzLNHBFHuR", - "type" : "Identifier" + "value": "CzLNHBFHuR", + "type": "Identifier" } ], - "subjects" : [ + "subjects": [ ], - "genres" : [ + "genres": [ ], - "items" : [ + "items": [ ], - "holdings" : [ + "holdings": [ ], - "availabilities" : [ + "availabilities": [ ], - "production" : [ + "production": [ ], - "languages" : [ + "languages": [ ], - "notes" : [ + "notes": [ ], - "formerFrequency" : [ + "formerFrequency": [ ], - "designation" : [ + "designation": [ ], - "images" : [ + "images": [ ], - "parts" : [ + "parts": [ ], - "partOf" : [ + "partOf": [ ], - "precededBy" : [ + "precededBy": [ ], - "succeededBy" : [ + "succeededBy": [ ], - "type" : "Work" + "type": "Work" }, - "query" : { - "collectionPath.label" : null, - "collectionPath.path" : null, - "alternativeTitles" : [ + "query": { + "collectionPath.label": null, + "collectionPath.path": null, + "alternativeTitles": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "description" : null, - "edition" : null, - "genres.concepts.label" : [ + "description": null, + "edition": null, + "genres.concepts.label": [ ], - "id" : "vbi1ii19", - "sourceIdentifier.value" : "CzLNHBFHuR", - "identifiers.value" : [ + "id": "vbi1ii19", + "sourceIdentifier.value": "CzLNHBFHuR", + "identifiers.value": [ "CzLNHBFHuR" ], - "images.id" : [ + "images.id": [ ], - "images.identifiers.value" : [ + "images.identifiers.value": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.shelfmark.value" : [ + "items.shelfmark.value": [ ], - "languages.label" : [ + "languages.label": [ ], - "lettering" : null, - "notes.contents" : [ + "lettering": null, + "notes.contents": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "physicalDescription" : null, - "production.label" : [ + "physicalDescription": null, + "production.label": [ ], - "referenceNumber" : null, - "subjects.concepts.label" : [ + "referenceNumber": null, + "subjects.concepts.label": [ ], - "title" : "title-jGGR8UNWut" + "title": "title-jGGR8UNWut" }, - "aggregatableValues" : { - "workType" : [ + "aggregatableValues": { + "workType": [ ], - "genres.label" : [ + "genres.label": [ ], - "production.dates" : [ + "production.dates": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "languages" : [ + "languages": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "items.locations.license" : [ + "items.locations.license": [ ], - "availabilities" : [ + "availabilities": [ ] }, - "filterableValues" : { - "format.id" : null, - "workType" : "Standard", - "production.dates.range.from" : [ + "filterableValues": { + "format.id": null, + "workType": "Standard", + "production.dates.range.from": [ ], - "languages.id" : [ + "languages.id": [ ], - "genres.label" : [ + "genres.label": [ ], - "genres.concepts.id" : [ + "genres.concepts.id": [ ], - "genres.concepts.sourceIdentifier" : [ + "genres.concepts.sourceIdentifier": [ ], - "subjects.label" : [ + "subjects.label": [ ], - "subjects.concepts.id" : [ + "subjects.concepts.id": [ ], - "subjects.concepts.sourceIdentifier" : [ + "subjects.concepts.sourceIdentifier": [ ], - "contributors.agent.label" : [ + "contributors.agent.label": [ ], - "contributors.agent.id" : [ + "contributors.agent.id": [ ], - "contributors.agent.sourceIdentifier" : [ + "contributors.agent.sourceIdentifier": [ ], - "identifiers.value" : [ + "identifiers.value": [ "CzLNHBFHuR" ], - "items.locations.license.id" : [ + "items.locations.license.id": [ ], - "items.locations.accessConditions.status.id" : [ + "items.locations.accessConditions.status.id": [ ], - "items.id" : [ + "items.id": [ ], - "items.identifiers.value" : [ + "items.identifiers.value": [ ], - "items.locations.locationType.id" : [ + "items.locations.locationType.id": [ ], - "partOf.id" : [ + "partOf.id": [ ], - "partOf.title" : [ + "partOf.title": [ ], - "availabilities.id" : [ + "availabilities.id": [ ] }, - "type" : "Visible" + "type": "Visible" } -} \ No newline at end of file +} From ed2065026a7ed5bda5f42a446f68f2a6cb1ec3a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Brychta?= Date: Mon, 18 Nov 2024 10:40:16 +0000 Subject: [PATCH 4/4] Update expected responses #5823 --- .../include-image-contributors.json | 16 ++--- .../include-image-genres.json | 40 +++++------ .../include-image-languages.json | 16 ++--- .../include-list-contributors.json | 16 ++--- .../include-list-genres.json | 40 +++++------ .../include-list-languages.json | 16 ++--- .../search/services/AggregationsTest.scala | 12 ++-- .../api/search/works/WorksIncludesTest.scala | 70 +++++++++---------- 8 files changed, 107 insertions(+), 119 deletions(-) diff --git a/search/src/test/resources/expected_responses/include-image-contributors.json b/search/src/test/resources/expected_responses/include-image-contributors.json index 3d9e10ca8..77d73d44c 100644 --- a/search/src/test/resources/expected_responses/include-image-contributors.json +++ b/search/src/test/resources/expected_responses/include-image-contributors.json @@ -1,7 +1,7 @@ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -12,14 +12,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { @@ -45,7 +44,7 @@ "type" : "Contributor" } ], - "id" : "vsc5ou3g", + "id" : "dqxovw56", "title" : "Apple agitator", "type" : "Work" }, @@ -58,14 +57,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" -} \ No newline at end of file +} diff --git a/search/src/test/resources/expected_responses/include-image-genres.json b/search/src/test/resources/expected_responses/include-image-genres.json index 31416c26b..7ca49f36e 100644 --- a/search/src/test/resources/expected_responses/include-image-genres.json +++ b/search/src/test/resources/expected_responses/include-image-genres.json @@ -1,7 +1,7 @@ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -12,14 +12,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { @@ -27,18 +26,18 @@ { "concepts" : [ { - "id" : "lhv6fymm", - "label" : "x54TII0VPSaRa8w", + "id" : "lejca71h", + "label" : "ugoW7DPjY7eEyUr", "type" : "Genre" }, { - "id" : "eqakv68w", - "label" : "w83ptb24Wdf0ffp", + "id" : "wmf04cfl", + "label" : "9VrODZy7KkifsFe", "type" : "Concept" }, { - "id" : "gkwupx3s", - "label" : "0EIxNCtDqaYGQtY", + "id" : "aepyhklp", + "label" : "rYYrQmMYtpbz1Al", "type" : "Concept" } ], @@ -48,18 +47,18 @@ { "concepts" : [ { - "id" : "f6d8tqxf", - "label" : "uWYjSoLFdpcpari", + "id" : "lksf0yuj", + "label" : "706t7mv7kanMOW5", "type" : "Genre" }, { - "id" : "1vp6bsrx", - "label" : "2Ag1y5HSMCthkMG", + "id" : "ywn40rop", + "label" : "VMoAMmioWNbDYqh", "type" : "Concept" }, { - "id" : "s3wjtkzh", - "label" : "kxmCLMBG67iDCYg", + "id" : "gxjzwfd7", + "label" : "1lbnmi1f4IMuqCy", "type" : "Concept" } ], @@ -67,7 +66,7 @@ "type" : "Genre" } ], - "id" : "vsc5ou3g", + "id" : "dqxovw56", "title" : "Apple agitator", "type" : "Work" }, @@ -80,14 +79,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" -} \ No newline at end of file +} diff --git a/search/src/test/resources/expected_responses/include-image-languages.json b/search/src/test/resources/expected_responses/include-image-languages.json index ca8f8db7d..b2a87f87e 100644 --- a/search/src/test/resources/expected_responses/include-image-languages.json +++ b/search/src/test/resources/expected_responses/include-image-languages.json @@ -1,7 +1,7 @@ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -12,18 +12,17 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { - "id" : "vsc5ou3g", + "id" : "dqxovw56", "languages" : [ { "id" : "eng", @@ -48,14 +47,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" -} \ No newline at end of file +} diff --git a/search/src/test/resources/expected_responses/include-list-contributors.json b/search/src/test/resources/expected_responses/include-list-contributors.json index 98bfc09f7..51750559c 100644 --- a/search/src/test/resources/expected_responses/include-list-contributors.json +++ b/search/src/test/resources/expected_responses/include-list-contributors.json @@ -2,9 +2,9 @@ "pageSize" : 10, "results" : [ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -15,14 +15,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { @@ -48,7 +47,7 @@ "type" : "Contributor" } ], - "id" : "vsc5ou3g", + "id" : "dqxovw56", "title" : "Apple agitator", "type" : "Work" }, @@ -61,14 +60,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" } @@ -76,4 +74,4 @@ "totalPages" : 1, "totalResults" : 1, "type" : "ResultList" -} \ No newline at end of file +} diff --git a/search/src/test/resources/expected_responses/include-list-genres.json b/search/src/test/resources/expected_responses/include-list-genres.json index 48f083f97..57c45a0a0 100644 --- a/search/src/test/resources/expected_responses/include-list-genres.json +++ b/search/src/test/resources/expected_responses/include-list-genres.json @@ -2,9 +2,9 @@ "pageSize" : 10, "results" : [ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -15,14 +15,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { @@ -30,18 +29,18 @@ { "concepts" : [ { - "id" : "lhv6fymm", - "label" : "x54TII0VPSaRa8w", + "id" : "lejca71h", + "label" : "ugoW7DPjY7eEyUr", "type" : "Genre" }, { - "id" : "eqakv68w", - "label" : "w83ptb24Wdf0ffp", + "id" : "wmf04cfl", + "label" : "9VrODZy7KkifsFe", "type" : "Concept" }, { - "id" : "gkwupx3s", - "label" : "0EIxNCtDqaYGQtY", + "id" : "aepyhklp", + "label" : "rYYrQmMYtpbz1Al", "type" : "Concept" } ], @@ -51,18 +50,18 @@ { "concepts" : [ { - "id" : "f6d8tqxf", - "label" : "uWYjSoLFdpcpari", + "id" : "lksf0yuj", + "label" : "706t7mv7kanMOW5", "type" : "Genre" }, { - "id" : "1vp6bsrx", - "label" : "2Ag1y5HSMCthkMG", + "id" : "ywn40rop", + "label" : "VMoAMmioWNbDYqh", "type" : "Concept" }, { - "id" : "s3wjtkzh", - "label" : "kxmCLMBG67iDCYg", + "id" : "gxjzwfd7", + "label" : "1lbnmi1f4IMuqCy", "type" : "Concept" } ], @@ -70,7 +69,7 @@ "type" : "Genre" } ], - "id" : "vsc5ou3g", + "id" : "dqxovw56", "title" : "Apple agitator", "type" : "Work" }, @@ -83,14 +82,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" } @@ -98,4 +96,4 @@ "totalPages" : 1, "totalResults" : 1, "type" : "ResultList" -} \ No newline at end of file +} diff --git a/search/src/test/resources/expected_responses/include-list-languages.json b/search/src/test/resources/expected_responses/include-list-languages.json index 9a0323cbb..b8d038c8c 100644 --- a/search/src/test/resources/expected_responses/include-list-languages.json +++ b/search/src/test/resources/expected_responses/include-list-languages.json @@ -2,9 +2,9 @@ "pageSize" : 10, "results" : [ { - "aspectRatio" : 0.16625082, - "averageColor" : "#658BB7", - "id" : "wp52vobn", + "aspectRatio" : 0.38759995, + "averageColor" : "#42424B", + "id" : "b25is1mw", "locations" : [ { "accessConditions" : [ @@ -15,18 +15,17 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" } ], "source" : { - "id" : "vsc5ou3g", + "id" : "dqxovw56", "languages" : [ { "id" : "eng", @@ -51,14 +50,13 @@ "type" : "License", "url" : "http://creativecommons.org/licenses/by/4.0/" }, - "linkText" : "Link text: eAFmnmhjx", "locationType" : { "id" : "iiif-image", "label" : "IIIF Image API", "type" : "LocationType" }, "type" : "DigitalLocation", - "url" : "https://iiif.wellcomecollection.org/image/UfW.jpg/info.json" + "url" : "https://iiif.wellcomecollection.org/image/2mU.jpg/info.json" }, "type" : "Image" } @@ -66,4 +64,4 @@ "totalPages" : 1, "totalResults" : 1, "type" : "ResultList" -} \ No newline at end of file +} diff --git a/search/src/test/scala/weco/api/search/services/AggregationsTest.scala b/search/src/test/scala/weco/api/search/services/AggregationsTest.scala index 9ed2011c5..f218069ab 100644 --- a/search/src/test/scala/weco/api/search/services/AggregationsTest.scala +++ b/search/src/test/scala/weco/api/search/services/AggregationsTest.scala @@ -119,6 +119,7 @@ class AggregationsTest "E-videos", "Videos", "Archives and manuscripts", + "Born-digital archives", "Audio", "E-journals", "Pictures", @@ -132,7 +133,6 @@ class AggregationsTest "Standing order", "E-books", "Student dissertations", - "Manuscripts", "Web sites" ) } @@ -148,20 +148,20 @@ class AggregationsTest List(WorkAggregationRequest.Format, WorkAggregationRequest.Subject), filters = List( FormatFilter(List("a")), - SubjectLabelFilter(Seq("9SceRNaTEl")) + SubjectLabelFilter(Seq("fIbfVPkqaf")) ) ) whenReady(aggregationQuery(index, searchOptions)) { aggs => val buckets = aggs.format.get.buckets buckets.length shouldBe 7 buckets.map(b => getKey(b.data, "label").get.asString.get) should contain theSameElementsAs List( - "Books", "Manuscripts", "Music", "Archives and manuscripts", + "Born-digital archives", "Film", "Standing order", - "Web sites" + "Books" ) } } @@ -176,7 +176,7 @@ class AggregationsTest List(WorkAggregationRequest.Format, WorkAggregationRequest.Subject), filters = List( FormatFilter(List("a")), - SubjectLabelFilter(Seq("y0B0TSmDGU")) + SubjectLabelFilter(Seq("6rJpSUKd2d")) ) ) val results = @@ -198,7 +198,7 @@ class AggregationsTest .flatMap(_.asArray) .map(_.flatMap(s => getKey(s, "label"))) .map(subjects => subjects.flatMap(_.asString).toSet) - .foreach(subjects => subjects should contain("y0B0TSmDGU")) + .foreach(subjects => subjects should contain("6rJpSUKd2d")) } } } diff --git a/search/src/test/scala/weco/api/search/works/WorksIncludesTest.scala b/search/src/test/scala/weco/api/search/works/WorksIncludesTest.scala index ecebdd888..7208c28f9 100644 --- a/search/src/test/scala/weco/api/search/works/WorksIncludesTest.scala +++ b/search/src/test/scala/weco/api/search/works/WorksIncludesTest.scala @@ -1422,34 +1422,34 @@ class WorksIncludesTest extends AnyFunSpec with ApiWorksTestBase { "notes" : [ { "contents" : [ - "BD4V4eC" + "PxyMQW" ], "noteType" : { - "id" : "general-note", - "label" : "Notes", + "id" : "location-of-duplicates", + "label" : "Location of duplicates", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "PxyMQW" + "lsrFBR8QS", + "soceYh" ], "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", + "id" : "funding-info", + "label" : "Funding information", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "lsrFBR8QS", - "soceYh" + "BD4V4eC" ], "noteType" : { - "id" : "funding-info", - "label" : "Funding information", + "id" : "general-note", + "label" : "Notes", "type" : "NoteType" }, "type" : "Note" @@ -1467,34 +1467,34 @@ class WorksIncludesTest extends AnyFunSpec with ApiWorksTestBase { "notes" : [ { "contents" : [ - "KatsdMX" + "1009JS", + "Gxz9bfcN5B" ], "noteType" : { - "id" : "general-note", - "label" : "Notes", + "id" : "location-of-duplicates", + "label" : "Location of duplicates", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "1009JS", - "Gxz9bfcN5B" + "bf5YSWx" ], "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", + "id" : "funding-info", + "label" : "Funding information", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "bf5YSWx" + "KatsdMX" ], "noteType" : { - "id" : "funding-info", - "label" : "Funding information", + "id" : "general-note", + "label" : "Notes", "type" : "NoteType" }, "type" : "Note" @@ -1528,23 +1528,23 @@ class WorksIncludesTest extends AnyFunSpec with ApiWorksTestBase { }, { "contents" : [ - "pneMkt" + "w1YfRQ9an", + "5wdlW2gcpt" ], "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", + "id" : "funding-info", + "label" : "Funding information", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "w1YfRQ9an", - "5wdlW2gcpt" + "pneMkt" ], "noteType" : { - "id" : "funding-info", - "label" : "Funding information", + "id" : "location-of-duplicates", + "label" : "Location of duplicates", "type" : "NoteType" }, "type" : "Note" @@ -1557,7 +1557,7 @@ class WorksIncludesTest extends AnyFunSpec with ApiWorksTestBase { "totalPages" : 1, "totalResults" : 3, "type" : "ResultList" - } + } """ } } @@ -1600,23 +1600,23 @@ class WorksIncludesTest extends AnyFunSpec with ApiWorksTestBase { }, { "contents" : [ - "pneMkt" + "w1YfRQ9an", + "5wdlW2gcpt" ], "noteType" : { - "id" : "location-of-duplicates", - "label" : "Location of duplicates", + "id" : "funding-info", + "label" : "Funding information", "type" : "NoteType" }, "type" : "Note" }, { "contents" : [ - "w1YfRQ9an", - "5wdlW2gcpt" + "pneMkt" ], "noteType" : { - "id" : "funding-info", - "label" : "Funding information", + "id" : "location-of-duplicates", + "label" : "Location of duplicates", "type" : "NoteType" }, "type" : "Note"